content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
file1 = open('/home/student/.ros/log/a13f3d8c-1369-11eb-a6ad-08002707b8e3/rosout.log','r')
file2 = open('/home/student/CarND-Capstone/imgs/Train_Imgs/Train_data.txt','w')
count=1
while True:
line = file1.readline()
if not line:
break
# if line.split(' ')[2][1:7]=='tl_det':
sep_line = line.split(' ')
if len(sep_line)>2 and sep_line[2][-5:-1]=='data':
if sep_line[-2]!='image':
print(sep_line[-2],sep_line[-1].rstrip())
file2.write(''.join(sep_line[-2:]))
file1.close()
file2.close()
| file1 = open('/home/student/.ros/log/a13f3d8c-1369-11eb-a6ad-08002707b8e3/rosout.log', 'r')
file2 = open('/home/student/CarND-Capstone/imgs/Train_Imgs/Train_data.txt', 'w')
count = 1
while True:
line = file1.readline()
if not line:
break
sep_line = line.split(' ')
if len(sep_line) > 2 and sep_line[2][-5:-1] == 'data':
if sep_line[-2] != 'image':
print(sep_line[-2], sep_line[-1].rstrip())
file2.write(''.join(sep_line[-2:]))
file1.close()
file2.close() |
def kebab_to_snake_case(json):
if isinstance(json, dict):
return kebab_to_snake_case_dict(json)
if isinstance(json, list):
new_json = []
for d in json:
if isinstance(d, dict):
new_json.append(kebab_to_snake_case_dict)
return json
def kebab_to_snake_case_dict(d: dict):
return {key.replace('-', '_'): kebab_to_snake_case(value) for key, value in d.items()}
| def kebab_to_snake_case(json):
if isinstance(json, dict):
return kebab_to_snake_case_dict(json)
if isinstance(json, list):
new_json = []
for d in json:
if isinstance(d, dict):
new_json.append(kebab_to_snake_case_dict)
return json
def kebab_to_snake_case_dict(d: dict):
return {key.replace('-', '_'): kebab_to_snake_case(value) for (key, value) in d.items()} |
class InterMolError(Exception):
""""""
class MultipleValidationErrors(InterMolError):
""""""
def __str__(self):
return '\n\n{0}\n\n'.format('\n'.join(self.args))
class ConversionError(InterMolError):
""""""
def __init__(self, could_not_convert, engine):
Exception.__init__(self)
self.could_not_convert = could_not_convert
self.engine = engine
class UnsupportedFunctional(ConversionError):
"""Force functional that is not supported in a specific engine."""
def __str__(self):
return "The {} interaction type is not supported in {}.".format(
self.could_not_convert.__class__.__name__, self.engine.upper())
class UnimplementedFunctional(ConversionError):
"""Force functional that is not yet implemented in intermol for a specific engine."""
def __str__(self):
return ('{} conversion has not yet been implemented in InterMol '
'for {}.'.format(self.could_not_convert.__class__.__name__, self.engine.upper()))
class UnsupportedSetting(ConversionError):
"""Any setting that is not supported in a specific engine."""
def __str__(self):
return "{} is not supported in {}.".format(
self.could_not_convert, self.engine.upper())
class UnimplementedSetting(ConversionError):
"""Any setting that is not yet implemented in intermol for a specific engine."""
def __str__(self):
return ('{} has not yet been implemented in InterMol for {}.'.format(
self.could_not_convert, self.engine.upper()))
class ParsingError(InterMolError):
""""""
class GromacsError(ParsingError):
""""""
class DesmondError(ParsingError):
""""""
class LammpsError(ParsingError):
""""""
| class Intermolerror(Exception):
""""""
class Multiplevalidationerrors(InterMolError):
""""""
def __str__(self):
return '\n\n{0}\n\n'.format('\n'.join(self.args))
class Conversionerror(InterMolError):
""""""
def __init__(self, could_not_convert, engine):
Exception.__init__(self)
self.could_not_convert = could_not_convert
self.engine = engine
class Unsupportedfunctional(ConversionError):
"""Force functional that is not supported in a specific engine."""
def __str__(self):
return 'The {} interaction type is not supported in {}.'.format(self.could_not_convert.__class__.__name__, self.engine.upper())
class Unimplementedfunctional(ConversionError):
"""Force functional that is not yet implemented in intermol for a specific engine."""
def __str__(self):
return '{} conversion has not yet been implemented in InterMol for {}.'.format(self.could_not_convert.__class__.__name__, self.engine.upper())
class Unsupportedsetting(ConversionError):
"""Any setting that is not supported in a specific engine."""
def __str__(self):
return '{} is not supported in {}.'.format(self.could_not_convert, self.engine.upper())
class Unimplementedsetting(ConversionError):
"""Any setting that is not yet implemented in intermol for a specific engine."""
def __str__(self):
return '{} has not yet been implemented in InterMol for {}.'.format(self.could_not_convert, self.engine.upper())
class Parsingerror(InterMolError):
""""""
class Gromacserror(ParsingError):
""""""
class Desmonderror(ParsingError):
""""""
class Lammpserror(ParsingError):
"""""" |
#Every true traveler must know how to do 3 things: fix the fire, find the water and extract useful information
#from the nature around him. Programming won't help you with the fire and water, but when it comes to the
#information extraction - it might be just the thing you need.
#Your task is to find the angle of the sun above the horizon knowing the time of the day. Input data:
#the sun rises in the East at 6:00 AM, which corresponds to the angle of 0 degrees. At 12:00 PM the sun
#reaches its zenith, which means that the angle equals 90 degrees. 6:00 PM is the time of the sunset so
#the angle is 180 degrees. If the input will be the time of the night (before 6:00 AM or after 6:00 PM),
#your function should return - "I don't see the sun!".
def sun_angle(hora):
hora = hora.split(':')
lista = []
for c in hora:
c = int(c)
lista.append(c)
if 6<=int(lista[0])<18:
angulo = ((lista[0]-6)*15)+(lista[1]*0.25)
elif lista[0]==18 and lista[1]==00:
angulo = ((lista[0]-6)*15)+(lista[1]*0.25)
else:
return "I don't see the sun!"
return angulo
if __name__ == '__main__':
print("Example:")
print(sun_angle("07:00"))
print(sun_angle("07:00")) == 15
print(sun_angle("08:27"))
print(sun_angle("06:00"))
print(sun_angle("18:00"))
print(sun_angle("12:00"))
print(sun_angle("18:01"))
print(sun_angle("18:02"))
print(sun_angle("01:23")) == "I don't see the sun!"
| def sun_angle(hora):
hora = hora.split(':')
lista = []
for c in hora:
c = int(c)
lista.append(c)
if 6 <= int(lista[0]) < 18:
angulo = (lista[0] - 6) * 15 + lista[1] * 0.25
elif lista[0] == 18 and lista[1] == 0:
angulo = (lista[0] - 6) * 15 + lista[1] * 0.25
else:
return "I don't see the sun!"
return angulo
if __name__ == '__main__':
print('Example:')
print(sun_angle('07:00'))
print(sun_angle('07:00')) == 15
print(sun_angle('08:27'))
print(sun_angle('06:00'))
print(sun_angle('18:00'))
print(sun_angle('12:00'))
print(sun_angle('18:01'))
print(sun_angle('18:02'))
print(sun_angle('01:23')) == "I don't see the sun!" |
class Lightbulb:
def __init__(self):
self.state = "off"
def change_state(self):
if self.state == "off":
self.state = "on"
print("Turning the light on")
else:
self.state = "off"
print("Turning the light off")
| class Lightbulb:
def __init__(self):
self.state = 'off'
def change_state(self):
if self.state == 'off':
self.state = 'on'
print('Turning the light on')
else:
self.state = 'off'
print('Turning the light off') |
# Enable standard authentication functionality for this application
def user():
return dict(form=auth())
def index():
return dict()
def login():
form = auth.login(next=URL(a='loginexample', c='default',f='gallery'))
form.custom.widget.email['_class'] = 'form-control my-3 bg-light'
form.custom.widget.email['_placeholder'] = 'Email'
form.custom.widget.password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.password['_placeholder'] = 'Password'
form.custom.widget.remember_me['_class'] = 'checkbox'
return dict(form=form)
def change_password():
form = auth.change_password()
form.custom.widget.old_password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.old_password['_placeholder'] = 'Old Password'
form.custom.widget.new_password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.new_password['_placeholder'] = 'New Password'
form.custom.widget.new_password2['_class'] = 'form-control my-3 bg-light'
form.custom.widget.new_password2['_placeholder'] = 'Confirm New Password'
return dict(form=form)
def register():
records = db().select(db_hivetu.auth_user.ALL)
# Define which page to open after the login sequence
form = auth.register(next=URL(a='hivetu', c='default',f='login'))
# First Name
form.custom.widget.first_name['_class'] = 'form-control'
form.custom.widget.first_name['_placeholder'] = 'First Name'
form.custom.widget.first_name['_type'] = 'text'
# Last Name
form.custom.widget.last_name['_class'] = 'form-control'
form.custom.widget.last_name['_placeholder'] = 'Last Name'
form.custom.widget.last_name['_type'] = 'text'
# Email
form.custom.widget.email['_class'] = 'form-control'
form.custom.widget.email['_placeholder'] = 'Email'
form.custom.widget.email['_type'] = 'email'
# Password
form.custom.widget.password['_class'] = 'form-control'
form.custom.widget.password['_placeholder'] = 'Password'
form.custom.widget.password['_type'] = 'password'
# Confirm Password
form.custom.widget.password_two['_class'] = 'form-control'
form.custom.widget.password_two['_placeholder'] = 'Confirm Password'
form.custom.widget.password_two['_type'] = 'password'
return dict(form=form)
@auth.requires_login()
def gallery():
return dict()
def test():
form = auth.register()
return dict(form=form)
@auth.requires_login()
def profile():
form = auth.profile()
form.custom.widget.first_name['_class'] = 'form-control my-3 bg-light'
form.custom.widget.last_name['_class'] = 'form-control my-3 bg-light'
#form.custom.widget.email['_class'] = 'form-control my-3 bg-light'
#form.custom.widget.email['_type'] = 'email'
return dict(form=form)
@auth.requires_login()
def gallery_summary():
return dict()
| def user():
return dict(form=auth())
def index():
return dict()
def login():
form = auth.login(next=url(a='loginexample', c='default', f='gallery'))
form.custom.widget.email['_class'] = 'form-control my-3 bg-light'
form.custom.widget.email['_placeholder'] = 'Email'
form.custom.widget.password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.password['_placeholder'] = 'Password'
form.custom.widget.remember_me['_class'] = 'checkbox'
return dict(form=form)
def change_password():
form = auth.change_password()
form.custom.widget.old_password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.old_password['_placeholder'] = 'Old Password'
form.custom.widget.new_password['_class'] = 'form-control my-3 bg-light'
form.custom.widget.new_password['_placeholder'] = 'New Password'
form.custom.widget.new_password2['_class'] = 'form-control my-3 bg-light'
form.custom.widget.new_password2['_placeholder'] = 'Confirm New Password'
return dict(form=form)
def register():
records = db().select(db_hivetu.auth_user.ALL)
form = auth.register(next=url(a='hivetu', c='default', f='login'))
form.custom.widget.first_name['_class'] = 'form-control'
form.custom.widget.first_name['_placeholder'] = 'First Name'
form.custom.widget.first_name['_type'] = 'text'
form.custom.widget.last_name['_class'] = 'form-control'
form.custom.widget.last_name['_placeholder'] = 'Last Name'
form.custom.widget.last_name['_type'] = 'text'
form.custom.widget.email['_class'] = 'form-control'
form.custom.widget.email['_placeholder'] = 'Email'
form.custom.widget.email['_type'] = 'email'
form.custom.widget.password['_class'] = 'form-control'
form.custom.widget.password['_placeholder'] = 'Password'
form.custom.widget.password['_type'] = 'password'
form.custom.widget.password_two['_class'] = 'form-control'
form.custom.widget.password_two['_placeholder'] = 'Confirm Password'
form.custom.widget.password_two['_type'] = 'password'
return dict(form=form)
@auth.requires_login()
def gallery():
return dict()
def test():
form = auth.register()
return dict(form=form)
@auth.requires_login()
def profile():
form = auth.profile()
form.custom.widget.first_name['_class'] = 'form-control my-3 bg-light'
form.custom.widget.last_name['_class'] = 'form-control my-3 bg-light'
return dict(form=form)
@auth.requires_login()
def gallery_summary():
return dict() |
class Solution(object):
def coinChange(self, coins, amount):
"""
:type coins: List[int]
:type amount: int
:rtype: int
"""
"""
definition: dp[i] means min coins to achieve total i
result: return dp[amount]
assume the initial would be inf
"""
dp=[1<<31 for _ in xrange(amount+1)]
dp[0]=0
for coin in coins:
for j in xrange(coin,amount+1):
# get the min value using coins i
# suppose coins[i]==5 , we need check
# the min to get to 5, to check the min in dp[0]+1(5 coins)
# if we check 6 ,we need know the min num to reach dp[1]+1(5 coins)
dp[j]=min(dp[j-coin]+1,dp[j])
return -1 if dp[amount]==1<<31 else dp[amount]
| class Solution(object):
def coin_change(self, coins, amount):
"""
:type coins: List[int]
:type amount: int
:rtype: int
"""
'\n definition: dp[i] means min coins to achieve total i\n result: return dp[amount]\n assume the initial would be inf \n '
dp = [1 << 31 for _ in xrange(amount + 1)]
dp[0] = 0
for coin in coins:
for j in xrange(coin, amount + 1):
dp[j] = min(dp[j - coin] + 1, dp[j])
return -1 if dp[amount] == 1 << 31 else dp[amount] |
# Space: O(1)
# Time: O(n)
# recursive approach
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def swapPairs(self, head):
if head is None or head.next is None:
return head
first_node = head
second_node = head.next
first_node.next = self.swapPairs(head.next.next)
second_node.next = first_node
return second_node
| class Solution:
def swap_pairs(self, head):
if head is None or head.next is None:
return head
first_node = head
second_node = head.next
first_node.next = self.swapPairs(head.next.next)
second_node.next = first_node
return second_node |
"""
Interface for Controllers
functionality described in ps4.py ord xbox.py
"""
class IController:
def start(self):
raise NotImplementedError
def getActions(self):
raise NotImplementedError
| """
Interface for Controllers
functionality described in ps4.py ord xbox.py
"""
class Icontroller:
def start(self):
raise NotImplementedError
def get_actions(self):
raise NotImplementedError |
"""
Retrieve and display information from GBIF for all species in the dataset
"""
def register(parser):
parser.add_argument('-U', '--update', default=False, action='store_true')
def run(args):
if args.update:
args.api.update_gbif()
args.api.tree()
| """
Retrieve and display information from GBIF for all species in the dataset
"""
def register(parser):
parser.add_argument('-U', '--update', default=False, action='store_true')
def run(args):
if args.update:
args.api.update_gbif()
args.api.tree() |
fin = open("input_18.txt")
digits = '1234567890'
def prep(text):
text = text.strip().replace(' ','')
text = text[::-1]
text = text.replace('(','X')
text = text.replace(')','(')
text = text.replace('X',')')
return text
def geval(text):
# print(text)
if text[0] == '(':
plevel = 1
for i,char in enumerate(text[1:],1):
if char == '(':
plevel += 1
elif char == ')':
plevel += -1
if plevel == 0:
leftop = text[1:i]
parsepos=i
break
# print('parsepos',parsepos,len(text),leftop)
if parsepos == len(text)-1:
return int(geval(leftop))
else:
op=text[parsepos+1]
rightop=text[parsepos+2:]
elif text[0] in digits:
if len(text) == 1:
return int(text)
else:
leftop = text[0]
op = text[1]
rightop = text[2:]
# print(leftop,':',op,':',rightop)
if op=='+':
return int(geval(leftop))+int(geval(rightop))
elif op=='*':
return int(geval(leftop))*int(geval(rightop))
total = 0
for line in fin:
print(line,end='')
pline = prep(line)
result = int(geval(pline))
total += result
print(pline,'=',result,'\n')
fin.close()
print(total) | fin = open('input_18.txt')
digits = '1234567890'
def prep(text):
text = text.strip().replace(' ', '')
text = text[::-1]
text = text.replace('(', 'X')
text = text.replace(')', '(')
text = text.replace('X', ')')
return text
def geval(text):
if text[0] == '(':
plevel = 1
for (i, char) in enumerate(text[1:], 1):
if char == '(':
plevel += 1
elif char == ')':
plevel += -1
if plevel == 0:
leftop = text[1:i]
parsepos = i
break
if parsepos == len(text) - 1:
return int(geval(leftop))
else:
op = text[parsepos + 1]
rightop = text[parsepos + 2:]
elif text[0] in digits:
if len(text) == 1:
return int(text)
else:
leftop = text[0]
op = text[1]
rightop = text[2:]
if op == '+':
return int(geval(leftop)) + int(geval(rightop))
elif op == '*':
return int(geval(leftop)) * int(geval(rightop))
total = 0
for line in fin:
print(line, end='')
pline = prep(line)
result = int(geval(pline))
total += result
print(pline, '=', result, '\n')
fin.close()
print(total) |
#!/usr/bin/env python
#
# Converts the Gonnet matrix to a pair-wise score
#
# Read replacements
replacements = {}
filename = 'gonnet.csv'
print('Reading ' + filename)
rows = []
arow = []
acol = []
with open(filename, 'r') as f:
for k, line in enumerate(f):
row = line.strip().split(',')
if k < 19:
row = row[:row.index('')]
if k < 20:
arow.append(row[0])
rows.append([float(x) for x in row[1:]])
else:
acol = row[1:]
break
if arow != acol:
print('Warning: Order of acids in rows does not match order in columns')
# Write list of replacements
minscore = float('inf')
maxscore = -minscore
filename = 'gonnet_score.csv'
print('Writing ' + filename)
with open(filename, 'w') as f:
f.write('key1,key2,score\n')
for i, ar in enumerate(arow):
for j, ac in enumerate(acol):
if ar == ac:
break
score = rows[i][j]
f.write(ar + ',' + ac + ',' + str(score) + '\n')
f.write(ac + ',' + ar + ',' + str(score) + '\n')
minscore = min(score, minscore)
maxscore = max(score, maxscore)
print('Lowest score : ' + str(minscore))
print('Highest score: ' + str(maxscore))
print('Done')
| replacements = {}
filename = 'gonnet.csv'
print('Reading ' + filename)
rows = []
arow = []
acol = []
with open(filename, 'r') as f:
for (k, line) in enumerate(f):
row = line.strip().split(',')
if k < 19:
row = row[:row.index('')]
if k < 20:
arow.append(row[0])
rows.append([float(x) for x in row[1:]])
else:
acol = row[1:]
break
if arow != acol:
print('Warning: Order of acids in rows does not match order in columns')
minscore = float('inf')
maxscore = -minscore
filename = 'gonnet_score.csv'
print('Writing ' + filename)
with open(filename, 'w') as f:
f.write('key1,key2,score\n')
for (i, ar) in enumerate(arow):
for (j, ac) in enumerate(acol):
if ar == ac:
break
score = rows[i][j]
f.write(ar + ',' + ac + ',' + str(score) + '\n')
f.write(ac + ',' + ar + ',' + str(score) + '\n')
minscore = min(score, minscore)
maxscore = max(score, maxscore)
print('Lowest score : ' + str(minscore))
print('Highest score: ' + str(maxscore))
print('Done') |
# rename this file to config.py
# change with your info from adafruit.io
ADAFRUIT_IO_USERNAME = "XXXX"
ADAFRUIT_IO_KEY = "aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
APIURL="https://api.openweathermap.org/data/2.5/weather?lat=41.XXXXXX&lon=-73.XXXXXX&appid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&units=imperial"
| adafruit_io_username = 'XXXX'
adafruit_io_key = 'aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX'
apiurl = 'https://api.openweathermap.org/data/2.5/weather?lat=41.XXXXXX&lon=-73.XXXXXX&appid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&units=imperial' |
loud_string = "This string is going to get sliced down!!!!"
quiet_string = loud_string[:-4]
print(quiet_string)
string_one = "Uno"
string_one += " means one in spanish."
print(string_one)
# Join method
# join string . join (sequence to be joined )
string = " "
sequence = ("a", "b", "c", "d")
print(string.join(sequence))
#multi line string multiline
multiline_string = """
THIS IS
A
MULTILINE
STRING!
"""
print(multiline_string)
| loud_string = 'This string is going to get sliced down!!!!'
quiet_string = loud_string[:-4]
print(quiet_string)
string_one = 'Uno'
string_one += ' means one in spanish.'
print(string_one)
string = ' '
sequence = ('a', 'b', 'c', 'd')
print(string.join(sequence))
multiline_string = '\nTHIS IS \nA\nMULTILINE\nSTRING!\n'
print(multiline_string) |
"""Clean output files (.jdr) from wire sniffing."""
__author__ = "James Mullinix"
__version__ = "0.1.0"
| """Clean output files (.jdr) from wire sniffing."""
__author__ = 'James Mullinix'
__version__ = '0.1.0' |
# Copyright 2018 eBay Inc.
# Copyright 2012 OpenStack LLC.
# 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
#
# https://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.
NETFORCE_PLUGIN = 'NETFORCE'
NETFORCE_DESCRIPTION = 'A service plugin that manages the life ' \
'cycle of the resources related to network devices'
HEALTH_STATE_HEALTHY = "healthy"
HEALTH_STATE_ERROR = "error"
HEALTH_STATE_PROBATION = "probation"
HEALTH_STATE_MAINTENANCE = "maintenance"
SUBNET_TYPE_PRIMARY = 'primary'
CMS_ASSET_STATE_DECOMM = 'decomm'
CMS_ASSET_STATE_SACHECK = 'SAcheck'
| netforce_plugin = 'NETFORCE'
netforce_description = 'A service plugin that manages the life cycle of the resources related to network devices'
health_state_healthy = 'healthy'
health_state_error = 'error'
health_state_probation = 'probation'
health_state_maintenance = 'maintenance'
subnet_type_primary = 'primary'
cms_asset_state_decomm = 'decomm'
cms_asset_state_sacheck = 'SAcheck' |
consumer_conf = {
"aws_region":"",
"kinesis_stream":"",
"kinesis_endpoint":"",
"kinesis_app_name":"",
"AWS_ACCESS_KEY":"",
"AWS_SECRET_KEY":"",
"AWS_ACCESS_KEY_ID":"",
"AWS_SECRET_ACCESS_KEY":"",
"MONGO_CONNECTION_STRING":""
} | consumer_conf = {'aws_region': '', 'kinesis_stream': '', 'kinesis_endpoint': '', 'kinesis_app_name': '', 'AWS_ACCESS_KEY': '', 'AWS_SECRET_KEY': '', 'AWS_ACCESS_KEY_ID': '', 'AWS_SECRET_ACCESS_KEY': '', 'MONGO_CONNECTION_STRING': ''} |
'''
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).
The algorithm for myAtoi(string s) is as follows:
Read in and ignore any leading whitespace.
Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present.
Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored.
Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2).
If the integer is out of the 32-bit signed integer range [-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.
Return the integer as the final result.
Note:
Only the space character ' ' is considered a whitespace character.
Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.
Example 1:
Input: s = "42"
Output: 42
Explanation: The underlined characters are what is read in, the caret is the current reader position.
Step 1: "42" (no characters read because there is no leading whitespace)
^
Step 2: "42" (no characters read because there is neither a '-' nor '+')
^
Step 3: "42" ("42" is read in)
^
The parsed integer is 42.
Since 42 is in the range [-231, 231 - 1], the final result is 42.
'''
class Solution:
def myAtoi(self, s: str) -> int:
digits = set(list('0123456789'))
signs = set(list('-+'))
tmp_list = []
for c in s:
if len(tmp_list) == 0:
if c in digits or c in signs:
tmp_list.append(c)
elif c == ' ':
continue
else:
break
else:
if c in digits:
tmp_list.append(c)
else:
break
if len(tmp_list) == 0 or tmp_list[-1] in signs:
return 0
print(tmp_list)
res = int(''.join(tmp_list[:]))
if res > 2 ** 31 - 1:
return 2 ** 31 - 1
elif res < -2 ** 31:
return -2 ** 31
else:
return res | """
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).
The algorithm for myAtoi(string s) is as follows:
Read in and ignore any leading whitespace.
Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present.
Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored.
Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2).
If the integer is out of the 32-bit signed integer range [-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.
Return the integer as the final result.
Note:
Only the space character ' ' is considered a whitespace character.
Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.
Example 1:
Input: s = "42"
Output: 42
Explanation: The underlined characters are what is read in, the caret is the current reader position.
Step 1: "42" (no characters read because there is no leading whitespace)
^
Step 2: "42" (no characters read because there is neither a '-' nor '+')
^
Step 3: "42" ("42" is read in)
^
The parsed integer is 42.
Since 42 is in the range [-231, 231 - 1], the final result is 42.
"""
class Solution:
def my_atoi(self, s: str) -> int:
digits = set(list('0123456789'))
signs = set(list('-+'))
tmp_list = []
for c in s:
if len(tmp_list) == 0:
if c in digits or c in signs:
tmp_list.append(c)
elif c == ' ':
continue
else:
break
elif c in digits:
tmp_list.append(c)
else:
break
if len(tmp_list) == 0 or tmp_list[-1] in signs:
return 0
print(tmp_list)
res = int(''.join(tmp_list[:]))
if res > 2 ** 31 - 1:
return 2 ** 31 - 1
elif res < -2 ** 31:
return -2 ** 31
else:
return res |
# ==========================================================================
# Only for a given set of 10 companies the data is being extracted/collected
# to make predictions as they are independent and are also likely to sample
# lot of variation from engineering, beverages, mdicine, investment banking
# etc and the corresponding ensembles are being used.
# ==========================================================================
selected = [
'GS',
# 'NKE',
# 'MCD',
# 'PFE',
# 'DIS',
# 'INTC',
# 'WMT',
# 'JNJ',
# 'JPM',
# 'AAPL'
]
# ===================================
# Companies to be added in the future
# ===================================
all_companies_list = [
'TRV',
'DOW',
'WBA',
'CAT',
'GS',
'MMM',
'AXP',
'UTX',
'IBM',
'NKE',
'MCD',
'BA',
'CSCO',
'CVX',
'PFE',
'MRK',
'VZ',
'KO',
'DIS',
'HD',
'XOM',
'UNH',
'INTC',
'PG',
'WMT',
'JNJ',
'JPM',
'V',
'AAPL',
'MSFT'
]
# Companies List:
# 1.Travelers ==== TRV
# 2.Dow ==== DOW
# 3.Walgreens Boots Alliance ==== WBA
# 4.Caterpillar ==== CAT
# 5.Goldman Sachs ==== GS
# 6.3M ==== MMM
# 7.American Express ==== AXP
# 8.United Technologies ==== UTX
# 9.IBM ==== IBM
#10.Nike ==== NKE
#11.McDonald's ==== MCD
#12.Boeing ==== BA
#13.Cisco ==== CSCO
#14.Chevron ==== CVX
#15.Pfizer ==== PFE
#16.Merck & Co ==== MRK
#17.Verizon ==== VZ
#18.The Coca-Cola Company ==== KO
#19.Disney ==== DIS
#20.Home Depot ==== HD
#21.Exxon Mobil ==== XOM
#22.UnitedHealth Group ==== UNH
#23.Intel ==== INTC
#24.Procter & Gamble ==== PG
#25.Walmart ==== WMT
#26.Johnson & Johnson ==== JNJ
#27.JPMorgan ==== JPM
#28.Visa ==== V
#29.Apple ==== AAPL
#30.Microsoft ==== MSFT | selected = ['GS']
all_companies_list = ['TRV', 'DOW', 'WBA', 'CAT', 'GS', 'MMM', 'AXP', 'UTX', 'IBM', 'NKE', 'MCD', 'BA', 'CSCO', 'CVX', 'PFE', 'MRK', 'VZ', 'KO', 'DIS', 'HD', 'XOM', 'UNH', 'INTC', 'PG', 'WMT', 'JNJ', 'JPM', 'V', 'AAPL', 'MSFT'] |
def getFix(s):
ret = ""
for i in range(1, len(s) - 1):
if s[i] == '(':
ret += ')'
else:
ret += '('
return ret
def isCorrect(s):
cnt = 0
for c in s:
if c == '(':
cnt += 1
else:
cnt -= 1
if cnt < 0:
return False
return True
def do(s):
if len(s) == 0:
return ""
i, cnt = 0, 0
while True:
if s[i] == '(':
cnt += 1
else:
cnt -= 1
i += 1
if cnt == 0:
break
u, v = s[:i], s[i:]
if isCorrect(u):
return u + do(v)
else:
return '(' + do(v) + ')' + getFix(u)
def solution(p):
return do(p)
| def get_fix(s):
ret = ''
for i in range(1, len(s) - 1):
if s[i] == '(':
ret += ')'
else:
ret += '('
return ret
def is_correct(s):
cnt = 0
for c in s:
if c == '(':
cnt += 1
else:
cnt -= 1
if cnt < 0:
return False
return True
def do(s):
if len(s) == 0:
return ''
(i, cnt) = (0, 0)
while True:
if s[i] == '(':
cnt += 1
else:
cnt -= 1
i += 1
if cnt == 0:
break
(u, v) = (s[:i], s[i:])
if is_correct(u):
return u + do(v)
else:
return '(' + do(v) + ')' + get_fix(u)
def solution(p):
return do(p) |
# https://leetcode.com/problems/subarray-sum-equals-k/
class Solution:
def subarraySum(self, nums: list[int], k: int) -> int:
block_sum = 0
sum_counts = {0: 1} # Pretend sum at the left of nums[0] was 0.
good_subarrays = 0
for num in nums:
block_sum += num
required = block_sum - k
if required in sum_counts:
good_subarrays += sum_counts[required]
sum_counts[block_sum] = sum_counts.get(block_sum, 0) + 1
return good_subarrays
| class Solution:
def subarray_sum(self, nums: list[int], k: int) -> int:
block_sum = 0
sum_counts = {0: 1}
good_subarrays = 0
for num in nums:
block_sum += num
required = block_sum - k
if required in sum_counts:
good_subarrays += sum_counts[required]
sum_counts[block_sum] = sum_counts.get(block_sum, 0) + 1
return good_subarrays |
def const_ver():
return "v8.0"
def is_gpvdm_next():
return False
| def const_ver():
return 'v8.0'
def is_gpvdm_next():
return False |
if True:
pass
elif (banana):
pass
else:
pass | if True:
pass
elif banana:
pass
else:
pass |
load("@//tools/base/bazel:merge_archives.bzl", "merge_jars")
def setup_bin_loop_repo():
native.new_local_repository(
name = "baseline",
path = "bazel-bin",
build_file_content = """
load("@cov//:baseline.bzl", "construct_baseline_processing_graph")
construct_baseline_processing_graph()
""",
)
# correctness requires that *.coverage.baseline.srcs be deleted
# to ensure that any deleted targets do not hang around and interfere
# studio_coverage.sh does this via a `bazel clean`
# report.sh does this via an explicit `find` and `rm`
def construct_baseline_processing_graph():
srcs = native.glob(["**/*.coverage.baseline.srcs"])
# turn `package/target.coverage.baseline.srcs`
# into `package:target`
pts = [":".join(s.rsplit("/", 1)).replace(".coverage.baseline.srcs", "") for s in srcs]
native.genrule(
name = "merged-baseline-srcs",
# turn `package:target`
# into `@//package:target_coverage.baseline.srcs.filtered`
srcs = ["@//{}_coverage.baseline.srcs.filtered".format(pt) for pt in pts],
outs = ["merged-baseline-srcs.txt"],
cmd = "cat $(SRCS) | sort | uniq >$@",
visibility = ["@cov//:__pkg__", "@results//:__pkg__"],
)
merge_jars(
name = "merged-baseline-jars",
# turn `package:target`
# into `@//package:target_coverage.baseline.jar`
jars = ["@//{}_coverage.baseline.jar".format(pt) for pt in pts],
out = "merged-baseline-jars.jar",
# use this for now b/c of duplicate META-INF/plugin.xml
# theoretically allows for a duplicate class problem in Jacoco processing
# however, as these are all directly from non-transitive source class jars
# it shouldn't be a problem as we don't have overlapping source targets
allow_duplicates = True,
visibility = ["@cov//:__pkg__", "@results//:__pkg__"],
)
native.genrule(
name = "merged-baseline-exempt_markers",
# turn `package:target`
# into `@//package:target_coverage.baseline.exempt_markers`
srcs = ["@//{}_coverage.baseline.exempt_markers".format(pt) for pt in pts],
outs = ["merged-exempt_markers.txt"],
cmd = "cat $(SRCS) >$@",
visibility = ["@cov//:__pkg__"],
)
| load('@//tools/base/bazel:merge_archives.bzl', 'merge_jars')
def setup_bin_loop_repo():
native.new_local_repository(name='baseline', path='bazel-bin', build_file_content='\nload("@cov//:baseline.bzl", "construct_baseline_processing_graph")\nconstruct_baseline_processing_graph()\n')
def construct_baseline_processing_graph():
srcs = native.glob(['**/*.coverage.baseline.srcs'])
pts = [':'.join(s.rsplit('/', 1)).replace('.coverage.baseline.srcs', '') for s in srcs]
native.genrule(name='merged-baseline-srcs', srcs=['@//{}_coverage.baseline.srcs.filtered'.format(pt) for pt in pts], outs=['merged-baseline-srcs.txt'], cmd='cat $(SRCS) | sort | uniq >$@', visibility=['@cov//:__pkg__', '@results//:__pkg__'])
merge_jars(name='merged-baseline-jars', jars=['@//{}_coverage.baseline.jar'.format(pt) for pt in pts], out='merged-baseline-jars.jar', allow_duplicates=True, visibility=['@cov//:__pkg__', '@results//:__pkg__'])
native.genrule(name='merged-baseline-exempt_markers', srcs=['@//{}_coverage.baseline.exempt_markers'.format(pt) for pt in pts], outs=['merged-exempt_markers.txt'], cmd='cat $(SRCS) >$@', visibility=['@cov//:__pkg__']) |
other_schema = {
"type": "list",
"items": [
{"type": "string"},
{"type": "integer", "min": 500},
{
"type": "list",
"items": [
{"type": "string"},
{"type": "integer", "name": "nd_int"},
{"type": "integer"},
{"type": "integer", "min": 50},
],
},
],
}
schema = {
"list_of_values": {
"type": "list",
"name": "hello",
"items": [
{"type": "string"},
{"type": "integer", "min": 500},
{
"type": "list",
"items": [
{"type": "string"},
{"type": "integer"},
{"type": "integer", "name": "hi"},
{
"type": "dict",
"schema": {
"field1": {"type": "string", "name": "field01231"},
"field2": {"type": "integer"},
},
},
],
},
],
},
"list_of_values_2": other_schema,
}
| other_schema = {'type': 'list', 'items': [{'type': 'string'}, {'type': 'integer', 'min': 500}, {'type': 'list', 'items': [{'type': 'string'}, {'type': 'integer', 'name': 'nd_int'}, {'type': 'integer'}, {'type': 'integer', 'min': 50}]}]}
schema = {'list_of_values': {'type': 'list', 'name': 'hello', 'items': [{'type': 'string'}, {'type': 'integer', 'min': 500}, {'type': 'list', 'items': [{'type': 'string'}, {'type': 'integer'}, {'type': 'integer', 'name': 'hi'}, {'type': 'dict', 'schema': {'field1': {'type': 'string', 'name': 'field01231'}, 'field2': {'type': 'integer'}}}]}]}, 'list_of_values_2': other_schema} |
# As you already know, the string is one of the most
# important data types in Python. To make working with
# strings easier, Python has many special built-in string
# methods. We are about to learn some of them.
# An important thing to remember, however, is that the
# string is an immutable data type! It means that you
# cannot just change the string in-place, so most string
# methods return a copy of the string (with several
# exceptions). To save the changes made to the string
# for later use you need to create a new variable for the
# copy that you made or assign the same name to the
# copy. So, what to do with the output of the methods
# depends on whenther you are going to use the original
# string or its copy later.
# 1. "Changing" a string
# The first group of string methods consists of the ones that
# "change" the string in a specific way, that is they return the
# copy with some changes made.
# The syntax for calling a method is as follows: a string is
# given first (or the name of a variable that holds a string),
# then comes a period followed by the method name and
# parentheses in whihc arguments are listed.
# Here's a list of common string methods of that kind:
# = str.replace(old, new, count) replaces all
# occurrences of the old string with the new one. The
# count parameter is optional, and if specified, only
# the first count occurrences are replaced in the given
# string.
# - str.upper() converts all characters of the string to
# upper case.
# - str.lower() converts all characters of the string to
# lower case.
# - str.title() converts the first character of each word
# to upper case.
# - str.swapcase() converts upper case to lower case
# and vice versa.
# - str.capitalize() changes the first character of the
# string to title case and the rest to lower case.
# And here's an example of how these methods are used
# (note that we don't save the result of every method):
message = "bonjour and welcome to Paris!"
print(message.upper()) # BONJOUR AND WELCOME TO PARIS!
# 'message' is not changed
print(message) # bonjour and welcoem to Paris!
title_message = message.title()
# 'title_message' contains a new string with all words capitalized
print(title_message) # Bonjour And Welcome To Paris!
print(message.replace("Paris", "Lyon")) # bonjour and welcome to Lyon!
replace_message = message.replace("o", "!", 2)
print(replace_message) # b!nj!ur and welcome to Par!s!
# again, the sounce string is unchanged, only its copy is modified
print(message) # bonjour and welcome to Paris!
# 2. "Editing" a string
# Often, when you read a string from somewhere (a file or
# the input) you need to edit it so that it contains only the
# information you need. For instance, the input string can
# have a lot of unnecessary whitespaces or some trailing
# combinations of characters. The "editing" methods that can
# help with that are strip(), rstrip(), and lstrip().
# - str.lstrip([chars]) removes the leading character
# (i.e. characters from the left side). If the argument
# chars isn't specified, leading whitespaces are
# removed.
# - str.rstrip([chars]) removes the trailing characters
# (i.e. characters from the right side). The default for
# the argument chars is also whitespace.
# - str.strip([chars]) removes both the leading and
# the trailing characters. The default is whitespace.
# The chars argument, when specified, is a string of
# characters that are meant to be removed from the very end
# or beginning of the work (depending on the method you're
# using). See how it works:
whitespace_string = " hey "
normal_string = "incomprehensibilities"
# delete spaces from the left side
whitespace_string.lstrip() # "hey "
# delete all "i" and "s" from the left side
normal_string.lstrip("is") # "ncomprehensibilities"
# delete spaces from the right side
whitespace_string.rstrip() # " hey"
# delete all "i" and "s" from the right side
normal_string.rstrip("is") # "incomprehensibilitie"
# no spaces from the both sides
whitespace_string.strip() # "hey"
# delete all trailing "i" and "s" from the both sides
normal_string.strip("is") # "ncomprehensibilitie"
# Keep in mind that the methods strip(), lstrip() and
# rstrip() get rid of all possible combinations of specified
# characters:
word = "Mississippi"
# starting from the right side, all "i", "p", and "s" are removed:
print(word.rstrip("ips")) # "M"
# the word starts with "M" rather than "i", "p", "s", so no chars are removed from the left side:
print(word.lstrip("ips")) # "Mississippi"
# "M", "i", "p", and "s" are removed from both sides, so nothing is left:
print(word.strip("Mips")) # ""
# Use them carefully, or you may end up with an empty
# string.
# 3. Summary
# To sum up, we have considered the main methods for
# strings. Here is a breif recap:
# - While working with strings, you have to remember
# that strings are immutable, thus all the methods that "change"
# them only return the copy of a string with necessary
# changes.
# - If you want to save the result of a method call for later
# use, you need to assign this result to a variable (either the
# same or the one with a different name).
# - If you want to use this result only once, for example, in
# comparison or just to print the formatted string, you ware
# free to use the result on the spot, as we did within
# print().
| message = 'bonjour and welcome to Paris!'
print(message.upper())
print(message)
title_message = message.title()
print(title_message)
print(message.replace('Paris', 'Lyon'))
replace_message = message.replace('o', '!', 2)
print(replace_message)
print(message)
whitespace_string = ' hey '
normal_string = 'incomprehensibilities'
whitespace_string.lstrip()
normal_string.lstrip('is')
whitespace_string.rstrip()
normal_string.rstrip('is')
whitespace_string.strip()
normal_string.strip('is')
word = 'Mississippi'
print(word.rstrip('ips'))
print(word.lstrip('ips'))
print(word.strip('Mips')) |
class CircularDependency(Exception):
pass
class UnparsedExpressions(Exception):
pass
class UnknownFilter(Exception):
pass
class FilterError(Exception):
pass
| class Circulardependency(Exception):
pass
class Unparsedexpressions(Exception):
pass
class Unknownfilter(Exception):
pass
class Filtererror(Exception):
pass |
#!/usr/bin/env python
data = [i for i in open('day03.input').readlines()]
fabric = [[0]*1000 for i in range(1000)]
def get_x_y_w_h(line):
_, _, coord, dim = line.split()
x, y = map(int, coord[:-1].split(','))
w, h = map(int, dim.split('x'))
return x, y, w, h
for line in data:
x, y, w, h = get_x_y_w_h(line)
for row in range(h):
for col in range(w):
fabric[y+row][x+col] += 1
# part 1
overlap = 0
for strip in fabric:
for inch in strip:
if int(inch) >= 2:
overlap += 1
print(overlap)
# part 2
for line in data:
x, y, w, h = get_x_y_w_h(line)
failed = False
for row in range(h):
for col in range(w):
try:
if fabric[y+row][x+col] != 1:
failed = True
except IndexError:
failed = True
if not failed:
print(line.split()[0])
| data = [i for i in open('day03.input').readlines()]
fabric = [[0] * 1000 for i in range(1000)]
def get_x_y_w_h(line):
(_, _, coord, dim) = line.split()
(x, y) = map(int, coord[:-1].split(','))
(w, h) = map(int, dim.split('x'))
return (x, y, w, h)
for line in data:
(x, y, w, h) = get_x_y_w_h(line)
for row in range(h):
for col in range(w):
fabric[y + row][x + col] += 1
overlap = 0
for strip in fabric:
for inch in strip:
if int(inch) >= 2:
overlap += 1
print(overlap)
for line in data:
(x, y, w, h) = get_x_y_w_h(line)
failed = False
for row in range(h):
for col in range(w):
try:
if fabric[y + row][x + col] != 1:
failed = True
except IndexError:
failed = True
if not failed:
print(line.split()[0]) |
try:
hours = int(input("enter hours :"))
rate=int(input("enter rate :"))
pay = int(hours * rate)
print("pay")
except:
print("Error, enter numeric input!") | try:
hours = int(input('enter hours :'))
rate = int(input('enter rate :'))
pay = int(hours * rate)
print('pay')
except:
print('Error, enter numeric input!') |
class Person():
"""docstring for Person"""
def __init__(self, name, age):
self.name = name
self.age = age
def __str__(self):
return "{} is {} years old".format(self.name, self.age)
class Employee(Person):
def __str__(self):
return "{} is employee".format(self.name)
maria = Person("Maria", 20)
pesho = Employee("Pesho",25)
print(maria)
print(pesho)
| class Person:
"""docstring for Person"""
def __init__(self, name, age):
self.name = name
self.age = age
def __str__(self):
return '{} is {} years old'.format(self.name, self.age)
class Employee(Person):
def __str__(self):
return '{} is employee'.format(self.name)
maria = person('Maria', 20)
pesho = employee('Pesho', 25)
print(maria)
print(pesho) |
occurrence = int(input())
city = {}
for i in range(occurrence):
strike = input()
if strike in city:
city[strike] += 1
else:
city[strike] = 0
strike_counter = 0
for v in city.values():
strike_counter += v
if strike_counter > 0:
print('1')
else:
print('0') | occurrence = int(input())
city = {}
for i in range(occurrence):
strike = input()
if strike in city:
city[strike] += 1
else:
city[strike] = 0
strike_counter = 0
for v in city.values():
strike_counter += v
if strike_counter > 0:
print('1')
else:
print('0') |
class CohereObject():
def __str__(self) -> str:
contents = ''
exclude_list = ['iterator']
for k in self.__dict__.keys():
if k not in exclude_list:
contents += f'\t{k}: {self.__dict__[k]}\n'
output = f'cohere.{type(self).__name__} {{\n{contents}}}'
return output
| class Cohereobject:
def __str__(self) -> str:
contents = ''
exclude_list = ['iterator']
for k in self.__dict__.keys():
if k not in exclude_list:
contents += f'\t{k}: {self.__dict__[k]}\n'
output = f'cohere.{type(self).__name__} {{\n{contents}}}'
return output |
class Plot(object):
""" """
def __init__(self):
""" """
return 0
| class Plot(object):
""" """
def __init__(self):
""" """
return 0 |
class Producto:
def __init__(self, nombre, descripcion, precio, stock, codigo):
self.nombre = nombre
self.descripcion = descripcion
self.precio = precio
self.stock = stock
self.codigo = codigo | class Producto:
def __init__(self, nombre, descripcion, precio, stock, codigo):
self.nombre = nombre
self.descripcion = descripcion
self.precio = precio
self.stock = stock
self.codigo = codigo |
# The number of nook purchase price periods
PRICE_PERIOD_COUNT = 12
# Alternating 'AM' 'PM' labels
PRICE_TODS = [["AM", "PM"][i % 2] for i in range(PRICE_PERIOD_COUNT)]
PRICE_DAYS = ["Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"]
PRICE_PERIODS = [x for x in range(PRICE_PERIOD_COUNT)]
# The y range of price graphs
PRICE_Y_LIM = [0, 701]
# TEXT SIZE CONSTANTS
LABEL_SIZE = 16
| price_period_count = 12
price_tods = [['AM', 'PM'][i % 2] for i in range(PRICE_PERIOD_COUNT)]
price_days = ['Mon', 'Tues', 'Wed', 'Thurs', 'Fri', 'Sat']
price_periods = [x for x in range(PRICE_PERIOD_COUNT)]
price_y_lim = [0, 701]
label_size = 16 |
"""Should raise SyntaxError: cannot assign to __debug__ in Py 3.8
and assignment to keyword before."""
a.__debug__ = 1
| """Should raise SyntaxError: cannot assign to __debug__ in Py 3.8
and assignment to keyword before."""
a.__debug__ = 1 |
# Litkowski Norbert
# Cw.1
# Python
# McCulloch-Pitts neuron
def f(weights, inputs, m):
x = float(0)
for i in range(m):
x += (weights[i] * inputs[i])
if x >= 0:
return 1
else:
return 0
def and_gate():
inputs = []
weights = [float(0.3), float(0.3), float(-0.5)]
m = 3
print('\nAND gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if(x.isdigit() and y.isdigit()):
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print("\nResult: {}".format(f(weights, inputs, m)))
def nand_gate():
inputs = []
weights = [float(-0.4), float(-0.4), float(0.6)]
m = 3
print('\nNAND gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if(x.isdigit() and y.isdigit()):
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print("\nResult: {}".format(f(weights, inputs, m)))
def or_gate():
inputs = []
weights = [float(0.3), float(0.3), float(-0.2)]
m = 3
print('\nOR gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if(x.isdigit() and y.isdigit()):
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print("\nResult: {}".format(f(weights, inputs, m)))
def not_gate():
inputs = []
weights = [float(-0.5), float(0.3)]
m = 2
print('\nNOT gate\n')
x = input('Input: ')
if(x.isdigit()):
inputs.append(float(int(x)))
inputs.append(float(1))
else:
print('\nBad input')
return
print("\nResult: {}".format(f(weights, inputs, m)))
def main():
while True:
print("\n1. NOT gate")
print("2. AND gate")
print("3. NAND gate")
print("4. OR gate")
print("0. Exit")
x = input("\nChoice: ")
try:
x = int(x)
except ValueError:
print("\nBad input")
if(x == 1):
not_gate()
elif(x == 2):
and_gate()
elif(x == 3):
nand_gate()
elif(x == 4):
or_gate()
elif(x == 0):
break
else:
print("\nBad input...")
if __name__ == '__main__':
main()
| def f(weights, inputs, m):
x = float(0)
for i in range(m):
x += weights[i] * inputs[i]
if x >= 0:
return 1
else:
return 0
def and_gate():
inputs = []
weights = [float(0.3), float(0.3), float(-0.5)]
m = 3
print('\nAND gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if x.isdigit() and y.isdigit():
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print('\nResult: {}'.format(f(weights, inputs, m)))
def nand_gate():
inputs = []
weights = [float(-0.4), float(-0.4), float(0.6)]
m = 3
print('\nNAND gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if x.isdigit() and y.isdigit():
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print('\nResult: {}'.format(f(weights, inputs, m)))
def or_gate():
inputs = []
weights = [float(0.3), float(0.3), float(-0.2)]
m = 3
print('\nOR gate\n')
x = input('Input 1: ')
y = input('Input 2: ')
if x.isdigit() and y.isdigit():
inputs.append(float(int(x)))
inputs.append(float(int(y)))
inputs.append(float(1))
else:
print('\nBad input')
return
print('\nResult: {}'.format(f(weights, inputs, m)))
def not_gate():
inputs = []
weights = [float(-0.5), float(0.3)]
m = 2
print('\nNOT gate\n')
x = input('Input: ')
if x.isdigit():
inputs.append(float(int(x)))
inputs.append(float(1))
else:
print('\nBad input')
return
print('\nResult: {}'.format(f(weights, inputs, m)))
def main():
while True:
print('\n1. NOT gate')
print('2. AND gate')
print('3. NAND gate')
print('4. OR gate')
print('0. Exit')
x = input('\nChoice: ')
try:
x = int(x)
except ValueError:
print('\nBad input')
if x == 1:
not_gate()
elif x == 2:
and_gate()
elif x == 3:
nand_gate()
elif x == 4:
or_gate()
elif x == 0:
break
else:
print('\nBad input...')
if __name__ == '__main__':
main() |
def bubble_sort(mass, cmp = lambda a, b: a - b):
len_mass= len(mass)
for i in range(len_mass, 0, -1):
need = False
for j in range(1, i):
if cmp(mass[j-1], mass[j]) > 0:
mass[j-1], mass[j] = mass[j], mass[j-1]
need = True
if not need: break
return mass
def insertion_sort(mass, cmp = lambda a, b: a - b):
len_mass = len(mass)
for i in range(1, len_mass):
v = mass[i]
j = i
while cmp(mass[j-1], v) > 0 and j > 0:
mass[j] = mass[j-1]
j -= 1
mass[j] = v
return mass
def selection_sort(mass, cmp = lambda a, b: a - b):
len_mass = len(mass)
for i in range(len_mass):
min_i = i
for j in range(i+1, len_mass):
if cmp(mass[j], mass[min_i]) < 0:
min_i = j
mass[min_i], mass[i] = mass[i], mass[min_i]
return mass
if __name__ == "__main__":
a = [3, 2, 1]
print(bubble_sort(a))
print(insertion_sort(a))
print(selection_sort(a)) | def bubble_sort(mass, cmp=lambda a, b: a - b):
len_mass = len(mass)
for i in range(len_mass, 0, -1):
need = False
for j in range(1, i):
if cmp(mass[j - 1], mass[j]) > 0:
(mass[j - 1], mass[j]) = (mass[j], mass[j - 1])
need = True
if not need:
break
return mass
def insertion_sort(mass, cmp=lambda a, b: a - b):
len_mass = len(mass)
for i in range(1, len_mass):
v = mass[i]
j = i
while cmp(mass[j - 1], v) > 0 and j > 0:
mass[j] = mass[j - 1]
j -= 1
mass[j] = v
return mass
def selection_sort(mass, cmp=lambda a, b: a - b):
len_mass = len(mass)
for i in range(len_mass):
min_i = i
for j in range(i + 1, len_mass):
if cmp(mass[j], mass[min_i]) < 0:
min_i = j
(mass[min_i], mass[i]) = (mass[i], mass[min_i])
return mass
if __name__ == '__main__':
a = [3, 2, 1]
print(bubble_sort(a))
print(insertion_sort(a))
print(selection_sort(a)) |
class Room:
#Initialises a room. Do not change the function signature (line 2)
def __init__(self, name):
self.name = name
self.quest = None
self.north = None
self.south = None
self.east = None
self.west = None
#Returns the room's name.
def get_name(self):
return self.name
#Returns a string containing a short description of the room.
#This description changes based on whether or not a relevant quest has been completed in this room.
#If there are no quests that are relevant to this room,
#this should return: 'There is nothing in this room.
def get_short_desc(self):
if self.quest == None:
return "There is nothing in this room."
elif self.quest.is_complete() == True:
return self.quest.after
else:
return self.quest.before
#If a quest can be completed in this room, returns a command that the user can input to attempt the quest
def get_quest_action(self):
if self.quest == None:
return
else:
return self.quest.get_action()
#Sets a new quest for this room
def set_quest(self, q):
self.quest = q
#Returns a Quest object that can be completed in this room.
def get_quest(self):
if self.quest.is_complete() == False:
return self.quest
#Creates an path leading from this room to another
def set_path(self, dir, dest):
if dir == "NORTH":
self.north = dest
return self.north
elif dir == "SOUTH":
self.south = dest
return self.south
elif dir == "EAST":
self.east = dest
return self.east
elif dir == "WEST":
self.west = dest
return self.west
#Creates a drawing depicting the exits in each room.
def draw(self):
height = 11
width = 22
print("")
line = ""
# Print top +----+
if height > 0:
line += "+"
i = 0
while i < width-2:
if i == 9 and self.north != None:
line += "NN"
i += 2
else:
line += "-"
i += 1
line += "+"
# Print middle | |
i = 0
while i < height-2:
if i == 4 and self.west != None:
line += "\nW"
else:
line += "\n|"
index = 0
while index < width-2:
line += " "
index += 1
if i == 4 and self.east != None:
line += "E"
else:
line += "|"
i += 1
# Print bottom +----+
if height > 1:
i = 0
line += "\n+"
while i < width-2:
if i == 9 and self.south != None:
line += "SS"
i += 2
else:
line += "-"
i += 1
line += "+"
print(line)
print("You are standing at the {}.".format(self.name))
print(Room.get_short_desc(self))
#Returns an adjoining Room object based on a direction given.
#(i.e. if dir == "NORTH", returns a Room object in the north)
def move(self, dir):
if dir == "NORTH" or dir == "N":
if self.north == None:
print("You can't go that way.")
return self
else:
print("You move to the north, arriving at the {}.".format(self.north.name))
self.north.draw()
return self.north
elif dir == "SOUTH" or dir == "S":
if self.south == None:
print("You can't go that way.")
return self
else:
print("You move to the south, arriving at the {}.".format(self.south.name))
self.south.draw()
return self.south
elif dir == "WEST" or dir == "W":
if self.west == None:
print("You can't go that way.")
return self
else:
print("You move to the west, arriving at the {}.".format(self.west.name))
self.west.draw()
return self.west
elif dir == "EAST" or dir == "E":
if self.east == None:
print("You can't go that way.")
return self
else:
print("You move to the east, arriving at the {}.".format(self.east.name))
self.east.draw()
return self.east
| class Room:
def __init__(self, name):
self.name = name
self.quest = None
self.north = None
self.south = None
self.east = None
self.west = None
def get_name(self):
return self.name
def get_short_desc(self):
if self.quest == None:
return 'There is nothing in this room.'
elif self.quest.is_complete() == True:
return self.quest.after
else:
return self.quest.before
def get_quest_action(self):
if self.quest == None:
return
else:
return self.quest.get_action()
def set_quest(self, q):
self.quest = q
def get_quest(self):
if self.quest.is_complete() == False:
return self.quest
def set_path(self, dir, dest):
if dir == 'NORTH':
self.north = dest
return self.north
elif dir == 'SOUTH':
self.south = dest
return self.south
elif dir == 'EAST':
self.east = dest
return self.east
elif dir == 'WEST':
self.west = dest
return self.west
def draw(self):
height = 11
width = 22
print('')
line = ''
if height > 0:
line += '+'
i = 0
while i < width - 2:
if i == 9 and self.north != None:
line += 'NN'
i += 2
else:
line += '-'
i += 1
line += '+'
i = 0
while i < height - 2:
if i == 4 and self.west != None:
line += '\nW'
else:
line += '\n|'
index = 0
while index < width - 2:
line += ' '
index += 1
if i == 4 and self.east != None:
line += 'E'
else:
line += '|'
i += 1
if height > 1:
i = 0
line += '\n+'
while i < width - 2:
if i == 9 and self.south != None:
line += 'SS'
i += 2
else:
line += '-'
i += 1
line += '+'
print(line)
print('You are standing at the {}.'.format(self.name))
print(Room.get_short_desc(self))
def move(self, dir):
if dir == 'NORTH' or dir == 'N':
if self.north == None:
print("You can't go that way.")
return self
else:
print('You move to the north, arriving at the {}.'.format(self.north.name))
self.north.draw()
return self.north
elif dir == 'SOUTH' or dir == 'S':
if self.south == None:
print("You can't go that way.")
return self
else:
print('You move to the south, arriving at the {}.'.format(self.south.name))
self.south.draw()
return self.south
elif dir == 'WEST' or dir == 'W':
if self.west == None:
print("You can't go that way.")
return self
else:
print('You move to the west, arriving at the {}.'.format(self.west.name))
self.west.draw()
return self.west
elif dir == 'EAST' or dir == 'E':
if self.east == None:
print("You can't go that way.")
return self
else:
print('You move to the east, arriving at the {}.'.format(self.east.name))
self.east.draw()
return self.east |
# Time: O(n * l), n is number of quries
# , l is length of query
# Space: O(1)
class Solution(object):
def camelMatch(self, queries, pattern):
"""
:type queries: List[str]
:type pattern: str
:rtype: List[bool]
"""
def is_matched(query, pattern):
i = 0
for c in query:
if i < len(pattern) and pattern[i] == c:
i += 1
elif c.isupper():
return False
return i == len(pattern)
result = []
for query in queries:
result.append(is_matched(query, pattern))
return result
| class Solution(object):
def camel_match(self, queries, pattern):
"""
:type queries: List[str]
:type pattern: str
:rtype: List[bool]
"""
def is_matched(query, pattern):
i = 0
for c in query:
if i < len(pattern) and pattern[i] == c:
i += 1
elif c.isupper():
return False
return i == len(pattern)
result = []
for query in queries:
result.append(is_matched(query, pattern))
return result |
CALIB_FILE_NAME = "calib.p"
PERSPECTIVE_FILE_NAME = "projection.p"
VIDEO_SIZE = 1280, 720
ORIGINAL_SIZE = 1280, 720
MODEL_SIZE = 608., 608.
UNWARPED_SIZE = 500, 600 | calib_file_name = 'calib.p'
perspective_file_name = 'projection.p'
video_size = (1280, 720)
original_size = (1280, 720)
model_size = (608.0, 608.0)
unwarped_size = (500, 600) |
#!/usr/bin/env python
foo = 123
class NothingMoreToSeeHere(Exception):
""" Don't recon any farther.
This exception can be thrown in a provider to signal to
TileStache.getTile() that the result tile should be returned,
and saved in a cache, but no further child tiles should be rendered.
Useful in cases where data is not well distributed geographically.
The one constructor argument is an instance of PIL.Image or
some other object with a save() method, as would be returned
by provider renderArea() or renderTile() methods.
"""
def __init__(self, tile):
self.tile = tile
Exception.__init__(self, tile)
class NothingToSeeHere(Exception):
""" Don't recon any farther.
This exception can be thrown in a provider to signal to
TileStache.getTile() that the result tile should be returned,
and but not saved in a cache and no further child tiles should be rendered.
Useful in cases where data is not well distributed geographically.
"""
def __init__(self):
Exception.__init__(self) | foo = 123
class Nothingmoretoseehere(Exception):
""" Don't recon any farther.
This exception can be thrown in a provider to signal to
TileStache.getTile() that the result tile should be returned,
and saved in a cache, but no further child tiles should be rendered.
Useful in cases where data is not well distributed geographically.
The one constructor argument is an instance of PIL.Image or
some other object with a save() method, as would be returned
by provider renderArea() or renderTile() methods.
"""
def __init__(self, tile):
self.tile = tile
Exception.__init__(self, tile)
class Nothingtoseehere(Exception):
""" Don't recon any farther.
This exception can be thrown in a provider to signal to
TileStache.getTile() that the result tile should be returned,
and but not saved in a cache and no further child tiles should be rendered.
Useful in cases where data is not well distributed geographically.
"""
def __init__(self):
Exception.__init__(self) |
""" Number Data types
Integers(int)
Floating Point(float)
Integer
"""
| """ Number Data types
Integers(int)
Floating Point(float)
Integer
""" |
class PipConfigurationError(Exception):
pass
| class Pipconfigurationerror(Exception):
pass |
# Write a function that takes an integer as input, and returns the number of bits that are equal to one in the binary representation of that number. You can guarantee that input is non-negative.
# Example: The binary representation of 1234 is 10011010010, so the function should return 5 in this case
# https://www.codewars.com/kata/526571aae218b8ee490006f4/
def countBits(n):
bitcount = 0
while n > 0:
bitcount += n % 2
n = int(n/2)
return bitcount | def count_bits(n):
bitcount = 0
while n > 0:
bitcount += n % 2
n = int(n / 2)
return bitcount |
# 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.
def create_user(app, username, role):
appbuilder = app.appbuilder
role_admin = appbuilder.sm.find_role(role)
tester = appbuilder.sm.find_user(username=username)
if not tester:
appbuilder.sm.add_user(
username=username,
first_name=username,
last_name=username,
email=f"{username}@fab.org",
role=role_admin,
password=username,
)
def delete_user(app, username):
appbuilder = app.appbuilder
user = next(u for u in appbuilder.sm.get_all_users() if u.username == username)
appbuilder.sm.del_register_user(user)
def assert_401(response):
assert response.status_code == 401
assert response.json == {
'detail': None,
'status': 401,
'title': 'Unauthorized',
'type': 'about:blank'
}
| def create_user(app, username, role):
appbuilder = app.appbuilder
role_admin = appbuilder.sm.find_role(role)
tester = appbuilder.sm.find_user(username=username)
if not tester:
appbuilder.sm.add_user(username=username, first_name=username, last_name=username, email=f'{username}@fab.org', role=role_admin, password=username)
def delete_user(app, username):
appbuilder = app.appbuilder
user = next((u for u in appbuilder.sm.get_all_users() if u.username == username))
appbuilder.sm.del_register_user(user)
def assert_401(response):
assert response.status_code == 401
assert response.json == {'detail': None, 'status': 401, 'title': 'Unauthorized', 'type': 'about:blank'} |
class Field(object):
def __init__(self, name, column_type, primary_key, default):
self.name = name
self.column_type = column_type
self.primary_key = primary_key
self.default = default
def __str__(self):
return '<%s, %s:%s>' % (self.__class__.__name__, self.column_type, self.name)
class StringField(Field):
def __init__(self, name=None, primary_key=False, default=None, ddl='varchar(256)'):
super().__init__(name, ddl, primary_key, default)
class BooleanField(Field):
def __init__(self, name=None, default=False):
super().__init__(name, 'boolean', False, default)
class IntegerField(Field):
def __init__(self, name=None, primary_key=False, default=0):
super().__init__(name, 'bigint', primary_key, default)
class FloatField(Field):
def __init__(self, name=None, primary_key=False, default=0.0):
super().__init__(name, 'real', primary_key, default)
class TextField(Field):
def __init__(self, name=None, default=None):
super().__init__(name, 'text', False, default)
| class Field(object):
def __init__(self, name, column_type, primary_key, default):
self.name = name
self.column_type = column_type
self.primary_key = primary_key
self.default = default
def __str__(self):
return '<%s, %s:%s>' % (self.__class__.__name__, self.column_type, self.name)
class Stringfield(Field):
def __init__(self, name=None, primary_key=False, default=None, ddl='varchar(256)'):
super().__init__(name, ddl, primary_key, default)
class Booleanfield(Field):
def __init__(self, name=None, default=False):
super().__init__(name, 'boolean', False, default)
class Integerfield(Field):
def __init__(self, name=None, primary_key=False, default=0):
super().__init__(name, 'bigint', primary_key, default)
class Floatfield(Field):
def __init__(self, name=None, primary_key=False, default=0.0):
super().__init__(name, 'real', primary_key, default)
class Textfield(Field):
def __init__(self, name=None, default=None):
super().__init__(name, 'text', False, default) |
def Rotate(arr):
temp = []
for i in range(len(arr)):
for j in range(0, len(arr)):
if i != j and i < j:
arr[i][j], arr[j][i] = arr[j][i], arr[i][j]
for l in arr:
l.reverse()
print(l)
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Rotate(arr)
| def rotate(arr):
temp = []
for i in range(len(arr)):
for j in range(0, len(arr)):
if i != j and i < j:
(arr[i][j], arr[j][i]) = (arr[j][i], arr[i][j])
for l in arr:
l.reverse()
print(l)
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
rotate(arr) |
# coding: utf-8
lib_common = {
'uri': 'common',
'type': 'config',
'cxxflags': [
'-std=c++11',
],
'source_base_dir': 'd:/lib/ogre',
'install_dirs_map': {
},
}
def dyn_common(lib, context):
c = context
versions = c.parseFile(
'OgreMain/include/OgrePrerequisites.h',
r'^\s*#define\s+(OGRE_VERSION_\S+)\s+(.+)')
c.setVar('OGRE_VERSION', '{}.{}.{}{}'.format(
versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'],
versions['OGRE_VERSION_PATCH'], versions['OGRE_VERSION_SUFFIX']))
c.setVar('OGRE_SOVERSION', '{}.{}.{}'.format(
versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'],
versions['OGRE_VERSION_PATCH']))
c.setVar('OGRE_VERSION_DASH_SEPARATED', '{}-{}-{}{}'.format(
versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'],
versions['OGRE_VERSION_PATCH'], versions['OGRE_VERSION_SUFFIX']))
print('Configuring OGRE', c.OGRE_VERSION)
target_os = c.target_os_tags
target_cpu = c.target_cpu_tags
compiler = c.compiler_tags
if 'sse' in target_cpu:
lib.cxxflags += '-msse'
if 'vs' in compiler:
lib.defines += ['_MT', '_USRDLL']
lib.cxxflags += ['/wd4661', '/wd4251', '/wd4275',
'/fp:fast', '/Oi', '/bigobj', '/MP']
elif 'mingw' in compiler:
lib.defines += ['_WIN32_WINNT=0x0501', '_USRDLL']
lib.cxxflags += ['-fno-tree-slp-vectorize']
elif 'gcc' in compiler or 'clang' in compiler:
lib.defines += 'OGRE_GCC_VISIBILITY'
if 'apple' in target_os:
#SET(CMAKE_SIZEOF_VOID_P 4)
#set(CMAKE_XCODE_ATTRIBUTE_GCC_VERSION "com.apple.compilers.llvm.clang.1_0")
if 'ios' in target_os:
lib.type = 'staticLib'
'''
set(CMAKE_EXE_LINKER_FLAGS "-framework OpenGLES -framework Foundation -framework CoreGraphics -framework QuartzCore -framework UIKit")
set(XCODE_ATTRIBUTE_GCC_UNROLL_LOOPS "YES")
set(XCODE_ATTRIBUTE_LLVM_VECTORIZE_LOOPS "YES")
set(XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer")
set(XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES")
set(OGRE_BUILD_RENDERSYSTEM_GLES2 TRUE CACHE BOOL "Forcing OpenGL ES 2 RenderSystem for iOS" FORCE)
set(OGRE_STATIC TRUE CACHE BOOL "Forcing static build for iOS" FORCE)
set(MACOSX_BUNDLE_GUI_IDENTIFIER "com.yourcompany.\${PRODUCT_NAME:rfc1034identifier}")
'''
else:
c.setVar('XCODE_ATTRIBUTE_SDKROOT', 'macosx')
# 'xcodebuild -version -sdk "${XCODE_ATTRIBUTE_SDKROOT}" Path | head -n 1 OUTPUT_VARIABLE CMAKE_OSX_SYSROOT'
c.setVar('CMAKE_OSX_SYSROOT', 'macosx')
# Make sure that the OpenGL render system is selected for non-iOS Apple builds
c.setVar('OGRE_BUILD_RENDERSYSTEM_GLES2', False)
elif 'android' in target_os:
c.setVar('OGRE_PLATFORM', 'OGRE_PLATFORM_ANDROID')
c.options += [
('OGRE_CONFIG_ENABLE_VIEWPORT_ORIENTATIONMODE', False),
('OGRE_BUILD_ANDROID_JNI_SAMPLE', False), #
('OGRE_BUILD_RENDERSYSTEM_GLES2', True), # Forcing OpenGL ES 2 RenderSystem for Android
('OGRE_BUILD_PLUGIN_PCZ', False), # Disable pcz on Android
('OGRE_BUILD_PLUGIN_BSP', False), # Disable bsp scenemanager on Android
('OGRE_BUILD_TOOLS', False), # Disable tools on Android
('OGRE_STATIC', True), # Forcing static build for Android
]
elif 'win' in target_os:
pass
if c.getOption('OGRE_BUILD_COMPONENT_MESHLODGENERATOR'):
c.setVar('OGRE_CONFIG_ENABLE_MESHLOD', True)
# Enable the PVRTC codec if OpenGL ES is being built
if c.getOption('OGRE_BUILD_RENDERSYSTEM_GLES2'):
c.setVar('OGRE_CONFIG_ENABLE_PVRTC', True)
c.setVar('OGRE_CONFIG_ENABLE_ETC', True)
# Enable the ETC codec if OpenGL 3+ is being built
if c.getOption('OGRE_BUILD_RENDERSYSTEM_GL3PLUS'):
c.setVar('OGRE_CONFIG_ENABLE_ETC', True)
'''
configure_file("${OGRE_TEMPLATES_DIR}/version.txt.in" "${OGRE_BINARY_DIR}/version.txt" @ONLY)
set(OGRE_RESOURCEMANAGER_STRICT "2" CACHE STRING
"Make ResourceManager strict for faster operation. Possible values:
0 - OFF search in all groups twice - for case sensitive and insensitive lookup [DEPRECATED]
1 - PEDANTIC require an explicit resource group. Case sensitive lookup.
2 - STRICT search in default group if not specified otherwise. Case sensitive lookup.
")
set_property(CACHE OGRE_RESOURCEMANAGER_STRICT PROPERTY STRINGS 0 1 2)
cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_D3D9 "Build Direct3D9 RenderSystem" TRUE "WIN32;DirectX9_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_D3D11 "Build Direct3D11 RenderSystem" TRUE "WIN32;DirectX11_FOUND OR WINDOWS_STORE OR WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GL3PLUS "Build OpenGL 3+ RenderSystem" TRUE "OPENGL_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GL "Build OpenGL RenderSystem" TRUE "OPENGL_FOUND;NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GLES2 "Build OpenGL ES 2.x RenderSystem" FALSE "OPENGLES2_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
option(OGRE_BUILD_PLUGIN_BSP "Build BSP SceneManager plugin" TRUE)
option(OGRE_BUILD_PLUGIN_OCTREE "Build Octree SceneManager plugin" TRUE)
option(OGRE_BUILD_PLUGIN_PFX "Build ParticleFX plugin" TRUE)
cmake_dependent_option(OGRE_BUILD_PLUGIN_PCZ "Build PCZ SceneManager plugin" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_PAGING "Build Paging component" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_MESHLODGENERATOR "Build MeshLodGenerator component" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_TERRAIN "Build Terrain component" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_VOLUME "Build Volume component" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_PROPERTY "Build Property component" TRUE "" FALSE)
cmake_dependent_option(OGRE_BUILD_PLUGIN_CG "Build Cg plugin" TRUE "Cg_FOUND;NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_OVERLAY "Build Overlay component" TRUE "FREETYPE_FOUND" FALSE)
option(OGRE_BUILD_COMPONENT_HLMS "Build HLMS component" TRUE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_BITES "Build OgreBites component" TRUE "OGRE_BUILD_COMPONENT_OVERLAY" FALSE)
cmake_dependent_option(OGRE_BUILD_COMPONENT_PYTHON "Build Python bindings" TRUE "NOT OGRE_STATIC" FALSE)
option(OGRE_BUILD_COMPONENT_JAVA "Build Java (JNI) bindings" TRUE)
option(OGRE_BUILD_COMPONENT_RTSHADERSYSTEM "Build RTShader System component" TRUE)
cmake_dependent_option(OGRE_BUILD_RTSHADERSYSTEM_CORE_SHADERS "Build RTShader System FFP core shaders" TRUE "OGRE_BUILD_COMPONENT_RTSHADERSYSTEM" FALSE)
cmake_dependent_option(OGRE_BUILD_RTSHADERSYSTEM_EXT_SHADERS "Build RTShader System extensions shaders" TRUE "OGRE_BUILD_COMPONENT_RTSHADERSYSTEM" FALSE)
cmake_dependent_option(OGRE_BUILD_SAMPLES "Build Ogre demos" TRUE "OGRE_BUILD_COMPONENT_OVERLAY;OGRE_BUILD_COMPONENT_BITES" FALSE)
cmake_dependent_option(OGRE_BUILD_TOOLS "Build the command-line tools" TRUE "NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)
cmake_dependent_option(OGRE_BUILD_XSIEXPORTER "Build the Softimage exporter" FALSE "Softimage_FOUND" FALSE)
cmake_dependent_option(OGRE_BUILD_LIBS_AS_FRAMEWORKS "Build frameworks for libraries on OS X." TRUE "APPLE;NOT OGRE_BUILD_PLATFORM_APPLE_IOS" FALSE)
option(OGRE_BUILD_TESTS "Build the unit tests & PlayPen" FALSE)
option(OGRE_CONFIG_DOUBLE "Use doubles instead of floats in Ogre" FALSE)
option(OGRE_CONFIG_NODE_INHERIT_TRANSFORM "Tells the node whether it should inherit full transform from it's parent node or derived position, orientation and scale" FALSE)
set(OGRE_CONFIG_THREADS "3" CACHE STRING
"Enable Ogre thread safety support for multithreading. Possible values:
0 - no thread safety. DefaultWorkQueue is not threaded.
1 - background resource preparation and loading is thread safe. Threaded DefaultWorkQueue. [DEPRECATED]
2 - only background resource preparation is thread safe. Threaded DefaultWorkQueue. [DEPRECATED]
3 - no thread safety. Threaded DefaultWorkQueue."
)
set_property(CACHE OGRE_CONFIG_THREADS PROPERTY STRINGS 0 1 2 3)
set(OGRE_CONFIG_THREAD_PROVIDER "std" CACHE STRING
"Select the library to use for thread support. Possible values:
boost - Boost thread library. [DEPRECATED]
poco - Poco thread library. [DEPRECATED]
tbb - ThreadingBuildingBlocks library. [DEPRECATED]
std - STL thread library (requires compiler support)."
)
set_property(CACHE OGRE_CONFIG_THREAD_PROVIDER PROPERTY STRINGS boost poco tbb std)
cmake_dependent_option(OGRE_BUILD_PLUGIN_FREEIMAGE "Build FreeImage codec." TRUE "FreeImage_FOUND" FALSE)
cmake_dependent_option(OGRE_BUILD_PLUGIN_EXRCODEC "Build EXR Codec plugin" TRUE "OPENEXR_FOUND;" FALSE)
option(OGRE_BUILD_PLUGIN_STBI "Enable STBI image codec." TRUE)
option(OGRE_CONFIG_ENABLE_MESHLOD "Enable Mesh Lod." TRUE)
option(OGRE_CONFIG_ENABLE_DDS "Build DDS codec." TRUE)
option(OGRE_CONFIG_ENABLE_PVRTC "Build PVRTC codec." FALSE)
option(OGRE_CONFIG_ENABLE_ETC "Build ETC codec." TRUE)
option(OGRE_CONFIG_ENABLE_ASTC "Build ASTC codec." FALSE)
option(OGRE_CONFIG_ENABLE_QUAD_BUFFER_STEREO "Enable stereoscopic 3D support" FALSE)
cmake_dependent_option(OGRE_CONFIG_ENABLE_ZIP "Build ZIP archive support. If you disable this option, you cannot use ZIP archives resource locations. The samples won't work." TRUE "ZZip_FOUND" FALSE)
option(OGRE_CONFIG_ENABLE_VIEWPORT_ORIENTATIONMODE "Include Viewport orientation mode support." FALSE)
cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES2_CG_SUPPORT "Enable Cg support to ES 2 render system" FALSE "OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)
cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES2_GLSL_OPTIMISER "Enable GLSL optimiser use in GLES 2 render system" FALSE "OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)
cmake_dependent_option(OGRE_CONFIG_ENABLE_GL_STATE_CACHE_SUPPORT "Enable OpenGL state cache management" FALSE "OGRE_BUILD_RENDERSYSTEM_GL OR OGRE_BUILD_RENDERSYSTEM_GLES2 OR OGRE_BUILD_RENDERSYSTEM_GL3PLUS" FALSE)
cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES3_SUPPORT "Enable OpenGL ES 3.x Features" FALSE "OPENGLES3_FOUND;OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)
option(OGRE_CONFIG_ENABLE_TBB_SCHEDULER "Enable TBB's scheduler initialisation/shutdown." TRUE)
# Customise what to install
option(OGRE_INSTALL_CMAKE "Install CMake scripts." TRUE)
option(OGRE_INSTALL_SAMPLES "Install Ogre demos." TRUE)
option(OGRE_INSTALL_TOOLS "Install Ogre tools." TRUE)
option(OGRE_INSTALL_DOCS "Install documentation." TRUE)
option(OGRE_INSTALL_SAMPLES_SOURCE "Install samples source files." FALSE)
cmake_dependent_option(OGRE_INSTALL_PDB "Install debug pdb files" TRUE "MSVC" FALSE)
option(OGRE_PROFILING "Enable internal profiling support." FALSE)
cmake_dependent_option(OGRE_CONFIG_STATIC_LINK_CRT "Statically link the MS CRT dlls (msvcrt)" FALSE "MSVC" FALSE)
set(OGRE_LIB_DIRECTORY "lib${LIB_SUFFIX}" CACHE STRING "Install path for libraries, e.g. 'lib64' on some 64-bit Linux distros.")
# Setup RenderSystems
add_subdirectory(RenderSystems)
# Setup Plugins
add_subdirectory(PlugIns)
# Setup Components
add_subdirectory(Components)
# Install media files
if (OGRE_INSTALL_SAMPLES OR OGRE_INSTALL_SAMPLES_SOURCE)
add_subdirectory(Samples/Media)
endif ()
'''
lib_OgreMain = {
'uri': 'OgreMain',
'source_base_dir': 'd:/lib/ogre/OgreMain',
'type': 'staticLib',
'options': {
'OGRE_CONFIG_ENABLE_DDS': True,
'OGRE_CONFIG_ENABLE_PVRTC': True,
'OGRE_CONFIG_ENABLE_ETC': True,
'OGRE_CONFIG_ENABLE_ASTC': True,
'OGRE_CONFIG_ENABLE_ZIP': True,
},
'public_include_dirs': [],
'include_dirs': [
'include',
'include/Threading',
'src',
],
'defines': [],
'ccflags': [],
'libs': [],
'configs': [
'common',
],
'deps': [
'freetype',
'zziplib',
],
'install_dirs_map': {
'include': 'include/OGRE',
},
'public_headers': [
'include/*.h',
'include/Threading/OgreThreadDefinesNone.h',
'include/Threading/OgreDefaultWorkQueueStandard.h',
],
'sources': [
'src/*.cpp',
'src/Threading/OgreDefaultWorkQueueStandard.cpp',
],
}
'''
get_native_precompiled_header(OgreMain)
add_native_precompiled_header(OgreMain 'src/OgreStableHeaders.h')
generate_export_header(OgreMain
EXPORT_MACRO_NAME _OgreExport
NO_EXPORT_MACRO_NAME _OgrePrivate
DEPRECATED_MACRO_NAME OGRE_DEPRECATED
EXPORT_FILE_NAME ${CMAKE_BINARY_DIR}/include/OgreExports.h)
target_include_directories(OgreMain PUBLIC
'$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>'
'$<BUILD_INTERFACE:${OGRE_BINARY_DIR}/include>'
$<INSTALL_INTERFACE:include/OGRE>)
set_target_properties(OgreMain PROPERTIES VERSION ${OGRE_SOVERSION} SOVERSION ${OGRE_SOVERSION})
'''
def dyn_OgreMain(lib, context):
target_os = context.target_os_tags
# Remove optional header files
lib.sources -= [
'src/OgreFileSystemLayerNoOp.cpp',
'src/OgreDDSCodec.cpp',
'src/OgrePVRTCCodec.cpp',
'src/OgreETCCodec.cpp',
'src/OgreZip.cpp',
'src/OgreSearchOps.cpp',
]
lib.headers -= [
'include/OgreDDSCodec.h',
'include/OgrePVRTCCodec.h',
'include/OgreETCCodec.h',
'include/OgreZip.h',
]
if context.getOption('OGRE_CONFIG_ENABLE_DDS'):
lib.headers += 'include/OgreDDSCodec.h'
lib.sources += 'src/OgreDDSCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_PVRTC'):
lib.headers += 'include/OgrePVRTCCodec.h'
lib.sources += 'src/OgrePVRTCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ETC'):
lib.headers += 'include/OgreETCCodec.h'
lib.sources += 'src/OgreETCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ASTC'):
lib.headers += 'include/OgreASTCCodec.h'
lib.sources += 'src/OgreASTCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ZIP'):
lib.headers += 'include/OgreZip.h'
lib.sources += 'src/OgreZip.cpp'
if 'android' in target_os:
lib.defines += 'ZZIP_OMIT_CONFIG_H'
if 'win' in target_os:
lib.defines += 'ZZIP_DLL'
lib.libs += 'zlib'
else:
lib.libs += 'z'
lib.deps += 'zziplib'
if 'win' in target_os:
lib.files += 'src/WIN32/*.cpp'
if 'apple' in target_os:
'''
if(OGRE_BUILD_LIBS_AS_FRAMEWORKS)
set_target_properties(OgreMain PROPERTIES OUTPUT_NAME Ogre)
endif()
'''
if 'ios' in target_os:
lib.include_dirs += 'src/iOS'
lib.sources += ['src/iOS/*.cpp', 'src/iOS/*.mm']
lib.libs = []
# set_target_properties(OgreMain PROPERTIES INSTALL_NAME_DIR 'OGRE')
else:
lib.include_dirs += 'src/OSX'
lib.sources += ['src/OSX/*.cpp', 'src/OSX/*.mm']
lib.ldflags += ['-framework', 'IOKit', '-framework', 'Cocoa',
'-framework', 'Carbon', '-framework', 'OpenGL',
'-framework', 'CoreVideo']
'''
set(OGRE_OSX_BUILD_CONFIGURATION '$(PLATFORM_NAME)/$(CONFIGURATION)')
if(OGRE_BUILD_LIBS_AS_FRAMEWORKS)
add_custom_command(TARGET OgreMain POST_BUILD
COMMAND mkdir ARGS -p ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/Threading
COMMAND ditto
${OGRE_SOURCE_DIR}/OgreMain/include/Threading/*.h ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/Threading
COMMAND cd ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers
)
foreach(HEADER_PATH ${THREAD_HEADER_FILES})
get_filename_component(HEADER_FILE ${HEADER_PATH} NAME)
set(FWK_HEADER_PATH ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/${HEADER_FILE})
add_custom_command(TARGET OgreMain POST_BUILD
COMMAND rm -f ${FWK_HEADER_PATH}
)
endforeach()
endif()
ogre_config_framework(OgreMain)
'''
if 'android' in target_os:
# required by OgrePlatformInformation.cpp
lib.include_dirs += '${ANDROID_NDK}/sources/android/cpufeatures'
lib.sources += 'src/Android/*.cpp'
lib.libs += ['atomic', 'dl']
if 'unix' in target_os:
lib.sources += 'src/GLX/*.cpp'
lib.libs += 'pthread'
if 'win' not in target_os:
lib.sources += 'src/OgreSearchOps.cpp'
install = {
'uri': 'install',
'source_base_dir': 'd:/lib/ogre',
'type': 'config',
'deps': [
'OgreMain',
],
'install_dirs_map': {
'': 'include/OGRE',
},
'public_headers': [
'include/OgreBuildSettings.h',
'include/OgreExports.h',
],
}
export_libs = [
(lib_common, None),
(lib_OgreMain, dyn_OgreMain),
(install, None),
]
| lib_common = {'uri': 'common', 'type': 'config', 'cxxflags': ['-std=c++11'], 'source_base_dir': 'd:/lib/ogre', 'install_dirs_map': {}}
def dyn_common(lib, context):
c = context
versions = c.parseFile('OgreMain/include/OgrePrerequisites.h', '^\\s*#define\\s+(OGRE_VERSION_\\S+)\\s+(.+)')
c.setVar('OGRE_VERSION', '{}.{}.{}{}'.format(versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'], versions['OGRE_VERSION_PATCH'], versions['OGRE_VERSION_SUFFIX']))
c.setVar('OGRE_SOVERSION', '{}.{}.{}'.format(versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'], versions['OGRE_VERSION_PATCH']))
c.setVar('OGRE_VERSION_DASH_SEPARATED', '{}-{}-{}{}'.format(versions['OGRE_VERSION_MAJOR'], versions['OGRE_VERSION_MINOR'], versions['OGRE_VERSION_PATCH'], versions['OGRE_VERSION_SUFFIX']))
print('Configuring OGRE', c.OGRE_VERSION)
target_os = c.target_os_tags
target_cpu = c.target_cpu_tags
compiler = c.compiler_tags
if 'sse' in target_cpu:
lib.cxxflags += '-msse'
if 'vs' in compiler:
lib.defines += ['_MT', '_USRDLL']
lib.cxxflags += ['/wd4661', '/wd4251', '/wd4275', '/fp:fast', '/Oi', '/bigobj', '/MP']
elif 'mingw' in compiler:
lib.defines += ['_WIN32_WINNT=0x0501', '_USRDLL']
lib.cxxflags += ['-fno-tree-slp-vectorize']
elif 'gcc' in compiler or 'clang' in compiler:
lib.defines += 'OGRE_GCC_VISIBILITY'
if 'apple' in target_os:
if 'ios' in target_os:
lib.type = 'staticLib'
'\n set(CMAKE_EXE_LINKER_FLAGS "-framework OpenGLES -framework Foundation -framework CoreGraphics -framework QuartzCore -framework UIKit")\n set(XCODE_ATTRIBUTE_GCC_UNROLL_LOOPS "YES")\n set(XCODE_ATTRIBUTE_LLVM_VECTORIZE_LOOPS "YES")\n set(XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer")\n set(XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES")\n set(OGRE_BUILD_RENDERSYSTEM_GLES2 TRUE CACHE BOOL "Forcing OpenGL ES 2 RenderSystem for iOS" FORCE)\n set(OGRE_STATIC TRUE CACHE BOOL "Forcing static build for iOS" FORCE)\n set(MACOSX_BUNDLE_GUI_IDENTIFIER "com.yourcompany.\\${PRODUCT_NAME:rfc1034identifier}")\n '
else:
c.setVar('XCODE_ATTRIBUTE_SDKROOT', 'macosx')
c.setVar('CMAKE_OSX_SYSROOT', 'macosx')
c.setVar('OGRE_BUILD_RENDERSYSTEM_GLES2', False)
elif 'android' in target_os:
c.setVar('OGRE_PLATFORM', 'OGRE_PLATFORM_ANDROID')
c.options += [('OGRE_CONFIG_ENABLE_VIEWPORT_ORIENTATIONMODE', False), ('OGRE_BUILD_ANDROID_JNI_SAMPLE', False), ('OGRE_BUILD_RENDERSYSTEM_GLES2', True), ('OGRE_BUILD_PLUGIN_PCZ', False), ('OGRE_BUILD_PLUGIN_BSP', False), ('OGRE_BUILD_TOOLS', False), ('OGRE_STATIC', True)]
elif 'win' in target_os:
pass
if c.getOption('OGRE_BUILD_COMPONENT_MESHLODGENERATOR'):
c.setVar('OGRE_CONFIG_ENABLE_MESHLOD', True)
if c.getOption('OGRE_BUILD_RENDERSYSTEM_GLES2'):
c.setVar('OGRE_CONFIG_ENABLE_PVRTC', True)
c.setVar('OGRE_CONFIG_ENABLE_ETC', True)
if c.getOption('OGRE_BUILD_RENDERSYSTEM_GL3PLUS'):
c.setVar('OGRE_CONFIG_ENABLE_ETC', True)
'\nconfigure_file("${OGRE_TEMPLATES_DIR}/version.txt.in" "${OGRE_BINARY_DIR}/version.txt" @ONLY)\n\nset(OGRE_RESOURCEMANAGER_STRICT "2" CACHE STRING\n "Make ResourceManager strict for faster operation. Possible values:\n 0 - OFF search in all groups twice - for case sensitive and insensitive lookup [DEPRECATED]\n 1 - PEDANTIC require an explicit resource group. Case sensitive lookup.\n 2 - STRICT search in default group if not specified otherwise. Case sensitive lookup.\n ")\nset_property(CACHE OGRE_RESOURCEMANAGER_STRICT PROPERTY STRINGS 0 1 2)\n\n cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_D3D9 "Build Direct3D9 RenderSystem" TRUE "WIN32;DirectX9_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_D3D11 "Build Direct3D11 RenderSystem" TRUE "WIN32;DirectX11_FOUND OR WINDOWS_STORE OR WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GL3PLUS "Build OpenGL 3+ RenderSystem" TRUE "OPENGL_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GL "Build OpenGL RenderSystem" TRUE "OPENGL_FOUND;NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_RENDERSYSTEM_GLES2 "Build OpenGL ES 2.x RenderSystem" FALSE "OPENGLES2_FOUND;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n option(OGRE_BUILD_PLUGIN_BSP "Build BSP SceneManager plugin" TRUE)\n option(OGRE_BUILD_PLUGIN_OCTREE "Build Octree SceneManager plugin" TRUE)\n option(OGRE_BUILD_PLUGIN_PFX "Build ParticleFX plugin" TRUE)\n cmake_dependent_option(OGRE_BUILD_PLUGIN_PCZ "Build PCZ SceneManager plugin" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_PAGING "Build Paging component" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_MESHLODGENERATOR "Build MeshLodGenerator component" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_TERRAIN "Build Terrain component" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_VOLUME "Build Volume component" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_PROPERTY "Build Property component" TRUE "" FALSE)\n cmake_dependent_option(OGRE_BUILD_PLUGIN_CG "Build Cg plugin" TRUE "Cg_FOUND;NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_OVERLAY "Build Overlay component" TRUE "FREETYPE_FOUND" FALSE)\n option(OGRE_BUILD_COMPONENT_HLMS "Build HLMS component" TRUE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_BITES "Build OgreBites component" TRUE "OGRE_BUILD_COMPONENT_OVERLAY" FALSE)\n cmake_dependent_option(OGRE_BUILD_COMPONENT_PYTHON "Build Python bindings" TRUE "NOT OGRE_STATIC" FALSE)\n option(OGRE_BUILD_COMPONENT_JAVA "Build Java (JNI) bindings" TRUE)\n option(OGRE_BUILD_COMPONENT_RTSHADERSYSTEM "Build RTShader System component" TRUE)\n cmake_dependent_option(OGRE_BUILD_RTSHADERSYSTEM_CORE_SHADERS "Build RTShader System FFP core shaders" TRUE "OGRE_BUILD_COMPONENT_RTSHADERSYSTEM" FALSE)\n cmake_dependent_option(OGRE_BUILD_RTSHADERSYSTEM_EXT_SHADERS "Build RTShader System extensions shaders" TRUE "OGRE_BUILD_COMPONENT_RTSHADERSYSTEM" FALSE)\n\n cmake_dependent_option(OGRE_BUILD_SAMPLES "Build Ogre demos" TRUE "OGRE_BUILD_COMPONENT_OVERLAY;OGRE_BUILD_COMPONENT_BITES" FALSE)\n cmake_dependent_option(OGRE_BUILD_TOOLS "Build the command-line tools" TRUE "NOT APPLE_IOS;NOT WINDOWS_STORE;NOT WINDOWS_PHONE" FALSE)\n cmake_dependent_option(OGRE_BUILD_XSIEXPORTER "Build the Softimage exporter" FALSE "Softimage_FOUND" FALSE)\n cmake_dependent_option(OGRE_BUILD_LIBS_AS_FRAMEWORKS "Build frameworks for libraries on OS X." TRUE "APPLE;NOT OGRE_BUILD_PLATFORM_APPLE_IOS" FALSE)\n option(OGRE_BUILD_TESTS "Build the unit tests & PlayPen" FALSE)\n option(OGRE_CONFIG_DOUBLE "Use doubles instead of floats in Ogre" FALSE)\n option(OGRE_CONFIG_NODE_INHERIT_TRANSFORM "Tells the node whether it should inherit full transform from it\'s parent node or derived position, orientation and scale" FALSE)\n set(OGRE_CONFIG_THREADS "3" CACHE STRING\n \t"Enable Ogre thread safety support for multithreading. Possible values:\n \t0 - no thread safety. DefaultWorkQueue is not threaded.\n \t1 - background resource preparation and loading is thread safe. Threaded DefaultWorkQueue. [DEPRECATED]\n \t2 - only background resource preparation is thread safe. Threaded DefaultWorkQueue. [DEPRECATED]\n \t3 - no thread safety. Threaded DefaultWorkQueue."\n )\n set_property(CACHE OGRE_CONFIG_THREADS PROPERTY STRINGS 0 1 2 3)\n set(OGRE_CONFIG_THREAD_PROVIDER "std" CACHE STRING\n \t"Select the library to use for thread support. Possible values:\n \tboost - Boost thread library. [DEPRECATED]\n \tpoco - Poco thread library. [DEPRECATED]\n \ttbb - ThreadingBuildingBlocks library. [DEPRECATED]\n \tstd - STL thread library (requires compiler support)."\n )\n set_property(CACHE OGRE_CONFIG_THREAD_PROVIDER PROPERTY STRINGS boost poco tbb std)\n cmake_dependent_option(OGRE_BUILD_PLUGIN_FREEIMAGE "Build FreeImage codec." TRUE "FreeImage_FOUND" FALSE)\n cmake_dependent_option(OGRE_BUILD_PLUGIN_EXRCODEC "Build EXR Codec plugin" TRUE "OPENEXR_FOUND;" FALSE)\n option(OGRE_BUILD_PLUGIN_STBI "Enable STBI image codec." TRUE)\n option(OGRE_CONFIG_ENABLE_MESHLOD "Enable Mesh Lod." TRUE)\n option(OGRE_CONFIG_ENABLE_DDS "Build DDS codec." TRUE)\n option(OGRE_CONFIG_ENABLE_PVRTC "Build PVRTC codec." FALSE)\n option(OGRE_CONFIG_ENABLE_ETC "Build ETC codec." TRUE)\n option(OGRE_CONFIG_ENABLE_ASTC "Build ASTC codec." FALSE)\n option(OGRE_CONFIG_ENABLE_QUAD_BUFFER_STEREO "Enable stereoscopic 3D support" FALSE)\n cmake_dependent_option(OGRE_CONFIG_ENABLE_ZIP "Build ZIP archive support. If you disable this option, you cannot use ZIP archives resource locations. The samples won\'t work." TRUE "ZZip_FOUND" FALSE)\n option(OGRE_CONFIG_ENABLE_VIEWPORT_ORIENTATIONMODE "Include Viewport orientation mode support." FALSE)\n cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES2_CG_SUPPORT "Enable Cg support to ES 2 render system" FALSE "OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)\n cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES2_GLSL_OPTIMISER "Enable GLSL optimiser use in GLES 2 render system" FALSE "OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)\n cmake_dependent_option(OGRE_CONFIG_ENABLE_GL_STATE_CACHE_SUPPORT "Enable OpenGL state cache management" FALSE "OGRE_BUILD_RENDERSYSTEM_GL OR OGRE_BUILD_RENDERSYSTEM_GLES2 OR OGRE_BUILD_RENDERSYSTEM_GL3PLUS" FALSE)\n cmake_dependent_option(OGRE_CONFIG_ENABLE_GLES3_SUPPORT "Enable OpenGL ES 3.x Features" FALSE "OPENGLES3_FOUND;OGRE_BUILD_RENDERSYSTEM_GLES2" FALSE)\n option(OGRE_CONFIG_ENABLE_TBB_SCHEDULER "Enable TBB\'s scheduler initialisation/shutdown." TRUE)\n # Customise what to install\n option(OGRE_INSTALL_CMAKE "Install CMake scripts." TRUE)\n option(OGRE_INSTALL_SAMPLES "Install Ogre demos." TRUE)\n option(OGRE_INSTALL_TOOLS "Install Ogre tools." TRUE)\n option(OGRE_INSTALL_DOCS "Install documentation." TRUE)\n option(OGRE_INSTALL_SAMPLES_SOURCE "Install samples source files." FALSE)\n cmake_dependent_option(OGRE_INSTALL_PDB "Install debug pdb files" TRUE "MSVC" FALSE)\n option(OGRE_PROFILING "Enable internal profiling support." FALSE)\n cmake_dependent_option(OGRE_CONFIG_STATIC_LINK_CRT "Statically link the MS CRT dlls (msvcrt)" FALSE "MSVC" FALSE)\n set(OGRE_LIB_DIRECTORY "lib${LIB_SUFFIX}" CACHE STRING "Install path for libraries, e.g. \'lib64\' on some 64-bit Linux distros.")\n\n# Setup RenderSystems\nadd_subdirectory(RenderSystems)\n\n# Setup Plugins\nadd_subdirectory(PlugIns)\n\n# Setup Components\nadd_subdirectory(Components)\n\n# Install media files\nif (OGRE_INSTALL_SAMPLES OR OGRE_INSTALL_SAMPLES_SOURCE)\n add_subdirectory(Samples/Media)\nendif ()\n'
lib__ogre_main = {'uri': 'OgreMain', 'source_base_dir': 'd:/lib/ogre/OgreMain', 'type': 'staticLib', 'options': {'OGRE_CONFIG_ENABLE_DDS': True, 'OGRE_CONFIG_ENABLE_PVRTC': True, 'OGRE_CONFIG_ENABLE_ETC': True, 'OGRE_CONFIG_ENABLE_ASTC': True, 'OGRE_CONFIG_ENABLE_ZIP': True}, 'public_include_dirs': [], 'include_dirs': ['include', 'include/Threading', 'src'], 'defines': [], 'ccflags': [], 'libs': [], 'configs': ['common'], 'deps': ['freetype', 'zziplib'], 'install_dirs_map': {'include': 'include/OGRE'}, 'public_headers': ['include/*.h', 'include/Threading/OgreThreadDefinesNone.h', 'include/Threading/OgreDefaultWorkQueueStandard.h'], 'sources': ['src/*.cpp', 'src/Threading/OgreDefaultWorkQueueStandard.cpp']}
"\nget_native_precompiled_header(OgreMain)\nadd_native_precompiled_header(OgreMain 'src/OgreStableHeaders.h')\n\ngenerate_export_header(OgreMain\n EXPORT_MACRO_NAME _OgreExport\n NO_EXPORT_MACRO_NAME _OgrePrivate\n DEPRECATED_MACRO_NAME OGRE_DEPRECATED\n EXPORT_FILE_NAME ${CMAKE_BINARY_DIR}/include/OgreExports.h)\ntarget_include_directories(OgreMain PUBLIC\n '$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>'\n '$<BUILD_INTERFACE:${OGRE_BINARY_DIR}/include>'\n $<INSTALL_INTERFACE:include/OGRE>)\n\nset_target_properties(OgreMain PROPERTIES VERSION ${OGRE_SOVERSION} SOVERSION ${OGRE_SOVERSION})\n"
def dyn__ogre_main(lib, context):
target_os = context.target_os_tags
lib.sources -= ['src/OgreFileSystemLayerNoOp.cpp', 'src/OgreDDSCodec.cpp', 'src/OgrePVRTCCodec.cpp', 'src/OgreETCCodec.cpp', 'src/OgreZip.cpp', 'src/OgreSearchOps.cpp']
lib.headers -= ['include/OgreDDSCodec.h', 'include/OgrePVRTCCodec.h', 'include/OgreETCCodec.h', 'include/OgreZip.h']
if context.getOption('OGRE_CONFIG_ENABLE_DDS'):
lib.headers += 'include/OgreDDSCodec.h'
lib.sources += 'src/OgreDDSCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_PVRTC'):
lib.headers += 'include/OgrePVRTCCodec.h'
lib.sources += 'src/OgrePVRTCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ETC'):
lib.headers += 'include/OgreETCCodec.h'
lib.sources += 'src/OgreETCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ASTC'):
lib.headers += 'include/OgreASTCCodec.h'
lib.sources += 'src/OgreASTCCodec.cpp'
if context.getOption('OGRE_CONFIG_ENABLE_ZIP'):
lib.headers += 'include/OgreZip.h'
lib.sources += 'src/OgreZip.cpp'
if 'android' in target_os:
lib.defines += 'ZZIP_OMIT_CONFIG_H'
if 'win' in target_os:
lib.defines += 'ZZIP_DLL'
lib.libs += 'zlib'
else:
lib.libs += 'z'
lib.deps += 'zziplib'
if 'win' in target_os:
lib.files += 'src/WIN32/*.cpp'
if 'apple' in target_os:
'\n if(OGRE_BUILD_LIBS_AS_FRAMEWORKS)\n set_target_properties(OgreMain PROPERTIES\tOUTPUT_NAME Ogre)\n endif()\n '
if 'ios' in target_os:
lib.include_dirs += 'src/iOS'
lib.sources += ['src/iOS/*.cpp', 'src/iOS/*.mm']
lib.libs = []
else:
lib.include_dirs += 'src/OSX'
lib.sources += ['src/OSX/*.cpp', 'src/OSX/*.mm']
lib.ldflags += ['-framework', 'IOKit', '-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'CoreVideo']
"\n set(OGRE_OSX_BUILD_CONFIGURATION '$(PLATFORM_NAME)/$(CONFIGURATION)')\n\n if(OGRE_BUILD_LIBS_AS_FRAMEWORKS)\n add_custom_command(TARGET OgreMain POST_BUILD\n COMMAND mkdir ARGS -p ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/Threading\n COMMAND ditto\n ${OGRE_SOURCE_DIR}/OgreMain/include/Threading/*.h ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/Threading\n COMMAND cd ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers\n )\n\n foreach(HEADER_PATH ${THREAD_HEADER_FILES})\n get_filename_component(HEADER_FILE ${HEADER_PATH} NAME)\n set(FWK_HEADER_PATH ${OGRE_BINARY_DIR}/lib/${OGRE_OSX_BUILD_CONFIGURATION}/Ogre.framework/Headers/${HEADER_FILE})\n add_custom_command(TARGET OgreMain POST_BUILD\n COMMAND rm -f ${FWK_HEADER_PATH}\n )\n endforeach()\n endif()\n\n ogre_config_framework(OgreMain)\n "
if 'android' in target_os:
lib.include_dirs += '${ANDROID_NDK}/sources/android/cpufeatures'
lib.sources += 'src/Android/*.cpp'
lib.libs += ['atomic', 'dl']
if 'unix' in target_os:
lib.sources += 'src/GLX/*.cpp'
lib.libs += 'pthread'
if 'win' not in target_os:
lib.sources += 'src/OgreSearchOps.cpp'
install = {'uri': 'install', 'source_base_dir': 'd:/lib/ogre', 'type': 'config', 'deps': ['OgreMain'], 'install_dirs_map': {'': 'include/OGRE'}, 'public_headers': ['include/OgreBuildSettings.h', 'include/OgreExports.h']}
export_libs = [(lib_common, None), (lib_OgreMain, dyn_OgreMain), (install, None)] |
ReLU
[[-0.426116, -1.36682, 1.82537, -0.359894, 0.781783], [0.0141898, -1.74668, 2.10078, 0.199607, -0.625995], [0.236925, -0.387744, 0.335238, -0.0708328, -0.872241], [0.189836, 1.80645, 0.228501, 1.39699, -1.70341], [3.36428, -0.00959754, -0.02829, -0.00182374, -0.00321689], [-0.00116646, -1.30479, -0.646313, 0.384975, -0.172187], [0.059504, -1.04445, 1.15267, -0.0491381, 0.274068], [-0.0885259, -0.600468, -0.168808, 0.320975, -0.19985], [-0.360641, 0.723289, -1.27592, 0.0365215, -0.00916054], [0.0174352, -0.377868, -0.115205, 0.397747, -0.457395], [0.119381, -1.40394, 1.73194, 0.214848, -0.5308], [0.510919, -0.0145736, 0.0727201, -0.272957, -0.58318], [0.0892236, -0.0912425, -0.536878, -0.193087, 0.259249], [-0.106965, 0.292023, -0.281651, -0.379942, 0.351947], [0.313856, -0.841286, -0.235311, 0.0131289, 0.0961032], [-0.00807936, -0.000563769, -0.00712403, 0.00185073, 0.00615519], [0.142517, 0.0997765, -0.234522, 0.0641164, 0.0173711], [0.120767, -0.621179, 0.840395, -0.0966762, 0.738722], [-0.120072, -0.251172, 2.6124, 0.154528, 0.378212], [0.171677, 2.17068, -0.949588, 0.292661, 0.130445], [-0.118201, 0.905917, 0.0613212, -0.508156, 0.641137], [0.198566, -1.69141, 0.635503, 0.444259, -0.64184], [-0.0835745, 0.0201827, 0.131306, -0.465076, -0.0931595], [-0.00889577, 1.47801, -1.7606, -0.273348, 0.685236], [-0.99453, 0.223245, 0.0780545, -0.00929289, -0.256348], [0.00638617, -0.191506, 0.514769, -0.852697, 0.848115], [-0.297726, -0.242926, 0.274442, 0.999968, -1.1845], [-0.0484978, 0.898421, 0.947518, 0.280254, -0.0864377], [-0.0178505, -0.184101, -0.222805, 0.117964, 0.154774], [0.0333232, 1.36975, -1.6105, -0.107663, 0.495742], [0.98863, 0.416651, 0.00679299, 0.268351, 0.181104], [0.000498813, 0.357345, 1.12966, -0.224096, 0.202364], [0.0563342, 0.365707, 0.477882, -0.373783, 0.145331], [0.0852371, -1.11661, -0.296353, 0.385203, -0.172235], [0.00101593, 0.971395, 0.792908, 0.348388, -0.210291], [0.00250681, 1.24018, -1.09202, -0.273149, 0.162231], [-0.135747, -0.901627, -0.581315, -0.278672, 0.223302], [-0.0149513, 0.016501, 0.000874109, 0.00829948, 0.0108247], [0.129122, -1.53063, 1.5018, 0.11217, 0.243414], [0.10337, 0.0582161, -0.0713023, -0.15957, -2.17338], [-0.0108974, 0.0136867, 0.00199981, -0.00192423, -0.00166569], [0.300335, 1.40717, -0.85673, 0.227232, -0.162827], [0.0199644, -2.69606, 0.983252, 0.515997, -0.76219], [0.0206727, -0.476237, -0.122935, -0.166794, -0.02558], [-0.0372325, -1.68642, -0.0342497, 0.0462046, -0.703736], [0.0919305, 1.05597, -1.07173, -0.341911, 0.411172], [0.355212, 1.22531, 0.438395, 0.765531, -0.377483], [-2.08839, -0.0338612, 0.00263981, 0.326788, 0.19074], [0.014666, 0.575711, -0.750375, 1.29255, -1.5435], [-0.197753, 2.14334, -2.00387, 0.0774846, -0.612016], [-0.426, -1.367, 1.825, -0.3599, 0.7817], [0.01419, -1.747, 2.102, 0.1996, -0.626], [0.2369, -0.3877, 0.3352, -0.07086, -0.872], [0.1898, 1.807, 0.2285, 1.397, -1.703], [3.365, -0.0096, -0.02829, -0.001823, -0.003218], [-0.001166, -1.305, -0.6465, 0.385, -0.1722], [0.0595, -1.045, 1.152, -0.04913, 0.2742], [-0.0885, -0.6006, -0.1688, 0.321, -0.1998], [-0.3606, 0.723, -1.276, 0.03653, -0.00916], [0.01744, -0.378, -0.11523, 0.3977, -0.4573], [0.1194, -1.404, 1.732, 0.2148, -0.531], [0.5107, -0.01457, 0.0727, -0.273, -0.583], [0.08923, -0.09125, -0.537, -0.1931, 0.2593], [-0.107, 0.292, -0.2817, -0.38, 0.352], [0.314, -0.8413, -0.2354, 0.01313, 0.0961], [-0.00808, -0.0005636, -0.007126, 0.001851, 0.006157], [0.1425, 0.0998, -0.2345, 0.0641, 0.01736], [0.1208, -0.621, 0.8403, -0.0967, 0.739], [-0.12006, -0.2512, 2.613, 0.1545, 0.3782], [0.1716, 2.17, -0.9497, 0.2927, 0.1305], [-0.1182, 0.906, 0.0613, -0.5083, 0.641], [0.1986, -1.691, 0.6357, 0.4443, -0.6416], [-0.08356, 0.02019, 0.1313, -0.465, -0.09314], [-0.008896, 1.478, -1.761, -0.2734, 0.685], [-0.9946, 0.2233, 0.07806, -0.00929, -0.2563], [0.006386, -0.1915, 0.5146, -0.8525, 0.848], [-0.2976, -0.2429, 0.2744, 1.0, -1.185], [-0.0485, 0.8984, 0.9478, 0.2803, -0.0864], [-0.01785, -0.1841, -0.2228, 0.118, 0.1548], [0.03333, 1.37, -1.61, -0.10767, 0.4958], [0.989, 0.4167, 0.006794, 0.2683, 0.1812], [0.000499, 0.3574, 1.13, -0.2241, 0.2024], [0.05634, 0.3657, 0.4778, -0.3738, 0.1454], [0.08527, -1.116, -0.2964, 0.3853, -0.1722], [0.001016, 0.971, 0.793, 0.3484, -0.2103], [0.002506, 1.24, -1.092, -0.2732, 0.1622], [-0.1357, -0.902, -0.5815, -0.2786, 0.2233], [-0.01495, 0.0165, 0.000874, 0.0083, 0.010826], [0.1292, -1.53, 1.502, 0.1122, 0.2434], [0.1034, 0.05823, -0.0713, -0.1595, -2.174], [-0.010895, 0.01369, 0.001999, -0.0019245, -0.001666], [0.3003, 1.407, -0.857, 0.2272, -0.1628], [0.01996, -2.695, 0.9834, 0.516, -0.762], [0.02068, -0.4763, -0.1229, -0.1667, -0.02557], [-0.03723, -1.687, -0.03424, 0.0462, -0.7036], [0.0919, 1.056, -1.071, -0.3418, 0.4111], [0.3552, 1.226, 0.4385, 0.7656, -0.3774], [-2.088, -0.03387, 0.00264, 0.327, 0.1908], [0.01466, 0.5757, -0.7505, 1.293, -1.544], [-0.1978, 2.143, -2.004, 0.0775, -0.612]]
[-0.374503, -0.377042, -0.35578, -0.167096, 0.916086, -0.20776, -0.505616, 0.128134, -0.101471, -0.0578752, 0.138487, 0.0715103, 0.0287682, -0.00755066, 0.151556, -0.013975, -0.0208452, 0.163808, 0.281265, 0.218265, 0.172861, -0.326585, -0.0181639, -0.351004, -0.0589766, 0.0967817, -0.0262423, 0.108033, 0.0714921, -0.56156, 0.43096, 0.0143072, -0.0635451, 0.0652215, -0.175972, 0.358678, 0.228314, -0.0275654, -0.494982, -0.851079, -0.0136558, -0.319273, -0.150788, 0.0468159, -0.275378, -0.582062, 0.124071, -0.314303, 0.461445, -0.118388, -0.3745, -0.377, -0.3557, -0.1671, 0.916, -0.2078, -0.506, 0.1282, -0.1015, -0.05786, 0.1384, 0.07153, 0.02876, -0.00755, 0.1516, -0.01398, -0.02084, 0.1638, 0.2812, 0.2183, 0.1729, -0.3267, -0.01816, -0.351, -0.059, 0.0968, -0.02625, 0.10803, 0.0715, -0.5615, 0.431, 0.014305, -0.06354, 0.06525, -0.176, 0.3586, 0.2283, -0.02757, -0.4949, -0.851, -0.01366, -0.3193, -0.1508, 0.0468, -0.2754, -0.582, 0.1241, -0.3142, 0.4614, -0.1184]
ReLU
[[-0.0257284, -0.0236522, 0.00533226, -0.00479611, -0.0435576, -0.024969, -0.0148108, 0.000334024, -0.0550894, 0.0356814, -0.0163375, 0.0301327, -0.025592, -0.00017491, 0.0443188, -0.0219289, -0.0149489, 0.0178137, 0.00772056, -0.0270143, -0.046169, 0.0251348, -0.0361942, -0.0561861, -0.0178958, -0.0570119, -0.0574254, -0.0500563, -0.0256907, 0.027076, -0.0153894, -0.00949664, -0.0400265, -0.0510351, -0.0160994, 0.0018803, -0.0481571, 0.00733657, -0.0131476, -0.0495243, 0.0169441, -0.0178048, 0.0365598, 0.00279935, 0.036292, -0.0157837, -0.00707921, -0.0120638, 0.0316389, 0.0237082, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.218614, 0.911912, -0.84065, -0.191406, -0.0275153, -0.717804, 2.22887, 0.0544677, -0.136135, 1.22709, 1.12116, -0.398822, -4.32472, 1.31661, -0.249738, 0.0333424, -2.696, 0.517701, 0.284631, -2.49039, -1.48678, 1.3057, -1.01538, -0.113392, -0.860383, 0.164189, -2.45024, -0.599888, -0.655457, -0.0635909, -0.0607489, -2.41051, -1.18908, 0.352026, -0.322535, -9.52107, -1.47902, -0.0435137, 1.01652, 0.390305, 0.0309371, -0.0278082, 0.542248, -1.57047, -0.563086, -0.030098, -0.772958, -0.279747, 0.413284, -0.0488297, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.24761, -3.76502, 0.228054, 0.484981, -0.0949598, -0.214886, -0.00482349, -1.42252, -0.240014, -0.577037, -0.387157, 0.9012, -0.0541884, 0.12661, -0.0148385, 0.0312515, -0.00719599, -1.01879, -0.286248, -0.198213, -1.05835, 0.0505825, 0.503439, -0.0810826, -0.182306, 1.70427, 0.276436, -0.755162, -0.205155, 0.0226262, -0.604663, -0.414774, 1.51849, -0.377182, -0.968095, 0.372761, 0.02276, -0.00836215, 0.032389, 0.0859652, 0.0232219, 0.295857, -6.87449, 0.362839, -6.14322, 0.180236, 0.107394, -0.355305, 0.0852593, 0.416041, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.181947, 0.0133912, 0.103495, -0.0962433, 0.00869602, 0.939933, -0.633676, -0.180077, -1.17958, -1.68241, -0.0893241, -0.161418, 0.518808, 0.653232, -0.0572633, 0.0290303, 0.145386, -0.133834, -0.138091, -0.482874, 0.0732869, 0.153897, 0.00137266, -1.60221, 0.116977, 0.226952, -1.18551, -0.0490157, 0.703996, -1.29455, 0.234296, 0.295583, 0.513513, -0.0382809, 1.22411, -1.28774, 0.753411, 0.0323903, -0.484612, -0.367858, -0.045273, -0.134693, 0.280383, 0.292483, 0.383694, -0.0966331, -0.106955, -0.16891, -0.0975694, 0.625205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0285755, 0.020354, 0.0389254, -0.0236538, -0.00636706, -0.0154541, 0.0370287, -0.0266411, 0.0201518, 0.042616, -0.0482446, 0.0234702, -0.0030162, -0.0255933, 0.00100413, -0.039401, -0.0446734, -0.0423408, -0.0263079, -0.00115215, -0.0447546, -0.0393619, 0.00185248, -0.0147432, -0.035166, -0.0225495, -0.0232481, -0.0211972, -0.00631384, 0.0325048, -0.0362754, -0.0228891, -0.0160627, -0.0469298, -0.0159726, 0.0219532, 0.00608702, 0.0239822, -0.0273162, -0.0206056, -0.0493693, 0.0116715, -0.0117775, -0.0287723, -0.0465621, -0.0303078, -0.0391812, 0.0229039, -0.0282879, 0.0140313, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.493017, 0.0143351, 0.245149, -0.107882, -1.95085, 0.168048, 0.285775, 0.117999, 0.540144, -0.310951, 0.438126, 0.151776, 1.34173, -0.123517, -0.449784, -0.0258406, -0.199643, 0.0102084, -0.139773, 0.147925, -0.269643, -0.384435, 0.111361, 0.306792, 0.804705, 0.185627, 0.0390124, -0.3578, 0.0416984, 0.296584, -0.733394, -0.0260333, 0.154698, 0.154683, -0.316917, -0.226008, 0.109207, 0.0221259, -0.113578, -0.184804, 0.0302034, -1.00608, 0.152615, -0.544608, 0.0403871, -0.702331, 0.0433181, 0.862143, 0.21835, -0.164736, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0516212, 0.0246022, 0.00519701, 0.00724102, -0.0473381, 0.0251793, 0.0199445, 0.034344, 0.0080071, 0.0414869, -0.018445, -0.0435374, 0.0151831, 0.0228355, -0.034742, -0.0379114, -0.0469185, 0.0403494, 0.0409838, -0.0125394, -0.0279292, -0.0380984, -0.00545312, 0.000296224, 0.0210915, -0.0450871, -0.0271307, -0.0511078, -0.0263413, -0.0359262, -0.0147429, 0.0330501, -0.0233863, -0.0572868, -0.0202109, -0.0467218, 0.0270974, -0.0123151, -0.022375, -0.0136509, 0.010486, 0.0105293, -0.0152921, 0.0254299, -0.050974, -0.0483808, 0.00338038, -0.00556381, -0.0283271, 0.0358513, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00528303, 0.0249541, 0.0209734, -0.0480755, -0.030941, 0.0391869, -0.00627359, 0.0235716, 0.0400039, -0.0198866, 0.000226435, 0.0138433, -0.0417196, -0.0042913, -0.0406745, -0.0145939, -0.0254334, -0.00515734, -0.00575585, -0.00643996, -0.0672878, 0.030864, -0.0374008, -0.0219419, -0.00564866, -0.0610638, -0.0332324, 0.0149923, -0.0413367, -0.00476608, -0.05789, -0.0351982, -0.038589, -0.0515918, 0.0194671, 0.021493, -0.069541, -0.0358305, 0.0251617, -0.0366418, 0.0362111, 0.0446305, 0.0326386, -0.0219629, -0.0480049, -0.0254594, -0.017247, -0.00887547, 0.0130608, 0.0301065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.898927, 0.00472883, 0.522706, 0.623907, 0.142219, 0.786602, -1.48794, 0.49128, -2.17655, 0.281461, -0.329406, -0.143633, -0.465748, -0.220217, 0.144516, -0.0511429, -0.113122, 0.351922, -0.0704466, -0.561738, -0.599853, -1.02209, 0.0130604, -1.46225, 0.177485, -0.124472, -0.121973, -0.0430393, 0.642517, -0.981604, -0.246051, -0.575903, 0.460478, 0.527176, 1.04021, 0.223835, 0.51463, 0.0435097, -1.06927, -1.68283, 0.0352901, 0.187504, 0.302498, -0.104112, -0.765211, -0.0573511, -0.37095, 0.0915851, -0.726989, -0.458983, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0580623, -0.0779515, -0.0316925, -0.0346005, 0.0237032, -0.0289218, -0.0267494, 0.000446033, -0.0366345, -0.0269112, -0.0461343, 0.0234608, -0.0360126, -0.00332605, 0.0097856, -0.0451929, 0.0203525, -0.00817221, 0.0295701, -0.0604792, -0.0190657, -0.0294761, -0.0588744, -0.044501, 0.0174705, -0.0213109, -0.00648355, -0.0413397, 0.0259425, 0.0402069, -0.0188782, -0.00933547, 0.0159795, -0.0593466, -0.0471702, -0.00499768, -0.0345422, -0.0137362, -0.0750357, 0.0100905, 0.00148185, 0.0349869, 0.00981968, -0.0584987, 0.0123556, -0.0582697, -0.0211336, 0.0174229, -0.00544889, -0.0472347, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.94415, 0.108152, 1.3586, 0.03122, 0.00308969, -0.167468, 3.89657, -1.30883, 0.551658, -0.402315, 0.526558, -0.806038, -4.57137, -2.37311, 0.0665095, -0.0207176, -0.148914, -0.896568, 0.467112, 0.44885, -1.68308, -0.410364, 0.803518, 0.700237, -1.46089, -0.319608, -1.08754, -0.327656, -0.287844, -0.291775, 0.352467, -1.15292, 0.769056, 0.0365517, 0.861723, 0.0558341, -1.06786, 0.0194991, -0.917678, -1.19898, -0.0206523, -0.207864, -0.239039, 0.942427, 1.53247, -4.16183, 0.265229, -0.477628, 0.350585, 0.452674, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0183125, 0.320378, -0.115505, -0.0930479, -0.164447, 0.480443, -0.0488888, -0.0767532, 0.457989, -0.815251, 0.0314548, -0.182253, 0.577106, -0.15579, -0.219907, -0.0230765, 0.344513, -0.16367, -0.473365, -0.490897, -0.932829, 0.696761, 0.0325764, -0.426647, 0.678254, 0.589487, -0.653831, -0.658782, 1.34226, 0.891403, 0.460309, 0.640799, 0.0912725, 0.138055, -0.00628141, 0.374024, 0.145911, -0.0238799, 0.3771, 1.00651, -0.0522094, -0.703559, 0.103762, -0.124165, -0.0465263, 0.257205, -0.204245, 0.0262627, 0.116313, 0.283628, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.15909, -0.18838, 0.641448, -0.0295341, 0.119719, 0.220659, 0.51048, 0.894634, -0.0983582, -0.185679, -0.0405998, 0.645929, 0.621616, -0.157488, -0.485417, -0.00913958, -0.19437, 0.27474, 0.00583202, -0.241775, -0.216323, 0.317239, 0.204999, -0.221947, 0.409354, -0.380617, 0.0760568, 0.578883, -0.330752, 0.886849, -0.818042, 0.437303, -0.284698, 0.105596, 0.187023, 0.0652995, -0.0968753, -0.0110851, 0.2181, 0.368294, -0.0223655, 0.860314, -0.138437, 0.229273, -0.991697, -0.0549812, -0.29009, -0.00109741, 0.207045, -0.175226, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0374878, -0.0548155, -0.00986702, -0.024554, -0.0339577, -0.00510877, -0.0149537, 0.0112766, -0.0432606, 0.0120577, -0.0139701, 0.0194517, -0.0226774, -0.0295449, -0.0565623, -0.022134, 0.00587596, -0.0472326, 0.0099596, -0.0373884, -0.0292512, -0.0207364, -0.0105453, -0.0341247, 0.0261407, -0.0298462, -0.00499264, 0.0353888, -0.0516737, -0.00874756, -0.0321149, 0.0369732, 0.0182126, 0.0363329, -0.0425803, -0.0458908, -0.00169549, 0.0222258, -0.0480389, -0.0389699, 0.0206133, -0.0115413, -0.0207032, 0.0316678, 0.00727836, -0.000686307, -0.0427982, -0.0341163, 0.0375396, -0.0405458, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.668513, -0.263481, 0.375073, -0.377028, -0.0562438, -0.598853, 2.11848, 0.0156223, 0.226724, -0.203557, -0.237466, 0.206427, 0.000852102, -0.0115671, -0.226258, 0.0161302, 0.222341, 0.152059, 0.120787, -0.261488, -0.167539, -0.0258114, -0.467315, -0.509366, 0.07625, 0.0763535, 0.0442077, -0.704559, 0.550282, 0.235639, 0.0653328, 0.0641963, 1.16646, 0.0399983, 0.222018, -0.166754, -0.260518, -0.0189819, -0.662188, 0.745152, 0.0441149, 0.439434, 0.474698, -0.326409, -0.181479, 1.80077, -0.185967, 0.30336, 0.730206, -0.309409, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.356083, -0.166289, -0.330672, 0.171554, -0.560877, 0.217132, 0.454068, 0.269823, 0.350188, 0.810512, 1.12174, -1.85371, 0.931311, 0.202704, -0.651971, 0.0292326, 0.550383, -0.335565, 0.509629, 0.349096, -0.328448, -0.534995, 0.363329, 0.789053, -0.0552385, 0.211419, -0.000764228, -0.572605, 0.0281303, -0.391765, 0.186953, 0.739373, -1.19322, -0.193607, -0.771292, 0.287132, 0.277789, 0.0303455, -0.740141, -0.964613, -0.014207, -1.24935, -0.0427367, -1.11523, 0.649113, 0.640596, 0.343844, -1.02042, -0.209031, 0.468517, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.887987, -0.550376, 1.25381, -1.92264, 0.0897411, 1.28857, 0.386286, 0.8537, -0.80353, 0.840659, 0.255623, -0.868299, -1.08809, 1.54181, -0.152854, 0.0122292, 0.0959838, 0.409991, 0.383845, -0.574188, 0.868968, 0.993326, -1.71355, -0.29463, -1.07725, 0.0992432, -0.188672, -1.01254, 0.475092, 0.725338, 0.76068, 0.904287, -1.69016, 1.44969, -1.17612, -0.645589, -0.993996, 0.00417662, -1.73099, 0.489594, -0.0277712, 1.73963, 0.337638, -1.01134, 0.218539, -2.14946, 0.179774, 0.309288, 0.173184, 0.249349, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0287202, 0.0288002, 0.0260945, -0.0453287, -0.00570258, -0.0390286, -0.00490901, -0.0488346, -0.0232626, 0.0255117, -0.0510363, -0.0426236, 0.0283755, 0.00692044, 0.00891948, 0.0149667, -0.0313598, 0.00150736, -0.00766892, 0.0308137, -0.0216647, -0.036375, -0.0423792, -0.0289542, 0.00617469, 0.0251601, -0.0506805, -0.0268023, -0.0239686, -0.00243447, -0.0107074, 0.0353977, -0.059614, -0.00958364, -0.0131518, -0.00643921, -0.0143681, -0.0430858, -0.0268779, 0.035992, -0.047445, 0.0314404, 0.00860871, -0.00877121, -0.0351048, -0.00412653, -0.0181986, 0.0205805, -0.000791166, 0.0289075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.02549, 0.150753, -0.154348, -1.33095, -0.0569362, -0.57198, 0.279489, 0.904894, -0.793351, 2.07543, -1.38123, -0.0347851, 0.823562, 0.349375, 1.1721, 0.0259001, 0.152336, 0.152933, 0.107739, -0.128092, 0.412569, 0.894551, -0.0412729, -1.07238, -0.568532, 1.48682, 0.869444, -0.812789, -0.0890985, -1.90273, 0.133435, 1.98995, 1.09333, 1.40278, 0.23728, 0.753611, 0.637317, -0.0381658, 0.25062, -1.63409, 0.0217916, -1.18544, 0.729782, -0.632815, -1.61789, -2.98806, -0.0850394, -0.521259, -0.458435, -0.776997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.27228, -3.3266, -1.14085, 2.37977, 0.131295, -1.86394, -4.74115, -3.18604, 0.301468, -2.82724, -0.190541, 0.0593894, -1.04167, -0.661619, -1.88743, -0.0191931, -0.813247, 1.20872, 1.26041, -1.60428, -0.107739, -2.3111, 0.0797234, -2.39026, 0.576918, 1.10188, -0.627542, 1.45959, -0.698206, 1.32288, 0.401732, -0.125618, -1.15238, -1.69601, 2.06209, -2.47841, 0.182957, 0.000615536, -4.37963, 0.347165, -0.00580705, -0.618551, -1.27022, -1.12715, -12.2147, -3.74374, 0.0419186, -0.036616, -0.0681778, 1.18132, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00567226, 2.31214, 1.04188, -1.0785, 0.0148593, 0.848571, 0.377018, 0.867987, -0.167617, 1.57278, -0.409157, -0.329723, 1.20327, 0.757628, 0.864911, -0.0376572, 0.00975203, -0.150882, -1.23859, -0.609628, 1.46916, 0.773507, -0.537592, -1.50927, -0.36373, -0.311264, -0.115235, -1.55002, 1.44276, -2.46965, 0.381472, 0.582017, 1.7509, 1.64051, 0.0529464, 1.02609, 0.802246, -0.0133993, 1.22871, -0.409523, 0.0425458, -1.01171, 1.27743, 0.534427, 2.45295, -0.241838, -0.385475, -0.103593, 0.198291, -1.44173, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0218739, 0.0303584, -0.0132183, -0.0243837, -0.0480908, -0.00904813, -0.0436688, -0.0414628, 0.00128869, -0.00844737, 0.0101749, -0.00236118, -0.0168351, -0.0293993, 0.0243873, 0.00600525, 0.000709038, 0.000779196, -0.015131, -0.0382479, -0.0539292, -0.0489452, 0.00554548, -0.0106795, -0.0156432, -0.0476216, 0.0222159, 0.0146924, 0.00877263, -0.0331815, -0.0342321, -0.0142801, -0.0134835, -0.0409547, -0.00141023, 0.0156947, -0.0237651, -0.038968, 0.025791, 0.021634, -0.012764, -0.0445715, -0.0137429, -0.0270177, -0.00627564, -0.0368917, -0.0238057, 0.0037407, 0.0288691, 0.00660387, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.33909, -0.16938, 0.56501, 0.00848341, -0.0747105, 0.370272, 0.224526, 0.0764996, 0.0340361, 0.0378514, -0.267713, 0.0552341, -0.100566, 0.11117, -0.00758507, 0.038769, -0.191761, 0.0491858, -0.0444644, -0.207631, -0.50015, 0.0499691, 0.420328, -0.057424, 0.115088, 0.0839947, -0.145549, -0.281406, 0.0182474, -0.071814, 0.0387516, -0.335688, -0.172403, 0.174095, -0.0374405, -0.118235, 0.0480017, 0.031609, 0.0922737, -0.290575, -0.0472016, 0.0783358, 0.0804214, -0.0164953, 0.36052, -0.608427, -0.86011, 0.259659, -0.0140192, 0.411975, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.199987, 0.0274749, 0.868621, -0.350053, -0.166134, 0.643934, -0.782989, 0.543567, -1.4198, -0.66041, 0.0724962, 0.0474064, 0.478484, 0.237829, 0.0955269, -0.0288495, -0.021324, -0.24561, 0.259883, 0.403755, 0.599252, -0.165023, -0.34417, 0.0843119, 0.461055, 0.592992, 0.334239, 0.196569, -0.278131, -0.416152, -0.2918, 0.355169, 0.503225, 0.48646, 1.54081, 0.284538, 0.47361, -0.0228252, -0.0568548, -0.988694, 0.00958222, -0.696932, -0.267247, 0.629476, 0.432635, -0.156455, 0.261976, -0.241156, -0.139131, 0.379031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.564797, 1.33635, 0.245347, 0.0597155, -0.118893, -1.36996, 3.57272, -0.491175, 0.122699, -0.0205029, 0.808012, -0.017277, -0.138318, 0.109192, 0.0498727, 0.00439416, -0.160063, 0.0766016, -0.474233, -0.123738, -0.240067, 0.187567, 0.353011, 0.570307, -0.273449, -0.0443753, -0.187019, -0.521631, -0.448079, 1.37104, -0.2344, -0.45256, -1.34123, -0.574799, -1.86209, 0.241475, -1.13385, 0.000463777, 2.72035, 2.01967, -0.0246443, 2.08925, 0.385397, -0.106406, 0.0282591, 0.911045, -0.355712, -0.331723, 0.638205, 0.209462, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.502401, 0.260652, -0.0859954, 0.0120427, 0.121619, 0.3664, -0.24959, 0.735966, -0.457906, 1.0468, 0.504591, 0.911819, -0.745202, 1.01492, -0.343027, 0.00621856, 0.326127, 0.239554, 0.186213, 0.0337119, 0.313295, -0.783608, 0.785634, 1.10305, 2.50873, -0.371808, 0.163023, 0.386692, -0.160978, -0.097899, -1.92917, -0.390385, -0.639673, 0.397206, -0.629038, 0.395233, 0.247945, -0.0336803, -0.0487544, 0.863012, 0.0414545, -0.126794, -0.674091, 1.0044, 0.597904, -0.298315, 0.0720187, 1.62389, -0.0874539, 0.142422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.6352, -1.99862, 0.265507, 0.898045, 0.105921, 2.7681, -3.5818, -0.658056, -1.04929, 1.53181, -1.7012, -0.0139677, 1.1456, -0.743782, 0.347493, -0.0132018, -0.106715, 0.699727, 0.0303777, -0.409361, 0.500291, -0.814148, 1.13816, -0.476956, 0.258575, 0.0568247, -0.366258, 1.75243, 0.252282, 0.638168, 0.00524156, 1.68427, 1.68389, 0.173396, 3.05825, -0.687236, 2.18308, -0.0256276, -3.77911, 0.123928, -0.0233177, 0.78764, -0.559539, 1.20623, 0.0238102, 0.416482, 0.715701, 0.187817, -0.737717, -0.379647, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0117403, 0.00499993, 0.0149551, -0.0437553, -0.0235646, 0.00376718, 0.0161457, 0.0187161, 0.0104201, -0.0449501, -0.00229238, 0.0227218, -0.0272604, 0.0440093, -0.0437945, 0.0418779, -0.0370829, 0.0179713, -0.0121517, -0.0379202, -0.03698, -0.0368689, 0.0265466, -0.0251392, -0.0254131, -0.0179743, -0.00363811, 0.012776, -0.00197088, 0.027127, -0.026396, 0.0155901, 0.00140541, -0.0168386, -0.000289901, -0.0101866, 0.0197864, -0.0303635, -0.019163, -0.00665198, -0.0506372, -0.0150932, -0.0276117, -0.0523533, 0.0245961, -0.0209341, 0.000852437, -0.0261906, 0.00784706, 0.00304723, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.31177, 0.512831, 0.767398, -0.208452, -0.172548, 1.28918, -1.92097, 0.46189, 0.24917, -0.607468, -0.785284, -1.4297, -0.32457, -2.51831, 0.970914, 0.030202, -1.14209, -0.317074, -1.43835, 0.619221, -0.153863, 0.405214, -2.13429, -2.33992, -1.26564, -1.80709, -0.279684, 0.834568, 0.312488, -0.0461396, -0.616648, 1.64548, 0.000290379, 1.09646, 0.00312024, -2.27768, 0.174483, 0.00868875, -0.389346, 1.42664, 0.0226618, 0.0759585, 0.701761, -0.126551, 0.716534, 0.0192851, 0.592908, -0.92648, -0.368165, -0.656115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.197984, -0.137075, -0.0911982, -0.104324, -3.0122, 0.00463318, -0.830029, -0.326131, 0.162557, -0.0700183, 0.547012, 0.556732, -0.309127, 0.0179728, 0.114175, -0.045468, 0.122966, 0.211206, -0.181433, -0.0114519, 0.209721, -0.195767, 0.242268, 0.0892852, -0.180224, -0.306501, 0.270196, 0.168749, 0.0625378, -0.378046, -0.2306, -0.151859, -0.0223518, 0.14326, -0.00515763, 0.250489, -0.0537305, -0.0200237, 0.15388, 0.226893, 0.0195915, -0.0724361, -0.220446, 0.483731, 0.0574362, -0.223914, -0.0573422, -0.251572, -0.0340187, 0.0658108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.190482, 0.136881, 0.0450375, -0.521081, -0.355777, -0.338529, -0.556249, 0.479434, 0.127633, 0.822327, 0.287414, -0.120388, 0.219416, -0.544815, -0.86129, 0.0364523, 0.0955709, 0.157596, -0.20282, -0.101205, 0.240763, -0.464204, -0.226282, 0.0849086, 0.253271, 0.218635, 0.529496, 0.118816, 0.938377, 0.0800158, -0.0325287, 0.166249, -0.643578, -0.220065, -0.232663, 0.119816, 0.0257112, -0.0105709, -0.0859868, -0.516572, 0.00847649, -0.715328, 0.0981168, -0.760023, 0.762237, 0.250861, -0.321125, -0.0851529, 0.230256, 0.0467061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.007172, -0.00584403, -0.00471351, -0.0223815, -0.0346043, -0.0216301, -0.0262812, 0.0242659, -0.00179238, 0.0321524, -0.0606827, 0.038917, -0.0589701, 0.0311063, -0.000115694, -0.050372, -0.0281215, 0.00766693, 0.0118365, 0.00899186, -0.0198207, -0.0140312, -0.0284749, -0.052684, 0.00633015, -0.00136322, -0.044158, -0.0133795, -0.0331374, 0.0352004, 0.00888535, -0.0207074, 0.000831374, 0.0331627, -0.0246125, 0.0291591, 0.0038025, 0.0153991, 0.0312045, -0.0592047, 0.0113324, 0.0320535, -0.0662661, -0.0233667, 0.014172, -0.0322545, 0.00540383, -0.0237872, -0.0115863, -0.0275096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0601047, 0.0341852, 0.0183182, 0.0327307, 0.00786158, -0.0029782, -0.0143035, 0.0109523, 0.02102, -0.0262664, -0.0198543, 0.0227644, 0.0184984, -0.0219479, 0.0142672, 0.0273715, -0.038584, 0.019162, 0.00404291, -0.0190055, -0.0309148, -0.0212304, -0.0624301, -0.0599565, 0.0181217, -0.0279992, -0.0362665, -0.0121729, -0.0619742, -0.0389139, -0.0156513, -0.0281298, -0.0371952, 0.0408372, -0.0352631, -0.00630416, -0.0177304, -0.0384537, 0.00957117, -0.051343, 0.0338715, 0.0341269, -0.0276933, 0.0222924, -0.0303612, -0.0424885, 0.024424, -0.0427218, -0.0359456, 0.00341672, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.568488, -0.44874, 2.22244, 1.11069, 0.405298, -0.203596, 0.885333, -1.71332, 0.00816626, 0.0625584, 0.366233, 1.05086, 0.824899, 1.70977, -0.404916, -0.0122668, -0.135936, 0.0865119, 0.458963, 0.575907, 0.281505, -0.762461, -0.121874, -1.41289, -0.0866916, 0.481851, -0.60864, 0.405153, -1.17655, -0.0367753, -0.309656, -0.655696, -0.173369, 0.0811735, -0.301468, 1.18501, -0.447811, -0.0172909, 0.218936, 0.206505, 0.0418341, -1.16486, 0.172157, 0.303636, -0.740693, -0.110109, -0.386292, 0.195682, 0.43053, -0.35044, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0485148, -0.0471553, -0.0427733, -0.000460679, -0.0266104, 0.0239159, -0.0187727, 0.00731958, -0.0396946, 0.0207607, -0.0365249, 0.0113421, 0.00565577, -0.00981202, 0.0142709, -0.019434, -0.0412031, 0.0398877, 0.0339291, -0.00255596, 0.00239996, -0.0580414, -0.00889156, 0.00471231, 0.012673, -0.0464885, 0.0244648, -0.0528666, 0.00479654, 0.0139407, 0.0195259, 0.0015622, 0.0286102, 0.00266905, -0.00763059, -0.0465563, -0.0426139, -0.0436223, -0.0448051, -0.00791547, -0.0543685, 0.0395654, -0.0317223, -0.0255765, -0.0449242, -0.0444561, -0.046165, -0.0194217, 0.00853064, -0.0305609, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0381804, -0.0206938, -0.0558094, 0.00764152, -0.000483327, -0.0443827, -0.0190607, -0.0265205, -0.0253768, 0.00952051, -0.0275276, -0.0535802, 0.000909742, -0.0252551, -0.0248838, -0.0435619, -0.0425312, 0.00983822, -0.0037699, -0.0113188, -0.0243072, 0.0213736, -0.0229772, -0.0141042, 0.016267, -0.0367359, -0.0435239, -0.0186214, 0.0358591, -0.049921, 0.00254871, 0.00601613, 0.00193139, -0.0234551, 0.026085, -0.0517614, 0.0444303, 0.0280459, 0.0249392, -0.00974921, -0.000494414, -0.0474364, -0.0484254, 0.0197057, 0.0164639, 0.0295584, 0.0299495, 0.0142873, -0.0435343, -0.0202663, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0208029, -0.0189684, -0.0597766, -0.0115063, 0.016478, 0.0137051, -0.0227721, 0.0155838, -0.0505748, 0.016455, 0.00499084, -0.00147939, -0.0138452, -0.038672, 0.0178778, 0.0275364, 0.0088555, 0.0194542, 0.0196169, -0.0466658, -0.0426343, -0.0119972, -0.0398912, -0.00187768, 0.015582, 0.0200017, -0.00339697, -0.000113563, 0.0220536, 0.0105879, -0.0663129, 0.000486326, 0.00953346, -0.0369987, -0.0040897, -0.00069718, -0.011594, -0.0197582, -0.0340819, -0.0426626, 0.0404, 0.0324461, 0.00572699, -0.0036434, -0.0514482, 0.0138062, 0.0286291, -0.0359307, -0.037537, -0.0512492, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00785761, 0.0443267, -0.0395186, -0.0690911, -0.0401618, 0.0337981, -0.0489358, -0.0166595, 0.0418337, -0.0109773, -0.0345844, -0.0268456, -0.0402057, -0.0453551, -0.0429568, -0.0526389, 0.0315594, 0.0346516, -0.00489895, -0.00971759, 0.0197644, -0.0174719, 0.00847762, -0.0289792, -0.0477493, -0.0242043, 0.0225091, 0.0359951, -0.0272114, -0.050748, 0.0262211, -0.048864, -0.040984, 0.0276797, -0.0081976, -0.0168488, -0.00424369, 0.0171972, 0.00620689, -0.0434054, -0.04399, 0.0375241, -0.0394995, 0.0326346, -0.0125294, -0.00051055, 0.0273236, -0.0206294, -0.0493676, 0.00634697, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.401254, 0.279494, 0.748806, -0.563421, 0.124558, 0.560432, -0.141024, 0.227296, -0.525907, 2.14834, -0.563311, 0.566627, 0.562461, 0.87109, -0.360943, 0.0179288, 0.328896, -1.28468, 0.172357, 0.291823, 0.0652498, 0.914598, 0.307901, -0.523197, 0.312124, -0.281975, 0.112194, 0.113934, 0.398129, -0.304958, 0.298157, 0.0495414, 0.568469, -0.96788, 0.0949257, -0.969172, 0.420836, -0.0280317, -0.144731, 0.295283, 0.00590189, 0.0591595, 0.146843, -0.544983, 0.0736454, -0.344034, -0.710421, -0.963147, -1.34688, -0.202092, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.163596, -0.0385572, -0.376541, -0.00638823, -0.00470318, -0.9755, -0.302985, -0.120211, -0.732882, -0.0518925, -0.111532, -0.013412, -0.27775, -0.619946, 0.245364, -0.0286975, -0.473959, 0.32162, 0.333558, -0.952634, -0.146546, 0.21139, -0.0198212, 0.00691547, 0.0572772, 0.274089, -0.396096, -0.0557582, 0.130364, -0.00536735, -0.208558, -0.370596, 0.0658952, -0.190436, 0.378694, -1.12847, -0.0396973, 0.00760866, -0.627647, -1.44373, -0.00209985, 0.0916994, 0.225213, 0.799905, 0.0129381, 0.269888, 0.000588344, 0.31163, 0.136727, -0.144931, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.50689, 0.531863, 1.04448, 0.0658292, 0.261798, -1.16721, -3.89456, -0.661575, -0.99127, 0.446841, -1.92099, -0.143716, -1.16721, 0.828353, 0.206493, -0.0275914, -0.296827, -0.0364637, 0.403466, -0.0602809, 0.559395, 1.04646, 0.293052, -0.219288, -0.142489, 0.577655, -0.370445, -0.0130493, -0.0983715, -1.37078, -0.060553, 0.0713896, -0.52294, 0.750478, 0.200297, -0.152777, 0.518255, -0.0319782, -2.59451, -3.3236, -0.038056, -1.56612, -0.242287, 0.703787, 0.322074, -2.12654, -0.0871571, 0.387691, -0.0739384, -0.97751, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.10338, -0.0615184, -0.767001, -1.3994, -0.111061, -0.12758, 0.096159, -0.226892, -0.137889, -1.0884, -0.643976, 0.511616, -1.2436, -1.23624, -0.181403, 0.0231406, -0.586996, -0.212373, 0.677068, -0.110163, -0.484947, 0.0375069, 0.272008, 0.458967, -0.226351, 0.987938, -0.223649, 0.310929, -0.949527, -0.621633, 0.076822, 0.403384, -0.431802, -0.0130485, -0.378993, -0.534596, 0.603292, 0.0188939, -0.329104, 0.549409, -0.000219441, 0.471417, -0.0782425, 0.568009, 0.673912, -2.35879, 0.655022, 0.257655, 0.338474, -0.386431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.595133, -0.150721, 0.0802788, 0.167304, -1.43521, -0.575227, -1.9135, 0.0184598, 0.593432, 0.67308, 0.783197, 0.0259641, 0.452744, 0.141831, 0.297948, -0.0414787, -0.229389, 0.133965, -0.106526, 0.104074, 0.00126029, -0.474928, -0.0125281, -0.100956, -0.60854, -0.0272196, -0.0930955, 0.0644315, -0.372332, -0.402674, 0.490599, -0.288804, 0.301188, -0.100852, -0.234375, 0.27385, -0.071548, -0.0211378, -0.184866, -1.63337, -0.0354627, -0.61781, -0.165273, 0.11223, 0.1267, -0.12415, 0.317328, 0.140233, -0.112024, 0.116639, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.49639, -0.331035, -0.0588267, 0.112556, 0.299268, 0.495213, 0.0224447, 0.931044, -0.076072, 2.27374, -0.0816142, 0.0924521, 0.23034, 0.316434, -0.0188822, 0.00776739, 0.146228, -0.132193, 0.0231762, 0.0845961, 0.755128, 0.823508, 0.412943, 0.0140469, 0.70292, -0.177427, -0.424485, 0.62024, 1.83092, 0.553606, -0.444385, 1.07682, 1.20219, -0.5812, 1.12718, 0.0647955, 0.587842, -0.0432925, -2.72241, -0.703572, -0.042531, -0.297675, -0.367545, 0.207131, 0.771083, 0.602722, -0.650655, 0.181533, -0.696239, 1.04558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.37706, 0.00577377, 0.490774, -0.270099, -19.9624, -0.0189686, -0.562227, 0.392669, 0.419986, 0.601189, 0.591727, -0.229127, 0.651934, 0.678413, 0.269488, 0.0137958, 0.446056, 0.362336, -0.025696, 0.0197138, -0.307772, 0.203549, -0.271649, 0.349838, -0.81518, 0.129318, 0.545761, 0.0989652, 0.150252, -0.187218, 0.910253, 0.618087, -0.113756, -0.0716198, -0.751719, 0.405477, 0.0129812, 0.00428236, -0.224565, 0.378183, 0.0431108, -0.468841, -0.308471, 0.0776524, 0.0418103, 0.0328236, -0.309034, -0.86436, 0.337951, -0.202257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0121077, 0.0258695, 0.0219028, -0.062138, -0.0328463, 0.0273361, 0.0182794, -0.0298738, 0.0132032, -0.0228461, -0.0181692, -0.0362109, -0.0562282, 0.0247228, -0.0157045, -0.005727, -0.0681466, -0.0234393, -0.0205418, 0.0204177, 0.0109809, 0.0218192, 0.00131876, -0.00227974, -0.0565218, -0.0401733, 0.0244076, 0.0305189, -0.0479203, 0.00426425, -0.0320321, -0.0521121, -0.0391899, -0.018116, -0.0528863, 0.0277528, -0.026261, -0.00188954, 0.0193601, 0.000839447, 0.0199014, 0.0132764, 0.0158155, -0.0442029, 0.0313895, 0.0240479, -0.0142053, 0.00259844, -0.0381128, -0.0305906, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.568811, -0.574039, 1.059, 0.12043, -0.344801, 0.667762, -0.506993, -0.0233287, -0.175498, 0.663714, 0.0516913, 1.32079, 0.587422, -0.0873761, -1.74817, 0.0235063, 0.132167, 0.122813, -0.0201615, -0.124675, -0.918647, -0.551732, -0.15735, 0.20124, -0.944097, -0.377025, 0.549733, 0.0851897, -0.0679896, 1.35397, -0.541424, 0.533656, 0.839558, -0.335116, -0.0533488, 0.287171, 0.308471, -0.0250819, 0.505499, 0.729282, 0.00438702, -0.382306, 0.450309, 0.951726, 0.0207047, 0.485847, -0.056482, -0.0668428, 0.271555, 0.191754, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0153863, -0.315182, 1.01545, 1.22308, -0.12613, -1.78458, -0.0318538, -3.22923, 0.713745, -1.58056, 0.787637, 0.166439, -0.125029, 0.0740306, -2.12178, 0.0446917, 0.185617, -0.653138, -0.803737, 0.650343, -1.81499, 0.0609104, -0.891179, 1.78269, -0.968413, -1.94346, -0.00860764, -0.575552, -2.08936, 3.70143, -0.00874972, -4.07967, -3.74575, -2.02771, -2.28249, 0.400279, -3.60279, 0.00164003, 0.531646, -0.0770575, 0.0121736, 2.22962, -0.597888, -0.727424, -4.62708, 4.04212, 0.222802, -0.680344, 0.889044, 1.74953, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.784615, -0.979148, 1.01939, 1.3527, 0.4067, -0.923257, 2.1695, -3.36751, -0.0422139, -1.85876, -0.921532, -0.678311, -1.98314, -0.120565, 0.128781, -0.0138073, -0.0320141, -1.26867, 0.404421, -0.0844825, -1.5092, 0.70594, 1.0345, -1.87982, 1.296, -0.13247, -1.07518, 1.53446, -0.455098, -2.87362, 0.725711, 0.983426, -0.992915, -0.0511975, 1.1676, -0.162559, 0.501885, -0.0510114, -0.145787, 1.19208, -0.0372321, -2.49131, 0.0688451, -0.278116, -1.11703, -13.7698, -0.263881, -0.958283, 1.24828, -0.394323, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.150458, 0.102663, 2.70785, 0.182447, 0.34888, 0.266757, 1.83748, 0.24391, 0.468914, 0.153591, 0.222866, -0.200981, 0.13459, 1.2085, 0.302321, -0.0106064, 0.254473, 0.10535, -0.320003, -0.251303, -0.606811, -0.131177, -0.0322115, 0.473366, 1.07214, -0.60887, -0.227807, -0.266566, 0.667286, 0.640801, -0.452032, 0.176337, 0.831382, 0.0151065, 0.223244, 0.0918782, -0.224615, 0.0111779, 1.43758, 1.61223, -0.0152001, -0.232088, 0.387333, 0.189998, -2.61859, 0.325043, -0.201062, -0.627219, 0.455492, 0.221422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02573, -0.02365, 0.005333, -0.004795, -0.04355, -0.02496, -0.01481, 0.000334, -0.05508, 0.03568, -0.01634, 0.03014, -0.02559, -0.0001749, 0.0443, -0.02193, -0.014946, 0.0178, 0.00772, -0.02701, -0.04617, 0.02513, -0.0362, -0.05618, -0.0179, -0.057, -0.05743, -0.05005, -0.0257, 0.02707, -0.01539, -0.0095, -0.04004, -0.05103, -0.0161, 0.001881, -0.04816, 0.007336, -0.013145, -0.04953, 0.01694, -0.0178, 0.03656, 0.0028, 0.0363, -0.01578, -0.00708, -0.01206, 0.03165, 0.02371], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2186, 0.912, -0.841, -0.1914, -0.02751, -0.718, 2.229, 0.05447, -0.1361, 1.228, 1.121, -0.399, -4.324, 1.316, -0.2498, 0.03336, -2.695, 0.5176, 0.2847, -2.49, -1.486, 1.306, -1.016, -0.1134, -0.8604, 0.1642, -2.451, -0.6, -0.6553, -0.0636, -0.06076, -2.41, -1.189, 0.352, -0.3225, -9.52, -1.4795, -0.04352, 1.017, 0.3904, 0.03093, -0.0278, 0.5425, -1.57, -0.563, -0.0301, -0.773, -0.2798, 0.4133, -0.04883], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.248, -3.766, 0.228, 0.4849, -0.095, -0.2148, -0.00482, -1.423, -0.24, -0.577, -0.3872, 0.9014, -0.0542, 0.1266, -0.01484, 0.03125, -0.007195, -1.019, -0.2861, -0.1982, -1.059, 0.05057, 0.5034, -0.08105, -0.1823, 1.704, 0.2764, -0.7554, -0.2052, 0.02263, -0.6045, -0.4148, 1.519, -0.3772, -0.9683, 0.3728, 0.02277, -0.00836, 0.03238, 0.08594, 0.02322, 0.296, -6.875, 0.3628, -6.145, 0.1802, 0.1074, -0.3552, 0.08527, 0.416], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.182, 0.01339, 0.1035, -0.09625, 0.0087, 0.94, -0.634, -0.18, -1.18, -1.683, -0.0893, -0.1614, 0.519, 0.6533, -0.05725, 0.02904, 0.1454, -0.1338, -0.1381, -0.483, 0.0733, 0.1539, 0.001372, -1.603, 0.117, 0.2269, -1.186, -0.049, 0.704, -1.295, 0.2343, 0.2957, 0.5137, -0.03827, 1.224, -1.288, 0.7534, 0.03238, -0.4846, -0.368, -0.0453, -0.1346, 0.2803, 0.2925, 0.3838, -0.0966, -0.10693, -0.169, -0.0976, 0.625], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02858, 0.02036, 0.03894, -0.02365, -0.006367, -0.01546, 0.03702, -0.02664, 0.02016, 0.0426, -0.04825, 0.02347, -0.003016, -0.02559, 0.001004, -0.0394, -0.04468, -0.04233, -0.0263, -0.001152, -0.04477, -0.03937, 0.001852, -0.01474, -0.03516, -0.02255, -0.02325, -0.0212, -0.006313, 0.0325, -0.0363, -0.02289, -0.01607, -0.04694, -0.01598, 0.02196, 0.00609, 0.02399, -0.02731, -0.0206, -0.04938, 0.01167, -0.01178, -0.02878, -0.04657, -0.0303, -0.03918, 0.0229, -0.02829, 0.01403], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.493, 0.014336, 0.2451, -0.1079, -1.951, 0.1681, 0.286, 0.118, 0.54, -0.311, 0.4382, 0.1517, 1.342, -0.12354, -0.4497, -0.02583, -0.1996, 0.01021, -0.1398, 0.148, -0.2695, -0.3845, 0.1114, 0.307, 0.8047, 0.1857, 0.039, -0.358, 0.0417, 0.2966, -0.7334, -0.02603, 0.1547, 0.1547, -0.317, -0.226, 0.1092, 0.02213, -0.1136, -0.1848, 0.0302, -1.006, 0.1526, -0.5444, 0.04037, -0.702, 0.0433, 0.8623, 0.2184, -0.1648], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05164, 0.0246, 0.005196, 0.00724, -0.04733, 0.02518, 0.01994, 0.03433, 0.00801, 0.04147, -0.01845, -0.04355, 0.01518, 0.02284, -0.03473, -0.0379, -0.0469, 0.04034, 0.041, -0.01254, -0.02792, -0.0381, -0.005455, 0.000296, 0.02109, -0.04507, -0.02713, -0.05112, -0.02634, -0.03592, -0.01474, 0.03305, -0.02339, -0.05728, -0.02022, -0.04672, 0.0271, -0.012314, -0.02237, -0.01365, 0.01048, 0.01053, -0.01529, 0.02544, -0.05096, -0.04837, 0.00338, -0.005566, -0.02832, 0.03586], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.005283, 0.02495, 0.02098, -0.04807, -0.03094, 0.03918, -0.006275, 0.02357, 0.04, -0.01988, 0.0002264, 0.01384, -0.04172, -0.00429, -0.04068, -0.014595, -0.02544, -0.005157, -0.005756, -0.00644, -0.06726, 0.03087, -0.0374, -0.02194, -0.00565, -0.06107, -0.03323, 0.01499, -0.04135, -0.004765, -0.0579, -0.0352, -0.03857, -0.0516, 0.01947, 0.0215, -0.0695, -0.03583, 0.02516, -0.03665, 0.03622, 0.04462, 0.03265, -0.02196, -0.048, -0.02547, -0.01724, -0.00887, 0.01306, 0.0301], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.899, 0.00473, 0.523, 0.624, 0.1422, 0.7866, -1.488, 0.4912, -2.176, 0.2815, -0.3293, -0.1437, -0.4658, -0.2202, 0.1445, -0.05115, -0.1131, 0.3518, -0.07043, -0.5615, -0.5996, -1.022, 0.01306, -1.462, 0.1775, -0.12445, -0.12195, -0.04303, 0.6426, -0.9814, -0.2461, -0.5757, 0.4604, 0.5273, 1.04, 0.2239, 0.5146, 0.04352, -1.069, -1.683, 0.03528, 0.1875, 0.3025, -0.1041, -0.765, -0.05734, -0.3708, 0.0916, -0.727, -0.459], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05807, -0.07794, -0.03168, -0.0346, 0.0237, -0.02892, -0.02675, 0.000446, -0.03662, -0.02692, -0.04614, 0.02347, -0.036, -0.003326, 0.00979, -0.0452, 0.02036, -0.00817, 0.02957, -0.0605, -0.01906, -0.02948, -0.05887, -0.0445, 0.01747, -0.02132, -0.006485, -0.04135, 0.02594, 0.0402, -0.01888, -0.00934, 0.01598, -0.05936, -0.04718, -0.004997, -0.03455, -0.01373, -0.075, 0.01009, 0.001482, 0.03497, 0.00982, -0.0585, 0.01235, -0.05826, -0.02113, 0.01743, -0.005447, -0.04724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.944, 0.10815, 1.358, 0.03122, 0.00309, -0.1675, 3.896, -1.309, 0.552, -0.4023, 0.5264, -0.806, -4.57, -2.373, 0.0665, -0.02072, -0.1489, -0.8965, 0.467, 0.4487, -1.683, -0.4104, 0.8037, 0.7, -1.461, -0.3196, -1.088, -0.3276, -0.2878, -0.2917, 0.3525, -1.153, 0.769, 0.03656, 0.862, 0.05585, -1.067, 0.0195, -0.9175, -1.199, -0.02065, -0.2079, -0.239, 0.9424, 1.532, -4.16, 0.2651, -0.4775, 0.3506, 0.4526], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01831, 0.3203, -0.1155, -0.093, -0.1644, 0.4805, -0.0489, -0.0768, 0.458, -0.8154, 0.03146, -0.1823, 0.577, -0.1558, -0.2198, -0.02307, 0.3445, -0.1637, -0.4734, -0.491, -0.9326, 0.697, 0.03256, -0.4268, 0.678, 0.5894, -0.654, -0.6587, 1.342, 0.8916, 0.4602, 0.6406, 0.09125, 0.1381, -0.006283, 0.374, 0.1459, -0.02388, 0.3772, 1.007, -0.05222, -0.7036, 0.10376, -0.12415, -0.04654, 0.2573, -0.2042, 0.02626, 0.11633, 0.2837], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.159, -0.1884, 0.6416, -0.02954, 0.1197, 0.2207, 0.5103, 0.8945, -0.0984, -0.1857, -0.0406, 0.646, 0.6216, -0.1575, -0.4854, -0.00914, -0.1943, 0.2747, 0.005833, -0.2418, -0.2163, 0.3171, 0.205, -0.2219, 0.4094, -0.3806, 0.07605, 0.579, -0.3308, 0.8867, -0.818, 0.4373, -0.2847, 0.1056, 0.187, 0.0653, -0.09686, -0.011086, 0.2181, 0.3684, -0.02237, 0.8604, -0.1384, 0.2292, -0.9917, -0.055, -0.29, -0.001098, 0.207, -0.1752], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03748, -0.0548, -0.009865, -0.02455, -0.03397, -0.005108, -0.01495, 0.01128, -0.04327, 0.012054, -0.01397, 0.01945, -0.02267, -0.02954, -0.05655, -0.02214, 0.005875, -0.04724, 0.00996, -0.03738, -0.02925, -0.02074, -0.010544, -0.03412, 0.02614, -0.02985, -0.004993, 0.0354, -0.05167, -0.00875, -0.0321, 0.037, 0.01822, 0.03635, -0.04257, -0.0459, -0.001696, 0.02223, -0.04803, -0.03897, 0.02061, -0.01154, -0.0207, 0.03168, 0.00728, -0.000686, -0.0428, -0.03412, 0.03754, -0.04056], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.6685, -0.2634, 0.375, -0.377, -0.05624, -0.5986, 2.12, 0.01563, 0.2267, -0.2036, -0.2374, 0.2064, 0.000852, -0.011566, -0.2263, 0.01613, 0.2223, 0.1521, 0.1208, -0.2615, -0.1675, -0.02582, -0.4673, -0.5093, 0.07623, 0.07635, 0.04422, -0.7046, 0.5503, 0.2356, 0.0653, 0.0642, 1.166, 0.04, 0.222, -0.1667, -0.2605, -0.01898, -0.662, 0.745, 0.04413, 0.4395, 0.4746, -0.3264, -0.1815, 1.801, -0.1859, 0.3035, 0.73, -0.3093], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3562, -0.1663, -0.3306, 0.1715, -0.561, 0.2172, 0.454, 0.2698, 0.35, 0.8105, 1.122, -1.854, 0.931, 0.2028, -0.652, 0.02924, 0.5503, -0.3354, 0.51, 0.349, -0.3284, -0.535, 0.3633, 0.789, -0.05524, 0.2114, -0.0007644, -0.5728, 0.02814, -0.3918, 0.187, 0.7393, -1.193, -0.1936, -0.7715, 0.287, 0.2778, 0.03035, -0.74, -0.965, -0.014206, -1.249, -0.04272, -1.115, 0.649, 0.6406, 0.3438, -1.0205, -0.209, 0.4685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, -0.5503, 1.254, -1.923, 0.0897, 1.288, 0.3862, 0.8535, -0.8037, 0.841, 0.2556, -0.868, -1.088, 1.542, -0.1528, 0.01223, 0.096, 0.41, 0.3838, -0.574, 0.869, 0.993, -1.714, -0.2947, -1.077, 0.09924, -0.1887, -1.013, 0.475, 0.725, 0.7607, 0.9043, -1.69, 1.449, -1.176, -0.6455, -0.994, 0.004177, -1.731, 0.4895, -0.02777, 1.739, 0.3376, -1.012, 0.2185, -2.15, 0.1798, 0.3093, 0.1732, 0.2494], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02872, 0.0288, 0.0261, -0.04532, -0.005703, -0.03903, -0.00491, -0.04883, -0.02327, 0.02551, -0.05103, -0.04263, 0.02838, 0.00692, 0.00892, 0.01497, -0.03137, 0.001508, -0.007668, 0.0308, -0.02167, -0.03638, -0.0424, -0.02896, 0.006176, 0.02516, -0.0507, -0.02681, -0.02397, -0.002434, -0.010704, 0.0354, -0.0596, -0.00958, -0.01315, -0.00644, -0.014366, -0.0431, -0.02687, 0.03598, -0.04745, 0.03143, 0.008606, -0.00877, -0.0351, -0.004128, -0.0182, 0.02058, -0.000791, 0.0289], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.1508, -0.1543, -1.331, -0.05695, -0.572, 0.2795, 0.905, -0.7935, 2.076, -1.381, -0.0348, 0.8237, 0.3494, 1.172, 0.0259, 0.1523, 0.153, 0.1077, -0.128, 0.4126, 0.8945, -0.04126, -1.072, -0.5684, 1.487, 0.8696, -0.813, -0.0891, -1.902, 0.1334, 1.99, 1.094, 1.402, 0.2373, 0.7534, 0.637, -0.03818, 0.2507, -1.634, 0.02179, -1.186, 0.73, -0.633, -1.618, -2.988, -0.085, -0.5215, -0.4585, -0.777], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.271, -3.326, -1.141, 2.379, 0.1313, -1.864, -4.742, -3.186, 0.3015, -2.828, -0.1906, 0.0594, -1.042, -0.6616, -1.888, -0.0192, -0.8135, 1.209, 1.261, -1.6045, -0.1077, -2.31, 0.0797, -2.39, 0.577, 1.102, -0.6274, 1.46, -0.698, 1.323, 0.4016, -0.1256, -1.152, -1.696, 2.062, -2.479, 0.183, 0.0006156, -4.38, 0.3472, -0.005806, -0.6187, -1.2705, -1.127, -12.21, -3.744, 0.04193, -0.03662, -0.0682, 1.182], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005672, 2.312, 1.042, -1.078, 0.01486, 0.8486, 0.377, 0.868, -0.1676, 1.573, -0.4092, -0.3298, 1.203, 0.758, 0.8647, -0.03766, 0.00975, -0.1509, -1.238, -0.61, 1.469, 0.7734, -0.5376, -1.509, -0.3638, -0.3113, -0.11523, -1.55, 1.442, -2.469, 0.3816, 0.582, 1.751, 1.641, 0.05295, 1.026, 0.8022, -0.0134, 1.229, -0.4094, 0.04254, -1.012, 1.277, 0.5347, 2.453, -0.2418, -0.3855, -0.1036, 0.1982, -1.441], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02188, 0.03036, -0.01322, -0.02438, -0.0481, -0.00905, -0.04367, -0.04147, 0.001288, -0.008446, 0.01018, -0.002361, -0.01683, -0.0294, 0.02438, 0.006004, 0.000709, 0.000779, -0.01513, -0.03824, -0.05392, -0.04895, 0.005547, -0.01068, -0.01564, -0.0476, 0.02222, 0.014694, 0.00877, -0.03317, -0.03424, -0.01428, -0.01348, -0.04095, -0.0014105, 0.0157, -0.02376, -0.03897, 0.02579, 0.02164, -0.012764, -0.0446, -0.01374, -0.02702, -0.006275, -0.0369, -0.0238, 0.00374, 0.02887, 0.006603], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.339, -0.1694, 0.565, 0.008484, -0.0747, 0.3704, 0.2245, 0.0765, 0.03403, 0.03784, -0.2678, 0.05524, -0.1006, 0.11115, -0.007584, 0.03876, -0.1918, 0.0492, -0.04446, -0.2076, -0.5, 0.04996, 0.4204, -0.05743, 0.1151, 0.084, -0.1455, -0.2815, 0.01825, -0.07184, 0.03876, -0.3357, -0.1724, 0.1741, -0.03745, -0.1182, 0.048, 0.03162, 0.0923, -0.2905, -0.0472, 0.0783, 0.08044, -0.0165, 0.3606, -0.6084, -0.8604, 0.2598, -0.01402, 0.4119], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, 0.02748, 0.8687, -0.35, -0.1661, 0.644, -0.783, 0.5435, -1.42, -0.6606, 0.0725, 0.0474, 0.4785, 0.2378, 0.0955, -0.02885, -0.02132, -0.2456, 0.2598, 0.4038, 0.599, -0.165, -0.3442, 0.0843, 0.461, 0.593, 0.3342, 0.1965, -0.278, -0.4163, -0.2917, 0.3552, 0.5034, 0.4866, 1.541, 0.2844, 0.4736, -0.02283, -0.05685, -0.989, 0.00958, -0.697, -0.2673, 0.6294, 0.4326, -0.1565, 0.262, -0.2412, -0.1392, 0.3792], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.565, 1.336, 0.2454, 0.05972, -0.1189, -1.37, 3.572, -0.4912, 0.1227, -0.02051, 0.808, -0.01727, -0.1383, 0.1092, 0.04987, 0.004395, -0.16, 0.0766, -0.474, -0.1237, -0.2401, 0.1876, 0.353, 0.5703, -0.2734, -0.04437, -0.187, -0.5215, -0.448, 1.371, -0.2344, -0.4526, -1.341, -0.5747, -1.862, 0.2415, -1.134, 0.0004637, 2.72, 2.02, -0.02464, 2.09, 0.3855, -0.1064, 0.02826, 0.911, -0.3557, -0.3318, 0.638, 0.2095], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5024, 0.2607, -0.086, 0.01204, 0.12164, 0.3665, -0.2496, 0.736, -0.458, 1.047, 0.5044, 0.9116, -0.745, 1.015, -0.343, 0.006218, 0.3262, 0.2395, 0.1862, 0.03372, 0.3132, -0.7837, 0.7856, 1.104, 2.508, -0.3718, 0.163, 0.3867, -0.161, -0.0979, -1.929, -0.3904, -0.6396, 0.3972, -0.629, 0.3953, 0.2479, -0.0337, -0.04877, 0.863, 0.04144, -0.1268, -0.6743, 1.005, 0.598, -0.2983, 0.072, 1.624, -0.08746, 0.1425], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635, -1.999, 0.2656, 0.898, 0.1059, 2.768, -3.582, -0.658, -1.049, 1.532, -1.701, -0.01397, 1.1455, -0.7437, 0.3474, -0.0132, -0.1067, 0.6997, 0.03038, -0.4094, 0.5005, -0.814, 1.138, -0.477, 0.2585, 0.05682, -0.3662, 1.752, 0.2522, 0.638, 0.00524, 1.685, 1.684, 0.1733, 3.059, -0.687, 2.184, -0.02563, -3.78, 0.1239, -0.02332, 0.7876, -0.5596, 1.206, 0.0238, 0.4165, 0.716, 0.1879, -0.738, -0.3796], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01174, 0.005, 0.01495, -0.04376, -0.02356, 0.003767, 0.01614, 0.01872, 0.01042, -0.04495, -0.002293, 0.02272, -0.02727, 0.044, -0.0438, 0.04187, -0.03708, 0.01797, -0.01215, -0.03793, -0.037, -0.03687, 0.02655, -0.02515, -0.0254, -0.01797, -0.003637, 0.01278, -0.00197, 0.02713, -0.0264, 0.01559, 0.001406, -0.01685, -0.00029, -0.010185, 0.01979, -0.03036, -0.01917, -0.006653, -0.05063, -0.01509, -0.02762, -0.05237, 0.0246, -0.02094, 0.0008526, -0.02618, 0.00785, 0.003048], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.312, 0.5127, 0.7676, -0.2085, -0.1726, 1.289, -1.921, 0.462, 0.2491, -0.6074, -0.785, -1.43, -0.3245, -2.518, 0.9707, 0.0302, -1.143, -0.3171, -1.438, 0.619, -0.1538, 0.4053, -2.135, -2.34, -1.266, -1.807, -0.2798, 0.8345, 0.3125, -0.04614, -0.6167, 1.6455, 0.0002904, 1.097, 0.00312, -2.277, 0.1744, 0.00869, -0.3894, 1.427, 0.02266, 0.076, 0.7017, -0.1266, 0.7163, 0.01929, 0.593, -0.9263, -0.3682, -0.6562], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.198, -0.1371, -0.0912, -0.1043, -3.012, 0.004635, -0.83, -0.3262, 0.1626, -0.07, 0.547, 0.5566, -0.309, 0.01797, 0.1142, -0.04547, 0.123, 0.2112, -0.1814, -0.01145, 0.2097, -0.1958, 0.2423, 0.0893, -0.1802, -0.3064, 0.2703, 0.1687, 0.06256, -0.378, -0.2306, -0.1519, -0.02235, 0.1433, -0.005157, 0.2505, -0.05374, -0.02002, 0.1539, 0.2269, 0.01959, -0.07245, -0.2205, 0.4836, 0.05743, -0.2239, -0.05734, -0.2515, -0.03403, 0.0658], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1904, 0.1368, 0.04504, -0.521, -0.3557, -0.3386, -0.556, 0.4795, 0.1277, 0.8223, 0.2874, -0.12036, 0.2194, -0.545, -0.8613, 0.03644, 0.0956, 0.1576, -0.2029, -0.1012, 0.2407, -0.464, -0.2263, 0.0849, 0.2532, 0.2186, 0.5293, 0.11884, 0.9385, 0.08, -0.03253, 0.1663, -0.6436, -0.2201, -0.2327, 0.1198, 0.02571, -0.010574, -0.086, -0.5166, 0.00848, -0.7153, 0.09814, -0.7603, 0.762, 0.251, -0.321, -0.08514, 0.2302, 0.0467], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00717, -0.005844, -0.004715, -0.02238, -0.0346, -0.02164, -0.02628, 0.02426, -0.001792, 0.03217, -0.06067, 0.0389, -0.05896, 0.03111, -0.0001157, -0.05038, -0.02812, 0.007668, 0.01183, 0.008995, -0.01982, -0.01403, -0.02847, -0.05267, 0.00633, -0.001363, -0.04416, -0.01338, -0.03314, 0.0352, 0.00889, -0.0207, 0.0008316, 0.03317, -0.02461, 0.02916, 0.003803, 0.015396, 0.0312, -0.0592, 0.01133, 0.03204, -0.0663, -0.02336, 0.014175, -0.03226, 0.005405, -0.02379, -0.01159, -0.02751], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.06012, 0.03418, 0.01833, 0.03275, 0.00786, -0.002977, -0.014305, 0.010956, 0.02103, -0.02626, -0.01985, 0.02277, 0.0185, -0.02194, 0.01427, 0.02737, -0.03857, 0.01917, 0.004044, -0.01901, -0.03091, -0.02122, -0.06244, -0.05997, 0.01813, -0.028, -0.03625, -0.01218, -0.06198, -0.0389, -0.01566, -0.02814, -0.0372, 0.04083, -0.03528, -0.006306, -0.01773, -0.03845, 0.009575, -0.05133, 0.03387, 0.03412, -0.0277, 0.0223, -0.03036, -0.04248, 0.02443, -0.04272, -0.03595, 0.003416], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5684, -0.4487, 2.223, 1.11, 0.4053, -0.2036, 0.8853, -1.713, 0.00816, 0.06256, 0.3662, 1.051, 0.8247, 1.71, -0.405, -0.01227, -0.136, 0.0865, 0.459, 0.5757, 0.2815, -0.7627, -0.1219, -1.413, -0.0867, 0.482, -0.6084, 0.4053, -1.177, -0.03677, -0.3096, -0.656, -0.1733, 0.0812, -0.3015, 1.185, -0.4478, -0.01729, 0.219, 0.2065, 0.04184, -1.165, 0.1721, 0.3037, -0.7407, -0.1101, -0.3862, 0.1957, 0.4304, -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.04852, -0.04715, -0.0428, -0.0004606, -0.02661, 0.02391, -0.01877, 0.00732, -0.0397, 0.02077, -0.03653, 0.011345, 0.005657, -0.00981, 0.014275, -0.01944, -0.0412, 0.0399, 0.03394, -0.002556, 0.0024, -0.05804, -0.00889, 0.00471, 0.01267, -0.04648, 0.02446, -0.05286, 0.004795, 0.01394, 0.01953, 0.001562, 0.02861, 0.002668, -0.00763, -0.04657, -0.0426, -0.0436, -0.0448, -0.00791, -0.05438, 0.03955, -0.0317, -0.02557, -0.04492, -0.04446, -0.04617, -0.01942, 0.00853, -0.03056], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03818, -0.02069, -0.05582, 0.00764, -0.0004833, -0.04437, -0.01906, -0.02652, -0.02538, 0.00952, -0.02753, -0.0536, 0.00091, -0.02525, -0.02489, -0.04355, -0.04254, 0.00984, -0.00377, -0.01132, -0.0243, 0.02138, -0.02298, -0.01411, 0.01627, -0.03674, -0.04352, -0.01862, 0.03586, -0.04993, 0.002548, 0.006016, 0.001931, -0.02345, 0.0261, -0.05176, 0.04443, 0.02805, 0.02493, -0.00975, -0.0004945, -0.04742, -0.04843, 0.0197, 0.01646, 0.02956, 0.02995, 0.01429, -0.04355, -0.02026], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0208, -0.01897, -0.05978, -0.011505, 0.01648, 0.0137, -0.02277, 0.01559, -0.05057, 0.01645, 0.00499, -0.001479, -0.01385, -0.03867, 0.01788, 0.02754, 0.00886, 0.01945, 0.01962, -0.04666, -0.04263, -0.01199, -0.0399, -0.001878, 0.01558, 0.02, -0.003397, -0.00011355, 0.02205, 0.01059, -0.0663, 0.0004864, 0.00954, -0.037, -0.00409, -0.000697, -0.0116, -0.01976, -0.0341, -0.04266, 0.0404, 0.03244, 0.005726, -0.003643, -0.05145, 0.01381, 0.02863, -0.03592, -0.03754, -0.05124], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00786, 0.0443, -0.03952, -0.0691, -0.04016, 0.03378, -0.04895, -0.01666, 0.04184, -0.01098, -0.03458, -0.02684, -0.0402, -0.04535, -0.04297, -0.05264, 0.03156, 0.03464, -0.004898, -0.00972, 0.01976, -0.01747, 0.00848, -0.02898, -0.04776, -0.0242, 0.0225, 0.03598, -0.0272, -0.05075, 0.02621, -0.04886, -0.041, 0.02768, -0.008194, -0.01685, -0.004242, 0.0172, 0.006207, -0.0434, -0.04398, 0.03754, -0.0395, 0.03262, -0.01253, -0.0005107, 0.02733, -0.02063, -0.04938, 0.006348], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4014, 0.2795, 0.749, -0.5635, 0.1246, 0.5605, -0.141, 0.2273, -0.526, 2.148, -0.5635, 0.5664, 0.5625, 0.871, -0.3608, 0.01793, 0.3289, -1.285, 0.1724, 0.2917, 0.06525, 0.9146, 0.3079, -0.5234, 0.312, -0.282, 0.1122, 0.11395, 0.3982, -0.305, 0.298, 0.04953, 0.5684, -0.968, 0.0949, -0.969, 0.421, -0.02803, -0.1448, 0.2952, 0.0059, 0.05917, 0.1469, -0.545, 0.07367, -0.344, -0.7104, -0.9634, -1.347, -0.2021], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1636, -0.03854, -0.3765, -0.00639, -0.004704, -0.9756, -0.303, -0.12024, -0.733, -0.05188, -0.1115, -0.01341, -0.2778, -0.62, 0.2454, -0.0287, -0.4739, 0.3215, 0.3335, -0.9526, -0.1466, 0.2114, -0.01982, 0.006916, 0.05728, 0.2742, -0.396, -0.05576, 0.1304, -0.005367, -0.2086, -0.3706, 0.0659, -0.1904, 0.3787, -1.129, -0.0397, 0.00761, -0.6274, -1.443, -0.0021, 0.0917, 0.2252, 0.8, 0.01294, 0.2698, 0.0005884, 0.3115, 0.1367, -0.1449], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.507, 0.5317, 1.045, 0.06586, 0.2617, -1.167, -3.895, -0.6616, -0.991, 0.4468, -1.921, -0.1437, -1.167, 0.828, 0.2065, -0.02759, -0.2969, -0.03647, 0.4036, -0.06027, 0.5596, 1.047, 0.293, -0.2192, -0.1425, 0.5776, -0.3704, -0.01305, -0.0984, -1.371, -0.06055, 0.0714, -0.523, 0.7505, 0.2003, -0.1528, 0.518, -0.03198, -2.594, -3.324, -0.03806, -1.566, -0.2423, 0.7036, 0.322, -2.127, -0.08716, 0.3877, -0.0739, -0.9775], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.104, -0.06152, -0.767, -1.399, -0.1111, -0.1276, 0.0961, -0.2269, -0.138, -1.089, -0.644, 0.5117, -1.243, -1.236, -0.1814, 0.02315, -0.587, -0.2124, 0.6772, -0.11017, -0.4849, 0.0375, 0.272, 0.459, -0.2263, 0.988, -0.2236, 0.311, -0.9497, -0.6216, 0.07684, 0.4033, -0.432, -0.01305, -0.379, -0.5347, 0.6035, 0.01889, -0.329, 0.5493, -0.0002195, 0.4714, -0.07825, 0.568, 0.674, -2.36, 0.655, 0.2576, 0.3384, -0.3865], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.595, -0.1508, 0.08026, 0.1674, -1.436, -0.575, -1.913, 0.01846, 0.5933, 0.673, 0.783, 0.02597, 0.4526, 0.1418, 0.2979, -0.04147, -0.2294, 0.1339, -0.1065, 0.10406, 0.001261, -0.4749, -0.01253, -0.10095, -0.6084, -0.02722, -0.0931, 0.06445, -0.3723, -0.4026, 0.4905, -0.2888, 0.3013, -0.1008, -0.2344, 0.274, -0.07153, -0.02113, -0.1848, -1.634, -0.03546, -0.6177, -0.1653, 0.11224, 0.1267, -0.12415, 0.3174, 0.1403, -0.112, 0.11664], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.496, -0.331, -0.05884, 0.11255, 0.2993, 0.495, 0.02245, 0.931, -0.07605, 2.273, -0.0816, 0.09247, 0.2303, 0.3164, -0.01888, 0.007767, 0.1462, -0.1322, 0.02318, 0.0846, 0.7554, 0.8237, 0.4128, 0.014046, 0.703, -0.1774, -0.4246, 0.62, 1.831, 0.5537, -0.4443, 1.077, 1.202, -0.581, 1.127, 0.0648, 0.588, -0.0433, -2.723, -0.7036, -0.04254, -0.2976, -0.3674, 0.2072, 0.771, 0.6025, -0.651, 0.1815, -0.6963, 1.046], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.377, 0.005775, 0.4907, -0.27, -19.97, -0.01897, -0.562, 0.3926, 0.42, 0.601, 0.592, -0.2291, 0.652, 0.678, 0.2695, 0.013794, 0.446, 0.3623, -0.0257, 0.01971, -0.3079, 0.2035, -0.2717, 0.3499, -0.815, 0.1293, 0.546, 0.09894, 0.1503, -0.1873, 0.91, 0.618, -0.1138, -0.0716, -0.752, 0.4055, 0.01298, 0.004284, -0.2246, 0.3782, 0.04312, -0.4688, -0.3083, 0.07764, 0.0418, 0.03284, -0.309, -0.8643, 0.338, -0.2023], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01211, 0.02586, 0.0219, -0.06213, -0.03284, 0.02733, 0.01828, -0.02988, 0.01321, -0.02284, -0.01817, -0.03622, -0.0562, 0.02472, -0.0157, -0.005726, -0.0682, -0.02344, -0.02054, 0.02042, 0.01098, 0.02182, 0.001319, -0.00228, -0.05652, -0.04016, 0.02441, 0.03052, -0.0479, 0.004265, -0.03204, -0.05212, -0.03918, -0.01811, -0.0529, 0.02776, -0.02626, -0.001889, 0.01936, 0.000839, 0.0199, 0.013275, 0.01581, -0.0442, 0.0314, 0.02405, -0.014206, 0.002598, -0.03812, -0.0306], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.569, -0.574, 1.059, 0.1204, -0.3447, 0.668, -0.507, -0.02333, -0.1755, 0.6636, 0.0517, 1.32, 0.5874, -0.0874, -1.748, 0.02351, 0.1322, 0.1228, -0.02016, -0.1247, -0.9185, -0.552, -0.1573, 0.2013, -0.9443, -0.377, 0.55, 0.0852, -0.068, 1.354, -0.5415, 0.5337, 0.8394, -0.3352, -0.05334, 0.287, 0.3083, -0.02509, 0.5054, 0.7295, 0.004387, -0.3823, 0.4502, 0.9517, 0.0207, 0.4858, -0.0565, -0.06683, 0.2715, 0.1918], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01539, -0.3152, 1.016, 1.223, -0.1261, -1.784, -0.03186, -3.229, 0.714, -1.58, 0.7876, 0.1664, -0.125, 0.07404, -2.121, 0.04468, 0.1857, -0.6533, -0.8037, 0.6504, -1.815, 0.0609, -0.891, 1.782, -0.9683, -1.943, -0.008606, -0.5757, -2.09, 3.701, -0.00875, -4.08, -3.746, -2.027, -2.283, 0.4004, -3.604, 0.00164, 0.5317, -0.0771, 0.01218, 2.23, -0.5977, -0.7275, -4.63, 4.043, 0.2228, -0.68, 0.889, 1.75], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7847, -0.979, 1.02, 1.353, 0.4067, -0.9233, 2.17, -3.367, -0.0422, -1.858, -0.9214, -0.678, -1.983, -0.12054, 0.1288, -0.01381, -0.032, -1.269, 0.4045, -0.0845, -1.509, 0.706, 1.034, -1.88, 1.296, -0.1324, -1.075, 1.534, -0.455, -2.873, 0.7256, 0.9834, -0.9927, -0.0512, 1.168, -0.1626, 0.502, -0.05103, -0.1458, 1.192, -0.03723, -2.492, 0.06885, -0.278, -1.117, -13.77, -0.264, -0.9585, 1.248, -0.3943], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1505, 0.10266, 2.707, 0.1825, 0.3489, 0.2668, 1.838, 0.2439, 0.469, 0.1536, 0.2229, -0.2009, 0.1346, 1.209, 0.3022, -0.010605, 0.2544, 0.10535, -0.32, -0.2512, -0.607, -0.1312, -0.03223, 0.4734, 1.072, -0.609, -0.2278, -0.2666, 0.6675, 0.6406, -0.4521, 0.1764, 0.8315, 0.01511, 0.2233, 0.09186, -0.2246, 0.01118, 1.4375, 1.612, -0.0152, -0.232, 0.3875, 0.19, -2.62, 0.325, -0.201, -0.6274, 0.4556, 0.2214]]
[-0.0147248, -0.105, -0.308238, -0.364308, -0.0141081, 0.536622, -0.0116608, -0.032523, 0.565793, -0.0179296, 0.215021, -0.730708, -0.390158, -0.0261394, 0.186719, -0.0841625, 1.18372, -0.032603, 0.377496, 1.1837, -0.226951, -0.0209087, -0.189787, -1.0895, -0.662778, -1.07208, 0.865684, -0.0107423, 0.0220411, 0.0785329, 0.00312034, -0.0106298, -0.0217697, -0.167578, -0.0148285, -0.014857, -0.022625, -0.0113948, 0.197804, -0.0094336, 1.39954, 0.565342, -0.084502, -1.66756, 0.769542, -0.0214214, -0.403726, -1.10964, 1.19984, -1.62314, -0.014725, -0.105, -0.3083, -0.3643, -0.01411, 0.5366, -0.01166, -0.03253, 0.566, -0.01793, 0.215, -0.7305, -0.3901, -0.02614, 0.1868, -0.08417, 1.184, -0.0326, 0.3774, 1.184, -0.2269, -0.0209, -0.1898, -1.09, -0.6626, -1.072, 0.8657, -0.01074, 0.02203, 0.07855, 0.00312, -0.01063, -0.02177, -0.1676, -0.01483, -0.014854, -0.02263, -0.0114, 0.1978, -0.00943, 1.399, 0.5654, -0.0845, -1.668, 0.7695, -0.02142, -0.4038, -1.109, 1.2, -1.623]
ReLU
[[-0.0359738, -1.89991, -1.36236, -0.378191, 0.0435644, -1.42318, -0.000672007, -0.0429966, -0.849422, -0.00821514, -4.27583, -1.67019, 1.30687, 0.00274242, -0.769265, -1.30098, -0.299916, 0.0018504, -2.38595, -1.04644, -3.25727, -0.0469461, 0.160457, -3.6108, -1.82606, -1.13804, -2.15746, 0.0047728, -0.0315591, 2.14416, -3.05158, 0.038403, 0.00162922, -0.0322168, 0.0123738, 0.0019339, 0.0285279, -0.013173, -0.984221, 2.44371, -2.10116, -2.5621, -3.3243, -5.97497, 0.913486, -0.000615605, 2.6007, 0.332605, 0.867684, -0.684845, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00347463, -0.107289, 1.68111, 0.594974, 0.00964304, 0.304864, 0.00299366, -0.0438306, 0.612265, -0.0253045, -0.121483, -0.740738, 0.344282, -0.0123959, 0.290893, 0.675699, 0.0993693, -0.0354205, -0.514779, 0.487321, -0.10778, -0.0140306, 0.244034, -0.199065, -0.388589, 0.669631, -0.15301, 0.00612489, 0.481122, 0.668738, 0.304505, -0.0231446, -0.0105128, -0.514765, 0.0147434, -0.0514888, 0.00117196, 0.043139, -0.295203, 0.593595, -0.0180535, 0.568866, -1.56713, 0.485926, 0.535542, -0.0251047, -0.356859, -0.0160857, 0.0288454, 0.188339, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00661965, 1.67822, 0.378142, 2.88595, 0.0303884, 0.0917958, -0.0267223, 0.0448307, -1.17479, -0.0360791, -0.553576, 0.483195, 2.24139, 0.0434333, 0.654676, 0.267834, -0.738199, 0.027779, -0.280157, 1.32536, 0.230664, 0.0238084, 0.241649, -0.0867985, 0.670435, -0.471981, -0.796956, -0.0351978, -0.183339, 0.988677, -0.0441726, -0.0020827, 0.0327717, -0.12031, -0.0258022, -0.0293281, 0.020515, -0.0292553, -1.62885, -2.7093, 0.206439, 0.258117, -1.98573, 0.25789, 2.34964, 0.0277707, 0.79473, 0.48899, -0.340817, -1.62455, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0329685, -0.568933, -0.0983344, 1.84921, -0.0141511, 0.520958, 0.0220104, -0.0402067, 0.564105, -0.004715, -1.0808, -0.0516544, -0.417112, -0.047042, -0.207338, 0.290479, 0.225522, 0.029476, -0.312916, -0.659878, -0.416453, 0.0103907, 0.217548, 0.0703397, -0.129474, 1.08666, -0.111933, -0.0142409, 2.23603, -0.110549, 0.464978, 0.0634032, -0.02143, 0.13757, -0.0195646, 0.0385131, -0.0286876, -0.0432676, -0.209071, 0.958556, -0.286909, 0.73534, 0.646229, 0.697564, -3.00743, 0.0494135, -0.462865, -0.0575425, 0.29931, 0.928845, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0253565, -0.495395, 0.112916, 0.524686, -0.0473214, 0.251501, 0.0192754, -0.0434097, 0.334329, -0.0272442, -0.220488, 0.473014, 1.43947, 0.00596883, -0.597522, 0.205588, 0.112332, -0.0135144, 0.450009, -1.14934, 0.158009, 0.0104196, 0.421368, -0.352158, 0.0595345, -0.18585, -0.579233, -0.0366642, 0.655191, 0.242164, -0.427416, -0.0276399, 0.0217817, -0.0910695, 0.0367486, 0.0454809, 0.00966396, 0.0382105, -0.218112, -1.02129, 0.197214, 0.362624, 0.0711714, 0.429693, -0.684943, -0.0429559, -0.380476, 0.107686, 0.204639, -0.0844832, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0274381, 0.91344, -0.921513, 2.14565, -0.0397467, -0.409519, -0.0101518, -0.000410205, -1.13, 0.00125901, 1.19393, 1.51168, 2.49694, -0.0338405, -0.425372, 0.734554, -0.937839, -0.000169165, -0.279948, -0.119487, -0.128722, 0.0343687, 1.00988, 2.53544, -0.0346383, 0.151395, -1.56728, 0.0224075, 0.780488, 1.03644, 2.62585, -0.0207027, -0.0311575, 0.497702, -0.0459961, 0.0251051, -0.00540756, -0.0355397, 1.36262, 1.96431, 1.70811, 0.71731, 0.804658, -0.823773, -0.423726, 0.0104753, 1.35967, -0.656097, -0.211068, 0.81733, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0379227, -0.557898, -1.66441, 0.693527, 0.00700146, -0.294878, -0.0264075, -0.00364079, 1.02724, -0.008895, 0.758599, 0.436671, -4.42305, 0.0310582, -0.0457596, 0.336493, -0.199338, 0.0497225, 0.321564, 0.104793, -0.221487, -0.030173, -0.256057, -1.38692, 0.118212, -0.192942, 0.315258, -0.0125593, -0.932125, 0.583056, -1.39632, 0.058577, 0.0200422, -0.102267, 0.0104658, -0.00564755, -0.00519514, 0.00723918, -0.938379, 1.19077, 0.254481, 0.639185, -1.11725, 0.251143, 0.28983, 0.0119514, 1.06372, 0.158991, 0.0250822, 1.94795, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0454645, 0.280173, 1.8091, 1.46084, 0.0280044, -2.13723, 0.0342168, 0.0498771, 1.68004, 0.00983126, 0.0217325, 0.178166, 2.01199, -0.0253408, 0.186363, 0.196626, -0.0729992, -0.00449388, -0.25732, 0.0206746, -0.373136, -0.0313315, -0.576423, 0.632413, 0.967718, 0.550294, 0.340851, -0.0309737, -0.554694, 3.16166, 0.639005, 0.0267603, 0.0300583, -0.140238, -0.00294172, -0.0162112, 0.0304875, 0.000513955, 0.821658, -2.63365, 1.29575, -0.340104, -0.544655, 0.205806, 0.0271487, 0.0126918, -1.14559, 0.0296795, 0.0236711, -0.0364151, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0440978, 0.771406, 1.2168, 1.1148, 0.0149204, 0.434711, 0.00187342, -0.020537, -0.434057, 0.0399545, 3.67494, 0.0742651, -0.0574154, -0.0131495, -0.207284, -0.220558, -0.713758, -0.0113369, 1.206, 0.243423, -0.236331, 0.0116816, -0.262918, -2.06385, -0.902233, 0.683268, -0.679422, 0.0191401, 0.950163, 1.18748, 0.295382, 0.0163367, 0.0343932, -0.421543, 0.0399314, 0.0264808, -0.000590541, -0.016601, -0.175778, 0.190736, -0.287581, 1.05492, 0.835265, 1.04359, 0.0606079, 0.0181647, 1.91046, -0.401173, 0.138658, 1.85722, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0499985, -0.136667, -1.19363, -3.90154, -0.0203072, -1.17134, -0.0116428, 0.0319904, -0.0631137, -0.0657674, 0.0735004, -1.09729, 0.183946, -0.00871274, -1.99613, 0.269126, 0.165212, 0.015704, 0.0968676, 0.333131, 0.488877, 0.0343038, 0.157476, -0.728361, -0.0980942, -1.94053, 0.430239, 0.0244917, -0.584498, -1.8415, -0.2837, 0.0190699, 0.0293383, -0.50284, 0.00237926, -0.00349298, 0.0359037, -0.0370803, -3.02891, 0.727491, -1.07568, -0.823866, 0.480205, -0.312326, 1.81121, -0.0221661, -0.0304044, 0.274179, -0.103881, -0.723448, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.000919374, 0.156316, -0.237006, 0.711193, -0.0224733, -0.0077551, -0.0077817, -0.00154886, 0.637088, -0.0419301, 2.12364, 0.0730776, -4.45084, 0.0126213, 1.67997, -0.456532, -0.676106, 0.0395125, -0.837653, -0.0757719, 0.136163, -0.0146407, 0.0785401, 1.08598, -2.78467, -0.512442, 0.38176, 0.043695, 0.943866, 1.05952, 0.622376, -0.0530415, 0.0376439, 0.115783, 0.0238236, -0.0159246, -0.0266245, -0.00769462, 1.15264, 0.977438, 0.0404669, -0.402486, 1.15929, 1.15409, 0.373925, -0.00546977, 0.966163, -1.91787, -0.401381, 0.49339, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0112421, 0.481813, 3.18009, 2.73269, -0.0123741, 0.266523, 0.0104025, -0.00256534, -1.61129, 0.0106964, 0.954938, -0.428353, 2.88683, 0.00972674, 1.13692, 0.573687, -0.626589, 0.0165064, 0.228169, 0.663873, -0.186567, -0.0172517, -0.0260051, 2.01544, -0.767533, 0.297454, -0.130724, -0.0330037, -0.607232, 1.42208, 0.0388992, 0.0550421, -0.00614929, -1.22734, 0.00293173, 0.0559769, -0.00384775, -0.000350583, 1.22379, 0.829705, -0.984497, -0.0395542, 1.70429, 1.17472, 2.18867, -0.0174801, 0.86908, 0.0252514, -0.628148, 0.309871, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0203826, -0.243033, 0.980795, -0.422422, -0.0241727, -0.387218, -0.0494218, -0.00386833, -0.0726323, -0.0383864, 0.273301, -0.684678, 0.693372, -0.00312585, 0.645474, 0.409062, -0.0440808, -0.00343443, -0.399182, -0.0530861, 0.248528, 0.00361343, -0.125553, 1.89945, 0.249492, 0.633563, -0.367686, -0.011874, 0.494704, -1.09142, -0.74304, 0.0336358, 0.0338324, -0.25229, 0.028821, 0.0406548, 0.0258671, 0.0361832, 0.262532, 0.950135, -0.300156, 0.161235, -0.30613, -3.88292, -0.61939, -0.0308267, 0.327294, -0.132182, -0.015388, -1.41042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0060764, 1.39644, 1.03114, -1.56092, -0.0246689, 0.615119, 0.0242114, -0.00102058, 2.21486, 0.0083417, -0.270549, 0.64679, 0.938065, 0.0378427, 0.807519, -0.506228, -0.202203, -0.0182204, -1.07346, -0.192257, -3.59016, 0.0261088, 0.109166, 0.37805, -0.208669, 0.256832, 0.523863, 0.00351783, 0.0323655, 0.95954, 0.150188, -0.0161513, -0.0107887, -0.153619, -0.0447624, 0.0149995, 0.0502245, 0.0103251, -1.00045, -1.63516, -0.407909, 0.841659, -0.141587, 0.380747, -0.499646, 0.00186806, -0.150045, 0.110404, -0.268231, 1.06119, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00432856, 1.54413, 0.344532, -0.132159, -0.0354062, 1.82526, -0.0205417, 0.0420311, -1.37395, 0.0488525, 0.690004, -0.102436, 0.492056, -0.0366566, 1.74129, -1.18385, -0.196891, -0.0448278, 0.0273457, 0.395782, -0.292709, 0.00908765, -0.0887791, 1.02962, 0.582652, 0.480307, 0.0117039, -0.0409036, -1.36971, 1.52792, -0.593691, -0.0207861, -0.00945358, -0.495228, 0.00116873, -0.0158392, 0.010542, -0.000914926, 1.27168, 0.427108, 0.840826, -0.990542, 0.379673, 1.07169, 0.339456, 0.00287727, 0.277317, 0.381287, -0.0687219, -2.82911, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0228827, -2.63419, 1.44989, -0.0695782, 0.0404284, -0.038597, -0.00509697, 0.0151841, -4.64618, -0.00292479, 0.760992, 1.2249, -0.678641, 0.0276756, -0.338037, -0.253122, 0.0532651, 0.0339422, -0.575865, -1.12261, -0.170511, -0.0316763, -0.154992, 1.22477, 0.336959, 0.133564, -0.49449, -0.0473312, 0.0190158, -0.348931, -1.94172, -0.0165962, 0.00636717, 0.412886, 0.00888765, 0.0441996, -0.0420996, 0.0102762, -0.275365, -7.67273, -0.419127, 0.142121, -0.387701, -0.268882, -3.21764, -0.0492813, -0.234552, 0.621998, -0.184206, -0.429727, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.041892, -1.74956, -0.315272, 0.811147, 0.0120085, 0.898899, 0.00411399, -0.00445658, -0.608946, -0.0175775, -0.271261, -1.79736, -0.988782, -0.0251498, -0.545613, -0.289361, 0.664248, 0.0275437, 0.30531, -0.303158, 0.165355, 0.0396961, 0.378947, -1.4868, -0.772658, 1.62178, -0.0549737, 0.0174642, -0.57457, -2.328, 1.20297, 0.0311799, -0.0660703, 0.468739, 0.0329656, 0.0452176, 0.0102895, 0.0313924, -0.97497, -2.51947, -0.436816, -0.0687795, -1.23003, 0.977792, -1.89978, -0.0247645, -2.31607, -0.0285516, 0.028459, 2.80198, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00275361, 0.344196, -0.301038, 2.20738, 0.0176073, -0.806517, -0.011769, 0.0462775, 1.16472, 0.0527351, -1.22498, 1.19288, 1.01782, -0.0359494, 0.449343, -0.836419, -1.09147, 0.0279738, -0.0614234, -0.392296, -0.198803, 0.0185699, -0.314373, -1.44834, 0.283212, 0.364053, 0.236055, 0.0231526, 1.59479, 1.01405, 1.73062, 0.032768, -0.0172087, -0.0224884, 0.00793531, -0.020168, 0.0421672, -0.0103241, 0.430062, 2.02587, 0.72049, -0.556273, 1.05489, -0.828972, -0.429886, -0.0369756, 0.495875, 0.280977, 0.0648739, 0.248805, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0379182, 0.687185, 0.013946, 0.016382, -0.034509, 0.160295, -0.0445942, -0.000718149, 1.57045, -0.0421071, 0.355049, -0.472569, -0.359488, -0.0402815, -5.10433, -0.610462, 0.274002, 0.0159115, 0.347971, -0.643061, 0.0335562, -0.0185241, -0.135495, -1.32064, 0.302644, -0.371866, -1.17134, -0.00376665, 1.1707, 0.507549, -1.41791, 0.0253794, -0.0102307, -0.479076, -0.0422402, -0.0311275, -0.0492061, 0.00866274, 0.753374, -0.652227, -0.142356, 0.111316, 0.420774, 1.19752, -0.699908, 0.0440878, -0.113549, 0.254001, 0.123521, 0.394865, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0268087, 1.54421, 3.35278, 1.13623, -0.00320317, -0.635255, -0.00548511, 0.00575662, -0.185773, 0.0313849, 2.22299, -0.529406, 0.104142, 0.0117052, 0.259129, -0.210132, -0.681825, 0.0406298, 0.820157, -0.267136, 0.0287268, -0.0246214, 0.416747, 0.320775, -6.01911, 0.486715, -0.239567, -0.0402877, 0.321123, 1.38118, 0.0593197, -0.00793588, -0.0382596, 0.153689, 0.0392847, 0.02933, 0.0389619, -0.0285071, 1.326, 1.02492, -0.858765, 1.35816, 2.13178, 2.0923, 0.527717, -0.0456001, -3.38456, -1.75122, -0.158247, 0.73379, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.048128, 0.237138, -0.657395, 0.487882, -0.042252, -0.312241, -0.000918135, -0.0154268, 0.930959, -0.0463721, -2.17925, -1.41339, 3.40718, 0.0470191, -1.8913, -0.435768, -0.46362, 0.00337135, 1.00269, 0.958184, 0.597336, -0.0368789, 0.864089, -0.262417, 0.685625, -0.42453, -0.138014, -0.0282933, 1.03146, 1.17249, -0.395892, -0.000859715, 0.0109813, 1.21251, 0.0470986, 0.0468083, -0.0129823, 0.0439897, 3.54229, -1.26674, 0.358202, 2.52837, -0.13815, -2.77967, -0.443656, -0.0183213, -3.7549, -0.159566, 0.121659, -1.2837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0503867, 2.31881, 2.68023, 2.04704, 0.0466154, 1.03126, 0.0318954, 0.0354238, -0.723572, -0.0177253, 0.895357, 0.855048, -1.56763, -0.00954467, -0.825195, -0.295353, -0.935186, -0.0354423, 1.20401, 0.463979, 0.978736, -0.0155556, 0.663784, 1.91724, 1.19616, 1.77144, 1.17301, 0.00499976, 3.68409, 0.733422, 2.16067, 0.00700258, 0.0143325, -0.0506127, 0.025548, -0.0020264, -0.0103838, 0.00255799, 0.310655, -0.955318, 0.299845, -0.976939, 1.17747, 1.22921, 0.353405, -0.020938, -0.54796, 1.48438, -0.155225, -0.472013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0262929, -0.789084, 2.60191, -2.64107, -0.002744, 0.570071, 0.000510874, -0.0515111, -0.39018, -0.0216742, -0.0972561, 1.4281, -0.256179, -0.0374819, -2.01213, -1.0716, 0.59935, 0.0276972, 0.33442, -0.154874, 0.194348, 0.0445142, -0.1901, 0.115416, 1.51064, -0.509751, 0.837829, 0.00876768, 0.800251, -2.16713, -2.05663, -0.0195263, 0.00916917, -0.275857, 0.0332084, -0.0426653, -0.00937326, -0.0226324, 0.430314, -2.62489, 0.12589, 0.54412, -1.17579, -1.6215, -0.657384, -0.0296173, 0.831214, -0.0185392, 0.133461, 0.978655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0395774, 0.157823, 0.0308217, 0.255821, -0.0371533, 0.262729, 0.0500185, -0.0106062, 0.236729, -0.0344059, -0.0546124, -0.528422, -1.3894, -0.0204014, -0.363502, 0.199153, -0.217973, 0.00249494, -0.0130186, -0.0853507, 0.0159045, -0.034615, -0.136959, 0.595423, -0.545149, -0.0238611, -0.505266, -0.00557986, 0.0508103, -0.364141, 0.586299, 0.0245715, 0.0313882, 0.0850252, -0.0126576, -0.0146419, -0.0118667, -0.0212255, 0.330008, 1.07352, 0.0439854, 0.0762502, 0.338004, 0.244568, 0.0957955, -0.0195767, -0.0279841, -0.0486649, -0.0645313, 0.645361, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.020405, 0.506909, -0.233143, 0.180031, 0.0283552, -0.127598, 0.0020732, 0.0328079, 0.280809, 0.0143706, -0.604378, 0.282796, -0.15482, 0.0228346, 1.16285, 0.456639, -0.697142, -0.0210653, -0.0304215, -0.0552303, 0.0125559, 0.0169081, 0.402161, 0.35477, -0.161727, -0.88131, -0.507108, -0.0264001, 0.875827, 1.09133, -0.485465, -0.0214949, -0.0326807, -0.100592, 0.0348335, -3.53411e-05, -0.012609, -0.000164943, 0.31616, 0.131946, 0.139805, 0.127214, 0.423789, -0.141768, 0.536723, -0.0110016, -0.542677, -0.0778915, 0.252547, 0.432141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0133355, 0.9372, 0.349677, 4.22409, -0.0270857, 1.38005, -0.00372722, 0.0378875, -0.524607, -0.0247693, 1.93882, -0.00925097, 1.03575, -0.0431619, 1.08286, 0.139104, 0.0530717, 0.0317242, -0.274341, 0.324304, -0.861111, 0.00881111, 0.0748017, 0.247347, -0.247597, -0.0468766, -0.00415025, -0.0341383, 1.45619, 1.85152, 0.610761, -0.0326988, -0.0274576, -0.654045, -0.0356123, -0.0242646, -0.0361404, -0.00679462, 1.53648, -0.670486, -0.4287, -0.305799, -0.450967, 0.359462, 1.13946, 0.00213058, 0.351741, -0.116157, -0.165262, 1.39, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00111391, -2.88404, 1.75869, -0.0101478, -0.0112333, -0.111454, 0.0330137, 0.042961, -4.29819, -0.0252648, -0.758768, -2.94679, -2.27698, -0.0217042, -1.47933, -0.45594, -2.50506, -0.0511768, -5.04721, -0.273022, -7.37588, 0.0283935, -0.376832, 2.22901, -0.761846, -0.608452, 0.287651, 0.0118871, 0.0288453, -1.18955, -3.02636, 0.0397863, -0.0392839, 0.735033, -0.0318243, 0.0145691, 0.0368862, 0.0253287, 1.09749, -2.89181, -2.32916, -0.0573835, -0.606857, 0.355655, -3.214, 0.0259116, 0.142325, -0.393645, 1.4989, 1.7431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0530704, -3.71603, 1.57537, 1.74706, -0.0239557, -0.170939, -0.0470003, 0.0213281, 0.469906, -0.000847214, 0.225815, -1.29502, 1.5226, 0.0302474, -0.351827, 0.607397, 0.0347771, -0.0182564, -0.682274, -0.778476, 0.213915, -0.0242648, -0.179059, -4.79325, -1.19098, -0.483186, 0.216283, -0.0482367, 0.509147, -2.95415, 0.886006, 0.0388307, 0.0381688, -0.51995, -0.0434915, 0.0309134, 0.00295482, -0.0358649, -0.000212625, -1.98375, 0.586739, 0.718054, 0.397105, -0.990487, -0.00461705, -0.0223495, -0.797898, 0.186811, 0.420262, -1.04431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.028575, 0.026894, 0.0891451, 3.24761, 0.0423669, 0.0366474, -0.00909388, -0.0134887, 0.988655, 0.00125924, -1.32595, 1.15589, 0.264879, -0.042941, 0.157118, 0.080698, 0.135768, 0.00469179, -0.0494929, 0.77756, -0.380802, 0.0414462, 0.214687, 0.116845, 0.285458, 0.616403, -0.57575, -0.0401452, -0.116816, 1.16181, -0.137633, 0.0129473, -0.0412567, -1.17873, -0.0181201, 0.0349595, 0.0377308, -0.010488, 1.60188, -0.828425, 0.817315, 0.825431, 1.28833, -0.516247, 0.250932, 0.0545165, -0.647819, -0.546922, 0.240814, -0.88252, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.02305, -0.292664, -1.30329, -3.38191, 0.0444332, -0.681707, -0.0369541, -0.0333189, -0.635224, 0.0383787, -1.28583, -0.555015, 1.64091, 0.0405462, 1.88356, -1.40699, -0.730324, 0.0384696, 0.951287, -0.673961, 0.947277, 0.00962098, -0.467078, 0.729237, 0.695152, -0.892052, 0.667317, -0.0319053, -1.96924, 0.597809, -1.90999, 0.039883, -0.0518682, 0.414432, 0.0208327, -0.00965639, -0.038531, -0.0255316, -0.397529, 0.606821, -0.213013, -0.230522, -2.01994, -3.69226, 0.916976, -0.0371581, 1.68356, 0.126525, 0.354731, 0.365064, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0202278, -0.157501, -0.270255, -0.246735, -0.00474218, -0.716691, -0.0185442, 0.00510776, -0.795882, 0.0101819, 1.1694, 1.24902, -0.959391, -0.0239759, -3.13357, 0.461204, -0.737844, -0.0600879, 0.710398, 0.193973, -0.586914, 0.0282958, 0.507647, -1.15451, 1.71472, -0.4119, 1.37024, 0.00969365, 0.557779, -4.99491, -0.199084, -0.0557333, 0.0409599, -0.0469502, -0.0257241, -0.0439331, -0.00590541, 0.0270409, -1.28283, -0.206556, 1.3001, 1.05893, -1.07295, -0.433295, -0.7739, -0.0019331, -0.851193, -0.490564, 0.0407485, -0.375861, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0578482, 0.0373295, 0.331368, 0.668294, 0.00613183, -0.530092, -0.015531, 0.0104125, 0.640993, -0.0208012, 0.325764, 0.589171, -0.31778, -0.0255209, 0.758076, 0.208832, -0.152728, -0.0421349, 0.153165, 0.109221, -0.195369, -0.00519971, -0.0507461, -0.0116347, 0.406737, 0.0320781, 0.0577096, 0.00852391, 0.0462996, 1.05802, -0.0028261, -0.035274, -0.0263333, -0.0799569, -0.0351814, -0.0363905, 0.0442396, 0.00622255, 1.60289, -0.788782, -0.214276, -0.43431, 0.583349, -0.32832, -0.527691, -0.0230334, -0.535538, 0.0615959, -0.368211, -0.233973, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00557068, 0.00571251, -0.174779, -1.72864, -0.0175931, 1.00729, -0.0364929, 0.0199275, 1.36629, -0.00686466, 0.972916, 0.457174, -1.62892, 0.0282821, -2.95862, 0.31406, 0.32648, -0.0229965, 0.256667, 0.98277, 0.633004, -0.0193221, 0.394959, -0.28447, 0.137106, 2.66729, 0.339466, 0.0497122, 1.5075, -5.19568, 0.529296, 0.0328975, -0.0443128, 0.566659, 0.0271515, -0.0420373, -0.00363362, -0.0121877, 0.896197, -1.93113, -0.0116464, -0.884, -0.927316, -3.97251, -2.17148, 0.027089, -1.46479, 0.724621, 0.244412, -1.0614, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0120708, -0.668467, -0.428205, 0.581445, -0.0342526, 0.0417301, -0.00675452, -0.0138074, 0.267417, 0.0217711, 0.0895628, 0.413852, 0.129484, -0.00650754, -0.455188, 0.0763738, 0.129605, 0.00637506, -0.115914, -0.362133, -0.302874, -0.045604, -0.0499359, 0.000382056, -0.338247, -0.275953, -0.383841, 0.0420964, 0.65101, 0.215893, 0.764041, -0.00638168, -0.0348836, 0.211672, -0.0442731, 0.00980624, 0.0159855, 0.0208223, -0.264148, 1.07947, -0.145636, 0.224883, 0.535135, 0.24973, 0.144687, 0.00965574, 0.0374671, -0.494293, -0.0221239, 0.0365127, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0327679, -0.0625093, 0.566841, -1.05752, -0.024912, -1.03491, -0.0149921, -0.0502275, 0.505778, -0.0192, -1.13625, 0.625315, -1.37769, 0.0123434, -0.395581, 0.0116223, 0.42245, 0.00263112, 1.11135, 0.107256, 1.01149, 0.0176411, -0.152799, -0.777497, 0.980702, 0.472689, 0.464605, 0.0304525, 2.07695, -2.37735, 1.20245, 0.0058352, -0.0143608, -0.187171, -0.0315536, -0.0100299, 0.00171672, -0.00648068, 0.672096, 0.933977, -0.147685, 0.0907103, -1.62119, 0.00829886, -1.26032, -0.023544, -1.40914, 1.30243, 0.243512, -1.48844, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0103464, 0.0597066, -0.857376, 0.00506654, 0.0154182, -0.394926, -0.0173352, -0.00310812, 1.31113, 0.00157399, -0.449287, -1.44861, -1.65377, -0.0412088, -1.92326, 0.287395, -1.71362, -0.0542411, -0.613478, 0.215271, -6.77446, -0.0439666, -0.181983, -0.694108, -0.474604, -0.170495, 0.305582, -0.0115169, -0.0243614, -1.76958, 0.109728, -0.0235965, 0.0254026, -0.208822, 0.00788026, -0.0271917, 0.0232063, -0.0249202, -1.22201, -1.06748, -0.706569, -0.57393, -0.244574, 0.542953, -0.288505, 0.0243856, 0.881448, 0.486645, 0.648929, 1.12128, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0212616, -0.858628, -0.129368, -0.0434846, 0.0483373, 0.0523928, -0.00878249, -0.0480519, 0.525032, 0.00264768, -0.469076, 0.067399, -2.10896, 0.00315196, -0.657581, 0.134076, 0.497965, -0.00168659, -1.3189, 0.13599, -0.582165, 0.0452661, -0.337386, -0.196493, -0.210036, -0.33369, -0.306309, -0.0143, 0.00162172, -3.05181, -0.127668, 0.0216637, 0.0120187, -0.465145, 0.0398533, 0.0200363, -0.0383818, -0.0502572, -0.539783, -0.411377, -0.0226861, 1.61061, -1.00043, 1.52059, -0.459951, 0.0189855, 0.906975, 0.586617, 0.449759, -1.47417, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0327989, 0.235387, -0.984695, 0.525023, 0.0462148, -0.0540136, 0.0161324, -0.0147093, 0.996726, 0.0256061, 0.0550523, 0.308374, -0.185342, 0.0242433, 0.00928843, 0.231116, 0.201573, -0.00702715, -0.369461, -0.252416, -0.257542, 0.017289, -0.495775, -0.026537, 0.0387815, 0.00762017, 0.205567, -0.029359, 0.577413, -0.429487, 1.028, -0.0239819, 0.0520379, 0.315361, -0.0370432, 0.0401981, 0.014362, -0.0220065, -0.368047, 0.0351758, 0.0356787, 0.141616, 0.036309, -0.311969, -0.889036, -0.0396314, -0.431425, -0.207994, 0.0186124, 0.619925, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0350948, 0.71019, 0.681859, 0.55109, 0.0299055, -0.0211705, 0.0252966, -0.016366, -0.0549348, 0.0163762, 0.420514, 0.230173, -5.11205, -0.0297896, 0.505897, -0.456108, -0.498226, -0.00163397, 0.0557667, -1.45032, 0.36792, -0.0237663, 0.0718449, 0.0385247, -0.842028, 0.0230566, 0.21414, 0.0418089, -0.167825, -1.67287, 0.609848, 0.00687226, -0.0386968, 0.620129, -0.00373534, 0.0198235, -0.0400995, -0.0168603, 0.424407, -3.05118, -0.788079, -0.991259, -0.158333, -0.617214, -0.236539, 0.00288206, 0.118815, -0.297193, -0.208992, 0.945137, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0455225, -0.224285, -0.523019, -3.61377, 0.00374045, -0.771372, -0.0200929, -0.0429526, -1.0071, 0.0168424, 1.20056, -0.26358, -0.942732, 0.0140546, 0.517607, 0.928374, 0.178798, -0.00898088, -0.0812773, 0.993269, 1.0891, -0.0334432, -0.206409, 0.363835, 0.803811, -0.466795, 0.185957, 0.00425046, -0.918801, -1.90586, 1.56465, 0.0254854, -0.00341129, -0.0202489, -0.022429, -0.0494434, -0.00356944, 0.0183071, -0.996495, -1.72164, 0.327473, -0.439783, -0.0670606, 0.32725, -2.18492, -0.0160416, -1.01702, 0.437793, -0.202972, -0.320217, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0465721, -0.0599448, -1.80959, -2.40219, -0.0358126, 0.199039, 0.0292448, 0.0115665, -1.80998, 0.00261773, -0.952079, -0.745553, 2.03644, 0.00512753, -0.994425, 0.336714, 1.10407, -0.0169729, -0.516938, 0.467095, 0.690226, 0.00350209, -0.306675, 0.112304, -1.43275, -0.771874, -0.497624, 0.0147944, -2.03011, 1.11276, -0.727905, 0.0292667, 0.0163658, -0.415557, -0.00745466, 0.0146604, -0.0418897, 0.0367012, -1.36843, -0.155063, -1.40624, -0.230547, -1.45261, -1.19306, -0.351825, 0.0341859, -1.46997, 0.826513, 0.850369, 3.02861, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00289512, 0.487272, 0.494345, 0.157712, -0.039204, 0.103856, 0.0326672, 0.00583555, -1.67897, -0.00198367, -3.26674, 0.462704, -0.386055, 0.0490339, -1.01192, 0.0892721, -0.473168, 0.0242443, 0.247591, 0.264846, 0.507056, 0.0374866, 0.0302696, -0.484093, -0.44226, -0.255667, -0.314138, 0.00357693, 0.05191, 2.17635, 0.205953, 0.0316811, -0.0387773, 0.396603, 0.0169946, 0.0328903, -0.0189387, -0.0189218, 0.686452, 0.879072, -0.451077, 0.372065, -0.151748, 0.753793, 0.253536, -0.00965688, -0.427334, -0.0545424, -0.0953934, 0.603148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0475244, -0.875224, 0.378673, -0.419931, -0.00577746, 0.112511, 0.0390564, -0.0434337, -0.231101, 0.0202822, 0.497509, -0.00394865, 0.251755, -0.0172138, 0.679658, -0.301013, 0.496414, 0.0260617, 0.536689, 0.214238, -0.153689, 0.00650514, -0.0951784, -0.327155, 0.45205, 0.596844, -0.649436, 0.028994, 1.50527, -3.12058, -0.325173, 0.0510997, -0.0156337, -0.20365, -0.00841539, 0.00609405, 0.0114753, 0.00234951, -2.11124, 1.24128, -0.133712, -0.742383, 0.596839, -0.499353, 0.55425, -0.0138303, 0.105126, -0.050265, 0.43633, -0.279897, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.023028, 0.300842, 1.52153, 2.42545, -0.0309136, 0.334028, 0.00365253, 0.0174292, 1.20912, -0.0481812, 0.332641, 0.648097, 0.0123677, 0.028691, 1.39054, -0.120377, -1.42374, -0.0395023, 0.529902, 0.463328, -0.00852448, 0.0345778, 0.198561, -0.259539, 0.433772, -0.363003, -0.198176, -0.0430115, -0.190572, 1.46489, 2.78335, 0.0105494, 0.00695854, -0.460321, 0.0168249, -0.0472981, 0.0267661, 0.0445067, -0.466979, 1.73898, -0.380156, -0.0572579, -1.16942, -2.78708, -0.563468, -0.0430338, -0.472181, 0.304307, 0.812168, 1.47676, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0201444, 0.0448362, 0.0612561, 0.229805, -0.01032, 0.556728, -0.0303357, -0.0424607, -0.324561, -0.0394843, -0.586734, -0.598185, 0.593006, -0.0231816, 0.145975, 0.0367265, 0.0699704, 0.00955152, 0.0808501, 0.146974, -0.215602, -0.0398421, -0.0728455, 0.000370639, -0.364179, 0.351275, -0.119808, 0.0373198, 0.251226, -0.39204, 0.497607, -0.0204148, -0.0340817, -0.0539018, 0.0074499, 0.00854089, 0.00620629, -0.0321445, 0.150413, 0.492777, -0.228879, -0.243829, 0.895617, 0.162861, 0.150444, -0.0325833, -0.507291, -0.0742585, -0.193203, 0.420525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0399298, -0.160791, -1.64534, -0.0728921, -0.0241924, -0.183461, 0.0517541, 0.0281494, 0.255716, -0.000299177, 0.483936, -0.670528, 0.396284, -0.0170279, 0.729914, -0.143572, 0.246801, -0.0258603, -0.0537637, -0.32532, -0.20947, -0.0125198, -0.505278, -0.242933, 0.391098, -0.600526, 0.0852734, 0.0215924, 0.673447, -2.55758, 1.53233, 0.0308491, -0.0279815, -0.32816, 0.0385755, -0.039686, 0.0196127, 0.00399346, -0.254687, -1.93827, 0.888582, -0.370178, 0.66459, -0.650194, 0.64748, 0.0462192, 1.6003, -0.34246, 0.247622, 0.76179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0268342, 0.736618, -1.39178, -1.67731, 0.0192024, 0.250213, -0.00609996, -0.038378, -1.1057, 0.0279352, 0.398493, 0.111965, 0.931143, -0.0450902, 0.500499, 0.128659, 0.118096, 0.0305596, 0.126204, 0.0199029, 0.112481, 0.0296772, -0.53645, 0.77387, 0.89126, -1.17602, 0.628185, -0.039495, 0.579338, -0.908915, -1.5871, -0.00739638, 0.0232288, -0.259017, 0.0447966, 0.0138152, -0.00207746, -0.0381429, -1.32542, -0.696877, -1.46039, -0.574376, 0.201254, -1.97957, -1.81632, 0.0016285, -1.14182, 0.274444, 0.249355, 0.114392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0137234, -0.298759, 0.145307, -0.669253, -0.0182017, 1.29391, -0.0162509, -0.0326526, -1.46647, 0.0349456, 0.160369, 0.0841634, -0.141604, 0.0355003, 0.56521, 1.35785, -0.142198, -0.0416466, 0.889626, 0.668989, -0.106094, -0.0202139, 0.451685, 0.845492, -0.349641, -0.421348, -0.662, 0.0168586, 0.87112, -0.909013, 0.538334, -0.013116, 0.0135841, -0.879968, 0.00597632, 0.0344624, 0.0096591, -0.0132964, -1.16982, 0.974506, -0.557184, -0.72776, 0.768749, 0.125121, 0.897144, 0.00907982, -0.138386, 0.16488, 0.15288, 1.08081, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0141428, -2.47554, 1.91489, -2.78759, 0.027488, -0.892649, 0.043094, 0.0388209, -0.782266, -0.0171986, 0.727373, -0.370487, -2.43241, 0.00808163, 0.80766, 0.00470022, 0.469044, -0.0101348, 0.0817747, 0.623081, 1.02074, -0.016587, -0.515687, -1.02383, 0.574041, 0.329522, -0.396235, 0.0227271, 0.782273, -0.10203, -0.804627, -0.0129473, 0.0155635, 0.418618, 0.0351287, -0.0381198, -0.000873375, -0.0312268, -1.5785, -1.51751, -0.108943, -0.331377, 0.43054, 0.676162, -0.615932, -0.0176281, 0.0593505, 0.355619, -0.0693161, 1.57961, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0222746, -0.176603, -0.75262, 1.0094, 0.0138328, 0.287991, -0.00531684, 0.010906, -0.206835, 0.0257621, -0.0273983, 0.355128, -1.7324, -0.0165595, -0.198373, 0.120975, -0.517838, -0.0274293, -0.123095, -0.680727, 0.0258633, 0.028692, 0.323742, -0.0556896, -0.685104, -0.10295, 0.241375, 0.0261407, -0.100173, 0.0502528, 0.593374, -0.032919, 0.0359897, 0.170106, -0.0239604, 0.0325824, -0.00803466, -0.035837, -0.130706, -0.261515, -1.05537, -0.2976, 0.47897, 0.0686132, 0.15226, -0.0163525, 0.519579, -0.0173326, -1.07297, 0.103981, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03598, -1.9, -1.362, -0.3782, 0.04358, -1.423, -0.000672, -0.043, -0.8496, -0.00822, -4.277, -1.67, 1.307, 0.002743, -0.769, -1.301, -0.2998, 0.00185, -2.387, -1.047, -3.258, -0.04694, 0.1604, -3.611, -1.826, -1.138, -2.158, 0.004772, -0.03156, 2.145, -3.05, 0.0384, 0.001629, -0.03223, 0.012375, 0.001934, 0.02853, -0.013176, -0.9844, 2.443, -2.102, -2.562, -3.324, -5.977, 0.9136, -0.0006156, 2.602, 0.3325, 0.8677, -0.685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.003475, -0.1073, 1.681, 0.595, 0.00964, 0.305, 0.002995, -0.04382, 0.6123, -0.0253, -0.12146, -0.7407, 0.3442, -0.0124, 0.2908, 0.676, 0.09937, -0.03543, -0.5146, 0.4873, -0.1078, -0.01403, 0.244, -0.1991, -0.3887, 0.6694, -0.153, 0.006126, 0.4812, 0.669, 0.3044, -0.02315, -0.01051, -0.5146, 0.01474, -0.05148, 0.001172, 0.04315, -0.2952, 0.5938, -0.01805, 0.569, -1.567, 0.4858, 0.5356, -0.0251, -0.357, -0.01608, 0.02884, 0.1884], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00662, 1.678, 0.3782, 2.887, 0.0304, 0.0918, -0.02672, 0.04483, -1.175, -0.03607, -0.5537, 0.4832, 2.242, 0.04343, 0.655, 0.2678, -0.7383, 0.02779, -0.2803, 1.325, 0.2307, 0.0238, 0.2417, -0.0868, 0.6704, -0.472, -0.797, -0.0352, -0.1833, 0.989, -0.04416, -0.002083, 0.03278, -0.1203, -0.0258, -0.02933, 0.02051, -0.02925, -1.629, -2.709, 0.2064, 0.258, -1.985, 0.2578, 2.35, 0.02777, 0.795, 0.489, -0.3408, -1.625], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03296, -0.569, -0.0983, 1.85, -0.01415, 0.521, 0.022, -0.0402, 0.564, -0.004715, -1.081, -0.05167, -0.417, -0.04703, -0.2074, 0.2905, 0.2255, 0.02948, -0.313, -0.6597, -0.4165, 0.01039, 0.2175, 0.0703, -0.1295, 1.087, -0.11194, -0.014244, 2.236, -0.11053, 0.465, 0.0634, -0.02142, 0.1376, -0.01956, 0.0385, -0.02869, -0.04327, -0.2091, 0.9585, -0.2869, 0.7354, 0.646, 0.6978, -3.008, 0.0494, -0.463, -0.05756, 0.2993, 0.9287], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02536, -0.4954, 0.1129, 0.525, -0.04733, 0.2515, 0.01927, -0.0434, 0.3342, -0.02724, -0.2205, 0.473, 1.439, 0.00597, -0.5977, 0.2056, 0.1123, -0.01351, 0.45, -1.149, 0.158, 0.01042, 0.4214, -0.352, 0.05954, -0.1858, -0.579, -0.03665, 0.6553, 0.2422, -0.4275, -0.02763, 0.02177, -0.09106, 0.03674, 0.04547, 0.00967, 0.0382, -0.2181, -1.021, 0.1973, 0.3625, 0.07117, 0.4297, -0.685, -0.04297, -0.3804, 0.10767, 0.2046, -0.0845], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02744, 0.9136, -0.9214, 2.146, -0.03973, -0.4094, -0.010155, -0.0004103, -1.13, 0.001259, 1.194, 1.512, 2.496, -0.03384, -0.4253, 0.7344, -0.938, -0.0001692, -0.28, -0.1195, -0.1287, 0.03436, 1.01, 2.535, -0.03464, 0.1514, -1.567, 0.0224, 0.7803, 1.036, 2.625, -0.0207, -0.03116, 0.4978, -0.046, 0.0251, -0.00541, -0.03555, 1.362, 1.964, 1.708, 0.7173, 0.8047, -0.8237, -0.4238, 0.010475, 1.359, -0.6562, -0.211, 0.8174], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03793, -0.558, -1.664, 0.6934, 0.007, -0.295, -0.02641, -0.003641, 1.027, -0.008896, 0.759, 0.4368, -4.42, 0.03105, -0.04575, 0.3364, -0.1993, 0.0497, 0.3215, 0.1048, -0.2214, -0.03017, -0.256, -1.387, 0.1182, -0.193, 0.3152, -0.01256, -0.932, 0.583, -1.396, 0.05856, 0.02003, -0.1023, 0.01047, -0.005646, -0.005196, 0.00724, -0.9385, 1.19, 0.2544, 0.639, -1.117, 0.2512, 0.2898, 0.01195, 1.063, 0.1589, 0.02509, 1.948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.04547, 0.2803, 1.81, 1.461, 0.028, -2.137, 0.0342, 0.04987, 1.68, 0.009834, 0.02173, 0.1782, 2.012, -0.02534, 0.1864, 0.1967, -0.073, -0.004494, -0.2573, 0.02068, -0.373, -0.03134, -0.5767, 0.6323, 0.968, 0.5503, 0.3408, -0.03098, -0.5547, 3.162, 0.639, 0.02676, 0.03006, -0.1403, -0.002941, -0.0162, 0.03049, 0.000514, 0.822, -2.633, 1.296, -0.34, -0.5444, 0.2058, 0.02715, 0.012695, -1.1455, 0.02968, 0.02367, -0.0364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0441, 0.7715, 1.217, 1.115, 0.01492, 0.4348, 0.001873, -0.02054, -0.434, 0.03995, 3.676, 0.0743, -0.0574, -0.01315, -0.2073, -0.2206, -0.714, -0.01134, 1.206, 0.2434, -0.2363, 0.01168, -0.263, -2.064, -0.9023, 0.683, -0.679, 0.01913, 0.95, 1.1875, 0.2954, 0.01634, 0.0344, -0.4216, 0.03992, 0.02647, -0.0005903, -0.0166, -0.1758, 0.1908, -0.2876, 1.055, 0.8354, 1.044, 0.0606, 0.01816, 1.91, -0.4011, 0.1387, 1.857], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05, -0.1367, -1.193, -3.902, -0.02031, -1.171, -0.01164, 0.03198, -0.0631, -0.0658, 0.0735, -1.098, 0.184, -0.00871, -1.996, 0.269, 0.1652, 0.0157, 0.09686, 0.3333, 0.4888, 0.0343, 0.1575, -0.7285, -0.0981, -1.94, 0.4302, 0.02449, -0.5845, -1.842, -0.2837, 0.01907, 0.02934, -0.503, 0.002378, -0.003492, 0.0359, -0.03708, -3.03, 0.7275, -1.075, -0.8237, 0.4802, -0.3123, 1.812, -0.02217, -0.03041, 0.2742, -0.1039, -0.7236], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0009193, 0.1564, -0.237, 0.7114, -0.02248, -0.007755, -0.007782, -0.001549, 0.637, -0.04193, 2.123, 0.07306, -4.45, 0.01262, 1.68, -0.4565, -0.6763, 0.03952, -0.838, -0.07574, 0.1361, -0.01464, 0.07855, 1.086, -2.785, -0.512, 0.3818, 0.0437, 0.944, 1.06, 0.6226, -0.05304, 0.03766, 0.1158, 0.02382, -0.01593, -0.02663, -0.007694, 1.152, 0.9775, 0.04047, -0.4026, 1.159, 1.154, 0.374, -0.00547, 0.9663, -1.918, -0.4014, 0.4934], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.011246, 0.482, 3.18, 2.732, -0.012375, 0.2666, 0.0104, -0.002565, -1.611, 0.0107, 0.955, -0.4285, 2.887, 0.00973, 1.137, 0.5737, -0.6265, 0.01651, 0.2281, 0.664, -0.1865, -0.01726, -0.026, 2.016, -0.7676, 0.2974, -0.1307, -0.033, -0.6074, 1.422, 0.0389, 0.05505, -0.00615, -1.228, 0.002932, 0.05597, -0.003847, -0.0003505, 1.224, 0.8296, -0.9844, -0.03955, 1.704, 1.175, 2.19, -0.01749, 0.869, 0.02525, -0.628, 0.3098], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02039, -0.243, 0.981, -0.4224, -0.02417, -0.3872, -0.0494, -0.003868, -0.07263, -0.0384, 0.2732, -0.6846, 0.6934, -0.003126, 0.6455, 0.4092, -0.04407, -0.003435, -0.3992, -0.0531, 0.2485, 0.003613, -0.1256, 1.899, 0.2495, 0.634, -0.3677, -0.01187, 0.4946, -1.092, -0.743, 0.03363, 0.03384, -0.2522, 0.02882, 0.04065, 0.02586, 0.0362, 0.2625, 0.95, -0.3, 0.1613, -0.3062, -3.883, -0.6196, -0.03082, 0.3274, -0.1322, -0.01539, -1.41], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.006077, 1.396, 1.031, -1.561, -0.02467, 0.615, 0.02422, -0.00102, 2.215, 0.00834, -0.2705, 0.647, 0.938, 0.03784, 0.8076, -0.5063, -0.2021, -0.01822, -1.073, -0.1923, -3.59, 0.02611, 0.1092, 0.378, -0.2086, 0.2568, 0.524, 0.003517, 0.03238, 0.9595, 0.1501, -0.01614, -0.01079, -0.1536, -0.04477, 0.015, 0.05023, 0.01032, -1.0, -1.635, -0.408, 0.842, -0.1416, 0.3809, -0.4998, 0.001868, -0.15, 0.1104, -0.2683, 1.062], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00433, 1.544, 0.3445, -0.1322, -0.0354, 1.825, -0.02054, 0.04202, -1.374, 0.04886, 0.69, -0.1024, 0.492, -0.03665, 1.741, -1.184, -0.1969, -0.04483, 0.02734, 0.3958, -0.2927, 0.00909, -0.0888, 1.029, 0.5825, 0.4802, 0.0117, -0.0409, -1.37, 1.528, -0.5938, -0.02078, -0.00945, -0.495, 0.001169, -0.01584, 0.010544, -0.000915, 1.271, 0.427, 0.841, -0.9907, 0.3796, 1.071, 0.3394, 0.002878, 0.2773, 0.3813, -0.0687, -2.83], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02289, -2.635, 1.45, -0.0696, 0.04044, -0.0386, -0.005096, 0.01518, -4.645, -0.002924, 0.761, 1.225, -0.6787, 0.02768, -0.3381, -0.2532, 0.05325, 0.03394, -0.5757, -1.123, -0.1705, -0.03168, -0.155, 1.225, 0.337, 0.1335, -0.4944, -0.04733, 0.01901, -0.3489, -1.941, -0.0166, 0.006367, 0.4128, 0.00889, 0.0442, -0.0421, 0.01028, -0.2754, -7.67, -0.4192, 0.1421, -0.3877, -0.2688, -3.217, -0.0493, -0.2345, 0.622, -0.1842, -0.4297], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0419, -1.75, -0.3152, 0.811, 0.01201, 0.899, 0.004112, -0.004456, -0.609, -0.01758, -0.2712, -1.797, -0.989, -0.02515, -0.5454, -0.2893, 0.664, 0.02754, 0.3054, -0.3032, 0.1654, 0.0397, 0.379, -1.486, -0.7725, 1.622, -0.05496, 0.01747, -0.5747, -2.328, 1.203, 0.03117, -0.06604, 0.4688, 0.03296, 0.04523, 0.01029, 0.0314, -0.975, -2.52, -0.4368, -0.0688, -1.23, 0.978, -1.899, -0.02477, -2.316, -0.02855, 0.02846, 2.803], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002754, 0.3442, -0.301, 2.207, 0.01761, -0.8066, -0.01177, 0.04626, 1.165, 0.05273, -1.225, 1.193, 1.018, -0.03595, 0.4495, -0.8364, -1.092, 0.02797, -0.06143, -0.3923, -0.1989, 0.01857, -0.3145, -1.448, 0.2832, 0.364, 0.2361, 0.02315, 1.595, 1.014, 1.73, 0.03278, -0.01721, -0.02249, 0.007935, -0.02017, 0.04218, -0.01032, 0.4302, 2.025, 0.7207, -0.556, 1.055, -0.829, -0.43, -0.037, 0.4958, 0.281, 0.0649, 0.2488], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03793, 0.687, 0.01395, 0.01639, -0.03452, 0.1603, -0.0446, -0.000718, 1.57, -0.0421, 0.355, -0.4727, -0.3594, -0.04028, -5.105, -0.6104, 0.274, 0.01591, 0.348, -0.643, 0.03357, -0.01852, -0.1355, -1.32, 0.3027, -0.3718, -1.171, -0.003767, 1.171, 0.5073, -1.418, 0.02538, -0.01023, -0.479, -0.04224, -0.03113, -0.0492, 0.00866, 0.7534, -0.6523, -0.1423, 0.1113, 0.4207, 1.197, -0.6997, 0.0441, -0.1135, 0.254, 0.12354, 0.3948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02681, 1.544, 3.354, 1.136, -0.003202, -0.6353, -0.005486, 0.005756, -0.1858, 0.03137, 2.223, -0.5293, 0.1041, 0.0117, 0.259, -0.2101, -0.6816, 0.04062, 0.8203, -0.267, 0.02873, -0.02463, 0.4167, 0.3208, -6.02, 0.4868, -0.2396, -0.04028, 0.321, 1.381, 0.05933, -0.007935, -0.03827, 0.1537, 0.03928, 0.02933, 0.03897, -0.0285, 1.326, 1.025, -0.859, 1.358, 2.13, 2.092, 0.528, -0.0456, -3.385, -1.751, -0.1582, 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.04813, 0.2372, -0.657, 0.4878, -0.04227, -0.3123, -0.000918, -0.01543, 0.931, -0.0464, -2.18, -1.413, 3.406, 0.04703, -1.892, -0.4358, -0.4636, 0.003372, 1.003, 0.958, 0.597, -0.03687, 0.8643, -0.2625, 0.6855, -0.4246, -0.1381, -0.02829, 1.031, 1.173, -0.396, -0.0008597, 0.01098, 1.213, 0.0471, 0.0468, -0.012985, 0.04398, 3.543, -1.267, 0.3582, 2.53, -0.1382, -2.78, -0.4436, -0.01833, -3.756, -0.1595, 0.12164, -1.284], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05038, 2.318, 2.68, 2.047, 0.0466, 1.031, 0.0319, 0.03543, -0.7236, -0.01773, 0.8955, 0.855, -1.567, -0.009544, -0.825, -0.2954, -0.935, -0.03543, 1.204, 0.4639, 0.9785, -0.01556, 0.6636, 1.917, 1.196, 1.771, 1.173, 0.005, 3.684, 0.7334, 2.16, 0.007004, 0.014336, -0.0506, 0.02554, -0.002026, -0.01038, 0.002558, 0.3105, -0.955, 0.2998, -0.977, 1.178, 1.2295, 0.3535, -0.02094, -0.548, 1.484, -0.1553, -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.02629, -0.789, 2.602, -2.64, -0.002745, 0.5703, 0.0005107, -0.0515, -0.3901, -0.02167, -0.0972, 1.428, -0.256, -0.03748, -2.012, -1.071, 0.599, 0.0277, 0.3345, -0.1549, 0.1943, 0.04453, -0.1901, 0.1154, 1.511, -0.51, 0.838, 0.008766, 0.8003, -2.168, -2.057, -0.01953, 0.00917, -0.276, 0.0332, -0.04266, -0.00938, -0.02263, 0.4304, -2.625, 0.1259, 0.544, -1.176, -1.621, -0.657, -0.02962, 0.831, -0.01854, 0.1334, 0.9785], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03958, 0.1578, 0.03082, 0.2559, -0.03714, 0.2627, 0.05002, -0.010605, 0.2367, -0.0344, -0.05463, -0.5283, -1.39, -0.0204, -0.3635, 0.1991, -0.218, 0.002495, -0.013016, -0.0853, 0.0159, -0.0346, -0.137, 0.595, -0.545, -0.02386, -0.5054, -0.00558, 0.0508, -0.3643, 0.5864, 0.02457, 0.0314, 0.085, -0.01266, -0.01464, -0.01186, -0.02122, 0.33, 1.073, 0.04398, 0.07623, 0.338, 0.2446, 0.0958, -0.01958, -0.02798, -0.04868, -0.0645, 0.6455], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0204, 0.507, -0.2332, 0.18, 0.02835, -0.1276, 0.002073, 0.0328, 0.2808, 0.01437, -0.6045, 0.2827, -0.1548, 0.02283, 1.163, 0.4565, -0.6973, -0.02107, -0.03043, -0.05524, 0.01256, 0.0169, 0.402, 0.3547, -0.1617, -0.8813, -0.5073, -0.0264, 0.876, 1.092, -0.4854, -0.0215, -0.03268, -0.1006, 0.03482, -3.535e-05, -0.01261, -0.000165, 0.3162, 0.132, 0.1398, 0.1272, 0.4238, -0.1417, 0.5366, -0.011, -0.5425, -0.0779, 0.2524, 0.4321], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.013336, 0.937, 0.3496, 4.223, -0.02708, 1.38, -0.003727, 0.03787, -0.5244, -0.02477, 1.938, -0.009254, 1.036, -0.04315, 1.083, 0.1392, 0.05307, 0.03174, -0.2744, 0.3242, -0.8613, 0.00881, 0.0748, 0.2473, -0.2476, -0.04688, -0.00415, -0.03415, 1.456, 1.852, 0.611, -0.03268, -0.02745, -0.654, -0.0356, -0.02426, -0.03613, -0.006794, 1.536, -0.6704, -0.4287, -0.306, -0.451, 0.3594, 1.14, 0.00213, 0.3518, -0.11615, -0.1653, 1.39], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.001114, -2.885, 1.759, -0.01015, -0.01123, -0.11145, 0.03302, 0.04297, -4.297, -0.02527, -0.759, -2.947, -2.277, -0.0217, -1.4795, -0.456, -2.506, -0.05118, -5.047, -0.273, -7.375, 0.0284, -0.377, 2.229, -0.7617, -0.6084, 0.2876, 0.01189, 0.02884, -1.189, -3.025, 0.0398, -0.03928, 0.735, -0.03183, 0.01457, 0.0369, 0.02533, 1.098, -2.893, -2.33, -0.05737, -0.607, 0.3557, -3.215, 0.02591, 0.1423, -0.3936, 1.499, 1.743], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05307, -3.717, 1.575, 1.747, -0.02396, -0.1709, -0.047, 0.02133, 0.47, -0.0008473, 0.2258, -1.295, 1.522, 0.03024, -0.3518, 0.6074, 0.0348, -0.01825, -0.682, -0.7783, 0.2139, -0.02426, -0.1791, -4.793, -1.191, -0.4832, 0.2163, -0.04825, 0.5093, -2.955, 0.886, 0.03882, 0.03818, -0.52, -0.0435, 0.03091, 0.002954, -0.03586, -0.0002127, -1.983, 0.587, 0.7183, 0.3972, -0.9907, -0.004616, -0.02235, -0.798, 0.1868, 0.4202, -1.044], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02858, 0.0269, 0.0892, 3.248, 0.04236, 0.03665, -0.009094, -0.01349, 0.989, 0.001259, -1.326, 1.156, 0.265, -0.04294, 0.1571, 0.0807, 0.1357, 0.004692, -0.0495, 0.7773, -0.3809, 0.04144, 0.2147, 0.1168, 0.2854, 0.616, -0.5757, -0.04013, -0.1168, 1.162, -0.1376, 0.01295, -0.04126, -1.179, -0.01813, 0.03497, 0.03772, -0.01049, 1.602, -0.8286, 0.8174, 0.825, 1.288, -0.516, 0.251, 0.0545, -0.648, -0.547, 0.2408, -0.8823], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02306, -0.2927, -1.304, -3.383, 0.04443, -0.6816, -0.03696, -0.03333, -0.6353, 0.0384, -1.286, -0.555, 1.641, 0.04056, 1.884, -1.407, -0.7305, 0.03848, 0.951, -0.674, 0.9473, 0.00962, -0.467, 0.729, 0.6953, -0.892, 0.6675, -0.0319, -1.97, 0.5977, -1.91, 0.0399, -0.05188, 0.4146, 0.02083, -0.00966, -0.03854, -0.02553, -0.3975, 0.607, -0.213, -0.2305, -2.02, -3.691, 0.917, -0.03717, 1.684, 0.1265, 0.3547, 0.365], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02023, -0.1575, -0.2703, -0.2467, -0.00474, -0.717, -0.01854, 0.005108, -0.796, 0.010185, 1.169, 1.249, -0.9595, -0.02397, -3.133, 0.4612, -0.738, -0.0601, 0.7104, 0.194, -0.587, 0.02829, 0.508, -1.154, 1.715, -0.4119, 1.37, 0.0097, 0.5576, -4.996, -0.1991, -0.05573, 0.04095, -0.04694, -0.02573, -0.04395, -0.005905, 0.02704, -1.283, -0.2065, 1.3, 1.059, -1.073, -0.4333, -0.774, -0.001933, -0.851, -0.4905, 0.04074, -0.376], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05786, 0.03732, 0.3313, 0.6685, 0.00613, -0.5303, -0.01553, 0.010414, 0.641, -0.0208, 0.3257, 0.5894, -0.3179, -0.02553, 0.7583, 0.2089, -0.1527, -0.04214, 0.1532, 0.1092, -0.1953, -0.0052, -0.05075, -0.011635, 0.4067, 0.03207, 0.0577, 0.00852, 0.0463, 1.058, -0.002827, -0.03528, -0.02634, -0.07996, -0.0352, -0.03638, 0.04425, 0.00622, 1.603, -0.7886, -0.2142, -0.4343, 0.5835, -0.3284, -0.528, -0.02304, -0.5356, 0.06158, -0.3682, -0.234], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00557, 0.005714, -0.1748, -1.729, -0.0176, 1.007, -0.0365, 0.01993, 1.366, -0.006866, 0.973, 0.4573, -1.629, 0.02827, -2.959, 0.314, 0.3264, -0.023, 0.2566, 0.983, 0.633, -0.01932, 0.395, -0.2844, 0.1371, 2.668, 0.3394, 0.0497, 1.508, -5.195, 0.5293, 0.0329, -0.0443, 0.567, 0.02715, -0.04202, -0.003633, -0.012184, 0.896, -1.931, -0.01165, -0.884, -0.9272, -3.973, -2.172, 0.02708, -1.465, 0.7246, 0.2444, -1.062], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01207, -0.6685, -0.4282, 0.5815, -0.03424, 0.04172, -0.006756, -0.01381, 0.2673, 0.02177, 0.08954, 0.4138, 0.1295, -0.006508, -0.455, 0.07635, 0.1296, 0.006374, -0.1159, -0.362, -0.303, -0.0456, -0.04993, 0.000382, -0.3381, -0.276, -0.3838, 0.04208, 0.651, 0.216, 0.764, -0.006382, -0.03488, 0.2117, -0.04428, 0.0098, 0.01599, 0.02083, -0.2642, 1.079, -0.1456, 0.2249, 0.535, 0.2498, 0.1447, 0.00966, 0.03748, -0.4944, -0.02213, 0.0365], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03278, -0.0625, 0.567, -1.058, -0.02492, -1.035, -0.01499, -0.05023, 0.506, -0.0192, -1.137, 0.6255, -1.378, 0.012344, -0.3955, 0.01162, 0.4224, 0.00263, 1.111, 0.10724, 1.012, 0.01764, -0.1528, -0.7773, 0.9805, 0.4727, 0.4646, 0.03046, 2.076, -2.377, 1.202, 0.005836, -0.01436, -0.1871, -0.03156, -0.01003, 0.001717, -0.00648, 0.672, 0.934, -0.1477, 0.0907, -1.621, 0.0083, -1.261, -0.02354, -1.409, 1.303, 0.2435, -1.488], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.010345, 0.0597, -0.8574, 0.005066, 0.01542, -0.395, -0.01733, -0.003109, 1.312, 0.001574, -0.4492, -1.448, -1.653, -0.0412, -1.923, 0.2874, -1.714, -0.05423, -0.6133, 0.2153, -6.773, -0.04398, -0.182, -0.6943, -0.4746, -0.1705, 0.3057, -0.01152, -0.02437, -1.77, 0.10974, -0.02359, 0.0254, -0.2089, 0.00788, -0.02719, 0.02321, -0.02492, -1.222, -1.067, -0.7065, -0.5737, -0.2446, 0.543, -0.2886, 0.02438, 0.8813, 0.4866, 0.649, 1.121], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02126, -0.8584, -0.1294, -0.0435, 0.04834, 0.0524, -0.00878, -0.04807, 0.525, 0.002647, -0.469, 0.0674, -2.11, 0.003153, -0.6577, 0.134, 0.498, -0.001687, -1.319, 0.136, -0.582, 0.04526, -0.3374, -0.1965, -0.2101, -0.3337, -0.3064, -0.0143, 0.001621, -3.053, -0.1277, 0.02167, 0.01202, -0.465, 0.03986, 0.02003, -0.0384, -0.05026, -0.5396, -0.4114, -0.02269, 1.61, -1.0, 1.5205, -0.46, 0.01898, 0.9067, 0.5864, 0.4497, -1.475], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0328, 0.2354, -0.985, 0.525, 0.0462, -0.05402, 0.01613, -0.01471, 0.9966, 0.0256, 0.05505, 0.3083, -0.1853, 0.02425, 0.009285, 0.2311, 0.2015, -0.007027, -0.3694, -0.2524, -0.2576, 0.01729, -0.4958, -0.02654, 0.0388, 0.00762, 0.2056, -0.02936, 0.5776, -0.4294, 1.028, -0.02399, 0.05203, 0.3154, -0.03705, 0.0402, 0.01436, -0.022, -0.3682, 0.0352, 0.03568, 0.1416, 0.03632, -0.312, -0.889, -0.03964, -0.4314, -0.208, 0.01862, 0.62], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0351, 0.71, 0.6816, 0.5513, 0.0299, -0.02116, 0.0253, -0.01637, -0.05493, 0.01637, 0.4204, 0.2302, -5.113, -0.02979, 0.506, -0.456, -0.4983, -0.001634, 0.05576, -1.45, 0.368, -0.02377, 0.07184, 0.0385, -0.842, 0.02306, 0.2141, 0.0418, -0.1678, -1.673, 0.61, 0.006874, -0.0387, 0.62, -0.003735, 0.01982, -0.0401, -0.01686, 0.4243, -3.05, -0.788, -0.991, -0.1583, -0.617, -0.2366, 0.002882, 0.11884, -0.297, -0.209, 0.9453], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04553, -0.2242, -0.523, -3.613, 0.00374, -0.7715, -0.0201, -0.04294, -1.007, 0.01685, 1.2, -0.2637, -0.943, 0.01405, 0.5176, 0.928, 0.1788, -0.00898, -0.0813, 0.993, 1.089, -0.03345, -0.2064, 0.3638, 0.8037, -0.4668, 0.1859, 0.00425, -0.919, -1.906, 1.564, 0.02548, -0.00341, -0.02025, -0.02243, -0.04944, -0.003569, 0.01831, -0.9966, -1.722, 0.3274, -0.4397, -0.0671, 0.3271, -2.186, -0.01604, -1.017, 0.4377, -0.203, -0.3203], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04657, -0.05994, -1.81, -2.402, -0.03583, 0.1991, 0.02925, 0.011566, -1.81, 0.002617, -0.952, -0.7456, 2.037, 0.005127, -0.9946, 0.3367, 1.1045, -0.01697, -0.517, 0.467, 0.6904, 0.003502, -0.3066, 0.1123, -1.433, -0.772, -0.4976, 0.01479, -2.03, 1.112, -0.728, 0.02927, 0.01637, -0.4155, -0.007454, 0.01466, -0.0419, 0.0367, -1.368, -0.155, -1.406, -0.2306, -1.452, -1.193, -0.3518, 0.03418, -1.47, 0.8267, 0.8506, 3.03], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002895, 0.4873, 0.4944, 0.1577, -0.0392, 0.1039, 0.03265, 0.005836, -1.679, -0.001984, -3.268, 0.4626, -0.386, 0.04904, -1.012, 0.0893, -0.4731, 0.02425, 0.2476, 0.265, 0.507, 0.03748, 0.03027, -0.4841, -0.4421, -0.2556, -0.3142, 0.003576, 0.0519, 2.176, 0.2059, 0.03168, -0.0388, 0.3965, 0.017, 0.0329, -0.01894, -0.01892, 0.6865, 0.879, -0.4512, 0.372, -0.1517, 0.754, 0.2534, -0.00966, -0.4272, -0.05453, -0.0954, 0.603], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04752, -0.875, 0.3787, -0.42, -0.00578, 0.1125, 0.03906, -0.04343, -0.2311, 0.02028, 0.4976, -0.00395, 0.2517, -0.01721, 0.6797, -0.301, 0.4963, 0.02606, 0.5366, 0.2142, -0.1537, 0.006504, -0.09515, -0.3271, 0.4521, 0.5967, -0.6494, 0.02899, 1.505, -3.121, -0.3252, 0.0511, -0.01564, -0.2036, -0.008415, 0.006096, 0.011475, 0.00235, -2.111, 1.241, -0.1337, -0.742, 0.5967, -0.4993, 0.554, -0.01383, 0.1051, -0.05026, 0.4363, -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.02303, 0.3008, 1.521, 2.426, -0.03091, 0.334, 0.003653, 0.01743, 1.209, -0.0482, 0.3325, 0.648, 0.01237, 0.02869, 1.391, -0.12036, -1.424, -0.0395, 0.53, 0.4634, -0.00852, 0.03458, 0.1986, -0.2595, 0.4338, -0.363, -0.1981, -0.043, -0.1906, 1.465, 2.783, 0.01055, 0.006958, -0.4602, 0.01683, -0.0473, 0.02676, 0.0445, -0.467, 1.739, -0.3801, -0.05725, -1.169, -2.787, -0.5635, -0.04303, -0.4722, 0.3042, 0.812, 1.477], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02014, 0.04483, 0.06125, 0.2299, -0.01032, 0.5566, -0.03033, -0.04245, -0.3245, -0.0395, -0.587, -0.598, 0.593, -0.02318, 0.146, 0.0367, 0.06995, 0.00955, 0.0809, 0.147, -0.2156, -0.03986, -0.0729, 0.0003707, -0.3643, 0.3513, -0.1198, 0.03732, 0.2512, -0.392, 0.4976, -0.02042, -0.0341, -0.0539, 0.00745, 0.00854, 0.006207, -0.03214, 0.1504, 0.4927, -0.2289, -0.2438, 0.8955, 0.1628, 0.1504, -0.0326, -0.5073, -0.0743, -0.1932, 0.4204], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03992, -0.1608, -1.6455, -0.0729, -0.02419, -0.1835, 0.05176, 0.02815, 0.2556, -0.0002992, 0.484, -0.6704, 0.3962, -0.01703, 0.73, -0.1436, 0.2468, -0.02586, -0.05377, -0.3254, -0.2095, -0.01252, -0.5054, -0.2429, 0.391, -0.6006, 0.08527, 0.02159, 0.6733, -2.557, 1.532, 0.03085, -0.02798, -0.3281, 0.03857, -0.03967, 0.0196, 0.003994, -0.2546, -1.938, 0.8887, -0.37, 0.6646, -0.6504, 0.6475, 0.04623, 1.601, -0.3425, 0.2477, 0.7617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02684, 0.737, -1.392, -1.678, 0.0192, 0.2502, -0.0061, -0.0384, -1.105, 0.02794, 0.3984, 0.11194, 0.931, -0.0451, 0.5005, 0.1287, 0.1181, 0.03056, 0.1262, 0.0199, 0.1125, 0.02968, -0.5366, 0.774, 0.891, -1.176, 0.6284, -0.0395, 0.579, -0.9087, -1.587, -0.007397, 0.02322, -0.259, 0.0448, 0.01382, -0.002077, -0.03815, -1.325, -0.697, -1.46, -0.574, 0.2013, -1.9795, -1.816, 0.001629, -1.142, 0.2744, 0.2494, 0.1144], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.013725, -0.2988, 0.1453, -0.6694, -0.0182, 1.294, -0.01625, -0.03265, -1.467, 0.03494, 0.1604, 0.08417, -0.1416, 0.0355, 0.5654, 1.357, -0.1422, -0.04166, 0.8896, 0.669, -0.1061, -0.02022, 0.4517, 0.8457, -0.3496, -0.4214, -0.662, 0.01686, 0.871, -0.909, 0.5386, -0.013115, 0.01358, -0.88, 0.005978, 0.03445, 0.00966, -0.0133, -1.17, 0.9746, -0.557, -0.7275, 0.7686, 0.1251, 0.897, 0.00908, -0.1384, 0.1649, 0.1528, 1.081], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.014145, -2.475, 1.915, -2.787, 0.02748, -0.8926, 0.0431, 0.03882, -0.782, -0.0172, 0.7275, -0.3706, -2.432, 0.00808, 0.8076, 0.0047, 0.469, -0.01013, 0.0818, 0.623, 1.0205, -0.01659, -0.5156, -1.023, 0.574, 0.3296, -0.3962, 0.02272, 0.782, -0.10205, -0.8047, -0.01295, 0.015564, 0.4187, 0.03513, -0.03812, -0.0008736, -0.03122, -1.578, -1.518, -0.10895, -0.3313, 0.4304, 0.6763, -0.6157, -0.01762, 0.05936, 0.3557, -0.06934, 1.58], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02228, -0.1766, -0.7524, 1.01, 0.01383, 0.288, -0.005318, 0.0109, -0.2068, 0.02576, -0.0274, 0.3552, -1.732, -0.01656, -0.1984, 0.121, -0.518, -0.02744, -0.1231, -0.6807, 0.02586, 0.02869, 0.3237, -0.0557, -0.685, -0.10297, 0.2413, 0.02614, -0.10016, 0.05026, 0.5933, -0.03293, 0.03598, 0.1702, -0.02396, 0.0326, -0.00803, -0.03583, -0.1307, -0.2615, -1.056, -0.2976, 0.479, 0.0686, 0.1522, -0.01636, 0.5195, -0.01733, -1.073, 0.104]]
[1.47626, 0.600989, -0.148535, 0.151678, -0.485297, -2.48411, -1.30675, -1.13041, -0.369945, 0.56204, -0.522179, 0.563402, -0.0210035, 0.342328, -0.892954, -0.081945, -0.682016, -0.191946, -0.748805, -2.00851, 0.437345, -0.257222, 0.760044, 0.380221, 0.0908202, 0.628428, -1.92026, -0.661522, -2.5035, -0.999376, 0.0157659, 0.462182, -0.675923, 0.545938, -0.944387, -0.687703, -0.60756, -0.252679, -0.467016, -0.572973, 0.800432, -1.05698, -1.00811, -2.01187, 0.0649495, 1.13815, 0.858227, 1.02366, -0.369491, -0.198588, 1.477, 0.601, -0.1486, 0.1517, -0.4854, -2.484, -1.307, -1.131, -0.3699, 0.562, -0.522, 0.5635, -0.021, 0.3423, -0.893, -0.082, -0.682, -0.1919, -0.749, -2.008, 0.4373, -0.2573, 0.7603, 0.3801, 0.0908, 0.6284, -1.92, -0.6616, -2.504, -0.9995, 0.01576, 0.4622, -0.676, 0.546, -0.9443, -0.6875, -0.6074, -0.2527, -0.467, -0.5728, 0.8003, -1.057, -1.008, -2.012, 0.06494, 1.138, 0.8584, 1.023, -0.3694, -0.1986]
ReLU
[[-1.2647, -0.453085, 0.24176, -0.265307, 0.9846, 1.50366, 1.78124, -1.33614, 1.56163, 1.69551, -1.32606, 0.33218, 1.35932, 1.31704, 1.79604, 0.589258, -0.913848, -0.683592, -1.58579, -0.763534, -0.166433, -0.770358, 0.00739418, 1.57991, 1.17569, -1.86191, 0.649294, -2.733, -1.77395, 0.218153, 0.43927, 1.02583, 0.41414, 0.787488, 0.416091, 1.88268, 1.05691, 2.72597, 2.69565, 0.933568, 0.0872825, 1.82305, -1.76948, 1.58115, 2.97471, -2.02654, 0.0995154, -0.801785, -0.410881, -0.261832, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.108303, 0.126108, -0.262487, 0.314924, 0.236337, -1.40802, 1.27538, 0.128733, -0.0690157, 0.240777, -0.822226, -0.00313339, -0.719135, 0.0455497, -0.294961, 0.494784, 0.472424, 1.70865, 1.27077, 0.397645, 0.037633, 0.0154732, 0.353776, 0.103787, -0.584824, 0.770842, 0.0671807, 1.52846, -1.60902, 0.472374, -0.600797, 0.37627, 0.0125633, -0.409807, -0.152408, 0.463247, 1.16591, 1.16448, 0.995985, 0.963937, -0.0947684, -2.07867, 1.90047, 0.445363, 0.896384, 0.266949, -0.472137, -0.159993, -1.68101, 0.376701, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.307948, -0.489621, -0.216738, -0.366308, -2.48286, -0.201006, -0.396585, -2.34202, -0.403241, -1.93165, -0.960323, -0.475862, -1.45106, 0.151751, 0.623088, 2.27449, -0.253139, -1.06151, -1.41703, 1.08431, 0.144169, 0.369571, 0.700155, -1.38633, 0.537934, -0.619359, 1.17736, -0.191322, -1.73292, 0.354702, 0.475196, 0.185317, 0.693159, -0.696103, 0.938289, -0.554724, 1.58946, -1.73084, 1.78404, 0.914707, -0.0705651, -2.47765, -0.281021, -0.139616, -0.631397, 0.338533, 1.30225, -0.440672, 0.00593229, -1.04713, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0229765, 0.340115, -0.276744, -0.0198395, 2.82846, 0.770556, -0.288609, -0.779862, -0.423494, -0.695192, 0.426273, -0.0672668, -0.77963, 0.15763, 0.397323, -0.464779, 0.0483472, -0.455559, 0.177539, 1.19012, -0.0558602, -0.351346, -0.157824, 0.114189, 0.228949, 0.437619, -0.559364, -1.51652, 1.64025, -0.30934, -0.836647, 0.785183, 0.491925, 1.05452, 0.0955436, -0.841894, -0.289777, 2.51104, 0.362439, 0.0342116, -0.117083, 0.395488, -0.506726, 0.87987, 1.4301, 0.0920416, 0.305499, 1.4605, 0.0110538, -0.112875, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.38682, -0.0805317, 0.0785214, -0.294157, -0.0314964, -0.131408, -0.170556, -1.88865, 0.0721038, -0.084322, -1.21218, 0.137613, -1.96252, 2.47083, -3.18573, 1.57659, 0.759615, -0.788463, 1.77724, -2.23671, 0.478132, 0.00505924, 0.157469, -0.0719681, 0.860318, -0.0127392, 0.646652, -1.74371, -2.66395, 0.276986, -0.379298, 0.248904, -0.314642, 2.23232, 0.0331836, 2.37991, -0.637543, 0.598927, 1.58754, -0.552575, 0.110404, 3.27476, -0.700693, -1.59188, 0.638938, -0.904787, 0.805044, -1.71234, 0.865867, 0.422862, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0152966, -0.0442321, -0.0453962, 0.00302891, 0.0214036, -0.000838293, 0.0423776, -0.0414444, 0.023397, -0.0228087, -0.0398366, 0.018812, -0.00762523, 0.0140488, -0.0271254, -0.00339341, 0.0347555, 0.022583, 0.0478947, 0.0562436, -0.0524134, -0.0553758, -0.0209801, -0.0511696, 0.0428687, -0.0563165, 0.00381981, 0.00507478, -0.0140935, 0.0316272, -0.0160128, 0.0195094, -0.0149141, -0.0404847, 0.0111952, -0.0259062, -0.0318671, -0.0191789, 0.0411899, -0.0208675, -0.0476683, 0.0465658, -0.00447964, 0.0314908, 0.00839722, -0.077342, -0.00715523, 0.000773175, 0.0410446, 0.00714318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0468572, -2.4918, -0.959729, 0.477978, -1.6512, -6.62816, -1.04993, -7.44019, 0.399905, 2.03371, -0.781361, -0.26981, -3.99029, -1.00843, -1.39846, 0.125377, -0.322044, -1.90274, -1.38928, -7.26991, -0.337807, -0.375745, 0.321957, 0.264014, 0.134115, -1.08773, -0.0131086, -1.37047, 1.83689, 0.0577079, -0.368559, 0.893505, 0.712175, 0.554545, 0.42333, -0.351323, -0.0881917, 1.78401, -1.7983, 0.539783, 0.617986, 1.59276, 1.29633, -1.82223, -1.95586, -2.1065, -0.515295, 1.13111, 0.950424, 1.05465, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.667037, 0.116936, -0.575276, 0.478261, 1.43616, -1.21307, 0.204769, -0.420237, -0.0779456, -0.689875, -0.190762, 1.34834, 0.242048, 0.627338, -0.801487, -1.63132, 0.123668, -0.866229, -2.67659, 0.826, -0.787799, -0.601896, -0.240576, 1.99658, 0.824134, -0.0385654, 0.307445, 1.60582, 2.72021, -0.459507, 0.401681, -0.0756933, 0.210466, 1.92209, 0.164827, -2.27359, 0.664013, 0.947106, 0.513765, -0.560539, -0.152059, -1.17778, -0.159143, -0.357727, 0.642361, 0.109992, 0.832229, 0.193288, 0.0510682, -0.0885611, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.28689, 0.604425, 0.572856, -1.53396, -2.12831, 0.0877685, 3.47119, 2.38107, 0.172117, 3.09176, 1.20842, -0.752469, 1.22045, 1.16052, 1.11622, 4.12136, 1.25735, 2.3767, 3.83642, 0.738327, 1.31094, 2.08813, 2.40699, 0.489868, -0.00965009, 0.0511277, 2.60006, 0.262957, 0.420942, 1.67929, 1.35587, 1.32336, 0.0731314, 0.455102, 1.23679, 3.36241, 6.52822, -0.750962, 2.53544, 2.33325, 3.55964, 0.0537781, 3.2061, 2.95888, 0.608105, 3.52931, 2.74345, -0.292625, 2.75628, 1.30923, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.502753, -0.757931, 0.578459, 0.951184, 3.20234, 1.20306, -2.75918, 0.966453, -0.589012, 2.07292, 0.472948, 1.43957, 1.93471, -0.970424, 0.307678, 2.2908, 1.20546, 1.46551, 1.98091, 2.38104, -0.833552, -0.893357, -0.185032, 2.50237, 0.771429, 1.23746, 1.50297, 3.37765, 1.32081, -2.83065, -1.78599, 0.061364, -0.858704, 3.23024, -1.0176, -1.88259, -0.991462, 2.51661, 1.52109, 0.0998804, -0.250988, -3.53828, 1.51444, 3.09413, 1.33451, 0.175061, -1.06633, 1.04163, -3.69444, 0.155792, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00840979, -0.0109328, -0.0528553, 0.00615647, -0.0153294, 0.000738152, 0.00350354, -0.0321066, -0.0108831, 0.0344211, -0.0251157, -0.045802, 0.0453384, -0.0224197, 0.0284642, 0.0197817, 0.0148055, 0.00119698, -0.0532314, 0.0250498, -0.0206024, -0.001176, -0.0509661, -0.0513267, -0.0452365, 0.000295956, 0.018235, 0.00220886, 0.00974089, -0.00143803, 0.0142851, -0.0233501, -0.0425286, 0.0167362, -0.0405469, 0.00736479, -0.0400603, -0.0352449, -0.00879044, -0.0501369, -0.0196617, -0.0361279, -0.0374016, -0.00135522, 0.0173797, -0.0138314, -0.0441094, -0.01126, 0.00502884, 0.019507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.14645, 1.08099, -0.417214, 0.112038, -3.79349, 0.32929, -2.9605, 0.818351, -0.0395717, 1.01506, 0.498568, -1.39927, -0.055485, 0.962273, -0.910544, 2.82789, 1.5985, -0.599015, 0.165687, -0.246441, 0.60803, 0.306528, -0.492273, -3.01481, -0.392808, 0.664714, 1.4585, -3.77735, -3.96741, -0.120128, 0.500997, -4.52929, 0.0400982, 0.664253, 0.33668, -1.36871, -2.60619, 3.61806, 0.990546, -2.94201, 0.397734, 1.38395, -2.4706, 1.63352, 0.856415, -0.298779, -0.972104, 0.0257575, 0.470903, -0.364819, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.221957, 0.0785223, 0.299774, 1.05003, -2.69365, 1.18668, 0.815547, 0.0560505, 0.284755, 1.02911, 0.265792, 0.454543, -2.07404, 0.157744, 0.228334, 0.301504, 0.194212, -0.122912, 1.43752, 1.15193, -0.181768, -0.160149, 0.338693, 1.20433, 0.157491, 0.0925392, -0.293794, -0.586494, 2.21124, 0.3838, 0.0596047, 1.3505, -0.118138, -0.00125672, -0.685316, -0.471164, -1.23127, 1.83439, -0.689598, -0.352297, 0.0888574, -0.907229, 0.788867, 0.125586, 1.50502, 0.221632, 0.0339568, 0.526697, -0.834049, -0.146616, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.704185, -0.142743, 0.531161, -1.28181, -3.09412, 0.533445, 1.11217, 0.269018, 0.268255, -0.0458731, 1.42375, -0.531919, 1.87022, 1.01251, 0.247881, -1.18683, -0.252075, -0.0404538, 2.65314, 0.567135, -0.139979, -0.110814, -0.865804, 0.156874, -0.963038, 0.207987, 0.646355, 1.09906, 1.33436, -1.35408, -0.385691, 2.3802, -0.0183783, -0.102562, -0.386641, -0.89779, 0.974779, -0.0121326, -0.97717, 0.240309, 0.251062, -0.735783, 0.513343, 1.6197, 2.63989, 0.640382, -0.278628, 0.0360775, -1.13417, -0.197838, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0701246, 0.268119, 0.309471, -0.48041, -2.14457, -1.18731, 3.36533, -0.0389885, 0.11721, 0.52629, 0.638701, -0.493287, 2.22236, 1.53858, 0.268944, 1.1576, -0.614877, 1.30932, 2.20482, -3.19354, 0.00511585, -0.460806, 0.412427, 0.36485, 1.00176, -0.589264, 0.122454, 2.31763, -0.131361, -0.0738132, -0.430456, 2.08952, 0.200565, -1.72957, -0.770165, 0.422898, 0.0282865, -1.83081, 1.44029, -0.683092, 0.253624, 2.31168, 1.18971, 0.952035, 0.80952, 0.205331, 0.620129, 0.916455, -0.198682, 0.669895, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0525406, -0.0653693, -0.464271, -0.159086, 0.0714768, -0.350206, -0.196796, 0.892477, -0.639081, -0.289501, 0.448642, -0.0937355, 0.109834, -0.914279, 1.36714, -0.547057, 0.51737, 0.436682, -0.135447, -1.01615, 0.0933158, -0.0591272, 0.39898, -0.072556, 0.0440972, -0.44303, -0.218324, 0.640506, -1.48659, -0.218963, -0.0936701, 1.08605, -0.343978, 0.917697, 0.0691651, 0.930825, -1.43427, -0.867658, 0.351339, 0.446007, 0.35788, -0.757728, -0.442181, 0.111668, 0.00807827, 0.193203, -0.158126, -0.395297, 0.232775, 0.0197261, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.482529, 0.922148, 0.884277, 1.56102, 1.13988, 2.52868, 1.50829, 0.134169, -0.54607, 0.118727, 0.878303, 0.366854, -0.0226639, -0.232991, 0.0515205, -0.79074, -0.444096, 1.56729, 1.6845, 2.2812, -0.24886, -0.502113, 0.135135, 2.90773, 0.517868, 0.584033, -0.0664721, 0.479935, 1.65746, -0.00681664, -0.55136, 0.931851, -0.6224, 0.595307, -0.990714, -0.361713, -1.56137, 2.14915, 0.106263, -1.27753, -0.275888, 0.367749, 1.11699, 0.795426, 1.3465, 0.0153879, 0.0602475, 1.22324, -1.55868, 0.366429, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.535199, 0.699309, -0.465574, -0.391348, -0.312829, -2.885, -0.773876, 0.0412189, -0.868625, -0.240269, 0.175429, 0.00107752, 0.368506, -0.783299, -0.0312699, -1.78723, -0.405412, -0.00747363, 0.75633, 0.0752648, -0.0477342, 0.166992, 0.0531429, -1.82801, -1.63694, 0.197055, 0.34729, -0.417363, -0.526181, 0.270354, 0.549197, 0.386895, -0.189541, -1.16126, 0.454952, -0.0566457, -3.2143, -1.81985, -1.62143, -1.21867, 0.109774, -0.120288, 0.368558, 0.349038, -1.63114, -1.30861, 1.35528, -0.0183293, -0.0854663, -0.674146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.44732, 0.533088, 0.334376, -0.455744, 0.380852, 0.51707, 1.69959, 1.29903, -0.0395038, 0.577251, -0.432013, 0.0475048, 1.62699, 0.00253696, -0.0403672, 0.764707, 0.168759, -1.30684, 1.01793, -1.06097, -0.312672, 0.21146, 0.326935, 0.607936, 0.26886, -0.329906, -0.607469, 0.704745, -0.294732, 0.553729, -0.00762757, -0.615641, 0.136407, 0.976736, -0.186833, -1.05325, 0.29474, -3.3995, -0.0514158, 0.552917, 0.279485, 0.955977, 1.60912, -0.487405, 0.128437, -1.57618, -0.0530323, -0.479691, -0.396994, -1.36465, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.205429, 0.477133, 0.610363, 1.04379, -0.00449317, 1.36614, 0.0988913, 0.986087, 0.173705, -0.251808, 0.333454, 0.480595, -1.95716, 0.570144, -1.17081, 0.0604827, -0.198478, -0.279545, -1.56218, 0.0546193, -0.207724, -0.489354, 0.377109, 0.729384, -0.689526, 0.386775, 0.56569, -0.993282, -1.53859, -0.387793, -0.0558474, 1.32643, -0.496891, 0.890644, -0.204367, -0.306184, -1.22418, -0.326252, 0.532181, 0.00429496, -0.0450138, 1.56706, 1.46608, 0.751449, 1.36942, 0.0539378, -0.171915, -0.0595345, -0.750679, -0.0756662, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.000425689, -0.034945, -0.0391529, 0.0230264, -0.0485, -0.0288671, -0.0528859, -0.0313986, 0.00295731, -0.0390855, 0.0314326, -0.010242, -0.042025, -0.0562668, -0.0330147, -0.0202423, 0.0214653, -0.0415081, -0.0032428, -0.0509568, -0.037036, -0.0589128, -0.0040655, -0.014412, -0.0326223, 0.0310148, -0.0118497, -0.000922974, 0.025482, 0.00113396, -0.0569398, 0.00203066, -0.0473233, -0.01114, 0.00819794, 0.0440478, 0.0209125, 0.0158337, 0.0236026, -0.0150921, 0.000911465, 0.0114375, 0.0259995, -0.00865403, 0.0300796, -0.0522117, 0.0197769, -0.0650352, -0.0508573, 0.0163163, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.339339, -0.589204, 0.704246, 0.819885, 0.715346, -0.580189, 1.34942, -0.283448, -0.161235, 0.245779, 0.406238, 0.177867, -0.69603, 0.739934, -2.00265, -0.297316, 0.628663, 1.34752, 0.655178, 0.803843, -0.0774445, -0.218716, -0.402393, 0.586351, -1.36219, 0.104112, 0.339417, 0.120064, -0.185052, -1.56877, 0.457521, 0.268531, -0.286865, -1.45119, 0.182436, 0.0132872, 0.374177, -0.153759, 1.68189, 0.195384, -0.344328, 1.5329, -0.174694, 0.945768, -0.568341, 0.19683, 0.809628, 0.606571, -0.64244, -0.167191, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.19217, -0.414289, -0.262388, -0.229188, 0.0297334, -3.60669, 1.15745, -0.578703, -0.150064, -0.0456723, 0.479745, -0.535335, -0.461686, 1.55248, 0.631447, 0.0663496, -0.352968, -0.126658, 1.06651, -0.657428, -0.236234, -0.3342, 0.166687, -0.521275, 0.597325, -0.443828, 0.0148294, 1.33383, -0.14088, -0.479834, -0.340167, -0.413719, -0.112976, 0.617456, 0.0598796, -1.68359, -0.739727, -0.0523184, -0.17983, -1.15066, 0.566854, 1.4416, 0.701746, -0.17997, -10.2331, 0.540212, 0.328851, -0.154906, 0.163055, 0.828839, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.537816, 0.304623, 0.980378, 0.823439, 0.241198, 0.0679472, 0.749952, -0.319867, 0.259064, 0.137837, -0.0534346, 0.66171, 1.09855, -0.846345, 0.0704634, 1.04816, -1.2804, 0.358697, -2.43057, 0.106455, -0.315425, -0.0327675, 0.298669, -1.01634, 0.248069, -0.448945, -0.0343551, 0.820013, 0.536327, -0.159268, 0.386554, 0.451473, -0.166905, -0.799267, -0.706789, 0.822864, -0.148248, 1.11849, 1.85274, 0.0512233, 0.810041, 0.455214, -0.587811, 0.323646, -0.781234, 0.469188, 0.164264, -0.371007, 0.31806, 0.817628, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.425989, -0.430753, 1.59827, -0.160187, 2.45972, 1.3993, 1.96559, 0.436301, -0.99187, 1.56438, 1.32361, -0.516806, 3.1722, 2.97141, 0.366083, 2.39836, 0.874711, 1.05402, 2.74687, 3.62745, -0.333164, -1.56625, -0.196593, -0.689048, -0.611381, 0.629051, 0.822166, -0.707589, -1.81231, 0.0346861, -1.06217, 0.764075, 0.885309, 0.648032, -0.236053, -0.524914, 2.35573, 2.45315, 2.64576, 1.23039, -1.08377, 5.06293, 1.2356, 0.753139, 1.45068, 0.380924, -0.264198, 0.218742, -0.277505, 0.625475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.528128, -0.599756, -0.459548, -0.670698, 2.58187, 0.25397, 2.74625, 0.976567, 0.317283, 0.0744727, 0.160827, -0.540475, 1.02549, 0.240894, 0.604543, -0.908146, -7.41668, -0.30953, -4.58728, -0.16076, 0.137852, -0.0649871, -0.540843, 1.42329, 0.103198, 0.0753793, 0.383643, 1.12381, 0.418667, 0.657781, -0.344481, 2.40343, -0.63384, 0.206566, -1.7943, 0.128981, 1.32004, 0.399761, 0.213163, 0.349468, 0.473109, 1.14672, 0.317502, -0.0408259, 1.39143, 0.0683526, 0.304335, 0.549674, 0.384775, 0.784689, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.208093, 0.249498, -0.68366, -0.509791, -0.827096, 0.148082, 0.577174, 0.0966715, 0.337784, 0.593047, 0.677903, -0.178696, 0.336379, -1.09027, 0.211474, -4.30899, 0.222611, -0.184031, -0.661347, 0.338008, 0.050999, 0.0931852, 0.215664, 0.665825, -0.234686, -0.103146, -1.37865, -0.0660658, 0.113493, -0.116325, -0.324513, -0.654147, 0.0287127, 1.5672, 0.138165, 0.382828, -0.45499, -0.326331, 0.447159, -0.312186, 0.166489, -0.956951, 0.207378, 0.632371, 0.138304, 0.0925387, -0.444887, -0.0164894, -0.0454074, -0.182084, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.180778, 0.581542, -0.558945, -0.112934, -0.292707, 1.11469, -0.548959, -2.54411, 0.366245, 0.523347, 0.484236, 0.692677, 0.876871, 0.402134, -2.30299, 0.669038, 0.84151, 0.118346, 0.150855, 1.33127, -0.162439, -0.302053, -0.299011, 2.04396, -2.81671, -0.444007, -0.483011, 0.640389, 0.451582, 0.522132, 0.666353, -0.136639, 0.102316, 0.764568, 0.315592, -4.33054, -6.63547, -1.04276, -0.711332, -0.255034, -0.39754, 0.108956, -0.38799, 1.647, 0.181621, -2.16977, -0.510727, -0.875766, 0.184465, 1.19129, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.204, 0.765898, -0.831273, 0.608848, 1.2356, 0.516256, 0.355478, 1.19086, 0.354754, -0.636326, -1.36843, 0.408708, -0.121355, 0.760117, 0.200852, 0.220974, -0.473654, 0.125513, 0.112314, 1.7, -0.0155929, -0.772712, 0.115642, -0.703515, -0.235998, -0.198081, 0.30539, 0.855134, 0.622871, -0.0614532, 0.170801, 1.56353, 0.0616132, 0.458275, 0.0753433, -0.659129, 0.0565176, 0.161465, 0.0419606, -1.34649, -0.106284, 2.19066, -0.226957, 0.147616, -1.93223, 0.454184, 0.293168, 0.71728, 0.649828, 0.95536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.112124, 0.249684, 0.325866, 0.360357, 0.793354, 0.148099, 0.323632, 0.737853, 0.264008, -0.437311, 0.060507, 0.204249, 1.22435, 1.60646, 0.353845, 0.969295, 0.209253, -0.475279, -1.23447, 1.67175, 0.0699601, -0.666548, 0.204039, 0.729156, 1.31332, 0.67928, 0.413439, 0.695484, 0.646281, 0.0547239, -0.799094, 0.260799, 0.297032, -0.783775, 0.154758, 1.01544, 0.822586, -0.849612, 0.306853, -0.183595, -0.502578, 1.22217, 1.32864, -1.27441, -2.00959, -0.856808, -0.457966, -0.372778, -0.119022, 0.690264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.203774, 0.0990577, 0.0519009, 0.312928, 0.984423, 1.90762, 1.26097, -0.99224, 0.915333, -2.11046, -0.678869, 0.153862, 0.872015, 0.137584, 0.196969, 0.350566, 0.813813, 1.33457, -0.975348, 1.01131, -0.276986, -0.530891, 0.165069, 1.22107, -0.232208, 0.711806, 0.411354, 1.09037, 1.74844, 0.0812854, -0.250431, 2.40708, 0.118313, 0.0871932, -1.05752, -1.36746, -1.03134, 1.51542, 0.471541, -0.802777, -1.15172, 1.89811, -1.07584, -0.256966, 0.620107, -0.300921, -0.377552, 0.578242, -0.635135, 0.407009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.365471, -0.274277, 0.263832, 0.594898, 1.59835, 1.22414, 0.672062, 1.18612, -0.811126, -0.845592, -0.342332, 0.410223, 3.72616, 1.71911, 2.22346, 1.62646, 1.14882, -0.411606, 1.68038, 0.875699, -0.154332, -1.05207, -1.16217, 1.91116, -3.9867, -2.26185, -0.230019, 0.552261, 3.07514, 0.548585, -0.0678515, 1.47717, -0.538328, 0.386429, 0.0130767, 1.13186, 0.260901, 0.857183, 0.932934, -0.675854, -0.0729025, 1.87044, 1.73962, -3.89964, 3.14485, -2.54948, -0.924977, 0.235005, 1.01216, -0.0744618, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.459083, 1.57556, -0.277949, -0.505118, 0.486545, 2.36653, 0.881136, -1.55428, 2.14976, 0.0405696, 1.29233, -1.09821, 0.515908, 1.6555, -0.602286, -2.34661, 0.824462, -2.56556, -0.322487, -1.24338, -0.51424, 0.535218, -1.41325, -1.69454, 0.276003, 1.23449, -1.66102, -1.22122, -1.17193, -1.77192, -1.46266, -2.37424, -1.30809, -1.17965, 0.0332652, 0.444926, 1.12369, -1.29331, 1.91602, 1.94411, 0.827722, -5.02975, 1.77144, -1.75484, -0.942405, -0.812602, -0.0415356, -0.0885402, -0.0692625, 0.314523, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.396893, 0.303752, 0.307544, -0.313884, 0.754998, -3.10822, 1.16513, -0.0416307, -0.332326, 0.826219, 0.104401, -0.57925, -2.82297, -0.462011, 0.477891, 1.56293, -0.337446, 1.85091, 1.57818, 1.38724, 0.273452, -0.431397, 0.252264, 0.00353684, -0.509451, -0.537279, 0.745224, -0.189887, 1.80895, -1.17482, 0.250447, 0.759178, -0.33216, 0.409328, -0.438925, -0.385748, -0.0913063, 0.770831, -1.53883, 0.202534, -0.418091, 0.723003, 1.25715, -0.0704835, 0.528718, 0.111045, -0.122836, -0.40433, 0.448716, -1.20809, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.443215, -0.125134, 0.184308, -0.480487, 1.18064, 1.03786, 0.273733, 0.746832, 0.242298, -0.20464, -0.805734, 0.314248, 0.257439, -1.22188, 0.26888, 1.3715, -0.543482, 0.164475, 0.537165, -0.224154, 0.147487, -0.0689711, 0.117424, 0.463786, 0.240089, 0.352112, 0.687823, 1.11462, 0.944903, 0.269583, -0.0835722, 0.220458, -0.620572, 0.216637, -0.338396, 0.946845, -1.51439, 0.897079, 0.807378, 0.258166, -1.67537, -0.0948739, 0.368187, -2.72878, 0.870687, -0.350954, 0.235059, -0.553151, 0.46257, 1.1989, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.120096, -0.365437, -0.575497, -0.503573, -0.752883, -1.44635, -1.30235, -0.366615, 0.726094, 0.45797, -0.714418, 0.46195, -0.357254, 0.472564, -0.166111, 0.845762, -0.305983, -0.539785, -0.318495, -0.736924, 0.145585, 0.219732, -0.255293, -0.0490089, 0.295364, -0.436236, -0.0752931, 0.662187, -0.560391, -0.290256, 0.397927, -1.17332, -0.0233637, -1.23555, 0.380556, -0.765674, 1.19795, 0.432324, -0.0594284, -0.402444, 0.533054, 0.866707, 0.105387, 1.29261, 0.415939, 0.143773, 0.214478, 0.256415, 0.0452497, 0.421411, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0869984, 0.631071, -0.161227, -0.232215, -2.87662, 0.237029, 0.647084, 0.510763, 0.48138, -2.02623, 0.451917, -0.124865, -0.829633, -0.0136932, 0.987289, -2.34454, -0.11756, 0.128372, 1.43691, -1.24105, -0.112413, 0.641305, 0.972622, -1.32519, -0.740149, -0.382436, 0.0571803, 1.03011, 1.99493, 0.441072, -0.366774, -0.608036, 0.688074, -0.0479732, 0.0364999, 0.661238, 0.539878, -3.9232, 0.400745, 0.192595, 0.320441, -0.876289, 0.428503, 0.545669, 1.22789, 0.393343, -0.466872, -1.07818, 0.990484, 0.318596, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.228758, -0.0868928, -0.57178, 0.9626, 0.590907, -1.05695, -0.359937, 0.893358, 0.00742671, 0.377919, 0.155408, -1.18242, -2.10028, 0.446625, -2.23872, 0.00687229, -0.542687, -0.46598, -0.50349, -0.860741, -0.214748, -0.342851, 0.843711, -1.10551, -0.968141, -0.748995, 0.055206, -0.878037, -2.58234, 1.27602, -0.251047, -0.811923, -0.757481, 0.13258, -0.345689, -1.95616, 0.897429, 1.95885, -1.03128, 0.639621, 0.0111209, -5.24699, 1.07512, 0.832787, -0.283557, -0.490558, -1.21508, -0.855663, -0.514525, -0.202133, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.548817, 0.607049, 0.672004, -0.661994, -0.3442, 0.970294, 1.23358, -0.330606, 1.05567, 0.854148, 1.6889, -0.41673, -0.636968, -0.384219, 0.52669, 1.04419, 0.853632, 0.402915, 1.32051, -0.39416, -0.273259, -0.266487, -0.186135, 2.15894, 0.893532, -0.466214, 1.0599, -1.045, 1.83422, -1.31307, -0.365634, 0.643211, 0.689958, 1.5789, -0.160259, -0.816039, 2.6805, 0.548073, 1.13082, -0.804494, 0.0469485, 1.55468, 1.25365, -3.00418, -0.265579, 0.718742, -2.09897, -1.05896, 0.0390939, -0.54869, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.160742, -0.490138, 1.16542, 1.33769, 3.37929, -0.243147, -1.69582, 0.908578, -0.258229, 0.414646, 0.322629, 0.742852, 0.752786, 1.17636, 1.41039, -0.117794, 0.499893, 1.37471, -1.38411, 2.09033, -0.469682, -0.702104, -0.14934, 1.08612, 0.216612, 0.854033, -1.07824, -0.829045, 5.49299, 0.305955, -0.411454, -1.62854, 0.382268, 1.30418, -0.0791567, 0.67608, -0.883081, 2.02868, -0.278317, -1.20426, 0.188271, -0.367454, -0.350322, -0.21055, 0.645667, 0.158456, -0.819087, 0.917416, -1.12607, -0.498303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.910533, -0.444163, 0.848638, 0.205655, -0.108881, 1.90569, 2.10234, 3.13703, 0.234105, 2.04099, 1.35298, -0.77965, 2.78603, 1.11111, -1.29713, 1.20766, 1.26982, 2.11527, -2.40233, 1.3419, -0.390891, -1.1029, -2.0857, 1.06195, -0.710624, 2.03453, 0.499698, 3.38077, -0.320942, 0.928177, 0.104654, 3.767, -0.158645, -1.88879, -0.634546, 0.0523672, 2.04359, 1.2071, 2.86683, 0.489094, -0.471472, 0.899404, 4.00363, 0.741319, 1.01127, -0.143855, -0.0913358, 0.193142, -0.908469, -0.942649, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.872091, 0.400272, -0.417216, 0.345583, 2.56935, 3.29104, 0.858658, 0.0788035, -0.157676, -0.0139974, -0.986203, -1.06327, 1.21771, -5.66596, 1.33957, 1.42625, 0.599599, 0.8756, 2.62138, 1.28119, -0.36843, -0.459241, 0.0490258, -0.709556, -1.21137, 0.022046, 0.363679, 2.05453, -0.27864, 0.167444, 0.91783, -2.3803, 0.0195392, -1.58984, -0.071664, 0.710727, 0.066762, 1.21875, 0.612306, -0.0120817, -0.488283, 1.05547, -1.32382, 0.555072, 4.34135, 0.189695, 1.12699, 0.595271, 1.02515, -0.16685, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.615985, 0.935347, 0.249999, -0.179526, -4.64714, 0.337652, -2.93056, -0.238119, -0.395288, -0.935039, 0.228925, -0.776929, 0.931793, -0.344176, -1.12897, 1.34237, 0.387263, 2.58947, -9.25667, -0.0305808, -0.19748, 0.259708, -0.381972, -0.992666, 0.122162, 0.926638, 0.197196, -0.757174, -1.52279, -0.751695, 0.246637, -2.38735, -0.383573, 1.62257, -0.456769, -0.510827, 0.941516, -0.204821, -0.0820671, -0.422189, 0.306361, 0.671993, -2.47615, -1.3166, 0.0912615, 0.619642, 0.693647, -1.18926, -0.795986, 0.104073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.408005, -0.214058, -0.593842, -1.1114, -0.132568, 1.34712, 0.613734, -1.0601, 0.616757, -0.457115, 0.405062, -0.239399, 1.55361, 0.132273, -0.317508, 1.4592, 0.282493, -0.118447, 0.190008, 0.0494312, -0.243068, -0.121074, -0.000284894, -0.528947, 0.665388, -0.559155, -0.407682, -1.00405, 0.373963, -0.176195, 0.261438, 0.147743, 0.0677102, -0.207176, 0.393048, 0.829226, 1.09159, 0.181486, -0.905613, -0.240901, 0.09338, 0.216288, 0.765836, -0.622347, 0.5881, 1.00174, 0.0173332, 0.704547, -0.00739633, 0.743701, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00633613, 0.311352, 0.902195, 1.01406, 0.860905, 2.10379, -1.45726, 1.84637, 1.55627, -0.744258, -0.0543296, 0.351163, 2.27366, 0.323043, 0.835041, 1.65427, 1.09705, 0.558704, 4.09999, 1.17475, -0.124282, -0.726771, -1.57936, 2.03387, 1.51233, -1.26064, 1.24238, 1.12602, 2.64112, -0.661756, 0.833656, 3.10191, -0.605398, 0.178415, -0.595322, -0.850676, -1.69205, -0.81865, 1.85227, -0.350939, -0.555682, -0.421065, 0.163697, 2.24115, 2.3715, -3.91, 0.175549, -0.0313463, 0.77177, 1.19087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2103, 1.8184, -0.770108, -1.84381, -0.848151, -2.97966, -2.09212, 1.22865, -0.0509153, 0.304083, 0.656632, -1.21396, 0.116687, -1.51661, -2.7461, -3.452, -1.66547, -4.06665, 0.871422, 0.236022, 0.172594, 0.601558, 0.548444, 1.72074, 0.276249, -0.182377, -3.73207, -1.6735, -0.260849, 0.480483, -1.24051, -1.81962, -0.300131, -3.33395, -0.560419, -2.33702, -1.78997, -0.753371, -3.06657, 0.607315, 0.572003, 0.071045, -0.00913311, -1.12927, -1.20721, 0.694977, -1.62439, 0.459628, 0.184461, -0.719037, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0509562, 0.0274806, -0.029538, 0.00439728, 0.0309931, -0.0516749, -0.034015, -0.0165129, -0.0413532, 0.0277317, 0.00259336, 0.0183568, -0.0294652, -0.0399124, 0.00471448, 0.0216759, -0.0445341, -0.0321625, -0.0268205, -0.0501158, -0.018372, -0.0432182, -0.0389966, -0.0201148, 0.0423783, -0.0179247, 0.0280943, -0.00274525, 0.00131101, -0.0324738, -0.0443104, -0.0274227, -0.016911, -0.0220723, -0.0414821, -0.00558483, -0.016121, 0.0387192, 0.0140896, -0.0288812, -0.0462375, -0.0297631, -0.0227896, -0.041329, 0.0181451, -0.0422195, 0.0380863, -0.0216147, 0.0460983, 0.0353366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.48867, 0.397754, 0.409398, -0.0988649, 0.384527, 0.498958, 1.20701, 0.305174, -0.22194, 0.654353, 0.479572, -0.451414, 0.672763, -0.142988, -0.400984, -1.59142, 0.586819, 0.0912496, 2.28525, -0.83282, 0.102236, 0.243839, -0.34995, -1.61426, -0.475315, -0.313071, -2.1665, 0.673377, 1.80819, 0.963865, -0.4599, 0.129701, -0.314734, -0.0858296, -0.358234, 0.133353, 0.115776, -1.78872, -1.02948, 0.118693, -0.304883, -1.11803, 0.569161, -0.0317809, -1.96843, 0.226338, -0.246102, 0.164127, 0.318216, -0.315147, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.78573, -3.22682, 1.36701, 0.170948, -0.297211, -1.21607, 0.30978, -1.35376, -1.15532, -1.89966, -1.97167, -0.474926, 0.811316, -0.897262, -0.457236, -0.145501, 0.273022, -0.528461, -2.49869, -2.03484, 0.110516, 0.796637, 0.865473, -3.41676, -1.14352, -0.908243, -1.33153, 1.18407, -0.735595, 0.192962, 0.462106, -0.856554, 0.575159, -2.67622, 0.373793, 1.58238, -5.18498, -3.06625, 0.672927, -2.05365, -0.900157, -1.04433, 0.956673, 0.523924, -3.60364, -1.90262, 1.529, -0.612652, 0.327077, -1.24835, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.644534, 0.185755, 0.717957, -3.84959, -0.855529, -0.360061, -4.54456, 0.767192, -0.706356, 0.365109, 0.0304124, -0.316075, 3.58531, -0.552948, -0.737778, 0.673664, -0.213084, 2.43293, -1.53889, -3.74901, 0.697627, 1.21923, 0.00500743, -0.727706, 0.0916197, -0.361667, 0.17982, -2.6972, -0.69651, 0.110908, -0.431562, 0.816796, -1.24773, -5.15748, 0.221692, 1.25082, 0.614879, -2.64769, -1.66838, 0.672916, 1.28787, -1.08774, -0.580349, -1.4884, -3.63109, 1.32671, 0.00650344, -0.0601891, 1.43726, 0.185955, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.265, -0.4531, 0.2417, -0.2654, 0.9844, 1.504, 1.781, -1.336, 1.562, 1.695, -1.326, 0.3323, 1.359, 1.317, 1.796, 0.5894, -0.914, -0.6836, -1.586, -0.7637, -0.1664, -0.7705, 0.007393, 1.58, 1.176, -1.862, 0.6494, -2.732, -1.774, 0.2181, 0.4392, 1.025, 0.414, 0.7876, 0.416, 1.883, 1.057, 2.727, 2.695, 0.9336, 0.0873, 1.823, -1.77, 1.581, 2.975, -2.027, 0.0995, -0.802, -0.411, -0.2617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1083, 0.1261, -0.2625, 0.315, 0.2363, -1.408, 1.275, 0.1288, -0.06903, 0.2407, -0.8223, -0.003134, -0.719, 0.04556, -0.295, 0.4949, 0.4724, 1.709, 1.2705, 0.3977, 0.03763, 0.01547, 0.3538, 0.10376, -0.585, 0.771, 0.0672, 1.528, -1.609, 0.4724, -0.6006, 0.3762, 0.012566, -0.41, -0.1525, 0.4631, 1.166, 1.164, 0.996, 0.964, -0.0948, -2.078, 1.9, 0.4453, 0.8965, 0.2668, -0.4722, -0.16, -1.681, 0.3767], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3079, -0.4895, -0.2168, -0.3662, -2.482, -0.201, -0.3965, -2.342, -0.4033, -1.932, -0.9604, -0.4758, -1.451, 0.1517, 0.623, 2.275, -0.2532, -1.062, -1.417, 1.084, 0.1442, 0.3696, 0.7, -1.387, 0.538, -0.619, 1.178, -0.1913, -1.733, 0.3547, 0.475, 0.1853, 0.6934, -0.6963, 0.9385, -0.5547, 1.59, -1.73, 1.784, 0.9146, -0.07056, -2.479, -0.281, -0.1396, -0.6313, 0.3386, 1.303, -0.4407, 0.00593, -1.047], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02298, 0.34, -0.2769, -0.01984, 2.828, 0.7705, -0.2886, -0.78, -0.4236, -0.6953, 0.4263, -0.06726, -0.78, 0.1576, 0.3972, -0.4648, 0.04834, -0.4556, 0.1775, 1.19, -0.05585, -0.3513, -0.1578, 0.1142, 0.229, 0.4375, -0.5596, -1.517, 1.641, -0.3093, -0.8364, 0.785, 0.492, 1.055, 0.0955, -0.842, -0.2898, 2.512, 0.3625, 0.0342, -0.11707, 0.3955, -0.507, 0.88, 1.43, 0.09204, 0.3054, 1.461, 0.011055, -0.11285], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3867, -0.0805, 0.0785, -0.2942, -0.0315, -0.1313, -0.1705, -1.889, 0.0721, -0.08435, -1.212, 0.1376, -1.963, 2.47, -3.186, 1.576, 0.76, -0.7886, 1.777, -2.236, 0.478, 0.00506, 0.1575, -0.07196, 0.8604, -0.01274, 0.6465, -1.744, -2.664, 0.277, -0.3794, 0.2489, -0.3147, 2.232, 0.03317, 2.38, -0.6377, 0.599, 1.588, -0.5527, 0.1104, 3.275, -0.7007, -1.592, 0.639, -0.905, 0.805, -1.712, 0.8657, 0.4229], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0153, -0.04422, -0.0454, 0.003029, 0.02141, -0.0008383, 0.0424, -0.04144, 0.02339, -0.02281, -0.03983, 0.01881, -0.007626, 0.014046, -0.02713, -0.003393, 0.03476, 0.02258, 0.04788, 0.05624, -0.0524, -0.0554, -0.02098, -0.05118, 0.04288, -0.0563, 0.00382, 0.005074, -0.01409, 0.03162, -0.016, 0.01952, -0.014915, -0.0405, 0.01119, -0.02591, -0.03186, -0.01918, 0.0412, -0.02087, -0.04767, 0.04657, -0.00448, 0.0315, 0.0084, -0.07733, -0.007156, 0.000773, 0.04105, 0.007145], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.04684, -2.492, -0.96, 0.478, -1.651, -6.63, -1.05, -7.44, 0.4, 2.033, -0.7812, -0.2698, -3.99, -1.009, -1.398, 0.1254, -0.322, -1.902, -1.39, -7.27, -0.338, -0.3757, 0.322, 0.264, 0.1342, -1.088, -0.01311, -1.37, 1.837, 0.0577, -0.3687, 0.8936, 0.7124, 0.5547, 0.4233, -0.3513, -0.0882, 1.784, -1.798, 0.5396, 0.618, 1.593, 1.296, -1.822, -1.956, -2.107, -0.515, 1.131, 0.95, 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, 0.667, 0.11694, -0.575, 0.4783, 1.437, -1.213, 0.2047, -0.4202, -0.07794, -0.69, -0.1908, 1.349, 0.2421, 0.6274, -0.8013, -1.631, 0.12366, -0.866, -2.676, 0.826, -0.7876, -0.602, -0.2406, 1.996, 0.824, -0.03857, 0.3074, 1.605, 2.72, -0.4595, 0.4016, -0.0757, 0.2104, 1.922, 0.1648, -2.273, 0.664, 0.9473, 0.5137, -0.5605, -0.1521, -1.178, -0.1592, -0.3577, 0.6426, 0.11, 0.832, 0.1932, 0.05106, -0.08856], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.287, 0.6045, 0.5728, -1.534, -2.129, 0.08777, 3.47, 2.38, 0.1721, 3.092, 1.208, -0.7524, 1.221, 1.16, 1.116, 4.12, 1.258, 2.377, 3.836, 0.7383, 1.311, 2.088, 2.406, 0.4897, -0.00965, 0.05112, 2.6, 0.263, 0.421, 1.68, 1.355, 1.323, 0.0731, 0.455, 1.236, 3.363, 6.527, -0.751, 2.535, 2.334, 3.56, 0.05377, 3.207, 2.959, 0.608, 3.53, 2.744, -0.2927, 2.756, 1.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.503, -0.758, 0.5786, 0.951, 3.203, 1.203, -2.76, 0.9663, -0.589, 2.072, 0.473, 1.439, 1.935, -0.97, 0.3076, 2.291, 1.205, 1.466, 1.98, 2.38, -0.8335, -0.8936, -0.185, 2.502, 0.7715, 1.237, 1.503, 3.377, 1.321, -2.83, -1.786, 0.06137, -0.859, 3.23, -1.018, -1.883, -0.9917, 2.518, 1.521, 0.09985, -0.251, -3.54, 1.515, 3.094, 1.335, 0.175, -1.066, 1.042, -3.695, 0.1558], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00841, -0.01093, -0.05286, 0.006157, -0.01533, 0.000738, 0.003504, -0.0321, -0.01088, 0.03442, -0.02512, -0.0458, 0.04535, -0.02242, 0.02846, 0.01978, 0.01481, 0.001197, -0.05322, 0.02505, -0.0206, -0.001176, -0.05096, -0.05133, -0.04523, 0.0002959, 0.01823, 0.002209, 0.00974, -0.001438, 0.01428, -0.02335, -0.04254, 0.01674, -0.04056, 0.007366, -0.04007, -0.03525, -0.00879, -0.05014, -0.01967, -0.03613, -0.0374, -0.001355, 0.01738, -0.01383, -0.0441, -0.01126, 0.005028, 0.0195], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1465, 1.081, -0.4172, 0.11206, -3.793, 0.3293, -2.96, 0.8184, -0.03958, 1.015, 0.4985, -1.399, -0.05548, 0.9624, -0.9106, 2.828, 1.599, -0.599, 0.1656, -0.2465, 0.608, 0.3066, -0.4922, -3.016, -0.3928, 0.6646, 1.459, -3.777, -3.967, -0.1201, 0.501, -4.527, 0.0401, 0.664, 0.3367, -1.369, -2.605, 3.617, 0.9907, -2.941, 0.3977, 1.384, -2.47, 1.634, 0.8564, -0.2988, -0.972, 0.02576, 0.471, -0.3647], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2219, 0.07855, 0.2998, 1.05, -2.693, 1.187, 0.8154, 0.05606, 0.2847, 1.029, 0.2659, 0.4546, -2.074, 0.1577, 0.2284, 0.3015, 0.1942, -0.1229, 1.4375, 1.152, -0.1818, -0.1602, 0.3386, 1.204, 0.1575, 0.0925, -0.2937, -0.5864, 2.21, 0.3838, 0.0596, 1.351, -0.11816, -0.001257, -0.6855, -0.4712, -1.231, 1.834, -0.6895, -0.3523, 0.08887, -0.907, 0.789, 0.1256, 1.505, 0.2217, 0.03397, 0.527, -0.834, -0.1466], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.704, -0.1427, 0.5312, -1.282, -3.094, 0.533, 1.112, 0.269, 0.2683, -0.04587, 1.424, -0.5317, 1.87, 1.013, 0.2479, -1.187, -0.252, -0.04047, 2.652, 0.567, -0.14, -0.11084, -0.8657, 0.1569, -0.963, 0.208, 0.6465, 1.099, 1.334, -1.3545, -0.3857, 2.38, -0.01837, -0.10254, -0.3867, -0.898, 0.9746, -0.01213, -0.977, 0.2404, 0.251, -0.736, 0.513, 1.62, 2.64, 0.6406, -0.2786, 0.03607, -1.134, -0.1979], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0701, 0.268, 0.3096, -0.4805, -2.145, -1.1875, 3.365, -0.039, 0.1172, 0.5264, 0.6387, -0.4934, 2.223, 1.539, 0.269, 1.157, -0.6147, 1.31, 2.205, -3.193, 0.005116, -0.4607, 0.4124, 0.3647, 1.002, -0.5894, 0.12244, 2.318, -0.1313, -0.0738, -0.4304, 2.09, 0.2006, -1.7295, -0.77, 0.4229, 0.02829, -1.831, 1.44, -0.683, 0.2537, 2.312, 1.189, 0.952, 0.8096, 0.2053, 0.62, 0.9165, -0.1987, 0.67], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05255, -0.06537, -0.4644, -0.159, 0.0715, -0.35, -0.1968, 0.8926, -0.639, -0.2896, 0.4487, -0.09375, 0.10986, -0.914, 1.367, -0.547, 0.5176, 0.4368, -0.1355, -1.017, 0.0933, -0.0591, 0.399, -0.0726, 0.0441, -0.443, -0.2184, 0.6406, -1.486, -0.219, -0.0937, 1.086, -0.344, 0.9175, 0.06915, 0.9307, -1.435, -0.8677, 0.3513, 0.446, 0.358, -0.758, -0.4421, 0.1117, 0.00808, 0.1932, -0.1581, -0.3953, 0.2328, 0.01973], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4824, 0.9224, 0.8843, 1.561, 1.14, 2.53, 1.508, 0.1342, -0.546, 0.1187, 0.8784, 0.367, -0.02266, -0.233, 0.0515, -0.7905, -0.444, 1.567, 1.685, 2.281, -0.2489, -0.502, 0.1351, 2.908, 0.518, 0.584, -0.06647, 0.48, 1.657, -0.006817, -0.5513, 0.9316, -0.6226, 0.595, -0.9907, -0.3618, -1.562, 2.148, 0.10626, -1.277, -0.276, 0.3677, 1.117, 0.7954, 1.347, 0.01539, 0.06024, 1.224, -1.559, 0.3665], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.535, 0.699, -0.4656, -0.3914, -0.3127, -2.885, -0.774, 0.04123, -0.8687, -0.2402, 0.1754, 0.001078, 0.3684, -0.783, -0.03128, -1.787, -0.4055, -0.007473, 0.7563, 0.07526, -0.04773, 0.167, 0.05313, -1.828, -1.637, 0.197, 0.3472, -0.4175, -0.5264, 0.2703, 0.5493, 0.387, -0.1896, -1.161, 0.4548, -0.05664, -3.215, -1.82, -1.621, -1.219, 0.1098, -0.1203, 0.3687, 0.349, -1.631, -1.309, 1.355, -0.01833, -0.08545, -0.6743], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4473, 0.533, 0.3345, -0.4558, 0.3809, 0.517, 1.699, 1.299, -0.0395, 0.577, -0.4321, 0.04752, 1.627, 0.002537, -0.04037, 0.7646, 0.1687, -1.307, 1.018, -1.061, -0.3127, 0.2114, 0.327, 0.608, 0.2688, -0.3298, -0.6074, 0.7046, -0.2947, 0.5537, -0.00763, -0.6157, 0.1364, 0.9766, -0.1869, -1.054, 0.2947, -3.4, -0.05142, 0.5527, 0.2795, 0.956, 1.609, -0.4873, 0.1284, -1.576, -0.05304, -0.4797, -0.397, -1.364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2054, 0.477, 0.6104, 1.044, -0.004494, 1.366, 0.0989, 0.9863, 0.1737, -0.2517, 0.3335, 0.4807, -1.957, 0.5703, -1.171, 0.0605, -0.1985, -0.2795, -1.5625, 0.05463, -0.2078, -0.4893, 0.3772, 0.7295, -0.6895, 0.3867, 0.566, -0.993, -1.539, -0.3877, -0.05585, 1.326, -0.4968, 0.8906, -0.2043, -0.3062, -1.225, -0.3262, 0.532, 0.004295, -0.045, 1.567, 1.466, 0.7515, 1.369, 0.05392, -0.1719, -0.05954, -0.7505, -0.0757], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0004256, -0.03494, -0.03915, 0.02303, -0.0485, -0.02887, -0.0529, -0.0314, 0.002956, -0.0391, 0.03143, -0.01024, -0.04202, -0.05627, -0.03302, -0.02025, 0.02147, -0.0415, -0.003242, -0.05096, -0.03705, -0.0589, -0.004066, -0.01441, -0.03262, 0.03102, -0.01185, -0.000923, 0.02548, 0.001134, -0.05695, 0.002031, -0.04733, -0.01114, 0.0082, 0.04404, 0.02092, 0.01584, 0.0236, -0.01509, 0.000911, 0.01144, 0.026, -0.00865, 0.03008, -0.05222, 0.01978, -0.06506, -0.05084, 0.01631], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3394, -0.5894, 0.704, 0.82, 0.7153, -0.58, 1.35, -0.2834, -0.1613, 0.2457, 0.4062, 0.1779, -0.696, 0.7397, -2.002, -0.2974, 0.629, 1.348, 0.6553, 0.8037, -0.07745, -0.2188, -0.4023, 0.5864, -1.362, 0.1041, 0.3394, 0.12006, -0.185, -1.568, 0.4575, 0.2686, -0.2869, -1.451, 0.1825, 0.01329, 0.3743, -0.1538, 1.682, 0.1954, -0.3442, 1.533, -0.1747, 0.946, -0.5684, 0.1968, 0.8096, 0.6064, -0.6426, -0.1672], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1921, -0.4143, -0.2625, -0.2292, 0.02974, -3.607, 1.157, -0.5786, -0.15, -0.0457, 0.4797, -0.535, -0.4617, 1.553, 0.6313, 0.06635, -0.353, -0.1267, 1.066, -0.657, -0.2362, -0.3342, 0.1666, -0.5215, 0.597, -0.4438, 0.01483, 1.334, -0.1409, -0.4797, -0.34, -0.4138, -0.113, 0.6177, 0.05988, -1.684, -0.7397, -0.0523, -0.1798, -1.15, 0.567, 1.441, 0.7017, -0.1799, -10.234, 0.54, 0.3289, -0.1549, 0.1631, 0.8286], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5376, 0.3047, 0.9805, 0.823, 0.2412, 0.06793, 0.75, -0.3198, 0.259, 0.1378, -0.05344, 0.6616, 1.099, -0.846, 0.07043, 1.048, -1.28, 0.3586, -2.43, 0.10645, -0.3154, -0.03278, 0.2986, -1.017, 0.248, -0.449, -0.03436, 0.82, 0.536, -0.1593, 0.3865, 0.4514, -0.1669, -0.7993, -0.707, 0.8228, -0.1482, 1.118, 1.853, 0.0512, 0.81, 0.4553, -0.588, 0.3237, -0.7812, 0.4692, 0.1643, -0.371, 0.318, 0.818], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.426, -0.4307, 1.599, -0.1602, 2.459, 1.399, 1.966, 0.4363, -0.9917, 1.564, 1.323, -0.5166, 3.172, 2.97, 0.366, 2.398, 0.8745, 1.054, 2.746, 3.627, -0.3333, -1.566, -0.1965, -0.689, -0.6113, 0.629, 0.8223, -0.7075, -1.8125, 0.0347, -1.0625, 0.764, 0.8853, 0.648, -0.2361, -0.525, 2.355, 2.453, 2.646, 1.23, -1.084, 5.062, 1.235, 0.753, 1.45, 0.3809, -0.2642, 0.2188, -0.2776, 0.6255], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5283, -0.5996, -0.4595, -0.671, 2.582, 0.254, 2.746, 0.9766, 0.3174, 0.07446, 0.1608, -0.5405, 1.025, 0.2408, 0.6045, -0.908, -7.418, -0.3096, -4.586, -0.1608, 0.1378, -0.065, -0.541, 1.423, 0.1032, 0.0754, 0.3835, 1.124, 0.4187, 0.6577, -0.3445, 2.404, -0.634, 0.2065, -1.794, 0.129, 1.32, 0.3997, 0.2131, 0.3494, 0.4731, 1.146, 0.3174, -0.04083, 1.392, 0.06836, 0.3044, 0.55, 0.3848, 0.7847], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2081, 0.2495, -0.6836, -0.51, -0.827, 0.1481, 0.577, 0.0967, 0.338, 0.5933, 0.6777, -0.1787, 0.3364, -1.09, 0.2114, -4.31, 0.2227, -0.1841, -0.661, 0.338, 0.051, 0.0932, 0.2157, 0.666, -0.2347, -0.10315, -1.379, -0.06604, 0.11346, -0.11633, -0.3245, -0.6543, 0.02872, 1.567, 0.1382, 0.3828, -0.455, -0.3264, 0.4473, -0.3123, 0.1665, -0.957, 0.2074, 0.6323, 0.1383, 0.0925, -0.4448, -0.0165, -0.0454, -0.1821], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1808, 0.5815, -0.559, -0.1129, -0.2927, 1.114, -0.549, -2.545, 0.3662, 0.5234, 0.4841, 0.693, 0.877, 0.402, -2.303, 0.669, 0.8413, 0.11835, 0.1509, 1.331, -0.1625, -0.302, -0.299, 2.045, -2.816, -0.444, -0.483, 0.6406, 0.4517, 0.522, 0.6665, -0.1366, 0.1023, 0.7646, 0.3157, -4.332, -6.637, -1.043, -0.7114, -0.2551, -0.3975, 0.10895, -0.388, 1.647, 0.1816, -2.17, -0.5107, -0.876, 0.1844, 1.191], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.204, 0.766, -0.831, 0.609, 1.235, 0.516, 0.3555, 1.19, 0.3547, -0.636, -1.368, 0.4087, -0.12134, 0.7603, 0.2008, 0.221, -0.4736, 0.1255, 0.1123, 1.7, -0.015594, -0.773, 0.11566, -0.7036, -0.236, -0.1981, 0.3054, 0.855, 0.623, -0.06146, 0.1708, 1.563, 0.0616, 0.4583, 0.0753, -0.659, 0.05652, 0.1615, 0.04196, -1.347, -0.10626, 2.191, -0.2269, 0.1476, -1.933, 0.454, 0.2932, 0.7173, 0.65, 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.1121, 0.2496, 0.326, 0.3604, 0.7935, 0.1481, 0.3237, 0.738, 0.264, -0.4373, 0.06052, 0.2042, 1.225, 1.606, 0.3538, 0.969, 0.2092, -0.4753, -1.234, 1.672, 0.06995, -0.6665, 0.204, 0.729, 1.313, 0.679, 0.4133, 0.6953, 0.6465, 0.05472, -0.7993, 0.2607, 0.297, -0.7837, 0.1548, 1.016, 0.8228, -0.8496, 0.307, -0.1836, -0.5024, 1.223, 1.329, -1.274, -2.01, -0.857, -0.458, -0.3728, -0.119, 0.6904], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2037, 0.09906, 0.0519, 0.313, 0.9844, 1.907, 1.261, -0.992, 0.9155, -2.111, -0.6787, 0.1538, 0.872, 0.1376, 0.197, 0.3506, 0.814, 1.335, -0.9756, 1.012, -0.277, -0.531, 0.165, 1.221, -0.2322, 0.712, 0.4114, 1.091, 1.748, 0.0813, -0.2505, 2.406, 0.1183, 0.0872, -1.058, -1.367, -1.031, 1.516, 0.4714, -0.8027, -1.151, 1.898, -1.076, -0.257, 0.62, -0.301, -0.3774, 0.578, -0.6353, 0.407], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3655, -0.2742, 0.264, 0.5947, 1.599, 1.225, 0.672, 1.187, -0.811, -0.8457, -0.3423, 0.4102, 3.727, 1.719, 2.223, 1.626, 1.148, -0.4116, 1.681, 0.8755, -0.1543, -1.052, -1.162, 1.911, -3.986, -2.262, -0.23, 0.5522, 3.074, 0.549, -0.0679, 1.478, -0.538, 0.3865, 0.01308, 1.132, 0.261, 0.8574, 0.933, -0.676, -0.0729, 1.87, 1.739, -3.9, 3.145, -2.549, -0.925, 0.235, 1.012, -0.07446], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.459, 1.575, -0.2778, -0.505, 0.4866, 2.367, 0.8813, -1.555, 2.15, 0.04056, 1.292, -1.099, 0.516, 1.655, -0.602, -2.346, 0.824, -2.566, -0.3225, -1.243, -0.514, 0.535, -1.413, -1.694, 0.2761, 1.234, -1.661, -1.222, -1.172, -1.771, -1.463, -2.375, -1.308, -1.18, 0.03326, 0.4448, 1.124, -1.293, 1.916, 1.944, 0.8276, -5.03, 1.771, -1.755, -0.9424, -0.8125, -0.04153, -0.08856, -0.0693, 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.397, 0.3037, 0.3076, -0.314, 0.755, -3.107, 1.165, -0.04163, -0.3323, 0.826, 0.10443, -0.579, -2.822, -0.462, 0.4778, 1.5625, -0.3374, 1.851, 1.578, 1.388, 0.2734, -0.4314, 0.2522, 0.003536, -0.5093, -0.537, 0.745, -0.19, 1.809, -1.175, 0.2505, 0.7593, -0.3323, 0.4094, -0.439, -0.3857, -0.0913, 0.771, -1.539, 0.2025, -0.4182, 0.723, 1.257, -0.0705, 0.529, 0.111, -0.12286, -0.4043, 0.4487, -1.208], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.443, -0.1251, 0.1843, -0.4805, 1.181, 1.038, 0.2737, 0.747, 0.2423, -0.2046, -0.8057, 0.3142, 0.2573, -1.222, 0.2688, 1.371, -0.5435, 0.1644, 0.537, -0.2241, 0.1475, -0.069, 0.11743, 0.4639, 0.2401, 0.352, 0.688, 1.114, 0.945, 0.2695, -0.08356, 0.2205, -0.6206, 0.2167, -0.3384, 0.947, -1.515, 0.897, 0.8076, 0.258, -1.676, -0.09485, 0.3682, -2.729, 0.8706, -0.351, 0.2351, -0.553, 0.4626, 1.199], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1201, -0.3655, -0.5757, -0.5034, -0.753, -1.446, -1.303, -0.3667, 0.726, 0.458, -0.7144, 0.462, -0.3572, 0.4727, -0.1661, 0.8457, -0.306, -0.5396, -0.3186, -0.737, 0.1456, 0.2197, -0.2554, -0.049, 0.2954, -0.4363, -0.0753, 0.662, -0.5605, -0.2903, 0.398, -1.173, -0.02336, -1.235, 0.3806, -0.7656, 1.198, 0.4324, -0.05942, -0.4023, 0.533, 0.8667, 0.1054, 1.293, 0.416, 0.1438, 0.2145, 0.2563, 0.04526, 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.087, 0.631, -0.1613, -0.2322, -2.877, 0.237, 0.647, 0.5107, 0.4814, -2.025, 0.452, -0.1249, -0.8296, -0.013695, 0.9873, -2.344, -0.11755, 0.1284, 1.437, -1.241, -0.1124, 0.641, 0.9727, -1.325, -0.74, -0.3823, 0.0572, 1.03, 1.995, 0.4412, -0.3667, -0.608, 0.688, -0.04797, 0.0365, 0.661, 0.54, -3.924, 0.4006, 0.1926, 0.3206, -0.8765, 0.4285, 0.546, 1.228, 0.3933, -0.4668, -1.078, 0.9907, 0.3186], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2288, -0.0869, -0.572, 0.9624, 0.591, -1.057, -0.3599, 0.8936, 0.007427, 0.378, 0.1554, -1.183, -2.1, 0.4465, -2.238, 0.006874, -0.5425, -0.466, -0.5034, -0.861, -0.2147, -0.3428, 0.8438, -1.105, -0.9683, -0.749, 0.0552, -0.878, -2.582, 1.276, -0.251, -0.812, -0.7573, 0.1326, -0.3457, -1.956, 0.8975, 1.959, -1.031, 0.6396, 0.01112, -5.246, 1.075, 0.833, -0.2834, -0.4905, -1.215, -0.8555, -0.5146, -0.2021], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.549, 0.607, 0.672, -0.662, -0.3442, 0.97, 1.233, -0.3306, 1.056, 0.854, 1.688, -0.4167, -0.637, -0.3843, 0.527, 1.044, 0.8535, 0.4028, 1.32, -0.394, -0.2732, -0.2666, -0.1862, 2.158, 0.8936, -0.4663, 1.06, -1.045, 1.834, -1.313, -0.3657, 0.643, 0.69, 1.579, -0.1603, -0.816, 2.68, 0.548, 1.131, -0.8047, 0.04694, 1.555, 1.254, -3.004, -0.2656, 0.7188, -2.1, -1.059, 0.0391, -0.549], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1608, -0.4902, 1.165, 1.338, 3.379, -0.2432, -1.696, 0.9087, -0.2583, 0.4146, 0.3225, 0.7427, 0.753, 1.177, 1.41, -0.1178, 0.5, 1.375, -1.384, 2.09, -0.4697, -0.702, -0.1493, 1.086, 0.2166, 0.854, -1.078, -0.829, 5.492, 0.306, -0.4114, -1.629, 0.3823, 1.304, -0.07916, 0.6763, -0.8833, 2.03, -0.2783, -1.204, 0.1882, -0.3674, -0.3503, -0.2106, 0.6455, 0.1584, -0.819, 0.9175, -1.126, -0.4983], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9106, -0.444, 0.8486, 0.2057, -0.1089, 1.905, 2.102, 3.137, 0.2341, 2.041, 1.353, -0.78, 2.785, 1.111, -1.297, 1.208, 1.27, 2.115, -2.402, 1.342, -0.3909, -1.103, -2.086, 1.062, -0.7104, 2.035, 0.4998, 3.38, -0.321, 0.928, 0.1047, 3.768, -0.1587, -1.889, -0.635, 0.05237, 2.043, 1.207, 2.867, 0.489, -0.4714, 0.8994, 4.004, 0.741, 1.012, -0.1438, -0.0913, 0.1931, -0.9087, -0.943], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.872, 0.4004, -0.4172, 0.3457, 2.57, 3.291, 0.859, 0.0788, -0.1577, -0.014, -0.9863, -1.063, 1.218, -5.664, 1.34, 1.426, 0.5996, 0.8755, 2.621, 1.281, -0.3684, -0.4592, 0.049, -0.7095, -1.211, 0.02205, 0.3638, 2.055, -0.2786, 0.1675, 0.918, -2.38, 0.01955, -1.59, -0.07166, 0.711, 0.0668, 1.219, 0.6123, -0.012085, -0.4883, 1.056, -1.324, 0.555, 4.34, 0.1897, 1.127, 0.595, 1.025, -0.1669], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.616, 0.9355, 0.25, -0.1796, -4.65, 0.3376, -2.93, -0.2382, -0.3953, -0.935, 0.2289, -0.777, 0.9316, -0.3442, -1.129, 1.343, 0.3872, 2.59, -9.26, -0.03058, -0.1975, 0.2598, -0.382, -0.9927, 0.1222, 0.927, 0.1971, -0.7573, -1.522, -0.7515, 0.2466, -2.387, -0.3835, 1.623, -0.4568, -0.5107, 0.9414, -0.2048, -0.0821, -0.422, 0.3064, 0.672, -2.477, -1.316, 0.09125, 0.6196, 0.694, -1.189, -0.796, 0.10406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.408, -0.2141, -0.5938, -1.111, -0.1326, 1.347, 0.614, -1.061, 0.6167, -0.457, 0.405, -0.2394, 1.554, 0.1323, -0.3176, 1.459, 0.2825, -0.11847, 0.1901, 0.04944, -0.243, -0.1211, -0.000285, -0.529, 0.6655, -0.559, -0.4077, -1.004, 0.374, -0.1761, 0.2615, 0.1477, 0.0677, -0.2072, 0.393, 0.829, 1.092, 0.1815, -0.906, -0.2408, 0.0934, 0.2163, 0.7656, -0.6226, 0.588, 1.002, 0.01733, 0.7046, -0.007397, 0.7437], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.006336, 0.3113, 0.9023, 1.014, 0.861, 2.104, -1.457, 1.847, 1.557, -0.744, -0.05432, 0.351, 2.273, 0.323, 0.835, 1.654, 1.097, 0.5586, 4.1, 1.175, -0.12427, -0.7266, -1.579, 2.033, 1.513, -1.261, 1.242, 1.126, 2.64, -0.6616, 0.8335, 3.102, -0.6055, 0.1785, -0.595, -0.8506, -1.692, -0.819, 1.853, -0.3508, -0.5557, -0.4211, 0.1637, 2.24, 2.371, -3.91, 0.1755, -0.03134, 0.772, 1.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.21, 1.818, -0.77, -1.844, -0.848, -2.98, -2.092, 1.229, -0.0509, 0.3042, 0.6567, -1.214, 0.1167, -1.517, -2.746, -3.451, -1.665, -4.066, 0.8716, 0.236, 0.1726, 0.6016, 0.5483, 1.721, 0.2764, -0.1824, -3.732, -1.674, -0.2607, 0.4805, -1.24, -1.819, -0.3, -3.334, -0.5605, -2.338, -1.79, -0.7534, -3.066, 0.6074, 0.572, 0.07104, -0.00913, -1.129, -1.207, 0.695, -1.624, 0.4597, 0.1844, -0.719], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05096, 0.02748, -0.02954, 0.0044, 0.03099, -0.05167, -0.03403, -0.01651, -0.04135, 0.02773, 0.002594, 0.01836, -0.02946, -0.03992, 0.004715, 0.02168, -0.04453, -0.03217, -0.02682, -0.0501, -0.01837, -0.0432, -0.039, -0.02011, 0.0424, -0.01793, 0.02809, -0.002745, 0.001311, -0.03247, -0.0443, -0.02742, -0.0169, -0.02208, -0.04147, -0.005585, -0.01613, 0.03873, 0.01409, -0.02888, -0.04623, -0.02977, -0.0228, -0.04132, 0.01814, -0.0422, 0.0381, -0.02162, 0.0461, 0.03534], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4888, 0.3977, 0.4094, -0.0989, 0.3845, 0.499, 1.207, 0.3052, -0.2219, 0.6543, 0.4795, -0.4514, 0.673, -0.143, -0.401, -1.592, 0.587, 0.09125, 2.285, -0.833, 0.10223, 0.2439, -0.3499, -1.614, -0.4753, -0.313, -2.166, 0.6733, 1.809, 0.964, -0.46, 0.1298, -0.3147, -0.0858, -0.3582, 0.1333, 0.1158, -1.789, -1.029, 0.1187, -0.305, -1.118, 0.5693, -0.03177, -1.969, 0.2263, -0.2461, 0.1642, 0.318, -0.3152], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7856, -3.227, 1.367, 0.1709, -0.297, -1.216, 0.3098, -1.354, -1.155, -1.899, -1.972, -0.4749, 0.8115, -0.8975, -0.4573, -0.1455, 0.273, -0.5283, -2.498, -2.035, 0.11053, 0.797, 0.865, -3.416, -1.144, -0.908, -1.331, 1.184, -0.7354, 0.193, 0.4622, -0.8564, 0.575, -2.676, 0.3738, 1.582, -5.184, -3.066, 0.673, -2.053, -0.9004, -1.044, 0.9565, 0.524, -3.604, -1.902, 1.529, -0.613, 0.3271, -1.248], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6445, 0.1858, 0.718, -3.85, -0.8555, -0.36, -4.543, 0.767, -0.7065, 0.365, 0.03041, -0.3162, 3.586, -0.5527, -0.738, 0.674, -0.2131, 2.434, -1.539, -3.748, 0.6978, 1.219, 0.00501, -0.7275, 0.0916, -0.3616, 0.1798, -2.697, -0.6963, 0.1109, -0.4316, 0.817, -1.248, -5.156, 0.2217, 1.251, 0.6147, -2.648, -1.668, 0.673, 1.288, -1.088, -0.5806, -1.488, -3.63, 1.327, 0.006504, -0.06018, 1.4375, 0.1859]]
[-2.15674, -3.22495, -1.02033, 0.950154, 0.0840506, -0.0186542, 0.293301, -1.00072, 1.79445, -1.18848, -0.0261749, 0.462902, 0.0826451, -0.466388, -2.29081, 0.154523, 1.07079, 0.0936854, -2.04768, 1.20679, -0.0189353, -0.582104, -0.806404, -2.41985, -4.54864, -1.1103, -0.671971, 0.890811, -1.04141, 2.08079, 0.802197, 0.286884, -2.20878, -0.581339, -0.555668, 0.211378, 0.180936, 0.845323, -2.14989, -0.0875939, -3.03619, -3.29641, 0.913547, -1.79176, -0.972374, 1.00209, -0.00607805, 2.33785, -2.55795, 0.345064, -2.156, -3.225, -1.0205, 0.95, 0.08405, -0.01866, 0.2932, -1.001, 1.795, -1.188, -0.02617, 0.463, 0.08264, -0.4663, -2.291, 0.1545, 1.07, 0.0937, -2.047, 1.207, -0.01894, -0.582, -0.8066, -2.42, -4.547, -1.11, -0.672, 0.8906, -1.041, 2.08, 0.8022, 0.2869, -2.209, -0.5815, -0.5557, 0.2114, 0.1809, 0.845, -2.15, -0.0876, -3.037, -3.297, 0.9136, -1.792, -0.972, 1.002, -0.006077, 2.338, -2.559, 0.345]
ReLU
[[1.43112, 4.31301, -0.301041, -0.605254, 0.320094, -0.0317215, 1.37374, -4.86013, -0.920163, -1.64619, 0.0370772, 1.31094, 2.25752, 0.304059, 0.880832, 2.40299, 0.0196916, -0.679549, -1.17627, -1.54233, 0.00745565, 2.35344, 1.95514, -0.256025, 1.62532, -0.59479, 3.0106, 1.65058, 2.18032, -1.14437, -0.542448, -0.0567694, -0.245443, 3.69616, -0.691522, 1.35579, 1.02104, 1.74792, 2.50789, -0.574834, -3.04771, 0.067748, -0.450876, 5.05651, 1.18493, 2.5475, 0.0372587, 0.0251881, 2.45308, 0.390095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.375541, -1.00134, -0.493168, -0.535149, -0.081944, -0.0242433, -0.172832, -2.01816, 0.523452, -2.45396, 0.0157927, 0.463404, -1.42426, -6.13992, -4.28411, 1.5685, -1.13004, -3.87854, -1.73203, -1.58984, -0.0194692, -0.835688, 0.937317, -1.14801, -2.8622, -2.59055, -1.32438, 1.889, -0.55322, 0.481685, 1.44046, -0.0858688, -0.807697, -2.74562, 1.0133, -1.22921, -1.14319, -1.53232, 1.5713, -0.746488, -5.06944, 0.172506, -0.750965, -0.357661, -2.62213, 0.213876, 0.0426767, -0.0903622, 1.68298, -0.465945, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05433, -1.45399, -0.248167, -0.276648, -0.146764, 0.033715, 1.18733, -0.406442, -0.272846, -0.402211, -0.0439628, 0.399221, 1.3189, 0.213478, -0.892199, 0.159029, 0.0482981, -0.82216, 1.18645, 0.111801, -0.0201364, 1.91306, 2.07595, 0.533435, 0.135415, 1.25716, -0.553555, -0.393184, -1.53994, 0.972832, 0.283635, -0.172163, 0.188071, 2.9551, -0.532452, 0.0902278, 0.453125, 0.258604, -0.363336, -0.455931, 0.0715109, 0.261768, 0.551592, 1.78964, 0.161119, 1.21592, -0.0425497, -0.193654, -0.357986, 0.194884, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0366798, -0.0288573, 0.00601152, -0.027567, -0.0231012, 0.0283142, 0.015515, -0.00642077, -0.00646096, -0.0363672, -0.0155045, -0.0327006, -0.0582852, -0.0435608, -0.0303585, -0.0237043, -0.00955869, -0.0278246, -0.0354703, -0.0122727, 0.0107847, 0.00521221, 0.0415514, 0.0217202, 0.0187732, -0.0129856, -0.0460962, 0.0274296, -0.0416315, -0.0509321, 0.0267527, 0.0201962, 0.0145166, 0.0401045, 0.0280718, -0.0292937, -0.0481904, 0.0267864, -0.00824184, -0.00670983, 0.023663, 0.0215109, -0.0350019, 0.00802254, 0.0117805, -0.0451424, -0.0502905, -0.00371956, 0.0335945, -0.0394815, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.91469, 4.69983, 0.0297228, -5.1931, -1.65702, -0.0519868, 2.98272, -2.21397, 1.27426, -3.75424, 0.00828375, 2.3221, -6.85765, -4.75191, -1.83898, -0.762838, -3.54298, -0.0405965, 1.11045, -1.7034, -0.0683914, -1.69744, -5.11911, 3.34521, -0.762356, -6.68231, -3.24378, 0.996496, -3.42275, 1.38786, -1.64985, -5.31552, 1.56783, -0.126951, 0.300037, -2.66352, 0.577961, 1.82514, -1.55316, -3.75532, -0.218726, -1.02326, -2.55658, 1.09269, -2.62615, 2.4104, -0.0370752, -1.2738, 2.53268, 0.655084, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.496835, -3.20558, 0.209267, -0.121703, -0.0826702, -0.0254996, -0.0466714, -0.410526, -0.0874608, -6.23006, 0.00538334, 0.503734, 0.801143, 0.830936, -3.55007, 1.09462, -0.0172379, -3.47682, 1.68778, 0.0651064, 0.0107928, 0.00554289, -2.40633, -0.696298, -2.56562, -1.26349, 0.447752, 0.0397329, -1.53062, 0.0447663, -0.989248, 0.074525, 0.627763, 0.689348, -0.224957, -1.1538, -0.0339904, -0.371123, -0.712386, -0.924592, -1.21474, -0.715907, -0.32747, 1.32614, -0.907558, -0.210121, 0.0470235, 0.433511, -0.534272, -0.16323, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.99274, 0.867363, -0.645997, -0.234737, 1.05508, -0.00712833, -0.190058, -2.64529, -0.054897, -0.376856, -0.0360816, 0.25914, 0.14621, 0.367758, 0.564164, 1.07701, 0.338142, -3.20702, -0.204685, 0.246962, -0.0301885, -1.05481, 1.12267, -0.521493, 1.48399, -0.33883, -0.143307, -1.73456, 0.291422, 0.231959, -0.653756, -2.30267, 1.0349, -1.05985, -0.673254, 0.0971955, 0.299942, 1.43188, -1.92529, -0.180769, -0.238849, -1.45497, -1.22677, 0.0729619, -0.920065, -0.0984032, -0.0184434, -0.968966, 0.713281, 0.481144, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.011999, 0.357741, -0.316217, 0.0699181, -0.251312, 0.0499589, 0.36967, 0.437432, -0.0113047, -0.0817194, 0.0312171, 0.150834, -0.230101, -0.190676, 0.28357, -0.0333748, 0.0455894, 0.221744, 0.0447313, -0.396244, -0.0212227, -0.197677, -0.301812, 0.280591, 0.222307, -0.06065, -0.14207, -0.359256, 0.438173, -0.163891, -0.493573, -0.242914, -0.352188, -0.17116, -0.0666412, 0.00021323, -0.0768797, -0.218365, 0.162532, -0.118214, -0.110926, 0.421289, 0.027952, -0.661037, -0.043695, -0.53601, 0.0271603, 0.19645, 0.0400089, 0.141249, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2054, -1.54507, 0.235671, -0.680451, -2.71754, -0.0312155, -2.82901, -3.22473, 0.616441, -4.56153, 0.019746, 0.606904, -1.68921, -0.509465, 0.647287, -0.88157, 0.184298, -0.705644, -4.1386, -2.77259, 0.0195953, -2.24734, 1.41616, -4.87388, -5.43835, -2.04042, -1.32197, -1.43969, -1.68228, -1.82792, -1.69099, -2.18002, -3.81864, -0.317402, -4.19236, 0.400587, -2.07979, -2.00599, 0.252308, -1.00333, -3.60217, -3.43485, -3.35879, 1.04273, -3.73505, -0.871636, -0.0185542, 1.54545, -2.20623, -0.404052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0208859, -0.600033, 0.345976, -4.80122, 1.05722, -0.0344279, -1.82906, -2.05727, 0.359214, -0.151824, -0.006459, -0.109503, -0.0691314, -0.553343, 0.805543, -1.23336, -0.859197, 0.49068, 5.06183, -0.306285, 0.025505, -3.18298, -1.95366, 1.37051, 1.83203, -2.43211, -0.204526, -2.03787, 0.76676, -4.1976, -2.5169, 2.44084, 1.00767, -1.93165, -0.0900162, -1.21949, -2.63835, -1.23698, 1.0344, -4.52283, -3.50728, -0.51581, -0.862584, -4.37138, -1.29396, 5.19159, 0.00249593, -2.93744, -2.80131, -2.25577, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.509354, -0.27801, 1.6245, 1.49401, -1.45314, -0.00658771, -0.753158, -0.646832, 1.49991, 0.364423, 0.00372731, -0.020489, 2.4237, 0.197235, -4.88253, 0.773379, -0.170332, -2.628, -1.58001, -0.108706, 0.0310911, 1.9124, -1.39101, -1.46225, -0.0331895, -1.56692, -2.15018, -1.94892, -1.68212, -4.73316, 0.119972, -0.111522, 2.00936, 0.111042, -0.295946, 0.544791, -0.886899, 1.695, -3.26724, -1.75305, -1.44173, -0.474752, -0.187233, -0.853621, -0.0944892, -0.678468, 0.0123673, -0.0560978, -0.55762, -0.739582, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.86781, 0.13534, 0.779298, 0.224872, -1.92361, -0.0356798, 0.0076989, -0.469261, -0.0123779, 0.383, -0.0508117, 0.52391, -0.121289, -0.56397, -1.00933, -0.657566, -0.311325, -1.64069, 0.623071, 0.127885, -0.0325905, -0.990264, 1.40543, -0.621603, -6.90653, -0.0443581, 0.717566, 0.770388, -0.27456, -2.23467, -2.84339, 1.52093, 0.277373, -0.562102, 1.17453, 0.296879, 0.918718, 1.33353, 0.07912, 0.366334, -10.757, -0.331444, 0.591822, -1.04966, -1.58679, -0.134011, -0.0338842, -0.347791, -0.478804, -0.43266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.111525, -2.46561, -1.64105, 0.302366, 0.0354287, -0.029379, -0.351741, -1.66172, 0.139154, -3.43191, 0.000101093, 0.700908, 0.431611, -5.00096, -5.5301, 0.375882, -0.90331, -3.60795, 1.10617, 0.553811, -0.0146676, -1.92348, -4.01237, -8.31866, 0.0725284, 0.606872, 1.07916, 1.43057, -0.161595, -1.3827, -1.77613, 0.84892, -4.64397, -2.30278, 0.423634, -1.9074, -0.586249, -3.71082, -5.46289, -1.68402, -0.117939, -1.90641, 1.60193, -5.34698, -1.55097, -0.307607, 0.0321825, -2.18755, -0.316223, -0.0383659, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.5137, -1.17675, -0.381757, -1.35602, -1.00701, 0.0221146, 1.73016, 1.41762, 0.494894, -4.80069, 0.0414874, -0.591208, -1.7785, 1.56442, 1.72133, 0.157462, -0.671942, 0.03288, -3.27926, -2.34366, -0.00461799, 0.981481, 0.0715797, -1.57452, -0.676928, -0.344584, -3.32466, 0.100088, -2.48112, 0.349678, -3.14082, 0.724438, -0.0906012, -2.34032, -0.861807, -0.321315, -0.15477, 0.188696, 0.519987, -0.667458, -1.28834, 0.643209, 0.061221, -6.90769, -0.571885, 1.52489, -0.0396672, -0.346949, -0.297447, -0.482164, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.311257, 2.0439, 0.418549, -0.743829, 0.967157, -0.0461563, 1.27397, -0.422723, -0.543472, -5.98142, 0.0458216, 0.375474, -0.835339, 3.50606, 1.77936, 2.41808, -0.280234, 2.52087, -1.88022, 0.717697, -0.0351473, -0.494652, -0.772305, -0.758656, -1.36927, 0.228585, 2.25945, -0.395541, 1.51937, -0.304446, -1.83887, -0.528999, -1.8055, 1.12521, 1.08383, 0.672214, -0.365854, 0.724, -1.47263, 0.526248, 1.33087, 1.59201, 1.10528, 0.562669, -0.0796321, 2.07856, 0.0259798, 0.601389, 1.48614, 0.14984, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.241857, -0.368705, 0.31783, -1.48734, -0.941279, 0.0292649, -1.58597, -0.251915, 0.110581, -1.86319, 0.0191359, 0.20854, 0.358101, -0.779052, 0.50238, 0.533218, -0.735461, -0.899276, -0.876377, -0.314234, -0.0284913, 0.499276, -5.85579, -0.826683, 0.312557, -0.228629, -2.21045, 0.247666, -0.167481, 0.468473, -0.500113, -1.13703, -3.94077, -0.767887, 0.142579, -0.233999, -0.424875, -1.19145, -0.858372, 0.131259, -0.0594558, -0.488332, -0.586845, -5.42373, -0.550549, 0.0537542, -0.0387661, 0.146759, -0.839508, -0.146071, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.289582, -0.441833, 0.819811, -0.0594419, -0.196877, -0.0321653, 1.4357, -3.91743, 0.00141042, -2.57971, 0.00578551, -0.520656, 0.399576, -3.87402, -0.150542, 0.920589, -0.461503, -0.87022, -0.00359606, 0.92653, 0.00968207, -0.517762, -0.497288, -0.759455, -3.28813, 0.110795, 0.0773224, 0.844737, -1.43194, 0.315914, -1.53607, -0.788002, -2.67503, -0.335565, -1.04616, 0.0970265, 0.850653, -1.24447, -0.413545, -0.564862, -2.19634, 0.920636, 1.57096, -4.68263, -2.69576, -0.0453206, -0.033793, 0.422641, -1.77646, -0.434273, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.288582, -1.70637, -4.91283, -0.291567, 0.975205, 0.0163423, -1.31695, -1.58584, 0.0514162, 0.238976, 0.0163856, 0.176043, 0.1948, 0.377485, -0.245538, -5.39158, 0.169415, -1.2812, 1.43397, -0.839717, -0.0193949, 0.37907, -0.754603, 1.08283, -0.842979, -1.1097, 0.632814, 0.107481, -0.948851, 0.0994708, -1.30893, -0.264583, 0.908482, -4.13254, 0.472389, -0.0960553, -1.19641, -0.332077, 2.61681, -0.0132642, -0.0258005, -0.0805507, -0.988439, 1.5611, 0.653161, 0.774514, -0.0158786, -0.122988, -2.08016, -0.526384, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0980346, -1.75634, 0.14443, -0.0969049, -0.440865, -0.00966776, -0.505308, -2.9362, 0.117953, -0.0452465, 0.0419007, 0.176386, -1.31714, -0.967087, 0.374723, 0.122358, -0.28259, 0.16212, -1.00937, 1.19978, 0.00802215, -0.256744, 0.252099, 0.428905, -0.00572594, -1.0954, -0.746916, -0.32188, -0.39343, 0.368037, -0.913505, -1.41061, -0.242165, 1.13358, 0.476044, -0.140544, -0.21695, 0.202862, -0.909176, -0.341488, -0.594021, -0.343236, -0.625014, -2.25354, -2.02482, -2.81193, 0.0297603, -0.107411, -0.406076, -0.140612, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.471918, -0.282686, 0.154126, 0.0821381, 0.564859, 0.0503284, 0.224378, -3.34949, -0.31244, -0.117383, 0.000243539, 0.237988, 0.964643, -0.860771, -0.317415, -0.0989744, -0.0467137, -1.41376, -3.06392, 0.591001, -0.0552737, 0.186906, 1.80116, -3.01537, 1.295, 0.42359, 1.00886, 1.13372, 0.64117, 0.156553, -1.60635, -0.86078, 0.418651, 0.937302, 0.365133, 0.757232, -0.181958, -0.12764, 0.437519, -0.0208472, -5.05471, 0.681694, 0.859822, -0.0279252, -0.682601, -0.105111, -0.0187944, 0.195781, 1.53189, 0.371364, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.991781, -0.457647, 1.6394, 0.336669, 0.465985, -0.0202855, 0.238029, -1.19825, -0.74852, 1.21319, -0.0148745, -0.15861, 0.630539, 1.54846, 2.82474, 2.85669, 0.311156, 0.760463, 2.62052, 0.0473241, 0.026487, -0.0727319, 1.8481, 2.04618, -2.25055, 0.142394, 2.00826, 2.7258, 1.73273, 1.20424, -2.96728, 0.683651, -0.106726, 1.31859, 1.75366, 2.46377, -0.723982, 0.0573846, 1.29433, 0.417847, -7.17973, -0.715836, 1.36855, 2.33064, -2.37541, -0.513541, 0.0250373, 1.80241, 0.00541462, -0.930477, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.387966, -0.281104, 0.245981, 0.201726, 0.0917268, 0.0431692, -0.662501, -1.33598, 0.104944, -0.188135, -0.038759, -0.411499, 0.807489, 0.0854896, -0.86545, -1.05945, -0.385646, -1.59343, -0.398654, 0.233586, -0.00840077, -0.225171, 0.229102, 0.211104, 0.877832, 0.0496111, 1.0725, 0.424841, 0.826414, -1.14322, -2.177, 0.870514, 0.352636, 0.104057, -0.0236526, -0.0322385, -0.861694, 0.13641, -0.362013, 0.283922, 0.41143, -0.359002, -0.472748, -0.801115, 0.403437, -0.13286, 0.0195498, 0.533697, 0.0555169, -0.259398, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.08514, -0.462614, -0.567422, 0.168026, 0.229873, 0.0194303, -0.0538274, -1.44258, 0.0411945, -6.26473, -0.0397948, -0.572542, 0.188556, -0.381468, -0.692982, -0.279404, -0.0857959, -2.13461, 0.0935426, -0.713225, 0.0166609, -1.21168, 1.88831, -2.80169, -1.5196, -0.853496, -2.17878, 0.794401, 0.67344, -0.193734, -3.25177, -0.261388, -5.62649, -2.541, 0.874321, 0.19102, -0.0434056, 0.80614, -2.09314, -0.960589, -0.814552, -0.974064, 1.27199, -0.814964, -0.109524, -0.258917, -0.0206987, -0.940091, -0.800652, 0.0147839, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.150613, 0.986506, 0.128723, 0.1914, 1.02888, 0.038496, -0.785765, 0.329386, -0.4703, -1.03911, 0.0415879, -0.140014, 0.0252064, -0.402885, 2.63845, 3.04045, -0.526336, 1.48525, -1.35061, 1.02327, 0.0525672, 0.3906, 1.0958, 0.173554, 1.46919, -0.933242, -2.5517, -2.33646, -0.165218, 0.0166081, 1.30709, 0.967421, 0.407981, 0.430145, 0.734062, -2.79583, 0.565144, -0.568374, 0.778053, -0.133412, -0.627275, 1.0424, 2.06266, 2.07539, 0.369135, 2.1261, -0.0493077, 0.516049, -0.673539, -0.94562, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.586439, -1.09283, 0.576615, 0.645338, 0.96239, -0.0495757, 0.876156, 2.51002, -0.670464, -2.92322, 0.0121303, -1.13825, 0.309576, 2.79152, 0.9916, 2.15539, -0.162515, 2.75468, -0.792875, 1.253, -0.00860557, 0.324507, 4.28709, 2.05395, -0.467539, -2.13849, 0.505657, 3.05426, 0.0605655, 0.896352, -2.09637, 0.219218, -0.84786, 2.59489, -0.939619, -0.389584, 0.451151, 2.22913, 0.471914, -0.0696671, -1.28698, -0.83039, 2.70737, 0.532162, 1.1314, 0.550853, 0.0264488, -0.00694964, 2.24081, 0.89019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.0549, 2.32782, 0.604465, -2.67468, -0.767335, -0.0320071, -0.635181, 1.7725, 0.327296, 1.79272, -0.0492067, 0.375516, -1.94925, 0.232062, -0.680507, -1.28417, -0.621307, 0.693483, -0.624941, -0.777186, -0.0152593, -0.592431, -0.442473, -0.228163, 0.0862508, -1.413, -2.75048, -1.1264, -0.542547, 1.11348, -1.17435, -2.49688, 0.829492, 0.327511, -0.51079, -0.0566684, -0.365982, -0.374821, -0.830787, -1.11595, -1.59813, -1.11242, -1.32983, -0.0302512, -1.48969, 0.580072, -0.0188913, -0.779931, 1.54431, 0.560578, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.48451, -0.477428, -0.888927, -1.48728, 0.96198, 0.028804, 0.720321, -0.621773, 0.307503, -0.503835, 0.00750255, 0.0882128, -1.61257, -1.38786, -1.29545, -4.25668, -1.12128, -6.18574, -1.53582, 0.759567, -0.0519227, -2.59676, 1.92357, 0.760849, -1.43185, -3.14699, -0.464648, 0.139828, -0.0224049, -0.904489, -1.43912, 1.31978, -4.1843, -2.19444, -0.153742, -0.648466, -1.57043, -0.260582, -0.220323, -0.341289, 0.565352, -2.48482, -1.50395, -3.9876, -2.41404, -2.46609, -0.0378734, -0.955898, 1.53487, 0.383489, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.520468, 0.234806, 0.147558, 0.120681, 0.0496607, -0.00883521, -0.153151, 0.471061, -0.0574922, -2.26166, -0.0420085, -0.217367, 0.562356, 0.563483, -2.50687, 0.0747383, -0.393326, 1.52955, 0.689348, -0.511825, 0.011749, 0.144963, 0.522016, -0.00531491, -0.54038, -5.04562, 1.19449, 0.248414, -0.132234, 0.466302, -0.181416, -0.736998, -0.357624, -0.452912, 0.432917, -0.286499, -0.300879, 0.869166, -0.962946, -0.345132, -2.18421, 0.502206, 0.356678, 0.0484953, -1.54209, 0.269099, -0.0153576, -0.284468, -0.175259, 0.0990622, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0267188, -0.0263345, -0.0192167, -0.0297529, 0.0346725, 0.025245, 0.0337261, 0.00656527, -0.0126927, -0.0479129, 0.0107959, -0.0164955, -0.0352221, -0.0485852, 0.0408257, -0.0378669, -0.00441817, -0.0438574, 0.0222363, -0.0181948, 0.0376389, -0.034555, -0.0231605, -0.0262627, 0.0301691, 0.0284775, -0.0217347, -0.00653948, -0.0122958, 0.0336374, -0.0378901, -0.0132886, 0.0204588, 0.0236846, 0.00361889, -0.0267544, -0.0357317, 0.0358435, -0.0204674, -0.0526235, -0.0389417, 0.0177739, -0.0448046, 4.21039e-05, -0.0465091, -0.0320209, 0.00999462, -0.0116532, -0.0183318, -0.0342034, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.391694, 4.79405, 0.69832, -2.12739, -2.96585, 0.0157758, -0.328056, 3.6037, 1.00488, -0.386574, -0.0112381, 1.62993, -2.65632, 1.35616, 1.46758, -2.4025, -2.26269, 3.15891, 0.765577, -3.29636, -0.00650504, 0.980418, -4.15216, 1.60119, -2.1163, -3.28275, -2.38779, -3.5006, -1.47104, -2.06961, -6.0431, -2.17803, -0.337751, 0.795075, -0.856842, -2.23834, -1.47024, 0.507104, 0.273022, -3.62574, -2.21385, 0.729617, -1.4143, 1.23247, -1.20633, 1.29372, 0.0312061, 0.0277278, 4.5209, 0.526373, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.572645, 3.1281, 1.69774, 1.2875, 0.0382101, -0.00349279, 1.96471, -3.97449, -1.14218, -0.0010922, 0.000831341, -0.723255, 1.08011, 0.309565, 2.19825, 3.26401, -0.0841158, 2.18394, -0.225101, 1.82197, 0.0148862, 1.99149, 1.65625, 2.79396, 2.4701, 3.65781, 1.53769, 3.79663, 0.0819723, 1.78055, -5.82569, 0.130541, 2.29987, 2.98849, 0.316257, 1.12302, -0.606534, -0.138347, -0.636353, 0.363784, -2.06083, 2.199, 1.86673, 1.35671, -1.13684, 1.11838, -0.0445994, 0.239409, 2.32394, 1.43417, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.3418, 4.65085, 1.27637, 1.83449, 0.807559, 0.0171078, 4.36738, 0.631077, -1.67907, -2.54441, -0.0541054, 0.0887534, 3.4827, 5.42433, 2.21402, 4.34419, -3.16859, 3.59069, 0.855663, -0.972842, 0.0433651, 0.545713, 1.759, 4.78238, -2.58309, 4.9907, 3.64305, 2.07498, 2.98455, 0.731126, 0.991586, -1.11546, 0.936212, 2.60453, 1.7625, 1.6421, -1.52665, 4.18547, 5.0702, -0.45894, 0.802871, 3.65511, 0.872504, 4.56457, -5.07969, 1.33863, 0.00237056, 2.66451, 0.882043, 0.767603, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.73118, 2.54148, 1.84469, -0.438924, 1.25017, 0.0112952, 0.0813077, -0.732811, -0.778325, -11.0073, -0.00323578, -0.174567, 2.5774, 4.03897, 1.79968, -0.854, -0.620874, 0.518424, -3.4814, -1.49031, -0.0467822, 2.54357, 3.46262, -0.49074, -4.16373, 1.25441, 3.20375, -0.809222, 1.20791, 0.012639, 0.312739, 1.18492, -1.51074, 2.69302, 0.921497, 0.873952, -0.818391, 1.47463, -0.233327, 0.482243, 0.904757, 2.79096, 1.7555, 0.906013, 0.216097, 3.54674, -0.0149833, -1.23751, 2.31488, -0.326325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.15001, -0.513461, 0.249841, -0.0529272, 0.259444, -0.00977403, 5.1087, -7.03827, -1.57206, -6.73634, 0.0249104, 1.58378, 0.249441, 3.61465, 5.67936, 1.38021, -0.855312, 1.66466, 1.35049, 0.608296, -0.0292759, 0.305486, 0.722329, 0.17439, -2.90412, -5.62525, 0.819034, 2.05681, -0.58059, 0.361178, -0.957986, 2.18661, -1.20372, 1.71948, -0.728295, 2.50769, 1.32221, 3.50959, -0.693612, 2.17401, -1.37248, 3.29204, 0.464359, 4.78456, 0.637671, 1.10653, 0.0458132, 0.538844, 3.43955, 2.371, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0114952, 2.77051, 0.797941, 0.788007, -0.346993, 0.0456315, -0.805715, -0.875726, -0.447083, -0.371856, -0.0291705, 0.818244, 1.3214, -0.386578, 1.51371, 1.31564, 0.158696, -1.31587, 4.0321, -1.51705, -0.0237361, 1.13931, 2.75468, 0.577234, -0.0664348, 0.188333, 2.41199, 0.168417, 1.37241, 1.106, -0.429024, -0.748453, 0.128511, -0.177308, 0.508484, 1.28485, -0.229283, 0.295401, 0.181945, -0.514149, -2.04114, 0.191885, -0.547351, 0.520231, 0.2831, -0.266939, -0.0207333, -0.498361, -0.423036, 0.0877377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05502, -1.41659, 0.0202379, -0.252819, 0.295069, 0.0147778, -0.616045, -1.01332, 0.198198, 0.324504, -0.020824, 0.484935, -0.0315427, -3.65664, -1.3078, -0.410636, -0.570452, -2.72239, -0.847262, -0.370201, -0.00790464, -1.28743, 0.668673, -1.44907, -0.797724, -0.657156, -5.35915, 0.493574, 1.26809, -0.0134427, 0.124886, -0.686613, 1.26606, 0.884173, -0.472879, -2.38468, -0.625309, -1.03887, 0.810842, 0.357437, 0.664936, 1.56797, 0.746541, 0.520756, -0.318398, 1.0593, -0.032927, -0.260501, -0.753436, -0.189521, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.654713, 0.119414, 0.293281, 0.240747, -0.245457, 0.0290764, 0.115587, 0.257066, -0.082592, -0.333401, 0.018424, 0.148829, 0.25635, 0.477716, 0.600106, -0.112411, 0.156137, -0.268108, 0.988615, -0.555731, -0.0491212, -0.0595613, 0.328251, -0.217464, -0.216216, -0.547124, 0.0921786, 0.199177, 0.0561307, -0.273237, -0.277369, 0.114347, 0.0567391, -0.379793, 0.388551, -0.101253, -0.0638375, -0.124356, 0.411036, -0.0575342, -0.215027, 0.0452627, 0.167631, 0.141115, 0.0337905, 0.195906, -0.0446093, -0.0742859, 0.197387, -0.320195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.63674, -1.65968, 0.384609, 0.730491, 0.184212, -0.0439635, 0.586389, 2.28791, -0.226035, -1.53905, -0.0118072, -0.154336, -0.47919, 1.01863, -0.163869, 0.0217893, -0.94957, -0.683618, -5.1855, 1.14505, 0.0130246, -0.294164, -2.70314, 0.674177, -4.30154, -2.98722, -0.306572, 0.69293, 0.431976, -0.0124658, -0.540857, 0.866827, 0.290223, 0.16317, 0.198812, 0.584458, 0.416098, 0.242636, -0.493525, 0.217848, -1.52474, -0.209069, 1.55213, -0.583665, -0.308163, -2.04937, 0.00650397, 0.205033, -2.85375, -0.0971779, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.727102, -1.46601, -0.700108, 0.223929, -0.037531, 0.0277636, -1.34096, -4.54961, -0.0772079, -2.64585, -0.00980681, -0.344024, -0.933056, -1.01119, -4.10077, -0.425768, 0.893489, -2.35511, -0.396268, 0.744022, 0.00652462, -1.23913, -2.37421, 0.607095, -0.0505965, -2.70542, -1.2785, 0.8389, -0.186921, 1.34557, -0.577745, -1.11727, 0.987413, -0.454402, -0.600542, -0.687358, 0.724774, -0.838664, 0.112646, -1.53708, -2.46786, 0.140718, 1.36701, -7.10742, -3.39918, 0.312868, 0.0457776, -0.00274144, 1.28874, 0.0947025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.037918, 1.53077, -0.0240449, 0.452136, 0.405682, -0.0168043, 0.694439, 0.431054, 0.0560947, -0.410159, 0.036694, -0.252463, 0.154104, 0.749351, -0.0322306, 0.10607, 0.208673, -0.268178, -0.29515, -0.736857, 0.0507889, -0.566194, 2.18997, 1.27375, 0.896545, 0.806681, -0.736084, 0.487402, 0.371953, -1.61703, -0.28255, 0.204485, 0.648219, -1.59022, 0.259482, 1.03314, -0.358591, -0.745629, 0.288088, 0.234439, 0.02474, -0.83042, 0.125217, 2.13211, 0.0843546, -0.677076, 0.0492516, 0.490729, 1.22305, -0.270001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.10253, -1.32505, 0.646916, 0.701966, 0.199189, -0.0218396, 0.388278, -0.529962, -0.237677, -1.6655, -0.00300989, -0.187545, 0.776886, 3.13045, -0.193173, 1.45495, -1.3305, -5.70171, 2.48267, -0.879399, -0.00958932, 1.41615, 1.76888, -1.43385, 1.94908, 2.19447, 2.6959, -0.150223, 0.979466, -0.14595, 0.437429, -0.439986, 0.75937, 0.507333, 1.23044, 0.977051, -0.17262, 1.13378, -0.215484, -0.842291, 3.26704, 0.991043, -0.926805, -1.38256, 1.29332, 0.508143, -0.0325602, -1.18534, 1.09644, -0.9929, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.796378, -6.338, -0.565472, 0.049968, 0.585037, 0.0377656, -0.329925, -5.33272, 0.112643, -3.84026, -0.0455856, 0.481286, -1.65926, -1.35095, -3.08999, -2.07362, 0.438652, -7.30579, -1.84043, -0.111038, 0.0351439, -1.16033, -0.267642, -0.869235, -4.2762, -4.06787, 0.67657, -0.0755927, -3.6721, -1.6832, -2.39232, -0.557885, -1.75346, 0.125821, -0.824822, 0.0478859, -0.103318, 0.00857838, 0.362601, -0.524174, -3.53097, -2.2255, 0.00346404, -1.10728, 1.44877, -0.948382, 0.0158261, -0.68536, 0.93852, 0.210101, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2578, 0.318835, 0.297283, 0.514716, -0.524827, 0.000408941, 0.450531, -0.240292, -0.280411, -0.652862, -0.0220881, -0.0145932, 0.9418, 0.633635, 0.845991, 0.916797, -0.551496, 0.463053, -4.37684, -0.755574, 0.014383, -0.651885, 0.292473, 0.788435, -0.167539, -0.422016, 1.80372, -0.0301782, 0.496918, 0.187069, -0.285026, -1.13178, -0.54393, 0.717389, -0.501471, 0.738753, -0.260108, 0.854363, 0.688716, 0.0584551, 0.231881, 0.0957341, 0.54172, 0.567389, 0.721054, 0.749489, 0.0112208, 0.90207, -5.01198, -0.136377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.339079, -5.65832, 0.721907, 0.362474, 0.48666, 0.00510647, -0.563739, -2.45866, -0.225347, -1.28061, -0.0403412, 0.0522308, 0.469101, -1.78092, -0.0326, 0.996574, -0.0556173, -2.87336, -0.362965, 0.413305, 0.0167875, -0.389571, 0.534177, -1.60638, -1.14539, -3.19011, 1.25876, -0.382272, -0.480077, 0.184801, -0.898723, -0.14596, 0.213855, -1.12303, 0.654293, 0.103089, 0.178218, -1.18245, -0.535745, 0.0665862, -0.69512, -0.377414, 0.0441251, 1.1618, 0.256222, -0.264444, 0.0183438, 0.835451, 0.49877, -0.313425, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.219, 0.8975, -0.501461, 1.50155, -0.835329, 0.0235349, 2.27289, -2.01776, -0.649222, -1.68686, -0.0195358, 0.44735, 0.705069, 0.195222, 1.78136, 0.288809, 0.191466, 3.49247, 1.02078, -0.238471, 0.0214436, 2.18923, 0.985855, 2.36571, -1.951, -0.621331, -0.20937, 1.44305, 0.50673, 1.94281, 1.26861, -1.72084, 0.799628, 1.07269, 2.26387, -0.182198, -1.34228, 2.5485, 0.56341, -1.08256, -1.38307, 3.07852, 2.43995, 0.830295, -1.77017, 1.34881, 0.0400819, 0.388982, 2.39784, -0.496724, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0927906, -0.0353952, 0.0264242, 0.287504, 0.154512, 0.0120401, -0.0851951, -0.0292693, -0.061902, -0.193665, 0.0356186, -0.32131, 0.327741, -0.209092, -0.4903, 0.112463, -0.141689, 0.0466655, -0.973659, -0.270567, -0.0458497, 0.177657, -0.241671, 0.401378, 0.564775, 0.603728, -0.40779, 0.202323, 0.253957, -0.106216, 0.342773, 0.303264, -0.192886, -0.0237005, 0.0936336, -0.300833, 0.371849, 0.0269296, 0.366779, -0.081029, 0.129114, -0.349369, -0.357539, 0.260497, 0.153011, 0.101178, 0.0351547, 0.00823225, -0.422687, -0.0105005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.450834, -0.433304, 0.0759738, -0.0450075, -0.336419, 0.0220784, -0.0353249, 0.490876, -0.0115619, -0.360048, 0.00382026, -0.0456592, 0.474279, 0.72051, 0.349912, -1.60529, 0.162355, -0.636815, -0.192013, 0.0577185, 0.00995128, 0.538324, -0.199283, 0.523742, 0.220639, -0.116291, 0.684824, -0.257165, 0.758558, 0.0219879, -0.0158662, 0.0336591, -0.404926, 0.547483, -0.557004, -0.206335, -0.0562451, -0.521092, -0.135744, -0.0360798, 0.263555, 0.304177, 0.0140863, -0.653436, 0.224141, 0.0835636, 0.00350551, 0.24161, -4.33931, -0.0780006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.17191, -0.434605, -0.810564, 0.867507, 0.988259, 0.0554825, 0.739883, 1.48202, 0.00575008, -1.93353, -0.00479247, 0.605412, 1.55794, -0.24799, 0.0579085, -1.88018, -0.824872, -0.0950606, -1.58444, -0.690538, 0.036857, -0.216712, 1.07326, 1.05377, 1.08305, 0.131008, -1.14459, 1.44172, 0.845773, 2.56478, 0.601256, 2.19958, 1.85632, 1.15146, 1.64585, -0.583796, -1.29856, 1.66938, 1.01412, 0.115985, 3.43738, 1.25464, -2.32479, 0.552925, 0.5826, -0.0587092, -0.0384272, -1.3732, 3.30374, 0.344061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.65279, -9.14433, -0.544102, -1.78781, -0.253497, -0.0369609, -0.857186, 0.418624, 0.556331, -3.66254, -0.00830198, 0.809461, -2.39009, -3.54099, -2.78007, -1.14185, -0.986557, -2.49045, 0.855906, 0.116924, 0.042064, 0.102536, -3.14962, 3.04693, -0.215675, -6.53163, 1.71809, 0.423424, -2.44207, 2.07434, -2.42459, -2.53987, 0.875028, -0.198331, -2.58196, -0.0676571, 0.0128736, 1.88239, -1.64069, -3.94759, -1.78959, -2.52257, 1.78155, -1.14687, -3.204, -1.29995, -0.035083, -2.14029, -2.5239, 0.936148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.791575, 0.277643, -2.34322, 0.627059, 0.0246089, -0.0322117, 2.30207, 2.48053, -0.576195, -1.83417, 0.0233996, 0.899539, 1.23909, 3.12251, 1.6765, 0.728869, 0.895455, -0.319955, 1.0547, -1.04662, 0.00980988, 1.86478, -0.709574, 2.36818, 1.2017, 0.494755, 0.763756, 0.121506, 1.55798, 0.551031, -0.76312, 1.15687, 0.0248268, 0.454783, -0.581221, 1.00213, 1.24762, 2.59324, -0.541078, 0.472467, 3.15799, 0.942822, 0.92875, 1.54336, 0.988584, 2.36706, 0.0115704, 0.39331, -0.946055, 0.0872245, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.431, 4.312, -0.301, -0.6055, 0.32, -0.0317, 1.374, -4.86, -0.92, -1.646, 0.03708, 1.311, 2.258, 0.304, 0.881, 2.402, 0.0197, -0.6797, -1.177, -1.542, 0.007454, 2.354, 1.955, -0.256, 1.625, -0.5947, 3.01, 1.65, 2.18, -1.145, -0.5425, -0.05676, -0.2455, 3.695, -0.6914, 1.355, 1.021, 1.748, 2.508, -0.5747, -3.047, 0.06775, -0.451, 5.055, 1.185, 2.547, 0.03726, 0.02519, 2.453, 0.3901], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3755, -1.001, -0.4932, -0.535, -0.082, -0.02425, -0.1729, -2.018, 0.5234, -2.453, 0.0158, 0.4634, -1.424, -6.14, -4.285, 1.568, -1.13, -3.879, -1.732, -1.59, -0.01947, -0.8354, 0.9375, -1.148, -2.861, -2.59, -1.324, 1.889, -0.553, 0.4817, 1.44, -0.0859, -0.8076, -2.746, 1.014, -1.2295, -1.144, -1.532, 1.571, -0.7466, -5.07, 0.1725, -0.751, -0.3577, -2.623, 0.2139, 0.04266, -0.09033, 1.683, -0.466], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, -1.454, -0.2482, -0.2766, -0.1467, 0.03372, 1.1875, -0.4065, -0.273, -0.402, -0.04398, 0.3992, 1.319, 0.2135, -0.892, 0.159, 0.0483, -0.8223, 1.187, 0.1118, -0.02014, 1.913, 2.076, 0.533, 0.1354, 1.257, -0.5537, -0.393, -1.54, 0.9727, 0.2837, -0.1721, 0.1881, 2.955, -0.532, 0.0902, 0.4531, 0.2585, -0.3633, -0.4558, 0.07153, 0.2617, 0.552, 1.79, 0.1611, 1.216, -0.04254, -0.1936, -0.358, 0.1948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03668, -0.02885, 0.006012, -0.02757, -0.0231, 0.02832, 0.01552, -0.00642, -0.006462, -0.03638, -0.0155, -0.0327, -0.0583, -0.04355, -0.03036, -0.0237, -0.00956, -0.02783, -0.03546, -0.012276, 0.01079, 0.00521, 0.04156, 0.02171, 0.01877, -0.012985, -0.04608, 0.02744, -0.04163, -0.05093, 0.02675, 0.0202, 0.01452, 0.0401, 0.02808, -0.0293, -0.0482, 0.02678, -0.00824, -0.00671, 0.02367, 0.02151, -0.035, 0.008026, 0.01178, -0.04514, -0.0503, -0.00372, 0.0336, -0.0395], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9146, 4.7, 0.02972, -5.19, -1.657, -0.052, 2.982, -2.215, 1.274, -3.754, 0.008286, 2.322, -6.86, -4.75, -1.839, -0.7627, -3.543, -0.0406, 1.11, -1.703, -0.0684, -1.697, -5.117, 3.346, -0.762, -6.684, -3.244, 0.9966, -3.422, 1.388, -1.649, -5.316, 1.567, -0.127, 0.3, -2.664, 0.578, 1.825, -1.553, -3.756, -0.2188, -1.023, -2.557, 1.093, -2.627, 2.41, -0.03708, -1.273, 2.533, 0.6553], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4968, -3.205, 0.2092, -0.1217, -0.08264, -0.0255, -0.04666, -0.4106, -0.08746, -6.23, 0.005383, 0.504, 0.8013, 0.831, -3.55, 1.095, -0.01724, -3.477, 1.6875, 0.0651, 0.010796, 0.005543, -2.406, -0.6963, -2.566, -1.264, 0.4478, 0.03973, -1.53, 0.04477, -0.9893, 0.0745, 0.628, 0.6895, -0.225, -1.153, -0.034, -0.371, -0.7124, -0.925, -1.215, -0.716, -0.3274, 1.326, -0.9077, -0.2101, 0.04703, 0.4336, -0.534, -0.1632], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.993, 0.867, -0.646, -0.2347, 1.055, -0.00713, -0.1901, -2.645, -0.0549, -0.377, -0.03607, 0.259, 0.1462, 0.3677, 0.564, 1.077, 0.3381, -3.207, -0.2047, 0.247, -0.03018, -1.055, 1.123, -0.5215, 1.484, -0.3389, -0.1433, -1.734, 0.2915, 0.2319, -0.654, -2.303, 1.035, -1.06, -0.6733, 0.09717, 0.3, 1.432, -1.925, -0.1808, -0.2389, -1.455, -1.227, 0.07294, -0.92, -0.0984, -0.01845, -0.9688, 0.7134, 0.4812], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.012, 0.3577, -0.3162, 0.06995, -0.2512, 0.04996, 0.3696, 0.4375, -0.01131, -0.0817, 0.03122, 0.1509, -0.2301, -0.1907, 0.2837, -0.0334, 0.0456, 0.2218, 0.04474, -0.3962, -0.02122, -0.1976, -0.3018, 0.2805, 0.2223, -0.06064, -0.1421, -0.3594, 0.4382, -0.164, -0.4937, -0.2429, -0.3523, -0.1711, -0.06665, 0.0002133, -0.0769, -0.2184, 0.1625, -0.1182, -0.1109, 0.4214, 0.02795, -0.661, -0.0437, -0.536, 0.02716, 0.1964, 0.04, 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, -2.205, -1.545, 0.2357, -0.6807, -2.717, -0.03122, -2.828, -3.225, 0.616, -4.562, 0.01974, 0.607, -1.689, -0.5093, 0.6475, -0.8813, 0.1843, -0.7056, -4.137, -2.773, 0.01959, -2.248, 1.416, -4.875, -5.438, -2.041, -1.322, -1.439, -1.683, -1.828, -1.691, -2.18, -3.818, -0.3174, -4.19, 0.4006, -2.08, -2.006, 0.2522, -1.003, -3.602, -3.436, -3.36, 1.043, -3.734, -0.8716, -0.01855, 1.546, -2.207, -0.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.02089, -0.6, 0.346, -4.8, 1.058, -0.03442, -1.829, -2.057, 0.3591, -0.1519, -0.00646, -0.1095, -0.06915, -0.553, 0.8057, -1.233, -0.8594, 0.4907, 5.062, -0.3064, 0.0255, -3.184, -1.954, 1.37, 1.832, -2.432, -0.2045, -2.037, 0.7666, -4.2, -2.518, 2.441, 1.008, -1.932, -0.09, -1.22, -2.639, -1.237, 1.034, -4.523, -3.508, -0.5156, -0.863, -4.37, -1.294, 5.19, 0.002497, -2.938, -2.8, -2.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.5093, -0.278, 1.624, 1.494, -1.453, -0.006588, -0.753, -0.647, 1.5, 0.3645, 0.003727, -0.0205, 2.424, 0.1973, -4.883, 0.7734, -0.1703, -2.629, -1.58, -0.1087, 0.0311, 1.912, -1.391, -1.462, -0.0332, -1.567, -2.15, -1.949, -1.682, -4.734, 0.12, -0.1115, 2.01, 0.111, -0.296, 0.545, -0.8867, 1.695, -3.268, -1.753, -1.441, -0.4749, -0.1873, -0.8535, -0.0945, -0.6787, 0.01237, -0.0561, -0.5576, -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.868, 0.1354, 0.7793, 0.2249, -1.924, -0.03568, 0.007698, -0.4692, -0.012375, 0.383, -0.0508, 0.524, -0.1213, -0.564, -1.01, -0.6577, -0.3113, -1.641, 0.623, 0.1279, -0.0326, -0.99, 1.405, -0.6216, -6.906, -0.04437, 0.718, 0.7705, -0.2747, -2.234, -2.844, 1.5205, 0.2773, -0.562, 1.175, 0.2969, 0.919, 1.334, 0.0791, 0.3665, -10.76, -0.3315, 0.592, -1.05, -1.587, -0.134, -0.03387, -0.348, -0.4788, -0.4326], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1115, -2.465, -1.641, 0.3022, 0.03543, -0.02937, -0.3518, -1.662, 0.1392, -3.432, 0.0001011, 0.7007, 0.4316, -5.0, -5.53, 0.376, -0.9033, -3.607, 1.106, 0.5537, -0.01467, -1.924, -4.01, -8.32, 0.0725, 0.607, 1.079, 1.431, -0.1616, -1.383, -1.776, 0.849, -4.645, -2.303, 0.4236, -1.907, -0.5864, -3.71, -5.46, -1.684, -0.1179, -1.906, 1.602, -5.348, -1.551, -0.3076, 0.0322, -2.188, -0.3162, -0.03836], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.514, -1.177, -0.3818, -1.356, -1.007, 0.02211, 1.73, 1.418, 0.4949, -4.8, 0.04147, -0.5913, -1.778, 1.564, 1.722, 0.1575, -0.672, 0.03287, -3.28, -2.344, -0.00462, 0.9814, 0.0716, -1.574, -0.677, -0.3445, -3.324, 0.1001, -2.48, 0.3496, -3.14, 0.7246, -0.0906, -2.34, -0.862, -0.3213, -0.1548, 0.1887, 0.52, -0.6675, -1.288, 0.643, 0.06122, -6.906, -0.572, 1.524, -0.03967, -0.347, -0.2974, -0.4822], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3113, 2.043, 0.4185, -0.7437, 0.9673, -0.04614, 1.274, -0.4226, -0.5435, -5.98, 0.0458, 0.3755, -0.8354, 3.506, 1.779, 2.418, -0.2803, 2.521, -1.88, 0.718, -0.03516, -0.4946, -0.7725, -0.759, -1.369, 0.2286, 2.26, -0.3955, 1.52, -0.3044, -1.839, -0.529, -1.806, 1.125, 1.084, 0.6724, -0.366, 0.724, -1.473, 0.5264, 1.331, 1.592, 1.105, 0.5625, -0.07965, 2.078, 0.02599, 0.6016, 1.486, 0.1498], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2418, -0.3687, 0.3179, -1.487, -0.9414, 0.02927, -1.586, -0.252, 0.1106, -1.863, 0.01913, 0.2085, 0.3582, -0.779, 0.5024, 0.533, -0.7354, -0.8994, -0.8765, -0.3142, -0.02849, 0.4993, -5.855, -0.8267, 0.3125, -0.2286, -2.21, 0.2477, -0.1675, 0.4685, -0.5, -1.137, -3.941, -0.768, 0.1426, -0.234, -0.4248, -1.191, -0.8584, 0.1312, -0.05945, -0.4883, -0.587, -5.42, -0.551, 0.05374, -0.03876, 0.1467, -0.8394, -0.1461], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2896, -0.442, 0.82, -0.05945, -0.1969, -0.03217, 1.436, -3.918, 0.0014105, -2.58, 0.005787, -0.5205, 0.3997, -3.873, -0.1505, 0.9204, -0.4614, -0.87, -0.003595, 0.927, 0.00968, -0.5176, -0.4973, -0.7593, -3.29, 0.1108, 0.07733, 0.8447, -1.432, 0.316, -1.536, -0.788, -2.676, -0.3354, -1.046, 0.09705, 0.8506, -1.244, -0.4136, -0.565, -2.197, 0.9204, 1.571, -4.684, -2.695, -0.04532, -0.03378, 0.4226, -1.776, -0.4343], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2886, -1.706, -4.914, -0.2915, 0.975, 0.01634, -1.317, -1.586, 0.05142, 0.239, 0.01639, 0.176, 0.1948, 0.3774, -0.2455, -5.39, 0.1694, -1.281, 1.434, -0.84, -0.0194, 0.3792, -0.7544, 1.083, -0.843, -1.109, 0.633, 0.1075, -0.9487, 0.0995, -1.309, -0.2646, 0.9087, -4.133, 0.4724, -0.09607, -1.196, -0.332, 2.617, -0.01327, -0.0258, -0.08057, -0.9883, 1.562, 0.6533, 0.7744, -0.01588, -0.123, -2.08, -0.5264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.098, -1.756, 0.1444, -0.0969, -0.441, -0.00967, -0.5054, -2.936, 0.118, -0.04526, 0.0419, 0.1764, -1.317, -0.9673, 0.3748, 0.1224, -0.2825, 0.1621, -1.01, 1.2, 0.00802, -0.2568, 0.2522, 0.429, -0.005726, -1.096, -0.747, -0.3218, -0.3933, 0.368, -0.9136, -1.41, -0.2422, 1.134, 0.476, -0.1405, -0.2169, 0.2029, -0.909, -0.3416, -0.594, -0.3433, -0.625, -2.254, -2.025, -2.812, 0.02975, -0.1074, -0.406, -0.1406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.472, -0.2827, 0.1542, 0.08215, 0.565, 0.05032, 0.2244, -3.35, -0.3125, -0.1174, 0.0002435, 0.238, 0.965, -0.861, -0.3174, -0.099, -0.04672, -1.414, -3.064, 0.591, -0.05527, 0.1869, 1.801, -3.016, 1.295, 0.4236, 1.009, 1.134, 0.641, 0.1565, -1.606, -0.861, 0.4187, 0.9375, 0.3652, 0.7573, -0.182, -0.1277, 0.4375, -0.02084, -5.055, 0.6816, 0.86, -0.02792, -0.6826, -0.1051, -0.0188, 0.1958, 1.532, 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.9917, -0.4578, 1.64, 0.3367, 0.466, -0.02028, 0.238, -1.198, -0.7485, 1.213, -0.01488, -0.1586, 0.6304, 1.549, 2.824, 2.857, 0.311, 0.7603, 2.621, 0.04733, 0.02649, -0.07275, 1.848, 2.047, -2.25, 0.1423, 2.008, 2.727, 1.732, 1.204, -2.967, 0.6836, -0.10675, 1.318, 1.754, 2.463, -0.724, 0.05737, 1.294, 0.418, -7.18, -0.716, 1.368, 2.33, -2.375, -0.5137, 0.02504, 1.803, 0.005413, -0.9307], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.388, -0.281, 0.246, 0.2018, 0.09174, 0.04318, -0.6626, -1.336, 0.1049, -0.1881, -0.03876, -0.4114, 0.8076, 0.0855, -0.865, -1.06, -0.3857, -1.594, -0.3987, 0.2336, -0.0084, -0.2252, 0.2291, 0.211, 0.878, 0.04962, 1.072, 0.4248, 0.826, -1.144, -2.178, 0.8706, 0.3525, 0.10406, -0.02365, -0.03223, -0.862, 0.1364, -0.362, 0.284, 0.4114, -0.359, -0.4727, -0.8013, 0.4033, -0.1328, 0.01955, 0.5337, 0.0555, -0.2593], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.085, -0.4626, -0.5674, 0.168, 0.2299, 0.01942, -0.05383, -1.442, 0.0412, -6.266, -0.0398, -0.5728, 0.1886, -0.3813, -0.693, -0.2793, -0.0858, -2.135, 0.09357, -0.7134, 0.01666, -1.212, 1.889, -2.8, -1.52, -0.8535, -2.18, 0.7944, 0.6733, -0.1937, -3.252, -0.2615, -5.625, -2.541, 0.8745, 0.191, -0.0434, 0.806, -2.094, -0.9604, -0.8145, -0.974, 1.272, -0.815, -0.1095, -0.259, -0.0207, -0.94, -0.801, 0.014786], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1506, 0.9863, 0.1287, 0.1914, 1.029, 0.03848, -0.7856, 0.3293, -0.4702, -1.039, 0.0416, -0.14, 0.0252, -0.4028, 2.639, 3.041, -0.5264, 1.485, -1.351, 1.023, 0.05258, 0.3906, 1.096, 0.1736, 1.469, -0.933, -2.55, -2.336, -0.1652, 0.0166, 1.307, 0.9673, 0.408, 0.4302, 0.734, -2.795, 0.565, -0.5684, 0.778, -0.1334, -0.6274, 1.042, 2.062, 2.076, 0.3691, 2.127, -0.04932, 0.516, -0.6733, -0.946], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, -1.093, 0.5767, 0.6455, 0.9624, -0.04956, 0.876, 2.51, -0.6704, -2.924, 0.01213, -1.139, 0.3096, 2.791, 0.9917, 2.156, -0.1625, 2.754, -0.793, 1.253, -0.008606, 0.3245, 4.285, 2.055, -0.4675, -2.139, 0.506, 3.055, 0.06058, 0.8965, -2.096, 0.2192, -0.8477, 2.596, -0.9395, -0.3896, 0.4512, 2.229, 0.472, -0.06964, -1.287, -0.8306, 2.707, 0.532, 1.132, 0.551, 0.02644, -0.00695, 2.24, 0.89], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 2.328, 0.6045, -2.674, -0.7676, -0.032, -0.6353, 1.772, 0.3274, 1.793, -0.0492, 0.3755, -1.949, 0.232, -0.6807, -1.284, -0.621, 0.6934, -0.625, -0.7773, -0.01526, -0.5923, -0.4424, -0.2281, 0.08624, -1.413, -2.75, -1.126, -0.5425, 1.113, -1.175, -2.496, 0.8296, 0.3274, -0.5107, -0.05667, -0.366, -0.3748, -0.8306, -1.116, -1.598, -1.112, -1.33, -0.03026, -1.489, 0.58, -0.01889, -0.78, 1.544, 0.5605], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.4775, -0.889, -1.487, 0.962, 0.02881, 0.72, -0.6216, 0.3076, -0.504, 0.007504, 0.0882, -1.612, -1.388, -1.296, -4.258, -1.121, -6.188, -1.536, 0.76, -0.0519, -2.598, 1.924, 0.7607, -1.432, -3.146, -0.4646, 0.1398, -0.0224, -0.9043, -1.439, 1.319, -4.184, -2.195, -0.1537, -0.6484, -1.57, -0.2605, -0.2203, -0.3413, 0.5654, -2.484, -1.504, -3.988, -2.414, -2.467, -0.03787, -0.956, 1.535, 0.3835], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5205, 0.2349, 0.1476, 0.12067, 0.04965, -0.008835, -0.1532, 0.471, -0.0575, -2.262, -0.04202, -0.2174, 0.5625, 0.5635, -2.508, 0.07477, -0.3933, 1.529, 0.6895, -0.5117, 0.01175, 0.145, 0.522, -0.005314, -0.5405, -5.047, 1.194, 0.2484, -0.1322, 0.4663, -0.1814, -0.737, -0.3577, -0.453, 0.4329, -0.2864, -0.3008, 0.869, -0.963, -0.3452, -2.184, 0.5024, 0.3567, 0.0485, -1.542, 0.269, -0.01536, -0.2844, -0.1753, 0.09906], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02672, -0.02634, -0.01921, -0.02975, 0.03467, 0.02524, 0.03372, 0.006565, -0.012695, -0.0479, 0.010796, -0.0165, -0.03522, -0.04858, 0.04083, -0.03787, -0.004417, -0.04385, 0.02223, -0.01819, 0.03763, -0.03455, -0.02316, -0.02626, 0.03017, 0.02847, -0.02173, -0.00654, -0.0123, 0.03363, -0.0379, -0.01329, 0.02046, 0.02368, 0.003618, -0.02675, -0.03574, 0.03586, -0.02046, -0.0526, -0.03894, 0.01778, -0.0448, 4.21e-05, -0.0465, -0.032, 0.009995, -0.01165, -0.01833, -0.0342], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3916, 4.793, 0.698, -2.127, -2.967, 0.01578, -0.3281, 3.604, 1.005, -0.3865, -0.01124, 1.63, -2.656, 1.356, 1.468, -2.402, -2.262, 3.158, 0.7656, -3.297, -0.006504, 0.9805, -4.152, 1.602, -2.117, -3.283, -2.389, -3.5, -1.471, -2.07, -6.043, -2.178, -0.3376, 0.795, -0.857, -2.238, -1.471, 0.5073, 0.273, -3.625, -2.213, 0.7295, -1.414, 1.232, -1.206, 1.294, 0.0312, 0.02773, 4.52, 0.5264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5728, 3.129, 1.697, 1.287, 0.0382, -0.003492, 1.965, -3.975, -1.143, -0.001092, 0.000831, -0.723, 1.08, 0.3096, 2.2, 3.264, -0.0841, 2.184, -0.2251, 1.822, 0.014885, 1.991, 1.656, 2.795, 2.47, 3.658, 1.538, 3.797, 0.082, 1.78, -5.824, 0.1305, 2.3, 2.988, 0.3162, 1.123, -0.6064, -0.1383, -0.636, 0.3638, -2.06, 2.2, 1.867, 1.356, -1.137, 1.118, -0.0446, 0.2394, 2.324, 1.435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.342, 4.652, 1.276, 1.835, 0.8076, 0.0171, 4.367, 0.631, -1.679, -2.545, -0.0541, 0.08875, 3.482, 5.426, 2.215, 4.344, -3.168, 3.59, 0.8555, -0.9727, 0.04337, 0.546, 1.759, 4.78, -2.584, 4.992, 3.643, 2.074, 2.984, 0.731, 0.9917, -1.115, 0.936, 2.605, 1.763, 1.643, -1.526, 4.184, 5.07, -0.459, 0.8027, 3.654, 0.8726, 4.566, -5.08, 1.339, 0.00237, 2.664, 0.882, 0.7676], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.731, 2.541, 1.845, -0.439, 1.25, 0.01129, 0.0813, -0.733, -0.7783, -11.01, -0.003235, -0.1746, 2.578, 4.04, 1.8, -0.854, -0.621, 0.5186, -3.48, -1.49, -0.04678, 2.543, 3.463, -0.4907, -4.164, 1.255, 3.203, -0.809, 1.208, 0.01264, 0.3127, 1.185, -1.511, 2.693, 0.9214, 0.874, -0.8184, 1.475, -0.2333, 0.4822, 0.905, 2.791, 1.756, 0.9062, 0.2161, 3.547, -0.014984, -1.237, 2.314, -0.3264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.15, -0.5137, 0.2499, -0.05292, 0.2595, -0.00977, 5.11, -7.04, -1.572, -6.74, 0.02492, 1.584, 0.2494, 3.615, 5.68, 1.38, -0.8555, 1.665, 1.351, 0.6084, -0.02928, 0.3054, 0.722, 0.1744, -2.904, -5.625, 0.819, 2.057, -0.5806, 0.361, -0.958, 2.188, -1.204, 1.72, -0.7285, 2.508, 1.322, 3.51, -0.694, 2.174, -1.372, 3.293, 0.4644, 4.785, 0.6377, 1.106, 0.0458, 0.539, 3.44, 2.371], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0115, 2.771, 0.798, 0.788, -0.347, 0.04562, -0.8057, -0.8755, -0.447, -0.3718, -0.02917, 0.8184, 1.321, -0.3865, 1.514, 1.315, 0.1587, -1.315, 4.03, -1.517, -0.02374, 1.14, 2.754, 0.577, -0.0664, 0.1884, 2.412, 0.1685, 1.372, 1.106, -0.429, -0.7485, 0.1285, -0.1774, 0.5083, 1.285, -0.2292, 0.2954, 0.1819, -0.514, -2.041, 0.1919, -0.5474, 0.52, 0.2832, -0.2668, -0.02074, -0.4983, -0.423, 0.0877], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, -1.417, 0.02023, -0.253, 0.2952, 0.01478, -0.616, -1.014, 0.1982, 0.3245, -0.02083, 0.4849, -0.03156, -3.656, -1.308, -0.4106, -0.5703, -2.723, -0.847, -0.37, -0.007904, -1.287, 0.6685, -1.449, -0.798, -0.657, -5.36, 0.4937, 1.269, -0.01344, 0.1249, -0.6865, 1.266, 0.8843, -0.473, -2.385, -0.6255, -1.039, 0.811, 0.3574, 0.665, 1.568, 0.7466, 0.521, -0.3184, 1.06, -0.03293, -0.2605, -0.7534, -0.1896], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.655, 0.1194, 0.2932, 0.2407, -0.2455, 0.02908, 0.1156, 0.257, -0.0826, -0.3335, 0.01842, 0.1488, 0.2563, 0.4778, 0.6, -0.1124, 0.1561, -0.268, 0.989, -0.5557, -0.04913, -0.05957, 0.3284, -0.2174, -0.2162, -0.5474, 0.09216, 0.1992, 0.05612, -0.2732, -0.2773, 0.1143, 0.05673, -0.38, 0.3887, -0.10126, -0.06384, -0.1243, 0.4111, -0.05753, -0.2151, 0.04526, 0.1676, 0.1411, 0.03378, 0.1959, -0.04462, -0.0743, 0.1974, -0.3203], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.637, -1.66, 0.3845, 0.7305, 0.1842, -0.04398, 0.5864, 2.287, -0.2261, -1.539, -0.01181, -0.1543, -0.4792, 1.019, -0.1638, 0.02179, -0.9497, -0.6836, -5.184, 1.1455, 0.01302, -0.2942, -2.703, 0.6743, -4.3, -2.986, -0.3066, 0.693, 0.432, -0.01247, -0.541, 0.8667, 0.2903, 0.1632, 0.1989, 0.5845, 0.416, 0.2427, -0.4934, 0.2179, -1.524, -0.2091, 1.552, -0.5835, -0.308, -2.049, 0.006504, 0.2051, -2.854, -0.09717], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.727, -1.466, -0.7, 0.2239, -0.03754, 0.02777, -1.341, -4.55, -0.0772, -2.646, -0.0098, -0.344, -0.933, -1.011, -4.1, -0.4258, 0.8936, -2.355, -0.3962, 0.744, 0.006523, -1.239, -2.375, 0.607, -0.0506, -2.705, -1.278, 0.839, -0.1869, 1.346, -0.5776, -1.117, 0.9873, -0.4543, -0.6006, -0.6875, 0.7246, -0.839, 0.1127, -1.537, -2.469, 0.1407, 1.367, -7.105, -3.398, 0.313, 0.04578, -0.00274, 1.289, 0.0947], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0379, 1.531, -0.02405, 0.4521, 0.4058, -0.0168, 0.6943, 0.4312, 0.0561, -0.4102, 0.03668, -0.2524, 0.154, 0.7495, -0.03223, 0.1061, 0.2086, -0.268, -0.2952, -0.737, 0.05078, -0.5664, 2.19, 1.273, 0.8965, 0.8066, -0.7363, 0.4873, 0.372, -1.617, -0.2825, 0.2045, 0.6484, -1.59, 0.2595, 1.033, -0.3586, -0.7456, 0.288, 0.2345, 0.02473, -0.8306, 0.1252, 2.133, 0.08435, -0.6772, 0.04926, 0.4907, 1.223, -0.27], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.103, -1.325, 0.647, 0.702, 0.1992, -0.02184, 0.3882, -0.53, -0.2377, -1.665, -0.00301, -0.1875, 0.777, 3.13, -0.1931, 1.455, -1.33, -5.703, 2.482, -0.8794, -0.00959, 1.416, 1.769, -1.434, 1.949, 2.195, 2.695, -0.1503, 0.9795, -0.146, 0.4375, -0.44, 0.7593, 0.5073, 1.23, 0.977, -0.1726, 1.134, -0.2155, -0.8423, 3.268, 0.991, -0.927, -1.383, 1.293, 0.5083, -0.03256, -1.186, 1.097, -0.9927], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7964, -6.34, -0.5654, 0.04996, 0.585, 0.03778, -0.3298, -5.332, 0.1127, -3.84, -0.0456, 0.4812, -1.659, -1.351, -3.09, -2.074, 0.4387, -7.305, -1.841, -0.111, 0.03516, -1.16, -0.2676, -0.869, -4.277, -4.066, 0.677, -0.0756, -3.672, -1.684, -2.393, -0.558, -1.754, 0.1259, -0.8247, 0.04788, -0.10333, 0.008575, 0.3625, -0.5244, -3.531, -2.225, 0.003464, -1.107, 1.449, -0.948, 0.01582, -0.6855, 0.9385, 0.2101], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.258, 0.3188, 0.2974, 0.5146, -0.525, 0.000409, 0.4504, -0.2402, -0.2805, -0.653, -0.0221, -0.014595, 0.942, 0.634, 0.846, 0.917, -0.5513, 0.4631, -4.375, -0.7554, 0.01438, -0.652, 0.2925, 0.7886, -0.1675, -0.422, 1.804, -0.03018, 0.4968, 0.187, -0.285, -1.132, -0.544, 0.7173, -0.5015, 0.739, -0.26, 0.8545, 0.6885, 0.05844, 0.2319, 0.09576, 0.5415, 0.5674, 0.721, 0.7495, 0.01122, 0.902, -5.01, -0.1364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.339, -5.66, 0.7217, 0.3625, 0.4866, 0.005108, -0.564, -2.459, -0.2253, -1.28, -0.04034, 0.05222, 0.469, -1.781, -0.0326, 0.9966, -0.0556, -2.873, -0.363, 0.4133, 0.01678, -0.3896, 0.534, -1.606, -1.1455, -3.19, 1.259, -0.3823, -0.48, 0.1848, -0.899, -0.146, 0.2139, -1.123, 0.6543, 0.1031, 0.1782, -1.183, -0.5356, 0.0666, -0.6953, -0.3774, 0.04413, 1.162, 0.256, -0.2644, 0.01834, 0.8354, 0.4988, -0.3135], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.219, 0.8975, -0.5015, 1.502, -0.8354, 0.02353, 2.273, -2.018, -0.6494, -1.687, -0.01953, 0.4473, 0.705, 0.1952, 1.781, 0.2888, 0.1914, 3.492, 1.0205, -0.2385, 0.02144, 2.19, 0.986, 2.365, -1.951, -0.621, -0.2094, 1.443, 0.507, 1.942, 1.269, -1.721, 0.8, 1.072, 2.264, -0.1823, -1.342, 2.549, 0.5635, -1.083, -1.383, 3.078, 2.44, 0.83, -1.7705, 1.349, 0.04007, 0.389, 2.398, -0.4968], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0928, -0.0354, 0.02643, 0.2876, 0.1545, 0.01204, -0.0852, -0.02927, -0.0619, -0.1937, 0.0356, -0.3213, 0.3276, -0.2091, -0.4902, 0.1125, -0.1417, 0.04666, -0.9736, -0.2705, -0.04584, 0.1776, -0.2417, 0.4014, 0.565, 0.6035, -0.4077, 0.2023, 0.254, -0.1062, 0.3428, 0.3032, -0.1929, -0.0237, 0.0936, -0.3008, 0.3718, 0.02693, 0.3667, -0.08105, 0.1292, -0.3494, -0.3574, 0.2605, 0.153, 0.1012, 0.03516, 0.00823, -0.4226, -0.0105], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.451, -0.4333, 0.076, -0.045, -0.3364, 0.02208, -0.03534, 0.491, -0.01156, -0.36, 0.00382, -0.04565, 0.4744, 0.7207, 0.3499, -1.605, 0.1624, -0.6367, -0.192, 0.0577, 0.00995, 0.538, -0.1993, 0.524, 0.2206, -0.1163, 0.685, -0.257, 0.759, 0.02199, -0.01587, 0.03366, -0.405, 0.5474, -0.557, -0.2063, -0.05624, -0.521, -0.1357, -0.03607, 0.2637, 0.3042, 0.014084, -0.6533, 0.2241, 0.08356, 0.003506, 0.2416, -4.34, -0.078], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.172, -0.4346, -0.8105, 0.8677, 0.9883, 0.05548, 0.7397, 1.482, 0.00575, -1.934, -0.00479, 0.6055, 1.558, -0.248, 0.05792, -1.88, -0.8247, -0.09503, -1.584, -0.6904, 0.03687, -0.2167, 1.073, 1.054, 1.083, 0.131, -1.145, 1.441, 0.8457, 2.564, 0.601, 2.2, 1.856, 1.151, 1.6455, -0.584, -1.299, 1.669, 1.014, 0.11597, 3.438, 1.255, -2.324, 0.5527, 0.5825, -0.05872, -0.03842, -1.373, 3.305, 0.344], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.652, -9.14, -0.544, -1.788, -0.2534, -0.03696, -0.8574, 0.4187, 0.556, -3.662, -0.0083, 0.8096, -2.39, -3.541, -2.78, -1.142, -0.9863, -2.49, 0.856, 0.11694, 0.04205, 0.10254, -3.15, 3.047, -0.2157, -6.53, 1.718, 0.4233, -2.441, 2.074, -2.424, -2.54, 0.875, -0.1984, -2.582, -0.0676, 0.01287, 1.883, -1.641, -3.947, -1.79, -2.523, 1.781, -1.146, -3.203, -1.3, -0.0351, -2.14, -2.523, 0.936], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7915, 0.2776, -2.344, 0.627, 0.02461, -0.03223, 2.303, 2.48, -0.576, -1.834, 0.0234, 0.8994, 1.239, 3.123, 1.677, 0.729, 0.8955, -0.32, 1.055, -1.047, 0.00981, 1.865, -0.7095, 2.37, 1.202, 0.4949, 0.7637, 0.1215, 1.558, 0.5513, -0.763, 1.157, 0.02483, 0.4548, -0.581, 1.002, 1.248, 2.594, -0.541, 0.4724, 3.158, 0.943, 0.9287, 1.543, 0.989, 2.367, 0.01157, 0.3933, -0.9463, 0.0872]]
[-1.29535, 4.11425, 0.0377263, -0.0252421, -3.10364, -0.0961853, 2.68291, 2.18447, -0.540381, -0.809232, 5.54618, -1.30367, -0.173095, -1.21583, 0.564487, 0.117124, 0.0181935, -2.12652, -1.33161, 1.31643, -0.919273, -0.216983, 0.266203, 3.12109, -0.898792, -1.98031, -1.33655, 0.514969, -0.0119529, -5.35511, 1.31124, 0.0484153, 1.99675, 0.142162, -0.0610979, -2.0124, 1.79539, 0.172853, -0.411121, 0.169063, 2.40555, -0.0630373, 1.64151, 1.31811, 3.18675, 2.00444, -0.824577, -0.762616, -1.00038, 2.39908, -1.295, 4.113, 0.03772, -0.02524, -3.104, -0.0962, 2.684, 2.184, -0.5405, -0.809, 5.547, -1.304, -0.1731, -1.216, 0.5645, 0.1171, 0.01819, -2.127, -1.332, 1.316, -0.9194, -0.217, 0.266, 3.121, -0.899, -1.98, -1.337, 0.515, -0.011955, -5.355, 1.312, 0.0484, 1.997, 0.1422, -0.0611, -2.012, 1.795, 0.1729, -0.4111, 0.1691, 2.406, -0.06305, 1.642, 1.318, 3.188, 2.004, -0.8247, -0.7627, -1.0, 2.398]
ReLU
[[-0.980424, -0.231379, -0.136078, 0.00781954, 0.158679, 0.830464, 0.188557, -0.183498, 0.23397, -1.12111, -0.0910742, -0.195274, -1.44511, -0.402335, -1.24815, -1.03421, 0.275803, 0.128619, -0.243866, -0.068492, -1.05537, -0.538191, -1.17913, -0.233079, -0.837761, -0.506011, -0.717823, -2.48305, -0.0340586, -0.277981, -1.3686, -0.20307, -0.263251, -1.66166, 0.0320911, 0.123989, 0.284325, 0.457367, 0.413656, -1.51352, 0.230469, -1.65727, 0.5299, -0.47737, -1.20751, -0.0375357, -0.0990426, -0.0377437, -0.222088, -0.246088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.218243, 0.0834898, 1.84504, 0.0011867, 0.00724289, -6.60399, -0.181574, 0.0287908, -0.160638, -1.92016, -0.0135652, -3.77882, -2.31372, -1.17808, -1.32392, -3.93143, -3.62675, -1.79919, -0.427433, 0.676037, -1.62096, 0.566978, -3.8965, -4.9278, 0.0630742, 0.0537095, -0.445004, -5.82773, 0.0301396, -0.387751, -0.176323, -1.18702, -2.04509, -0.292428, -1.18586, 0.78552, -5.50186, -2.03593, -2.37352, -0.426857, -0.373632, 0.632938, 1.0488, -3.12178, -3.89659, -1.51199, -6.86273, -0.0444039, -0.356071, -1.68325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.993542, 1.26514, -1.83496, 0.0229742, 0.467571, -1.89523, -3.5459, -2.04378, -0.0460059, -0.0150612, -1.23916, -2.88546, -1.86611, -0.230116, -1.17042, -2.06978, -2.09252, -0.80114, -4.554, -0.813771, 1.17101, 1.01244, 0.444151, -1.59596, -4.73304, -3.67811, -3.58157, -2.46566, -0.0285365, -3.09245, -1.36565, 2.82038, -2.12882, 0.279347, 0.691727, -1.67286, 3.06161, -0.364009, -1.61055, -0.357818, -3.00383, -2.90591, -1.60611, -4.51007, -0.399159, -0.0810931, -0.64023, -0.53366, 0.517528, -0.744757, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.438428, 0.456568, 1.12735, -0.0331853, -0.15119, -1.79324, 0.131362, -0.569326, 1.53491, -0.257812, -0.303594, -0.961287, 0.327061, 0.0259325, -0.482996, 0.163738, 0.423446, -0.683597, 0.160153, -0.0728918, -0.000828923, 0.00641046, 2.77942, 0.0862975, -0.0555255, -0.645329, 0.737848, 0.604176, -0.0311756, -0.361231, 0.531473, -0.69208, 0.912354, 0.145964, 0.67817, 0.121403, 1.11782, 1.35741, 0.17212, -2.78469, 0.799845, 1.32565, -1.22964, 0.496642, 0.118259, 0.893688, -0.739526, -0.212639, 0.182538, 0.0131544, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.142079, 0.187292, 0.663309, -0.00355943, -0.26909, 0.052754, -0.475044, 0.901202, -0.0287479, -0.0961124, -0.0915598, 0.61042, -0.33276, 0.420174, -0.538085, -0.306145, -0.113259, 0.0557358, 0.540335, -0.0457336, 0.0323444, -0.07434, 0.761271, 0.0929519, -0.910817, 0.553048, -0.526136, 0.73792, -0.0119705, -0.36344, 0.301498, -0.335945, 0.420354, 0.668432, 0.27651, 0.668443, -0.0508024, -0.376517, -0.168525, 0.156535, 0.0932792, -1.86223, 1.29516, 0.431479, -0.475763, -2.31452, 1.34957, -0.00551927, 0.284803, -0.540273, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.539375, -0.13698, 0.518067, 0.0230596, -0.316841, 2.36173, 1.31425, 3.04748, 0.197085, -2.61422, -0.181954, -2.07479, -0.103559, 0.479418, 0.803572, 2.29004, -0.290558, -2.15067, 0.655556, 0.217975, -3.49392, 1.00491, 2.02264, 0.750997, 0.0760688, -0.16912, 2.15107, 1.7006, -0.0049565, -0.621056, 0.865793, -0.492732, 1.64669, 0.320379, 0.447523, -2.13487, 3.44614, 1.31461, 1.2588, -0.119163, -0.265073, -2.02062, -4.4386, 0.899972, 1.00523, -5.0157, 0.293566, -0.691828, 0.21018, -0.83866, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0343057, 0.0599073, 0.164019, -0.0293742, -0.0258656, -0.66579, 0.0506304, 0.011916, -0.0769651, -1.51476, -0.0359082, -0.116079, 0.0439298, -0.0145864, -0.0775187, 0.173852, 0.0220873, -0.0789319, 0.18097, -0.0198053, -0.0131918, 0.0723139, 0.50973, 0.0483376, -0.0249851, 0.077807, -0.0713917, 0.0392472, -0.0214248, -0.0903099, 0.0683118, -0.0625068, 0.186457, 0.0155755, 0.10061, -0.0147052, 0.258106, 0.198741, 0.0181444, -0.395241, 0.0312549, 0.137811, -0.22674, -0.0279361, 0.012462, 0.142972, -0.00675034, -0.0163157, 0.0097587, -0.0158526, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05464, 1.15998, -4.64736, -0.00467878, -0.178563, -3.19647, -1.50357, -0.569637, -0.473938, -1.01206, -0.408751, -4.88021, -1.2571, -0.386635, -4.62299, -1.93495, 0.324413, -5.58347, -1.80543, -1.67126, -0.142037, 2.32357, -3.29609, -4.04598, -8.80941, -3.42275, -3.19267, -4.89705, 0.0017893, 0.0877497, -7.63419, -0.340775, -3.74319, -2.94065, -9.89152, 0.514501, -3.74157, -7.85261, -5.92523, 0.56761, 2.26678, -4.26645, -0.546557, -0.742925, -0.387341, -2.68517, -7.23262, -1.18629, -0.923227, 0.494766, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.337271, 0.0403112, -0.123984, -0.00955108, -0.179601, -1.33953, -0.0451182, 0.652841, -0.268986, -0.554355, 0.0128914, -0.315237, -0.912955, -0.42422, 0.250598, -1.2602, -0.181026, -0.796837, -1.3012, -0.396321, 0.0315433, 0.389592, -0.946819, 0.352848, 0.123169, 0.194446, -1.37834, -1.20165, 0.00145832, -0.297594, -0.0463329, 0.229813, 0.733939, 0.194869, 0.306485, -0.270069, 0.453198, -0.274454, -0.542335, -0.172023, 0.077952, -1.00048, -0.60017, -0.60959, 0.18626, 0.0849105, -0.392112, -0.0614353, -0.20164, 0.120008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.42928, -0.0629834, -0.438525, 0.0207731, -0.695896, 2.01251, -0.325594, -3.44161, -0.51774, -0.103115, 0.0677701, 0.276047, -3.24998, -1.32434, 0.273549, 0.0117135, -2.99027, -0.0124461, 0.135624, -0.266315, -2.85672, -0.00585952, -3.99166, -2.86264, -3.482, -4.01253, -1.44705, -0.771265, -0.0387395, -0.24779, -3.36634, -2.10884, -0.42719, -1.42199, -1.88052, -1.44632, -3.9645, 1.69917, -3.08656, -2.05193, -0.320887, -0.354508, -4.04224, -2.68056, -1.27858, -5.28128, -3.05894, 0.264865, 0.502876, -0.189868, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2474, 0.108434, 0.786308, -0.0348019, -0.26349, 2.39179, -1.11844, 2.17616, 1.44248, -0.205486, -0.470334, -0.60585, 0.811056, 1.76556, 1.33424, -0.342894, 0.42837, -0.039576, 2.14065, 1.48407, -0.497932, 1.15644, 2.77217, -0.0851061, -1.31779, 1.32552, -1.75377, 0.34619, 0.00641548, -0.987571, -0.221442, -0.748808, -2.51813, 0.485448, -0.942111, -1.54565, 2.57195, -0.207326, 0.954309, 0.328348, 0.580549, 2.1546, 0.078925, 0.104217, 0.198239, 1.00403, -2.55446, -0.171348, -0.302689, 0.0216844, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.55237, 0.183673, 0.194642, -0.0454328, -0.0255278, 0.531219, -0.784912, -1.70125, -1.78652, 0.00432088, -0.0216812, -0.0621512, -3.82315, -0.36956, -3.69804, -1.85695, 0.284695, -1.84773, -5.8091, -2.68611, -3.64996, 0.180861, 1.37895, -0.0971777, -3.59756, -1.90929, -1.67682, 0.401375, -0.00195848, -2.75337, -0.718172, 0.0937747, -2.91028, -1.05045, -2.00971, 0.00986877, -1.01819, -2.4863, -0.285022, -3.03266, 0.144496, -3.20117, 0.126894, -0.648018, 0.0489058, 0.152623, 0.098255, -0.0340335, -0.121636, -0.059346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0803514, 0.0979457, 0.396583, -0.0296521, -0.000964251, 0.220733, 0.0297351, -1.28551, -0.0243086, -0.179874, -0.115444, -0.827532, 0.2571, 0.189258, -0.0941499, -0.931366, -0.192839, -0.299668, -0.325478, -0.493537, -0.030004, -0.226575, 0.882032, -0.0155727, -0.0485316, -0.0613336, -0.0311199, -0.891404, 0.0430194, -0.0912314, 0.00947796, 0.190973, 0.164637, -0.0131205, 0.211721, 0.1457, -0.245006, 0.385384, -0.0875307, -0.504891, 0.131676, -0.00598505, 0.489489, 0.22988, -0.235809, -0.34334, 0.255237, -0.0638723, 0.0329015, -0.0443186, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00720158, -0.0326462, -0.055424, -0.019541, 0.0152826, 0.00517402, -0.0504962, 0.00586404, -0.0519833, 0.0405658, -0.0245944, -0.0529231, 0.0107774, -0.0136893, -0.0480206, -0.0291095, -0.0395859, -0.00918727, -0.00219818, -0.0558262, -0.0058315, 0.0214115, -0.0158365, -0.0176418, -0.0435679, -0.0162132, 0.0298783, 0.0063793, 0.0458168, -0.0450384, 0.00495581, -0.014697, -0.0379852, -0.0429882, 0.0090372, -0.000367274, -0.0184228, -0.018346, -0.0278499, -0.0193163, 0.00721517, -0.0463712, -0.00233473, 0.0232017, -0.0292495, -0.0488662, -0.00482057, -0.0242324, -0.0432538, -0.026074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.56071, 0.258694, 1.7484, 0.0151972, -0.129029, 0.413846, -0.474069, 1.88842, 0.0943143, 0.27675, -0.0292674, -0.208147, 1.32613, -0.373521, 1.1351, 1.45715, 0.638983, -4.24664, 1.30262, -1.85741, 0.329312, -0.58132, 2.06512, -0.622181, 0.534509, -2.10739, -0.773912, 0.294327, -0.043031, -0.365695, 0.205718, 0.445793, -0.852697, 0.230926, 0.686171, -0.717924, 0.352132, -1.19554, -0.167796, -0.385983, 0.155902, 3.03115, 0.541648, -0.281421, -0.69718, 0.770871, 0.711927, -0.31737, -0.524903, -0.697959, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.51862, -0.0323628, 3.61856, 0.0372718, 0.373685, -0.285741, 1.33654, 3.89597, 0.735862, 0.152072, -0.91603, 2.62951, 0.785645, 0.694733, 1.33613, 3.05572, 0.400399, 1.40111, 4.27184, 0.600556, -0.0568034, 2.85373, -0.521941, 1.39658, 0.112086, -4.33914, 2.10179, 0.482518, -0.0476355, -0.020567, 0.673936, -0.307272, -3.74985, -2.40034, 2.4836, 0.776581, 0.356328, 2.4594, -1.66731, 1.38864, 0.798924, -1.95138, 1.61097, 1.95883, 0.652286, -0.156586, -10.1985, -1.21037, -1.41144, -1.22552, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0084623, 0.0100838, -0.0153717, -0.0286062, -0.0404937, 0.032988, 0.0094517, -0.0687535, -0.0315, 0.0104727, -0.0476036, 0.0132179, -0.0223132, 0.0125093, -0.0379552, -0.0414473, -0.0114621, 0.00592409, 0.00184672, -0.0516927, -0.000726892, -0.0196259, -0.0360085, 0.0217378, 0.0065319, -0.00466425, 0.0117645, -0.0158492, 0.0426496, 0.0145671, -0.0165329, -0.0302023, 0.0340931, -0.0382825, 0.0120211, -0.0554959, 8.48884e-05, -0.0616896, 0.00818652, -0.0441206, -0.0318737, 0.0122608, 0.0060031, -0.0406742, -0.00348492, 0.0190285, 0.0152416, -0.0295285, -0.0284449, -0.0654146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.247593, -0.287018, -5.12583, -0.0374285, -0.202967, 0.0459679, 0.411874, 0.0933066, -5.64427, 0.704565, 0.056407, -2.25823, -1.61433, 0.542172, -9.45418, -3.96723, 0.318321, -3.88734, -3.18625, 1.02133, -3.33871, -0.231331, -0.930254, -0.431772, 1.36995, -1.80865, -2.14321, -3.97388, 0.0440985, -1.30221, -1.17169, -0.568858, -2.56714, -1.5105, -1.44548, 0.188417, -6.55176, 0.762351, -1.618, -2.9496, 1.84109, -3.06319, -6.22376, 0.861119, -1.94805, -0.761617, -2.64614, -1.09177, -0.61665, -2.08132, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.123275, 0.128759, 0.550291, 0.0352254, -0.0714419, -2.0494, -0.108497, 0.576051, -0.0703442, -1.47067, -0.0372048, 0.165455, -0.123067, -0.289456, -0.117668, 0.502372, 0.201621, 0.173029, 0.522306, 0.168671, -0.117186, -0.145099, -0.564457, 0.164506, -0.0806825, -0.130968, -0.187088, -0.379332, -0.0094327, -0.107986, 0.1357, 0.072518, 0.404953, -0.210578, -0.122895, -0.560731, -0.319514, 0.235482, -0.327065, -0.110958, -0.244272, 0.266466, 0.454628, 0.30758, -0.226283, -0.0575587, 0.147155, 0.0474644, -0.0748009, -0.216328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05419, 0.62849, -0.0487668, -0.00306919, -0.809729, -1.46813, 1.03273, -8.13577, -0.0297154, -0.267444, -0.499652, -1.30438, -0.179586, -2.47991, -0.72226, -0.02866, -4.53488, 0.303634, -1.23665, 1.16742, -1.77806, 1.01755, -4.50462, 0.151559, -3.74876, -0.304636, -6.50179, 0.0458999, 0.013277, -0.0862696, -1.02098, -1.31305, -0.0790821, 0.305024, -4.39026, -2.97485, -7.45487, -4.46251, -0.977114, -1.54636, 1.75666, -0.20597, -7.15141, 0.608478, -1.84292, -5.45924, -3.73748, 0.639231, -0.344808, -1.34059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0776466, 0.200756, 1.18194, -0.0157974, -0.298812, 3.62651, 0.87482, -0.0675236, 0.00260323, 0.0653463, -0.271501, -0.170911, -1.6301, 1.021, -1.22423, 2.8933, -0.332244, 1.53815, 1.08037, 0.134716, 0.184237, 1.40806, 0.533338, 0.650695, -0.0490794, 0.150388, 1.22138, 3.11573, 0.0415685, -1.10867, -0.185634, -0.808966, -0.833786, -4.21921, -0.551366, -0.71825, 1.72008, -0.515009, -1.78994, -0.101298, 0.481744, 2.49331, 1.6079, 0.840545, -0.591911, 0.805157, 0.83202, -0.211285, -0.787312, -0.286234, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0228322, -0.0254281, -0.160186, -0.010108, -0.0641183, -0.00656354, 0.0235867, -0.00960135, 0.0173909, -5.4137e-05, -0.133187, -0.0288027, 0.0553397, -0.0191924, -0.0156536, -0.0326082, -0.0359356, 0.033391, 0.0339476, -0.170716, -0.0719776, -0.100392, -0.0248415, -0.0132747, 0.028608, -0.0954109, 0.00877881, -0.0467412, 0.00606185, 0.0261608, 0.000680479, 0.0258804, -0.051693, -0.0183865, -0.0432876, 0.0220374, 0.0212895, -0.0161833, -0.0162094, -0.129312, -0.192251, 0.0373121, -0.135479, -0.187756, -0.0801832, -0.0364832, 0.0240291, -0.17477, -0.00634068, -0.114147, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0653961, -0.00915048, 0.102505, -0.0123543, -0.0292722, -0.634894, -0.0162655, 0.030962, -0.105258, 0.0533778, -0.0195724, -0.00352245, 0.140146, -0.0190977, -0.107687, 0.16443, 0.00964127, -0.322846, 0.118156, 0.0213746, -0.0245268, -0.078972, 0.161004, -0.0414176, -0.0103466, -0.0343793, 0.104754, -0.0584236, 0.0488941, -0.00729703, 0.0385399, -0.141077, 0.0604102, 0.0229184, 0.054036, 0.00418373, 0.160783, -0.0271655, 0.0055415, -0.155167, -0.0614604, 0.00612074, -0.170225, 0.0462018, -0.00183858, 0.0299866, -0.0155957, 0.0157089, 0.00202505, -0.0271824, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.132387, 0.0620975, -0.0813152, 0.0139433, -0.0736492, -0.32538, -0.0721531, 0.367472, -0.111644, -0.589297, 0.0119932, -0.116736, -0.674015, -0.238377, 0.0763423, -0.532582, -0.0939719, -0.491942, -0.675188, -0.0512911, 0.0401858, 0.199128, -0.502524, 0.254224, 0.100987, 0.159641, -0.494493, -0.659225, 0.0139419, -0.135202, -0.0558662, 0.125958, 0.32649, 0.0614673, 0.182253, -0.267259, 0.298961, -0.333266, -0.360901, -0.0972609, 0.118035, -0.696127, -0.325282, -0.423066, 0.0936792, 0.0305064, -0.235735, -0.0324099, -0.0783997, 0.0898404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.09007, 0.274576, 0.168268, -0.0115212, -0.279911, 0.77439, -1.20955, -5.00347, -0.847673, 0.0401448, -0.242452, 1.19456, 0.555612, 1.30213, -1.03262, 1.21661, -0.546722, -1.05387, 3.51037, 0.576553, 0.00743881, 0.64162, 2.09542, -0.00518474, -0.545951, -0.00776255, 0.105462, 0.882029, -0.0238042, -0.216087, 0.415726, 0.831644, 1.13092, 0.0433895, -0.22628, -0.125632, 0.963084, 0.458107, 0.553925, 0.222648, 0.119012, 1.80041, -3.26841, 0.196099, -0.0352155, 1.1915, -2.11024, -0.190997, -0.087862, 0.0544957, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.195199, -0.911221, 0.955134, 0.00637761, 0.11372, 2.6148, 0.910734, 2.93954, -0.427246, -0.289584, -0.467273, 0.518871, -0.0504374, 0.695477, 0.809247, -0.31867, 0.609241, 0.896522, 1.01876, 1.26926, -0.551688, 1.04153, 2.10168, -0.539271, -0.0829913, -0.89796, -0.309428, 3.5599, -0.0437453, -0.134019, -0.534309, -0.363116, -3.11224, -1.16955, -1.86145, 0.130669, 2.07424, 1.2378, 0.932478, -0.914916, -3.71021, -0.420152, 1.32469, -1.99026, 0.49765, 0.88133, -2.59806, -0.0920466, -0.242857, -0.416647, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0269645, -0.0317325, -0.00290785, -0.0060428, -0.0248284, -0.0347245, 0.0120105, 0.017093, -0.0310559, -0.0299231, -0.0280838, 0.00557375, 0.043735, -0.00856955, -0.0315775, 0.0338425, -0.0418957, -0.038164, 0.0333719, -0.0260666, -0.0100203, 0.0192097, -0.0313636, -0.0301812, -0.0224, 0.0151434, -0.00949939, -0.0142076, -0.00492095, -0.0135126, -0.0213594, 0.00985992, -0.0290898, -0.050049, -0.0302736, -0.0183875, -0.00673947, 0.0144579, -0.045763, -0.0280436, -0.00221958, -0.0364731, -0.000701191, 0.00947651, 0.0210714, -0.0119262, -0.0406778, -0.0749832, -0.00327932, -0.01726, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.70113, 0.207026, -0.729051, 0.00847671, -0.153565, -0.614488, 0.246256, 0.175086, -0.161298, -1.35238, -0.0287106, -0.401361, 0.0629304, 0.0715569, -0.318166, -0.896987, -0.512199, 0.90825, -0.151059, 0.116281, 0.0683305, 0.167626, 0.141544, -0.158913, -0.166593, -0.0920023, -0.236523, 0.0383619, -0.0154852, -0.276221, 0.399757, -0.0916511, 0.559587, 0.387381, -0.255169, 0.139925, 2.42687, 0.352591, 0.825374, 0.0567248, -0.168184, -0.376502, -0.190223, 0.401861, -0.181516, -0.164197, -5.01337, -0.0970565, 0.181574, -0.256217, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.64787, -1.00941, 1.47034, 0.0211812, -0.66065, 2.78046, 0.996241, 1.37244, 1.29684, -0.125997, -0.184806, 1.75409, 1.5073, 0.629616, 2.11876, 2.19518, -0.625452, -4.60091, 0.309472, 0.0594556, 0.619928, -2.62602, -1.05593, 0.471237, -5.11063, -0.472498, -0.463308, 0.535767, -0.0199937, -0.247928, -3.41985, -2.12123, -1.91715, 0.4768, 0.887116, 1.51506, 1.86095, -0.528635, 3.35447, -0.666032, 0.980233, 1.7324, -0.652509, -0.484156, -1.16058, 1.00453, 0.6236, -0.149632, -0.0332275, -0.830121, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.92463, 0.0404097, 1.24379, 0.013701, -0.317564, 3.05692, -1.31454, 2.18249, 0.4544, 2.07576, -0.641268, 0.721901, -2.29534, -1.84175, 0.287934, 3.3015, 0.385496, -0.759409, 2.03692, 1.17537, -0.298542, 1.98333, 2.16412, 0.194874, -0.26322, -0.0818666, 1.19896, 0.465602, -0.0138694, 0.0380015, 0.849238, 0.0743789, 2.29756, -3.03213, -0.205447, 0.846717, 0.495642, -1.79311, 2.51156, 1.64724, 0.823404, -2.62466, 2.94935, 0.128668, -0.36887, 0.600247, 1.21482, -1.2367, 0.509895, -1.33618, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.107413, -0.0253463, 0.156782, -0.000839544, -0.0420245, -0.00814674, -0.0292267, 0.214392, -0.111702, -0.0665547, -0.0847795, -0.0973661, 0.094083, -0.207462, -0.0323103, 0.393388, 0.143113, 0.0421518, 0.409675, 0.0486392, -0.156916, -0.298443, 0.353396, 0.0779501, -0.0620195, -3.17473, 0.137453, 0.081435, 0.0169892, -0.436473, 0.118498, 0.045861, -0.106251, -0.0836231, 0.103141, -0.0722185, 0.298379, -1.50967, -0.0746543, -0.0578687, -0.174431, 0.204535, -0.0290643, 0.12281, -0.0325857, -0.218701, 0.023185, 0.0335778, -0.00189249, -0.0510648, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.363158, 0.199085, 0.297769, -0.031355, -0.254714, -0.571661, -0.411493, -0.201881, -0.237568, -0.393986, -0.00194326, -0.000703902, -0.185311, 0.0580389, 0.401369, 0.0848218, -0.867406, 0.265044, 0.185596, -0.128174, 0.0694125, 0.0679271, 0.600905, -0.0592769, -0.093268, 0.199868, 0.25666, -0.558533, 0.00140538, -0.115359, 0.0261735, -0.337361, 0.370953, 0.184968, -0.138221, -0.0348559, 0.148094, -0.180185, -0.244648, -0.638603, 0.231378, 0.473575, -1.02888, 0.183116, 0.0368396, -0.148766, -0.329583, -0.0771268, -0.138717, -0.217654, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00659116, 0.00867997, 0.0166532, -0.0418972, 0.00298466, 0.0669789, -0.00930899, -0.0327931, 0.00673024, 0.00737738, -0.00952569, 0.00456167, 0.00333347, -0.0109625, -0.00907767, -0.0369717, 0.0041619, 0.0365443, -0.0147686, 0.0130903, -0.00352081, 0.0139832, -0.0123192, 0.00959336, -0.000633201, -0.0217544, -0.00259829, 0.0221321, -0.00974268, 0.00108443, -0.00444284, 0.00456081, -5.827e-05, -0.00324382, -0.00582624, -0.00948083, -0.00161269, 0.0176732, 0.00539038, 0.00320535, -0.00185767, -0.00339151, -0.00443155, -0.00407364, 0.00457074, -0.0294249, -0.0179385, 0.00622899, 0.0058949, -0.00396392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.130271, 0.215516, 1.42892, 0.00137808, -0.0150562, -2.2304, -2.48372, -3.54624, 0.177737, -0.454673, 0.0308515, -0.0608582, -0.653686, -0.236864, -1.83032, -0.537126, -0.0993773, -1.02881, -0.958715, 0.72634, -0.259162, -0.167376, 0.0515042, -2.14986, -1.7322, -0.867505, -2.84902, -0.765027, -0.0205355, -1.35306, -2.07206, -0.146957, -1.25332, -0.444501, -0.872421, -0.114481, -0.183542, -2.75885, -0.108297, -0.422635, -1.1369, -0.54532, -3.87807, -3.53656, -1.99297, -2.05007, -0.990976, -1.11602, 0.215994, -0.778799, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0604058, 0.0489866, 0.194835, 0.0319368, -0.0437395, -0.290218, 0.00569408, 0.152722, 0.198823, -0.0046806, -0.0470077, -0.22972, 0.0808197, 0.075782, -0.136815, 0.163825, 0.028161, -0.00690184, 0.167379, -0.0339726, 0.0133807, -0.0180082, 0.477112, 0.0107614, -0.00956272, -0.176505, 0.0335496, 0.165911, -0.0196017, -0.107131, 0.0896145, -0.0418186, 0.23515, 0.0263805, 0.120093, 0.014479, 0.11882, 0.125379, 0.0180819, -0.229364, 0.0264894, 0.178016, -0.171789, 0.132048, -0.0104734, 0.067293, -0.109314, -0.0301852, 0.00355527, -0.0134379, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0023286, 0.0067895, 0.0397634, 0.0191131, -0.010305, -0.0555957, -0.0846926, 0.0364097, 0.0226797, -0.159281, -0.0210409, -0.0366197, -0.0611934, -0.0159502, -0.056405, 0.0161949, 0.0355062, 0.0720415, 0.0846091, -0.103478, -0.0031629, -0.117403, 0.127195, 0.0299013, -0.0306122, -0.029873, -0.0422635, -0.169553, -0.0270606, -0.00705507, 0.0446981, -0.00965356, 0.0864546, -0.034486, -0.136847, -0.0813226, 0.0780282, -0.109936, 0.0577761, -0.0525527, 0.0119178, 0.131629, -0.0198073, 0.0405117, -0.00528409, 0.0879243, -0.142495, 0.0082387, -0.0191311, -0.0119135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.47161, 0.186772, -0.21976, 0.0169928, -0.435285, 2.95482, -0.326535, -2.52293, -0.0977596, 0.677892, -0.14616, -0.628914, -1.07585, 1.49965, -1.15295, 0.567618, -1.9951, 1.79371, 0.830087, -1.18597, 0.424519, -1.45516, 1.71353, -0.742239, -1.22983, -0.103035, 2.42554, 0.534771, 0.038845, -0.255644, 0.419022, 0.319995, 1.13311, 1.6329, 1.53996, 1.8007, 2.33825, 1.1938, 2.61392, -2.86717, 1.60025, 2.89999, -0.423331, 0.733239, 1.00552, 0.456321, -6.05011, -0.983454, 0.405082, -0.409808, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00285279, -0.0131251, 0.0177943, -0.0323583, -0.00752573, 0.0415976, -0.0105778, -0.0027439, 0.00161333, -0.034312, -0.00578444, -0.00402865, -0.00602338, 0.00575291, 0.0157139, 0.0122983, -0.00750665, 0.0171314, 0.0225463, 0.0146149, -0.00539156, 0.0079483, 0.0200088, -0.00905794, -0.00701541, -0.0111382, -0.0391511, -0.223157, -0.00783738, -0.00565237, 0.00819676, -0.00377005, -0.0314128, 0.00386963, 0.0279092, -0.000823032, 0.0299183, 0.00778675, -0.0163696, -0.00385288, 0.0103327, -0.000465216, -0.0145911, 0.00945727, -3.74855e-05, -0.0521695, 0.0260513, 0.00716841, 0.0112172, -0.00801989, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0379112, 0.0375428, 0.00373857, 0.0193026, -0.0264616, -0.0248703, -0.0428137, 0.0813869, -0.0192969, 0.121297, 0.00705174, -0.0244422, -0.166098, -0.045194, -0.0194036, -0.172831, -0.0351478, -0.174857, -0.131563, -0.017036, -0.0322465, 0.00416188, -0.12753, -0.00559461, 0.0193104, -0.0268959, -0.0872218, -0.162157, -0.00827015, -0.0438237, -0.011031, 0.0268722, 0.0762897, 0.0440418, 0.0647618, -0.0676872, 0.139627, -0.0725222, -0.0623282, -0.0296149, 0.0265747, -0.107765, -0.0538906, -0.134431, 0.0133662, -0.0583164, -0.0690456, -0.00616269, -0.00831428, 0.00136868, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.262305, -0.107261, 0.931525, -0.0160786, -0.244748, -1.29608, -0.199854, 0.676191, 1.60847, -0.526479, -0.515256, 1.31497, 0.177219, -2.16838, -0.119423, -0.709238, 1.04177, -0.746506, 2.25086, 0.493888, 0.0893831, 2.23942, -0.164278, 0.555414, 0.26625, -0.487715, 2.28235, 2.6943, -0.0473604, -0.663741, -0.106636, 0.639695, -1.12981, -1.02453, 1.12996, 0.954233, 0.974977, 0.823153, 0.557426, -1.53276, 1.1071, 1.97486, 0.781782, -0.396406, -3.69764, -0.929803, -1.74363, -0.341159, 0.479189, 0.0907448, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0953279, -0.308455, 0.180915, 0.0391771, -0.0110942, 0.407507, 0.953889, 0.93615, 0.245568, -0.183288, -0.21493, -2.48887, 1.76052, 0.316998, 0.243656, 3.28759, 1.49725, -0.983414, 3.11361, -0.613679, 0.171861, 0.467111, 2.13087, -1.68242, -0.0532093, -1.20555, 2.95748, -0.680327, 0.0206636, -0.224239, -0.010884, 1.44303, -3.3799, -1.82618, 0.603329, -1.78984, 3.18805, -0.595613, 0.149238, -0.707415, 0.696679, -0.85362, -0.538823, 0.692912, 0.395609, -2.95627, 1.88098, -0.343718, -1.19471, -0.324447, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.01493, -2.4776, -0.120647, 0.0371919, -0.000991082, -0.37938, -1.38131, -6.10103, -3.16565, -0.0479607, -0.0926736, -4.81501, 0.00302311, -1.80926, -0.172103, -1.24217, -1.75669, -2.19435, -0.0258855, -1.68903, -1.79051, 2.00149, -1.16446, -0.060176, -2.89812, -0.736491, -0.0793174, -0.797587, -0.0262871, -1.85509, -2.78934, -0.355083, -0.995903, -0.505549, -3.41409, -6.39195, -7.3242, -0.542388, -0.103304, 0.622629, -4.03617, -1.35091, 0.743522, -3.33761, -1.37425, -2.71823, -0.00913815, -0.564281, -0.871615, -0.300218, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05599, 1.0837, 0.0429702, -0.0262759, -0.467701, 0.874474, -0.422555, -0.649823, -0.473913, 0.59265, -0.015945, -5.84392, -2.45753, -0.820075, -0.466291, -4.64989, -1.24711, -1.43662, -7.42005, 3.89511, -1.33665, -0.199218, -0.812211, -0.238312, -4.03432, -1.6781, -4.00438, 0.852079, 0.00856066, -2.17664, -6.73922, 0.6702, -1.32918, -2.0282, -0.689062, -4.63034, -14.7019, -1.83466, -5.6011, -0.861552, -1.02688, -3.29118, 0.17382, -0.868517, -1.06725, -0.603529, -4.60446, -1.39884, 0.133936, -1.1177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.01439, -1.99575, 1.3208, 0.0124515, -0.179614, 3.85939, 0.841507, 1.03089, -1.94964, -0.0851677, -0.425939, 0.643852, 0.971472, 0.83889, 0.66329, -0.28852, 0.736641, 1.08256, -0.169093, -0.0712352, -7.42949, 1.58196, 2.28029, -0.379499, 0.666625, -1.36543, 0.562444, 3.579, -0.0253944, 0.00518429, -0.94672, -3.88394, -0.353892, 0.0396483, -1.93881, -0.024052, 1.42046, -2.29844, 0.920111, 0.509714, 1.32672, 1.334, 1.27593, 0.97568, 0.54183, 0.0498479, -3.09194, -0.186998, 0.276153, -0.28541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0303854, -0.00121625, 0.0509989, 0.0198895, 0.0210837, 0.154414, -0.0303814, -0.0102822, -0.0146369, -2.63084, -0.0207764, -0.00333957, -0.0212207, 0.0103718, 0.0205631, 0.110999, -0.018153, 0.0493406, -0.117941, 0.0376818, 0.00227936, 0.0112465, -0.0291111, -0.00439365, -0.0135859, 0.00229126, -0.000416791, -0.113014, -0.0386149, -0.0177541, -0.0156552, 0.0212946, -0.00274484, -0.0019339, -0.0366486, -0.0256224, 0.00754666, 0.0237643, 0.0293153, -0.00636441, -0.0121285, 0.0082209, -0.203509, -0.0103527, -0.0442582, -0.0813756, -0.0538903, 0.00387354, 0.000228513, -0.000855056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0328321, -0.0530117, 0.0184955, 0.0313554, -0.0087489, 0.0265573, 0.000113448, -0.0366622, 0.0159768, 0.0012909, -0.0652789, -0.0119121, 0.0112182, -0.00652133, -0.0383076, 0.018861, -0.0266744, 0.00938968, -0.0256868, -0.0405396, -0.015365, -0.0421152, -0.0373042, -0.00321986, -0.00372678, 0.0244558, 0.00344057, 0.00370209, -0.00723815, -0.0131903, -0.013159, 0.00529542, 0.0285479, -0.0465437, 0.0285452, -0.0257771, 0.0408955, 0.0346054, -0.00919305, 0.000886344, -0.0403165, -0.0433152, -0.0340902, -0.0377497, -0.0472565, 0.0189976, 0.0308537, -0.0329014, 0.00506355, -0.0501357, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.97181, -1.46595, 1.83393, 0.0418778, -1.88625, 4.37563, -0.44057, 2.92867, 0.659703, 0.222011, -0.603234, 4.06147, 2.91179, -1.18809, -0.743805, 1.84538, -1.38396, -1.26497, 4.15999, 1.76265, -1.04081, 1.51157, 4.14316, -1.97382, 0.789838, -0.379436, 2.11456, 4.56396, -0.0257967, 0.464012, -0.215755, 0.910609, -2.74252, -1.14252, 1.03022, 2.3104, -0.988727, 0.613601, 2.56144, 0.562509, 0.274274, 0.808824, 1.45843, 2.8129, 0.0410764, 0.455488, 1.4066, -0.325663, -0.575968, -0.477665, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.88318, -0.331221, 0.387448, 0.00491301, 0.0794712, 2.26897, -1.36914, 0.396022, 1.4629, -0.422006, -0.561204, 1.44044, 2.59378, 1.29584, -5.36749, 0.455309, -1.32612, 2.12609, 2.81945, 0.986548, 0.315235, 0.434227, 3.98661, 0.573707, 0.164326, 1.06452, -3.55272, 1.91543, 0.00816826, -0.806144, -0.233977, -2.29354, 1.6171, 0.0463315, 1.02924, 0.878213, 2.47387, 1.30231, 1.06, 0.292967, 2.00912, 1.49248, 2.34955, 1.93198, -0.619531, 3.72483, -1.69667, -0.906044, -0.508021, -0.445338, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.13542, 0.00998145, 1.04483, -0.0184265, -0.0850219, 1.35155, 0.501712, -0.044985, 0.214283, 1.09654, -0.111781, -1.92716, 0.27853, 0.129776, 0.206134, 0.947211, 1.02684, -7.5133, 1.21667, -1.11726, -0.133319, 0.601907, 1.67651, -1.33519, -0.211112, -0.749661, 0.27305, -0.0972756, -0.00675721, -0.0934575, 0.774257, -2.29683, 1.33649, -1.24208, -0.163775, -1.68795, 2.7337, 1.13095, -0.30047, -0.421993, -0.20363, -2.07555, 0.236498, 0.180407, 0.0254609, 0.190646, -2.58208, -0.309215, -0.310942, -0.140767, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.164995, -0.082825, 0.0198467, 0.0296524, -0.0459603, -0.834605, 0.0833514, 0.0994488, -0.106621, -0.0827767, -0.00826457, -0.140295, 0.107293, -0.0852911, 0.14152, -0.443271, -0.0472404, 0.0384509, -0.354013, -0.314905, -0.00780405, 0.112048, -0.284604, 0.0101169, -0.0138618, 0.0236221, -0.582416, -0.208453, 0.00426472, -0.139822, 0.0456046, 0.0577673, 0.271631, 0.0948193, 0.0161983, 0.1582, -0.0508404, 0.252925, -0.0456722, -0.0173384, -0.120113, 0.00480046, -0.155161, 0.0414313, 0.05812, 0.0612048, -0.045947, -0.00559795, -0.134488, -0.00632307, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.9805, -0.2313, -0.1361, 0.00782, 0.1587, 0.8306, 0.1886, -0.1835, 0.234, -1.121, -0.09106, -0.1953, -1.445, -0.4023, -1.248, -1.034, 0.276, 0.1287, -0.2439, -0.0685, -1.056, -0.538, -1.179, -0.233, -0.838, -0.506, -0.718, -2.482, -0.03406, -0.278, -1.368, -0.2031, -0.2632, -1.662, 0.0321, 0.12396, 0.2844, 0.4573, 0.4136, -1.514, 0.2305, -1.657, 0.53, -0.4773, -1.207, -0.03754, -0.09906, -0.03775, -0.222, -0.2461], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2183, 0.0835, 1.845, 0.001186, 0.007244, -6.605, -0.1815, 0.0288, -0.1606, -1.92, -0.013565, -3.78, -2.314, -1.178, -1.324, -3.932, -3.627, -1.799, -0.4275, 0.6763, -1.621, 0.567, -3.896, -4.93, 0.06305, 0.0537, -0.445, -5.83, 0.03014, -0.3877, -0.1763, -1.1875, -2.045, -0.2925, -1.186, 0.7856, -5.5, -2.035, -2.373, -0.4268, -0.3735, 0.633, 1.049, -3.121, -3.896, -1.512, -6.863, -0.0444, -0.356, -1.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.9937, 1.266, -1.835, 0.02298, 0.4675, -1.8955, -3.547, -2.043, -0.04602, -0.01506, -1.239, -2.885, -1.866, -0.2301, -1.171, -2.07, -2.092, -0.8013, -4.555, -0.814, 1.171, 1.013, 0.444, -1.596, -4.734, -3.678, -3.582, -2.465, -0.02853, -3.092, -1.365, 2.82, -2.129, 0.2793, 0.692, -1.673, 3.062, -0.364, -1.61, -0.358, -3.004, -2.906, -1.606, -4.51, -0.3992, -0.0811, -0.64, -0.5337, 0.5176, -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.4385, 0.4565, 1.127, -0.03317, -0.1512, -1.793, 0.1313, -0.5693, 1.535, -0.2578, -0.3037, -0.9614, 0.3271, 0.02594, -0.483, 0.1637, 0.4233, -0.6836, 0.1602, -0.0729, -0.0008287, 0.00641, 2.78, 0.0863, -0.0555, -0.6455, 0.738, 0.604, -0.03117, -0.3613, 0.5312, -0.692, 0.9126, 0.146, 0.678, 0.1214, 1.118, 1.357, 0.1721, -2.785, 0.8, 1.325, -1.2295, 0.4966, 0.1183, 0.8936, -0.7397, -0.2126, 0.1825, 0.01315], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1421, 0.1873, 0.663, -0.00356, -0.269, 0.05276, -0.475, 0.9014, -0.02875, -0.0961, -0.09155, 0.6104, -0.3328, 0.4202, -0.538, -0.3062, -0.1133, 0.05573, 0.5405, -0.04575, 0.03235, -0.07434, 0.761, 0.09296, -0.9106, 0.553, -0.5264, 0.738, -0.01197, -0.3635, 0.3015, -0.336, 0.4204, 0.6685, 0.2766, 0.6685, -0.0508, -0.3765, -0.1686, 0.1565, 0.09326, -1.862, 1.295, 0.4314, -0.4758, -2.314, 1.35, -0.00552, 0.285, -0.54], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5396, -0.137, 0.518, 0.02306, -0.317, 2.361, 1.314, 3.047, 0.1971, -2.613, -0.182, -2.074, -0.1036, 0.4795, 0.8037, 2.291, -0.2905, -2.15, 0.656, 0.218, -3.494, 1.005, 2.023, 0.751, 0.07605, -0.1691, 2.15, 1.7, -0.004955, -0.621, 0.8657, -0.4927, 1.646, 0.3203, 0.4475, -2.135, 3.445, 1.314, 1.259, -0.11914, -0.2651, -2.021, -4.438, 0.9, 1.005, -5.016, 0.2935, -0.692, 0.2102, -0.839], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0343, 0.0599, 0.1641, -0.02937, -0.02586, -0.666, 0.05063, 0.01192, -0.07697, -1.515, -0.03592, -0.1161, 0.0439, -0.01459, -0.0775, 0.1738, 0.0221, -0.0789, 0.181, -0.0198, -0.01319, 0.0723, 0.51, 0.04834, -0.02498, 0.0778, -0.0714, 0.03925, -0.02142, -0.09033, 0.0683, -0.0625, 0.1864, 0.01558, 0.1006, -0.0147, 0.258, 0.1987, 0.01814, -0.3953, 0.03125, 0.1378, -0.2267, -0.02794, 0.01246, 0.143, -0.006752, -0.01631, 0.00976, -0.01585], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 1.16, -4.65, -0.00468, -0.1786, -3.197, -1.504, -0.57, -0.4739, -1.012, -0.4087, -4.88, -1.257, -0.3867, -4.62, -1.935, 0.3245, -5.582, -1.806, -1.671, -0.1421, 2.324, -3.297, -4.047, -8.81, -3.422, -3.193, -4.9, 0.001789, 0.08777, -7.633, -0.3408, -3.744, -2.941, -9.89, 0.5146, -3.742, -7.85, -5.926, 0.5674, 2.268, -4.266, -0.5464, -0.743, -0.3875, -2.686, -7.234, -1.187, -0.9233, 0.4949], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3372, 0.0403, -0.12396, -0.00955, -0.1796, -1.34, -0.0451, 0.653, -0.269, -0.554, 0.01289, -0.3152, -0.913, -0.4243, 0.2505, -1.26, -0.181, -0.797, -1.301, -0.3962, 0.03156, 0.3896, -0.947, 0.3528, 0.12317, 0.1945, -1.378, -1.201, 0.001458, -0.2976, -0.04633, 0.2299, 0.734, 0.1948, 0.3064, -0.27, 0.4531, -0.2744, -0.5425, -0.172, 0.07794, -1.0, -0.6, -0.6094, 0.1863, 0.0849, -0.392, -0.06143, -0.2017, 0.12], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.43, -0.063, -0.4385, 0.02077, -0.696, 2.012, -0.3257, -3.441, -0.5176, -0.1031, 0.06775, 0.2761, -3.25, -1.324, 0.2734, 0.01171, -2.99, -0.01244, 0.1356, -0.2664, -2.857, -0.00586, -3.992, -2.863, -3.482, -4.01, -1.447, -0.7715, -0.03873, -0.2478, -3.367, -2.11, -0.4272, -1.422, -1.881, -1.446, -3.965, 1.699, -3.086, -2.053, -0.3208, -0.3545, -4.043, -2.68, -1.278, -5.28, -3.059, 0.265, 0.503, -0.1898], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.248, 0.10846, 0.786, -0.0348, -0.2634, 2.393, -1.118, 2.176, 1.442, -0.2054, -0.4702, -0.606, 0.811, 1.766, 1.334, -0.3428, 0.4285, -0.03958, 2.14, 1.484, -0.498, 1.156, 2.771, -0.0851, -1.317, 1.325, -1.754, 0.3462, 0.006416, -0.988, -0.2214, -0.749, -2.518, 0.4854, -0.942, -1.546, 2.572, -0.2073, 0.954, 0.3284, 0.5806, 2.154, 0.0789, 0.1042, 0.1982, 1.004, -2.555, -0.1714, -0.3027, 0.02168], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5522, 0.1837, 0.1947, -0.04544, -0.02553, 0.5312, -0.7847, -1.701, -1.786, 0.004322, -0.02168, -0.06216, -3.822, -0.3696, -3.697, -1.857, 0.2847, -1.848, -5.81, -2.686, -3.65, 0.1809, 1.379, -0.09717, -3.598, -1.909, -1.677, 0.4014, -0.001959, -2.754, -0.7183, 0.09375, -2.91, -1.051, -2.01, 0.00987, -1.019, -2.486, -0.285, -3.033, 0.1445, -3.201, 0.127, -0.648, 0.04892, 0.1526, 0.09827, -0.03403, -0.12164, -0.05936], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0803, 0.09796, 0.3965, -0.02965, -0.000964, 0.2207, 0.02974, -1.285, -0.0243, -0.1799, -0.1154, -0.8276, 0.257, 0.1892, -0.0942, -0.931, -0.1929, -0.2996, -0.3254, -0.4937, -0.03, -0.2266, 0.882, -0.01557, -0.04852, -0.06134, -0.03111, -0.8916, 0.04303, -0.09125, 0.009476, 0.1909, 0.1647, -0.01312, 0.2117, 0.1458, -0.245, 0.3855, -0.0875, -0.505, 0.1317, -0.005985, 0.4895, 0.2299, -0.2358, -0.3433, 0.2551, -0.06384, 0.0329, -0.0443], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.007202, -0.03265, -0.05542, -0.01955, 0.01528, 0.005173, -0.0505, 0.005863, -0.05197, 0.04056, -0.0246, -0.05292, 0.01078, -0.01369, -0.04803, -0.02911, -0.03958, -0.009186, -0.002197, -0.05582, -0.005833, 0.02141, -0.01584, -0.01764, -0.04358, -0.01622, 0.02988, 0.00638, 0.0458, -0.04504, 0.004955, -0.014694, -0.038, -0.043, 0.00904, -0.0003672, -0.01842, -0.01834, -0.02785, -0.01932, 0.007214, -0.04636, -0.002335, 0.02321, -0.02925, -0.04886, -0.00482, -0.02423, -0.04324, -0.02608], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.562, 0.2588, 1.748, 0.0152, -0.129, 0.4138, -0.474, 1.889, 0.0943, 0.2769, -0.02927, -0.2081, 1.326, -0.3735, 1.135, 1.457, 0.639, -4.246, 1.303, -1.857, 0.3293, -0.5815, 2.064, -0.622, 0.5347, -2.107, -0.774, 0.2944, -0.04303, -0.3657, 0.2057, 0.4458, -0.8525, 0.231, 0.686, -0.718, 0.352, -1.195, -0.1678, -0.386, 0.1559, 3.031, 0.5415, -0.2815, -0.6973, 0.771, 0.712, -0.3174, -0.525, -0.6978], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.52, -0.03235, 3.62, 0.03726, 0.3738, -0.2856, 1.337, 3.896, 0.736, 0.1521, -0.916, 2.629, 0.7856, 0.695, 1.336, 3.057, 0.4004, 1.401, 4.273, 0.6006, -0.0568, 2.854, -0.522, 1.396, 0.11206, -4.34, 2.102, 0.4824, -0.04764, -0.02057, 0.674, -0.3074, -3.75, -2.4, 2.484, 0.7764, 0.3564, 2.459, -1.667, 1.389, 0.799, -1.951, 1.611, 1.959, 0.6523, -0.1566, -10.195, -1.21, -1.411, -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, 0.00846, 0.010086, -0.01537, -0.02861, -0.0405, 0.033, 0.00945, -0.0687, -0.0315, 0.010475, -0.0476, 0.013214, -0.02231, 0.01251, -0.03796, -0.04144, -0.01146, 0.005924, 0.001846, -0.0517, -0.0007267, -0.01962, -0.036, 0.02174, 0.00653, -0.004665, 0.011765, -0.01585, 0.04266, 0.014565, -0.01654, -0.0302, 0.0341, -0.03827, 0.012024, -0.05548, 8.49e-05, -0.06168, 0.00819, -0.04413, -0.03186, 0.01226, 0.006004, -0.04068, -0.003485, 0.01903, 0.01524, -0.02953, -0.02844, -0.0654], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2476, -0.287, -5.125, -0.0374, -0.203, 0.04596, 0.4119, 0.0933, -5.645, 0.7046, 0.0564, -2.258, -1.614, 0.542, -9.45, -3.967, 0.3184, -3.887, -3.186, 1.021, -3.338, -0.2313, -0.93, -0.432, 1.37, -1.809, -2.143, -3.975, 0.0441, -1.302, -1.172, -0.569, -2.566, -1.511, -1.445, 0.1885, -6.55, 0.762, -1.618, -2.95, 1.841, -3.062, -6.223, 0.8613, -1.948, -0.7617, -2.646, -1.092, -0.6167, -2.082], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1233, 0.1288, 0.5503, 0.03522, -0.0715, -2.049, -0.1085, 0.576, -0.0704, -1.471, -0.0372, 0.1654, -0.12305, -0.2896, -0.1177, 0.5024, 0.2017, 0.173, 0.5225, 0.1687, -0.1172, -0.1451, -0.5645, 0.1646, -0.0807, -0.131, -0.1871, -0.3794, -0.00943, -0.108, 0.1357, 0.0725, 0.405, -0.2106, -0.1229, -0.5605, -0.3196, 0.2355, -0.3271, -0.11096, -0.2443, 0.2664, 0.4546, 0.3076, -0.2263, -0.05756, 0.1471, 0.04745, -0.0748, -0.2163], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 0.6284, -0.04877, -0.003069, -0.8096, -1.468, 1.033, -8.13, -0.02971, -0.2673, -0.4998, -1.305, -0.1796, -2.48, -0.722, -0.02866, -4.535, 0.3037, -1.236, 1.167, -1.778, 1.018, -4.504, 0.1516, -3.748, -0.3047, -6.5, 0.0459, 0.013275, -0.08624, -1.0205, -1.313, -0.0791, 0.305, -4.39, -2.975, -7.453, -4.46, -0.977, -1.546, 1.757, -0.2059, -7.152, 0.6084, -1.843, -5.46, -3.738, 0.639, -0.3447, -1.341], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.07764, 0.2008, 1.182, -0.0158, -0.2988, 3.627, 0.875, -0.0675, 0.002604, 0.06537, -0.2715, -0.1709, -1.63, 1.021, -1.225, 2.893, -0.3323, 1.538, 1.08, 0.1348, 0.1842, 1.408, 0.533, 0.651, -0.04907, 0.1504, 1.222, 3.115, 0.04156, -1.108, -0.1857, -0.809, -0.834, -4.22, -0.5513, -0.7183, 1.72, -0.515, -1.79, -0.1013, 0.4817, 2.494, 1.607, 0.8403, -0.592, 0.805, 0.832, -0.2113, -0.787, -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.02283, -0.02542, -0.1602, -0.01011, -0.06415, -0.006565, 0.02359, -0.0096, 0.0174, -5.41e-05, -0.1332, -0.02881, 0.05533, -0.0192, -0.01566, -0.03262, -0.03595, 0.0334, 0.03394, -0.1708, -0.07196, -0.1004, -0.02484, -0.013275, 0.02861, -0.0954, 0.00878, -0.04675, 0.00606, 0.02615, 0.0006804, 0.02588, -0.0517, -0.01839, -0.04327, 0.02203, 0.02129, -0.01619, -0.0162, -0.1293, -0.1923, 0.03732, -0.1355, -0.1877, -0.0802, -0.03647, 0.02403, -0.1748, -0.00634, -0.11414], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.06537, -0.00915, 0.1025, -0.01235, -0.02927, -0.635, -0.01627, 0.03096, -0.1053, 0.05338, -0.01958, -0.003523, 0.1401, -0.0191, -0.10767, 0.1644, 0.00964, -0.3228, 0.11816, 0.02138, -0.02452, -0.079, 0.161, -0.0414, -0.010345, -0.0344, 0.10474, -0.0584, 0.0489, -0.007298, 0.03854, -0.1411, 0.06042, 0.02292, 0.05405, 0.004185, 0.1608, -0.02716, 0.005543, -0.1552, -0.06146, 0.006123, -0.1702, 0.0462, -0.001839, 0.02998, -0.015594, 0.0157, 0.002026, -0.02718], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1324, 0.0621, -0.0813, 0.01395, -0.07367, -0.3254, -0.07214, 0.3674, -0.11163, -0.5894, 0.01199, -0.11676, -0.674, -0.2384, 0.07635, -0.5327, -0.094, -0.492, -0.6753, -0.0513, 0.0402, 0.1991, -0.5024, 0.2542, 0.101, 0.1597, -0.4944, -0.659, 0.01394, -0.1353, -0.05588, 0.126, 0.3264, 0.06146, 0.1823, -0.2673, 0.299, -0.3333, -0.3608, -0.0973, 0.11804, -0.6963, -0.3252, -0.423, 0.0937, 0.0305, -0.2357, -0.0324, -0.0784, 0.08984], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2747, 0.1682, -0.01152, -0.28, 0.7744, -1.21, -5.004, -0.8477, 0.04013, -0.2424, 1.194, 0.5557, 1.302, -1.032, 1.217, -0.547, -1.054, 3.51, 0.5767, 0.00744, 0.6416, 2.096, -0.005184, -0.546, -0.007763, 0.10547, 0.882, -0.0238, -0.2161, 0.4158, 0.8315, 1.131, 0.0434, -0.2263, -0.1256, 0.963, 0.458, 0.5537, 0.2227, 0.119, 1.801, -3.268, 0.196, -0.03522, 1.191, -2.11, -0.191, -0.0879, 0.0545], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1952, -0.911, 0.955, 0.00638, 0.1137, 2.615, 0.9106, 2.94, -0.4272, -0.2896, -0.4673, 0.519, -0.05045, 0.6953, 0.809, -0.3186, 0.6094, 0.8965, 1.019, 1.27, -0.552, 1.042, 2.102, -0.539, -0.083, -0.898, -0.3093, 3.56, -0.04373, -0.134, -0.534, -0.363, -3.111, -1.17, -1.861, 0.1306, 2.074, 1.238, 0.9326, -0.915, -3.71, -0.4202, 1.324, -1.99, 0.4976, 0.8813, -2.598, -0.09204, -0.2428, -0.4167], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02696, -0.03174, -0.002909, -0.006042, -0.02483, -0.03473, 0.01201, 0.01709, -0.03105, -0.02992, -0.02808, 0.005573, 0.04373, -0.00857, -0.0316, 0.03384, -0.0419, -0.03818, 0.0334, -0.02606, -0.01002, 0.01921, -0.03137, -0.03018, -0.0224, 0.015144, -0.0095, -0.014206, -0.00492, -0.01351, -0.02136, 0.00986, -0.02908, -0.05005, -0.03027, -0.01839, -0.00674, 0.01446, -0.04578, -0.02805, -0.00222, -0.03647, -0.0007014, 0.009476, 0.02107, -0.011925, -0.04068, -0.075, -0.003279, -0.01726], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.701, 0.207, -0.729, 0.00848, -0.1536, -0.6143, 0.2462, 0.175, -0.1613, -1.353, -0.02872, -0.4014, 0.0629, 0.07153, -0.318, -0.897, -0.512, 0.908, -0.151, 0.1163, 0.06836, 0.1676, 0.1416, -0.1589, -0.1666, -0.092, -0.2366, 0.03836, -0.01549, -0.2761, 0.3997, -0.0917, 0.5596, 0.3875, -0.2551, 0.1399, 2.428, 0.3525, 0.825, 0.05673, -0.1682, -0.3765, -0.1902, 0.4019, -0.1815, -0.1642, -5.01, -0.09705, 0.1815, -0.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.648, -1.01, 1.471, 0.02118, -0.6606, 2.781, 0.996, 1.372, 1.297, -0.126, -0.1848, 1.754, 1.507, 0.6294, 2.12, 2.195, -0.6255, -4.6, 0.3096, 0.05945, 0.62, -2.627, -1.056, 0.4712, -5.11, -0.4724, -0.4634, 0.5356, -0.01999, -0.2479, -3.42, -2.121, -1.917, 0.4768, 0.887, 1.515, 1.861, -0.529, 3.354, -0.666, 0.9805, 1.732, -0.6523, -0.4841, -1.16, 1.005, 0.6235, -0.1497, -0.03323, -0.83], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.924, 0.0404, 1.244, 0.0137, -0.3176, 3.057, -1.314, 2.182, 0.4543, 2.076, -0.641, 0.7217, -2.295, -1.842, 0.2878, 3.3, 0.3855, -0.7593, 2.037, 1.176, -0.2986, 1.983, 2.164, 0.1948, -0.2632, -0.08185, 1.199, 0.4656, -0.01387, 0.038, 0.849, 0.0744, 2.297, -3.031, -0.2054, 0.8467, 0.4956, -1.793, 2.512, 1.647, 0.823, -2.625, 2.95, 0.1287, -0.369, 0.6, 1.215, -1.236, 0.51, -1.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.1074, -0.02534, 0.1567, -0.0008397, -0.04202, -0.00815, -0.02922, 0.2144, -0.1117, -0.0665, -0.0848, -0.09735, 0.09406, -0.2075, -0.03232, 0.3933, 0.1431, 0.04214, 0.4097, 0.04865, -0.1569, -0.2983, 0.3535, 0.07794, -0.062, -3.174, 0.1375, 0.0814, 0.01698, -0.4365, 0.11847, 0.04587, -0.10626, -0.0836, 0.10315, -0.0722, 0.2983, -1.51, -0.07465, -0.05786, -0.1744, 0.2046, -0.02907, 0.1228, -0.0326, -0.2188, 0.02318, 0.03357, -0.001892, -0.05106], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.363, 0.1991, 0.2979, -0.03134, -0.2546, -0.572, -0.4114, -0.2019, -0.2375, -0.394, -0.001944, -0.000704, -0.1853, 0.05804, 0.4014, 0.08484, -0.867, 0.2651, 0.1855, -0.1282, 0.0694, 0.06793, 0.601, -0.05927, -0.09326, 0.1998, 0.2566, -0.5586, 0.001406, -0.11536, 0.02617, -0.3374, 0.3708, 0.1849, -0.1382, -0.03485, 0.1481, -0.1802, -0.2446, -0.6387, 0.2313, 0.4736, -1.029, 0.1831, 0.03683, -0.1488, -0.3296, -0.07715, -0.1387, -0.2177], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00659, 0.00868, 0.01665, -0.0419, 0.002985, 0.06696, -0.00931, -0.0328, 0.00673, 0.007378, -0.00953, 0.004562, 0.003334, -0.01096, -0.00908, -0.03696, 0.00416, 0.03653, -0.01477, 0.01309, -0.003521, 0.013985, -0.01232, 0.00959, -0.0006332, -0.02176, -0.002598, 0.02213, -0.00974, 0.001084, -0.004444, 0.004562, -5.83e-05, -0.003244, -0.005825, -0.00948, -0.001613, 0.01767, 0.00539, 0.003206, -0.001858, -0.003391, -0.004433, -0.004074, 0.00457, -0.02942, -0.01794, 0.00623, 0.005894, -0.003963], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1302, 0.2156, 1.429, 0.001378, -0.01505, -2.23, -2.484, -3.547, 0.1777, -0.4546, 0.03085, -0.06085, -0.654, -0.2368, -1.83, -0.537, -0.09937, -1.029, -0.9585, 0.7266, -0.2593, -0.1674, 0.0515, -2.15, -1.732, -0.8677, -2.85, -0.765, -0.02054, -1.354, -2.072, -0.147, -1.253, -0.4446, -0.8726, -0.1145, -0.1836, -2.76, -0.1083, -0.4226, -1.137, -0.5454, -3.879, -3.537, -1.993, -2.05, -0.991, -1.116, 0.216, -0.779], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0604, 0.04898, 0.1948, 0.03195, -0.04373, -0.2903, 0.005695, 0.1527, 0.1989, -0.00468, -0.047, -0.2297, 0.0808, 0.0758, -0.1368, 0.1638, 0.02817, -0.0069, 0.1674, -0.03397, 0.01338, -0.018, 0.477, 0.010765, -0.00956, -0.1765, 0.03354, 0.1659, -0.0196, -0.1071, 0.0896, -0.0418, 0.2351, 0.02638, 0.1201, 0.01448, 0.11884, 0.1254, 0.01808, -0.2294, 0.02649, 0.178, -0.1718, 0.1321, -0.010475, 0.0673, -0.1093, -0.03018, 0.003555, -0.013435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.002329, 0.00679, 0.03976, 0.01912, -0.01031, -0.0556, -0.0847, 0.0364, 0.02267, -0.1593, -0.02104, -0.03662, -0.0612, -0.01595, -0.0564, 0.01619, 0.0355, 0.072, 0.0846, -0.10345, -0.003162, -0.11743, 0.1272, 0.0299, -0.03061, -0.02988, -0.04227, -0.1696, -0.02705, -0.007053, 0.0447, -0.00965, 0.0864, -0.0345, -0.1368, -0.0813, 0.078, -0.1099, 0.05777, -0.05255, 0.01192, 0.1316, -0.0198, 0.0405, -0.005283, 0.08795, -0.1425, 0.00824, -0.01913, -0.01192], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.472, 0.1868, -0.2197, 0.017, -0.4353, 2.955, -0.3264, -2.523, -0.0978, 0.6777, -0.1461, -0.629, -1.076, 1.5, -1.153, 0.5674, -1.995, 1.794, 0.83, -1.186, 0.4246, -1.455, 1.714, -0.742, -1.2295, -0.103, 2.426, 0.5347, 0.03885, -0.2556, 0.419, 0.32, 1.133, 1.633, 1.54, 1.801, 2.338, 1.193, 2.613, -2.867, 1.601, 2.9, -0.4233, 0.7334, 1.006, 0.4563, -6.05, -0.9834, 0.405, -0.41], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.002853, -0.01312, 0.01779, -0.03235, -0.007526, 0.0416, -0.010574, -0.002745, 0.001614, -0.0343, -0.005783, -0.00403, -0.006023, 0.005753, 0.01572, 0.0123, -0.007507, 0.01714, 0.02255, 0.01462, -0.00539, 0.00795, 0.02, -0.009056, -0.007015, -0.01114, -0.03915, -0.2231, -0.007835, -0.005653, 0.008194, -0.00377, -0.0314, 0.00387, 0.02791, -0.000823, 0.02992, 0.007786, -0.01637, -0.003853, 0.01033, -0.0004652, -0.01459, 0.00946, -3.75e-05, -0.05215, 0.02605, 0.007168, 0.011215, -0.00802], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0379, 0.03754, 0.003738, 0.0193, -0.02646, -0.02487, -0.04282, 0.08136, -0.0193, 0.1213, 0.007053, -0.02444, -0.1661, -0.0452, -0.01941, -0.1729, -0.03516, -0.1748, -0.1316, -0.01703, -0.03226, 0.00416, -0.1276, -0.005596, 0.01932, -0.0269, -0.0872, -0.1621, -0.00827, -0.04382, -0.01103, 0.02687, 0.0763, 0.04404, 0.06476, -0.0677, 0.1396, -0.0725, -0.06232, -0.02962, 0.02658, -0.1078, -0.0539, -0.1344, 0.01337, -0.05832, -0.06903, -0.006165, -0.008316, 0.0013685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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.10724, 0.9316, -0.01608, -0.2448, -1.296, -0.1998, 0.6763, 1.608, -0.5264, -0.515, 1.315, 0.1772, -2.168, -0.11945, -0.7095, 1.042, -0.7466, 2.25, 0.494, 0.08936, 2.24, -0.1643, 0.555, 0.2664, -0.4878, 2.283, 2.693, -0.04736, -0.6636, -0.1066, 0.6396, -1.13, -1.024, 1.13, 0.954, 0.975, 0.823, 0.5576, -1.533, 1.107, 1.975, 0.7817, -0.3965, -3.697, -0.9297, -1.743, -0.341, 0.4792, 0.09076], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.09534, -0.3083, 0.1809, 0.03918, -0.01109, 0.4075, 0.954, 0.936, 0.2456, -0.1832, -0.215, -2.488, 1.761, 0.317, 0.2437, 3.287, 1.497, -0.9834, 3.113, -0.614, 0.1719, 0.467, 2.13, -1.683, -0.05322, -1.205, 2.957, -0.68, 0.02066, -0.2242, -0.01089, 1.443, -3.38, -1.826, 0.6035, -1.79, 3.188, -0.5957, 0.1493, -0.7075, 0.697, -0.8535, -0.539, 0.693, 0.3955, -2.957, 1.881, -0.3438, -1.194, -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, -1.015, -2.479, -0.12067, 0.0372, -0.000991, -0.3794, -1.381, -6.1, -3.166, -0.04797, -0.09265, -4.816, 0.003023, -1.81, -0.1721, -1.242, -1.757, -2.195, -0.02588, -1.689, -1.79, 2.002, -1.164, -0.06018, -2.898, -0.7363, -0.07935, -0.7974, -0.02629, -1.855, -2.79, -0.355, -0.996, -0.5054, -3.414, -6.39, -7.324, -0.5425, -0.10333, 0.6226, -4.035, -1.351, 0.7437, -3.338, -1.374, -2.719, -0.00914, -0.5645, -0.8716, -0.3003], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.056, 1.084, 0.04297, -0.02628, -0.4678, 0.8745, -0.4226, -0.65, -0.4739, 0.593, -0.01595, -5.844, -2.457, -0.8203, -0.4663, -4.65, -1.247, -1.437, -7.42, 3.895, -1.337, -0.1992, -0.812, -0.2383, -4.035, -1.678, -4.004, 0.852, 0.00856, -2.176, -6.74, 0.6704, -1.329, -2.027, -0.689, -4.63, -14.7, -1.835, -5.6, -0.8613, -1.027, -3.291, 0.1738, -0.8687, -1.067, -0.6035, -4.605, -1.398, 0.1339, -1.118], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.014, -1.996, 1.32, 0.01245, -0.1796, 3.86, 0.8413, 1.031, -1.949, -0.08514, -0.426, 0.644, 0.9717, 0.839, 0.663, -0.2886, 0.737, 1.083, -0.1691, -0.0712, -7.43, 1.582, 2.281, -0.3794, 0.6665, -1.365, 0.5625, 3.578, -0.02539, 0.005184, -0.947, -3.885, -0.354, 0.03964, -1.938, -0.02405, 1.421, -2.299, 0.92, 0.51, 1.327, 1.334, 1.276, 0.9756, 0.542, 0.04984, -3.092, -0.187, 0.2761, -0.2854], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03038, -0.001216, 0.051, 0.01988, 0.02109, 0.1544, -0.03038, -0.010284, -0.01463, -2.63, -0.02078, -0.00334, -0.02122, 0.01037, 0.02057, 0.111, -0.01816, 0.04935, -0.1179, 0.0377, 0.00228, 0.011246, -0.02911, -0.004395, -0.01359, 0.00229, -0.0004168, -0.11304, -0.0386, -0.01776, -0.01566, 0.0213, -0.002745, -0.001934, -0.03665, -0.02562, 0.007545, 0.02376, 0.02931, -0.006363, -0.01213, 0.008224, -0.2035, -0.01035, -0.04425, -0.08136, -0.0539, 0.003874, 0.0002285, -0.000855], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03284, -0.053, 0.0185, 0.03134, -0.00875, 0.02655, 0.0001134, -0.03665, 0.01598, 0.001291, -0.0653, -0.01191, 0.011215, -0.006523, -0.0383, 0.01886, -0.02667, 0.00939, -0.02568, -0.04053, -0.015366, -0.0421, -0.0373, -0.00322, -0.003727, 0.02446, 0.00344, 0.003702, -0.007236, -0.01319, -0.01316, 0.005295, 0.02855, -0.04654, 0.02855, -0.02577, 0.0409, 0.0346, -0.00919, 0.0008864, -0.0403, -0.0433, -0.0341, -0.03775, -0.04727, 0.019, 0.03085, -0.0329, 0.005062, -0.05014], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.973, -1.466, 1.834, 0.04187, -1.887, 4.375, -0.4407, 2.928, 0.6597, 0.222, -0.603, 4.062, 2.912, -1.188, -0.7437, 1.846, -1.384, -1.265, 4.16, 1.763, -1.041, 1.512, 4.145, -1.974, 0.79, -0.3794, 2.115, 4.562, -0.0258, 0.464, -0.2157, 0.9106, -2.742, -1.143, 1.03, 2.31, -0.989, 0.614, 2.56, 0.5625, 0.2742, 0.8086, 1.458, 2.812, 0.04108, 0.4556, 1.406, -0.3257, -0.576, -0.4778], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.883, -0.3313, 0.3875, 0.004913, 0.07947, 2.27, -1.369, 0.396, 1.463, -0.422, -0.561, 1.44, 2.594, 1.296, -5.367, 0.4553, -1.326, 2.127, 2.82, 0.9863, 0.3152, 0.4343, 3.986, 0.5737, 0.1643, 1.064, -3.553, 1.915, 0.00817, -0.806, -0.234, -2.293, 1.617, 0.04633, 1.029, 0.8784, 2.475, 1.303, 1.06, 0.293, 2.01, 1.492, 2.35, 1.932, -0.6196, 3.725, -1.696, -0.9062, -0.508, -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, -4.137, 0.00998, 1.045, -0.01843, -0.085, 1.352, 0.502, -0.04498, 0.2142, 1.097, -0.11176, -1.927, 0.2786, 0.1298, 0.2062, 0.9473, 1.026, -7.51, 1.217, -1.117, -0.1333, 0.602, 1.677, -1.335, -0.211, -0.7495, 0.273, -0.0973, -0.006756, -0.09344, 0.7744, -2.297, 1.337, -1.242, -0.1638, -1.6875, 2.734, 1.131, -0.3005, -0.4219, -0.2036, -2.076, 0.2365, 0.1804, 0.02547, 0.1907, -2.582, -0.3093, -0.311, -0.1407], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.165, -0.0828, 0.01985, 0.02965, -0.04596, -0.8345, 0.0834, 0.0994, -0.1066, -0.08276, -0.00826, -0.1403, 0.1073, -0.08527, 0.1415, -0.4434, -0.04724, 0.03845, -0.354, -0.315, -0.007805, 0.11206, -0.2847, 0.01012, -0.01386, 0.02362, -0.5825, -0.2085, 0.004265, -0.1398, 0.0456, 0.05777, 0.2717, 0.09485, 0.0162, 0.1582, -0.05084, 0.253, -0.0457, -0.01733, -0.1201, 0.0048, -0.1552, 0.04144, 0.0581, 0.06122, -0.04596, -0.005596, -0.1345, -0.006325]]
[3.36774, 2.54588, -0.0389669, -1.91475, -2.70427, -3.99944, -0.463557, 1.51561, 0.523712, 2.05891, -4.25012, 0.775074, 0.516338, -0.0323721, -3.05037, -5.91343, -0.0555402, 7.96523, -0.285095, 4.55646, -3.09144, -0.011529, 0.888575, 1.30197, -1.78948, -2.40425, -0.0362113, -2.94576, -5.16895, -4.54092, 0.952916, -0.0280837, 0.653321, 1.76114, -0.221997, 1.14058, -3.73105, 0.499857, 0.988964, -3.50907, -3.91367, -2.99118, 4.86253, -2.40697, 0.586339, -0.031272, -4.64101, -5.6667, -2.46629, 1.7656, 3.367, 2.545, -0.03897, -1.915, -2.705, -4.0, -0.4636, 1.516, 0.524, 2.059, -4.25, 0.775, 0.516, -0.03238, -3.05, -5.914, -0.05554, 7.965, -0.2852, 4.555, -3.092, -0.01153, 0.8887, 1.302, -1.789, -2.404, -0.03622, -2.945, -5.168, -4.54, 0.953, -0.02808, 0.6533, 1.761, -0.222, 1.141, -3.73, 0.4998, 0.989, -3.51, -3.914, -2.99, 4.863, -2.406, 0.5864, -0.03128, -4.64, -5.668, -2.467, 1.766]
Affine
[[-0.0127582, -0.00887589, -0.00723579, 0.00767675, 0.00931566, 0.0071792, -0.0200691, -0.0043592, -0.0130373, -0.00633122, 0.00450639, -0.00793209, 0.00549433, -0.033764, 0.00607453, 0.00215623, 0.0158447, -0.00598038, 0.00929636, -0.00589779, 0.00451337, 0.00359944, 0.00850896, 0.0186346, 0.00423414, 0.00851518, -0.00614686, 0.00736714, 0.00368197, 0.00638075, 0.00813425, -0.011153, 0.00163193, -0.00831878, -0.0466279, 7.09156e-06, 0.00669341, 0.00238643, 0.00549167, 0.00734867, 0.0037227, -0.00732882, -0.0038942, 0.00729432, -0.00179438, 0.0221494, 0.00332901, 0.00397908, 0.00700105, 0.0114604, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00283143, 0.000755587, 0.000783125, -0.000570412, -0.00053677, -0.000557695, 0.00826872, 0.000355407, 0.000142659, 0.000629996, -0.000354987, -0.0004401, 0.0149581, 0.00787306, -0.000151127, -0.000119562, 0.0282095, 0.000528112, -0.000976983, 0.000127173, -0.000374267, 0.0389175, 0.0042704, -0.000373139, -0.0013908, -0.000923106, 0.0241065, -0.000475842, -0.000324677, 0.000265444, 0.017192, 5.12371e-05, 0.00756497, 0.000302914, -0.00521073, -0.00167942, -0.000561238, 0.00104495, -0.000348402, 0.000245541, -0.00082574, 0.000218205, -9.16699e-05, -0.00150668, 0.00840073, 0.00685244, -0.000597606, -0.000338652, -0.00109612, 0.000154549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0049301, -0.000285218, -0.000553968, 0.00142855, -9.92657e-05, 0.000142064, 0.0117788, 0.000626055, -3.0932e-05, 0.001318, 0.00145359, 0.00747334, -0.0106582, -0.0198209, 0.000631563, 0.000869161, -0.00990305, -0.000341396, -6.6413e-05, 0.000384035, 0.000828126, 0.0481734, 0.00467589, 0.000187596, 0.00139911, 0.000705899, -0.0393045, -9.03853e-05, 0.000357674, 0.000142772, -0.00665336, -0.000384145, 0.0112587, -0.000396772, -0.0217608, 0.0179449, 0.000795843, 0.00153316, 0.000593307, -0.000111516, -0.00031012, -7.29237e-05, 0.00016551, -0.000507981, 0.00660199, -0.0103438, 9.30693e-05, 4.96055e-05, 0.000119951, 0.000539452, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00205864, 0.00164539, 6.82869e-06, 0.000166567, 0.0020073, 0.00106264, -0.00578589, 0.00052544, -0.000201865, 0.000713788, 0.0012699, 0.00131798, 0.0143028, -0.0061137, 0.000645437, 0.000981926, 0.00377224, 0.000492678, 0.000938681, 9.76633e-06, 0.000222775, 0.0624272, 0.0145788, 0.000810434, 0.000341009, 0.00060863, 0.0188602, 0.000487478, -0.000273315, 0.000315323, -0.00199442, 0.00217205, 0.00914911, -0.00113787, 0.000503985, -0.0028237, -8.58902e-05, 0.0138428, -0.000638491, 0.000701364, 0.000752653, 0.000234598, -2.73729e-05, 0.0010375, 0.00714236, -0.010683, -0.000335746, 0.000174062, -0.000247347, -0.000345668, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00165049, -0.000398666, -0.000574072, 0.00160601, -0.000237799, 0.000173651, 0.00696828, 0.000835474, -0.000381557, 0.00122352, 0.000192185, 0.00653937, -0.0034597, -0.0127705, 0.000287081, 0.00173193, 0.00660552, -0.000366963, -2.64479e-05, 0.00062996, 0.000361293, 0.0389771, 0.00465183, 0.00061975, 0.0012278, 0.000527967, -0.0206653, -0.000303707, 0.000422303, 0.000229555, -0.00446059, -0.000476586, 0.011458, -0.00113897, -0.0197853, 0.016936, 0.000483281, 0.00126521, 0.000972134, -0.000135354, -0.000319909, -0.000105072, 0.000114669, 8.05793e-05, 0.00586639, -0.0118789, -0.00017071, -0.000322688, -0.000163772, 0.000740023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01276, -0.00887, -0.007236, 0.007675, 0.009315, 0.00718, -0.02007, -0.00436, -0.01304, -0.006332, 0.004505, -0.007935, 0.005493, -0.03375, 0.006073, 0.002155, 0.01584, -0.00598, 0.00929, -0.005898, 0.004513, 0.0036, 0.00851, 0.01863, 0.004234, 0.008514, -0.006145, 0.007366, 0.003681, 0.006382, 0.00813, -0.011154, 0.001632, -0.008316, -0.04663, 7.1e-06, 0.006695, 0.002386, 0.005493, 0.007347, 0.003723, -0.007328, -0.003895, 0.007294, -0.001795, 0.02216, 0.003328, 0.00398, 0.007, 0.01146], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00283, 0.000756, 0.000783, -0.0005703, -0.000537, -0.000558, 0.00827, 0.0003555, 0.0001427, 0.00063, -0.000355, -0.0004401, 0.01496, 0.00787, -0.0001512, -0.00011957, 0.02821, 0.0005283, -0.000977, 0.0001272, -0.0003743, 0.0389, 0.00427, -0.0003731, -0.00139, -0.000923, 0.02411, -0.000476, -0.0003247, 0.0002654, 0.0172, 5.126e-05, 0.007565, 0.000303, -0.00521, -0.001679, -0.000561, 0.001045, -0.0003483, 0.0002456, -0.000826, 0.0002182, -9.17e-05, -0.001507, 0.0084, 0.00685, -0.0005975, -0.0003386, -0.001096, 0.0001545], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00493, -0.0002851, -0.000554, 0.001429, -9.924e-05, 0.0001421, 0.01178, 0.000626, -3.093e-05, 0.001318, 0.001453, 0.007473, -0.01066, -0.01982, 0.0006313, 0.0008693, -0.0099, -0.0003414, -6.64e-05, 0.000384, 0.0008283, 0.0482, 0.004677, 0.0001876, 0.001399, 0.0007057, -0.0393, -9.036e-05, 0.0003576, 0.0001428, -0.006653, -0.000384, 0.01126, -0.0003967, -0.02176, 0.01794, 0.000796, 0.0015335, 0.000593, -0.0001115, -0.0003102, -7.29e-05, 0.0001655, -0.000508, 0.006603, -0.010345, 9.304e-05, 4.96e-05, 0.0001199, 0.0005393], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002058, 0.001645, 6.85e-06, 0.0001665, 0.002007, 0.001062, -0.005787, 0.0005255, -0.0002018, 0.000714, 0.00127, 0.001318, 0.014305, -0.006115, 0.0006456, 0.000982, 0.003773, 0.0004926, 0.000939, 9.8e-06, 0.0002228, 0.06244, 0.01458, 0.0008106, 0.000341, 0.0006084, 0.01886, 0.0004876, -0.0002732, 0.0003154, -0.001995, 0.002172, 0.00915, -0.001138, 0.000504, -0.002823, -8.59e-05, 0.01384, -0.0006385, 0.0007014, 0.0007524, 0.0002346, -2.736e-05, 0.001038, 0.00714, -0.01068, -0.0003357, 0.000174, -0.0002472, -0.0003457], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.001651, -0.0003986, -0.000574, 0.001606, -0.0002378, 0.0001737, 0.00697, 0.0008354, -0.0003815, 0.001224, 0.0001922, 0.00654, -0.00346, -0.01277, 0.000287, 0.001732, 0.006607, -0.000367, -2.646e-05, 0.00063, 0.0003612, 0.03897, 0.00465, 0.00062, 0.001227, 0.000528, -0.02066, -0.0003037, 0.0004222, 0.0002296, -0.00446, -0.0004766, 0.01146, -0.001139, -0.01979, 0.01694, 0.0004833, 0.001266, 0.0009723, -0.0001353, -0.00032, -0.0001051, 0.0001147, 8.06e-05, 0.005867, -0.01188, -0.0001707, -0.0003226, -0.0001638, 0.00074]]
[-0.0211303, -0.0184696, 0.0182208, -0.0184208, 0.0182179, -0.02113, -0.01846, 0.01822, -0.01842, 0.01822]
| ReLU
[[-0.426116, -1.36682, 1.82537, -0.359894, 0.781783], [0.0141898, -1.74668, 2.10078, 0.199607, -0.625995], [0.236925, -0.387744, 0.335238, -0.0708328, -0.872241], [0.189836, 1.80645, 0.228501, 1.39699, -1.70341], [3.36428, -0.00959754, -0.02829, -0.00182374, -0.00321689], [-0.00116646, -1.30479, -0.646313, 0.384975, -0.172187], [0.059504, -1.04445, 1.15267, -0.0491381, 0.274068], [-0.0885259, -0.600468, -0.168808, 0.320975, -0.19985], [-0.360641, 0.723289, -1.27592, 0.0365215, -0.00916054], [0.0174352, -0.377868, -0.115205, 0.397747, -0.457395], [0.119381, -1.40394, 1.73194, 0.214848, -0.5308], [0.510919, -0.0145736, 0.0727201, -0.272957, -0.58318], [0.0892236, -0.0912425, -0.536878, -0.193087, 0.259249], [-0.106965, 0.292023, -0.281651, -0.379942, 0.351947], [0.313856, -0.841286, -0.235311, 0.0131289, 0.0961032], [-0.00807936, -0.000563769, -0.00712403, 0.00185073, 0.00615519], [0.142517, 0.0997765, -0.234522, 0.0641164, 0.0173711], [0.120767, -0.621179, 0.840395, -0.0966762, 0.738722], [-0.120072, -0.251172, 2.6124, 0.154528, 0.378212], [0.171677, 2.17068, -0.949588, 0.292661, 0.130445], [-0.118201, 0.905917, 0.0613212, -0.508156, 0.641137], [0.198566, -1.69141, 0.635503, 0.444259, -0.64184], [-0.0835745, 0.0201827, 0.131306, -0.465076, -0.0931595], [-0.00889577, 1.47801, -1.7606, -0.273348, 0.685236], [-0.99453, 0.223245, 0.0780545, -0.00929289, -0.256348], [0.00638617, -0.191506, 0.514769, -0.852697, 0.848115], [-0.297726, -0.242926, 0.274442, 0.999968, -1.1845], [-0.0484978, 0.898421, 0.947518, 0.280254, -0.0864377], [-0.0178505, -0.184101, -0.222805, 0.117964, 0.154774], [0.0333232, 1.36975, -1.6105, -0.107663, 0.495742], [0.98863, 0.416651, 0.00679299, 0.268351, 0.181104], [0.000498813, 0.357345, 1.12966, -0.224096, 0.202364], [0.0563342, 0.365707, 0.477882, -0.373783, 0.145331], [0.0852371, -1.11661, -0.296353, 0.385203, -0.172235], [0.00101593, 0.971395, 0.792908, 0.348388, -0.210291], [0.00250681, 1.24018, -1.09202, -0.273149, 0.162231], [-0.135747, -0.901627, -0.581315, -0.278672, 0.223302], [-0.0149513, 0.016501, 0.000874109, 0.00829948, 0.0108247], [0.129122, -1.53063, 1.5018, 0.11217, 0.243414], [0.10337, 0.0582161, -0.0713023, -0.15957, -2.17338], [-0.0108974, 0.0136867, 0.00199981, -0.00192423, -0.00166569], [0.300335, 1.40717, -0.85673, 0.227232, -0.162827], [0.0199644, -2.69606, 0.983252, 0.515997, -0.76219], [0.0206727, -0.476237, -0.122935, -0.166794, -0.02558], [-0.0372325, -1.68642, -0.0342497, 0.0462046, -0.703736], [0.0919305, 1.05597, -1.07173, -0.341911, 0.411172], [0.355212, 1.22531, 0.438395, 0.765531, -0.377483], [-2.08839, -0.0338612, 0.00263981, 0.326788, 0.19074], [0.014666, 0.575711, -0.750375, 1.29255, -1.5435], [-0.197753, 2.14334, -2.00387, 0.0774846, -0.612016], [-0.426, -1.367, 1.825, -0.3599, 0.7817], [0.01419, -1.747, 2.102, 0.1996, -0.626], [0.2369, -0.3877, 0.3352, -0.07086, -0.872], [0.1898, 1.807, 0.2285, 1.397, -1.703], [3.365, -0.0096, -0.02829, -0.001823, -0.003218], [-0.001166, -1.305, -0.6465, 0.385, -0.1722], [0.0595, -1.045, 1.152, -0.04913, 0.2742], [-0.0885, -0.6006, -0.1688, 0.321, -0.1998], [-0.3606, 0.723, -1.276, 0.03653, -0.00916], [0.01744, -0.378, -0.11523, 0.3977, -0.4573], [0.1194, -1.404, 1.732, 0.2148, -0.531], [0.5107, -0.01457, 0.0727, -0.273, -0.583], [0.08923, -0.09125, -0.537, -0.1931, 0.2593], [-0.107, 0.292, -0.2817, -0.38, 0.352], [0.314, -0.8413, -0.2354, 0.01313, 0.0961], [-0.00808, -0.0005636, -0.007126, 0.001851, 0.006157], [0.1425, 0.0998, -0.2345, 0.0641, 0.01736], [0.1208, -0.621, 0.8403, -0.0967, 0.739], [-0.12006, -0.2512, 2.613, 0.1545, 0.3782], [0.1716, 2.17, -0.9497, 0.2927, 0.1305], [-0.1182, 0.906, 0.0613, -0.5083, 0.641], [0.1986, -1.691, 0.6357, 0.4443, -0.6416], [-0.08356, 0.02019, 0.1313, -0.465, -0.09314], [-0.008896, 1.478, -1.761, -0.2734, 0.685], [-0.9946, 0.2233, 0.07806, -0.00929, -0.2563], [0.006386, -0.1915, 0.5146, -0.8525, 0.848], [-0.2976, -0.2429, 0.2744, 1.0, -1.185], [-0.0485, 0.8984, 0.9478, 0.2803, -0.0864], [-0.01785, -0.1841, -0.2228, 0.118, 0.1548], [0.03333, 1.37, -1.61, -0.10767, 0.4958], [0.989, 0.4167, 0.006794, 0.2683, 0.1812], [0.000499, 0.3574, 1.13, -0.2241, 0.2024], [0.05634, 0.3657, 0.4778, -0.3738, 0.1454], [0.08527, -1.116, -0.2964, 0.3853, -0.1722], [0.001016, 0.971, 0.793, 0.3484, -0.2103], [0.002506, 1.24, -1.092, -0.2732, 0.1622], [-0.1357, -0.902, -0.5815, -0.2786, 0.2233], [-0.01495, 0.0165, 0.000874, 0.0083, 0.010826], [0.1292, -1.53, 1.502, 0.1122, 0.2434], [0.1034, 0.05823, -0.0713, -0.1595, -2.174], [-0.010895, 0.01369, 0.001999, -0.0019245, -0.001666], [0.3003, 1.407, -0.857, 0.2272, -0.1628], [0.01996, -2.695, 0.9834, 0.516, -0.762], [0.02068, -0.4763, -0.1229, -0.1667, -0.02557], [-0.03723, -1.687, -0.03424, 0.0462, -0.7036], [0.0919, 1.056, -1.071, -0.3418, 0.4111], [0.3552, 1.226, 0.4385, 0.7656, -0.3774], [-2.088, -0.03387, 0.00264, 0.327, 0.1908], [0.01466, 0.5757, -0.7505, 1.293, -1.544], [-0.1978, 2.143, -2.004, 0.0775, -0.612]]
[-0.374503, -0.377042, -0.35578, -0.167096, 0.916086, -0.20776, -0.505616, 0.128134, -0.101471, -0.0578752, 0.138487, 0.0715103, 0.0287682, -0.00755066, 0.151556, -0.013975, -0.0208452, 0.163808, 0.281265, 0.218265, 0.172861, -0.326585, -0.0181639, -0.351004, -0.0589766, 0.0967817, -0.0262423, 0.108033, 0.0714921, -0.56156, 0.43096, 0.0143072, -0.0635451, 0.0652215, -0.175972, 0.358678, 0.228314, -0.0275654, -0.494982, -0.851079, -0.0136558, -0.319273, -0.150788, 0.0468159, -0.275378, -0.582062, 0.124071, -0.314303, 0.461445, -0.118388, -0.3745, -0.377, -0.3557, -0.1671, 0.916, -0.2078, -0.506, 0.1282, -0.1015, -0.05786, 0.1384, 0.07153, 0.02876, -0.00755, 0.1516, -0.01398, -0.02084, 0.1638, 0.2812, 0.2183, 0.1729, -0.3267, -0.01816, -0.351, -0.059, 0.0968, -0.02625, 0.10803, 0.0715, -0.5615, 0.431, 0.014305, -0.06354, 0.06525, -0.176, 0.3586, 0.2283, -0.02757, -0.4949, -0.851, -0.01366, -0.3193, -0.1508, 0.0468, -0.2754, -0.582, 0.1241, -0.3142, 0.4614, -0.1184]
ReLU
[[-0.0257284, -0.0236522, 0.00533226, -0.00479611, -0.0435576, -0.024969, -0.0148108, 0.000334024, -0.0550894, 0.0356814, -0.0163375, 0.0301327, -0.025592, -0.00017491, 0.0443188, -0.0219289, -0.0149489, 0.0178137, 0.00772056, -0.0270143, -0.046169, 0.0251348, -0.0361942, -0.0561861, -0.0178958, -0.0570119, -0.0574254, -0.0500563, -0.0256907, 0.027076, -0.0153894, -0.00949664, -0.0400265, -0.0510351, -0.0160994, 0.0018803, -0.0481571, 0.00733657, -0.0131476, -0.0495243, 0.0169441, -0.0178048, 0.0365598, 0.00279935, 0.036292, -0.0157837, -0.00707921, -0.0120638, 0.0316389, 0.0237082, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.218614, 0.911912, -0.84065, -0.191406, -0.0275153, -0.717804, 2.22887, 0.0544677, -0.136135, 1.22709, 1.12116, -0.398822, -4.32472, 1.31661, -0.249738, 0.0333424, -2.696, 0.517701, 0.284631, -2.49039, -1.48678, 1.3057, -1.01538, -0.113392, -0.860383, 0.164189, -2.45024, -0.599888, -0.655457, -0.0635909, -0.0607489, -2.41051, -1.18908, 0.352026, -0.322535, -9.52107, -1.47902, -0.0435137, 1.01652, 0.390305, 0.0309371, -0.0278082, 0.542248, -1.57047, -0.563086, -0.030098, -0.772958, -0.279747, 0.413284, -0.0488297, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.24761, -3.76502, 0.228054, 0.484981, -0.0949598, -0.214886, -0.00482349, -1.42252, -0.240014, -0.577037, -0.387157, 0.9012, -0.0541884, 0.12661, -0.0148385, 0.0312515, -0.00719599, -1.01879, -0.286248, -0.198213, -1.05835, 0.0505825, 0.503439, -0.0810826, -0.182306, 1.70427, 0.276436, -0.755162, -0.205155, 0.0226262, -0.604663, -0.414774, 1.51849, -0.377182, -0.968095, 0.372761, 0.02276, -0.00836215, 0.032389, 0.0859652, 0.0232219, 0.295857, -6.87449, 0.362839, -6.14322, 0.180236, 0.107394, -0.355305, 0.0852593, 0.416041, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.181947, 0.0133912, 0.103495, -0.0962433, 0.00869602, 0.939933, -0.633676, -0.180077, -1.17958, -1.68241, -0.0893241, -0.161418, 0.518808, 0.653232, -0.0572633, 0.0290303, 0.145386, -0.133834, -0.138091, -0.482874, 0.0732869, 0.153897, 0.00137266, -1.60221, 0.116977, 0.226952, -1.18551, -0.0490157, 0.703996, -1.29455, 0.234296, 0.295583, 0.513513, -0.0382809, 1.22411, -1.28774, 0.753411, 0.0323903, -0.484612, -0.367858, -0.045273, -0.134693, 0.280383, 0.292483, 0.383694, -0.0966331, -0.106955, -0.16891, -0.0975694, 0.625205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0285755, 0.020354, 0.0389254, -0.0236538, -0.00636706, -0.0154541, 0.0370287, -0.0266411, 0.0201518, 0.042616, -0.0482446, 0.0234702, -0.0030162, -0.0255933, 0.00100413, -0.039401, -0.0446734, -0.0423408, -0.0263079, -0.00115215, -0.0447546, -0.0393619, 0.00185248, -0.0147432, -0.035166, -0.0225495, -0.0232481, -0.0211972, -0.00631384, 0.0325048, -0.0362754, -0.0228891, -0.0160627, -0.0469298, -0.0159726, 0.0219532, 0.00608702, 0.0239822, -0.0273162, -0.0206056, -0.0493693, 0.0116715, -0.0117775, -0.0287723, -0.0465621, -0.0303078, -0.0391812, 0.0229039, -0.0282879, 0.0140313, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.493017, 0.0143351, 0.245149, -0.107882, -1.95085, 0.168048, 0.285775, 0.117999, 0.540144, -0.310951, 0.438126, 0.151776, 1.34173, -0.123517, -0.449784, -0.0258406, -0.199643, 0.0102084, -0.139773, 0.147925, -0.269643, -0.384435, 0.111361, 0.306792, 0.804705, 0.185627, 0.0390124, -0.3578, 0.0416984, 0.296584, -0.733394, -0.0260333, 0.154698, 0.154683, -0.316917, -0.226008, 0.109207, 0.0221259, -0.113578, -0.184804, 0.0302034, -1.00608, 0.152615, -0.544608, 0.0403871, -0.702331, 0.0433181, 0.862143, 0.21835, -0.164736, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0516212, 0.0246022, 0.00519701, 0.00724102, -0.0473381, 0.0251793, 0.0199445, 0.034344, 0.0080071, 0.0414869, -0.018445, -0.0435374, 0.0151831, 0.0228355, -0.034742, -0.0379114, -0.0469185, 0.0403494, 0.0409838, -0.0125394, -0.0279292, -0.0380984, -0.00545312, 0.000296224, 0.0210915, -0.0450871, -0.0271307, -0.0511078, -0.0263413, -0.0359262, -0.0147429, 0.0330501, -0.0233863, -0.0572868, -0.0202109, -0.0467218, 0.0270974, -0.0123151, -0.022375, -0.0136509, 0.010486, 0.0105293, -0.0152921, 0.0254299, -0.050974, -0.0483808, 0.00338038, -0.00556381, -0.0283271, 0.0358513, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00528303, 0.0249541, 0.0209734, -0.0480755, -0.030941, 0.0391869, -0.00627359, 0.0235716, 0.0400039, -0.0198866, 0.000226435, 0.0138433, -0.0417196, -0.0042913, -0.0406745, -0.0145939, -0.0254334, -0.00515734, -0.00575585, -0.00643996, -0.0672878, 0.030864, -0.0374008, -0.0219419, -0.00564866, -0.0610638, -0.0332324, 0.0149923, -0.0413367, -0.00476608, -0.05789, -0.0351982, -0.038589, -0.0515918, 0.0194671, 0.021493, -0.069541, -0.0358305, 0.0251617, -0.0366418, 0.0362111, 0.0446305, 0.0326386, -0.0219629, -0.0480049, -0.0254594, -0.017247, -0.00887547, 0.0130608, 0.0301065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.898927, 0.00472883, 0.522706, 0.623907, 0.142219, 0.786602, -1.48794, 0.49128, -2.17655, 0.281461, -0.329406, -0.143633, -0.465748, -0.220217, 0.144516, -0.0511429, -0.113122, 0.351922, -0.0704466, -0.561738, -0.599853, -1.02209, 0.0130604, -1.46225, 0.177485, -0.124472, -0.121973, -0.0430393, 0.642517, -0.981604, -0.246051, -0.575903, 0.460478, 0.527176, 1.04021, 0.223835, 0.51463, 0.0435097, -1.06927, -1.68283, 0.0352901, 0.187504, 0.302498, -0.104112, -0.765211, -0.0573511, -0.37095, 0.0915851, -0.726989, -0.458983, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0580623, -0.0779515, -0.0316925, -0.0346005, 0.0237032, -0.0289218, -0.0267494, 0.000446033, -0.0366345, -0.0269112, -0.0461343, 0.0234608, -0.0360126, -0.00332605, 0.0097856, -0.0451929, 0.0203525, -0.00817221, 0.0295701, -0.0604792, -0.0190657, -0.0294761, -0.0588744, -0.044501, 0.0174705, -0.0213109, -0.00648355, -0.0413397, 0.0259425, 0.0402069, -0.0188782, -0.00933547, 0.0159795, -0.0593466, -0.0471702, -0.00499768, -0.0345422, -0.0137362, -0.0750357, 0.0100905, 0.00148185, 0.0349869, 0.00981968, -0.0584987, 0.0123556, -0.0582697, -0.0211336, 0.0174229, -0.00544889, -0.0472347, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.94415, 0.108152, 1.3586, 0.03122, 0.00308969, -0.167468, 3.89657, -1.30883, 0.551658, -0.402315, 0.526558, -0.806038, -4.57137, -2.37311, 0.0665095, -0.0207176, -0.148914, -0.896568, 0.467112, 0.44885, -1.68308, -0.410364, 0.803518, 0.700237, -1.46089, -0.319608, -1.08754, -0.327656, -0.287844, -0.291775, 0.352467, -1.15292, 0.769056, 0.0365517, 0.861723, 0.0558341, -1.06786, 0.0194991, -0.917678, -1.19898, -0.0206523, -0.207864, -0.239039, 0.942427, 1.53247, -4.16183, 0.265229, -0.477628, 0.350585, 0.452674, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0183125, 0.320378, -0.115505, -0.0930479, -0.164447, 0.480443, -0.0488888, -0.0767532, 0.457989, -0.815251, 0.0314548, -0.182253, 0.577106, -0.15579, -0.219907, -0.0230765, 0.344513, -0.16367, -0.473365, -0.490897, -0.932829, 0.696761, 0.0325764, -0.426647, 0.678254, 0.589487, -0.653831, -0.658782, 1.34226, 0.891403, 0.460309, 0.640799, 0.0912725, 0.138055, -0.00628141, 0.374024, 0.145911, -0.0238799, 0.3771, 1.00651, -0.0522094, -0.703559, 0.103762, -0.124165, -0.0465263, 0.257205, -0.204245, 0.0262627, 0.116313, 0.283628, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.15909, -0.18838, 0.641448, -0.0295341, 0.119719, 0.220659, 0.51048, 0.894634, -0.0983582, -0.185679, -0.0405998, 0.645929, 0.621616, -0.157488, -0.485417, -0.00913958, -0.19437, 0.27474, 0.00583202, -0.241775, -0.216323, 0.317239, 0.204999, -0.221947, 0.409354, -0.380617, 0.0760568, 0.578883, -0.330752, 0.886849, -0.818042, 0.437303, -0.284698, 0.105596, 0.187023, 0.0652995, -0.0968753, -0.0110851, 0.2181, 0.368294, -0.0223655, 0.860314, -0.138437, 0.229273, -0.991697, -0.0549812, -0.29009, -0.00109741, 0.207045, -0.175226, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0374878, -0.0548155, -0.00986702, -0.024554, -0.0339577, -0.00510877, -0.0149537, 0.0112766, -0.0432606, 0.0120577, -0.0139701, 0.0194517, -0.0226774, -0.0295449, -0.0565623, -0.022134, 0.00587596, -0.0472326, 0.0099596, -0.0373884, -0.0292512, -0.0207364, -0.0105453, -0.0341247, 0.0261407, -0.0298462, -0.00499264, 0.0353888, -0.0516737, -0.00874756, -0.0321149, 0.0369732, 0.0182126, 0.0363329, -0.0425803, -0.0458908, -0.00169549, 0.0222258, -0.0480389, -0.0389699, 0.0206133, -0.0115413, -0.0207032, 0.0316678, 0.00727836, -0.000686307, -0.0427982, -0.0341163, 0.0375396, -0.0405458, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.668513, -0.263481, 0.375073, -0.377028, -0.0562438, -0.598853, 2.11848, 0.0156223, 0.226724, -0.203557, -0.237466, 0.206427, 0.000852102, -0.0115671, -0.226258, 0.0161302, 0.222341, 0.152059, 0.120787, -0.261488, -0.167539, -0.0258114, -0.467315, -0.509366, 0.07625, 0.0763535, 0.0442077, -0.704559, 0.550282, 0.235639, 0.0653328, 0.0641963, 1.16646, 0.0399983, 0.222018, -0.166754, -0.260518, -0.0189819, -0.662188, 0.745152, 0.0441149, 0.439434, 0.474698, -0.326409, -0.181479, 1.80077, -0.185967, 0.30336, 0.730206, -0.309409, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.356083, -0.166289, -0.330672, 0.171554, -0.560877, 0.217132, 0.454068, 0.269823, 0.350188, 0.810512, 1.12174, -1.85371, 0.931311, 0.202704, -0.651971, 0.0292326, 0.550383, -0.335565, 0.509629, 0.349096, -0.328448, -0.534995, 0.363329, 0.789053, -0.0552385, 0.211419, -0.000764228, -0.572605, 0.0281303, -0.391765, 0.186953, 0.739373, -1.19322, -0.193607, -0.771292, 0.287132, 0.277789, 0.0303455, -0.740141, -0.964613, -0.014207, -1.24935, -0.0427367, -1.11523, 0.649113, 0.640596, 0.343844, -1.02042, -0.209031, 0.468517, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.887987, -0.550376, 1.25381, -1.92264, 0.0897411, 1.28857, 0.386286, 0.8537, -0.80353, 0.840659, 0.255623, -0.868299, -1.08809, 1.54181, -0.152854, 0.0122292, 0.0959838, 0.409991, 0.383845, -0.574188, 0.868968, 0.993326, -1.71355, -0.29463, -1.07725, 0.0992432, -0.188672, -1.01254, 0.475092, 0.725338, 0.76068, 0.904287, -1.69016, 1.44969, -1.17612, -0.645589, -0.993996, 0.00417662, -1.73099, 0.489594, -0.0277712, 1.73963, 0.337638, -1.01134, 0.218539, -2.14946, 0.179774, 0.309288, 0.173184, 0.249349, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0287202, 0.0288002, 0.0260945, -0.0453287, -0.00570258, -0.0390286, -0.00490901, -0.0488346, -0.0232626, 0.0255117, -0.0510363, -0.0426236, 0.0283755, 0.00692044, 0.00891948, 0.0149667, -0.0313598, 0.00150736, -0.00766892, 0.0308137, -0.0216647, -0.036375, -0.0423792, -0.0289542, 0.00617469, 0.0251601, -0.0506805, -0.0268023, -0.0239686, -0.00243447, -0.0107074, 0.0353977, -0.059614, -0.00958364, -0.0131518, -0.00643921, -0.0143681, -0.0430858, -0.0268779, 0.035992, -0.047445, 0.0314404, 0.00860871, -0.00877121, -0.0351048, -0.00412653, -0.0181986, 0.0205805, -0.000791166, 0.0289075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.02549, 0.150753, -0.154348, -1.33095, -0.0569362, -0.57198, 0.279489, 0.904894, -0.793351, 2.07543, -1.38123, -0.0347851, 0.823562, 0.349375, 1.1721, 0.0259001, 0.152336, 0.152933, 0.107739, -0.128092, 0.412569, 0.894551, -0.0412729, -1.07238, -0.568532, 1.48682, 0.869444, -0.812789, -0.0890985, -1.90273, 0.133435, 1.98995, 1.09333, 1.40278, 0.23728, 0.753611, 0.637317, -0.0381658, 0.25062, -1.63409, 0.0217916, -1.18544, 0.729782, -0.632815, -1.61789, -2.98806, -0.0850394, -0.521259, -0.458435, -0.776997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.27228, -3.3266, -1.14085, 2.37977, 0.131295, -1.86394, -4.74115, -3.18604, 0.301468, -2.82724, -0.190541, 0.0593894, -1.04167, -0.661619, -1.88743, -0.0191931, -0.813247, 1.20872, 1.26041, -1.60428, -0.107739, -2.3111, 0.0797234, -2.39026, 0.576918, 1.10188, -0.627542, 1.45959, -0.698206, 1.32288, 0.401732, -0.125618, -1.15238, -1.69601, 2.06209, -2.47841, 0.182957, 0.000615536, -4.37963, 0.347165, -0.00580705, -0.618551, -1.27022, -1.12715, -12.2147, -3.74374, 0.0419186, -0.036616, -0.0681778, 1.18132, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00567226, 2.31214, 1.04188, -1.0785, 0.0148593, 0.848571, 0.377018, 0.867987, -0.167617, 1.57278, -0.409157, -0.329723, 1.20327, 0.757628, 0.864911, -0.0376572, 0.00975203, -0.150882, -1.23859, -0.609628, 1.46916, 0.773507, -0.537592, -1.50927, -0.36373, -0.311264, -0.115235, -1.55002, 1.44276, -2.46965, 0.381472, 0.582017, 1.7509, 1.64051, 0.0529464, 1.02609, 0.802246, -0.0133993, 1.22871, -0.409523, 0.0425458, -1.01171, 1.27743, 0.534427, 2.45295, -0.241838, -0.385475, -0.103593, 0.198291, -1.44173, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0218739, 0.0303584, -0.0132183, -0.0243837, -0.0480908, -0.00904813, -0.0436688, -0.0414628, 0.00128869, -0.00844737, 0.0101749, -0.00236118, -0.0168351, -0.0293993, 0.0243873, 0.00600525, 0.000709038, 0.000779196, -0.015131, -0.0382479, -0.0539292, -0.0489452, 0.00554548, -0.0106795, -0.0156432, -0.0476216, 0.0222159, 0.0146924, 0.00877263, -0.0331815, -0.0342321, -0.0142801, -0.0134835, -0.0409547, -0.00141023, 0.0156947, -0.0237651, -0.038968, 0.025791, 0.021634, -0.012764, -0.0445715, -0.0137429, -0.0270177, -0.00627564, -0.0368917, -0.0238057, 0.0037407, 0.0288691, 0.00660387, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.33909, -0.16938, 0.56501, 0.00848341, -0.0747105, 0.370272, 0.224526, 0.0764996, 0.0340361, 0.0378514, -0.267713, 0.0552341, -0.100566, 0.11117, -0.00758507, 0.038769, -0.191761, 0.0491858, -0.0444644, -0.207631, -0.50015, 0.0499691, 0.420328, -0.057424, 0.115088, 0.0839947, -0.145549, -0.281406, 0.0182474, -0.071814, 0.0387516, -0.335688, -0.172403, 0.174095, -0.0374405, -0.118235, 0.0480017, 0.031609, 0.0922737, -0.290575, -0.0472016, 0.0783358, 0.0804214, -0.0164953, 0.36052, -0.608427, -0.86011, 0.259659, -0.0140192, 0.411975, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.199987, 0.0274749, 0.868621, -0.350053, -0.166134, 0.643934, -0.782989, 0.543567, -1.4198, -0.66041, 0.0724962, 0.0474064, 0.478484, 0.237829, 0.0955269, -0.0288495, -0.021324, -0.24561, 0.259883, 0.403755, 0.599252, -0.165023, -0.34417, 0.0843119, 0.461055, 0.592992, 0.334239, 0.196569, -0.278131, -0.416152, -0.2918, 0.355169, 0.503225, 0.48646, 1.54081, 0.284538, 0.47361, -0.0228252, -0.0568548, -0.988694, 0.00958222, -0.696932, -0.267247, 0.629476, 0.432635, -0.156455, 0.261976, -0.241156, -0.139131, 0.379031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.564797, 1.33635, 0.245347, 0.0597155, -0.118893, -1.36996, 3.57272, -0.491175, 0.122699, -0.0205029, 0.808012, -0.017277, -0.138318, 0.109192, 0.0498727, 0.00439416, -0.160063, 0.0766016, -0.474233, -0.123738, -0.240067, 0.187567, 0.353011, 0.570307, -0.273449, -0.0443753, -0.187019, -0.521631, -0.448079, 1.37104, -0.2344, -0.45256, -1.34123, -0.574799, -1.86209, 0.241475, -1.13385, 0.000463777, 2.72035, 2.01967, -0.0246443, 2.08925, 0.385397, -0.106406, 0.0282591, 0.911045, -0.355712, -0.331723, 0.638205, 0.209462, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.502401, 0.260652, -0.0859954, 0.0120427, 0.121619, 0.3664, -0.24959, 0.735966, -0.457906, 1.0468, 0.504591, 0.911819, -0.745202, 1.01492, -0.343027, 0.00621856, 0.326127, 0.239554, 0.186213, 0.0337119, 0.313295, -0.783608, 0.785634, 1.10305, 2.50873, -0.371808, 0.163023, 0.386692, -0.160978, -0.097899, -1.92917, -0.390385, -0.639673, 0.397206, -0.629038, 0.395233, 0.247945, -0.0336803, -0.0487544, 0.863012, 0.0414545, -0.126794, -0.674091, 1.0044, 0.597904, -0.298315, 0.0720187, 1.62389, -0.0874539, 0.142422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.6352, -1.99862, 0.265507, 0.898045, 0.105921, 2.7681, -3.5818, -0.658056, -1.04929, 1.53181, -1.7012, -0.0139677, 1.1456, -0.743782, 0.347493, -0.0132018, -0.106715, 0.699727, 0.0303777, -0.409361, 0.500291, -0.814148, 1.13816, -0.476956, 0.258575, 0.0568247, -0.366258, 1.75243, 0.252282, 0.638168, 0.00524156, 1.68427, 1.68389, 0.173396, 3.05825, -0.687236, 2.18308, -0.0256276, -3.77911, 0.123928, -0.0233177, 0.78764, -0.559539, 1.20623, 0.0238102, 0.416482, 0.715701, 0.187817, -0.737717, -0.379647, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0117403, 0.00499993, 0.0149551, -0.0437553, -0.0235646, 0.00376718, 0.0161457, 0.0187161, 0.0104201, -0.0449501, -0.00229238, 0.0227218, -0.0272604, 0.0440093, -0.0437945, 0.0418779, -0.0370829, 0.0179713, -0.0121517, -0.0379202, -0.03698, -0.0368689, 0.0265466, -0.0251392, -0.0254131, -0.0179743, -0.00363811, 0.012776, -0.00197088, 0.027127, -0.026396, 0.0155901, 0.00140541, -0.0168386, -0.000289901, -0.0101866, 0.0197864, -0.0303635, -0.019163, -0.00665198, -0.0506372, -0.0150932, -0.0276117, -0.0523533, 0.0245961, -0.0209341, 0.000852437, -0.0261906, 0.00784706, 0.00304723, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.31177, 0.512831, 0.767398, -0.208452, -0.172548, 1.28918, -1.92097, 0.46189, 0.24917, -0.607468, -0.785284, -1.4297, -0.32457, -2.51831, 0.970914, 0.030202, -1.14209, -0.317074, -1.43835, 0.619221, -0.153863, 0.405214, -2.13429, -2.33992, -1.26564, -1.80709, -0.279684, 0.834568, 0.312488, -0.0461396, -0.616648, 1.64548, 0.000290379, 1.09646, 0.00312024, -2.27768, 0.174483, 0.00868875, -0.389346, 1.42664, 0.0226618, 0.0759585, 0.701761, -0.126551, 0.716534, 0.0192851, 0.592908, -0.92648, -0.368165, -0.656115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.197984, -0.137075, -0.0911982, -0.104324, -3.0122, 0.00463318, -0.830029, -0.326131, 0.162557, -0.0700183, 0.547012, 0.556732, -0.309127, 0.0179728, 0.114175, -0.045468, 0.122966, 0.211206, -0.181433, -0.0114519, 0.209721, -0.195767, 0.242268, 0.0892852, -0.180224, -0.306501, 0.270196, 0.168749, 0.0625378, -0.378046, -0.2306, -0.151859, -0.0223518, 0.14326, -0.00515763, 0.250489, -0.0537305, -0.0200237, 0.15388, 0.226893, 0.0195915, -0.0724361, -0.220446, 0.483731, 0.0574362, -0.223914, -0.0573422, -0.251572, -0.0340187, 0.0658108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.190482, 0.136881, 0.0450375, -0.521081, -0.355777, -0.338529, -0.556249, 0.479434, 0.127633, 0.822327, 0.287414, -0.120388, 0.219416, -0.544815, -0.86129, 0.0364523, 0.0955709, 0.157596, -0.20282, -0.101205, 0.240763, -0.464204, -0.226282, 0.0849086, 0.253271, 0.218635, 0.529496, 0.118816, 0.938377, 0.0800158, -0.0325287, 0.166249, -0.643578, -0.220065, -0.232663, 0.119816, 0.0257112, -0.0105709, -0.0859868, -0.516572, 0.00847649, -0.715328, 0.0981168, -0.760023, 0.762237, 0.250861, -0.321125, -0.0851529, 0.230256, 0.0467061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.007172, -0.00584403, -0.00471351, -0.0223815, -0.0346043, -0.0216301, -0.0262812, 0.0242659, -0.00179238, 0.0321524, -0.0606827, 0.038917, -0.0589701, 0.0311063, -0.000115694, -0.050372, -0.0281215, 0.00766693, 0.0118365, 0.00899186, -0.0198207, -0.0140312, -0.0284749, -0.052684, 0.00633015, -0.00136322, -0.044158, -0.0133795, -0.0331374, 0.0352004, 0.00888535, -0.0207074, 0.000831374, 0.0331627, -0.0246125, 0.0291591, 0.0038025, 0.0153991, 0.0312045, -0.0592047, 0.0113324, 0.0320535, -0.0662661, -0.0233667, 0.014172, -0.0322545, 0.00540383, -0.0237872, -0.0115863, -0.0275096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0601047, 0.0341852, 0.0183182, 0.0327307, 0.00786158, -0.0029782, -0.0143035, 0.0109523, 0.02102, -0.0262664, -0.0198543, 0.0227644, 0.0184984, -0.0219479, 0.0142672, 0.0273715, -0.038584, 0.019162, 0.00404291, -0.0190055, -0.0309148, -0.0212304, -0.0624301, -0.0599565, 0.0181217, -0.0279992, -0.0362665, -0.0121729, -0.0619742, -0.0389139, -0.0156513, -0.0281298, -0.0371952, 0.0408372, -0.0352631, -0.00630416, -0.0177304, -0.0384537, 0.00957117, -0.051343, 0.0338715, 0.0341269, -0.0276933, 0.0222924, -0.0303612, -0.0424885, 0.024424, -0.0427218, -0.0359456, 0.00341672, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.568488, -0.44874, 2.22244, 1.11069, 0.405298, -0.203596, 0.885333, -1.71332, 0.00816626, 0.0625584, 0.366233, 1.05086, 0.824899, 1.70977, -0.404916, -0.0122668, -0.135936, 0.0865119, 0.458963, 0.575907, 0.281505, -0.762461, -0.121874, -1.41289, -0.0866916, 0.481851, -0.60864, 0.405153, -1.17655, -0.0367753, -0.309656, -0.655696, -0.173369, 0.0811735, -0.301468, 1.18501, -0.447811, -0.0172909, 0.218936, 0.206505, 0.0418341, -1.16486, 0.172157, 0.303636, -0.740693, -0.110109, -0.386292, 0.195682, 0.43053, -0.35044, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0485148, -0.0471553, -0.0427733, -0.000460679, -0.0266104, 0.0239159, -0.0187727, 0.00731958, -0.0396946, 0.0207607, -0.0365249, 0.0113421, 0.00565577, -0.00981202, 0.0142709, -0.019434, -0.0412031, 0.0398877, 0.0339291, -0.00255596, 0.00239996, -0.0580414, -0.00889156, 0.00471231, 0.012673, -0.0464885, 0.0244648, -0.0528666, 0.00479654, 0.0139407, 0.0195259, 0.0015622, 0.0286102, 0.00266905, -0.00763059, -0.0465563, -0.0426139, -0.0436223, -0.0448051, -0.00791547, -0.0543685, 0.0395654, -0.0317223, -0.0255765, -0.0449242, -0.0444561, -0.046165, -0.0194217, 0.00853064, -0.0305609, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0381804, -0.0206938, -0.0558094, 0.00764152, -0.000483327, -0.0443827, -0.0190607, -0.0265205, -0.0253768, 0.00952051, -0.0275276, -0.0535802, 0.000909742, -0.0252551, -0.0248838, -0.0435619, -0.0425312, 0.00983822, -0.0037699, -0.0113188, -0.0243072, 0.0213736, -0.0229772, -0.0141042, 0.016267, -0.0367359, -0.0435239, -0.0186214, 0.0358591, -0.049921, 0.00254871, 0.00601613, 0.00193139, -0.0234551, 0.026085, -0.0517614, 0.0444303, 0.0280459, 0.0249392, -0.00974921, -0.000494414, -0.0474364, -0.0484254, 0.0197057, 0.0164639, 0.0295584, 0.0299495, 0.0142873, -0.0435343, -0.0202663, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0208029, -0.0189684, -0.0597766, -0.0115063, 0.016478, 0.0137051, -0.0227721, 0.0155838, -0.0505748, 0.016455, 0.00499084, -0.00147939, -0.0138452, -0.038672, 0.0178778, 0.0275364, 0.0088555, 0.0194542, 0.0196169, -0.0466658, -0.0426343, -0.0119972, -0.0398912, -0.00187768, 0.015582, 0.0200017, -0.00339697, -0.000113563, 0.0220536, 0.0105879, -0.0663129, 0.000486326, 0.00953346, -0.0369987, -0.0040897, -0.00069718, -0.011594, -0.0197582, -0.0340819, -0.0426626, 0.0404, 0.0324461, 0.00572699, -0.0036434, -0.0514482, 0.0138062, 0.0286291, -0.0359307, -0.037537, -0.0512492, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00785761, 0.0443267, -0.0395186, -0.0690911, -0.0401618, 0.0337981, -0.0489358, -0.0166595, 0.0418337, -0.0109773, -0.0345844, -0.0268456, -0.0402057, -0.0453551, -0.0429568, -0.0526389, 0.0315594, 0.0346516, -0.00489895, -0.00971759, 0.0197644, -0.0174719, 0.00847762, -0.0289792, -0.0477493, -0.0242043, 0.0225091, 0.0359951, -0.0272114, -0.050748, 0.0262211, -0.048864, -0.040984, 0.0276797, -0.0081976, -0.0168488, -0.00424369, 0.0171972, 0.00620689, -0.0434054, -0.04399, 0.0375241, -0.0394995, 0.0326346, -0.0125294, -0.00051055, 0.0273236, -0.0206294, -0.0493676, 0.00634697, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.401254, 0.279494, 0.748806, -0.563421, 0.124558, 0.560432, -0.141024, 0.227296, -0.525907, 2.14834, -0.563311, 0.566627, 0.562461, 0.87109, -0.360943, 0.0179288, 0.328896, -1.28468, 0.172357, 0.291823, 0.0652498, 0.914598, 0.307901, -0.523197, 0.312124, -0.281975, 0.112194, 0.113934, 0.398129, -0.304958, 0.298157, 0.0495414, 0.568469, -0.96788, 0.0949257, -0.969172, 0.420836, -0.0280317, -0.144731, 0.295283, 0.00590189, 0.0591595, 0.146843, -0.544983, 0.0736454, -0.344034, -0.710421, -0.963147, -1.34688, -0.202092, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.163596, -0.0385572, -0.376541, -0.00638823, -0.00470318, -0.9755, -0.302985, -0.120211, -0.732882, -0.0518925, -0.111532, -0.013412, -0.27775, -0.619946, 0.245364, -0.0286975, -0.473959, 0.32162, 0.333558, -0.952634, -0.146546, 0.21139, -0.0198212, 0.00691547, 0.0572772, 0.274089, -0.396096, -0.0557582, 0.130364, -0.00536735, -0.208558, -0.370596, 0.0658952, -0.190436, 0.378694, -1.12847, -0.0396973, 0.00760866, -0.627647, -1.44373, -0.00209985, 0.0916994, 0.225213, 0.799905, 0.0129381, 0.269888, 0.000588344, 0.31163, 0.136727, -0.144931, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.50689, 0.531863, 1.04448, 0.0658292, 0.261798, -1.16721, -3.89456, -0.661575, -0.99127, 0.446841, -1.92099, -0.143716, -1.16721, 0.828353, 0.206493, -0.0275914, -0.296827, -0.0364637, 0.403466, -0.0602809, 0.559395, 1.04646, 0.293052, -0.219288, -0.142489, 0.577655, -0.370445, -0.0130493, -0.0983715, -1.37078, -0.060553, 0.0713896, -0.52294, 0.750478, 0.200297, -0.152777, 0.518255, -0.0319782, -2.59451, -3.3236, -0.038056, -1.56612, -0.242287, 0.703787, 0.322074, -2.12654, -0.0871571, 0.387691, -0.0739384, -0.97751, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.10338, -0.0615184, -0.767001, -1.3994, -0.111061, -0.12758, 0.096159, -0.226892, -0.137889, -1.0884, -0.643976, 0.511616, -1.2436, -1.23624, -0.181403, 0.0231406, -0.586996, -0.212373, 0.677068, -0.110163, -0.484947, 0.0375069, 0.272008, 0.458967, -0.226351, 0.987938, -0.223649, 0.310929, -0.949527, -0.621633, 0.076822, 0.403384, -0.431802, -0.0130485, -0.378993, -0.534596, 0.603292, 0.0188939, -0.329104, 0.549409, -0.000219441, 0.471417, -0.0782425, 0.568009, 0.673912, -2.35879, 0.655022, 0.257655, 0.338474, -0.386431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.595133, -0.150721, 0.0802788, 0.167304, -1.43521, -0.575227, -1.9135, 0.0184598, 0.593432, 0.67308, 0.783197, 0.0259641, 0.452744, 0.141831, 0.297948, -0.0414787, -0.229389, 0.133965, -0.106526, 0.104074, 0.00126029, -0.474928, -0.0125281, -0.100956, -0.60854, -0.0272196, -0.0930955, 0.0644315, -0.372332, -0.402674, 0.490599, -0.288804, 0.301188, -0.100852, -0.234375, 0.27385, -0.071548, -0.0211378, -0.184866, -1.63337, -0.0354627, -0.61781, -0.165273, 0.11223, 0.1267, -0.12415, 0.317328, 0.140233, -0.112024, 0.116639, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.49639, -0.331035, -0.0588267, 0.112556, 0.299268, 0.495213, 0.0224447, 0.931044, -0.076072, 2.27374, -0.0816142, 0.0924521, 0.23034, 0.316434, -0.0188822, 0.00776739, 0.146228, -0.132193, 0.0231762, 0.0845961, 0.755128, 0.823508, 0.412943, 0.0140469, 0.70292, -0.177427, -0.424485, 0.62024, 1.83092, 0.553606, -0.444385, 1.07682, 1.20219, -0.5812, 1.12718, 0.0647955, 0.587842, -0.0432925, -2.72241, -0.703572, -0.042531, -0.297675, -0.367545, 0.207131, 0.771083, 0.602722, -0.650655, 0.181533, -0.696239, 1.04558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.37706, 0.00577377, 0.490774, -0.270099, -19.9624, -0.0189686, -0.562227, 0.392669, 0.419986, 0.601189, 0.591727, -0.229127, 0.651934, 0.678413, 0.269488, 0.0137958, 0.446056, 0.362336, -0.025696, 0.0197138, -0.307772, 0.203549, -0.271649, 0.349838, -0.81518, 0.129318, 0.545761, 0.0989652, 0.150252, -0.187218, 0.910253, 0.618087, -0.113756, -0.0716198, -0.751719, 0.405477, 0.0129812, 0.00428236, -0.224565, 0.378183, 0.0431108, -0.468841, -0.308471, 0.0776524, 0.0418103, 0.0328236, -0.309034, -0.86436, 0.337951, -0.202257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0121077, 0.0258695, 0.0219028, -0.062138, -0.0328463, 0.0273361, 0.0182794, -0.0298738, 0.0132032, -0.0228461, -0.0181692, -0.0362109, -0.0562282, 0.0247228, -0.0157045, -0.005727, -0.0681466, -0.0234393, -0.0205418, 0.0204177, 0.0109809, 0.0218192, 0.00131876, -0.00227974, -0.0565218, -0.0401733, 0.0244076, 0.0305189, -0.0479203, 0.00426425, -0.0320321, -0.0521121, -0.0391899, -0.018116, -0.0528863, 0.0277528, -0.026261, -0.00188954, 0.0193601, 0.000839447, 0.0199014, 0.0132764, 0.0158155, -0.0442029, 0.0313895, 0.0240479, -0.0142053, 0.00259844, -0.0381128, -0.0305906, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.568811, -0.574039, 1.059, 0.12043, -0.344801, 0.667762, -0.506993, -0.0233287, -0.175498, 0.663714, 0.0516913, 1.32079, 0.587422, -0.0873761, -1.74817, 0.0235063, 0.132167, 0.122813, -0.0201615, -0.124675, -0.918647, -0.551732, -0.15735, 0.20124, -0.944097, -0.377025, 0.549733, 0.0851897, -0.0679896, 1.35397, -0.541424, 0.533656, 0.839558, -0.335116, -0.0533488, 0.287171, 0.308471, -0.0250819, 0.505499, 0.729282, 0.00438702, -0.382306, 0.450309, 0.951726, 0.0207047, 0.485847, -0.056482, -0.0668428, 0.271555, 0.191754, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0153863, -0.315182, 1.01545, 1.22308, -0.12613, -1.78458, -0.0318538, -3.22923, 0.713745, -1.58056, 0.787637, 0.166439, -0.125029, 0.0740306, -2.12178, 0.0446917, 0.185617, -0.653138, -0.803737, 0.650343, -1.81499, 0.0609104, -0.891179, 1.78269, -0.968413, -1.94346, -0.00860764, -0.575552, -2.08936, 3.70143, -0.00874972, -4.07967, -3.74575, -2.02771, -2.28249, 0.400279, -3.60279, 0.00164003, 0.531646, -0.0770575, 0.0121736, 2.22962, -0.597888, -0.727424, -4.62708, 4.04212, 0.222802, -0.680344, 0.889044, 1.74953, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.784615, -0.979148, 1.01939, 1.3527, 0.4067, -0.923257, 2.1695, -3.36751, -0.0422139, -1.85876, -0.921532, -0.678311, -1.98314, -0.120565, 0.128781, -0.0138073, -0.0320141, -1.26867, 0.404421, -0.0844825, -1.5092, 0.70594, 1.0345, -1.87982, 1.296, -0.13247, -1.07518, 1.53446, -0.455098, -2.87362, 0.725711, 0.983426, -0.992915, -0.0511975, 1.1676, -0.162559, 0.501885, -0.0510114, -0.145787, 1.19208, -0.0372321, -2.49131, 0.0688451, -0.278116, -1.11703, -13.7698, -0.263881, -0.958283, 1.24828, -0.394323, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.150458, 0.102663, 2.70785, 0.182447, 0.34888, 0.266757, 1.83748, 0.24391, 0.468914, 0.153591, 0.222866, -0.200981, 0.13459, 1.2085, 0.302321, -0.0106064, 0.254473, 0.10535, -0.320003, -0.251303, -0.606811, -0.131177, -0.0322115, 0.473366, 1.07214, -0.60887, -0.227807, -0.266566, 0.667286, 0.640801, -0.452032, 0.176337, 0.831382, 0.0151065, 0.223244, 0.0918782, -0.224615, 0.0111779, 1.43758, 1.61223, -0.0152001, -0.232088, 0.387333, 0.189998, -2.61859, 0.325043, -0.201062, -0.627219, 0.455492, 0.221422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02573, -0.02365, 0.005333, -0.004795, -0.04355, -0.02496, -0.01481, 0.000334, -0.05508, 0.03568, -0.01634, 0.03014, -0.02559, -0.0001749, 0.0443, -0.02193, -0.014946, 0.0178, 0.00772, -0.02701, -0.04617, 0.02513, -0.0362, -0.05618, -0.0179, -0.057, -0.05743, -0.05005, -0.0257, 0.02707, -0.01539, -0.0095, -0.04004, -0.05103, -0.0161, 0.001881, -0.04816, 0.007336, -0.013145, -0.04953, 0.01694, -0.0178, 0.03656, 0.0028, 0.0363, -0.01578, -0.00708, -0.01206, 0.03165, 0.02371], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2186, 0.912, -0.841, -0.1914, -0.02751, -0.718, 2.229, 0.05447, -0.1361, 1.228, 1.121, -0.399, -4.324, 1.316, -0.2498, 0.03336, -2.695, 0.5176, 0.2847, -2.49, -1.486, 1.306, -1.016, -0.1134, -0.8604, 0.1642, -2.451, -0.6, -0.6553, -0.0636, -0.06076, -2.41, -1.189, 0.352, -0.3225, -9.52, -1.4795, -0.04352, 1.017, 0.3904, 0.03093, -0.0278, 0.5425, -1.57, -0.563, -0.0301, -0.773, -0.2798, 0.4133, -0.04883], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.248, -3.766, 0.228, 0.4849, -0.095, -0.2148, -0.00482, -1.423, -0.24, -0.577, -0.3872, 0.9014, -0.0542, 0.1266, -0.01484, 0.03125, -0.007195, -1.019, -0.2861, -0.1982, -1.059, 0.05057, 0.5034, -0.08105, -0.1823, 1.704, 0.2764, -0.7554, -0.2052, 0.02263, -0.6045, -0.4148, 1.519, -0.3772, -0.9683, 0.3728, 0.02277, -0.00836, 0.03238, 0.08594, 0.02322, 0.296, -6.875, 0.3628, -6.145, 0.1802, 0.1074, -0.3552, 0.08527, 0.416], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.182, 0.01339, 0.1035, -0.09625, 0.0087, 0.94, -0.634, -0.18, -1.18, -1.683, -0.0893, -0.1614, 0.519, 0.6533, -0.05725, 0.02904, 0.1454, -0.1338, -0.1381, -0.483, 0.0733, 0.1539, 0.001372, -1.603, 0.117, 0.2269, -1.186, -0.049, 0.704, -1.295, 0.2343, 0.2957, 0.5137, -0.03827, 1.224, -1.288, 0.7534, 0.03238, -0.4846, -0.368, -0.0453, -0.1346, 0.2803, 0.2925, 0.3838, -0.0966, -0.10693, -0.169, -0.0976, 0.625], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02858, 0.02036, 0.03894, -0.02365, -0.006367, -0.01546, 0.03702, -0.02664, 0.02016, 0.0426, -0.04825, 0.02347, -0.003016, -0.02559, 0.001004, -0.0394, -0.04468, -0.04233, -0.0263, -0.001152, -0.04477, -0.03937, 0.001852, -0.01474, -0.03516, -0.02255, -0.02325, -0.0212, -0.006313, 0.0325, -0.0363, -0.02289, -0.01607, -0.04694, -0.01598, 0.02196, 0.00609, 0.02399, -0.02731, -0.0206, -0.04938, 0.01167, -0.01178, -0.02878, -0.04657, -0.0303, -0.03918, 0.0229, -0.02829, 0.01403], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.493, 0.014336, 0.2451, -0.1079, -1.951, 0.1681, 0.286, 0.118, 0.54, -0.311, 0.4382, 0.1517, 1.342, -0.12354, -0.4497, -0.02583, -0.1996, 0.01021, -0.1398, 0.148, -0.2695, -0.3845, 0.1114, 0.307, 0.8047, 0.1857, 0.039, -0.358, 0.0417, 0.2966, -0.7334, -0.02603, 0.1547, 0.1547, -0.317, -0.226, 0.1092, 0.02213, -0.1136, -0.1848, 0.0302, -1.006, 0.1526, -0.5444, 0.04037, -0.702, 0.0433, 0.8623, 0.2184, -0.1648], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05164, 0.0246, 0.005196, 0.00724, -0.04733, 0.02518, 0.01994, 0.03433, 0.00801, 0.04147, -0.01845, -0.04355, 0.01518, 0.02284, -0.03473, -0.0379, -0.0469, 0.04034, 0.041, -0.01254, -0.02792, -0.0381, -0.005455, 0.000296, 0.02109, -0.04507, -0.02713, -0.05112, -0.02634, -0.03592, -0.01474, 0.03305, -0.02339, -0.05728, -0.02022, -0.04672, 0.0271, -0.012314, -0.02237, -0.01365, 0.01048, 0.01053, -0.01529, 0.02544, -0.05096, -0.04837, 0.00338, -0.005566, -0.02832, 0.03586], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.005283, 0.02495, 0.02098, -0.04807, -0.03094, 0.03918, -0.006275, 0.02357, 0.04, -0.01988, 0.0002264, 0.01384, -0.04172, -0.00429, -0.04068, -0.014595, -0.02544, -0.005157, -0.005756, -0.00644, -0.06726, 0.03087, -0.0374, -0.02194, -0.00565, -0.06107, -0.03323, 0.01499, -0.04135, -0.004765, -0.0579, -0.0352, -0.03857, -0.0516, 0.01947, 0.0215, -0.0695, -0.03583, 0.02516, -0.03665, 0.03622, 0.04462, 0.03265, -0.02196, -0.048, -0.02547, -0.01724, -0.00887, 0.01306, 0.0301], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.899, 0.00473, 0.523, 0.624, 0.1422, 0.7866, -1.488, 0.4912, -2.176, 0.2815, -0.3293, -0.1437, -0.4658, -0.2202, 0.1445, -0.05115, -0.1131, 0.3518, -0.07043, -0.5615, -0.5996, -1.022, 0.01306, -1.462, 0.1775, -0.12445, -0.12195, -0.04303, 0.6426, -0.9814, -0.2461, -0.5757, 0.4604, 0.5273, 1.04, 0.2239, 0.5146, 0.04352, -1.069, -1.683, 0.03528, 0.1875, 0.3025, -0.1041, -0.765, -0.05734, -0.3708, 0.0916, -0.727, -0.459], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05807, -0.07794, -0.03168, -0.0346, 0.0237, -0.02892, -0.02675, 0.000446, -0.03662, -0.02692, -0.04614, 0.02347, -0.036, -0.003326, 0.00979, -0.0452, 0.02036, -0.00817, 0.02957, -0.0605, -0.01906, -0.02948, -0.05887, -0.0445, 0.01747, -0.02132, -0.006485, -0.04135, 0.02594, 0.0402, -0.01888, -0.00934, 0.01598, -0.05936, -0.04718, -0.004997, -0.03455, -0.01373, -0.075, 0.01009, 0.001482, 0.03497, 0.00982, -0.0585, 0.01235, -0.05826, -0.02113, 0.01743, -0.005447, -0.04724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.944, 0.10815, 1.358, 0.03122, 0.00309, -0.1675, 3.896, -1.309, 0.552, -0.4023, 0.5264, -0.806, -4.57, -2.373, 0.0665, -0.02072, -0.1489, -0.8965, 0.467, 0.4487, -1.683, -0.4104, 0.8037, 0.7, -1.461, -0.3196, -1.088, -0.3276, -0.2878, -0.2917, 0.3525, -1.153, 0.769, 0.03656, 0.862, 0.05585, -1.067, 0.0195, -0.9175, -1.199, -0.02065, -0.2079, -0.239, 0.9424, 1.532, -4.16, 0.2651, -0.4775, 0.3506, 0.4526], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01831, 0.3203, -0.1155, -0.093, -0.1644, 0.4805, -0.0489, -0.0768, 0.458, -0.8154, 0.03146, -0.1823, 0.577, -0.1558, -0.2198, -0.02307, 0.3445, -0.1637, -0.4734, -0.491, -0.9326, 0.697, 0.03256, -0.4268, 0.678, 0.5894, -0.654, -0.6587, 1.342, 0.8916, 0.4602, 0.6406, 0.09125, 0.1381, -0.006283, 0.374, 0.1459, -0.02388, 0.3772, 1.007, -0.05222, -0.7036, 0.10376, -0.12415, -0.04654, 0.2573, -0.2042, 0.02626, 0.11633, 0.2837], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.159, -0.1884, 0.6416, -0.02954, 0.1197, 0.2207, 0.5103, 0.8945, -0.0984, -0.1857, -0.0406, 0.646, 0.6216, -0.1575, -0.4854, -0.00914, -0.1943, 0.2747, 0.005833, -0.2418, -0.2163, 0.3171, 0.205, -0.2219, 0.4094, -0.3806, 0.07605, 0.579, -0.3308, 0.8867, -0.818, 0.4373, -0.2847, 0.1056, 0.187, 0.0653, -0.09686, -0.011086, 0.2181, 0.3684, -0.02237, 0.8604, -0.1384, 0.2292, -0.9917, -0.055, -0.29, -0.001098, 0.207, -0.1752], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03748, -0.0548, -0.009865, -0.02455, -0.03397, -0.005108, -0.01495, 0.01128, -0.04327, 0.012054, -0.01397, 0.01945, -0.02267, -0.02954, -0.05655, -0.02214, 0.005875, -0.04724, 0.00996, -0.03738, -0.02925, -0.02074, -0.010544, -0.03412, 0.02614, -0.02985, -0.004993, 0.0354, -0.05167, -0.00875, -0.0321, 0.037, 0.01822, 0.03635, -0.04257, -0.0459, -0.001696, 0.02223, -0.04803, -0.03897, 0.02061, -0.01154, -0.0207, 0.03168, 0.00728, -0.000686, -0.0428, -0.03412, 0.03754, -0.04056], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.6685, -0.2634, 0.375, -0.377, -0.05624, -0.5986, 2.12, 0.01563, 0.2267, -0.2036, -0.2374, 0.2064, 0.000852, -0.011566, -0.2263, 0.01613, 0.2223, 0.1521, 0.1208, -0.2615, -0.1675, -0.02582, -0.4673, -0.5093, 0.07623, 0.07635, 0.04422, -0.7046, 0.5503, 0.2356, 0.0653, 0.0642, 1.166, 0.04, 0.222, -0.1667, -0.2605, -0.01898, -0.662, 0.745, 0.04413, 0.4395, 0.4746, -0.3264, -0.1815, 1.801, -0.1859, 0.3035, 0.73, -0.3093], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3562, -0.1663, -0.3306, 0.1715, -0.561, 0.2172, 0.454, 0.2698, 0.35, 0.8105, 1.122, -1.854, 0.931, 0.2028, -0.652, 0.02924, 0.5503, -0.3354, 0.51, 0.349, -0.3284, -0.535, 0.3633, 0.789, -0.05524, 0.2114, -0.0007644, -0.5728, 0.02814, -0.3918, 0.187, 0.7393, -1.193, -0.1936, -0.7715, 0.287, 0.2778, 0.03035, -0.74, -0.965, -0.014206, -1.249, -0.04272, -1.115, 0.649, 0.6406, 0.3438, -1.0205, -0.209, 0.4685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, -0.5503, 1.254, -1.923, 0.0897, 1.288, 0.3862, 0.8535, -0.8037, 0.841, 0.2556, -0.868, -1.088, 1.542, -0.1528, 0.01223, 0.096, 0.41, 0.3838, -0.574, 0.869, 0.993, -1.714, -0.2947, -1.077, 0.09924, -0.1887, -1.013, 0.475, 0.725, 0.7607, 0.9043, -1.69, 1.449, -1.176, -0.6455, -0.994, 0.004177, -1.731, 0.4895, -0.02777, 1.739, 0.3376, -1.012, 0.2185, -2.15, 0.1798, 0.3093, 0.1732, 0.2494], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02872, 0.0288, 0.0261, -0.04532, -0.005703, -0.03903, -0.00491, -0.04883, -0.02327, 0.02551, -0.05103, -0.04263, 0.02838, 0.00692, 0.00892, 0.01497, -0.03137, 0.001508, -0.007668, 0.0308, -0.02167, -0.03638, -0.0424, -0.02896, 0.006176, 0.02516, -0.0507, -0.02681, -0.02397, -0.002434, -0.010704, 0.0354, -0.0596, -0.00958, -0.01315, -0.00644, -0.014366, -0.0431, -0.02687, 0.03598, -0.04745, 0.03143, 0.008606, -0.00877, -0.0351, -0.004128, -0.0182, 0.02058, -0.000791, 0.0289], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.1508, -0.1543, -1.331, -0.05695, -0.572, 0.2795, 0.905, -0.7935, 2.076, -1.381, -0.0348, 0.8237, 0.3494, 1.172, 0.0259, 0.1523, 0.153, 0.1077, -0.128, 0.4126, 0.8945, -0.04126, -1.072, -0.5684, 1.487, 0.8696, -0.813, -0.0891, -1.902, 0.1334, 1.99, 1.094, 1.402, 0.2373, 0.7534, 0.637, -0.03818, 0.2507, -1.634, 0.02179, -1.186, 0.73, -0.633, -1.618, -2.988, -0.085, -0.5215, -0.4585, -0.777], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.271, -3.326, -1.141, 2.379, 0.1313, -1.864, -4.742, -3.186, 0.3015, -2.828, -0.1906, 0.0594, -1.042, -0.6616, -1.888, -0.0192, -0.8135, 1.209, 1.261, -1.6045, -0.1077, -2.31, 0.0797, -2.39, 0.577, 1.102, -0.6274, 1.46, -0.698, 1.323, 0.4016, -0.1256, -1.152, -1.696, 2.062, -2.479, 0.183, 0.0006156, -4.38, 0.3472, -0.005806, -0.6187, -1.2705, -1.127, -12.21, -3.744, 0.04193, -0.03662, -0.0682, 1.182], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005672, 2.312, 1.042, -1.078, 0.01486, 0.8486, 0.377, 0.868, -0.1676, 1.573, -0.4092, -0.3298, 1.203, 0.758, 0.8647, -0.03766, 0.00975, -0.1509, -1.238, -0.61, 1.469, 0.7734, -0.5376, -1.509, -0.3638, -0.3113, -0.11523, -1.55, 1.442, -2.469, 0.3816, 0.582, 1.751, 1.641, 0.05295, 1.026, 0.8022, -0.0134, 1.229, -0.4094, 0.04254, -1.012, 1.277, 0.5347, 2.453, -0.2418, -0.3855, -0.1036, 0.1982, -1.441], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02188, 0.03036, -0.01322, -0.02438, -0.0481, -0.00905, -0.04367, -0.04147, 0.001288, -0.008446, 0.01018, -0.002361, -0.01683, -0.0294, 0.02438, 0.006004, 0.000709, 0.000779, -0.01513, -0.03824, -0.05392, -0.04895, 0.005547, -0.01068, -0.01564, -0.0476, 0.02222, 0.014694, 0.00877, -0.03317, -0.03424, -0.01428, -0.01348, -0.04095, -0.0014105, 0.0157, -0.02376, -0.03897, 0.02579, 0.02164, -0.012764, -0.0446, -0.01374, -0.02702, -0.006275, -0.0369, -0.0238, 0.00374, 0.02887, 0.006603], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.339, -0.1694, 0.565, 0.008484, -0.0747, 0.3704, 0.2245, 0.0765, 0.03403, 0.03784, -0.2678, 0.05524, -0.1006, 0.11115, -0.007584, 0.03876, -0.1918, 0.0492, -0.04446, -0.2076, -0.5, 0.04996, 0.4204, -0.05743, 0.1151, 0.084, -0.1455, -0.2815, 0.01825, -0.07184, 0.03876, -0.3357, -0.1724, 0.1741, -0.03745, -0.1182, 0.048, 0.03162, 0.0923, -0.2905, -0.0472, 0.0783, 0.08044, -0.0165, 0.3606, -0.6084, -0.8604, 0.2598, -0.01402, 0.4119], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, 0.02748, 0.8687, -0.35, -0.1661, 0.644, -0.783, 0.5435, -1.42, -0.6606, 0.0725, 0.0474, 0.4785, 0.2378, 0.0955, -0.02885, -0.02132, -0.2456, 0.2598, 0.4038, 0.599, -0.165, -0.3442, 0.0843, 0.461, 0.593, 0.3342, 0.1965, -0.278, -0.4163, -0.2917, 0.3552, 0.5034, 0.4866, 1.541, 0.2844, 0.4736, -0.02283, -0.05685, -0.989, 0.00958, -0.697, -0.2673, 0.6294, 0.4326, -0.1565, 0.262, -0.2412, -0.1392, 0.3792], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.565, 1.336, 0.2454, 0.05972, -0.1189, -1.37, 3.572, -0.4912, 0.1227, -0.02051, 0.808, -0.01727, -0.1383, 0.1092, 0.04987, 0.004395, -0.16, 0.0766, -0.474, -0.1237, -0.2401, 0.1876, 0.353, 0.5703, -0.2734, -0.04437, -0.187, -0.5215, -0.448, 1.371, -0.2344, -0.4526, -1.341, -0.5747, -1.862, 0.2415, -1.134, 0.0004637, 2.72, 2.02, -0.02464, 2.09, 0.3855, -0.1064, 0.02826, 0.911, -0.3557, -0.3318, 0.638, 0.2095], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5024, 0.2607, -0.086, 0.01204, 0.12164, 0.3665, -0.2496, 0.736, -0.458, 1.047, 0.5044, 0.9116, -0.745, 1.015, -0.343, 0.006218, 0.3262, 0.2395, 0.1862, 0.03372, 0.3132, -0.7837, 0.7856, 1.104, 2.508, -0.3718, 0.163, 0.3867, -0.161, -0.0979, -1.929, -0.3904, -0.6396, 0.3972, -0.629, 0.3953, 0.2479, -0.0337, -0.04877, 0.863, 0.04144, -0.1268, -0.6743, 1.005, 0.598, -0.2983, 0.072, 1.624, -0.08746, 0.1425], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635, -1.999, 0.2656, 0.898, 0.1059, 2.768, -3.582, -0.658, -1.049, 1.532, -1.701, -0.01397, 1.1455, -0.7437, 0.3474, -0.0132, -0.1067, 0.6997, 0.03038, -0.4094, 0.5005, -0.814, 1.138, -0.477, 0.2585, 0.05682, -0.3662, 1.752, 0.2522, 0.638, 0.00524, 1.685, 1.684, 0.1733, 3.059, -0.687, 2.184, -0.02563, -3.78, 0.1239, -0.02332, 0.7876, -0.5596, 1.206, 0.0238, 0.4165, 0.716, 0.1879, -0.738, -0.3796], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01174, 0.005, 0.01495, -0.04376, -0.02356, 0.003767, 0.01614, 0.01872, 0.01042, -0.04495, -0.002293, 0.02272, -0.02727, 0.044, -0.0438, 0.04187, -0.03708, 0.01797, -0.01215, -0.03793, -0.037, -0.03687, 0.02655, -0.02515, -0.0254, -0.01797, -0.003637, 0.01278, -0.00197, 0.02713, -0.0264, 0.01559, 0.001406, -0.01685, -0.00029, -0.010185, 0.01979, -0.03036, -0.01917, -0.006653, -0.05063, -0.01509, -0.02762, -0.05237, 0.0246, -0.02094, 0.0008526, -0.02618, 0.00785, 0.003048], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.312, 0.5127, 0.7676, -0.2085, -0.1726, 1.289, -1.921, 0.462, 0.2491, -0.6074, -0.785, -1.43, -0.3245, -2.518, 0.9707, 0.0302, -1.143, -0.3171, -1.438, 0.619, -0.1538, 0.4053, -2.135, -2.34, -1.266, -1.807, -0.2798, 0.8345, 0.3125, -0.04614, -0.6167, 1.6455, 0.0002904, 1.097, 0.00312, -2.277, 0.1744, 0.00869, -0.3894, 1.427, 0.02266, 0.076, 0.7017, -0.1266, 0.7163, 0.01929, 0.593, -0.9263, -0.3682, -0.6562], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.198, -0.1371, -0.0912, -0.1043, -3.012, 0.004635, -0.83, -0.3262, 0.1626, -0.07, 0.547, 0.5566, -0.309, 0.01797, 0.1142, -0.04547, 0.123, 0.2112, -0.1814, -0.01145, 0.2097, -0.1958, 0.2423, 0.0893, -0.1802, -0.3064, 0.2703, 0.1687, 0.06256, -0.378, -0.2306, -0.1519, -0.02235, 0.1433, -0.005157, 0.2505, -0.05374, -0.02002, 0.1539, 0.2269, 0.01959, -0.07245, -0.2205, 0.4836, 0.05743, -0.2239, -0.05734, -0.2515, -0.03403, 0.0658], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1904, 0.1368, 0.04504, -0.521, -0.3557, -0.3386, -0.556, 0.4795, 0.1277, 0.8223, 0.2874, -0.12036, 0.2194, -0.545, -0.8613, 0.03644, 0.0956, 0.1576, -0.2029, -0.1012, 0.2407, -0.464, -0.2263, 0.0849, 0.2532, 0.2186, 0.5293, 0.11884, 0.9385, 0.08, -0.03253, 0.1663, -0.6436, -0.2201, -0.2327, 0.1198, 0.02571, -0.010574, -0.086, -0.5166, 0.00848, -0.7153, 0.09814, -0.7603, 0.762, 0.251, -0.321, -0.08514, 0.2302, 0.0467], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00717, -0.005844, -0.004715, -0.02238, -0.0346, -0.02164, -0.02628, 0.02426, -0.001792, 0.03217, -0.06067, 0.0389, -0.05896, 0.03111, -0.0001157, -0.05038, -0.02812, 0.007668, 0.01183, 0.008995, -0.01982, -0.01403, -0.02847, -0.05267, 0.00633, -0.001363, -0.04416, -0.01338, -0.03314, 0.0352, 0.00889, -0.0207, 0.0008316, 0.03317, -0.02461, 0.02916, 0.003803, 0.015396, 0.0312, -0.0592, 0.01133, 0.03204, -0.0663, -0.02336, 0.014175, -0.03226, 0.005405, -0.02379, -0.01159, -0.02751], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.06012, 0.03418, 0.01833, 0.03275, 0.00786, -0.002977, -0.014305, 0.010956, 0.02103, -0.02626, -0.01985, 0.02277, 0.0185, -0.02194, 0.01427, 0.02737, -0.03857, 0.01917, 0.004044, -0.01901, -0.03091, -0.02122, -0.06244, -0.05997, 0.01813, -0.028, -0.03625, -0.01218, -0.06198, -0.0389, -0.01566, -0.02814, -0.0372, 0.04083, -0.03528, -0.006306, -0.01773, -0.03845, 0.009575, -0.05133, 0.03387, 0.03412, -0.0277, 0.0223, -0.03036, -0.04248, 0.02443, -0.04272, -0.03595, 0.003416], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5684, -0.4487, 2.223, 1.11, 0.4053, -0.2036, 0.8853, -1.713, 0.00816, 0.06256, 0.3662, 1.051, 0.8247, 1.71, -0.405, -0.01227, -0.136, 0.0865, 0.459, 0.5757, 0.2815, -0.7627, -0.1219, -1.413, -0.0867, 0.482, -0.6084, 0.4053, -1.177, -0.03677, -0.3096, -0.656, -0.1733, 0.0812, -0.3015, 1.185, -0.4478, -0.01729, 0.219, 0.2065, 0.04184, -1.165, 0.1721, 0.3037, -0.7407, -0.1101, -0.3862, 0.1957, 0.4304, -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.04852, -0.04715, -0.0428, -0.0004606, -0.02661, 0.02391, -0.01877, 0.00732, -0.0397, 0.02077, -0.03653, 0.011345, 0.005657, -0.00981, 0.014275, -0.01944, -0.0412, 0.0399, 0.03394, -0.002556, 0.0024, -0.05804, -0.00889, 0.00471, 0.01267, -0.04648, 0.02446, -0.05286, 0.004795, 0.01394, 0.01953, 0.001562, 0.02861, 0.002668, -0.00763, -0.04657, -0.0426, -0.0436, -0.0448, -0.00791, -0.05438, 0.03955, -0.0317, -0.02557, -0.04492, -0.04446, -0.04617, -0.01942, 0.00853, -0.03056], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03818, -0.02069, -0.05582, 0.00764, -0.0004833, -0.04437, -0.01906, -0.02652, -0.02538, 0.00952, -0.02753, -0.0536, 0.00091, -0.02525, -0.02489, -0.04355, -0.04254, 0.00984, -0.00377, -0.01132, -0.0243, 0.02138, -0.02298, -0.01411, 0.01627, -0.03674, -0.04352, -0.01862, 0.03586, -0.04993, 0.002548, 0.006016, 0.001931, -0.02345, 0.0261, -0.05176, 0.04443, 0.02805, 0.02493, -0.00975, -0.0004945, -0.04742, -0.04843, 0.0197, 0.01646, 0.02956, 0.02995, 0.01429, -0.04355, -0.02026], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0208, -0.01897, -0.05978, -0.011505, 0.01648, 0.0137, -0.02277, 0.01559, -0.05057, 0.01645, 0.00499, -0.001479, -0.01385, -0.03867, 0.01788, 0.02754, 0.00886, 0.01945, 0.01962, -0.04666, -0.04263, -0.01199, -0.0399, -0.001878, 0.01558, 0.02, -0.003397, -0.00011355, 0.02205, 0.01059, -0.0663, 0.0004864, 0.00954, -0.037, -0.00409, -0.000697, -0.0116, -0.01976, -0.0341, -0.04266, 0.0404, 0.03244, 0.005726, -0.003643, -0.05145, 0.01381, 0.02863, -0.03592, -0.03754, -0.05124], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00786, 0.0443, -0.03952, -0.0691, -0.04016, 0.03378, -0.04895, -0.01666, 0.04184, -0.01098, -0.03458, -0.02684, -0.0402, -0.04535, -0.04297, -0.05264, 0.03156, 0.03464, -0.004898, -0.00972, 0.01976, -0.01747, 0.00848, -0.02898, -0.04776, -0.0242, 0.0225, 0.03598, -0.0272, -0.05075, 0.02621, -0.04886, -0.041, 0.02768, -0.008194, -0.01685, -0.004242, 0.0172, 0.006207, -0.0434, -0.04398, 0.03754, -0.0395, 0.03262, -0.01253, -0.0005107, 0.02733, -0.02063, -0.04938, 0.006348], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4014, 0.2795, 0.749, -0.5635, 0.1246, 0.5605, -0.141, 0.2273, -0.526, 2.148, -0.5635, 0.5664, 0.5625, 0.871, -0.3608, 0.01793, 0.3289, -1.285, 0.1724, 0.2917, 0.06525, 0.9146, 0.3079, -0.5234, 0.312, -0.282, 0.1122, 0.11395, 0.3982, -0.305, 0.298, 0.04953, 0.5684, -0.968, 0.0949, -0.969, 0.421, -0.02803, -0.1448, 0.2952, 0.0059, 0.05917, 0.1469, -0.545, 0.07367, -0.344, -0.7104, -0.9634, -1.347, -0.2021], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1636, -0.03854, -0.3765, -0.00639, -0.004704, -0.9756, -0.303, -0.12024, -0.733, -0.05188, -0.1115, -0.01341, -0.2778, -0.62, 0.2454, -0.0287, -0.4739, 0.3215, 0.3335, -0.9526, -0.1466, 0.2114, -0.01982, 0.006916, 0.05728, 0.2742, -0.396, -0.05576, 0.1304, -0.005367, -0.2086, -0.3706, 0.0659, -0.1904, 0.3787, -1.129, -0.0397, 0.00761, -0.6274, -1.443, -0.0021, 0.0917, 0.2252, 0.8, 0.01294, 0.2698, 0.0005884, 0.3115, 0.1367, -0.1449], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.507, 0.5317, 1.045, 0.06586, 0.2617, -1.167, -3.895, -0.6616, -0.991, 0.4468, -1.921, -0.1437, -1.167, 0.828, 0.2065, -0.02759, -0.2969, -0.03647, 0.4036, -0.06027, 0.5596, 1.047, 0.293, -0.2192, -0.1425, 0.5776, -0.3704, -0.01305, -0.0984, -1.371, -0.06055, 0.0714, -0.523, 0.7505, 0.2003, -0.1528, 0.518, -0.03198, -2.594, -3.324, -0.03806, -1.566, -0.2423, 0.7036, 0.322, -2.127, -0.08716, 0.3877, -0.0739, -0.9775], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.104, -0.06152, -0.767, -1.399, -0.1111, -0.1276, 0.0961, -0.2269, -0.138, -1.089, -0.644, 0.5117, -1.243, -1.236, -0.1814, 0.02315, -0.587, -0.2124, 0.6772, -0.11017, -0.4849, 0.0375, 0.272, 0.459, -0.2263, 0.988, -0.2236, 0.311, -0.9497, -0.6216, 0.07684, 0.4033, -0.432, -0.01305, -0.379, -0.5347, 0.6035, 0.01889, -0.329, 0.5493, -0.0002195, 0.4714, -0.07825, 0.568, 0.674, -2.36, 0.655, 0.2576, 0.3384, -0.3865], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.595, -0.1508, 0.08026, 0.1674, -1.436, -0.575, -1.913, 0.01846, 0.5933, 0.673, 0.783, 0.02597, 0.4526, 0.1418, 0.2979, -0.04147, -0.2294, 0.1339, -0.1065, 0.10406, 0.001261, -0.4749, -0.01253, -0.10095, -0.6084, -0.02722, -0.0931, 0.06445, -0.3723, -0.4026, 0.4905, -0.2888, 0.3013, -0.1008, -0.2344, 0.274, -0.07153, -0.02113, -0.1848, -1.634, -0.03546, -0.6177, -0.1653, 0.11224, 0.1267, -0.12415, 0.3174, 0.1403, -0.112, 0.11664], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.496, -0.331, -0.05884, 0.11255, 0.2993, 0.495, 0.02245, 0.931, -0.07605, 2.273, -0.0816, 0.09247, 0.2303, 0.3164, -0.01888, 0.007767, 0.1462, -0.1322, 0.02318, 0.0846, 0.7554, 0.8237, 0.4128, 0.014046, 0.703, -0.1774, -0.4246, 0.62, 1.831, 0.5537, -0.4443, 1.077, 1.202, -0.581, 1.127, 0.0648, 0.588, -0.0433, -2.723, -0.7036, -0.04254, -0.2976, -0.3674, 0.2072, 0.771, 0.6025, -0.651, 0.1815, -0.6963, 1.046], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.377, 0.005775, 0.4907, -0.27, -19.97, -0.01897, -0.562, 0.3926, 0.42, 0.601, 0.592, -0.2291, 0.652, 0.678, 0.2695, 0.013794, 0.446, 0.3623, -0.0257, 0.01971, -0.3079, 0.2035, -0.2717, 0.3499, -0.815, 0.1293, 0.546, 0.09894, 0.1503, -0.1873, 0.91, 0.618, -0.1138, -0.0716, -0.752, 0.4055, 0.01298, 0.004284, -0.2246, 0.3782, 0.04312, -0.4688, -0.3083, 0.07764, 0.0418, 0.03284, -0.309, -0.8643, 0.338, -0.2023], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01211, 0.02586, 0.0219, -0.06213, -0.03284, 0.02733, 0.01828, -0.02988, 0.01321, -0.02284, -0.01817, -0.03622, -0.0562, 0.02472, -0.0157, -0.005726, -0.0682, -0.02344, -0.02054, 0.02042, 0.01098, 0.02182, 0.001319, -0.00228, -0.05652, -0.04016, 0.02441, 0.03052, -0.0479, 0.004265, -0.03204, -0.05212, -0.03918, -0.01811, -0.0529, 0.02776, -0.02626, -0.001889, 0.01936, 0.000839, 0.0199, 0.013275, 0.01581, -0.0442, 0.0314, 0.02405, -0.014206, 0.002598, -0.03812, -0.0306], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.569, -0.574, 1.059, 0.1204, -0.3447, 0.668, -0.507, -0.02333, -0.1755, 0.6636, 0.0517, 1.32, 0.5874, -0.0874, -1.748, 0.02351, 0.1322, 0.1228, -0.02016, -0.1247, -0.9185, -0.552, -0.1573, 0.2013, -0.9443, -0.377, 0.55, 0.0852, -0.068, 1.354, -0.5415, 0.5337, 0.8394, -0.3352, -0.05334, 0.287, 0.3083, -0.02509, 0.5054, 0.7295, 0.004387, -0.3823, 0.4502, 0.9517, 0.0207, 0.4858, -0.0565, -0.06683, 0.2715, 0.1918], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01539, -0.3152, 1.016, 1.223, -0.1261, -1.784, -0.03186, -3.229, 0.714, -1.58, 0.7876, 0.1664, -0.125, 0.07404, -2.121, 0.04468, 0.1857, -0.6533, -0.8037, 0.6504, -1.815, 0.0609, -0.891, 1.782, -0.9683, -1.943, -0.008606, -0.5757, -2.09, 3.701, -0.00875, -4.08, -3.746, -2.027, -2.283, 0.4004, -3.604, 0.00164, 0.5317, -0.0771, 0.01218, 2.23, -0.5977, -0.7275, -4.63, 4.043, 0.2228, -0.68, 0.889, 1.75], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7847, -0.979, 1.02, 1.353, 0.4067, -0.9233, 2.17, -3.367, -0.0422, -1.858, -0.9214, -0.678, -1.983, -0.12054, 0.1288, -0.01381, -0.032, -1.269, 0.4045, -0.0845, -1.509, 0.706, 1.034, -1.88, 1.296, -0.1324, -1.075, 1.534, -0.455, -2.873, 0.7256, 0.9834, -0.9927, -0.0512, 1.168, -0.1626, 0.502, -0.05103, -0.1458, 1.192, -0.03723, -2.492, 0.06885, -0.278, -1.117, -13.77, -0.264, -0.9585, 1.248, -0.3943], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1505, 0.10266, 2.707, 0.1825, 0.3489, 0.2668, 1.838, 0.2439, 0.469, 0.1536, 0.2229, -0.2009, 0.1346, 1.209, 0.3022, -0.010605, 0.2544, 0.10535, -0.32, -0.2512, -0.607, -0.1312, -0.03223, 0.4734, 1.072, -0.609, -0.2278, -0.2666, 0.6675, 0.6406, -0.4521, 0.1764, 0.8315, 0.01511, 0.2233, 0.09186, -0.2246, 0.01118, 1.4375, 1.612, -0.0152, -0.232, 0.3875, 0.19, -2.62, 0.325, -0.201, -0.6274, 0.4556, 0.2214]]
[-0.0147248, -0.105, -0.308238, -0.364308, -0.0141081, 0.536622, -0.0116608, -0.032523, 0.565793, -0.0179296, 0.215021, -0.730708, -0.390158, -0.0261394, 0.186719, -0.0841625, 1.18372, -0.032603, 0.377496, 1.1837, -0.226951, -0.0209087, -0.189787, -1.0895, -0.662778, -1.07208, 0.865684, -0.0107423, 0.0220411, 0.0785329, 0.00312034, -0.0106298, -0.0217697, -0.167578, -0.0148285, -0.014857, -0.022625, -0.0113948, 0.197804, -0.0094336, 1.39954, 0.565342, -0.084502, -1.66756, 0.769542, -0.0214214, -0.403726, -1.10964, 1.19984, -1.62314, -0.014725, -0.105, -0.3083, -0.3643, -0.01411, 0.5366, -0.01166, -0.03253, 0.566, -0.01793, 0.215, -0.7305, -0.3901, -0.02614, 0.1868, -0.08417, 1.184, -0.0326, 0.3774, 1.184, -0.2269, -0.0209, -0.1898, -1.09, -0.6626, -1.072, 0.8657, -0.01074, 0.02203, 0.07855, 0.00312, -0.01063, -0.02177, -0.1676, -0.01483, -0.014854, -0.02263, -0.0114, 0.1978, -0.00943, 1.399, 0.5654, -0.0845, -1.668, 0.7695, -0.02142, -0.4038, -1.109, 1.2, -1.623]
ReLU
[[-0.0359738, -1.89991, -1.36236, -0.378191, 0.0435644, -1.42318, -0.000672007, -0.0429966, -0.849422, -0.00821514, -4.27583, -1.67019, 1.30687, 0.00274242, -0.769265, -1.30098, -0.299916, 0.0018504, -2.38595, -1.04644, -3.25727, -0.0469461, 0.160457, -3.6108, -1.82606, -1.13804, -2.15746, 0.0047728, -0.0315591, 2.14416, -3.05158, 0.038403, 0.00162922, -0.0322168, 0.0123738, 0.0019339, 0.0285279, -0.013173, -0.984221, 2.44371, -2.10116, -2.5621, -3.3243, -5.97497, 0.913486, -0.000615605, 2.6007, 0.332605, 0.867684, -0.684845, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00347463, -0.107289, 1.68111, 0.594974, 0.00964304, 0.304864, 0.00299366, -0.0438306, 0.612265, -0.0253045, -0.121483, -0.740738, 0.344282, -0.0123959, 0.290893, 0.675699, 0.0993693, -0.0354205, -0.514779, 0.487321, -0.10778, -0.0140306, 0.244034, -0.199065, -0.388589, 0.669631, -0.15301, 0.00612489, 0.481122, 0.668738, 0.304505, -0.0231446, -0.0105128, -0.514765, 0.0147434, -0.0514888, 0.00117196, 0.043139, -0.295203, 0.593595, -0.0180535, 0.568866, -1.56713, 0.485926, 0.535542, -0.0251047, -0.356859, -0.0160857, 0.0288454, 0.188339, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00661965, 1.67822, 0.378142, 2.88595, 0.0303884, 0.0917958, -0.0267223, 0.0448307, -1.17479, -0.0360791, -0.553576, 0.483195, 2.24139, 0.0434333, 0.654676, 0.267834, -0.738199, 0.027779, -0.280157, 1.32536, 0.230664, 0.0238084, 0.241649, -0.0867985, 0.670435, -0.471981, -0.796956, -0.0351978, -0.183339, 0.988677, -0.0441726, -0.0020827, 0.0327717, -0.12031, -0.0258022, -0.0293281, 0.020515, -0.0292553, -1.62885, -2.7093, 0.206439, 0.258117, -1.98573, 0.25789, 2.34964, 0.0277707, 0.79473, 0.48899, -0.340817, -1.62455, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0329685, -0.568933, -0.0983344, 1.84921, -0.0141511, 0.520958, 0.0220104, -0.0402067, 0.564105, -0.004715, -1.0808, -0.0516544, -0.417112, -0.047042, -0.207338, 0.290479, 0.225522, 0.029476, -0.312916, -0.659878, -0.416453, 0.0103907, 0.217548, 0.0703397, -0.129474, 1.08666, -0.111933, -0.0142409, 2.23603, -0.110549, 0.464978, 0.0634032, -0.02143, 0.13757, -0.0195646, 0.0385131, -0.0286876, -0.0432676, -0.209071, 0.958556, -0.286909, 0.73534, 0.646229, 0.697564, -3.00743, 0.0494135, -0.462865, -0.0575425, 0.29931, 0.928845, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0253565, -0.495395, 0.112916, 0.524686, -0.0473214, 0.251501, 0.0192754, -0.0434097, 0.334329, -0.0272442, -0.220488, 0.473014, 1.43947, 0.00596883, -0.597522, 0.205588, 0.112332, -0.0135144, 0.450009, -1.14934, 0.158009, 0.0104196, 0.421368, -0.352158, 0.0595345, -0.18585, -0.579233, -0.0366642, 0.655191, 0.242164, -0.427416, -0.0276399, 0.0217817, -0.0910695, 0.0367486, 0.0454809, 0.00966396, 0.0382105, -0.218112, -1.02129, 0.197214, 0.362624, 0.0711714, 0.429693, -0.684943, -0.0429559, -0.380476, 0.107686, 0.204639, -0.0844832, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0274381, 0.91344, -0.921513, 2.14565, -0.0397467, -0.409519, -0.0101518, -0.000410205, -1.13, 0.00125901, 1.19393, 1.51168, 2.49694, -0.0338405, -0.425372, 0.734554, -0.937839, -0.000169165, -0.279948, -0.119487, -0.128722, 0.0343687, 1.00988, 2.53544, -0.0346383, 0.151395, -1.56728, 0.0224075, 0.780488, 1.03644, 2.62585, -0.0207027, -0.0311575, 0.497702, -0.0459961, 0.0251051, -0.00540756, -0.0355397, 1.36262, 1.96431, 1.70811, 0.71731, 0.804658, -0.823773, -0.423726, 0.0104753, 1.35967, -0.656097, -0.211068, 0.81733, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0379227, -0.557898, -1.66441, 0.693527, 0.00700146, -0.294878, -0.0264075, -0.00364079, 1.02724, -0.008895, 0.758599, 0.436671, -4.42305, 0.0310582, -0.0457596, 0.336493, -0.199338, 0.0497225, 0.321564, 0.104793, -0.221487, -0.030173, -0.256057, -1.38692, 0.118212, -0.192942, 0.315258, -0.0125593, -0.932125, 0.583056, -1.39632, 0.058577, 0.0200422, -0.102267, 0.0104658, -0.00564755, -0.00519514, 0.00723918, -0.938379, 1.19077, 0.254481, 0.639185, -1.11725, 0.251143, 0.28983, 0.0119514, 1.06372, 0.158991, 0.0250822, 1.94795, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0454645, 0.280173, 1.8091, 1.46084, 0.0280044, -2.13723, 0.0342168, 0.0498771, 1.68004, 0.00983126, 0.0217325, 0.178166, 2.01199, -0.0253408, 0.186363, 0.196626, -0.0729992, -0.00449388, -0.25732, 0.0206746, -0.373136, -0.0313315, -0.576423, 0.632413, 0.967718, 0.550294, 0.340851, -0.0309737, -0.554694, 3.16166, 0.639005, 0.0267603, 0.0300583, -0.140238, -0.00294172, -0.0162112, 0.0304875, 0.000513955, 0.821658, -2.63365, 1.29575, -0.340104, -0.544655, 0.205806, 0.0271487, 0.0126918, -1.14559, 0.0296795, 0.0236711, -0.0364151, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0440978, 0.771406, 1.2168, 1.1148, 0.0149204, 0.434711, 0.00187342, -0.020537, -0.434057, 0.0399545, 3.67494, 0.0742651, -0.0574154, -0.0131495, -0.207284, -0.220558, -0.713758, -0.0113369, 1.206, 0.243423, -0.236331, 0.0116816, -0.262918, -2.06385, -0.902233, 0.683268, -0.679422, 0.0191401, 0.950163, 1.18748, 0.295382, 0.0163367, 0.0343932, -0.421543, 0.0399314, 0.0264808, -0.000590541, -0.016601, -0.175778, 0.190736, -0.287581, 1.05492, 0.835265, 1.04359, 0.0606079, 0.0181647, 1.91046, -0.401173, 0.138658, 1.85722, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0499985, -0.136667, -1.19363, -3.90154, -0.0203072, -1.17134, -0.0116428, 0.0319904, -0.0631137, -0.0657674, 0.0735004, -1.09729, 0.183946, -0.00871274, -1.99613, 0.269126, 0.165212, 0.015704, 0.0968676, 0.333131, 0.488877, 0.0343038, 0.157476, -0.728361, -0.0980942, -1.94053, 0.430239, 0.0244917, -0.584498, -1.8415, -0.2837, 0.0190699, 0.0293383, -0.50284, 0.00237926, -0.00349298, 0.0359037, -0.0370803, -3.02891, 0.727491, -1.07568, -0.823866, 0.480205, -0.312326, 1.81121, -0.0221661, -0.0304044, 0.274179, -0.103881, -0.723448, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.000919374, 0.156316, -0.237006, 0.711193, -0.0224733, -0.0077551, -0.0077817, -0.00154886, 0.637088, -0.0419301, 2.12364, 0.0730776, -4.45084, 0.0126213, 1.67997, -0.456532, -0.676106, 0.0395125, -0.837653, -0.0757719, 0.136163, -0.0146407, 0.0785401, 1.08598, -2.78467, -0.512442, 0.38176, 0.043695, 0.943866, 1.05952, 0.622376, -0.0530415, 0.0376439, 0.115783, 0.0238236, -0.0159246, -0.0266245, -0.00769462, 1.15264, 0.977438, 0.0404669, -0.402486, 1.15929, 1.15409, 0.373925, -0.00546977, 0.966163, -1.91787, -0.401381, 0.49339, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0112421, 0.481813, 3.18009, 2.73269, -0.0123741, 0.266523, 0.0104025, -0.00256534, -1.61129, 0.0106964, 0.954938, -0.428353, 2.88683, 0.00972674, 1.13692, 0.573687, -0.626589, 0.0165064, 0.228169, 0.663873, -0.186567, -0.0172517, -0.0260051, 2.01544, -0.767533, 0.297454, -0.130724, -0.0330037, -0.607232, 1.42208, 0.0388992, 0.0550421, -0.00614929, -1.22734, 0.00293173, 0.0559769, -0.00384775, -0.000350583, 1.22379, 0.829705, -0.984497, -0.0395542, 1.70429, 1.17472, 2.18867, -0.0174801, 0.86908, 0.0252514, -0.628148, 0.309871, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0203826, -0.243033, 0.980795, -0.422422, -0.0241727, -0.387218, -0.0494218, -0.00386833, -0.0726323, -0.0383864, 0.273301, -0.684678, 0.693372, -0.00312585, 0.645474, 0.409062, -0.0440808, -0.00343443, -0.399182, -0.0530861, 0.248528, 0.00361343, -0.125553, 1.89945, 0.249492, 0.633563, -0.367686, -0.011874, 0.494704, -1.09142, -0.74304, 0.0336358, 0.0338324, -0.25229, 0.028821, 0.0406548, 0.0258671, 0.0361832, 0.262532, 0.950135, -0.300156, 0.161235, -0.30613, -3.88292, -0.61939, -0.0308267, 0.327294, -0.132182, -0.015388, -1.41042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0060764, 1.39644, 1.03114, -1.56092, -0.0246689, 0.615119, 0.0242114, -0.00102058, 2.21486, 0.0083417, -0.270549, 0.64679, 0.938065, 0.0378427, 0.807519, -0.506228, -0.202203, -0.0182204, -1.07346, -0.192257, -3.59016, 0.0261088, 0.109166, 0.37805, -0.208669, 0.256832, 0.523863, 0.00351783, 0.0323655, 0.95954, 0.150188, -0.0161513, -0.0107887, -0.153619, -0.0447624, 0.0149995, 0.0502245, 0.0103251, -1.00045, -1.63516, -0.407909, 0.841659, -0.141587, 0.380747, -0.499646, 0.00186806, -0.150045, 0.110404, -0.268231, 1.06119, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00432856, 1.54413, 0.344532, -0.132159, -0.0354062, 1.82526, -0.0205417, 0.0420311, -1.37395, 0.0488525, 0.690004, -0.102436, 0.492056, -0.0366566, 1.74129, -1.18385, -0.196891, -0.0448278, 0.0273457, 0.395782, -0.292709, 0.00908765, -0.0887791, 1.02962, 0.582652, 0.480307, 0.0117039, -0.0409036, -1.36971, 1.52792, -0.593691, -0.0207861, -0.00945358, -0.495228, 0.00116873, -0.0158392, 0.010542, -0.000914926, 1.27168, 0.427108, 0.840826, -0.990542, 0.379673, 1.07169, 0.339456, 0.00287727, 0.277317, 0.381287, -0.0687219, -2.82911, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0228827, -2.63419, 1.44989, -0.0695782, 0.0404284, -0.038597, -0.00509697, 0.0151841, -4.64618, -0.00292479, 0.760992, 1.2249, -0.678641, 0.0276756, -0.338037, -0.253122, 0.0532651, 0.0339422, -0.575865, -1.12261, -0.170511, -0.0316763, -0.154992, 1.22477, 0.336959, 0.133564, -0.49449, -0.0473312, 0.0190158, -0.348931, -1.94172, -0.0165962, 0.00636717, 0.412886, 0.00888765, 0.0441996, -0.0420996, 0.0102762, -0.275365, -7.67273, -0.419127, 0.142121, -0.387701, -0.268882, -3.21764, -0.0492813, -0.234552, 0.621998, -0.184206, -0.429727, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.041892, -1.74956, -0.315272, 0.811147, 0.0120085, 0.898899, 0.00411399, -0.00445658, -0.608946, -0.0175775, -0.271261, -1.79736, -0.988782, -0.0251498, -0.545613, -0.289361, 0.664248, 0.0275437, 0.30531, -0.303158, 0.165355, 0.0396961, 0.378947, -1.4868, -0.772658, 1.62178, -0.0549737, 0.0174642, -0.57457, -2.328, 1.20297, 0.0311799, -0.0660703, 0.468739, 0.0329656, 0.0452176, 0.0102895, 0.0313924, -0.97497, -2.51947, -0.436816, -0.0687795, -1.23003, 0.977792, -1.89978, -0.0247645, -2.31607, -0.0285516, 0.028459, 2.80198, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00275361, 0.344196, -0.301038, 2.20738, 0.0176073, -0.806517, -0.011769, 0.0462775, 1.16472, 0.0527351, -1.22498, 1.19288, 1.01782, -0.0359494, 0.449343, -0.836419, -1.09147, 0.0279738, -0.0614234, -0.392296, -0.198803, 0.0185699, -0.314373, -1.44834, 0.283212, 0.364053, 0.236055, 0.0231526, 1.59479, 1.01405, 1.73062, 0.032768, -0.0172087, -0.0224884, 0.00793531, -0.020168, 0.0421672, -0.0103241, 0.430062, 2.02587, 0.72049, -0.556273, 1.05489, -0.828972, -0.429886, -0.0369756, 0.495875, 0.280977, 0.0648739, 0.248805, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0379182, 0.687185, 0.013946, 0.016382, -0.034509, 0.160295, -0.0445942, -0.000718149, 1.57045, -0.0421071, 0.355049, -0.472569, -0.359488, -0.0402815, -5.10433, -0.610462, 0.274002, 0.0159115, 0.347971, -0.643061, 0.0335562, -0.0185241, -0.135495, -1.32064, 0.302644, -0.371866, -1.17134, -0.00376665, 1.1707, 0.507549, -1.41791, 0.0253794, -0.0102307, -0.479076, -0.0422402, -0.0311275, -0.0492061, 0.00866274, 0.753374, -0.652227, -0.142356, 0.111316, 0.420774, 1.19752, -0.699908, 0.0440878, -0.113549, 0.254001, 0.123521, 0.394865, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0268087, 1.54421, 3.35278, 1.13623, -0.00320317, -0.635255, -0.00548511, 0.00575662, -0.185773, 0.0313849, 2.22299, -0.529406, 0.104142, 0.0117052, 0.259129, -0.210132, -0.681825, 0.0406298, 0.820157, -0.267136, 0.0287268, -0.0246214, 0.416747, 0.320775, -6.01911, 0.486715, -0.239567, -0.0402877, 0.321123, 1.38118, 0.0593197, -0.00793588, -0.0382596, 0.153689, 0.0392847, 0.02933, 0.0389619, -0.0285071, 1.326, 1.02492, -0.858765, 1.35816, 2.13178, 2.0923, 0.527717, -0.0456001, -3.38456, -1.75122, -0.158247, 0.73379, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.048128, 0.237138, -0.657395, 0.487882, -0.042252, -0.312241, -0.000918135, -0.0154268, 0.930959, -0.0463721, -2.17925, -1.41339, 3.40718, 0.0470191, -1.8913, -0.435768, -0.46362, 0.00337135, 1.00269, 0.958184, 0.597336, -0.0368789, 0.864089, -0.262417, 0.685625, -0.42453, -0.138014, -0.0282933, 1.03146, 1.17249, -0.395892, -0.000859715, 0.0109813, 1.21251, 0.0470986, 0.0468083, -0.0129823, 0.0439897, 3.54229, -1.26674, 0.358202, 2.52837, -0.13815, -2.77967, -0.443656, -0.0183213, -3.7549, -0.159566, 0.121659, -1.2837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0503867, 2.31881, 2.68023, 2.04704, 0.0466154, 1.03126, 0.0318954, 0.0354238, -0.723572, -0.0177253, 0.895357, 0.855048, -1.56763, -0.00954467, -0.825195, -0.295353, -0.935186, -0.0354423, 1.20401, 0.463979, 0.978736, -0.0155556, 0.663784, 1.91724, 1.19616, 1.77144, 1.17301, 0.00499976, 3.68409, 0.733422, 2.16067, 0.00700258, 0.0143325, -0.0506127, 0.025548, -0.0020264, -0.0103838, 0.00255799, 0.310655, -0.955318, 0.299845, -0.976939, 1.17747, 1.22921, 0.353405, -0.020938, -0.54796, 1.48438, -0.155225, -0.472013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0262929, -0.789084, 2.60191, -2.64107, -0.002744, 0.570071, 0.000510874, -0.0515111, -0.39018, -0.0216742, -0.0972561, 1.4281, -0.256179, -0.0374819, -2.01213, -1.0716, 0.59935, 0.0276972, 0.33442, -0.154874, 0.194348, 0.0445142, -0.1901, 0.115416, 1.51064, -0.509751, 0.837829, 0.00876768, 0.800251, -2.16713, -2.05663, -0.0195263, 0.00916917, -0.275857, 0.0332084, -0.0426653, -0.00937326, -0.0226324, 0.430314, -2.62489, 0.12589, 0.54412, -1.17579, -1.6215, -0.657384, -0.0296173, 0.831214, -0.0185392, 0.133461, 0.978655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0395774, 0.157823, 0.0308217, 0.255821, -0.0371533, 0.262729, 0.0500185, -0.0106062, 0.236729, -0.0344059, -0.0546124, -0.528422, -1.3894, -0.0204014, -0.363502, 0.199153, -0.217973, 0.00249494, -0.0130186, -0.0853507, 0.0159045, -0.034615, -0.136959, 0.595423, -0.545149, -0.0238611, -0.505266, -0.00557986, 0.0508103, -0.364141, 0.586299, 0.0245715, 0.0313882, 0.0850252, -0.0126576, -0.0146419, -0.0118667, -0.0212255, 0.330008, 1.07352, 0.0439854, 0.0762502, 0.338004, 0.244568, 0.0957955, -0.0195767, -0.0279841, -0.0486649, -0.0645313, 0.645361, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.020405, 0.506909, -0.233143, 0.180031, 0.0283552, -0.127598, 0.0020732, 0.0328079, 0.280809, 0.0143706, -0.604378, 0.282796, -0.15482, 0.0228346, 1.16285, 0.456639, -0.697142, -0.0210653, -0.0304215, -0.0552303, 0.0125559, 0.0169081, 0.402161, 0.35477, -0.161727, -0.88131, -0.507108, -0.0264001, 0.875827, 1.09133, -0.485465, -0.0214949, -0.0326807, -0.100592, 0.0348335, -3.53411e-05, -0.012609, -0.000164943, 0.31616, 0.131946, 0.139805, 0.127214, 0.423789, -0.141768, 0.536723, -0.0110016, -0.542677, -0.0778915, 0.252547, 0.432141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0133355, 0.9372, 0.349677, 4.22409, -0.0270857, 1.38005, -0.00372722, 0.0378875, -0.524607, -0.0247693, 1.93882, -0.00925097, 1.03575, -0.0431619, 1.08286, 0.139104, 0.0530717, 0.0317242, -0.274341, 0.324304, -0.861111, 0.00881111, 0.0748017, 0.247347, -0.247597, -0.0468766, -0.00415025, -0.0341383, 1.45619, 1.85152, 0.610761, -0.0326988, -0.0274576, -0.654045, -0.0356123, -0.0242646, -0.0361404, -0.00679462, 1.53648, -0.670486, -0.4287, -0.305799, -0.450967, 0.359462, 1.13946, 0.00213058, 0.351741, -0.116157, -0.165262, 1.39, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00111391, -2.88404, 1.75869, -0.0101478, -0.0112333, -0.111454, 0.0330137, 0.042961, -4.29819, -0.0252648, -0.758768, -2.94679, -2.27698, -0.0217042, -1.47933, -0.45594, -2.50506, -0.0511768, -5.04721, -0.273022, -7.37588, 0.0283935, -0.376832, 2.22901, -0.761846, -0.608452, 0.287651, 0.0118871, 0.0288453, -1.18955, -3.02636, 0.0397863, -0.0392839, 0.735033, -0.0318243, 0.0145691, 0.0368862, 0.0253287, 1.09749, -2.89181, -2.32916, -0.0573835, -0.606857, 0.355655, -3.214, 0.0259116, 0.142325, -0.393645, 1.4989, 1.7431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0530704, -3.71603, 1.57537, 1.74706, -0.0239557, -0.170939, -0.0470003, 0.0213281, 0.469906, -0.000847214, 0.225815, -1.29502, 1.5226, 0.0302474, -0.351827, 0.607397, 0.0347771, -0.0182564, -0.682274, -0.778476, 0.213915, -0.0242648, -0.179059, -4.79325, -1.19098, -0.483186, 0.216283, -0.0482367, 0.509147, -2.95415, 0.886006, 0.0388307, 0.0381688, -0.51995, -0.0434915, 0.0309134, 0.00295482, -0.0358649, -0.000212625, -1.98375, 0.586739, 0.718054, 0.397105, -0.990487, -0.00461705, -0.0223495, -0.797898, 0.186811, 0.420262, -1.04431, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.028575, 0.026894, 0.0891451, 3.24761, 0.0423669, 0.0366474, -0.00909388, -0.0134887, 0.988655, 0.00125924, -1.32595, 1.15589, 0.264879, -0.042941, 0.157118, 0.080698, 0.135768, 0.00469179, -0.0494929, 0.77756, -0.380802, 0.0414462, 0.214687, 0.116845, 0.285458, 0.616403, -0.57575, -0.0401452, -0.116816, 1.16181, -0.137633, 0.0129473, -0.0412567, -1.17873, -0.0181201, 0.0349595, 0.0377308, -0.010488, 1.60188, -0.828425, 0.817315, 0.825431, 1.28833, -0.516247, 0.250932, 0.0545165, -0.647819, -0.546922, 0.240814, -0.88252, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.02305, -0.292664, -1.30329, -3.38191, 0.0444332, -0.681707, -0.0369541, -0.0333189, -0.635224, 0.0383787, -1.28583, -0.555015, 1.64091, 0.0405462, 1.88356, -1.40699, -0.730324, 0.0384696, 0.951287, -0.673961, 0.947277, 0.00962098, -0.467078, 0.729237, 0.695152, -0.892052, 0.667317, -0.0319053, -1.96924, 0.597809, -1.90999, 0.039883, -0.0518682, 0.414432, 0.0208327, -0.00965639, -0.038531, -0.0255316, -0.397529, 0.606821, -0.213013, -0.230522, -2.01994, -3.69226, 0.916976, -0.0371581, 1.68356, 0.126525, 0.354731, 0.365064, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0202278, -0.157501, -0.270255, -0.246735, -0.00474218, -0.716691, -0.0185442, 0.00510776, -0.795882, 0.0101819, 1.1694, 1.24902, -0.959391, -0.0239759, -3.13357, 0.461204, -0.737844, -0.0600879, 0.710398, 0.193973, -0.586914, 0.0282958, 0.507647, -1.15451, 1.71472, -0.4119, 1.37024, 0.00969365, 0.557779, -4.99491, -0.199084, -0.0557333, 0.0409599, -0.0469502, -0.0257241, -0.0439331, -0.00590541, 0.0270409, -1.28283, -0.206556, 1.3001, 1.05893, -1.07295, -0.433295, -0.7739, -0.0019331, -0.851193, -0.490564, 0.0407485, -0.375861, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0578482, 0.0373295, 0.331368, 0.668294, 0.00613183, -0.530092, -0.015531, 0.0104125, 0.640993, -0.0208012, 0.325764, 0.589171, -0.31778, -0.0255209, 0.758076, 0.208832, -0.152728, -0.0421349, 0.153165, 0.109221, -0.195369, -0.00519971, -0.0507461, -0.0116347, 0.406737, 0.0320781, 0.0577096, 0.00852391, 0.0462996, 1.05802, -0.0028261, -0.035274, -0.0263333, -0.0799569, -0.0351814, -0.0363905, 0.0442396, 0.00622255, 1.60289, -0.788782, -0.214276, -0.43431, 0.583349, -0.32832, -0.527691, -0.0230334, -0.535538, 0.0615959, -0.368211, -0.233973, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00557068, 0.00571251, -0.174779, -1.72864, -0.0175931, 1.00729, -0.0364929, 0.0199275, 1.36629, -0.00686466, 0.972916, 0.457174, -1.62892, 0.0282821, -2.95862, 0.31406, 0.32648, -0.0229965, 0.256667, 0.98277, 0.633004, -0.0193221, 0.394959, -0.28447, 0.137106, 2.66729, 0.339466, 0.0497122, 1.5075, -5.19568, 0.529296, 0.0328975, -0.0443128, 0.566659, 0.0271515, -0.0420373, -0.00363362, -0.0121877, 0.896197, -1.93113, -0.0116464, -0.884, -0.927316, -3.97251, -2.17148, 0.027089, -1.46479, 0.724621, 0.244412, -1.0614, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0120708, -0.668467, -0.428205, 0.581445, -0.0342526, 0.0417301, -0.00675452, -0.0138074, 0.267417, 0.0217711, 0.0895628, 0.413852, 0.129484, -0.00650754, -0.455188, 0.0763738, 0.129605, 0.00637506, -0.115914, -0.362133, -0.302874, -0.045604, -0.0499359, 0.000382056, -0.338247, -0.275953, -0.383841, 0.0420964, 0.65101, 0.215893, 0.764041, -0.00638168, -0.0348836, 0.211672, -0.0442731, 0.00980624, 0.0159855, 0.0208223, -0.264148, 1.07947, -0.145636, 0.224883, 0.535135, 0.24973, 0.144687, 0.00965574, 0.0374671, -0.494293, -0.0221239, 0.0365127, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0327679, -0.0625093, 0.566841, -1.05752, -0.024912, -1.03491, -0.0149921, -0.0502275, 0.505778, -0.0192, -1.13625, 0.625315, -1.37769, 0.0123434, -0.395581, 0.0116223, 0.42245, 0.00263112, 1.11135, 0.107256, 1.01149, 0.0176411, -0.152799, -0.777497, 0.980702, 0.472689, 0.464605, 0.0304525, 2.07695, -2.37735, 1.20245, 0.0058352, -0.0143608, -0.187171, -0.0315536, -0.0100299, 0.00171672, -0.00648068, 0.672096, 0.933977, -0.147685, 0.0907103, -1.62119, 0.00829886, -1.26032, -0.023544, -1.40914, 1.30243, 0.243512, -1.48844, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0103464, 0.0597066, -0.857376, 0.00506654, 0.0154182, -0.394926, -0.0173352, -0.00310812, 1.31113, 0.00157399, -0.449287, -1.44861, -1.65377, -0.0412088, -1.92326, 0.287395, -1.71362, -0.0542411, -0.613478, 0.215271, -6.77446, -0.0439666, -0.181983, -0.694108, -0.474604, -0.170495, 0.305582, -0.0115169, -0.0243614, -1.76958, 0.109728, -0.0235965, 0.0254026, -0.208822, 0.00788026, -0.0271917, 0.0232063, -0.0249202, -1.22201, -1.06748, -0.706569, -0.57393, -0.244574, 0.542953, -0.288505, 0.0243856, 0.881448, 0.486645, 0.648929, 1.12128, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0212616, -0.858628, -0.129368, -0.0434846, 0.0483373, 0.0523928, -0.00878249, -0.0480519, 0.525032, 0.00264768, -0.469076, 0.067399, -2.10896, 0.00315196, -0.657581, 0.134076, 0.497965, -0.00168659, -1.3189, 0.13599, -0.582165, 0.0452661, -0.337386, -0.196493, -0.210036, -0.33369, -0.306309, -0.0143, 0.00162172, -3.05181, -0.127668, 0.0216637, 0.0120187, -0.465145, 0.0398533, 0.0200363, -0.0383818, -0.0502572, -0.539783, -0.411377, -0.0226861, 1.61061, -1.00043, 1.52059, -0.459951, 0.0189855, 0.906975, 0.586617, 0.449759, -1.47417, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0327989, 0.235387, -0.984695, 0.525023, 0.0462148, -0.0540136, 0.0161324, -0.0147093, 0.996726, 0.0256061, 0.0550523, 0.308374, -0.185342, 0.0242433, 0.00928843, 0.231116, 0.201573, -0.00702715, -0.369461, -0.252416, -0.257542, 0.017289, -0.495775, -0.026537, 0.0387815, 0.00762017, 0.205567, -0.029359, 0.577413, -0.429487, 1.028, -0.0239819, 0.0520379, 0.315361, -0.0370432, 0.0401981, 0.014362, -0.0220065, -0.368047, 0.0351758, 0.0356787, 0.141616, 0.036309, -0.311969, -0.889036, -0.0396314, -0.431425, -0.207994, 0.0186124, 0.619925, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0350948, 0.71019, 0.681859, 0.55109, 0.0299055, -0.0211705, 0.0252966, -0.016366, -0.0549348, 0.0163762, 0.420514, 0.230173, -5.11205, -0.0297896, 0.505897, -0.456108, -0.498226, -0.00163397, 0.0557667, -1.45032, 0.36792, -0.0237663, 0.0718449, 0.0385247, -0.842028, 0.0230566, 0.21414, 0.0418089, -0.167825, -1.67287, 0.609848, 0.00687226, -0.0386968, 0.620129, -0.00373534, 0.0198235, -0.0400995, -0.0168603, 0.424407, -3.05118, -0.788079, -0.991259, -0.158333, -0.617214, -0.236539, 0.00288206, 0.118815, -0.297193, -0.208992, 0.945137, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0455225, -0.224285, -0.523019, -3.61377, 0.00374045, -0.771372, -0.0200929, -0.0429526, -1.0071, 0.0168424, 1.20056, -0.26358, -0.942732, 0.0140546, 0.517607, 0.928374, 0.178798, -0.00898088, -0.0812773, 0.993269, 1.0891, -0.0334432, -0.206409, 0.363835, 0.803811, -0.466795, 0.185957, 0.00425046, -0.918801, -1.90586, 1.56465, 0.0254854, -0.00341129, -0.0202489, -0.022429, -0.0494434, -0.00356944, 0.0183071, -0.996495, -1.72164, 0.327473, -0.439783, -0.0670606, 0.32725, -2.18492, -0.0160416, -1.01702, 0.437793, -0.202972, -0.320217, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0465721, -0.0599448, -1.80959, -2.40219, -0.0358126, 0.199039, 0.0292448, 0.0115665, -1.80998, 0.00261773, -0.952079, -0.745553, 2.03644, 0.00512753, -0.994425, 0.336714, 1.10407, -0.0169729, -0.516938, 0.467095, 0.690226, 0.00350209, -0.306675, 0.112304, -1.43275, -0.771874, -0.497624, 0.0147944, -2.03011, 1.11276, -0.727905, 0.0292667, 0.0163658, -0.415557, -0.00745466, 0.0146604, -0.0418897, 0.0367012, -1.36843, -0.155063, -1.40624, -0.230547, -1.45261, -1.19306, -0.351825, 0.0341859, -1.46997, 0.826513, 0.850369, 3.02861, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00289512, 0.487272, 0.494345, 0.157712, -0.039204, 0.103856, 0.0326672, 0.00583555, -1.67897, -0.00198367, -3.26674, 0.462704, -0.386055, 0.0490339, -1.01192, 0.0892721, -0.473168, 0.0242443, 0.247591, 0.264846, 0.507056, 0.0374866, 0.0302696, -0.484093, -0.44226, -0.255667, -0.314138, 0.00357693, 0.05191, 2.17635, 0.205953, 0.0316811, -0.0387773, 0.396603, 0.0169946, 0.0328903, -0.0189387, -0.0189218, 0.686452, 0.879072, -0.451077, 0.372065, -0.151748, 0.753793, 0.253536, -0.00965688, -0.427334, -0.0545424, -0.0953934, 0.603148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0475244, -0.875224, 0.378673, -0.419931, -0.00577746, 0.112511, 0.0390564, -0.0434337, -0.231101, 0.0202822, 0.497509, -0.00394865, 0.251755, -0.0172138, 0.679658, -0.301013, 0.496414, 0.0260617, 0.536689, 0.214238, -0.153689, 0.00650514, -0.0951784, -0.327155, 0.45205, 0.596844, -0.649436, 0.028994, 1.50527, -3.12058, -0.325173, 0.0510997, -0.0156337, -0.20365, -0.00841539, 0.00609405, 0.0114753, 0.00234951, -2.11124, 1.24128, -0.133712, -0.742383, 0.596839, -0.499353, 0.55425, -0.0138303, 0.105126, -0.050265, 0.43633, -0.279897, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.023028, 0.300842, 1.52153, 2.42545, -0.0309136, 0.334028, 0.00365253, 0.0174292, 1.20912, -0.0481812, 0.332641, 0.648097, 0.0123677, 0.028691, 1.39054, -0.120377, -1.42374, -0.0395023, 0.529902, 0.463328, -0.00852448, 0.0345778, 0.198561, -0.259539, 0.433772, -0.363003, -0.198176, -0.0430115, -0.190572, 1.46489, 2.78335, 0.0105494, 0.00695854, -0.460321, 0.0168249, -0.0472981, 0.0267661, 0.0445067, -0.466979, 1.73898, -0.380156, -0.0572579, -1.16942, -2.78708, -0.563468, -0.0430338, -0.472181, 0.304307, 0.812168, 1.47676, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0201444, 0.0448362, 0.0612561, 0.229805, -0.01032, 0.556728, -0.0303357, -0.0424607, -0.324561, -0.0394843, -0.586734, -0.598185, 0.593006, -0.0231816, 0.145975, 0.0367265, 0.0699704, 0.00955152, 0.0808501, 0.146974, -0.215602, -0.0398421, -0.0728455, 0.000370639, -0.364179, 0.351275, -0.119808, 0.0373198, 0.251226, -0.39204, 0.497607, -0.0204148, -0.0340817, -0.0539018, 0.0074499, 0.00854089, 0.00620629, -0.0321445, 0.150413, 0.492777, -0.228879, -0.243829, 0.895617, 0.162861, 0.150444, -0.0325833, -0.507291, -0.0742585, -0.193203, 0.420525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0399298, -0.160791, -1.64534, -0.0728921, -0.0241924, -0.183461, 0.0517541, 0.0281494, 0.255716, -0.000299177, 0.483936, -0.670528, 0.396284, -0.0170279, 0.729914, -0.143572, 0.246801, -0.0258603, -0.0537637, -0.32532, -0.20947, -0.0125198, -0.505278, -0.242933, 0.391098, -0.600526, 0.0852734, 0.0215924, 0.673447, -2.55758, 1.53233, 0.0308491, -0.0279815, -0.32816, 0.0385755, -0.039686, 0.0196127, 0.00399346, -0.254687, -1.93827, 0.888582, -0.370178, 0.66459, -0.650194, 0.64748, 0.0462192, 1.6003, -0.34246, 0.247622, 0.76179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0268342, 0.736618, -1.39178, -1.67731, 0.0192024, 0.250213, -0.00609996, -0.038378, -1.1057, 0.0279352, 0.398493, 0.111965, 0.931143, -0.0450902, 0.500499, 0.128659, 0.118096, 0.0305596, 0.126204, 0.0199029, 0.112481, 0.0296772, -0.53645, 0.77387, 0.89126, -1.17602, 0.628185, -0.039495, 0.579338, -0.908915, -1.5871, -0.00739638, 0.0232288, -0.259017, 0.0447966, 0.0138152, -0.00207746, -0.0381429, -1.32542, -0.696877, -1.46039, -0.574376, 0.201254, -1.97957, -1.81632, 0.0016285, -1.14182, 0.274444, 0.249355, 0.114392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0137234, -0.298759, 0.145307, -0.669253, -0.0182017, 1.29391, -0.0162509, -0.0326526, -1.46647, 0.0349456, 0.160369, 0.0841634, -0.141604, 0.0355003, 0.56521, 1.35785, -0.142198, -0.0416466, 0.889626, 0.668989, -0.106094, -0.0202139, 0.451685, 0.845492, -0.349641, -0.421348, -0.662, 0.0168586, 0.87112, -0.909013, 0.538334, -0.013116, 0.0135841, -0.879968, 0.00597632, 0.0344624, 0.0096591, -0.0132964, -1.16982, 0.974506, -0.557184, -0.72776, 0.768749, 0.125121, 0.897144, 0.00907982, -0.138386, 0.16488, 0.15288, 1.08081, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0141428, -2.47554, 1.91489, -2.78759, 0.027488, -0.892649, 0.043094, 0.0388209, -0.782266, -0.0171986, 0.727373, -0.370487, -2.43241, 0.00808163, 0.80766, 0.00470022, 0.469044, -0.0101348, 0.0817747, 0.623081, 1.02074, -0.016587, -0.515687, -1.02383, 0.574041, 0.329522, -0.396235, 0.0227271, 0.782273, -0.10203, -0.804627, -0.0129473, 0.0155635, 0.418618, 0.0351287, -0.0381198, -0.000873375, -0.0312268, -1.5785, -1.51751, -0.108943, -0.331377, 0.43054, 0.676162, -0.615932, -0.0176281, 0.0593505, 0.355619, -0.0693161, 1.57961, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0222746, -0.176603, -0.75262, 1.0094, 0.0138328, 0.287991, -0.00531684, 0.010906, -0.206835, 0.0257621, -0.0273983, 0.355128, -1.7324, -0.0165595, -0.198373, 0.120975, -0.517838, -0.0274293, -0.123095, -0.680727, 0.0258633, 0.028692, 0.323742, -0.0556896, -0.685104, -0.10295, 0.241375, 0.0261407, -0.100173, 0.0502528, 0.593374, -0.032919, 0.0359897, 0.170106, -0.0239604, 0.0325824, -0.00803466, -0.035837, -0.130706, -0.261515, -1.05537, -0.2976, 0.47897, 0.0686132, 0.15226, -0.0163525, 0.519579, -0.0173326, -1.07297, 0.103981, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03598, -1.9, -1.362, -0.3782, 0.04358, -1.423, -0.000672, -0.043, -0.8496, -0.00822, -4.277, -1.67, 1.307, 0.002743, -0.769, -1.301, -0.2998, 0.00185, -2.387, -1.047, -3.258, -0.04694, 0.1604, -3.611, -1.826, -1.138, -2.158, 0.004772, -0.03156, 2.145, -3.05, 0.0384, 0.001629, -0.03223, 0.012375, 0.001934, 0.02853, -0.013176, -0.9844, 2.443, -2.102, -2.562, -3.324, -5.977, 0.9136, -0.0006156, 2.602, 0.3325, 0.8677, -0.685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.003475, -0.1073, 1.681, 0.595, 0.00964, 0.305, 0.002995, -0.04382, 0.6123, -0.0253, -0.12146, -0.7407, 0.3442, -0.0124, 0.2908, 0.676, 0.09937, -0.03543, -0.5146, 0.4873, -0.1078, -0.01403, 0.244, -0.1991, -0.3887, 0.6694, -0.153, 0.006126, 0.4812, 0.669, 0.3044, -0.02315, -0.01051, -0.5146, 0.01474, -0.05148, 0.001172, 0.04315, -0.2952, 0.5938, -0.01805, 0.569, -1.567, 0.4858, 0.5356, -0.0251, -0.357, -0.01608, 0.02884, 0.1884], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00662, 1.678, 0.3782, 2.887, 0.0304, 0.0918, -0.02672, 0.04483, -1.175, -0.03607, -0.5537, 0.4832, 2.242, 0.04343, 0.655, 0.2678, -0.7383, 0.02779, -0.2803, 1.325, 0.2307, 0.0238, 0.2417, -0.0868, 0.6704, -0.472, -0.797, -0.0352, -0.1833, 0.989, -0.04416, -0.002083, 0.03278, -0.1203, -0.0258, -0.02933, 0.02051, -0.02925, -1.629, -2.709, 0.2064, 0.258, -1.985, 0.2578, 2.35, 0.02777, 0.795, 0.489, -0.3408, -1.625], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03296, -0.569, -0.0983, 1.85, -0.01415, 0.521, 0.022, -0.0402, 0.564, -0.004715, -1.081, -0.05167, -0.417, -0.04703, -0.2074, 0.2905, 0.2255, 0.02948, -0.313, -0.6597, -0.4165, 0.01039, 0.2175, 0.0703, -0.1295, 1.087, -0.11194, -0.014244, 2.236, -0.11053, 0.465, 0.0634, -0.02142, 0.1376, -0.01956, 0.0385, -0.02869, -0.04327, -0.2091, 0.9585, -0.2869, 0.7354, 0.646, 0.6978, -3.008, 0.0494, -0.463, -0.05756, 0.2993, 0.9287], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02536, -0.4954, 0.1129, 0.525, -0.04733, 0.2515, 0.01927, -0.0434, 0.3342, -0.02724, -0.2205, 0.473, 1.439, 0.00597, -0.5977, 0.2056, 0.1123, -0.01351, 0.45, -1.149, 0.158, 0.01042, 0.4214, -0.352, 0.05954, -0.1858, -0.579, -0.03665, 0.6553, 0.2422, -0.4275, -0.02763, 0.02177, -0.09106, 0.03674, 0.04547, 0.00967, 0.0382, -0.2181, -1.021, 0.1973, 0.3625, 0.07117, 0.4297, -0.685, -0.04297, -0.3804, 0.10767, 0.2046, -0.0845], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02744, 0.9136, -0.9214, 2.146, -0.03973, -0.4094, -0.010155, -0.0004103, -1.13, 0.001259, 1.194, 1.512, 2.496, -0.03384, -0.4253, 0.7344, -0.938, -0.0001692, -0.28, -0.1195, -0.1287, 0.03436, 1.01, 2.535, -0.03464, 0.1514, -1.567, 0.0224, 0.7803, 1.036, 2.625, -0.0207, -0.03116, 0.4978, -0.046, 0.0251, -0.00541, -0.03555, 1.362, 1.964, 1.708, 0.7173, 0.8047, -0.8237, -0.4238, 0.010475, 1.359, -0.6562, -0.211, 0.8174], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03793, -0.558, -1.664, 0.6934, 0.007, -0.295, -0.02641, -0.003641, 1.027, -0.008896, 0.759, 0.4368, -4.42, 0.03105, -0.04575, 0.3364, -0.1993, 0.0497, 0.3215, 0.1048, -0.2214, -0.03017, -0.256, -1.387, 0.1182, -0.193, 0.3152, -0.01256, -0.932, 0.583, -1.396, 0.05856, 0.02003, -0.1023, 0.01047, -0.005646, -0.005196, 0.00724, -0.9385, 1.19, 0.2544, 0.639, -1.117, 0.2512, 0.2898, 0.01195, 1.063, 0.1589, 0.02509, 1.948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.04547, 0.2803, 1.81, 1.461, 0.028, -2.137, 0.0342, 0.04987, 1.68, 0.009834, 0.02173, 0.1782, 2.012, -0.02534, 0.1864, 0.1967, -0.073, -0.004494, -0.2573, 0.02068, -0.373, -0.03134, -0.5767, 0.6323, 0.968, 0.5503, 0.3408, -0.03098, -0.5547, 3.162, 0.639, 0.02676, 0.03006, -0.1403, -0.002941, -0.0162, 0.03049, 0.000514, 0.822, -2.633, 1.296, -0.34, -0.5444, 0.2058, 0.02715, 0.012695, -1.1455, 0.02968, 0.02367, -0.0364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0441, 0.7715, 1.217, 1.115, 0.01492, 0.4348, 0.001873, -0.02054, -0.434, 0.03995, 3.676, 0.0743, -0.0574, -0.01315, -0.2073, -0.2206, -0.714, -0.01134, 1.206, 0.2434, -0.2363, 0.01168, -0.263, -2.064, -0.9023, 0.683, -0.679, 0.01913, 0.95, 1.1875, 0.2954, 0.01634, 0.0344, -0.4216, 0.03992, 0.02647, -0.0005903, -0.0166, -0.1758, 0.1908, -0.2876, 1.055, 0.8354, 1.044, 0.0606, 0.01816, 1.91, -0.4011, 0.1387, 1.857], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05, -0.1367, -1.193, -3.902, -0.02031, -1.171, -0.01164, 0.03198, -0.0631, -0.0658, 0.0735, -1.098, 0.184, -0.00871, -1.996, 0.269, 0.1652, 0.0157, 0.09686, 0.3333, 0.4888, 0.0343, 0.1575, -0.7285, -0.0981, -1.94, 0.4302, 0.02449, -0.5845, -1.842, -0.2837, 0.01907, 0.02934, -0.503, 0.002378, -0.003492, 0.0359, -0.03708, -3.03, 0.7275, -1.075, -0.8237, 0.4802, -0.3123, 1.812, -0.02217, -0.03041, 0.2742, -0.1039, -0.7236], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0009193, 0.1564, -0.237, 0.7114, -0.02248, -0.007755, -0.007782, -0.001549, 0.637, -0.04193, 2.123, 0.07306, -4.45, 0.01262, 1.68, -0.4565, -0.6763, 0.03952, -0.838, -0.07574, 0.1361, -0.01464, 0.07855, 1.086, -2.785, -0.512, 0.3818, 0.0437, 0.944, 1.06, 0.6226, -0.05304, 0.03766, 0.1158, 0.02382, -0.01593, -0.02663, -0.007694, 1.152, 0.9775, 0.04047, -0.4026, 1.159, 1.154, 0.374, -0.00547, 0.9663, -1.918, -0.4014, 0.4934], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.011246, 0.482, 3.18, 2.732, -0.012375, 0.2666, 0.0104, -0.002565, -1.611, 0.0107, 0.955, -0.4285, 2.887, 0.00973, 1.137, 0.5737, -0.6265, 0.01651, 0.2281, 0.664, -0.1865, -0.01726, -0.026, 2.016, -0.7676, 0.2974, -0.1307, -0.033, -0.6074, 1.422, 0.0389, 0.05505, -0.00615, -1.228, 0.002932, 0.05597, -0.003847, -0.0003505, 1.224, 0.8296, -0.9844, -0.03955, 1.704, 1.175, 2.19, -0.01749, 0.869, 0.02525, -0.628, 0.3098], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02039, -0.243, 0.981, -0.4224, -0.02417, -0.3872, -0.0494, -0.003868, -0.07263, -0.0384, 0.2732, -0.6846, 0.6934, -0.003126, 0.6455, 0.4092, -0.04407, -0.003435, -0.3992, -0.0531, 0.2485, 0.003613, -0.1256, 1.899, 0.2495, 0.634, -0.3677, -0.01187, 0.4946, -1.092, -0.743, 0.03363, 0.03384, -0.2522, 0.02882, 0.04065, 0.02586, 0.0362, 0.2625, 0.95, -0.3, 0.1613, -0.3062, -3.883, -0.6196, -0.03082, 0.3274, -0.1322, -0.01539, -1.41], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.006077, 1.396, 1.031, -1.561, -0.02467, 0.615, 0.02422, -0.00102, 2.215, 0.00834, -0.2705, 0.647, 0.938, 0.03784, 0.8076, -0.5063, -0.2021, -0.01822, -1.073, -0.1923, -3.59, 0.02611, 0.1092, 0.378, -0.2086, 0.2568, 0.524, 0.003517, 0.03238, 0.9595, 0.1501, -0.01614, -0.01079, -0.1536, -0.04477, 0.015, 0.05023, 0.01032, -1.0, -1.635, -0.408, 0.842, -0.1416, 0.3809, -0.4998, 0.001868, -0.15, 0.1104, -0.2683, 1.062], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00433, 1.544, 0.3445, -0.1322, -0.0354, 1.825, -0.02054, 0.04202, -1.374, 0.04886, 0.69, -0.1024, 0.492, -0.03665, 1.741, -1.184, -0.1969, -0.04483, 0.02734, 0.3958, -0.2927, 0.00909, -0.0888, 1.029, 0.5825, 0.4802, 0.0117, -0.0409, -1.37, 1.528, -0.5938, -0.02078, -0.00945, -0.495, 0.001169, -0.01584, 0.010544, -0.000915, 1.271, 0.427, 0.841, -0.9907, 0.3796, 1.071, 0.3394, 0.002878, 0.2773, 0.3813, -0.0687, -2.83], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02289, -2.635, 1.45, -0.0696, 0.04044, -0.0386, -0.005096, 0.01518, -4.645, -0.002924, 0.761, 1.225, -0.6787, 0.02768, -0.3381, -0.2532, 0.05325, 0.03394, -0.5757, -1.123, -0.1705, -0.03168, -0.155, 1.225, 0.337, 0.1335, -0.4944, -0.04733, 0.01901, -0.3489, -1.941, -0.0166, 0.006367, 0.4128, 0.00889, 0.0442, -0.0421, 0.01028, -0.2754, -7.67, -0.4192, 0.1421, -0.3877, -0.2688, -3.217, -0.0493, -0.2345, 0.622, -0.1842, -0.4297], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0419, -1.75, -0.3152, 0.811, 0.01201, 0.899, 0.004112, -0.004456, -0.609, -0.01758, -0.2712, -1.797, -0.989, -0.02515, -0.5454, -0.2893, 0.664, 0.02754, 0.3054, -0.3032, 0.1654, 0.0397, 0.379, -1.486, -0.7725, 1.622, -0.05496, 0.01747, -0.5747, -2.328, 1.203, 0.03117, -0.06604, 0.4688, 0.03296, 0.04523, 0.01029, 0.0314, -0.975, -2.52, -0.4368, -0.0688, -1.23, 0.978, -1.899, -0.02477, -2.316, -0.02855, 0.02846, 2.803], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002754, 0.3442, -0.301, 2.207, 0.01761, -0.8066, -0.01177, 0.04626, 1.165, 0.05273, -1.225, 1.193, 1.018, -0.03595, 0.4495, -0.8364, -1.092, 0.02797, -0.06143, -0.3923, -0.1989, 0.01857, -0.3145, -1.448, 0.2832, 0.364, 0.2361, 0.02315, 1.595, 1.014, 1.73, 0.03278, -0.01721, -0.02249, 0.007935, -0.02017, 0.04218, -0.01032, 0.4302, 2.025, 0.7207, -0.556, 1.055, -0.829, -0.43, -0.037, 0.4958, 0.281, 0.0649, 0.2488], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03793, 0.687, 0.01395, 0.01639, -0.03452, 0.1603, -0.0446, -0.000718, 1.57, -0.0421, 0.355, -0.4727, -0.3594, -0.04028, -5.105, -0.6104, 0.274, 0.01591, 0.348, -0.643, 0.03357, -0.01852, -0.1355, -1.32, 0.3027, -0.3718, -1.171, -0.003767, 1.171, 0.5073, -1.418, 0.02538, -0.01023, -0.479, -0.04224, -0.03113, -0.0492, 0.00866, 0.7534, -0.6523, -0.1423, 0.1113, 0.4207, 1.197, -0.6997, 0.0441, -0.1135, 0.254, 0.12354, 0.3948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02681, 1.544, 3.354, 1.136, -0.003202, -0.6353, -0.005486, 0.005756, -0.1858, 0.03137, 2.223, -0.5293, 0.1041, 0.0117, 0.259, -0.2101, -0.6816, 0.04062, 0.8203, -0.267, 0.02873, -0.02463, 0.4167, 0.3208, -6.02, 0.4868, -0.2396, -0.04028, 0.321, 1.381, 0.05933, -0.007935, -0.03827, 0.1537, 0.03928, 0.02933, 0.03897, -0.0285, 1.326, 1.025, -0.859, 1.358, 2.13, 2.092, 0.528, -0.0456, -3.385, -1.751, -0.1582, 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.04813, 0.2372, -0.657, 0.4878, -0.04227, -0.3123, -0.000918, -0.01543, 0.931, -0.0464, -2.18, -1.413, 3.406, 0.04703, -1.892, -0.4358, -0.4636, 0.003372, 1.003, 0.958, 0.597, -0.03687, 0.8643, -0.2625, 0.6855, -0.4246, -0.1381, -0.02829, 1.031, 1.173, -0.396, -0.0008597, 0.01098, 1.213, 0.0471, 0.0468, -0.012985, 0.04398, 3.543, -1.267, 0.3582, 2.53, -0.1382, -2.78, -0.4436, -0.01833, -3.756, -0.1595, 0.12164, -1.284], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05038, 2.318, 2.68, 2.047, 0.0466, 1.031, 0.0319, 0.03543, -0.7236, -0.01773, 0.8955, 0.855, -1.567, -0.009544, -0.825, -0.2954, -0.935, -0.03543, 1.204, 0.4639, 0.9785, -0.01556, 0.6636, 1.917, 1.196, 1.771, 1.173, 0.005, 3.684, 0.7334, 2.16, 0.007004, 0.014336, -0.0506, 0.02554, -0.002026, -0.01038, 0.002558, 0.3105, -0.955, 0.2998, -0.977, 1.178, 1.2295, 0.3535, -0.02094, -0.548, 1.484, -0.1553, -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.02629, -0.789, 2.602, -2.64, -0.002745, 0.5703, 0.0005107, -0.0515, -0.3901, -0.02167, -0.0972, 1.428, -0.256, -0.03748, -2.012, -1.071, 0.599, 0.0277, 0.3345, -0.1549, 0.1943, 0.04453, -0.1901, 0.1154, 1.511, -0.51, 0.838, 0.008766, 0.8003, -2.168, -2.057, -0.01953, 0.00917, -0.276, 0.0332, -0.04266, -0.00938, -0.02263, 0.4304, -2.625, 0.1259, 0.544, -1.176, -1.621, -0.657, -0.02962, 0.831, -0.01854, 0.1334, 0.9785], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03958, 0.1578, 0.03082, 0.2559, -0.03714, 0.2627, 0.05002, -0.010605, 0.2367, -0.0344, -0.05463, -0.5283, -1.39, -0.0204, -0.3635, 0.1991, -0.218, 0.002495, -0.013016, -0.0853, 0.0159, -0.0346, -0.137, 0.595, -0.545, -0.02386, -0.5054, -0.00558, 0.0508, -0.3643, 0.5864, 0.02457, 0.0314, 0.085, -0.01266, -0.01464, -0.01186, -0.02122, 0.33, 1.073, 0.04398, 0.07623, 0.338, 0.2446, 0.0958, -0.01958, -0.02798, -0.04868, -0.0645, 0.6455], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0204, 0.507, -0.2332, 0.18, 0.02835, -0.1276, 0.002073, 0.0328, 0.2808, 0.01437, -0.6045, 0.2827, -0.1548, 0.02283, 1.163, 0.4565, -0.6973, -0.02107, -0.03043, -0.05524, 0.01256, 0.0169, 0.402, 0.3547, -0.1617, -0.8813, -0.5073, -0.0264, 0.876, 1.092, -0.4854, -0.0215, -0.03268, -0.1006, 0.03482, -3.535e-05, -0.01261, -0.000165, 0.3162, 0.132, 0.1398, 0.1272, 0.4238, -0.1417, 0.5366, -0.011, -0.5425, -0.0779, 0.2524, 0.4321], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.013336, 0.937, 0.3496, 4.223, -0.02708, 1.38, -0.003727, 0.03787, -0.5244, -0.02477, 1.938, -0.009254, 1.036, -0.04315, 1.083, 0.1392, 0.05307, 0.03174, -0.2744, 0.3242, -0.8613, 0.00881, 0.0748, 0.2473, -0.2476, -0.04688, -0.00415, -0.03415, 1.456, 1.852, 0.611, -0.03268, -0.02745, -0.654, -0.0356, -0.02426, -0.03613, -0.006794, 1.536, -0.6704, -0.4287, -0.306, -0.451, 0.3594, 1.14, 0.00213, 0.3518, -0.11615, -0.1653, 1.39], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.001114, -2.885, 1.759, -0.01015, -0.01123, -0.11145, 0.03302, 0.04297, -4.297, -0.02527, -0.759, -2.947, -2.277, -0.0217, -1.4795, -0.456, -2.506, -0.05118, -5.047, -0.273, -7.375, 0.0284, -0.377, 2.229, -0.7617, -0.6084, 0.2876, 0.01189, 0.02884, -1.189, -3.025, 0.0398, -0.03928, 0.735, -0.03183, 0.01457, 0.0369, 0.02533, 1.098, -2.893, -2.33, -0.05737, -0.607, 0.3557, -3.215, 0.02591, 0.1423, -0.3936, 1.499, 1.743], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05307, -3.717, 1.575, 1.747, -0.02396, -0.1709, -0.047, 0.02133, 0.47, -0.0008473, 0.2258, -1.295, 1.522, 0.03024, -0.3518, 0.6074, 0.0348, -0.01825, -0.682, -0.7783, 0.2139, -0.02426, -0.1791, -4.793, -1.191, -0.4832, 0.2163, -0.04825, 0.5093, -2.955, 0.886, 0.03882, 0.03818, -0.52, -0.0435, 0.03091, 0.002954, -0.03586, -0.0002127, -1.983, 0.587, 0.7183, 0.3972, -0.9907, -0.004616, -0.02235, -0.798, 0.1868, 0.4202, -1.044], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02858, 0.0269, 0.0892, 3.248, 0.04236, 0.03665, -0.009094, -0.01349, 0.989, 0.001259, -1.326, 1.156, 0.265, -0.04294, 0.1571, 0.0807, 0.1357, 0.004692, -0.0495, 0.7773, -0.3809, 0.04144, 0.2147, 0.1168, 0.2854, 0.616, -0.5757, -0.04013, -0.1168, 1.162, -0.1376, 0.01295, -0.04126, -1.179, -0.01813, 0.03497, 0.03772, -0.01049, 1.602, -0.8286, 0.8174, 0.825, 1.288, -0.516, 0.251, 0.0545, -0.648, -0.547, 0.2408, -0.8823], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02306, -0.2927, -1.304, -3.383, 0.04443, -0.6816, -0.03696, -0.03333, -0.6353, 0.0384, -1.286, -0.555, 1.641, 0.04056, 1.884, -1.407, -0.7305, 0.03848, 0.951, -0.674, 0.9473, 0.00962, -0.467, 0.729, 0.6953, -0.892, 0.6675, -0.0319, -1.97, 0.5977, -1.91, 0.0399, -0.05188, 0.4146, 0.02083, -0.00966, -0.03854, -0.02553, -0.3975, 0.607, -0.213, -0.2305, -2.02, -3.691, 0.917, -0.03717, 1.684, 0.1265, 0.3547, 0.365], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02023, -0.1575, -0.2703, -0.2467, -0.00474, -0.717, -0.01854, 0.005108, -0.796, 0.010185, 1.169, 1.249, -0.9595, -0.02397, -3.133, 0.4612, -0.738, -0.0601, 0.7104, 0.194, -0.587, 0.02829, 0.508, -1.154, 1.715, -0.4119, 1.37, 0.0097, 0.5576, -4.996, -0.1991, -0.05573, 0.04095, -0.04694, -0.02573, -0.04395, -0.005905, 0.02704, -1.283, -0.2065, 1.3, 1.059, -1.073, -0.4333, -0.774, -0.001933, -0.851, -0.4905, 0.04074, -0.376], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05786, 0.03732, 0.3313, 0.6685, 0.00613, -0.5303, -0.01553, 0.010414, 0.641, -0.0208, 0.3257, 0.5894, -0.3179, -0.02553, 0.7583, 0.2089, -0.1527, -0.04214, 0.1532, 0.1092, -0.1953, -0.0052, -0.05075, -0.011635, 0.4067, 0.03207, 0.0577, 0.00852, 0.0463, 1.058, -0.002827, -0.03528, -0.02634, -0.07996, -0.0352, -0.03638, 0.04425, 0.00622, 1.603, -0.7886, -0.2142, -0.4343, 0.5835, -0.3284, -0.528, -0.02304, -0.5356, 0.06158, -0.3682, -0.234], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00557, 0.005714, -0.1748, -1.729, -0.0176, 1.007, -0.0365, 0.01993, 1.366, -0.006866, 0.973, 0.4573, -1.629, 0.02827, -2.959, 0.314, 0.3264, -0.023, 0.2566, 0.983, 0.633, -0.01932, 0.395, -0.2844, 0.1371, 2.668, 0.3394, 0.0497, 1.508, -5.195, 0.5293, 0.0329, -0.0443, 0.567, 0.02715, -0.04202, -0.003633, -0.012184, 0.896, -1.931, -0.01165, -0.884, -0.9272, -3.973, -2.172, 0.02708, -1.465, 0.7246, 0.2444, -1.062], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01207, -0.6685, -0.4282, 0.5815, -0.03424, 0.04172, -0.006756, -0.01381, 0.2673, 0.02177, 0.08954, 0.4138, 0.1295, -0.006508, -0.455, 0.07635, 0.1296, 0.006374, -0.1159, -0.362, -0.303, -0.0456, -0.04993, 0.000382, -0.3381, -0.276, -0.3838, 0.04208, 0.651, 0.216, 0.764, -0.006382, -0.03488, 0.2117, -0.04428, 0.0098, 0.01599, 0.02083, -0.2642, 1.079, -0.1456, 0.2249, 0.535, 0.2498, 0.1447, 0.00966, 0.03748, -0.4944, -0.02213, 0.0365], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03278, -0.0625, 0.567, -1.058, -0.02492, -1.035, -0.01499, -0.05023, 0.506, -0.0192, -1.137, 0.6255, -1.378, 0.012344, -0.3955, 0.01162, 0.4224, 0.00263, 1.111, 0.10724, 1.012, 0.01764, -0.1528, -0.7773, 0.9805, 0.4727, 0.4646, 0.03046, 2.076, -2.377, 1.202, 0.005836, -0.01436, -0.1871, -0.03156, -0.01003, 0.001717, -0.00648, 0.672, 0.934, -0.1477, 0.0907, -1.621, 0.0083, -1.261, -0.02354, -1.409, 1.303, 0.2435, -1.488], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.010345, 0.0597, -0.8574, 0.005066, 0.01542, -0.395, -0.01733, -0.003109, 1.312, 0.001574, -0.4492, -1.448, -1.653, -0.0412, -1.923, 0.2874, -1.714, -0.05423, -0.6133, 0.2153, -6.773, -0.04398, -0.182, -0.6943, -0.4746, -0.1705, 0.3057, -0.01152, -0.02437, -1.77, 0.10974, -0.02359, 0.0254, -0.2089, 0.00788, -0.02719, 0.02321, -0.02492, -1.222, -1.067, -0.7065, -0.5737, -0.2446, 0.543, -0.2886, 0.02438, 0.8813, 0.4866, 0.649, 1.121], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02126, -0.8584, -0.1294, -0.0435, 0.04834, 0.0524, -0.00878, -0.04807, 0.525, 0.002647, -0.469, 0.0674, -2.11, 0.003153, -0.6577, 0.134, 0.498, -0.001687, -1.319, 0.136, -0.582, 0.04526, -0.3374, -0.1965, -0.2101, -0.3337, -0.3064, -0.0143, 0.001621, -3.053, -0.1277, 0.02167, 0.01202, -0.465, 0.03986, 0.02003, -0.0384, -0.05026, -0.5396, -0.4114, -0.02269, 1.61, -1.0, 1.5205, -0.46, 0.01898, 0.9067, 0.5864, 0.4497, -1.475], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0328, 0.2354, -0.985, 0.525, 0.0462, -0.05402, 0.01613, -0.01471, 0.9966, 0.0256, 0.05505, 0.3083, -0.1853, 0.02425, 0.009285, 0.2311, 0.2015, -0.007027, -0.3694, -0.2524, -0.2576, 0.01729, -0.4958, -0.02654, 0.0388, 0.00762, 0.2056, -0.02936, 0.5776, -0.4294, 1.028, -0.02399, 0.05203, 0.3154, -0.03705, 0.0402, 0.01436, -0.022, -0.3682, 0.0352, 0.03568, 0.1416, 0.03632, -0.312, -0.889, -0.03964, -0.4314, -0.208, 0.01862, 0.62], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0351, 0.71, 0.6816, 0.5513, 0.0299, -0.02116, 0.0253, -0.01637, -0.05493, 0.01637, 0.4204, 0.2302, -5.113, -0.02979, 0.506, -0.456, -0.4983, -0.001634, 0.05576, -1.45, 0.368, -0.02377, 0.07184, 0.0385, -0.842, 0.02306, 0.2141, 0.0418, -0.1678, -1.673, 0.61, 0.006874, -0.0387, 0.62, -0.003735, 0.01982, -0.0401, -0.01686, 0.4243, -3.05, -0.788, -0.991, -0.1583, -0.617, -0.2366, 0.002882, 0.11884, -0.297, -0.209, 0.9453], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04553, -0.2242, -0.523, -3.613, 0.00374, -0.7715, -0.0201, -0.04294, -1.007, 0.01685, 1.2, -0.2637, -0.943, 0.01405, 0.5176, 0.928, 0.1788, -0.00898, -0.0813, 0.993, 1.089, -0.03345, -0.2064, 0.3638, 0.8037, -0.4668, 0.1859, 0.00425, -0.919, -1.906, 1.564, 0.02548, -0.00341, -0.02025, -0.02243, -0.04944, -0.003569, 0.01831, -0.9966, -1.722, 0.3274, -0.4397, -0.0671, 0.3271, -2.186, -0.01604, -1.017, 0.4377, -0.203, -0.3203], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04657, -0.05994, -1.81, -2.402, -0.03583, 0.1991, 0.02925, 0.011566, -1.81, 0.002617, -0.952, -0.7456, 2.037, 0.005127, -0.9946, 0.3367, 1.1045, -0.01697, -0.517, 0.467, 0.6904, 0.003502, -0.3066, 0.1123, -1.433, -0.772, -0.4976, 0.01479, -2.03, 1.112, -0.728, 0.02927, 0.01637, -0.4155, -0.007454, 0.01466, -0.0419, 0.0367, -1.368, -0.155, -1.406, -0.2306, -1.452, -1.193, -0.3518, 0.03418, -1.47, 0.8267, 0.8506, 3.03], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002895, 0.4873, 0.4944, 0.1577, -0.0392, 0.1039, 0.03265, 0.005836, -1.679, -0.001984, -3.268, 0.4626, -0.386, 0.04904, -1.012, 0.0893, -0.4731, 0.02425, 0.2476, 0.265, 0.507, 0.03748, 0.03027, -0.4841, -0.4421, -0.2556, -0.3142, 0.003576, 0.0519, 2.176, 0.2059, 0.03168, -0.0388, 0.3965, 0.017, 0.0329, -0.01894, -0.01892, 0.6865, 0.879, -0.4512, 0.372, -0.1517, 0.754, 0.2534, -0.00966, -0.4272, -0.05453, -0.0954, 0.603], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04752, -0.875, 0.3787, -0.42, -0.00578, 0.1125, 0.03906, -0.04343, -0.2311, 0.02028, 0.4976, -0.00395, 0.2517, -0.01721, 0.6797, -0.301, 0.4963, 0.02606, 0.5366, 0.2142, -0.1537, 0.006504, -0.09515, -0.3271, 0.4521, 0.5967, -0.6494, 0.02899, 1.505, -3.121, -0.3252, 0.0511, -0.01564, -0.2036, -0.008415, 0.006096, 0.011475, 0.00235, -2.111, 1.241, -0.1337, -0.742, 0.5967, -0.4993, 0.554, -0.01383, 0.1051, -0.05026, 0.4363, -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.02303, 0.3008, 1.521, 2.426, -0.03091, 0.334, 0.003653, 0.01743, 1.209, -0.0482, 0.3325, 0.648, 0.01237, 0.02869, 1.391, -0.12036, -1.424, -0.0395, 0.53, 0.4634, -0.00852, 0.03458, 0.1986, -0.2595, 0.4338, -0.363, -0.1981, -0.043, -0.1906, 1.465, 2.783, 0.01055, 0.006958, -0.4602, 0.01683, -0.0473, 0.02676, 0.0445, -0.467, 1.739, -0.3801, -0.05725, -1.169, -2.787, -0.5635, -0.04303, -0.4722, 0.3042, 0.812, 1.477], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02014, 0.04483, 0.06125, 0.2299, -0.01032, 0.5566, -0.03033, -0.04245, -0.3245, -0.0395, -0.587, -0.598, 0.593, -0.02318, 0.146, 0.0367, 0.06995, 0.00955, 0.0809, 0.147, -0.2156, -0.03986, -0.0729, 0.0003707, -0.3643, 0.3513, -0.1198, 0.03732, 0.2512, -0.392, 0.4976, -0.02042, -0.0341, -0.0539, 0.00745, 0.00854, 0.006207, -0.03214, 0.1504, 0.4927, -0.2289, -0.2438, 0.8955, 0.1628, 0.1504, -0.0326, -0.5073, -0.0743, -0.1932, 0.4204], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03992, -0.1608, -1.6455, -0.0729, -0.02419, -0.1835, 0.05176, 0.02815, 0.2556, -0.0002992, 0.484, -0.6704, 0.3962, -0.01703, 0.73, -0.1436, 0.2468, -0.02586, -0.05377, -0.3254, -0.2095, -0.01252, -0.5054, -0.2429, 0.391, -0.6006, 0.08527, 0.02159, 0.6733, -2.557, 1.532, 0.03085, -0.02798, -0.3281, 0.03857, -0.03967, 0.0196, 0.003994, -0.2546, -1.938, 0.8887, -0.37, 0.6646, -0.6504, 0.6475, 0.04623, 1.601, -0.3425, 0.2477, 0.7617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02684, 0.737, -1.392, -1.678, 0.0192, 0.2502, -0.0061, -0.0384, -1.105, 0.02794, 0.3984, 0.11194, 0.931, -0.0451, 0.5005, 0.1287, 0.1181, 0.03056, 0.1262, 0.0199, 0.1125, 0.02968, -0.5366, 0.774, 0.891, -1.176, 0.6284, -0.0395, 0.579, -0.9087, -1.587, -0.007397, 0.02322, -0.259, 0.0448, 0.01382, -0.002077, -0.03815, -1.325, -0.697, -1.46, -0.574, 0.2013, -1.9795, -1.816, 0.001629, -1.142, 0.2744, 0.2494, 0.1144], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.013725, -0.2988, 0.1453, -0.6694, -0.0182, 1.294, -0.01625, -0.03265, -1.467, 0.03494, 0.1604, 0.08417, -0.1416, 0.0355, 0.5654, 1.357, -0.1422, -0.04166, 0.8896, 0.669, -0.1061, -0.02022, 0.4517, 0.8457, -0.3496, -0.4214, -0.662, 0.01686, 0.871, -0.909, 0.5386, -0.013115, 0.01358, -0.88, 0.005978, 0.03445, 0.00966, -0.0133, -1.17, 0.9746, -0.557, -0.7275, 0.7686, 0.1251, 0.897, 0.00908, -0.1384, 0.1649, 0.1528, 1.081], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.014145, -2.475, 1.915, -2.787, 0.02748, -0.8926, 0.0431, 0.03882, -0.782, -0.0172, 0.7275, -0.3706, -2.432, 0.00808, 0.8076, 0.0047, 0.469, -0.01013, 0.0818, 0.623, 1.0205, -0.01659, -0.5156, -1.023, 0.574, 0.3296, -0.3962, 0.02272, 0.782, -0.10205, -0.8047, -0.01295, 0.015564, 0.4187, 0.03513, -0.03812, -0.0008736, -0.03122, -1.578, -1.518, -0.10895, -0.3313, 0.4304, 0.6763, -0.6157, -0.01762, 0.05936, 0.3557, -0.06934, 1.58], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02228, -0.1766, -0.7524, 1.01, 0.01383, 0.288, -0.005318, 0.0109, -0.2068, 0.02576, -0.0274, 0.3552, -1.732, -0.01656, -0.1984, 0.121, -0.518, -0.02744, -0.1231, -0.6807, 0.02586, 0.02869, 0.3237, -0.0557, -0.685, -0.10297, 0.2413, 0.02614, -0.10016, 0.05026, 0.5933, -0.03293, 0.03598, 0.1702, -0.02396, 0.0326, -0.00803, -0.03583, -0.1307, -0.2615, -1.056, -0.2976, 0.479, 0.0686, 0.1522, -0.01636, 0.5195, -0.01733, -1.073, 0.104]]
[1.47626, 0.600989, -0.148535, 0.151678, -0.485297, -2.48411, -1.30675, -1.13041, -0.369945, 0.56204, -0.522179, 0.563402, -0.0210035, 0.342328, -0.892954, -0.081945, -0.682016, -0.191946, -0.748805, -2.00851, 0.437345, -0.257222, 0.760044, 0.380221, 0.0908202, 0.628428, -1.92026, -0.661522, -2.5035, -0.999376, 0.0157659, 0.462182, -0.675923, 0.545938, -0.944387, -0.687703, -0.60756, -0.252679, -0.467016, -0.572973, 0.800432, -1.05698, -1.00811, -2.01187, 0.0649495, 1.13815, 0.858227, 1.02366, -0.369491, -0.198588, 1.477, 0.601, -0.1486, 0.1517, -0.4854, -2.484, -1.307, -1.131, -0.3699, 0.562, -0.522, 0.5635, -0.021, 0.3423, -0.893, -0.082, -0.682, -0.1919, -0.749, -2.008, 0.4373, -0.2573, 0.7603, 0.3801, 0.0908, 0.6284, -1.92, -0.6616, -2.504, -0.9995, 0.01576, 0.4622, -0.676, 0.546, -0.9443, -0.6875, -0.6074, -0.2527, -0.467, -0.5728, 0.8003, -1.057, -1.008, -2.012, 0.06494, 1.138, 0.8584, 1.023, -0.3694, -0.1986]
ReLU
[[-1.2647, -0.453085, 0.24176, -0.265307, 0.9846, 1.50366, 1.78124, -1.33614, 1.56163, 1.69551, -1.32606, 0.33218, 1.35932, 1.31704, 1.79604, 0.589258, -0.913848, -0.683592, -1.58579, -0.763534, -0.166433, -0.770358, 0.00739418, 1.57991, 1.17569, -1.86191, 0.649294, -2.733, -1.77395, 0.218153, 0.43927, 1.02583, 0.41414, 0.787488, 0.416091, 1.88268, 1.05691, 2.72597, 2.69565, 0.933568, 0.0872825, 1.82305, -1.76948, 1.58115, 2.97471, -2.02654, 0.0995154, -0.801785, -0.410881, -0.261832, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.108303, 0.126108, -0.262487, 0.314924, 0.236337, -1.40802, 1.27538, 0.128733, -0.0690157, 0.240777, -0.822226, -0.00313339, -0.719135, 0.0455497, -0.294961, 0.494784, 0.472424, 1.70865, 1.27077, 0.397645, 0.037633, 0.0154732, 0.353776, 0.103787, -0.584824, 0.770842, 0.0671807, 1.52846, -1.60902, 0.472374, -0.600797, 0.37627, 0.0125633, -0.409807, -0.152408, 0.463247, 1.16591, 1.16448, 0.995985, 0.963937, -0.0947684, -2.07867, 1.90047, 0.445363, 0.896384, 0.266949, -0.472137, -0.159993, -1.68101, 0.376701, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.307948, -0.489621, -0.216738, -0.366308, -2.48286, -0.201006, -0.396585, -2.34202, -0.403241, -1.93165, -0.960323, -0.475862, -1.45106, 0.151751, 0.623088, 2.27449, -0.253139, -1.06151, -1.41703, 1.08431, 0.144169, 0.369571, 0.700155, -1.38633, 0.537934, -0.619359, 1.17736, -0.191322, -1.73292, 0.354702, 0.475196, 0.185317, 0.693159, -0.696103, 0.938289, -0.554724, 1.58946, -1.73084, 1.78404, 0.914707, -0.0705651, -2.47765, -0.281021, -0.139616, -0.631397, 0.338533, 1.30225, -0.440672, 0.00593229, -1.04713, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0229765, 0.340115, -0.276744, -0.0198395, 2.82846, 0.770556, -0.288609, -0.779862, -0.423494, -0.695192, 0.426273, -0.0672668, -0.77963, 0.15763, 0.397323, -0.464779, 0.0483472, -0.455559, 0.177539, 1.19012, -0.0558602, -0.351346, -0.157824, 0.114189, 0.228949, 0.437619, -0.559364, -1.51652, 1.64025, -0.30934, -0.836647, 0.785183, 0.491925, 1.05452, 0.0955436, -0.841894, -0.289777, 2.51104, 0.362439, 0.0342116, -0.117083, 0.395488, -0.506726, 0.87987, 1.4301, 0.0920416, 0.305499, 1.4605, 0.0110538, -0.112875, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.38682, -0.0805317, 0.0785214, -0.294157, -0.0314964, -0.131408, -0.170556, -1.88865, 0.0721038, -0.084322, -1.21218, 0.137613, -1.96252, 2.47083, -3.18573, 1.57659, 0.759615, -0.788463, 1.77724, -2.23671, 0.478132, 0.00505924, 0.157469, -0.0719681, 0.860318, -0.0127392, 0.646652, -1.74371, -2.66395, 0.276986, -0.379298, 0.248904, -0.314642, 2.23232, 0.0331836, 2.37991, -0.637543, 0.598927, 1.58754, -0.552575, 0.110404, 3.27476, -0.700693, -1.59188, 0.638938, -0.904787, 0.805044, -1.71234, 0.865867, 0.422862, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0152966, -0.0442321, -0.0453962, 0.00302891, 0.0214036, -0.000838293, 0.0423776, -0.0414444, 0.023397, -0.0228087, -0.0398366, 0.018812, -0.00762523, 0.0140488, -0.0271254, -0.00339341, 0.0347555, 0.022583, 0.0478947, 0.0562436, -0.0524134, -0.0553758, -0.0209801, -0.0511696, 0.0428687, -0.0563165, 0.00381981, 0.00507478, -0.0140935, 0.0316272, -0.0160128, 0.0195094, -0.0149141, -0.0404847, 0.0111952, -0.0259062, -0.0318671, -0.0191789, 0.0411899, -0.0208675, -0.0476683, 0.0465658, -0.00447964, 0.0314908, 0.00839722, -0.077342, -0.00715523, 0.000773175, 0.0410446, 0.00714318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0468572, -2.4918, -0.959729, 0.477978, -1.6512, -6.62816, -1.04993, -7.44019, 0.399905, 2.03371, -0.781361, -0.26981, -3.99029, -1.00843, -1.39846, 0.125377, -0.322044, -1.90274, -1.38928, -7.26991, -0.337807, -0.375745, 0.321957, 0.264014, 0.134115, -1.08773, -0.0131086, -1.37047, 1.83689, 0.0577079, -0.368559, 0.893505, 0.712175, 0.554545, 0.42333, -0.351323, -0.0881917, 1.78401, -1.7983, 0.539783, 0.617986, 1.59276, 1.29633, -1.82223, -1.95586, -2.1065, -0.515295, 1.13111, 0.950424, 1.05465, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.667037, 0.116936, -0.575276, 0.478261, 1.43616, -1.21307, 0.204769, -0.420237, -0.0779456, -0.689875, -0.190762, 1.34834, 0.242048, 0.627338, -0.801487, -1.63132, 0.123668, -0.866229, -2.67659, 0.826, -0.787799, -0.601896, -0.240576, 1.99658, 0.824134, -0.0385654, 0.307445, 1.60582, 2.72021, -0.459507, 0.401681, -0.0756933, 0.210466, 1.92209, 0.164827, -2.27359, 0.664013, 0.947106, 0.513765, -0.560539, -0.152059, -1.17778, -0.159143, -0.357727, 0.642361, 0.109992, 0.832229, 0.193288, 0.0510682, -0.0885611, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.28689, 0.604425, 0.572856, -1.53396, -2.12831, 0.0877685, 3.47119, 2.38107, 0.172117, 3.09176, 1.20842, -0.752469, 1.22045, 1.16052, 1.11622, 4.12136, 1.25735, 2.3767, 3.83642, 0.738327, 1.31094, 2.08813, 2.40699, 0.489868, -0.00965009, 0.0511277, 2.60006, 0.262957, 0.420942, 1.67929, 1.35587, 1.32336, 0.0731314, 0.455102, 1.23679, 3.36241, 6.52822, -0.750962, 2.53544, 2.33325, 3.55964, 0.0537781, 3.2061, 2.95888, 0.608105, 3.52931, 2.74345, -0.292625, 2.75628, 1.30923, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.502753, -0.757931, 0.578459, 0.951184, 3.20234, 1.20306, -2.75918, 0.966453, -0.589012, 2.07292, 0.472948, 1.43957, 1.93471, -0.970424, 0.307678, 2.2908, 1.20546, 1.46551, 1.98091, 2.38104, -0.833552, -0.893357, -0.185032, 2.50237, 0.771429, 1.23746, 1.50297, 3.37765, 1.32081, -2.83065, -1.78599, 0.061364, -0.858704, 3.23024, -1.0176, -1.88259, -0.991462, 2.51661, 1.52109, 0.0998804, -0.250988, -3.53828, 1.51444, 3.09413, 1.33451, 0.175061, -1.06633, 1.04163, -3.69444, 0.155792, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00840979, -0.0109328, -0.0528553, 0.00615647, -0.0153294, 0.000738152, 0.00350354, -0.0321066, -0.0108831, 0.0344211, -0.0251157, -0.045802, 0.0453384, -0.0224197, 0.0284642, 0.0197817, 0.0148055, 0.00119698, -0.0532314, 0.0250498, -0.0206024, -0.001176, -0.0509661, -0.0513267, -0.0452365, 0.000295956, 0.018235, 0.00220886, 0.00974089, -0.00143803, 0.0142851, -0.0233501, -0.0425286, 0.0167362, -0.0405469, 0.00736479, -0.0400603, -0.0352449, -0.00879044, -0.0501369, -0.0196617, -0.0361279, -0.0374016, -0.00135522, 0.0173797, -0.0138314, -0.0441094, -0.01126, 0.00502884, 0.019507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.14645, 1.08099, -0.417214, 0.112038, -3.79349, 0.32929, -2.9605, 0.818351, -0.0395717, 1.01506, 0.498568, -1.39927, -0.055485, 0.962273, -0.910544, 2.82789, 1.5985, -0.599015, 0.165687, -0.246441, 0.60803, 0.306528, -0.492273, -3.01481, -0.392808, 0.664714, 1.4585, -3.77735, -3.96741, -0.120128, 0.500997, -4.52929, 0.0400982, 0.664253, 0.33668, -1.36871, -2.60619, 3.61806, 0.990546, -2.94201, 0.397734, 1.38395, -2.4706, 1.63352, 0.856415, -0.298779, -0.972104, 0.0257575, 0.470903, -0.364819, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.221957, 0.0785223, 0.299774, 1.05003, -2.69365, 1.18668, 0.815547, 0.0560505, 0.284755, 1.02911, 0.265792, 0.454543, -2.07404, 0.157744, 0.228334, 0.301504, 0.194212, -0.122912, 1.43752, 1.15193, -0.181768, -0.160149, 0.338693, 1.20433, 0.157491, 0.0925392, -0.293794, -0.586494, 2.21124, 0.3838, 0.0596047, 1.3505, -0.118138, -0.00125672, -0.685316, -0.471164, -1.23127, 1.83439, -0.689598, -0.352297, 0.0888574, -0.907229, 0.788867, 0.125586, 1.50502, 0.221632, 0.0339568, 0.526697, -0.834049, -0.146616, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.704185, -0.142743, 0.531161, -1.28181, -3.09412, 0.533445, 1.11217, 0.269018, 0.268255, -0.0458731, 1.42375, -0.531919, 1.87022, 1.01251, 0.247881, -1.18683, -0.252075, -0.0404538, 2.65314, 0.567135, -0.139979, -0.110814, -0.865804, 0.156874, -0.963038, 0.207987, 0.646355, 1.09906, 1.33436, -1.35408, -0.385691, 2.3802, -0.0183783, -0.102562, -0.386641, -0.89779, 0.974779, -0.0121326, -0.97717, 0.240309, 0.251062, -0.735783, 0.513343, 1.6197, 2.63989, 0.640382, -0.278628, 0.0360775, -1.13417, -0.197838, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0701246, 0.268119, 0.309471, -0.48041, -2.14457, -1.18731, 3.36533, -0.0389885, 0.11721, 0.52629, 0.638701, -0.493287, 2.22236, 1.53858, 0.268944, 1.1576, -0.614877, 1.30932, 2.20482, -3.19354, 0.00511585, -0.460806, 0.412427, 0.36485, 1.00176, -0.589264, 0.122454, 2.31763, -0.131361, -0.0738132, -0.430456, 2.08952, 0.200565, -1.72957, -0.770165, 0.422898, 0.0282865, -1.83081, 1.44029, -0.683092, 0.253624, 2.31168, 1.18971, 0.952035, 0.80952, 0.205331, 0.620129, 0.916455, -0.198682, 0.669895, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0525406, -0.0653693, -0.464271, -0.159086, 0.0714768, -0.350206, -0.196796, 0.892477, -0.639081, -0.289501, 0.448642, -0.0937355, 0.109834, -0.914279, 1.36714, -0.547057, 0.51737, 0.436682, -0.135447, -1.01615, 0.0933158, -0.0591272, 0.39898, -0.072556, 0.0440972, -0.44303, -0.218324, 0.640506, -1.48659, -0.218963, -0.0936701, 1.08605, -0.343978, 0.917697, 0.0691651, 0.930825, -1.43427, -0.867658, 0.351339, 0.446007, 0.35788, -0.757728, -0.442181, 0.111668, 0.00807827, 0.193203, -0.158126, -0.395297, 0.232775, 0.0197261, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.482529, 0.922148, 0.884277, 1.56102, 1.13988, 2.52868, 1.50829, 0.134169, -0.54607, 0.118727, 0.878303, 0.366854, -0.0226639, -0.232991, 0.0515205, -0.79074, -0.444096, 1.56729, 1.6845, 2.2812, -0.24886, -0.502113, 0.135135, 2.90773, 0.517868, 0.584033, -0.0664721, 0.479935, 1.65746, -0.00681664, -0.55136, 0.931851, -0.6224, 0.595307, -0.990714, -0.361713, -1.56137, 2.14915, 0.106263, -1.27753, -0.275888, 0.367749, 1.11699, 0.795426, 1.3465, 0.0153879, 0.0602475, 1.22324, -1.55868, 0.366429, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.535199, 0.699309, -0.465574, -0.391348, -0.312829, -2.885, -0.773876, 0.0412189, -0.868625, -0.240269, 0.175429, 0.00107752, 0.368506, -0.783299, -0.0312699, -1.78723, -0.405412, -0.00747363, 0.75633, 0.0752648, -0.0477342, 0.166992, 0.0531429, -1.82801, -1.63694, 0.197055, 0.34729, -0.417363, -0.526181, 0.270354, 0.549197, 0.386895, -0.189541, -1.16126, 0.454952, -0.0566457, -3.2143, -1.81985, -1.62143, -1.21867, 0.109774, -0.120288, 0.368558, 0.349038, -1.63114, -1.30861, 1.35528, -0.0183293, -0.0854663, -0.674146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.44732, 0.533088, 0.334376, -0.455744, 0.380852, 0.51707, 1.69959, 1.29903, -0.0395038, 0.577251, -0.432013, 0.0475048, 1.62699, 0.00253696, -0.0403672, 0.764707, 0.168759, -1.30684, 1.01793, -1.06097, -0.312672, 0.21146, 0.326935, 0.607936, 0.26886, -0.329906, -0.607469, 0.704745, -0.294732, 0.553729, -0.00762757, -0.615641, 0.136407, 0.976736, -0.186833, -1.05325, 0.29474, -3.3995, -0.0514158, 0.552917, 0.279485, 0.955977, 1.60912, -0.487405, 0.128437, -1.57618, -0.0530323, -0.479691, -0.396994, -1.36465, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.205429, 0.477133, 0.610363, 1.04379, -0.00449317, 1.36614, 0.0988913, 0.986087, 0.173705, -0.251808, 0.333454, 0.480595, -1.95716, 0.570144, -1.17081, 0.0604827, -0.198478, -0.279545, -1.56218, 0.0546193, -0.207724, -0.489354, 0.377109, 0.729384, -0.689526, 0.386775, 0.56569, -0.993282, -1.53859, -0.387793, -0.0558474, 1.32643, -0.496891, 0.890644, -0.204367, -0.306184, -1.22418, -0.326252, 0.532181, 0.00429496, -0.0450138, 1.56706, 1.46608, 0.751449, 1.36942, 0.0539378, -0.171915, -0.0595345, -0.750679, -0.0756662, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.000425689, -0.034945, -0.0391529, 0.0230264, -0.0485, -0.0288671, -0.0528859, -0.0313986, 0.00295731, -0.0390855, 0.0314326, -0.010242, -0.042025, -0.0562668, -0.0330147, -0.0202423, 0.0214653, -0.0415081, -0.0032428, -0.0509568, -0.037036, -0.0589128, -0.0040655, -0.014412, -0.0326223, 0.0310148, -0.0118497, -0.000922974, 0.025482, 0.00113396, -0.0569398, 0.00203066, -0.0473233, -0.01114, 0.00819794, 0.0440478, 0.0209125, 0.0158337, 0.0236026, -0.0150921, 0.000911465, 0.0114375, 0.0259995, -0.00865403, 0.0300796, -0.0522117, 0.0197769, -0.0650352, -0.0508573, 0.0163163, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.339339, -0.589204, 0.704246, 0.819885, 0.715346, -0.580189, 1.34942, -0.283448, -0.161235, 0.245779, 0.406238, 0.177867, -0.69603, 0.739934, -2.00265, -0.297316, 0.628663, 1.34752, 0.655178, 0.803843, -0.0774445, -0.218716, -0.402393, 0.586351, -1.36219, 0.104112, 0.339417, 0.120064, -0.185052, -1.56877, 0.457521, 0.268531, -0.286865, -1.45119, 0.182436, 0.0132872, 0.374177, -0.153759, 1.68189, 0.195384, -0.344328, 1.5329, -0.174694, 0.945768, -0.568341, 0.19683, 0.809628, 0.606571, -0.64244, -0.167191, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.19217, -0.414289, -0.262388, -0.229188, 0.0297334, -3.60669, 1.15745, -0.578703, -0.150064, -0.0456723, 0.479745, -0.535335, -0.461686, 1.55248, 0.631447, 0.0663496, -0.352968, -0.126658, 1.06651, -0.657428, -0.236234, -0.3342, 0.166687, -0.521275, 0.597325, -0.443828, 0.0148294, 1.33383, -0.14088, -0.479834, -0.340167, -0.413719, -0.112976, 0.617456, 0.0598796, -1.68359, -0.739727, -0.0523184, -0.17983, -1.15066, 0.566854, 1.4416, 0.701746, -0.17997, -10.2331, 0.540212, 0.328851, -0.154906, 0.163055, 0.828839, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.537816, 0.304623, 0.980378, 0.823439, 0.241198, 0.0679472, 0.749952, -0.319867, 0.259064, 0.137837, -0.0534346, 0.66171, 1.09855, -0.846345, 0.0704634, 1.04816, -1.2804, 0.358697, -2.43057, 0.106455, -0.315425, -0.0327675, 0.298669, -1.01634, 0.248069, -0.448945, -0.0343551, 0.820013, 0.536327, -0.159268, 0.386554, 0.451473, -0.166905, -0.799267, -0.706789, 0.822864, -0.148248, 1.11849, 1.85274, 0.0512233, 0.810041, 0.455214, -0.587811, 0.323646, -0.781234, 0.469188, 0.164264, -0.371007, 0.31806, 0.817628, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.425989, -0.430753, 1.59827, -0.160187, 2.45972, 1.3993, 1.96559, 0.436301, -0.99187, 1.56438, 1.32361, -0.516806, 3.1722, 2.97141, 0.366083, 2.39836, 0.874711, 1.05402, 2.74687, 3.62745, -0.333164, -1.56625, -0.196593, -0.689048, -0.611381, 0.629051, 0.822166, -0.707589, -1.81231, 0.0346861, -1.06217, 0.764075, 0.885309, 0.648032, -0.236053, -0.524914, 2.35573, 2.45315, 2.64576, 1.23039, -1.08377, 5.06293, 1.2356, 0.753139, 1.45068, 0.380924, -0.264198, 0.218742, -0.277505, 0.625475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.528128, -0.599756, -0.459548, -0.670698, 2.58187, 0.25397, 2.74625, 0.976567, 0.317283, 0.0744727, 0.160827, -0.540475, 1.02549, 0.240894, 0.604543, -0.908146, -7.41668, -0.30953, -4.58728, -0.16076, 0.137852, -0.0649871, -0.540843, 1.42329, 0.103198, 0.0753793, 0.383643, 1.12381, 0.418667, 0.657781, -0.344481, 2.40343, -0.63384, 0.206566, -1.7943, 0.128981, 1.32004, 0.399761, 0.213163, 0.349468, 0.473109, 1.14672, 0.317502, -0.0408259, 1.39143, 0.0683526, 0.304335, 0.549674, 0.384775, 0.784689, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.208093, 0.249498, -0.68366, -0.509791, -0.827096, 0.148082, 0.577174, 0.0966715, 0.337784, 0.593047, 0.677903, -0.178696, 0.336379, -1.09027, 0.211474, -4.30899, 0.222611, -0.184031, -0.661347, 0.338008, 0.050999, 0.0931852, 0.215664, 0.665825, -0.234686, -0.103146, -1.37865, -0.0660658, 0.113493, -0.116325, -0.324513, -0.654147, 0.0287127, 1.5672, 0.138165, 0.382828, -0.45499, -0.326331, 0.447159, -0.312186, 0.166489, -0.956951, 0.207378, 0.632371, 0.138304, 0.0925387, -0.444887, -0.0164894, -0.0454074, -0.182084, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.180778, 0.581542, -0.558945, -0.112934, -0.292707, 1.11469, -0.548959, -2.54411, 0.366245, 0.523347, 0.484236, 0.692677, 0.876871, 0.402134, -2.30299, 0.669038, 0.84151, 0.118346, 0.150855, 1.33127, -0.162439, -0.302053, -0.299011, 2.04396, -2.81671, -0.444007, -0.483011, 0.640389, 0.451582, 0.522132, 0.666353, -0.136639, 0.102316, 0.764568, 0.315592, -4.33054, -6.63547, -1.04276, -0.711332, -0.255034, -0.39754, 0.108956, -0.38799, 1.647, 0.181621, -2.16977, -0.510727, -0.875766, 0.184465, 1.19129, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.204, 0.765898, -0.831273, 0.608848, 1.2356, 0.516256, 0.355478, 1.19086, 0.354754, -0.636326, -1.36843, 0.408708, -0.121355, 0.760117, 0.200852, 0.220974, -0.473654, 0.125513, 0.112314, 1.7, -0.0155929, -0.772712, 0.115642, -0.703515, -0.235998, -0.198081, 0.30539, 0.855134, 0.622871, -0.0614532, 0.170801, 1.56353, 0.0616132, 0.458275, 0.0753433, -0.659129, 0.0565176, 0.161465, 0.0419606, -1.34649, -0.106284, 2.19066, -0.226957, 0.147616, -1.93223, 0.454184, 0.293168, 0.71728, 0.649828, 0.95536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.112124, 0.249684, 0.325866, 0.360357, 0.793354, 0.148099, 0.323632, 0.737853, 0.264008, -0.437311, 0.060507, 0.204249, 1.22435, 1.60646, 0.353845, 0.969295, 0.209253, -0.475279, -1.23447, 1.67175, 0.0699601, -0.666548, 0.204039, 0.729156, 1.31332, 0.67928, 0.413439, 0.695484, 0.646281, 0.0547239, -0.799094, 0.260799, 0.297032, -0.783775, 0.154758, 1.01544, 0.822586, -0.849612, 0.306853, -0.183595, -0.502578, 1.22217, 1.32864, -1.27441, -2.00959, -0.856808, -0.457966, -0.372778, -0.119022, 0.690264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.203774, 0.0990577, 0.0519009, 0.312928, 0.984423, 1.90762, 1.26097, -0.99224, 0.915333, -2.11046, -0.678869, 0.153862, 0.872015, 0.137584, 0.196969, 0.350566, 0.813813, 1.33457, -0.975348, 1.01131, -0.276986, -0.530891, 0.165069, 1.22107, -0.232208, 0.711806, 0.411354, 1.09037, 1.74844, 0.0812854, -0.250431, 2.40708, 0.118313, 0.0871932, -1.05752, -1.36746, -1.03134, 1.51542, 0.471541, -0.802777, -1.15172, 1.89811, -1.07584, -0.256966, 0.620107, -0.300921, -0.377552, 0.578242, -0.635135, 0.407009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.365471, -0.274277, 0.263832, 0.594898, 1.59835, 1.22414, 0.672062, 1.18612, -0.811126, -0.845592, -0.342332, 0.410223, 3.72616, 1.71911, 2.22346, 1.62646, 1.14882, -0.411606, 1.68038, 0.875699, -0.154332, -1.05207, -1.16217, 1.91116, -3.9867, -2.26185, -0.230019, 0.552261, 3.07514, 0.548585, -0.0678515, 1.47717, -0.538328, 0.386429, 0.0130767, 1.13186, 0.260901, 0.857183, 0.932934, -0.675854, -0.0729025, 1.87044, 1.73962, -3.89964, 3.14485, -2.54948, -0.924977, 0.235005, 1.01216, -0.0744618, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.459083, 1.57556, -0.277949, -0.505118, 0.486545, 2.36653, 0.881136, -1.55428, 2.14976, 0.0405696, 1.29233, -1.09821, 0.515908, 1.6555, -0.602286, -2.34661, 0.824462, -2.56556, -0.322487, -1.24338, -0.51424, 0.535218, -1.41325, -1.69454, 0.276003, 1.23449, -1.66102, -1.22122, -1.17193, -1.77192, -1.46266, -2.37424, -1.30809, -1.17965, 0.0332652, 0.444926, 1.12369, -1.29331, 1.91602, 1.94411, 0.827722, -5.02975, 1.77144, -1.75484, -0.942405, -0.812602, -0.0415356, -0.0885402, -0.0692625, 0.314523, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.396893, 0.303752, 0.307544, -0.313884, 0.754998, -3.10822, 1.16513, -0.0416307, -0.332326, 0.826219, 0.104401, -0.57925, -2.82297, -0.462011, 0.477891, 1.56293, -0.337446, 1.85091, 1.57818, 1.38724, 0.273452, -0.431397, 0.252264, 0.00353684, -0.509451, -0.537279, 0.745224, -0.189887, 1.80895, -1.17482, 0.250447, 0.759178, -0.33216, 0.409328, -0.438925, -0.385748, -0.0913063, 0.770831, -1.53883, 0.202534, -0.418091, 0.723003, 1.25715, -0.0704835, 0.528718, 0.111045, -0.122836, -0.40433, 0.448716, -1.20809, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.443215, -0.125134, 0.184308, -0.480487, 1.18064, 1.03786, 0.273733, 0.746832, 0.242298, -0.20464, -0.805734, 0.314248, 0.257439, -1.22188, 0.26888, 1.3715, -0.543482, 0.164475, 0.537165, -0.224154, 0.147487, -0.0689711, 0.117424, 0.463786, 0.240089, 0.352112, 0.687823, 1.11462, 0.944903, 0.269583, -0.0835722, 0.220458, -0.620572, 0.216637, -0.338396, 0.946845, -1.51439, 0.897079, 0.807378, 0.258166, -1.67537, -0.0948739, 0.368187, -2.72878, 0.870687, -0.350954, 0.235059, -0.553151, 0.46257, 1.1989, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.120096, -0.365437, -0.575497, -0.503573, -0.752883, -1.44635, -1.30235, -0.366615, 0.726094, 0.45797, -0.714418, 0.46195, -0.357254, 0.472564, -0.166111, 0.845762, -0.305983, -0.539785, -0.318495, -0.736924, 0.145585, 0.219732, -0.255293, -0.0490089, 0.295364, -0.436236, -0.0752931, 0.662187, -0.560391, -0.290256, 0.397927, -1.17332, -0.0233637, -1.23555, 0.380556, -0.765674, 1.19795, 0.432324, -0.0594284, -0.402444, 0.533054, 0.866707, 0.105387, 1.29261, 0.415939, 0.143773, 0.214478, 0.256415, 0.0452497, 0.421411, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0869984, 0.631071, -0.161227, -0.232215, -2.87662, 0.237029, 0.647084, 0.510763, 0.48138, -2.02623, 0.451917, -0.124865, -0.829633, -0.0136932, 0.987289, -2.34454, -0.11756, 0.128372, 1.43691, -1.24105, -0.112413, 0.641305, 0.972622, -1.32519, -0.740149, -0.382436, 0.0571803, 1.03011, 1.99493, 0.441072, -0.366774, -0.608036, 0.688074, -0.0479732, 0.0364999, 0.661238, 0.539878, -3.9232, 0.400745, 0.192595, 0.320441, -0.876289, 0.428503, 0.545669, 1.22789, 0.393343, -0.466872, -1.07818, 0.990484, 0.318596, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.228758, -0.0868928, -0.57178, 0.9626, 0.590907, -1.05695, -0.359937, 0.893358, 0.00742671, 0.377919, 0.155408, -1.18242, -2.10028, 0.446625, -2.23872, 0.00687229, -0.542687, -0.46598, -0.50349, -0.860741, -0.214748, -0.342851, 0.843711, -1.10551, -0.968141, -0.748995, 0.055206, -0.878037, -2.58234, 1.27602, -0.251047, -0.811923, -0.757481, 0.13258, -0.345689, -1.95616, 0.897429, 1.95885, -1.03128, 0.639621, 0.0111209, -5.24699, 1.07512, 0.832787, -0.283557, -0.490558, -1.21508, -0.855663, -0.514525, -0.202133, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.548817, 0.607049, 0.672004, -0.661994, -0.3442, 0.970294, 1.23358, -0.330606, 1.05567, 0.854148, 1.6889, -0.41673, -0.636968, -0.384219, 0.52669, 1.04419, 0.853632, 0.402915, 1.32051, -0.39416, -0.273259, -0.266487, -0.186135, 2.15894, 0.893532, -0.466214, 1.0599, -1.045, 1.83422, -1.31307, -0.365634, 0.643211, 0.689958, 1.5789, -0.160259, -0.816039, 2.6805, 0.548073, 1.13082, -0.804494, 0.0469485, 1.55468, 1.25365, -3.00418, -0.265579, 0.718742, -2.09897, -1.05896, 0.0390939, -0.54869, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.160742, -0.490138, 1.16542, 1.33769, 3.37929, -0.243147, -1.69582, 0.908578, -0.258229, 0.414646, 0.322629, 0.742852, 0.752786, 1.17636, 1.41039, -0.117794, 0.499893, 1.37471, -1.38411, 2.09033, -0.469682, -0.702104, -0.14934, 1.08612, 0.216612, 0.854033, -1.07824, -0.829045, 5.49299, 0.305955, -0.411454, -1.62854, 0.382268, 1.30418, -0.0791567, 0.67608, -0.883081, 2.02868, -0.278317, -1.20426, 0.188271, -0.367454, -0.350322, -0.21055, 0.645667, 0.158456, -0.819087, 0.917416, -1.12607, -0.498303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.910533, -0.444163, 0.848638, 0.205655, -0.108881, 1.90569, 2.10234, 3.13703, 0.234105, 2.04099, 1.35298, -0.77965, 2.78603, 1.11111, -1.29713, 1.20766, 1.26982, 2.11527, -2.40233, 1.3419, -0.390891, -1.1029, -2.0857, 1.06195, -0.710624, 2.03453, 0.499698, 3.38077, -0.320942, 0.928177, 0.104654, 3.767, -0.158645, -1.88879, -0.634546, 0.0523672, 2.04359, 1.2071, 2.86683, 0.489094, -0.471472, 0.899404, 4.00363, 0.741319, 1.01127, -0.143855, -0.0913358, 0.193142, -0.908469, -0.942649, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.872091, 0.400272, -0.417216, 0.345583, 2.56935, 3.29104, 0.858658, 0.0788035, -0.157676, -0.0139974, -0.986203, -1.06327, 1.21771, -5.66596, 1.33957, 1.42625, 0.599599, 0.8756, 2.62138, 1.28119, -0.36843, -0.459241, 0.0490258, -0.709556, -1.21137, 0.022046, 0.363679, 2.05453, -0.27864, 0.167444, 0.91783, -2.3803, 0.0195392, -1.58984, -0.071664, 0.710727, 0.066762, 1.21875, 0.612306, -0.0120817, -0.488283, 1.05547, -1.32382, 0.555072, 4.34135, 0.189695, 1.12699, 0.595271, 1.02515, -0.16685, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.615985, 0.935347, 0.249999, -0.179526, -4.64714, 0.337652, -2.93056, -0.238119, -0.395288, -0.935039, 0.228925, -0.776929, 0.931793, -0.344176, -1.12897, 1.34237, 0.387263, 2.58947, -9.25667, -0.0305808, -0.19748, 0.259708, -0.381972, -0.992666, 0.122162, 0.926638, 0.197196, -0.757174, -1.52279, -0.751695, 0.246637, -2.38735, -0.383573, 1.62257, -0.456769, -0.510827, 0.941516, -0.204821, -0.0820671, -0.422189, 0.306361, 0.671993, -2.47615, -1.3166, 0.0912615, 0.619642, 0.693647, -1.18926, -0.795986, 0.104073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.408005, -0.214058, -0.593842, -1.1114, -0.132568, 1.34712, 0.613734, -1.0601, 0.616757, -0.457115, 0.405062, -0.239399, 1.55361, 0.132273, -0.317508, 1.4592, 0.282493, -0.118447, 0.190008, 0.0494312, -0.243068, -0.121074, -0.000284894, -0.528947, 0.665388, -0.559155, -0.407682, -1.00405, 0.373963, -0.176195, 0.261438, 0.147743, 0.0677102, -0.207176, 0.393048, 0.829226, 1.09159, 0.181486, -0.905613, -0.240901, 0.09338, 0.216288, 0.765836, -0.622347, 0.5881, 1.00174, 0.0173332, 0.704547, -0.00739633, 0.743701, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00633613, 0.311352, 0.902195, 1.01406, 0.860905, 2.10379, -1.45726, 1.84637, 1.55627, -0.744258, -0.0543296, 0.351163, 2.27366, 0.323043, 0.835041, 1.65427, 1.09705, 0.558704, 4.09999, 1.17475, -0.124282, -0.726771, -1.57936, 2.03387, 1.51233, -1.26064, 1.24238, 1.12602, 2.64112, -0.661756, 0.833656, 3.10191, -0.605398, 0.178415, -0.595322, -0.850676, -1.69205, -0.81865, 1.85227, -0.350939, -0.555682, -0.421065, 0.163697, 2.24115, 2.3715, -3.91, 0.175549, -0.0313463, 0.77177, 1.19087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2103, 1.8184, -0.770108, -1.84381, -0.848151, -2.97966, -2.09212, 1.22865, -0.0509153, 0.304083, 0.656632, -1.21396, 0.116687, -1.51661, -2.7461, -3.452, -1.66547, -4.06665, 0.871422, 0.236022, 0.172594, 0.601558, 0.548444, 1.72074, 0.276249, -0.182377, -3.73207, -1.6735, -0.260849, 0.480483, -1.24051, -1.81962, -0.300131, -3.33395, -0.560419, -2.33702, -1.78997, -0.753371, -3.06657, 0.607315, 0.572003, 0.071045, -0.00913311, -1.12927, -1.20721, 0.694977, -1.62439, 0.459628, 0.184461, -0.719037, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0509562, 0.0274806, -0.029538, 0.00439728, 0.0309931, -0.0516749, -0.034015, -0.0165129, -0.0413532, 0.0277317, 0.00259336, 0.0183568, -0.0294652, -0.0399124, 0.00471448, 0.0216759, -0.0445341, -0.0321625, -0.0268205, -0.0501158, -0.018372, -0.0432182, -0.0389966, -0.0201148, 0.0423783, -0.0179247, 0.0280943, -0.00274525, 0.00131101, -0.0324738, -0.0443104, -0.0274227, -0.016911, -0.0220723, -0.0414821, -0.00558483, -0.016121, 0.0387192, 0.0140896, -0.0288812, -0.0462375, -0.0297631, -0.0227896, -0.041329, 0.0181451, -0.0422195, 0.0380863, -0.0216147, 0.0460983, 0.0353366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.48867, 0.397754, 0.409398, -0.0988649, 0.384527, 0.498958, 1.20701, 0.305174, -0.22194, 0.654353, 0.479572, -0.451414, 0.672763, -0.142988, -0.400984, -1.59142, 0.586819, 0.0912496, 2.28525, -0.83282, 0.102236, 0.243839, -0.34995, -1.61426, -0.475315, -0.313071, -2.1665, 0.673377, 1.80819, 0.963865, -0.4599, 0.129701, -0.314734, -0.0858296, -0.358234, 0.133353, 0.115776, -1.78872, -1.02948, 0.118693, -0.304883, -1.11803, 0.569161, -0.0317809, -1.96843, 0.226338, -0.246102, 0.164127, 0.318216, -0.315147, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.78573, -3.22682, 1.36701, 0.170948, -0.297211, -1.21607, 0.30978, -1.35376, -1.15532, -1.89966, -1.97167, -0.474926, 0.811316, -0.897262, -0.457236, -0.145501, 0.273022, -0.528461, -2.49869, -2.03484, 0.110516, 0.796637, 0.865473, -3.41676, -1.14352, -0.908243, -1.33153, 1.18407, -0.735595, 0.192962, 0.462106, -0.856554, 0.575159, -2.67622, 0.373793, 1.58238, -5.18498, -3.06625, 0.672927, -2.05365, -0.900157, -1.04433, 0.956673, 0.523924, -3.60364, -1.90262, 1.529, -0.612652, 0.327077, -1.24835, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.644534, 0.185755, 0.717957, -3.84959, -0.855529, -0.360061, -4.54456, 0.767192, -0.706356, 0.365109, 0.0304124, -0.316075, 3.58531, -0.552948, -0.737778, 0.673664, -0.213084, 2.43293, -1.53889, -3.74901, 0.697627, 1.21923, 0.00500743, -0.727706, 0.0916197, -0.361667, 0.17982, -2.6972, -0.69651, 0.110908, -0.431562, 0.816796, -1.24773, -5.15748, 0.221692, 1.25082, 0.614879, -2.64769, -1.66838, 0.672916, 1.28787, -1.08774, -0.580349, -1.4884, -3.63109, 1.32671, 0.00650344, -0.0601891, 1.43726, 0.185955, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.265, -0.4531, 0.2417, -0.2654, 0.9844, 1.504, 1.781, -1.336, 1.562, 1.695, -1.326, 0.3323, 1.359, 1.317, 1.796, 0.5894, -0.914, -0.6836, -1.586, -0.7637, -0.1664, -0.7705, 0.007393, 1.58, 1.176, -1.862, 0.6494, -2.732, -1.774, 0.2181, 0.4392, 1.025, 0.414, 0.7876, 0.416, 1.883, 1.057, 2.727, 2.695, 0.9336, 0.0873, 1.823, -1.77, 1.581, 2.975, -2.027, 0.0995, -0.802, -0.411, -0.2617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1083, 0.1261, -0.2625, 0.315, 0.2363, -1.408, 1.275, 0.1288, -0.06903, 0.2407, -0.8223, -0.003134, -0.719, 0.04556, -0.295, 0.4949, 0.4724, 1.709, 1.2705, 0.3977, 0.03763, 0.01547, 0.3538, 0.10376, -0.585, 0.771, 0.0672, 1.528, -1.609, 0.4724, -0.6006, 0.3762, 0.012566, -0.41, -0.1525, 0.4631, 1.166, 1.164, 0.996, 0.964, -0.0948, -2.078, 1.9, 0.4453, 0.8965, 0.2668, -0.4722, -0.16, -1.681, 0.3767], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3079, -0.4895, -0.2168, -0.3662, -2.482, -0.201, -0.3965, -2.342, -0.4033, -1.932, -0.9604, -0.4758, -1.451, 0.1517, 0.623, 2.275, -0.2532, -1.062, -1.417, 1.084, 0.1442, 0.3696, 0.7, -1.387, 0.538, -0.619, 1.178, -0.1913, -1.733, 0.3547, 0.475, 0.1853, 0.6934, -0.6963, 0.9385, -0.5547, 1.59, -1.73, 1.784, 0.9146, -0.07056, -2.479, -0.281, -0.1396, -0.6313, 0.3386, 1.303, -0.4407, 0.00593, -1.047], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02298, 0.34, -0.2769, -0.01984, 2.828, 0.7705, -0.2886, -0.78, -0.4236, -0.6953, 0.4263, -0.06726, -0.78, 0.1576, 0.3972, -0.4648, 0.04834, -0.4556, 0.1775, 1.19, -0.05585, -0.3513, -0.1578, 0.1142, 0.229, 0.4375, -0.5596, -1.517, 1.641, -0.3093, -0.8364, 0.785, 0.492, 1.055, 0.0955, -0.842, -0.2898, 2.512, 0.3625, 0.0342, -0.11707, 0.3955, -0.507, 0.88, 1.43, 0.09204, 0.3054, 1.461, 0.011055, -0.11285], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3867, -0.0805, 0.0785, -0.2942, -0.0315, -0.1313, -0.1705, -1.889, 0.0721, -0.08435, -1.212, 0.1376, -1.963, 2.47, -3.186, 1.576, 0.76, -0.7886, 1.777, -2.236, 0.478, 0.00506, 0.1575, -0.07196, 0.8604, -0.01274, 0.6465, -1.744, -2.664, 0.277, -0.3794, 0.2489, -0.3147, 2.232, 0.03317, 2.38, -0.6377, 0.599, 1.588, -0.5527, 0.1104, 3.275, -0.7007, -1.592, 0.639, -0.905, 0.805, -1.712, 0.8657, 0.4229], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0153, -0.04422, -0.0454, 0.003029, 0.02141, -0.0008383, 0.0424, -0.04144, 0.02339, -0.02281, -0.03983, 0.01881, -0.007626, 0.014046, -0.02713, -0.003393, 0.03476, 0.02258, 0.04788, 0.05624, -0.0524, -0.0554, -0.02098, -0.05118, 0.04288, -0.0563, 0.00382, 0.005074, -0.01409, 0.03162, -0.016, 0.01952, -0.014915, -0.0405, 0.01119, -0.02591, -0.03186, -0.01918, 0.0412, -0.02087, -0.04767, 0.04657, -0.00448, 0.0315, 0.0084, -0.07733, -0.007156, 0.000773, 0.04105, 0.007145], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.04684, -2.492, -0.96, 0.478, -1.651, -6.63, -1.05, -7.44, 0.4, 2.033, -0.7812, -0.2698, -3.99, -1.009, -1.398, 0.1254, -0.322, -1.902, -1.39, -7.27, -0.338, -0.3757, 0.322, 0.264, 0.1342, -1.088, -0.01311, -1.37, 1.837, 0.0577, -0.3687, 0.8936, 0.7124, 0.5547, 0.4233, -0.3513, -0.0882, 1.784, -1.798, 0.5396, 0.618, 1.593, 1.296, -1.822, -1.956, -2.107, -0.515, 1.131, 0.95, 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, 0.667, 0.11694, -0.575, 0.4783, 1.437, -1.213, 0.2047, -0.4202, -0.07794, -0.69, -0.1908, 1.349, 0.2421, 0.6274, -0.8013, -1.631, 0.12366, -0.866, -2.676, 0.826, -0.7876, -0.602, -0.2406, 1.996, 0.824, -0.03857, 0.3074, 1.605, 2.72, -0.4595, 0.4016, -0.0757, 0.2104, 1.922, 0.1648, -2.273, 0.664, 0.9473, 0.5137, -0.5605, -0.1521, -1.178, -0.1592, -0.3577, 0.6426, 0.11, 0.832, 0.1932, 0.05106, -0.08856], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.287, 0.6045, 0.5728, -1.534, -2.129, 0.08777, 3.47, 2.38, 0.1721, 3.092, 1.208, -0.7524, 1.221, 1.16, 1.116, 4.12, 1.258, 2.377, 3.836, 0.7383, 1.311, 2.088, 2.406, 0.4897, -0.00965, 0.05112, 2.6, 0.263, 0.421, 1.68, 1.355, 1.323, 0.0731, 0.455, 1.236, 3.363, 6.527, -0.751, 2.535, 2.334, 3.56, 0.05377, 3.207, 2.959, 0.608, 3.53, 2.744, -0.2927, 2.756, 1.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.503, -0.758, 0.5786, 0.951, 3.203, 1.203, -2.76, 0.9663, -0.589, 2.072, 0.473, 1.439, 1.935, -0.97, 0.3076, 2.291, 1.205, 1.466, 1.98, 2.38, -0.8335, -0.8936, -0.185, 2.502, 0.7715, 1.237, 1.503, 3.377, 1.321, -2.83, -1.786, 0.06137, -0.859, 3.23, -1.018, -1.883, -0.9917, 2.518, 1.521, 0.09985, -0.251, -3.54, 1.515, 3.094, 1.335, 0.175, -1.066, 1.042, -3.695, 0.1558], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00841, -0.01093, -0.05286, 0.006157, -0.01533, 0.000738, 0.003504, -0.0321, -0.01088, 0.03442, -0.02512, -0.0458, 0.04535, -0.02242, 0.02846, 0.01978, 0.01481, 0.001197, -0.05322, 0.02505, -0.0206, -0.001176, -0.05096, -0.05133, -0.04523, 0.0002959, 0.01823, 0.002209, 0.00974, -0.001438, 0.01428, -0.02335, -0.04254, 0.01674, -0.04056, 0.007366, -0.04007, -0.03525, -0.00879, -0.05014, -0.01967, -0.03613, -0.0374, -0.001355, 0.01738, -0.01383, -0.0441, -0.01126, 0.005028, 0.0195], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1465, 1.081, -0.4172, 0.11206, -3.793, 0.3293, -2.96, 0.8184, -0.03958, 1.015, 0.4985, -1.399, -0.05548, 0.9624, -0.9106, 2.828, 1.599, -0.599, 0.1656, -0.2465, 0.608, 0.3066, -0.4922, -3.016, -0.3928, 0.6646, 1.459, -3.777, -3.967, -0.1201, 0.501, -4.527, 0.0401, 0.664, 0.3367, -1.369, -2.605, 3.617, 0.9907, -2.941, 0.3977, 1.384, -2.47, 1.634, 0.8564, -0.2988, -0.972, 0.02576, 0.471, -0.3647], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2219, 0.07855, 0.2998, 1.05, -2.693, 1.187, 0.8154, 0.05606, 0.2847, 1.029, 0.2659, 0.4546, -2.074, 0.1577, 0.2284, 0.3015, 0.1942, -0.1229, 1.4375, 1.152, -0.1818, -0.1602, 0.3386, 1.204, 0.1575, 0.0925, -0.2937, -0.5864, 2.21, 0.3838, 0.0596, 1.351, -0.11816, -0.001257, -0.6855, -0.4712, -1.231, 1.834, -0.6895, -0.3523, 0.08887, -0.907, 0.789, 0.1256, 1.505, 0.2217, 0.03397, 0.527, -0.834, -0.1466], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.704, -0.1427, 0.5312, -1.282, -3.094, 0.533, 1.112, 0.269, 0.2683, -0.04587, 1.424, -0.5317, 1.87, 1.013, 0.2479, -1.187, -0.252, -0.04047, 2.652, 0.567, -0.14, -0.11084, -0.8657, 0.1569, -0.963, 0.208, 0.6465, 1.099, 1.334, -1.3545, -0.3857, 2.38, -0.01837, -0.10254, -0.3867, -0.898, 0.9746, -0.01213, -0.977, 0.2404, 0.251, -0.736, 0.513, 1.62, 2.64, 0.6406, -0.2786, 0.03607, -1.134, -0.1979], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0701, 0.268, 0.3096, -0.4805, -2.145, -1.1875, 3.365, -0.039, 0.1172, 0.5264, 0.6387, -0.4934, 2.223, 1.539, 0.269, 1.157, -0.6147, 1.31, 2.205, -3.193, 0.005116, -0.4607, 0.4124, 0.3647, 1.002, -0.5894, 0.12244, 2.318, -0.1313, -0.0738, -0.4304, 2.09, 0.2006, -1.7295, -0.77, 0.4229, 0.02829, -1.831, 1.44, -0.683, 0.2537, 2.312, 1.189, 0.952, 0.8096, 0.2053, 0.62, 0.9165, -0.1987, 0.67], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05255, -0.06537, -0.4644, -0.159, 0.0715, -0.35, -0.1968, 0.8926, -0.639, -0.2896, 0.4487, -0.09375, 0.10986, -0.914, 1.367, -0.547, 0.5176, 0.4368, -0.1355, -1.017, 0.0933, -0.0591, 0.399, -0.0726, 0.0441, -0.443, -0.2184, 0.6406, -1.486, -0.219, -0.0937, 1.086, -0.344, 0.9175, 0.06915, 0.9307, -1.435, -0.8677, 0.3513, 0.446, 0.358, -0.758, -0.4421, 0.1117, 0.00808, 0.1932, -0.1581, -0.3953, 0.2328, 0.01973], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4824, 0.9224, 0.8843, 1.561, 1.14, 2.53, 1.508, 0.1342, -0.546, 0.1187, 0.8784, 0.367, -0.02266, -0.233, 0.0515, -0.7905, -0.444, 1.567, 1.685, 2.281, -0.2489, -0.502, 0.1351, 2.908, 0.518, 0.584, -0.06647, 0.48, 1.657, -0.006817, -0.5513, 0.9316, -0.6226, 0.595, -0.9907, -0.3618, -1.562, 2.148, 0.10626, -1.277, -0.276, 0.3677, 1.117, 0.7954, 1.347, 0.01539, 0.06024, 1.224, -1.559, 0.3665], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.535, 0.699, -0.4656, -0.3914, -0.3127, -2.885, -0.774, 0.04123, -0.8687, -0.2402, 0.1754, 0.001078, 0.3684, -0.783, -0.03128, -1.787, -0.4055, -0.007473, 0.7563, 0.07526, -0.04773, 0.167, 0.05313, -1.828, -1.637, 0.197, 0.3472, -0.4175, -0.5264, 0.2703, 0.5493, 0.387, -0.1896, -1.161, 0.4548, -0.05664, -3.215, -1.82, -1.621, -1.219, 0.1098, -0.1203, 0.3687, 0.349, -1.631, -1.309, 1.355, -0.01833, -0.08545, -0.6743], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4473, 0.533, 0.3345, -0.4558, 0.3809, 0.517, 1.699, 1.299, -0.0395, 0.577, -0.4321, 0.04752, 1.627, 0.002537, -0.04037, 0.7646, 0.1687, -1.307, 1.018, -1.061, -0.3127, 0.2114, 0.327, 0.608, 0.2688, -0.3298, -0.6074, 0.7046, -0.2947, 0.5537, -0.00763, -0.6157, 0.1364, 0.9766, -0.1869, -1.054, 0.2947, -3.4, -0.05142, 0.5527, 0.2795, 0.956, 1.609, -0.4873, 0.1284, -1.576, -0.05304, -0.4797, -0.397, -1.364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2054, 0.477, 0.6104, 1.044, -0.004494, 1.366, 0.0989, 0.9863, 0.1737, -0.2517, 0.3335, 0.4807, -1.957, 0.5703, -1.171, 0.0605, -0.1985, -0.2795, -1.5625, 0.05463, -0.2078, -0.4893, 0.3772, 0.7295, -0.6895, 0.3867, 0.566, -0.993, -1.539, -0.3877, -0.05585, 1.326, -0.4968, 0.8906, -0.2043, -0.3062, -1.225, -0.3262, 0.532, 0.004295, -0.045, 1.567, 1.466, 0.7515, 1.369, 0.05392, -0.1719, -0.05954, -0.7505, -0.0757], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0004256, -0.03494, -0.03915, 0.02303, -0.0485, -0.02887, -0.0529, -0.0314, 0.002956, -0.0391, 0.03143, -0.01024, -0.04202, -0.05627, -0.03302, -0.02025, 0.02147, -0.0415, -0.003242, -0.05096, -0.03705, -0.0589, -0.004066, -0.01441, -0.03262, 0.03102, -0.01185, -0.000923, 0.02548, 0.001134, -0.05695, 0.002031, -0.04733, -0.01114, 0.0082, 0.04404, 0.02092, 0.01584, 0.0236, -0.01509, 0.000911, 0.01144, 0.026, -0.00865, 0.03008, -0.05222, 0.01978, -0.06506, -0.05084, 0.01631], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3394, -0.5894, 0.704, 0.82, 0.7153, -0.58, 1.35, -0.2834, -0.1613, 0.2457, 0.4062, 0.1779, -0.696, 0.7397, -2.002, -0.2974, 0.629, 1.348, 0.6553, 0.8037, -0.07745, -0.2188, -0.4023, 0.5864, -1.362, 0.1041, 0.3394, 0.12006, -0.185, -1.568, 0.4575, 0.2686, -0.2869, -1.451, 0.1825, 0.01329, 0.3743, -0.1538, 1.682, 0.1954, -0.3442, 1.533, -0.1747, 0.946, -0.5684, 0.1968, 0.8096, 0.6064, -0.6426, -0.1672], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1921, -0.4143, -0.2625, -0.2292, 0.02974, -3.607, 1.157, -0.5786, -0.15, -0.0457, 0.4797, -0.535, -0.4617, 1.553, 0.6313, 0.06635, -0.353, -0.1267, 1.066, -0.657, -0.2362, -0.3342, 0.1666, -0.5215, 0.597, -0.4438, 0.01483, 1.334, -0.1409, -0.4797, -0.34, -0.4138, -0.113, 0.6177, 0.05988, -1.684, -0.7397, -0.0523, -0.1798, -1.15, 0.567, 1.441, 0.7017, -0.1799, -10.234, 0.54, 0.3289, -0.1549, 0.1631, 0.8286], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5376, 0.3047, 0.9805, 0.823, 0.2412, 0.06793, 0.75, -0.3198, 0.259, 0.1378, -0.05344, 0.6616, 1.099, -0.846, 0.07043, 1.048, -1.28, 0.3586, -2.43, 0.10645, -0.3154, -0.03278, 0.2986, -1.017, 0.248, -0.449, -0.03436, 0.82, 0.536, -0.1593, 0.3865, 0.4514, -0.1669, -0.7993, -0.707, 0.8228, -0.1482, 1.118, 1.853, 0.0512, 0.81, 0.4553, -0.588, 0.3237, -0.7812, 0.4692, 0.1643, -0.371, 0.318, 0.818], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.426, -0.4307, 1.599, -0.1602, 2.459, 1.399, 1.966, 0.4363, -0.9917, 1.564, 1.323, -0.5166, 3.172, 2.97, 0.366, 2.398, 0.8745, 1.054, 2.746, 3.627, -0.3333, -1.566, -0.1965, -0.689, -0.6113, 0.629, 0.8223, -0.7075, -1.8125, 0.0347, -1.0625, 0.764, 0.8853, 0.648, -0.2361, -0.525, 2.355, 2.453, 2.646, 1.23, -1.084, 5.062, 1.235, 0.753, 1.45, 0.3809, -0.2642, 0.2188, -0.2776, 0.6255], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5283, -0.5996, -0.4595, -0.671, 2.582, 0.254, 2.746, 0.9766, 0.3174, 0.07446, 0.1608, -0.5405, 1.025, 0.2408, 0.6045, -0.908, -7.418, -0.3096, -4.586, -0.1608, 0.1378, -0.065, -0.541, 1.423, 0.1032, 0.0754, 0.3835, 1.124, 0.4187, 0.6577, -0.3445, 2.404, -0.634, 0.2065, -1.794, 0.129, 1.32, 0.3997, 0.2131, 0.3494, 0.4731, 1.146, 0.3174, -0.04083, 1.392, 0.06836, 0.3044, 0.55, 0.3848, 0.7847], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2081, 0.2495, -0.6836, -0.51, -0.827, 0.1481, 0.577, 0.0967, 0.338, 0.5933, 0.6777, -0.1787, 0.3364, -1.09, 0.2114, -4.31, 0.2227, -0.1841, -0.661, 0.338, 0.051, 0.0932, 0.2157, 0.666, -0.2347, -0.10315, -1.379, -0.06604, 0.11346, -0.11633, -0.3245, -0.6543, 0.02872, 1.567, 0.1382, 0.3828, -0.455, -0.3264, 0.4473, -0.3123, 0.1665, -0.957, 0.2074, 0.6323, 0.1383, 0.0925, -0.4448, -0.0165, -0.0454, -0.1821], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1808, 0.5815, -0.559, -0.1129, -0.2927, 1.114, -0.549, -2.545, 0.3662, 0.5234, 0.4841, 0.693, 0.877, 0.402, -2.303, 0.669, 0.8413, 0.11835, 0.1509, 1.331, -0.1625, -0.302, -0.299, 2.045, -2.816, -0.444, -0.483, 0.6406, 0.4517, 0.522, 0.6665, -0.1366, 0.1023, 0.7646, 0.3157, -4.332, -6.637, -1.043, -0.7114, -0.2551, -0.3975, 0.10895, -0.388, 1.647, 0.1816, -2.17, -0.5107, -0.876, 0.1844, 1.191], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.204, 0.766, -0.831, 0.609, 1.235, 0.516, 0.3555, 1.19, 0.3547, -0.636, -1.368, 0.4087, -0.12134, 0.7603, 0.2008, 0.221, -0.4736, 0.1255, 0.1123, 1.7, -0.015594, -0.773, 0.11566, -0.7036, -0.236, -0.1981, 0.3054, 0.855, 0.623, -0.06146, 0.1708, 1.563, 0.0616, 0.4583, 0.0753, -0.659, 0.05652, 0.1615, 0.04196, -1.347, -0.10626, 2.191, -0.2269, 0.1476, -1.933, 0.454, 0.2932, 0.7173, 0.65, 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.1121, 0.2496, 0.326, 0.3604, 0.7935, 0.1481, 0.3237, 0.738, 0.264, -0.4373, 0.06052, 0.2042, 1.225, 1.606, 0.3538, 0.969, 0.2092, -0.4753, -1.234, 1.672, 0.06995, -0.6665, 0.204, 0.729, 1.313, 0.679, 0.4133, 0.6953, 0.6465, 0.05472, -0.7993, 0.2607, 0.297, -0.7837, 0.1548, 1.016, 0.8228, -0.8496, 0.307, -0.1836, -0.5024, 1.223, 1.329, -1.274, -2.01, -0.857, -0.458, -0.3728, -0.119, 0.6904], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2037, 0.09906, 0.0519, 0.313, 0.9844, 1.907, 1.261, -0.992, 0.9155, -2.111, -0.6787, 0.1538, 0.872, 0.1376, 0.197, 0.3506, 0.814, 1.335, -0.9756, 1.012, -0.277, -0.531, 0.165, 1.221, -0.2322, 0.712, 0.4114, 1.091, 1.748, 0.0813, -0.2505, 2.406, 0.1183, 0.0872, -1.058, -1.367, -1.031, 1.516, 0.4714, -0.8027, -1.151, 1.898, -1.076, -0.257, 0.62, -0.301, -0.3774, 0.578, -0.6353, 0.407], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3655, -0.2742, 0.264, 0.5947, 1.599, 1.225, 0.672, 1.187, -0.811, -0.8457, -0.3423, 0.4102, 3.727, 1.719, 2.223, 1.626, 1.148, -0.4116, 1.681, 0.8755, -0.1543, -1.052, -1.162, 1.911, -3.986, -2.262, -0.23, 0.5522, 3.074, 0.549, -0.0679, 1.478, -0.538, 0.3865, 0.01308, 1.132, 0.261, 0.8574, 0.933, -0.676, -0.0729, 1.87, 1.739, -3.9, 3.145, -2.549, -0.925, 0.235, 1.012, -0.07446], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.459, 1.575, -0.2778, -0.505, 0.4866, 2.367, 0.8813, -1.555, 2.15, 0.04056, 1.292, -1.099, 0.516, 1.655, -0.602, -2.346, 0.824, -2.566, -0.3225, -1.243, -0.514, 0.535, -1.413, -1.694, 0.2761, 1.234, -1.661, -1.222, -1.172, -1.771, -1.463, -2.375, -1.308, -1.18, 0.03326, 0.4448, 1.124, -1.293, 1.916, 1.944, 0.8276, -5.03, 1.771, -1.755, -0.9424, -0.8125, -0.04153, -0.08856, -0.0693, 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.397, 0.3037, 0.3076, -0.314, 0.755, -3.107, 1.165, -0.04163, -0.3323, 0.826, 0.10443, -0.579, -2.822, -0.462, 0.4778, 1.5625, -0.3374, 1.851, 1.578, 1.388, 0.2734, -0.4314, 0.2522, 0.003536, -0.5093, -0.537, 0.745, -0.19, 1.809, -1.175, 0.2505, 0.7593, -0.3323, 0.4094, -0.439, -0.3857, -0.0913, 0.771, -1.539, 0.2025, -0.4182, 0.723, 1.257, -0.0705, 0.529, 0.111, -0.12286, -0.4043, 0.4487, -1.208], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.443, -0.1251, 0.1843, -0.4805, 1.181, 1.038, 0.2737, 0.747, 0.2423, -0.2046, -0.8057, 0.3142, 0.2573, -1.222, 0.2688, 1.371, -0.5435, 0.1644, 0.537, -0.2241, 0.1475, -0.069, 0.11743, 0.4639, 0.2401, 0.352, 0.688, 1.114, 0.945, 0.2695, -0.08356, 0.2205, -0.6206, 0.2167, -0.3384, 0.947, -1.515, 0.897, 0.8076, 0.258, -1.676, -0.09485, 0.3682, -2.729, 0.8706, -0.351, 0.2351, -0.553, 0.4626, 1.199], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1201, -0.3655, -0.5757, -0.5034, -0.753, -1.446, -1.303, -0.3667, 0.726, 0.458, -0.7144, 0.462, -0.3572, 0.4727, -0.1661, 0.8457, -0.306, -0.5396, -0.3186, -0.737, 0.1456, 0.2197, -0.2554, -0.049, 0.2954, -0.4363, -0.0753, 0.662, -0.5605, -0.2903, 0.398, -1.173, -0.02336, -1.235, 0.3806, -0.7656, 1.198, 0.4324, -0.05942, -0.4023, 0.533, 0.8667, 0.1054, 1.293, 0.416, 0.1438, 0.2145, 0.2563, 0.04526, 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.087, 0.631, -0.1613, -0.2322, -2.877, 0.237, 0.647, 0.5107, 0.4814, -2.025, 0.452, -0.1249, -0.8296, -0.013695, 0.9873, -2.344, -0.11755, 0.1284, 1.437, -1.241, -0.1124, 0.641, 0.9727, -1.325, -0.74, -0.3823, 0.0572, 1.03, 1.995, 0.4412, -0.3667, -0.608, 0.688, -0.04797, 0.0365, 0.661, 0.54, -3.924, 0.4006, 0.1926, 0.3206, -0.8765, 0.4285, 0.546, 1.228, 0.3933, -0.4668, -1.078, 0.9907, 0.3186], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2288, -0.0869, -0.572, 0.9624, 0.591, -1.057, -0.3599, 0.8936, 0.007427, 0.378, 0.1554, -1.183, -2.1, 0.4465, -2.238, 0.006874, -0.5425, -0.466, -0.5034, -0.861, -0.2147, -0.3428, 0.8438, -1.105, -0.9683, -0.749, 0.0552, -0.878, -2.582, 1.276, -0.251, -0.812, -0.7573, 0.1326, -0.3457, -1.956, 0.8975, 1.959, -1.031, 0.6396, 0.01112, -5.246, 1.075, 0.833, -0.2834, -0.4905, -1.215, -0.8555, -0.5146, -0.2021], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.549, 0.607, 0.672, -0.662, -0.3442, 0.97, 1.233, -0.3306, 1.056, 0.854, 1.688, -0.4167, -0.637, -0.3843, 0.527, 1.044, 0.8535, 0.4028, 1.32, -0.394, -0.2732, -0.2666, -0.1862, 2.158, 0.8936, -0.4663, 1.06, -1.045, 1.834, -1.313, -0.3657, 0.643, 0.69, 1.579, -0.1603, -0.816, 2.68, 0.548, 1.131, -0.8047, 0.04694, 1.555, 1.254, -3.004, -0.2656, 0.7188, -2.1, -1.059, 0.0391, -0.549], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1608, -0.4902, 1.165, 1.338, 3.379, -0.2432, -1.696, 0.9087, -0.2583, 0.4146, 0.3225, 0.7427, 0.753, 1.177, 1.41, -0.1178, 0.5, 1.375, -1.384, 2.09, -0.4697, -0.702, -0.1493, 1.086, 0.2166, 0.854, -1.078, -0.829, 5.492, 0.306, -0.4114, -1.629, 0.3823, 1.304, -0.07916, 0.6763, -0.8833, 2.03, -0.2783, -1.204, 0.1882, -0.3674, -0.3503, -0.2106, 0.6455, 0.1584, -0.819, 0.9175, -1.126, -0.4983], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9106, -0.444, 0.8486, 0.2057, -0.1089, 1.905, 2.102, 3.137, 0.2341, 2.041, 1.353, -0.78, 2.785, 1.111, -1.297, 1.208, 1.27, 2.115, -2.402, 1.342, -0.3909, -1.103, -2.086, 1.062, -0.7104, 2.035, 0.4998, 3.38, -0.321, 0.928, 0.1047, 3.768, -0.1587, -1.889, -0.635, 0.05237, 2.043, 1.207, 2.867, 0.489, -0.4714, 0.8994, 4.004, 0.741, 1.012, -0.1438, -0.0913, 0.1931, -0.9087, -0.943], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.872, 0.4004, -0.4172, 0.3457, 2.57, 3.291, 0.859, 0.0788, -0.1577, -0.014, -0.9863, -1.063, 1.218, -5.664, 1.34, 1.426, 0.5996, 0.8755, 2.621, 1.281, -0.3684, -0.4592, 0.049, -0.7095, -1.211, 0.02205, 0.3638, 2.055, -0.2786, 0.1675, 0.918, -2.38, 0.01955, -1.59, -0.07166, 0.711, 0.0668, 1.219, 0.6123, -0.012085, -0.4883, 1.056, -1.324, 0.555, 4.34, 0.1897, 1.127, 0.595, 1.025, -0.1669], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.616, 0.9355, 0.25, -0.1796, -4.65, 0.3376, -2.93, -0.2382, -0.3953, -0.935, 0.2289, -0.777, 0.9316, -0.3442, -1.129, 1.343, 0.3872, 2.59, -9.26, -0.03058, -0.1975, 0.2598, -0.382, -0.9927, 0.1222, 0.927, 0.1971, -0.7573, -1.522, -0.7515, 0.2466, -2.387, -0.3835, 1.623, -0.4568, -0.5107, 0.9414, -0.2048, -0.0821, -0.422, 0.3064, 0.672, -2.477, -1.316, 0.09125, 0.6196, 0.694, -1.189, -0.796, 0.10406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.408, -0.2141, -0.5938, -1.111, -0.1326, 1.347, 0.614, -1.061, 0.6167, -0.457, 0.405, -0.2394, 1.554, 0.1323, -0.3176, 1.459, 0.2825, -0.11847, 0.1901, 0.04944, -0.243, -0.1211, -0.000285, -0.529, 0.6655, -0.559, -0.4077, -1.004, 0.374, -0.1761, 0.2615, 0.1477, 0.0677, -0.2072, 0.393, 0.829, 1.092, 0.1815, -0.906, -0.2408, 0.0934, 0.2163, 0.7656, -0.6226, 0.588, 1.002, 0.01733, 0.7046, -0.007397, 0.7437], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.006336, 0.3113, 0.9023, 1.014, 0.861, 2.104, -1.457, 1.847, 1.557, -0.744, -0.05432, 0.351, 2.273, 0.323, 0.835, 1.654, 1.097, 0.5586, 4.1, 1.175, -0.12427, -0.7266, -1.579, 2.033, 1.513, -1.261, 1.242, 1.126, 2.64, -0.6616, 0.8335, 3.102, -0.6055, 0.1785, -0.595, -0.8506, -1.692, -0.819, 1.853, -0.3508, -0.5557, -0.4211, 0.1637, 2.24, 2.371, -3.91, 0.1755, -0.03134, 0.772, 1.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.21, 1.818, -0.77, -1.844, -0.848, -2.98, -2.092, 1.229, -0.0509, 0.3042, 0.6567, -1.214, 0.1167, -1.517, -2.746, -3.451, -1.665, -4.066, 0.8716, 0.236, 0.1726, 0.6016, 0.5483, 1.721, 0.2764, -0.1824, -3.732, -1.674, -0.2607, 0.4805, -1.24, -1.819, -0.3, -3.334, -0.5605, -2.338, -1.79, -0.7534, -3.066, 0.6074, 0.572, 0.07104, -0.00913, -1.129, -1.207, 0.695, -1.624, 0.4597, 0.1844, -0.719], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05096, 0.02748, -0.02954, 0.0044, 0.03099, -0.05167, -0.03403, -0.01651, -0.04135, 0.02773, 0.002594, 0.01836, -0.02946, -0.03992, 0.004715, 0.02168, -0.04453, -0.03217, -0.02682, -0.0501, -0.01837, -0.0432, -0.039, -0.02011, 0.0424, -0.01793, 0.02809, -0.002745, 0.001311, -0.03247, -0.0443, -0.02742, -0.0169, -0.02208, -0.04147, -0.005585, -0.01613, 0.03873, 0.01409, -0.02888, -0.04623, -0.02977, -0.0228, -0.04132, 0.01814, -0.0422, 0.0381, -0.02162, 0.0461, 0.03534], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4888, 0.3977, 0.4094, -0.0989, 0.3845, 0.499, 1.207, 0.3052, -0.2219, 0.6543, 0.4795, -0.4514, 0.673, -0.143, -0.401, -1.592, 0.587, 0.09125, 2.285, -0.833, 0.10223, 0.2439, -0.3499, -1.614, -0.4753, -0.313, -2.166, 0.6733, 1.809, 0.964, -0.46, 0.1298, -0.3147, -0.0858, -0.3582, 0.1333, 0.1158, -1.789, -1.029, 0.1187, -0.305, -1.118, 0.5693, -0.03177, -1.969, 0.2263, -0.2461, 0.1642, 0.318, -0.3152], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7856, -3.227, 1.367, 0.1709, -0.297, -1.216, 0.3098, -1.354, -1.155, -1.899, -1.972, -0.4749, 0.8115, -0.8975, -0.4573, -0.1455, 0.273, -0.5283, -2.498, -2.035, 0.11053, 0.797, 0.865, -3.416, -1.144, -0.908, -1.331, 1.184, -0.7354, 0.193, 0.4622, -0.8564, 0.575, -2.676, 0.3738, 1.582, -5.184, -3.066, 0.673, -2.053, -0.9004, -1.044, 0.9565, 0.524, -3.604, -1.902, 1.529, -0.613, 0.3271, -1.248], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6445, 0.1858, 0.718, -3.85, -0.8555, -0.36, -4.543, 0.767, -0.7065, 0.365, 0.03041, -0.3162, 3.586, -0.5527, -0.738, 0.674, -0.2131, 2.434, -1.539, -3.748, 0.6978, 1.219, 0.00501, -0.7275, 0.0916, -0.3616, 0.1798, -2.697, -0.6963, 0.1109, -0.4316, 0.817, -1.248, -5.156, 0.2217, 1.251, 0.6147, -2.648, -1.668, 0.673, 1.288, -1.088, -0.5806, -1.488, -3.63, 1.327, 0.006504, -0.06018, 1.4375, 0.1859]]
[-2.15674, -3.22495, -1.02033, 0.950154, 0.0840506, -0.0186542, 0.293301, -1.00072, 1.79445, -1.18848, -0.0261749, 0.462902, 0.0826451, -0.466388, -2.29081, 0.154523, 1.07079, 0.0936854, -2.04768, 1.20679, -0.0189353, -0.582104, -0.806404, -2.41985, -4.54864, -1.1103, -0.671971, 0.890811, -1.04141, 2.08079, 0.802197, 0.286884, -2.20878, -0.581339, -0.555668, 0.211378, 0.180936, 0.845323, -2.14989, -0.0875939, -3.03619, -3.29641, 0.913547, -1.79176, -0.972374, 1.00209, -0.00607805, 2.33785, -2.55795, 0.345064, -2.156, -3.225, -1.0205, 0.95, 0.08405, -0.01866, 0.2932, -1.001, 1.795, -1.188, -0.02617, 0.463, 0.08264, -0.4663, -2.291, 0.1545, 1.07, 0.0937, -2.047, 1.207, -0.01894, -0.582, -0.8066, -2.42, -4.547, -1.11, -0.672, 0.8906, -1.041, 2.08, 0.8022, 0.2869, -2.209, -0.5815, -0.5557, 0.2114, 0.1809, 0.845, -2.15, -0.0876, -3.037, -3.297, 0.9136, -1.792, -0.972, 1.002, -0.006077, 2.338, -2.559, 0.345]
ReLU
[[1.43112, 4.31301, -0.301041, -0.605254, 0.320094, -0.0317215, 1.37374, -4.86013, -0.920163, -1.64619, 0.0370772, 1.31094, 2.25752, 0.304059, 0.880832, 2.40299, 0.0196916, -0.679549, -1.17627, -1.54233, 0.00745565, 2.35344, 1.95514, -0.256025, 1.62532, -0.59479, 3.0106, 1.65058, 2.18032, -1.14437, -0.542448, -0.0567694, -0.245443, 3.69616, -0.691522, 1.35579, 1.02104, 1.74792, 2.50789, -0.574834, -3.04771, 0.067748, -0.450876, 5.05651, 1.18493, 2.5475, 0.0372587, 0.0251881, 2.45308, 0.390095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.375541, -1.00134, -0.493168, -0.535149, -0.081944, -0.0242433, -0.172832, -2.01816, 0.523452, -2.45396, 0.0157927, 0.463404, -1.42426, -6.13992, -4.28411, 1.5685, -1.13004, -3.87854, -1.73203, -1.58984, -0.0194692, -0.835688, 0.937317, -1.14801, -2.8622, -2.59055, -1.32438, 1.889, -0.55322, 0.481685, 1.44046, -0.0858688, -0.807697, -2.74562, 1.0133, -1.22921, -1.14319, -1.53232, 1.5713, -0.746488, -5.06944, 0.172506, -0.750965, -0.357661, -2.62213, 0.213876, 0.0426767, -0.0903622, 1.68298, -0.465945, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05433, -1.45399, -0.248167, -0.276648, -0.146764, 0.033715, 1.18733, -0.406442, -0.272846, -0.402211, -0.0439628, 0.399221, 1.3189, 0.213478, -0.892199, 0.159029, 0.0482981, -0.82216, 1.18645, 0.111801, -0.0201364, 1.91306, 2.07595, 0.533435, 0.135415, 1.25716, -0.553555, -0.393184, -1.53994, 0.972832, 0.283635, -0.172163, 0.188071, 2.9551, -0.532452, 0.0902278, 0.453125, 0.258604, -0.363336, -0.455931, 0.0715109, 0.261768, 0.551592, 1.78964, 0.161119, 1.21592, -0.0425497, -0.193654, -0.357986, 0.194884, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0366798, -0.0288573, 0.00601152, -0.027567, -0.0231012, 0.0283142, 0.015515, -0.00642077, -0.00646096, -0.0363672, -0.0155045, -0.0327006, -0.0582852, -0.0435608, -0.0303585, -0.0237043, -0.00955869, -0.0278246, -0.0354703, -0.0122727, 0.0107847, 0.00521221, 0.0415514, 0.0217202, 0.0187732, -0.0129856, -0.0460962, 0.0274296, -0.0416315, -0.0509321, 0.0267527, 0.0201962, 0.0145166, 0.0401045, 0.0280718, -0.0292937, -0.0481904, 0.0267864, -0.00824184, -0.00670983, 0.023663, 0.0215109, -0.0350019, 0.00802254, 0.0117805, -0.0451424, -0.0502905, -0.00371956, 0.0335945, -0.0394815, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.91469, 4.69983, 0.0297228, -5.1931, -1.65702, -0.0519868, 2.98272, -2.21397, 1.27426, -3.75424, 0.00828375, 2.3221, -6.85765, -4.75191, -1.83898, -0.762838, -3.54298, -0.0405965, 1.11045, -1.7034, -0.0683914, -1.69744, -5.11911, 3.34521, -0.762356, -6.68231, -3.24378, 0.996496, -3.42275, 1.38786, -1.64985, -5.31552, 1.56783, -0.126951, 0.300037, -2.66352, 0.577961, 1.82514, -1.55316, -3.75532, -0.218726, -1.02326, -2.55658, 1.09269, -2.62615, 2.4104, -0.0370752, -1.2738, 2.53268, 0.655084, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.496835, -3.20558, 0.209267, -0.121703, -0.0826702, -0.0254996, -0.0466714, -0.410526, -0.0874608, -6.23006, 0.00538334, 0.503734, 0.801143, 0.830936, -3.55007, 1.09462, -0.0172379, -3.47682, 1.68778, 0.0651064, 0.0107928, 0.00554289, -2.40633, -0.696298, -2.56562, -1.26349, 0.447752, 0.0397329, -1.53062, 0.0447663, -0.989248, 0.074525, 0.627763, 0.689348, -0.224957, -1.1538, -0.0339904, -0.371123, -0.712386, -0.924592, -1.21474, -0.715907, -0.32747, 1.32614, -0.907558, -0.210121, 0.0470235, 0.433511, -0.534272, -0.16323, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.99274, 0.867363, -0.645997, -0.234737, 1.05508, -0.00712833, -0.190058, -2.64529, -0.054897, -0.376856, -0.0360816, 0.25914, 0.14621, 0.367758, 0.564164, 1.07701, 0.338142, -3.20702, -0.204685, 0.246962, -0.0301885, -1.05481, 1.12267, -0.521493, 1.48399, -0.33883, -0.143307, -1.73456, 0.291422, 0.231959, -0.653756, -2.30267, 1.0349, -1.05985, -0.673254, 0.0971955, 0.299942, 1.43188, -1.92529, -0.180769, -0.238849, -1.45497, -1.22677, 0.0729619, -0.920065, -0.0984032, -0.0184434, -0.968966, 0.713281, 0.481144, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.011999, 0.357741, -0.316217, 0.0699181, -0.251312, 0.0499589, 0.36967, 0.437432, -0.0113047, -0.0817194, 0.0312171, 0.150834, -0.230101, -0.190676, 0.28357, -0.0333748, 0.0455894, 0.221744, 0.0447313, -0.396244, -0.0212227, -0.197677, -0.301812, 0.280591, 0.222307, -0.06065, -0.14207, -0.359256, 0.438173, -0.163891, -0.493573, -0.242914, -0.352188, -0.17116, -0.0666412, 0.00021323, -0.0768797, -0.218365, 0.162532, -0.118214, -0.110926, 0.421289, 0.027952, -0.661037, -0.043695, -0.53601, 0.0271603, 0.19645, 0.0400089, 0.141249, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2054, -1.54507, 0.235671, -0.680451, -2.71754, -0.0312155, -2.82901, -3.22473, 0.616441, -4.56153, 0.019746, 0.606904, -1.68921, -0.509465, 0.647287, -0.88157, 0.184298, -0.705644, -4.1386, -2.77259, 0.0195953, -2.24734, 1.41616, -4.87388, -5.43835, -2.04042, -1.32197, -1.43969, -1.68228, -1.82792, -1.69099, -2.18002, -3.81864, -0.317402, -4.19236, 0.400587, -2.07979, -2.00599, 0.252308, -1.00333, -3.60217, -3.43485, -3.35879, 1.04273, -3.73505, -0.871636, -0.0185542, 1.54545, -2.20623, -0.404052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0208859, -0.600033, 0.345976, -4.80122, 1.05722, -0.0344279, -1.82906, -2.05727, 0.359214, -0.151824, -0.006459, -0.109503, -0.0691314, -0.553343, 0.805543, -1.23336, -0.859197, 0.49068, 5.06183, -0.306285, 0.025505, -3.18298, -1.95366, 1.37051, 1.83203, -2.43211, -0.204526, -2.03787, 0.76676, -4.1976, -2.5169, 2.44084, 1.00767, -1.93165, -0.0900162, -1.21949, -2.63835, -1.23698, 1.0344, -4.52283, -3.50728, -0.51581, -0.862584, -4.37138, -1.29396, 5.19159, 0.00249593, -2.93744, -2.80131, -2.25577, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.509354, -0.27801, 1.6245, 1.49401, -1.45314, -0.00658771, -0.753158, -0.646832, 1.49991, 0.364423, 0.00372731, -0.020489, 2.4237, 0.197235, -4.88253, 0.773379, -0.170332, -2.628, -1.58001, -0.108706, 0.0310911, 1.9124, -1.39101, -1.46225, -0.0331895, -1.56692, -2.15018, -1.94892, -1.68212, -4.73316, 0.119972, -0.111522, 2.00936, 0.111042, -0.295946, 0.544791, -0.886899, 1.695, -3.26724, -1.75305, -1.44173, -0.474752, -0.187233, -0.853621, -0.0944892, -0.678468, 0.0123673, -0.0560978, -0.55762, -0.739582, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.86781, 0.13534, 0.779298, 0.224872, -1.92361, -0.0356798, 0.0076989, -0.469261, -0.0123779, 0.383, -0.0508117, 0.52391, -0.121289, -0.56397, -1.00933, -0.657566, -0.311325, -1.64069, 0.623071, 0.127885, -0.0325905, -0.990264, 1.40543, -0.621603, -6.90653, -0.0443581, 0.717566, 0.770388, -0.27456, -2.23467, -2.84339, 1.52093, 0.277373, -0.562102, 1.17453, 0.296879, 0.918718, 1.33353, 0.07912, 0.366334, -10.757, -0.331444, 0.591822, -1.04966, -1.58679, -0.134011, -0.0338842, -0.347791, -0.478804, -0.43266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.111525, -2.46561, -1.64105, 0.302366, 0.0354287, -0.029379, -0.351741, -1.66172, 0.139154, -3.43191, 0.000101093, 0.700908, 0.431611, -5.00096, -5.5301, 0.375882, -0.90331, -3.60795, 1.10617, 0.553811, -0.0146676, -1.92348, -4.01237, -8.31866, 0.0725284, 0.606872, 1.07916, 1.43057, -0.161595, -1.3827, -1.77613, 0.84892, -4.64397, -2.30278, 0.423634, -1.9074, -0.586249, -3.71082, -5.46289, -1.68402, -0.117939, -1.90641, 1.60193, -5.34698, -1.55097, -0.307607, 0.0321825, -2.18755, -0.316223, -0.0383659, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.5137, -1.17675, -0.381757, -1.35602, -1.00701, 0.0221146, 1.73016, 1.41762, 0.494894, -4.80069, 0.0414874, -0.591208, -1.7785, 1.56442, 1.72133, 0.157462, -0.671942, 0.03288, -3.27926, -2.34366, -0.00461799, 0.981481, 0.0715797, -1.57452, -0.676928, -0.344584, -3.32466, 0.100088, -2.48112, 0.349678, -3.14082, 0.724438, -0.0906012, -2.34032, -0.861807, -0.321315, -0.15477, 0.188696, 0.519987, -0.667458, -1.28834, 0.643209, 0.061221, -6.90769, -0.571885, 1.52489, -0.0396672, -0.346949, -0.297447, -0.482164, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.311257, 2.0439, 0.418549, -0.743829, 0.967157, -0.0461563, 1.27397, -0.422723, -0.543472, -5.98142, 0.0458216, 0.375474, -0.835339, 3.50606, 1.77936, 2.41808, -0.280234, 2.52087, -1.88022, 0.717697, -0.0351473, -0.494652, -0.772305, -0.758656, -1.36927, 0.228585, 2.25945, -0.395541, 1.51937, -0.304446, -1.83887, -0.528999, -1.8055, 1.12521, 1.08383, 0.672214, -0.365854, 0.724, -1.47263, 0.526248, 1.33087, 1.59201, 1.10528, 0.562669, -0.0796321, 2.07856, 0.0259798, 0.601389, 1.48614, 0.14984, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.241857, -0.368705, 0.31783, -1.48734, -0.941279, 0.0292649, -1.58597, -0.251915, 0.110581, -1.86319, 0.0191359, 0.20854, 0.358101, -0.779052, 0.50238, 0.533218, -0.735461, -0.899276, -0.876377, -0.314234, -0.0284913, 0.499276, -5.85579, -0.826683, 0.312557, -0.228629, -2.21045, 0.247666, -0.167481, 0.468473, -0.500113, -1.13703, -3.94077, -0.767887, 0.142579, -0.233999, -0.424875, -1.19145, -0.858372, 0.131259, -0.0594558, -0.488332, -0.586845, -5.42373, -0.550549, 0.0537542, -0.0387661, 0.146759, -0.839508, -0.146071, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.289582, -0.441833, 0.819811, -0.0594419, -0.196877, -0.0321653, 1.4357, -3.91743, 0.00141042, -2.57971, 0.00578551, -0.520656, 0.399576, -3.87402, -0.150542, 0.920589, -0.461503, -0.87022, -0.00359606, 0.92653, 0.00968207, -0.517762, -0.497288, -0.759455, -3.28813, 0.110795, 0.0773224, 0.844737, -1.43194, 0.315914, -1.53607, -0.788002, -2.67503, -0.335565, -1.04616, 0.0970265, 0.850653, -1.24447, -0.413545, -0.564862, -2.19634, 0.920636, 1.57096, -4.68263, -2.69576, -0.0453206, -0.033793, 0.422641, -1.77646, -0.434273, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.288582, -1.70637, -4.91283, -0.291567, 0.975205, 0.0163423, -1.31695, -1.58584, 0.0514162, 0.238976, 0.0163856, 0.176043, 0.1948, 0.377485, -0.245538, -5.39158, 0.169415, -1.2812, 1.43397, -0.839717, -0.0193949, 0.37907, -0.754603, 1.08283, -0.842979, -1.1097, 0.632814, 0.107481, -0.948851, 0.0994708, -1.30893, -0.264583, 0.908482, -4.13254, 0.472389, -0.0960553, -1.19641, -0.332077, 2.61681, -0.0132642, -0.0258005, -0.0805507, -0.988439, 1.5611, 0.653161, 0.774514, -0.0158786, -0.122988, -2.08016, -0.526384, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0980346, -1.75634, 0.14443, -0.0969049, -0.440865, -0.00966776, -0.505308, -2.9362, 0.117953, -0.0452465, 0.0419007, 0.176386, -1.31714, -0.967087, 0.374723, 0.122358, -0.28259, 0.16212, -1.00937, 1.19978, 0.00802215, -0.256744, 0.252099, 0.428905, -0.00572594, -1.0954, -0.746916, -0.32188, -0.39343, 0.368037, -0.913505, -1.41061, -0.242165, 1.13358, 0.476044, -0.140544, -0.21695, 0.202862, -0.909176, -0.341488, -0.594021, -0.343236, -0.625014, -2.25354, -2.02482, -2.81193, 0.0297603, -0.107411, -0.406076, -0.140612, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.471918, -0.282686, 0.154126, 0.0821381, 0.564859, 0.0503284, 0.224378, -3.34949, -0.31244, -0.117383, 0.000243539, 0.237988, 0.964643, -0.860771, -0.317415, -0.0989744, -0.0467137, -1.41376, -3.06392, 0.591001, -0.0552737, 0.186906, 1.80116, -3.01537, 1.295, 0.42359, 1.00886, 1.13372, 0.64117, 0.156553, -1.60635, -0.86078, 0.418651, 0.937302, 0.365133, 0.757232, -0.181958, -0.12764, 0.437519, -0.0208472, -5.05471, 0.681694, 0.859822, -0.0279252, -0.682601, -0.105111, -0.0187944, 0.195781, 1.53189, 0.371364, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.991781, -0.457647, 1.6394, 0.336669, 0.465985, -0.0202855, 0.238029, -1.19825, -0.74852, 1.21319, -0.0148745, -0.15861, 0.630539, 1.54846, 2.82474, 2.85669, 0.311156, 0.760463, 2.62052, 0.0473241, 0.026487, -0.0727319, 1.8481, 2.04618, -2.25055, 0.142394, 2.00826, 2.7258, 1.73273, 1.20424, -2.96728, 0.683651, -0.106726, 1.31859, 1.75366, 2.46377, -0.723982, 0.0573846, 1.29433, 0.417847, -7.17973, -0.715836, 1.36855, 2.33064, -2.37541, -0.513541, 0.0250373, 1.80241, 0.00541462, -0.930477, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.387966, -0.281104, 0.245981, 0.201726, 0.0917268, 0.0431692, -0.662501, -1.33598, 0.104944, -0.188135, -0.038759, -0.411499, 0.807489, 0.0854896, -0.86545, -1.05945, -0.385646, -1.59343, -0.398654, 0.233586, -0.00840077, -0.225171, 0.229102, 0.211104, 0.877832, 0.0496111, 1.0725, 0.424841, 0.826414, -1.14322, -2.177, 0.870514, 0.352636, 0.104057, -0.0236526, -0.0322385, -0.861694, 0.13641, -0.362013, 0.283922, 0.41143, -0.359002, -0.472748, -0.801115, 0.403437, -0.13286, 0.0195498, 0.533697, 0.0555169, -0.259398, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.08514, -0.462614, -0.567422, 0.168026, 0.229873, 0.0194303, -0.0538274, -1.44258, 0.0411945, -6.26473, -0.0397948, -0.572542, 0.188556, -0.381468, -0.692982, -0.279404, -0.0857959, -2.13461, 0.0935426, -0.713225, 0.0166609, -1.21168, 1.88831, -2.80169, -1.5196, -0.853496, -2.17878, 0.794401, 0.67344, -0.193734, -3.25177, -0.261388, -5.62649, -2.541, 0.874321, 0.19102, -0.0434056, 0.80614, -2.09314, -0.960589, -0.814552, -0.974064, 1.27199, -0.814964, -0.109524, -0.258917, -0.0206987, -0.940091, -0.800652, 0.0147839, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.150613, 0.986506, 0.128723, 0.1914, 1.02888, 0.038496, -0.785765, 0.329386, -0.4703, -1.03911, 0.0415879, -0.140014, 0.0252064, -0.402885, 2.63845, 3.04045, -0.526336, 1.48525, -1.35061, 1.02327, 0.0525672, 0.3906, 1.0958, 0.173554, 1.46919, -0.933242, -2.5517, -2.33646, -0.165218, 0.0166081, 1.30709, 0.967421, 0.407981, 0.430145, 0.734062, -2.79583, 0.565144, -0.568374, 0.778053, -0.133412, -0.627275, 1.0424, 2.06266, 2.07539, 0.369135, 2.1261, -0.0493077, 0.516049, -0.673539, -0.94562, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.586439, -1.09283, 0.576615, 0.645338, 0.96239, -0.0495757, 0.876156, 2.51002, -0.670464, -2.92322, 0.0121303, -1.13825, 0.309576, 2.79152, 0.9916, 2.15539, -0.162515, 2.75468, -0.792875, 1.253, -0.00860557, 0.324507, 4.28709, 2.05395, -0.467539, -2.13849, 0.505657, 3.05426, 0.0605655, 0.896352, -2.09637, 0.219218, -0.84786, 2.59489, -0.939619, -0.389584, 0.451151, 2.22913, 0.471914, -0.0696671, -1.28698, -0.83039, 2.70737, 0.532162, 1.1314, 0.550853, 0.0264488, -0.00694964, 2.24081, 0.89019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.0549, 2.32782, 0.604465, -2.67468, -0.767335, -0.0320071, -0.635181, 1.7725, 0.327296, 1.79272, -0.0492067, 0.375516, -1.94925, 0.232062, -0.680507, -1.28417, -0.621307, 0.693483, -0.624941, -0.777186, -0.0152593, -0.592431, -0.442473, -0.228163, 0.0862508, -1.413, -2.75048, -1.1264, -0.542547, 1.11348, -1.17435, -2.49688, 0.829492, 0.327511, -0.51079, -0.0566684, -0.365982, -0.374821, -0.830787, -1.11595, -1.59813, -1.11242, -1.32983, -0.0302512, -1.48969, 0.580072, -0.0188913, -0.779931, 1.54431, 0.560578, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.48451, -0.477428, -0.888927, -1.48728, 0.96198, 0.028804, 0.720321, -0.621773, 0.307503, -0.503835, 0.00750255, 0.0882128, -1.61257, -1.38786, -1.29545, -4.25668, -1.12128, -6.18574, -1.53582, 0.759567, -0.0519227, -2.59676, 1.92357, 0.760849, -1.43185, -3.14699, -0.464648, 0.139828, -0.0224049, -0.904489, -1.43912, 1.31978, -4.1843, -2.19444, -0.153742, -0.648466, -1.57043, -0.260582, -0.220323, -0.341289, 0.565352, -2.48482, -1.50395, -3.9876, -2.41404, -2.46609, -0.0378734, -0.955898, 1.53487, 0.383489, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.520468, 0.234806, 0.147558, 0.120681, 0.0496607, -0.00883521, -0.153151, 0.471061, -0.0574922, -2.26166, -0.0420085, -0.217367, 0.562356, 0.563483, -2.50687, 0.0747383, -0.393326, 1.52955, 0.689348, -0.511825, 0.011749, 0.144963, 0.522016, -0.00531491, -0.54038, -5.04562, 1.19449, 0.248414, -0.132234, 0.466302, -0.181416, -0.736998, -0.357624, -0.452912, 0.432917, -0.286499, -0.300879, 0.869166, -0.962946, -0.345132, -2.18421, 0.502206, 0.356678, 0.0484953, -1.54209, 0.269099, -0.0153576, -0.284468, -0.175259, 0.0990622, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0267188, -0.0263345, -0.0192167, -0.0297529, 0.0346725, 0.025245, 0.0337261, 0.00656527, -0.0126927, -0.0479129, 0.0107959, -0.0164955, -0.0352221, -0.0485852, 0.0408257, -0.0378669, -0.00441817, -0.0438574, 0.0222363, -0.0181948, 0.0376389, -0.034555, -0.0231605, -0.0262627, 0.0301691, 0.0284775, -0.0217347, -0.00653948, -0.0122958, 0.0336374, -0.0378901, -0.0132886, 0.0204588, 0.0236846, 0.00361889, -0.0267544, -0.0357317, 0.0358435, -0.0204674, -0.0526235, -0.0389417, 0.0177739, -0.0448046, 4.21039e-05, -0.0465091, -0.0320209, 0.00999462, -0.0116532, -0.0183318, -0.0342034, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.391694, 4.79405, 0.69832, -2.12739, -2.96585, 0.0157758, -0.328056, 3.6037, 1.00488, -0.386574, -0.0112381, 1.62993, -2.65632, 1.35616, 1.46758, -2.4025, -2.26269, 3.15891, 0.765577, -3.29636, -0.00650504, 0.980418, -4.15216, 1.60119, -2.1163, -3.28275, -2.38779, -3.5006, -1.47104, -2.06961, -6.0431, -2.17803, -0.337751, 0.795075, -0.856842, -2.23834, -1.47024, 0.507104, 0.273022, -3.62574, -2.21385, 0.729617, -1.4143, 1.23247, -1.20633, 1.29372, 0.0312061, 0.0277278, 4.5209, 0.526373, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.572645, 3.1281, 1.69774, 1.2875, 0.0382101, -0.00349279, 1.96471, -3.97449, -1.14218, -0.0010922, 0.000831341, -0.723255, 1.08011, 0.309565, 2.19825, 3.26401, -0.0841158, 2.18394, -0.225101, 1.82197, 0.0148862, 1.99149, 1.65625, 2.79396, 2.4701, 3.65781, 1.53769, 3.79663, 0.0819723, 1.78055, -5.82569, 0.130541, 2.29987, 2.98849, 0.316257, 1.12302, -0.606534, -0.138347, -0.636353, 0.363784, -2.06083, 2.199, 1.86673, 1.35671, -1.13684, 1.11838, -0.0445994, 0.239409, 2.32394, 1.43417, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.3418, 4.65085, 1.27637, 1.83449, 0.807559, 0.0171078, 4.36738, 0.631077, -1.67907, -2.54441, -0.0541054, 0.0887534, 3.4827, 5.42433, 2.21402, 4.34419, -3.16859, 3.59069, 0.855663, -0.972842, 0.0433651, 0.545713, 1.759, 4.78238, -2.58309, 4.9907, 3.64305, 2.07498, 2.98455, 0.731126, 0.991586, -1.11546, 0.936212, 2.60453, 1.7625, 1.6421, -1.52665, 4.18547, 5.0702, -0.45894, 0.802871, 3.65511, 0.872504, 4.56457, -5.07969, 1.33863, 0.00237056, 2.66451, 0.882043, 0.767603, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.73118, 2.54148, 1.84469, -0.438924, 1.25017, 0.0112952, 0.0813077, -0.732811, -0.778325, -11.0073, -0.00323578, -0.174567, 2.5774, 4.03897, 1.79968, -0.854, -0.620874, 0.518424, -3.4814, -1.49031, -0.0467822, 2.54357, 3.46262, -0.49074, -4.16373, 1.25441, 3.20375, -0.809222, 1.20791, 0.012639, 0.312739, 1.18492, -1.51074, 2.69302, 0.921497, 0.873952, -0.818391, 1.47463, -0.233327, 0.482243, 0.904757, 2.79096, 1.7555, 0.906013, 0.216097, 3.54674, -0.0149833, -1.23751, 2.31488, -0.326325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.15001, -0.513461, 0.249841, -0.0529272, 0.259444, -0.00977403, 5.1087, -7.03827, -1.57206, -6.73634, 0.0249104, 1.58378, 0.249441, 3.61465, 5.67936, 1.38021, -0.855312, 1.66466, 1.35049, 0.608296, -0.0292759, 0.305486, 0.722329, 0.17439, -2.90412, -5.62525, 0.819034, 2.05681, -0.58059, 0.361178, -0.957986, 2.18661, -1.20372, 1.71948, -0.728295, 2.50769, 1.32221, 3.50959, -0.693612, 2.17401, -1.37248, 3.29204, 0.464359, 4.78456, 0.637671, 1.10653, 0.0458132, 0.538844, 3.43955, 2.371, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0114952, 2.77051, 0.797941, 0.788007, -0.346993, 0.0456315, -0.805715, -0.875726, -0.447083, -0.371856, -0.0291705, 0.818244, 1.3214, -0.386578, 1.51371, 1.31564, 0.158696, -1.31587, 4.0321, -1.51705, -0.0237361, 1.13931, 2.75468, 0.577234, -0.0664348, 0.188333, 2.41199, 0.168417, 1.37241, 1.106, -0.429024, -0.748453, 0.128511, -0.177308, 0.508484, 1.28485, -0.229283, 0.295401, 0.181945, -0.514149, -2.04114, 0.191885, -0.547351, 0.520231, 0.2831, -0.266939, -0.0207333, -0.498361, -0.423036, 0.0877377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05502, -1.41659, 0.0202379, -0.252819, 0.295069, 0.0147778, -0.616045, -1.01332, 0.198198, 0.324504, -0.020824, 0.484935, -0.0315427, -3.65664, -1.3078, -0.410636, -0.570452, -2.72239, -0.847262, -0.370201, -0.00790464, -1.28743, 0.668673, -1.44907, -0.797724, -0.657156, -5.35915, 0.493574, 1.26809, -0.0134427, 0.124886, -0.686613, 1.26606, 0.884173, -0.472879, -2.38468, -0.625309, -1.03887, 0.810842, 0.357437, 0.664936, 1.56797, 0.746541, 0.520756, -0.318398, 1.0593, -0.032927, -0.260501, -0.753436, -0.189521, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.654713, 0.119414, 0.293281, 0.240747, -0.245457, 0.0290764, 0.115587, 0.257066, -0.082592, -0.333401, 0.018424, 0.148829, 0.25635, 0.477716, 0.600106, -0.112411, 0.156137, -0.268108, 0.988615, -0.555731, -0.0491212, -0.0595613, 0.328251, -0.217464, -0.216216, -0.547124, 0.0921786, 0.199177, 0.0561307, -0.273237, -0.277369, 0.114347, 0.0567391, -0.379793, 0.388551, -0.101253, -0.0638375, -0.124356, 0.411036, -0.0575342, -0.215027, 0.0452627, 0.167631, 0.141115, 0.0337905, 0.195906, -0.0446093, -0.0742859, 0.197387, -0.320195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.63674, -1.65968, 0.384609, 0.730491, 0.184212, -0.0439635, 0.586389, 2.28791, -0.226035, -1.53905, -0.0118072, -0.154336, -0.47919, 1.01863, -0.163869, 0.0217893, -0.94957, -0.683618, -5.1855, 1.14505, 0.0130246, -0.294164, -2.70314, 0.674177, -4.30154, -2.98722, -0.306572, 0.69293, 0.431976, -0.0124658, -0.540857, 0.866827, 0.290223, 0.16317, 0.198812, 0.584458, 0.416098, 0.242636, -0.493525, 0.217848, -1.52474, -0.209069, 1.55213, -0.583665, -0.308163, -2.04937, 0.00650397, 0.205033, -2.85375, -0.0971779, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.727102, -1.46601, -0.700108, 0.223929, -0.037531, 0.0277636, -1.34096, -4.54961, -0.0772079, -2.64585, -0.00980681, -0.344024, -0.933056, -1.01119, -4.10077, -0.425768, 0.893489, -2.35511, -0.396268, 0.744022, 0.00652462, -1.23913, -2.37421, 0.607095, -0.0505965, -2.70542, -1.2785, 0.8389, -0.186921, 1.34557, -0.577745, -1.11727, 0.987413, -0.454402, -0.600542, -0.687358, 0.724774, -0.838664, 0.112646, -1.53708, -2.46786, 0.140718, 1.36701, -7.10742, -3.39918, 0.312868, 0.0457776, -0.00274144, 1.28874, 0.0947025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.037918, 1.53077, -0.0240449, 0.452136, 0.405682, -0.0168043, 0.694439, 0.431054, 0.0560947, -0.410159, 0.036694, -0.252463, 0.154104, 0.749351, -0.0322306, 0.10607, 0.208673, -0.268178, -0.29515, -0.736857, 0.0507889, -0.566194, 2.18997, 1.27375, 0.896545, 0.806681, -0.736084, 0.487402, 0.371953, -1.61703, -0.28255, 0.204485, 0.648219, -1.59022, 0.259482, 1.03314, -0.358591, -0.745629, 0.288088, 0.234439, 0.02474, -0.83042, 0.125217, 2.13211, 0.0843546, -0.677076, 0.0492516, 0.490729, 1.22305, -0.270001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.10253, -1.32505, 0.646916, 0.701966, 0.199189, -0.0218396, 0.388278, -0.529962, -0.237677, -1.6655, -0.00300989, -0.187545, 0.776886, 3.13045, -0.193173, 1.45495, -1.3305, -5.70171, 2.48267, -0.879399, -0.00958932, 1.41615, 1.76888, -1.43385, 1.94908, 2.19447, 2.6959, -0.150223, 0.979466, -0.14595, 0.437429, -0.439986, 0.75937, 0.507333, 1.23044, 0.977051, -0.17262, 1.13378, -0.215484, -0.842291, 3.26704, 0.991043, -0.926805, -1.38256, 1.29332, 0.508143, -0.0325602, -1.18534, 1.09644, -0.9929, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.796378, -6.338, -0.565472, 0.049968, 0.585037, 0.0377656, -0.329925, -5.33272, 0.112643, -3.84026, -0.0455856, 0.481286, -1.65926, -1.35095, -3.08999, -2.07362, 0.438652, -7.30579, -1.84043, -0.111038, 0.0351439, -1.16033, -0.267642, -0.869235, -4.2762, -4.06787, 0.67657, -0.0755927, -3.6721, -1.6832, -2.39232, -0.557885, -1.75346, 0.125821, -0.824822, 0.0478859, -0.103318, 0.00857838, 0.362601, -0.524174, -3.53097, -2.2255, 0.00346404, -1.10728, 1.44877, -0.948382, 0.0158261, -0.68536, 0.93852, 0.210101, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2578, 0.318835, 0.297283, 0.514716, -0.524827, 0.000408941, 0.450531, -0.240292, -0.280411, -0.652862, -0.0220881, -0.0145932, 0.9418, 0.633635, 0.845991, 0.916797, -0.551496, 0.463053, -4.37684, -0.755574, 0.014383, -0.651885, 0.292473, 0.788435, -0.167539, -0.422016, 1.80372, -0.0301782, 0.496918, 0.187069, -0.285026, -1.13178, -0.54393, 0.717389, -0.501471, 0.738753, -0.260108, 0.854363, 0.688716, 0.0584551, 0.231881, 0.0957341, 0.54172, 0.567389, 0.721054, 0.749489, 0.0112208, 0.90207, -5.01198, -0.136377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.339079, -5.65832, 0.721907, 0.362474, 0.48666, 0.00510647, -0.563739, -2.45866, -0.225347, -1.28061, -0.0403412, 0.0522308, 0.469101, -1.78092, -0.0326, 0.996574, -0.0556173, -2.87336, -0.362965, 0.413305, 0.0167875, -0.389571, 0.534177, -1.60638, -1.14539, -3.19011, 1.25876, -0.382272, -0.480077, 0.184801, -0.898723, -0.14596, 0.213855, -1.12303, 0.654293, 0.103089, 0.178218, -1.18245, -0.535745, 0.0665862, -0.69512, -0.377414, 0.0441251, 1.1618, 0.256222, -0.264444, 0.0183438, 0.835451, 0.49877, -0.313425, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.219, 0.8975, -0.501461, 1.50155, -0.835329, 0.0235349, 2.27289, -2.01776, -0.649222, -1.68686, -0.0195358, 0.44735, 0.705069, 0.195222, 1.78136, 0.288809, 0.191466, 3.49247, 1.02078, -0.238471, 0.0214436, 2.18923, 0.985855, 2.36571, -1.951, -0.621331, -0.20937, 1.44305, 0.50673, 1.94281, 1.26861, -1.72084, 0.799628, 1.07269, 2.26387, -0.182198, -1.34228, 2.5485, 0.56341, -1.08256, -1.38307, 3.07852, 2.43995, 0.830295, -1.77017, 1.34881, 0.0400819, 0.388982, 2.39784, -0.496724, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0927906, -0.0353952, 0.0264242, 0.287504, 0.154512, 0.0120401, -0.0851951, -0.0292693, -0.061902, -0.193665, 0.0356186, -0.32131, 0.327741, -0.209092, -0.4903, 0.112463, -0.141689, 0.0466655, -0.973659, -0.270567, -0.0458497, 0.177657, -0.241671, 0.401378, 0.564775, 0.603728, -0.40779, 0.202323, 0.253957, -0.106216, 0.342773, 0.303264, -0.192886, -0.0237005, 0.0936336, -0.300833, 0.371849, 0.0269296, 0.366779, -0.081029, 0.129114, -0.349369, -0.357539, 0.260497, 0.153011, 0.101178, 0.0351547, 0.00823225, -0.422687, -0.0105005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.450834, -0.433304, 0.0759738, -0.0450075, -0.336419, 0.0220784, -0.0353249, 0.490876, -0.0115619, -0.360048, 0.00382026, -0.0456592, 0.474279, 0.72051, 0.349912, -1.60529, 0.162355, -0.636815, -0.192013, 0.0577185, 0.00995128, 0.538324, -0.199283, 0.523742, 0.220639, -0.116291, 0.684824, -0.257165, 0.758558, 0.0219879, -0.0158662, 0.0336591, -0.404926, 0.547483, -0.557004, -0.206335, -0.0562451, -0.521092, -0.135744, -0.0360798, 0.263555, 0.304177, 0.0140863, -0.653436, 0.224141, 0.0835636, 0.00350551, 0.24161, -4.33931, -0.0780006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.17191, -0.434605, -0.810564, 0.867507, 0.988259, 0.0554825, 0.739883, 1.48202, 0.00575008, -1.93353, -0.00479247, 0.605412, 1.55794, -0.24799, 0.0579085, -1.88018, -0.824872, -0.0950606, -1.58444, -0.690538, 0.036857, -0.216712, 1.07326, 1.05377, 1.08305, 0.131008, -1.14459, 1.44172, 0.845773, 2.56478, 0.601256, 2.19958, 1.85632, 1.15146, 1.64585, -0.583796, -1.29856, 1.66938, 1.01412, 0.115985, 3.43738, 1.25464, -2.32479, 0.552925, 0.5826, -0.0587092, -0.0384272, -1.3732, 3.30374, 0.344061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.65279, -9.14433, -0.544102, -1.78781, -0.253497, -0.0369609, -0.857186, 0.418624, 0.556331, -3.66254, -0.00830198, 0.809461, -2.39009, -3.54099, -2.78007, -1.14185, -0.986557, -2.49045, 0.855906, 0.116924, 0.042064, 0.102536, -3.14962, 3.04693, -0.215675, -6.53163, 1.71809, 0.423424, -2.44207, 2.07434, -2.42459, -2.53987, 0.875028, -0.198331, -2.58196, -0.0676571, 0.0128736, 1.88239, -1.64069, -3.94759, -1.78959, -2.52257, 1.78155, -1.14687, -3.204, -1.29995, -0.035083, -2.14029, -2.5239, 0.936148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.791575, 0.277643, -2.34322, 0.627059, 0.0246089, -0.0322117, 2.30207, 2.48053, -0.576195, -1.83417, 0.0233996, 0.899539, 1.23909, 3.12251, 1.6765, 0.728869, 0.895455, -0.319955, 1.0547, -1.04662, 0.00980988, 1.86478, -0.709574, 2.36818, 1.2017, 0.494755, 0.763756, 0.121506, 1.55798, 0.551031, -0.76312, 1.15687, 0.0248268, 0.454783, -0.581221, 1.00213, 1.24762, 2.59324, -0.541078, 0.472467, 3.15799, 0.942822, 0.92875, 1.54336, 0.988584, 2.36706, 0.0115704, 0.39331, -0.946055, 0.0872245, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.431, 4.312, -0.301, -0.6055, 0.32, -0.0317, 1.374, -4.86, -0.92, -1.646, 0.03708, 1.311, 2.258, 0.304, 0.881, 2.402, 0.0197, -0.6797, -1.177, -1.542, 0.007454, 2.354, 1.955, -0.256, 1.625, -0.5947, 3.01, 1.65, 2.18, -1.145, -0.5425, -0.05676, -0.2455, 3.695, -0.6914, 1.355, 1.021, 1.748, 2.508, -0.5747, -3.047, 0.06775, -0.451, 5.055, 1.185, 2.547, 0.03726, 0.02519, 2.453, 0.3901], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3755, -1.001, -0.4932, -0.535, -0.082, -0.02425, -0.1729, -2.018, 0.5234, -2.453, 0.0158, 0.4634, -1.424, -6.14, -4.285, 1.568, -1.13, -3.879, -1.732, -1.59, -0.01947, -0.8354, 0.9375, -1.148, -2.861, -2.59, -1.324, 1.889, -0.553, 0.4817, 1.44, -0.0859, -0.8076, -2.746, 1.014, -1.2295, -1.144, -1.532, 1.571, -0.7466, -5.07, 0.1725, -0.751, -0.3577, -2.623, 0.2139, 0.04266, -0.09033, 1.683, -0.466], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, -1.454, -0.2482, -0.2766, -0.1467, 0.03372, 1.1875, -0.4065, -0.273, -0.402, -0.04398, 0.3992, 1.319, 0.2135, -0.892, 0.159, 0.0483, -0.8223, 1.187, 0.1118, -0.02014, 1.913, 2.076, 0.533, 0.1354, 1.257, -0.5537, -0.393, -1.54, 0.9727, 0.2837, -0.1721, 0.1881, 2.955, -0.532, 0.0902, 0.4531, 0.2585, -0.3633, -0.4558, 0.07153, 0.2617, 0.552, 1.79, 0.1611, 1.216, -0.04254, -0.1936, -0.358, 0.1948], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03668, -0.02885, 0.006012, -0.02757, -0.0231, 0.02832, 0.01552, -0.00642, -0.006462, -0.03638, -0.0155, -0.0327, -0.0583, -0.04355, -0.03036, -0.0237, -0.00956, -0.02783, -0.03546, -0.012276, 0.01079, 0.00521, 0.04156, 0.02171, 0.01877, -0.012985, -0.04608, 0.02744, -0.04163, -0.05093, 0.02675, 0.0202, 0.01452, 0.0401, 0.02808, -0.0293, -0.0482, 0.02678, -0.00824, -0.00671, 0.02367, 0.02151, -0.035, 0.008026, 0.01178, -0.04514, -0.0503, -0.00372, 0.0336, -0.0395], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9146, 4.7, 0.02972, -5.19, -1.657, -0.052, 2.982, -2.215, 1.274, -3.754, 0.008286, 2.322, -6.86, -4.75, -1.839, -0.7627, -3.543, -0.0406, 1.11, -1.703, -0.0684, -1.697, -5.117, 3.346, -0.762, -6.684, -3.244, 0.9966, -3.422, 1.388, -1.649, -5.316, 1.567, -0.127, 0.3, -2.664, 0.578, 1.825, -1.553, -3.756, -0.2188, -1.023, -2.557, 1.093, -2.627, 2.41, -0.03708, -1.273, 2.533, 0.6553], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4968, -3.205, 0.2092, -0.1217, -0.08264, -0.0255, -0.04666, -0.4106, -0.08746, -6.23, 0.005383, 0.504, 0.8013, 0.831, -3.55, 1.095, -0.01724, -3.477, 1.6875, 0.0651, 0.010796, 0.005543, -2.406, -0.6963, -2.566, -1.264, 0.4478, 0.03973, -1.53, 0.04477, -0.9893, 0.0745, 0.628, 0.6895, -0.225, -1.153, -0.034, -0.371, -0.7124, -0.925, -1.215, -0.716, -0.3274, 1.326, -0.9077, -0.2101, 0.04703, 0.4336, -0.534, -0.1632], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.993, 0.867, -0.646, -0.2347, 1.055, -0.00713, -0.1901, -2.645, -0.0549, -0.377, -0.03607, 0.259, 0.1462, 0.3677, 0.564, 1.077, 0.3381, -3.207, -0.2047, 0.247, -0.03018, -1.055, 1.123, -0.5215, 1.484, -0.3389, -0.1433, -1.734, 0.2915, 0.2319, -0.654, -2.303, 1.035, -1.06, -0.6733, 0.09717, 0.3, 1.432, -1.925, -0.1808, -0.2389, -1.455, -1.227, 0.07294, -0.92, -0.0984, -0.01845, -0.9688, 0.7134, 0.4812], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.012, 0.3577, -0.3162, 0.06995, -0.2512, 0.04996, 0.3696, 0.4375, -0.01131, -0.0817, 0.03122, 0.1509, -0.2301, -0.1907, 0.2837, -0.0334, 0.0456, 0.2218, 0.04474, -0.3962, -0.02122, -0.1976, -0.3018, 0.2805, 0.2223, -0.06064, -0.1421, -0.3594, 0.4382, -0.164, -0.4937, -0.2429, -0.3523, -0.1711, -0.06665, 0.0002133, -0.0769, -0.2184, 0.1625, -0.1182, -0.1109, 0.4214, 0.02795, -0.661, -0.0437, -0.536, 0.02716, 0.1964, 0.04, 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, -2.205, -1.545, 0.2357, -0.6807, -2.717, -0.03122, -2.828, -3.225, 0.616, -4.562, 0.01974, 0.607, -1.689, -0.5093, 0.6475, -0.8813, 0.1843, -0.7056, -4.137, -2.773, 0.01959, -2.248, 1.416, -4.875, -5.438, -2.041, -1.322, -1.439, -1.683, -1.828, -1.691, -2.18, -3.818, -0.3174, -4.19, 0.4006, -2.08, -2.006, 0.2522, -1.003, -3.602, -3.436, -3.36, 1.043, -3.734, -0.8716, -0.01855, 1.546, -2.207, -0.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.02089, -0.6, 0.346, -4.8, 1.058, -0.03442, -1.829, -2.057, 0.3591, -0.1519, -0.00646, -0.1095, -0.06915, -0.553, 0.8057, -1.233, -0.8594, 0.4907, 5.062, -0.3064, 0.0255, -3.184, -1.954, 1.37, 1.832, -2.432, -0.2045, -2.037, 0.7666, -4.2, -2.518, 2.441, 1.008, -1.932, -0.09, -1.22, -2.639, -1.237, 1.034, -4.523, -3.508, -0.5156, -0.863, -4.37, -1.294, 5.19, 0.002497, -2.938, -2.8, -2.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.5093, -0.278, 1.624, 1.494, -1.453, -0.006588, -0.753, -0.647, 1.5, 0.3645, 0.003727, -0.0205, 2.424, 0.1973, -4.883, 0.7734, -0.1703, -2.629, -1.58, -0.1087, 0.0311, 1.912, -1.391, -1.462, -0.0332, -1.567, -2.15, -1.949, -1.682, -4.734, 0.12, -0.1115, 2.01, 0.111, -0.296, 0.545, -0.8867, 1.695, -3.268, -1.753, -1.441, -0.4749, -0.1873, -0.8535, -0.0945, -0.6787, 0.01237, -0.0561, -0.5576, -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.868, 0.1354, 0.7793, 0.2249, -1.924, -0.03568, 0.007698, -0.4692, -0.012375, 0.383, -0.0508, 0.524, -0.1213, -0.564, -1.01, -0.6577, -0.3113, -1.641, 0.623, 0.1279, -0.0326, -0.99, 1.405, -0.6216, -6.906, -0.04437, 0.718, 0.7705, -0.2747, -2.234, -2.844, 1.5205, 0.2773, -0.562, 1.175, 0.2969, 0.919, 1.334, 0.0791, 0.3665, -10.76, -0.3315, 0.592, -1.05, -1.587, -0.134, -0.03387, -0.348, -0.4788, -0.4326], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1115, -2.465, -1.641, 0.3022, 0.03543, -0.02937, -0.3518, -1.662, 0.1392, -3.432, 0.0001011, 0.7007, 0.4316, -5.0, -5.53, 0.376, -0.9033, -3.607, 1.106, 0.5537, -0.01467, -1.924, -4.01, -8.32, 0.0725, 0.607, 1.079, 1.431, -0.1616, -1.383, -1.776, 0.849, -4.645, -2.303, 0.4236, -1.907, -0.5864, -3.71, -5.46, -1.684, -0.1179, -1.906, 1.602, -5.348, -1.551, -0.3076, 0.0322, -2.188, -0.3162, -0.03836], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.514, -1.177, -0.3818, -1.356, -1.007, 0.02211, 1.73, 1.418, 0.4949, -4.8, 0.04147, -0.5913, -1.778, 1.564, 1.722, 0.1575, -0.672, 0.03287, -3.28, -2.344, -0.00462, 0.9814, 0.0716, -1.574, -0.677, -0.3445, -3.324, 0.1001, -2.48, 0.3496, -3.14, 0.7246, -0.0906, -2.34, -0.862, -0.3213, -0.1548, 0.1887, 0.52, -0.6675, -1.288, 0.643, 0.06122, -6.906, -0.572, 1.524, -0.03967, -0.347, -0.2974, -0.4822], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3113, 2.043, 0.4185, -0.7437, 0.9673, -0.04614, 1.274, -0.4226, -0.5435, -5.98, 0.0458, 0.3755, -0.8354, 3.506, 1.779, 2.418, -0.2803, 2.521, -1.88, 0.718, -0.03516, -0.4946, -0.7725, -0.759, -1.369, 0.2286, 2.26, -0.3955, 1.52, -0.3044, -1.839, -0.529, -1.806, 1.125, 1.084, 0.6724, -0.366, 0.724, -1.473, 0.5264, 1.331, 1.592, 1.105, 0.5625, -0.07965, 2.078, 0.02599, 0.6016, 1.486, 0.1498], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2418, -0.3687, 0.3179, -1.487, -0.9414, 0.02927, -1.586, -0.252, 0.1106, -1.863, 0.01913, 0.2085, 0.3582, -0.779, 0.5024, 0.533, -0.7354, -0.8994, -0.8765, -0.3142, -0.02849, 0.4993, -5.855, -0.8267, 0.3125, -0.2286, -2.21, 0.2477, -0.1675, 0.4685, -0.5, -1.137, -3.941, -0.768, 0.1426, -0.234, -0.4248, -1.191, -0.8584, 0.1312, -0.05945, -0.4883, -0.587, -5.42, -0.551, 0.05374, -0.03876, 0.1467, -0.8394, -0.1461], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2896, -0.442, 0.82, -0.05945, -0.1969, -0.03217, 1.436, -3.918, 0.0014105, -2.58, 0.005787, -0.5205, 0.3997, -3.873, -0.1505, 0.9204, -0.4614, -0.87, -0.003595, 0.927, 0.00968, -0.5176, -0.4973, -0.7593, -3.29, 0.1108, 0.07733, 0.8447, -1.432, 0.316, -1.536, -0.788, -2.676, -0.3354, -1.046, 0.09705, 0.8506, -1.244, -0.4136, -0.565, -2.197, 0.9204, 1.571, -4.684, -2.695, -0.04532, -0.03378, 0.4226, -1.776, -0.4343], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2886, -1.706, -4.914, -0.2915, 0.975, 0.01634, -1.317, -1.586, 0.05142, 0.239, 0.01639, 0.176, 0.1948, 0.3774, -0.2455, -5.39, 0.1694, -1.281, 1.434, -0.84, -0.0194, 0.3792, -0.7544, 1.083, -0.843, -1.109, 0.633, 0.1075, -0.9487, 0.0995, -1.309, -0.2646, 0.9087, -4.133, 0.4724, -0.09607, -1.196, -0.332, 2.617, -0.01327, -0.0258, -0.08057, -0.9883, 1.562, 0.6533, 0.7744, -0.01588, -0.123, -2.08, -0.5264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.098, -1.756, 0.1444, -0.0969, -0.441, -0.00967, -0.5054, -2.936, 0.118, -0.04526, 0.0419, 0.1764, -1.317, -0.9673, 0.3748, 0.1224, -0.2825, 0.1621, -1.01, 1.2, 0.00802, -0.2568, 0.2522, 0.429, -0.005726, -1.096, -0.747, -0.3218, -0.3933, 0.368, -0.9136, -1.41, -0.2422, 1.134, 0.476, -0.1405, -0.2169, 0.2029, -0.909, -0.3416, -0.594, -0.3433, -0.625, -2.254, -2.025, -2.812, 0.02975, -0.1074, -0.406, -0.1406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.472, -0.2827, 0.1542, 0.08215, 0.565, 0.05032, 0.2244, -3.35, -0.3125, -0.1174, 0.0002435, 0.238, 0.965, -0.861, -0.3174, -0.099, -0.04672, -1.414, -3.064, 0.591, -0.05527, 0.1869, 1.801, -3.016, 1.295, 0.4236, 1.009, 1.134, 0.641, 0.1565, -1.606, -0.861, 0.4187, 0.9375, 0.3652, 0.7573, -0.182, -0.1277, 0.4375, -0.02084, -5.055, 0.6816, 0.86, -0.02792, -0.6826, -0.1051, -0.0188, 0.1958, 1.532, 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.9917, -0.4578, 1.64, 0.3367, 0.466, -0.02028, 0.238, -1.198, -0.7485, 1.213, -0.01488, -0.1586, 0.6304, 1.549, 2.824, 2.857, 0.311, 0.7603, 2.621, 0.04733, 0.02649, -0.07275, 1.848, 2.047, -2.25, 0.1423, 2.008, 2.727, 1.732, 1.204, -2.967, 0.6836, -0.10675, 1.318, 1.754, 2.463, -0.724, 0.05737, 1.294, 0.418, -7.18, -0.716, 1.368, 2.33, -2.375, -0.5137, 0.02504, 1.803, 0.005413, -0.9307], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.388, -0.281, 0.246, 0.2018, 0.09174, 0.04318, -0.6626, -1.336, 0.1049, -0.1881, -0.03876, -0.4114, 0.8076, 0.0855, -0.865, -1.06, -0.3857, -1.594, -0.3987, 0.2336, -0.0084, -0.2252, 0.2291, 0.211, 0.878, 0.04962, 1.072, 0.4248, 0.826, -1.144, -2.178, 0.8706, 0.3525, 0.10406, -0.02365, -0.03223, -0.862, 0.1364, -0.362, 0.284, 0.4114, -0.359, -0.4727, -0.8013, 0.4033, -0.1328, 0.01955, 0.5337, 0.0555, -0.2593], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.085, -0.4626, -0.5674, 0.168, 0.2299, 0.01942, -0.05383, -1.442, 0.0412, -6.266, -0.0398, -0.5728, 0.1886, -0.3813, -0.693, -0.2793, -0.0858, -2.135, 0.09357, -0.7134, 0.01666, -1.212, 1.889, -2.8, -1.52, -0.8535, -2.18, 0.7944, 0.6733, -0.1937, -3.252, -0.2615, -5.625, -2.541, 0.8745, 0.191, -0.0434, 0.806, -2.094, -0.9604, -0.8145, -0.974, 1.272, -0.815, -0.1095, -0.259, -0.0207, -0.94, -0.801, 0.014786], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1506, 0.9863, 0.1287, 0.1914, 1.029, 0.03848, -0.7856, 0.3293, -0.4702, -1.039, 0.0416, -0.14, 0.0252, -0.4028, 2.639, 3.041, -0.5264, 1.485, -1.351, 1.023, 0.05258, 0.3906, 1.096, 0.1736, 1.469, -0.933, -2.55, -2.336, -0.1652, 0.0166, 1.307, 0.9673, 0.408, 0.4302, 0.734, -2.795, 0.565, -0.5684, 0.778, -0.1334, -0.6274, 1.042, 2.062, 2.076, 0.3691, 2.127, -0.04932, 0.516, -0.6733, -0.946], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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, -1.093, 0.5767, 0.6455, 0.9624, -0.04956, 0.876, 2.51, -0.6704, -2.924, 0.01213, -1.139, 0.3096, 2.791, 0.9917, 2.156, -0.1625, 2.754, -0.793, 1.253, -0.008606, 0.3245, 4.285, 2.055, -0.4675, -2.139, 0.506, 3.055, 0.06058, 0.8965, -2.096, 0.2192, -0.8477, 2.596, -0.9395, -0.3896, 0.4512, 2.229, 0.472, -0.06964, -1.287, -0.8306, 2.707, 0.532, 1.132, 0.551, 0.02644, -0.00695, 2.24, 0.89], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 2.328, 0.6045, -2.674, -0.7676, -0.032, -0.6353, 1.772, 0.3274, 1.793, -0.0492, 0.3755, -1.949, 0.232, -0.6807, -1.284, -0.621, 0.6934, -0.625, -0.7773, -0.01526, -0.5923, -0.4424, -0.2281, 0.08624, -1.413, -2.75, -1.126, -0.5425, 1.113, -1.175, -2.496, 0.8296, 0.3274, -0.5107, -0.05667, -0.366, -0.3748, -0.8306, -1.116, -1.598, -1.112, -1.33, -0.03026, -1.489, 0.58, -0.01889, -0.78, 1.544, 0.5605], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.4775, -0.889, -1.487, 0.962, 0.02881, 0.72, -0.6216, 0.3076, -0.504, 0.007504, 0.0882, -1.612, -1.388, -1.296, -4.258, -1.121, -6.188, -1.536, 0.76, -0.0519, -2.598, 1.924, 0.7607, -1.432, -3.146, -0.4646, 0.1398, -0.0224, -0.9043, -1.439, 1.319, -4.184, -2.195, -0.1537, -0.6484, -1.57, -0.2605, -0.2203, -0.3413, 0.5654, -2.484, -1.504, -3.988, -2.414, -2.467, -0.03787, -0.956, 1.535, 0.3835], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5205, 0.2349, 0.1476, 0.12067, 0.04965, -0.008835, -0.1532, 0.471, -0.0575, -2.262, -0.04202, -0.2174, 0.5625, 0.5635, -2.508, 0.07477, -0.3933, 1.529, 0.6895, -0.5117, 0.01175, 0.145, 0.522, -0.005314, -0.5405, -5.047, 1.194, 0.2484, -0.1322, 0.4663, -0.1814, -0.737, -0.3577, -0.453, 0.4329, -0.2864, -0.3008, 0.869, -0.963, -0.3452, -2.184, 0.5024, 0.3567, 0.0485, -1.542, 0.269, -0.01536, -0.2844, -0.1753, 0.09906], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02672, -0.02634, -0.01921, -0.02975, 0.03467, 0.02524, 0.03372, 0.006565, -0.012695, -0.0479, 0.010796, -0.0165, -0.03522, -0.04858, 0.04083, -0.03787, -0.004417, -0.04385, 0.02223, -0.01819, 0.03763, -0.03455, -0.02316, -0.02626, 0.03017, 0.02847, -0.02173, -0.00654, -0.0123, 0.03363, -0.0379, -0.01329, 0.02046, 0.02368, 0.003618, -0.02675, -0.03574, 0.03586, -0.02046, -0.0526, -0.03894, 0.01778, -0.0448, 4.21e-05, -0.0465, -0.032, 0.009995, -0.01165, -0.01833, -0.0342], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3916, 4.793, 0.698, -2.127, -2.967, 0.01578, -0.3281, 3.604, 1.005, -0.3865, -0.01124, 1.63, -2.656, 1.356, 1.468, -2.402, -2.262, 3.158, 0.7656, -3.297, -0.006504, 0.9805, -4.152, 1.602, -2.117, -3.283, -2.389, -3.5, -1.471, -2.07, -6.043, -2.178, -0.3376, 0.795, -0.857, -2.238, -1.471, 0.5073, 0.273, -3.625, -2.213, 0.7295, -1.414, 1.232, -1.206, 1.294, 0.0312, 0.02773, 4.52, 0.5264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5728, 3.129, 1.697, 1.287, 0.0382, -0.003492, 1.965, -3.975, -1.143, -0.001092, 0.000831, -0.723, 1.08, 0.3096, 2.2, 3.264, -0.0841, 2.184, -0.2251, 1.822, 0.014885, 1.991, 1.656, 2.795, 2.47, 3.658, 1.538, 3.797, 0.082, 1.78, -5.824, 0.1305, 2.3, 2.988, 0.3162, 1.123, -0.6064, -0.1383, -0.636, 0.3638, -2.06, 2.2, 1.867, 1.356, -1.137, 1.118, -0.0446, 0.2394, 2.324, 1.435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.342, 4.652, 1.276, 1.835, 0.8076, 0.0171, 4.367, 0.631, -1.679, -2.545, -0.0541, 0.08875, 3.482, 5.426, 2.215, 4.344, -3.168, 3.59, 0.8555, -0.9727, 0.04337, 0.546, 1.759, 4.78, -2.584, 4.992, 3.643, 2.074, 2.984, 0.731, 0.9917, -1.115, 0.936, 2.605, 1.763, 1.643, -1.526, 4.184, 5.07, -0.459, 0.8027, 3.654, 0.8726, 4.566, -5.08, 1.339, 0.00237, 2.664, 0.882, 0.7676], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.731, 2.541, 1.845, -0.439, 1.25, 0.01129, 0.0813, -0.733, -0.7783, -11.01, -0.003235, -0.1746, 2.578, 4.04, 1.8, -0.854, -0.621, 0.5186, -3.48, -1.49, -0.04678, 2.543, 3.463, -0.4907, -4.164, 1.255, 3.203, -0.809, 1.208, 0.01264, 0.3127, 1.185, -1.511, 2.693, 0.9214, 0.874, -0.8184, 1.475, -0.2333, 0.4822, 0.905, 2.791, 1.756, 0.9062, 0.2161, 3.547, -0.014984, -1.237, 2.314, -0.3264], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.15, -0.5137, 0.2499, -0.05292, 0.2595, -0.00977, 5.11, -7.04, -1.572, -6.74, 0.02492, 1.584, 0.2494, 3.615, 5.68, 1.38, -0.8555, 1.665, 1.351, 0.6084, -0.02928, 0.3054, 0.722, 0.1744, -2.904, -5.625, 0.819, 2.057, -0.5806, 0.361, -0.958, 2.188, -1.204, 1.72, -0.7285, 2.508, 1.322, 3.51, -0.694, 2.174, -1.372, 3.293, 0.4644, 4.785, 0.6377, 1.106, 0.0458, 0.539, 3.44, 2.371], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0115, 2.771, 0.798, 0.788, -0.347, 0.04562, -0.8057, -0.8755, -0.447, -0.3718, -0.02917, 0.8184, 1.321, -0.3865, 1.514, 1.315, 0.1587, -1.315, 4.03, -1.517, -0.02374, 1.14, 2.754, 0.577, -0.0664, 0.1884, 2.412, 0.1685, 1.372, 1.106, -0.429, -0.7485, 0.1285, -0.1774, 0.5083, 1.285, -0.2292, 0.2954, 0.1819, -0.514, -2.041, 0.1919, -0.5474, 0.52, 0.2832, -0.2668, -0.02074, -0.4983, -0.423, 0.0877], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, -1.417, 0.02023, -0.253, 0.2952, 0.01478, -0.616, -1.014, 0.1982, 0.3245, -0.02083, 0.4849, -0.03156, -3.656, -1.308, -0.4106, -0.5703, -2.723, -0.847, -0.37, -0.007904, -1.287, 0.6685, -1.449, -0.798, -0.657, -5.36, 0.4937, 1.269, -0.01344, 0.1249, -0.6865, 1.266, 0.8843, -0.473, -2.385, -0.6255, -1.039, 0.811, 0.3574, 0.665, 1.568, 0.7466, 0.521, -0.3184, 1.06, -0.03293, -0.2605, -0.7534, -0.1896], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.655, 0.1194, 0.2932, 0.2407, -0.2455, 0.02908, 0.1156, 0.257, -0.0826, -0.3335, 0.01842, 0.1488, 0.2563, 0.4778, 0.6, -0.1124, 0.1561, -0.268, 0.989, -0.5557, -0.04913, -0.05957, 0.3284, -0.2174, -0.2162, -0.5474, 0.09216, 0.1992, 0.05612, -0.2732, -0.2773, 0.1143, 0.05673, -0.38, 0.3887, -0.10126, -0.06384, -0.1243, 0.4111, -0.05753, -0.2151, 0.04526, 0.1676, 0.1411, 0.03378, 0.1959, -0.04462, -0.0743, 0.1974, -0.3203], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.637, -1.66, 0.3845, 0.7305, 0.1842, -0.04398, 0.5864, 2.287, -0.2261, -1.539, -0.01181, -0.1543, -0.4792, 1.019, -0.1638, 0.02179, -0.9497, -0.6836, -5.184, 1.1455, 0.01302, -0.2942, -2.703, 0.6743, -4.3, -2.986, -0.3066, 0.693, 0.432, -0.01247, -0.541, 0.8667, 0.2903, 0.1632, 0.1989, 0.5845, 0.416, 0.2427, -0.4934, 0.2179, -1.524, -0.2091, 1.552, -0.5835, -0.308, -2.049, 0.006504, 0.2051, -2.854, -0.09717], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.727, -1.466, -0.7, 0.2239, -0.03754, 0.02777, -1.341, -4.55, -0.0772, -2.646, -0.0098, -0.344, -0.933, -1.011, -4.1, -0.4258, 0.8936, -2.355, -0.3962, 0.744, 0.006523, -1.239, -2.375, 0.607, -0.0506, -2.705, -1.278, 0.839, -0.1869, 1.346, -0.5776, -1.117, 0.9873, -0.4543, -0.6006, -0.6875, 0.7246, -0.839, 0.1127, -1.537, -2.469, 0.1407, 1.367, -7.105, -3.398, 0.313, 0.04578, -0.00274, 1.289, 0.0947], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0379, 1.531, -0.02405, 0.4521, 0.4058, -0.0168, 0.6943, 0.4312, 0.0561, -0.4102, 0.03668, -0.2524, 0.154, 0.7495, -0.03223, 0.1061, 0.2086, -0.268, -0.2952, -0.737, 0.05078, -0.5664, 2.19, 1.273, 0.8965, 0.8066, -0.7363, 0.4873, 0.372, -1.617, -0.2825, 0.2045, 0.6484, -1.59, 0.2595, 1.033, -0.3586, -0.7456, 0.288, 0.2345, 0.02473, -0.8306, 0.1252, 2.133, 0.08435, -0.6772, 0.04926, 0.4907, 1.223, -0.27], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.103, -1.325, 0.647, 0.702, 0.1992, -0.02184, 0.3882, -0.53, -0.2377, -1.665, -0.00301, -0.1875, 0.777, 3.13, -0.1931, 1.455, -1.33, -5.703, 2.482, -0.8794, -0.00959, 1.416, 1.769, -1.434, 1.949, 2.195, 2.695, -0.1503, 0.9795, -0.146, 0.4375, -0.44, 0.7593, 0.5073, 1.23, 0.977, -0.1726, 1.134, -0.2155, -0.8423, 3.268, 0.991, -0.927, -1.383, 1.293, 0.5083, -0.03256, -1.186, 1.097, -0.9927], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7964, -6.34, -0.5654, 0.04996, 0.585, 0.03778, -0.3298, -5.332, 0.1127, -3.84, -0.0456, 0.4812, -1.659, -1.351, -3.09, -2.074, 0.4387, -7.305, -1.841, -0.111, 0.03516, -1.16, -0.2676, -0.869, -4.277, -4.066, 0.677, -0.0756, -3.672, -1.684, -2.393, -0.558, -1.754, 0.1259, -0.8247, 0.04788, -0.10333, 0.008575, 0.3625, -0.5244, -3.531, -2.225, 0.003464, -1.107, 1.449, -0.948, 0.01582, -0.6855, 0.9385, 0.2101], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.258, 0.3188, 0.2974, 0.5146, -0.525, 0.000409, 0.4504, -0.2402, -0.2805, -0.653, -0.0221, -0.014595, 0.942, 0.634, 0.846, 0.917, -0.5513, 0.4631, -4.375, -0.7554, 0.01438, -0.652, 0.2925, 0.7886, -0.1675, -0.422, 1.804, -0.03018, 0.4968, 0.187, -0.285, -1.132, -0.544, 0.7173, -0.5015, 0.739, -0.26, 0.8545, 0.6885, 0.05844, 0.2319, 0.09576, 0.5415, 0.5674, 0.721, 0.7495, 0.01122, 0.902, -5.01, -0.1364], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.339, -5.66, 0.7217, 0.3625, 0.4866, 0.005108, -0.564, -2.459, -0.2253, -1.28, -0.04034, 0.05222, 0.469, -1.781, -0.0326, 0.9966, -0.0556, -2.873, -0.363, 0.4133, 0.01678, -0.3896, 0.534, -1.606, -1.1455, -3.19, 1.259, -0.3823, -0.48, 0.1848, -0.899, -0.146, 0.2139, -1.123, 0.6543, 0.1031, 0.1782, -1.183, -0.5356, 0.0666, -0.6953, -0.3774, 0.04413, 1.162, 0.256, -0.2644, 0.01834, 0.8354, 0.4988, -0.3135], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.219, 0.8975, -0.5015, 1.502, -0.8354, 0.02353, 2.273, -2.018, -0.6494, -1.687, -0.01953, 0.4473, 0.705, 0.1952, 1.781, 0.2888, 0.1914, 3.492, 1.0205, -0.2385, 0.02144, 2.19, 0.986, 2.365, -1.951, -0.621, -0.2094, 1.443, 0.507, 1.942, 1.269, -1.721, 0.8, 1.072, 2.264, -0.1823, -1.342, 2.549, 0.5635, -1.083, -1.383, 3.078, 2.44, 0.83, -1.7705, 1.349, 0.04007, 0.389, 2.398, -0.4968], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0928, -0.0354, 0.02643, 0.2876, 0.1545, 0.01204, -0.0852, -0.02927, -0.0619, -0.1937, 0.0356, -0.3213, 0.3276, -0.2091, -0.4902, 0.1125, -0.1417, 0.04666, -0.9736, -0.2705, -0.04584, 0.1776, -0.2417, 0.4014, 0.565, 0.6035, -0.4077, 0.2023, 0.254, -0.1062, 0.3428, 0.3032, -0.1929, -0.0237, 0.0936, -0.3008, 0.3718, 0.02693, 0.3667, -0.08105, 0.1292, -0.3494, -0.3574, 0.2605, 0.153, 0.1012, 0.03516, 0.00823, -0.4226, -0.0105], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.451, -0.4333, 0.076, -0.045, -0.3364, 0.02208, -0.03534, 0.491, -0.01156, -0.36, 0.00382, -0.04565, 0.4744, 0.7207, 0.3499, -1.605, 0.1624, -0.6367, -0.192, 0.0577, 0.00995, 0.538, -0.1993, 0.524, 0.2206, -0.1163, 0.685, -0.257, 0.759, 0.02199, -0.01587, 0.03366, -0.405, 0.5474, -0.557, -0.2063, -0.05624, -0.521, -0.1357, -0.03607, 0.2637, 0.3042, 0.014084, -0.6533, 0.2241, 0.08356, 0.003506, 0.2416, -4.34, -0.078], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.172, -0.4346, -0.8105, 0.8677, 0.9883, 0.05548, 0.7397, 1.482, 0.00575, -1.934, -0.00479, 0.6055, 1.558, -0.248, 0.05792, -1.88, -0.8247, -0.09503, -1.584, -0.6904, 0.03687, -0.2167, 1.073, 1.054, 1.083, 0.131, -1.145, 1.441, 0.8457, 2.564, 0.601, 2.2, 1.856, 1.151, 1.6455, -0.584, -1.299, 1.669, 1.014, 0.11597, 3.438, 1.255, -2.324, 0.5527, 0.5825, -0.05872, -0.03842, -1.373, 3.305, 0.344], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.652, -9.14, -0.544, -1.788, -0.2534, -0.03696, -0.8574, 0.4187, 0.556, -3.662, -0.0083, 0.8096, -2.39, -3.541, -2.78, -1.142, -0.9863, -2.49, 0.856, 0.11694, 0.04205, 0.10254, -3.15, 3.047, -0.2157, -6.53, 1.718, 0.4233, -2.441, 2.074, -2.424, -2.54, 0.875, -0.1984, -2.582, -0.0676, 0.01287, 1.883, -1.641, -3.947, -1.79, -2.523, 1.781, -1.146, -3.203, -1.3, -0.0351, -2.14, -2.523, 0.936], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7915, 0.2776, -2.344, 0.627, 0.02461, -0.03223, 2.303, 2.48, -0.576, -1.834, 0.0234, 0.8994, 1.239, 3.123, 1.677, 0.729, 0.8955, -0.32, 1.055, -1.047, 0.00981, 1.865, -0.7095, 2.37, 1.202, 0.4949, 0.7637, 0.1215, 1.558, 0.5513, -0.763, 1.157, 0.02483, 0.4548, -0.581, 1.002, 1.248, 2.594, -0.541, 0.4724, 3.158, 0.943, 0.9287, 1.543, 0.989, 2.367, 0.01157, 0.3933, -0.9463, 0.0872]]
[-1.29535, 4.11425, 0.0377263, -0.0252421, -3.10364, -0.0961853, 2.68291, 2.18447, -0.540381, -0.809232, 5.54618, -1.30367, -0.173095, -1.21583, 0.564487, 0.117124, 0.0181935, -2.12652, -1.33161, 1.31643, -0.919273, -0.216983, 0.266203, 3.12109, -0.898792, -1.98031, -1.33655, 0.514969, -0.0119529, -5.35511, 1.31124, 0.0484153, 1.99675, 0.142162, -0.0610979, -2.0124, 1.79539, 0.172853, -0.411121, 0.169063, 2.40555, -0.0630373, 1.64151, 1.31811, 3.18675, 2.00444, -0.824577, -0.762616, -1.00038, 2.39908, -1.295, 4.113, 0.03772, -0.02524, -3.104, -0.0962, 2.684, 2.184, -0.5405, -0.809, 5.547, -1.304, -0.1731, -1.216, 0.5645, 0.1171, 0.01819, -2.127, -1.332, 1.316, -0.9194, -0.217, 0.266, 3.121, -0.899, -1.98, -1.337, 0.515, -0.011955, -5.355, 1.312, 0.0484, 1.997, 0.1422, -0.0611, -2.012, 1.795, 0.1729, -0.4111, 0.1691, 2.406, -0.06305, 1.642, 1.318, 3.188, 2.004, -0.8247, -0.7627, -1.0, 2.398]
ReLU
[[-0.980424, -0.231379, -0.136078, 0.00781954, 0.158679, 0.830464, 0.188557, -0.183498, 0.23397, -1.12111, -0.0910742, -0.195274, -1.44511, -0.402335, -1.24815, -1.03421, 0.275803, 0.128619, -0.243866, -0.068492, -1.05537, -0.538191, -1.17913, -0.233079, -0.837761, -0.506011, -0.717823, -2.48305, -0.0340586, -0.277981, -1.3686, -0.20307, -0.263251, -1.66166, 0.0320911, 0.123989, 0.284325, 0.457367, 0.413656, -1.51352, 0.230469, -1.65727, 0.5299, -0.47737, -1.20751, -0.0375357, -0.0990426, -0.0377437, -0.222088, -0.246088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.218243, 0.0834898, 1.84504, 0.0011867, 0.00724289, -6.60399, -0.181574, 0.0287908, -0.160638, -1.92016, -0.0135652, -3.77882, -2.31372, -1.17808, -1.32392, -3.93143, -3.62675, -1.79919, -0.427433, 0.676037, -1.62096, 0.566978, -3.8965, -4.9278, 0.0630742, 0.0537095, -0.445004, -5.82773, 0.0301396, -0.387751, -0.176323, -1.18702, -2.04509, -0.292428, -1.18586, 0.78552, -5.50186, -2.03593, -2.37352, -0.426857, -0.373632, 0.632938, 1.0488, -3.12178, -3.89659, -1.51199, -6.86273, -0.0444039, -0.356071, -1.68325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.993542, 1.26514, -1.83496, 0.0229742, 0.467571, -1.89523, -3.5459, -2.04378, -0.0460059, -0.0150612, -1.23916, -2.88546, -1.86611, -0.230116, -1.17042, -2.06978, -2.09252, -0.80114, -4.554, -0.813771, 1.17101, 1.01244, 0.444151, -1.59596, -4.73304, -3.67811, -3.58157, -2.46566, -0.0285365, -3.09245, -1.36565, 2.82038, -2.12882, 0.279347, 0.691727, -1.67286, 3.06161, -0.364009, -1.61055, -0.357818, -3.00383, -2.90591, -1.60611, -4.51007, -0.399159, -0.0810931, -0.64023, -0.53366, 0.517528, -0.744757, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.438428, 0.456568, 1.12735, -0.0331853, -0.15119, -1.79324, 0.131362, -0.569326, 1.53491, -0.257812, -0.303594, -0.961287, 0.327061, 0.0259325, -0.482996, 0.163738, 0.423446, -0.683597, 0.160153, -0.0728918, -0.000828923, 0.00641046, 2.77942, 0.0862975, -0.0555255, -0.645329, 0.737848, 0.604176, -0.0311756, -0.361231, 0.531473, -0.69208, 0.912354, 0.145964, 0.67817, 0.121403, 1.11782, 1.35741, 0.17212, -2.78469, 0.799845, 1.32565, -1.22964, 0.496642, 0.118259, 0.893688, -0.739526, -0.212639, 0.182538, 0.0131544, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.142079, 0.187292, 0.663309, -0.00355943, -0.26909, 0.052754, -0.475044, 0.901202, -0.0287479, -0.0961124, -0.0915598, 0.61042, -0.33276, 0.420174, -0.538085, -0.306145, -0.113259, 0.0557358, 0.540335, -0.0457336, 0.0323444, -0.07434, 0.761271, 0.0929519, -0.910817, 0.553048, -0.526136, 0.73792, -0.0119705, -0.36344, 0.301498, -0.335945, 0.420354, 0.668432, 0.27651, 0.668443, -0.0508024, -0.376517, -0.168525, 0.156535, 0.0932792, -1.86223, 1.29516, 0.431479, -0.475763, -2.31452, 1.34957, -0.00551927, 0.284803, -0.540273, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.539375, -0.13698, 0.518067, 0.0230596, -0.316841, 2.36173, 1.31425, 3.04748, 0.197085, -2.61422, -0.181954, -2.07479, -0.103559, 0.479418, 0.803572, 2.29004, -0.290558, -2.15067, 0.655556, 0.217975, -3.49392, 1.00491, 2.02264, 0.750997, 0.0760688, -0.16912, 2.15107, 1.7006, -0.0049565, -0.621056, 0.865793, -0.492732, 1.64669, 0.320379, 0.447523, -2.13487, 3.44614, 1.31461, 1.2588, -0.119163, -0.265073, -2.02062, -4.4386, 0.899972, 1.00523, -5.0157, 0.293566, -0.691828, 0.21018, -0.83866, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0343057, 0.0599073, 0.164019, -0.0293742, -0.0258656, -0.66579, 0.0506304, 0.011916, -0.0769651, -1.51476, -0.0359082, -0.116079, 0.0439298, -0.0145864, -0.0775187, 0.173852, 0.0220873, -0.0789319, 0.18097, -0.0198053, -0.0131918, 0.0723139, 0.50973, 0.0483376, -0.0249851, 0.077807, -0.0713917, 0.0392472, -0.0214248, -0.0903099, 0.0683118, -0.0625068, 0.186457, 0.0155755, 0.10061, -0.0147052, 0.258106, 0.198741, 0.0181444, -0.395241, 0.0312549, 0.137811, -0.22674, -0.0279361, 0.012462, 0.142972, -0.00675034, -0.0163157, 0.0097587, -0.0158526, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05464, 1.15998, -4.64736, -0.00467878, -0.178563, -3.19647, -1.50357, -0.569637, -0.473938, -1.01206, -0.408751, -4.88021, -1.2571, -0.386635, -4.62299, -1.93495, 0.324413, -5.58347, -1.80543, -1.67126, -0.142037, 2.32357, -3.29609, -4.04598, -8.80941, -3.42275, -3.19267, -4.89705, 0.0017893, 0.0877497, -7.63419, -0.340775, -3.74319, -2.94065, -9.89152, 0.514501, -3.74157, -7.85261, -5.92523, 0.56761, 2.26678, -4.26645, -0.546557, -0.742925, -0.387341, -2.68517, -7.23262, -1.18629, -0.923227, 0.494766, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.337271, 0.0403112, -0.123984, -0.00955108, -0.179601, -1.33953, -0.0451182, 0.652841, -0.268986, -0.554355, 0.0128914, -0.315237, -0.912955, -0.42422, 0.250598, -1.2602, -0.181026, -0.796837, -1.3012, -0.396321, 0.0315433, 0.389592, -0.946819, 0.352848, 0.123169, 0.194446, -1.37834, -1.20165, 0.00145832, -0.297594, -0.0463329, 0.229813, 0.733939, 0.194869, 0.306485, -0.270069, 0.453198, -0.274454, -0.542335, -0.172023, 0.077952, -1.00048, -0.60017, -0.60959, 0.18626, 0.0849105, -0.392112, -0.0614353, -0.20164, 0.120008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.42928, -0.0629834, -0.438525, 0.0207731, -0.695896, 2.01251, -0.325594, -3.44161, -0.51774, -0.103115, 0.0677701, 0.276047, -3.24998, -1.32434, 0.273549, 0.0117135, -2.99027, -0.0124461, 0.135624, -0.266315, -2.85672, -0.00585952, -3.99166, -2.86264, -3.482, -4.01253, -1.44705, -0.771265, -0.0387395, -0.24779, -3.36634, -2.10884, -0.42719, -1.42199, -1.88052, -1.44632, -3.9645, 1.69917, -3.08656, -2.05193, -0.320887, -0.354508, -4.04224, -2.68056, -1.27858, -5.28128, -3.05894, 0.264865, 0.502876, -0.189868, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2474, 0.108434, 0.786308, -0.0348019, -0.26349, 2.39179, -1.11844, 2.17616, 1.44248, -0.205486, -0.470334, -0.60585, 0.811056, 1.76556, 1.33424, -0.342894, 0.42837, -0.039576, 2.14065, 1.48407, -0.497932, 1.15644, 2.77217, -0.0851061, -1.31779, 1.32552, -1.75377, 0.34619, 0.00641548, -0.987571, -0.221442, -0.748808, -2.51813, 0.485448, -0.942111, -1.54565, 2.57195, -0.207326, 0.954309, 0.328348, 0.580549, 2.1546, 0.078925, 0.104217, 0.198239, 1.00403, -2.55446, -0.171348, -0.302689, 0.0216844, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.55237, 0.183673, 0.194642, -0.0454328, -0.0255278, 0.531219, -0.784912, -1.70125, -1.78652, 0.00432088, -0.0216812, -0.0621512, -3.82315, -0.36956, -3.69804, -1.85695, 0.284695, -1.84773, -5.8091, -2.68611, -3.64996, 0.180861, 1.37895, -0.0971777, -3.59756, -1.90929, -1.67682, 0.401375, -0.00195848, -2.75337, -0.718172, 0.0937747, -2.91028, -1.05045, -2.00971, 0.00986877, -1.01819, -2.4863, -0.285022, -3.03266, 0.144496, -3.20117, 0.126894, -0.648018, 0.0489058, 0.152623, 0.098255, -0.0340335, -0.121636, -0.059346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0803514, 0.0979457, 0.396583, -0.0296521, -0.000964251, 0.220733, 0.0297351, -1.28551, -0.0243086, -0.179874, -0.115444, -0.827532, 0.2571, 0.189258, -0.0941499, -0.931366, -0.192839, -0.299668, -0.325478, -0.493537, -0.030004, -0.226575, 0.882032, -0.0155727, -0.0485316, -0.0613336, -0.0311199, -0.891404, 0.0430194, -0.0912314, 0.00947796, 0.190973, 0.164637, -0.0131205, 0.211721, 0.1457, -0.245006, 0.385384, -0.0875307, -0.504891, 0.131676, -0.00598505, 0.489489, 0.22988, -0.235809, -0.34334, 0.255237, -0.0638723, 0.0329015, -0.0443186, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00720158, -0.0326462, -0.055424, -0.019541, 0.0152826, 0.00517402, -0.0504962, 0.00586404, -0.0519833, 0.0405658, -0.0245944, -0.0529231, 0.0107774, -0.0136893, -0.0480206, -0.0291095, -0.0395859, -0.00918727, -0.00219818, -0.0558262, -0.0058315, 0.0214115, -0.0158365, -0.0176418, -0.0435679, -0.0162132, 0.0298783, 0.0063793, 0.0458168, -0.0450384, 0.00495581, -0.014697, -0.0379852, -0.0429882, 0.0090372, -0.000367274, -0.0184228, -0.018346, -0.0278499, -0.0193163, 0.00721517, -0.0463712, -0.00233473, 0.0232017, -0.0292495, -0.0488662, -0.00482057, -0.0242324, -0.0432538, -0.026074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.56071, 0.258694, 1.7484, 0.0151972, -0.129029, 0.413846, -0.474069, 1.88842, 0.0943143, 0.27675, -0.0292674, -0.208147, 1.32613, -0.373521, 1.1351, 1.45715, 0.638983, -4.24664, 1.30262, -1.85741, 0.329312, -0.58132, 2.06512, -0.622181, 0.534509, -2.10739, -0.773912, 0.294327, -0.043031, -0.365695, 0.205718, 0.445793, -0.852697, 0.230926, 0.686171, -0.717924, 0.352132, -1.19554, -0.167796, -0.385983, 0.155902, 3.03115, 0.541648, -0.281421, -0.69718, 0.770871, 0.711927, -0.31737, -0.524903, -0.697959, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.51862, -0.0323628, 3.61856, 0.0372718, 0.373685, -0.285741, 1.33654, 3.89597, 0.735862, 0.152072, -0.91603, 2.62951, 0.785645, 0.694733, 1.33613, 3.05572, 0.400399, 1.40111, 4.27184, 0.600556, -0.0568034, 2.85373, -0.521941, 1.39658, 0.112086, -4.33914, 2.10179, 0.482518, -0.0476355, -0.020567, 0.673936, -0.307272, -3.74985, -2.40034, 2.4836, 0.776581, 0.356328, 2.4594, -1.66731, 1.38864, 0.798924, -1.95138, 1.61097, 1.95883, 0.652286, -0.156586, -10.1985, -1.21037, -1.41144, -1.22552, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0084623, 0.0100838, -0.0153717, -0.0286062, -0.0404937, 0.032988, 0.0094517, -0.0687535, -0.0315, 0.0104727, -0.0476036, 0.0132179, -0.0223132, 0.0125093, -0.0379552, -0.0414473, -0.0114621, 0.00592409, 0.00184672, -0.0516927, -0.000726892, -0.0196259, -0.0360085, 0.0217378, 0.0065319, -0.00466425, 0.0117645, -0.0158492, 0.0426496, 0.0145671, -0.0165329, -0.0302023, 0.0340931, -0.0382825, 0.0120211, -0.0554959, 8.48884e-05, -0.0616896, 0.00818652, -0.0441206, -0.0318737, 0.0122608, 0.0060031, -0.0406742, -0.00348492, 0.0190285, 0.0152416, -0.0295285, -0.0284449, -0.0654146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.247593, -0.287018, -5.12583, -0.0374285, -0.202967, 0.0459679, 0.411874, 0.0933066, -5.64427, 0.704565, 0.056407, -2.25823, -1.61433, 0.542172, -9.45418, -3.96723, 0.318321, -3.88734, -3.18625, 1.02133, -3.33871, -0.231331, -0.930254, -0.431772, 1.36995, -1.80865, -2.14321, -3.97388, 0.0440985, -1.30221, -1.17169, -0.568858, -2.56714, -1.5105, -1.44548, 0.188417, -6.55176, 0.762351, -1.618, -2.9496, 1.84109, -3.06319, -6.22376, 0.861119, -1.94805, -0.761617, -2.64614, -1.09177, -0.61665, -2.08132, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.123275, 0.128759, 0.550291, 0.0352254, -0.0714419, -2.0494, -0.108497, 0.576051, -0.0703442, -1.47067, -0.0372048, 0.165455, -0.123067, -0.289456, -0.117668, 0.502372, 0.201621, 0.173029, 0.522306, 0.168671, -0.117186, -0.145099, -0.564457, 0.164506, -0.0806825, -0.130968, -0.187088, -0.379332, -0.0094327, -0.107986, 0.1357, 0.072518, 0.404953, -0.210578, -0.122895, -0.560731, -0.319514, 0.235482, -0.327065, -0.110958, -0.244272, 0.266466, 0.454628, 0.30758, -0.226283, -0.0575587, 0.147155, 0.0474644, -0.0748009, -0.216328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05419, 0.62849, -0.0487668, -0.00306919, -0.809729, -1.46813, 1.03273, -8.13577, -0.0297154, -0.267444, -0.499652, -1.30438, -0.179586, -2.47991, -0.72226, -0.02866, -4.53488, 0.303634, -1.23665, 1.16742, -1.77806, 1.01755, -4.50462, 0.151559, -3.74876, -0.304636, -6.50179, 0.0458999, 0.013277, -0.0862696, -1.02098, -1.31305, -0.0790821, 0.305024, -4.39026, -2.97485, -7.45487, -4.46251, -0.977114, -1.54636, 1.75666, -0.20597, -7.15141, 0.608478, -1.84292, -5.45924, -3.73748, 0.639231, -0.344808, -1.34059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0776466, 0.200756, 1.18194, -0.0157974, -0.298812, 3.62651, 0.87482, -0.0675236, 0.00260323, 0.0653463, -0.271501, -0.170911, -1.6301, 1.021, -1.22423, 2.8933, -0.332244, 1.53815, 1.08037, 0.134716, 0.184237, 1.40806, 0.533338, 0.650695, -0.0490794, 0.150388, 1.22138, 3.11573, 0.0415685, -1.10867, -0.185634, -0.808966, -0.833786, -4.21921, -0.551366, -0.71825, 1.72008, -0.515009, -1.78994, -0.101298, 0.481744, 2.49331, 1.6079, 0.840545, -0.591911, 0.805157, 0.83202, -0.211285, -0.787312, -0.286234, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0228322, -0.0254281, -0.160186, -0.010108, -0.0641183, -0.00656354, 0.0235867, -0.00960135, 0.0173909, -5.4137e-05, -0.133187, -0.0288027, 0.0553397, -0.0191924, -0.0156536, -0.0326082, -0.0359356, 0.033391, 0.0339476, -0.170716, -0.0719776, -0.100392, -0.0248415, -0.0132747, 0.028608, -0.0954109, 0.00877881, -0.0467412, 0.00606185, 0.0261608, 0.000680479, 0.0258804, -0.051693, -0.0183865, -0.0432876, 0.0220374, 0.0212895, -0.0161833, -0.0162094, -0.129312, -0.192251, 0.0373121, -0.135479, -0.187756, -0.0801832, -0.0364832, 0.0240291, -0.17477, -0.00634068, -0.114147, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0653961, -0.00915048, 0.102505, -0.0123543, -0.0292722, -0.634894, -0.0162655, 0.030962, -0.105258, 0.0533778, -0.0195724, -0.00352245, 0.140146, -0.0190977, -0.107687, 0.16443, 0.00964127, -0.322846, 0.118156, 0.0213746, -0.0245268, -0.078972, 0.161004, -0.0414176, -0.0103466, -0.0343793, 0.104754, -0.0584236, 0.0488941, -0.00729703, 0.0385399, -0.141077, 0.0604102, 0.0229184, 0.054036, 0.00418373, 0.160783, -0.0271655, 0.0055415, -0.155167, -0.0614604, 0.00612074, -0.170225, 0.0462018, -0.00183858, 0.0299866, -0.0155957, 0.0157089, 0.00202505, -0.0271824, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.132387, 0.0620975, -0.0813152, 0.0139433, -0.0736492, -0.32538, -0.0721531, 0.367472, -0.111644, -0.589297, 0.0119932, -0.116736, -0.674015, -0.238377, 0.0763423, -0.532582, -0.0939719, -0.491942, -0.675188, -0.0512911, 0.0401858, 0.199128, -0.502524, 0.254224, 0.100987, 0.159641, -0.494493, -0.659225, 0.0139419, -0.135202, -0.0558662, 0.125958, 0.32649, 0.0614673, 0.182253, -0.267259, 0.298961, -0.333266, -0.360901, -0.0972609, 0.118035, -0.696127, -0.325282, -0.423066, 0.0936792, 0.0305064, -0.235735, -0.0324099, -0.0783997, 0.0898404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.09007, 0.274576, 0.168268, -0.0115212, -0.279911, 0.77439, -1.20955, -5.00347, -0.847673, 0.0401448, -0.242452, 1.19456, 0.555612, 1.30213, -1.03262, 1.21661, -0.546722, -1.05387, 3.51037, 0.576553, 0.00743881, 0.64162, 2.09542, -0.00518474, -0.545951, -0.00776255, 0.105462, 0.882029, -0.0238042, -0.216087, 0.415726, 0.831644, 1.13092, 0.0433895, -0.22628, -0.125632, 0.963084, 0.458107, 0.553925, 0.222648, 0.119012, 1.80041, -3.26841, 0.196099, -0.0352155, 1.1915, -2.11024, -0.190997, -0.087862, 0.0544957, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.195199, -0.911221, 0.955134, 0.00637761, 0.11372, 2.6148, 0.910734, 2.93954, -0.427246, -0.289584, -0.467273, 0.518871, -0.0504374, 0.695477, 0.809247, -0.31867, 0.609241, 0.896522, 1.01876, 1.26926, -0.551688, 1.04153, 2.10168, -0.539271, -0.0829913, -0.89796, -0.309428, 3.5599, -0.0437453, -0.134019, -0.534309, -0.363116, -3.11224, -1.16955, -1.86145, 0.130669, 2.07424, 1.2378, 0.932478, -0.914916, -3.71021, -0.420152, 1.32469, -1.99026, 0.49765, 0.88133, -2.59806, -0.0920466, -0.242857, -0.416647, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0269645, -0.0317325, -0.00290785, -0.0060428, -0.0248284, -0.0347245, 0.0120105, 0.017093, -0.0310559, -0.0299231, -0.0280838, 0.00557375, 0.043735, -0.00856955, -0.0315775, 0.0338425, -0.0418957, -0.038164, 0.0333719, -0.0260666, -0.0100203, 0.0192097, -0.0313636, -0.0301812, -0.0224, 0.0151434, -0.00949939, -0.0142076, -0.00492095, -0.0135126, -0.0213594, 0.00985992, -0.0290898, -0.050049, -0.0302736, -0.0183875, -0.00673947, 0.0144579, -0.045763, -0.0280436, -0.00221958, -0.0364731, -0.000701191, 0.00947651, 0.0210714, -0.0119262, -0.0406778, -0.0749832, -0.00327932, -0.01726, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.70113, 0.207026, -0.729051, 0.00847671, -0.153565, -0.614488, 0.246256, 0.175086, -0.161298, -1.35238, -0.0287106, -0.401361, 0.0629304, 0.0715569, -0.318166, -0.896987, -0.512199, 0.90825, -0.151059, 0.116281, 0.0683305, 0.167626, 0.141544, -0.158913, -0.166593, -0.0920023, -0.236523, 0.0383619, -0.0154852, -0.276221, 0.399757, -0.0916511, 0.559587, 0.387381, -0.255169, 0.139925, 2.42687, 0.352591, 0.825374, 0.0567248, -0.168184, -0.376502, -0.190223, 0.401861, -0.181516, -0.164197, -5.01337, -0.0970565, 0.181574, -0.256217, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.64787, -1.00941, 1.47034, 0.0211812, -0.66065, 2.78046, 0.996241, 1.37244, 1.29684, -0.125997, -0.184806, 1.75409, 1.5073, 0.629616, 2.11876, 2.19518, -0.625452, -4.60091, 0.309472, 0.0594556, 0.619928, -2.62602, -1.05593, 0.471237, -5.11063, -0.472498, -0.463308, 0.535767, -0.0199937, -0.247928, -3.41985, -2.12123, -1.91715, 0.4768, 0.887116, 1.51506, 1.86095, -0.528635, 3.35447, -0.666032, 0.980233, 1.7324, -0.652509, -0.484156, -1.16058, 1.00453, 0.6236, -0.149632, -0.0332275, -0.830121, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.92463, 0.0404097, 1.24379, 0.013701, -0.317564, 3.05692, -1.31454, 2.18249, 0.4544, 2.07576, -0.641268, 0.721901, -2.29534, -1.84175, 0.287934, 3.3015, 0.385496, -0.759409, 2.03692, 1.17537, -0.298542, 1.98333, 2.16412, 0.194874, -0.26322, -0.0818666, 1.19896, 0.465602, -0.0138694, 0.0380015, 0.849238, 0.0743789, 2.29756, -3.03213, -0.205447, 0.846717, 0.495642, -1.79311, 2.51156, 1.64724, 0.823404, -2.62466, 2.94935, 0.128668, -0.36887, 0.600247, 1.21482, -1.2367, 0.509895, -1.33618, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.107413, -0.0253463, 0.156782, -0.000839544, -0.0420245, -0.00814674, -0.0292267, 0.214392, -0.111702, -0.0665547, -0.0847795, -0.0973661, 0.094083, -0.207462, -0.0323103, 0.393388, 0.143113, 0.0421518, 0.409675, 0.0486392, -0.156916, -0.298443, 0.353396, 0.0779501, -0.0620195, -3.17473, 0.137453, 0.081435, 0.0169892, -0.436473, 0.118498, 0.045861, -0.106251, -0.0836231, 0.103141, -0.0722185, 0.298379, -1.50967, -0.0746543, -0.0578687, -0.174431, 0.204535, -0.0290643, 0.12281, -0.0325857, -0.218701, 0.023185, 0.0335778, -0.00189249, -0.0510648, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.363158, 0.199085, 0.297769, -0.031355, -0.254714, -0.571661, -0.411493, -0.201881, -0.237568, -0.393986, -0.00194326, -0.000703902, -0.185311, 0.0580389, 0.401369, 0.0848218, -0.867406, 0.265044, 0.185596, -0.128174, 0.0694125, 0.0679271, 0.600905, -0.0592769, -0.093268, 0.199868, 0.25666, -0.558533, 0.00140538, -0.115359, 0.0261735, -0.337361, 0.370953, 0.184968, -0.138221, -0.0348559, 0.148094, -0.180185, -0.244648, -0.638603, 0.231378, 0.473575, -1.02888, 0.183116, 0.0368396, -0.148766, -0.329583, -0.0771268, -0.138717, -0.217654, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00659116, 0.00867997, 0.0166532, -0.0418972, 0.00298466, 0.0669789, -0.00930899, -0.0327931, 0.00673024, 0.00737738, -0.00952569, 0.00456167, 0.00333347, -0.0109625, -0.00907767, -0.0369717, 0.0041619, 0.0365443, -0.0147686, 0.0130903, -0.00352081, 0.0139832, -0.0123192, 0.00959336, -0.000633201, -0.0217544, -0.00259829, 0.0221321, -0.00974268, 0.00108443, -0.00444284, 0.00456081, -5.827e-05, -0.00324382, -0.00582624, -0.00948083, -0.00161269, 0.0176732, 0.00539038, 0.00320535, -0.00185767, -0.00339151, -0.00443155, -0.00407364, 0.00457074, -0.0294249, -0.0179385, 0.00622899, 0.0058949, -0.00396392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.130271, 0.215516, 1.42892, 0.00137808, -0.0150562, -2.2304, -2.48372, -3.54624, 0.177737, -0.454673, 0.0308515, -0.0608582, -0.653686, -0.236864, -1.83032, -0.537126, -0.0993773, -1.02881, -0.958715, 0.72634, -0.259162, -0.167376, 0.0515042, -2.14986, -1.7322, -0.867505, -2.84902, -0.765027, -0.0205355, -1.35306, -2.07206, -0.146957, -1.25332, -0.444501, -0.872421, -0.114481, -0.183542, -2.75885, -0.108297, -0.422635, -1.1369, -0.54532, -3.87807, -3.53656, -1.99297, -2.05007, -0.990976, -1.11602, 0.215994, -0.778799, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0604058, 0.0489866, 0.194835, 0.0319368, -0.0437395, -0.290218, 0.00569408, 0.152722, 0.198823, -0.0046806, -0.0470077, -0.22972, 0.0808197, 0.075782, -0.136815, 0.163825, 0.028161, -0.00690184, 0.167379, -0.0339726, 0.0133807, -0.0180082, 0.477112, 0.0107614, -0.00956272, -0.176505, 0.0335496, 0.165911, -0.0196017, -0.107131, 0.0896145, -0.0418186, 0.23515, 0.0263805, 0.120093, 0.014479, 0.11882, 0.125379, 0.0180819, -0.229364, 0.0264894, 0.178016, -0.171789, 0.132048, -0.0104734, 0.067293, -0.109314, -0.0301852, 0.00355527, -0.0134379, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0023286, 0.0067895, 0.0397634, 0.0191131, -0.010305, -0.0555957, -0.0846926, 0.0364097, 0.0226797, -0.159281, -0.0210409, -0.0366197, -0.0611934, -0.0159502, -0.056405, 0.0161949, 0.0355062, 0.0720415, 0.0846091, -0.103478, -0.0031629, -0.117403, 0.127195, 0.0299013, -0.0306122, -0.029873, -0.0422635, -0.169553, -0.0270606, -0.00705507, 0.0446981, -0.00965356, 0.0864546, -0.034486, -0.136847, -0.0813226, 0.0780282, -0.109936, 0.0577761, -0.0525527, 0.0119178, 0.131629, -0.0198073, 0.0405117, -0.00528409, 0.0879243, -0.142495, 0.0082387, -0.0191311, -0.0119135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.47161, 0.186772, -0.21976, 0.0169928, -0.435285, 2.95482, -0.326535, -2.52293, -0.0977596, 0.677892, -0.14616, -0.628914, -1.07585, 1.49965, -1.15295, 0.567618, -1.9951, 1.79371, 0.830087, -1.18597, 0.424519, -1.45516, 1.71353, -0.742239, -1.22983, -0.103035, 2.42554, 0.534771, 0.038845, -0.255644, 0.419022, 0.319995, 1.13311, 1.6329, 1.53996, 1.8007, 2.33825, 1.1938, 2.61392, -2.86717, 1.60025, 2.89999, -0.423331, 0.733239, 1.00552, 0.456321, -6.05011, -0.983454, 0.405082, -0.409808, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00285279, -0.0131251, 0.0177943, -0.0323583, -0.00752573, 0.0415976, -0.0105778, -0.0027439, 0.00161333, -0.034312, -0.00578444, -0.00402865, -0.00602338, 0.00575291, 0.0157139, 0.0122983, -0.00750665, 0.0171314, 0.0225463, 0.0146149, -0.00539156, 0.0079483, 0.0200088, -0.00905794, -0.00701541, -0.0111382, -0.0391511, -0.223157, -0.00783738, -0.00565237, 0.00819676, -0.00377005, -0.0314128, 0.00386963, 0.0279092, -0.000823032, 0.0299183, 0.00778675, -0.0163696, -0.00385288, 0.0103327, -0.000465216, -0.0145911, 0.00945727, -3.74855e-05, -0.0521695, 0.0260513, 0.00716841, 0.0112172, -0.00801989, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0379112, 0.0375428, 0.00373857, 0.0193026, -0.0264616, -0.0248703, -0.0428137, 0.0813869, -0.0192969, 0.121297, 0.00705174, -0.0244422, -0.166098, -0.045194, -0.0194036, -0.172831, -0.0351478, -0.174857, -0.131563, -0.017036, -0.0322465, 0.00416188, -0.12753, -0.00559461, 0.0193104, -0.0268959, -0.0872218, -0.162157, -0.00827015, -0.0438237, -0.011031, 0.0268722, 0.0762897, 0.0440418, 0.0647618, -0.0676872, 0.139627, -0.0725222, -0.0623282, -0.0296149, 0.0265747, -0.107765, -0.0538906, -0.134431, 0.0133662, -0.0583164, -0.0690456, -0.00616269, -0.00831428, 0.00136868, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.262305, -0.107261, 0.931525, -0.0160786, -0.244748, -1.29608, -0.199854, 0.676191, 1.60847, -0.526479, -0.515256, 1.31497, 0.177219, -2.16838, -0.119423, -0.709238, 1.04177, -0.746506, 2.25086, 0.493888, 0.0893831, 2.23942, -0.164278, 0.555414, 0.26625, -0.487715, 2.28235, 2.6943, -0.0473604, -0.663741, -0.106636, 0.639695, -1.12981, -1.02453, 1.12996, 0.954233, 0.974977, 0.823153, 0.557426, -1.53276, 1.1071, 1.97486, 0.781782, -0.396406, -3.69764, -0.929803, -1.74363, -0.341159, 0.479189, 0.0907448, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0953279, -0.308455, 0.180915, 0.0391771, -0.0110942, 0.407507, 0.953889, 0.93615, 0.245568, -0.183288, -0.21493, -2.48887, 1.76052, 0.316998, 0.243656, 3.28759, 1.49725, -0.983414, 3.11361, -0.613679, 0.171861, 0.467111, 2.13087, -1.68242, -0.0532093, -1.20555, 2.95748, -0.680327, 0.0206636, -0.224239, -0.010884, 1.44303, -3.3799, -1.82618, 0.603329, -1.78984, 3.18805, -0.595613, 0.149238, -0.707415, 0.696679, -0.85362, -0.538823, 0.692912, 0.395609, -2.95627, 1.88098, -0.343718, -1.19471, -0.324447, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.01493, -2.4776, -0.120647, 0.0371919, -0.000991082, -0.37938, -1.38131, -6.10103, -3.16565, -0.0479607, -0.0926736, -4.81501, 0.00302311, -1.80926, -0.172103, -1.24217, -1.75669, -2.19435, -0.0258855, -1.68903, -1.79051, 2.00149, -1.16446, -0.060176, -2.89812, -0.736491, -0.0793174, -0.797587, -0.0262871, -1.85509, -2.78934, -0.355083, -0.995903, -0.505549, -3.41409, -6.39195, -7.3242, -0.542388, -0.103304, 0.622629, -4.03617, -1.35091, 0.743522, -3.33761, -1.37425, -2.71823, -0.00913815, -0.564281, -0.871615, -0.300218, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.05599, 1.0837, 0.0429702, -0.0262759, -0.467701, 0.874474, -0.422555, -0.649823, -0.473913, 0.59265, -0.015945, -5.84392, -2.45753, -0.820075, -0.466291, -4.64989, -1.24711, -1.43662, -7.42005, 3.89511, -1.33665, -0.199218, -0.812211, -0.238312, -4.03432, -1.6781, -4.00438, 0.852079, 0.00856066, -2.17664, -6.73922, 0.6702, -1.32918, -2.0282, -0.689062, -4.63034, -14.7019, -1.83466, -5.6011, -0.861552, -1.02688, -3.29118, 0.17382, -0.868517, -1.06725, -0.603529, -4.60446, -1.39884, 0.133936, -1.1177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.01439, -1.99575, 1.3208, 0.0124515, -0.179614, 3.85939, 0.841507, 1.03089, -1.94964, -0.0851677, -0.425939, 0.643852, 0.971472, 0.83889, 0.66329, -0.28852, 0.736641, 1.08256, -0.169093, -0.0712352, -7.42949, 1.58196, 2.28029, -0.379499, 0.666625, -1.36543, 0.562444, 3.579, -0.0253944, 0.00518429, -0.94672, -3.88394, -0.353892, 0.0396483, -1.93881, -0.024052, 1.42046, -2.29844, 0.920111, 0.509714, 1.32672, 1.334, 1.27593, 0.97568, 0.54183, 0.0498479, -3.09194, -0.186998, 0.276153, -0.28541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0303854, -0.00121625, 0.0509989, 0.0198895, 0.0210837, 0.154414, -0.0303814, -0.0102822, -0.0146369, -2.63084, -0.0207764, -0.00333957, -0.0212207, 0.0103718, 0.0205631, 0.110999, -0.018153, 0.0493406, -0.117941, 0.0376818, 0.00227936, 0.0112465, -0.0291111, -0.00439365, -0.0135859, 0.00229126, -0.000416791, -0.113014, -0.0386149, -0.0177541, -0.0156552, 0.0212946, -0.00274484, -0.0019339, -0.0366486, -0.0256224, 0.00754666, 0.0237643, 0.0293153, -0.00636441, -0.0121285, 0.0082209, -0.203509, -0.0103527, -0.0442582, -0.0813756, -0.0538903, 0.00387354, 0.000228513, -0.000855056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0328321, -0.0530117, 0.0184955, 0.0313554, -0.0087489, 0.0265573, 0.000113448, -0.0366622, 0.0159768, 0.0012909, -0.0652789, -0.0119121, 0.0112182, -0.00652133, -0.0383076, 0.018861, -0.0266744, 0.00938968, -0.0256868, -0.0405396, -0.015365, -0.0421152, -0.0373042, -0.00321986, -0.00372678, 0.0244558, 0.00344057, 0.00370209, -0.00723815, -0.0131903, -0.013159, 0.00529542, 0.0285479, -0.0465437, 0.0285452, -0.0257771, 0.0408955, 0.0346054, -0.00919305, 0.000886344, -0.0403165, -0.0433152, -0.0340902, -0.0377497, -0.0472565, 0.0189976, 0.0308537, -0.0329014, 0.00506355, -0.0501357, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.97181, -1.46595, 1.83393, 0.0418778, -1.88625, 4.37563, -0.44057, 2.92867, 0.659703, 0.222011, -0.603234, 4.06147, 2.91179, -1.18809, -0.743805, 1.84538, -1.38396, -1.26497, 4.15999, 1.76265, -1.04081, 1.51157, 4.14316, -1.97382, 0.789838, -0.379436, 2.11456, 4.56396, -0.0257967, 0.464012, -0.215755, 0.910609, -2.74252, -1.14252, 1.03022, 2.3104, -0.988727, 0.613601, 2.56144, 0.562509, 0.274274, 0.808824, 1.45843, 2.8129, 0.0410764, 0.455488, 1.4066, -0.325663, -0.575968, -0.477665, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.88318, -0.331221, 0.387448, 0.00491301, 0.0794712, 2.26897, -1.36914, 0.396022, 1.4629, -0.422006, -0.561204, 1.44044, 2.59378, 1.29584, -5.36749, 0.455309, -1.32612, 2.12609, 2.81945, 0.986548, 0.315235, 0.434227, 3.98661, 0.573707, 0.164326, 1.06452, -3.55272, 1.91543, 0.00816826, -0.806144, -0.233977, -2.29354, 1.6171, 0.0463315, 1.02924, 0.878213, 2.47387, 1.30231, 1.06, 0.292967, 2.00912, 1.49248, 2.34955, 1.93198, -0.619531, 3.72483, -1.69667, -0.906044, -0.508021, -0.445338, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.13542, 0.00998145, 1.04483, -0.0184265, -0.0850219, 1.35155, 0.501712, -0.044985, 0.214283, 1.09654, -0.111781, -1.92716, 0.27853, 0.129776, 0.206134, 0.947211, 1.02684, -7.5133, 1.21667, -1.11726, -0.133319, 0.601907, 1.67651, -1.33519, -0.211112, -0.749661, 0.27305, -0.0972756, -0.00675721, -0.0934575, 0.774257, -2.29683, 1.33649, -1.24208, -0.163775, -1.68795, 2.7337, 1.13095, -0.30047, -0.421993, -0.20363, -2.07555, 0.236498, 0.180407, 0.0254609, 0.190646, -2.58208, -0.309215, -0.310942, -0.140767, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.164995, -0.082825, 0.0198467, 0.0296524, -0.0459603, -0.834605, 0.0833514, 0.0994488, -0.106621, -0.0827767, -0.00826457, -0.140295, 0.107293, -0.0852911, 0.14152, -0.443271, -0.0472404, 0.0384509, -0.354013, -0.314905, -0.00780405, 0.112048, -0.284604, 0.0101169, -0.0138618, 0.0236221, -0.582416, -0.208453, 0.00426472, -0.139822, 0.0456046, 0.0577673, 0.271631, 0.0948193, 0.0161983, 0.1582, -0.0508404, 0.252925, -0.0456722, -0.0173384, -0.120113, 0.00480046, -0.155161, 0.0414313, 0.05812, 0.0612048, -0.045947, -0.00559795, -0.134488, -0.00632307, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.9805, -0.2313, -0.1361, 0.00782, 0.1587, 0.8306, 0.1886, -0.1835, 0.234, -1.121, -0.09106, -0.1953, -1.445, -0.4023, -1.248, -1.034, 0.276, 0.1287, -0.2439, -0.0685, -1.056, -0.538, -1.179, -0.233, -0.838, -0.506, -0.718, -2.482, -0.03406, -0.278, -1.368, -0.2031, -0.2632, -1.662, 0.0321, 0.12396, 0.2844, 0.4573, 0.4136, -1.514, 0.2305, -1.657, 0.53, -0.4773, -1.207, -0.03754, -0.09906, -0.03775, -0.222, -0.2461], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2183, 0.0835, 1.845, 0.001186, 0.007244, -6.605, -0.1815, 0.0288, -0.1606, -1.92, -0.013565, -3.78, -2.314, -1.178, -1.324, -3.932, -3.627, -1.799, -0.4275, 0.6763, -1.621, 0.567, -3.896, -4.93, 0.06305, 0.0537, -0.445, -5.83, 0.03014, -0.3877, -0.1763, -1.1875, -2.045, -0.2925, -1.186, 0.7856, -5.5, -2.035, -2.373, -0.4268, -0.3735, 0.633, 1.049, -3.121, -3.896, -1.512, -6.863, -0.0444, -0.356, -1.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.9937, 1.266, -1.835, 0.02298, 0.4675, -1.8955, -3.547, -2.043, -0.04602, -0.01506, -1.239, -2.885, -1.866, -0.2301, -1.171, -2.07, -2.092, -0.8013, -4.555, -0.814, 1.171, 1.013, 0.444, -1.596, -4.734, -3.678, -3.582, -2.465, -0.02853, -3.092, -1.365, 2.82, -2.129, 0.2793, 0.692, -1.673, 3.062, -0.364, -1.61, -0.358, -3.004, -2.906, -1.606, -4.51, -0.3992, -0.0811, -0.64, -0.5337, 0.5176, -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.4385, 0.4565, 1.127, -0.03317, -0.1512, -1.793, 0.1313, -0.5693, 1.535, -0.2578, -0.3037, -0.9614, 0.3271, 0.02594, -0.483, 0.1637, 0.4233, -0.6836, 0.1602, -0.0729, -0.0008287, 0.00641, 2.78, 0.0863, -0.0555, -0.6455, 0.738, 0.604, -0.03117, -0.3613, 0.5312, -0.692, 0.9126, 0.146, 0.678, 0.1214, 1.118, 1.357, 0.1721, -2.785, 0.8, 1.325, -1.2295, 0.4966, 0.1183, 0.8936, -0.7397, -0.2126, 0.1825, 0.01315], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1421, 0.1873, 0.663, -0.00356, -0.269, 0.05276, -0.475, 0.9014, -0.02875, -0.0961, -0.09155, 0.6104, -0.3328, 0.4202, -0.538, -0.3062, -0.1133, 0.05573, 0.5405, -0.04575, 0.03235, -0.07434, 0.761, 0.09296, -0.9106, 0.553, -0.5264, 0.738, -0.01197, -0.3635, 0.3015, -0.336, 0.4204, 0.6685, 0.2766, 0.6685, -0.0508, -0.3765, -0.1686, 0.1565, 0.09326, -1.862, 1.295, 0.4314, -0.4758, -2.314, 1.35, -0.00552, 0.285, -0.54], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5396, -0.137, 0.518, 0.02306, -0.317, 2.361, 1.314, 3.047, 0.1971, -2.613, -0.182, -2.074, -0.1036, 0.4795, 0.8037, 2.291, -0.2905, -2.15, 0.656, 0.218, -3.494, 1.005, 2.023, 0.751, 0.07605, -0.1691, 2.15, 1.7, -0.004955, -0.621, 0.8657, -0.4927, 1.646, 0.3203, 0.4475, -2.135, 3.445, 1.314, 1.259, -0.11914, -0.2651, -2.021, -4.438, 0.9, 1.005, -5.016, 0.2935, -0.692, 0.2102, -0.839], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0343, 0.0599, 0.1641, -0.02937, -0.02586, -0.666, 0.05063, 0.01192, -0.07697, -1.515, -0.03592, -0.1161, 0.0439, -0.01459, -0.0775, 0.1738, 0.0221, -0.0789, 0.181, -0.0198, -0.01319, 0.0723, 0.51, 0.04834, -0.02498, 0.0778, -0.0714, 0.03925, -0.02142, -0.09033, 0.0683, -0.0625, 0.1864, 0.01558, 0.1006, -0.0147, 0.258, 0.1987, 0.01814, -0.3953, 0.03125, 0.1378, -0.2267, -0.02794, 0.01246, 0.143, -0.006752, -0.01631, 0.00976, -0.01585], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 1.16, -4.65, -0.00468, -0.1786, -3.197, -1.504, -0.57, -0.4739, -1.012, -0.4087, -4.88, -1.257, -0.3867, -4.62, -1.935, 0.3245, -5.582, -1.806, -1.671, -0.1421, 2.324, -3.297, -4.047, -8.81, -3.422, -3.193, -4.9, 0.001789, 0.08777, -7.633, -0.3408, -3.744, -2.941, -9.89, 0.5146, -3.742, -7.85, -5.926, 0.5674, 2.268, -4.266, -0.5464, -0.743, -0.3875, -2.686, -7.234, -1.187, -0.9233, 0.4949], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3372, 0.0403, -0.12396, -0.00955, -0.1796, -1.34, -0.0451, 0.653, -0.269, -0.554, 0.01289, -0.3152, -0.913, -0.4243, 0.2505, -1.26, -0.181, -0.797, -1.301, -0.3962, 0.03156, 0.3896, -0.947, 0.3528, 0.12317, 0.1945, -1.378, -1.201, 0.001458, -0.2976, -0.04633, 0.2299, 0.734, 0.1948, 0.3064, -0.27, 0.4531, -0.2744, -0.5425, -0.172, 0.07794, -1.0, -0.6, -0.6094, 0.1863, 0.0849, -0.392, -0.06143, -0.2017, 0.12], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.43, -0.063, -0.4385, 0.02077, -0.696, 2.012, -0.3257, -3.441, -0.5176, -0.1031, 0.06775, 0.2761, -3.25, -1.324, 0.2734, 0.01171, -2.99, -0.01244, 0.1356, -0.2664, -2.857, -0.00586, -3.992, -2.863, -3.482, -4.01, -1.447, -0.7715, -0.03873, -0.2478, -3.367, -2.11, -0.4272, -1.422, -1.881, -1.446, -3.965, 1.699, -3.086, -2.053, -0.3208, -0.3545, -4.043, -2.68, -1.278, -5.28, -3.059, 0.265, 0.503, -0.1898], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.248, 0.10846, 0.786, -0.0348, -0.2634, 2.393, -1.118, 2.176, 1.442, -0.2054, -0.4702, -0.606, 0.811, 1.766, 1.334, -0.3428, 0.4285, -0.03958, 2.14, 1.484, -0.498, 1.156, 2.771, -0.0851, -1.317, 1.325, -1.754, 0.3462, 0.006416, -0.988, -0.2214, -0.749, -2.518, 0.4854, -0.942, -1.546, 2.572, -0.2073, 0.954, 0.3284, 0.5806, 2.154, 0.0789, 0.1042, 0.1982, 1.004, -2.555, -0.1714, -0.3027, 0.02168], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.5522, 0.1837, 0.1947, -0.04544, -0.02553, 0.5312, -0.7847, -1.701, -1.786, 0.004322, -0.02168, -0.06216, -3.822, -0.3696, -3.697, -1.857, 0.2847, -1.848, -5.81, -2.686, -3.65, 0.1809, 1.379, -0.09717, -3.598, -1.909, -1.677, 0.4014, -0.001959, -2.754, -0.7183, 0.09375, -2.91, -1.051, -2.01, 0.00987, -1.019, -2.486, -0.285, -3.033, 0.1445, -3.201, 0.127, -0.648, 0.04892, 0.1526, 0.09827, -0.03403, -0.12164, -0.05936], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0803, 0.09796, 0.3965, -0.02965, -0.000964, 0.2207, 0.02974, -1.285, -0.0243, -0.1799, -0.1154, -0.8276, 0.257, 0.1892, -0.0942, -0.931, -0.1929, -0.2996, -0.3254, -0.4937, -0.03, -0.2266, 0.882, -0.01557, -0.04852, -0.06134, -0.03111, -0.8916, 0.04303, -0.09125, 0.009476, 0.1909, 0.1647, -0.01312, 0.2117, 0.1458, -0.245, 0.3855, -0.0875, -0.505, 0.1317, -0.005985, 0.4895, 0.2299, -0.2358, -0.3433, 0.2551, -0.06384, 0.0329, -0.0443], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.007202, -0.03265, -0.05542, -0.01955, 0.01528, 0.005173, -0.0505, 0.005863, -0.05197, 0.04056, -0.0246, -0.05292, 0.01078, -0.01369, -0.04803, -0.02911, -0.03958, -0.009186, -0.002197, -0.05582, -0.005833, 0.02141, -0.01584, -0.01764, -0.04358, -0.01622, 0.02988, 0.00638, 0.0458, -0.04504, 0.004955, -0.014694, -0.038, -0.043, 0.00904, -0.0003672, -0.01842, -0.01834, -0.02785, -0.01932, 0.007214, -0.04636, -0.002335, 0.02321, -0.02925, -0.04886, -0.00482, -0.02423, -0.04324, -0.02608], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.562, 0.2588, 1.748, 0.0152, -0.129, 0.4138, -0.474, 1.889, 0.0943, 0.2769, -0.02927, -0.2081, 1.326, -0.3735, 1.135, 1.457, 0.639, -4.246, 1.303, -1.857, 0.3293, -0.5815, 2.064, -0.622, 0.5347, -2.107, -0.774, 0.2944, -0.04303, -0.3657, 0.2057, 0.4458, -0.8525, 0.231, 0.686, -0.718, 0.352, -1.195, -0.1678, -0.386, 0.1559, 3.031, 0.5415, -0.2815, -0.6973, 0.771, 0.712, -0.3174, -0.525, -0.6978], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.52, -0.03235, 3.62, 0.03726, 0.3738, -0.2856, 1.337, 3.896, 0.736, 0.1521, -0.916, 2.629, 0.7856, 0.695, 1.336, 3.057, 0.4004, 1.401, 4.273, 0.6006, -0.0568, 2.854, -0.522, 1.396, 0.11206, -4.34, 2.102, 0.4824, -0.04764, -0.02057, 0.674, -0.3074, -3.75, -2.4, 2.484, 0.7764, 0.3564, 2.459, -1.667, 1.389, 0.799, -1.951, 1.611, 1.959, 0.6523, -0.1566, -10.195, -1.21, -1.411, -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, 0.00846, 0.010086, -0.01537, -0.02861, -0.0405, 0.033, 0.00945, -0.0687, -0.0315, 0.010475, -0.0476, 0.013214, -0.02231, 0.01251, -0.03796, -0.04144, -0.01146, 0.005924, 0.001846, -0.0517, -0.0007267, -0.01962, -0.036, 0.02174, 0.00653, -0.004665, 0.011765, -0.01585, 0.04266, 0.014565, -0.01654, -0.0302, 0.0341, -0.03827, 0.012024, -0.05548, 8.49e-05, -0.06168, 0.00819, -0.04413, -0.03186, 0.01226, 0.006004, -0.04068, -0.003485, 0.01903, 0.01524, -0.02953, -0.02844, -0.0654], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2476, -0.287, -5.125, -0.0374, -0.203, 0.04596, 0.4119, 0.0933, -5.645, 0.7046, 0.0564, -2.258, -1.614, 0.542, -9.45, -3.967, 0.3184, -3.887, -3.186, 1.021, -3.338, -0.2313, -0.93, -0.432, 1.37, -1.809, -2.143, -3.975, 0.0441, -1.302, -1.172, -0.569, -2.566, -1.511, -1.445, 0.1885, -6.55, 0.762, -1.618, -2.95, 1.841, -3.062, -6.223, 0.8613, -1.948, -0.7617, -2.646, -1.092, -0.6167, -2.082], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1233, 0.1288, 0.5503, 0.03522, -0.0715, -2.049, -0.1085, 0.576, -0.0704, -1.471, -0.0372, 0.1654, -0.12305, -0.2896, -0.1177, 0.5024, 0.2017, 0.173, 0.5225, 0.1687, -0.1172, -0.1451, -0.5645, 0.1646, -0.0807, -0.131, -0.1871, -0.3794, -0.00943, -0.108, 0.1357, 0.0725, 0.405, -0.2106, -0.1229, -0.5605, -0.3196, 0.2355, -0.3271, -0.11096, -0.2443, 0.2664, 0.4546, 0.3076, -0.2263, -0.05756, 0.1471, 0.04745, -0.0748, -0.2163], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.055, 0.6284, -0.04877, -0.003069, -0.8096, -1.468, 1.033, -8.13, -0.02971, -0.2673, -0.4998, -1.305, -0.1796, -2.48, -0.722, -0.02866, -4.535, 0.3037, -1.236, 1.167, -1.778, 1.018, -4.504, 0.1516, -3.748, -0.3047, -6.5, 0.0459, 0.013275, -0.08624, -1.0205, -1.313, -0.0791, 0.305, -4.39, -2.975, -7.453, -4.46, -0.977, -1.546, 1.757, -0.2059, -7.152, 0.6084, -1.843, -5.46, -3.738, 0.639, -0.3447, -1.341], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.07764, 0.2008, 1.182, -0.0158, -0.2988, 3.627, 0.875, -0.0675, 0.002604, 0.06537, -0.2715, -0.1709, -1.63, 1.021, -1.225, 2.893, -0.3323, 1.538, 1.08, 0.1348, 0.1842, 1.408, 0.533, 0.651, -0.04907, 0.1504, 1.222, 3.115, 0.04156, -1.108, -0.1857, -0.809, -0.834, -4.22, -0.5513, -0.7183, 1.72, -0.515, -1.79, -0.1013, 0.4817, 2.494, 1.607, 0.8403, -0.592, 0.805, 0.832, -0.2113, -0.787, -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.02283, -0.02542, -0.1602, -0.01011, -0.06415, -0.006565, 0.02359, -0.0096, 0.0174, -5.41e-05, -0.1332, -0.02881, 0.05533, -0.0192, -0.01566, -0.03262, -0.03595, 0.0334, 0.03394, -0.1708, -0.07196, -0.1004, -0.02484, -0.013275, 0.02861, -0.0954, 0.00878, -0.04675, 0.00606, 0.02615, 0.0006804, 0.02588, -0.0517, -0.01839, -0.04327, 0.02203, 0.02129, -0.01619, -0.0162, -0.1293, -0.1923, 0.03732, -0.1355, -0.1877, -0.0802, -0.03647, 0.02403, -0.1748, -0.00634, -0.11414], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.06537, -0.00915, 0.1025, -0.01235, -0.02927, -0.635, -0.01627, 0.03096, -0.1053, 0.05338, -0.01958, -0.003523, 0.1401, -0.0191, -0.10767, 0.1644, 0.00964, -0.3228, 0.11816, 0.02138, -0.02452, -0.079, 0.161, -0.0414, -0.010345, -0.0344, 0.10474, -0.0584, 0.0489, -0.007298, 0.03854, -0.1411, 0.06042, 0.02292, 0.05405, 0.004185, 0.1608, -0.02716, 0.005543, -0.1552, -0.06146, 0.006123, -0.1702, 0.0462, -0.001839, 0.02998, -0.015594, 0.0157, 0.002026, -0.02718], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1324, 0.0621, -0.0813, 0.01395, -0.07367, -0.3254, -0.07214, 0.3674, -0.11163, -0.5894, 0.01199, -0.11676, -0.674, -0.2384, 0.07635, -0.5327, -0.094, -0.492, -0.6753, -0.0513, 0.0402, 0.1991, -0.5024, 0.2542, 0.101, 0.1597, -0.4944, -0.659, 0.01394, -0.1353, -0.05588, 0.126, 0.3264, 0.06146, 0.1823, -0.2673, 0.299, -0.3333, -0.3608, -0.0973, 0.11804, -0.6963, -0.3252, -0.423, 0.0937, 0.0305, -0.2357, -0.0324, -0.0784, 0.08984], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2747, 0.1682, -0.01152, -0.28, 0.7744, -1.21, -5.004, -0.8477, 0.04013, -0.2424, 1.194, 0.5557, 1.302, -1.032, 1.217, -0.547, -1.054, 3.51, 0.5767, 0.00744, 0.6416, 2.096, -0.005184, -0.546, -0.007763, 0.10547, 0.882, -0.0238, -0.2161, 0.4158, 0.8315, 1.131, 0.0434, -0.2263, -0.1256, 0.963, 0.458, 0.5537, 0.2227, 0.119, 1.801, -3.268, 0.196, -0.03522, 1.191, -2.11, -0.191, -0.0879, 0.0545], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1952, -0.911, 0.955, 0.00638, 0.1137, 2.615, 0.9106, 2.94, -0.4272, -0.2896, -0.4673, 0.519, -0.05045, 0.6953, 0.809, -0.3186, 0.6094, 0.8965, 1.019, 1.27, -0.552, 1.042, 2.102, -0.539, -0.083, -0.898, -0.3093, 3.56, -0.04373, -0.134, -0.534, -0.363, -3.111, -1.17, -1.861, 0.1306, 2.074, 1.238, 0.9326, -0.915, -3.71, -0.4202, 1.324, -1.99, 0.4976, 0.8813, -2.598, -0.09204, -0.2428, -0.4167], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02696, -0.03174, -0.002909, -0.006042, -0.02483, -0.03473, 0.01201, 0.01709, -0.03105, -0.02992, -0.02808, 0.005573, 0.04373, -0.00857, -0.0316, 0.03384, -0.0419, -0.03818, 0.0334, -0.02606, -0.01002, 0.01921, -0.03137, -0.03018, -0.0224, 0.015144, -0.0095, -0.014206, -0.00492, -0.01351, -0.02136, 0.00986, -0.02908, -0.05005, -0.03027, -0.01839, -0.00674, 0.01446, -0.04578, -0.02805, -0.00222, -0.03647, -0.0007014, 0.009476, 0.02107, -0.011925, -0.04068, -0.075, -0.003279, -0.01726], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.701, 0.207, -0.729, 0.00848, -0.1536, -0.6143, 0.2462, 0.175, -0.1613, -1.353, -0.02872, -0.4014, 0.0629, 0.07153, -0.318, -0.897, -0.512, 0.908, -0.151, 0.1163, 0.06836, 0.1676, 0.1416, -0.1589, -0.1666, -0.092, -0.2366, 0.03836, -0.01549, -0.2761, 0.3997, -0.0917, 0.5596, 0.3875, -0.2551, 0.1399, 2.428, 0.3525, 0.825, 0.05673, -0.1682, -0.3765, -0.1902, 0.4019, -0.1815, -0.1642, -5.01, -0.09705, 0.1815, -0.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.648, -1.01, 1.471, 0.02118, -0.6606, 2.781, 0.996, 1.372, 1.297, -0.126, -0.1848, 1.754, 1.507, 0.6294, 2.12, 2.195, -0.6255, -4.6, 0.3096, 0.05945, 0.62, -2.627, -1.056, 0.4712, -5.11, -0.4724, -0.4634, 0.5356, -0.01999, -0.2479, -3.42, -2.121, -1.917, 0.4768, 0.887, 1.515, 1.861, -0.529, 3.354, -0.666, 0.9805, 1.732, -0.6523, -0.4841, -1.16, 1.005, 0.6235, -0.1497, -0.03323, -0.83], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.924, 0.0404, 1.244, 0.0137, -0.3176, 3.057, -1.314, 2.182, 0.4543, 2.076, -0.641, 0.7217, -2.295, -1.842, 0.2878, 3.3, 0.3855, -0.7593, 2.037, 1.176, -0.2986, 1.983, 2.164, 0.1948, -0.2632, -0.08185, 1.199, 0.4656, -0.01387, 0.038, 0.849, 0.0744, 2.297, -3.031, -0.2054, 0.8467, 0.4956, -1.793, 2.512, 1.647, 0.823, -2.625, 2.95, 0.1287, -0.369, 0.6, 1.215, -1.236, 0.51, -1.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.1074, -0.02534, 0.1567, -0.0008397, -0.04202, -0.00815, -0.02922, 0.2144, -0.1117, -0.0665, -0.0848, -0.09735, 0.09406, -0.2075, -0.03232, 0.3933, 0.1431, 0.04214, 0.4097, 0.04865, -0.1569, -0.2983, 0.3535, 0.07794, -0.062, -3.174, 0.1375, 0.0814, 0.01698, -0.4365, 0.11847, 0.04587, -0.10626, -0.0836, 0.10315, -0.0722, 0.2983, -1.51, -0.07465, -0.05786, -0.1744, 0.2046, -0.02907, 0.1228, -0.0326, -0.2188, 0.02318, 0.03357, -0.001892, -0.05106], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.363, 0.1991, 0.2979, -0.03134, -0.2546, -0.572, -0.4114, -0.2019, -0.2375, -0.394, -0.001944, -0.000704, -0.1853, 0.05804, 0.4014, 0.08484, -0.867, 0.2651, 0.1855, -0.1282, 0.0694, 0.06793, 0.601, -0.05927, -0.09326, 0.1998, 0.2566, -0.5586, 0.001406, -0.11536, 0.02617, -0.3374, 0.3708, 0.1849, -0.1382, -0.03485, 0.1481, -0.1802, -0.2446, -0.6387, 0.2313, 0.4736, -1.029, 0.1831, 0.03683, -0.1488, -0.3296, -0.07715, -0.1387, -0.2177], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00659, 0.00868, 0.01665, -0.0419, 0.002985, 0.06696, -0.00931, -0.0328, 0.00673, 0.007378, -0.00953, 0.004562, 0.003334, -0.01096, -0.00908, -0.03696, 0.00416, 0.03653, -0.01477, 0.01309, -0.003521, 0.013985, -0.01232, 0.00959, -0.0006332, -0.02176, -0.002598, 0.02213, -0.00974, 0.001084, -0.004444, 0.004562, -5.83e-05, -0.003244, -0.005825, -0.00948, -0.001613, 0.01767, 0.00539, 0.003206, -0.001858, -0.003391, -0.004433, -0.004074, 0.00457, -0.02942, -0.01794, 0.00623, 0.005894, -0.003963], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1302, 0.2156, 1.429, 0.001378, -0.01505, -2.23, -2.484, -3.547, 0.1777, -0.4546, 0.03085, -0.06085, -0.654, -0.2368, -1.83, -0.537, -0.09937, -1.029, -0.9585, 0.7266, -0.2593, -0.1674, 0.0515, -2.15, -1.732, -0.8677, -2.85, -0.765, -0.02054, -1.354, -2.072, -0.147, -1.253, -0.4446, -0.8726, -0.1145, -0.1836, -2.76, -0.1083, -0.4226, -1.137, -0.5454, -3.879, -3.537, -1.993, -2.05, -0.991, -1.116, 0.216, -0.779], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0604, 0.04898, 0.1948, 0.03195, -0.04373, -0.2903, 0.005695, 0.1527, 0.1989, -0.00468, -0.047, -0.2297, 0.0808, 0.0758, -0.1368, 0.1638, 0.02817, -0.0069, 0.1674, -0.03397, 0.01338, -0.018, 0.477, 0.010765, -0.00956, -0.1765, 0.03354, 0.1659, -0.0196, -0.1071, 0.0896, -0.0418, 0.2351, 0.02638, 0.1201, 0.01448, 0.11884, 0.1254, 0.01808, -0.2294, 0.02649, 0.178, -0.1718, 0.1321, -0.010475, 0.0673, -0.1093, -0.03018, 0.003555, -0.013435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.002329, 0.00679, 0.03976, 0.01912, -0.01031, -0.0556, -0.0847, 0.0364, 0.02267, -0.1593, -0.02104, -0.03662, -0.0612, -0.01595, -0.0564, 0.01619, 0.0355, 0.072, 0.0846, -0.10345, -0.003162, -0.11743, 0.1272, 0.0299, -0.03061, -0.02988, -0.04227, -0.1696, -0.02705, -0.007053, 0.0447, -0.00965, 0.0864, -0.0345, -0.1368, -0.0813, 0.078, -0.1099, 0.05777, -0.05255, 0.01192, 0.1316, -0.0198, 0.0405, -0.005283, 0.08795, -0.1425, 0.00824, -0.01913, -0.01192], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.472, 0.1868, -0.2197, 0.017, -0.4353, 2.955, -0.3264, -2.523, -0.0978, 0.6777, -0.1461, -0.629, -1.076, 1.5, -1.153, 0.5674, -1.995, 1.794, 0.83, -1.186, 0.4246, -1.455, 1.714, -0.742, -1.2295, -0.103, 2.426, 0.5347, 0.03885, -0.2556, 0.419, 0.32, 1.133, 1.633, 1.54, 1.801, 2.338, 1.193, 2.613, -2.867, 1.601, 2.9, -0.4233, 0.7334, 1.006, 0.4563, -6.05, -0.9834, 0.405, -0.41], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.002853, -0.01312, 0.01779, -0.03235, -0.007526, 0.0416, -0.010574, -0.002745, 0.001614, -0.0343, -0.005783, -0.00403, -0.006023, 0.005753, 0.01572, 0.0123, -0.007507, 0.01714, 0.02255, 0.01462, -0.00539, 0.00795, 0.02, -0.009056, -0.007015, -0.01114, -0.03915, -0.2231, -0.007835, -0.005653, 0.008194, -0.00377, -0.0314, 0.00387, 0.02791, -0.000823, 0.02992, 0.007786, -0.01637, -0.003853, 0.01033, -0.0004652, -0.01459, 0.00946, -3.75e-05, -0.05215, 0.02605, 0.007168, 0.011215, -0.00802], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0379, 0.03754, 0.003738, 0.0193, -0.02646, -0.02487, -0.04282, 0.08136, -0.0193, 0.1213, 0.007053, -0.02444, -0.1661, -0.0452, -0.01941, -0.1729, -0.03516, -0.1748, -0.1316, -0.01703, -0.03226, 0.00416, -0.1276, -0.005596, 0.01932, -0.0269, -0.0872, -0.1621, -0.00827, -0.04382, -0.01103, 0.02687, 0.0763, 0.04404, 0.06476, -0.0677, 0.1396, -0.0725, -0.06232, -0.02962, 0.02658, -0.1078, -0.0539, -0.1344, 0.01337, -0.05832, -0.06903, -0.006165, -0.008316, 0.0013685], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.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.10724, 0.9316, -0.01608, -0.2448, -1.296, -0.1998, 0.6763, 1.608, -0.5264, -0.515, 1.315, 0.1772, -2.168, -0.11945, -0.7095, 1.042, -0.7466, 2.25, 0.494, 0.08936, 2.24, -0.1643, 0.555, 0.2664, -0.4878, 2.283, 2.693, -0.04736, -0.6636, -0.1066, 0.6396, -1.13, -1.024, 1.13, 0.954, 0.975, 0.823, 0.5576, -1.533, 1.107, 1.975, 0.7817, -0.3965, -3.697, -0.9297, -1.743, -0.341, 0.4792, 0.09076], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.09534, -0.3083, 0.1809, 0.03918, -0.01109, 0.4075, 0.954, 0.936, 0.2456, -0.1832, -0.215, -2.488, 1.761, 0.317, 0.2437, 3.287, 1.497, -0.9834, 3.113, -0.614, 0.1719, 0.467, 2.13, -1.683, -0.05322, -1.205, 2.957, -0.68, 0.02066, -0.2242, -0.01089, 1.443, -3.38, -1.826, 0.6035, -1.79, 3.188, -0.5957, 0.1493, -0.7075, 0.697, -0.8535, -0.539, 0.693, 0.3955, -2.957, 1.881, -0.3438, -1.194, -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, -1.015, -2.479, -0.12067, 0.0372, -0.000991, -0.3794, -1.381, -6.1, -3.166, -0.04797, -0.09265, -4.816, 0.003023, -1.81, -0.1721, -1.242, -1.757, -2.195, -0.02588, -1.689, -1.79, 2.002, -1.164, -0.06018, -2.898, -0.7363, -0.07935, -0.7974, -0.02629, -1.855, -2.79, -0.355, -0.996, -0.5054, -3.414, -6.39, -7.324, -0.5425, -0.10333, 0.6226, -4.035, -1.351, 0.7437, -3.338, -1.374, -2.719, -0.00914, -0.5645, -0.8716, -0.3003], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.056, 1.084, 0.04297, -0.02628, -0.4678, 0.8745, -0.4226, -0.65, -0.4739, 0.593, -0.01595, -5.844, -2.457, -0.8203, -0.4663, -4.65, -1.247, -1.437, -7.42, 3.895, -1.337, -0.1992, -0.812, -0.2383, -4.035, -1.678, -4.004, 0.852, 0.00856, -2.176, -6.74, 0.6704, -1.329, -2.027, -0.689, -4.63, -14.7, -1.835, -5.6, -0.8613, -1.027, -3.291, 0.1738, -0.8687, -1.067, -0.6035, -4.605, -1.398, 0.1339, -1.118], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.014, -1.996, 1.32, 0.01245, -0.1796, 3.86, 0.8413, 1.031, -1.949, -0.08514, -0.426, 0.644, 0.9717, 0.839, 0.663, -0.2886, 0.737, 1.083, -0.1691, -0.0712, -7.43, 1.582, 2.281, -0.3794, 0.6665, -1.365, 0.5625, 3.578, -0.02539, 0.005184, -0.947, -3.885, -0.354, 0.03964, -1.938, -0.02405, 1.421, -2.299, 0.92, 0.51, 1.327, 1.334, 1.276, 0.9756, 0.542, 0.04984, -3.092, -0.187, 0.2761, -0.2854], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03038, -0.001216, 0.051, 0.01988, 0.02109, 0.1544, -0.03038, -0.010284, -0.01463, -2.63, -0.02078, -0.00334, -0.02122, 0.01037, 0.02057, 0.111, -0.01816, 0.04935, -0.1179, 0.0377, 0.00228, 0.011246, -0.02911, -0.004395, -0.01359, 0.00229, -0.0004168, -0.11304, -0.0386, -0.01776, -0.01566, 0.0213, -0.002745, -0.001934, -0.03665, -0.02562, 0.007545, 0.02376, 0.02931, -0.006363, -0.01213, 0.008224, -0.2035, -0.01035, -0.04425, -0.08136, -0.0539, 0.003874, 0.0002285, -0.000855], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03284, -0.053, 0.0185, 0.03134, -0.00875, 0.02655, 0.0001134, -0.03665, 0.01598, 0.001291, -0.0653, -0.01191, 0.011215, -0.006523, -0.0383, 0.01886, -0.02667, 0.00939, -0.02568, -0.04053, -0.015366, -0.0421, -0.0373, -0.00322, -0.003727, 0.02446, 0.00344, 0.003702, -0.007236, -0.01319, -0.01316, 0.005295, 0.02855, -0.04654, 0.02855, -0.02577, 0.0409, 0.0346, -0.00919, 0.0008864, -0.0403, -0.0433, -0.0341, -0.03775, -0.04727, 0.019, 0.03085, -0.0329, 0.005062, -0.05014], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.973, -1.466, 1.834, 0.04187, -1.887, 4.375, -0.4407, 2.928, 0.6597, 0.222, -0.603, 4.062, 2.912, -1.188, -0.7437, 1.846, -1.384, -1.265, 4.16, 1.763, -1.041, 1.512, 4.145, -1.974, 0.79, -0.3794, 2.115, 4.562, -0.0258, 0.464, -0.2157, 0.9106, -2.742, -1.143, 1.03, 2.31, -0.989, 0.614, 2.56, 0.5625, 0.2742, 0.8086, 1.458, 2.812, 0.04108, 0.4556, 1.406, -0.3257, -0.576, -0.4778], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.883, -0.3313, 0.3875, 0.004913, 0.07947, 2.27, -1.369, 0.396, 1.463, -0.422, -0.561, 1.44, 2.594, 1.296, -5.367, 0.4553, -1.326, 2.127, 2.82, 0.9863, 0.3152, 0.4343, 3.986, 0.5737, 0.1643, 1.064, -3.553, 1.915, 0.00817, -0.806, -0.234, -2.293, 1.617, 0.04633, 1.029, 0.8784, 2.475, 1.303, 1.06, 0.293, 2.01, 1.492, 2.35, 1.932, -0.6196, 3.725, -1.696, -0.9062, -0.508, -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, -4.137, 0.00998, 1.045, -0.01843, -0.085, 1.352, 0.502, -0.04498, 0.2142, 1.097, -0.11176, -1.927, 0.2786, 0.1298, 0.2062, 0.9473, 1.026, -7.51, 1.217, -1.117, -0.1333, 0.602, 1.677, -1.335, -0.211, -0.7495, 0.273, -0.0973, -0.006756, -0.09344, 0.7744, -2.297, 1.337, -1.242, -0.1638, -1.6875, 2.734, 1.131, -0.3005, -0.4219, -0.2036, -2.076, 0.2365, 0.1804, 0.02547, 0.1907, -2.582, -0.3093, -0.311, -0.1407], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.165, -0.0828, 0.01985, 0.02965, -0.04596, -0.8345, 0.0834, 0.0994, -0.1066, -0.08276, -0.00826, -0.1403, 0.1073, -0.08527, 0.1415, -0.4434, -0.04724, 0.03845, -0.354, -0.315, -0.007805, 0.11206, -0.2847, 0.01012, -0.01386, 0.02362, -0.5825, -0.2085, 0.004265, -0.1398, 0.0456, 0.05777, 0.2717, 0.09485, 0.0162, 0.1582, -0.05084, 0.253, -0.0457, -0.01733, -0.1201, 0.0048, -0.1552, 0.04144, 0.0581, 0.06122, -0.04596, -0.005596, -0.1345, -0.006325]]
[3.36774, 2.54588, -0.0389669, -1.91475, -2.70427, -3.99944, -0.463557, 1.51561, 0.523712, 2.05891, -4.25012, 0.775074, 0.516338, -0.0323721, -3.05037, -5.91343, -0.0555402, 7.96523, -0.285095, 4.55646, -3.09144, -0.011529, 0.888575, 1.30197, -1.78948, -2.40425, -0.0362113, -2.94576, -5.16895, -4.54092, 0.952916, -0.0280837, 0.653321, 1.76114, -0.221997, 1.14058, -3.73105, 0.499857, 0.988964, -3.50907, -3.91367, -2.99118, 4.86253, -2.40697, 0.586339, -0.031272, -4.64101, -5.6667, -2.46629, 1.7656, 3.367, 2.545, -0.03897, -1.915, -2.705, -4.0, -0.4636, 1.516, 0.524, 2.059, -4.25, 0.775, 0.516, -0.03238, -3.05, -5.914, -0.05554, 7.965, -0.2852, 4.555, -3.092, -0.01153, 0.8887, 1.302, -1.789, -2.404, -0.03622, -2.945, -5.168, -4.54, 0.953, -0.02808, 0.6533, 1.761, -0.222, 1.141, -3.73, 0.4998, 0.989, -3.51, -3.914, -2.99, 4.863, -2.406, 0.5864, -0.03128, -4.64, -5.668, -2.467, 1.766]
Affine
[[-0.0127582, -0.00887589, -0.00723579, 0.00767675, 0.00931566, 0.0071792, -0.0200691, -0.0043592, -0.0130373, -0.00633122, 0.00450639, -0.00793209, 0.00549433, -0.033764, 0.00607453, 0.00215623, 0.0158447, -0.00598038, 0.00929636, -0.00589779, 0.00451337, 0.00359944, 0.00850896, 0.0186346, 0.00423414, 0.00851518, -0.00614686, 0.00736714, 0.00368197, 0.00638075, 0.00813425, -0.011153, 0.00163193, -0.00831878, -0.0466279, 7.09156e-06, 0.00669341, 0.00238643, 0.00549167, 0.00734867, 0.0037227, -0.00732882, -0.0038942, 0.00729432, -0.00179438, 0.0221494, 0.00332901, 0.00397908, 0.00700105, 0.0114604, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00283143, 0.000755587, 0.000783125, -0.000570412, -0.00053677, -0.000557695, 0.00826872, 0.000355407, 0.000142659, 0.000629996, -0.000354987, -0.0004401, 0.0149581, 0.00787306, -0.000151127, -0.000119562, 0.0282095, 0.000528112, -0.000976983, 0.000127173, -0.000374267, 0.0389175, 0.0042704, -0.000373139, -0.0013908, -0.000923106, 0.0241065, -0.000475842, -0.000324677, 0.000265444, 0.017192, 5.12371e-05, 0.00756497, 0.000302914, -0.00521073, -0.00167942, -0.000561238, 0.00104495, -0.000348402, 0.000245541, -0.00082574, 0.000218205, -9.16699e-05, -0.00150668, 0.00840073, 0.00685244, -0.000597606, -0.000338652, -0.00109612, 0.000154549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0049301, -0.000285218, -0.000553968, 0.00142855, -9.92657e-05, 0.000142064, 0.0117788, 0.000626055, -3.0932e-05, 0.001318, 0.00145359, 0.00747334, -0.0106582, -0.0198209, 0.000631563, 0.000869161, -0.00990305, -0.000341396, -6.6413e-05, 0.000384035, 0.000828126, 0.0481734, 0.00467589, 0.000187596, 0.00139911, 0.000705899, -0.0393045, -9.03853e-05, 0.000357674, 0.000142772, -0.00665336, -0.000384145, 0.0112587, -0.000396772, -0.0217608, 0.0179449, 0.000795843, 0.00153316, 0.000593307, -0.000111516, -0.00031012, -7.29237e-05, 0.00016551, -0.000507981, 0.00660199, -0.0103438, 9.30693e-05, 4.96055e-05, 0.000119951, 0.000539452, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00205864, 0.00164539, 6.82869e-06, 0.000166567, 0.0020073, 0.00106264, -0.00578589, 0.00052544, -0.000201865, 0.000713788, 0.0012699, 0.00131798, 0.0143028, -0.0061137, 0.000645437, 0.000981926, 0.00377224, 0.000492678, 0.000938681, 9.76633e-06, 0.000222775, 0.0624272, 0.0145788, 0.000810434, 0.000341009, 0.00060863, 0.0188602, 0.000487478, -0.000273315, 0.000315323, -0.00199442, 0.00217205, 0.00914911, -0.00113787, 0.000503985, -0.0028237, -8.58902e-05, 0.0138428, -0.000638491, 0.000701364, 0.000752653, 0.000234598, -2.73729e-05, 0.0010375, 0.00714236, -0.010683, -0.000335746, 0.000174062, -0.000247347, -0.000345668, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00165049, -0.000398666, -0.000574072, 0.00160601, -0.000237799, 0.000173651, 0.00696828, 0.000835474, -0.000381557, 0.00122352, 0.000192185, 0.00653937, -0.0034597, -0.0127705, 0.000287081, 0.00173193, 0.00660552, -0.000366963, -2.64479e-05, 0.00062996, 0.000361293, 0.0389771, 0.00465183, 0.00061975, 0.0012278, 0.000527967, -0.0206653, -0.000303707, 0.000422303, 0.000229555, -0.00446059, -0.000476586, 0.011458, -0.00113897, -0.0197853, 0.016936, 0.000483281, 0.00126521, 0.000972134, -0.000135354, -0.000319909, -0.000105072, 0.000114669, 8.05793e-05, 0.00586639, -0.0118789, -0.00017071, -0.000322688, -0.000163772, 0.000740023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01276, -0.00887, -0.007236, 0.007675, 0.009315, 0.00718, -0.02007, -0.00436, -0.01304, -0.006332, 0.004505, -0.007935, 0.005493, -0.03375, 0.006073, 0.002155, 0.01584, -0.00598, 0.00929, -0.005898, 0.004513, 0.0036, 0.00851, 0.01863, 0.004234, 0.008514, -0.006145, 0.007366, 0.003681, 0.006382, 0.00813, -0.011154, 0.001632, -0.008316, -0.04663, 7.1e-06, 0.006695, 0.002386, 0.005493, 0.007347, 0.003723, -0.007328, -0.003895, 0.007294, -0.001795, 0.02216, 0.003328, 0.00398, 0.007, 0.01146], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00283, 0.000756, 0.000783, -0.0005703, -0.000537, -0.000558, 0.00827, 0.0003555, 0.0001427, 0.00063, -0.000355, -0.0004401, 0.01496, 0.00787, -0.0001512, -0.00011957, 0.02821, 0.0005283, -0.000977, 0.0001272, -0.0003743, 0.0389, 0.00427, -0.0003731, -0.00139, -0.000923, 0.02411, -0.000476, -0.0003247, 0.0002654, 0.0172, 5.126e-05, 0.007565, 0.000303, -0.00521, -0.001679, -0.000561, 0.001045, -0.0003483, 0.0002456, -0.000826, 0.0002182, -9.17e-05, -0.001507, 0.0084, 0.00685, -0.0005975, -0.0003386, -0.001096, 0.0001545], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00493, -0.0002851, -0.000554, 0.001429, -9.924e-05, 0.0001421, 0.01178, 0.000626, -3.093e-05, 0.001318, 0.001453, 0.007473, -0.01066, -0.01982, 0.0006313, 0.0008693, -0.0099, -0.0003414, -6.64e-05, 0.000384, 0.0008283, 0.0482, 0.004677, 0.0001876, 0.001399, 0.0007057, -0.0393, -9.036e-05, 0.0003576, 0.0001428, -0.006653, -0.000384, 0.01126, -0.0003967, -0.02176, 0.01794, 0.000796, 0.0015335, 0.000593, -0.0001115, -0.0003102, -7.29e-05, 0.0001655, -0.000508, 0.006603, -0.010345, 9.304e-05, 4.96e-05, 0.0001199, 0.0005393], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.002058, 0.001645, 6.85e-06, 0.0001665, 0.002007, 0.001062, -0.005787, 0.0005255, -0.0002018, 0.000714, 0.00127, 0.001318, 0.014305, -0.006115, 0.0006456, 0.000982, 0.003773, 0.0004926, 0.000939, 9.8e-06, 0.0002228, 0.06244, 0.01458, 0.0008106, 0.000341, 0.0006084, 0.01886, 0.0004876, -0.0002732, 0.0003154, -0.001995, 0.002172, 0.00915, -0.001138, 0.000504, -0.002823, -8.59e-05, 0.01384, -0.0006385, 0.0007014, 0.0007524, 0.0002346, -2.736e-05, 0.001038, 0.00714, -0.01068, -0.0003357, 0.000174, -0.0002472, -0.0003457], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.001651, -0.0003986, -0.000574, 0.001606, -0.0002378, 0.0001737, 0.00697, 0.0008354, -0.0003815, 0.001224, 0.0001922, 0.00654, -0.00346, -0.01277, 0.000287, 0.001732, 0.006607, -0.000367, -2.646e-05, 0.00063, 0.0003612, 0.03897, 0.00465, 0.00062, 0.001227, 0.000528, -0.02066, -0.0003037, 0.0004222, 0.0002296, -0.00446, -0.0004766, 0.01146, -0.001139, -0.01979, 0.01694, 0.0004833, 0.001266, 0.0009723, -0.0001353, -0.00032, -0.0001051, 0.0001147, 8.06e-05, 0.005867, -0.01188, -0.0001707, -0.0003226, -0.0001638, 0.00074]]
[-0.0211303, -0.0184696, 0.0182208, -0.0184208, 0.0182179, -0.02113, -0.01846, 0.01822, -0.01842, 0.01822] |
class MyCalendarThree:
def __init__(self):
self.times = []
def book(self, start, end):
bisect.insort(self.times, (start, 1))
bisect.insort(self.times, (end, -1))
res = cur = 0
for _, x in self.times:
cur += x
res = max(res, cur)
return res | class Mycalendarthree:
def __init__(self):
self.times = []
def book(self, start, end):
bisect.insort(self.times, (start, 1))
bisect.insort(self.times, (end, -1))
res = cur = 0
for (_, x) in self.times:
cur += x
res = max(res, cur)
return res |
# A programming coach has n students to teach. We know that n is divisible by 3. Let's assume that
# all students are numbered from 1 to n, inclusive. Before the university programming championship
# the coach wants to split all students into groups of three. For some pairs of students we know that
# they want to be on the same team. Besides, if the i-th student wants to be on the same team with
# the j-th one, then the j-th student wants to be on the same team with the i-th one. The coach wants
# the teams to show good results, so he wants the following condition to hold: if the i-th student
# wants to be on the same team with the j-th, then the i-th and the j-th students must be on the
# same team. Also, it is obvious that each student must be on exactly one team. Help the coach and
# divide the teams the way he wants.
def dfs(graph, u, visited, actual_team):
if not visited[u]:
actual_team.append(u)
visited[u] = True
for v in range(len(graph)):
if not visited[v] and graph[u][v] == 1:
dfs(graph, v, visited, actual_team)
def coach(n, m, T):
graph = [[0] * n for _ in range(n)]
for i in range(m):
a, b = T[i]
graph[a - 1][b - 1] = 1
graph[b - 1][a - 1] = 1
teams = [[], [], []]
visited = [False] * len(graph)
flag = False
for i in range(len(graph)):
actual_team = []
dfs(graph, i, visited, actual_team)
if len(actual_team) >= 4:
flag = True
break
elif len(actual_team) > 0:
teams[len(actual_team) - 1].append(actual_team)
if flag or (not flag and len(teams[1]) > len(teams[0])):
print(-1)
else:
for i in range(len(teams[2])):
print(teams[2][i][0] + 1, teams[2][i][1] + 1, teams[2][i][2] + 1)
idx = 0
for i in range(len(teams[1])):
print(teams[1][i][0] + 1, teams[1][i][1] + 1, teams[0][idx][0] + 1)
idx += 1
count = 0
for i in range(idx, len(teams[0])):
if count == 3:
count = 0
print('\n')
print(teams[0][i][0] + 1, end=" ")
count += 1
n = 18
m = 12
T = [(1, 10), (2, 4), (2, 8), (3, 15), (3, 18), (4, 8), (5, 6), (9, 13),
(12, 14), (12, 16), (14, 16), (15, 18)]
coach(n, m, T)
| def dfs(graph, u, visited, actual_team):
if not visited[u]:
actual_team.append(u)
visited[u] = True
for v in range(len(graph)):
if not visited[v] and graph[u][v] == 1:
dfs(graph, v, visited, actual_team)
def coach(n, m, T):
graph = [[0] * n for _ in range(n)]
for i in range(m):
(a, b) = T[i]
graph[a - 1][b - 1] = 1
graph[b - 1][a - 1] = 1
teams = [[], [], []]
visited = [False] * len(graph)
flag = False
for i in range(len(graph)):
actual_team = []
dfs(graph, i, visited, actual_team)
if len(actual_team) >= 4:
flag = True
break
elif len(actual_team) > 0:
teams[len(actual_team) - 1].append(actual_team)
if flag or (not flag and len(teams[1]) > len(teams[0])):
print(-1)
else:
for i in range(len(teams[2])):
print(teams[2][i][0] + 1, teams[2][i][1] + 1, teams[2][i][2] + 1)
idx = 0
for i in range(len(teams[1])):
print(teams[1][i][0] + 1, teams[1][i][1] + 1, teams[0][idx][0] + 1)
idx += 1
count = 0
for i in range(idx, len(teams[0])):
if count == 3:
count = 0
print('\n')
print(teams[0][i][0] + 1, end=' ')
count += 1
n = 18
m = 12
t = [(1, 10), (2, 4), (2, 8), (3, 15), (3, 18), (4, 8), (5, 6), (9, 13), (12, 14), (12, 16), (14, 16), (15, 18)]
coach(n, m, T) |
ALPACA_END_POINT = 'https://paper-api.alpaca.markets'
ALPACA_API_KEY = 'PK45PMO9M1JFIAWKW1X1'
ALPACA_SECRET_KEY = 'l6nOaQQvgPqE98MhKjXkrZFvoKPl6ikJ7inBrEed'
POLYGON_ALPACA_WS = 'wss://alpaca.socket.polygon.io/stocks'
# POLYGON_API_KEY = 'jrQpup0rXAdbYrIRXUTOI8bZ1BkQlJiR'
POLYGON_API_KEY = 'PK45PMO9M1JFIAWKW1X1' | alpaca_end_point = 'https://paper-api.alpaca.markets'
alpaca_api_key = 'PK45PMO9M1JFIAWKW1X1'
alpaca_secret_key = 'l6nOaQQvgPqE98MhKjXkrZFvoKPl6ikJ7inBrEed'
polygon_alpaca_ws = 'wss://alpaca.socket.polygon.io/stocks'
polygon_api_key = 'PK45PMO9M1JFIAWKW1X1' |
class Solution:
def countVowelPermutation(self, n: int) -> int:
mod = 10**9 + 7
dp = [[0] * 5 for _ in range(n)]
for j in range(5):
dp[0][j] = 1
for i in range(1, n):
dp[i][0] = (dp[i-1][1] + dp[i-1][2] + dp[i-1][4]) % mod
dp[i][1] = (dp[i-1][0] + dp[i-1][2]) % mod
dp[i][2] = (dp[i-1][1] + dp[i-1][3]) % mod
dp[i][3] = (dp[i-1][2]) % mod
dp[i][4] = (dp[i-1][2] + dp[i-1][3]) % mod
return sum(dp[-1]) % mod
| class Solution:
def count_vowel_permutation(self, n: int) -> int:
mod = 10 ** 9 + 7
dp = [[0] * 5 for _ in range(n)]
for j in range(5):
dp[0][j] = 1
for i in range(1, n):
dp[i][0] = (dp[i - 1][1] + dp[i - 1][2] + dp[i - 1][4]) % mod
dp[i][1] = (dp[i - 1][0] + dp[i - 1][2]) % mod
dp[i][2] = (dp[i - 1][1] + dp[i - 1][3]) % mod
dp[i][3] = dp[i - 1][2] % mod
dp[i][4] = (dp[i - 1][2] + dp[i - 1][3]) % mod
return sum(dp[-1]) % mod |
# -*- coding: utf-8 -*-
# AtCoder Beginner Contest
if __name__ == '__main__':
n = int(input())
a = list(map(int, input().split()))
count = 0
# See:
# https://beta.atcoder.jp/contests/abc100/submissions/2675457
for ai in a:
while ai % 2 == 0:
ai //= 2
count += 1
print(count)
| if __name__ == '__main__':
n = int(input())
a = list(map(int, input().split()))
count = 0
for ai in a:
while ai % 2 == 0:
ai //= 2
count += 1
print(count) |
# -*- coding: utf-8 -*-
class RabbitmqClientError(Exception):
pass
class RabbitmqConnectionError(RabbitmqClientError):
pass
class QueueNotFoundError(RabbitmqClientError):
pass
| class Rabbitmqclienterror(Exception):
pass
class Rabbitmqconnectionerror(RabbitmqClientError):
pass
class Queuenotfounderror(RabbitmqClientError):
pass |
# -*- coding: utf-8 -*-
"""
File __init__.py
@author: ZhengYuwei
""" | """
File __init__.py
@author: ZhengYuwei
""" |
def login():
return 'login info'
a = 18
num1 = 30
num2 = 10
num2 = 20
| def login():
return 'login info'
a = 18
num1 = 30
num2 = 10
num2 = 20 |
A, B, C = map(int, input().split())
if (A*B*C) % 2 == 0:
print(0)
else:
abc = [A, B, C]
abc.sort()
print(abc[0] * abc[1])
| (a, b, c) = map(int, input().split())
if A * B * C % 2 == 0:
print(0)
else:
abc = [A, B, C]
abc.sort()
print(abc[0] * abc[1]) |
class BaseUIHandler(object):
def handle_first_run(self):
pass
def init(self):
raise NotImplementedError('No UI handler specified!')
return False
def start(self):
return 1
| class Baseuihandler(object):
def handle_first_run(self):
pass
def init(self):
raise not_implemented_error('No UI handler specified!')
return False
def start(self):
return 1 |
Encoding = {\
['e']: '000',
['\0x20']: '1111',
['t']: '1100',
['a']: '10111',
['o']: '1000',
['n']: '0111',
['i']: '0110',
['s']: '0100',
['r']: '0011',
['h']: '11011',
['l']: '10101',
['d']: '10010',
['c']: '00101',
['u']: '111001',
['m']: '110101',
['f']: '101001',
['p']: '101000',
['g']: '100111',
['y']: '010110',
['w']: '010100',
[',']: '001001',
['.']: '001000',
['b']: '1110101',
['v']: '1101000',
['0']: '0101110',
['k']: '11101110',
['1']: '11101101',
['5']: '11100001',
['2']: '11010011',
['T']: '11010010',
['S']: '10011010',
['"']: '10011000',
['9']: '01011111',
['A']: '01011110',
['M']: '01010110',
['-']: '01010100',
['C']: '111011110',
['I']: '111011000',
['N']: '111010001',
['\0x27']: '111010000',
['4']: '111000110',
['3']: '111000101',
['8']: '111000001',
['B']: '111000000',
['6']: '10110110',
['R']: '10110011',
['P']: '10110010',
['E']: '010101111',
['D']: '010101011',
['H']: '010101010',
['x']: '11101111110',
['\n']: '111011111110',
['\0x9']: '111011111111',
['7']: '1110110011',
['W']: '1110100111',
['L']: '1110100101',
['O']: '1110100100',
['F']: '1110001111',
['Y']: '1110001001',
['G']: '1110001000',
['J']: '1001101110',
['z']: '0101011101',
['j']: '0101011100',
['U']: '11101111100',
['q']: '11101100101',
[':']: '11101100100',
['$']: '11100011101',
['K']: '10011011111',
[';']: '10011011110',
['V']: '111011111010',
['*']: '111000111001',
['?']: '1110001110001',
['Q']: '1110001110000',
['/']: '11101111101110',
['X']: '11101111101101',
['&']: '11101111101100',
['Z']: '111011111011111',
['!']: '1110111110111100',
['%']: '11101111101111011',
['+']: '111011111011110101',
['>']: '1110111110111101000',
['<']: '111011111011110100111',
['(']: '1110111110111101001100',
[')']: '1110111110111101001101',
['=']: '111011111011110100101',
['#']: '1110111110111101001001',
['@']: '1110111110111101001000110',
['[']: '11101111101111010010001110',
[']']: '1110111110111101001000100',
['|']: '11101111101111010010001111',
['~']: '1110111110111101001000010',
['`']: '111011111011110100100010110',
['_']: '1110111110111101001000101110',
['\0x5c']: '1110111110111101001000000',
['^']: '1110111110111101001000011',
['{']: '11101111101111010010001010',
['}']: '1110111110111101001000001',
}
| encoding = {['e']: '000', ['\x00x20']: '1111', ['t']: '1100', ['a']: '10111', ['o']: '1000', ['n']: '0111', ['i']: '0110', ['s']: '0100', ['r']: '0011', ['h']: '11011', ['l']: '10101', ['d']: '10010', ['c']: '00101', ['u']: '111001', ['m']: '110101', ['f']: '101001', ['p']: '101000', ['g']: '100111', ['y']: '010110', ['w']: '010100', [',']: '001001', ['.']: '001000', ['b']: '1110101', ['v']: '1101000', ['0']: '0101110', ['k']: '11101110', ['1']: '11101101', ['5']: '11100001', ['2']: '11010011', ['T']: '11010010', ['S']: '10011010', ['"']: '10011000', ['9']: '01011111', ['A']: '01011110', ['M']: '01010110', ['-']: '01010100', ['C']: '111011110', ['I']: '111011000', ['N']: '111010001', ['\x00x27']: '111010000', ['4']: '111000110', ['3']: '111000101', ['8']: '111000001', ['B']: '111000000', ['6']: '10110110', ['R']: '10110011', ['P']: '10110010', ['E']: '010101111', ['D']: '010101011', ['H']: '010101010', ['x']: '11101111110', ['\n']: '111011111110', ['\x00x9']: '111011111111', ['7']: '1110110011', ['W']: '1110100111', ['L']: '1110100101', ['O']: '1110100100', ['F']: '1110001111', ['Y']: '1110001001', ['G']: '1110001000', ['J']: '1001101110', ['z']: '0101011101', ['j']: '0101011100', ['U']: '11101111100', ['q']: '11101100101', [':']: '11101100100', ['$']: '11100011101', ['K']: '10011011111', [';']: '10011011110', ['V']: '111011111010', ['*']: '111000111001', ['?']: '1110001110001', ['Q']: '1110001110000', ['/']: '11101111101110', ['X']: '11101111101101', ['&']: '11101111101100', ['Z']: '111011111011111', ['!']: '1110111110111100', ['%']: '11101111101111011', ['+']: '111011111011110101', ['>']: '1110111110111101000', ['<']: '111011111011110100111', ['(']: '1110111110111101001100', [')']: '1110111110111101001101', ['=']: '111011111011110100101', ['#']: '1110111110111101001001', ['@']: '1110111110111101001000110', ['[']: '11101111101111010010001110', [']']: '1110111110111101001000100', ['|']: '11101111101111010010001111', ['~']: '1110111110111101001000010', ['`']: '111011111011110100100010110', ['_']: '1110111110111101001000101110', ['\x00x5c']: '1110111110111101001000000', ['^']: '1110111110111101001000011', ['{']: '11101111101111010010001010', ['}']: '1110111110111101001000001'} |
product = {
"name":"book",
"quan":3,
"price":4.25,
}
person ={
"name":"zoy",
"first_name":"mol",
"age":39,
}
print(type(product))
print(dir(product))
print(product)
#Obtener los indices o llaves del diccionario
print(product.keys())
print(product.values())
print(product.items())
tienda = [
{"name":"chair", "price":150},
{"name":"soap", "price":10},
{'fifi':'8'}
]
print(tienda) | product = {'name': 'book', 'quan': 3, 'price': 4.25}
person = {'name': 'zoy', 'first_name': 'mol', 'age': 39}
print(type(product))
print(dir(product))
print(product)
print(product.keys())
print(product.values())
print(product.items())
tienda = [{'name': 'chair', 'price': 150}, {'name': 'soap', 'price': 10}, {'fifi': '8'}]
print(tienda) |
# coding=utf-8
ver_info = {"major": 1,
"alias": "Config",
"minor": 0}
cfg_ver_min = 2
cfg_ver_active = 2
| ver_info = {'major': 1, 'alias': 'Config', 'minor': 0}
cfg_ver_min = 2
cfg_ver_active = 2 |
class DataHeader:
def __init__(self, name, data_type, vocab_file=None, vocab_mode="read"):
self.name = name
self.data_type = data_type
self.vocab_file = vocab_file
self.vocab_mode = vocab_mode
| class Dataheader:
def __init__(self, name, data_type, vocab_file=None, vocab_mode='read'):
self.name = name
self.data_type = data_type
self.vocab_file = vocab_file
self.vocab_mode = vocab_mode |
def parse_data():
with open('2019/01/input.txt') as f:
data = f.read()
return [int(num) for num in data.splitlines()]
def part_one(data):
return sum(mass // 3 - 2 for mass in data)
def part_two(data):
total = 0
for num in data:
while (num := num // 3 - 2) > 0:
total += num
return total
def main():
data = parse_data()
print(f'Day 01 Part 01: {part_one(data)}')
print(f'Day 01 Part 02: {part_two(data)}')
| def parse_data():
with open('2019/01/input.txt') as f:
data = f.read()
return [int(num) for num in data.splitlines()]
def part_one(data):
return sum((mass // 3 - 2 for mass in data))
def part_two(data):
total = 0
for num in data:
while (num := (num // 3 - 2)) > 0:
total += num
return total
def main():
data = parse_data()
print(f'Day 01 Part 01: {part_one(data)}')
print(f'Day 01 Part 02: {part_two(data)}') |
# greatest common divisor
def gcd(a, b):
while b:
a, b = b, a % b
return a
# lowest common multiple
def lcm(a, b):
return (a * b) // gcd(a, b)
| def gcd(a, b):
while b:
(a, b) = (b, a % b)
return a
def lcm(a, b):
return a * b // gcd(a, b) |
""" ANIMATION CACHE MANAGER
mGear's animation cache manager is a tool that allows generating a Alembic GPU
cache representation of references rigs inside Autodesk Maya.
:module: mgear.animbits.cache_manager.__init__
"""
__version__ = 1.0
| """ ANIMATION CACHE MANAGER
mGear's animation cache manager is a tool that allows generating a Alembic GPU
cache representation of references rigs inside Autodesk Maya.
:module: mgear.animbits.cache_manager.__init__
"""
__version__ = 1.0 |
fname = input("Enter file name: ")
if len(fname) < 1:
fname = "mbox-short.txt"
fh = open(fname)
count = 0
def handle_line(line):
tokens = line.split(' ')
print(tokens[1])
count += 1
for line in fh:
if (line.startswith("From:")):
continue
if (not line.startswith("From")):
continue
handle_line(line)
print("There were", count, "lines in the file with From as the first word")
| fname = input('Enter file name: ')
if len(fname) < 1:
fname = 'mbox-short.txt'
fh = open(fname)
count = 0
def handle_line(line):
tokens = line.split(' ')
print(tokens[1])
count += 1
for line in fh:
if line.startswith('From:'):
continue
if not line.startswith('From'):
continue
handle_line(line)
print('There were', count, 'lines in the file with From as the first word') |
# Ex012.2
"""Make an algorithm that reads the price of a product, and show it's new price with a 5% discount"""
price = float(input('What is the product price?: '))
new_price = price - (price * 5 / 100)
print(f'The product that coast R$: {price:.2f}')
print(f'Will now coast R$: {new_price:.2f} with 5% discount')
| """Make an algorithm that reads the price of a product, and show it's new price with a 5% discount"""
price = float(input('What is the product price?: '))
new_price = price - price * 5 / 100
print(f'The product that coast R$: {price:.2f}')
print(f'Will now coast R$: {new_price:.2f} with 5% discount') |
#for i in range (1,11):
# print ("%d * 5 = %d" %(i,i*5))
# Printing Pattern
for i in range (1,5):
for j in range (0,i):
print ( " * ", end = '' )
print ('') #NExt line
# For - Else loop
for i in range (5,1,-1):
for j in range(0,i):
print ( " * ", end = '' )
print ('') #NExt line
for i in range(50, 100, 2):
print (i)
else:
print (" No breaks")
print (" Values")
#While loop
i = 10
while i < 25:
print (i)
i = i+1
# Displaying Date and time current
# The continue statement
i =1
while i < 20:
if i == 6:
print ('Hai')
continue
print (i)
i = i+2
| for i in range(1, 5):
for j in range(0, i):
print(' * ', end='')
print('')
for i in range(5, 1, -1):
for j in range(0, i):
print(' * ', end='')
print('')
for i in range(50, 100, 2):
print(i)
else:
print(' No breaks')
print(' Values')
i = 10
while i < 25:
print(i)
i = i + 1
i = 1
while i < 20:
if i == 6:
print('Hai')
continue
print(i)
i = i + 2 |
"""
https://www.codewars.com/kata/52597aa56021e91c93000cb0/python
Given an array (probably with different types of values inside), move all of the zeros to the end,
keeping the order of the rest.
Example:
move_zeros([false,1,0,1,2,0,1,3,"a"])
# returns[false,1,1,2,1,3,"a",0,0]
"""
def move_zeros(array):
num_zeros = 0
output = []
for item in array:
if item == False and type(item) == bool:
output.append(False)
elif item == 0:
num_zeros += 1
else:
output.append(item)
output.extend([0] * num_zeros)
return(output)
# My 2nd approach, in-place:
def move_zeros2(array):
stop = len(array) - 1
pointer = 0
while pointer < stop:
if array[pointer] == False and type(array[pointer]) == bool:
pointer += 1
elif array[pointer] == 0:
array.append(0)
del array[pointer]
stop -= 1
else:
pointer += 1
return array
def move_zeros3(arr):
l = [i for i in arr if isinstance(i, bool) or i != 0]
return l+[0]*(len(arr)-len(l))
print(move_zeros2([False, 1, 0, 1, 2, 0, 1, 3, "a"]))
| """
https://www.codewars.com/kata/52597aa56021e91c93000cb0/python
Given an array (probably with different types of values inside), move all of the zeros to the end,
keeping the order of the rest.
Example:
move_zeros([false,1,0,1,2,0,1,3,"a"])
# returns[false,1,1,2,1,3,"a",0,0]
"""
def move_zeros(array):
num_zeros = 0
output = []
for item in array:
if item == False and type(item) == bool:
output.append(False)
elif item == 0:
num_zeros += 1
else:
output.append(item)
output.extend([0] * num_zeros)
return output
def move_zeros2(array):
stop = len(array) - 1
pointer = 0
while pointer < stop:
if array[pointer] == False and type(array[pointer]) == bool:
pointer += 1
elif array[pointer] == 0:
array.append(0)
del array[pointer]
stop -= 1
else:
pointer += 1
return array
def move_zeros3(arr):
l = [i for i in arr if isinstance(i, bool) or i != 0]
return l + [0] * (len(arr) - len(l))
print(move_zeros2([False, 1, 0, 1, 2, 0, 1, 3, 'a'])) |
# Shared constants
SEGMENT_LEN = 3 # duration per spectrogram in seconds
FMIN = 30 # min frequency
FMAX = 12500 # max frequency
SAMPLING_RATE = 44100
WIN_LEN = 2048 # FFT window length
BINARY_SPEC_HEIGHT = 32 # binary classifier spectrogram height
SPEC_HEIGHT = 128 # normal spectrogram height
SPEC_WIDTH = 384 # spectrogram width
IGNORE_FILE = 'data/ignore.txt' # classes listed in this file are ignored in analysis
CLASSES_FILE = 'data/classes.txt' # list of classes used in training and analysis
CKPT_PATH = 'data/ckpt' # where to save/load model checkpoint
BINARY_CKPT_PATH = 'data/binary_classifier_ckpt' # model checkpoint for binary classifier
| segment_len = 3
fmin = 30
fmax = 12500
sampling_rate = 44100
win_len = 2048
binary_spec_height = 32
spec_height = 128
spec_width = 384
ignore_file = 'data/ignore.txt'
classes_file = 'data/classes.txt'
ckpt_path = 'data/ckpt'
binary_ckpt_path = 'data/binary_classifier_ckpt' |
def get_input():
puzzle_input = open('./python/inputday01.txt', 'r').read()
return puzzle_input.split('\n')[:-1]
def get_fuel_required(module_mass=0):
return (module_mass//3)-2
def get_fuel_required_for_fuel(fuel_volume=0):
fuel_volume_required = (fuel_volume // 3)-2
if fuel_volume_required <= 0:
return 0
else:
return fuel_volume_required + get_fuel_required_for_fuel(fuel_volume=fuel_volume_required)
def run_part_one():
puzzle_input = get_input()
total_fuel_required = 0
for module_mass in puzzle_input:
total_fuel_required += get_fuel_required(module_mass=int(module_mass))
return total_fuel_required
def run_part_two():
# I could have simply modified the function for get_fuel_required
# but I wanted to make sure the process of part one and part two remained
# intact
puzzle_input = get_input()
total_fuel_required = 0
for module_mass in puzzle_input:
basic_fuel_for_module = get_fuel_required(module_mass=int(module_mass))
total_fuel_required += get_fuel_required_for_fuel(fuel_volume = basic_fuel_for_module) + basic_fuel_for_module
return total_fuel_required
if __name__ == "__main__":
part_one_answer = run_part_one()
print(part_one_answer)
part_two_answer_new = run_part_two()
print(part_two_answer_new)
| def get_input():
puzzle_input = open('./python/inputday01.txt', 'r').read()
return puzzle_input.split('\n')[:-1]
def get_fuel_required(module_mass=0):
return module_mass // 3 - 2
def get_fuel_required_for_fuel(fuel_volume=0):
fuel_volume_required = fuel_volume // 3 - 2
if fuel_volume_required <= 0:
return 0
else:
return fuel_volume_required + get_fuel_required_for_fuel(fuel_volume=fuel_volume_required)
def run_part_one():
puzzle_input = get_input()
total_fuel_required = 0
for module_mass in puzzle_input:
total_fuel_required += get_fuel_required(module_mass=int(module_mass))
return total_fuel_required
def run_part_two():
puzzle_input = get_input()
total_fuel_required = 0
for module_mass in puzzle_input:
basic_fuel_for_module = get_fuel_required(module_mass=int(module_mass))
total_fuel_required += get_fuel_required_for_fuel(fuel_volume=basic_fuel_for_module) + basic_fuel_for_module
return total_fuel_required
if __name__ == '__main__':
part_one_answer = run_part_one()
print(part_one_answer)
part_two_answer_new = run_part_two()
print(part_two_answer_new) |
# -*- coding: utf-8
def register(user_store, email, username, first_name, last_name, password):
"""
Register command
"""
return user_store.create(
email=email,
username=username,
first_name=first_name,
last_name=last_name,
password=password)
| def register(user_store, email, username, first_name, last_name, password):
"""
Register command
"""
return user_store.create(email=email, username=username, first_name=first_name, last_name=last_name, password=password) |
SUBLIST = 0
SUPERLIST = 1
EQUAL = 2
UNEQUAL = 3
def sublist(list_one, list_two):
one_chars = map(str, list_one)
two_chars = map(str, list_two)
list_one_str = ",".join(one_chars) + ","
list_two_str = ",".join(two_chars) + ","
if list_one_str == list_two_str:
return 2
elif list_one_str in list_two_str or list_one_str == []:
return 0
elif list_two_str in list_one_str or list_two_str == []:
return 1
else:
return 3
| sublist = 0
superlist = 1
equal = 2
unequal = 3
def sublist(list_one, list_two):
one_chars = map(str, list_one)
two_chars = map(str, list_two)
list_one_str = ','.join(one_chars) + ','
list_two_str = ','.join(two_chars) + ','
if list_one_str == list_two_str:
return 2
elif list_one_str in list_two_str or list_one_str == []:
return 0
elif list_two_str in list_one_str or list_two_str == []:
return 1
else:
return 3 |
# 285. Inorder Successor in BST
# Runtime: 68 ms, faster than 85.36% of Python3 online submissions for Inorder Successor in BST.
# Memory Usage: 18.1 MB, less than 79.18% of Python3 online submissions for Inorder Successor in BST.
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
# Inorder tTraversal
def inorderSuccessor(self, root: TreeNode, p: TreeNode) -> TreeNode:
stack = []
find_p = False
while root or stack:
while root:
stack.append(root)
root = root.left
node = stack.pop()
if find_p:
return node
elif node == p:
find_p = True
root = node.right
return None | class Solution:
def inorder_successor(self, root: TreeNode, p: TreeNode) -> TreeNode:
stack = []
find_p = False
while root or stack:
while root:
stack.append(root)
root = root.left
node = stack.pop()
if find_p:
return node
elif node == p:
find_p = True
root = node.right
return None |
# -*- coding: utf-8 -*-
"""@package scrape
@date Created on nov. 15 09:30 2017
@author samuel_r
"""
def get_translation(jp_text):
return
| """@package scrape
@date Created on nov. 15 09:30 2017
@author samuel_r
"""
def get_translation(jp_text):
return |
# -*- coding: utf-8 -*-
class ArchiveService:
def get_service_name(self):
return 'DEFAULT'
def submit(self, url):
pass
class ArchiveException(Exception):
pass
| class Archiveservice:
def get_service_name(self):
return 'DEFAULT'
def submit(self, url):
pass
class Archiveexception(Exception):
pass |
def reverse(st):
st = st.split()
st.reverse()
st2 = ' '.join(st)
return st2 | def reverse(st):
st = st.split()
st.reverse()
st2 = ' '.join(st)
return st2 |
class HyperParameter:
def __init__(self, num_batches, batch_size, epoch, learning_rate, hold_prob, epoch_to_report=100):
self.num_batches = num_batches
self.batch_size = batch_size
self.epoch = epoch
self.learning_rate = learning_rate
self.hold_prob = hold_prob,
self.epoch_to_report = epoch_to_report
def __str__(self):
return "epoch: " + str(self.epoch) + ", num_batches: " + str(self.num_batches) + ", batch_size: " + str(self.batch_size) + ", learning_rate: " + str(self.learning_rate) + ", hold_prob: " + str(self.hold_prob)
| class Hyperparameter:
def __init__(self, num_batches, batch_size, epoch, learning_rate, hold_prob, epoch_to_report=100):
self.num_batches = num_batches
self.batch_size = batch_size
self.epoch = epoch
self.learning_rate = learning_rate
self.hold_prob = (hold_prob,)
self.epoch_to_report = epoch_to_report
def __str__(self):
return 'epoch: ' + str(self.epoch) + ', num_batches: ' + str(self.num_batches) + ', batch_size: ' + str(self.batch_size) + ', learning_rate: ' + str(self.learning_rate) + ', hold_prob: ' + str(self.hold_prob) |
# This project created by urhoba
# www.urhoba.net
#region DB Settings
class DBSettings:
sqliteDB = "db.urhoba"
#endregion
#region Mail Settings
class MailSettings:
fromMail = "ahmetbohur@urhoba.net"
fromPassword = ""
smtpHost = "smtp.yandex.com"
smtpPort = 465
#endregion
#region Download Settings
class DownloadSettings:
musicFolder = "songs"
videoFolder = "videos"
#endregion
#region Telegram Settings
class TelegramSettings:
telegramAPI = ""
#endregion | class Dbsettings:
sqlite_db = 'db.urhoba'
class Mailsettings:
from_mail = 'ahmetbohur@urhoba.net'
from_password = ''
smtp_host = 'smtp.yandex.com'
smtp_port = 465
class Downloadsettings:
music_folder = 'songs'
video_folder = 'videos'
class Telegramsettings:
telegram_api = '' |
"""python-homewizard-energy errors."""
class HomeWizardEnergyException(Exception):
"""Base error for python-homewizard-energy."""
class RequestError(HomeWizardEnergyException):
"""Unable to fulfill request.
Raised when host or API cannot be reached.
"""
class InvalidStateError(HomeWizardEnergyException):
"""Raised when the device is not in the correct state."""
class UnsupportedError(HomeWizardEnergyException):
"""Raised when the device is not supported from this library."""
class DisabledError(HomeWizardEnergyException):
"""Raised when device API is disabled. User has to enable API in app."""
| """python-homewizard-energy errors."""
class Homewizardenergyexception(Exception):
"""Base error for python-homewizard-energy."""
class Requesterror(HomeWizardEnergyException):
"""Unable to fulfill request.
Raised when host or API cannot be reached.
"""
class Invalidstateerror(HomeWizardEnergyException):
"""Raised when the device is not in the correct state."""
class Unsupportederror(HomeWizardEnergyException):
"""Raised when the device is not supported from this library."""
class Disablederror(HomeWizardEnergyException):
"""Raised when device API is disabled. User has to enable API in app.""" |
__author__ = 'Chintalagiri Shashank'
__email__ = 'shashank@chintal.in'
__version__ = '0.2.9'
| __author__ = 'Chintalagiri Shashank'
__email__ = 'shashank@chintal.in'
__version__ = '0.2.9' |
{
'targets': [
{
'target_name': 'rulesjs',
'sources': [ 'src/rulesjs/rules.cc' ],
'include_dirs': ["<!(node -e \"require('nan')\")"],
'dependencies': [ 'src/rules/rules.gyp:rules' ],
'defines': [ '_GNU_SOURCE' ],
'cflags': [ '-Wall', '-O3' ]
}
]
}
| {'targets': [{'target_name': 'rulesjs', 'sources': ['src/rulesjs/rules.cc'], 'include_dirs': ['<!(node -e "require(\'nan\')")'], 'dependencies': ['src/rules/rules.gyp:rules'], 'defines': ['_GNU_SOURCE'], 'cflags': ['-Wall', '-O3']}]} |
# Generate key with openssl rand -hex 32
JWT_SECRET_KEY = "46e5c95a2d980476afb2d679b37bb2c8990c25b4ea1075514f67f62f77daf306"
JWT_ALGORITHM = "HS256"
JWT_EXPIRATION_MINUTES = 15
# TODO: Move to environment variables
DB_HOST = 'localhost'
DB_NAME = 'bookstore'
DB_USER = 'postgres'
DB_PASSWORD = 'postgres'
DB_PORT = 5432
REDIS_URL = 'redis://localhost'
TEST = True
TEST_DB_HOST = 'localhost'
TEST_DB_NAME = 'test_bookstore'
TEST_DB_USER = 'postgres'
TEST_DB_PASSWORD = 'postgres'
TEST_DB_PORT = 5432
TEST_REDIS_URL = 'redis://localhost/1'
| jwt_secret_key = '46e5c95a2d980476afb2d679b37bb2c8990c25b4ea1075514f67f62f77daf306'
jwt_algorithm = 'HS256'
jwt_expiration_minutes = 15
db_host = 'localhost'
db_name = 'bookstore'
db_user = 'postgres'
db_password = 'postgres'
db_port = 5432
redis_url = 'redis://localhost'
test = True
test_db_host = 'localhost'
test_db_name = 'test_bookstore'
test_db_user = 'postgres'
test_db_password = 'postgres'
test_db_port = 5432
test_redis_url = 'redis://localhost/1' |
class Difference:
def __init__(self, a):
self.__elements = a
self.maximumDifference = 0
def computeDifference(self):
max_num = max(self.__element)
min_num = min(self.__element)
self.maximumDifference = max_num - min_num
if self.maximumDifference < 0:
self.maximumDifference *= -1
return self.maximumDifference
a = [int(e) for e in input().split(' ')]
d = Difference(a)
d.computeDifference()
print(d.maximumDifference)
| class Difference:
def __init__(self, a):
self.__elements = a
self.maximumDifference = 0
def compute_difference(self):
max_num = max(self.__element)
min_num = min(self.__element)
self.maximumDifference = max_num - min_num
if self.maximumDifference < 0:
self.maximumDifference *= -1
return self.maximumDifference
a = [int(e) for e in input().split(' ')]
d = difference(a)
d.computeDifference()
print(d.maximumDifference) |
t = int(input())
output = []
for _ in range(t):
p, a, b, c = [int(x) for x in input().split()]
if a >= p:
minimum = a - p
elif p % a == 0:
minimum = 0
else:
minimum = a - (p % a)
if b >= p:
minimum = min(minimum, b - p)
elif p % b == 0:
minimum = 0
else:
minimum = min(minimum, b - (p % b))
if c >= p:
minimum = min(minimum, c - p)
elif p % c == 0:
minimum = 0
else:
minimum = min(minimum, c - (p % c))
output.append(minimum)
for out in output:
print(out) | t = int(input())
output = []
for _ in range(t):
(p, a, b, c) = [int(x) for x in input().split()]
if a >= p:
minimum = a - p
elif p % a == 0:
minimum = 0
else:
minimum = a - p % a
if b >= p:
minimum = min(minimum, b - p)
elif p % b == 0:
minimum = 0
else:
minimum = min(minimum, b - p % b)
if c >= p:
minimum = min(minimum, c - p)
elif p % c == 0:
minimum = 0
else:
minimum = min(minimum, c - p % c)
output.append(minimum)
for out in output:
print(out) |
n=int(input());r=""
for i in range(1,n+1):
s=input().strip()
if s=="5 6" or s=="6 5":
r+="Case "+str(i)+": Sheesh Beesh\n"
else:
a=[int(k) for k in s.split()]
a.sort(reverse=True)
if a[0]==a[1]:
if a[0]==1:
r+="Case "+str(i)+": Habb Yakk\n"
elif a[0]==2:
r += "Case " + str(i) + ": Dobara\n"
elif a[0]==3:
r += "Case " + str(i) + ": Dousa\n"
elif a[0]==4:
r += "Case " + str(i) + ": Dorgy\n"
elif a[0]==5:
r += "Case " + str(i) + ": Dabash\n"
else:
r += "Case " + str(i) + ": Dosh\n"
else:
r += "Case " + str(i)+": "
for k in range(2):
if a[k]==1:
r+="Yakk"
elif a[k]==2:
r+="Doh"
elif a[k]==3:
r+="Seh"
elif a[k]==4:
r+="Ghar"
elif a[k]==5:
r+="Bang"
else:
r+="Sheesh"
if k==0:
r+=" "
else:
r+="\n"
print(r,end="")
| n = int(input())
r = ''
for i in range(1, n + 1):
s = input().strip()
if s == '5 6' or s == '6 5':
r += 'Case ' + str(i) + ': Sheesh Beesh\n'
else:
a = [int(k) for k in s.split()]
a.sort(reverse=True)
if a[0] == a[1]:
if a[0] == 1:
r += 'Case ' + str(i) + ': Habb Yakk\n'
elif a[0] == 2:
r += 'Case ' + str(i) + ': Dobara\n'
elif a[0] == 3:
r += 'Case ' + str(i) + ': Dousa\n'
elif a[0] == 4:
r += 'Case ' + str(i) + ': Dorgy\n'
elif a[0] == 5:
r += 'Case ' + str(i) + ': Dabash\n'
else:
r += 'Case ' + str(i) + ': Dosh\n'
else:
r += 'Case ' + str(i) + ': '
for k in range(2):
if a[k] == 1:
r += 'Yakk'
elif a[k] == 2:
r += 'Doh'
elif a[k] == 3:
r += 'Seh'
elif a[k] == 4:
r += 'Ghar'
elif a[k] == 5:
r += 'Bang'
else:
r += 'Sheesh'
if k == 0:
r += ' '
else:
r += '\n'
print(r, end='') |
def order(data):
# new_data = []
for i in range(len(data)):
for j in range(len(data) - 1):
if (data[j] > data[j + 1]):
temp_data_j = data[j]
data[j] = data[j + 1]
data[j + 1] = temp_data_j
return data
| def order(data):
for i in range(len(data)):
for j in range(len(data) - 1):
if data[j] > data[j + 1]:
temp_data_j = data[j]
data[j] = data[j + 1]
data[j + 1] = temp_data_j
return data |
# %% [markdown]
'''
# How to install NVIDIA GPU driver and CUDA on ubuntu
'''
# %% [markdown]
'''
This post is intended to describe how to install NVIDIA GPU driver and CUDA on ubuntu.
I have myself a GTX 560M with ubuntu 18.04.
'''
# %% [markdown]
'''
## Requirements
Before installing, we will first need to find the different version that your GPU support in the following order (in parenthesis my versions):
1. The GPU driver version (390.132)
2. CUDA version (9.0)
3. OS version (ubuntu 18.04) (and optionnally `gcc` version)
### GPU driver version
Got to [this page](https://www.nvidia.com/Download/index.aspx) and fill in all the information, and click on search to find the latest driver version your GPU support.
From here we will download the driver installer that we will use later.
Right-click on `Download` and `copy the link location`.
Back on your computer, paste the link to download the installer with `wget`:
```bash
wget https://www.nvidia.com/content/DriverDownload-March2009/confirmation.php?url=/XFree86/Linux-x86_64/390.132/NVIDIA-Linux-x86_64-390.132.run&lang=us&type=TITAN
```
### CUDA version
CUDA compatibility depends on your driver version you got in the previous section, check [here](https://docs.nvidia.com/deploy/cuda-compatibility/index.html#binary-compatibility) the compatibility matrix to know chich CUDA you can use.
### OS version
Check if your ubuntu version is compatible with this CUDA version.
You should select the right documentation [there](https://docs.nvidia.com/cuda/archive/)
and check the section `system-requirements`, for example https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#system-requirements.
>**Warning**
>If your ubuntu version is not compatible with CUDA, you should install the good gcc version.
>After [cheking the gcc version](https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#system-requirements), you can install it and make it your default one:
>```bash
>sudo apt-get install build-essential gcc-6
>sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 6
>```
## Installation
Now that we know all the required version, we can start installing the softwares.
First, we make sure to have the build dependencies installed:
```bash
sudo apt-get install build-essential
```
Install the GPU driver by running the installer (we downloaded it previously):
```bash
sudo bash NVIDIA-Linux-x86_64-390.132.run
```
To download the CUDA toolkit installer, select the good release there:
https://developer.nvidia.com/cuda-toolkit-archive
Fill in the different informations, and at the end select `runfile (local)`:
https://developer.nvidia.com/cuda-90-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1704&target_type=runfilelocal
>**Note**
>In my case, my CUDA version does not support ubuntu 18.04 so I selected the newest distribution which is 17.04.
Now you can download and run the executable to install the CUDA toolkit.
```bash
wget https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_384.81_linux-run
sudo bash cuda_9.0.176_384.81_linux-run
```
>**Warning**
>After running the CUDA installer, you will be asked if you want to install the NVIDIA Accelerated Graphics Driver for Linux-x86_64. Of course don't do it, we already installed it previously.
You can now follow the [post-installation actions](https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#post-installation-actions).
The most important is to add the CUDA paths to the environment variable (system wide), so depending on your CUDA version:
```bash
echo "export PATH=/usr/local/cuda-9.0/bin:/usr/local/cuda/bin\${PATH:+:\${PATH}}" | sudo tee -a /etc/profile.d/myenvvars.sh
echo "export LD_LIBRARY_PATH=/usr/local/cuda-9.0/lib64:/usr/local/cuda/lib64\${LD_LIBRARY_PATH:+:\${LD_LIBRARY_PATH}}" | sudo tee -a /etc/profile.d/myenvvars.sh
```
Optionnally check the cuda toolkit samples to test if CUDA is working.
To help the compiler when linking, add cuda libraries to the library path and check:
```bash
echo "/usr/local/cuda-9.0/lib64" | sudo tee /etc/ld.so.conf.d/cuda-9.0.conf
sudo ldconfig -v
```
Finally, reboot your computer:
```bash
sudo reboot
```
'''
# %% [markdown]
'''
# Tags
'''
# %% [markdown]
'''
Software-Development; GPU
''' | """
# How to install NVIDIA GPU driver and CUDA on ubuntu
"""
'\nThis post is intended to describe how to install NVIDIA GPU driver and CUDA on ubuntu. \nI have myself a GTX 560M with ubuntu 18.04.\n'
'\n## Requirements\n\nBefore installing, we will first need to find the different version that your GPU support in the following order (in parenthesis my versions):\n1. The GPU driver version (390.132)\n2. CUDA version (9.0)\n3. OS version (ubuntu 18.04) (and optionnally `gcc` version)\n\n### GPU driver version\n\nGot to [this page](https://www.nvidia.com/Download/index.aspx) and fill in all the information, and click on search to find the latest driver version your GPU support.\n\nFrom here we will download the driver installer that we will use later.\n\nRight-click on `Download` and `copy the link location`.\nBack on your computer, paste the link to download the installer with `wget`:\n```bash\nwget https://www.nvidia.com/content/DriverDownload-March2009/confirmation.php?url=/XFree86/Linux-x86_64/390.132/NVIDIA-Linux-x86_64-390.132.run&lang=us&type=TITAN\n```\n\n### CUDA version\n\nCUDA compatibility depends on your driver version you got in the previous section, check [here](https://docs.nvidia.com/deploy/cuda-compatibility/index.html#binary-compatibility) the compatibility matrix to know chich CUDA you can use.\n\n### OS version\n\nCheck if your ubuntu version is compatible with this CUDA version.\nYou should select the right documentation [there](https://docs.nvidia.com/cuda/archive/)\nand check the section `system-requirements`, for example https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#system-requirements.\n\n>**Warning** \n>If your ubuntu version is not compatible with CUDA, you should install the good gcc version.\n>After [cheking the gcc version](https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#system-requirements), you can install it and make it your default one:\n>```bash\n>sudo apt-get install build-essential gcc-6\n>sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 6\n>```\n\n## Installation\n\nNow that we know all the required version, we can start installing the softwares.\n\nFirst, we make sure to have the build dependencies installed:\n```bash\nsudo apt-get install build-essential\n```\n\nInstall the GPU driver by running the installer (we downloaded it previously):\n```bash\nsudo bash NVIDIA-Linux-x86_64-390.132.run\n```\n\nTo download the CUDA toolkit installer, select the good release there:\nhttps://developer.nvidia.com/cuda-toolkit-archive\n\nFill in the different informations, and at the end select `runfile (local)`:\nhttps://developer.nvidia.com/cuda-90-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1704&target_type=runfilelocal\n\n>**Note** \n>In my case, my CUDA version does not support ubuntu 18.04 so I selected the newest distribution which is 17.04.\n\nNow you can download and run the executable to install the CUDA toolkit.\n```bash\nwget https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_384.81_linux-run\nsudo bash cuda_9.0.176_384.81_linux-run\n```\n\n>**Warning** \n>After running the CUDA installer, you will be asked if you want to install the NVIDIA Accelerated Graphics Driver for Linux-x86_64. Of course don\'t do it, we already installed it previously.\n\nYou can now follow the [post-installation actions](https://docs.nvidia.com/cuda/archive/9.0/cuda-installation-guide-linux/index.html#post-installation-actions).\nThe most important is to add the CUDA paths to the environment variable (system wide), so depending on your CUDA version:\n```bash\necho "export PATH=/usr/local/cuda-9.0/bin:/usr/local/cuda/bin\\${PATH:+:\\${PATH}}" | sudo tee -a /etc/profile.d/myenvvars.sh\necho "export LD_LIBRARY_PATH=/usr/local/cuda-9.0/lib64:/usr/local/cuda/lib64\\${LD_LIBRARY_PATH:+:\\${LD_LIBRARY_PATH}}" | sudo tee -a /etc/profile.d/myenvvars.sh\n```\nOptionnally check the cuda toolkit samples to test if CUDA is working.\n\nTo help the compiler when linking, add cuda libraries to the library path and check:\n```bash\necho "/usr/local/cuda-9.0/lib64" | sudo tee /etc/ld.so.conf.d/cuda-9.0.conf\nsudo ldconfig -v\n```\n\nFinally, reboot your computer:\n```bash\nsudo reboot\n```\n'
'\n# Tags\n'
'\nSoftware-Development; GPU\n' |
#!/usr/bin/env python3
def clean_up():
try:
raise KeyboardInterrupt
finally:
print('Goodbye, world!')
def divide(x, y):
try:
result = x / y
except ZeroDivisionError:
print("division by zero!")
else:
print("result is", result)
finally:
print("executing finally clause")
if __name__ == "__main__":
# clean_up()
divide(2, 1)
divide(2, 0)
divide("2", "1")
| def clean_up():
try:
raise KeyboardInterrupt
finally:
print('Goodbye, world!')
def divide(x, y):
try:
result = x / y
except ZeroDivisionError:
print('division by zero!')
else:
print('result is', result)
finally:
print('executing finally clause')
if __name__ == '__main__':
divide(2, 1)
divide(2, 0)
divide('2', '1') |
test = {
"name": "q3",
"points": 1,
"hidden": False,
"suites": [
{
"cases": [
{
"code": r"""
>>> len(data["flavor"].unique()) == 4
True
""",
"hidden": False,
"locked": False,
},
{
"code": r"""
>>> for l in ["chocolate", "vanilla", "strawberry", "mint"]:
... assert l in data["flavor"].unique()
""",
"hidden": False,
"locked": False,
},
{
"code": r"""
>>> assert type(price_by_flavor) == pd.Series
""",
"hidden": False,
"locked": False,
},
{
"code": r"""
>>> assert len(price_by_flavor) == 4
""",
"hidden": False,
"locked": False,
},
],
"scored": False,
"setup": "",
"teardown": "",
"type": "doctest"
}
]
} | test = {'name': 'q3', 'points': 1, 'hidden': False, 'suites': [{'cases': [{'code': '\n\t\t\t\t\t>>> len(data["flavor"].unique()) == 4\n\t\t\t\t\tTrue\n\t\t\t\t\t', 'hidden': False, 'locked': False}, {'code': '\n\t\t\t\t\t>>> for l in ["chocolate", "vanilla", "strawberry", "mint"]:\n\t\t\t\t\t... \tassert l in data["flavor"].unique()\n\t\t\t\t\t', 'hidden': False, 'locked': False}, {'code': '\n\t\t\t\t\t>>> assert type(price_by_flavor) == pd.Series\n\t\t\t\t\t', 'hidden': False, 'locked': False}, {'code': '\n\t\t\t\t\t>>> assert len(price_by_flavor) == 4\n\t\t\t\t\t', 'hidden': False, 'locked': False}], 'scored': False, 'setup': '', 'teardown': '', 'type': 'doctest'}]} |
# Just a simple time class
# that stores time in 24 hour format
# and displays in period time (AM/PM)
class SimpleTime:
def __init__(self, hour, minute, period):
# assertions for checking
assert(hour > 0 and hour <= 12)
assert(minute >= 0 and minute < 60)
assert(period == "AM" or period == "PM")
self._minute = minute
if period == "AM":
self._hour = hour % 12
else:
self._hour = (hour % 12) + 12
# adds hours to time
def add_hours(self, hours):
assert isinstance(hours, int)
self._hour = (self._hour + hours) % 24
# adds minutes to time
def add_minutes(self, minutes):
assert isinstance(minutes, int)
self.add_hours((self._minute + minutes) // 60)
self._minute = (self._minute + minutes) % 60
# add hours and minutes
def add(self, hours, minutes):
self.add_hours((hours + (minutes // 60)))
self.add_minutes(minutes % 60)
# set the time to the time of another SimpleTime instance
def set(self, other):
assert isinstance(other, SimpleTime)
self._hour = other._hour
self._minute = other._minute
# comparison operators
def __eq__(self, other):
return ((self._hour, self._minute) == (other._hour, other._minute))
def __ne__(self, other):
return ((self._hour, self._minute) != (other._hour, other._minute))
def __lt__(self, other):
return ((self._hour, self._minute) < (other._hour, other._minute))
def __le__(self, other):
return ((self._hour, self._minute) <= (other._hour, other._minute))
def __gt__(self, other):
return ((self._hour, self._minute) > (other._hour, other._minute))
def __ge__(self, other):
return ((self._hour, self._minute) >= (other._hour, other._minute))
def __str__(self):
if self._hour < 12:
if self._hour == 0:
tm = "12:%02d AM" % self._minute
else:
tm = "%d:%02d AM" % (self._hour, self._minute)
else:
if self._hour == 12:
tm = "12:%02d PM" % (self._minute)
else:
tm = "%d:%02d PM" % ((self._hour % 12), self._minute)
return tm
| class Simpletime:
def __init__(self, hour, minute, period):
assert hour > 0 and hour <= 12
assert minute >= 0 and minute < 60
assert period == 'AM' or period == 'PM'
self._minute = minute
if period == 'AM':
self._hour = hour % 12
else:
self._hour = hour % 12 + 12
def add_hours(self, hours):
assert isinstance(hours, int)
self._hour = (self._hour + hours) % 24
def add_minutes(self, minutes):
assert isinstance(minutes, int)
self.add_hours((self._minute + minutes) // 60)
self._minute = (self._minute + minutes) % 60
def add(self, hours, minutes):
self.add_hours(hours + minutes // 60)
self.add_minutes(minutes % 60)
def set(self, other):
assert isinstance(other, SimpleTime)
self._hour = other._hour
self._minute = other._minute
def __eq__(self, other):
return (self._hour, self._minute) == (other._hour, other._minute)
def __ne__(self, other):
return (self._hour, self._minute) != (other._hour, other._minute)
def __lt__(self, other):
return (self._hour, self._minute) < (other._hour, other._minute)
def __le__(self, other):
return (self._hour, self._minute) <= (other._hour, other._minute)
def __gt__(self, other):
return (self._hour, self._minute) > (other._hour, other._minute)
def __ge__(self, other):
return (self._hour, self._minute) >= (other._hour, other._minute)
def __str__(self):
if self._hour < 12:
if self._hour == 0:
tm = '12:%02d AM' % self._minute
else:
tm = '%d:%02d AM' % (self._hour, self._minute)
elif self._hour == 12:
tm = '12:%02d PM' % self._minute
else:
tm = '%d:%02d PM' % (self._hour % 12, self._minute)
return tm |
file_pickled_dfas = "helper-dfas.pickled"
file_pickled_dfas = "helper-more-dfas.pickled"
day_in_sec = 86400
now_in_sec = time.time()
def get_dfas():
"""Get DFAs from pickled file. If the file is older than a day regenerate it."""
global day_in_sec
global now_in_sec
global __dfa_list
try:
pickle_time, dfa_list = pickle.load(open(file_pickled_dfas, "rb"))
except:
generate_new_f = True
# Error while reading, or pickle to old => regenerate pickled DFAs
if generate_new_f or pickle_time - now_in_sec > day_in_sec:
dfa_list = [
DFA.Universal(), # Matches all lexemes
DFA.Empty(), # Matches the lexeme of zero length
#
dfa('a'),
dfa('ab'),
dfa('a(b?)'),
dfa('ab|abcd'),
# "Branches"
dfa('12|AB'),
dfa('x(12|AB)'),
dfa('(12|AB)x'),
dfa('x(12|AB)x'),
dfa('x(1?2|A?B)x'),
dfa('x(1?2?|A?B?)x'),
# "Loops"
dfa('A+'),
dfa('A(B*)'),
dfa('A((BC)*)'),
dfa('((A+)B+)C+'),
# "BranchesLoops"
dfa('(AB|XY)+'),
dfa('(AB|XY)(DE|FG)*'),
dfa('(AB|XY)+(DE|FG)+'),
dfa('((AB|XY)(DE|FG))+'),
# "Misc"
dfa('(pri|ri|n)+'),
dfa('(p?r?i?|rin|n)+'),
]
pickle.dump((now_in_sec, dfa_list), open(file_pickled_dfas, "wb"))
__dfa_list.extend(dfa_list)
def add_more_DFAs():
global day_in_sec
global now_in_sec
global __dfa_list
try:
pickle_time, dfa_list = pickle.load(open(file_pickled_more_dfas, "rb"))
except:
generate_new_f = True
# Error while reading, or pickle to old => regenerate pickled DFAs
if generate_new_f or pickle_time - now_in_sec > day_in_sec:
dfa_list = [
shapes.get_sm_shape_by_name_with_acceptance(name.strip())
for name in shapes.get_sm_shape_names_list()
]
pickle.dump((now_in_sec, dfa_list), open(file_pickled_more_dfas, "wb"))
__dfa_list.extend(dfa_list)
get_dfas()
| file_pickled_dfas = 'helper-dfas.pickled'
file_pickled_dfas = 'helper-more-dfas.pickled'
day_in_sec = 86400
now_in_sec = time.time()
def get_dfas():
"""Get DFAs from pickled file. If the file is older than a day regenerate it."""
global day_in_sec
global now_in_sec
global __dfa_list
try:
(pickle_time, dfa_list) = pickle.load(open(file_pickled_dfas, 'rb'))
except:
generate_new_f = True
if generate_new_f or pickle_time - now_in_sec > day_in_sec:
dfa_list = [DFA.Universal(), DFA.Empty(), dfa('a'), dfa('ab'), dfa('a(b?)'), dfa('ab|abcd'), dfa('12|AB'), dfa('x(12|AB)'), dfa('(12|AB)x'), dfa('x(12|AB)x'), dfa('x(1?2|A?B)x'), dfa('x(1?2?|A?B?)x'), dfa('A+'), dfa('A(B*)'), dfa('A((BC)*)'), dfa('((A+)B+)C+'), dfa('(AB|XY)+'), dfa('(AB|XY)(DE|FG)*'), dfa('(AB|XY)+(DE|FG)+'), dfa('((AB|XY)(DE|FG))+'), dfa('(pri|ri|n)+'), dfa('(p?r?i?|rin|n)+')]
pickle.dump((now_in_sec, dfa_list), open(file_pickled_dfas, 'wb'))
__dfa_list.extend(dfa_list)
def add_more_df_as():
global day_in_sec
global now_in_sec
global __dfa_list
try:
(pickle_time, dfa_list) = pickle.load(open(file_pickled_more_dfas, 'rb'))
except:
generate_new_f = True
if generate_new_f or pickle_time - now_in_sec > day_in_sec:
dfa_list = [shapes.get_sm_shape_by_name_with_acceptance(name.strip()) for name in shapes.get_sm_shape_names_list()]
pickle.dump((now_in_sec, dfa_list), open(file_pickled_more_dfas, 'wb'))
__dfa_list.extend(dfa_list)
get_dfas() |
class BytesIntEncoder:
@staticmethod
def encode(s: str) -> int:
return int.from_bytes(s.encode(), byteorder='big')
@staticmethod
def decode(i: int) -> str:
return i.to_bytes(((i.bit_length() + 7) // 8), byteorder='big').decode()
| class Bytesintencoder:
@staticmethod
def encode(s: str) -> int:
return int.from_bytes(s.encode(), byteorder='big')
@staticmethod
def decode(i: int) -> str:
return i.to_bytes((i.bit_length() + 7) // 8, byteorder='big').decode() |
def castleTowers(n, ar):
occurrences_map = {}
max_item = -1
for item in ar:
if item > max_item:
max_item = item
if item in occurrences_map:
occurrences_map[item] += 1
else:
occurrences_map[item] = 1
return occurrences_map[max_item]
if __name__ == "__main__":
n = int(input().strip())
ar = map(int, input().strip().split(' '))
result = castleTowers(n, ar)
print(result)
| def castle_towers(n, ar):
occurrences_map = {}
max_item = -1
for item in ar:
if item > max_item:
max_item = item
if item in occurrences_map:
occurrences_map[item] += 1
else:
occurrences_map[item] = 1
return occurrences_map[max_item]
if __name__ == '__main__':
n = int(input().strip())
ar = map(int, input().strip().split(' '))
result = castle_towers(n, ar)
print(result) |
def countMinOperations(target, n):
result = 0
while (True):
zero_count = 0
i = 0
while (i < n):
if ((target[i] & 1) > 0):
break
elif (target[i] == 0):
zero_count += 1
i += 1
if (zero_count == n):
return result
if (i == n):
for j in range(n):
target[j] = target[j] // 2
result += 1
for j in range(i, n):
if (target[j] & 1):
target[j] -= 1
result += 1
| def count_min_operations(target, n):
result = 0
while True:
zero_count = 0
i = 0
while i < n:
if target[i] & 1 > 0:
break
elif target[i] == 0:
zero_count += 1
i += 1
if zero_count == n:
return result
if i == n:
for j in range(n):
target[j] = target[j] // 2
result += 1
for j in range(i, n):
if target[j] & 1:
target[j] -= 1
result += 1 |
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/home/pi/catkin_ws/src/mobrob_util/msg/ME439SensorsRaw.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439SensorsProcessed.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelSpeeds.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439MotorCommands.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelAngles.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelDisplacements.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439PathSpecs.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WaypointXY.msg"
services_str = ""
pkg_name = "mobrob_util"
dependencies_str = "geometry_msgs;std_msgs"
langs = "gencpp;geneus;genlisp;gennodejs;genpy"
dep_include_paths_str = "mobrob_util;/home/pi/catkin_ws/src/mobrob_util/msg;geometry_msgs;/opt/ros/melodic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/melodic/share/std_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python2"
package_has_static_sources = '' == 'TRUE'
genmsg_check_deps_script = "/opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py"
| messages_str = '/home/pi/catkin_ws/src/mobrob_util/msg/ME439SensorsRaw.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439SensorsProcessed.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelSpeeds.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439MotorCommands.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelAngles.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WheelDisplacements.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439PathSpecs.msg;/home/pi/catkin_ws/src/mobrob_util/msg/ME439WaypointXY.msg'
services_str = ''
pkg_name = 'mobrob_util'
dependencies_str = 'geometry_msgs;std_msgs'
langs = 'gencpp;geneus;genlisp;gennodejs;genpy'
dep_include_paths_str = 'mobrob_util;/home/pi/catkin_ws/src/mobrob_util/msg;geometry_msgs;/opt/ros/melodic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/melodic/share/std_msgs/cmake/../msg'
python_executable = '/usr/bin/python2'
package_has_static_sources = '' == 'TRUE'
genmsg_check_deps_script = '/opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py' |
#
# Find the one food that is eaten by only one animal.
#
# The animals table has columns (name, species, birthdate) for each individual.
# The diet table has columns (species, food) for each food that a species eats.
#
QUERY = '''
select diet.food, count(animals.name) as num from animals, diet where animals.species = diet.species group by diet.food having num = 1
'''
| query = '\nselect diet.food, count(animals.name) as num from animals, diet where animals.species = diet.species group by diet.food having num = 1\n' |
# IE 11 CustomEvent polyfill
src = r"""
(function () {
if ( typeof window.CustomEvent === "function" ) return false; //If not IE
function CustomEvent ( event, params ) {
params = params || { bubbles: false, cancelable: false, detail: undefined };
var evt = document.createEvent( 'CustomEvent' );
evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
return evt;
}
CustomEvent.prototype = window.Event.prototype;
window.CustomEvent = CustomEvent;
})();
""" | src = '\n(function () {\n if ( typeof window.CustomEvent === "function" ) return false; //If not IE\n\n function CustomEvent ( event, params ) {\n params = params || { bubbles: false, cancelable: false, detail: undefined };\n var evt = document.createEvent( \'CustomEvent\' );\n evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );\n return evt;\n }\n\n CustomEvent.prototype = window.Event.prototype;\n\n window.CustomEvent = CustomEvent;\n})();\n' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.