code stringlengths 31 1.05M | apis list | extract_api stringlengths 97 1.91M |
|---|---|---|
#!/usr/bin/env python
import glob
import numpy as np
import astropy.io.fits as fits
import scipy.optimize as opt
import matplotlib.pyplot as plt
import matplotlib as mpl
mpl.rcParams['font.family'] = 'Times New Roman'
mpl.rcParams['font.size'] = '15'
mpl.rcParams['mathtext.default'] = 'regular'
#mpl.rcParams['xtick.top'] = 'True'
#mpl.rcParams['ytick.right'] = 'True'
mpl.rcParams['xtick.direction'] = 'in'
mpl.rcParams['ytick.direction'] = 'in'
#mpl.rcParams['axes.grid'] = 'True'
mpl.rcParams['axes.xmargin'] = '.08' #'.05'
mpl.rcParams['axes.ymargin'] = '.10'
mpl.rcParams['savefig.facecolor'] = 'None'
mpl.rcParams['savefig.edgecolor'] = 'None'
mpl.rcParams['savefig.bbox'] = 'tight'
numof_xrays_mpgrp = []
significance_n50 = []
significance_n25 = []
significance_n250 = []
for i in range(10):
if i == 8:
continue
fitsfile = 'out/crabgrp/v181119_rand/input%02d/default/default.fits' % i
if len(glob.glob(fitsfile)) == 0:
continue
print(fitsfile)
hdu = fits.open(fitsfile)
numof_xrays_mpgrp.append(hdu[1].header['NXMPGRP']/1e+6)
for extnum in range(1,len(hdu)):
peak_index = np.argmax(hdu[extnum].data['ALL_NORM_COUNTS'])
peak_enhance = hdu[extnum].data['MPGRP_NORM_SUB'][peak_index]
peak_enhance_error = hdu[extnum].data['MPGRP_NORM_SUB_ERROR'][peak_index]
peak_enhance_significance = peak_enhance / peak_enhance_error
print('%d: %.2e %.2e %.3e' % (extnum,peak_enhance,peak_enhance_error,peak_enhance_significance))
if hdu[extnum].name == 'PROFILE_N50':
significance_n50.append(peak_enhance_significance)
if hdu[extnum].name == 'PROFILE_N25':
significance_n25.append(peak_enhance_significance)
peak_index = np.argmax(hdu['PROFILE_N250'].data['ALL_NORM_COUNTS'])
all_count_peak_sum = sum(hdu['PROFILE_N250'].data['ALL_COUNTS'][peak_index-1:peak_index+2])
mpgrp_count_peak_sum = sum(hdu['PROFILE_N250'].data['MPGRP_COUNTS'][peak_index-1:peak_index+2])
all_norm_peak_sum = float(all_count_peak_sum)/ float(hdu['PROFILE_N250'].header['NXALL'])
mpgrp_norm_peak_sum = float(mpgrp_count_peak_sum) / float(hdu['PROFILE_N250'].header['NXMPGRP'])
all_norm_peak_sum_error = np.sqrt(float(all_count_peak_sum))/ float(hdu['PROFILE_N250'].header['NXALL'])
mpgrp_norm_peak_sum_error = np.sqrt(float(mpgrp_count_peak_sum)) / float(hdu['PROFILE_N250'].header['NXMPGRP'])
peak_enhance = mpgrp_norm_peak_sum - all_norm_peak_sum
peak_enhance_error = np.sqrt(all_norm_peak_sum_error**2+mpgrp_norm_peak_sum_error**2)
peak_enhance_significance = peak_enhance / peak_enhance_error
print(all_norm_peak_sum,mpgrp_norm_peak_sum,peak_enhance,peak_enhance_error,peak_enhance_significance)
significance_n250.append(peak_enhance_significance)
def func(x, k):
return k * np.sqrt(x)
# The actual curve fitting happens here
optimizedParameters, pcov = opt.curve_fit(func, numof_xrays_mpgrp, significance_n250);
# Use the optimized parameters to plot the best fit
plt.clf()
fig, axes = plt.subplots(1,1,figsize=(7.0,6.0))
#plt.plot(numof_xrays_mpgrp,significance_n250,'ro',markersize=8.0,label='0.04 x 3',zorder=4,edgecolor='black')
#plt.plot(numof_xrays_mpgrp,significance_n50,'ys',markersize=8.0,label='0.02',zorder=3)
#plt.plot(numof_xrays_mpgrp,significance_n25,'b^',markersize=8.0,label='0.04',zorder=2)
plt.scatter(numof_xrays_mpgrp,significance_n250,marker='o',s=100.0,facecolor='r',label='0.004 x 3',zorder=4,edgecolor='black')
plt.scatter(numof_xrays_mpgrp,significance_n50,marker='s',s=100.0,facecolor='y',label='0.02',zorder=3,edgecolor='black')
plt.scatter(numof_xrays_mpgrp,significance_n25,marker='^',s=100.0,facecolor='b',label='0.04',zorder=2,edgecolor='black')
x = np.arange(0,10,0.1)
plt.plot(x,func(x, *optimizedParameters),'r',linestyle='--',zorder=1);
axes.set_xlabel(r'Number of X-ray events coincidenced with MP-GRPs (10$^{6}$ photons)')
axes.set_ylabel('Significance of the enhancement')
axes.set_xlim(0.0,10.0)
axes.set_ylim(0.0,6.0)
plt.legend(loc='upper left',title='phase width')
plt.savefig('out/crabgrp/v181119_rand/growth_curve_n50.pdf')
| [
"scipy.optimize.curve_fit",
"matplotlib.pyplot.savefig",
"numpy.sqrt",
"matplotlib.pyplot.legend",
"matplotlib.pyplot.clf",
"numpy.argmax",
"glob.glob",
"matplotlib.pyplot.scatter",
"astropy.io.fits.open",
"matplotlib.pyplot.subplots",
"numpy.arange"
] | [((2786, 2843), 'scipy.optimize.curve_fit', 'opt.curve_fit', (['func', 'numof_xrays_mpgrp', 'significance_n250'], {}), '(func, numof_xrays_mpgrp, significance_n250)\n', (2799, 2843), True, 'import scipy.optimize as opt\n'), ((2898, 2907), 'matplotlib.pyplot.clf', 'plt.clf', ([], {}), '()\n', (2905, 2907), True, 'import matplotlib.pyplot as plt\n'), ((2920, 2958), 'matplotlib.pyplot.subplots', 'plt.subplots', (['(1)', '(1)'], {'figsize': '(7.0, 6.0)'}), '(1, 1, figsize=(7.0, 6.0))\n', (2932, 2958), True, 'import matplotlib.pyplot as plt\n'), ((3243, 3380), 'matplotlib.pyplot.scatter', 'plt.scatter', (['numof_xrays_mpgrp', 'significance_n250'], {'marker': '"""o"""', 's': '(100.0)', 'facecolor': '"""r"""', 'label': '"""0.004 x 3"""', 'zorder': '(4)', 'edgecolor': '"""black"""'}), "(numof_xrays_mpgrp, significance_n250, marker='o', s=100.0,\n facecolor='r', label='0.004 x 3', zorder=4, edgecolor='black')\n", (3254, 3380), True, 'import matplotlib.pyplot as plt\n'), ((3370, 3501), 'matplotlib.pyplot.scatter', 'plt.scatter', (['numof_xrays_mpgrp', 'significance_n50'], {'marker': '"""s"""', 's': '(100.0)', 'facecolor': '"""y"""', 'label': '"""0.02"""', 'zorder': '(3)', 'edgecolor': '"""black"""'}), "(numof_xrays_mpgrp, significance_n50, marker='s', s=100.0,\n facecolor='y', label='0.02', zorder=3, edgecolor='black')\n", (3381, 3501), True, 'import matplotlib.pyplot as plt\n'), ((3491, 3622), 'matplotlib.pyplot.scatter', 'plt.scatter', (['numof_xrays_mpgrp', 'significance_n25'], {'marker': '"""^"""', 's': '(100.0)', 'facecolor': '"""b"""', 'label': '"""0.04"""', 'zorder': '(2)', 'edgecolor': '"""black"""'}), "(numof_xrays_mpgrp, significance_n25, marker='^', s=100.0,\n facecolor='b', label='0.04', zorder=2, edgecolor='black')\n", (3502, 3622), True, 'import matplotlib.pyplot as plt\n'), ((3616, 3637), 'numpy.arange', 'np.arange', (['(0)', '(10)', '(0.1)'], {}), '(0, 10, 0.1)\n', (3625, 3637), True, 'import numpy as np\n'), ((3893, 3942), 'matplotlib.pyplot.legend', 'plt.legend', ([], {'loc': '"""upper left"""', 'title': '"""phase width"""'}), "(loc='upper left', title='phase width')\n", (3903, 3942), True, 'import matplotlib.pyplot as plt\n'), ((3942, 4002), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""out/crabgrp/v181119_rand/growth_curve_n50.pdf"""'], {}), "('out/crabgrp/v181119_rand/growth_curve_n50.pdf')\n", (3953, 4002), True, 'import matplotlib.pyplot as plt\n'), ((974, 993), 'astropy.io.fits.open', 'fits.open', (['fitsfile'], {}), '(fitsfile)\n', (983, 993), True, 'import astropy.io.fits as fits\n'), ((1653, 1707), 'numpy.argmax', 'np.argmax', (["hdu['PROFILE_N250'].data['ALL_NORM_COUNTS']"], {}), "(hdu['PROFILE_N250'].data['ALL_NORM_COUNTS'])\n", (1662, 1707), True, 'import numpy as np\n'), ((2387, 2457), 'numpy.sqrt', 'np.sqrt', (['(all_norm_peak_sum_error ** 2 + mpgrp_norm_peak_sum_error ** 2)'], {}), '(all_norm_peak_sum_error ** 2 + mpgrp_norm_peak_sum_error ** 2)\n', (2394, 2457), True, 'import numpy as np\n'), ((1100, 1146), 'numpy.argmax', 'np.argmax', (["hdu[extnum].data['ALL_NORM_COUNTS']"], {}), "(hdu[extnum].data['ALL_NORM_COUNTS'])\n", (1109, 1146), True, 'import numpy as np\n'), ((2705, 2715), 'numpy.sqrt', 'np.sqrt', (['x'], {}), '(x)\n', (2712, 2715), True, 'import numpy as np\n'), ((912, 931), 'glob.glob', 'glob.glob', (['fitsfile'], {}), '(fitsfile)\n', (921, 931), False, 'import glob\n')] |
# Importações
import matplotlib.pyplot as plt
import numpy as np
# Acrescentar Sinais
# Mensagem, Portadora, Subportadora
# Descobrir o K
tempo_maximo = 45000
frequencia_mensagem = 5
frequencia_portadora = 40
amplitude_portadora = 1
# Vai dividir cada valor do vetor criado para que se obtenha valores pequenos
tempo = np.arange(tempo_maximo) / tempo_maximo
mensagem = np.sin(2 * np.pi * frequencia_mensagem * tempo)
portadora = np.multiply(amplitude_portadora, np.cos(
2 * np.pi * frequencia_portadora * tempo))
modulado = np.multiply(mensagem, portadora)
# Gerar Graficos
# Gráfico da Mensagem
plt.subplot(2, 2, 1)
plt.title('Mensagem')
plt.plot(mensagem)
plt.xlabel('Tempo')
plt.ylabel('Amplitude')
plt.grid(True)
# Gráfico da Portadora
plt.subplot(2, 2, 2)
plt.title('Portadora')
plt.plot(portadora)
plt.xlabel('Tempo')
plt.ylabel('Amplitude')
plt.grid(True)
# Gráfico do sinal final
plt.subplot(2, 2, 3)
plt.title('Sinal Modulado')
plt.plot(modulado)
plt.xlabel('Tempo')
plt.ylabel('Amplitude')
plt.grid(True)
# Sinal Demodulado
plt.subplot(2, 2, 4)
plt.title('Sinal Demodulado')
plt.plot(demodulado)
plt.xlabel('Tempo')
plt.ylabel('Amplitude')
plt.grid(True)
# Apresenta o Gráfico
plt.show()
| [
"numpy.multiply",
"matplotlib.pyplot.grid",
"matplotlib.pyplot.ylabel",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"numpy.cos",
"numpy.sin",
"matplotlib.pyplot.title",
"matplotlib.pyplot.subplot",
"numpy.arange",
"matplotlib.pyplot.show"
] | [((372, 419), 'numpy.sin', 'np.sin', (['(2 * np.pi * frequencia_mensagem * tempo)'], {}), '(2 * np.pi * frequencia_mensagem * tempo)\n', (378, 419), True, 'import numpy as np\n'), ((531, 563), 'numpy.multiply', 'np.multiply', (['mensagem', 'portadora'], {}), '(mensagem, portadora)\n', (542, 563), True, 'import numpy as np\n'), ((604, 624), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(1)'], {}), '(2, 2, 1)\n', (615, 624), True, 'import matplotlib.pyplot as plt\n'), ((625, 646), 'matplotlib.pyplot.title', 'plt.title', (['"""Mensagem"""'], {}), "('Mensagem')\n", (634, 646), True, 'import matplotlib.pyplot as plt\n'), ((647, 665), 'matplotlib.pyplot.plot', 'plt.plot', (['mensagem'], {}), '(mensagem)\n', (655, 665), True, 'import matplotlib.pyplot as plt\n'), ((666, 685), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Tempo"""'], {}), "('Tempo')\n", (676, 685), True, 'import matplotlib.pyplot as plt\n'), ((686, 709), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Amplitude"""'], {}), "('Amplitude')\n", (696, 709), True, 'import matplotlib.pyplot as plt\n'), ((710, 724), 'matplotlib.pyplot.grid', 'plt.grid', (['(True)'], {}), '(True)\n', (718, 724), True, 'import matplotlib.pyplot as plt\n'), ((749, 769), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(2)'], {}), '(2, 2, 2)\n', (760, 769), True, 'import matplotlib.pyplot as plt\n'), ((770, 792), 'matplotlib.pyplot.title', 'plt.title', (['"""Portadora"""'], {}), "('Portadora')\n", (779, 792), True, 'import matplotlib.pyplot as plt\n'), ((793, 812), 'matplotlib.pyplot.plot', 'plt.plot', (['portadora'], {}), '(portadora)\n', (801, 812), True, 'import matplotlib.pyplot as plt\n'), ((813, 832), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Tempo"""'], {}), "('Tempo')\n", (823, 832), True, 'import matplotlib.pyplot as plt\n'), ((833, 856), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Amplitude"""'], {}), "('Amplitude')\n", (843, 856), True, 'import matplotlib.pyplot as plt\n'), ((857, 871), 'matplotlib.pyplot.grid', 'plt.grid', (['(True)'], {}), '(True)\n', (865, 871), True, 'import matplotlib.pyplot as plt\n'), ((898, 918), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(3)'], {}), '(2, 2, 3)\n', (909, 918), True, 'import matplotlib.pyplot as plt\n'), ((919, 946), 'matplotlib.pyplot.title', 'plt.title', (['"""Sinal Modulado"""'], {}), "('Sinal Modulado')\n", (928, 946), True, 'import matplotlib.pyplot as plt\n'), ((947, 965), 'matplotlib.pyplot.plot', 'plt.plot', (['modulado'], {}), '(modulado)\n', (955, 965), True, 'import matplotlib.pyplot as plt\n'), ((966, 985), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Tempo"""'], {}), "('Tempo')\n", (976, 985), True, 'import matplotlib.pyplot as plt\n'), ((986, 1009), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Amplitude"""'], {}), "('Amplitude')\n", (996, 1009), True, 'import matplotlib.pyplot as plt\n'), ((1010, 1024), 'matplotlib.pyplot.grid', 'plt.grid', (['(True)'], {}), '(True)\n', (1018, 1024), True, 'import matplotlib.pyplot as plt\n'), ((1045, 1065), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(4)'], {}), '(2, 2, 4)\n', (1056, 1065), True, 'import matplotlib.pyplot as plt\n'), ((1066, 1095), 'matplotlib.pyplot.title', 'plt.title', (['"""Sinal Demodulado"""'], {}), "('Sinal Demodulado')\n", (1075, 1095), True, 'import matplotlib.pyplot as plt\n'), ((1096, 1116), 'matplotlib.pyplot.plot', 'plt.plot', (['demodulado'], {}), '(demodulado)\n', (1104, 1116), True, 'import matplotlib.pyplot as plt\n'), ((1117, 1136), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Tempo"""'], {}), "('Tempo')\n", (1127, 1136), True, 'import matplotlib.pyplot as plt\n'), ((1137, 1160), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Amplitude"""'], {}), "('Amplitude')\n", (1147, 1160), True, 'import matplotlib.pyplot as plt\n'), ((1161, 1175), 'matplotlib.pyplot.grid', 'plt.grid', (['(True)'], {}), '(True)\n', (1169, 1175), True, 'import matplotlib.pyplot as plt\n'), ((1199, 1209), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1207, 1209), True, 'import matplotlib.pyplot as plt\n'), ((322, 345), 'numpy.arange', 'np.arange', (['tempo_maximo'], {}), '(tempo_maximo)\n', (331, 345), True, 'import numpy as np\n'), ((465, 513), 'numpy.cos', 'np.cos', (['(2 * np.pi * frequencia_portadora * tempo)'], {}), '(2 * np.pi * frequencia_portadora * tempo)\n', (471, 513), True, 'import numpy as np\n')] |
import numpy as np
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import layers
def f(x):
return x[0]+x[1]*x[2]+np.sin(x[3])
def gettestdata(f,n=1000):
x=np.random.normal(0,1,(n,4))
y=np.array([[f(xx)] for xx in x])
return x,y
def traindensemodel(datax,datay,hidden,lr=0.001,batchsize=20,activation="relu",epochs=30):
try:
batchsize=int(batchsize)
print("training model with",hidden,lr,batchsize,activation,epochs)
# exit()
# print("training model")
inputs=keras.Input(shape=datax.shape[1:])
x=inputs
for h in hidden:
x=layers.Dense(h,activation=activation)(x)
x=layers.Dense(datay.shape[-1])(x)
model=keras.Model(inputs=inputs,outputs=x,name="super_simple_model")
model.compile(loss="mse",optimizer=keras.optimizers.Adam(lr))
clen=int(datax.shape[0])
vlen=int(clen*0.2)
history=model.fit(datax[:-vlen],datay[:-vlen],batch_size=batchsize,epochs=epochs,validation_split=0.2,verbose=0)
score=model.evaluate(datax[-vlen:],datay[-vlen:],verbose=0)
return score
except:
print("failed")
return 1000.0
# return traindensemodel(datax,datay,hidden,lr,batchsize,activation,epochs)
if __name__=="__main__":
datax,datay=gettestdata(f)
print(traindensemodel(datax,datay,[3,2]))
import time
t0=time.time()
for i in range(10):
print(traindensemodel(datax,datay,[3,2]))
t1=time.time()
print("!",(t1-t0)/10)
| [
"numpy.random.normal",
"tensorflow.keras.Model",
"tensorflow.keras.optimizers.Adam",
"tensorflow.keras.layers.Dense",
"tensorflow.keras.Input",
"numpy.sin",
"time.time"
] | [((189, 219), 'numpy.random.normal', 'np.random.normal', (['(0)', '(1)', '(n, 4)'], {}), '(0, 1, (n, 4))\n', (205, 219), True, 'import numpy as np\n'), ((1321, 1332), 'time.time', 'time.time', ([], {}), '()\n', (1330, 1332), False, 'import time\n'), ((1413, 1424), 'time.time', 'time.time', ([], {}), '()\n', (1422, 1424), False, 'import time\n'), ((144, 156), 'numpy.sin', 'np.sin', (['x[3]'], {}), '(x[3])\n', (150, 156), True, 'import numpy as np\n'), ((519, 553), 'tensorflow.keras.Input', 'keras.Input', ([], {'shape': 'datax.shape[1:]'}), '(shape=datax.shape[1:])\n', (530, 553), False, 'from tensorflow import keras\n'), ((686, 750), 'tensorflow.keras.Model', 'keras.Model', ([], {'inputs': 'inputs', 'outputs': 'x', 'name': '"""super_simple_model"""'}), "(inputs=inputs, outputs=x, name='super_simple_model')\n", (697, 750), False, 'from tensorflow import keras\n'), ((643, 672), 'tensorflow.keras.layers.Dense', 'layers.Dense', (['datay.shape[-1]'], {}), '(datay.shape[-1])\n', (655, 672), False, 'from tensorflow.keras import layers\n'), ((596, 634), 'tensorflow.keras.layers.Dense', 'layers.Dense', (['h'], {'activation': 'activation'}), '(h, activation=activation)\n', (608, 634), False, 'from tensorflow.keras import layers\n'), ((788, 813), 'tensorflow.keras.optimizers.Adam', 'keras.optimizers.Adam', (['lr'], {}), '(lr)\n', (809, 813), False, 'from tensorflow import keras\n')] |
# 相手の駒配置を予測
# これは不完全情報ゲームにおいて動作するようにする
# 正体が不明な相手の駒をとりあえず-1としておく
# board→14R24R34R44R15B25B35B45B41u31u21u11u40u30u20u10u
# move
import numpy as np
import itertools
import time
from game import State
# from pv_mcts import predict
from pathlib import Path
from tensorflow.keras.models import load_model
from test import convert_func_use_in_guess
# model_path = "models/10000.pth"
default_gamma = 0.9
DN_INPUT_SHAPE = (6, 6, 4)
# おそらく不完全情報ガイスター(のstateのみ?)を定義してそれを更新して管理した方がよさげ
# 不完全情報ガイスターの盤面情報及びそれらの推測値
class II_State:
# クラス変数で駒順を定義
piece_name = [
"h",
"g",
"f",
"e",
"d",
"c",
"b",
"a",
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
]
# 初期化
def __init__(
self,
real_my_piece_blue_set,
real_enemy_piece_blue_set=None,
see_through_piece_id=None,
wrong_see_through_piece_id=None,
all_piece=None,
enemy_estimated_num=None,
my_estimated_num=None,
enemy_piece_list=None,
my_piece_list=None,
living_piece_color=None,
):
# 全ての駒(hgfedcbaABCDEFGHの順になっている)
# 敵駒0~7,自駒8~15
if all_piece == None:
# numpyは基本的に型指定しない方が早い(指定すると裏で余計な処理するっぽい)
self.all_piece = np.zeros(16, dtype=np.int16)
# 初期配置を代入(各値は座標を示す)(脱出が88、死亡が99)
# 0~7は敵駒, 8~15は自駒
self.all_piece[0] = 1
self.all_piece[1] = 2
self.all_piece[2] = 3
self.all_piece[3] = 4
self.all_piece[4] = 7
self.all_piece[5] = 8
self.all_piece[6] = 9
self.all_piece[7] = 10
self.all_piece[8] = 25
self.all_piece[9] = 26
self.all_piece[10] = 27
self.all_piece[11] = 28
self.all_piece[12] = 31
self.all_piece[13] = 32
self.all_piece[14] = 33
self.all_piece[15] = 34
else:
self.all_piece = all_piece
if enemy_piece_list == None:
self.enemy_piece_list = [0, 1, 2, 3, 4, 5, 6, 7]
else:
self.enemy_piece_list = enemy_piece_list
if my_piece_list == None:
self.my_piece_list = [8, 9, 10, 11, 12, 13, 14, 15]
else:
self.my_piece_list = my_piece_list
# real_my_piece_blue_setは自分の青駒のIDのセット(引数必須)
self.real_my_piece_blue_set = set(real_my_piece_blue_set)
self.real_my_piece_red_set = (
set(self.my_piece_list) - self.real_my_piece_blue_set
)
# 敵の青駒のセット(デバッグ用)
self.real_enemy_piece_blue_set = set(real_enemy_piece_blue_set)
self.real_enemy_piece_red_set = (
set(self.enemy_piece_list) - self.real_enemy_piece_blue_set
)
# {敵青, 敵赤, 自青, 自赤}
if living_piece_color == None:
self.living_piece_color = [4, 4, 4, 4]
else:
self.living_piece_color = living_piece_color
# [[推測値A,(パターンAの青駒のtuple表現)],[推測値B,(パターンBの青駒のtuple表現),...]
if enemy_estimated_num == None:
# 盤面の推測値を作成(大きい程青らしく、小さい程赤らしい)
self.enemy_estimated_num = []
for enemy_blue in itertools.combinations(
set(self.enemy_piece_list), self.living_piece_color[0]
):
self.enemy_estimated_num.append([0, enemy_blue])
else:
self.enemy_estimated_num = enemy_estimated_num
if my_estimated_num == None:
# 盤面の推測値を作成(大きい程青らしく、小さい程赤らしい)
self.my_estimated_num = []
for my_blue in itertools.combinations(
set(self.my_piece_list), self.living_piece_color[0]
):
self.my_estimated_num.append([0, my_blue])
else:
self.my_estimated_num = my_estimated_num
if see_through_piece_id == None and wrong_see_through_piece_id == None:
self.see_through_piece_id = []
self.wrong_see_through_piece_id = []
elif wrong_see_through_piece_id == None: # 間違った推測のみnullだった場合
self.see_through_piece_id = see_through_piece_id
self.wrong_see_through_piece_id = []
shave_impossible_board_from_see_through(self) # ありえない世界を初期化段階で消す
elif see_through_piece_id == None:
self.see_through_piece_id = []
self.wrong_see_through_piece_id = wrong_see_through_piece_id
rebuilding_estimated_num(
self,
set(self.see_through_piece_id),
set(self.wrong_see_through_piece_id),
)
else: # どっちもnullでない
self.see_through_piece_id = see_through_piece_id
self.wrong_see_through_piece_id = wrong_see_through_piece_id
rebuilding_estimated_num(
self,
set(self.see_through_piece_id),
set(self.wrong_see_through_piece_id),
)
# ボードの初期配置はこんな感じ(小文字が敵の駒で大文字が自分の駒)
# 0 1 2 3 4 5
# 0 h g f e
# 1 d c b a
# 2
# 3
# 4 A B C D
# 5 E F G H
# 合法手のリストの取得
# NNはactionを与えると事前に学習した方策を返す。
# 赤のゴール(非合法なので知らない手)を与えると、そこを0にして返してくれるはず(エラーは吐かないはず???)
def legal_actions(self):
actions = []
# リストに自分の駒を全て追加
piece_coordinate_array = np.array([0] * 8)
index = 0
for i in range(8, 16):
piece_coordinate_array[index] = self.all_piece[i]
index += 1
np.sort(piece_coordinate_array)
# print("my:self.all_piece", piece_coordinate_array)
for piece_coordinate in piece_coordinate_array:
# 88以上は行動できないので省く(0~35)
if piece_coordinate < 36:
actions.extend(
self.piece_coordinate_to_actions(
piece_coordinate, piece_coordinate_array
)
)
# 0と5はゴールの選択肢を追加(赤駒でも問答無用)
if piece_coordinate == 0:
actions.extend([2]) # 0*4 + 2
if piece_coordinate == 5:
actions.extend([22]) # 5*4 + 2
return actions
# 相手目線の合法手のリストを返す
def enemy_legal_actions(self):
actions = []
piece_coordinate_array = np.array([0] * 8)
index = 0
for i in range(0, 8):
if self.all_piece[i] < 36:
piece_coordinate_array[index] = 35 - self.all_piece[i]
else:
piece_coordinate_array[index] = 99
index += 1
np.sort(piece_coordinate_array)
# print("enemy:self.all_piece", piece_coordinate_array)
for piece_coordinate in piece_coordinate_array:
# 88以上は行動できないので省く(0~35)
if piece_coordinate < 36:
actions.extend(
self.piece_coordinate_to_actions(
piece_coordinate, piece_coordinate_array
)
)
# 0と5はゴールの選択肢を追加(赤駒でも問答無用)
if piece_coordinate == 0:
actions.extend([2]) # 0*4 + 2
if piece_coordinate == 5:
actions.extend([22]) # 5*4 + 2
return actions
# 駒の移動元と移動方向を行動に変換
def position_to_action(self, position, direction):
return position * 4 + direction
def piece_coordinate_to_actions(self, piece_coordinate, piece_coordinate_array):
actions = []
x = piece_coordinate % 6
y = int(piece_coordinate / 6)
if y != 5 and not np.any(piece_coordinate_array == (piece_coordinate + 6)): # 下
actions.append(self.position_to_action(piece_coordinate, 0))
if x != 0 and not np.any(piece_coordinate_array == (piece_coordinate - 1)): # 左
actions.append(self.position_to_action(piece_coordinate, 1))
if y != 0 and not np.any(piece_coordinate_array == (piece_coordinate - 6)): # 上
actions.append(self.position_to_action(piece_coordinate, 2))
if x != 5 and not np.any(piece_coordinate_array == (piece_coordinate + 1)): # 右
actions.append(self.position_to_action(piece_coordinate, 3))
return actions
# 駒ごと(駒1つに着目した)の合法手のリストの取得
def legal_actions_pos(self, position, piece_index_list):
piece_list = []
for piece_index in piece_index_list:
piece_list.append(self.all_piece[piece_index])
actions = []
x = position % 6
y = int(position / 6)
# 下左上右の順に行動できるか検証し、できるならactionに追加
# ちなみにand演算子は左の値を評価して右の値を返すか決める(左の値がTrue系でなければ右の値は無視する)ので、はみ出し参照してIndexErrorにはならない(&だとなる)
if y != 5 and (position + 6) not in piece_list: # 下端でない and 下に自分の駒がいない
actions.append(self.position_to_action(position, 0))
if x != 0 and (position - 1) not in piece_list: # 左端でない and 左に自分の駒がいない
actions.append(self.position_to_action(position, 1))
if y != 0 and (position - 6) not in piece_list: # 上端でない and 上に自分の駒がいない
actions.append(self.position_to_action(position, 2))
if x != 5 and (position + 1) not in piece_list: # 右端でない and 右に自分の駒がいない
actions.append(self.position_to_action(position, 3))
# 青駒のゴール行動の可否は1ターンに1度だけ判定すれば良いので、例外的にlegal_actionsで処理する(ここでは処理しない)
return actions
# 行動を受けて、次の状態に遷移
def next(self, action_num):
coordinate_before, coordinate_after = action_to_coordinate(action_num)
move_piece_index = np.where(self.all_piece == coordinate_before)[0][0]
# 移動先に駒が存在する場合は殺す(味方の駒も殺してしまうが、そこは行動側で制御)
if np.any(self.all_piece == coordinate_after):
dead_piece_ID = np.where(self.all_piece == coordinate_after)[0][0]
if dead_piece_ID < 8: # 死んだのが敵駒
# color_is_blue:死んだのが青駒かどうか
color_is_blue = any(
i == dead_piece_ID for i in self.real_enemy_piece_blue_set
)
reduce_pattern(dead_piece_ID, color_is_blue, self)
if self.wrong_see_through_piece_id != []:
rebuilding_estimated_num(
self,
set(self.see_through_piece_id),
set(self.wrong_see_through_piece_id),
)
else: # 死んだのが味方の駒
color_is_blue = any(
i == dead_piece_ID for i in self.real_my_piece_blue_set
)
reduce_pattern(dead_piece_ID, color_is_blue, self)
self.all_piece[move_piece_index] = coordinate_after # 駒の移動
# 推測値を返す(主にデバッグ用)
def return_estimate_value(self):
estimate_value = np.array([0] * 8, dtype="f4")
for elem in self.enemy_estimated_num:
id_matrix = [0] * 8
# 青駒IDのとこだけ1にする
for blue_id in elem[1]:
id_matrix[blue_id] = 1
estimate_value = estimate_value + (
np.array(id_matrix, dtype="f4") * elem[0]
)
if False:
print(self.enemy_estimated_num)
print(
"敵駒の住所",
self.all_piece[0],
self.all_piece[1],
self.all_piece[2],
self.all_piece[3],
)
print(
"味方駒の住所",
self.all_piece[4],
self.all_piece[5],
self.all_piece[6],
self.all_piece[7],
)
return estimate_value
# ボードの文字列表示
def __str__(self):
row = "|{}|{}|{}|{}|{}|{}|"
hr = "\n-------------------------------\n"
# 1つのボードに味方の駒と敵の駒を集める
board = [0] * 36
# 0~7が敵、8~15が自分
# 敵の駒
for enemy_piece_coo in self.all_piece[0:8]:
if enemy_piece_coo < 36 and enemy_piece_coo >= 0:
board[enemy_piece_coo] = -1
# 自分の駒
for blue_index in self.real_my_piece_blue_set:
if self.all_piece[blue_index] < 36 and self.all_piece[blue_index] >= 0:
board[self.all_piece[blue_index]] = 1
for red_index in self.real_my_piece_red_set:
if self.all_piece[red_index] < 36 and self.all_piece[red_index] >= 0:
board[self.all_piece[red_index]] = 2
board_essence = []
for i in board:
if i == 1:
board_essence.append("自青")
elif i == 2:
board_essence.append("自赤")
elif i == -1:
board_essence.append("敵駒")
else:
board_essence.append(" ")
ii_str = (
hr + row + hr + row + hr + row + hr + row + hr + row + hr + row + hr
).format(*board_essence)
ii_str += "\n" + str(self.living_piece_color)
return ii_str
# 盤面が確定しないような駒を選択する
def create_see_through_piece(enemy_blue_piece_set, through_num):
# 7個以上駒の色がわかるなら、全部わかるのと同意義
if through_num >= 7:
return set({0, 1, 2, 3, 4, 5, 6, 7})
blue_piece_set = enemy_blue_piece_set.copy()
red_piece_set = set({0, 1, 2, 3, 4, 5, 6, 7}) - blue_piece_set
# 赤と青から1つ除外(これでパターンが確定しない)
blue_piece_set.remove(random.choice(list(blue_piece_set)))
red_piece_set.remove(random.choice(list(red_piece_set)))
# セットの合成
see_thorugh_id_set = blue_piece_set | red_piece_set
# through_numが少ない場合は見える駒を多く除外する
for _ in range(6 - through_num): # 6は len(see_thorugh_id_set)
see_thorugh_id_set.remove(random.choice(list(see_thorugh_id_set)))
return see_thorugh_id_set
# まちがった推測を含めて、破綻しない推測を作成
def create_wrong_and_see_through_piece(
enemy_blue_piece_set: set, correct_through_num: int, wrong_through_num: int
):
blue_piece_set = enemy_blue_piece_set.copy()
red_piece_set = set({0, 1, 2, 3, 4, 5, 6, 7}) - blue_piece_set
est_num = correct_through_num + wrong_through_num
if est_num >= 9:
print("普通にバグ")
return
if est_num >= 7: # 7個以上駒の色がわかるなら、全部わかるのと同意義
estimated_piece_set = set({0, 1, 2, 3, 4, 5, 6, 7})
else:
# 赤と青から1つ除外(これでパターンが確定しない)
blue_piece_set.remove(random.choice(list(blue_piece_set)))
red_piece_set.remove(random.choice(list(red_piece_set)))
# 赤と青から均等に推測駒を出す
while len(blue_piece_set) + len(red_piece_set) > est_num:
if len(blue_piece_set) > len(red_piece_set):
blue_piece_set.remove(random.choice(list(blue_piece_set)))
elif len(blue_piece_set) < len(red_piece_set):
red_piece_set.remove(random.choice(list(red_piece_set)))
else: # redとblueが同じ量の場合はランダムピック
if random.randint(0, 1) == 0:
blue_piece_set.remove(random.choice(list(blue_piece_set)))
else:
red_piece_set.remove(random.choice(list(red_piece_set)))
wrong_piece_set = set()
cp_wrong_through_num = wrong_through_num
# wrong_through_numが奇数の場合
if cp_wrong_through_num % 2 == 1:
cp_wrong_through_num -= 1
if len(blue_piece_set) > len(red_piece_set):
piece = random.choice(list(blue_piece_set))
blue_piece_set.remove(piece)
wrong_piece_set.add(piece)
elif len(blue_piece_set) < len(red_piece_set):
piece = random.choice(list(red_piece_set))
red_piece_set.remove(piece)
wrong_piece_set.add(piece)
else: # redとblueが同じ量の場合はランダムピック
if random.randint(0, 1) == 0:
piece = random.choice(list(blue_piece_set))
blue_piece_set.remove(piece)
wrong_piece_set.add(piece)
else:
piece = random.choice(list(red_piece_set))
red_piece_set.remove(piece)
wrong_piece_set.add(piece)
# wrong_through_numの数だけ間違った推測駒を増やす
for _ in range(cp_wrong_through_num // 2):
piece = random.choice(list(blue_piece_set))
blue_piece_set.remove(piece)
wrong_piece_set.add(piece)
piece = random.choice(list(red_piece_set))
red_piece_set.remove(piece)
wrong_piece_set.add(piece)
correct_piece_set = blue_piece_set | red_piece_set
return [correct_piece_set, wrong_piece_set]
# stateの駒の色に応じたii_stateを作成する(初期のstateのみ使用可能)
def create_ii_state_from_state(
state, enemy_view=False, through_num=0, wrong_through_num=0
):
if enemy_view:
# 敵視点でii_stateを作成
pieces = state.enemy_pieces
enemy_pieces = state.pieces
else:
pieces = state.pieces
enemy_pieces = state.enemy_pieces
# 駒のIDと座標が紐づいたリストを手動作成(初期配置では座標番号25~28と31~34に駒が存在)
piece_id_list = [0] * 36
for i in range(4):
piece_id_list[25 + i] = 8 + i
for i in range(4):
piece_id_list[31 + i] = 12 + i
blue_piece_set = set({})
for index, piece_color in enumerate(pieces):
if piece_color == 1:
blue_piece_set.add(piece_id_list[index])
# 敵駒の処理も同様にする
enemy_piece_id_list = [0] * 36
for i in range(4):
enemy_piece_id_list[25 + i] = 8 + i
for i in range(4):
enemy_piece_id_list[31 + i] = 12 + i
enemy_blue_piece_set = set({})
for index, piece_color in enumerate(enemy_pieces):
if piece_color == 1:
enemy_blue_piece_set.add(enemy_piece_id_list[index])
# enemy_blue_piece_setの値を反転させ、推測の際に扱いやすいように変換する
# (このままでは8~15の値をとるが、0~7の値に修正し扱う必要がある)
rev_enemy_blue_piece_set = set({})
for piece_coo in enemy_blue_piece_set:
rev_enemy_blue_piece_set.add(15 - piece_coo)
if through_num == 0:
ii_state = II_State(blue_piece_set, rev_enemy_blue_piece_set)
elif wrong_through_num == 0:
see_thorugh_id_set = create_see_through_piece(
rev_enemy_blue_piece_set, through_num
)
ii_state = II_State(
blue_piece_set, rev_enemy_blue_piece_set, see_thorugh_id_set
)
else:
correct_wrong_piece_set = create_wrong_and_see_through_piece(
blue_piece_set, through_num, wrong_through_num
)
ii_state = II_State(
blue_piece_set,
rev_enemy_blue_piece_set,
correct_wrong_piece_set[0],
correct_wrong_piece_set[1],
)
return ii_state
def create_state_from_ii_state(ii_state, blue_set):
pieces = [0] * 36
enemy_pieces = [0] * 36
# 0~7は敵の駒
for index, piece_coo in enumerate(ii_state.all_piece[:8]):
if piece_coo < 36:
if index in blue_set:
enemy_pieces[35 - piece_coo] = 1
else:
enemy_pieces[35 - piece_coo] = 2
for index, piece_coo in enumerate(ii_state.all_piece[8:]):
if piece_coo < 36:
if index + 8 in ii_state.real_my_piece_blue_set:
pieces[piece_coo] = 1
else:
pieces[piece_coo] = 2
state = State(pieces, enemy_pieces)
return state
### ガイスターAI大会のプロトコル周り
# プロトコルから相手の行動は送られず、更新されたボードが送られてくるそうなので、行動した駒の座標を求める
# これは相手の行動のみ検知可能
def enemy_coordinate_checker(before_board, now_board):
for i in range(len(before_board) // 2, len(before_board)):
if before_board[i] != now_board[i]:
break
# iではなく(i//3)*3とすることで、座標と駒色(例:14R)の先頭インデックスが取れる(これしないと2文字目からとってくる恐れがある)
beginningOfTheChanged = (i // 3) * 3
# 列番号+行番号*6でgame.pyで使ってる表現に直せる
before_coordinate = (
int(before_board[beginningOfTheChanged])
+ int(before_board[beginningOfTheChanged + 1]) * 6
)
now_coordinate = (
int(now_board[beginningOfTheChanged])
+ int(now_board[beginningOfTheChanged + 1]) * 6
)
# 行動前と行動後の座標を返す
return before_coordinate, now_coordinate
# 行動番号を駒の移動元と移動方向に変換
def action_to_position(action_num):
return (int(action_num / 4), action_num % 4) # position,direction
# 行動番号を移動前の座標と移動後の座標に変換
def action_to_coordinate(action_num):
coordinate_before, direction = action_to_position(action_num)
if direction == 0: # 下
coordinate_after = coordinate_before + 6
elif direction == 1: # 左
coordinate_after = coordinate_before - 1
elif direction == 3: # 右
coordinate_after = coordinate_before + 1
elif direction == 2: # 上
if coordinate_before == 0 or coordinate_before == 5: # 0と5の上行動はゴール処理なので弾く
coordinate_after = coordinate_before # coordinate_beforeを入れて駒の場所を動かさない(勝敗は決しているので下手に動かさない方が良い(多分))
else:
coordinate_after = coordinate_before - 6
else:
print("ERROR:action_to_coordinate(illegal action_num)")
return coordinate_before, coordinate_after
# 移動前の座標と方向番号から行動番号を算出
def position_to_action(position, direction):
return position * 4 + direction
# 移動前と移動後の座標から相手の行動番号を算出
def calculate_enemy_action_number_from_coordinate(before_coordinate, now_coordinate):
enemy_looking_now_coordinate = 35 - now_coordinate
enemy_looking_before_coordinate = 35 - before_coordinate
difference = enemy_looking_now_coordinate - enemy_looking_before_coordinate
if difference == 6: # 下
return position_to_action(enemy_looking_before_coordinate, 0)
elif difference == 1: # 左
return position_to_action(enemy_looking_before_coordinate, 1)
elif difference == -6: # 上
return position_to_action(enemy_looking_before_coordinate, 2)
elif difference == -1: # 右
return position_to_action(enemy_looking_before_coordinate, 3)
else:
print("ERROR:find_enemy_action_number_from_coordinate(illegal move)")
return -1
###
# 相手の行動を受けて、ガイスターの盤面を更新(駒が死んだ場合の処理もここで行う)
def update_II_state(ii_state, before_coordinate, now_coordinate):
kill = np.any(ii_state.all_piece == now_coordinate)
# 敵駒がkillしていたら死んだ駒の処理を行う(99は死んだ駒)
if kill:
dead_piece_ID = np.where(ii_state.all_piece == now_coordinate)[0][0]
color_is_blue = np.any(ii_state.real_my_piece_blue_set == dead_piece_ID)
# print(dead_piece_ID, color_is_blue)
reduce_pattern(dead_piece_ID, color_is_blue, ii_state)
# 行動前の座標を行動後の座標に変更する
ii_state.all_piece[
np.where(ii_state.all_piece == before_coordinate)[0][0]
] = now_coordinate
# myの視点で状態を作成
def my_looking_create_state(ii_state, my_blue, my_red, enemy_blue, enemy_red):
# プレイヤー毎のデュアルネットワークの入力の2次元配列の取得
def pieces_array_of(blue_piece_list, red_piece_list):
table_list = []
blue_table = [0] * 36
table_list.append(blue_table) # ちなみにappendは参照渡し
# blue_piece_listは駒のIDの値なので、ii_state.all_pieceでそのIDを参照してあげると座標が取れる
for blue_piece in blue_piece_list:
if ii_state.all_piece[blue_piece] < 36: # 死駒を除外
blue_table[ii_state.all_piece[blue_piece]] = 1
red_table = [0] * 36
table_list.append(red_table)
for red_piece in red_piece_list:
if ii_state.all_piece[red_piece] < 36:
red_table[ii_state.all_piece[red_piece]] = 1
return table_list
# デュアルネットワークの入力の2次元配列の取得(自分と敵両方)
return [pieces_array_of(my_blue, my_red), pieces_array_of(enemy_blue, enemy_red)]
# # 入力の順序はcreate
# # enemyの視点から状態を作成
# def enemy_looking_create_state(ii_state, my_blue, my_red, enemy_blue, enemy_red):
# # プレイヤー毎のデュアルネットワークの入力の2次元配列の取得
# def pieces_array_of(blue_piece_list, red_piece_list):
# table_list = []
# blue_table = [0] * 36
# # blue_piece_listは駒のIDの値なので、ii_state.all_pieceでそのIDを参照してあげると座標が取れる
# for blue_piece in blue_piece_list:
# if ii_state.all_piece[blue_piece] < 36: # 死駒を除外
# blue_table[ii_state.all_piece[blue_piece]] = 1
# blue_table.reverse() # 逆視点にするために要素を反転
# table_list.append(blue_table)
# red_table = [0] * 36
# for red_piece in red_piece_list:
# if ii_state.all_piece[red_piece] < 36:
# red_table[ii_state.all_piece[red_piece]] = 1
# red_table.reverse() # 逆視点にするために要素を反転
# table_list.append(red_table)
# return table_list
# # デュアルネットワークの入力の2次元配列の取得(自分と敵両方)
# return [pieces_array_of(enemy_blue, enemy_red), pieces_array_of(my_blue, my_red)]
# 諸々の情報からstateを作る
def create_state_from_enemy_looking(ii_state, my_blue, my_red, enemy_blue, enemy_red):
# 自分の駒を格納
my_table = [0] * 36
for my_b in my_blue:
if ii_state.all_piece[my_b] < 36:
my_table[ii_state.all_piece[my_b]] = 1
for my_r in my_red:
if ii_state.all_piece[my_r] < 36:
my_table[ii_state.all_piece[my_r]] = 2
# 敵の駒を格納
enemy_table = [0] * 36
for en_b in enemy_blue:
if ii_state.all_piece[en_b] < 36:
enemy_table[ii_state.all_piece[en_b]] = 1
for en_r in enemy_red:
if ii_state.all_piece[en_r] < 36:
enemy_table[ii_state.all_piece[en_r]] = 2
enemy_table.reverse() # このままでは敵の駒の座標が逆なので反転させて戻す
# 敵視点でのstateを生成
state = State(enemy_table, my_table)
return state
# enemy→各駒の推測値を保存。推測のために70パターン想定するが、足し合わせるだけ(各盤面について保存はしない)
# my→推測したい駒配置。
# 行動と推測盤面に対応した行動価値のリストを返す
def my_ii_predict(model_path, ii_state):
# 推論のための入力データのシェイプの変換
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
# ii_stateから生きてる駒のリストを取得
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# policies_list[パターン(0~最大69)][行動(盤面依存)]
policies_list = []
legal_actions = list(ii_state.legal_actions())
# HandyRLで学習させた方策を取れる関数を定義
convert_func = convert_func_use_in_guess(model_path)
for num_and_my_blue in ii_state.my_estimated_num:
sum_np_policies = np.array([0] * len(legal_actions), dtype="f4")
# 赤駒のインデックスをセット形式で獲得(青駒以外の駒は赤駒)
my_red_set = my_piece_set - set(num_and_my_blue[1])
for num_and_enemy_blue in ii_state.enemy_estimated_num:
# 同様に赤駒のインデックスを獲得
enemy_red_set = enemy_piece_set - set(num_and_enemy_blue[1])
ii_pieces_array = my_looking_create_state(
ii_state,
num_and_my_blue[1],
my_red_set,
num_and_enemy_blue[1],
enemy_red_set,
)
# HandyRLに適応
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# 自分のパターンは既存のpoliciesに足すだけ
sum_np_policies = sum_np_policies + np_policies
# value = y[1][0][0] # 価値の取得
policies_list.extend([sum_np_policies])
return policies_list
# # 相手の行動前に、相手の目線で各パターンにおける各行動の価値を算出
# def enemy_ii_predict(model_path, ii_state):
# a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
# my_piece_set = set(ii_state.my_piece_list)
# enemy_piece_set = set(ii_state.enemy_piece_list)
# policies_list = []
# enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
# convert_func = convert_func_use_in_guess(model_path)
# for num_and_enemy_blue in ii_state.enemy_estimated_num: # enemyのパターンの確からしさを求めたい
# # 赤駒のインデックスをセット形式で獲得(my_blueはタプル)
# enemy_red_set = enemy_piece_set - set(num_and_enemy_blue[1])
# sum_np_policies = np.array([0] * len(enemy_legal_actions), dtype="f4")
# for num_and_my_blue in ii_state.my_estimated_num:
# my_red_set = my_piece_set - set(num_and_my_blue[1])
# # 要修正
# ii_pieces_array = enemy_looking_create_state(
# ii_state,
# num_and_my_blue[1],
# my_red_set,
# num_and_enemy_blue[1],
# enemy_red_set,
# )
# # HandyRLに適応
# policies = convert_func(ii_pieces_array, enemy_legal_actions)
# # 行列演算するためにndarrayに変換
# np_policies = np.array(policies, dtype="f4")
# # myのパターンは既存のpoliciesに足すだけ
# sum_np_policies = sum_np_policies + np_policies
# policies_list.extend([sum_np_policies])
# return policies_list
from test import get_policies
# 自分の駒配置を確定させて推測するパターン
# 相手の行動前に、相手の目線で各パターンにおける各行動の価値を算出
def enemy_ii_predict(model_path, ii_state):
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
policies_list = []
enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
# enemy_legal_actions = sorted(enemy_legal_actions, key=lambda x: x)
# print("ii_legal", enemy_legal_actions)
# convert_func = convert_func_use_in_guess(model_path)
# print("盤面", ii_state)
get_policies_func = get_policies(model_path)
# enemyのパターンの確からしさ(蓋然性)を求める
for num_and_enemy_blue in ii_state.enemy_estimated_num:
# 赤駒のインデックスをセット形式で獲得(my_blueはタプル)
enemy_red_set = enemy_piece_set - set(num_and_enemy_blue[1])
# 自分の駒配置は見抜かれているものとして相手の行動の価値を求める
my_blue_set = ii_state.real_my_piece_blue_set
my_red_set = my_piece_set - my_blue_set
# 相手視点のstateを作成した上で方策を獲得
enemy_looking_state = create_state_from_enemy_looking(
ii_state, my_blue_set, my_red_set, num_and_enemy_blue[1], enemy_red_set,
)
ap_list = sorted(get_policies_func(enemy_looking_state), key=lambda x: x[0])
policies = []
for tup in ap_list:
policies.append(tup[1])
# HandyRLに適応
# ii_pieces_array = enemy_looking_create_state(
# ii_state, my_blue_set, my_red_set, num_and_enemy_blue[1], enemy_red_set,
# )
# policies = convert_func(ii_pieces_array, enemy_legal_actions)
# ndarrayに変換(自分の駒配置が確定でなかった際に、行列演算するためにnpに変換していた名残)
np_policies = np.array(policies, dtype="f4")
policies_list.extend([np_policies])
return policies_list
# 相手の行動から推測値を更新
# state, enemy_ii_predictで作成した推測値の行列, 敵の行動番号
def update_predict_num_all(
ii_state, beforehand_estimated_num, enemy_action_num, gamma=default_gamma
):
# print(enemy_action_num)
enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
enemy_action_index = enemy_legal_actions.index(enemy_action_num)
for index, enemy_estimated_num in enumerate(ii_state.enemy_estimated_num):
# ii_state.enemy_estimated_num[index][0]
enemy_estimated_num[0] = (
enemy_estimated_num[0] * gamma
) + beforehand_estimated_num[index][enemy_action_index]
# 相手の行動から推測値を更新
# 相手の取りうる指し手の中で最も価値の高い行動であれば、その盤面である可能性が高いと考える
# 最も価値の高い行動であれば+1、そうでなければ+0
def update_predict_num_max_only(
ii_state, beforehand_estimated_num, enemy_action_num, gamma=default_gamma
):
enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
enemy_action_index = enemy_legal_actions.index(enemy_action_num)
bf_estimated_num = beforehand_estimated_num
# 未知の駒が0か5に存在している場合、未知の駒が赤駒である場合でも行動番号2や22を追加しないと配列への参照(beforehand_estimated_num[index][enemy_action_index])がズレる
goal_actions = []
if 2 in enemy_legal_actions:
goal_actions.append(2)
if 22 in enemy_legal_actions:
goal_actions.append(22)
# ゴール行動が含まれていた場合
if goal_actions != []:
legal_length = len(enemy_legal_actions)
for goal in goal_actions:
new_est_num = []
for bf_index, bf_est_num in enumerate(bf_estimated_num):
# このやり方だと0,5の両方に赤駒がいた場合に対処できないが、ごく稀にしか起こらないためその場合の推測は割り切る
if legal_length > len(bf_est_num):
insert_index = enemy_legal_actions.index(goal)
new_est_num.append(
np.insert(bf_estimated_num[bf_index], insert_index, -999.9)
)
else:
new_est_num.append(bf_estimated_num[bf_index])
bf_estimated_num = new_est_num
enemy_estimated_num = ii_state.enemy_estimated_num
for index, en_est_num in enumerate(enemy_estimated_num):
action_value = bf_estimated_num[index][enemy_action_index]
# 相手の選択した行動が、相手の取りうる行動の中で最高の評価であった場合
if np.partition(bf_estimated_num[index].ravel(), -1)[-1] == action_value:
en_est_num[0] = (en_est_num[0] * gamma) + 1
# 相手の行動から推測値を更新
# 方策の値を盤面ごとに正規化する
def update_predict_num_normalize(
ii_state, beforehand_estimated_num, enemy_action_num, gamma=default_gamma
):
enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
enemy_action_index = enemy_legal_actions.index(enemy_action_num)
bf_estimated_num = beforehand_estimated_num
# 未知の駒が0か5に存在している場合、未知の駒が赤駒である場合でも行動番号2や22を追加しないと配列への参照(beforehand_estimated_num[index][enemy_action_index])がズレる
goal_actions = []
if 2 in enemy_legal_actions:
goal_actions.append(2)
if 22 in enemy_legal_actions:
goal_actions.append(22)
# ゴール行動が含まれていた場合
if goal_actions != []:
legal_length = len(enemy_legal_actions)
for goal in goal_actions:
new_est_num = []
for bf_index, bf_est_num in enumerate(bf_estimated_num):
# このやり方だと0,5の両方に赤駒がいた場合に対処できないが、ごく稀にしか起こらないためその場合の推測は割り切る
if legal_length > len(bf_est_num):
# 最小値を探索
pol_min = np.amin(bf_est_num)
# 非合法手の方策の値は最小値と同じにする
insert_index = enemy_legal_actions.index(goal)
new_est_num.append(np.insert(bf_est_num, insert_index, pol_min))
else:
new_est_num.append(bf_estimated_num[bf_index])
bf_estimated_num = new_est_num
# 最小値を0にする
for bf_est_num in bf_estimated_num:
bf_est_num -= np.amin(bf_est_num)
# 最小値0、合計1に正規化する
for bf_est_num in bf_estimated_num:
if np.sum(bf_est_num) > 0.0: # 0除算対策(合計0の場合はそのまま扱う)
bf_est_num /= np.sum(bf_est_num)
for index, en_est_num in enumerate(ii_state.enemy_estimated_num):
action_value = bf_estimated_num[index][enemy_action_index]
# 実際に取られた行動の評価値を足すことで、推測値を更新
en_est_num[0] = (en_est_num[0] * gamma) + action_value
# ありえないパターンを消す
def shave_impossible_pattern(piece_ID: int, color_is_blue: bool, ii_state):
if piece_ID < 8 and color_is_blue: # 敵駒 and 駒が青色
# piece_IDが含まれていないものを削除(piece_IDが青色で確定するため、それが青色の駒のリストに含まれていないとおかしい)
# リストをそのままfor内で削除するとインデックスがバグるのでコピーしたものを参照
for enemy_estimated_num in ii_state.enemy_estimated_num[:]:
if piece_ID not in enemy_estimated_num[1]:
ii_state.enemy_estimated_num.remove(enemy_estimated_num)
elif piece_ID < 8 and not color_is_blue: # 敵駒 and 駒が赤色
# piece_IDが含まれているものを削除
for enemy_estimated_num in ii_state.enemy_estimated_num[:]:
if piece_ID in enemy_estimated_num[1]:
ii_state.enemy_estimated_num.remove(enemy_estimated_num)
elif piece_ID >= 8 and color_is_blue: # 自駒 and 駒が青色
for my_estimated_num in ii_state.my_estimated_num[:]:
if piece_ID not in my_estimated_num[1]:
ii_state.my_estimated_num.remove(my_estimated_num)
elif piece_ID >= 8 and not color_is_blue: # 自駒 and 駒が赤色
for my_estimated_num in ii_state.my_estimated_num[:]:
if piece_ID in my_estimated_num[1]:
ii_state.my_estimated_num.remove(my_estimated_num)
# 駒が死ぬたびに推測値を全て作り直して、死んだ駒と残った推測駒から新しい推測値を作成する
def rebuilding_estimated_num(
ii_state, correct_estimate_piece: list, wrong_estimate_piece: list
):
# 生きてる駒のリストにcorrect_estimate_pieceとwrong_estimate_pieceが存在するかを確認
# enemy_piece_list = [0, 1, 2, 3, 4, 5, 6, 7]
blue_pieces = []
red_pieces = []
for correct_piece in correct_estimate_piece:
if correct_piece in ii_state.enemy_piece_list: # 生きてるか
if correct_piece in ii_state.real_enemy_piece_blue_set: # 青駒かどうか
blue_pieces.append(correct_piece)
else:
red_pieces.append(correct_piece)
for wrong_piece in wrong_estimate_piece:
if wrong_piece in ii_state.enemy_piece_list: # 生きてるか
if (
wrong_piece in ii_state.real_enemy_piece_blue_set
): # 青駒かどうか(wrongは間違った推測なので赤青を反転させる)
red_pieces.append(wrong_piece)
else:
blue_pieces.append(wrong_piece)
# このままだと駒数が溢れている(青駒が5個などあり得ない比率になっている)可能性があるので、その際にはランダムピックで削除
if len(blue_pieces) > ii_state.living_piece_color[0]:
while len(blue_pieces) > ii_state.living_piece_color[0]:
blue_pieces.remove(random.choice(blue_pieces))
if len(red_pieces) > ii_state.living_piece_color[1]:
while len(red_pieces) > ii_state.living_piece_color[1]:
red_pieces.remove(random.choice(red_pieces))
# 盤面の推測値を新たに作成
enemy_estimated_num = []
for enemy_blue in itertools.combinations(
set(ii_state.enemy_piece_list), ii_state.living_piece_color[0]
): # living_piece_color{敵青, 敵赤, 自青, 自赤}
enemy_estimated_num.append([0, enemy_blue])
# 推測値を更新
ii_state.enemy_estimated_num = enemy_estimated_num
# 推測の情報から状態を削減
for piece_id in blue_pieces:
shave_impossible_pattern(piece_id, True, ii_state)
for piece_id in red_pieces:
shave_impossible_pattern(piece_id, False, ii_state)
# 駒の死亡処理
# 既存のパターンから推測値を抜き出して新しい推測値を作成
def reduce_pattern(dead_piece_ID: int, color_is_blue: bool, ii_state):
# 駒の色が確定するので、ありえないパターンを削ぐ
shave_impossible_pattern(dead_piece_ID, color_is_blue, ii_state)
# all_pieceから削除
ii_state.all_piece[dead_piece_ID] = 99
# **_piece_listから削除
if dead_piece_ID < 8:
ii_state.enemy_piece_list.remove(dead_piece_ID)
elif dead_piece_ID < 16:
ii_state.my_piece_list.remove(dead_piece_ID)
else:
print("ERROR:reduce_pattern(**_piece_listから削除)")
# living_piece_colorから削除
if dead_piece_ID < 8 and color_is_blue: # 敵駒 and 駒が青色
ii_state.living_piece_color[0] -= 1
elif dead_piece_ID < 8 and not color_is_blue: # 敵駒 and 駒が赤色
ii_state.living_piece_color[1] -= 1
elif dead_piece_ID >= 8 and color_is_blue: # 自駒 and 駒が青色
ii_state.living_piece_color[2] -= 1
elif dead_piece_ID >= 8 and not color_is_blue: # 自駒 and 駒が赤色
ii_state.living_piece_color[3] -= 1
else:
print("ERROR:reduce_pattern(living_piece_colorから削除)")
# 相手の推測値を使って無難な手を選択(元祖)
# 価値が最大の行動番号を返す
def action_decision_legacy(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
# legal_actions = list(ii_state.legal_actions()) #これがソートしてなかったせいでバグってた説ある
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
convert_func = convert_func_use_in_guess(model_path)
# 相手の70パターンについてforループ(自分のパターンは確定で計算)
for num_and_enemy_blue in ii_state.enemy_estimated_num:
enemy_blue_set = set(num_and_enemy_blue[1])
enemy_red_set = enemy_piece_set - enemy_blue_set
# 盤面を6*6*4次元の情報に変換
ii_pieces_array = my_looking_create_state(
ii_state,
real_my_piece_blue_set,
real_my_piece_red_set,
enemy_blue_set,
enemy_red_set,
)
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + (
np_policies * num_and_enemy_blue[0]
)
best_action_index = np.argmax(actions_value_sum_list) # 最大値のインデックスを取得
best_action = legal_actions[best_action_index] # 価値が最大の行動を取得
return best_action
# 上位半分のみの世界しか考えない
def half_action_decision(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
convert_func = convert_func_use_in_guess(model_path)
# 価値が上位の世界を抽出
en_est_num = ii_state.enemy_estimated_num.copy()
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
sorted_en_est_num = sorted_en_est_num[0 : 1 + (len(sorted_en_est_num) // 4)]
# 相手の70パターンについてforループ(自分のパターンは確定で計算)
for num_and_enemy_blue in sorted_en_est_num:
enemy_blue_set = set(num_and_enemy_blue[1])
enemy_red_set = enemy_piece_set - enemy_blue_set
# 盤面を6*6*4次元の情報に変換
ii_pieces_array = my_looking_create_state(
ii_state,
real_my_piece_blue_set,
real_my_piece_red_set,
enemy_blue_set,
enemy_red_set,
)
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + (
np_policies * num_and_enemy_blue[0]
)
best_action_index = np.argmax(actions_value_sum_list) # 最大値のインデックスを取得
best_action = legal_actions[best_action_index] # 価値が最大の行動を取得
return best_action
# 1位の世界しか考えないno1_
def no1_action_decision(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
convert_func = convert_func_use_in_guess(model_path)
# 価値が上位の世界を抽出
en_est_num = ii_state.enemy_estimated_num.copy()
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
# 価値が1位の世界を抽出
sorted_en_est_num = sorted_en_est_num[0:2]
# 相手の70パターンについてforループ(自分のパターンは確定で計算)
for num_and_enemy_blue in sorted_en_est_num:
enemy_blue_set = set(num_and_enemy_blue[1])
enemy_red_set = enemy_piece_set - enemy_blue_set
# 盤面を6*6*4次元の情報に変換
ii_pieces_array = my_looking_create_state(
ii_state,
real_my_piece_blue_set,
real_my_piece_red_set,
enemy_blue_set,
enemy_red_set,
)
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + (
np_policies * num_and_enemy_blue[0]
)
best_action_index = np.argmax(actions_value_sum_list) # 最大値のインデックスを取得
best_action = legal_actions[best_action_index] # 価値が最大の行動を取得
return best_action
# 上位の駒の共通項をくくるcommon_items_
def common_items_action_decision(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
convert_func = convert_func_use_in_guess(model_path)
# 価値が上位の世界を抽出
en_est_num = ii_state.enemy_estimated_num.copy()
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
# 上位の駒をくくる
piece_num = [0] * 8
# これだと全部くくってるので、適宜削る
for est_num in sorted_en_est_num[0 : (len(sorted_en_est_num) // 2) + 1]:
for piece_id in est_num[1]:
# ここ+1じゃなくて推測値の方がええんかな
piece_num[piece_id] += 1
value_and_id_list = [[1, []]]
# 上位4つの駒を抽出
piece_num_top_four = sorted(piece_num, reverse=True)[:4]
for p_value in piece_num_top_four:
value_and_id_list[0][1].append(piece_num.index(p_value))
# いつもの
for num_and_enemy_blue in value_and_id_list:
enemy_blue_set = set(num_and_enemy_blue[1])
enemy_red_set = enemy_piece_set - enemy_blue_set
# 盤面を6*6*4次元の情報に変換
ii_pieces_array = my_looking_create_state(
ii_state,
real_my_piece_blue_set,
real_my_piece_red_set,
enemy_blue_set,
enemy_red_set,
)
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + (
np_policies * num_and_enemy_blue[0]
)
best_action_index = np.argmax(actions_value_sum_list) # 最大値のインデックスを取得
best_action = legal_actions[best_action_index] # 価値が最大の行動を取得
return best_action
# 各盤面について方策の正規化を行った上で無難な手を選択normalize_
def action_decision(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
convert_func = convert_func_use_in_guess(model_path)
en_est_num = ii_state.enemy_estimated_num.copy()
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
# 価値が上位の世界を抽出
# sorted_en_est_num = sorted_en_est_num[0 : 1 + (len(sorted_en_est_num) // 4)]
# 相手の70パターンについてforループ(自分のパターンは確定で計算)
for num_and_enemy_blue in sorted_en_est_num:
enemy_blue_set = set(num_and_enemy_blue[1])
enemy_red_set = enemy_piece_set - enemy_blue_set
# 盤面を6*6*4次元の情報に変換
ii_pieces_array = my_looking_create_state(
ii_state,
real_my_piece_blue_set,
real_my_piece_red_set,
enemy_blue_set,
enemy_red_set,
)
policies = convert_func(ii_pieces_array, legal_actions)
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# 最小値を0にする
np_policies -= np.amin(np_policies)
# 最小値0、合計1に正規化する
if np.sum(np_policies) > 0: # 0除算対策
np_policies /= np.sum(np_policies)
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + (
np_policies * num_and_enemy_blue[0]
)
best_action_index = np.argmax(actions_value_sum_list) # 最大値のインデックスを取得
best_action = legal_actions[best_action_index] # 価値が最大の行動を取得
return best_action
from test import HandyAction
# 1位の盤面に対してpolicyを用いたMCTSを実行し行動を決定mcts_
def mcts_action_decision(model_path, ii_state):
a, b, c = DN_INPUT_SHAPE # (6, 6, 4)
my_piece_set = set(ii_state.my_piece_list)
enemy_piece_set = set(ii_state.enemy_piece_list)
# 自分の駒配置を取得(確定)
real_my_piece_blue_set = ii_state.real_my_piece_blue_set
real_my_piece_red_set = ii_state.real_my_piece_red_set
legal_actions = sorted(list(ii_state.legal_actions()), key=lambda x: x)
actions_value_sum_list = np.array([0] * len(legal_actions), dtype="f4")
# 価値が上位の世界を抽出
en_est_num = ii_state.enemy_estimated_num.copy()
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
# 価値が1位の世界を抽出
sorted_en_est_num = sorted_en_est_num[0]
# 価値が1位の盤面が、実際の盤面であると仮定しstateを取得
state = create_state_from_ii_state(ii_state, sorted_en_est_num[1])
# stateを利用しMCTS
policy_action = HandyAction(model_path)
best_action = predict_mcts_action(state, policy_action)
return best_action
import math
# モンテカルロ木探索の行動選択
def predict_mcts_action(state, policy_action):
# モンテカルロ木探索のノード
class node:
# 初期化
def __init__(self, state):
self.state = state # 状態
self.w = 0 # 累計価値
self.n = 0 # 試行回数
self.child_nodes = None # 子ノード群
self.policy_action = policy_action
# 評価
def evaluate(self):
if self.state.is_done():
value = -1 if self.state.is_lose() else 0 # 負けは-1、引き分けは0
self.w += value
self.n += 1
return value
# 子ノードが存在しない時
if not self.child_nodes:
# プレイアウトで価値を取得
value = policy_playout(self.state, self.policy_action)
self.w += value
self.n += 1
# 子ノードがない場合は初回探索で木を展開
self.expand()
return value
# 子ノードが存在する時
else:
# UCB1が最大の子ノードの評価で価値を取得
value = -self.next_child_node().evaluate()
# 累計価値と試行回数の更新
self.w += value
self.n += 1
return value
# 子ノードの展開
def expand(self):
legal_actions = self.state.legal_actions()
self.child_nodes = []
for action in legal_actions:
self.child_nodes.append(node(self.state.next(action)))
# UCB1が最大の子ノードを取得
def next_child_node(self):
# 試行回数nが0の子ノードを返す
for child_node in self.child_nodes:
if child_node.n == 0:
return child_node
# UCB1の計算
t = 0
for c in self.child_nodes:
t += c.n
ucb1_values = []
for child_node in self.child_nodes:
ucb1_values.append(
-child_node.w / child_node.n
+ 2 * (2 * math.log(t) / child_node.n) ** 0.5
)
return self.child_nodes[argmax(ucb1_values)]
# ルートノードの生成
root_node = node(state)
root_node.expand()
# ルートノードを評価 (rangeを変化させると評価回数を変化させられる)
for _ in range(50):
root_node.evaluate()
# 試行回数の最大値を持つ行動を返す
legal_actions = state.legal_actions()
n_list = []
for c in root_node.child_nodes:
n_list.append(c.n)
return legal_actions[argmax(n_list)]
# 方策を使ってゲームの終端までシミュレート
def policy_playout(state, policy_action):
if state.is_lose():
return -1
if state.is_draw():
return 0
return -policy_playout(state.next(policy_action(state)), policy_action)
import random
# あり得る世界からランダムに1つ選択し、その世界に対して最も適切な行動をとるrand_world_
def rand_world_action(model_path):
policy_action = HandyAction(model_path)
def rand_world_action(ii_state):
# あり得る世界からランダムに1つ選出
possible_worlds_num = len(ii_state.enemy_estimated_num)
world_piece_set = ii_state.enemy_estimated_num[
random.randrange(possible_worlds_num)
][1]
# 選出した世界からstateを取得し、方策の値が最も高い行動を選択
state = create_state_from_ii_state(ii_state, world_piece_set)
best_action = policy_action(state)
return best_action
return rand_world_action
from test import PredictPolicy
# あり得る世界からランダムにn通り選択し、その世界に対して最も適切な行動をとるrand_n_world_
def rand_n_world_action(model_path, n):
policy_action = PredictPolicy(model_path)
def rand_n_world_action(ii_state):
# あり得る世界からランダムにいくつか選出
possible_worlds_num = len(ii_state.enemy_estimated_num)
if possible_worlds_num < n:
pic_num = possible_worlds_num
else:
pic_num = n
# ランダムにn個の世界を選出
pic_world_list = random.sample(list(range(possible_worlds_num)), pic_num)
world_piece_set_list = []
for pic_world in pic_world_list:
world_piece_set_list.append(ii_state.enemy_estimated_num[pic_world][1])
legal_actions = sorted(ii_state.legal_actions(), key=lambda x: x)
legal_num = len(legal_actions)
actions_value_sum_list = np.array([0] * legal_num, dtype="f4")
for world_piece_set in world_piece_set_list:
# 選出した世界からstateを取得し、方策の値が最も高い行動を選択
state = create_state_from_ii_state(ii_state, world_piece_set)
action_and_policy = policy_action(state)
action_and_policy = sorted(
[(a[0], a[1]) for a in action_and_policy], key=lambda x: x[0],
)
policies = [0] * legal_num
for index, ap in enumerate(action_and_policy):
policies[index] = ap[1]
# 行列演算するためにndarrayに変換
np_policies = np.array(policies, dtype="f4")
# 最小値を0にする
np_policies -= np.amin(np_policies)
# 最小値0、合計1に正規化する
if np.sum(np_policies) > 0: # 0除算対策
np_policies /= np.sum(np_policies)
# パターンごとに「推測値を重みとして掛けた方策」を足し合わせる
actions_value_sum_list = actions_value_sum_list + np_policies
best_action = legal_actions[np.argmax(actions_value_sum_list)]
return best_action
return rand_n_world_action
# 駒をテレポート(デバッグ用で破壊的)(敵駒の存在を想定していない)
def teleport(ii_state, before, now):
name = np.where(ii_state.all_piece == before)[0][0]
ii_state.all_piece[name] = now
# 相手の打った手の価値(方策)を盤面ごとに調査し、ランキング形式でプリントする関数
# 実際の盤面は何位なのか、トップの盤面の形などを出力すると良い?
def value_ranking_by_board(beforehand_estimated_num, action_num, ii_state):
# 行動番号からインデックスを取得
enemy_legal_actions = sorted(list(ii_state.enemy_legal_actions()), key=lambda x: x)
enemy_action_index = enemy_legal_actions.index(action_num)
en_est_num = ii_state.enemy_estimated_num.copy()
for index, (action_value_list, prenum_tuple) in enumerate(
zip(beforehand_estimated_num, en_est_num)
):
prenum_tuple[0] = action_value_list[enemy_action_index]
# 価値の高い順にen_est_numをソートする
sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
real_rank = -1
for index, en_est in enumerate(sorted_en_est_num):
if en_est[1] == tuple(ii_state.real_enemy_piece_blue_set):
real_rank = index
# print("real_set:", tuple(ii_state.real_enemy_piece_blue_set))
# print("action_num:", action_num)
print("real_rank:", real_rank)
# print(len(sorted_en_est_num))
print(sorted_en_est_num)
# print(real_board_rank)
# print(top_board)
# 透視できている駒のidを用いて推測値から削ぐ
def shave_impossible_board_from_see_through(ii_state):
for piece_id in ii_state.see_through_piece_id:
if piece_id in ii_state.real_enemy_piece_blue_set:
shave_impossible_pattern(piece_id, True, ii_state)
elif piece_id in ii_state.real_enemy_piece_red_set:
shave_impossible_pattern(piece_id, False, ii_state)
else:
print("敵の駒のIDではありません")
# 行動の一連の処理でii_stateを更新する
def guess_enemy_piece_player_for_tcp(
model_path, ii_state, before_tcp_str, now_tcp_str, gamma=default_gamma
):
# 相手の盤面から全ての行動の推測値を計算しておく
print("推測値を算出中")
beforehand_estimated_num = enemy_ii_predict(model_path, ii_state)
# 実際に取られた行動を取得
print("相手の行動番号を取得中")
BeforeAndNow = enemy_coordinate_checker(before_tcp_str, now_tcp_str)
print(BeforeAndNow)
enemy_action_num = calculate_enemy_action_number_from_coordinate(
BeforeAndNow[0], BeforeAndNow[1]
)
print("敵の行動番号", enemy_action_num, sep=":")
# 実際に取られた行動から推測値を更新
print("推測値を更新中")
update_predict_num_all(ii_state, beforehand_estimated_num, enemy_action_num, gamma)
# 相手の行動からボードを更新
print("ボード更新中")
kill = update_II_state(ii_state, BeforeAndNow[0], BeforeAndNow[1]) # 相手の行動をボードに反映
# 行動を決定
print("行動を決定中")
action_num = action_decision(model_path, ii_state)
print("行動番号", action_num, sep=":")
# 行動を受けて自分の推測値を更新
# beforehand_my_estimated_num = my_ii_predict(model, ii_state)
# (未実装)update_my_predict_num_all(ii_state, beforehand_my_estimated_num, action_num)
# 自分の決定した行動でii_stateを更新
ii_state.next(action_num)
# 行動番号を返す
return action_num
# 推測をしない(推測値を更新しない)
# 相手の行動からii_stateの更新->行動決定->自分の行動からii_stateを更新
def ii_state_action(rw_action, ii_state, just_before_enemy_action_num):
if just_before_enemy_action_num != -1:
# 相手の行動からボードを更新
before, now = action_to_coordinate(just_before_enemy_action_num)
my_find_before = 35 - before # このままでは相手視点の座標なので、自分視点の座標に変換
my_find_now = 35 - now # 同様に変換
kill = update_II_state(ii_state, my_find_before, my_find_now) # 相手の行動をボードに反映
# 行動を決定
action_num = rw_action(ii_state)
# 自分の決定した行動でii_stateを更新
ii_state.next(action_num)
# 行動番号を返す
return action_num
# tcpを受けずに直接行動番号を受ける
# 推測値の事前計算->推測値の更新->相手の行動からii_stateの更新->行動決定->自分の行動からii_stateを更新
def guess_enemy_piece_player(model_path, ii_state, just_before_enemy_action_num, gamma):
# 相手の盤面から全ての行動の推測値を計算しておく
# print("推測値を算出中")
beforehand_estimated_num = enemy_ii_predict(model_path, ii_state)
# print("敵の行動番号", just_before_enemy_action_num, sep=":")
# value_ranking_by_board(
# beforehand_estimated_num, just_before_enemy_action_num, ii_state
# )
# print("盤面:", ii_state)
# プリントデバッグ的なあれ
# print("〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜")
# print("実際の青駒:", ii_state.real_enemy_piece_blue_set)
# en_est_num = ii_state.enemy_estimated_num.copy()
# dead_piece = []
# for index, piece in enumerate(ii_state.all_piece):
# if piece == 99:
# dead_piece.append(index)
# print("dead_piece:", dead_piece)
# sorted_en_est_num = sorted(en_est_num, reverse=True, key=lambda x: x[0])
# print("推測値:", sorted_en_est_num)
# print("beforehand_estimated_num:", beforehand_estimated_num)
# value_ranking_by_board(
# beforehand_estimated_num, just_before_enemy_action_num, ii_state
# )
# 実際に取られた行動から推測値を更新
# update_predict_num_all(
# ii_state, beforehand_estimated_num, just_before_enemy_action_num, gamma
# )
# print("beforehand", beforehand_estimated_num)
# update_predict_num_max_only(
# ii_state, beforehand_estimated_num, just_before_enemy_action_num, gamma
# )
update_predict_num_normalize(
ii_state, beforehand_estimated_num, just_before_enemy_action_num, gamma
)
# 相手の行動からボードを更新
# print("ボード更新中")
before, now = action_to_coordinate(just_before_enemy_action_num)
my_find_before = 35 - before # このままでは相手視点の座標なので、自分視点の座標に変換
my_find_now = 35 - now # 同様に変換
# print(my_find_before, my_find_now)
kill = update_II_state(ii_state, my_find_before, my_find_now) # 相手の行動をボードに反映
# 行動を決定
# print("行動を決定中")
action_num = action_decision(model_path, ii_state)
# print("行動番号", action_num, sep=":")
# 行動を受けて自分の推測値を更新
# beforehand_my_estimated_num = my_ii_predict(model_path, ii_state)
# (未実装)update_my_predict_num_all(ii_state, beforehand_my_estimated_num, action_num)
# 自分の決定した行動でii_stateを更新
ii_state.next(action_num)
# 行動番号を返す
return action_num
# 動作確認
if __name__ == "__main__":
start = time.time()
# path = sorted(Path("./model").glob("*.h5"))[-1]
# model = load_model(str(path))
# ii_state = II_State({8, 9, 10, 11}, {0, 1, 2, 3})
# ii_state = II_State({8, 9, 10, 11}, {0, 1, 2, 3}, {2, 3, 4, 5})
ii_state = II_State({8, 9, 10, 11}, {0, 1, 2, 3}, {2, 3, 4}, {0, 1, 6})
print("本当の青駒:", ii_state.real_enemy_piece_blue_set)
print("初期値:", ii_state.enemy_estimated_num)
reduce_pattern(4, False, ii_state)
print("4赤(透視済):", ii_state.enemy_estimated_num)
reduce_pattern(1, True, ii_state)
print("1青(未透視):", ii_state.enemy_estimated_num)
elapsed_time = time.time() - start
print("elapsed_time:{0}".format(elapsed_time) + "[sec]")
| [
"test.get_policies",
"test.PredictPolicy",
"math.log",
"numpy.array",
"numpy.where",
"numpy.sort",
"test.convert_func_use_in_guess",
"random.randint",
"test.HandyAction",
"random.choice",
"numpy.amin",
"random.randrange",
"numpy.argmax",
"numpy.any",
"time.time",
"numpy.insert",
"num... | [((18826, 18853), 'game.State', 'State', (['pieces', 'enemy_pieces'], {}), '(pieces, enemy_pieces)\n', (18831, 18853), False, 'from game import State\n'), ((21596, 21640), 'numpy.any', 'np.any', (['(ii_state.all_piece == now_coordinate)'], {}), '(ii_state.all_piece == now_coordinate)\n', (21602, 21640), True, 'import numpy as np\n'), ((24818, 24846), 'game.State', 'State', (['enemy_table', 'my_table'], {}), '(enemy_table, my_table)\n', (24823, 24846), False, 'from game import State\n'), ((25379, 25416), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (25404, 25416), False, 'from test import convert_func_use_in_guess\n'), ((28483, 28507), 'test.get_policies', 'get_policies', (['model_path'], {}), '(model_path)\n', (28495, 28507), False, 'from test import get_policies\n'), ((38772, 38809), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (38797, 38809), False, 'from test import convert_func_use_in_guess\n'), ((39592, 39625), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (39601, 39625), True, 'import numpy as np\n'), ((40254, 40291), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (40279, 40291), False, 'from test import convert_func_use_in_guess\n'), ((41293, 41326), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (41302, 41326), True, 'import numpy as np\n'), ((41954, 41991), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (41979, 41991), False, 'from test import convert_func_use_in_guess\n'), ((42977, 43010), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (42986, 43010), True, 'import numpy as np\n'), ((43657, 43694), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (43682, 43694), False, 'from test import convert_func_use_in_guess\n'), ((45051, 45084), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (45060, 45084), True, 'import numpy as np\n'), ((45729, 45766), 'test.convert_func_use_in_guess', 'convert_func_use_in_guess', (['model_path'], {}), '(model_path)\n', (45754, 45766), False, 'from test import convert_func_use_in_guess\n'), ((46951, 46984), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (46960, 46984), True, 'import numpy as np\n'), ((48008, 48031), 'test.HandyAction', 'HandyAction', (['model_path'], {}), '(model_path)\n', (48019, 48031), False, 'from test import HandyAction\n'), ((50870, 50893), 'test.HandyAction', 'HandyAction', (['model_path'], {}), '(model_path)\n', (50881, 50893), False, 'from test import HandyAction\n'), ((51505, 51530), 'test.PredictPolicy', 'PredictPolicy', (['model_path'], {}), '(model_path)\n', (51518, 51530), False, 'from test import PredictPolicy\n'), ((59243, 59254), 'time.time', 'time.time', ([], {}), '()\n', (59252, 59254), False, 'import time\n'), ((5364, 5381), 'numpy.array', 'np.array', (['([0] * 8)'], {}), '([0] * 8)\n', (5372, 5381), True, 'import numpy as np\n'), ((5524, 5555), 'numpy.sort', 'np.sort', (['piece_coordinate_array'], {}), '(piece_coordinate_array)\n', (5531, 5555), True, 'import numpy as np\n'), ((6285, 6302), 'numpy.array', 'np.array', (['([0] * 8)'], {}), '([0] * 8)\n', (6293, 6302), True, 'import numpy as np\n'), ((6561, 6592), 'numpy.sort', 'np.sort', (['piece_coordinate_array'], {}), '(piece_coordinate_array)\n', (6568, 6592), True, 'import numpy as np\n'), ((9573, 9615), 'numpy.any', 'np.any', (['(self.all_piece == coordinate_after)'], {}), '(self.all_piece == coordinate_after)\n', (9579, 9615), True, 'import numpy as np\n'), ((10642, 10671), 'numpy.array', 'np.array', (['([0] * 8)'], {'dtype': '"""f4"""'}), "([0] * 8, dtype='f4')\n", (10650, 10671), True, 'import numpy as np\n'), ((21794, 21850), 'numpy.any', 'np.any', (['(ii_state.real_my_piece_blue_set == dead_piece_ID)'], {}), '(ii_state.real_my_piece_blue_set == dead_piece_ID)\n', (21800, 21850), True, 'import numpy as np\n'), ((29552, 29582), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (29560, 29582), True, 'import numpy as np\n'), ((33492, 33511), 'numpy.amin', 'np.amin', (['bf_est_num'], {}), '(bf_est_num)\n', (33499, 33511), True, 'import numpy as np\n'), ((39376, 39406), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (39384, 39406), True, 'import numpy as np\n'), ((41077, 41107), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (41085, 41107), True, 'import numpy as np\n'), ((42761, 42791), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (42769, 42791), True, 'import numpy as np\n'), ((44835, 44865), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (44843, 44865), True, 'import numpy as np\n'), ((46554, 46584), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (46562, 46584), True, 'import numpy as np\n'), ((46628, 46648), 'numpy.amin', 'np.amin', (['np_policies'], {}), '(np_policies)\n', (46635, 46648), True, 'import numpy as np\n'), ((52194, 52231), 'numpy.array', 'np.array', (['([0] * legal_num)'], {'dtype': '"""f4"""'}), "([0] * legal_num, dtype='f4')\n", (52202, 52231), True, 'import numpy as np\n'), ((59853, 59864), 'time.time', 'time.time', ([], {}), '()\n', (59862, 59864), False, 'import time\n'), ((1334, 1362), 'numpy.zeros', 'np.zeros', (['(16)'], {'dtype': 'np.int16'}), '(16, dtype=np.int16)\n', (1342, 1362), True, 'import numpy as np\n'), ((26200, 26230), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (26208, 26230), True, 'import numpy as np\n'), ((33584, 33602), 'numpy.sum', 'np.sum', (['bf_est_num'], {}), '(bf_est_num)\n', (33590, 33602), True, 'import numpy as np\n'), ((33660, 33678), 'numpy.sum', 'np.sum', (['bf_est_num'], {}), '(bf_est_num)\n', (33666, 33678), True, 'import numpy as np\n'), ((46685, 46704), 'numpy.sum', 'np.sum', (['np_policies'], {}), '(np_policies)\n', (46691, 46704), True, 'import numpy as np\n'), ((46746, 46765), 'numpy.sum', 'np.sum', (['np_policies'], {}), '(np_policies)\n', (46752, 46765), True, 'import numpy as np\n'), ((52792, 52822), 'numpy.array', 'np.array', (['policies'], {'dtype': '"""f4"""'}), "(policies, dtype='f4')\n", (52800, 52822), True, 'import numpy as np\n'), ((52874, 52894), 'numpy.amin', 'np.amin', (['np_policies'], {}), '(np_policies)\n', (52881, 52894), True, 'import numpy as np\n'), ((53181, 53214), 'numpy.argmax', 'np.argmax', (['actions_value_sum_list'], {}), '(actions_value_sum_list)\n', (53190, 53214), True, 'import numpy as np\n'), ((53362, 53400), 'numpy.where', 'np.where', (['(ii_state.all_piece == before)'], {}), '(ii_state.all_piece == before)\n', (53370, 53400), True, 'import numpy as np\n'), ((7537, 7591), 'numpy.any', 'np.any', (['(piece_coordinate_array == piece_coordinate + 6)'], {}), '(piece_coordinate_array == piece_coordinate + 6)\n', (7543, 7591), True, 'import numpy as np\n'), ((7699, 7753), 'numpy.any', 'np.any', (['(piece_coordinate_array == piece_coordinate - 1)'], {}), '(piece_coordinate_array == piece_coordinate - 1)\n', (7705, 7753), True, 'import numpy as np\n'), ((7861, 7915), 'numpy.any', 'np.any', (['(piece_coordinate_array == piece_coordinate - 6)'], {}), '(piece_coordinate_array == piece_coordinate - 6)\n', (7867, 7915), True, 'import numpy as np\n'), ((8023, 8077), 'numpy.any', 'np.any', (['(piece_coordinate_array == piece_coordinate + 1)'], {}), '(piece_coordinate_array == piece_coordinate + 1)\n', (8029, 8077), True, 'import numpy as np\n'), ((9459, 9504), 'numpy.where', 'np.where', (['(self.all_piece == coordinate_before)'], {}), '(self.all_piece == coordinate_before)\n', (9467, 9504), True, 'import numpy as np\n'), ((21717, 21763), 'numpy.where', 'np.where', (['(ii_state.all_piece == now_coordinate)'], {}), '(ii_state.all_piece == now_coordinate)\n', (21725, 21763), True, 'import numpy as np\n'), ((22018, 22067), 'numpy.where', 'np.where', (['(ii_state.all_piece == before_coordinate)'], {}), '(ii_state.all_piece == before_coordinate)\n', (22026, 22067), True, 'import numpy as np\n'), ((36343, 36369), 'random.choice', 'random.choice', (['blue_pieces'], {}), '(blue_pieces)\n', (36356, 36369), False, 'import random\n'), ((36522, 36547), 'random.choice', 'random.choice', (['red_pieces'], {}), '(red_pieces)\n', (36535, 36547), False, 'import random\n'), ((51092, 51129), 'random.randrange', 'random.randrange', (['possible_worlds_num'], {}), '(possible_worlds_num)\n', (51108, 51129), False, 'import random\n'), ((52939, 52958), 'numpy.sum', 'np.sum', (['np_policies'], {}), '(np_policies)\n', (52945, 52958), True, 'import numpy as np\n'), ((53004, 53023), 'numpy.sum', 'np.sum', (['np_policies'], {}), '(np_policies)\n', (53010, 53023), True, 'import numpy as np\n'), ((9645, 9689), 'numpy.where', 'np.where', (['(self.all_piece == coordinate_after)'], {}), '(self.all_piece == coordinate_after)\n', (9653, 9689), True, 'import numpy as np\n'), ((10917, 10948), 'numpy.array', 'np.array', (['id_matrix'], {'dtype': '"""f4"""'}), "(id_matrix, dtype='f4')\n", (10925, 10948), True, 'import numpy as np\n'), ((15405, 15425), 'random.randint', 'random.randint', (['(0)', '(1)'], {}), '(0, 1)\n', (15419, 15425), False, 'import random\n'), ((33068, 33087), 'numpy.amin', 'np.amin', (['bf_est_num'], {}), '(bf_est_num)\n', (33075, 33087), True, 'import numpy as np\n'), ((14590, 14610), 'random.randint', 'random.randint', (['(0)', '(1)'], {}), '(0, 1)\n', (14604, 14610), False, 'import random\n'), ((31448, 31507), 'numpy.insert', 'np.insert', (['bf_estimated_num[bf_index]', 'insert_index', '(-999.9)'], {}), '(bf_estimated_num[bf_index], insert_index, -999.9)\n', (31457, 31507), True, 'import numpy as np\n'), ((33236, 33280), 'numpy.insert', 'np.insert', (['bf_est_num', 'insert_index', 'pol_min'], {}), '(bf_est_num, insert_index, pol_min)\n', (33245, 33280), True, 'import numpy as np\n'), ((50060, 50071), 'math.log', 'math.log', (['t'], {}), '(t)\n', (50068, 50071), False, 'import math\n')] |
import itertools
from os import path
from pdb import set_trace
import pickle
from typing import Dict, List, Tuple
from explicit import waiter, XPATH
from selenium import webdriver
import selenium
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common import action_chains
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
import traceback
import urllib.parse
import numpy.random as random
import requests
import yaml
import pandas as pd
from src.profile import AccountProfile, profile_parser, get_post_link
SAVE_FILE_NAME = 'influencer_info.csv'
COOKIES_PATH = './login.cache'
class PrivateException(Exception):
pass
with open(r'config.yml') as file:
account = yaml.full_load(file)
class InstagramBot():
def __init__(self, account):
options = Options()
# options.add_argument('--headless')
# options.add_argument('--no-sandbox')
# options.add_argument('--disable-dev-shm-usage')
options.add_argument("user-data-dir=selenium")
self.driver = webdriver.Chrome(options=options)
self.driver.implicitly_wait(5)
self.http_base = requests.Session()
self.username = account['username']
self.password = account['password']
self.info_list = []
self.visited = set()
with open(r'filter.yml') as file:
self.filter = yaml.full_load(file)
'''
Helper function
'''
def sleep(self, mu = 2, sigma = 0.5):
time.sleep(self.wait(mu, sigma))
return
def wait(self, mu = 2, sigma = 0.5):
# random wait time to avoid being detected
if sigma == 0:
return mu
else:
t = random.normal(mu, sigma,1)[0]
if t <= 0:
return 0.1
else:
return t
'''
Low level API
'''
def check_availability(self, username: str):
"""
Checking Status code, Taking number of posts, Privacy and followed by viewer
Raise Error if the Profile is private and not following by viewer
return: numbers of posts/followers/followings
"""
search = self.http_base.get(f'https://www.instagram.com/{username}/', params={'__a': 1})
search.raise_for_status()
self.sleep(25)
load_and_check = search.json()
privacy = load_and_check.get('graphql').get('user').get('is_private')
followed_by_viewer = load_and_check.get('graphql').get('user').get('followed_by_viewer')
if privacy and not followed_by_viewer:
raise PrivateException(f'[!] Account is private: {username}')
return search.json()
# def get_post_link(self, username: str) -> Tuple[List[str], List[str], List[str]]:
# '''
# Get the links of first 12 posts(I don't where where did I put this stupid hard coded number)
# that contains the detailed information of the posts. Also with the numbers of likes and comments
# of this post.
# The numbers of likes and comments will be rounded and formated in string.
# '''
# url = f'https://www.instagram.com/{username}/'
# self.driver.get(url)
# action = ActionChains(self.driver) # mouse pointer driver
# elements = self.driver.find_elements_by_xpath('//a[@href]')
# post_links = []
# n_likes = []
# n_comments = []
# for elem in elements:
# urls = elem.get_attribute('href')
# if 'p' in urls.split('/'):
# action.move_to_element(elem).perform() # move pointer to the post to get the likes and comments info
# post_links.append(urls)
# # get numbers of likes and comments
# temp_likes, temp_comments = elem.find_element_by_class_name('qn-0x').text.split('\n')
# n_likes.append(temp_likes)
# n_comments.append(temp_comments)
# return post_links, n_likes, n_comments
def get_profile(self, username, keep_post_jsons=False) -> Dict:
# Taking hrefs while scrolling down
profile_graphql = self.check_availability(username)
print(f"Analyzing account: {username}")
user_profile = profile_parser(username, profile_graphql)
self.sleep(0.5)
self.driver.execute_script('window.scrollTo(0, document.body.scrollHeight);')
self.sleep(0.5)
if keep_post_jsons:
''' TODO:
post basic infos can be directly parsed from profile_graphql, instead of doing http requests again and again
'''
# post json string is stored in another link
post_links, n_likes, n_comments = get_post_link(username)
print(f'[*] extracting {len(post_links)} posts jsons string, please wait...'.title())
user_profile.new_links = [urllib.parse.urljoin(link, '?__a=1') for link in post_links]
user_profile.post_jsons = [self.http_base.get(link.split()[0]).json() for link in user_profile.new_links]
# here you can do anything to parse the detailed info of a post
return user_profile
# def get_followers(self, username: str, max_width: int = 500) -> List[str]:
# '''
# Get a bunch of follwers of an account
# '''
# url = f'https://www.instagram.com/{username}/'
# self.driver.get(url)
# # click on "followers" on main page
# followersLink = self.driver.find_element_by_xpath("(//a[@class='-nal3 '])[2]")
# followersLink.click()
# self.sleep(1)
# # find the popup follower tab
# followersList = self.driver.find_element_by_xpath("//div[@role='dialog']")
# num = len(followersList.find_elements_by_css_selector('li'))
# actionChain = webdriver.ActionChains(self.driver)
# while (num < max_width):
# # followersList.click() # trick
# self.sleep()
# actionChain.key_down(Keys.SPACE).pause(self.wait(0.1,0.01)).key_up(Keys.SPACE).perform()
# actionChain.reset_actions()
# num = len(followersList.find_elements_by_css_selector('li'))
# followers = []
# for user in followersList.find_elements_by_css_selector('li'):
# userLink = user.find_element_by_css_selector('a').get_attribute('href')
# followers.append(userLink.split('/')[-2])
# if (len(followers) >= max_width):
# break
# return followers
def scrape_followers(self, username, max_width: int = 50):
# Load account page
self.driver.get("https://www.instagram.com/{0}/".format(username))
# Click the 'Follower(s)' link
# driver.find_element_by_partial_link_text("follower").click
self.sleep(25)
self.driver.find_element_by_xpath("(//a[@class='-nal3 '])[2]").click()
# Wait for the followers modal to load
waiter.find_element(self.driver, "//div[@role='dialog']", by=XPATH)
# allfoll = int(self.driver.find_element_by_xpath("//li[2]/a/span").text)
# At this point a Followers modal pops open. If you immediately scroll to the bottom,
# you hit a stopping point and a "See All Suggestions" link. If you fiddle with the
# model by scrolling up and down, you can force it to load additional followers for
# that person.
# Now the modal will begin loading followers every time you scroll to the bottom.
# Keep scrolling in a loop until you've hit the desired number of followers.
# In this instance, I'm using a generator to return followers one-by-one
followers = []
follower_css = "ul div li:nth-child({}) a.notranslate" # Taking advange of CSS's nth-child functionality
for group in itertools.count(start=1, step=12):
for follower_index in range(group, group + 12):
if follower_index > max_width:
return followers
followers.append(waiter.find_element(self.driver, follower_css.format(follower_index)).text)
# Instagram loads followers 12 at a time. Find the last follower element
# and scroll it into view, forcing instagram to load another 12
# Even though we just found this elem in the previous for loop, there can
# potentially be large amount of time between that call and this one,
# and the element might have gone stale. Lets just re-acquire it to avoid
# tha
last_follower = waiter.find_element(self.driver, follower_css.format(group+11))
self.driver.execute_script("arguments[0].scrollIntoView();", last_follower)
'''
High level API
'''
def sign_in(self):
if path.exists(COOKIES_PATH):
print("Loading existing cookies")
cookies = pickle.load(open(COOKIES_PATH, "rb"))
# cookies = {
# cookie['name']: cookie['value']
# for cookie in get_cookies
# }
# for cookie in get_cookies:
# self.driver.add_cookie(cookie)
else:
self.driver.get('https://www.instagram.com/accounts/login/')
try:
WebDriverWait(self.driver, 20).until(
EC.element_to_be_clickable((By.XPATH, "//input[@name='username']"))
)
except Exception as e:
traceback.print_exc()
print(e)
return
self.driver.find_element_by_xpath("//input[@name='username']").send_keys(self.username)
time.sleep(self.wait())
self.driver.find_element_by_xpath("//input[@name='password']").send_keys(self.password)
time.sleep(self.wait(mu=0.6))
self.driver.find_element_by_xpath("//input[@name='password']").send_keys(Keys.ENTER)
time.sleep(self.wait())
# Save Info or Not
try:
var_error = self.driver.find_element_by_xpath("//button[contains(.,'保存信息')]").click()
time.sleep(self.wait())
except NoSuchElementException:
pass
"""Check For Invalid Credentials"""
try:
var_error = self.driver.find_element_by_class_name('eiCW-').text
raise ValueError('[!] Invalid Credentials')
except NoSuchElementException:
pass
"""Taking cookies"""
get_cookies = self.driver.get_cookies()
cookies = {
cookie['name']: cookie['value']
for cookie in get_cookies
}
print(f"Generated new cookies and save it into {COOKIES_PATH}")
pickle.dump(cookies, open(COOKIES_PATH,"wb"))
self.http_base.cookies.update(cookies)
def dive(self, username: str, max_depth=0, max_width=500, keep_post_jsons=False, depth=0):
'''
Browse the TREE of an account (BFS)
'''
if depth > max_depth:
return
if depth == 0:
self.visited = set()
elif username in self.visited:
return
try:
user_profile = self.get_profile(username, keep_post_jsons)
self.visited.add(username)
except:
traceback.print_exc()
print(f"FAILED: got {username} profile")
COND_FOLLOWERS = user_profile.n_followers > 2000 and user_profile.n_followers < 100000
COND_LIKES = True
COND_COMMENTS = True
if COND_FOLLOWERS and COND_LIKES and COND_COMMENTS:
self.info_list.append(user_profile)
info_df = pd.DataFrame([vars(user_profile)])
# save to csv file
with open(SAVE_FILE_NAME, 'a') as f:
info_df.to_csv(f, mode='a', index=False, header=f.tell()==0)
followers = self.scrape_followers(username, max_width)
print(f"Got followers: \n{followers}")
for f in followers:
try:
self.dive(f, max_depth, max_width, keep_post_jsons=keep_post_jsons,depth = depth+1)
except PrivateException:
print(PrivateException)
except Exception as e:
print(e)
else:
print(f"BYPASS: account {username} condition not met")
if __name__ == "__main__":
# unit test
root_username='laurensoyung'
ib = InstagramBot(account)
ib.sign_in()
ib.dive(root_username, 2, 40, keep_post_jsons=False)
# ib.get_profile(root_username)
| [
"numpy.random.normal",
"yaml.full_load",
"selenium.webdriver.chrome.options.Options",
"os.path.exists",
"src.profile.get_post_link",
"requests.Session",
"selenium.webdriver.support.ui.WebDriverWait",
"selenium.webdriver.Chrome",
"explicit.waiter.find_element",
"itertools.count",
"traceback.print... | [((1006, 1026), 'yaml.full_load', 'yaml.full_load', (['file'], {}), '(file)\n', (1020, 1026), False, 'import yaml\n'), ((1101, 1110), 'selenium.webdriver.chrome.options.Options', 'Options', ([], {}), '()\n', (1108, 1110), False, 'from selenium.webdriver.chrome.options import Options\n'), ((1339, 1372), 'selenium.webdriver.Chrome', 'webdriver.Chrome', ([], {'options': 'options'}), '(options=options)\n', (1355, 1372), False, 'from selenium import webdriver\n'), ((1438, 1456), 'requests.Session', 'requests.Session', ([], {}), '()\n', (1454, 1456), False, 'import requests\n'), ((4538, 4579), 'src.profile.profile_parser', 'profile_parser', (['username', 'profile_graphql'], {}), '(username, profile_graphql)\n', (4552, 4579), False, 'from src.profile import AccountProfile, profile_parser, get_post_link\n'), ((7270, 7337), 'explicit.waiter.find_element', 'waiter.find_element', (['self.driver', '"""//div[@role=\'dialog\']"""'], {'by': 'XPATH'}), '(self.driver, "//div[@role=\'dialog\']", by=XPATH)\n', (7289, 7337), False, 'from explicit import waiter, XPATH\n'), ((8137, 8170), 'itertools.count', 'itertools.count', ([], {'start': '(1)', 'step': '(12)'}), '(start=1, step=12)\n', (8152, 8170), False, 'import itertools\n'), ((9109, 9134), 'os.path.exists', 'path.exists', (['COOKIES_PATH'], {}), '(COOKIES_PATH)\n', (9120, 9134), False, 'from os import path\n'), ((1673, 1693), 'yaml.full_load', 'yaml.full_load', (['file'], {}), '(file)\n', (1687, 1693), False, 'import yaml\n'), ((5014, 5037), 'src.profile.get_post_link', 'get_post_link', (['username'], {}), '(username)\n', (5027, 5037), False, 'from src.profile import AccountProfile, profile_parser, get_post_link\n'), ((2001, 2028), 'numpy.random.normal', 'random.normal', (['mu', 'sigma', '(1)'], {}), '(mu, sigma, 1)\n', (2014, 2028), True, 'import numpy.random as random\n'), ((11677, 11698), 'traceback.print_exc', 'traceback.print_exc', ([], {}), '()\n', (11696, 11698), False, 'import traceback\n'), ((9648, 9715), 'selenium.webdriver.support.expected_conditions.element_to_be_clickable', 'EC.element_to_be_clickable', (['(By.XPATH, "//input[@name=\'username\']")'], {}), '((By.XPATH, "//input[@name=\'username\']"))\n', (9674, 9715), True, 'from selenium.webdriver.support import expected_conditions as EC\n'), ((9785, 9806), 'traceback.print_exc', 'traceback.print_exc', ([], {}), '()\n', (9804, 9806), False, 'import traceback\n'), ((9590, 9620), 'selenium.webdriver.support.ui.WebDriverWait', 'WebDriverWait', (['self.driver', '(20)'], {}), '(self.driver, 20)\n', (9603, 9620), False, 'from selenium.webdriver.support.ui import WebDriverWait\n')] |
# Copyright 2019-2020 ETH Zurich and the DaCe authors. All rights reserved.
from __future__ import print_function
import dace
import numpy as np
N = dace.symbol('N')
@dace.program
def dot(A, B, out):
@dace.map
def product(i: _[0:N]):
a << A[i]
b << B[i]
o >> out(1, lambda x, y: x + y)
o = a * b
def test_dot():
n = 64
N.set(n)
A = dace.ndarray([N], dtype=dace.float32)
out_AA = dace.scalar(dace.float64)
A[:] = np.random.rand(n).astype(dace.float32.type)
out_AA[0] = dace.float64(0)
dot(A, A, out_AA, N=n)
diff_aa = np.linalg.norm(np.dot(A, A) - out_AA) / float(n)
print("Difference:", diff_aa)
assert diff_aa <= 1e-5
if __name__ == "__main__":
test_dot()
| [
"numpy.random.rand",
"dace.symbol",
"dace.scalar",
"numpy.dot",
"dace.ndarray",
"dace.float64"
] | [((151, 167), 'dace.symbol', 'dace.symbol', (['"""N"""'], {}), "('N')\n", (162, 167), False, 'import dace\n'), ((390, 427), 'dace.ndarray', 'dace.ndarray', (['[N]'], {'dtype': 'dace.float32'}), '([N], dtype=dace.float32)\n', (402, 427), False, 'import dace\n'), ((441, 466), 'dace.scalar', 'dace.scalar', (['dace.float64'], {}), '(dace.float64)\n', (452, 466), False, 'import dace\n'), ((538, 553), 'dace.float64', 'dace.float64', (['(0)'], {}), '(0)\n', (550, 553), False, 'import dace\n'), ((478, 495), 'numpy.random.rand', 'np.random.rand', (['n'], {}), '(n)\n', (492, 495), True, 'import numpy as np\n'), ((612, 624), 'numpy.dot', 'np.dot', (['A', 'A'], {}), '(A, A)\n', (618, 624), True, 'import numpy as np\n')] |
"""Model training/evaluation base interface module.
This module contains the interface required to train and/or evaluate a model based on different tasks. The trainers
based on this interface are instantiated in launched sessions based on configuration dictionaries.
"""
import functools
import json
import logging
import math
import os
import platform
import random
import time
from abc import abstractmethod
from copy import deepcopy
from typing import Any, AnyStr, Optional # noqa: F401
import cv2 as cv
import numpy as np
import torch
import torch.optim
import thelper.typedefs as typ # noqa: F401
import thelper.utils
logger = logging.getLogger(__name__)
class Trainer:
"""Abstract trainer interface that defines basic session i/o and setup operations.
This interface defines the general behavior of a training session which includes configuration parsing, tensorboard
setup, metrics and goal setup, and loss/optimizer setup. It also provides utilities for uploading models and tensors
on specific devices, and for saving the state of a session. This interface should be specialized for every task by
implementing the ``train_epoch`` and ``eval_epoch`` functions in a derived class. See
:class:`thelper.train.classif.ImageClassifTrainer` for an example.
The main parameters that will be parsed by this interface from a configuration dictionary are the following:
- ``epochs`` (mandatory if training): number of epochs to train for; one epoch is one iteration over all mini-batches.
- ``optimization`` (mandatory if training): sub-dictionary containing types and extra parameters required for
instantiating the loss, optimizer, and scheduler objects. See the code of each related loading function for more
information on special parameters.
- ``save_freq`` (optional, default=1): checkpoint save frequency (will save every epoch multiple of given number).
- ``save_raw`` (optional, default=True): specifies whether to save raw types or thelper objects in checkpoints.
- ``use_tbx`` (optional, default=False): defines whether to use tensorboardX writers for logging or not.
- ``device`` (optional): specifies which device to train/evaluate the model on (default=all available).
- ``metrics``: list of metrics to instantiate and update during training/evaluation; see related loading function for
more information.
- ``monitor``: specifies the name of the metric that should be monitored on the validation set for model improvement.
Example configuration file::
# ...
"trainer": {
# type of trainer to instantiate (linked to task type)
"type": "thelper.train.ImageClassifTrainer",
# train for 40 epochs
"epochs": 40,
# save every 5 epochs
"save_freq": 5,
# monitor validation accuracy and save best model based on that
"monitor": "accuracy",
# optimization parameters block
"optimization": {
# all types & params below provided by PyTorch
"loss": {
"type": "torch.nn.CrossEntropyLoss"
},
"optimizer": {
"type": "torch.optim.SGD",
"params": {
"lr": 0.1,
"momentum": 0.9,
"weight_decay": 1e-06,
"nesterov": true
}
},
"scheduler": {
"type": "torch.optim.lr_scheduler.StepLR",
"params": {
"step_size": 10,
"step_size": 0.1
}
}
},
# in this example, we use two consumers in total
# (one metric for monitoring, and one for logging)
"metrics": {
"accuracy": {
"type": "thelper.optim.Accuracy"
},
"fullreport": {
"type": "thelper.train.ClassifReport"
}
}
}
# ...
Attributes:
checkpoint_dir: session checkpoint output directory (located within the 'session directory').
config: session configuration dictionary holding all original settings, including trainer configuration.
devices: list of (cuda) device IDs to upload the model/tensors to; can be empty if only the CPU is available.
epochs: number of epochs to train the model for.
logger: used to output debug/warning/error messages to session log.
model: reference to the model being trained or used for evaluation/prediction.
monitor: name of the training/validation metric that should be monitored for model improvement.
name: name of the session, used for printing and creating log folders.
optimization_config: dictionary of optim-related parameters, parsed at training time.
output_paths: map of session output paths where training/evaluation results should be saved.
save_freq: frequency of checkpoint saves while training (i.e. save every X epochs).
save_raw: specifies whether to save raw types or thelper objects in checkpoints.
skip_eval_iter: number of evaluation iterations to skip (useful for resuming a session).
skip_tbx_histograms: flag used to skip the generation of graph histograms in tbx (useful for large models).
task: reference to the object used to specialize the model and that holds task metainformation.
tbx_histogram_freq: frequency of tbx histogram saves while training (i.e. save every X epochs).
use_tbx: defines whether to use tensorboardX writers for logging or not.
writers: map of tbx writers used to save training/evaluation events.
TODO: move static utils to their related modules
.. seealso::
| :class:`thelper.train.classif.ImageClassifTrainer`
| :class:`thelper.train.segm.ImageSegmTrainer`
| :class:`thelper.train.detect.ObjDetectTrainer`
| :class:`thelper.train.regr.RegressionTrainer`
| :func:`thelper.train.utils.create_trainer`
"""
def __init__(self,
session_name, # type: AnyStr
session_dir, # type: AnyStr
model, # type: thelper.typedefs.ModelType
task, # type: thelper.tasks.Task
loaders, # type: thelper.typedefs.MultiLoaderType
config, # type: thelper.typedefs.ConfigDict
ckptdata=None # type: Optional[thelper.typedefs.CheckpointContentType]
):
"""Receives the trainer configuration dictionary, parses it, and sets up the session."""
assert isinstance(model, (thelper.nn.Module, torch.nn.Module)), "unknown model object type"
assert isinstance(task, thelper.tasks.Task), "unknown task object type"
assert isinstance(loaders, (list, tuple, np.ndarray)) and len(loaders) == 3, "invalid loaders array"
assert isinstance(config, dict), "invalid config type"
self.task = task
self.model = model
self.config = config
# parse basic training config args
trainer_config = thelper.utils.get_key("trainer", config, msg="session config dictionary missing 'trainer' field")
os.makedirs(session_dir, exist_ok=True)
logs_dir = os.path.join(session_dir, "logs")
os.makedirs(logs_dir, exist_ok=True)
thelper.utils.save_env_list(os.path.join(logs_dir, "packages.log"))
train_logger_path = os.path.join(logs_dir, "trainer.log")
train_logger_format = logging.Formatter("[%(asctime)s - %(process)s] %(levelname)s : %(message)s")
train_logger_fh = logging.FileHandler(train_logger_path)
train_logger_fh.setFormatter(train_logger_format)
self.logger = thelper.utils.get_class_logger()
self.logger.addHandler(train_logger_fh)
self.logger.info(f"created training log for session '{session_name}'")
self.logger.debug(f"session directory = {os.path.abspath(session_dir)}")
self.logger.debug(f"logs directory = {os.path.abspath(logs_dir)}")
logstamp = thelper.utils.get_log_stamp()
repover = thelper.__version__ + ":" + thelper.utils.get_git_stamp()
self.logger.debug(f"logstamp = {logstamp}")
self.logger.debug(f"version = {repover}")
self.name = session_name
self.epochs = 1
self.save_freq = int(thelper.utils.get_key_def("save_freq", trainer_config, 1))
assert self.save_freq >= 1, "checkpoint save frequency should be strictly positive integer"
self.save_raw = thelper.utils.str2bool(thelper.utils.get_key_def("save_raw", trainer_config, True))
self.checkpoint_dir = os.path.join(session_dir, "checkpoints")
os.makedirs(self.checkpoint_dir, exist_ok=True)
output_root_dir = thelper.utils.get_key_def("output_dir", trainer_config)
if not output_root_dir:
# append session name for cleaner TBX folder merging
output_root_dir = os.path.join(session_dir, "output", self.name)
assert isinstance(output_root_dir, str) and len(output_root_dir), "invalid output directory path"
self.logger.debug(f"output directory = {os.path.abspath(output_root_dir)}")
os.makedirs(output_root_dir, exist_ok=True)
unique_output_dir = thelper.utils.get_key_def("unique_output_dir", trainer_config, True)
assert isinstance(unique_output_dir, bool), "invalid unique_output_dir flag (should be bool)"
self.logger.debug(f"output subdirectories {'will' if unique_output_dir else 'will not'} have unique names")
devices_str = thelper.utils.get_key_def(["device", "devices", "train_device"], trainer_config, None)
self.devices = self._load_devices(devices_str)
self.skip_eval_iter = thelper.utils.get_key_def("skip_eval_iter", trainer_config, 0)
# parse and prepare tbx stuff
self.use_tbx = thelper.utils.str2bool(thelper.utils.get_key_def("use_tbx", trainer_config, False))
if self.use_tbx:
import tensorboardX
self.tbx = tensorboardX
self.logger.debug(f"tensorboard init : tensorboard --logdir {output_root_dir} --port <your_port>")
self.skip_tbx_histograms = thelper.utils.str2bool(
thelper.utils.get_key_def("skip_tbx_histograms", trainer_config, False))
self.tbx_histogram_freq = int(thelper.utils.get_key_def("tbx_histogram_freq", trainer_config, 1))
assert self.tbx_histogram_freq >= 1, "histogram output frequency should be strictly positive integer"
timestr = time.strftime("%Y%m%d-%H%M%S")
self.writers, self.output_paths = {}, {}
for cname, loader in zip(["train", "valid", "test"], loaders):
if loader:
folder_name = f"{cname}-{str(platform.node())}-{timestr}" if unique_output_dir else cname
self.output_paths[cname] = os.path.join(output_root_dir, folder_name)
self.logger.debug(f"output {cname} directory = {os.path.abspath(self.output_paths[cname])}")
else:
self.output_paths[cname] = None
self.writers[cname] = None # will be instantiated only when needed based on above path
# split loaders
train_loader, valid_loader, test_loader = loaders
assert (train_loader or valid_loader or test_loader), "must provide at least one loader with available data"
self.train_loader, self.valid_loader, self.test_loader = train_loader, valid_loader, test_loader
if train_loader:
assert "epochs" in trainer_config and int(trainer_config["epochs"]) > 0, "bad trainer config epoch count"
self.epochs = int(trainer_config["epochs"])
# loading optimization stuff later since model needs to be on correct device
self.optimization_config = thelper.utils.get_key_def("optimization", trainer_config, {})
else:
self.logger.info("no training data provided, will run a single epoch on valid/test data")
# parse metrics
assert "metrics" not in trainer_config or "base_metrics" not in trainer_config, \
"trainer config should have only one of 'metrics' and 'base_metrics'"
metrics = {}
if "metrics" in trainer_config:
self.logger.debug("loading metrics defined in trainer config")
metrics = thelper.train.create_consumers(trainer_config["metrics"])
elif "base_metrics" in trainer_config:
self.logger.debug("loading base metrics defined in trainer config")
metrics = thelper.train.create_consumers(trainer_config["base_metrics"])
self.train_metrics, self.valid_metrics, self.test_metrics = \
deepcopy(metrics), deepcopy(metrics), deepcopy(metrics)
for skey, sval in zip(["train_metrics", "valid_metrics", "test_metrics"],
[self.train_metrics, self.valid_metrics, self.test_metrics]):
if skey in trainer_config:
new_metrics = thelper.train.create_consumers(trainer_config[skey])
for mkey, mval in new_metrics.items():
assert mkey not in sval, f"metric name '{mkey}' duplicated in set '{skey}'"
sval[mkey] = mval
for mkey, mval in sval.items():
self.logger.info(f"parsed metric '{mkey}': {str(mval)}")
# check for monitored metric
self.monitor, self.monitor_best, self.monitor_best_epoch = None, None, -1
if "monitor" in trainer_config and trainer_config["monitor"]:
self.monitor = trainer_config["monitor"]
assert any([self.monitor in mset for mset in [self.train_metrics, self.valid_metrics]]), \
f"metric with name '{self.monitor}' could not be found in training/validation metrics"
metric = self.valid_metrics[self.monitor] if self.monitor in self.valid_metrics \
else self.train_metrics[self.monitor] # makes no sense to search for it in test metrics...
assert isinstance(metric, thelper.optim.metrics.Metric), \
"monitoring target should be an actual 'metric' class that returns a scalar!"
assert metric.goal in [thelper.optim.Metric.minimize, thelper.optim.Metric.maximize], \
"monitored metric does not return proper optimization goal"
self.monitor_goal = metric.goal
self.monitor_best = thelper.optim.Metric.minimize if metric.goal == thelper.optim.Metric.maximize \
else thelper.optim.Metric.maximize
self.logger.debug(f"will monitor metric '{self.monitor}' for best state checkpointing/early stopping")
# parse checkpoint data from previous run (if available)
ckptdata = {} if ckptdata is None else ckptdata
self.monitor_best = thelper.utils.get_key_def("monitor_best", ckptdata, self.monitor_best)
self.monitor_best_epoch = thelper.utils.get_key_def("monitor_best_epoch", ckptdata, -1)
self.optimizer_state = thelper.utils.get_key_def("optimizer", ckptdata, None)
self.scheduler_state = thelper.utils.get_key_def("scheduler", ckptdata, None)
self.current_iter = thelper.utils.get_key_def("iter", ckptdata, 0)
self.current_epoch = thelper.utils.get_key_def("epoch", ckptdata, 0)
self.outputs = thelper.utils.get_key_def("outputs", ckptdata, {})
# parse callbacks (see ``thelper.typedefs.IterCallbackType`` and ``thelper.typedefs.IterCallbackParams`` definitions)
for cname, mset in zip(["train", "valid", "test"], [self.train_metrics, self.valid_metrics, self.test_metrics]):
# parse user (custom) callback
# TODO: rewrite so that lists of callbacks can be supported @@@@
user_callback_keys = [f"{cname}_iter_callback", f"{cname}_callback", "callback"]
user_callback = thelper.utils.get_key_def(user_callback_keys, trainer_config) # type: Optional[typ.IterCallbackType]
user_callback_kwargs_keys = [f"{cname}_iter_callback_kwargs", f"{cname}_callback_kwargs", "callback_kwargs"]
user_callback_kwargs = thelper.utils.get_key_def(user_callback_kwargs_keys, trainer_config, {})
if user_callback is not None:
assert "user_callback" not in mset, "metrics set already had a 'user_callback' in it"
mset["user_callback"] = thelper.train.utils.PredictionCallback(user_callback, user_callback_kwargs)
# parse display callback
display_flag_keys = [f"display_{cname}_preds", f"display_{cname}_predictions", f"display_{cname}",
"display_preds", "display_predictions", "display"]
display_flag = thelper.utils.get_key_def(display_flag_keys, trainer_config, False)
display_kwargs_keys = [f"display_{cname}_preds_kwargs", f"display_{cname}_predictions_kwargs",
f"display_{cname}_kwargs", "display_preds_kwargs", "display_predictions_kwargs",
"display_kwargs"]
display_kwargs = thelper.utils.get_key_def(display_kwargs_keys, trainer_config, {})
if display_flag:
assert "display_callback" not in mset, "metrics set already had a 'display_callback' in it"
display_kwargs["output_path"] = self.output_paths[cname]
display_kwargs["save"] = thelper.utils.get_key_def(["save", "save_draw", "save_draw_output"],
display_kwargs, False)
mset["display_callback"] = thelper.train.utils.PredictionCallback("thelper.train.utils._draw_wrapper",
display_kwargs)
# add logging callback (will print to console and update iter metric evals)
logging_kwargs = thelper.utils.get_key_def("logging_kwargs", trainer_config, {})
logging_kwargs["set_name"] = cname
logging_kwargs["writers"] = self.writers # pass by ref, will be filled later
display_kwargs["output_path"] = self.output_paths[cname]
mset["logging_callback"] = thelper.train.utils.PredictionCallback(self._iter_logger_callback,
logging_kwargs)
def _init_writer(self, writer, path):
if self.use_tbx and not writer:
writer = self.tbx.SummaryWriter(path, comment=self.name)
writer.add_text("config", json.dumps(self.config, indent=4, sort_keys=False, default=lambda x: str(x)))
thelper.utils.save_config(self.config, os.path.join(path, "config.json"))
return writer
@staticmethod
def _set_rng_state(seeds, epoch):
if "torch" in seeds:
torch.manual_seed(seeds["torch"] + epoch)
torch.cuda.manual_seed_all(seeds["torch"] + epoch)
if "numpy" in seeds:
np.random.seed(seeds["numpy"] + epoch)
if "random" in seeds:
random.seed(seeds["random"] + epoch)
@staticmethod
def _upload_model(model, dev):
"""Uploads a model to a specific device, wrapping it in ``torch.nn.DataParallel`` if needed."""
if isinstance(dev, list):
if len(dev) == 0:
return model.cpu()
elif len(dev) == 1:
return model.cuda(dev[0])
else:
return torch.nn.DataParallel(model, device_ids=dev).cuda(dev[0])
else:
return model.to(dev)
@staticmethod
def _move_tensor(tensor, dev, detach=False):
"""Uploads a tensor to a specific device."""
if isinstance(tensor, (list, tuple)):
return [Trainer._move_tensor(t, dev) for t in tensor]
if isinstance(tensor, dict):
return {k: Trainer._move_tensor(t, dev) for k, t in tensor.items()}
if not isinstance(tensor, torch.Tensor):
return tensor # ignored (cannot upload)
if isinstance(dev, list):
if len(dev) == 0:
out = tensor.cpu()
else:
# no reason to have multiple devices if not cuda-enabled GPUs
out = tensor.cuda(dev[0])
else:
out = tensor.to(dev)
return out.detach() if detach else out
def _load_optimization(self, model, dev):
"""Instantiates and returns all optimization objects required for training the model."""
config = self.optimization_config # for abbrev only
assert isinstance(config, dict), "optimization config should be provided as a dictionary"
assert self.train_loader is not None and self.train_loader, "optimization only useful with training data"
loss = None # can be omitted if using custom trainer
if "loss" in config:
uploader = functools.partial(self._move_tensor, dev=dev)
loss = thelper.optim.create_loss_fn(config["loss"], model, self.train_loader, uploader)
optimizer = None # can be omitted if using custom trainer
if "optimizer" in config:
optimizer = thelper.optim.create_optimizer(config["optimizer"], model)
scheduler, scheduler_step_metric = None, None
if "scheduler" in config and config["scheduler"]: # can always be omitted
scheduler, scheduler_step_metric = thelper.optim.create_scheduler(config["scheduler"], optimizer)
return loss, optimizer, scheduler, scheduler_step_metric
def _load_devices(self, devices_str=None):
"""Validates and returns the list of CUDA devices available on the system."""
self.logger.debug("loading available devices")
if devices_str is not None:
devices = []
available_cuda_devices = None
assert isinstance(devices_str, (str, list)), "unexpected device string type"
if isinstance(devices_str, str):
assert devices_str, "cannot specify empty device name, use 'None' to auto-detect"
devices_str = devices_str.split(",")
elif isinstance(devices_str, list):
assert devices_str, "cannot specify empty device list, use 'None' to auto-detect"
assert all([isinstance(dev_str, str) for dev_str in devices_str]), "unexpected type in dev list"
for dev_idx, dev_str in enumerate(devices_str):
assert "cuda" in dev_str or dev_str == "cpu", \
f"unknown device type '{dev_str}' (expecting 'cpu' or 'cuda:X')"
if dev_str == "cpu":
assert len(devices_str) == 1, "cannot combine cpu with other devices"
return []
if dev_str == "cuda" or dev_str == "cuda:all":
assert len(devices_str) == 1, "must specify device index (e.g. 'cuda:0') if combining devices"
if available_cuda_devices is None:
available_cuda_devices = thelper.utils.get_available_cuda_devices()
assert available_cuda_devices, "could not find any available cuda devices"
return available_cuda_devices
assert "cuda:" in dev_str, "expecting cuda device format to be 'cuda:X' (where X is device index)"
cuda_dev_idx = int(dev_str.rsplit(":", 1)[-1])
assert thelper.utils.test_cuda_device_availability(cuda_dev_idx), f"cuda device '{dev_str}' unavailable"
devices.append(cuda_dev_idx)
return devices
else:
return thelper.utils.get_available_cuda_devices()
def train(self):
"""Starts the training process.
This function will train the model until the required number of epochs is reached, and then evaluate it
on the test data. The setup of loggers, tensorboard writers is done here, so is model improvement tracking
via monitored metrics. However, the code related to loss computation and back propagation is implemented in
a derived class via :func:`thelper.train.base.Trainer.train_epoch`.
"""
assert self.train_loader, "missing training data, invalid loader!"
assert not isinstance(self.model, torch.jit.ScriptModule), "current impl cannot train model traces" # TODO
self.logger.debug(f"uploading model to '{str(self.devices)}'...")
model = self._upload_model(self.model, self.devices)
loss, optimizer, scheduler, scheduler_step_metric = self._load_optimization(model, self.devices)
if optimizer is not None and self.optimizer_state is not None:
optimizer.load_state_dict(self.optimizer_state)
self.optimizer_state = None
if scheduler is not None and self.scheduler_state is not None:
scheduler.load_state_dict(self.scheduler_state)
self.scheduler_state = None
self.logger.debug(f"loss: {str(loss)}")
self.logger.debug(f"optimizer: {str(optimizer)}")
latest_loss = math.inf
while self.current_epoch < self.epochs:
self.writers["train"] = self._init_writer(self.writers["train"], self.output_paths["train"])
self.logger.info(f"at epoch#{self.current_epoch} for '{self.name}' (dev={str(self.devices)})")
if scheduler:
if scheduler_step_metric:
if scheduler_step_metric == "loss":
# todo: use validation loss instead? more stable?
scheduler.step(metrics=latest_loss, epoch=self.current_epoch)
else:
metric = None
if self.valid_loader and scheduler_step_metric in self.valid_metrics:
metric = self.valid_metrics[scheduler_step_metric]
elif self.train_loader and scheduler_step_metric in self.train_metrics:
metric = self.train_metrics[scheduler_step_metric]
# note: makes no sense to look for it in test metrics
assert metric is not None, f"cannot find metric '{scheduler_step_metric}' for scheduler step"
assert isinstance(metric, thelper.optim.metrics.Metric), "monitoring consumer must be metric"
metric_anti_goal = thelper.optim.Metric.maximize \
if metric.goal == thelper.optim.Metric.minimize \
else thelper.optim.Metric.minimize
metric_val = metric.eval() if self.current_epoch > 0 else metric_anti_goal
scheduler.step(metrics=metric_val, epoch=self.current_epoch)
else:
scheduler.step(epoch=self.current_epoch)
if self.writers["train"] and not self.skip_tbx_histograms and \
(self.current_epoch % self.tbx_histogram_freq) == 0:
for pname, param in model.named_parameters():
if "bn" in pname:
continue # skip batch norm modules
pname = pname.replace(".", "/") # for proper grouping
if pname.startswith("module/"):
pname = pname.replace("module/", "", 1)
if pname.startswith("model/"):
pname = pname.replace("model/", "", 1)
data = param.data.cpu().numpy().flatten()
self.writers["train"].add_histogram(pname, data, self.current_epoch)
if param.grad is not None:
grad = param.grad.data.cpu().numpy().flatten()
self.writers["train"].add_histogram(pname + '/grad', grad, self.current_epoch)
self.logger.debug(f"learning rate at {thelper.optim.get_lr(optimizer):.8f}")
self._set_rng_state(self.train_loader.seeds, self.current_epoch)
model.train()
if hasattr(self.train_loader, "set_epoch") and callable(self.train_loader.set_epoch):
self.train_loader.set_epoch(self.current_epoch)
latest_loss = self.train_epoch(model, self.current_epoch, self.devices,
loss, optimizer, self.train_loader, self.train_metrics)
self._write_epoch_output(self.current_epoch, self.train_metrics,
self.writers["train"], self.output_paths["train"],
loss=latest_loss, optimizer=optimizer)
train_metric_vals = {metric_name: metric.eval() for metric_name, metric in self.train_metrics.items()
if isinstance(metric, thelper.optim.metrics.Metric)}
result = {"train/loss": latest_loss, "train/metrics": train_metric_vals}
monitor_type_key = "train/metrics" # if we cannot run validation, will monitor progression on training metrics
if self.valid_loader:
self._set_rng_state(self.valid_loader.seeds, self.current_epoch)
model.eval()
self.writers["valid"] = self._init_writer(self.writers["valid"], self.output_paths["valid"])
for metric in self.valid_metrics.values():
metric.reset() # force reset here, we always evaluate from a clean state
if hasattr(self.valid_loader, "set_epoch") and callable(self.valid_loader.set_epoch):
self.valid_loader.set_epoch(self.current_epoch)
self.eval_epoch(model, self.current_epoch, self.devices, self.valid_loader, self.valid_metrics)
self._write_epoch_output(self.current_epoch, self.valid_metrics,
self.writers["valid"], self.output_paths["valid"])
valid_metric_vals = {metric_name: metric.eval() for metric_name, metric in self.valid_metrics.items()
if isinstance(metric, thelper.optim.metrics.Metric)}
result = {**result, "valid/metrics": valid_metric_vals}
monitor_type_key = "valid/metrics" # since validation is available, use that to monitor progression
new_best = False
monitor_val = None
for key, value in result.items():
if key == monitor_type_key and self.monitor is not None:
assert self.monitor in value, f"not monitoring required variable '{self.monitor}' in metrics"
monitor_val = value[self.monitor]
if (self.monitor_goal == thelper.optim.Metric.minimize and monitor_val < self.monitor_best) or \
(self.monitor_goal == thelper.optim.Metric.maximize and monitor_val > self.monitor_best):
self.monitor_best = monitor_val
self.monitor_best_epoch = self.current_epoch
new_best = True
if not isinstance(value, dict):
self.logger.debug(f" epoch#{self.current_epoch} result => {str(key)}: {value}")
else:
for subkey, subvalue in value.items():
self.logger.debug(f" epoch#{self.current_epoch} result => {str(key)}:{str(subkey)}: {subvalue}")
if self.monitor is not None:
assert monitor_val is not None, f"training/validation did not evaluate required metric '{self.monitor}'"
if new_best:
best_str = "(new best value)"
else:
best_str = f"(previous best = {self.monitor_best} @ epoch = {self.monitor_best_epoch})"
self.logger.info(f"epoch {self.current_epoch}, monitored {self.monitor} = {monitor_val} {best_str}")
self.outputs[self.current_epoch] = result
if new_best or (self.current_epoch % self.save_freq) == 0:
self.logger.info(f"saving checkpoint @ epoch#{self.current_epoch}")
self._save(self.current_epoch, self.current_iter, optimizer, scheduler, save_best=new_best)
self.current_epoch += 1
self.logger.info(f"training for session '{self.name}' done")
return self.outputs
def eval(self):
"""Starts the evaluation process.
This function will evaluate the model using the test data (or the validation data, if no test data is available),
and return the results. Note that the code related to the forwarding of samples inside the model itself is implemented
in a derived class via :func:`thelper.train.base.Trainer.eval_epoch`.
"""
assert self.valid_loader or self.test_loader, "missing validation/test data, invalid loaders!"
self.logger.debug(f"uploading model to '{str(self.devices)}'...")
model = self._upload_model(self.model, self.devices)
result = {}
output_group = None, None
if self.test_loader:
self._set_rng_state(self.test_loader.seeds, self.current_epoch)
model.eval()
self.writers["test"] = self._init_writer(self.writers["test"], self.output_paths["test"])
for metric in self.test_metrics.values():
metric.reset() # force reset here, we always evaluate from a clean state
if hasattr(self.test_loader, "set_epoch") and callable(self.test_loader.set_epoch):
self.test_loader.set_epoch(self.current_epoch)
self.eval_epoch(model, self.current_epoch, self.devices, self.test_loader, self.test_metrics)
self._write_epoch_output(self.current_epoch, self.test_metrics,
self.writers["test"], self.output_paths["test"], use_suffix=False)
test_metric_vals = {metric_name: metric.eval() for metric_name, metric in self.test_metrics.items()
if isinstance(metric, thelper.optim.metrics.Metric)}
result = {**result, **test_metric_vals}
output_group = "test/metrics"
elif self.valid_loader:
self._set_rng_state(self.valid_loader.seeds, self.current_epoch)
model.eval()
self.writers["valid"] = self._init_writer(self.writers["valid"], self.output_paths["valid"])
for metric in self.valid_metrics.values():
metric.reset() # force reset here, we always evaluate from a clean state
if hasattr(self.valid_loader, "set_epoch") and callable(self.valid_loader.set_epoch):
self.valid_loader.set_epoch(self.current_epoch)
self.eval_epoch(model, self.current_epoch, self.devices, self.valid_loader, self.valid_metrics)
self._write_epoch_output(self.current_epoch, self.valid_metrics,
self.writers["valid"], self.output_paths["valid"], use_suffix=False)
valid_metric_vals = {metric_name: metric.eval() for metric_name, metric in self.valid_metrics.items()
if isinstance(metric, thelper.optim.metrics.Metric)}
result = {**result, **valid_metric_vals}
output_group = "valid/metrics"
for key, value in result.items():
if not isinstance(value, dict):
self.logger.debug(f" final result => {str(key)}: {value}")
else:
for subkey, subvalue in value.items():
self.logger.debug(f" final result => {str(key)}:{str(subkey)}: {subvalue}")
if self.current_epoch not in self.outputs:
self.outputs[self.current_epoch] = {}
self.outputs[self.current_epoch][output_group] = result
self.logger.info(f"evaluation for session '{self.name}' done")
return self.outputs
@abstractmethod
def train_epoch(self, model, epoch, dev, loss, optimizer, loader, metrics):
"""Trains the model for a single epoch using the provided objects.
Args:
model: the model to train that is already uploaded to the target device(s).
epoch: the epoch index we are training for (0-based).
dev: the target device that tensors should be uploaded to.
loss: the loss function used to evaluate model fidelity.
optimizer: the optimizer used for back propagation.
loader: the data loader used to get transformed training samples.
metrics: the dictionary of metrics/consumers to update every iteration.
"""
raise NotImplementedError
@abstractmethod
def eval_epoch(self, model, epoch, dev, loader, metrics):
"""Evaluates the model using the provided objects.
Args:
model: the model to evaluate that is already uploaded to the target device(s).
epoch: the epoch index we are training for (0-based).
dev: the target device that tensors should be uploaded to.
loader: the data loader used to get transformed valid/test samples.
metrics: the dictionary of metrics/consumers to update every iteration.
"""
raise NotImplementedError
def _iter_logger_callback(self, # see `thelper.typedefs.IterCallbackParams` for more info
task, # type: thelper.tasks.utils.Task
input, # type: thelper.typedefs.InputType
pred, # type: thelper.typedefs.AnyPredictionType
target, # type: thelper.typedefs.AnyTargetType
sample, # type: thelper.typedefs.SampleType
loss, # type: Optional[float]
iter_idx, # type: int
max_iters, # type: int
epoch_idx, # type: int
max_epochs, # type: int
**kwargs, # type: Any
): # type: (...) -> None
"""Receives callback data for logging loss/monitored metric values each training/eval iteration."""
set_name = thelper.utils.get_key("set_name", kwargs, "missing set name in iter logger args")
assert set_name in ["train", "valid", "test"], "unrecognized iter logger set name"
metrics = self.train_metrics if set_name == "train" else self.valid_metrics if set_name == "valid" \
else self.test_metrics
writers = thelper.utils.get_key("writers", kwargs, "missing writers dict in iter logger args")
assert set_name in writers, "expected set name writer match in kwargs"
writer = writers[set_name]
monitor_val = None
monitor_str = ""
if self.monitor is not None and self.monitor in metrics:
assert isinstance(metrics[self.monitor], thelper.optim.metrics.Metric), "unexpected metric type"
if metrics[self.monitor].live_eval:
monitor_val = metrics[self.monitor].eval()
monitor_str = f" {self.monitor}: {monitor_val:.2f}"
loss_str = ""
if loss is not None:
loss_str = f" loss: {loss:.6f}"
assert self.current_epoch == epoch_idx, "something's messed up"
self.logger.info(
f"{set_name} epoch#{epoch_idx} (iter#{self.current_iter})" +
f" batch: {iter_idx + 1}/{max_iters} ({((iter_idx + 1) / max_iters) * 100.0:.0f}%)" +
f"{loss_str}{monitor_str}"
)
if writer:
if loss is not None:
writer.add_scalar("iter/loss", loss, self.current_iter)
for metric_name, metric in metrics.items():
if isinstance(metric, thelper.optim.metrics.Metric):
if metric_name == self.monitor and monitor_val is not None:
writer.add_scalar(f"iter/{self.monitor}", monitor_val, self.current_iter)
elif metric.live_eval:
# if live eval is not true, metric might be too heavy to compute at each iteration
writer.add_scalar(f"iter/{metric_name}", metric.eval(), self.current_iter)
if set_name == "train":
self.current_iter += 1
def _write_epoch_output(self, epoch, metrics, tbx_writer, output_path, loss=None, optimizer=None, use_suffix=True):
"""Writes the cumulative evaluation result of all metrics using a specific writer."""
self.logger.debug(f"writing epoch metrics to {os.path.abspath(output_path)}")
if not os.path.exists(output_path):
os.makedirs(output_path)
if tbx_writer is not None and loss is not None and optimizer is not None:
tbx_writer.add_scalar("epoch/loss", loss, epoch)
tbx_writer.add_scalar("epoch/lr", thelper.optim.get_lr(optimizer), epoch)
for metric_name, metric in metrics.items():
if isinstance(metric, thelper.optim.metrics.Metric) and tbx_writer is not None:
tbx_writer.add_scalar(f"epoch/{metric_name}", metric.eval(), epoch)
if hasattr(metric, "render") and callable(metric.render):
img = metric.render()
if img is not None:
if tbx_writer is not None:
tbx_writer.add_image(metric_name, img, epoch, dataformats="HWC")
raw_filename = f"{metric_name}{f'-{epoch:04d}' if use_suffix else ''}.png"
raw_filepath = os.path.join(output_path, raw_filename)
self.logger.debug(f"writing metric render output to {os.path.abspath(raw_filepath)}")
cv.imwrite(raw_filepath, img[..., [2, 1, 0]])
txt = metric.report() if hasattr(metric, "report") and callable(metric.report) else None
ext = getattr(metric, "ext", "txt")
if not txt and isinstance(metric, thelper.optim.metrics.Metric):
eval_res = metric.eval()
if eval_res is not None:
if isinstance(eval_res, float):
txt = f"{eval_res:.4f}" # make sure we always have decent precision
else:
txt = str(eval_res)
if txt:
raw_filename = f"{metric_name}{f'-{epoch:04d}' if use_suffix else ''}.{ext}"
raw_filepath = os.path.join(output_path, raw_filename)
self.logger.debug(f"writing metric text output to '{os.path.abspath(raw_filepath)}'")
with open(raw_filepath, "w") as fd:
fd.write(txt)
def _save(self, epoch, iter, optimizer, scheduler, save_best=False):
"""Saves a session checkpoint containing all the information required to resume training."""
# logically, this should only be called during training (i.e. with a valid optimizer)
log_stamp = thelper.utils.get_log_stamp()
# the saved state below should be kept compatible with the one in thelper.cli.export_model
curr_state = {
"name": self.name,
"epoch": epoch,
"iter": iter,
"source": log_stamp,
"git_sha1": thelper.utils.get_git_stamp(),
"version": thelper.__version__,
"task": str(self.task) if self.save_raw else self.task,
"outputs": self.outputs,
# we save model type/params here in case those are not in the current config
"model": self.model.state_dict() if self.save_raw else self.model,
"model_type": self.model.get_name(),
"model_params": self.model.config if self.model.config else {},
"optimizer": optimizer.state_dict() if optimizer is not None else None,
"scheduler": scheduler.state_dict() if (scheduler is not None and
hasattr(scheduler, "state_dict")) else None,
"monitor_best": self.monitor_best,
"monitor_best_epoch": self.monitor_best_epoch,
"config": self.config # note: this is the global app config
}
filename = f"ckpt.{epoch:04d}.{log_stamp}.pth"
filename = os.path.join(self.checkpoint_dir, filename)
self.logger.debug(f"writing checkpoint to {os.path.abspath(filename)}")
torch.save(curr_state, filename)
if save_best:
filename_best = os.path.join(self.checkpoint_dir, "ckpt.best.pth")
self.logger.debug(f"writing checkpoint to {os.path.abspath(filename_best)}")
torch.save(curr_state, filename_best)
| [
"logging.getLogger",
"torch.manual_seed",
"torch.cuda.manual_seed_all",
"os.path.exists",
"cv2.imwrite",
"platform.node",
"os.makedirs",
"logging.Formatter",
"time.strftime",
"os.path.join",
"torch.nn.DataParallel",
"random.seed",
"logging.FileHandler",
"numpy.random.seed",
"torch.save",... | [((638, 665), 'logging.getLogger', 'logging.getLogger', (['__name__'], {}), '(__name__)\n', (655, 665), False, 'import logging\n'), ((7448, 7487), 'os.makedirs', 'os.makedirs', (['session_dir'], {'exist_ok': '(True)'}), '(session_dir, exist_ok=True)\n', (7459, 7487), False, 'import os\n'), ((7507, 7540), 'os.path.join', 'os.path.join', (['session_dir', '"""logs"""'], {}), "(session_dir, 'logs')\n", (7519, 7540), False, 'import os\n'), ((7549, 7585), 'os.makedirs', 'os.makedirs', (['logs_dir'], {'exist_ok': '(True)'}), '(logs_dir, exist_ok=True)\n', (7560, 7585), False, 'import os\n'), ((7690, 7727), 'os.path.join', 'os.path.join', (['logs_dir', '"""trainer.log"""'], {}), "(logs_dir, 'trainer.log')\n", (7702, 7727), False, 'import os\n'), ((7758, 7834), 'logging.Formatter', 'logging.Formatter', (['"""[%(asctime)s - %(process)s] %(levelname)s : %(message)s"""'], {}), "('[%(asctime)s - %(process)s] %(levelname)s : %(message)s')\n", (7775, 7834), False, 'import logging\n'), ((7861, 7899), 'logging.FileHandler', 'logging.FileHandler', (['train_logger_path'], {}), '(train_logger_path)\n', (7880, 7899), False, 'import logging\n'), ((8906, 8946), 'os.path.join', 'os.path.join', (['session_dir', '"""checkpoints"""'], {}), "(session_dir, 'checkpoints')\n", (8918, 8946), False, 'import os\n'), ((8955, 9002), 'os.makedirs', 'os.makedirs', (['self.checkpoint_dir'], {'exist_ok': '(True)'}), '(self.checkpoint_dir, exist_ok=True)\n', (8966, 9002), False, 'import os\n'), ((9457, 9500), 'os.makedirs', 'os.makedirs', (['output_root_dir'], {'exist_ok': '(True)'}), '(output_root_dir, exist_ok=True)\n', (9468, 9500), False, 'import os\n'), ((10801, 10831), 'time.strftime', 'time.strftime', (['"""%Y%m%d-%H%M%S"""'], {}), "('%Y%m%d-%H%M%S')\n", (10814, 10831), False, 'import time\n'), ((44528, 44571), 'os.path.join', 'os.path.join', (['self.checkpoint_dir', 'filename'], {}), '(self.checkpoint_dir, filename)\n', (44540, 44571), False, 'import os\n'), ((44660, 44692), 'torch.save', 'torch.save', (['curr_state', 'filename'], {}), '(curr_state, filename)\n', (44670, 44692), False, 'import torch\n'), ((7622, 7660), 'os.path.join', 'os.path.join', (['logs_dir', '"""packages.log"""'], {}), "(logs_dir, 'packages.log')\n", (7634, 7660), False, 'import os\n'), ((9212, 9258), 'os.path.join', 'os.path.join', (['session_dir', '"""output"""', 'self.name'], {}), "(session_dir, 'output', self.name)\n", (9224, 9258), False, 'import os\n'), ((12959, 12976), 'copy.deepcopy', 'deepcopy', (['metrics'], {}), '(metrics)\n', (12967, 12976), False, 'from copy import deepcopy\n'), ((12978, 12995), 'copy.deepcopy', 'deepcopy', (['metrics'], {}), '(metrics)\n', (12986, 12995), False, 'from copy import deepcopy\n'), ((12997, 13014), 'copy.deepcopy', 'deepcopy', (['metrics'], {}), '(metrics)\n', (13005, 13014), False, 'from copy import deepcopy\n'), ((19121, 19162), 'torch.manual_seed', 'torch.manual_seed', (["(seeds['torch'] + epoch)"], {}), "(seeds['torch'] + epoch)\n", (19138, 19162), False, 'import torch\n'), ((19175, 19225), 'torch.cuda.manual_seed_all', 'torch.cuda.manual_seed_all', (["(seeds['torch'] + epoch)"], {}), "(seeds['torch'] + epoch)\n", (19201, 19225), False, 'import torch\n'), ((19267, 19305), 'numpy.random.seed', 'np.random.seed', (["(seeds['numpy'] + epoch)"], {}), "(seeds['numpy'] + epoch)\n", (19281, 19305), True, 'import numpy as np\n'), ((19348, 19384), 'random.seed', 'random.seed', (["(seeds['random'] + epoch)"], {}), "(seeds['random'] + epoch)\n", (19359, 19384), False, 'import random\n'), ((21176, 21221), 'functools.partial', 'functools.partial', (['self._move_tensor'], {'dev': 'dev'}), '(self._move_tensor, dev=dev)\n', (21193, 21221), False, 'import functools\n'), ((40910, 40937), 'os.path.exists', 'os.path.exists', (['output_path'], {}), '(output_path)\n', (40924, 40937), False, 'import os\n'), ((40951, 40975), 'os.makedirs', 'os.makedirs', (['output_path'], {}), '(output_path)\n', (40962, 40975), False, 'import os\n'), ((44743, 44793), 'os.path.join', 'os.path.join', (['self.checkpoint_dir', '"""ckpt.best.pth"""'], {}), "(self.checkpoint_dir, 'ckpt.best.pth')\n", (44755, 44793), False, 'import os\n'), ((44895, 44932), 'torch.save', 'torch.save', (['curr_state', 'filename_best'], {}), '(curr_state, filename_best)\n', (44905, 44932), False, 'import torch\n'), ((11124, 11166), 'os.path.join', 'os.path.join', (['output_root_dir', 'folder_name'], {}), '(output_root_dir, folder_name)\n', (11136, 11166), False, 'import os\n'), ((18966, 18999), 'os.path.join', 'os.path.join', (['path', '"""config.json"""'], {}), "(path, 'config.json')\n", (18978, 18999), False, 'import os\n'), ((42722, 42761), 'os.path.join', 'os.path.join', (['output_path', 'raw_filename'], {}), '(output_path, raw_filename)\n', (42734, 42761), False, 'import os\n'), ((8189, 8217), 'os.path.abspath', 'os.path.abspath', (['session_dir'], {}), '(session_dir)\n', (8204, 8217), False, 'import os\n'), ((8267, 8292), 'os.path.abspath', 'os.path.abspath', (['logs_dir'], {}), '(logs_dir)\n', (8282, 8292), False, 'import os\n'), ((9413, 9445), 'os.path.abspath', 'os.path.abspath', (['output_root_dir'], {}), '(output_root_dir)\n', (9428, 9445), False, 'import os\n'), ((40863, 40891), 'os.path.abspath', 'os.path.abspath', (['output_path'], {}), '(output_path)\n', (40878, 40891), False, 'import os\n'), ((41843, 41882), 'os.path.join', 'os.path.join', (['output_path', 'raw_filename'], {}), '(output_path, raw_filename)\n', (41855, 41882), False, 'import os\n'), ((42009, 42054), 'cv2.imwrite', 'cv.imwrite', (['raw_filepath', 'img[..., [2, 1, 0]]'], {}), '(raw_filepath, img[..., [2, 1, 0]])\n', (42019, 42054), True, 'import cv2 as cv\n'), ((44623, 44648), 'os.path.abspath', 'os.path.abspath', (['filename'], {}), '(filename)\n', (44638, 44648), False, 'import os\n'), ((44849, 44879), 'os.path.abspath', 'os.path.abspath', (['filename_best'], {}), '(filename_best)\n', (44864, 44879), False, 'import os\n'), ((11231, 11272), 'os.path.abspath', 'os.path.abspath', (['self.output_paths[cname]'], {}), '(self.output_paths[cname])\n', (11246, 11272), False, 'import os\n'), ((19757, 19801), 'torch.nn.DataParallel', 'torch.nn.DataParallel', (['model'], {'device_ids': 'dev'}), '(model, device_ids=dev)\n', (19778, 19801), False, 'import torch\n'), ((42830, 42859), 'os.path.abspath', 'os.path.abspath', (['raw_filepath'], {}), '(raw_filepath)\n', (42845, 42859), False, 'import os\n'), ((11020, 11035), 'platform.node', 'platform.node', ([], {}), '()\n', (11033, 11035), False, 'import platform\n'), ((41956, 41985), 'os.path.abspath', 'os.path.abspath', (['raw_filepath'], {}), '(raw_filepath)\n', (41971, 41985), False, 'import os\n')] |
from __future__ import print_function
import os
import time
import json
import numpy as np
from keras.models import Sequential
from keras.layers import Dense, Dropout, Activation, Lambda
from keras.optimizers import Nadam as Trainer
#from keras.optimizers import Adam as Trainer
from keras.regularizers import WeightRegularizer
from keras.callbacks import EarlyStopping, Callback, LearningRateScheduler
from sklearn.preprocessing import MinMaxScaler
from genomic_neuralnet.util import get_is_time_stats, get_should_plot
TIMING_EPOCHS = 12000
class LossHistory(Callback):
def on_train_begin(self, logs={}):
self.losses = []
def on_epoch_end(self, epoch, logs={}):
self.losses.append(logs.get('loss'))
class NeuralNetContainer(object):
def __init__(self):
self.model = None
self.learning_rate = None
self.weight_decay = 0.0
self.dropout_prob = 0.0
self.epochs = 25
self.hidden_layers = (10,)
self.verbose = False
self.plot = False
def clone(self):
if not self.model is None:
raise NotImplemented('Cannot clone container after building model')
clone = NeuralNetContainer()
clone.learning_rate = self.learning_rate
clone.weight_decay = self.weight_decay
clone.dropout_prob = self.dropout_prob
clone.epochs = self.epochs
clone.hidden_layers = self.hidden_layers
clone.verbose = self.verbose
clone.plot = self.plot
return clone
def _build_nn(net_container, n_features):
model = Sequential()
# Change scale from (-1, 1) to (0, 1)
model.add(Lambda(lambda x: (x + 1) / 2, input_shape=(n_features,), output_shape=(n_features,)))
if net_container.weight_decay > 0.0:
weight_regularizer = WeightRegularizer(net_container.weight_decay)
else:
weight_regularizer = None
last_dim = n_features
for lidx, n_nodes in enumerate(net_container.hidden_layers):
# Layer, activation, and dropout, in that order.
model.add(Dense(output_dim=n_nodes, input_dim=last_dim, W_regularizer=weight_regularizer))
model.add(Activation('sigmoid'))
if net_container.dropout_prob > 0.0:
model.add(Dropout(net_container.dropout_prob))
last_dim = n_nodes
model.add(Dense(output_dim=1, input_dim=last_dim, bias=False))
model.add(Activation('linear'))
if not net_container.learning_rate is None:
optimizer = Trainer(lr=net_container.learning_rate)
else:
#optimizer = Trainer(lr=0.0001)
optimizer = Trainer()
model.compile( optimizer=optimizer
, loss='mean_squared_error'
)
net_container.model = model
def _train_net(container, X, y, override_epochs=None, is_check_train=False):
"""
Given a container, X (inputs), and y (outputs) train the network in the container.
* If override_epochs is an integer, just run that many epochs.
* The is_check_train parameter signifies that this training is a quick check to make
sure that the network is properly initialized and that the output error
is decreasing. The best "check trained" network will be passed in again
for an additional full set of training epochs.
"""
model = container.model
epochs = override_epochs if (not override_epochs is None) else container.epochs
verbose = int(container.verbose)
def rate_func(epoch):
if epochs - epoch == 2000:
# Settle down during last 2000 epochs.
model.optimizer.lr.set_value(model.optimizer.lr.get_value()/4.0)
if epochs - epoch == 500:
# Go a bit further in last 500 epochs.
model.optimizer.lr.set_value(model.optimizer.lr.get_value()/4.0)
return float(model.optimizer.lr.get_value())
lr_scheduler = LearningRateScheduler(rate_func)
loss_history = LossHistory()
callbacks = [loss_history, lr_scheduler]
model.fit( X,
y,
nb_epoch=epochs,
batch_size=X.shape[0] / 4,
verbose=verbose,
callbacks=callbacks
)
if (isinstance(override_epochs, int)) and (not is_check_train) and container.plot:
# Plot, but only if this is not overriden epochs.
import matplotlib.pyplot as plt
plt.plot(range(len(loss_history.losses)), loss_history.losses)
plt.show()
return loss_history.losses[-1]
def _predict(container, X):
model = container.model
return model.predict(X)
_NET_TRIES = 2
def _get_initial_net(container, n_features, X, y):
"""
Create a few networks. Start the training process for a few epochs, then take
the best one to continue training. This eliminates networks that are poorly
initialized and will not converge.
"""
candidates = []
for _ in range(_NET_TRIES):
cont = container.clone()
_build_nn(cont, n_features)
candidates.append(cont)
losses = []
for candidate in candidates:
# Train each candidate for 100 epochs.
loss = _train_net(candidate, X, y, override_epochs=100, is_check_train=True)
losses.append(loss)
best_idx = np.argmin(losses)
return candidates[best_idx]
def get_net_prediction( train_data, train_truth, test_data, test_truth
, hidden=(5,), weight_decay=0.0, dropout_prob=0.0
, learning_rate=None, epochs=25, verbose=False
, iter_id=None
):
container = NeuralNetContainer()
container.learning_rate = learning_rate
container.dropout_prob = dropout_prob
container.weight_decay = weight_decay
container.epochs = epochs
container.hidden_layers = hidden
container.verbose = verbose
container.plot = get_should_plot()
mms = MinMaxScaler(feature_range= (-1, 1)) # Scale output from -1 to 1.
train_y = mms.fit_transform(train_truth[:,np.newaxis])
n_features = train_data.shape[1]
collect_time_stats = get_is_time_stats()
if collect_time_stats:
start = time.time()
# Find and return an effectively initialized network to start.
container = _get_initial_net(container, n_features, train_data, train_y)
# Train the network.
if collect_time_stats:
# Train a specific time, never terminating early.
_train_net(container, train_data, train_y, override_epochs=TIMING_EPOCHS, is_check_train=False)
else:
# Normal training, enable all heuristics.
_train_net(container, train_data, train_y)
if collect_time_stats:
end = time.time()
print('Fitting took {} seconds'.format(end - start))
print(json.dumps({'seconds': end - start, 'hidden': container.hidden_layers}))
# Unsupervised (test) dataset.
predicted = _predict(container, test_data)
predicted = mms.inverse_transform(predicted)
return predicted.ravel()
| [
"keras.callbacks.LearningRateScheduler",
"genomic_neuralnet.util.get_is_time_stats",
"keras.layers.Lambda",
"genomic_neuralnet.util.get_should_plot",
"keras.regularizers.WeightRegularizer",
"json.dumps",
"keras.models.Sequential",
"keras.layers.Dense",
"keras.optimizers.Nadam",
"keras.layers.Dropo... | [((1574, 1586), 'keras.models.Sequential', 'Sequential', ([], {}), '()\n', (1584, 1586), False, 'from keras.models import Sequential\n'), ((3876, 3908), 'keras.callbacks.LearningRateScheduler', 'LearningRateScheduler', (['rate_func'], {}), '(rate_func)\n', (3897, 3908), False, 'from keras.callbacks import EarlyStopping, Callback, LearningRateScheduler\n'), ((5251, 5268), 'numpy.argmin', 'np.argmin', (['losses'], {}), '(losses)\n', (5260, 5268), True, 'import numpy as np\n'), ((5862, 5879), 'genomic_neuralnet.util.get_should_plot', 'get_should_plot', ([], {}), '()\n', (5877, 5879), False, 'from genomic_neuralnet.util import get_is_time_stats, get_should_plot\n'), ((5891, 5926), 'sklearn.preprocessing.MinMaxScaler', 'MinMaxScaler', ([], {'feature_range': '(-1, 1)'}), '(feature_range=(-1, 1))\n', (5903, 5926), False, 'from sklearn.preprocessing import MinMaxScaler\n'), ((6080, 6099), 'genomic_neuralnet.util.get_is_time_stats', 'get_is_time_stats', ([], {}), '()\n', (6097, 6099), False, 'from genomic_neuralnet.util import get_is_time_stats, get_should_plot\n'), ((1645, 1734), 'keras.layers.Lambda', 'Lambda', (['(lambda x: (x + 1) / 2)'], {'input_shape': '(n_features,)', 'output_shape': '(n_features,)'}), '(lambda x: (x + 1) / 2, input_shape=(n_features,), output_shape=(\n n_features,))\n', (1651, 1734), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n'), ((1802, 1847), 'keras.regularizers.WeightRegularizer', 'WeightRegularizer', (['net_container.weight_decay'], {}), '(net_container.weight_decay)\n', (1819, 1847), False, 'from keras.regularizers import WeightRegularizer\n'), ((2329, 2380), 'keras.layers.Dense', 'Dense', ([], {'output_dim': '(1)', 'input_dim': 'last_dim', 'bias': '(False)'}), '(output_dim=1, input_dim=last_dim, bias=False)\n', (2334, 2380), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n'), ((2396, 2416), 'keras.layers.Activation', 'Activation', (['"""linear"""'], {}), "('linear')\n", (2406, 2416), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n'), ((2487, 2526), 'keras.optimizers.Nadam', 'Trainer', ([], {'lr': 'net_container.learning_rate'}), '(lr=net_container.learning_rate)\n', (2494, 2526), True, 'from keras.optimizers import Nadam as Trainer\n'), ((2597, 2606), 'keras.optimizers.Nadam', 'Trainer', ([], {}), '()\n', (2604, 2606), True, 'from keras.optimizers import Nadam as Trainer\n'), ((4450, 4460), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (4458, 4460), True, 'import matplotlib.pyplot as plt\n'), ((6144, 6155), 'time.time', 'time.time', ([], {}), '()\n', (6153, 6155), False, 'import time\n'), ((6671, 6682), 'time.time', 'time.time', ([], {}), '()\n', (6680, 6682), False, 'import time\n'), ((2061, 2140), 'keras.layers.Dense', 'Dense', ([], {'output_dim': 'n_nodes', 'input_dim': 'last_dim', 'W_regularizer': 'weight_regularizer'}), '(output_dim=n_nodes, input_dim=last_dim, W_regularizer=weight_regularizer)\n', (2066, 2140), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n'), ((2160, 2181), 'keras.layers.Activation', 'Activation', (['"""sigmoid"""'], {}), "('sigmoid')\n", (2170, 2181), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n'), ((6758, 6829), 'json.dumps', 'json.dumps', (["{'seconds': end - start, 'hidden': container.hidden_layers}"], {}), "({'seconds': end - start, 'hidden': container.hidden_layers})\n", (6768, 6829), False, 'import json\n'), ((2250, 2285), 'keras.layers.Dropout', 'Dropout', (['net_container.dropout_prob'], {}), '(net_container.dropout_prob)\n', (2257, 2285), False, 'from keras.layers import Dense, Dropout, Activation, Lambda\n')] |
from __future__ import print_function
import sys
import cv2
import pdb
import argparse
import numpy as np
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim as optim
import torch.utils.data
from torch.autograd import Variable
import torch.nn.functional as F
import time
from utils.io import mkdir_p
from utils.util_flow import write_flow, save_pfm
from utils.flowlib import point_vec, warp_flow
cudnn.benchmark = False
parser = argparse.ArgumentParser(description='VCN+expansion')
parser.add_argument('--dataset', default='2015',
help='KITTI version')
parser.add_argument('--datapath', default='/ssd/kitti_scene/training/',
help='dataset path')
parser.add_argument('--loadmodel', default=None,
help='model path')
parser.add_argument('--outdir', default='output',
help='output dir')
parser.add_argument('--testres', type=float, default=1,
help='resolution')
parser.add_argument('--maxdisp', type=int ,default=256,
help='maxium disparity. Only affect the coarsest cost volume size')
parser.add_argument('--fac', type=float ,default=1,
help='controls the shape of search grid. Only affect the coarse cost volume size')
args = parser.parse_args()
# dataloader
if args.dataset == '2015':
from dataloader import kitti15list as DA
maxw,maxh = [int(args.testres*1280), int(args.testres*384)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == '2015val':
from dataloader import kitti15list_val as DA
maxw,maxh = [int(args.testres*1280), int(args.testres*384)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == '2015vallidar':
from dataloader import kitti15list_val_lidar as DA
maxw,maxh = [int(args.testres*1280), int(args.testres*384)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == '2015test':
from dataloader import kitti15list as DA
maxw,maxh = [int(args.testres*1280), int(args.testres*384)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == 'seq':
from dataloader import seqlist as DA
maxw,maxh = [int(args.testres*1280), int(args.testres*384)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == 'sinteltest':
from dataloader import sintellist as DA
maxw,maxh = [int(args.testres*1024), int(args.testres*448)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
elif args.dataset == 'sintel':
from dataloader import sintellist_val as DA
maxw,maxh = [int(args.testres*1024), int(args.testres*448)]
test_left_img, test_right_img ,_= DA.dataloader(args.datapath)
max_h = int(maxh // 64 * 64)
max_w = int(maxw // 64 * 64)
if max_h < maxh: max_h += 64
if max_w < maxw: max_w += 64
maxh = max_h
maxw = max_w
mean_L = [[0.33,0.33,0.33]]
mean_R = [[0.33,0.33,0.33]]
# construct model, VCN-expansion
from models.VCN_exp import VCN
model = VCN([1, maxw, maxh], md=[int(4*(args.maxdisp/256)),4,4,4,4], fac=args.fac,
exp_unc=('robust' in args.loadmodel)) # expansion uncertainty only in the new model
model = nn.DataParallel(model, device_ids=[0])
model.cuda()
if args.loadmodel is not None:
pretrained_dict = torch.load(args.loadmodel)
mean_L=pretrained_dict['mean_L']
mean_R=pretrained_dict['mean_R']
pretrained_dict['state_dict'] = {k:v for k,v in pretrained_dict['state_dict'].items()}
model.load_state_dict(pretrained_dict['state_dict'],strict=False)
else:
print('dry run')
print('Number of model parameters: {}'.format(sum([p.data.nelement() for p in model.parameters()])))
mkdir_p('%s/%s/'% (args.outdir, args.dataset))
def main():
model.eval()
ttime_all = []
for inx in range(len(test_left_img)):
print(test_left_img[inx])
imgL_o = cv2.imread(test_left_img[inx])[:,:,::-1]
imgR_o = cv2.imread(test_right_img[inx])[:,:,::-1]
# for gray input images
if len(imgL_o.shape) == 2:
imgL_o = np.tile(imgL_o[:,:,np.newaxis],(1,1,3))
imgR_o = np.tile(imgR_o[:,:,np.newaxis],(1,1,3))
# resize
maxh = imgL_o.shape[0]*args.testres
maxw = imgL_o.shape[1]*args.testres
max_h = int(maxh // 64 * 64)
max_w = int(maxw // 64 * 64)
if max_h < maxh: max_h += 64
if max_w < maxw: max_w += 64
input_size = imgL_o.shape
imgL = cv2.resize(imgL_o,(max_w, max_h))
imgR = cv2.resize(imgR_o,(max_w, max_h))
# flip channel, subtract mean
imgL = imgL[:,:,::-1].copy() / 255. - np.asarray(mean_L).mean(0)[np.newaxis,np.newaxis,:]
imgR = imgR[:,:,::-1].copy() / 255. - np.asarray(mean_R).mean(0)[np.newaxis,np.newaxis,:]
imgL = np.transpose(imgL, [2,0,1])[np.newaxis]
imgR = np.transpose(imgR, [2,0,1])[np.newaxis]
# modify module according to inputs
from models.VCN_exp import WarpModule, flow_reg
for i in range(len(model.module.reg_modules)):
model.module.reg_modules[i] = flow_reg([1,max_w//(2**(6-i)), max_h//(2**(6-i))],
ent=getattr(model.module, 'flow_reg%d'%2**(6-i)).ent,\
maxdisp=getattr(model.module, 'flow_reg%d'%2**(6-i)).md,\
fac=getattr(model.module, 'flow_reg%d'%2**(6-i)).fac).cuda()
for i in range(len(model.module.warp_modules)):
model.module.warp_modules[i] = WarpModule([1,max_w//(2**(6-i)), max_h//(2**(6-i))]).cuda()
# forward
imgL = Variable(torch.FloatTensor(imgL).cuda())
imgR = Variable(torch.FloatTensor(imgR).cuda())
with torch.no_grad():
imgLR = torch.cat([imgL,imgR],0)
model.eval()
torch.cuda.synchronize()
start_time = time.time()
rts = model(imgLR)
torch.cuda.synchronize()
ttime = (time.time() - start_time); print('time = %.2f' % (ttime*1000) )
ttime_all.append(ttime)
flow, occ, logmid, logexp = rts
# upsampling
occ = cv2.resize(occ.data.cpu().numpy(), (input_size[1],input_size[0]),interpolation=cv2.INTER_LINEAR)
logexp = cv2.resize(logexp.cpu().numpy(), (input_size[1],input_size[0]),interpolation=cv2.INTER_LINEAR)
logmid = cv2.resize(logmid.cpu().numpy(), (input_size[1],input_size[0]),interpolation=cv2.INTER_LINEAR)
flow = torch.squeeze(flow).data.cpu().numpy()
flow = np.concatenate( [cv2.resize(flow[0],(input_size[1],input_size[0]))[:,:,np.newaxis],
cv2.resize(flow[1],(input_size[1],input_size[0]))[:,:,np.newaxis]],-1)
flow[:,:,0] *= imgL_o.shape[1] / max_w
flow[:,:,1] *= imgL_o.shape[0] / max_h
flow = np.concatenate( (flow, np.ones([flow.shape[0],flow.shape[1],1])),-1)
# save predictions
idxname = test_left_img[inx].split('/')[-1]
with open('%s/%s/flo-%s.pfm'% (args.outdir, args.dataset,idxname.split('.')[0]),'w') as f:
save_pfm(f,flow[::-1].astype(np.float32))
flowvis = point_vec(imgL_o, flow)
cv2.imwrite('%s/%s/visflo-%s.jpg'% (args.outdir, args.dataset,idxname),flowvis)
imwarped = warp_flow(imgR_o, flow[:,:,:2])
cv2.imwrite('%s/%s/warp-%s.jpg'% (args.outdir, args.dataset,idxname),imwarped[:,:,::-1])
with open('%s/%s/occ-%s.pfm'% (args.outdir, args.dataset,idxname.split('.')[0]),'w') as f:
save_pfm(f,occ[::-1].astype(np.float32))
with open('%s/%s/exp-%s.pfm'% (args.outdir, args.dataset,idxname.split('.')[0]),'w') as f:
save_pfm(f,logexp[::-1].astype(np.float32))
with open('%s/%s/mid-%s.pfm'% (args.outdir, args.dataset,idxname.split('.')[0]),'w') as f:
save_pfm(f,logmid[::-1].astype(np.float32))
torch.cuda.empty_cache()
print(np.mean(ttime_all))
if __name__ == '__main__':
main()
| [
"dataloader.sintellist_val.dataloader",
"torch.cuda.synchronize",
"models.VCN_exp.WarpModule",
"torch.squeeze",
"utils.flowlib.point_vec",
"numpy.mean",
"argparse.ArgumentParser",
"numpy.asarray",
"numpy.tile",
"numpy.ones",
"utils.io.mkdir_p",
"utils.flowlib.warp_flow",
"cv2.resize",
"tim... | [((494, 546), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {'description': '"""VCN+expansion"""'}), "(description='VCN+expansion')\n", (517, 546), False, 'import argparse\n'), ((3290, 3328), 'torch.nn.DataParallel', 'nn.DataParallel', (['model'], {'device_ids': '[0]'}), '(model, device_ids=[0])\n', (3305, 3328), True, 'import torch.nn as nn\n'), ((3789, 3836), 'utils.io.mkdir_p', 'mkdir_p', (["('%s/%s/' % (args.outdir, args.dataset))"], {}), "('%s/%s/' % (args.outdir, args.dataset))\n", (3796, 3836), False, 'from utils.io import mkdir_p\n'), ((1538, 1566), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (1551, 1566), True, 'from dataloader import sintellist_val as DA\n'), ((3396, 3422), 'torch.load', 'torch.load', (['args.loadmodel'], {}), '(args.loadmodel)\n', (3406, 3422), False, 'import torch\n'), ((1752, 1780), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (1765, 1780), True, 'from dataloader import sintellist_val as DA\n'), ((4571, 4605), 'cv2.resize', 'cv2.resize', (['imgL_o', '(max_w, max_h)'], {}), '(imgL_o, (max_w, max_h))\n', (4581, 4605), False, 'import cv2\n'), ((4620, 4654), 'cv2.resize', 'cv2.resize', (['imgR_o', '(max_w, max_h)'], {}), '(imgR_o, (max_w, max_h))\n', (4630, 4654), False, 'import cv2\n'), ((7247, 7270), 'utils.flowlib.point_vec', 'point_vec', (['imgL_o', 'flow'], {}), '(imgL_o, flow)\n', (7256, 7270), False, 'from utils.flowlib import point_vec, warp_flow\n'), ((7279, 7365), 'cv2.imwrite', 'cv2.imwrite', (["('%s/%s/visflo-%s.jpg' % (args.outdir, args.dataset, idxname))", 'flowvis'], {}), "('%s/%s/visflo-%s.jpg' % (args.outdir, args.dataset, idxname),\n flowvis)\n", (7290, 7365), False, 'import cv2\n'), ((7378, 7411), 'utils.flowlib.warp_flow', 'warp_flow', (['imgR_o', 'flow[:, :, :2]'], {}), '(imgR_o, flow[:, :, :2])\n', (7387, 7411), False, 'from utils.flowlib import point_vec, warp_flow\n'), ((7418, 7515), 'cv2.imwrite', 'cv2.imwrite', (["('%s/%s/warp-%s.jpg' % (args.outdir, args.dataset, idxname))", 'imwarped[:, :, ::-1]'], {}), "('%s/%s/warp-%s.jpg' % (args.outdir, args.dataset, idxname),\n imwarped[:, :, ::-1])\n", (7429, 7515), False, 'import cv2\n'), ((7977, 8001), 'torch.cuda.empty_cache', 'torch.cuda.empty_cache', ([], {}), '()\n', (7999, 8001), False, 'import torch\n'), ((8012, 8030), 'numpy.mean', 'np.mean', (['ttime_all'], {}), '(ttime_all)\n', (8019, 8030), True, 'import numpy as np\n'), ((1977, 2005), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (1990, 2005), True, 'from dataloader import sintellist_val as DA\n'), ((3977, 4007), 'cv2.imread', 'cv2.imread', (['test_left_img[inx]'], {}), '(test_left_img[inx])\n', (3987, 4007), False, 'import cv2\n'), ((4035, 4066), 'cv2.imread', 'cv2.imread', (['test_right_img[inx]'], {}), '(test_right_img[inx])\n', (4045, 4066), False, 'import cv2\n'), ((4166, 4210), 'numpy.tile', 'np.tile', (['imgL_o[:, :, np.newaxis]', '(1, 1, 3)'], {}), '(imgL_o[:, :, np.newaxis], (1, 1, 3))\n', (4173, 4210), True, 'import numpy as np\n'), ((4227, 4271), 'numpy.tile', 'np.tile', (['imgR_o[:, :, np.newaxis]', '(1, 1, 3)'], {}), '(imgR_o[:, :, np.newaxis], (1, 1, 3))\n', (4234, 4271), True, 'import numpy as np\n'), ((4904, 4933), 'numpy.transpose', 'np.transpose', (['imgL', '[2, 0, 1]'], {}), '(imgL, [2, 0, 1])\n', (4916, 4933), True, 'import numpy as np\n'), ((4959, 4988), 'numpy.transpose', 'np.transpose', (['imgR', '[2, 0, 1]'], {}), '(imgR, [2, 0, 1])\n', (4971, 4988), True, 'import numpy as np\n'), ((5810, 5825), 'torch.no_grad', 'torch.no_grad', ([], {}), '()\n', (5823, 5825), False, 'import torch\n'), ((5847, 5873), 'torch.cat', 'torch.cat', (['[imgL, imgR]', '(0)'], {}), '([imgL, imgR], 0)\n', (5856, 5873), False, 'import torch\n'), ((5909, 5933), 'torch.cuda.synchronize', 'torch.cuda.synchronize', ([], {}), '()\n', (5931, 5933), False, 'import torch\n'), ((5959, 5970), 'time.time', 'time.time', ([], {}), '()\n', (5968, 5970), False, 'import time\n'), ((6014, 6038), 'torch.cuda.synchronize', 'torch.cuda.synchronize', ([], {}), '()\n', (6036, 6038), False, 'import torch\n'), ((2188, 2216), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (2201, 2216), True, 'from dataloader import sintellist_val as DA\n'), ((6060, 6071), 'time.time', 'time.time', ([], {}), '()\n', (6069, 6071), False, 'import time\n'), ((6950, 6992), 'numpy.ones', 'np.ones', (['[flow.shape[0], flow.shape[1], 1]'], {}), '([flow.shape[0], flow.shape[1], 1])\n', (6957, 6992), True, 'import numpy as np\n'), ((2390, 2418), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (2403, 2418), True, 'from dataloader import sintellist_val as DA\n'), ((5606, 5667), 'models.VCN_exp.WarpModule', 'WarpModule', (['[1, max_w // 2 ** (6 - i), max_h // 2 ** (6 - i)]'], {}), '([1, max_w // 2 ** (6 - i), max_h // 2 ** (6 - i)])\n', (5616, 5667), False, 'from models.VCN_exp import WarpModule, flow_reg\n'), ((5709, 5732), 'torch.FloatTensor', 'torch.FloatTensor', (['imgL'], {}), '(imgL)\n', (5726, 5732), False, 'import torch\n'), ((5765, 5788), 'torch.FloatTensor', 'torch.FloatTensor', (['imgR'], {}), '(imgR)\n', (5782, 5788), False, 'import torch\n'), ((6648, 6699), 'cv2.resize', 'cv2.resize', (['flow[0]', '(input_size[1], input_size[0])'], {}), '(flow[0], (input_size[1], input_size[0]))\n', (6658, 6699), False, 'import cv2\n'), ((6747, 6798), 'cv2.resize', 'cv2.resize', (['flow[1]', '(input_size[1], input_size[0])'], {}), '(flow[1], (input_size[1], input_size[0]))\n', (6757, 6798), False, 'import cv2\n'), ((2602, 2630), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (2615, 2630), True, 'from dataloader import sintellist_val as DA\n'), ((4739, 4757), 'numpy.asarray', 'np.asarray', (['mean_L'], {}), '(mean_L)\n', (4749, 4757), True, 'import numpy as np\n'), ((4837, 4855), 'numpy.asarray', 'np.asarray', (['mean_R'], {}), '(mean_R)\n', (4847, 4855), True, 'import numpy as np\n'), ((2814, 2842), 'dataloader.sintellist_val.dataloader', 'DA.dataloader', (['args.datapath'], {}), '(args.datapath)\n', (2827, 2842), True, 'from dataloader import sintellist_val as DA\n'), ((6577, 6596), 'torch.squeeze', 'torch.squeeze', (['flow'], {}), '(flow)\n', (6590, 6596), False, 'import torch\n')] |
import numpy as np
import keras
import json
from tqdm import tqdm
import cv2
import random
import matplotlib.pyplot as plt
from keras.applications.vgg16 import preprocess_input
from keras.preprocessing import image as keras_image
import pickle
def augment_patch(patch, augmentation):
if augmentation=='H-Flip':
augmented_patch = np.fliplr(patch)
elif augmentation=='V-Flip':
augmented_patch = np.flipud(patch)
elif augmentation=='180':
augmented_patch = np.rot90(patch, 2)
elif augmentation=='90':
augmented_patch = np.rot90(patch, 1)
elif augmentation=='270':
augmented_patch = np.rot90(patch, 3)
else:
augmented_patch = patch
return augmented_patch
def length(list_IDs, batch_size):
'Denotes the number of batches per epoch'
return int(np.floor(len(list_IDs) / batch_size))
def load_image_paths(image_categories):
with open('../train_pdfs.pkl', 'rb') as f:
pdfs = pickle.load(f)
with open('../from_scratch_classification.json', 'r') as f:
cls_type = json.load(f)
list_IDs = []
for doi in tqdm(pdfs):
for panel,cls in cls_type[doi].items():
if cls in image_categories:
path = '/nas/medifor/esabir/scientific_integrity/from_scratch/from_scratch_panels/'+doi+'/'+panel
list_IDs += [path]
return list_IDs
def on_epoch_end(list_IDs):
'Updates indexes after each epoch'
indexes = np.arange(len(list_IDs))
np.random.shuffle(indexes)
return indexes
def get_batch(indexes, index, list_IDs, batch_size, resize_dim, dim, n_channels, augmentation_list):
indexes = indexes[index*batch_size:(index+1)*batch_size]
# Find list of IDs
list_IDs_temp = [list_IDs[k] for k in indexes]
# Generate data
X, y, y1, y2 = data_generation(list_IDs_temp, batch_size, resize_dim, dim, n_channels, augmentation_list)
return X, y, y1, y2
def create_spliced_manipulation(img, resize_dim, augmentation_list):
img = cv2.resize(img, resize_dim)
h, w, ch = img.shape
new_h, new_w = int(np.ceil(h/16.)*16), int(np.ceil(w/16.)*16)
new_img = np.zeros((new_h, new_w, ch))
new_img[:h,:w,:] = img
mask_img = np.zeros_like(new_img)
duplicate = True
if duplicate:
dup1_r1 = random.randint(0,np.floor(0.75*new_h))
dup1_c1 = random.randint(0,np.floor(0.75*new_w))
dup1_r2 = random.randint(dup1_r1+10, dup1_r1+np.floor(0.25*new_h))
dup1_c2 = random.randint(dup1_c1+10, dup1_c1+np.floor(0.25*new_w))
assert np.floor(0.75*new_h)-dup1_r1>=0, 'Negative row for second patch!'
assert np.floor(0.75*new_w)-dup1_c1>=0, 'Negative col for second patch!'
augmentation = random.choice(augmentation_list)
dup2_r1 = random.randint(0, np.floor(0.75*new_h))
dup2_c1 = random.randint(0, np.floor(0.75*new_w))
if augmentation in ['0', '180', 'H-Flip', 'V-Flip']:
dup2_r2 = dup2_r1 + (dup1_r2-dup1_r1)
dup2_c2 = dup2_c1 + (dup1_c2-dup1_c1)
else:
dup2_r2 = dup2_r1 + (dup1_c2-dup1_c1)
dup2_c2 = dup2_c1 + (dup1_r2-dup1_r1)
assert dup2_r2<=new_h, 'Second patch row out of bounds!'
assert dup2_c2<=new_w, 'Second patch col out of bounds!'
#if random.choice([True, False]):
# patch = new_img[dup2_r1:dup2_r2,dup2_c1:dup2_c2,:]
# augmented_patch = augment_patch(patch, augmentation)
# new_img[dup1_r1:dup1_r2,dup1_c1:dup1_c2,:] = augmented_patch
#else:
patch = new_img[dup1_r1:dup1_r2,dup1_c1:dup1_c2,:]
augmented_patch = augment_patch(patch, augmentation)
new_img[dup2_r1:dup2_r2,dup2_c1:dup2_c2,:] = augmented_patch
dup_coord1 = (dup1_r1,dup1_r2,dup1_c1,dup1_c2)
dup_coord2 = (dup2_r1,dup2_r2,dup2_c1,dup2_c2)
mask_img[dup1_r1:dup1_r2,dup1_c1:dup1_c2,1] = 1
mask_img[dup2_r1:dup2_r2,dup2_c1:dup2_c2,0] = 1
mask_img[:,:,2] = 1
tmp = mask_img[:,:,1] + mask_img[:,:,0]
tmp[tmp>0] = 1
mask_img[:,:,2] = mask_img[:,:,2] - tmp
simi_mask = np.concatenate((mask_img[:,:,:1]+mask_img[:,:,1:2], mask_img[:,:,2:3]), axis=-1)
mani_mask = np.concatenate((mask_img[:,:,:1], mask_img[:,:,1:2]+mask_img[:,:,2:3]), axis=-1)
return new_img, mask_img, simi_mask, mani_mask
def unmanipulated(img, resize_dim):
img = cv2.resize(img, resize_dim)
gt_mask = np.zeros_like(img)
gt_mask[:,:,2] = 1
return img, gt_mask, gt_mask[:,:,:2], gt_mask[:,:,:2]
def create_manipulation(img, resize_dim, augmentation_list):
choices = ['Pristine', 'Splice']
choice = random.choice(choices)
if choice=='Pristine':
img, gt_mask, gt_mask1, gt_mask2 = unmanipulated(img, resize_dim)
elif choice=='Splice':
img, gt_mask, gt_mask1, gt_mask2 = create_spliced_manipulation(img, resize_dim, augmentation_list)
else:
print('Invalid choice!')
raise SystemExit
img = img[:,:,::-1]
return img, gt_mask, gt_mask1, gt_mask2
def data_generation(list_IDs_temp, batch_size, resize_dim, dim, n_channels, augmentation_list):
'Generates data containing batch_size samples' # X : (n_samples, *dim, n_channels)
# Initialization
X = np.empty((batch_size, dim[0], dim[1], n_channels))
y = np.empty((batch_size, dim[0], dim[1], 3))
y1 = np.empty((batch_size, dim[0], dim[1], 2))
y2 = np.empty((batch_size, dim[0], dim[1], 2))
# Generate data
for i, ID in enumerate(list_IDs_temp):
# Store sample
img = cv2.imread(ID)
X[i], y[i], y1[i], y2[i] = create_manipulation(img, resize_dim, augmentation_list)
return X, y, y1, y2
def DataGenerator(image_categories, augmentation_list):
'Generates data for Keras'
dim = (256,256)
resize_dim = (256, 256)
batch_size = 32
list_IDs = load_image_paths(image_categories)
n_channels = 3
indexes = on_epoch_end(list_IDs)
while True:
for index in range(length(list_IDs, batch_size)):
X, y, y1, y2 = get_batch(indexes, index, list_IDs, batch_size, resize_dim, dim, n_channels, augmentation_list)
yield (X,y)
indexes = on_epoch_end(list_IDs)
| [
"numpy.ceil",
"random.choice",
"cv2.imread",
"numpy.flipud",
"numpy.fliplr",
"tqdm.tqdm",
"pickle.load",
"numpy.floor",
"numpy.zeros",
"numpy.empty",
"numpy.concatenate",
"numpy.rot90",
"json.load",
"cv2.resize",
"numpy.zeros_like",
"numpy.random.shuffle"
] | [((1114, 1124), 'tqdm.tqdm', 'tqdm', (['pdfs'], {}), '(pdfs)\n', (1118, 1124), False, 'from tqdm import tqdm\n'), ((1515, 1541), 'numpy.random.shuffle', 'np.random.shuffle', (['indexes'], {}), '(indexes)\n', (1532, 1541), True, 'import numpy as np\n'), ((2050, 2077), 'cv2.resize', 'cv2.resize', (['img', 'resize_dim'], {}), '(img, resize_dim)\n', (2060, 2077), False, 'import cv2\n'), ((2186, 2214), 'numpy.zeros', 'np.zeros', (['(new_h, new_w, ch)'], {}), '((new_h, new_w, ch))\n', (2194, 2214), True, 'import numpy as np\n'), ((2258, 2280), 'numpy.zeros_like', 'np.zeros_like', (['new_img'], {}), '(new_img)\n', (2271, 2280), True, 'import numpy as np\n'), ((4456, 4483), 'cv2.resize', 'cv2.resize', (['img', 'resize_dim'], {}), '(img, resize_dim)\n', (4466, 4483), False, 'import cv2\n'), ((4503, 4521), 'numpy.zeros_like', 'np.zeros_like', (['img'], {}), '(img)\n', (4516, 4521), True, 'import numpy as np\n'), ((4729, 4751), 'random.choice', 'random.choice', (['choices'], {}), '(choices)\n', (4742, 4751), False, 'import random\n'), ((5339, 5389), 'numpy.empty', 'np.empty', (['(batch_size, dim[0], dim[1], n_channels)'], {}), '((batch_size, dim[0], dim[1], n_channels))\n', (5347, 5389), True, 'import numpy as np\n'), ((5398, 5439), 'numpy.empty', 'np.empty', (['(batch_size, dim[0], dim[1], 3)'], {}), '((batch_size, dim[0], dim[1], 3))\n', (5406, 5439), True, 'import numpy as np\n'), ((5449, 5490), 'numpy.empty', 'np.empty', (['(batch_size, dim[0], dim[1], 2)'], {}), '((batch_size, dim[0], dim[1], 2))\n', (5457, 5490), True, 'import numpy as np\n'), ((5500, 5541), 'numpy.empty', 'np.empty', (['(batch_size, dim[0], dim[1], 2)'], {}), '((batch_size, dim[0], dim[1], 2))\n', (5508, 5541), True, 'import numpy as np\n'), ((343, 359), 'numpy.fliplr', 'np.fliplr', (['patch'], {}), '(patch)\n', (352, 359), True, 'import numpy as np\n'), ((968, 982), 'pickle.load', 'pickle.load', (['f'], {}), '(f)\n', (979, 982), False, 'import pickle\n'), ((1067, 1079), 'json.load', 'json.load', (['f'], {}), '(f)\n', (1076, 1079), False, 'import json\n'), ((2774, 2806), 'random.choice', 'random.choice', (['augmentation_list'], {}), '(augmentation_list)\n', (2787, 2806), False, 'import random\n'), ((4174, 4267), 'numpy.concatenate', 'np.concatenate', (['(mask_img[:, :, :1] + mask_img[:, :, 1:2], mask_img[:, :, 2:3])'], {'axis': '(-1)'}), '((mask_img[:, :, :1] + mask_img[:, :, 1:2], mask_img[:, :, 2:\n 3]), axis=-1)\n', (4188, 4267), True, 'import numpy as np\n'), ((4275, 4368), 'numpy.concatenate', 'np.concatenate', (['(mask_img[:, :, :1], mask_img[:, :, 1:2] + mask_img[:, :, 2:3])'], {'axis': '(-1)'}), '((mask_img[:, :, :1], mask_img[:, :, 1:2] + mask_img[:, :, 2:\n 3]), axis=-1)\n', (4289, 4368), True, 'import numpy as np\n'), ((5651, 5665), 'cv2.imread', 'cv2.imread', (['ID'], {}), '(ID)\n', (5661, 5665), False, 'import cv2\n'), ((419, 435), 'numpy.flipud', 'np.flipud', (['patch'], {}), '(patch)\n', (428, 435), True, 'import numpy as np\n'), ((2358, 2380), 'numpy.floor', 'np.floor', (['(0.75 * new_h)'], {}), '(0.75 * new_h)\n', (2366, 2380), True, 'import numpy as np\n'), ((2415, 2437), 'numpy.floor', 'np.floor', (['(0.75 * new_w)'], {}), '(0.75 * new_w)\n', (2423, 2437), True, 'import numpy as np\n'), ((2844, 2866), 'numpy.floor', 'np.floor', (['(0.75 * new_h)'], {}), '(0.75 * new_h)\n', (2852, 2866), True, 'import numpy as np\n'), ((2902, 2924), 'numpy.floor', 'np.floor', (['(0.75 * new_w)'], {}), '(0.75 * new_w)\n', (2910, 2924), True, 'import numpy as np\n'), ((492, 510), 'numpy.rot90', 'np.rot90', (['patch', '(2)'], {}), '(patch, 2)\n', (500, 510), True, 'import numpy as np\n'), ((2128, 2145), 'numpy.ceil', 'np.ceil', (['(h / 16.0)'], {}), '(h / 16.0)\n', (2135, 2145), True, 'import numpy as np\n'), ((2152, 2169), 'numpy.ceil', 'np.ceil', (['(w / 16.0)'], {}), '(w / 16.0)\n', (2159, 2169), True, 'import numpy as np\n'), ((2490, 2512), 'numpy.floor', 'np.floor', (['(0.25 * new_h)'], {}), '(0.25 * new_h)\n', (2498, 2512), True, 'import numpy as np\n'), ((2565, 2587), 'numpy.floor', 'np.floor', (['(0.25 * new_w)'], {}), '(0.25 * new_w)\n', (2573, 2587), True, 'import numpy as np\n'), ((2603, 2625), 'numpy.floor', 'np.floor', (['(0.75 * new_h)'], {}), '(0.75 * new_h)\n', (2611, 2625), True, 'import numpy as np\n'), ((2684, 2706), 'numpy.floor', 'np.floor', (['(0.75 * new_w)'], {}), '(0.75 * new_w)\n', (2692, 2706), True, 'import numpy as np\n'), ((566, 584), 'numpy.rot90', 'np.rot90', (['patch', '(1)'], {}), '(patch, 1)\n', (574, 584), True, 'import numpy as np\n'), ((641, 659), 'numpy.rot90', 'np.rot90', (['patch', '(3)'], {}), '(patch, 3)\n', (649, 659), True, 'import numpy as np\n')] |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Feb 24 11:41:13 2020
@author: roopareddynagilla
"""
import numpy as np
import sqlalchemy
from sqlalchemy.ext.automap import automap_base
from sqlalchemy.orm import Session
from sqlalchemy import create_engine, func
from flask import Flask, jsonify
from datetime import date
from datetime import datetime
from datetime import timedelta as dtd
#################################################
# Database Setup
#################################################
engine = create_engine("sqlite:///Resources/hawaii.sqlite")
# reflect an existing database into a new model
Base = automap_base()
# reflect the tables
Base.prepare(engine, reflect=True)
Base.classes.keys()
# Save reference to the table
Measurement = Base.classes.measurement
Station = Base.classes.station
# Create our session (link) from Python to the DB
session = Session(engine)
#################################################
# Flask Setup
#################################################
app = Flask(__name__)
#################################################
# Flask Routes
#################################################
@app.route("/")
def welcome():
"""List all available api routes."""
return (
f"Available Routes:<br/>"
f"/api/v1.0/precipitation:<br/>"
f"/api/v1.0/stations <br/>"
f"/api/v1.0/tobs <br/>"
f"/api/v1.0/<start> <br/>"
f"/api/v1.0/<start>/<end> <br/>"
)
@app.route("/api/v1.0/precipitation")
def precipitation():
# Create our session (link) from Python to the DB
session = Session(engine)
"""Convert the query results to a Dictionary using date as the key and prcp as the value"""
# Query all passengers
results = session.query(Measurement.date, Measurement.prcp).all()
session.close()
dictionary = {}
# Convert tuples into dictionary
def Convert(tup, di):
for a, b in tup:
di.setdefault(a, []).append(b)
return di
#all_names = list(np.ravel(results))
Convert(results, dictionary)
#Return the JSON representation of your dictionary
return jsonify(dictionary)
@app.route("/api/v1.0/stations")
def stationList():
session = Session(engine)
"""Return a list of all stations"""
station_list = session.query(Station.station).all()
session.close()
all_stations = list(np.ravel(station_list))
return jsonify(all_stations)
@app.route("/api/v1.0/tobs")
def tobsLastYear():
session = Session(engine)
"""Return a the latest date"""
tobs_last_date = session.query(Measurement.date).order_by(Measurement.date.desc()).first()
session.close()
last_date = list(np.ravel(tobs_last_date))
import datetime as dt
for item in last_date:
Dyear, Dmon, Ddate = item.split('-')
latest_date = dt.date(int(Dyear),int(Dmon),int(Ddate))
year_ago = latest_date - dt.timedelta(days=365)
session = Session(engine)
temperature_obs = session.query(Measurement.tobs).filter(Measurement.date >= year_ago).order_by(Measurement.date.desc()).all()
temperature_obs_list = list(np.ravel(temperature_obs))
return jsonify(temperature_obs_list)
@app.route("/api/v1.0/<start>")
def tempStatsWithStartDate(start):
def calc_temps(start, end_date):
start_date = datetime.strptime(start, "%Y-%m-%d")
end_date = session.query(func.max(Measurement.date)).all()[0][0]
return session.query(func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)).\
filter(Measurement.date >= start_date).filter(Measurement.date <= end_date).all()
enddate = session.query(func.max(Measurement.date)).all()[0][0]
temps = calc_temps(start, enddate)
temp_stats_list = list(np.ravel(temps))
return jsonify(temp_stats_list)
@app.route("/api/v1.0/<start>/<end>")
def tempStatsWithStartDateAndEndDate(start, end):
def calc_temps_se(start, end):
start_date = datetime.strptime(start, "%Y-%m-%d")
end_date = datetime.strptime(end, "%Y-%m-%d")
return session.query(func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)).\
filter(Measurement.date >= start_date).filter(Measurement.date <= end_date).all()
temps_se = calc_temps_se(start, end)
temp_stats_list_se = list(np.ravel(temps_se))
return jsonify(temp_stats_list_se)
if __name__ == '__main__':
app.run(debug=True)
| [
"sqlalchemy.func.min",
"flask.Flask",
"datetime.datetime.strptime",
"sqlalchemy.ext.automap.automap_base",
"sqlalchemy.create_engine",
"sqlalchemy.orm.Session",
"sqlalchemy.func.max",
"sqlalchemy.func.avg",
"numpy.ravel",
"datetime.timedelta",
"flask.jsonify"
] | [((539, 589), 'sqlalchemy.create_engine', 'create_engine', (['"""sqlite:///Resources/hawaii.sqlite"""'], {}), "('sqlite:///Resources/hawaii.sqlite')\n", (552, 589), False, 'from sqlalchemy import create_engine, func\n'), ((646, 660), 'sqlalchemy.ext.automap.automap_base', 'automap_base', ([], {}), '()\n', (658, 660), False, 'from sqlalchemy.ext.automap import automap_base\n'), ((899, 914), 'sqlalchemy.orm.Session', 'Session', (['engine'], {}), '(engine)\n', (906, 914), False, 'from sqlalchemy.orm import Session\n'), ((1035, 1050), 'flask.Flask', 'Flask', (['__name__'], {}), '(__name__)\n', (1040, 1050), False, 'from flask import Flask, jsonify\n'), ((1608, 1623), 'sqlalchemy.orm.Session', 'Session', (['engine'], {}), '(engine)\n', (1615, 1623), False, 'from sqlalchemy.orm import Session\n'), ((2154, 2173), 'flask.jsonify', 'jsonify', (['dictionary'], {}), '(dictionary)\n', (2161, 2173), False, 'from flask import Flask, jsonify\n'), ((2241, 2256), 'sqlalchemy.orm.Session', 'Session', (['engine'], {}), '(engine)\n', (2248, 2256), False, 'from sqlalchemy.orm import Session\n'), ((2436, 2457), 'flask.jsonify', 'jsonify', (['all_stations'], {}), '(all_stations)\n', (2443, 2457), False, 'from flask import Flask, jsonify\n'), ((2522, 2537), 'sqlalchemy.orm.Session', 'Session', (['engine'], {}), '(engine)\n', (2529, 2537), False, 'from sqlalchemy.orm import Session\n'), ((2974, 2989), 'sqlalchemy.orm.Session', 'Session', (['engine'], {}), '(engine)\n', (2981, 2989), False, 'from sqlalchemy.orm import Session\n'), ((3191, 3220), 'flask.jsonify', 'jsonify', (['temperature_obs_list'], {}), '(temperature_obs_list)\n', (3198, 3220), False, 'from flask import Flask, jsonify\n'), ((3844, 3868), 'flask.jsonify', 'jsonify', (['temp_stats_list'], {}), '(temp_stats_list)\n', (3851, 3868), False, 'from flask import Flask, jsonify\n'), ((4432, 4459), 'flask.jsonify', 'jsonify', (['temp_stats_list_se'], {}), '(temp_stats_list_se)\n', (4439, 4459), False, 'from flask import Flask, jsonify\n'), ((2401, 2423), 'numpy.ravel', 'np.ravel', (['station_list'], {}), '(station_list)\n', (2409, 2423), True, 'import numpy as np\n'), ((2710, 2734), 'numpy.ravel', 'np.ravel', (['tobs_last_date'], {}), '(tobs_last_date)\n', (2718, 2734), True, 'import numpy as np\n'), ((2932, 2954), 'datetime.timedelta', 'dt.timedelta', ([], {'days': '(365)'}), '(days=365)\n', (2944, 2954), True, 'import datetime as dt\n'), ((3153, 3178), 'numpy.ravel', 'np.ravel', (['temperature_obs'], {}), '(temperature_obs)\n', (3161, 3178), True, 'import numpy as np\n'), ((3351, 3387), 'datetime.datetime.strptime', 'datetime.strptime', (['start', '"""%Y-%m-%d"""'], {}), "(start, '%Y-%m-%d')\n", (3368, 3387), False, 'from datetime import datetime\n'), ((3816, 3831), 'numpy.ravel', 'np.ravel', (['temps'], {}), '(temps)\n', (3824, 3831), True, 'import numpy as np\n'), ((4018, 4054), 'datetime.datetime.strptime', 'datetime.strptime', (['start', '"""%Y-%m-%d"""'], {}), "(start, '%Y-%m-%d')\n", (4035, 4054), False, 'from datetime import datetime\n'), ((4078, 4112), 'datetime.datetime.strptime', 'datetime.strptime', (['end', '"""%Y-%m-%d"""'], {}), "(end, '%Y-%m-%d')\n", (4095, 4112), False, 'from datetime import datetime\n'), ((4401, 4419), 'numpy.ravel', 'np.ravel', (['temps_se'], {}), '(temps_se)\n', (4409, 4419), True, 'import numpy as np\n'), ((3710, 3736), 'sqlalchemy.func.max', 'func.max', (['Measurement.date'], {}), '(Measurement.date)\n', (3718, 3736), False, 'from sqlalchemy import create_engine, func\n'), ((3425, 3451), 'sqlalchemy.func.max', 'func.max', (['Measurement.date'], {}), '(Measurement.date)\n', (3433, 3451), False, 'from sqlalchemy import create_engine, func\n'), ((3498, 3524), 'sqlalchemy.func.min', 'func.min', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (3506, 3524), False, 'from sqlalchemy import create_engine, func\n'), ((3526, 3552), 'sqlalchemy.func.avg', 'func.avg', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (3534, 3552), False, 'from sqlalchemy import create_engine, func\n'), ((3554, 3580), 'sqlalchemy.func.max', 'func.max', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (3562, 3580), False, 'from sqlalchemy import create_engine, func\n'), ((4146, 4172), 'sqlalchemy.func.min', 'func.min', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (4154, 4172), False, 'from sqlalchemy import create_engine, func\n'), ((4174, 4200), 'sqlalchemy.func.avg', 'func.avg', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (4182, 4200), False, 'from sqlalchemy import create_engine, func\n'), ((4202, 4228), 'sqlalchemy.func.max', 'func.max', (['Measurement.tobs'], {}), '(Measurement.tobs)\n', (4210, 4228), False, 'from sqlalchemy import create_engine, func\n')] |
import numpy as np
import random
def assign_trait_values(organism_type: str, organism_id: int) -> list:
"""
Function takes in the type of organism and returns a list of the various
traits for that organism to be passed to the next list
Parameters
"""
if organism_type == 'Producer': # All for producer
# beta for producers should be 0.34 (Brose 2019 paper on body size)
body_size = np.random.exponential(scale = 0.34, size = 1)[0]
prey_limits = [None]*2
habitat_midpoint = round((np.random.uniform(low = 0, \
high = 1, \
size = 1)[0]), 3)
habitat = [habitat_midpoint, 0, 0]
if habitat_midpoint >= 0.2:
habitat[1] = round((habitat_midpoint - 0.2), 3)
else:
habitat[1] = 0
if habitat_midpoint <= 0.8:
habitat[2] = round((habitat_midpoint + 0.2), 3)
else:
habitat[2] = 1
else: # all for consumer
# beta for non-producers = 800 (Brose 2019 paper on body size)
body_size = np.random.exponential(scale = 800, size = 1)[0]
prey_limits = [0.05*body_size, 0.65*body_size]
habitat_midpoint = round((np.random.uniform(low = 0, \
high = 1, \
size = 1)[0]), 3)
habitat = habitat = [habitat_midpoint, 0, 0]
if habitat_midpoint >= 0.2:
habitat[1] = round((habitat_midpoint - 0.2), 3)
else:
habitat[1] = 0
if habitat_midpoint <= 0.8:
habitat[2] = round((habitat_midpoint + 0.2), 3)
else:
habitat[2] = 1
trait_list = [organism_id, \
organism_type, \
body_size, \
prey_limits, \
habitat, \
None] # biomass
return trait_list
def define_species_list(n: int) -> list:
"""
Function takes in the number of species and returns a list of lists
with a sublist for each species with necessary locations for the pieces
of data
Parameters
TO-DO:
1. Add in customization for web shape such that you can pass a shape
(probably something like hourglass, top/bottom-heavy) and then that can be
the thing that defines how many consumers there are etc
"""
# initialize species list
sp_list = [None]*n
i = 0
while (i < n):
organism_type = random.sample(['Producer', \
'Producer', \
'Consumer'], 1)[0]
sp_list[i] = assign_trait_values(organism_type = organism_type, \
organism_id = i)
i += 1 # increment
return sp_list
test_species = define_species_list(n = 4)
test_species[0][4][1]
test_species[2][3]
def determine_interaction(predator: int, prey: int, species_list:list) -> int:
predator = 1; prey = 0; species_list = test_species
pred_hab = species_list[predator][4]
prey_hab = species_list[prey][4]
prey_size = species_list[prey][2]
pred_min = species_list[predator][3][0]
pred_max = species_list[predator][3][1]
if (predator == prey) or (species_list[predator][1] == 'Producer'):
value = 0 # this is assuming no canibalism!!!
elif (((prey_hab[1] >= pred_hab[1] and prey_hab[1] <= pred_hab[2]) or \
(prey_hab[2] >= pred_hab[1] and prey_hab[2] <= pred_hab[2])) and \
(prey_size <= pred_max and prey_size >= pred_min)):
value = 1
else:
value = 0
return value
x = determine_interaction(1, 0, test_species)
def create_interaction_matrix(species_list:list) -> np.array:
"""
This function takes in the species list and returns an interaction matrix
that will form the basis of the networks to then be created
"""
j = 1; i = 0; species_list = test_species
interaction_matrix = np.zeros(shape = (len(species_list), \
len(species_list)), \
dtype = np.int8)
for i in range(interaction_matrix.shape[0]): # rows are prey
for j in range(interaction_matrix.shape[1]): # cols are predators
interaction_matrix[i][j] = \
determine_interaction(predator = j, \
prey = i, \
species_list = species_list)
test_species
interaction_matrix
def initialize_biomass(species_list:list) -> list:
"""
This function takes in a species list, and based on body size values,
assigns an initial biomass to each species for the purposes of having a
starting value to simulate through.
"""
### Important Assumptions
# No canibalism
# No variation in habitat association width
| [
"random.sample",
"numpy.random.exponential",
"numpy.random.uniform"
] | [((438, 479), 'numpy.random.exponential', 'np.random.exponential', ([], {'scale': '(0.34)', 'size': '(1)'}), '(scale=0.34, size=1)\n', (459, 479), True, 'import numpy as np\n'), ((1154, 1194), 'numpy.random.exponential', 'np.random.exponential', ([], {'scale': '(800)', 'size': '(1)'}), '(scale=800, size=1)\n', (1175, 1194), True, 'import numpy as np\n'), ((2595, 2649), 'random.sample', 'random.sample', (["['Producer', 'Producer', 'Consumer']", '(1)'], {}), "(['Producer', 'Producer', 'Consumer'], 1)\n", (2608, 2649), False, 'import random\n'), ((554, 594), 'numpy.random.uniform', 'np.random.uniform', ([], {'low': '(0)', 'high': '(1)', 'size': '(1)'}), '(low=0, high=1, size=1)\n', (571, 594), True, 'import numpy as np\n'), ((1293, 1333), 'numpy.random.uniform', 'np.random.uniform', ([], {'low': '(0)', 'high': '(1)', 'size': '(1)'}), '(low=0, high=1, size=1)\n', (1310, 1333), True, 'import numpy as np\n')] |
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style("dark")
plt.rcParams['figure.figsize'] = 16, 12
import pandas as pd
from tqdm import tqdm_notebook, tqdm
import io
from PIL import Image
from glob import glob
from collections import defaultdict
import os
import pickle
from optparse import OptionParser
from datetime import datetime
import json
import sys
import time
from shutil import copyfile
import cv2
cv2.ocl.setUseOpenCL(True)
import random
import imgaug as ia
from imgaug import augmenters as iaa
import torch
import torch.nn as nn
import torch.optim as optim
from torch.autograd import Variable
import torch.nn.functional as F
import torchvision
import torchvision.transforms as transforms
import torchvision.models as models
from kaggle_camera_model_id_lib.utils import PechkaBot, ImageList, NpzFolder, NCrops, MultiDataset
from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1
from kaggle_camera_model_id_lib.models import InceptionResNetV2fc, InceptionResNetV2fcSmall, InceptionResNetV2
from kaggle_camera_model_id_lib.models import ResNetDense, ResNetDenseFC
from kaggle_camera_model_id_lib.utils import jpg_compress, equalize_v_hist, hsv_convert
from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction
from kaggle_camera_model_id_lib.utils import patch_quality_dich, n_random_crops, n_pseudorandom_crops
_bot = PechkaBot()
def log(txt):
print(txt)
_bot.send_message(txt)
def train_pass(train_loader, model, criterion, optimizer):
loss_train_batch = 0
acc_train_batch = 0
for ix_batch, (X, Y) in tqdm(
enumerate(train_loader),
total=int(len(train_loader.dataset.imgs)/batch_size_train),
desc='Train #%i' % ix_epoch):
bs, ncrops, c, h, w = X.shape
X = X.view(-1, c, h, w)
Y = Y.view(ncrops*bs)
X_var = Variable(X.cuda())
Y_var = Variable(Y.cuda())
log_p = model(X_var)
loss = criterion(log_p, Y_var)
optimizer.zero_grad()
loss.backward()
optimizer.step()
loss_train_batch += loss.data[0]
acc_train_batch += ((log_p.max(1)[1] == Y_var).float().sum()/Y_var.shape[0]).data[0]
if options.is_debug and ix_batch > 50:
break
X_var = X_var.cpu()
del(X_var)
Y_var = Y_var.cpu()
del(Y_var)
loss_train_batch /= ix_batch + 1
acc_train_batch /= ix_batch + 1
return loss_train_batch, acc_train_batch
def val_pass(val_loader, model, criterion):
loss_val_batch = 0
acc_val_batch = 0
for ix_batch, (X, Y) in tqdm(
enumerate(val_loader),
total=int(len(val_loader.dataset.imgs)/batch_size_val),
desc='Val #%i' % ix_epoch):
bs, ncrops, c, h, w = X.shape
X = X.view(-1, c, h, w)
Y = Y.view(ncrops*bs)
X_var = Variable(X.cuda(), volatile=True)
Y_var = Variable(Y.cuda(), volatile=True)
log_p = model(X_var)
loss = criterion(log_p, Y_var)
loss_val_batch += loss.data[0]
acc_val_batch += ((log_p.max(1)[1] == Y_var).float().sum()/Y_var.shape[0]).data[0]
if options.is_debug and ix_batch > 50:
break
X_var = X_var.cpu()
del(X_var)
Y_var = Y_var.cpu()
del(Y_var)
loss_val_batch /= ix_batch + 1
acc_val_batch /= ix_batch + 1
return loss_val_batch, acc_val_batch
model_factory = {
'Vgg19Head_E_2b_bn': lambda n_classes: VggHead(num_classes=n_classes, vgg_key='E_2b', load_vgg_bn=True, batch_norm=True),
'Vgg19Head_E_3b_bn': lambda n_classes: VggHead(num_classes=n_classes, vgg_key='E_3b', load_vgg_bn=True, batch_norm=True),
'Vgg19Head_E_bn': lambda n_classes: VggHead(num_classes=n_classes, load_vgg_bn=True, vgg_key='E', batch_norm=True),
'Vgg11Head_A_bn': lambda n_classes: VggHead(num_classes=n_classes, load_vgg_bn=True, vgg_key='A', batch_norm=True),
'Vgg11Head_A': lambda n_classes: VggHead(num_classes=n_classes, load_vgg_bn=True, vgg_key='A', batch_norm=False),
'StyleVggHead_bn': lambda n_classes: StyleVggHead(num_classes=n_classes, load_vgg_bn=True),
'IEEEfcn': lambda n_classes: IEEEfcn(n_classes),
'resnet18fc_pretrained': lambda n_classes: ResNetFC(
models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes, load_resnet='resnet18'),
'resnet18fc': lambda n_classes: ResNetFC(
models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes, load_resnet=None),
'resnet18X_pretrained': lambda n_classes: ResNetX(
models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes, load_resnet='resnet18'),
'InceptionResNetV2fc_5_10_4': lambda n_classes: InceptionResNetV2fc(
num_classes=n_classes, nun_block35=5, num_block17=10, num_block8=4),
'InceptionResNetV2fcSmall_5_10': lambda n_classes: InceptionResNetV2fcSmall(
num_classes=n_classes, nun_block35=5, num_block17=10),
'resnet34fc_pretrained': lambda n_classes: ResNetFC(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34'),
'resnet34fc_pretrained_maxpool': lambda n_classes: ResNetFC(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34', pool_type='max'),
'resnet50fc_pretrained': lambda n_classes: ResNetFC(
models.resnet.Bottleneck, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet50'),
'FatNet1': lambda n_classes: FatNet1(n_classes),
'resnet34X_pretrained_maxpool': lambda n_classes: ResNetX(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34', pool_type='max'),
'resnet50X_pretrained_maxpool': lambda n_classes: ResNetX(
models.resnet.Bottleneck, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet50', pool_type='max'),
'InceptionResNetV2': lambda n_classes: InceptionResNetV2(num_classes=n_classes),
'ResNetDense34_pretrained': lambda n_classes: ResNetDense(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34'),
'ResNetDenseFC34_pretrained': lambda n_classes: ResNetDenseFC(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34',
zero_first_center=False),
'ResNetDenseFC34_pretrained_zfc': lambda n_classes: ResNetDenseFC(
models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes, load_resnet='resnet34',
zero_first_center=True)
}
def create_CELoss(prms):
if prms is None:
return nn.CrossEntropyLoss()
if 'weight' in prms:
prms['weight'] = torch.FloatTensor(prms['weight'])
return nn.CrossEntropyLoss(**prms)
criterion_factory = {
'CrossEntropyLoss': lambda prms: create_CELoss(prms),
'MultiMarginLoss': lambda prms: nn.MultiMarginLoss(**prms)
}
if __name__ == '__main__':
parser = OptionParser()
parser.add_option('-c',
'--config',
dest='cfg_path',
help='config path')
parser.add_option('-d',
'--debug',
action="store_true",
dest="is_debug")
(options, args) = parser.parse_args()
if options.cfg_path is None:
sys.exit('cfg_path is not provided')
if options.is_debug:
log('DEBUG MODE ON')
log('-----------\n\nStarting training process: \n %s\n %s' % (str(datetime.now()), __file__))
log('config: %s' % options.cfg_path)
with open(options.cfg_path) as f:
cfg = json.load(f)
log('Config:')
for k, v in cfg.items():
log(' %s = %s' % (k, v))
train_list_path = cfg['train_list_path']
val_path = cfg['val_path']
out_dir = cfg['out_dir']
model_path = cfg['model_path']
crop_size = cfg['crop_size']
step_crop_val = cfg['step_crop_val']
n_crops_train = cfg['n_crops_train']
batch_size_train = cfg['batch_size_train']
batch_size_val = cfg['batch_size_val']
workers = cfg['workers']
n_epoches = cfg['n_epoches']
model_type = cfg['model_type']
n_classes = cfg['n_classes']
learning_rate = cfg['learning_rate']
momentum = cfg['momentum']
lr_scheduler_step_size = cfg['lr_scheduler_step_size']
lr_scheduler_gamma = cfg['lr_scheduler_gamma']
weight_decay = cfg['weight_decay']
optim_type = cfg['optim_type']
crop_center_size = cfg['crop_center_size']
do_random_aug_kaggle = cfg['do_random_aug_kaggle']
p_random_aug_kaggle_train = cfg['p_random_aug_kaggle_train']
p_random_aug_kaggle_val = cfg['p_random_aug_kaggle_val']
do_hard_aug = cfg['do_hard_aug']
p_hard_aug_train = cfg['p_hard_aug_train']
p_hard_aug_val = cfg['p_hard_aug_val']
criterion_type = cfg['criterion_type']
criterion_params = cfg['criterion_params']
n_crops_search_train = cfg['n_crops_search_train']
train_list_pseudo_npz = cfg['train_list_pseudo_npz']
train_list_flickr = cfg['train_list_flickr']
to_tensor = transforms.ToTensor()
normalize = transforms.Normalize(
mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]
)
random_crop = transforms.RandomCrop(crop_size)
center_crop = transforms.CenterCrop(crop_center_size)
rvf = transforms.RandomVerticalFlip()
rhf = transforms.RandomHorizontalFlip()
random_flip = lambda img: rvf(rhf(img))
scale_05 = lambda img: scale_crop_pad(img, 0.5)
scale_08 = lambda img: scale_crop_pad(img, 0.8)
scale_15 = lambda img: scale_crop_pad(img, 1.5)
scale_20 = lambda img: scale_crop_pad(img, 2.0)
gamma_08 = lambda img: gamma_correction(img, 0.8)
gamma_12 = lambda img: gamma_correction(img, 1.2)
jpg_70 = lambda img: jpg_compress(img, (70, 71))
jpg_90 = lambda img: jpg_compress(img, (90, 91))
augs = [scale_05, scale_08, scale_15, scale_20, gamma_08, gamma_12, jpg_70, jpg_90]
def random_aug_kaggle(img, p=0.5):
if np.random.rand() < p:
return random.choice(augs)(img)
return img
blur = iaa.GaussianBlur(sigma=(0, 2))
sharpen = iaa.Sharpen(alpha=(0, 1), lightness=(0.5, 2))
emboss = iaa.Emboss(alpha=(0, 1), strength=(0, 2))
contrast_normalization = iaa.ContrastNormalization(alpha=(0.7, 1.3))
hard_aug = iaa.OneOf([blur, sharpen, emboss, contrast_normalization])
sometimes_train = iaa.Sometimes(p_hard_aug_train, hard_aug)
sometimes_val = iaa.Sometimes(p_hard_aug_val, hard_aug)
def aug_train(img):
#if min(img.size) > crop_center_size:
# return random_flip(random_crop(center_crop(img)))
#img_np = np.array(img)
#if img_np.shape[0] < crop_center_size and img_np.shape[1] > crop_center_size:
# n = np.random.randint(img_np.shape[1] - crop_center_size)
# return random_flip(random_crop(Image.fromarray(img_np[:, n:(n + crop_center_size), :])))
#if img_np.shape[1] < crop_center_size and img_np.shape[0] > crop_center_size:
# n = np.random.randint(img_np.shape[0] - crop_center_size)
# return random_flip(random_crop(Image.fromarray(img_np[n:(n + crop_center_size), :, :])))
return random_flip(random_crop(img))
def aug_train_fscore(img):
if min(img.size) > crop_center_size:
img_np = np.array(center_crop(img))
else:
img_np = np.array(img)
if img_np.shape[0] < crop_center_size and img_np.shape[1] > crop_center_size:
n = np.random.randint(img_np.shape[1] - crop_center_size)
img_np = img_np[:, n:(n + crop_center_size), :]
if img_np.shape[1] < crop_center_size and img_np.shape[0] > crop_center_size:
n = np.random.randint(img_np.shape[0] - crop_center_size)
img_np = img_np[n:(n + crop_center_size), :, :]
crops = n_pseudorandom_crops(img_np, crop_size, n_crops_train, n_crops_search_train, patch_quality_dich)
for img in crops:
yield random_flip(random_crop(Image.fromarray(img)))
def aug_optional_train(img):
if do_hard_aug:
img = Image.fromarray(sometimes_train.augment_image(np.array(img)))
if do_random_aug_kaggle:
img = random_aug_kaggle(img, p_random_aug_kaggle_train)
return img
def aug_optional_val(img):
if do_hard_aug:
img = Image.fromarray(sometimes_val.augment_image(np.array(img)))
if do_random_aug_kaggle:
img = random_aug_kaggle(img, p_random_aug_kaggle_val)
return img
if n_crops_search_train is None:
log(' -> default transform_train is selected')
transform_train = transforms.Compose([
transforms.Lambda(lambda img: [
aug_optional_train(aug_train(img))
for i in range(n_crops_train)
]),
transforms.Lambda(lambda crops: torch.stack([normalize(to_tensor(crop)) for crop in crops]))
])
else:
log(' -> dich fscore transform_train is selected')
transform_train = transforms.Compose([
transforms.Lambda(lambda img: [
aug_optional_train(img) for img in aug_train_fscore(img)
]),
transforms.Lambda(lambda crops: torch.stack([normalize(to_tensor(crop)) for crop in crops]))
])
ds_train = ImageList(
train_list_path,
transform=transform_train,
target_transform=transforms.Compose([
transforms.Lambda(lambda y: [y]*n_crops_train),
transforms.Lambda(lambda ylist: torch.LongTensor(ylist))
]))
train_ds_list = []
if train_list_pseudo_npz is not None:
ds_train_pseudo = NpzFolder(
train_list_pseudo_npz,
transform=transforms.Compose([
transforms.Lambda(lambda img: [
aug_train(Image.fromarray(img))
for i in range(n_crops_train)
]),
transforms.Lambda(lambda crops: torch.stack([normalize(to_tensor(crop)) for crop in crops]))
]),
target_transform=transforms.Compose([
transforms.Lambda(lambda y: [y]*n_crops_train),
transforms.Lambda(lambda ylist: torch.LongTensor(ylist))
]))
train_ds_list.append(ds_train_pseudo)
log(' -> pseudo dataset is loaded')
if train_list_flickr is not None:
ds_train_flickr = ImageList(
train_list_flickr,
transform=transform_train,
target_transform=transforms.Compose([
transforms.Lambda(lambda y: [y]*n_crops_train),
transforms.Lambda(lambda ylist: torch.LongTensor(ylist))
]))
train_ds_list.append(ds_train_flickr)
log(' -> flickr dataset is loaded')
if len(train_ds_list) > 0:
train_ds_list = [ds_train] + train_ds_list
ds_train = MultiDataset(train_ds_list)
log(' -> MultiDataset is created: %i' % len(train_ds_list))
#for ds in train_ds_list:
# print('; '.join(['%s: %i' % (k, v) for (k, v) in sorted(ds.class_to_idx.items(), key=lambda t: t[1])]))
#sys.exit('DEBUG EXIT')
train_loader = torch.utils.data.DataLoader(
ds_train,
batch_size=batch_size_train,
shuffle=True,
num_workers=workers,
pin_memory=True)
log('train_loader.size: %i' % len(train_loader.dataset.imgs))
if val_path is not None:
ds_val = NpzFolder(
val_path,
transform=transforms.Compose([
transforms.Lambda(lambda img: NCrops(img, crop_size=crop_size, step=step_crop_val)),
transforms.Lambda(lambda crops: torch.stack([normalize(to_tensor(aug_optional_val(Image.fromarray(crop))))
for crop in crops]))
]),
target_transform=transforms.Compose([
transforms.Lambda(lambda y: [y]*int(np.floor(1 + (512 - crop_size)/step_crop_val))**2),
transforms.Lambda(lambda ylist: torch.LongTensor(ylist))
]))
val_loader = torch.utils.data.DataLoader(
ds_val,
batch_size=batch_size_val,
shuffle=False,
num_workers=workers,
pin_memory=True)
log('val_loader.size: %i' % len(val_loader.dataset.imgs))
model = model_factory[model_type](n_classes)
if model_path is not None:
checkpoint = torch.load(model_path)
model.load_state_dict(checkpoint['model'])
loss_train = checkpoint['loss_train']
acc_train = checkpoint['acc_train']
loss_val = checkpoint['loss_val']
acc_val = checkpoint['acc_val']
log('Last state:\n TLoss: %0.6f\n TAcc: %0.4f\n VLoss: %0.6f\n VAcc: %0.4f' %
(loss_train[-1], acc_train[-1], loss_val[-1], acc_val[-1]))
del(checkpoint)
log('model loaded: %s' % model_path)
model = model.cuda()
criterion = criterion_factory[criterion_type](criterion_params)
criterion = criterion.cuda()
if optim_type == 'sgd':
optimizer = optim.SGD(
model.parameters(),
lr=learning_rate,
momentum=momentum,
dampening=0,
weight_decay=weight_decay,
nesterov=True)
elif optim_type == 'adam':
optimizer = optim.Adam(
model.parameters(),
lr=learning_rate,
betas=(0.9, 0.999),
weight_decay=weight_decay)
log('optimizer %s:\n' % str(type(optimizer)) +
'\n'.join([('%s: %s' % (k, str(v))) for (k, v) in
optimizer.param_groups[0].items() if k != 'params']))
lr_scheduler = torch.optim.lr_scheduler.StepLR(
optimizer,
step_size=lr_scheduler_step_size,
gamma=lr_scheduler_gamma)
loss_train = []
acc_train = []
loss_val = []
acc_val = []
epoch_time = []
for ix_epoch in range(n_epoches):
start_time = time.time()
lr_scheduler.step()
model.train()
loss_train_batch, acc_train_batch = train_pass(train_loader, model, criterion, optimizer)
if val_path is not None:
model.eval()
loss_val_batch, acc_val_batch = val_pass(val_loader, model, criterion)
else:
loss_val_batch, acc_val_batch = 0.0, 0.0
loss_train.append(loss_train_batch)
acc_train.append(acc_train_batch)
loss_val.append(loss_val_batch)
acc_val.append(acc_val_batch)
epoch_time.append(time.time() - start_time)
log('ix_epoch: %i' % ix_epoch)
log(' Time: %0.2f\n TLoss: %0.6f\n TAcc: %0.4f\n VLoss: %0.6f\n VAcc: %0.4f' %
(epoch_time[-1], loss_train[-1], acc_train[-1], loss_val[-1], acc_val[-1]))
torch.save({
'model': model.state_dict(),
'opt': optimizer.state_dict(),
'epoch': ix_epoch + 1,
'loss_train': loss_train,
'acc_train': acc_train,
'loss_val': loss_val,
'acc_val': acc_val,
'class_to_idx': train_loader.dataset.class_to_idx,
'cfg': cfg
}, os.path.join(out_dir, 'checkpoint.tar'))
if val_path is not None and acc_val[-1] == np.max(acc_val):
log('Best found!')
copyfile(
os.path.join(out_dir, 'checkpoint.tar'),
os.path.join(out_dir, 'best_model.tar'))
if options.is_debug and ix_epoch == 1:
log('END OF DEBUG')
break | [
"torch.nn.CrossEntropyLoss",
"numpy.random.rand",
"imgaug.augmenters.GaussianBlur",
"kaggle_camera_model_id_lib.models.InceptionResNetV2",
"kaggle_camera_model_id_lib.utils.n_pseudorandom_crops",
"kaggle_camera_model_id_lib.models.ResNetX",
"torchvision.transforms.Lambda",
"torch.LongTensor",
"seabo... | [((91, 112), 'seaborn.set_style', 'sns.set_style', (['"""dark"""'], {}), "('dark')\n", (104, 112), True, 'import seaborn as sns\n'), ((462, 488), 'cv2.ocl.setUseOpenCL', 'cv2.ocl.setUseOpenCL', (['(True)'], {}), '(True)\n', (482, 488), False, 'import cv2\n'), ((1459, 1470), 'kaggle_camera_model_id_lib.utils.PechkaBot', 'PechkaBot', ([], {}), '()\n', (1468, 1470), False, 'from kaggle_camera_model_id_lib.utils import PechkaBot, ImageList, NpzFolder, NCrops, MultiDataset\n'), ((6788, 6815), 'torch.nn.CrossEntropyLoss', 'nn.CrossEntropyLoss', ([], {}), '(**prms)\n', (6807, 6815), True, 'import torch.nn as nn\n'), ((7004, 7018), 'optparse.OptionParser', 'OptionParser', ([], {}), '()\n', (7016, 7018), False, 'from optparse import OptionParser\n'), ((9158, 9179), 'torchvision.transforms.ToTensor', 'transforms.ToTensor', ([], {}), '()\n', (9177, 9179), True, 'import torchvision.transforms as transforms\n'), ((9196, 9271), 'torchvision.transforms.Normalize', 'transforms.Normalize', ([], {'mean': '[0.485, 0.456, 0.406]', 'std': '[0.229, 0.224, 0.225]'}), '(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])\n', (9216, 9271), True, 'import torchvision.transforms as transforms\n'), ((9312, 9344), 'torchvision.transforms.RandomCrop', 'transforms.RandomCrop', (['crop_size'], {}), '(crop_size)\n', (9333, 9344), True, 'import torchvision.transforms as transforms\n'), ((9363, 9402), 'torchvision.transforms.CenterCrop', 'transforms.CenterCrop', (['crop_center_size'], {}), '(crop_center_size)\n', (9384, 9402), True, 'import torchvision.transforms as transforms\n'), ((9413, 9444), 'torchvision.transforms.RandomVerticalFlip', 'transforms.RandomVerticalFlip', ([], {}), '()\n', (9442, 9444), True, 'import torchvision.transforms as transforms\n'), ((9455, 9488), 'torchvision.transforms.RandomHorizontalFlip', 'transforms.RandomHorizontalFlip', ([], {}), '()\n', (9486, 9488), True, 'import torchvision.transforms as transforms\n'), ((10210, 10240), 'imgaug.augmenters.GaussianBlur', 'iaa.GaussianBlur', ([], {'sigma': '(0, 2)'}), '(sigma=(0, 2))\n', (10226, 10240), True, 'from imgaug import augmenters as iaa\n'), ((10255, 10300), 'imgaug.augmenters.Sharpen', 'iaa.Sharpen', ([], {'alpha': '(0, 1)', 'lightness': '(0.5, 2)'}), '(alpha=(0, 1), lightness=(0.5, 2))\n', (10266, 10300), True, 'from imgaug import augmenters as iaa\n'), ((10314, 10355), 'imgaug.augmenters.Emboss', 'iaa.Emboss', ([], {'alpha': '(0, 1)', 'strength': '(0, 2)'}), '(alpha=(0, 1), strength=(0, 2))\n', (10324, 10355), True, 'from imgaug import augmenters as iaa\n'), ((10385, 10428), 'imgaug.augmenters.ContrastNormalization', 'iaa.ContrastNormalization', ([], {'alpha': '(0.7, 1.3)'}), '(alpha=(0.7, 1.3))\n', (10410, 10428), True, 'from imgaug import augmenters as iaa\n'), ((10444, 10502), 'imgaug.augmenters.OneOf', 'iaa.OneOf', (['[blur, sharpen, emboss, contrast_normalization]'], {}), '([blur, sharpen, emboss, contrast_normalization])\n', (10453, 10502), True, 'from imgaug import augmenters as iaa\n'), ((10525, 10566), 'imgaug.augmenters.Sometimes', 'iaa.Sometimes', (['p_hard_aug_train', 'hard_aug'], {}), '(p_hard_aug_train, hard_aug)\n', (10538, 10566), True, 'from imgaug import augmenters as iaa\n'), ((10587, 10626), 'imgaug.augmenters.Sometimes', 'iaa.Sometimes', (['p_hard_aug_val', 'hard_aug'], {}), '(p_hard_aug_val, hard_aug)\n', (10600, 10626), True, 'from imgaug import augmenters as iaa\n'), ((15466, 15589), 'torch.utils.data.DataLoader', 'torch.utils.data.DataLoader', (['ds_train'], {'batch_size': 'batch_size_train', 'shuffle': '(True)', 'num_workers': 'workers', 'pin_memory': '(True)'}), '(ds_train, batch_size=batch_size_train, shuffle=\n True, num_workers=workers, pin_memory=True)\n', (15493, 15589), False, 'import torch\n'), ((18049, 18155), 'torch.optim.lr_scheduler.StepLR', 'torch.optim.lr_scheduler.StepLR', (['optimizer'], {'step_size': 'lr_scheduler_step_size', 'gamma': 'lr_scheduler_gamma'}), '(optimizer, step_size=lr_scheduler_step_size,\n gamma=lr_scheduler_gamma)\n', (18080, 18155), False, 'import torch\n'), ((3627, 3713), 'kaggle_camera_model_id_lib.models.VggHead', 'VggHead', ([], {'num_classes': 'n_classes', 'vgg_key': '"""E_2b"""', 'load_vgg_bn': '(True)', 'batch_norm': '(True)'}), "(num_classes=n_classes, vgg_key='E_2b', load_vgg_bn=True, batch_norm\n =True)\n", (3634, 3713), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((3753, 3839), 'kaggle_camera_model_id_lib.models.VggHead', 'VggHead', ([], {'num_classes': 'n_classes', 'vgg_key': '"""E_3b"""', 'load_vgg_bn': '(True)', 'batch_norm': '(True)'}), "(num_classes=n_classes, vgg_key='E_3b', load_vgg_bn=True, batch_norm\n =True)\n", (3760, 3839), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((3876, 3954), 'kaggle_camera_model_id_lib.models.VggHead', 'VggHead', ([], {'num_classes': 'n_classes', 'load_vgg_bn': '(True)', 'vgg_key': '"""E"""', 'batch_norm': '(True)'}), "(num_classes=n_classes, load_vgg_bn=True, vgg_key='E', batch_norm=True)\n", (3883, 3954), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((3996, 4074), 'kaggle_camera_model_id_lib.models.VggHead', 'VggHead', ([], {'num_classes': 'n_classes', 'load_vgg_bn': '(True)', 'vgg_key': '"""A"""', 'batch_norm': '(True)'}), "(num_classes=n_classes, load_vgg_bn=True, vgg_key='A', batch_norm=True)\n", (4003, 4074), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4113, 4192), 'kaggle_camera_model_id_lib.models.VggHead', 'VggHead', ([], {'num_classes': 'n_classes', 'load_vgg_bn': '(True)', 'vgg_key': '"""A"""', 'batch_norm': '(False)'}), "(num_classes=n_classes, load_vgg_bn=True, vgg_key='A', batch_norm=False)\n", (4120, 4192), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4235, 4288), 'kaggle_camera_model_id_lib.models.StyleVggHead', 'StyleVggHead', ([], {'num_classes': 'n_classes', 'load_vgg_bn': '(True)'}), '(num_classes=n_classes, load_vgg_bn=True)\n', (4247, 4288), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4323, 4341), 'kaggle_camera_model_id_lib.models.IEEEfcn', 'IEEEfcn', (['n_classes'], {}), '(n_classes)\n', (4330, 4341), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4390, 4489), 'kaggle_camera_model_id_lib.models.ResNetFC', 'ResNetFC', (['models.resnet.BasicBlock', '[2, 2, 2, 2]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet18"""'}), "(models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes,\n load_resnet='resnet18')\n", (4398, 4489), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4532, 4625), 'kaggle_camera_model_id_lib.models.ResNetFC', 'ResNetFC', (['models.resnet.BasicBlock', '[2, 2, 2, 2]'], {'num_classes': 'n_classes', 'load_resnet': 'None'}), '(models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes,\n load_resnet=None)\n', (4540, 4625), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4678, 4776), 'kaggle_camera_model_id_lib.models.ResNetX', 'ResNetX', (['models.resnet.BasicBlock', '[2, 2, 2, 2]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet18"""'}), "(models.resnet.BasicBlock, [2, 2, 2, 2], num_classes=n_classes,\n load_resnet='resnet18')\n", (4685, 4776), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((4835, 4926), 'kaggle_camera_model_id_lib.models.InceptionResNetV2fc', 'InceptionResNetV2fc', ([], {'num_classes': 'n_classes', 'nun_block35': '(5)', 'num_block17': '(10)', 'num_block8': '(4)'}), '(num_classes=n_classes, nun_block35=5, num_block17=10,\n num_block8=4)\n', (4854, 4926), False, 'from kaggle_camera_model_id_lib.models import InceptionResNetV2fc, InceptionResNetV2fcSmall, InceptionResNetV2\n'), ((4988, 5066), 'kaggle_camera_model_id_lib.models.InceptionResNetV2fcSmall', 'InceptionResNetV2fcSmall', ([], {'num_classes': 'n_classes', 'nun_block35': '(5)', 'num_block17': '(10)'}), '(num_classes=n_classes, nun_block35=5, num_block17=10)\n', (5012, 5066), False, 'from kaggle_camera_model_id_lib.models import InceptionResNetV2fc, InceptionResNetV2fcSmall, InceptionResNetV2\n'), ((5124, 5223), 'kaggle_camera_model_id_lib.models.ResNetFC', 'ResNetFC', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34')\n", (5132, 5223), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((5285, 5401), 'kaggle_camera_model_id_lib.models.ResNetFC', 'ResNetFC', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""', 'pool_type': '"""max"""'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34', pool_type='max')\n", (5293, 5401), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((5455, 5554), 'kaggle_camera_model_id_lib.models.ResNetFC', 'ResNetFC', (['models.resnet.Bottleneck', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet50"""'}), "(models.resnet.Bottleneck, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet50')\n", (5463, 5554), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((5594, 5612), 'kaggle_camera_model_id_lib.models.FatNet1', 'FatNet1', (['n_classes'], {}), '(n_classes)\n', (5601, 5612), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((5668, 5783), 'kaggle_camera_model_id_lib.models.ResNetX', 'ResNetX', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""', 'pool_type': '"""max"""'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34', pool_type='max')\n", (5675, 5783), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((5844, 5959), 'kaggle_camera_model_id_lib.models.ResNetX', 'ResNetX', (['models.resnet.Bottleneck', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet50"""', 'pool_type': '"""max"""'}), "(models.resnet.Bottleneck, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet50', pool_type='max')\n", (5851, 5959), False, 'from kaggle_camera_model_id_lib.models import VggHead, StyleVggHead, IEEEfcn, ResNetFC, ResNetX, FatNet1\n'), ((6009, 6049), 'kaggle_camera_model_id_lib.models.InceptionResNetV2', 'InceptionResNetV2', ([], {'num_classes': 'n_classes'}), '(num_classes=n_classes)\n', (6026, 6049), False, 'from kaggle_camera_model_id_lib.models import InceptionResNetV2fc, InceptionResNetV2fcSmall, InceptionResNetV2\n'), ((6101, 6203), 'kaggle_camera_model_id_lib.models.ResNetDense', 'ResNetDense', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34')\n", (6112, 6203), False, 'from kaggle_camera_model_id_lib.models import ResNetDense, ResNetDenseFC\n'), ((6262, 6391), 'kaggle_camera_model_id_lib.models.ResNetDenseFC', 'ResNetDenseFC', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""', 'zero_first_center': '(False)'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34', zero_first_center=False)\n", (6275, 6391), False, 'from kaggle_camera_model_id_lib.models import ResNetDense, ResNetDenseFC\n'), ((6463, 6591), 'kaggle_camera_model_id_lib.models.ResNetDenseFC', 'ResNetDenseFC', (['models.resnet.BasicBlock', '[3, 4, 6, 3]'], {'num_classes': 'n_classes', 'load_resnet': '"""resnet34"""', 'zero_first_center': '(True)'}), "(models.resnet.BasicBlock, [3, 4, 6, 3], num_classes=n_classes,\n load_resnet='resnet34', zero_first_center=True)\n", (6476, 6591), False, 'from kaggle_camera_model_id_lib.models import ResNetDense, ResNetDenseFC\n'), ((6671, 6692), 'torch.nn.CrossEntropyLoss', 'nn.CrossEntropyLoss', ([], {}), '()\n', (6690, 6692), True, 'import torch.nn as nn\n'), ((6743, 6776), 'torch.FloatTensor', 'torch.FloatTensor', (["prms['weight']"], {}), "(prms['weight'])\n", (6760, 6776), False, 'import torch\n'), ((6934, 6960), 'torch.nn.MultiMarginLoss', 'nn.MultiMarginLoss', ([], {}), '(**prms)\n', (6952, 6960), True, 'import torch.nn as nn\n'), ((7393, 7429), 'sys.exit', 'sys.exit', (['"""cfg_path is not provided"""'], {}), "('cfg_path is not provided')\n", (7401, 7429), False, 'import sys\n'), ((7686, 7698), 'json.load', 'json.load', (['f'], {}), '(f)\n', (7695, 7698), False, 'import json\n'), ((9565, 9589), 'kaggle_camera_model_id_lib.utils.scale_crop_pad', 'scale_crop_pad', (['img', '(0.5)'], {}), '(img, 0.5)\n', (9579, 9589), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9617, 9641), 'kaggle_camera_model_id_lib.utils.scale_crop_pad', 'scale_crop_pad', (['img', '(0.8)'], {}), '(img, 0.8)\n', (9631, 9641), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9669, 9693), 'kaggle_camera_model_id_lib.utils.scale_crop_pad', 'scale_crop_pad', (['img', '(1.5)'], {}), '(img, 1.5)\n', (9683, 9693), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9721, 9745), 'kaggle_camera_model_id_lib.utils.scale_crop_pad', 'scale_crop_pad', (['img', '(2.0)'], {}), '(img, 2.0)\n', (9735, 9745), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9773, 9799), 'kaggle_camera_model_id_lib.utils.gamma_correction', 'gamma_correction', (['img', '(0.8)'], {}), '(img, 0.8)\n', (9789, 9799), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9827, 9853), 'kaggle_camera_model_id_lib.utils.gamma_correction', 'gamma_correction', (['img', '(1.2)'], {}), '(img, 1.2)\n', (9843, 9853), False, 'from kaggle_camera_model_id_lib.utils import scale_crop_pad, gamma_correction\n'), ((9879, 9906), 'kaggle_camera_model_id_lib.utils.jpg_compress', 'jpg_compress', (['img', '(70, 71)'], {}), '(img, (70, 71))\n', (9891, 9906), False, 'from kaggle_camera_model_id_lib.utils import jpg_compress, equalize_v_hist, hsv_convert\n'), ((9932, 9959), 'kaggle_camera_model_id_lib.utils.jpg_compress', 'jpg_compress', (['img', '(90, 91)'], {}), '(img, (90, 91))\n', (9944, 9959), False, 'from kaggle_camera_model_id_lib.utils import jpg_compress, equalize_v_hist, hsv_convert\n'), ((12018, 12118), 'kaggle_camera_model_id_lib.utils.n_pseudorandom_crops', 'n_pseudorandom_crops', (['img_np', 'crop_size', 'n_crops_train', 'n_crops_search_train', 'patch_quality_dich'], {}), '(img_np, crop_size, n_crops_train, n_crops_search_train,\n patch_quality_dich)\n', (12038, 12118), False, 'from kaggle_camera_model_id_lib.utils import patch_quality_dich, n_random_crops, n_pseudorandom_crops\n'), ((15149, 15176), 'kaggle_camera_model_id_lib.utils.MultiDataset', 'MultiDataset', (['train_ds_list'], {}), '(train_ds_list)\n', (15161, 15176), False, 'from kaggle_camera_model_id_lib.utils import PechkaBot, ImageList, NpzFolder, NCrops, MultiDataset\n'), ((16416, 16536), 'torch.utils.data.DataLoader', 'torch.utils.data.DataLoader', (['ds_val'], {'batch_size': 'batch_size_val', 'shuffle': '(False)', 'num_workers': 'workers', 'pin_memory': '(True)'}), '(ds_val, batch_size=batch_size_val, shuffle=\n False, num_workers=workers, pin_memory=True)\n', (16443, 16536), False, 'import torch\n'), ((16776, 16798), 'torch.load', 'torch.load', (['model_path'], {}), '(model_path)\n', (16786, 16798), False, 'import torch\n'), ((18343, 18354), 'time.time', 'time.time', ([], {}), '()\n', (18352, 18354), False, 'import time\n'), ((10104, 10120), 'numpy.random.rand', 'np.random.rand', ([], {}), '()\n', (10118, 10120), True, 'import numpy as np\n'), ((11531, 11544), 'numpy.array', 'np.array', (['img'], {}), '(img)\n', (11539, 11544), True, 'import numpy as np\n'), ((19536, 19575), 'os.path.join', 'os.path.join', (['out_dir', '"""checkpoint.tar"""'], {}), "(out_dir, 'checkpoint.tar')\n", (19548, 19575), False, 'import os\n'), ((10145, 10164), 'random.choice', 'random.choice', (['augs'], {}), '(augs)\n', (10158, 10164), False, 'import random\n'), ((11655, 11708), 'numpy.random.randint', 'np.random.randint', (['(img_np.shape[1] - crop_center_size)'], {}), '(img_np.shape[1] - crop_center_size)\n', (11672, 11708), True, 'import numpy as np\n'), ((11883, 11936), 'numpy.random.randint', 'np.random.randint', (['(img_np.shape[0] - crop_center_size)'], {}), '(img_np.shape[0] - crop_center_size)\n', (11900, 11936), True, 'import numpy as np\n'), ((18908, 18919), 'time.time', 'time.time', ([], {}), '()\n', (18917, 18919), False, 'import time\n'), ((19629, 19644), 'numpy.max', 'np.max', (['acc_val'], {}), '(acc_val)\n', (19635, 19644), True, 'import numpy as np\n'), ((19715, 19754), 'os.path.join', 'os.path.join', (['out_dir', '"""checkpoint.tar"""'], {}), "(out_dir, 'checkpoint.tar')\n", (19727, 19754), False, 'import os\n'), ((19772, 19811), 'os.path.join', 'os.path.join', (['out_dir', '"""best_model.tar"""'], {}), "(out_dir, 'best_model.tar')\n", (19784, 19811), False, 'import os\n'), ((7560, 7574), 'datetime.datetime.now', 'datetime.now', ([], {}), '()\n', (7572, 7574), False, 'from datetime import datetime\n'), ((12332, 12345), 'numpy.array', 'np.array', (['img'], {}), '(img)\n', (12340, 12345), True, 'import numpy as np\n'), ((12599, 12612), 'numpy.array', 'np.array', (['img'], {}), '(img)\n', (12607, 12612), True, 'import numpy as np\n'), ((13673, 13721), 'torchvision.transforms.Lambda', 'transforms.Lambda', (['(lambda y: [y] * n_crops_train)'], {}), '(lambda y: [y] * n_crops_train)\n', (13690, 13721), True, 'import torchvision.transforms as transforms\n'), ((12183, 12203), 'PIL.Image.fromarray', 'Image.fromarray', (['img'], {}), '(img)\n', (12198, 12203), False, 'from PIL import Image\n'), ((14356, 14404), 'torchvision.transforms.Lambda', 'transforms.Lambda', (['(lambda y: [y] * n_crops_train)'], {}), '(lambda y: [y] * n_crops_train)\n', (14373, 14404), True, 'import torchvision.transforms as transforms\n'), ((14803, 14851), 'torchvision.transforms.Lambda', 'transforms.Lambda', (['(lambda y: [y] * n_crops_train)'], {}), '(lambda y: [y] * n_crops_train)\n', (14820, 14851), True, 'import torchvision.transforms as transforms\n'), ((13765, 13788), 'torch.LongTensor', 'torch.LongTensor', (['ylist'], {}), '(ylist)\n', (13781, 13788), False, 'import torch\n'), ((14452, 14475), 'torch.LongTensor', 'torch.LongTensor', (['ylist'], {}), '(ylist)\n', (14468, 14475), False, 'import torch\n'), ((14899, 14922), 'torch.LongTensor', 'torch.LongTensor', (['ylist'], {}), '(ylist)\n', (14915, 14922), False, 'import torch\n'), ((15875, 15927), 'kaggle_camera_model_id_lib.utils.NCrops', 'NCrops', (['img'], {'crop_size': 'crop_size', 'step': 'step_crop_val'}), '(img, crop_size=crop_size, step=step_crop_val)\n', (15881, 15927), False, 'from kaggle_camera_model_id_lib.utils import PechkaBot, ImageList, NpzFolder, NCrops, MultiDataset\n'), ((16354, 16377), 'torch.LongTensor', 'torch.LongTensor', (['ylist'], {}), '(ylist)\n', (16370, 16377), False, 'import torch\n'), ((14073, 14093), 'PIL.Image.fromarray', 'Image.fromarray', (['img'], {}), '(img)\n', (14088, 14093), False, 'from PIL import Image\n'), ((16254, 16301), 'numpy.floor', 'np.floor', (['(1 + (512 - crop_size) / step_crop_val)'], {}), '(1 + (512 - crop_size) / step_crop_val)\n', (16262, 16301), True, 'import numpy as np\n'), ((16028, 16049), 'PIL.Image.fromarray', 'Image.fromarray', (['crop'], {}), '(crop)\n', (16043, 16049), False, 'from PIL import Image\n')] |
""" adaptation of part of <NAME>'s libvaxdata test suite for <NAME>'s PyVAX wrapper
Authors
-------
| <NAME> (<EMAIL>)
<NAME>
University of California, Los Angeles.
"""
import pyvax as pv
import numpy as np
from pytest import approx
def func_i2(x):
fstr = pv.from_vax_i2(x)
print(np.frombuffer(fstr, dtype=np.int16, count=1))
return np.frombuffer(fstr, dtype=np.int16, count=1)
def func_i4(x):
fstr = pv.from_vax_i4(x)
print(np.frombuffer(fstr, dtype=np.int32, count=1))
return np.frombuffer(fstr, dtype=np.int32, count=1)
def func_f4(x):
fstr = pv.from_vax_r4(x)
print(np.frombuffer(fstr, dtype=np.float32, count=1))
return np.frombuffer(fstr, dtype=np.float32, count=1)
def func_d8(x):
fstr = pv.from_vax_d8(x)
print(np.frombuffer(fstr, dtype=np.float64, count=1))
return np.frombuffer(fstr, dtype=np.float64, count=1)
def func_g8(x):
fstr = pv.from_vax_g8(x)
print(np.frombuffer(fstr, dtype=np.float64, count=1))
return np.frombuffer(fstr, dtype=np.float64, count=1)
def test_i2():
assert func_i2(b'\x01\x00') == 1
assert func_i2(b'\xFF\xFF') == -1
assert func_i2(b'\x00\x01') == 256
assert func_i2(b'\x00\xFF') == -256
assert func_i2(b'\x39\x30') == 12345
assert func_i2(b'\xC7\xCF') == -12345
def test_i4():
assert func_i4(b'\x01\x00\x00\x00') == 1
assert func_i4(b'\xFF\xFF\xFF\xFF') == -1
assert func_i4(b'\x00\x01\x00\x00') == 256
assert func_i4(b'\x00\xFF\xFF\xFF') == -256
assert func_i4(b'\x00\x00\x01\x00') == 65536
assert func_i4(b'\x00\x00\xFF\xFF') == -65536
assert func_i4(b'\x00\x00\x00\x01') == 16777216
assert func_i4(b'\x00\x00\x00\xFF') == -16777216
assert func_i4(b'\x15\xCD\x5B\x07') == 123456789
assert func_i4(b'\xEB\x32\xA4\xF8') == -123456789
def test_f4():
assert func_f4(b'\x80\x40\x00\x00') == approx(1.000000, rel=1e-7)
assert func_f4(b'\x80\xC0\x00\x00') == approx(-1.000000, rel=1e-7)
assert func_f4(b'\x60\x41\x00\x00') == approx(3.500000, rel=1e-7)
assert func_f4(b'\x60\xC1\x00\x00') == approx(-3.500000, rel=1e-7)
assert func_f4(b'\x49\x41\xD0\x0F') == approx(3.141590, rel=1e-7)
assert func_f4(b'\x49\xC1\xD0\x0F') == approx(-3.141590, rel=1e-7)
assert func_f4(b'\xF0\x7D\xC2\xBD') == approx(9.9999999E+36, rel=1e-7)
assert func_f4(b'\xF0\xFD\xC2\xBD') == approx(-9.9999999E+36, rel=1e-7)
assert func_f4(b'\x08\x03\xEA\x1C') == approx(9.9999999E-38, rel=1e-7)
assert func_f4(b'\x08\x83\xEA\x1C') == approx(-9.9999999E-38, rel=1e-7)
assert func_f4(b'\x9E\x40\x52\x06') == approx(1.234568, rel=1e-7)
assert func_f4(b'\x9E\xC0\x52\x06') == approx(-1.234568, rel=1e-7)
def test_d8():
assert func_d8(b'\x80\x40\x00\x00\x00\x00\x00\x00') == approx(1.000000000000000, rel=1e-14)
assert func_d8(b'\x80\xC0\x00\x00\x00\x00\x00\x00') == approx(-1.000000000000000, rel=1e-14)
assert func_d8(b'\x60\x41\x00\x00\x00\x00\x00\x00') == approx(3.500000000000000, rel=1e-14)
assert func_d8(b'\x60\xC1\x00\x00\x00\x00\x00\x00') == approx(-3.500000000000000, rel=1e-14)
assert func_d8(b'\x49\x41\xDA\x0F\x21\xA2\xBE\x68') == approx(3.141592653589793, rel=1e-14)
assert func_d8(b'\x49\xC1\xDA\x0F\x21\xA2\xBE\x68') == approx(-3.141592653589793, rel=1e-14)
assert func_d8(b'\xF0\x7D\xC2\xBD\xBB\x1A\xDB\x48') == approx(1.0000000000000000E+37, rel=1e-14)
assert func_d8(b'\xF0\xFD\xC2\xBD\xBB\x1A\xDB\x48') == approx(-1.0000000000000000E+37, rel=1e-14)
assert func_d8(b'\x08\x03\xEA\x1C\x54\x14\x75\x5C') == approx(9.9999999999999999E-38, rel=1e-14)
assert func_d8(b'\x08\x83\xEA\x1C\x54\x14\x75\x5C') == approx(-9.9999999999999999E-38, rel=1e-14)
assert func_d8(b'\x9E\x40\x52\x06\x62\x14\xE7\xCE') == approx(1.234567890123450, rel=1e-14)
assert func_d8(b'\x9E\xC0\x52\x06\x62\x14\xE7\xCE') == approx(-1.234567890123450, rel=1e-14)
def test_g8():
assert func_g8(b'\x10\x40\x00\x00\x00\x00\x00\x00') == approx(1.000000000000000, rel=1e-14)
assert func_g8(b'\x10\xC0\x00\x00\x00\x00\x00\x00') == approx(-1.000000000000000, rel=1e-14)
assert func_g8(b'\x2C\x40\x00\x00\x00\x00\x00\x00') == approx(3.500000000000000, rel=1e-14)
assert func_g8(b'\x2C\xC0\x00\x00\x00\x00\x00\x00') == approx(-3.500000000000000, rel=1e-14)
assert func_g8(b'\x29\x40\xFB\x21\x44\x54\x18\x2D') == approx(3.141592653589793, rel=1e-14)
assert func_g8(b'\x29\xC0\xFB\x21\x44\x54\x18\x2D') == approx(-3.141592653589793, rel=1e-14)
assert func_g8(b'\xBE\x47\xB8\x17\x57\x43\x1B\x69') == approx(1.0000000000000000E+37, rel=1e-14)
assert func_g8(b'\xBE\xC7\xB8\x17\x57\x43\x1B\x69') == approx(-1.0000000000000000E+37, rel=1e-14)
assert func_g8(b'\x61\x38\x9D\x03\x8A\x42\x8F\x8B') == approx(9.9999999999999999E-38, rel=1e-14)
assert func_g8(b'\x61\xB8\x9D\x03\x8A\x42\x8F\x8B') == approx(-9.9999999999999999E-38, rel=1e-14)
assert func_g8(b'\x13\x40\xCA\xC0\x8C\x42\xDD\x59') == approx(1.234567890123450, rel=1e-14)
assert func_g8(b'\x13\xC0\xCA\xC0\x8C\x42\xDD\x59') == approx(-1.234567890123450, rel=1e-14)
| [
"pytest.approx",
"pyvax.from_vax_g8",
"pyvax.from_vax_i2",
"numpy.frombuffer",
"pyvax.from_vax_d8",
"pyvax.from_vax_r4",
"pyvax.from_vax_i4"
] | [((268, 285), 'pyvax.from_vax_i2', 'pv.from_vax_i2', (['x'], {}), '(x)\n', (282, 285), True, 'import pyvax as pv\n'), ((353, 397), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.int16', 'count': '(1)'}), '(fstr, dtype=np.int16, count=1)\n', (366, 397), True, 'import numpy as np\n'), ((426, 443), 'pyvax.from_vax_i4', 'pv.from_vax_i4', (['x'], {}), '(x)\n', (440, 443), True, 'import pyvax as pv\n'), ((511, 555), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.int32', 'count': '(1)'}), '(fstr, dtype=np.int32, count=1)\n', (524, 555), True, 'import numpy as np\n'), ((584, 601), 'pyvax.from_vax_r4', 'pv.from_vax_r4', (['x'], {}), '(x)\n', (598, 601), True, 'import pyvax as pv\n'), ((671, 717), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float32', 'count': '(1)'}), '(fstr, dtype=np.float32, count=1)\n', (684, 717), True, 'import numpy as np\n'), ((746, 763), 'pyvax.from_vax_d8', 'pv.from_vax_d8', (['x'], {}), '(x)\n', (760, 763), True, 'import pyvax as pv\n'), ((833, 879), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float64', 'count': '(1)'}), '(fstr, dtype=np.float64, count=1)\n', (846, 879), True, 'import numpy as np\n'), ((908, 925), 'pyvax.from_vax_g8', 'pv.from_vax_g8', (['x'], {}), '(x)\n', (922, 925), True, 'import pyvax as pv\n'), ((995, 1041), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float64', 'count': '(1)'}), '(fstr, dtype=np.float64, count=1)\n', (1008, 1041), True, 'import numpy as np\n'), ((296, 340), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.int16', 'count': '(1)'}), '(fstr, dtype=np.int16, count=1)\n', (309, 340), True, 'import numpy as np\n'), ((454, 498), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.int32', 'count': '(1)'}), '(fstr, dtype=np.int32, count=1)\n', (467, 498), True, 'import numpy as np\n'), ((612, 658), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float32', 'count': '(1)'}), '(fstr, dtype=np.float32, count=1)\n', (625, 658), True, 'import numpy as np\n'), ((774, 820), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float64', 'count': '(1)'}), '(fstr, dtype=np.float64, count=1)\n', (787, 820), True, 'import numpy as np\n'), ((936, 982), 'numpy.frombuffer', 'np.frombuffer', (['fstr'], {'dtype': 'np.float64', 'count': '(1)'}), '(fstr, dtype=np.float64, count=1)\n', (949, 982), True, 'import numpy as np\n'), ((1928, 1950), 'pytest.approx', 'approx', (['(1.0)'], {'rel': '(1e-07)'}), '(1.0, rel=1e-07)\n', (1934, 1950), False, 'from pytest import approx\n'), ((2003, 2026), 'pytest.approx', 'approx', (['(-1.0)'], {'rel': '(1e-07)'}), '(-1.0, rel=1e-07)\n', (2009, 2026), False, 'from pytest import approx\n'), ((2079, 2101), 'pytest.approx', 'approx', (['(3.5)'], {'rel': '(1e-07)'}), '(3.5, rel=1e-07)\n', (2085, 2101), False, 'from pytest import approx\n'), ((2154, 2177), 'pytest.approx', 'approx', (['(-3.5)'], {'rel': '(1e-07)'}), '(-3.5, rel=1e-07)\n', (2160, 2177), False, 'from pytest import approx\n'), ((2230, 2256), 'pytest.approx', 'approx', (['(3.14159)'], {'rel': '(1e-07)'}), '(3.14159, rel=1e-07)\n', (2236, 2256), False, 'from pytest import approx\n'), ((2305, 2332), 'pytest.approx', 'approx', (['(-3.14159)'], {'rel': '(1e-07)'}), '(-3.14159, rel=1e-07)\n', (2311, 2332), False, 'from pytest import approx\n'), ((2381, 2413), 'pytest.approx', 'approx', (['(9.9999999e+36)'], {'rel': '(1e-07)'}), '(9.9999999e+36, rel=1e-07)\n', (2387, 2413), False, 'from pytest import approx\n'), ((2456, 2489), 'pytest.approx', 'approx', (['(-9.9999999e+36)'], {'rel': '(1e-07)'}), '(-9.9999999e+36, rel=1e-07)\n', (2462, 2489), False, 'from pytest import approx\n'), ((2532, 2564), 'pytest.approx', 'approx', (['(9.9999999e-38)'], {'rel': '(1e-07)'}), '(9.9999999e-38, rel=1e-07)\n', (2538, 2564), False, 'from pytest import approx\n'), ((2607, 2640), 'pytest.approx', 'approx', (['(-9.9999999e-38)'], {'rel': '(1e-07)'}), '(-9.9999999e-38, rel=1e-07)\n', (2613, 2640), False, 'from pytest import approx\n'), ((2683, 2710), 'pytest.approx', 'approx', (['(1.234568)'], {'rel': '(1e-07)'}), '(1.234568, rel=1e-07)\n', (2689, 2710), False, 'from pytest import approx\n'), ((2758, 2786), 'pytest.approx', 'approx', (['(-1.234568)'], {'rel': '(1e-07)'}), '(-1.234568, rel=1e-07)\n', (2764, 2786), False, 'from pytest import approx\n'), ((2866, 2888), 'pytest.approx', 'approx', (['(1.0)'], {'rel': '(1e-14)'}), '(1.0, rel=1e-14)\n', (2872, 2888), False, 'from pytest import approx\n'), ((2963, 2986), 'pytest.approx', 'approx', (['(-1.0)'], {'rel': '(1e-14)'}), '(-1.0, rel=1e-14)\n', (2969, 2986), False, 'from pytest import approx\n'), ((3060, 3082), 'pytest.approx', 'approx', (['(3.5)'], {'rel': '(1e-14)'}), '(3.5, rel=1e-14)\n', (3066, 3082), False, 'from pytest import approx\n'), ((3157, 3180), 'pytest.approx', 'approx', (['(-3.5)'], {'rel': '(1e-14)'}), '(-3.5, rel=1e-14)\n', (3163, 3180), False, 'from pytest import approx\n'), ((3254, 3290), 'pytest.approx', 'approx', (['(3.141592653589793)'], {'rel': '(1e-14)'}), '(3.141592653589793, rel=1e-14)\n', (3260, 3290), False, 'from pytest import approx\n'), ((3350, 3387), 'pytest.approx', 'approx', (['(-3.141592653589793)'], {'rel': '(1e-14)'}), '(-3.141592653589793, rel=1e-14)\n', (3356, 3387), False, 'from pytest import approx\n'), ((3447, 3471), 'pytest.approx', 'approx', (['(1e+37)'], {'rel': '(1e-14)'}), '(1e+37, rel=1e-14)\n', (3453, 3471), False, 'from pytest import approx\n'), ((3548, 3573), 'pytest.approx', 'approx', (['(-1e+37)'], {'rel': '(1e-14)'}), '(-1e+37, rel=1e-14)\n', (3554, 3573), False, 'from pytest import approx\n'), ((3650, 3674), 'pytest.approx', 'approx', (['(1e-37)'], {'rel': '(1e-14)'}), '(1e-37, rel=1e-14)\n', (3656, 3674), False, 'from pytest import approx\n'), ((3751, 3776), 'pytest.approx', 'approx', (['(-1e-37)'], {'rel': '(1e-14)'}), '(-1e-37, rel=1e-14)\n', (3757, 3776), False, 'from pytest import approx\n'), ((3853, 3888), 'pytest.approx', 'approx', (['(1.23456789012345)'], {'rel': '(1e-14)'}), '(1.23456789012345, rel=1e-14)\n', (3859, 3888), False, 'from pytest import approx\n'), ((3949, 3985), 'pytest.approx', 'approx', (['(-1.23456789012345)'], {'rel': '(1e-14)'}), '(-1.23456789012345, rel=1e-14)\n', (3955, 3985), False, 'from pytest import approx\n'), ((4062, 4084), 'pytest.approx', 'approx', (['(1.0)'], {'rel': '(1e-14)'}), '(1.0, rel=1e-14)\n', (4068, 4084), False, 'from pytest import approx\n'), ((4158, 4181), 'pytest.approx', 'approx', (['(-1.0)'], {'rel': '(1e-14)'}), '(-1.0, rel=1e-14)\n', (4164, 4181), False, 'from pytest import approx\n'), ((4255, 4277), 'pytest.approx', 'approx', (['(3.5)'], {'rel': '(1e-14)'}), '(3.5, rel=1e-14)\n', (4261, 4277), False, 'from pytest import approx\n'), ((4351, 4374), 'pytest.approx', 'approx', (['(-3.5)'], {'rel': '(1e-14)'}), '(-3.5, rel=1e-14)\n', (4357, 4374), False, 'from pytest import approx\n'), ((4448, 4484), 'pytest.approx', 'approx', (['(3.141592653589793)'], {'rel': '(1e-14)'}), '(3.141592653589793, rel=1e-14)\n', (4454, 4484), False, 'from pytest import approx\n'), ((4544, 4581), 'pytest.approx', 'approx', (['(-3.141592653589793)'], {'rel': '(1e-14)'}), '(-3.141592653589793, rel=1e-14)\n', (4550, 4581), False, 'from pytest import approx\n'), ((4641, 4665), 'pytest.approx', 'approx', (['(1e+37)'], {'rel': '(1e-14)'}), '(1e+37, rel=1e-14)\n', (4647, 4665), False, 'from pytest import approx\n'), ((4742, 4767), 'pytest.approx', 'approx', (['(-1e+37)'], {'rel': '(1e-14)'}), '(-1e+37, rel=1e-14)\n', (4748, 4767), False, 'from pytest import approx\n'), ((4844, 4868), 'pytest.approx', 'approx', (['(1e-37)'], {'rel': '(1e-14)'}), '(1e-37, rel=1e-14)\n', (4850, 4868), False, 'from pytest import approx\n'), ((4945, 4970), 'pytest.approx', 'approx', (['(-1e-37)'], {'rel': '(1e-14)'}), '(-1e-37, rel=1e-14)\n', (4951, 4970), False, 'from pytest import approx\n'), ((5047, 5082), 'pytest.approx', 'approx', (['(1.23456789012345)'], {'rel': '(1e-14)'}), '(1.23456789012345, rel=1e-14)\n', (5053, 5082), False, 'from pytest import approx\n'), ((5143, 5179), 'pytest.approx', 'approx', (['(-1.23456789012345)'], {'rel': '(1e-14)'}), '(-1.23456789012345, rel=1e-14)\n', (5149, 5179), False, 'from pytest import approx\n')] |
import csv
from os import listdir
from os.path import isfile, join
import numpy as np
import pandas as pd
from scipy.io import arff
from clustering_algorithms import CLARA, PAM, get_initial_points
from data_loaders import load_data
from timer import Timer
from visualizers import plot_data
DIRECTORY = "datasets/artificial"
FILES = [
"insect.arff",
"flame.arff",
"zelnik3.arff",
"zelnik5.arff",
"R15.arff",
"square3.arff",
"sizes5.arff",
"cure-t1-2000n-2D.arff",
"xclara.arff",
"s-set1.arff",
]
if __name__ == "__main__":
# files = [f for f in listdir(DIRECTORY) if isfile(join(DIRECTORY, f))]
files = FILES
for file in files:
try:
filepath = join(DIRECTORY, file)
data = load_data(filepath)
points = get_initial_points(data["df"], data["coordinates_columns"])
clara_time = []
pam_time = []
t = Timer()
for iteration in range(10):
# count clara time
t.start()
clara = CLARA(points, len(data["classes"]), labels=data["classes"])
clara.run()
t.stop()
clara_time.append(t.time)
# # count pam time
# t.start()
# pam = PAM(points, len(data["classes"]), labels=data["classes"])
# pam.run()
# t.stop()
# pam_time.append(t.time)
results = {
"filename": file,
"classes": len(data["classes"]),
"coordinates_attributes": len(data["coordinates_columns"]),
"points": len(points),
"mean_time_clara": np.mean(clara_time),
# "mean_time_pam": np.mean(pam_time),
}
with open("results_clara.csv", "a") as csvfile:
writer = csv.DictWriter(csvfile, fieldnames=results.keys())
writer.writerow(results)
except:
pass
| [
"clustering_algorithms.get_initial_points",
"numpy.mean",
"os.path.join",
"data_loaders.load_data",
"timer.Timer"
] | [((720, 741), 'os.path.join', 'join', (['DIRECTORY', 'file'], {}), '(DIRECTORY, file)\n', (724, 741), False, 'from os.path import isfile, join\n'), ((761, 780), 'data_loaders.load_data', 'load_data', (['filepath'], {}), '(filepath)\n', (770, 780), False, 'from data_loaders import load_data\n'), ((803, 862), 'clustering_algorithms.get_initial_points', 'get_initial_points', (["data['df']", "data['coordinates_columns']"], {}), "(data['df'], data['coordinates_columns'])\n", (821, 862), False, 'from clustering_algorithms import CLARA, PAM, get_initial_points\n'), ((934, 941), 'timer.Timer', 'Timer', ([], {}), '()\n', (939, 941), False, 'from timer import Timer\n'), ((1723, 1742), 'numpy.mean', 'np.mean', (['clara_time'], {}), '(clara_time)\n', (1730, 1742), True, 'import numpy as np\n')] |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 8 16:58:10 2020
@author: nephilim
"""
import keras
import numpy as np
import my_Im2col
from matplotlib import pyplot,cm
import skimage.transform
import T_PowerGain
import DataNormalized
import Reshape2Encoder
def GetPatch(Image,patch_size,slidingDis):
blocks,idx=my_Im2col.my_im2col(Image,patch_size,slidingDis)
return blocks,idx
def CalculationSNR(Image,Noise):
frac_up=np.sum(Image**2)
frac_down=np.sum((Image-Noise)**2)
SNR=10*np.log10(frac_up/frac_down)
return SNR
class AutoEncoder():
def __init__(self,ImageShape,filters,kernel_size,latent_dim):
self.ImageShape=ImageShape
self.filters=filters
self.kernel_size=kernel_size
self.latent_dim=latent_dim
def Encoder(self):
self.Encoder_Input=keras.Input(shape=self.ImageShape,name='Encoder_Input_2D')
x=self.Encoder_Input
for idx,_ in enumerate(self.filters):
x=keras.layers.Conv2D(filters=self.filters[idx],kernel_size=self.kernel_size[idx],activation='relu',padding='same')(x)
x=keras.layers.BatchNormalization()(x)
x=keras.layers.MaxPool2D((2,2))(x)
self.shape=keras.backend.int_shape(x)
# print(self.shape)
x=keras.layers.Flatten()(x)
Encoder_Output=keras.layers.Dense(self.latent_dim,name='Encoder_Ouput_1D')(x)
self.EncoderMode=keras.models.Model(inputs=self.Encoder_Input,outputs=Encoder_Output,name='EncoderPart')
self.EncoderMode.summary()
self.EncoderMode.compile(loss='mse',optimizer='adam')
def Decoder(self):
Decoder_Input=keras.Input(shape=(self.latent_dim,),name='Decoder_Input_1D')
x=keras.layers.Dense(self.shape[1]*self.shape[2]*self.shape[3])(Decoder_Input)
x=keras.layers.Reshape((self.shape[1],self.shape[2],self.shape[3]))(x)
for idx,_ in enumerate(self.filters):
x=keras.layers.Conv2DTranspose(filters=self.filters[len(self.filters)-idx-1],kernel_size=self.kernel_size[len(self.kernel_size)-idx-1],activation='relu',padding='same')(x)
x=keras.layers.BatchNormalization()(x)
x=keras.layers.UpSampling2D((2,2))(x)
Decoder_Output=keras.layers.Conv2DTranspose(filters=1,kernel_size=5,activation='sigmoid',padding='same',name='Decoder_Output_1D')(x)
self.DecoderMode=keras.models.Model(inputs=Decoder_Input,outputs=Decoder_Output)
self.DecoderMode.summary()
self.DecoderMode.compile(loss='mse',optimizer='adam')
if __name__=='__main__':
AutoEncoder_=AutoEncoder(ImageShape=(512,512,1),filters=[16,32,64],kernel_size=[5,5,5],latent_dim=256)
AutoEncoder_.Encoder()
patch_size=(512,512)
slidingDis=64
Iteration=100
ProfileGain_train=[]
for iteration in range(Iteration):
Profile=np.load('./GPR_Modelling/Profile_TunnelLining/TunnelLining_Iter_%s.npy'%iteration)
ProfileGain=T_PowerGain.tpowGain(Profile,np.arange(7000)/4,0.9)
ProfileGain=skimage.transform.resize(ProfileGain,(512,512),mode='edge')
ProfileGain=DataNormalized.DataNormalized(ProfileGain)/255
ProfileGain_Patch,_=GetPatch(ProfileGain,patch_size,slidingDis)
ProfileGain_train.append(ProfileGain_Patch)
Iteration=100
compare=1
for iteration in range(Iteration):
Profile=np.load('./GPR_Modelling/ProfileAutoEncoder/%s_iter_record_%s_comp.npy'%(iteration,compare))
ProfileGain=T_PowerGain.tpowGain(Profile,np.arange(7000)/4,0.9)
ProfileGain=skimage.transform.resize(ProfileGain,(512,512),mode='edge')
ProfileGain=DataNormalized.DataNormalized(ProfileGain)/255
ProfileGain_Patch,_=GetPatch(ProfileGain,patch_size,slidingDis)
ProfileGain_train.append(ProfileGain_Patch)
ProfileGain_train=np.array(ProfileGain_train)
Profile_train=Reshape2Encoder.ReshapeData2Encoder(ProfileGain_train,patch_size)
del ProfileGain,ProfileGain_Patch,ProfileGain_train
layer_outputs=[layer.output for layer in AutoEncoder_.EncoderMode.layers[1:None]]
activation_model=keras.models.Model(inputs=AutoEncoder_.EncoderMode.input,outputs=layer_outputs)
activations=activation_model.predict(Profile_train[2:3,:,:])
# pyplot.figure()
# pyplot.imshow(ProfileGain)
# pyplot.figure()
# pyplot.imshow(activations[1][0,:,:,0])
# pyplot.figure()
# pyplot.imshow(activations[3][0,:,:,0])
# pyplot.figure()
# pyplot.imshow(activations[5][0,:,:,0])
# pyplot.figure()
# pyplot.imshow(ProfileGain)
# pyplot.figure()
# pyplot.imshow(display_grid[0,:,:])
# pyplot.figure()
# pyplot.imshow(display_grid[1,:,:])
# pyplot.figure()
# pyplot.imshow(display_grid[2,:,:])
# pyplot.figure()
# pyplot.imshow(Profile_train[1541,:,:,0])
# # pyplot.figure()
# # pyplot.imshow(activations[1][0,:,:,0])
# # pyplot.figure()
# # pyplot.imshow(activations[3][0,:,:,0])
# # pyplot.figure()
# # pyplot.imshow(activations[5][0,:,:,0])
# image_per_row=16
# for layer_activation in activations:
# n_features=layer_activation.shape[-1]
# size=layer_activation.shape[1]
# n_cols=n_features//image_per_row
# display_grid=np.zeros((size*n_cols,image_per_row*size))
# for col in range(n_cols):
# for row in range(image_per_row):
# channel_image=layer_activation[0,:,:,col*image_per_row+row]
# display_grid[col*size:(col+1)*size,row*size:(row+1)*size]=channel_image
# pyplot.figure()
# pyplot.imshow(display_grid[:,:])
# pyplot.axis('off')
pyplot.figure()
data=Profile_train[2:3,:,:]
data=data[0,:,:,0]
pyplot.imshow(data,cmap=cm.seismic)
pyplot.axis('off')
pyplot.savefig('OriginalInput.png',dpi=1000)
FirstConv2DLayer=activations[2]
image_per_row=4
n_features=FirstConv2DLayer.shape[-1]
size=FirstConv2DLayer.shape[1]
n_cols=n_features//image_per_row
display_grid=np.zeros((n_cols*size,image_per_row*size))
for col in range(n_cols):
for row in range(image_per_row):
channel_image=FirstConv2DLayer[0,:,:,col*image_per_row+row]
display_grid[col*size:(col+1)*size,row*size:(row+1)*size]=channel_image
pyplot.figure()
pyplot.imshow(display_grid[:,:],vmin=-0.2,vmax=0.4,cmap=cm.seismic)
pyplot.axis('off')
pyplot.savefig('FirstConv2D.png',dpi=1000)
FirstConv2DLayer=activations[5]
image_per_row=8
n_features=FirstConv2DLayer.shape[-1]
size=FirstConv2DLayer.shape[1]
n_cols=n_features//image_per_row
display_grid=np.zeros((n_cols*size,image_per_row*size))
for col in range(n_cols):
for row in range(image_per_row):
channel_image=FirstConv2DLayer[0,:,:,col*image_per_row+row]
display_grid[col*size:(col+1)*size,row*size:(row+1)*size]=channel_image
pyplot.figure()
pyplot.imshow(display_grid[:,:],vmin=-0.2,vmax=0.4,cmap=cm.seismic)
pyplot.axis('off')
pyplot.savefig('SecondConv2D.png',dpi=1000)
FirstConv2DLayer=activations[8]
image_per_row=8
n_features=FirstConv2DLayer.shape[-1]
size=FirstConv2DLayer.shape[1]
n_cols=n_features//image_per_row
display_grid=np.zeros((n_cols*size,image_per_row*size))
for col in range(n_cols):
for row in range(image_per_row):
channel_image=FirstConv2DLayer[0,:,:,col*image_per_row+row]
display_grid[col*size:(col+1)*size,row*size:(row+1)*size]=channel_image
pyplot.figure()
pyplot.imshow(display_grid[:,:],vmin=-0.2,vmax=0.4,cmap=cm.seismic)
pyplot.axis('off')
pyplot.savefig('ThirdConv2D.png',dpi=1000)
| [
"keras.layers.Conv2D",
"numpy.log10",
"Reshape2Encoder.ReshapeData2Encoder",
"numpy.array",
"keras.layers.Dense",
"numpy.arange",
"matplotlib.pyplot.imshow",
"keras.models.Model",
"matplotlib.pyplot.axis",
"matplotlib.pyplot.savefig",
"my_Im2col.my_im2col",
"keras.layers.Flatten",
"keras.lay... | [((341, 391), 'my_Im2col.my_im2col', 'my_Im2col.my_im2col', (['Image', 'patch_size', 'slidingDis'], {}), '(Image, patch_size, slidingDis)\n', (360, 391), False, 'import my_Im2col\n'), ((458, 476), 'numpy.sum', 'np.sum', (['(Image ** 2)'], {}), '(Image ** 2)\n', (464, 476), True, 'import numpy as np\n'), ((489, 517), 'numpy.sum', 'np.sum', (['((Image - Noise) ** 2)'], {}), '((Image - Noise) ** 2)\n', (495, 517), True, 'import numpy as np\n'), ((3885, 3912), 'numpy.array', 'np.array', (['ProfileGain_train'], {}), '(ProfileGain_train)\n', (3893, 3912), True, 'import numpy as np\n'), ((3931, 3997), 'Reshape2Encoder.ReshapeData2Encoder', 'Reshape2Encoder.ReshapeData2Encoder', (['ProfileGain_train', 'patch_size'], {}), '(ProfileGain_train, patch_size)\n', (3966, 3997), False, 'import Reshape2Encoder\n'), ((4171, 4256), 'keras.models.Model', 'keras.models.Model', ([], {'inputs': 'AutoEncoder_.EncoderMode.input', 'outputs': 'layer_outputs'}), '(inputs=AutoEncoder_.EncoderMode.input, outputs=layer_outputs\n )\n', (4189, 4256), False, 'import keras\n'), ((5731, 5746), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (5744, 5746), False, 'from matplotlib import pyplot, cm\n'), ((5806, 5842), 'matplotlib.pyplot.imshow', 'pyplot.imshow', (['data'], {'cmap': 'cm.seismic'}), '(data, cmap=cm.seismic)\n', (5819, 5842), False, 'from matplotlib import pyplot, cm\n'), ((5846, 5864), 'matplotlib.pyplot.axis', 'pyplot.axis', (['"""off"""'], {}), "('off')\n", (5857, 5864), False, 'from matplotlib import pyplot, cm\n'), ((5869, 5914), 'matplotlib.pyplot.savefig', 'pyplot.savefig', (['"""OriginalInput.png"""'], {'dpi': '(1000)'}), "('OriginalInput.png', dpi=1000)\n", (5883, 5914), False, 'from matplotlib import pyplot, cm\n'), ((6106, 6153), 'numpy.zeros', 'np.zeros', (['(n_cols * size, image_per_row * size)'], {}), '((n_cols * size, image_per_row * size))\n', (6114, 6153), True, 'import numpy as np\n'), ((6380, 6395), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (6393, 6395), False, 'from matplotlib import pyplot, cm\n'), ((6400, 6471), 'matplotlib.pyplot.imshow', 'pyplot.imshow', (['display_grid[:, :]'], {'vmin': '(-0.2)', 'vmax': '(0.4)', 'cmap': 'cm.seismic'}), '(display_grid[:, :], vmin=-0.2, vmax=0.4, cmap=cm.seismic)\n', (6413, 6471), False, 'from matplotlib import pyplot, cm\n'), ((6472, 6490), 'matplotlib.pyplot.axis', 'pyplot.axis', (['"""off"""'], {}), "('off')\n", (6483, 6490), False, 'from matplotlib import pyplot, cm\n'), ((6495, 6538), 'matplotlib.pyplot.savefig', 'pyplot.savefig', (['"""FirstConv2D.png"""'], {'dpi': '(1000)'}), "('FirstConv2D.png', dpi=1000)\n", (6509, 6538), False, 'from matplotlib import pyplot, cm\n'), ((6730, 6777), 'numpy.zeros', 'np.zeros', (['(n_cols * size, image_per_row * size)'], {}), '((n_cols * size, image_per_row * size))\n', (6738, 6777), True, 'import numpy as np\n'), ((7004, 7019), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (7017, 7019), False, 'from matplotlib import pyplot, cm\n'), ((7024, 7095), 'matplotlib.pyplot.imshow', 'pyplot.imshow', (['display_grid[:, :]'], {'vmin': '(-0.2)', 'vmax': '(0.4)', 'cmap': 'cm.seismic'}), '(display_grid[:, :], vmin=-0.2, vmax=0.4, cmap=cm.seismic)\n', (7037, 7095), False, 'from matplotlib import pyplot, cm\n'), ((7096, 7114), 'matplotlib.pyplot.axis', 'pyplot.axis', (['"""off"""'], {}), "('off')\n", (7107, 7114), False, 'from matplotlib import pyplot, cm\n'), ((7119, 7163), 'matplotlib.pyplot.savefig', 'pyplot.savefig', (['"""SecondConv2D.png"""'], {'dpi': '(1000)'}), "('SecondConv2D.png', dpi=1000)\n", (7133, 7163), False, 'from matplotlib import pyplot, cm\n'), ((7355, 7402), 'numpy.zeros', 'np.zeros', (['(n_cols * size, image_per_row * size)'], {}), '((n_cols * size, image_per_row * size))\n', (7363, 7402), True, 'import numpy as np\n'), ((7629, 7644), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (7642, 7644), False, 'from matplotlib import pyplot, cm\n'), ((7649, 7720), 'matplotlib.pyplot.imshow', 'pyplot.imshow', (['display_grid[:, :]'], {'vmin': '(-0.2)', 'vmax': '(0.4)', 'cmap': 'cm.seismic'}), '(display_grid[:, :], vmin=-0.2, vmax=0.4, cmap=cm.seismic)\n', (7662, 7720), False, 'from matplotlib import pyplot, cm\n'), ((7721, 7739), 'matplotlib.pyplot.axis', 'pyplot.axis', (['"""off"""'], {}), "('off')\n", (7732, 7739), False, 'from matplotlib import pyplot, cm\n'), ((7744, 7787), 'matplotlib.pyplot.savefig', 'pyplot.savefig', (['"""ThirdConv2D.png"""'], {'dpi': '(1000)'}), "('ThirdConv2D.png', dpi=1000)\n", (7758, 7787), False, 'from matplotlib import pyplot, cm\n'), ((525, 554), 'numpy.log10', 'np.log10', (['(frac_up / frac_down)'], {}), '(frac_up / frac_down)\n', (533, 554), True, 'import numpy as np\n'), ((847, 906), 'keras.Input', 'keras.Input', ([], {'shape': 'self.ImageShape', 'name': '"""Encoder_Input_2D"""'}), "(shape=self.ImageShape, name='Encoder_Input_2D')\n", (858, 906), False, 'import keras\n'), ((1254, 1280), 'keras.backend.int_shape', 'keras.backend.int_shape', (['x'], {}), '(x)\n', (1277, 1280), False, 'import keras\n'), ((1456, 1550), 'keras.models.Model', 'keras.models.Model', ([], {'inputs': 'self.Encoder_Input', 'outputs': 'Encoder_Output', 'name': '"""EncoderPart"""'}), "(inputs=self.Encoder_Input, outputs=Encoder_Output, name=\n 'EncoderPart')\n", (1474, 1550), False, 'import keras\n'), ((1695, 1757), 'keras.Input', 'keras.Input', ([], {'shape': '(self.latent_dim,)', 'name': '"""Decoder_Input_1D"""'}), "(shape=(self.latent_dim,), name='Decoder_Input_1D')\n", (1706, 1757), False, 'import keras\n'), ((2420, 2484), 'keras.models.Model', 'keras.models.Model', ([], {'inputs': 'Decoder_Input', 'outputs': 'Decoder_Output'}), '(inputs=Decoder_Input, outputs=Decoder_Output)\n', (2438, 2484), False, 'import keras\n'), ((2896, 2984), 'numpy.load', 'np.load', (["('./GPR_Modelling/Profile_TunnelLining/TunnelLining_Iter_%s.npy' % iteration)"], {}), "('./GPR_Modelling/Profile_TunnelLining/TunnelLining_Iter_%s.npy' %\n iteration)\n", (2903, 2984), True, 'import numpy as np\n'), ((3418, 3518), 'numpy.load', 'np.load', (["('./GPR_Modelling/ProfileAutoEncoder/%s_iter_record_%s_comp.npy' % (\n iteration, compare))"], {}), "('./GPR_Modelling/ProfileAutoEncoder/%s_iter_record_%s_comp.npy' % (\n iteration, compare))\n", (3425, 3518), True, 'import numpy as np\n'), ((1319, 1341), 'keras.layers.Flatten', 'keras.layers.Flatten', ([], {}), '()\n', (1339, 1341), False, 'import keras\n'), ((1368, 1428), 'keras.layers.Dense', 'keras.layers.Dense', (['self.latent_dim'], {'name': '"""Encoder_Ouput_1D"""'}), "(self.latent_dim, name='Encoder_Ouput_1D')\n", (1386, 1428), False, 'import keras\n'), ((1767, 1832), 'keras.layers.Dense', 'keras.layers.Dense', (['(self.shape[1] * self.shape[2] * self.shape[3])'], {}), '(self.shape[1] * self.shape[2] * self.shape[3])\n', (1785, 1832), False, 'import keras\n'), ((1854, 1921), 'keras.layers.Reshape', 'keras.layers.Reshape', (['(self.shape[1], self.shape[2], self.shape[3])'], {}), '((self.shape[1], self.shape[2], self.shape[3]))\n', (1874, 1921), False, 'import keras\n'), ((2277, 2399), 'keras.layers.Conv2DTranspose', 'keras.layers.Conv2DTranspose', ([], {'filters': '(1)', 'kernel_size': '(5)', 'activation': '"""sigmoid"""', 'padding': '"""same"""', 'name': '"""Decoder_Output_1D"""'}), "(filters=1, kernel_size=5, activation='sigmoid',\n padding='same', name='Decoder_Output_1D')\n", (2305, 2399), False, 'import keras\n'), ((3151, 3193), 'DataNormalized.DataNormalized', 'DataNormalized.DataNormalized', (['ProfileGain'], {}), '(ProfileGain)\n', (3180, 3193), False, 'import DataNormalized\n'), ((3683, 3725), 'DataNormalized.DataNormalized', 'DataNormalized.DataNormalized', (['ProfileGain'], {}), '(ProfileGain)\n', (3712, 3725), False, 'import DataNormalized\n'), ((995, 1116), 'keras.layers.Conv2D', 'keras.layers.Conv2D', ([], {'filters': 'self.filters[idx]', 'kernel_size': 'self.kernel_size[idx]', 'activation': '"""relu"""', 'padding': '"""same"""'}), "(filters=self.filters[idx], kernel_size=self.kernel_size\n [idx], activation='relu', padding='same')\n", (1014, 1116), False, 'import keras\n'), ((1126, 1159), 'keras.layers.BatchNormalization', 'keras.layers.BatchNormalization', ([], {}), '()\n', (1157, 1159), False, 'import keras\n'), ((1177, 1207), 'keras.layers.MaxPool2D', 'keras.layers.MaxPool2D', (['(2, 2)'], {}), '((2, 2))\n', (1199, 1207), False, 'import keras\n'), ((2167, 2200), 'keras.layers.BatchNormalization', 'keras.layers.BatchNormalization', ([], {}), '()\n', (2198, 2200), False, 'import keras\n'), ((2218, 2251), 'keras.layers.UpSampling2D', 'keras.layers.UpSampling2D', (['(2, 2)'], {}), '((2, 2))\n', (2243, 2251), False, 'import keras\n'), ((3028, 3043), 'numpy.arange', 'np.arange', (['(7000)'], {}), '(7000)\n', (3037, 3043), True, 'import numpy as np\n'), ((3560, 3575), 'numpy.arange', 'np.arange', (['(7000)'], {}), '(7000)\n', (3569, 3575), True, 'import numpy as np\n')] |
import sys
import numpy as np
np.set_printoptions(precision=2, threshold=sys.maxsize)
from scipy.linalg import block_diag
from qpsolvers import solve_qp
from util import util
from pnc.data_saver import DataSaver
class IHWBC(object):
"""
Implicit Hierarchy Whole Body Control
------------------
Usage:
update_setting --> solve
"""
def __init__(self, sf, sa, sv, data_save=False):
self._n_q_dot = sa.shape[1]
self._n_active = sa.shape[0]
self._n_passive = sv.shape[0]
self._sf = sf
self._snf = np.concatenate(
(np.zeros((self._n_active + self._n_passive, 6)),
np.eye(self._n_active + self._n_passive)),
axis=1)
self._sa = sa
self._sv = sv
self._trq_limit = None
self._lambda_q_ddot = 0.
self._lambda_rf = 0.
self._w_rf = 0.
self._w_hierarchy = 0.
self._b_data_save = data_save
if self._b_data_save:
self._data_saver = DataSaver()
@property
def trq_limit(self):
return self._trq_limit
@property
def lambda_q_ddot(self):
return self._lambda_q_ddot
@property
def lambda_rf(self):
return self._lambda_rf
@property
def w_hierarchy(self):
return self._w_hierarchy
@property
def w_rf(self):
return self._w_rf
@trq_limit.setter
def trq_limit(self, val):
assert val.shape[0] == self._n_active
self._trq_limit = np.copy(val)
@lambda_q_ddot.setter
def lambda_q_ddot(self, val):
self._lambda_q_ddot = val
@lambda_rf.setter
def lambda_rf(self, val):
self._lambda_rf = val
@w_hierarchy.setter
def w_hierarchy(self, val):
self._w_hierarchy = val
@w_hierarchy.setter
def w_rf(self, val):
self._w_rf = val
def update_setting(self, mass_matrix, mass_matrix_inv, coriolis, gravity):
self._mass_matrix = np.copy(mass_matrix)
self._mass_matrix_inv = np.copy(mass_matrix_inv)
self._coriolis = np.copy(coriolis)
self._gravity = np.copy(gravity)
def solve(self,
task_list,
contact_list,
internal_constraint_list,
rf_des=None,
verbose=False):
"""
Parameters
----------
task_list (list of Task):
Task list
contact_list (list of Contact):
Contact list
internal_constraint_list (list of InternalConstraint):
Internal constraint list
rf_des (np.ndarray):
Reaction force desired
verbose (bool):
Printing option
Returns
-------
joint_trq_cmd (np.array):
Joint trq cmd
joint_acc_cmd (np.array):
Joint acc cmd
sol_rf (np.array):
Reaction force
"""
# ======================================================================
# Internal Constraint
# Set ni, jit_lmd_jidot_qdot, sa_ni_trc_bar_tr, and b_internal_constraint
# ======================================================================
if len(internal_constraint_list) > 0:
ji = np.concatenate(
[ic.jacobian for ic in internal_constraint_list], axis=0)
jidot_qdot = np.concatenate(
[ic.jacobian_dot_q_dot for ic in internal_constraint_list],
axis=0)
lmd = np.linalg.pinv(
np.dot(np.dot(ji, self._mass_matrix_inv), ji.transpose()))
ji_bar = np.dot(np.dot(self._mass_matrix_inv, ji.transpose()), lmd)
ni = np.eye(self._n_q_dot) - np.dot(ji_bar, ji)
jit_lmd_jidot_qdot = np.squeeze(
np.dot(np.dot(ji.transpose(), lmd), jidot_qdot))
sa_ni_trc = np.dot(self._sa, ni)[:, 6:]
sa_ni_trc_bar = util.weighted_pinv(sa_ni_trc,
self._mass_matrix_inv[6:, 6:])
sa_ni_trc_bar_tr = sa_ni_trc_bar.transpose()
b_internal_constraint = True
else:
ni = np.eye(self._n_q_dot)
jit_lmd_jidot_qdot = np.zeros(self._n_q_dot)
sa_ni_trc_bar = np.eye(self._n_active)
sa_ni_trc_bar_tr = sa_ni_trc_bar.transpose()
b_internal_constraint = False
# print("ni")
# print(ni)
# print("jit_lmd_jidot_qdot")
# print(jit_lmd_jidot_qdot)
# print("sa_ni_trc_bar_tr")
# print(sa_ni_trc_bar_tr)
# exit()
# ======================================================================
# Cost
# ======================================================================
cost_t_mat = np.zeros((self._n_q_dot, self._n_q_dot))
cost_t_vec = np.zeros(self._n_q_dot)
for i, task in enumerate(task_list):
j = task.jacobian
j_dot_q_dot = task.jacobian_dot_q_dot
x_ddot = task.op_cmd
if verbose:
print("====================")
print(task.target_id, " task")
task.debug()
cost_t_mat += self._w_hierarchy[i] * np.dot(j.transpose(), j)
cost_t_vec += self._w_hierarchy[i] * np.dot(
(j_dot_q_dot - x_ddot).transpose(), j)
# cost_t_mat += self._lambda_q_ddot * np.eye(self._n_q_dot)
cost_t_mat += self._lambda_q_ddot * self._mass_matrix
if contact_list is not None:
uf_mat = np.array(
block_diag(
*[contact.cone_constraint_mat
for contact in contact_list]))
uf_vec = np.concatenate(
[contact.cone_constraint_vec for contact in contact_list])
contact_jacobian = np.concatenate(
[contact.jacobian for contact in contact_list], axis=0)
assert uf_mat.shape[0] == uf_vec.shape[0]
assert uf_mat.shape[1] == contact_jacobian.shape[0]
dim_cone_constraint, dim_contacts = uf_mat.shape
cost_rf_mat = (self._lambda_rf + self._w_rf) * np.eye(dim_contacts)
if rf_des is None:
rf_des = np.zeros(dim_contacts)
cost_rf_vec = -self._w_rf * np.copy(rf_des)
cost_mat = np.array(block_diag(
cost_t_mat, cost_rf_mat)) # (nqdot+nc, nqdot+nc)
cost_vec = np.concatenate([cost_t_vec, cost_rf_vec]) # (nqdot+nc,)
else:
dim_contacts = dim_cone_constraint = 0
cost_mat = np.copy(cost_t_mat)
cost_vec = np.copy(cost_t_vec)
# if verbose:
# print("==================================")
# np.set_printoptions(precision=4)
# print("cost_t_mat")
# print(cost_t_mat)
# print("cost_t_vec")
# print(cost_t_vec)
# print("cost_rf_mat")
# print(cost_rf_mat)
# print("cost_rf_vec")
# print(cost_rf_vec)
# print("cost_mat")
# print(cost_mat)
# print("cost_vec")
# print(cost_vec)
# ======================================================================
# Equality Constraint
# ======================================================================
if contact_list is not None:
eq_floating_mat = np.concatenate(
(np.dot(self._sf, self._mass_matrix),
-np.dot(self._sf,
np.dot(contact_jacobian, ni).transpose())),
axis=1) # (6, nqdot+nc)
if b_internal_constraint:
eq_int_mat = np.concatenate(
(ji, np.zeros((ji.shape[0], dim_contacts))),
axis=1) # (2, nqdot+nc)
eq_int_vec = np.zeros(ji.shape[0])
else:
eq_floating_mat = np.dot(self._sf, self._mass_matrix)
if b_internal_constraint:
eq_int_mat = np.copy(ji)
eq_int_vec = np.zeros(ji.shape[0])
eq_floating_vec = -np.dot(self._sf,
np.dot(ni.transpose(),
(self._coriolis + self._gravity)))
if b_internal_constraint:
eq_mat = np.concatenate((eq_floating_mat, eq_int_mat), axis=0)
eq_vec = np.concatenate((eq_floating_vec, eq_int_vec), axis=0)
else:
eq_mat = np.copy(eq_floating_mat)
eq_vec = np.copy(eq_floating_vec)
# ======================================================================
# Inequality Constraint
# ======================================================================
if self._trq_limit is None:
if contact_list is not None:
ineq_mat = np.concatenate(
(np.zeros((dim_cone_constraint, self._n_q_dot)), -uf_mat),
axis=1)
ineq_vec = -uf_vec
else:
ineq_mat = None
ineq_vec = None
else:
if contact_list is not None:
ineq_mat = np.concatenate(
(np.concatenate(
(np.zeros((dim_cone_constraint, self._n_q_dot)),
-np.dot(sa_ni_trc_bar_tr,
np.dot(self._snf, self._mass_matrix)),
np.dot(sa_ni_trc_bar_tr,
np.dot(self._snf, self._mass_matrix))),
axis=0),
np.concatenate(
(-uf_mat,
np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(contact_jacobian, ni).transpose()),
-np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(contact_jacobian, ni).transpose())),
axis=0)),
axis=1)
ineq_vec = np.concatenate((
-uf_vec,
np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(ni.transpose(),
(self._coriolis + self._gravity))) + np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
jit_lmd_jidot_qdot) - self._trq_limit[:, 0],
-np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(ni.transpose(),
(self._coriolis + self._gravity))) - np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
jit_lmd_jidot_qdot) +
self._trq_limit[:, 1]))
else:
ineq_mat = np.concatenate(
(-np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
self._mass_matrix),
np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
self._mass_matrix)),
axis=0)
ineq_vec = np.concatenate(
(np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(ni.transpose(),
(self._coriolis + self._gravity))) + np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
jit_lmd_jidot_qdot) - self._trq_limit[:, 0],
-np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(ni.transpose(),
(self._coriolis + self._gravity))) - np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
jit_lmd_jidot_qdot) +
self._trq_limit[:, 1]))
# if verbose:
# print("eq_mat")
# print(eq_mat)
# print("eq_vec")
# print(eq_vec)
# print("ineq_mat")
# print(ineq_mat)
# print("ineq_vec")
# print(ineq_vec)
sol = solve_qp(
cost_mat,
cost_vec,
ineq_mat,
ineq_vec,
eq_mat,
eq_vec,
solver="quadprog",
verbose=True)
if contact_list is not None:
sol_q_ddot, sol_rf = sol[:self._n_q_dot], sol[self._n_q_dot:]
else:
sol_q_ddot, sol_rf = sol, None
if contact_list is not None:
joint_trq_cmd = np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(self._mass_matrix, sol_q_ddot) +
np.dot(ni.transpose(), (self._coriolis + self._gravity)) -
np.dot(np.dot(contact_jacobian, ni).transpose(), sol_rf))
else:
joint_trq_cmd = np.dot(
np.dot(sa_ni_trc_bar_tr, self._snf),
np.dot(self._mass_matrix, sol_q_ddot) +
np.dot(ni, (self._coriolis + self._gravity)))
joint_acc_cmd = np.dot(self._sa, sol_q_ddot)
if verbose:
print("joint_trq_cmd: ", joint_trq_cmd)
print("sol_q_ddot: ", sol_q_ddot)
print("sol_rf: ", sol_rf)
for i, task in enumerate(task_list):
j = task.jacobian
j_dot_q_dot = task.jacobian_dot_q_dot
x_ddot = task.op_cmd
print(task.target_id, " task")
print("des x ddot: ", x_ddot)
print("j*qddot_sol + Jdot*qdot: ",
np.dot(j, sol_q_ddot) + j_dot_q_dot)
if self._b_data_save:
self._data_saver.add('joint_trq_cmd', joint_trq_cmd)
self._data_saver.add('joint_acc_cmd', joint_acc_cmd)
self._data_saver.add('rf_cmd', sol_rf)
return joint_trq_cmd, joint_acc_cmd, sol_rf
| [
"numpy.copy",
"numpy.eye",
"pnc.data_saver.DataSaver",
"qpsolvers.solve_qp",
"numpy.dot",
"numpy.zeros",
"numpy.concatenate",
"scipy.linalg.block_diag",
"util.util.weighted_pinv",
"numpy.set_printoptions"
] | [((31, 86), 'numpy.set_printoptions', 'np.set_printoptions', ([], {'precision': '(2)', 'threshold': 'sys.maxsize'}), '(precision=2, threshold=sys.maxsize)\n', (50, 86), True, 'import numpy as np\n'), ((1512, 1524), 'numpy.copy', 'np.copy', (['val'], {}), '(val)\n', (1519, 1524), True, 'import numpy as np\n'), ((1975, 1995), 'numpy.copy', 'np.copy', (['mass_matrix'], {}), '(mass_matrix)\n', (1982, 1995), True, 'import numpy as np\n'), ((2028, 2052), 'numpy.copy', 'np.copy', (['mass_matrix_inv'], {}), '(mass_matrix_inv)\n', (2035, 2052), True, 'import numpy as np\n'), ((2078, 2095), 'numpy.copy', 'np.copy', (['coriolis'], {}), '(coriolis)\n', (2085, 2095), True, 'import numpy as np\n'), ((2120, 2136), 'numpy.copy', 'np.copy', (['gravity'], {}), '(gravity)\n', (2127, 2136), True, 'import numpy as np\n'), ((4793, 4833), 'numpy.zeros', 'np.zeros', (['(self._n_q_dot, self._n_q_dot)'], {}), '((self._n_q_dot, self._n_q_dot))\n', (4801, 4833), True, 'import numpy as np\n'), ((4855, 4878), 'numpy.zeros', 'np.zeros', (['self._n_q_dot'], {}), '(self._n_q_dot)\n', (4863, 4878), True, 'import numpy as np\n'), ((12278, 12380), 'qpsolvers.solve_qp', 'solve_qp', (['cost_mat', 'cost_vec', 'ineq_mat', 'ineq_vec', 'eq_mat', 'eq_vec'], {'solver': '"""quadprog"""', 'verbose': '(True)'}), "(cost_mat, cost_vec, ineq_mat, ineq_vec, eq_mat, eq_vec, solver=\n 'quadprog', verbose=True)\n", (12286, 12380), False, 'from qpsolvers import solve_qp\n'), ((13220, 13248), 'numpy.dot', 'np.dot', (['self._sa', 'sol_q_ddot'], {}), '(self._sa, sol_q_ddot)\n', (13226, 13248), True, 'import numpy as np\n'), ((1018, 1029), 'pnc.data_saver.DataSaver', 'DataSaver', ([], {}), '()\n', (1027, 1029), False, 'from pnc.data_saver import DataSaver\n'), ((3254, 3326), 'numpy.concatenate', 'np.concatenate', (['[ic.jacobian for ic in internal_constraint_list]'], {'axis': '(0)'}), '([ic.jacobian for ic in internal_constraint_list], axis=0)\n', (3268, 3326), True, 'import numpy as np\n'), ((3369, 3455), 'numpy.concatenate', 'np.concatenate', (['[ic.jacobian_dot_q_dot for ic in internal_constraint_list]'], {'axis': '(0)'}), '([ic.jacobian_dot_q_dot for ic in internal_constraint_list],\n axis=0)\n', (3383, 3455), True, 'import numpy as np\n'), ((3924, 3984), 'util.util.weighted_pinv', 'util.weighted_pinv', (['sa_ni_trc', 'self._mass_matrix_inv[6:, 6:]'], {}), '(sa_ni_trc, self._mass_matrix_inv[6:, 6:])\n', (3942, 3984), False, 'from util import util\n'), ((4161, 4182), 'numpy.eye', 'np.eye', (['self._n_q_dot'], {}), '(self._n_q_dot)\n', (4167, 4182), True, 'import numpy as np\n'), ((4216, 4239), 'numpy.zeros', 'np.zeros', (['self._n_q_dot'], {}), '(self._n_q_dot)\n', (4224, 4239), True, 'import numpy as np\n'), ((4268, 4290), 'numpy.eye', 'np.eye', (['self._n_active'], {}), '(self._n_active)\n', (4274, 4290), True, 'import numpy as np\n'), ((5722, 5795), 'numpy.concatenate', 'np.concatenate', (['[contact.cone_constraint_vec for contact in contact_list]'], {}), '([contact.cone_constraint_vec for contact in contact_list])\n', (5736, 5795), True, 'import numpy as np\n'), ((5844, 5914), 'numpy.concatenate', 'np.concatenate', (['[contact.jacobian for contact in contact_list]'], {'axis': '(0)'}), '([contact.jacobian for contact in contact_list], axis=0)\n', (5858, 5914), True, 'import numpy as np\n'), ((6462, 6503), 'numpy.concatenate', 'np.concatenate', (['[cost_t_vec, cost_rf_vec]'], {}), '([cost_t_vec, cost_rf_vec])\n', (6476, 6503), True, 'import numpy as np\n'), ((6608, 6627), 'numpy.copy', 'np.copy', (['cost_t_mat'], {}), '(cost_t_mat)\n', (6615, 6627), True, 'import numpy as np\n'), ((6651, 6670), 'numpy.copy', 'np.copy', (['cost_t_vec'], {}), '(cost_t_vec)\n', (6658, 6670), True, 'import numpy as np\n'), ((7899, 7934), 'numpy.dot', 'np.dot', (['self._sf', 'self._mass_matrix'], {}), '(self._sf, self._mass_matrix)\n', (7905, 7934), True, 'import numpy as np\n'), ((8298, 8351), 'numpy.concatenate', 'np.concatenate', (['(eq_floating_mat, eq_int_mat)'], {'axis': '(0)'}), '((eq_floating_mat, eq_int_mat), axis=0)\n', (8312, 8351), True, 'import numpy as np\n'), ((8373, 8426), 'numpy.concatenate', 'np.concatenate', (['(eq_floating_vec, eq_int_vec)'], {'axis': '(0)'}), '((eq_floating_vec, eq_int_vec), axis=0)\n', (8387, 8426), True, 'import numpy as np\n'), ((8462, 8486), 'numpy.copy', 'np.copy', (['eq_floating_mat'], {}), '(eq_floating_mat)\n', (8469, 8486), True, 'import numpy as np\n'), ((8508, 8532), 'numpy.copy', 'np.copy', (['eq_floating_vec'], {}), '(eq_floating_vec)\n', (8515, 8532), True, 'import numpy as np\n'), ((600, 647), 'numpy.zeros', 'np.zeros', (['(self._n_active + self._n_passive, 6)'], {}), '((self._n_active + self._n_passive, 6))\n', (608, 647), True, 'import numpy as np\n'), ((662, 702), 'numpy.eye', 'np.eye', (['(self._n_active + self._n_passive)'], {}), '(self._n_active + self._n_passive)\n', (668, 702), True, 'import numpy as np\n'), ((3691, 3712), 'numpy.eye', 'np.eye', (['self._n_q_dot'], {}), '(self._n_q_dot)\n', (3697, 3712), True, 'import numpy as np\n'), ((3715, 3733), 'numpy.dot', 'np.dot', (['ji_bar', 'ji'], {}), '(ji_bar, ji)\n', (3721, 3733), True, 'import numpy as np\n'), ((3868, 3888), 'numpy.dot', 'np.dot', (['self._sa', 'ni'], {}), '(self._sa, ni)\n', (3874, 3888), True, 'import numpy as np\n'), ((5586, 5656), 'scipy.linalg.block_diag', 'block_diag', (['*[contact.cone_constraint_mat for contact in contact_list]'], {}), '(*[contact.cone_constraint_mat for contact in contact_list])\n', (5596, 5656), False, 'from scipy.linalg import block_diag\n'), ((6172, 6192), 'numpy.eye', 'np.eye', (['dim_contacts'], {}), '(dim_contacts)\n', (6178, 6192), True, 'import numpy as np\n'), ((6249, 6271), 'numpy.zeros', 'np.zeros', (['dim_contacts'], {}), '(dim_contacts)\n', (6257, 6271), True, 'import numpy as np\n'), ((6312, 6327), 'numpy.copy', 'np.copy', (['rf_des'], {}), '(rf_des)\n', (6319, 6327), True, 'import numpy as np\n'), ((6361, 6396), 'scipy.linalg.block_diag', 'block_diag', (['cost_t_mat', 'cost_rf_mat'], {}), '(cost_t_mat, cost_rf_mat)\n', (6371, 6396), False, 'from scipy.linalg import block_diag\n'), ((7833, 7854), 'numpy.zeros', 'np.zeros', (['ji.shape[0]'], {}), '(ji.shape[0])\n', (7841, 7854), True, 'import numpy as np\n'), ((8002, 8013), 'numpy.copy', 'np.copy', (['ji'], {}), '(ji)\n', (8009, 8013), True, 'import numpy as np\n'), ((8043, 8064), 'numpy.zeros', 'np.zeros', (['ji.shape[0]'], {}), '(ji.shape[0])\n', (8051, 8064), True, 'import numpy as np\n'), ((12732, 12767), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (12738, 12767), True, 'import numpy as np\n'), ((13040, 13075), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (13046, 13075), True, 'import numpy as np\n'), ((3542, 3575), 'numpy.dot', 'np.dot', (['ji', 'self._mass_matrix_inv'], {}), '(ji, self._mass_matrix_inv)\n', (3548, 3575), True, 'import numpy as np\n'), ((7429, 7464), 'numpy.dot', 'np.dot', (['self._sf', 'self._mass_matrix'], {}), '(self._sf, self._mass_matrix)\n', (7435, 7464), True, 'import numpy as np\n'), ((13093, 13130), 'numpy.dot', 'np.dot', (['self._mass_matrix', 'sol_q_ddot'], {}), '(self._mass_matrix, sol_q_ddot)\n', (13099, 13130), True, 'import numpy as np\n'), ((13149, 13191), 'numpy.dot', 'np.dot', (['ni', '(self._coriolis + self._gravity)'], {}), '(ni, self._coriolis + self._gravity)\n', (13155, 13191), True, 'import numpy as np\n'), ((7719, 7756), 'numpy.zeros', 'np.zeros', (['(ji.shape[0], dim_contacts)'], {}), '((ji.shape[0], dim_contacts))\n', (7727, 7756), True, 'import numpy as np\n'), ((8870, 8916), 'numpy.zeros', 'np.zeros', (['(dim_cone_constraint, self._n_q_dot)'], {}), '((dim_cone_constraint, self._n_q_dot))\n', (8878, 8916), True, 'import numpy as np\n'), ((12785, 12822), 'numpy.dot', 'np.dot', (['self._mass_matrix', 'sol_q_ddot'], {}), '(self._mass_matrix, sol_q_ddot)\n', (12791, 12822), True, 'import numpy as np\n'), ((13747, 13768), 'numpy.dot', 'np.dot', (['j', 'sol_q_ddot'], {}), '(j, sol_q_ddot)\n', (13753, 13768), True, 'import numpy as np\n'), ((11119, 11154), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (11125, 11154), True, 'import numpy as np\n'), ((9234, 9280), 'numpy.zeros', 'np.zeros', (['(dim_cone_constraint, self._n_q_dot)'], {}), '((dim_cone_constraint, self._n_q_dot))\n', (9242, 9280), True, 'import numpy as np\n'), ((10984, 11019), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (10990, 11019), True, 'import numpy as np\n'), ((12923, 12951), 'numpy.dot', 'np.dot', (['contact_jacobian', 'ni'], {}), '(contact_jacobian, ni)\n', (12929, 12951), True, 'import numpy as np\n'), ((7526, 7554), 'numpy.dot', 'np.dot', (['contact_jacobian', 'ni'], {}), '(contact_jacobian, ni)\n', (7532, 7554), True, 'import numpy as np\n'), ((9487, 9523), 'numpy.dot', 'np.dot', (['self._snf', 'self._mass_matrix'], {}), '(self._snf, self._mass_matrix)\n', (9493, 9523), True, 'import numpy as np\n'), ((9696, 9731), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (9702, 9731), True, 'import numpy as np\n'), ((10170, 10205), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (10176, 10205), True, 'import numpy as np\n'), ((10365, 10400), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (10371, 10400), True, 'import numpy as np\n'), ((10730, 10765), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (10736, 10765), True, 'import numpy as np\n'), ((11326, 11361), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (11332, 11361), True, 'import numpy as np\n'), ((11521, 11556), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (11527, 11556), True, 'import numpy as np\n'), ((11891, 11926), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (11897, 11926), True, 'import numpy as np\n'), ((9366, 9402), 'numpy.dot', 'np.dot', (['self._snf', 'self._mass_matrix'], {}), '(self._snf, self._mass_matrix)\n', (9372, 9402), True, 'import numpy as np\n'), ((9871, 9906), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (9877, 9906), True, 'import numpy as np\n'), ((10535, 10570), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (10541, 10570), True, 'import numpy as np\n'), ((11693, 11728), 'numpy.dot', 'np.dot', (['sa_ni_trc_bar_tr', 'self._snf'], {}), '(sa_ni_trc_bar_tr, self._snf)\n', (11699, 11728), True, 'import numpy as np\n'), ((9763, 9791), 'numpy.dot', 'np.dot', (['contact_jacobian', 'ni'], {}), '(contact_jacobian, ni)\n', (9769, 9791), True, 'import numpy as np\n'), ((9938, 9966), 'numpy.dot', 'np.dot', (['contact_jacobian', 'ni'], {}), '(contact_jacobian, ni)\n', (9944, 9966), True, 'import numpy as np\n')] |
import os
import sys
import unittest
import HtmlTestRunner
import cv2.cv2 as cv2
import numpy as np
current_path = os.path.dirname(os.path.abspath(__file__))
list_paths = [os.sep.join([current_path, os.pardir, 'src']), os.sep.join([current_path, os.pardir])]
for path in list_paths:
if path not in sys.path:
sys.path.insert(0, path)
from TrafficDetector import TrafficDetector
from MapSlicer import MapSlicer
test_data_dir = os.path.join(current_path, '../data/')
class Test(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.MS = MapSlicer()
def test_coordinates_to_pixel(self):
"""
Test pixel from given coordinates. Pixel must be in accepted region [(382, 187), (437, 274)]
"""
coordinates = (30.218193, -97.7859167)
image = os.sep.join([test_data_dir, "austin1.tif"])
gt_pixel = (1133, 4722)
h, w = self.MS.get_pixel_from_coordinates(image, coordinates)
str_error = f'Pixel ({w, h})out of bounds {gt_pixel} for given coordenates: ' \
f'{coordinates}'
self.assertEqual(h, gt_pixel[0], str_error)
self.assertEqual(w, gt_pixel[1], str_error)
def test_street_coordenates(self):
"""
Test MapSlicer returns any coordinates given street name.
"""
street_name = "L<NAME>, austin"
coordenates = self.MS.get_street_box_in_coordinates(street_name)
self.assertGreater(len(coordenates), 0)
def test_number_cars(self):
"""
Test for checking the number of cars detected by TrafficDetector.
"""
image = cv2.imread(test_data_dir + 'image21.png')
TD = TrafficDetector(image)
cars_list = TD.get_cars_from_image()
# Pass: +-1 cars
self.assertGreater(len(cars_list), 6)
self.assertLess(len(cars_list), 12)
def test_street_surface(self):
"""
Test for checking
"""
image_complete = test_data_dir + 'street-surface-unmask.png'
image_mask = test_data_dir + 'street-surface-masked.png'
img_compl = cv2.imread(image_complete)
img_mask = cv2.imread(image_mask)
surface_gt = len(np.nonzero(img_mask[:, :, 0])[0]) # surface = 58705
surface = self.MS.get_street_surface(img_compl)
# Pass: surface +-5000 pixels
self.assertGreater(surface, surface_gt - 5000, 'Surface detected for street is too small')
self.assertLess(surface, surface_gt + 5000, 'Surface detected for street is too big')
if __name__ == '__main__':
# Test sets
test_results = unittest.TestSuite()
test_results.addTest(Test('test_coordinates_to_pixel'))
test_results.addTest(Test('test_street_coordenates'))
test_results.addTest(Test('test_number_cars'))
test_results.addTest(Test('test_street_surface'))
# Test launch
unittest.TextTestRunner().run(test_results)
unittest.main(testRunner=HtmlTestRunner.HTMLTestRunner(output='./results'))
| [
"HtmlTestRunner.HTMLTestRunner",
"unittest.TestSuite",
"sys.path.insert",
"cv2.cv2.imread",
"os.path.join",
"MapSlicer.MapSlicer",
"os.sep.join",
"TrafficDetector.TrafficDetector",
"numpy.nonzero",
"os.path.abspath",
"unittest.TextTestRunner"
] | [((441, 479), 'os.path.join', 'os.path.join', (['current_path', '"""../data/"""'], {}), "(current_path, '../data/')\n", (453, 479), False, 'import os\n'), ((132, 157), 'os.path.abspath', 'os.path.abspath', (['__file__'], {}), '(__file__)\n', (147, 157), False, 'import os\n'), ((173, 218), 'os.sep.join', 'os.sep.join', (["[current_path, os.pardir, 'src']"], {}), "([current_path, os.pardir, 'src'])\n", (184, 218), False, 'import os\n'), ((220, 258), 'os.sep.join', 'os.sep.join', (['[current_path, os.pardir]'], {}), '([current_path, os.pardir])\n', (231, 258), False, 'import os\n'), ((2611, 2631), 'unittest.TestSuite', 'unittest.TestSuite', ([], {}), '()\n', (2629, 2631), False, 'import unittest\n'), ((321, 345), 'sys.path.insert', 'sys.path.insert', (['(0)', 'path'], {}), '(0, path)\n', (336, 345), False, 'import sys\n'), ((572, 583), 'MapSlicer.MapSlicer', 'MapSlicer', ([], {}), '()\n', (581, 583), False, 'from MapSlicer import MapSlicer\n'), ((814, 857), 'os.sep.join', 'os.sep.join', (["[test_data_dir, 'austin1.tif']"], {}), "([test_data_dir, 'austin1.tif'])\n", (825, 857), False, 'import os\n'), ((1631, 1672), 'cv2.cv2.imread', 'cv2.imread', (["(test_data_dir + 'image21.png')"], {}), "(test_data_dir + 'image21.png')\n", (1641, 1672), True, 'import cv2.cv2 as cv2\n'), ((1686, 1708), 'TrafficDetector.TrafficDetector', 'TrafficDetector', (['image'], {}), '(image)\n', (1701, 1708), False, 'from TrafficDetector import TrafficDetector\n'), ((2110, 2136), 'cv2.cv2.imread', 'cv2.imread', (['image_complete'], {}), '(image_complete)\n', (2120, 2136), True, 'import cv2.cv2 as cv2\n'), ((2156, 2178), 'cv2.cv2.imread', 'cv2.imread', (['image_mask'], {}), '(image_mask)\n', (2166, 2178), True, 'import cv2.cv2 as cv2\n'), ((2878, 2903), 'unittest.TextTestRunner', 'unittest.TextTestRunner', ([], {}), '()\n', (2901, 2903), False, 'import unittest\n'), ((2951, 3000), 'HtmlTestRunner.HTMLTestRunner', 'HtmlTestRunner.HTMLTestRunner', ([], {'output': '"""./results"""'}), "(output='./results')\n", (2980, 3000), False, 'import HtmlTestRunner\n'), ((2205, 2234), 'numpy.nonzero', 'np.nonzero', (['img_mask[:, :, 0]'], {}), '(img_mask[:, :, 0])\n', (2215, 2234), True, 'import numpy as np\n')] |
#!/usr/bin/env python
"""
Hmm maybe its impossible to get anywhere with integral without first fixing the BetaInverse
In [22]: pw.subs(b, 1.55)
Out[22]: Piecewise((Max(0, 0.542862145685886*e - 3.9544951109741), (e > 7.294) & (e < 7.75)), (0, True))
In [23]: pw.subs(b, 1.)
Out[23]: Piecewise((Max(0, 0.225957188630962*e - 1.06222481205998), (e > 7.294) & (e < 7.75)), (0, True))
"""
import numpy as np
import sympy as sym
ri = np.array([
[ 1.55 , 1.478],
[ 1.795, 1.48 ],
[ 2.105, 1.484],
[ 2.271, 1.486],
[ 2.551, 1.492],
[ 2.845, 1.496],
[ 3.064, 1.499],
[ 4.133, 1.526],
[ 6.2 , 1.619],
[ 6.526, 1.618],
[ 6.889, 1.527],
[ 7.294, 1.554],
[ 7.75 , 1.793],
[ 8.267, 1.783],
[ 8.857, 1.664],
[ 9.538, 1.554],
[10.33 , 1.454],
[15.5 , 1.454]
])
if __name__ == '__main__':
e, b = sym.symbols("e b")
i = 11
e0, r0 = ri[i]
e1, r1 = ri[i+1]
em = (e0 + e1)/2.
v0 = ( 1 - b/r0 ) * ( 1 + b/r0 )
v1 = ( 1 - b/r1 ) * ( 1 + b/r1 )
fr = (e-e0)/(e1-e0)
pt = ( sym.Max(v0*(1-fr) + v1*fr,0), (e > e0) & (e < e1) )
ot = (0, True )
pw = sym.Piecewise( pt, ot )
v = pw.subs(b, 1.55).subs(e, em)
print(v)
| [
"sympy.symbols",
"numpy.array",
"sympy.Piecewise",
"sympy.Max"
] | [((773, 1084), 'numpy.array', 'np.array', (['[[1.55, 1.478], [1.795, 1.48], [2.105, 1.484], [2.271, 1.486], [2.551, \n 1.492], [2.845, 1.496], [3.064, 1.499], [4.133, 1.526], [6.2, 1.619], [\n 6.526, 1.618], [6.889, 1.527], [7.294, 1.554], [7.75, 1.793], [8.267, \n 1.783], [8.857, 1.664], [9.538, 1.554], [10.33, 1.454], [15.5, 1.454]]'], {}), '([[1.55, 1.478], [1.795, 1.48], [2.105, 1.484], [2.271, 1.486], [\n 2.551, 1.492], [2.845, 1.496], [3.064, 1.499], [4.133, 1.526], [6.2, \n 1.619], [6.526, 1.618], [6.889, 1.527], [7.294, 1.554], [7.75, 1.793],\n [8.267, 1.783], [8.857, 1.664], [9.538, 1.554], [10.33, 1.454], [15.5, \n 1.454]])\n', (781, 1084), True, 'import numpy as np\n'), ((1286, 1304), 'sympy.symbols', 'sym.symbols', (['"""e b"""'], {}), "('e b')\n", (1297, 1304), True, 'import sympy as sym\n'), ((1588, 1609), 'sympy.Piecewise', 'sym.Piecewise', (['pt', 'ot'], {}), '(pt, ot)\n', (1601, 1609), True, 'import sympy as sym\n'), ((1504, 1539), 'sympy.Max', 'sym.Max', (['(v0 * (1 - fr) + v1 * fr)', '(0)'], {}), '(v0 * (1 - fr) + v1 * fr, 0)\n', (1511, 1539), True, 'import sympy as sym\n')] |
import numpy as np
#---------------------------------------------------------
#Read in transition counts between cells (N_alpha_beta)
#---------------------------------------------------------
def compute_Nab_Ta(trajectory_crossings,N,i):
'''
Compute N_a_b and T_a for one individual trajectory at one individual cell
--------------------------------------------------------------------------
trajectory_crossings : time vs crossings time series
N : number of milestones = number of cells + 1
i : cell index
'''
N_a_b = np.zeros((N-1,N-1))
T_a = np.zeros(N-1)
l = trajectory_crossings
right_crossings = np.sum(l[:,1])
left_crossings = len(l) - right_crossings
if i==0 :
N_a_b[i,i+1] = right_crossings
elif i==N-2 :
N_a_b[i,i-1] = left_crossings
else :
N_a_b[i,i-1] = left_crossings
N_a_b[i,i+1] = right_crossings
T_a[i] = l[-1,0]
return N_a_b, T_a
#-----------------------------------------------------------
#Compute probabilities and free energy per cell
#-----------------------------------------------------------
#compute transition flux matrix (k_alpha_beta)
def compute_k_a_b(N_a_b, T_a, i, milestones):
'''
Compute transition flux matrix (k_alpha_beta) for one individual cell
and one individual trajectory trace
'''
N = len(N_a_b) + 1
k_a_b = np.zeros((N-1,N-1))
k_a_b[i] += (N_a_b[i]/T_a[i])
return k_a_b
#----- Perform self consistent iterations to calculate stationar state ----#
def probability(k_a_b,Niter=10000):
N = len(k_a_b) + 1
#initial guess
p_init = np.ones(N-1)
p_init /= len(p_init)
p = p_init
for j in range(Niter):
p_new = np.zeros(N-1)
for i in range(N-1):
if i==0:
p_new[i] = p[i+1]*k_a_b[i+1,i]/k_a_b[i,i+1]
elif i==N-2:
p_new[i] = p[i-1]*k_a_b[i-1,i]/k_a_b[i,i-1]
else :
p_new[i] = (p[i-1]*k_a_b[i-1,i] + p[i+1]*k_a_b[i+1,i])/(k_a_b[i,i-1] + k_a_b[i,i+1])
p_new /= np.sum(p_new)
p = p_new
return p
#-----------------------------------------------------------------------------
#Construct the Q matrix for kinetics calculation
#-----------------------------------------------------------------------------
def compute_Nij_Ri(trajectory_crossings,p,i,N):
'''Construct Nij and Ri for an individual trajectory in one individual cell
'''
N_i_j = np.zeros((N,N))
R_i = np.zeros(N)
#for i in range(N-1):
l = trajectory_crossings
T_a = l[-1,0]
#compute N_i_j
for j in range(1,len(l)):
#hitting a milestone coming from a different milestone
if l[j-1,1] == 0 and l[j,1] == 1 :
N_i_j[i,i+1] += 1.0 * p[i]/T_a
elif l[j-1,1] == 1 and l[j,1] == 0 :
N_i_j[i+1,i] += 1.0 * p[i]/T_a
#compute R_i
for j in range(1,len(l)):
if l[j-1,1] == 0:
R_i[i] += (l[j,0] - l[j-1,0]) * p[i]/T_a
elif l[j-1,1] == 1:
R_i[i+1] += (l[j,0] - l[j-1,0]) * p[i]/T_a
return N_i_j, R_i
#Construct the matrix of number of hitting points for one trajectory trace
def compute_Nhit(trajectory_crossings,i,N):
Nhit = np.zeros((N,N))
l = trajectory_crossings
for j in range(1,len(l)):
#hitting a milestone coming from a different milestone
if l[j-1,1] == 0 and l[j,1] == 1 :
Nhit[i,i+1] += 1.0
elif l[j-1,1] == 1 and l[j,1] == 0 :
Nhit[i+1,i] += 1.0
return Nhit
def Q_matrix(N_i_j,R_i,N):
'''
Construct the Q matrix for kinetics calculation
'''
Q = np.zeros((N,N))
for i in range(N):
for j in range(N):
if R_i[i] != 0:
Q[i,j] = N_i_j[i,j]/R_i[i]
for i in range(N):
Q[i,i] = -np.sum(Q[i])
return Q
def Q_matrix_rev(N_i_j,R_i,N):
'''
Construct the reverse Q matrix for kinetics calculation
of the backward transition
Replacing i with N-1-i so that indices change linke this
0 -> N-1
1 -> N-2
...
N-1 -> 0
'''
Q = np.zeros((N,N))
for i in range(N):
for j in range(N):
if R_i[N-1-i] != 0:
Q[i,j] = N_i_j[N-1-i,N-1-j]/R_i[N-1-i]
for i in range(N):
Q[i,i] = -np.sum(Q[i])
return Q
#-------------------------------------------------------------------------------
#Construct the truncated rate matrix and compute MFPT
#-------------------------------------------------------------------------------
def MFPT(Q,start,end):
'''
Construct the truncated rate matrix and compute MFPT
'''
#dimention of rate matrix
M = end - start
Q_rate = np.zeros((M,M))
I1 = np.ones(M)
#print(I1)
for i in range(M):
for j in range(M):
Q_rate[i,j] = Q[start+i,start+j]
MFPTs = -np.linalg.solve(Q_rate,I1)
return MFPTs
def Monte_Carlo_bootstrapping(N_total,K,t,Nhit,interval):
'''Perform nonreversible element shift Monte Carlo to sample rate matrices
Input
-----
N_total : Total number of MC moves (accepted and rejected)
K : Rate Matrix
t : lifetime vector (R_i)
Nhit : Matrix containing number of hitting points
interval : After how many MC moves a matrix is sampled
Returns
-------
Q_list : (n,N,N) dim array where n is the number of sampled
rate matrices
'''
N = len(t)
Q_list = []
for k in range(N_total):
Q = K.copy()
#choose one of the non-zero elements to change
r1 = np.random.randint(0,N-1)
if r1 == 0:
Q_ab = Q[r1,r1+1]
N_ab = Nhit[r1,r1-1]
else :
r2 = np.random.randint(0,1)
if r2 == 0:
Q_ab = Q[r1,r1-1]
N_ab = Nhit[r1,r1-1]
else :
Q_ab = Q[r1,r1+1]
N_ab = Nhit[r1,r1+1]
delta = np.random.exponential(scale=Q_ab) - Q_ab
log_pacc = N_ab*np.log((Q_ab + delta)/Q_ab) - delta * t[r1]*np.sum(Nhit[r1])
r = np.random.uniform(low=0.0,high=1.0)
if np.log(r) < log_pacc : #accept
Q[r1,r1] -= delta
if r1 == 0:
Q[r1,r1+1] += delta
else :
if r2 == 0 :
Q[r1,r1-1] += delta
else :
Q[r1,r1+1] += delta
#only include after "interval" steps
if (k+1)%interval == 0:
Q_list.append(Q)
#convert from list to array before returning
return np.array(Q_list)
| [
"numpy.linalg.solve",
"numpy.ones",
"numpy.log",
"numpy.random.exponential",
"numpy.array",
"numpy.sum",
"numpy.zeros",
"numpy.random.randint",
"numpy.random.uniform"
] | [((560, 584), 'numpy.zeros', 'np.zeros', (['(N - 1, N - 1)'], {}), '((N - 1, N - 1))\n', (568, 584), True, 'import numpy as np\n'), ((591, 606), 'numpy.zeros', 'np.zeros', (['(N - 1)'], {}), '(N - 1)\n', (599, 606), True, 'import numpy as np\n'), ((657, 672), 'numpy.sum', 'np.sum', (['l[:, 1]'], {}), '(l[:, 1])\n', (663, 672), True, 'import numpy as np\n'), ((1395, 1419), 'numpy.zeros', 'np.zeros', (['(N - 1, N - 1)'], {}), '((N - 1, N - 1))\n', (1403, 1419), True, 'import numpy as np\n'), ((1639, 1653), 'numpy.ones', 'np.ones', (['(N - 1)'], {}), '(N - 1)\n', (1646, 1653), True, 'import numpy as np\n'), ((2493, 2509), 'numpy.zeros', 'np.zeros', (['(N, N)'], {}), '((N, N))\n', (2501, 2509), True, 'import numpy as np\n'), ((2519, 2530), 'numpy.zeros', 'np.zeros', (['N'], {}), '(N)\n', (2527, 2530), True, 'import numpy as np\n'), ((3261, 3277), 'numpy.zeros', 'np.zeros', (['(N, N)'], {}), '((N, N))\n', (3269, 3277), True, 'import numpy as np\n'), ((3679, 3695), 'numpy.zeros', 'np.zeros', (['(N, N)'], {}), '((N, N))\n', (3687, 3695), True, 'import numpy as np\n'), ((4147, 4163), 'numpy.zeros', 'np.zeros', (['(N, N)'], {}), '((N, N))\n', (4155, 4163), True, 'import numpy as np\n'), ((4751, 4767), 'numpy.zeros', 'np.zeros', (['(M, M)'], {}), '((M, M))\n', (4759, 4767), True, 'import numpy as np\n'), ((4777, 4787), 'numpy.ones', 'np.ones', (['M'], {}), '(M)\n', (4784, 4787), True, 'import numpy as np\n'), ((6615, 6631), 'numpy.array', 'np.array', (['Q_list'], {}), '(Q_list)\n', (6623, 6631), True, 'import numpy as np\n'), ((1740, 1755), 'numpy.zeros', 'np.zeros', (['(N - 1)'], {}), '(N - 1)\n', (1748, 1755), True, 'import numpy as np\n'), ((2089, 2102), 'numpy.sum', 'np.sum', (['p_new'], {}), '(p_new)\n', (2095, 2102), True, 'import numpy as np\n'), ((4913, 4940), 'numpy.linalg.solve', 'np.linalg.solve', (['Q_rate', 'I1'], {}), '(Q_rate, I1)\n', (4928, 4940), True, 'import numpy as np\n'), ((5617, 5644), 'numpy.random.randint', 'np.random.randint', (['(0)', '(N - 1)'], {}), '(0, N - 1)\n', (5634, 5644), True, 'import numpy as np\n'), ((6124, 6160), 'numpy.random.uniform', 'np.random.uniform', ([], {'low': '(0.0)', 'high': '(1.0)'}), '(low=0.0, high=1.0)\n', (6141, 6160), True, 'import numpy as np\n'), ((3859, 3871), 'numpy.sum', 'np.sum', (['Q[i]'], {}), '(Q[i])\n', (3865, 3871), True, 'import numpy as np\n'), ((4343, 4355), 'numpy.sum', 'np.sum', (['Q[i]'], {}), '(Q[i])\n', (4349, 4355), True, 'import numpy as np\n'), ((5757, 5780), 'numpy.random.randint', 'np.random.randint', (['(0)', '(1)'], {}), '(0, 1)\n', (5774, 5780), True, 'import numpy as np\n'), ((5983, 6016), 'numpy.random.exponential', 'np.random.exponential', ([], {'scale': 'Q_ab'}), '(scale=Q_ab)\n', (6004, 6016), True, 'import numpy as np\n'), ((6172, 6181), 'numpy.log', 'np.log', (['r'], {}), '(r)\n', (6178, 6181), True, 'import numpy as np\n'), ((6050, 6079), 'numpy.log', 'np.log', (['((Q_ab + delta) / Q_ab)'], {}), '((Q_ab + delta) / Q_ab)\n', (6056, 6079), True, 'import numpy as np\n'), ((6094, 6110), 'numpy.sum', 'np.sum', (['Nhit[r1]'], {}), '(Nhit[r1])\n', (6100, 6110), True, 'import numpy as np\n')] |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
r"""Provide the wrench task.
The wrench task tries to generate a wrench near the desired one by minimizing:
.. math:: || w - k (w_{des} - w_t) ||^2
where :math:`w = [f \tau] \in \mathbb{R}^6` is the wrench vector being optimized, :math:`k` is a proportional gain,
:math:`w_{des}` is the desired wrench vector, and :math:`w_t` is the current wrench vector.
The above formulation is equivalent to the QP objective function :math:`||Ax - b||^2`, by setting
:math:`A = I`, :math:`x = w`, and :math:`b = k (w_{des} - w_t)`.
The implementation of this class is inspired by [1] (which is licensed under the LGPLv2).
References:
- [1] "OpenSoT: A whole-body control library for the compliant humanoid robot COMAN", Rocchi et al., 2015
"""
import numpy as np
from pyrobolearn.priorities.tasks import ForceTask
__author__ = "<NAME>"
__copyright__ = "Copyright 2019, PyRoboLearn"
__credits__ = ["<NAME> (C++)", "<NAME> (Python + doc)"]
__license__ = "GNU GPLv3"
__version__ = "1.0.0"
__maintainer__ = "<NAME>"
__email__ = "<EMAIL>"
__status__ = "Development"
class WrenchTask(ForceTask): # TODO: improve this class by considering only forces or torques + using links
r"""Wrench Task
The wrench task tries to generate a wrench near the desired one by minimizing:
.. math:: || w - k (w_{des} - w_t) ||^2
where :math:`w = [f \tau] \in \mathbb{R}^6` is the wrench vector being optimized, :math:`k` is a proportional gain,
:math:`w_{des}` is the desired wrench vector, and :math:`w_t` is the current wrench vector.
The above formulation is equivalent to the QP objective function :math:`||Ax - b||^2`, by setting
:math:`A = I`, :math:`x = w`, and :math:`b = k (w_{des} - w_t)`.
The implementation of this class is inspired by [1] (which is licensed under the LGPLv2).
References:
- [1] "OpenSoT: A whole-body control library for the compliant humanoid robot COMAN", Rocchi et al., 2015
"""
def __init__(self, model, desired_wrenches, wrenches, kp=1., weight=1., constraints=[]):
"""
Initialize the task.
Args:
model (ModelInterface): model interface.
desired_wrenches (list[np.array[float[6]]]): list of desired wrenches.
wrenches (list[np.array[float[6]]]): list of current wrenches that are usually read from F/T sensors. This
has to be of the same size as the desired wrenches.
weight (float, np.array[float[M*6,M*6]]): weight scalar or matrix associated to the task.
constraints (list[Constraint]): list of constraints associated with the task.
"""
super(WrenchTask, self).__init__(model=model, weight=weight, constraints=constraints)
# set variables
self.desired_wrenches = desired_wrenches
self.wrenches = wrenches
self.kp = kp
# first update
self.update()
##############
# Properties #
##############
@property
def desired_wrenches(self):
"""Get the desired wrenches."""
return self._desired_wrenches
@desired_wrenches.setter
def desired_wrenches(self, wrenches):
"""Set the desired wrenches."""
if not isinstance(wrenches, (list, tuple, np.ndarray)):
raise TypeError("Expecting the given 'desired_wrenches' to be a tuple/list of np.array, or a np.array, "
"but got instead: {}".format(type(wrenches)))
self._desired_wrenches = np.asarray(wrenches).reshape(-1) # (N*6,) or (N*3,)
# enable / disable the tasks based on the number of contact links
if len(self._desired_wrenches) == 0:
self.disable()
else:
self.enable()
# set A matrix
self._A = np.identity(len(self._desired_wrenches))
@property
def wrenches(self):
"""Get the current wrenches."""
return self._wrenches
@wrenches.setter
def wrenches(self, wrenches):
"""Set the current wrenches."""
if not isinstance(wrenches, (list, tuple, np.ndarray)):
raise TypeError("Expecting the given 'desired_wrenches' to be a tuple/list of np.array, or a np.array, "
"but got instead: {}".format(type(wrenches)))
self._wrenches = np.asarray(wrenches).reshape(-1) # (N*6,) or (N*3,)
@property
def kp(self):
"""Return the proportional gain."""
return self._kp
@kp.setter
def kp(self, kp):
"""Set the proportional gain."""
if kp is None:
kp = 1.
if not isinstance(kp, (float, int, np.ndarray)):
raise TypeError("Expecting the given proportional gain kp to be an int, float, np.array, instead "
"got: {}".format(type(kp)))
x_size = len(self.desired_wrenches)
if isinstance(kp, np.ndarray) and kp.shape != (x_size, x_size):
raise ValueError("Expecting the given proportional gain matrix kp to be of shape {}, but instead "
"got shape: {}".format((x_size, x_size), kp.shape))
self._kp = kp
###########
# Methods #
###########
def _update(self, x=None):
"""
Update the task by computing the A matrix and b vector that will be used by the task solver.
"""
self._b = self._kp * (self._desired_wrenches - self._wrenches)
| [
"numpy.asarray"
] | [((3525, 3545), 'numpy.asarray', 'np.asarray', (['wrenches'], {}), '(wrenches)\n', (3535, 3545), True, 'import numpy as np\n'), ((4340, 4360), 'numpy.asarray', 'np.asarray', (['wrenches'], {}), '(wrenches)\n', (4350, 4360), True, 'import numpy as np\n')] |
import numpy as np
def trans():
print("Transpose of matrix:")
#Enter rows and columns
row=int(input("Enter number of rows:"))
column=int(input("Enter number of columns:"))
print("Enter the elements of Matrix:")
matrix_a= [[int(input()) for i in range(column)] for i in range(row)]
print("Matrix is: ")
for n in matrix_a:
print(n)
matrix_a=np.array(matrix_a)
print("Transpose of matrix is:")
tran=matrix_a.transpose()
print(tran)
| [
"numpy.array"
] | [((362, 380), 'numpy.array', 'np.array', (['matrix_a'], {}), '(matrix_a)\n', (370, 380), True, 'import numpy as np\n')] |
import numpy as np
import matplotlib.pyplot as plt
x=np.linspace(0,2*np.pi,101)
s=np.sin(x)
c=np.cos(x)
plt.close('all')
plt.subplot(2,2,1)
plt.plot(x,s,'b+',x,c,'r+')
plt.axis('tight')
plt.subplot(2,2,2)
plt.plot(x,s)
plt.grid()
plt.xlabel('radians')
plt.ylabel('amplitudes')
plt.title('sin(x)')
plt.axis('tight')
plt.savefig('myplot.png')
| [
"matplotlib.pyplot.grid",
"matplotlib.pyplot.title",
"matplotlib.pyplot.savefig",
"matplotlib.pyplot.ylabel",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"matplotlib.pyplot.close",
"numpy.linspace",
"numpy.cos",
"numpy.sin",
"matplotlib.pyplot.axis",
"matplotlib.pyplot.subplot"
] | [((53, 83), 'numpy.linspace', 'np.linspace', (['(0)', '(2 * np.pi)', '(101)'], {}), '(0, 2 * np.pi, 101)\n', (64, 83), True, 'import numpy as np\n'), ((82, 91), 'numpy.sin', 'np.sin', (['x'], {}), '(x)\n', (88, 91), True, 'import numpy as np\n'), ((94, 103), 'numpy.cos', 'np.cos', (['x'], {}), '(x)\n', (100, 103), True, 'import numpy as np\n'), ((105, 121), 'matplotlib.pyplot.close', 'plt.close', (['"""all"""'], {}), "('all')\n", (114, 121), True, 'import matplotlib.pyplot as plt\n'), ((122, 142), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(1)'], {}), '(2, 2, 1)\n', (133, 142), True, 'import matplotlib.pyplot as plt\n'), ((141, 173), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 's', '"""b+"""', 'x', 'c', '"""r+"""'], {}), "(x, s, 'b+', x, c, 'r+')\n", (149, 173), True, 'import matplotlib.pyplot as plt\n'), ((169, 186), 'matplotlib.pyplot.axis', 'plt.axis', (['"""tight"""'], {}), "('tight')\n", (177, 186), True, 'import matplotlib.pyplot as plt\n'), ((188, 208), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(2)', '(2)', '(2)'], {}), '(2, 2, 2)\n', (199, 208), True, 'import matplotlib.pyplot as plt\n'), ((207, 221), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 's'], {}), '(x, s)\n', (215, 221), True, 'import matplotlib.pyplot as plt\n'), ((221, 231), 'matplotlib.pyplot.grid', 'plt.grid', ([], {}), '()\n', (229, 231), True, 'import matplotlib.pyplot as plt\n'), ((232, 253), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""radians"""'], {}), "('radians')\n", (242, 253), True, 'import matplotlib.pyplot as plt\n'), ((254, 278), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""amplitudes"""'], {}), "('amplitudes')\n", (264, 278), True, 'import matplotlib.pyplot as plt\n'), ((279, 298), 'matplotlib.pyplot.title', 'plt.title', (['"""sin(x)"""'], {}), "('sin(x)')\n", (288, 298), True, 'import matplotlib.pyplot as plt\n'), ((299, 316), 'matplotlib.pyplot.axis', 'plt.axis', (['"""tight"""'], {}), "('tight')\n", (307, 316), True, 'import matplotlib.pyplot as plt\n'), ((317, 342), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""myplot.png"""'], {}), "('myplot.png')\n", (328, 342), True, 'import matplotlib.pyplot as plt\n')] |
import torch
import torchvision
import torchvision.transforms as transforms
import torch.nn.functional as F
from torch import nn
import os
import matplotlib.pyplot as plt
import sys
import numpy as np
sys.path.append('./')
from args import opt
sys.path.append('./lib/')
from dataset import FruitFlyNeuronDataset
from cv2transforms import composed_transforms, RandomExtract
from utils import show_img, show_patches, initialize_weights
patch_h = int(opt.patch_height)
patch_w = int(opt.patch_width)
N_patches = int(opt.N_subimgs)
root_dir = opt.root_dir
training_dir = {_: os.path.join(root_dir, _)
for _ in ['images', '1st_manual', 'mask']}
compose = composed_transforms()
# imgs_dataset = FruitFlyNeuronDataset(root_dir=training_dir, transforms=compose)
# comp_imgs_dataset = FruitFlyNeuronDataset(root_dir=training_dir)
# for i in range(len(imgs_dataset)):
# show_img(imgs_dataset[i])
# show_img(comp_imgs_dataset[i])
# if i == 3:
# plt.show()
# break
training_dataset = FruitFlyNeuronDataset(
root_dir=training_dir, transforms=compose)
full_imgs = np.empty((20, 584, 565))
full_masks = np.empty((20, 584, 565))
for i in range(len(training_dataset)):
full_imgs[i] = training_dataset[i]['images']
full_masks[i] = training_dataset[i]['mask']
full_imgs = np.reshape(full_imgs, (20, 584, 565, 1)).transpose((0, 3, 1, 2))
full_masks = np.reshape(full_masks, (20, 584, 565, 1)).transpose((0, 3, 1, 2))
rx = RandomExtract(patch_h=patch_h, patch_w=patch_w, N_patches=N_patches)
patches, patches_masks = rx(full_imgs=full_imgs, full_masks=full_masks)
show_patches(patches, patches_masks)
class _EncoderBlock(nn.Module):
def __init__(self, in_channels, out_channels, dropout=False):
super(_EncoderBlock, self).__init__()
layers = [
nn.Conv2d(in_channels, out_channels, kernel_size=3),
nn.BatchNorm2d(out_channels),
nn.ReLU(inplace=True),
nn.Conv2d(out_channels, out_channels, kernel_size=3),
nn.BatchNorm2d(out_channels),
nn.ReLU(inplace=True),
]
if dropout:
layers.append(nn.Dropout())
layers.append(nn.MaxPool2d(kernel_size=2, stride=2))
self.encode = nn.Sequential(*layers)
def forward(self, x):
return self.encode(x)
class _DecoderBlock(nn.Module):
def __init__(self, in_channels, middle_channels, out_channels):
super(_DecoderBlock, self).__init__()
self.decode = nn.Sequential(
nn.Conv2d(in_channels, middle_channels, kernel_size=3),
nn.BatchNorm2d(middle_channels),
nn.ReLU(inplace=True),
nn.Conv2d(middle_channels, middle_channels, kernel_size=3),
nn.BatchNorm2d(middle_channels),
nn.ReLU(inplace=True),
nn.ConvTranspose2d(middle_channels, out_channels,
kernel_size=2, stride=2),
)
def forward(self, x):
return self.decode(x)
# U-Net model
class UNet(nn.Module):
def __init__(self, num_classes):
super(UNet, self).__init__()
self.enc1 = _EncoderBlock(3, 64)
self.enc2 = _EncoderBlock(64, 128)
self.enc3 = _EncoderBlock(128, 256)
self.enc4 = _EncoderBlock(256, 512, dropout=True)
self.center = _DecoderBlock(512, 1024, 512)
self.dec4 = _DecoderBlock(1024, 512, 256)
self.dec3 = _DecoderBlock(512, 256, 128)
self.dec2 = _DecoderBlock(256, 128, 64)
self.dec1 = nn.Sequential(
nn.Conv2d(128, 64, kernel_size=3),
nn.BatchNorm2d(64),
nn.ReLU(inplace=True),
nn.Conv2d(64, 64, kernel_size=3),
nn.BatchNorm2d(64),
nn.ReLU(inplace=True),
)
self.final = nn.Conv2d(64, num_classes, kernel_size=1)
initialize_weights(self)
def forward(self, x):
enc1 = self.enc1(x)
enc2 = self.enc2(enc1)
enc3 = self.enc3(enc2)
enc4 = self.enc4(enc3)
center = self.center(enc4)
dec4 = self.dec4(
torch.cat([center, F.upsample(enc4, center.size()[2:], mode='bilinear')], 1))
dec3 = self.dec3(
torch.cat([dec4, F.upsample(enc3, dec4.size()[2:], mode='bilinear')], 1))
dec2 = self.dec2(
torch.cat([dec3, F.upsample(enc2, dec3.size()[2:], mode='bilinear')], 1))
dec1 = self.dec1(
torch.cat([dec2, F.upsample(enc1, dec2.size()[2:], mode='bilinear')], 1))
final = self.final(dec1)
return F.upsample(final, x.size()[2:], mode='bilinear')
net = UNet(10)
print(net)
| [
"torch.nn.ConvTranspose2d",
"torch.nn.BatchNorm2d",
"torch.nn.ReLU",
"cv2transforms.composed_transforms",
"numpy.reshape",
"torch.nn.Dropout",
"torch.nn.Sequential",
"utils.initialize_weights",
"utils.show_patches",
"os.path.join",
"torch.nn.Conv2d",
"dataset.FruitFlyNeuronDataset",
"torch.n... | [((201, 222), 'sys.path.append', 'sys.path.append', (['"""./"""'], {}), "('./')\n", (216, 222), False, 'import sys\n'), ((244, 269), 'sys.path.append', 'sys.path.append', (['"""./lib/"""'], {}), "('./lib/')\n", (259, 269), False, 'import sys\n'), ((670, 691), 'cv2transforms.composed_transforms', 'composed_transforms', ([], {}), '()\n', (689, 691), False, 'from cv2transforms import composed_transforms, RandomExtract\n'), ((1023, 1087), 'dataset.FruitFlyNeuronDataset', 'FruitFlyNeuronDataset', ([], {'root_dir': 'training_dir', 'transforms': 'compose'}), '(root_dir=training_dir, transforms=compose)\n', (1044, 1087), False, 'from dataset import FruitFlyNeuronDataset\n'), ((1105, 1129), 'numpy.empty', 'np.empty', (['(20, 584, 565)'], {}), '((20, 584, 565))\n', (1113, 1129), True, 'import numpy as np\n'), ((1143, 1167), 'numpy.empty', 'np.empty', (['(20, 584, 565)'], {}), '((20, 584, 565))\n', (1151, 1167), True, 'import numpy as np\n'), ((1465, 1533), 'cv2transforms.RandomExtract', 'RandomExtract', ([], {'patch_h': 'patch_h', 'patch_w': 'patch_w', 'N_patches': 'N_patches'}), '(patch_h=patch_h, patch_w=patch_w, N_patches=N_patches)\n', (1478, 1533), False, 'from cv2transforms import composed_transforms, RandomExtract\n'), ((1606, 1642), 'utils.show_patches', 'show_patches', (['patches', 'patches_masks'], {}), '(patches, patches_masks)\n', (1618, 1642), False, 'from utils import show_img, show_patches, initialize_weights\n'), ((574, 599), 'os.path.join', 'os.path.join', (['root_dir', '_'], {}), '(root_dir, _)\n', (586, 599), False, 'import os\n'), ((1316, 1356), 'numpy.reshape', 'np.reshape', (['full_imgs', '(20, 584, 565, 1)'], {}), '(full_imgs, (20, 584, 565, 1))\n', (1326, 1356), True, 'import numpy as np\n'), ((1394, 1435), 'numpy.reshape', 'np.reshape', (['full_masks', '(20, 584, 565, 1)'], {}), '(full_masks, (20, 584, 565, 1))\n', (1404, 1435), True, 'import numpy as np\n'), ((2246, 2268), 'torch.nn.Sequential', 'nn.Sequential', (['*layers'], {}), '(*layers)\n', (2259, 2268), False, 'from torch import nn\n'), ((3789, 3830), 'torch.nn.Conv2d', 'nn.Conv2d', (['(64)', 'num_classes'], {'kernel_size': '(1)'}), '(64, num_classes, kernel_size=1)\n', (3798, 3830), False, 'from torch import nn\n'), ((3839, 3863), 'utils.initialize_weights', 'initialize_weights', (['self'], {}), '(self)\n', (3857, 3863), False, 'from utils import show_img, show_patches, initialize_weights\n'), ((1820, 1871), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_channels', 'out_channels'], {'kernel_size': '(3)'}), '(in_channels, out_channels, kernel_size=3)\n', (1829, 1871), False, 'from torch import nn\n'), ((1885, 1913), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['out_channels'], {}), '(out_channels)\n', (1899, 1913), False, 'from torch import nn\n'), ((1927, 1948), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (1934, 1948), False, 'from torch import nn\n'), ((1962, 2014), 'torch.nn.Conv2d', 'nn.Conv2d', (['out_channels', 'out_channels'], {'kernel_size': '(3)'}), '(out_channels, out_channels, kernel_size=3)\n', (1971, 2014), False, 'from torch import nn\n'), ((2028, 2056), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['out_channels'], {}), '(out_channels)\n', (2042, 2056), False, 'from torch import nn\n'), ((2070, 2091), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (2077, 2091), False, 'from torch import nn\n'), ((2185, 2222), 'torch.nn.MaxPool2d', 'nn.MaxPool2d', ([], {'kernel_size': '(2)', 'stride': '(2)'}), '(kernel_size=2, stride=2)\n', (2197, 2222), False, 'from torch import nn\n'), ((2523, 2577), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_channels', 'middle_channels'], {'kernel_size': '(3)'}), '(in_channels, middle_channels, kernel_size=3)\n', (2532, 2577), False, 'from torch import nn\n'), ((2591, 2622), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['middle_channels'], {}), '(middle_channels)\n', (2605, 2622), False, 'from torch import nn\n'), ((2636, 2657), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (2643, 2657), False, 'from torch import nn\n'), ((2671, 2729), 'torch.nn.Conv2d', 'nn.Conv2d', (['middle_channels', 'middle_channels'], {'kernel_size': '(3)'}), '(middle_channels, middle_channels, kernel_size=3)\n', (2680, 2729), False, 'from torch import nn\n'), ((2743, 2774), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['middle_channels'], {}), '(middle_channels)\n', (2757, 2774), False, 'from torch import nn\n'), ((2788, 2809), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (2795, 2809), False, 'from torch import nn\n'), ((2823, 2897), 'torch.nn.ConvTranspose2d', 'nn.ConvTranspose2d', (['middle_channels', 'out_channels'], {'kernel_size': '(2)', 'stride': '(2)'}), '(middle_channels, out_channels, kernel_size=2, stride=2)\n', (2841, 2897), False, 'from torch import nn\n'), ((3543, 3576), 'torch.nn.Conv2d', 'nn.Conv2d', (['(128)', '(64)'], {'kernel_size': '(3)'}), '(128, 64, kernel_size=3)\n', (3552, 3576), False, 'from torch import nn\n'), ((3590, 3608), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['(64)'], {}), '(64)\n', (3604, 3608), False, 'from torch import nn\n'), ((3622, 3643), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (3629, 3643), False, 'from torch import nn\n'), ((3657, 3689), 'torch.nn.Conv2d', 'nn.Conv2d', (['(64)', '(64)'], {'kernel_size': '(3)'}), '(64, 64, kernel_size=3)\n', (3666, 3689), False, 'from torch import nn\n'), ((3703, 3721), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['(64)'], {}), '(64)\n', (3717, 3721), False, 'from torch import nn\n'), ((3735, 3756), 'torch.nn.ReLU', 'nn.ReLU', ([], {'inplace': '(True)'}), '(inplace=True)\n', (3742, 3756), False, 'from torch import nn\n'), ((2149, 2161), 'torch.nn.Dropout', 'nn.Dropout', ([], {}), '()\n', (2159, 2161), False, 'from torch import nn\n')] |
import pdb
import copy
import numpy as np
import os
import scipy
import math
import torch
import torch
from pytorch3d.transforms import euler_angles_to_matrix, matrix_to_euler_angles
def read_total_poses(cam_file_path):
with open(cam_file_path) as f:
lines = f.readlines()
index_list = np.array(list(range(len(lines))))
index_poses = np.where((index_list % 5) == 0)
index = index_list[index_poses]
total_poses = []
for i in index:
pose = np.empty([4, 4]).astype(np.float32)
pose[0, :] = np.array(lines[i + 1].rstrip().split(' ')[:4], dtype=np.float32)
pose[1, :] = np.array(lines[i + 2].rstrip().split(' ')[:4], dtype=np.float32)
pose[2, :] = np.array(lines[i + 3].rstrip().split(' ')[:4], dtype=np.float32)
pose[3, :] = np.array(lines[i + 4].rstrip().split(' ')[:4], dtype=np.float32)
pose_new = pose[:3, :4]
# pose_new = np.linalg.inv(pose)
# pose_new = np.matmul(trans_mat_inv,pose_new)[:3,:4]
total_poses.append(pose_new)
return total_poses
def readCameraRTK_as_np_tanks(cameraPO_file, datasetName):
with open(cameraPO_file) as f:
lines = f.readlines()
cameraRTO = np.empty((3, 4)).astype(np.float64)
cameraRTO[0, :] = np.array(lines[1].rstrip().split(' ')[:4], dtype=np.float64)
cameraRTO[1, :] = np.array(lines[2].rstrip().split(' ')[:4], dtype=np.float64)
cameraRTO[2, :] = np.array(lines[3].rstrip().split(' ')[:4], dtype=np.float64)
cameraKO = np.empty((3, 3)).astype(np.float64)
cameraKO[0, :] = np.array(lines[7].rstrip().split(' ')[:3], dtype=np.float64)
cameraKO[1, :] = np.array(lines[8].rstrip().split(' ')[:3], dtype=np.float64)
cameraKO[2, :] = np.array(lines[9].rstrip().split(' ')[:3], dtype=np.float64)
if datasetName == 'DTU':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'tanks_COLMAP':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'blendedMVS':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'giga_ours':
cameraPO = np.dot(cameraKO, cameraRTO)
return cameraRTO, cameraKO
def readCameraP0_as_np_tanks(cameraPO_file, datasetName, ):
with open(cameraPO_file) as f:
lines = f.readlines()
cameraRTO = np.empty((3, 4)).astype(np.float64)
cameraRTO[0, :] = np.array(lines[1].rstrip().split(' ')[:4], dtype=np.float64)
cameraRTO[1, :] = np.array(lines[2].rstrip().split(' ')[:4], dtype=np.float64)
cameraRTO[2, :] = np.array(lines[3].rstrip().split(' ')[:4], dtype=np.float64)
cameraKO = np.empty((3, 3)).astype(np.float64)
cameraKO[0, :] = np.array(lines[7].rstrip().split(' ')[:3], dtype=np.float64)
cameraKO[1, :] = np.array(lines[8].rstrip().split(' ')[:3], dtype=np.float64)
cameraKO[2, :] = np.array(lines[9].rstrip().split(' ')[:3], dtype=np.float64)
if datasetName == 'DTU':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'tanks_COLMAP':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'blendedMVS':
cameraPO = np.dot(cameraKO, cameraRTO)
elif datasetName == 'giga_ours':
cameraPO = np.dot(cameraKO, cameraRTO)
return cameraPO
def __readCameraPO_as_np_DTU__(cameraPO_file):
"""
only load a camera PO in the file
------------
inputs:
cameraPO_file: the camera pose file of a specific view
outputs:
cameraPO: np.float64 (3,4)
------------
usage:
>>> p = __readCameraPO_as_np_DTU__(cameraPO_file = './test/cameraPO/pos_060.txt')
>>> p # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
array([[ 1.67373847e+03, -2.15171320e+03, 1.26963515e+03,
...
6.58552305e+02]])
"""
cameraPO = np.loadtxt(cameraPO_file, dtype=np.float64, delimiter=' ')
return cameraPO
def __readCameraPOs_as_np_Middlebury__(cameraPO_file, viewList):
"""
load camera POs of multiple views in one file
------------
inputs:
cameraPO_file: the camera pose file of a specific view
viewList: view list
outputs:
cameraPO: np.float64 (N_views,3,4)
------------
usage:
>>> p = __readCameraPOs_as_np_Middlebury__(cameraPO_file = './test/cameraPO/dinoSR_par.txt', viewList=[3,8])
>>> p # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
array([[[ -1.22933223e+03, 3.08329199e+03, 2.02784015e+02,
...
6.41227584e-01]]])
"""
with open(cameraPO_file) as f:
lines = f.readlines()
cameraPOs = np.empty((len(lines), 3, 4)).astype(np.float64)
for _n, _l in enumerate(lines):
if _n == 0:
continue
_params = np.array(_l.strip().split(' ')[1:], dtype=np.float64)
_K = _params[:9].reshape((3, 3))
_R = _params[9:18].reshape((3, 3))
_t = _params[18:].reshape((3, 1))
cameraPOs[_n] = np.dot(_K, np.c_[_R, _t])
return cameraPOs[viewList]
def readCameraPOs_as_np(
datasetFolder,
datasetName,
poseNamePattern,
# model,
viewList,
model=None,
):
"""
inputs:
datasetFolder: 'x/x/x/middlebury'
datasetName: 'DTU' / 'Middlebury'
#model: 1..128 / 'dinoxx'
viewList: [3,8,21,...]
output:
cameraPOs (N_views,3,4) np.flost64
"""
cameraPOs = np.empty((len(viewList), 3, 4), dtype=np.float64)
cameraRTOs = np.empty((len(viewList), 3, 4), dtype=np.float64)
cameraKOs = np.empty((len(viewList), 3, 3), dtype=np.float64)
if 'Middlebury' in datasetName:
cameraPOs = self.__readCameraPOs_as_np_Middlebury__(
cameraPO_file=os.path.join(datasetFolder, poseNamePattern), viewList=viewList)
elif datasetName == 'tanks':
for _i, _view in enumerate(viewList):
_cameraPO = readCameraP0_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view)).replace(
'@', '{}'.format(_view))))
# _cameraPO = readCameraP0_as_np_tanks(cameraPO_file = datasetFolder+poseNamePattern.replace('#', '{:03}'.format(_view)).replace('@', '{}'.format(_view)))
cameraPOs[_i] = _cameraPO
_cameraRT, _cameraK = readCameraRTK_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view)).replace(
'@', '{}'.format(_view))))
cameraRTOs[_i] = _cameraRT
cameraKOs[_i] = _cameraK
elif datasetName == 'tanks_COLMAP': # zhiwei
for _i, _view in enumerate(viewList):
_cameraPO = readCameraP0_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
# _cameraPO = readCameraP0_as_np_tanks(cameraPO_file = datasetFolder+poseNamePattern.replace('#', '{:03}'.format(_view)).replace('@', '{}'.format(_view)))
cameraPOs[_i] = _cameraPO
_cameraRT, _cameraK = readCameraRTK_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
cameraRTOs[_i] = _cameraRT
cameraKOs[_i] = _cameraK
elif datasetName == 'blendedMVS': # zhiwei
for _i, _view in enumerate(viewList):
_cameraPO = readCameraP0_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
# _cameraPO = readCameraP0_as_np_tanks(cameraPO_file = datasetFolder+poseNamePattern.replace('#', '{:03}'.format(_view)).replace('@', '{}'.format(_view)))
cameraPOs[_i] = _cameraPO
_cameraRT, _cameraK = readCameraRTK_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
cameraRTOs[_i] = _cameraRT
cameraKOs[_i] = _cameraK
elif datasetName == 'giga_ours': # zhiwei
for _i, _view in enumerate(viewList):
_cameraPO = readCameraP0_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
# _cameraPO = readCameraP0_as_np_tanks(cameraPO_file = datasetFolder+poseNamePattern.replace('#', '{:03}'.format(_view)).replace('@', '{}'.format(_view)))
cameraPOs[_i] = _cameraPO
_cameraRT, _cameraK = readCameraRTK_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view))),
datasetName=datasetName)
cameraRTOs[_i] = _cameraRT
cameraKOs[_i] = _cameraK
else: # cameraPOs are stored in different files
# tran_mat_path = os.path.join(datasetFolder,transMatPattern)
for _i, _view in enumerate(viewList):
# if 'DTU' in datasetName:
# _cameraPO = __readCameraPO_as_np_DTU__(cameraPO_file=os.path.join(datasetFolder,
# poseNamePattern.replace('#',
# '{:03}'.format(
# _view)).replace(
# '@', '{}'.format(_view))))
_cameraPO = readCameraP0_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view - 1)).replace(
'@', '{}'.format(_view - 1))),
datasetName=datasetName)
cameraPOs[_i] = _cameraPO
_cameraRT, _cameraK = readCameraRTK_as_np_tanks(cameraPO_file=os.path.join(datasetFolder,
poseNamePattern.replace('#',
'{:03}'.format(
_view - 1)).replace(
'@',
'{}'.format(_view - 1))),
datasetName=datasetName)
cameraRTOs[_i] = _cameraRT
cameraKOs[_i] = _cameraK
# print('cameraPOs', cameraPOs)
return cameraPOs, cameraRTOs, cameraKOs
def readCameraP0s_np_allModel(datasetFolder,
datasetName,
poseNamePatternModels,
modelList,
viewList,
transMatPattern=None
):
cameraPs = []
cameraP4s = []
cameraRTs = []
cameraKs = []
for i in modelList:
if datasetName == 'tanks':
##########TODO###################
cameraPOs, cameraRTOs, cameraKOs = readCameraPOs_as_np(datasetFolder,
datasetName,
poseNamePattern,
viewList, )
ones = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=cameraPOs.shape[0], axis=0)
cameraPOs, cameraRTOs, cameraKOs = np.concatenate((cameraPOs, ones), axis=1)
elif datasetName == 'DTU':
cameraPOs, cameraRTOs, cameraKOs = readCameraPOs_as_np(datasetFolder,
datasetName,
poseNamePatternModels,
viewList,
)
ones = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=cameraPOs.shape[0], axis=0)
cameraP0s = np.concatenate((cameraPOs, ones), axis=1)
elif datasetName == 'tanks_COLMAP': # zhiwei
cameraPOs, cameraRTOs, cameraKOs = readCameraPOs_as_np(datasetFolder,
datasetName,
poseNamePatternModels.replace('$', str(i)),
viewList,
)
ones = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=cameraPOs.shape[0], axis=0)
cameraP0s = np.concatenate((cameraPOs, ones), axis=1)
elif datasetName == 'blendedMVS': # zhiwei
cameraPOs, cameraRTOs, cameraKOs = readCameraPOs_as_np(datasetFolder,
datasetName,
poseNamePatternModels.replace('$', str(i)),
viewList,
)
ones = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=cameraPOs.shape[0], axis=0)
cameraP0s = np.concatenate((cameraPOs, ones), axis=1)
elif datasetName == 'giga_ours': # zhiwei
cameraPOs, cameraRTOs, cameraKOs = readCameraPOs_as_np(datasetFolder,
datasetName,
poseNamePatternModels.replace('$', str(i)),
viewList,
)
ones = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=cameraPOs.shape[0], axis=0)
cameraP0s = np.concatenate((cameraPOs, ones), axis=1)
cameraPs.append(cameraPOs)
cameraP4s.append(cameraP0s)
cameraRTs.append(cameraRTOs)
cameraKs.append(cameraKOs)
return (cameraPs, np.array(cameraP4s), np.array(cameraRTs), np.array(cameraKs))
def __cameraP2T__(cameraPO):
"""
cameraPO: (3,4)
return camera center in the world coords: cameraT (3,0)
>>> P = np.array([[798.693916, -2438.153488, 1568.674338, -542599.034996], \
[-44.838945, 1433.912029, 2576.399630, -1176685.647358], \
[-0.840873, -0.344537, 0.417405, 382.793511]])
>>> t = np.array([555.64348632032, 191.10837560939, 360.02470478273])
>>> np.allclose(__cameraP2T__(P), t)
True
"""
homo4D = np.array([np.linalg.det(cameraPO[:, [1, 2, 3]]), -1 * np.linalg.det(cameraPO[:, [0, 2, 3]]),
np.linalg.det(cameraPO[:, [0, 1, 3]]), -1 * np.linalg.det(cameraPO[:, [0, 1, 2]])])
# print('homo4D', homo4D)
cameraT = homo4D[:3] / homo4D[3]
return cameraT
def cameraPs2Ts_all(cameraPOs_all):
"""
"""
model_num = len(cameraPOs_all)
# pdb.set_trace()
cameraT_all = np.zeros((model_num, cameraPOs_all[0].shape[0], 3))
for i in range(model_num):
cameraT_all[i] = cameraPs2Ts(cameraPOs_all[i])
return cameraT_all
def cameraPs2Ts(cameraPOs):
"""
convert multiple POs to Ts.
----------
input:
cameraPOs: list / numpy
output:
cameraTs: list / numpy
"""
if type(cameraPOs) is list:
N = len(cameraPOs)
else:
N = cameraPOs.shape[0]
cameraT_list = []
for _cameraPO in cameraPOs:
cameraT_list.append(__cameraP2T__(_cameraPO))
return cameraT_list if type(cameraPOs) is list else np.stack(cameraT_list)
def inverse_camera_matrix(cameraP0s):
N_Ms = cameraP0s.shape[0]
projection_new = np.zeros((N_Ms, 4, 4))
projection_new[:, 0:3, :] = cameraP0s
projection_new[:, 3, :] = np.array(([[0, 0, 0, 1]]))
projection_new = np.linalg.inv(projection_new)
return projection_new
def calculate_angle_p1_p2_p3(p1, p2, p3, return_angle=True, return_cosine=True):
"""
calculate angle <p1,p2,p3>, which is the angle between the vectors p2p1 and p2p3
Parameters
----------
p1/p2/p3: numpy with shape (3,)
return_angle: return the radian angle
return_cosine: return the cosine value
Returns
-------
angle, cosine
Examples
--------
"""
unit_vector = lambda v: v / np.linalg.norm(v)
angle = lambda v1, v2: np.arccos(np.clip(np.dot(unit_vector(v1), unit_vector(v2)), -1.0, 1.0))
cos_angle = lambda v1, v2: np.clip(np.dot(unit_vector(v1), unit_vector(v2)), -1.0, 1.0)
vect_p2p1 = p1 - p2
vect_p2p3 = p3 - p2
return angle(vect_p2p1, vect_p2p3) if return_angle else None, \
cos_angle(vect_p2p1, vect_p2p3) if return_cosine else None
def k_combination_np(iterable, k=2):
"""
list all the k-combination along the output rows:
input: [2,5,8], list 2-combination to a numpy array
output: np.array([[2,5],[2,8],[5,8]])
----------
usages:
>>> k_combination_np([2,5,8])
array([[2, 5],
[2, 8],
[5, 8]])
>>> k_combination_np([2,5,8]).dtype
dtype('int64')
>>> k_combination_np([2.2,5.5,8.8,9.9], k=3)
array([[ 2.2, 5.5, 8.8],
[ 2.2, 5.5, 9.9],
[ 2.2, 8.8, 9.9],
[ 5.5, 8.8, 9.9]])
"""
combinations = []
for _combination in itertools.combinations(iterable, k):
combinations.append(_combination)
return np.asarray(combinations)
def viewPairAngles_wrt_pts(cameraTs, pts_xyz):
"""
given a set of camera positions and a set of points coordinates, output the angle between camera pairs w.r.t. each 3D point.
-----------
inputs:
cameraTs: (N_views, 3) camera positions
pts_xyz: (N_pts, 3) 3D points' coordinates
-----------
outputs:
viewPairAngle_wrt_pts: (N_pts, N_viewPairs) angle
-----------
usages:
>>> pts_xyz = np.array([[0,0,0],[1,1,1]], dtype=np.float32) # p1 / p2
>>> cameraTs = np.array([[0,0,1], [0,1,1], [1,0,1]], dtype=np.float32) # c1/2/3
>>> viewPairAngles_wrt_pts(cameraTs, pts_xyz) * 180 / math.pi # output[i]: [<c1,pi,c2>, <c1,pi,c3>, <c2,pi,c3>]
array([[ 45., 45., 60.],
[ 45., 45., 90.]], dtype=float32)
"""
unitize_array = lambda array, axis: array / np.linalg.norm(array, axis=axis, ord=2, keepdims=True)
calc_arccos = lambda cos_values: np.arccos(np.clip(cos_values, -1.0, 1.0)) # TODO does it need clip ?
N_views = cameraTs.shape[0]
vector_pts2cameras = pts_xyz[:, None, :] - cameraTs[
None, ...] # (N_pts, 1, 3) - (1, N_views, 3) ==> (N_pts, N_views, 3)
unit_vector_pts2cameras = unitize_array(vector_pts2cameras,
axis=-1) # (N_pts, N_views, 3) unit vector along axis=-1
# do the matrix multiplication for the (N_pats,) tack of (N_views, 3) matrixs
## (N_pts, N_views, 3) * (N_pts, 3, N_views) ==> (N_pts, N_views, N_views)
# viewPairCosine_wrt_pts = np.matmul(unit_vector_pts2cameras, unit_vector_pts2cameras.transpose((0,2,1)))
viewPairs = self.k_combination_np(range(N_views), k=2) # (N_combinations, 2)
viewPairCosine_wrt_pts = np.sum(
np.multiply(unit_vector_pts2cameras[:, viewPairs[:, 0]], unit_vector_pts2cameras[:, viewPairs[:, 1]]),
axis=-1) # (N_pts, N_combinations, 3) elementwise multiplication --> (N_pts, N_combinations) sum over the last axis
viewPairAngle_wrt_pts = calc_arccos(viewPairCosine_wrt_pts) # (N_pts, N_combinations)
return viewPairAngle_wrt_pts
# def viewPairAngles_p0s_pts(self, projection_M, )
def viewPairAngles_wrt_groupView(cameraTs, group_cameraTs, xyz_3D):
'''
:param cameraTs:
shape: (N_views,3)
:param group_cameraTs:
shape:(N_bool_views,3)
:param xyz_3D:
shape:(3)
:return:
angle_total: the angle of group T and camera T
shape: (N_bool_views, N_views)
'''
cameraTs_array = (cameraTs - xyz_3D)[None, :, :, None] # (N_views,3)->(1,N_views, 3,1)
group_cameraTs_array = (group_cameraTs - xyz_3D)[:, None, None, :] # (N_bool_views,3)->(N_bool_views,1,3,1)
dot_two = np.matmul(group_cameraTs_array, cameraTs_array)[:, :, 0, 0] # (N_bool_views, N_views)
len_cameraTs = np.linalg.norm(cameraTs - xyz_3D, axis=1)[None, :] # (1, N_views)
len_group_cameraTs = np.linalg.norm(group_cameraTs - xyz_3D, axis=1)[:, None] # (N_bool_views, 1)
len_total = len_cameraTs * len_group_cameraTs # (N_bool_views, N_views)
cos_total = dot_two / (len_total + 1e-10) # (N_bool_views, N_views)
angle_total = np.arccos(np.clip(cos_total, -1.0, 1.0))
return (angle_total)
def select_group_pairs(projection_M, cameraTs, group_cameraTs, xyz_3D, cube_length, image_shape, angle_thres,
group_pair_num_max, group_pair_num_min, group_pair_index):
'''
given group view number, select groupviews
:param projection_M: the
shape:(N_views, 3,4)
:param cameraTs:
shape:(N_views, 3)
:param group_cameraTs:
shape:(N_boole_views, 3)
:param xyz_3D:
shape:(3)
:param cube_length:
float: the length of the cube
:param image_shape:
(img_h, img_w)
:param angle_thres:
float ses params.in_group_angle
:param group_pair_num_max/min:
int see params.group_pair_num_max/min
:param group_pair_index
list of int pair: see params.group_pair_index
:return:
view_pair_list: list of view_pair index
element in list:
(group_left, group_right, (group_id_left, group_id_right))
group_left/right:
numpy 1d array of view pair number
e.g. [(array([ 6, 16, 4, 2, 6]), array([33, 24, 16, 14, 24]), (0, 2)), (array([ 3, 15, 20, 4, 33]), array([ 7, 36, 5, 19, 4]), (1, 3)), (array([33, 24, 16, 14, 24]), array([24, 15, 22, 34, 15]), (2, 4)), (array([ 7, 36, 5, 19, 4]), array([24, 43, 34, 42, 14]), (3, 5)), (array([24, 15, 22, 34, 15]), array([42, 34, 38, 18, 37]), (4, 6)), (array([24, 43, 34, 42, 14]), array([43, 42, 33, 15, 35]), (5, 7))]
'''
view_in_flag = judge_cubic_center_in_view(projection_M,
xyz_3D,
cube_length,
image_shape,
)
angle_total = viewPairAngles_wrt_groupView(cameraTs, group_cameraTs, xyz_3D)
group_pair_flag = view_in_flag[None, :] * (angle_total < angle_thres)
# print('group_pair_flag', group_pair_flag.shape)
view_list = np.repeat((np.arange(group_pair_flag.shape[1]))[None, :], axis=0, repeats=group_pair_flag.shape[0])
# print(group_pair_flag)
view_num_list = []
for i in range(group_pair_flag.shape[0]):
view_num_i = view_list[i, group_pair_flag[i, :]]
if (view_num_i.shape[0] >= group_pair_num_max):
view_num_i = np.random.choice(view_num_i, group_pair_num_max, replace=False)
view_num_list.append(view_num_i)
view_pair_list = []
for (i, j) in (group_pair_index):
if ((view_num_list[i].shape[0] >= group_pair_num_min) and (view_num_list[j].shape[0] >= group_pair_num_min)):
view_pair_list.append((view_num_list[i], view_num_list[j], (i, j)))
# print('view_pair_list',view_pair_list)
return view_pair_list
def select_group(projection_M, cameraTs, group_cameraTs, xyz_3D, cube_length, image_shape, angle_thres,
group_pair_num_max, group_pair_num_min):
'''
given group view number, select groupviews
:param projection_M: the
shape:(N_views, 3,4)
:param cameraTs:
shape:(N_views, 3)
:param group_cameraTs:
shape:(N_boole_views, 3)
:param xyz_3D:
shape:(3)
:param cube_length:
float: the length of the cube
:param image_shape:
(img_h, img_w)
:param angle_thres:
float ses params.in_group_angle
:param group_pair_num_max/min:
int see params.group_pair_num_max/min
:return:
view_list: list of view index
element in list:
group:
numpy 1d array of view number
'''
# view_in_flag = judge_cubic_center_in_view(projection_M ,
# xyz_3D ,
# cube_length,
# image_shape,
# )
view_in_flag = np.ones((projection_M.shape[0]), dtype=np.bool)
angle_total = viewPairAngles_wrt_groupView(cameraTs, group_cameraTs, xyz_3D)
group_pair_flag = view_in_flag[None, :] * (angle_total < angle_thres)
# print('group_pair_flag', group_pair_flag.shape)
view_list = np.repeat((np.arange(group_pair_flag.shape[1]))[None, :], axis=0, repeats=group_pair_flag.shape[0])
# print(group_pair_flag)
view_num_list = []
for i in range(group_pair_flag.shape[0]):
view_num_i = view_list[i, group_pair_flag[i, :]]
if (view_num_i.shape[0] >= group_pair_num_max):
view_num_i = np.sort(np.random.choice(view_num_i, group_pair_num_max, replace=False), axis=0)
# view_num_i = (np.random.choice(view_num_i, group_pair_num_max, replace = False))
# pdb.set_trace()
if (view_num_i.shape[0] >= group_pair_num_min):
view_num_list.append(view_num_i)
return view_num_list
def perspectiveProj(
projection_M,
xyz_3D,
return_int_hw=True,
return_depth=False):
"""
perform perspective projection from 3D points to 2D points given projection matrix(es)
support multiple projection_matrixes and multiple 3D vectors
notice: [matlabx,matlaby] = [width, height]
----------
inputs:
projection_M: numpy with shape (3,4) / (N_Ms, 3,4), during calculation (3,4) will --> (1,3,4)
xyz_3D: numpy with shape (3,) / (N_pts, 3), during calculation (3,) will --> (1,3)
return_int_hw: bool, round results to integer when True.
----------
outputs:
img_h, img_w: (N_pts,) / (N_Ms, N_pts)
----------
usages:
inputs: (N_Ms, 3,4) & (N_pts, 3), return_int_hw = False/True
>>> np.random.seed(201611)
>>> Ms = np.random.rand(2,3,4)
>>> pts_3D = np.random.rand(2,3)
>>> pts_2Dh, pts_2Dw = perspectiveProj(Ms, pts_3D, return_int_hw = False)
>>> np.allclose(pts_2Dw, np.array([[ 1.35860185, 0.9878389 ],
... [ 0.64522543, 0.76079278 ]]))
True
>>> pts_2Dh_int, pts_2Dw_int = perspectiveProj(Ms, pts_3D, return_int_hw = True)
>>> np.allclose(pts_2Dw_int, np.array([[1, 1], [1, 1]]))
True
inputs: (3,4) & (3,)
>>> np.allclose(
... np.r_[perspectiveProj(Ms[1], pts_3D[0], return_int_hw = False)],
... np.stack((pts_2Dh, pts_2Dw))[:,1,0])
True
"""
if projection_M.shape[-2:] != (3, 4):
raise ValueError(
"perspectiveProj needs projection_M with shape (3,4), however got {}".format(projection_M.shape))
if xyz_3D.ndim == 1:
xyz_3D = xyz_3D[None, :]
if xyz_3D.shape[1] != 3 or xyz_3D.ndim != 2:
raise ValueError(
"perspectiveProj needs xyz_3D with shape (3,) or (N_pts, 3), however got {}".format(xyz_3D.shape))
# perspective projection
N_pts = xyz_3D.shape[0]
xyz1 = np.c_[xyz_3D, np.ones((N_pts, 1))].astype(np.float64) # (N_pts, 3) ==> (N_pts, 4)
pts_3D = np.matmul(projection_M, xyz1.T) # (3, 4)/(N_Ms, 3, 4) * (4, N_pts) ==> (3, N_pts)/(N_Ms,3,N_pts)
# the result is vector: [w,h,1], w is the first dim!!! (matlab's x/y/1')
pts_2D = pts_3D[..., :2, :]
# self.pts_3D = pts_3D
pts_2D /= pts_3D[..., 2:3, :] # (2, N_pts) /= (1, N_pts) | (N_Ms, 2, N_pts) /= (N_Ms, 1, N_pts)
# self.pts_2D = pts_2D
# print(self.pts_2D)
if return_int_hw:
pts_2D = pts_2D.round().astype(np.int64) # (2, N_pts) / (N_Ms, 2, N_pts)
img_w, img_h = pts_2D[..., 0, :], pts_2D[..., 1, :] # (N_pts,) / (N_Ms, N_pts)
if return_depth:
depth = pts_3D[..., 2, :]
return img_h, img_w, depth
return img_h, img_w
def perspectiveProj_cubesCorner(projection_M, cube_xyz_min, cube_D_mm, return_int_hw=True,
return_depth=False):
"""
perform perspective projection from 3D points to 2D points given projection matrix(es)
support multiple projection_matrixes and multiple 3D vectors
notice: [matlabx,matlaby] = [width, height]
----------
inputs:
projection_M: numpy with shape (3,4) / (N_Ms, 3,4), during calculation (3,4) will --> (1,3,4)
cube_xyz_min: numpy with shape (3,) / (N_pts, 3), during calculation (3,) will --> (1,3)
cube_D_mm: cube with shape D^3
return_int_hw: bool, round results to integer when True.
return_depth: bool
----------
outputs:
img_h, img_w: (N_Ms, N_pts, 8)
----------
usages:
inputs: (N_Ms, 3, 4) & (N_pts, 3), return_int_hw = False/True, outputs (N_Ms, N_pts, 8)
>>> np.random.seed(201611)
>>> Ms = np.random.rand(2,3,4)
>>> pts_3D = np.random.rand(2,3)
>>> pts_2Dh, pts_2Dw = perspectiveProj_cubesCorner(Ms, pts_3D, cube_D_mm = 1, return_int_hw = False)
>>> np.allclose(pts_2Dw[:,:,0], np.array([[ 1.35860185, 0.9878389 ],
... [ 0.64522543, 0.76079278 ]]))
True
>>> pts_2Dh_int, pts_2Dw_int = perspectiveProj_cubesCorner(Ms, pts_3D, cube_D_mm = 1, return_int_hw = True)
>>> np.allclose(pts_2Dw_int[:,:,0], np.array([[1, 1], [1, 1]]))
True
inputs: (3,4) & (3,), outputs (1,1,8)
>>> np.allclose(
... perspectiveProj_cubesCorner(Ms[1], pts_3D[0], cube_D_mm = 1, return_int_hw = False)[0],
... pts_2Dh[1,0]) # (1,1,8)
True
"""
if projection_M.shape[-2:] != (3, 4):
raise ValueError(
"perspectiveProj needs projection_M with shape (3,4), however got {}".format(projection_M.shape))
if cube_xyz_min.ndim == 1:
cube_xyz_min = cube_xyz_min[None, :] # (3,) --> (N_pts, 3)
if cube_xyz_min.shape[1] != 3 or cube_xyz_min.ndim != 2:
raise ValueError("perspectiveProj needs cube_xyz_min with shape (3,) or (N_pts, 3), however got {}".format(
cube_xyz_min.shape))
N_pts = cube_xyz_min.shape[0]
cubeCorner_shift = np.indices((2, 2, 2)).reshape((3, -1)).T[None, :, :] * cube_D_mm # (3,2,2,2) --> (1,8,3)
cubeCorner = cube_xyz_min[:, None, :] + cubeCorner_shift # (N_pts, 1, 3) + (1,8,3) --> (N_pts, 8, 3)
img_h, img_w = perspectiveProj(projection_M=projection_M, xyz_3D=cubeCorner.reshape((N_pts * 8, 3)),
return_int_hw=return_int_hw,
return_depth=return_depth) # img_w/h: (N_Ms, N_pts*8)
img_w = img_w.reshape((-1, N_pts, 8))
img_h = img_h.reshape((-1, N_pts, 8))
return img_h, img_w
def image_compress_coef(projection_M,
cube_xyz_min,
cube_D_mm,
_cube_D_,
image_compress_multiple,
compress_ratio=1.0
):
img_h, img_w = perspectiveProj_cubesCorner(projection_M,
cube_xyz_min,
cube_D_mm,
return_int_hw=True,
return_depth=False)
img_h_max = np.max(img_h, axis=2) # (N_Ms, N_pts)
img_w_max = np.max(img_w, axis=2)
img_h_min = np.min(img_h, axis=2)
img_w_min = np.min(img_w, axis=2)
img_h_resol = (img_h_max - img_h_min + 0.0) / _cube_D_
img_w_resol = (img_w_max - img_w_min + 0.0) / _cube_D_
compress_h = compress_ratio * img_h_resol.mean() / image_compress_multiple
compress_w = compress_ratio * img_w_resol.mean() / image_compress_multiple
return ((compress_h), (compress_w))
# def resize_matrix(projection_M, compress_h_new, compress_w_new):
# transform_matrix = np.array([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])
# projection_M_new = np.matmul(transform_matrix, projection_M)
#
# cameraTs = cameraPs2Ts(projection_M)
# cameraTs_new = cameraPs2Ts(projection_M_new)
# trans_vector = (cameraTs - cameraTs_new)[:, :, None]
# identical_matrix = np.repeat(np.array([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]), cameraTs.shape[0], axis=0)
# bottom_matrix = np.repeat(np.array([[[0, 0, 0, 1]]]), cameraTs.shape[0], axis=0)
# transform_matrix2 = np.concatenate((identical_matrix, trans_vector), axis=2)
# transform_matrix2 = np.concatenate((transform_matrix2, bottom_matrix), axis=1)
# projection_M_new_f = np.concatenate((projection_M_new, bottom_matrix), axis=1)
#
# projection_M_new = np.matmul(transform_matrix2, projection_M_new_f)
# projection_M_new = projection_M_new[:, :3, :]
# return projection_M_new
def resize_image_and_matrix(images,
projection_M,
cube_xyz_min,
cube_D_mm,
_cube_D_,
image_compress_multiple,
return_list=False,
compress_ratio=1.0):
'''
compress image and garantee the camera position is not changing
:param images: all images of one model
type:list or None
if list
list element: image array
shape: (img_h,img_w, 3)
:param projection_M: camera matrix
shape: (N_views, 3, 4)
:param cube_xyz_min: min xyz coordinate
shape: (3,) / (N_pts, 3) usually it is (3,) because we only sample one cubic to judge the resize term
:param cube_D_mm:
cubic length float
:param _cube_D_:
cubic size int
:param image_compress_multiple:
same as param.image_compress_multiple
:param return_list: bool
if False return the numpy array
:param compress_ratio
see self.params.compress_ratio
:return:
if image is not None
images_resized:resized image
shape:(N_view, img_h_new, img_w_new)resize_image_and_matrix
projection_M_new: new cameraP
shape:(N_view,3,4)
(compress_h_new,compress_w_new):(float,float)
elif image is None: only change the matrix
projection_M_new: new cameraP
shape:(N_view,3,4)
(compress_h_new,compress_w_new):(float,float)
'''
(compress_h, compress_w) = image_compress_coef(projection_M,
cube_xyz_min,
cube_D_mm,
_cube_D_,
image_compress_multiple,
compress_ratio=compress_ratio)
resized_h = int(image_compress_multiple * (images[0].shape[0] // (compress_h * image_compress_multiple)))
resized_w = int(image_compress_multiple * (images[0].shape[1] // (compress_w * image_compress_multiple)))
compress_h_new = images[0].shape[0] / (resized_h + 0.0)
compress_w_new = images[0].shape[1] / (resized_w + 0.0)
transform_matrix = np.array([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])
projection_M_new = np.matmul(transform_matrix, projection_M)
cameraTs = cameraPs2Ts(projection_M)
cameraTs_new = cameraPs2Ts(projection_M_new)
trans_vector = (cameraTs - cameraTs_new)[:, :, None]
identical_matrix = np.repeat(np.array([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]), cameraTs.shape[0], axis=0)
bottom_matrix = np.repeat(np.array([[[0, 0, 0, 1]]]), cameraTs.shape[0], axis=0)
transform_matrix2 = np.concatenate((identical_matrix, trans_vector), axis=2)
transform_matrix2 = np.concatenate((transform_matrix2, bottom_matrix), axis=1)
projection_M_new_f = np.concatenate((projection_M_new, bottom_matrix), axis=1)
projection_M_new = np.matmul(transform_matrix2, projection_M_new_f)
projection_M_new = projection_M_new[:, :3, :]
image_resized_list = []
if (images is not None):
for image in images:
image_resized = scipy.misc.imresize(image, size=(resized_h, resized_w), interp='bicubic')
image_resized = image_resized / 256.0 - 0.5
image_resized_list.append(image_resized)
images_resized = image_resized_list if return_list else np.stack(image_resized_list)
return (images_resized, projection_M_new, (compress_h_new, compress_w_new))
else:
return (None, projection_M_new, (compress_h_new, compress_w_new))
# def resize_multistage_image_and_matrix(images,
# projection_M,
# cube_xyz_min,
# cube_D_mm,
# _cube_D_,
# image_compress_multiple,
# image_compress_stage,
# return_list=False,
# compress_ratio=1.0):
# '''
# compress image and garantee the camera position is not changing
# :param images: all images of one model
# type:list or None
# if list
# list element: image array
# shape: (img_h,img_w, 3)
#
# :param projection_M: camera matrix
# shape: (N_views, 3, 4)
# :param cube_xyz_min: min xyz coordinate
# shape: (3,) / (N_pts, 3) usually it is (3,) because we only sample one cubic to judge the resize term
# :param cube_D_mm:
# cubic length float
# :param _cube_D_:
# cubic size int
# :param image_compress_multiple:
# same as param.image_compress_multiple
# :param image_compress_stage
# same as param.image_compress_stage
# :param return_list: bool
# if False return the numpy array
# :param compress_ratio
# see self.params.compress_ratio
# :return:
# if image is not None
# image_resized_stage_list:multistage of resized image
# length : = image_compress_stage
# ele in each list:
# shape:(N_view, img_h_new//2**iter, img_w_new//2**iter)
# projection_M_new: new cameraP
# shape:(N_view,3,4)
# (compress_h_new,compress_w_new):(float,float)
# elif image is None: only change the matrix
# projection_M_new: new cameraP
# shape:(N_view,3,4)
# (compress_h_new,compress_w_new):(float,float)
# '''
# # (compress_h, compress_w) = image_compress_coef(projection_M,
# # cube_xyz_min,
# # cube_D_mm,
# # _cube_D_,
# # 1,
# # compress_ratio = compress_ratio)
#
# # print('compress_h', compress_h, compress_w)
# compress_h = compress_ratio
# compress_w = compress_ratio
# resized_h = int(image_compress_multiple * (images[0].shape[0] // (compress_h * image_compress_multiple)))
# resized_w = int(image_compress_multiple * (images[0].shape[1] // (compress_w * image_compress_multiple)))
#
# # pdb.set_trace()
# compress_h_new = images[0].shape[0] / (resized_h + 0.0)
# compress_w_new = images[0].shape[1] / (resized_w + 0.0)
# transform_matrix = np.array([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])
# projection_M_new = np.matmul(transform_matrix, projection_M)
#
# cameraTs = cameraPs2Ts(projection_M)
# cameraTs_new = cameraPs2Ts(projection_M_new)
# trans_vector = (cameraTs - cameraTs_new)[:, :, None]
# identical_matrix = np.repeat(np.array([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]), cameraTs.shape[0], axis=0)
# bottom_matrix = np.repeat(np.array([[[0, 0, 0, 1]]]), cameraTs.shape[0], axis=0)
# transform_matrix2 = np.concatenate((identical_matrix, trans_vector), axis=2)
# transform_matrix2 = np.concatenate((transform_matrix2, bottom_matrix), axis=1)
# projection_M_new_f = np.concatenate((projection_M_new, bottom_matrix), axis=1)
#
# projection_M_new = np.matmul(transform_matrix2, projection_M_new_f)
# projection_M_new = projection_M_new[:, :3, :]
#
# if (images is not None):
# image_resized_stage_list = []
# for iter in range(image_compress_stage):
# image_resized_list = []
# for image in images:
# # print('resized image shape',resized_h, resized_w)
# image_resized = scipy.misc.imresize(image,
# size=(int(resized_h // (2 ** iter)), int(resized_w // (2 ** iter))),
# interp='bicubic')
# image_resized = image_resized / 256.0 - 0.5
# image_resized_list.append(image_resized)
# images_resized = image_resized_list if return_list else np.stack(image_resized_list)
# image_resized_stage_list.append(images_resized)
# return (image_resized_stage_list, projection_M_new, (compress_h_new, compress_w_new))
# else:
# return (None, projection_M_new, (compress_h_new, compress_w_new))
def judge_cubic_center_in_view(projection_M,
xyz_3D,
cube_length,
image_shape,
):
'''
'the bool flag of each view can see the center of cubic:'
:param projection_M:
shape:(N_views, 3, 4)
:param xyz_3D:
shape:(3)
:param cube_length
float
:param image_shape:
(img_h,img_w)
:return:
view_in_flag: bool array
shape: (N_views)
'''
img_h_new, img_w_new = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D,
)
img_h_100, img_w_100 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((cube_length, 0, 0)),
)
img_h_010, img_w_010 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((0, cube_length, 0)),
)
img_h_001, img_w_001 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((0, 0, cube_length)),
)
img_h_011, img_w_011 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((0, cube_length, cube_length)),
)
img_h_101, img_w_101 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((cube_length, 0, cube_length)),
)
img_h_110, img_w_110 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + np.array((cube_length, cube_length, 0)),
)
img_h_111, img_w_111 = perspectiveProj(
projection_M=projection_M,
xyz_3D=xyz_3D + cube_length,
)
img_h_bool = (img_h_new < image_shape[0]) * (img_h_new > 0)
img_w_bool = (img_w_new < image_shape[1]) * (img_w_new > 0)
img_h_bool_001 = (img_h_001 < image_shape[0]) * (img_h_001 > 0)
img_w_bool_001 = (img_w_001 < image_shape[1]) * (img_w_001 > 0)
img_h_bool_010 = (img_h_010 < image_shape[0]) * (img_h_010 > 0)
img_w_bool_010 = (img_w_010 < image_shape[1]) * (img_w_010 > 0)
img_h_bool_100 = (img_h_100 < image_shape[0]) * (img_h_100 > 0)
img_w_bool_100 = (img_w_100 < image_shape[1]) * (img_w_100 > 0)
img_h_bool_011 = (img_h_011 < image_shape[0]) * (img_h_011 > 0)
img_w_bool_011 = (img_w_011 < image_shape[1]) * (img_w_011 > 0)
img_h_bool_110 = (img_h_110 < image_shape[0]) * (img_h_110 > 0)
img_w_bool_110 = (img_w_110 < image_shape[1]) * (img_w_110 > 0)
img_h_bool_101 = (img_h_101 < image_shape[0]) * (img_h_101 > 0)
img_w_bool_101 = (img_w_101 < image_shape[1]) * (img_w_101 > 0)
img_h_bool_111 = (img_h_111 < image_shape[0]) * (img_h_111 > 0)
img_w_bool_111 = (img_w_111 < image_shape[1]) * (img_w_111 > 0)
view_in_flag = img_h_bool * img_w_bool * img_h_bool_001 * img_w_bool_001 * img_h_bool_010 * img_w_bool_010 * img_h_bool_100 * img_w_bool_100 * img_h_bool_110 * img_w_bool_110 * img_h_bool_101 * img_w_bool_101 * img_h_bool_011 * img_w_bool_011 * img_h_bool_111 * img_w_bool_111
print('the bool flag of each view can see the center of cubic:', view_in_flag.sum())
return view_in_flag[:, 0]
def count_gx_gy(projection_M, h_length=1, w_length=1):
projection_M_inverse = inverse_camera_matrix(projection_M)
N_view = projection_M_inverse.shape[0]
vector_101 = np.array(([w_length, 0, 1, 1]))[None, :, None]
vector_011 = np.array(([0, h_length, 1, 1]))[None, :, None]
vector_001 = np.array(([0, 0, 1, 1]))[None, :, None]
global_101 = np.matmul(projection_M_inverse, vector_101)[:, :3, 0] # shape: (N_view, 4,1)->(N_view, 3)
global_011 = np.matmul(projection_M_inverse, vector_011)[:, :3, 0]
global_001 = np.matmul(projection_M_inverse, vector_001)[:, :3, 0]
gx = np.linalg.norm(global_101 - global_001, axis=1) # shape: (N_views)
gy = np.linalg.norm(global_011 - global_001, axis=1)
return (gx, gy)
def generateMetaVector_old(
projection_M,
cube_xyz_min,
cameraTs,
cube_D_resol,
_cube_D_,
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param cube_xyz_min:
shape:(,3)
:param cameraTs:
shape:(N_views, 3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:return:
meta_vector: the array of each vector represent camera position
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 10)
wrapping_vector: the map from each voxel to image
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 3)
'''
x = np.arange(0, _cube_D_, 1.0)
y = np.arange(0, _cube_D_, 1.0)
z = np.arange(0, _cube_D_, 1.0)
if not (x.shape[0] == _cube_D_):
print('shape of Meta vector went wrong')
raise TypeError
xx, yy, zz = np.meshgrid(x, y, z)
XYZ = np.array([yy.flatten(), xx.flatten(), zz.flatten()]).reshape(3, _cube_D_, _cube_D_, _cube_D_)
XYZ = np.moveaxis(XYZ, 0, 3)
if not (list(XYZ[0, 1, 3, :]) == [0.0, 1.0, 3.0]):
print('index of Meta vector went wrong')
raise TypeError
cube_xyz = cube_xyz_min[None, None, None, :] + XYZ * cube_D_resol # shape:(_cube_D_, _cube_D_, _cube_D_, 3)
ones = np.ones((_cube_D_, _cube_D_, _cube_D_, 1))
cube_xyz_matmul = np.concatenate((cube_xyz, ones), axis=3)[None, :, :, :, :,
None] # shape:(1, _cube_D_, _cube_D_, _cube_D_, 4, 1)
projection_M_matmul = projection_M[:, None, None, None, :, :] # shape:(N_view, 1, 1, 1, 3, 4)
project_cube_xyz = np.matmul(projection_M_matmul,
cube_xyz_matmul) # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3, 1)
(gx, gy) = count_gx_gy(projection_M)
Z = project_cube_xyz[:, :, :, :, 2,
0] # the depth of each cubic points shape:(N_view, _cube_D_, _cube_D_, _cube_D_)
alpha_x = (Z * gx[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
alpha_y = (Z * gy[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
print('the average pixel a cubic can get on x axis', alpha_x.mean())
print('the average pixel a cubic can get on y axis', alpha_y.mean())
tau = project_cube_xyz[:, :, :, :, :, 0] / np.linalg.norm(project_cube_xyz[:, :, :, :, :, 0], axis=4)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3)
vector_xyz = cube_xyz[None, :, :, :, :] - cameraTs[:, None, None, None,
:] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
theta = vector_xyz / np.linalg.norm(vector_xyz, axis=4)[:, :, :, :,
None] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
YX = project_cube_xyz[:, :, :, :, :2, 0] / project_cube_xyz[:, :, :, :, 2, 0][:, :, :, :, None]
H = YX[:, :, :, :, 1][:, :, :, :, None] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
W = YX[:, :, :, :, 0][:, :, :, :, None] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
D = np.zeros(np.shape(H))
X = H - np.floor(H) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
Y = W - np.floor(W) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
meta_vector = np.concatenate((alpha_x, alpha_y, tau, theta, X, Y), axis=4)
wrapping_vector = np.concatenate((D, H, W), axis=4)
return (meta_vector, wrapping_vector)
def generateMetaVector(
projection_M,
compress,
cube_xyz_min,
cameraTs,
cube_D_resol,
_cube_D_,
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param cube_xyz_min:
shape:(,3)
:param cameraTs:
shape:(N_views, 3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:return:
meta_vector: the array of each vector represent camera position
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 10)
wrapping_vector: the map from each voxel to image
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 3)
'''
compress_h, compress_w = compress
x = np.arange(0, _cube_D_, 1.0)
y = np.arange(0, _cube_D_, 1.0)
z = np.arange(0, _cube_D_, 1.0)
if not (x.shape[0] == _cube_D_):
print('shape of Meta vector went wrong')
raise TypeError
xx, yy, zz = np.meshgrid(x, y, z)
XYZ = np.array([yy.flatten(), xx.flatten(), zz.flatten()]).reshape(3, _cube_D_, _cube_D_, _cube_D_)
XYZ = np.moveaxis(XYZ, 0, 3)
if not (list(XYZ[0, 1, 3, :]) == [0.0, 1.0, 3.0]):
print('index of Meta vector went wrong')
raise TypeError
cube_xyz = cube_xyz_min[None, None, None, :] + XYZ * cube_D_resol # shape:(_cube_D_, _cube_D_, _cube_D_, 3)
# print('cube_xyz_min[None, None, None, :]', cube_xyz_min[None, None, None, :])
# print('@(*#@!#!@(*$&!@(*')
# print('cube_xyz[2,3,1,:]', cube_xyz[2,3,1,:])
# print('cube_xyz[2,3,2,:]', cube_xyz[2, 3, 2, :])
# print('cube_xyz[2,4,1,:]', cube_xyz[2, 4, 1, :])
ones = np.ones((_cube_D_, _cube_D_, _cube_D_, 1))
cube_xyz_matmul = np.concatenate((cube_xyz, ones), axis=3)[None, :, :, :, :,
None] # shape:(1, _cube_D_, _cube_D_, _cube_D_, 4, 1)
projection_M_matmul = projection_M[:, None, None, None, :, :] # shape:(N_view, 1, 1, 1, 3, 4)
project_cube_xyz = np.matmul(projection_M_matmul,
cube_xyz_matmul) # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3, 1)
# print('@(*#@!#!@(*$&!@(*')
# print(project_cube_xyz.shape)
# print('project_cube_xyz[2,3,1,:]', project_cube_xyz[44, 2, 3, 1, :])
# print('project_cube_xyz[2,3,2,:]', project_cube_xyz[44, 2, 3, 2, :])
# print('project_cube_xyz[2,4,1,:]', project_cube_xyz[44, 2, 4, 1, :])
(gx, gy) = count_gx_gy(projection_M, h_length=compress_h, w_length=compress_w)
Z = project_cube_xyz[:, :, :, :, 2,
0] # the depth of each cubic points shape:(N_view, _cube_D_, _cube_D_, _cube_D_)
alpha_x = (Z * gx[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
alpha_y = (Z * gy[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
print('the average pixel a cubic can get on x axis', alpha_x.mean())
print('the average pixel a cubic can get on y axis', alpha_y.mean())
tau = project_cube_xyz[:, :, :, :, :, 0] / np.linalg.norm(project_cube_xyz[:, :, :, :, :, 0], axis=4)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3)
vector_xyz = cube_xyz[None, :, :, :, :] - cameraTs[:, None, None, None,
:] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
theta = vector_xyz / np.linalg.norm(vector_xyz, axis=4)[:, :, :, :,
None] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
YX = project_cube_xyz[:, :, :, :, :2, 0] / project_cube_xyz[:, :, :, :, 2, 0][:, :, :, :, None]
H = YX[:, :, :, :, 1][:, :, :, :, None] / compress_h # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
W = YX[:, :, :, :, 0][:, :, :, :, None] / compress_w # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
D = np.zeros(np.shape(H))
X = H - np.floor(H) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
Y = W - np.floor(W) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
meta_vector = np.concatenate((alpha_x, alpha_y, tau, theta, X, Y), axis=4)
wrapping_vector = np.concatenate((W, H, D),
axis=4) # To avoid confusion in notation, let’s note that x corresponds to the width dimension IW, y corresponds to the height dimension IH and z corresponds to the depth dimension ID.
return (meta_vector, wrapping_vector)
def generate_sparseMetaVector(
projection_M,
compress,
cube_xyz_min,
stage_num,
cameraTs,
cube_D_resol,
_cube_D_,
info_list=None
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param cube_xyz_min:
shape:(,3)
:param stage_num
int
:param cameraTs:
shape:(N_views, 3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:param info_list
:return:
meta_list: list of meta\wrapping vector
len: stage_num
ele:
(meta_vector, wrapping_vector)
output_list: list of output vector
len: stage_num
ele:
(q_final, xyz_final, rgb_final, n_final)
'''
meta_list = []
input_list = []
output_list = []
resol_new = cube_D_resol
xyz_3D_new = copy.copy(cube_xyz_min)
cube_D_new = _cube_D_
for i in range(stage_num):
cubes_gt_np = info_list[i]
if (i == (stage_num - 1)):
use_dense = True
else:
use_dense = False
(xyz_global_final, xyz_final, rgb_final, n_final, q_final, sort_index) = generate_sparse(
cube_xyz_min=xyz_3D_new,
cube_D_resol=resol_new,
_cube_D_=cube_D_new,
cubes_gt_np=cubes_gt_np,
use_dense=use_dense
)
(meta_vector, wrapping_vector) = generateMeta_from_xyz(projection_M=projection_M,
compress=compress,
cameraTs=cameraTs,
cube_D_resol=resol_new,
_cube_D_=cube_D_new,
pts_xyz=xyz_global_final
)
meta_list.append((meta_vector, wrapping_vector))
output_list.append((q_final, xyz_final, rgb_final, n_final, xyz_global_final, sort_index))
xyz_3D_new += (resol_new / 2)
resol_new *= 2
cube_D_new /= 2
compress = (compress[0] * 2, compress[1] * 2)
return meta_list, output_list
def generate_sparse(
cube_xyz_min,
cube_D_resol,
_cube_D_,
cubes_gt_np=None,
use_dense=False
):
'''
:param cube_xyz_min:
shape:(,3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:param cubes_gt_np
:return:
xyz_global_final : the location of input voxel
shape: (N,3)
xyz_final: the relative location of output voxel
shape: (N,3)
rgb_final: output voxel
shape: (N,3)
n_final: output voxel
shape: (N,3)
q_final: output voxel
shape: bool (N,1)
sort_index: the sort index of the ground truth used for point up convolution
shape: int (N_points,)
'''
# cubes_gt_np_sort = np.sort(cubes_gt_np, order = 'ijk_id')
x = np.arange(0, _cube_D_, 1.0)
y = np.arange(0, _cube_D_, 1.0)
z = np.arange(0, _cube_D_, 1.0)
if not (x.shape[0] == _cube_D_):
print('shape of Meta vector went wrong')
raise TypeError
xx, yy, zz = np.meshgrid(x, y, z)
XYZ = np.array([yy.flatten(), xx.flatten(), zz.flatten()]).T
XYZ_id = 8 * ((_cube_D_ / 2) * (_cube_D_ / 2) * (XYZ[:, 0] // 2) + (_cube_D_ / 2) * (XYZ[:, 1] // 2) + XYZ[:,
2] // 2) + (
4 * (XYZ[:, 0] % 2) + 2 * (XYZ[:, 1] % 2) + XYZ[:, 2] % 2)
XYZ_id_s = (_cube_D_ * _cube_D_ * XYZ[:, 0] + _cube_D_ * XYZ[:, 1] + XYZ[:, 2])
XYZ_np = np.empty((XYZ.shape[0],), dtype=[('ijk', np.uint32, (3,)), ('ijk_id', np.uint32), ('ijk_id_s', np.uint32)])
XYZ_np['ijk'] = XYZ
XYZ_np['ijk_id'] = XYZ_id
XYZ_np['ijk_id_s'] = XYZ_id_s
XYZ_sort_np = np.sort(XYZ_np, order='ijk_id')
XYZ_sort = XYZ_sort_np['ijk']
# xyz_global = np.zeros((XYZ.shape[0], 3))
xyz = np.zeros((XYZ.shape[0], 3))
rgb = np.zeros((XYZ.shape[0], 3))
n = np.zeros((XYZ.shape[0], 3))
q = np.zeros((XYZ.shape[0], 1), dtype=np.bool)
# xyz_global[cubes_gt_np['ijk_id'], :] = cubes_gt_np['xyz_global']
xyz_global = XYZ_sort * cube_D_resol + cube_xyz_min
xyz[cubes_gt_np['ijk_id'], :] = cubes_gt_np['xyz']
rgb[cubes_gt_np['ijk_id'], :] = cubes_gt_np['rgb']
n[cubes_gt_np['ijk_id'], :] = cubes_gt_np['normals']
q[cubes_gt_np['ijk_id'], :] = True
XYZ_big_num = int(XYZ.shape[0] // 8)
xyz_global_new = xyz_global.reshape((XYZ_big_num, 8, 3))
xyz_new = xyz.reshape((XYZ_big_num, 8, 3))
rgb_new = rgb.reshape((XYZ_big_num, 8, 3))
n_new = n.reshape((XYZ_big_num, 8, 3))
q_new = q.reshape((XYZ_big_num, 8, 1))
ijk_id_s_new = XYZ_sort_np['ijk_id_s'].reshape((XYZ_big_num, 8, 1))
if (use_dense):
xyz_global_final = xyz_global_new.reshape((-1, 3))
xyz_final = xyz_new.reshape((-1, 3))
rgb_final = rgb_new.reshape((-1, 3))
n_final = n_new.reshape((-1, 3))
q_final = q_new.reshape((-1, 1))
ijk_id_s_final = ijk_id_s_new.reshape((-1))
else:
cubes_gt_id_big = np.unique(cubes_gt_np['ijk_id'] // 8)
xyz_global_final = xyz_global_new[cubes_gt_id_big, :, :].reshape((-1, 3))
xyz_final = xyz_new[cubes_gt_id_big, :, :].reshape((-1, 3))
rgb_final = rgb_new[cubes_gt_id_big, :, :].reshape((-1, 3))
n_final = n_new[cubes_gt_id_big, :, :].reshape((-1, 3))
q_final = q_new[cubes_gt_id_big, :, :].reshape((-1, 1))
ijk_id_s_final = ijk_id_s_new[cubes_gt_id_big, :, :].reshape((-1))
sort_index = np.argsort(ijk_id_s_final[q_final[:, 0]])
return (xyz_global_final, xyz_final, rgb_final, n_final, q_final, sort_index)
def generateMeta_from_xyz(projection_M,
compress,
cameraTs,
cube_D_resol,
_cube_D_,
pts_xyz
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param cameraTs:
shape:(N_views, 3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:param pts_xyz: points of voxel
shape: (N_points, 3)
:return:
meta_vector: the array of each vector represent camera position
shape: (N_views, N_points, 10)
wrapping_vector: the map from each voxel to image
shape: (N_views, N_points, 3)
'''
compress_h, compress_w = compress
N_points = pts_xyz.shape[0]
ones = np.ones((N_points, 1))
cube_xyz_matmul = np.concatenate((pts_xyz, ones), axis=1)[None, :, :, None] # shape:(1, N_points, 4, 1)
projection_M_matmul = projection_M[:, None, :, :] # shape:(N_view, 1, 3, 4)
project_cube_xyz = np.matmul(projection_M_matmul,
cube_xyz_matmul) # shape:(N_view, N_points, 3, 1)
(gx, gy) = count_gx_gy(projection_M, h_length=compress_h, w_length=compress_w)
Z = project_cube_xyz[:, :, 2,
0] # the depth of each cubic points shape:(N_view, N_points,)
alpha_x = (Z * gx[:, None] / cube_D_resol)[:, :, None] # shape:(N_view, N_points, 1)
alpha_y = (Z * gy[:, None] / cube_D_resol)[:, :, None] # shape:(N_view, N_points, 1)
print('the average pixel a cubic can get on x axis', alpha_x.mean())
print('the average pixel a cubic can get on y axis', alpha_y.mean())
tau = project_cube_xyz[:, :, :, 0] / np.linalg.norm(project_cube_xyz[:, :, :, 0], axis=2)[:, :,
None] # shape:(N_view, N_points, 3)
vector_xyz = pts_xyz[None, :, :] - cameraTs[:, None, :] # shape: (N_view, N_points, 3)
theta = vector_xyz / np.linalg.norm(vector_xyz, axis=2)[:, :, None] # shape: (N_view, N_points, 3)
YX = project_cube_xyz[:, :, :2, 0] / project_cube_xyz[:, :, 2, 0][:, :, None] # shape: (N_view, N_points, 2)
H = YX[:, :, 1][:, :, None] / compress_h # shape: (N_view, N_points, 1)
W = YX[:, :, 0][:, :, None] / compress_w # shape: (N_view, N_points, 1)
D = np.zeros(np.shape(H))
X = H - np.floor(H) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
Y = W - np.floor(W) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
meta_vector = np.concatenate((alpha_x, alpha_y, tau, theta, X, Y), axis=2)
wrapping_vector = np.concatenate((W, H, D),
axis=2) # To avoid confusion in notation, let’s note that x corresponds to the width dimension IW, y corresponds to the height dimension IH and z corresponds to the depth dimension ID.
return (meta_vector, wrapping_vector)
def generateMetaVector(
projection_M,
compress,
cube_xyz_min,
cameraTs,
cube_D_resol,
_cube_D_,
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param cube_xyz_min:
shape:(,3)
:param cameraTs:
shape:(N_views, 3)
:param cube_D_resol: resolution of each voxel
float
:param _cube_D_: length of cube
int
:return:
meta_vector: the array of each vector represent camera position
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 10)
wrapping_vector: the map from each voxel to image
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 3)
'''
compress_h, compress_w = compress
x = np.arange(0, _cube_D_, 1.0)
y = np.arange(0, _cube_D_, 1.0)
z = np.arange(0, _cube_D_, 1.0)
if not (x.shape[0] == _cube_D_):
print('shape of Meta vector went wrong')
raise TypeError
xx, yy, zz = np.meshgrid(x, y, z)
XYZ = np.array([yy.flatten(), xx.flatten(), zz.flatten()]).reshape(3, _cube_D_, _cube_D_, _cube_D_)
XYZ = np.moveaxis(XYZ, 0, 3)
if not (list(XYZ[0, 1, 3, :]) == [0.0, 1.0, 3.0]):
print('index of Meta vector went wrong')
raise TypeError
cube_xyz = cube_xyz_min[None, None, None, :] + XYZ * cube_D_resol # shape:(_cube_D_, _cube_D_, _cube_D_, 3)
# print('cube_xyz_min[None, None, None, :]', cube_xyz_min[None, None, None, :])
# print('@(*#@!#!@(*$&!@(*')
# print('cube_xyz[2,3,1,:]', cube_xyz[2,3,1,:])
# print('cube_xyz[2,3,2,:]', cube_xyz[2, 3, 2, :])
# print('cube_xyz[2,4,1,:]', cube_xyz[2, 4, 1, :])
ones = np.ones((_cube_D_, _cube_D_, _cube_D_, 1))
cube_xyz_matmul = np.concatenate((cube_xyz, ones), axis=3)[None, :, :, :, :,
None] # shape:(1, _cube_D_, _cube_D_, _cube_D_, 4, 1)
projection_M_matmul = projection_M[:, None, None, None, :, :] # shape:(N_view, 1, 1, 1, 3, 4)
project_cube_xyz = np.matmul(projection_M_matmul,
cube_xyz_matmul) # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3, 1)
# print('@(*#@!#!@(*$&!@(*')
# print(project_cube_xyz.shape)
# print('project_cube_xyz[2,3,1,:]', project_cube_xyz[44, 2, 3, 1, :])
# print('project_cube_xyz[2,3,2,:]', project_cube_xyz[44, 2, 3, 2, :])
# print('project_cube_xyz[2,4,1,:]', project_cube_xyz[44, 2, 4, 1, :])
(gx, gy) = count_gx_gy(projection_M, h_length=compress_h, w_length=compress_w)
Z = project_cube_xyz[:, :, :, :, 2,
0] # the depth of each cubic points shape:(N_view, _cube_D_, _cube_D_, _cube_D_)
alpha_x = (Z * gx[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
alpha_y = (Z * gy[:, None, None, None] / cube_D_resol)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
print('the average pixel a cubic can get on x axis', alpha_x.mean())
print('the average pixel a cubic can get on y axis', alpha_y.mean())
tau = project_cube_xyz[:, :, :, :, :, 0] / np.linalg.norm(project_cube_xyz[:, :, :, :, :, 0], axis=4)[:, :, :, :,
None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3)
vector_xyz = cube_xyz[None, :, :, :, :] - cameraTs[:, None, None, None,
:] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
theta = vector_xyz / np.linalg.norm(vector_xyz, axis=4)[:, :, :, :,
None] # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
YX = project_cube_xyz[:, :, :, :, :2, 0] / project_cube_xyz[:, :, :, :, 2, 0][:, :, :, :, None]
H = YX[:, :, :, :, 1][:, :, :, :, None] / compress_h # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
W = YX[:, :, :, :, 0][:, :, :, :, None] / compress_w # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
D = np.zeros(np.shape(H))
X = H - np.floor(H) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
Y = W - np.floor(W) # shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
meta_vector = np.concatenate((alpha_x, alpha_y, tau, theta, X, Y), axis=4)
wrapping_vector = np.concatenate((W, H, D),
axis=4) # To avoid confusion in notation, let’s note that x corresponds to the width dimension IW, y corresponds to the height dimension IH and z corresponds to the depth dimension ID.
return (meta_vector, wrapping_vector)
def generate_multiImageMetaVector(
projection_M,
compress,
xyz_3D,
stage_num,
cameraTs,
images_resized,
angles,
Ts,
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param stage_num
int
:param cameraTs:
shape:(N_views, 3)
:param images_resized:resized images
list
:return:
meta_list: list of meta\wrapping vector
len: stage_num
ele:
(vector_image, cameraTs)
'''
meta_list = []
for i in range(stage_num):
(vector_image) = generateImageMetaVector(
projection_M,
compress,
cameraTs,
image_size=images_resized[i].shape[1:3]
)
# direction_transfer = generateDirectionMetaVector(vector_image,
# cameraTs,
# xyz_3D,
# angles,
# Ts,
# )
meta_list.append(vector_image)
# meta_list.append(direction_transfer)
compress = (compress[0] * 2, compress[1] * 2)
return meta_list
def generate_matrix(
angles,
ts
):
(alpha, beta, gamma) = angles
ratio = 180 / 3.14159
alpha /= ratio
beta /= ratio
gamma /= ratio
(t_x, t_y, t_z) = ts
R_z = np.array([[np.cos(gamma), -np.sin(gamma), 0],
[np.sin(gamma), np.cos(gamma), 0],
[0, 0, 1]])
R_x = np.array([[1, 0, 0],
[0, np.cos(alpha), -np.sin(alpha)],
[0, np.sin(alpha), np.cos(alpha)]])
R_y = np.array([[np.cos(beta), 0, np.sin(beta)],
[0, 1, 0],
[-np.sin(beta), 0, np.cos(beta)]])
R_rotate = np.matmul(R_x, np.matmul(R_y, R_z))
t_total = np.array([[t_x], [t_y], [t_z]])
RT = np.concatenate((R_rotate, t_total), axis=1)
return R_rotate
def generateDirectionMetaVector(vector_image,
cameraTs,
BB_middle,
angles,
ts
):
R_rotate = generate_matrix(angles, ts)
s = BB_middle[None, :] - cameraTs # shape:(N_views,3)
d_origin = 1
v_length = (s[:, :, None, None] * vector_image).sum(axis=1)[:, None, :, :] # shape:(N_views,1,img_w,img_h)
direction = v_length * vector_image - s[:, :, None, None] # shape:(N_views,3,img_w,img_h)
# R_rotate_inverse = np.linalg.inv(R_rotate) #shape(3,3)
direction_rotate = np.matmul(R_rotate[None, None, None, ...], np.moveaxis(direction, 1, -1)[..., None])
direction_rotate = np.moveaxis(direction_rotate[:, :, :, :, 0], -1, 1) # shape:(N_views,3,img_w,img_h)
td_length = (np.array(ts)[None, :, None, None] * direction_rotate).sum(axis=1)[:, None, :, :]
dd_length = (direction_rotate * direction_rotate).sum(axis=1)[:, None, :, :]
direction_transfer = (1 + td_length / (dd_length + 1e-8)) * direction_rotate
return direction_transfer
# pdb.set_trace()
def generateImageMetaVector(
projection_M,
compress,
cameraTs,
image_size
):
'''
:param projection_M:
shape:(N_views, 3, 4)
:param compress
turple: (compress_h, compress_w)
:param cameraTs:
shape:(N_views, 3)
:param image_size
turple
:return:
meta_vector: the array of each vector represent camera position
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 10)
wrapping_vector: the map from each voxel to image
shape: (N_views, _cube_D_, _cube_D_, _cube_D_, 3)
'''
compress_h, compress_w = compress
img_h, img_w = image_size
x = np.arange(0, img_w, 1.0) * compress_w
y = np.arange(0, img_h, 1.0) * compress_h
xx, yy = np.meshgrid(x, y)
XY = np.array([yy.flatten(), xx.flatten()]).T.reshape(img_h, img_w, 2)
XY = np.moveaxis(XY, 2, 0)
Z = np.ones((1, img_h, img_w))
XYZ = np.concatenate((XY, Z), axis=0) # shape:(3,img_h, img_w)
image_vector_inverse = inverseImageVector(projection_M, XYZ)
vector_image = image_vector_inverse - cameraTs[..., None, None]
vector_image = vector_image / (1e-8 + np.linalg.norm(vector_image, axis=1)[:, None, :, :])
vector_image = np.repeat(XY[None, ...] / 1600, cameraTs.shape[0], axis=0)
# return (vector_image, cameraTs)
return (vector_image)
# ones = np.ones((_cube_D_, _cube_D_, _cube_D_, 1))
# cube_xyz_matmul = np.concatenate((cube_xyz, ones), axis = 3)[None, :,:,:,:,None] #shape:(1, _cube_D_, _cube_D_, _cube_D_, 4, 1)
# projection_M_matmul = projection_M[:,None,None,None,:,:] #shape:(N_view, 1, 1, 1, 3, 4)
# project_cube_xyz = np.matmul(projection_M_matmul, cube_xyz_matmul) #shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3, 1)
# (gx, gy) = count_gx_gy(projection_M, h_length = compress_h, w_length = compress_w)
# Z = project_cube_xyz[:,:,:,:,2,0] #the depth of each cubic points shape:(N_view, _cube_D_, _cube_D_, _cube_D_)
# alpha_x = (Z * gx[:,None,None,None] / cube_D_resol)[:, :, :, :, None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# alpha_y = (Z * gy[:,None,None,None] / cube_D_resol)[:, :, :, :, None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# print('the average pixel a cubic can get on x axis', alpha_x.mean())
# print('the average pixel a cubic can get on y axis', alpha_y.mean())
# tau = project_cube_xyz[:, :, :, :, :, 0] / np.linalg.norm(project_cube_xyz[:, :, :, :, :, 0], axis = 4)[:, :, :, :, None] # shape:(N_view, _cube_D_, _cube_D_, _cube_D_, 3)
# vector_xyz = cube_xyz[None, :,:,:,:] - cameraTs[:,None,None,None,:] #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
# theta = vector_xyz / np.linalg.norm(vector_xyz, axis = 4)[:, :, :, :, None] #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 3)
# YX = project_cube_xyz[:,:,:,:,:2,0] / project_cube_xyz[:,:,:,:,2,0][:,:,:,:,None]
# H = YX[:,:,:,:,1][:,:,:,:,None] / compress_h #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# W = YX[:, :, :, :, 0][:,:,:,:,None] / compress_w #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# D = np.zeros(np.shape(H))
# X = H - np.floor(H) #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# Y = W - np.floor(W) #shape: (N_view, _cube_D_, _cube_D_, _cube_D_, 1)
# meta_vector = np.concatenate((alpha_x, alpha_y, tau, theta, X, Y), axis = 4)
# wrapping_vector = np.concatenate((W, H, D), axis = 4) #To avoid confusion in notation, let’s note that x corresponds to the width dimension IW, y corresponds to the height dimension IH and z corresponds to the depth dimension ID.
# return (meta_vector, wrapping_vector)
def rotateImageVector(self, pts_3D, image_vector):
'''
pts_3D:
shape:(M_view * N_points * 3)/(N_points * 3)
image_vector:
shape:(M_view * N_points * 3 * img_h * img_w)/(N_points * 3 * img_h * img_w)
----------------------------------------------------
pts_3D = np.random.rand(1,2,3)
image_vector = np.zeros((1,2,3,4,5))
image_vector[...,:,:] = pts_3D[...,None,None]
camera_test = Camera()
q = camera_test.rotateImageVector(pts_3D, image_vector)
print(q.shape)
print(q)
'''
if (len(image_vector.shape) == 4):
image_vector = np.moveaxis(image_vector, 1, -1)
N, img_h, img_w, _ = image_vector.shape
matrix_x = np.zeros((N, img_h, img_w, 3, 3))
matrix_yz = np.zeros((N, img_h, img_w, 3, 3))
elif (len(image_vector.shape) == 5):
image_vector = np.moveaxis(image_vector, 2, -1)
M, N, img_h, img_w, _ = image_vector.shape
matrix_x = np.zeros((M, N, img_h, img_w, 3, 3))
matrix_yz = np.zeros((M, N, img_h, img_w, 3, 3))
else:
raise ValueError('inputs shape is wrong')
a = pts_3D[..., 0]
b = pts_3D[..., 1]
c = pts_3D[..., 2]
# print(pts_3D[...,1:])
norm_bc = np.linalg.norm(pts_3D[..., 1:], axis=-1)
norm_abc = np.linalg.norm(pts_3D[..., :], axis=-1)
matrix_x[..., 0, 0] = 1.0
matrix_x[..., 1, 1] = (c / norm_bc)[..., None, None]
matrix_x[..., 1, 2] = (b / norm_bc)[..., None, None]
matrix_x[..., 2, 1] = (-b / norm_bc)[..., None, None]
matrix_x[..., 2, 2] = (c / norm_bc)[..., None, None]
matrix_yz[..., 1, 1] = 1.0
matrix_yz[..., 0, 0] = (norm_bc / norm_abc)[..., None, None]
matrix_yz[..., 0, 2] = (a / norm_abc)[..., None, None]
matrix_yz[..., 2, 0] = (-a / norm_abc)[..., None, None]
matrix_yz[..., 2, 2] = (norm_bc / norm_abc)[..., None, None]
self.matrix_R = np.matmul(matrix_x, matrix_yz)
image_vector = np.matmul(image_vector[..., None, :], self.matrix_R)
image_vector = image_vector[..., 0, :]
image_vector = np.moveaxis(image_vector, -1, -3)
return (image_vector)
def inverseImageVector(
projection_M,
image_vector):
'''
projection_M:
shape:(N_views, 3, 4)
image_vector:
shape:(3 * img_h * img_w)
:return
image_vector_inverse
shape:(N_views,3,img_h, img_w)
----------------------------------------------------
'''
image_vector = np.moveaxis(image_vector, 0, -1)
N_Ms = projection_M.shape[0]
img_h, img_w, _ = image_vector.shape
image_vector_new = np.ones((1, img_h, img_w, 4))
image_vector_new[..., 0:3] = image_vector
projection_new = np.zeros((N_Ms, 4, 4))
projection_new[:, 0:3, :] = projection_M
projection_new[:, 3, :] = np.array(([[0, 0, 0, 1]]))
projection_new = np.linalg.inv(projection_new)[:, None, None, :, :] # shape:(N_views,img_h, img_w, 4, 4)
image_vector_inverse = np.matmul(projection_new, image_vector_new[..., None]) # shape:(N_views,img_h, img_w, 4, 1)
image_vector_inverse = image_vector_inverse[..., 0:3, 0]
image_vector_inverse = np.moveaxis(image_vector_inverse, -1, -3) # shape:(N_views,3,img_h, img_w)
return (image_vector_inverse)
def K_partition(cameraKO, compress_ratio_h=4.0, compress_ratio_w=4.0, img_size=(1200, 1600)):
cx = cameraKO[0][2]
cy = cameraKO[1][2]
principal_coords_list = []
partition_num = int(compress_ratio_h * compress_ratio_w)
h = int(img_size[0] / compress_ratio_h)
w = int(img_size[1] / compress_ratio_w)
for i in range(compress_ratio_h):
for j in range(compress_ratio_w):
cxx = cx - j * w
cyy = cy - i * h
principal_coord = (cxx, cyy)
principal_coords_list.append(principal_coord)
cameraKOs = np.empty((partition_num, 3, 3), dtype=np.float64)
for k in range(partition_num):
cameraKOs[k] = cameraKO
cameraKOs[k][0][2] = principal_coords_list[k][0]
cameraKOs[k][1][2] = principal_coords_list[k][1]
return cameraKOs
def partition_image_and_matrix(images,
cameraPO4s_model,
cameraRTO4s_model,
cameraKO4s_model,
# image_compress_stage,
# return_list=False,
compress_ratio_h=4.0,
compress_ratio_w=4.0):
'''
Args:
images, list, (N_view, 3, img_h, img_w)
cameraPO4s_model, (N_view, 4, 4)
compress_ratio_h: compress_ratio for the H dimension.
compress_ratio_w: compress_ratio for the W dimension.
Outputs:
parti_imgs, (N_view, N_partition, 3, parti_h, parti_w)
_cameraP04s, (N_view, N_partition, 4, 4).
'''
num_view = len(images)
num_partition = int(compress_ratio_w * compress_ratio_h)
parti_h = int(images[0].shape[1] / compress_ratio_h)
parti_w = int(images[0].shape[2] / compress_ratio_w)
# parti_imgs = []
parti_imgs = np.empty((num_view, num_partition, 3, parti_h, parti_w), dtype=np.float64)
# cameraPO4s = np.empty((num_view, num_partition, 4, 4), dtype=np.float64)
# print('images.shape: ', images[0].shape)
for view_i in range(num_view):
for partition_j in range(num_partition):
start_h_idx = math.floor(partition_j / compress_ratio_w)
start_w_idx = (partition_j % compress_ratio_w)
start_h_pix = start_h_idx * parti_h
start_w_pix = start_w_idx * parti_w
final_h_pix = start_h_pix + parti_h
final_w_pix = start_w_pix + parti_w
# parti_imgs.append(images[view_i][start_h_pix: final_h_pix, start_w_pix: final_w_pix, :])
parti_imgs[view_i, partition_j, :, :, :] = images[view_i][:, start_h_pix: final_h_pix,
start_w_pix: final_w_pix]
# print('^^^^^^^^^^', parti_imgs.shape)
_cameraP04s, _, _ = CameraPOs_as_torch_partitioned(cameraPO4s_model, cameraRTO4s_model, cameraKO4s_model,
compress_ratio_h=compress_ratio_h, compress_ratio_w=compress_ratio_w,
img_size=(images[0].shape[1], images[0].shape[2]))
return parti_imgs, _cameraP04s
def CameraPOs_as_torch_partitioned(cameraPO4s_model, cameraRTO4s_model, cameraKO4s_model,
compress_ratio_h=4.0, compress_ratio_w=4.0, img_size=(1200, 1600)):
'''
Args:
cameraKO4s_models: (N_view, 3, 3)
outputs:
cameraP04s_: (N_view, N_partition, 4, 4).
'''
# num_model = len(cameraKO4s_models)
num_view = cameraPO4s_model.shape[0]
num_partition = int(compress_ratio_w * compress_ratio_h)
# modify the dimension from (3,4) to (4,4)
cameraPO4s = np.empty((num_view, num_partition, 3, 4), dtype=np.float64)
cameraRTO4s = np.empty((num_view, num_partition, 3, 4), dtype=np.float64)
cameraKO4s = np.empty((num_view, num_partition, 3, 3), dtype=np.float64)
# for i in range(num_model):
for j in range(num_view):
cameraK0 = cameraKO4s_model[j]
cameraK0s = K_partition(cameraK0, compress_ratio_h, compress_ratio_w, img_size) # (num_partition, 3, 3)
for k in range(num_partition):
cameraKO4s[j][k] = cameraK0s[k]
cameraRTO4s[j][k] = cameraRTO4s_model[j]
cameraPO4s[j][k] = np.dot(cameraK0s[k], cameraRTO4s_model[j])
# concatenation for PO4, from (..., 3, 4) to (..., 4, 4).
ones1 = np.repeat(np.array([[[0, 0, 0, 1]]]), repeats=num_partition, axis=0)
ones2 = np.repeat(np.expand_dims(ones1, axis=0), repeats=num_view, axis=0)
# ones3 = np.repeat(np.expand_dims(ones2, axis=0), repeats=num_model, axis=0)
cameraP04s = np.concatenate((cameraPO4s, ones2), axis=2)
#print('cameraP04s shape: ', cameraP04s.shape)
# total_num = num_partition * num_view * num_model
# ones = np.repeat(np.array([[[[[0, 0, 0, 1]]]]]), repeats=total_num, axis=0)
# cameraP04s = np.concatenate((cameraPO4s, ones), axis=3)
_cameraP04s = torch.from_numpy(cameraP04s).type(torch.FloatTensor)
_cameraRTO4s = torch.from_numpy(cameraRTO4s).type(torch.FloatTensor)
_cameraKO4s = torch.from_numpy(cameraKO4s).type(torch.FloatTensor)
return _cameraP04s, _cameraRTO4s, _cameraKO4s
def resize_multistage_image_and_matrix(images,
projection_M,
intrinsic_K,
cube_xyz_min,
cube_D_mm,
_cube_D_,
image_compress_multiple,
image_compress_stage,
return_list=False,
compress_ratio=1.0):
# input intrinsic_K (N_views, 3, 3).
'''
compress image and garantee the camera position is not changing
:param images: all images of one model
type:list or None
if list
list element: image array
shape: (img_h,img_w, 3)
:param projection_M: camera matrix
shape: (N_views, 3, 4)
:param intrinsic_K: intrinsic matrix
shape: (N_views, 3, 3)
:param extrinsic_RT: extrinsic matrix
shape: (N_views, 3, 4)
:param cube_xyz_min: min xyz coordinate
shape: (3,) / (N_pts, 3) usually it is (3,) because we only sample one cubic to judge the resize term
:param cube_D_mm:
cubic length float
:param _cube_D_:
cubic size int
:param image_compress_multiple:
same as param.image_compress_multiple
:param image_compress_stage
same as param.image_compress_stage
:param return_list: bool
if False return the numpy array
:param compress_ratio
see self.params.compress_ratio
:return:
if image is not None
image_resized_stage_list:multistage of resized image
length : = image_compress_stage
ele in each list:
shape:(N_view, img_h_new//2**iter, img_w_new//2**iter)
projection_M_new: new cameraP
shape:(N_view,3,4)
(compress_h_new,compress_w_new):(float,float)
elif image is None: only change the matrix
projection_M_new: new cameraP
shape:(N_view,3,4)
(compress_h_new,compress_w_new):(float,float)
'''
compress_h = compress_ratio
compress_w = compress_ratio
resized_h = int(image_compress_multiple * (images[0].shape[0] // (compress_h * image_compress_multiple)))
resized_w = int(image_compress_multiple * (images[0].shape[1] // (compress_w * image_compress_multiple)))
# pdb.set_trace()
compress_h_new = images[0].shape[0] / (resized_h + 0.0)
compress_w_new = images[0].shape[1] / (resized_w + 0.0)
transform_matrix = np.array([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])
projection_M_new = np.matmul(transform_matrix, projection_M)
# calculate the K after resizing.
intrinsic_K_new = np.matmul(transform_matrix, intrinsic_K)
cameraTs = cameraPs2Ts(projection_M)
cameraTs_new = cameraPs2Ts(projection_M_new)
trans_vector = (cameraTs - cameraTs_new)[:, :, None]
identical_matrix = np.repeat(np.array([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]), cameraTs.shape[0], axis=0)
bottom_matrix = np.repeat(np.array([[[0, 0, 0, 1]]]), cameraTs.shape[0], axis=0)
transform_matrix2 = np.concatenate((identical_matrix, trans_vector), axis=2)
transform_matrix2 = np.concatenate((transform_matrix2, bottom_matrix), axis=1)
projection_M_new_f = np.concatenate((projection_M_new, bottom_matrix), axis=1)
projection_M_new = np.matmul(transform_matrix2, projection_M_new_f)
projection_M_new = projection_M_new[:, :3, :]
if (images is not None):
image_resized_stage_list = []
for iter in range(image_compress_stage):
image_resized_list = []
for image in images:
# print('resized image shape',resized_h, resized_w)
image_resized = scipy.misc.imresize(image,
size=(int(resized_h // (2 ** iter)), int(resized_w // (2 ** iter))),
interp='bicubic')
image_resized = image_resized / 256.0 - 0.5
image_resized_list.append(image_resized)
images_resized = image_resized_list if return_list else np.stack(image_resized_list)
image_resized_stage_list.append(images_resized)
return (image_resized_stage_list, projection_M_new, intrinsic_K_new, (compress_h_new, compress_w_new))
else:
return (None, projection_M_new, intrinsic_K_new, (compress_h_new, compress_w_new))
def resize_matrix(projection_M, intrinsic_K, compress_ratio_total):
"""
input:
projection_M, (N_view, 3, 4).
output:
projection_M_new: (N_view, 3, 4)
intrinsic_K_new: (N_view, 3, 3).
"""
compress_w_new = compress_ratio_total
compress_h_new = compress_ratio_total
transform_matrix = np.array([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])
projection_M_new = np.matmul(transform_matrix, projection_M)
# calculate the K after resizing.
intrinsic_K_new = np.matmul(transform_matrix, intrinsic_K)
cameraTs = cameraPs2Ts(projection_M)
cameraTs_new = cameraPs2Ts(projection_M_new)
trans_vector = (cameraTs - cameraTs_new)[:, :, None]
identical_matrix = np.repeat(np.array([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]), cameraTs.shape[0], axis=0)
bottom_matrix = np.repeat(np.array([[[0, 0, 0, 1]]]), cameraTs.shape[0], axis=0)
transform_matrix2 = np.concatenate((identical_matrix, trans_vector), axis=2)
transform_matrix2 = np.concatenate((transform_matrix2, bottom_matrix), axis=1)
projection_M_new_f = np.concatenate((projection_M_new, bottom_matrix), axis=1)
projection_M_new = np.matmul(transform_matrix2, projection_M_new_f)
projection_M_new = projection_M_new[:, :3, :]
return projection_M_new, intrinsic_K_new
def interpolate_cameras(cameraRTO4s_models, cameraKO4s_models, chooose_list, rate_list, interpolate_num=4, direction=1,
zoomin_flag=False):
if zoomin_flag:
cameraRT_ch1 = torch.Tensor(
np.array([[0.7404845135614985, 0.2325005573497136, 0.6305753991446678, -357.5776160575932],
[-0.6113867548639025, 0.6226553427405186, 0.48837052366865125, -224.67534057994519],
[-0.2790849063168464, -0.747156625483257, 0.6032149168942565, -314.37583021393465]]))
cameraRT_ch2 = torch.Tensor(
np.array([[0.7818430657776811, -0.5105525697800951, 0.3578509652459924, -236.34755864003523],
[0.011400854998416882, 0.5855732302942881, 0.8105398357749803, -432.3902637782938],
[-0.6233711434370777, -0.6296345988675118, 0.46364696910912734, -86.72248020694681]]))
for i in range(len(chooose_list)):
if chooose_list[i] == 1:
cameraRT_new = zoomin_camera(cameraRTO4s_models[0, i], cameraKO4s_models[0, i], rate_list[i])
cameraRTO4s_models[0, i] = cameraRT_new
cameraRTO4s_models[0, 2] = cameraRT_ch1
cameraRTO4s_models[0, 3] = cameraRT_ch2
# cameraK_new = expand_camera(cameraRTO4s_models[0,1], cameraKO4s_models[0,1], 0.5)
# cameraKO4s_models[0,1] = cameraK_new
camera_angles = matrix_to_euler_angles(cameraRTO4s_models[:, :, :, :3],
convention="XYZ") # shape:(N_models, N_view, 3)
camera_ts = cameraRTO4s_models[:, :, :, 3:4] # shape:(N_models, N_view, 3, 1)
camera_angles_begin_expand = camera_angles[:, 0:-1, :][:, :, None, :].expand(-1, -1, interpolate_num,
-1) # shape:(N_models, N_view - 1, interpolate_num, 3)
camera_angles_end_expand = camera_angles[:, 1:, :][:, :, None, :].expand(-1, -1, interpolate_num,
-1) # shape:(N_models, N_view - 1, interpolate_num, 3)
camera_ts_begin_expand = camera_ts[:, 0:-1, ...][:, :, None, ...].expand(-1, -1, interpolate_num, -1,
-1) # shape:(N_models, N_view - 1, interpolate_num, 3, 1)
camera_ts_end_expand = camera_ts[:, 1:, ...][:, :, None, ...].expand(-1, -1, interpolate_num, -1,
-1) # shape:(N_models, N_view - 1, interpolate_num, 3, 1)
if (direction == 1):
interpolate_alpha = torch.arange(0, 1, 1.0 / interpolate_num) # shape : (interpolate_num)
else:
interpolate_alpha = 1 - 1.0 / interpolate_num - torch.arange(0, 1,
1.0 / interpolate_num) # shape : (interpolate_num)
camera_angles_new_expand = interpolate_alpha[None, None, :, None] * camera_angles_begin_expand + (
1 - interpolate_alpha[None, None, :,
None]) * camera_angles_end_expand # shape:(N_models, N_view - 1, interpolate_num, 3)
# camera_angles_new_expand = camera_angles_begin_expand
camera_ts_new_expand = interpolate_alpha[None, None, :, None, None] * camera_ts_begin_expand + (
1 - interpolate_alpha[None, None, :, None,
None]) * camera_ts_end_expand # shape:(N_models, N_view - 1, interpolate_num, 3, 1)
# camera_ts_new_expand = camera_ts_begin_expand
camera_rs_new_expand = euler_angles_to_matrix(camera_angles_new_expand,
convention="XYZ") # shape:(N_models, N_view - 1, interpolate_num, 3, 3)
camera_rt_new_expand = torch.cat((camera_rs_new_expand, camera_ts_new_expand), dim=4)
camera_rt_new = camera_rt_new_expand.reshape(camera_rt_new_expand.shape[0], -1, 3,
4) # shape:(N_models, N_view_new, 3, 4)
camera_ks_expand = cameraKO4s_models[:, 0:-1, None, :, :].expand(-1, -1, interpolate_num, -1,
-1) # shape:(N_models, N_view - 1, interpolate_num, 3, 3)
camera_ks_new = camera_ks_expand.reshape(camera_rt_new_expand.shape[0], -1, 3,
3) # shape:(N_models, N_view_new, 3, 3)
# pdb.set_trace()
camera_p0s_new = torch.matmul(camera_ks_new, camera_rt_new) # shape:(N_models, N_view_new, 3, 4)
camera_ts_new = torch.from_numpy(cameraPs2Ts_all(camera_p0s_new.numpy())).type(camera_p0s_new.dtype)
ones = torch.tensor([0, 0, 0, 1]).type(camera_rt_new.dtype)[None, None, None, :].expand(camera_rt_new.shape[0],
camera_rt_new.shape[1], 1,
-1) # shape:(N_models, N_view_new, 1, 4)
camera_p04s_new = torch.cat((camera_p0s_new, ones), dim=2) # shape:(N_models, N_view_new, 4, 4)
# pdb.set_trace()
# return more camera parameters.
return camera_p04s_new, camera_p0s_new, camera_ks_new, camera_rt_new, camera_ts_new | [
"numpy.clip",
"pytorch3d.transforms.euler_angles_to_matrix",
"math.floor",
"torch.from_numpy",
"numpy.argsort",
"numpy.array",
"scipy.misc.imresize",
"numpy.linalg.norm",
"numpy.moveaxis",
"numpy.sin",
"copy.copy",
"numpy.arange",
"torch.arange",
"numpy.multiply",
"numpy.repeat",
"nump... | [((358, 387), 'numpy.where', 'np.where', (['(index_list % 5 == 0)'], {}), '(index_list % 5 == 0)\n', (366, 387), True, 'import numpy as np\n'), ((3770, 3828), 'numpy.loadtxt', 'np.loadtxt', (['cameraPO_file'], {'dtype': 'np.float64', 'delimiter': '""" """'}), "(cameraPO_file, dtype=np.float64, delimiter=' ')\n", (3780, 3828), True, 'import numpy as np\n'), ((18503, 18554), 'numpy.zeros', 'np.zeros', (['(model_num, cameraPOs_all[0].shape[0], 3)'], {}), '((model_num, cameraPOs_all[0].shape[0], 3))\n', (18511, 18554), True, 'import numpy as np\n'), ((19224, 19246), 'numpy.zeros', 'np.zeros', (['(N_Ms, 4, 4)'], {}), '((N_Ms, 4, 4))\n', (19232, 19246), True, 'import numpy as np\n'), ((19319, 19343), 'numpy.array', 'np.array', (['[[0, 0, 0, 1]]'], {}), '([[0, 0, 0, 1]])\n', (19327, 19343), True, 'import numpy as np\n'), ((19367, 19396), 'numpy.linalg.inv', 'np.linalg.inv', (['projection_new'], {}), '(projection_new)\n', (19380, 19396), True, 'import numpy as np\n'), ((20953, 20977), 'numpy.asarray', 'np.asarray', (['combinations'], {}), '(combinations)\n', (20963, 20977), True, 'import numpy as np\n'), ((28025, 28070), 'numpy.ones', 'np.ones', (['projection_M.shape[0]'], {'dtype': 'np.bool'}), '(projection_M.shape[0], dtype=np.bool)\n', (28032, 28070), True, 'import numpy as np\n'), ((30994, 31025), 'numpy.matmul', 'np.matmul', (['projection_M', 'xyz1.T'], {}), '(projection_M, xyz1.T)\n', (31003, 31025), True, 'import numpy as np\n'), ((35039, 35060), 'numpy.max', 'np.max', (['img_h'], {'axis': '(2)'}), '(img_h, axis=2)\n', (35045, 35060), True, 'import numpy as np\n'), ((35094, 35115), 'numpy.max', 'np.max', (['img_w'], {'axis': '(2)'}), '(img_w, axis=2)\n', (35100, 35115), True, 'import numpy as np\n'), ((35132, 35153), 'numpy.min', 'np.min', (['img_h'], {'axis': '(2)'}), '(img_h, axis=2)\n', (35138, 35153), True, 'import numpy as np\n'), ((35170, 35191), 'numpy.min', 'np.min', (['img_w'], {'axis': '(2)'}), '(img_w, axis=2)\n', (35176, 35191), True, 'import numpy as np\n'), ((38901, 38980), 'numpy.array', 'np.array', (['[[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]]'], {}), '([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])\n', (38909, 38980), True, 'import numpy as np\n'), ((39004, 39045), 'numpy.matmul', 'np.matmul', (['transform_matrix', 'projection_M'], {}), '(transform_matrix, projection_M)\n', (39013, 39045), True, 'import numpy as np\n'), ((39410, 39466), 'numpy.concatenate', 'np.concatenate', (['(identical_matrix, trans_vector)'], {'axis': '(2)'}), '((identical_matrix, trans_vector), axis=2)\n', (39424, 39466), True, 'import numpy as np\n'), ((39491, 39549), 'numpy.concatenate', 'np.concatenate', (['(transform_matrix2, bottom_matrix)'], {'axis': '(1)'}), '((transform_matrix2, bottom_matrix), axis=1)\n', (39505, 39549), True, 'import numpy as np\n'), ((39575, 39632), 'numpy.concatenate', 'np.concatenate', (['(projection_M_new, bottom_matrix)'], {'axis': '(1)'}), '((projection_M_new, bottom_matrix), axis=1)\n', (39589, 39632), True, 'import numpy as np\n'), ((39657, 39705), 'numpy.matmul', 'np.matmul', (['transform_matrix2', 'projection_M_new_f'], {}), '(transform_matrix2, projection_M_new_f)\n', (39666, 39705), True, 'import numpy as np\n'), ((48878, 48925), 'numpy.linalg.norm', 'np.linalg.norm', (['(global_101 - global_001)'], {'axis': '(1)'}), '(global_101 - global_001, axis=1)\n', (48892, 48925), True, 'import numpy as np\n'), ((48955, 49002), 'numpy.linalg.norm', 'np.linalg.norm', (['(global_011 - global_001)'], {'axis': '(1)'}), '(global_011 - global_001, axis=1)\n', (48969, 49002), True, 'import numpy as np\n'), ((49711, 49738), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (49720, 49738), True, 'import numpy as np\n'), ((49747, 49774), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (49756, 49774), True, 'import numpy as np\n'), ((49783, 49810), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (49792, 49810), True, 'import numpy as np\n'), ((49938, 49958), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y', 'z'], {}), '(x, y, z)\n', (49949, 49958), True, 'import numpy as np\n'), ((50073, 50095), 'numpy.moveaxis', 'np.moveaxis', (['XYZ', '(0)', '(3)'], {}), '(XYZ, 0, 3)\n', (50084, 50095), True, 'import numpy as np\n'), ((50348, 50390), 'numpy.ones', 'np.ones', (['(_cube_D_, _cube_D_, _cube_D_, 1)'], {}), '((_cube_D_, _cube_D_, _cube_D_, 1))\n', (50355, 50390), True, 'import numpy as np\n'), ((50672, 50719), 'numpy.matmul', 'np.matmul', (['projection_M_matmul', 'cube_xyz_matmul'], {}), '(projection_M_matmul, cube_xyz_matmul)\n', (50681, 50719), True, 'import numpy as np\n'), ((52463, 52523), 'numpy.concatenate', 'np.concatenate', (['(alpha_x, alpha_y, tau, theta, X, Y)'], {'axis': '(4)'}), '((alpha_x, alpha_y, tau, theta, X, Y), axis=4)\n', (52477, 52523), True, 'import numpy as np\n'), ((52546, 52579), 'numpy.concatenate', 'np.concatenate', (['(D, H, W)'], {'axis': '(4)'}), '((D, H, W), axis=4)\n', (52560, 52579), True, 'import numpy as np\n'), ((53425, 53452), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (53434, 53452), True, 'import numpy as np\n'), ((53461, 53488), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (53470, 53488), True, 'import numpy as np\n'), ((53497, 53524), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (53506, 53524), True, 'import numpy as np\n'), ((53652, 53672), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y', 'z'], {}), '(x, y, z)\n', (53663, 53672), True, 'import numpy as np\n'), ((53787, 53809), 'numpy.moveaxis', 'np.moveaxis', (['XYZ', '(0)', '(3)'], {}), '(XYZ, 0, 3)\n', (53798, 53809), True, 'import numpy as np\n'), ((54342, 54384), 'numpy.ones', 'np.ones', (['(_cube_D_, _cube_D_, _cube_D_, 1)'], {}), '((_cube_D_, _cube_D_, _cube_D_, 1))\n', (54349, 54384), True, 'import numpy as np\n'), ((54666, 54713), 'numpy.matmul', 'np.matmul', (['projection_M_matmul', 'cube_xyz_matmul'], {}), '(projection_M_matmul, cube_xyz_matmul)\n', (54675, 54713), True, 'import numpy as np\n'), ((56820, 56880), 'numpy.concatenate', 'np.concatenate', (['(alpha_x, alpha_y, tau, theta, X, Y)'], {'axis': '(4)'}), '((alpha_x, alpha_y, tau, theta, X, Y), axis=4)\n', (56834, 56880), True, 'import numpy as np\n'), ((56903, 56936), 'numpy.concatenate', 'np.concatenate', (['(W, H, D)'], {'axis': '(4)'}), '((W, H, D), axis=4)\n', (56917, 56936), True, 'import numpy as np\n'), ((58188, 58211), 'copy.copy', 'copy.copy', (['cube_xyz_min'], {}), '(cube_xyz_min)\n', (58197, 58211), False, 'import copy\n'), ((60481, 60508), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (60490, 60508), True, 'import numpy as np\n'), ((60517, 60544), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (60526, 60544), True, 'import numpy as np\n'), ((60553, 60580), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (60562, 60580), True, 'import numpy as np\n'), ((60708, 60728), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y', 'z'], {}), '(x, y, z)\n', (60719, 60728), True, 'import numpy as np\n'), ((61205, 61317), 'numpy.empty', 'np.empty', (['(XYZ.shape[0],)'], {'dtype': "[('ijk', np.uint32, (3,)), ('ijk_id', np.uint32), ('ijk_id_s', np.uint32)]"}), "((XYZ.shape[0],), dtype=[('ijk', np.uint32, (3,)), ('ijk_id', np.\n uint32), ('ijk_id_s', np.uint32)])\n", (61213, 61317), True, 'import numpy as np\n'), ((61419, 61450), 'numpy.sort', 'np.sort', (['XYZ_np'], {'order': '"""ijk_id"""'}), "(XYZ_np, order='ijk_id')\n", (61426, 61450), True, 'import numpy as np\n'), ((61543, 61570), 'numpy.zeros', 'np.zeros', (['(XYZ.shape[0], 3)'], {}), '((XYZ.shape[0], 3))\n', (61551, 61570), True, 'import numpy as np\n'), ((61581, 61608), 'numpy.zeros', 'np.zeros', (['(XYZ.shape[0], 3)'], {}), '((XYZ.shape[0], 3))\n', (61589, 61608), True, 'import numpy as np\n'), ((61617, 61644), 'numpy.zeros', 'np.zeros', (['(XYZ.shape[0], 3)'], {}), '((XYZ.shape[0], 3))\n', (61625, 61644), True, 'import numpy as np\n'), ((61653, 61695), 'numpy.zeros', 'np.zeros', (['(XYZ.shape[0], 1)'], {'dtype': 'np.bool'}), '((XYZ.shape[0], 1), dtype=np.bool)\n', (61661, 61695), True, 'import numpy as np\n'), ((63204, 63245), 'numpy.argsort', 'np.argsort', (['ijk_id_s_final[q_final[:, 0]]'], {}), '(ijk_id_s_final[q_final[:, 0]])\n', (63214, 63245), True, 'import numpy as np\n'), ((64317, 64339), 'numpy.ones', 'np.ones', (['(N_points, 1)'], {}), '((N_points, 1))\n', (64324, 64339), True, 'import numpy as np\n'), ((64553, 64600), 'numpy.matmul', 'np.matmul', (['projection_M_matmul', 'cube_xyz_matmul'], {}), '(projection_M_matmul, cube_xyz_matmul)\n', (64562, 64600), True, 'import numpy as np\n'), ((66033, 66093), 'numpy.concatenate', 'np.concatenate', (['(alpha_x, alpha_y, tau, theta, X, Y)'], {'axis': '(2)'}), '((alpha_x, alpha_y, tau, theta, X, Y), axis=2)\n', (66047, 66093), True, 'import numpy as np\n'), ((66116, 66149), 'numpy.concatenate', 'np.concatenate', (['(W, H, D)'], {'axis': '(2)'}), '((W, H, D), axis=2)\n', (66130, 66149), True, 'import numpy as np\n'), ((67209, 67236), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (67218, 67236), True, 'import numpy as np\n'), ((67245, 67272), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (67254, 67272), True, 'import numpy as np\n'), ((67281, 67308), 'numpy.arange', 'np.arange', (['(0)', '_cube_D_', '(1.0)'], {}), '(0, _cube_D_, 1.0)\n', (67290, 67308), True, 'import numpy as np\n'), ((67436, 67456), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y', 'z'], {}), '(x, y, z)\n', (67447, 67456), True, 'import numpy as np\n'), ((67571, 67593), 'numpy.moveaxis', 'np.moveaxis', (['XYZ', '(0)', '(3)'], {}), '(XYZ, 0, 3)\n', (67582, 67593), True, 'import numpy as np\n'), ((68126, 68168), 'numpy.ones', 'np.ones', (['(_cube_D_, _cube_D_, _cube_D_, 1)'], {}), '((_cube_D_, _cube_D_, _cube_D_, 1))\n', (68133, 68168), True, 'import numpy as np\n'), ((68450, 68497), 'numpy.matmul', 'np.matmul', (['projection_M_matmul', 'cube_xyz_matmul'], {}), '(projection_M_matmul, cube_xyz_matmul)\n', (68459, 68497), True, 'import numpy as np\n'), ((70604, 70664), 'numpy.concatenate', 'np.concatenate', (['(alpha_x, alpha_y, tau, theta, X, Y)'], {'axis': '(4)'}), '((alpha_x, alpha_y, tau, theta, X, Y), axis=4)\n', (70618, 70664), True, 'import numpy as np\n'), ((70687, 70720), 'numpy.concatenate', 'np.concatenate', (['(W, H, D)'], {'axis': '(4)'}), '((W, H, D), axis=4)\n', (70701, 70720), True, 'import numpy as np\n'), ((73075, 73106), 'numpy.array', 'np.array', (['[[t_x], [t_y], [t_z]]'], {}), '([[t_x], [t_y], [t_z]])\n', (73083, 73106), True, 'import numpy as np\n'), ((73116, 73159), 'numpy.concatenate', 'np.concatenate', (['(R_rotate, t_total)'], {'axis': '(1)'}), '((R_rotate, t_total), axis=1)\n', (73130, 73159), True, 'import numpy as np\n'), ((73945, 73996), 'numpy.moveaxis', 'np.moveaxis', (['direction_rotate[:, :, :, :, 0]', '(-1)', '(1)'], {}), '(direction_rotate[:, :, :, :, 0], -1, 1)\n', (73956, 73996), True, 'import numpy as np\n'), ((75119, 75136), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y'], {}), '(x, y)\n', (75130, 75136), True, 'import numpy as np\n'), ((75221, 75242), 'numpy.moveaxis', 'np.moveaxis', (['XY', '(2)', '(0)'], {}), '(XY, 2, 0)\n', (75232, 75242), True, 'import numpy as np\n'), ((75251, 75277), 'numpy.ones', 'np.ones', (['(1, img_h, img_w)'], {}), '((1, img_h, img_w))\n', (75258, 75277), True, 'import numpy as np\n'), ((75288, 75319), 'numpy.concatenate', 'np.concatenate', (['(XY, Z)'], {'axis': '(0)'}), '((XY, Z), axis=0)\n', (75302, 75319), True, 'import numpy as np\n'), ((75596, 75654), 'numpy.repeat', 'np.repeat', (['(XY[None, ...] / 1600)', 'cameraTs.shape[0]'], {'axis': '(0)'}), '(XY[None, ...] / 1600, cameraTs.shape[0], axis=0)\n', (75605, 75654), True, 'import numpy as np\n'), ((79251, 79291), 'numpy.linalg.norm', 'np.linalg.norm', (['pts_3D[..., 1:]'], {'axis': '(-1)'}), '(pts_3D[..., 1:], axis=-1)\n', (79265, 79291), True, 'import numpy as np\n'), ((79307, 79346), 'numpy.linalg.norm', 'np.linalg.norm', (['pts_3D[..., :]'], {'axis': '(-1)'}), '(pts_3D[..., :], axis=-1)\n', (79321, 79346), True, 'import numpy as np\n'), ((79909, 79939), 'numpy.matmul', 'np.matmul', (['matrix_x', 'matrix_yz'], {}), '(matrix_x, matrix_yz)\n', (79918, 79939), True, 'import numpy as np\n'), ((79959, 80011), 'numpy.matmul', 'np.matmul', (['image_vector[..., None, :]', 'self.matrix_R'], {}), '(image_vector[..., None, :], self.matrix_R)\n', (79968, 80011), True, 'import numpy as np\n'), ((80074, 80107), 'numpy.moveaxis', 'np.moveaxis', (['image_vector', '(-1)', '(-3)'], {}), '(image_vector, -1, -3)\n', (80085, 80107), True, 'import numpy as np\n'), ((80484, 80516), 'numpy.moveaxis', 'np.moveaxis', (['image_vector', '(0)', '(-1)'], {}), '(image_vector, 0, -1)\n', (80495, 80516), True, 'import numpy as np\n'), ((80614, 80643), 'numpy.ones', 'np.ones', (['(1, img_h, img_w, 4)'], {}), '((1, img_h, img_w, 4))\n', (80621, 80643), True, 'import numpy as np\n'), ((80712, 80734), 'numpy.zeros', 'np.zeros', (['(N_Ms, 4, 4)'], {}), '((N_Ms, 4, 4))\n', (80720, 80734), True, 'import numpy as np\n'), ((80810, 80834), 'numpy.array', 'np.array', (['[[0, 0, 0, 1]]'], {}), '([[0, 0, 0, 1]])\n', (80818, 80834), True, 'import numpy as np\n'), ((80975, 81029), 'numpy.matmul', 'np.matmul', (['projection_new', 'image_vector_new[..., None]'], {}), '(projection_new, image_vector_new[..., None])\n', (80984, 81029), True, 'import numpy as np\n'), ((81157, 81198), 'numpy.moveaxis', 'np.moveaxis', (['image_vector_inverse', '(-1)', '(-3)'], {}), '(image_vector_inverse, -1, -3)\n', (81168, 81198), True, 'import numpy as np\n'), ((81848, 81897), 'numpy.empty', 'np.empty', (['(partition_num, 3, 3)'], {'dtype': 'np.float64'}), '((partition_num, 3, 3), dtype=np.float64)\n', (81856, 81897), True, 'import numpy as np\n'), ((83112, 83186), 'numpy.empty', 'np.empty', (['(num_view, num_partition, 3, parti_h, parti_w)'], {'dtype': 'np.float64'}), '((num_view, num_partition, 3, parti_h, parti_w), dtype=np.float64)\n', (83120, 83186), True, 'import numpy as np\n'), ((84959, 85018), 'numpy.empty', 'np.empty', (['(num_view, num_partition, 3, 4)'], {'dtype': 'np.float64'}), '((num_view, num_partition, 3, 4), dtype=np.float64)\n', (84967, 85018), True, 'import numpy as np\n'), ((85037, 85096), 'numpy.empty', 'np.empty', (['(num_view, num_partition, 3, 4)'], {'dtype': 'np.float64'}), '((num_view, num_partition, 3, 4), dtype=np.float64)\n', (85045, 85096), True, 'import numpy as np\n'), ((85114, 85173), 'numpy.empty', 'np.empty', (['(num_view, num_partition, 3, 3)'], {'dtype': 'np.float64'}), '((num_view, num_partition, 3, 3), dtype=np.float64)\n', (85122, 85173), True, 'import numpy as np\n'), ((85923, 85966), 'numpy.concatenate', 'np.concatenate', (['(cameraPO4s, ones2)'], {'axis': '(2)'}), '((cameraPO4s, ones2), axis=2)\n', (85937, 85966), True, 'import numpy as np\n'), ((89116, 89195), 'numpy.array', 'np.array', (['[[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]]'], {}), '([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])\n', (89124, 89195), True, 'import numpy as np\n'), ((89219, 89260), 'numpy.matmul', 'np.matmul', (['transform_matrix', 'projection_M'], {}), '(transform_matrix, projection_M)\n', (89228, 89260), True, 'import numpy as np\n'), ((89321, 89361), 'numpy.matmul', 'np.matmul', (['transform_matrix', 'intrinsic_K'], {}), '(transform_matrix, intrinsic_K)\n', (89330, 89361), True, 'import numpy as np\n'), ((89726, 89782), 'numpy.concatenate', 'np.concatenate', (['(identical_matrix, trans_vector)'], {'axis': '(2)'}), '((identical_matrix, trans_vector), axis=2)\n', (89740, 89782), True, 'import numpy as np\n'), ((89807, 89865), 'numpy.concatenate', 'np.concatenate', (['(transform_matrix2, bottom_matrix)'], {'axis': '(1)'}), '((transform_matrix2, bottom_matrix), axis=1)\n', (89821, 89865), True, 'import numpy as np\n'), ((89891, 89948), 'numpy.concatenate', 'np.concatenate', (['(projection_M_new, bottom_matrix)'], {'axis': '(1)'}), '((projection_M_new, bottom_matrix), axis=1)\n', (89905, 89948), True, 'import numpy as np\n'), ((89973, 90021), 'numpy.matmul', 'np.matmul', (['transform_matrix2', 'projection_M_new_f'], {}), '(transform_matrix2, projection_M_new_f)\n', (89982, 90021), True, 'import numpy as np\n'), ((91398, 91477), 'numpy.array', 'np.array', (['[[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]]'], {}), '([[[1 / compress_w_new, 0, 0], [0, 1 / compress_h_new, 0], [0, 0, 1]]])\n', (91406, 91477), True, 'import numpy as np\n'), ((91501, 91542), 'numpy.matmul', 'np.matmul', (['transform_matrix', 'projection_M'], {}), '(transform_matrix, projection_M)\n', (91510, 91542), True, 'import numpy as np\n'), ((91604, 91644), 'numpy.matmul', 'np.matmul', (['transform_matrix', 'intrinsic_K'], {}), '(transform_matrix, intrinsic_K)\n', (91613, 91644), True, 'import numpy as np\n'), ((92009, 92065), 'numpy.concatenate', 'np.concatenate', (['(identical_matrix, trans_vector)'], {'axis': '(2)'}), '((identical_matrix, trans_vector), axis=2)\n', (92023, 92065), True, 'import numpy as np\n'), ((92090, 92148), 'numpy.concatenate', 'np.concatenate', (['(transform_matrix2, bottom_matrix)'], {'axis': '(1)'}), '((transform_matrix2, bottom_matrix), axis=1)\n', (92104, 92148), True, 'import numpy as np\n'), ((92174, 92231), 'numpy.concatenate', 'np.concatenate', (['(projection_M_new, bottom_matrix)'], {'axis': '(1)'}), '((projection_M_new, bottom_matrix), axis=1)\n', (92188, 92231), True, 'import numpy as np\n'), ((92256, 92304), 'numpy.matmul', 'np.matmul', (['transform_matrix2', 'projection_M_new_f'], {}), '(transform_matrix2, projection_M_new_f)\n', (92265, 92304), True, 'import numpy as np\n'), ((93795, 93868), 'pytorch3d.transforms.matrix_to_euler_angles', 'matrix_to_euler_angles', (['cameraRTO4s_models[:, :, :, :3]'], {'convention': '"""XYZ"""'}), "(cameraRTO4s_models[:, :, :, :3], convention='XYZ')\n", (93817, 93868), False, 'from pytorch3d.transforms import euler_angles_to_matrix, matrix_to_euler_angles\n'), ((95981, 96047), 'pytorch3d.transforms.euler_angles_to_matrix', 'euler_angles_to_matrix', (['camera_angles_new_expand'], {'convention': '"""XYZ"""'}), "(camera_angles_new_expand, convention='XYZ')\n", (96003, 96047), False, 'from pytorch3d.transforms import euler_angles_to_matrix, matrix_to_euler_angles\n'), ((96180, 96242), 'torch.cat', 'torch.cat', (['(camera_rs_new_expand, camera_ts_new_expand)'], {'dim': '(4)'}), '((camera_rs_new_expand, camera_ts_new_expand), dim=4)\n', (96189, 96242), False, 'import torch\n'), ((96861, 96903), 'torch.matmul', 'torch.matmul', (['camera_ks_new', 'camera_rt_new'], {}), '(camera_ks_new, camera_rt_new)\n', (96873, 96903), False, 'import torch\n'), ((97440, 97480), 'torch.cat', 'torch.cat', (['(camera_p0s_new, ones)'], {'dim': '(2)'}), '((camera_p0s_new, ones), dim=2)\n', (97449, 97480), False, 'import torch\n'), ((1832, 1859), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (1838, 1859), True, 'import numpy as np\n'), ((2926, 2953), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (2932, 2953), True, 'import numpy as np\n'), ((4892, 4917), 'numpy.dot', 'np.dot', (['_K', 'np.c_[_R, _t]'], {}), '(_K, np.c_[_R, _t])\n', (4898, 4917), True, 'import numpy as np\n'), ((17539, 17558), 'numpy.array', 'np.array', (['cameraP4s'], {}), '(cameraP4s)\n', (17547, 17558), True, 'import numpy as np\n'), ((17560, 17579), 'numpy.array', 'np.array', (['cameraRTs'], {}), '(cameraRTs)\n', (17568, 17579), True, 'import numpy as np\n'), ((17581, 17599), 'numpy.array', 'np.array', (['cameraKs'], {}), '(cameraKs)\n', (17589, 17599), True, 'import numpy as np\n'), ((19109, 19131), 'numpy.stack', 'np.stack', (['cameraT_list'], {}), '(cameraT_list)\n', (19117, 19131), True, 'import numpy as np\n'), ((22725, 22830), 'numpy.multiply', 'np.multiply', (['unit_vector_pts2cameras[:, viewPairs[:, 0]]', 'unit_vector_pts2cameras[:, viewPairs[:, 1]]'], {}), '(unit_vector_pts2cameras[:, viewPairs[:, 0]],\n unit_vector_pts2cameras[:, viewPairs[:, 1]])\n', (22736, 22830), True, 'import numpy as np\n'), ((23687, 23734), 'numpy.matmul', 'np.matmul', (['group_cameraTs_array', 'cameraTs_array'], {}), '(group_cameraTs_array, cameraTs_array)\n', (23696, 23734), True, 'import numpy as np\n'), ((23794, 23835), 'numpy.linalg.norm', 'np.linalg.norm', (['(cameraTs - xyz_3D)'], {'axis': '(1)'}), '(cameraTs - xyz_3D, axis=1)\n', (23808, 23835), True, 'import numpy as np\n'), ((23886, 23933), 'numpy.linalg.norm', 'np.linalg.norm', (['(group_cameraTs - xyz_3D)'], {'axis': '(1)'}), '(group_cameraTs - xyz_3D, axis=1)\n', (23900, 23933), True, 'import numpy as np\n'), ((24144, 24173), 'numpy.clip', 'np.clip', (['cos_total', '(-1.0)', '(1.0)'], {}), '(cos_total, -1.0, 1.0)\n', (24151, 24173), True, 'import numpy as np\n'), ((39227, 39272), 'numpy.array', 'np.array', (['[[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]'], {}), '([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]])\n', (39235, 39272), True, 'import numpy as np\n'), ((39331, 39357), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (39339, 39357), True, 'import numpy as np\n'), ((48450, 48479), 'numpy.array', 'np.array', (['[w_length, 0, 1, 1]'], {}), '([w_length, 0, 1, 1])\n', (48458, 48479), True, 'import numpy as np\n'), ((48514, 48543), 'numpy.array', 'np.array', (['[0, h_length, 1, 1]'], {}), '([0, h_length, 1, 1])\n', (48522, 48543), True, 'import numpy as np\n'), ((48578, 48600), 'numpy.array', 'np.array', (['[0, 0, 1, 1]'], {}), '([0, 0, 1, 1])\n', (48586, 48600), True, 'import numpy as np\n'), ((48635, 48678), 'numpy.matmul', 'np.matmul', (['projection_M_inverse', 'vector_101'], {}), '(projection_M_inverse, vector_101)\n', (48644, 48678), True, 'import numpy as np\n'), ((48743, 48786), 'numpy.matmul', 'np.matmul', (['projection_M_inverse', 'vector_011'], {}), '(projection_M_inverse, vector_011)\n', (48752, 48786), True, 'import numpy as np\n'), ((48814, 48857), 'numpy.matmul', 'np.matmul', (['projection_M_inverse', 'vector_001'], {}), '(projection_M_inverse, vector_001)\n', (48823, 48857), True, 'import numpy as np\n'), ((50413, 50453), 'numpy.concatenate', 'np.concatenate', (['(cube_xyz, ones)'], {'axis': '(3)'}), '((cube_xyz, ones), axis=3)\n', (50427, 50453), True, 'import numpy as np\n'), ((52279, 52290), 'numpy.shape', 'np.shape', (['H'], {}), '(H)\n', (52287, 52290), True, 'import numpy as np\n'), ((52304, 52315), 'numpy.floor', 'np.floor', (['H'], {}), '(H)\n', (52312, 52315), True, 'import numpy as np\n'), ((52380, 52391), 'numpy.floor', 'np.floor', (['W'], {}), '(W)\n', (52388, 52391), True, 'import numpy as np\n'), ((54407, 54447), 'numpy.concatenate', 'np.concatenate', (['(cube_xyz, ones)'], {'axis': '(3)'}), '((cube_xyz, ones), axis=3)\n', (54421, 54447), True, 'import numpy as np\n'), ((56636, 56647), 'numpy.shape', 'np.shape', (['H'], {}), '(H)\n', (56644, 56647), True, 'import numpy as np\n'), ((56661, 56672), 'numpy.floor', 'np.floor', (['H'], {}), '(H)\n', (56669, 56672), True, 'import numpy as np\n'), ((56737, 56748), 'numpy.floor', 'np.floor', (['W'], {}), '(W)\n', (56745, 56748), True, 'import numpy as np\n'), ((62726, 62763), 'numpy.unique', 'np.unique', (["(cubes_gt_np['ijk_id'] // 8)"], {}), "(cubes_gt_np['ijk_id'] // 8)\n", (62735, 62763), True, 'import numpy as np\n'), ((64362, 64401), 'numpy.concatenate', 'np.concatenate', (['(pts_xyz, ones)'], {'axis': '(1)'}), '((pts_xyz, ones), axis=1)\n', (64376, 64401), True, 'import numpy as np\n'), ((65849, 65860), 'numpy.shape', 'np.shape', (['H'], {}), '(H)\n', (65857, 65860), True, 'import numpy as np\n'), ((65874, 65885), 'numpy.floor', 'np.floor', (['H'], {}), '(H)\n', (65882, 65885), True, 'import numpy as np\n'), ((65950, 65961), 'numpy.floor', 'np.floor', (['W'], {}), '(W)\n', (65958, 65961), True, 'import numpy as np\n'), ((68191, 68231), 'numpy.concatenate', 'np.concatenate', (['(cube_xyz, ones)'], {'axis': '(3)'}), '((cube_xyz, ones), axis=3)\n', (68205, 68231), True, 'import numpy as np\n'), ((70420, 70431), 'numpy.shape', 'np.shape', (['H'], {}), '(H)\n', (70428, 70431), True, 'import numpy as np\n'), ((70445, 70456), 'numpy.floor', 'np.floor', (['H'], {}), '(H)\n', (70453, 70456), True, 'import numpy as np\n'), ((70521, 70532), 'numpy.floor', 'np.floor', (['W'], {}), '(W)\n', (70529, 70532), True, 'import numpy as np\n'), ((73039, 73058), 'numpy.matmul', 'np.matmul', (['R_y', 'R_z'], {}), '(R_y, R_z)\n', (73048, 73058), True, 'import numpy as np\n'), ((75022, 75046), 'numpy.arange', 'np.arange', (['(0)', 'img_w', '(1.0)'], {}), '(0, img_w, 1.0)\n', (75031, 75046), True, 'import numpy as np\n'), ((75068, 75092), 'numpy.arange', 'np.arange', (['(0)', 'img_h', '(1.0)'], {}), '(0, img_h, 1.0)\n', (75077, 75092), True, 'import numpy as np\n'), ((78631, 78663), 'numpy.moveaxis', 'np.moveaxis', (['image_vector', '(1)', '(-1)'], {}), '(image_vector, 1, -1)\n', (78642, 78663), True, 'import numpy as np\n'), ((78731, 78764), 'numpy.zeros', 'np.zeros', (['(N, img_h, img_w, 3, 3)'], {}), '((N, img_h, img_w, 3, 3))\n', (78739, 78764), True, 'import numpy as np\n'), ((78785, 78818), 'numpy.zeros', 'np.zeros', (['(N, img_h, img_w, 3, 3)'], {}), '((N, img_h, img_w, 3, 3))\n', (78793, 78818), True, 'import numpy as np\n'), ((80858, 80887), 'numpy.linalg.inv', 'np.linalg.inv', (['projection_new'], {}), '(projection_new)\n', (80871, 80887), True, 'import numpy as np\n'), ((85686, 85712), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (85694, 85712), True, 'import numpy as np\n'), ((85767, 85796), 'numpy.expand_dims', 'np.expand_dims', (['ones1'], {'axis': '(0)'}), '(ones1, axis=0)\n', (85781, 85796), True, 'import numpy as np\n'), ((89543, 89588), 'numpy.array', 'np.array', (['[[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]'], {}), '([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]])\n', (89551, 89588), True, 'import numpy as np\n'), ((89647, 89673), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (89655, 89673), True, 'import numpy as np\n'), ((91826, 91871), 'numpy.array', 'np.array', (['[[[1, 0, 0], [0, 1, 0], [0, 0, 1]]]'], {}), '([[[1, 0, 0], [0, 1, 0], [0, 0, 1]]])\n', (91834, 91871), True, 'import numpy as np\n'), ((91930, 91956), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (91938, 91956), True, 'import numpy as np\n'), ((95036, 95077), 'torch.arange', 'torch.arange', (['(0)', '(1)', '(1.0 / interpolate_num)'], {}), '(0, 1, 1.0 / interpolate_num)\n', (95048, 95077), False, 'import torch\n'), ((1200, 1216), 'numpy.empty', 'np.empty', (['(3, 4)'], {}), '((3, 4))\n', (1208, 1216), True, 'import numpy as np\n'), ((1501, 1517), 'numpy.empty', 'np.empty', (['(3, 3)'], {}), '((3, 3))\n', (1509, 1517), True, 'import numpy as np\n'), ((1920, 1947), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (1926, 1947), True, 'import numpy as np\n'), ((2294, 2310), 'numpy.empty', 'np.empty', (['(3, 4)'], {}), '((3, 4))\n', (2302, 2310), True, 'import numpy as np\n'), ((2595, 2611), 'numpy.empty', 'np.empty', (['(3, 3)'], {}), '((3, 3))\n', (2603, 2611), True, 'import numpy as np\n'), ((3014, 3041), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (3020, 3041), True, 'import numpy as np\n'), ((14846, 14887), 'numpy.concatenate', 'np.concatenate', (['(cameraPOs, ones)'], {'axis': '(1)'}), '((cameraPOs, ones), axis=1)\n', (14860, 14887), True, 'import numpy as np\n'), ((18097, 18134), 'numpy.linalg.det', 'np.linalg.det', (['cameraPO[:, [1, 2, 3]]'], {}), '(cameraPO[:, [1, 2, 3]])\n', (18110, 18134), True, 'import numpy as np\n'), ((18203, 18240), 'numpy.linalg.det', 'np.linalg.det', (['cameraPO[:, [0, 1, 3]]'], {}), '(cameraPO[:, [0, 1, 3]])\n', (18216, 18240), True, 'import numpy as np\n'), ((19861, 19878), 'numpy.linalg.norm', 'np.linalg.norm', (['v'], {}), '(v)\n', (19875, 19878), True, 'import numpy as np\n'), ((21830, 21884), 'numpy.linalg.norm', 'np.linalg.norm', (['array'], {'axis': 'axis', 'ord': '(2)', 'keepdims': '(True)'}), '(array, axis=axis, ord=2, keepdims=True)\n', (21844, 21884), True, 'import numpy as np\n'), ((21932, 21962), 'numpy.clip', 'np.clip', (['cos_values', '(-1.0)', '(1.0)'], {}), '(cos_values, -1.0, 1.0)\n', (21939, 21962), True, 'import numpy as np\n'), ((26182, 26217), 'numpy.arange', 'np.arange', (['group_pair_flag.shape[1]'], {}), '(group_pair_flag.shape[1])\n', (26191, 26217), True, 'import numpy as np\n'), ((26508, 26571), 'numpy.random.choice', 'np.random.choice', (['view_num_i', 'group_pair_num_max'], {'replace': '(False)'}), '(view_num_i, group_pair_num_max, replace=False)\n', (26524, 26571), True, 'import numpy as np\n'), ((28310, 28345), 'numpy.arange', 'np.arange', (['group_pair_flag.shape[1]'], {}), '(group_pair_flag.shape[1])\n', (28319, 28345), True, 'import numpy as np\n'), ((39870, 39943), 'scipy.misc.imresize', 'scipy.misc.imresize', (['image'], {'size': '(resized_h, resized_w)', 'interp': '"""bicubic"""'}), "(image, size=(resized_h, resized_w), interp='bicubic')\n", (39889, 39943), False, 'import scipy\n'), ((40117, 40145), 'numpy.stack', 'np.stack', (['image_resized_list'], {}), '(image_resized_list)\n', (40125, 40145), True, 'import numpy as np\n'), ((51461, 51519), 'numpy.linalg.norm', 'np.linalg.norm', (['project_cube_xyz[:, :, :, :, :, 0]'], {'axis': '(4)'}), '(project_cube_xyz[:, :, :, :, :, 0], axis=4)\n', (51475, 51519), True, 'import numpy as np\n'), ((51839, 51873), 'numpy.linalg.norm', 'np.linalg.norm', (['vector_xyz'], {'axis': '(4)'}), '(vector_xyz, axis=4)\n', (51853, 51873), True, 'import numpy as np\n'), ((55791, 55849), 'numpy.linalg.norm', 'np.linalg.norm', (['project_cube_xyz[:, :, :, :, :, 0]'], {'axis': '(4)'}), '(project_cube_xyz[:, :, :, :, :, 0], axis=4)\n', (55805, 55849), True, 'import numpy as np\n'), ((56169, 56203), 'numpy.linalg.norm', 'np.linalg.norm', (['vector_xyz'], {'axis': '(4)'}), '(vector_xyz, axis=4)\n', (56183, 56203), True, 'import numpy as np\n'), ((65229, 65281), 'numpy.linalg.norm', 'np.linalg.norm', (['project_cube_xyz[:, :, :, 0]'], {'axis': '(2)'}), '(project_cube_xyz[:, :, :, 0], axis=2)\n', (65243, 65281), True, 'import numpy as np\n'), ((65484, 65518), 'numpy.linalg.norm', 'np.linalg.norm', (['vector_xyz'], {'axis': '(2)'}), '(vector_xyz, axis=2)\n', (65498, 65518), True, 'import numpy as np\n'), ((69575, 69633), 'numpy.linalg.norm', 'np.linalg.norm', (['project_cube_xyz[:, :, :, :, :, 0]'], {'axis': '(4)'}), '(project_cube_xyz[:, :, :, :, :, 0], axis=4)\n', (69589, 69633), True, 'import numpy as np\n'), ((69953, 69987), 'numpy.linalg.norm', 'np.linalg.norm', (['vector_xyz'], {'axis': '(4)'}), '(vector_xyz, axis=4)\n', (69967, 69987), True, 'import numpy as np\n'), ((73880, 73909), 'numpy.moveaxis', 'np.moveaxis', (['direction', '(1)', '(-1)'], {}), '(direction, 1, -1)\n', (73891, 73909), True, 'import numpy as np\n'), ((78883, 78915), 'numpy.moveaxis', 'np.moveaxis', (['image_vector', '(2)', '(-1)'], {}), '(image_vector, 2, -1)\n', (78894, 78915), True, 'import numpy as np\n'), ((78986, 79022), 'numpy.zeros', 'np.zeros', (['(M, N, img_h, img_w, 3, 3)'], {}), '((M, N, img_h, img_w, 3, 3))\n', (78994, 79022), True, 'import numpy as np\n'), ((79043, 79079), 'numpy.zeros', 'np.zeros', (['(M, N, img_h, img_w, 3, 3)'], {}), '((M, N, img_h, img_w, 3, 3))\n', (79051, 79079), True, 'import numpy as np\n'), ((83424, 83466), 'math.floor', 'math.floor', (['(partition_j / compress_ratio_w)'], {}), '(partition_j / compress_ratio_w)\n', (83434, 83466), False, 'import math\n'), ((85557, 85599), 'numpy.dot', 'np.dot', (['cameraK0s[k]', 'cameraRTO4s_model[j]'], {}), '(cameraK0s[k], cameraRTO4s_model[j])\n', (85563, 85599), True, 'import numpy as np\n'), ((86238, 86266), 'torch.from_numpy', 'torch.from_numpy', (['cameraP04s'], {}), '(cameraP04s)\n', (86254, 86266), False, 'import torch\n'), ((86310, 86339), 'torch.from_numpy', 'torch.from_numpy', (['cameraRTO4s'], {}), '(cameraRTO4s)\n', (86326, 86339), False, 'import torch\n'), ((86382, 86410), 'torch.from_numpy', 'torch.from_numpy', (['cameraKO4s'], {}), '(cameraKO4s)\n', (86398, 86410), False, 'import torch\n'), ((92635, 92911), 'numpy.array', 'np.array', (['[[0.7404845135614985, 0.2325005573497136, 0.6305753991446678, -\n 357.5776160575932], [-0.6113867548639025, 0.6226553427405186, \n 0.48837052366865125, -224.67534057994519], [-0.2790849063168464, -\n 0.747156625483257, 0.6032149168942565, -314.37583021393465]]'], {}), '([[0.7404845135614985, 0.2325005573497136, 0.6305753991446678, -\n 357.5776160575932], [-0.6113867548639025, 0.6226553427405186, \n 0.48837052366865125, -224.67534057994519], [-0.2790849063168464, -\n 0.747156625483257, 0.6032149168942565, -314.37583021393465]])\n', (92643, 92911), True, 'import numpy as np\n'), ((92991, 93269), 'numpy.array', 'np.array', (['[[0.7818430657776811, -0.5105525697800951, 0.3578509652459924, -\n 236.34755864003523], [0.011400854998416882, 0.5855732302942881, \n 0.8105398357749803, -432.3902637782938], [-0.6233711434370777, -\n 0.6296345988675118, 0.46364696910912734, -86.72248020694681]]'], {}), '([[0.7818430657776811, -0.5105525697800951, 0.3578509652459924, -\n 236.34755864003523], [0.011400854998416882, 0.5855732302942881, \n 0.8105398357749803, -432.3902637782938], [-0.6233711434370777, -\n 0.6296345988675118, 0.46364696910912734, -86.72248020694681]])\n', (92999, 93269), True, 'import numpy as np\n'), ((95173, 95214), 'torch.arange', 'torch.arange', (['(0)', '(1)', '(1.0 / interpolate_num)'], {}), '(0, 1, 1.0 / interpolate_num)\n', (95185, 95214), False, 'import torch\n'), ((482, 498), 'numpy.empty', 'np.empty', (['[4, 4]'], {}), '([4, 4])\n', (490, 498), True, 'import numpy as np\n'), ((2006, 2033), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (2012, 2033), True, 'import numpy as np\n'), ((3100, 3127), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (3106, 3127), True, 'import numpy as np\n'), ((5648, 5692), 'os.path.join', 'os.path.join', (['datasetFolder', 'poseNamePattern'], {}), '(datasetFolder, poseNamePattern)\n', (5660, 5692), False, 'import os\n'), ((14735, 14761), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (14743, 14761), True, 'import numpy as np\n'), ((15439, 15480), 'numpy.concatenate', 'np.concatenate', (['(cameraPOs, ones)'], {'axis': '(1)'}), '((cameraPOs, ones), axis=1)\n', (15453, 15480), True, 'import numpy as np\n'), ((18141, 18178), 'numpy.linalg.det', 'np.linalg.det', (['cameraPO[:, [0, 2, 3]]'], {}), '(cameraPO[:, [0, 2, 3]])\n', (18154, 18178), True, 'import numpy as np\n'), ((18247, 18284), 'numpy.linalg.det', 'np.linalg.det', (['cameraPO[:, [0, 1, 2]]'], {}), '(cameraPO[:, [0, 1, 2]])\n', (18260, 18284), True, 'import numpy as np\n'), ((28643, 28706), 'numpy.random.choice', 'np.random.choice', (['view_num_i', 'group_pair_num_max'], {'replace': '(False)'}), '(view_num_i, group_pair_num_max, replace=False)\n', (28659, 28706), True, 'import numpy as np\n'), ((45900, 45929), 'numpy.array', 'np.array', (['(cube_length, 0, 0)'], {}), '((cube_length, 0, 0))\n', (45908, 45929), True, 'import numpy as np\n'), ((46040, 46069), 'numpy.array', 'np.array', (['(0, cube_length, 0)'], {}), '((0, cube_length, 0))\n', (46048, 46069), True, 'import numpy as np\n'), ((46180, 46209), 'numpy.array', 'np.array', (['(0, 0, cube_length)'], {}), '((0, 0, cube_length))\n', (46188, 46209), True, 'import numpy as np\n'), ((46320, 46359), 'numpy.array', 'np.array', (['(0, cube_length, cube_length)'], {}), '((0, cube_length, cube_length))\n', (46328, 46359), True, 'import numpy as np\n'), ((46470, 46509), 'numpy.array', 'np.array', (['(cube_length, 0, cube_length)'], {}), '((cube_length, 0, cube_length))\n', (46478, 46509), True, 'import numpy as np\n'), ((46620, 46659), 'numpy.array', 'np.array', (['(cube_length, cube_length, 0)'], {}), '((cube_length, cube_length, 0))\n', (46628, 46659), True, 'import numpy as np\n'), ((72605, 72618), 'numpy.cos', 'np.cos', (['gamma'], {}), '(gamma)\n', (72611, 72618), True, 'import numpy as np\n'), ((72661, 72674), 'numpy.sin', 'np.sin', (['gamma'], {}), '(gamma)\n', (72667, 72674), True, 'import numpy as np\n'), ((72676, 72689), 'numpy.cos', 'np.cos', (['gamma'], {}), '(gamma)\n', (72682, 72689), True, 'import numpy as np\n'), ((72782, 72795), 'numpy.cos', 'np.cos', (['alpha'], {}), '(alpha)\n', (72788, 72795), True, 'import numpy as np\n'), ((72838, 72851), 'numpy.sin', 'np.sin', (['alpha'], {}), '(alpha)\n', (72844, 72851), True, 'import numpy as np\n'), ((72853, 72866), 'numpy.cos', 'np.cos', (['alpha'], {}), '(alpha)\n', (72859, 72866), True, 'import numpy as np\n'), ((72891, 72903), 'numpy.cos', 'np.cos', (['beta'], {}), '(beta)\n', (72897, 72903), True, 'import numpy as np\n'), ((72908, 72920), 'numpy.sin', 'np.sin', (['beta'], {}), '(beta)\n', (72914, 72920), True, 'import numpy as np\n'), ((72993, 73005), 'numpy.cos', 'np.cos', (['beta'], {}), '(beta)\n', (72999, 73005), True, 'import numpy as np\n'), ((75523, 75559), 'numpy.linalg.norm', 'np.linalg.norm', (['vector_image'], {'axis': '(1)'}), '(vector_image, axis=1)\n', (75537, 75559), True, 'import numpy as np\n'), ((90761, 90789), 'numpy.stack', 'np.stack', (['image_resized_list'], {}), '(image_resized_list)\n', (90769, 90789), True, 'import numpy as np\n'), ((2091, 2118), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (2097, 2118), True, 'import numpy as np\n'), ((3185, 3212), 'numpy.dot', 'np.dot', (['cameraKO', 'cameraRTO'], {}), '(cameraKO, cameraRTO)\n', (3191, 3212), True, 'import numpy as np\n'), ((15351, 15377), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (15359, 15377), True, 'import numpy as np\n'), ((16071, 16112), 'numpy.concatenate', 'np.concatenate', (['(cameraPOs, ones)'], {'axis': '(1)'}), '((cameraPOs, ones), axis=1)\n', (16085, 16112), True, 'import numpy as np\n'), ((30912, 30931), 'numpy.ones', 'np.ones', (['(N_pts, 1)'], {}), '((N_pts, 1))\n', (30919, 30931), True, 'import numpy as np\n'), ((72621, 72634), 'numpy.sin', 'np.sin', (['gamma'], {}), '(gamma)\n', (72627, 72634), True, 'import numpy as np\n'), ((72798, 72811), 'numpy.sin', 'np.sin', (['alpha'], {}), '(alpha)\n', (72804, 72811), True, 'import numpy as np\n'), ((72976, 72988), 'numpy.sin', 'np.sin', (['beta'], {}), '(beta)\n', (72982, 72988), True, 'import numpy as np\n'), ((15983, 16009), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (15991, 16009), True, 'import numpy as np\n'), ((16701, 16742), 'numpy.concatenate', 'np.concatenate', (['(cameraPOs, ones)'], {'axis': '(1)'}), '((cameraPOs, ones), axis=1)\n', (16715, 16742), True, 'import numpy as np\n'), ((33880, 33901), 'numpy.indices', 'np.indices', (['(2, 2, 2)'], {}), '((2, 2, 2))\n', (33890, 33901), True, 'import numpy as np\n'), ((74048, 74060), 'numpy.array', 'np.array', (['ts'], {}), '(ts)\n', (74056, 74060), True, 'import numpy as np\n'), ((97060, 97086), 'torch.tensor', 'torch.tensor', (['[0, 0, 0, 1]'], {}), '([0, 0, 0, 1])\n', (97072, 97086), False, 'import torch\n'), ((16613, 16639), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (16621, 16639), True, 'import numpy as np\n'), ((17330, 17371), 'numpy.concatenate', 'np.concatenate', (['(cameraPOs, ones)'], {'axis': '(1)'}), '((cameraPOs, ones), axis=1)\n', (17344, 17371), True, 'import numpy as np\n'), ((17242, 17268), 'numpy.array', 'np.array', (['[[[0, 0, 0, 1]]]'], {}), '([[[0, 0, 0, 1]]])\n', (17250, 17268), True, 'import numpy as np\n')] |
import torch
import torch.nn as nn
import numpy as np
import torch.nn.functional as F
__all__ = ['FixupResNet', 'fixup_resnet18', 'fixup_resnet34', 'fixup_resnet50', 'fixup_resnet101', 'fixup_resnet152']
def conv3x3(in_planes, out_planes, stride=1):
"""3x3 convolution with padding"""
return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,
padding=1, bias=False)
def conv5x5(in_planes, out_planes, stride=1):
"""5x5 convolution with padding"""
return nn.Conv2d(in_planes, out_planes, kernel_size=5, stride=stride,
padding=2, bias=False)
def conv7x7(in_planes, out_planes, stride=1):
"""7x7 convolution with padding"""
return nn.Conv2d(in_planes, out_planes, kernel_size=7, stride=stride,
padding=3, bias=False)
def conv1x1(in_planes, out_planes, stride=1):
"""1x1 convolution"""
return nn.Conv2d(in_planes, out_planes, kernel_size=1, stride=stride, bias=False)
class FixupBasicBlock(nn.Module):
expansion = 1
def __init__(self, inplanes, planes, stride=1, downsample=None, conv_create=conv3x3):
super(FixupBasicBlock, self).__init__()
# Both self.conv1 and self.downsample layers downsample the input when stride != 1
self.bias1a = nn.Parameter(torch.zeros(1))
self.conv1 = conv_create(inplanes, planes, stride)
self.bias1b = nn.Parameter(torch.zeros(1))
self.lrelu = nn.LeakyReLU(negative_slope=0.1, inplace=True)
self.bias2a = nn.Parameter(torch.zeros(1))
self.conv2 = conv_create(planes, planes)
self.scale = nn.Parameter(torch.ones(1))
self.bias2b = nn.Parameter(torch.zeros(1))
self.downsample = downsample
self.stride = stride
def forward(self, x):
identity = x
out = self.conv1(x + self.bias1a)
out = self.lrelu(out + self.bias1b)
out = self.conv2(out + self.bias2a)
out = out * self.scale + self.bias2b
if self.downsample is not None:
identity = self.downsample(x + self.bias1a)
out += identity
out = self.lrelu(out)
return out
class FixupResNet(nn.Module):
def __init__(self, block, layers, upscale_applications=2, num_filters=64, inject_noise=False):
super(FixupResNet, self).__init__()
self.inject_noise = inject_noise
self.num_layers = sum(layers) + layers[-1] * (upscale_applications - 1) # The last layer is applied repeatedly to achieve high level SR.
self.inplanes = num_filters
self.upscale_applications = upscale_applications
# Part 1 - Process raw input image. Most denoising should appear here and this should be the most complicated
# part of the block.
self.conv1 = nn.Conv2d(3, num_filters, kernel_size=5, stride=1, padding=2,
bias=False)
self.bias1 = nn.Parameter(torch.zeros(1))
self.lrelu = nn.LeakyReLU(negative_slope=0.2, inplace=True)
self.layer1 = self._make_layer(block, num_filters, layers[0], stride=1)
self.skip1 = nn.Conv2d(num_filters, 3, kernel_size=5, stride=1, padding=2, bias=False)
self.skip1_bias = nn.Parameter(torch.zeros(1))
# Part 2 - This is the upsampler core. It consists of a normal multiplicative conv followed by several residual
# convs which are intended to repair artifacts caused by 2x interpolation.
# This core layer should by itself accomplish 2x super-resolution. We use it in repeat to do the
# requested SR.
self.nf2 = int(num_filters/4)
# This part isn't repeated. It de-filters the output from the previous step to fit the filter size used in the
# upsampler-conv.
self.upsampler_conv = nn.Conv2d(num_filters, self.nf2, kernel_size=3, stride=1, padding=1, bias=False)
self.uc_bias = nn.Parameter(torch.zeros(1))
self.inplanes = self.nf2
if layers[1] > 0:
# This is the repeated part.
self.layer2 = self._make_layer(block, int(self.nf2), layers[1], stride=1, conv_type=conv5x5)
self.skip2 = nn.Conv2d(self.nf2, 3, kernel_size=5, stride=1, padding=2, bias=False)
self.skip2_bias = nn.Parameter(torch.zeros(1))
self.final_defilter = nn.Conv2d(self.nf2, 3, kernel_size=5, stride=1, padding=2, bias=True)
self.bias2 = nn.Parameter(torch.zeros(1))
for m in self.modules():
if isinstance(m, FixupBasicBlock):
nn.init.normal_(m.conv1.weight, mean=0, std=np.sqrt(2 / (m.conv1.weight.shape[0] * np.prod(m.conv1.weight.shape[2:]))) * self.num_layers ** (-0.5))
nn.init.constant_(m.conv2.weight, 0)
if m.downsample is not None:
nn.init.normal_(m.downsample.weight, mean=0, std=np.sqrt(2 / (m.downsample.weight.shape[0] * np.prod(m.downsample.weight.shape[2:]))))
def _make_layer(self, block, planes, blocks, stride=1, conv_type=conv3x3):
defilter = None
if self.inplanes != planes * block.expansion:
defilter = conv1x1(self.inplanes, planes * block.expansion, stride)
layers = []
layers.append(block(self.inplanes, planes, stride, defilter))
self.inplanes = planes * block.expansion
for _ in range(1, blocks):
layers.append(block(self.inplanes, planes, conv_create=conv_type))
return nn.Sequential(*layers)
def forward(self, x):
if self.inject_noise:
rand_feature = torch.randn_like(x)
x = x + rand_feature * .1
x = self.conv1(x)
x = self.lrelu(x + self.bias1)
x = self.layer1(x)
skip_lo = self.skip1(x) + self.skip1_bias
x = self.lrelu(self.upsampler_conv(x) + self.uc_bias)
if self.upscale_applications > 0:
x = F.interpolate(x, scale_factor=2.0, mode='nearest')
x = self.layer2(x)
skip_med = self.skip2(x) + self.skip2_bias
else:
skip_med = skip_lo
if self.upscale_applications > 1:
x = F.interpolate(x, scale_factor=2.0, mode='nearest')
x = self.layer2(x)
x = self.final_defilter(x) + self.bias2
return x, skip_med, skip_lo
class FixupResNetV2(FixupResNet):
def __init__(self, **kwargs):
super(FixupResNetV2, self).__init__(**kwargs)
# Use one unified filter-to-image stack, not the previous skip stacks.
self.skip1 = None
self.skip1_bias = None
self.skip2 = None
self.skip2_bias = None
# The new filter-to-image stack will be 2 conv layers deep, not 1.
self.final_process = nn.Conv2d(self.nf2, self.nf2, kernel_size=5, stride=1, padding=2, bias=True)
self.bias2 = nn.Parameter(torch.zeros(1))
self.fp_bn = nn.BatchNorm2d(self.nf2)
self.final_defilter = nn.Conv2d(self.nf2, 3, kernel_size=3, stride=1, padding=1, bias=True)
self.bias3 = nn.Parameter(torch.zeros(1))
def filter_to_image(self, filter):
x = self.final_process(filter) + self.bias2
x = self.lrelu(self.fp_bn(x))
x = self.final_defilter(x) + self.bias3
return x
def forward(self, x):
if self.inject_noise:
rand_feature = torch.randn_like(x)
x = x + rand_feature * .1
x = self.conv1(x)
x = self.lrelu(x + self.bias1)
x = self.layer1(x)
x = self.lrelu(self.upsampler_conv(x) + self.uc_bias)
skip_lo = self.filter_to_image(x)
if self.upscale_applications > 0:
x = F.interpolate(x, scale_factor=2.0, mode='nearest')
x = self.layer2(x)
skip_med = self.filter_to_image(x)
if self.upscale_applications > 1:
x = F.interpolate(x, scale_factor=2.0, mode='nearest')
x = self.layer2(x)
if self.upscale_applications == 2:
x = self.filter_to_image(x)
elif self.upscale_applications == 1:
x = skip_med
skip_med = skip_lo
skip_lo = None
elif self.upscale_applications == 0:
x = skip_lo
skip_lo = None
skip_med = None
return x, skip_med, skip_lo
def fixup_resnet34(nb_denoiser=20, nb_upsampler=10, **kwargs):
"""Constructs a Fixup-ResNet-34 model.
"""
model = FixupResNet(FixupBasicBlock, [nb_denoiser, nb_upsampler], **kwargs)
return model
def fixup_resnet34_v2(nb_denoiser=20, nb_upsampler=10, **kwargs):
"""Constructs a Fixup-ResNet-34 model.
"""
kwargs['block'] = FixupBasicBlock
kwargs['layers'] = [nb_denoiser, nb_upsampler]
model = FixupResNetV2(**kwargs)
return model
__all__ = ['FixupResNet', 'fixup_resnet34', 'fixup_resnet34_v2'] | [
"torch.nn.BatchNorm2d",
"numpy.prod",
"torch.nn.LeakyReLU",
"torch.nn.init.constant_",
"torch.nn.Sequential",
"torch.nn.Conv2d",
"torch.randn_like",
"torch.nn.functional.interpolate",
"torch.zeros",
"torch.ones"
] | [((304, 393), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_planes', 'out_planes'], {'kernel_size': '(3)', 'stride': 'stride', 'padding': '(1)', 'bias': '(False)'}), '(in_planes, out_planes, kernel_size=3, stride=stride, padding=1,\n bias=False)\n', (313, 393), True, 'import torch.nn as nn\n'), ((508, 597), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_planes', 'out_planes'], {'kernel_size': '(5)', 'stride': 'stride', 'padding': '(2)', 'bias': '(False)'}), '(in_planes, out_planes, kernel_size=5, stride=stride, padding=2,\n bias=False)\n', (517, 597), True, 'import torch.nn as nn\n'), ((712, 801), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_planes', 'out_planes'], {'kernel_size': '(7)', 'stride': 'stride', 'padding': '(3)', 'bias': '(False)'}), '(in_planes, out_planes, kernel_size=7, stride=stride, padding=3,\n bias=False)\n', (721, 801), True, 'import torch.nn as nn\n'), ((903, 977), 'torch.nn.Conv2d', 'nn.Conv2d', (['in_planes', 'out_planes'], {'kernel_size': '(1)', 'stride': 'stride', 'bias': '(False)'}), '(in_planes, out_planes, kernel_size=1, stride=stride, bias=False)\n', (912, 977), True, 'import torch.nn as nn\n'), ((1444, 1490), 'torch.nn.LeakyReLU', 'nn.LeakyReLU', ([], {'negative_slope': '(0.1)', 'inplace': '(True)'}), '(negative_slope=0.1, inplace=True)\n', (1456, 1490), True, 'import torch.nn as nn\n'), ((2778, 2851), 'torch.nn.Conv2d', 'nn.Conv2d', (['(3)', 'num_filters'], {'kernel_size': '(5)', 'stride': '(1)', 'padding': '(2)', 'bias': '(False)'}), '(3, num_filters, kernel_size=5, stride=1, padding=2, bias=False)\n', (2787, 2851), True, 'import torch.nn as nn\n'), ((2954, 3000), 'torch.nn.LeakyReLU', 'nn.LeakyReLU', ([], {'negative_slope': '(0.2)', 'inplace': '(True)'}), '(negative_slope=0.2, inplace=True)\n', (2966, 3000), True, 'import torch.nn as nn\n'), ((3102, 3175), 'torch.nn.Conv2d', 'nn.Conv2d', (['num_filters', '(3)'], {'kernel_size': '(5)', 'stride': '(1)', 'padding': '(2)', 'bias': '(False)'}), '(num_filters, 3, kernel_size=5, stride=1, padding=2, bias=False)\n', (3111, 3175), True, 'import torch.nn as nn\n'), ((3804, 3889), 'torch.nn.Conv2d', 'nn.Conv2d', (['num_filters', 'self.nf2'], {'kernel_size': '(3)', 'stride': '(1)', 'padding': '(1)', 'bias': '(False)'}), '(num_filters, self.nf2, kernel_size=3, stride=1, padding=1, bias=False\n )\n', (3813, 3889), True, 'import torch.nn as nn\n'), ((4329, 4398), 'torch.nn.Conv2d', 'nn.Conv2d', (['self.nf2', '(3)'], {'kernel_size': '(5)', 'stride': '(1)', 'padding': '(2)', 'bias': '(True)'}), '(self.nf2, 3, kernel_size=5, stride=1, padding=2, bias=True)\n', (4338, 4398), True, 'import torch.nn as nn\n'), ((5456, 5478), 'torch.nn.Sequential', 'nn.Sequential', (['*layers'], {}), '(*layers)\n', (5469, 5478), True, 'import torch.nn as nn\n'), ((6712, 6788), 'torch.nn.Conv2d', 'nn.Conv2d', (['self.nf2', 'self.nf2'], {'kernel_size': '(5)', 'stride': '(1)', 'padding': '(2)', 'bias': '(True)'}), '(self.nf2, self.nf2, kernel_size=5, stride=1, padding=2, bias=True)\n', (6721, 6788), True, 'import torch.nn as nn\n'), ((6860, 6884), 'torch.nn.BatchNorm2d', 'nn.BatchNorm2d', (['self.nf2'], {}), '(self.nf2)\n', (6874, 6884), True, 'import torch.nn as nn\n'), ((6915, 6984), 'torch.nn.Conv2d', 'nn.Conv2d', (['self.nf2', '(3)'], {'kernel_size': '(3)', 'stride': '(1)', 'padding': '(1)', 'bias': '(True)'}), '(self.nf2, 3, kernel_size=3, stride=1, padding=1, bias=True)\n', (6924, 6984), True, 'import torch.nn as nn\n'), ((1297, 1311), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (1308, 1311), False, 'import torch\n'), ((1407, 1421), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (1418, 1421), False, 'import torch\n'), ((1526, 1540), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (1537, 1540), False, 'import torch\n'), ((1625, 1638), 'torch.ones', 'torch.ones', (['(1)'], {}), '(1)\n', (1635, 1638), False, 'import torch\n'), ((1675, 1689), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (1686, 1689), False, 'import torch\n'), ((2917, 2931), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (2928, 2931), False, 'import torch\n'), ((3215, 3229), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (3226, 3229), False, 'import torch\n'), ((3921, 3935), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (3932, 3935), False, 'import torch\n'), ((4168, 4238), 'torch.nn.Conv2d', 'nn.Conv2d', (['self.nf2', '(3)'], {'kernel_size': '(5)', 'stride': '(1)', 'padding': '(2)', 'bias': '(False)'}), '(self.nf2, 3, kernel_size=5, stride=1, padding=2, bias=False)\n', (4177, 4238), True, 'import torch.nn as nn\n'), ((4433, 4447), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (4444, 4447), False, 'import torch\n'), ((5563, 5582), 'torch.randn_like', 'torch.randn_like', (['x'], {}), '(x)\n', (5579, 5582), False, 'import torch\n'), ((5884, 5934), 'torch.nn.functional.interpolate', 'F.interpolate', (['x'], {'scale_factor': '(2.0)', 'mode': '"""nearest"""'}), "(x, scale_factor=2.0, mode='nearest')\n", (5897, 5934), True, 'import torch.nn.functional as F\n'), ((6125, 6175), 'torch.nn.functional.interpolate', 'F.interpolate', (['x'], {'scale_factor': '(2.0)', 'mode': '"""nearest"""'}), "(x, scale_factor=2.0, mode='nearest')\n", (6138, 6175), True, 'import torch.nn.functional as F\n'), ((6823, 6837), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (6834, 6837), False, 'import torch\n'), ((7019, 7033), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (7030, 7033), False, 'import torch\n'), ((7314, 7333), 'torch.randn_like', 'torch.randn_like', (['x'], {}), '(x)\n', (7330, 7333), False, 'import torch\n'), ((7627, 7677), 'torch.nn.functional.interpolate', 'F.interpolate', (['x'], {'scale_factor': '(2.0)', 'mode': '"""nearest"""'}), "(x, scale_factor=2.0, mode='nearest')\n", (7640, 7677), True, 'import torch.nn.functional as F\n'), ((7811, 7861), 'torch.nn.functional.interpolate', 'F.interpolate', (['x'], {'scale_factor': '(2.0)', 'mode': '"""nearest"""'}), "(x, scale_factor=2.0, mode='nearest')\n", (7824, 7861), True, 'import torch.nn.functional as F\n'), ((4282, 4296), 'torch.zeros', 'torch.zeros', (['(1)'], {}), '(1)\n', (4293, 4296), False, 'import torch\n'), ((4710, 4746), 'torch.nn.init.constant_', 'nn.init.constant_', (['m.conv2.weight', '(0)'], {}), '(m.conv2.weight, 0)\n', (4727, 4746), True, 'import torch.nn as nn\n'), ((4629, 4662), 'numpy.prod', 'np.prod', (['m.conv1.weight.shape[2:]'], {}), '(m.conv1.weight.shape[2:])\n', (4636, 4662), True, 'import numpy as np\n'), ((4905, 4943), 'numpy.prod', 'np.prod', (['m.downsample.weight.shape[2:]'], {}), '(m.downsample.weight.shape[2:])\n', (4912, 4943), True, 'import numpy as np\n')] |
# Copyright 2021 The FLAN Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utility functions for FLAN."""
import abc
import re
from typing import Optional
import numpy as np
from flan import templates
def is_classification(flan_pattern_name: str):
"""Returns if the task is a classification task."""
# ReCoRD task has variable length options, so it is not called options in
# the input pattern. But it is classification.
if flan_pattern_name == 'record':
return True
input_patterns = [p[0] for p in templates.PATTERNS[flan_pattern_name]]
return np.any(['{options_}' in pattern for pattern in input_patterns])
class SeqioTaskName(metaclass=abc.ABCMeta):
"""Abstract class for seqio task name."""
@abc.abstractclassmethod
def get(cls, *args):
"""Returns task name."""
raise NotImplementedError
@abc.abstractclassmethod
def parse(cls, task_name: str):
"""Returns task name."""
raise NotImplementedError
@abc.abstractclassmethod
def match(cls, task_name: str) -> Optional[re.Match]:
"""Returns the match object if `task_name` matches the name pattern."""
raise NotImplementedError
class ZeroshotEvalTaskName(SeqioTaskName):
"""Task name for zeroshot eval."""
@classmethod
def get(cls, t_name: str, template_id: int) -> str:
return f'{t_name}_type_{template_id}'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2])
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_type_(\d+)$', task_name)
class ZeroshotScoreEvalTaskName(SeqioTaskName):
"""Task name for zeroshot scoring eval."""
@classmethod
def get(cls, t_name: str, template_id: int) -> str:
return f'{t_name}_type_{template_id}_scoring_eval'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2])
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_type_(\d+)_scoring_eval$', task_name)
class ZeroshotScoreEvalNoOptionTaskName(SeqioTaskName):
"""Task name for zeroshot scoring eval without options."""
@classmethod
def get(cls, t_name: str, template_id: int) -> str:
return f'{t_name}_type_{template_id}_score_eval_no_options'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2])
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_type_(\d+)_score_eval_no_options$', task_name)
class ZeroshotScoreFLANNoOptionTaskName(SeqioTaskName):
"""Task name for zeroshot scoring eval without options."""
@classmethod
def get(cls, t_name: str, template_id: int) -> str:
return f'{t_name}_type_{template_id}_score_flan_no_options'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2])
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_type_(\d+)_score_flan_no_options$', task_name)
class AllPromptsTaskName(SeqioTaskName):
"""Task name for the training job realized from all prompts."""
@classmethod
def get(cls, t_name: str) -> str:
return f'{t_name}_all_prompts'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1]
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_all_prompts', task_name)
class ZeroshotTemplatedTaskName(SeqioTaskName):
"""Zeroshot task name with number of realized templates."""
@classmethod
def get(cls, t_name: str, num_templates: int) -> str:
return f'{t_name}_{num_templates}templates'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2])
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_(\d+)templates$', task_name)
class XshotTemplatedTaskName(SeqioTaskName):
"""Zeroshot task name with number of realized templates."""
@classmethod
def get(cls, t_name: str, num_templates: int, num_shot: str) -> str:
return f'{t_name}_{num_templates}templates_{num_shot}_shot'
@classmethod
def parse(cls, task_name):
match = cls.match(task_name)
return match[1], int(match[2]), match[3]
@classmethod
def match(cls, task_name) -> Optional[re.Match]:
return re.fullmatch(r'^(.+)_(\d+)templates_([a-z]+)_shot$', task_name)
def remove_input_patterns_options(input_pattern: str) -> str:
"""Remove options from the input pattern."""
no_options_pattern = input_pattern.replace('{options_}', '')
no_options_pattern = no_options_pattern.replace('{options_str}', '').strip()
return no_options_pattern
def t_name_to_flan_pattern_name(t_name: str) -> str:
"""Converts `t_name` to flan `PATTERN` key.
Some seqio tasks use the same flan patterns.
Args:
t_name: Task config name.
Returns:
a key for `PATTERNS`.
"""
if 'para_crawl' in t_name:
return 'para_crawl'
elif 'wmt16_translate' in t_name:
return 'wmt16_translate'
elif t_name in {'arc_challenge', 'arc_easy'}:
return 'arc'
elif t_name in {'anli_r1', 'anli_r2', 'anli_r3'}:
return 'anli'
elif t_name in {'mnli_matched', 'mnli_mismatched'}:
return 'mnli'
return t_name
def get_eval_dir_basename(task: str, split: str) -> str:
"""Returns the basename for eval directory.
Args:
task: a seqio eval task name.
split: split name.
"""
return f'eval_{task}_{split}'
| [
"re.fullmatch",
"numpy.any"
] | [((1075, 1140), 'numpy.any', 'np.any', (["[('{options_}' in pattern) for pattern in input_patterns]"], {}), "([('{options_}' in pattern) for pattern in input_patterns])\n", (1081, 1140), True, 'import numpy as np\n'), ((2035, 2080), 're.fullmatch', 're.fullmatch', (['"""^(.+)_type_(\\\\d+)$"""', 'task_name'], {}), "('^(.+)_type_(\\\\d+)$', task_name)\n", (2047, 2080), False, 'import re\n'), ((2492, 2550), 're.fullmatch', 're.fullmatch', (['"""^(.+)_type_(\\\\d+)_scoring_eval$"""', 'task_name'], {}), "('^(.+)_type_(\\\\d+)_scoring_eval$', task_name)\n", (2504, 2550), False, 'import re\n'), ((2995, 3062), 're.fullmatch', 're.fullmatch', (['"""^(.+)_type_(\\\\d+)_score_eval_no_options$"""', 'task_name'], {}), "('^(.+)_type_(\\\\d+)_score_eval_no_options$', task_name)\n", (3007, 3062), False, 'import re\n'), ((3507, 3574), 're.fullmatch', 're.fullmatch', (['"""^(.+)_type_(\\\\d+)_score_flan_no_options$"""', 'task_name'], {}), "('^(.+)_type_(\\\\d+)_score_flan_no_options$', task_name)\n", (3519, 3574), False, 'import re\n'), ((3947, 3991), 're.fullmatch', 're.fullmatch', (['"""^(.+)_all_prompts"""', 'task_name'], {}), "('^(.+)_all_prompts', task_name)\n", (3959, 3991), False, 'import re\n'), ((4416, 4465), 're.fullmatch', 're.fullmatch', (['"""^(.+)_(\\\\d+)templates$"""', 'task_name'], {}), "('^(.+)_(\\\\d+)templates$', task_name)\n", (4428, 4465), False, 'import re\n'), ((4927, 4990), 're.fullmatch', 're.fullmatch', (['"""^(.+)_(\\\\d+)templates_([a-z]+)_shot$"""', 'task_name'], {}), "('^(.+)_(\\\\d+)templates_([a-z]+)_shot$', task_name)\n", (4939, 4990), False, 'import re\n')] |
"""
Implements modification of human attributes at different levels.
###################### Quarantining / Behavior change logic ########################
Following orders takes care of the person faced with multiple quarantining triggers (each trigger has a suggested duration for quarantine) -
(i) (not app-based) QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT, QUARANTINE_UNTIL_TEST_RESULT. In event of positive result, person is quarantined for 14 days from the day that test was taken. If negative result, person is quarantined until the test results come out
(ii) (non-app based) SELF_DIAGNOSIS
(iii) (app based) RISK_LEVEL_UPDATE: x->MAX LEVEL
Dropout enables non-adherence to quarantine at any time.
To consider household quarantine, residents are divided into two groups:
(i) index cases - they have a quarantine trigger i.e. a reason to believe that they should quarantine
(ii) secondary cases - rest of the residents
non-app quarantining for index cases -
* A trigger higher in precedence overwrites other triggers i.e. quarantining duration is changed based on the trigger
* `human` might already be quarantining at the time of this trigger, so the duration is changed only if trigger requirements require so.
* if there are no non-app triggers, app-based triggers are checked every `human.time_slot` and behavior levels are adjusted accordingly
non-app quarantining for secondary cases -
* All of them quarantine for the same duration unless someone is converted to an index case, in which case, they quarantine and influence household quarantine according to their triggers.
* this duration is defined by the index case who has maximum quarantining restrictions.
app-based recommendations -
Behavior changes for non-app recommendation for household members -
* if there are no non-app quarantining triggers, humans are put on app recommendation
* if MAKE_HOUSEHOLD_BEHAVE_SAME_AS_MAX_RISK_RESIDENT is True, other residents follow the same behavior as the max risk individual in the house
########################################################################
"""
import numpy as np
import warnings
import datetime
from covid19sim.locations.hospital import Hospital, ICU
from covid19sim.utils.constants import SECONDS_PER_DAY
from covid19sim.utils.constants import TEST_TAKEN, SELF_DIAGNOSIS, RISK_LEVEL_UPDATE
from covid19sim.utils.constants import NEGATIVE_TEST_RESULT, POSITIVE_TEST_RESULT
from covid19sim.utils.constants import QUARANTINE_UNTIL_TEST_RESULT, QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT, QUARANTINE_DUE_TO_SELF_DIAGNOSIS
from covid19sim.utils.constants import UNSET_QUARANTINE, QUARANTINE_HOUSEHOLD
from covid19sim.utils.constants import INITIALIZED_BEHAVIOR, INTERVENTION_START_BEHAVIOR, IS_IMMUNE_BEHAVIOR
def convert_intervention_to_behavior_level(intervention_level):
"""
Maps `human._intervention_level` to `IntervenedBehavior.behavior_level`
"""
return intervention_level + 1 if intervention_level >= 0 else -1
class Quarantine(object):
"""
Contains logic to handle different combinations of non-app quarantine triggers.
Args:
human (covid19sim.human.Human): `human` whose behavior needs to be changed
env (simpy.Environment): environment to schedule events
conf (dict): yaml configuration of the experiment
"""
def __init__(self, intervened_behavior, human, env, conf):
self.human = human
self.intervened_behavior = intervened_behavior
self.env = env
self.conf = conf
self.start_timestamp = None
self.end_timestamp = None
self.reasons = []
self.quarantine_idx = self.intervened_behavior.quarantine_idx
self.baseline_behavior_idx = self.intervened_behavior.baseline_behavior_idx
self.human_no_longer_needs_quarantining = False # once human has recovered (infered from 14 days after positive test), human no longer quarantines
def update(self, trigger):
"""
Updates quarantine start and end timestamp based on the new `trigger` and previous triggers.
Note 1: `human_no_longer_needs_quarantining` is set in `reset_quarantine`. if its True, all calls to this function are ignored.
Note 2: Test results are treated to have conclusive and ultimate say on the duration of quarantine.
Note 3: There can be quarantining due to several reasons, so all those combinations are treated in this function through rules described in Quaranining Logic at the top.
Args:
trigger (str): reason for quarantine trigger.
"""
if self.human_no_longer_needs_quarantining:
return
# if `human` is already quarantining due to TEST_TAKEN, then do not change anything
if (
QUARANTINE_UNTIL_TEST_RESULT in self.reasons
or QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT in self.reasons
):
return
if (
trigger == QUARANTINE_HOUSEHOLD
and self.end_timestamp is not None
and self.end_timestamp >= self.human.household.quarantine_end_timestamp
):
return
#
self.reasons.append(trigger)
if self.start_timestamp is None:
self.start_timestamp = self.env.timestamp
# set end timestamp and behavior levels accordingly
# negative test result - quarantine until the test result
if trigger == QUARANTINE_UNTIL_TEST_RESULT:
duration = self.human.time_to_test_result * SECONDS_PER_DAY
self.end_timestamp = self.env.timestamp + datetime.timedelta(seconds=duration)
self._set_quarantine_behavior(self.reasons, test_recommended=False)
if self.conf['QUARANTINE_HOUSEHOLD_UPON_INDIVIDUAL_TEST_TAKEN']:
self.human.household.add_to_index_case(self.human, trigger)
# positive test result - quarantine until max duration
elif trigger == QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT:
duration = self.conf['QUARANTINE_DAYS_ON_POSITIVE_TEST'] * SECONDS_PER_DAY
self.end_timestamp = self.start_timestamp + datetime.timedelta(seconds=duration)
self._set_quarantine_behavior(self.reasons, test_recommended=False)
if self.conf['QUARANTINE_HOUSEHOLD_UPON_INDIVIDUAL_POSITIVE_TEST']:
self.human.household.add_to_index_case(self.human, trigger)
elif trigger == QUARANTINE_DUE_TO_SELF_DIAGNOSIS:
assert False, NotImplementedError(f"{trigger} quarantine not implemented")
elif trigger == QUARANTINE_HOUSEHOLD:
self.end_timestamp = self.human.household.quarantine_end_timestamp
self._set_quarantine_behavior(self.reasons, test_recommended=False)
else:
raise ValueError(f"Unknown trigger for quarantine: {trigger}")
def _set_quarantine_behavior(self, reasons, test_recommended):
"""
Sets behavior level for quarantining and whether a test is recommended or not. Check Quarantine.update for more.
Note: It is to be called from `Quarantine.update`
Args:
reasons (list): reasons for quarantining.
test_recommended (bool): whether `human` should get a test or not.
"""
self.intervened_behavior.set_behavior(level=self.quarantine_idx, reasons=reasons)
self.human._test_recommended = test_recommended
def _unset_quarantine_behavior(self, to_level):
"""
Resets `human` from `quarantine_idx` to `to_level`.
Note: It is to be called from `Quarantine.update`
Args:
to_level (int): the level to which `human`s behavior level should be reset to.
"""
assert to_level != self.quarantine_idx, "unsetting the quarantine to quarantine_level. Something is wrong."
self.intervened_behavior.set_behavior(level=to_level, reasons=[UNSET_QUARANTINE, f"{UNSET_QUARANTINE}: {self.intervened_behavior._behavior_level}->{to_level}"])
self.human._test_recommended = False
def reset_quarantine(self):
"""
Resets quarantine related attributes and puts `human` into a relevant behavior level.
Note 1: Specific to non-binary risk tracing, reset doesn't work if the recommendation is still to quarantine.
Note 2: It also sets the flag for no more need to quarantine once the test results are positive.
"""
assert self.start_timestamp is not None, "unsetting quarantine twice not allowed"
assert not self.human_no_longer_needs_quarantining, f"{self.human} was quarantined while it shouldn't have"
last_reason = self.reasons[-1]
#
if (
not self.human_no_longer_needs_quarantining
and (
self.human.has_had_positive_test
or last_reason == QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT
or self.human.test_result == POSITIVE_TEST_RESULT
)
):
self.human_no_longer_needs_quarantining = True
self.start_timestamp = None
self.end_timestamp = None
self.reasons = []
self._unset_quarantine_behavior(self.baseline_behavior_idx)
self.human.household.reset_index_case(self.human)
def reset_if_its_time(self):
"""
Resets `timestamp`s.
It is called everytime a new activity is to be decided or a trigger is added.
"""
if self.start_timestamp is not None:
if self.end_timestamp <= self.env.timestamp:
self.reset_quarantine()
class IntervenedBehavior(object):
"""
A base class to implement intervened behavior.
Args:
human (covid19sim.human.Human): `human` whose behavior needs to be changed
env (simpy.Environment): environment to schedule events
conf (dict): yaml configuration of the experiment
"""
def __init__(self, human, env, conf):
self.human = human
self.env = env
self.conf = conf
self.rng = human.rng
assert conf['N_BEHAVIOR_LEVELS'] >= 2, "At least 2 behavior levels are required to model behavior changes"
# we reserve 0-index
self.n_behavior_levels = conf['N_BEHAVIOR_LEVELS'] + 1
self.quarantine_idx = self.n_behavior_levels - 1
self.baseline_behavior_idx = 1
self._behavior_level = 0 # true behavior level
self.behavior_level = 0 # its a property.setter
# start filling the reduction levels from the end
reduction_levels = {
"HOUSEHOLD": np.zeros(self.n_behavior_levels),
"WORKPLACE": np.zeros(self.n_behavior_levels),
"OTHER": np.zeros(self.n_behavior_levels),
"SCHOOL": np.zeros(self.n_behavior_levels),
}
reduction_levels["HOUSEHOLD"][-1] = 1.0
reduction_levels["WORKPLACE"][-1] = 1.0
reduction_levels["OTHER"][-1] = 1.0
reduction_levels["SCHOOL"][-1] = 1.0
last_filled_index = self.quarantine_idx
# if number of behavior levels is 2 and interpolation is with respect to lockdown contacts, it is a Lockdown scenario
if conf['INTERPOLATE_CONTACTS_USING_LOCKDOWN_CONTACTS']:
reduction_levels["HOUSEHOLD"][-2] = conf['FRACTION_LOCKDOWN_INTERPOLATION'] * conf['LOCKDOWN_FRACTION_REDUCTION_IN_CONTACTS_AT_HOUSEHOLD']
reduction_levels["WORKPLACE"][-2] = conf['FRACTION_LOCKDOWN_INTERPOLATION'] * conf['LOCKDOWN_FRACTION_REDUCTION_IN_CONTACTS_AT_WORKPLACE']
reduction_levels["OTHER"][-2] = conf['FRACTION_LOCKDOWN_INTERPOLATION'] * conf['LOCKDOWN_FRACTION_REDUCTION_IN_CONTACTS_AT_OTHER']
reduction_levels["SCHOOL"][-2] = conf['FRACTION_LOCKDOWN_INTERPOLATION'] * conf['LOCKDOWN_FRACTION_REDUCTION_IN_CONTACTS_AT_SCHOOL']
last_filled_index -= 1
else:
# if its a non-tracing scenario, and lockdown is not desired, its an unmitigated scenario with 0% reduction in the first level
if conf["RISK_MODEL"] == "" and conf['N_BEHAVIOR_LEVELS'] == 2:
last_filled_index -= 1
assert last_filled_index == self.baseline_behavior_idx, "unmitigated scenario should not have non-zero reduction in baseline_behavior"
# in a non-tracing scenario, baseline_behavior is not defined so we populate levels until baseline_behavior
while last_filled_index > self.baseline_behavior_idx:
to_fill_index = last_filled_index - 1
for location_type in ["HOUSEHOLD", "WORKPLACE", "OTHER", "SCHOOL"]:
reduction_levels[location_type][to_fill_index] = reduction_levels[location_type][last_filled_index] / 2
last_filled_index = to_fill_index
self.reduction_levels = reduction_levels
# start everyone at the zero level by default (unmitigated scenario i.e. no reduction in contacts)
self.quarantine = Quarantine(self, self.human, self.env, self.conf)
self.set_behavior(level=0, reasons=[INITIALIZED_BEHAVIOR])
# dropout
self._follow_recommendation_today = None
self.last_date_to_decide_dropout = None
#
self.intervention_started = False
self.pay_no_attention_to_triggers = False
def initialize(self, check_has_app=False):
"""
Sets up a baseline behavior on the day intervention starts.
Args:
check_has_app (bool): whether to initialize a baseline beahvior only for humans with the app
"""
assert self.conf['INTERVENTION_DAY'] >= 0, "negative intervention day and yet intialization is called."
assert self.n_behavior_levels >= 2, "with 2 behavior levels and a risk model, behavior level 1 will quarantine everyone"
if check_has_app and self.human.has_app:
warnings.warn("An unrealistic scenario - initilization of baseline behavior is only for humans with an app")
self.set_behavior(level=self.baseline_behavior_idx, reasons=[INTERVENTION_START_BEHAVIOR])
return
self.set_behavior(level=self.baseline_behavior_idx, reasons=[INTERVENTION_START_BEHAVIOR])
self.intervention_started = True
def update_and_get_true_behavior_level(self):
"""
Returns the true underlying behavior of human.
Updates the underlying behavior level if this function is called past the `quarantine.end_timestamp`.
(WIP) A true behavior of such kind can only be achieved by using Quarantine as a simpy.Event.
Note: if `human` uses the app and follows recommendation of someone else in the hosuehold, _behavior_level will be different then what behavior_level is.
Returns:
(int): Behavior level of `human` that determines the number of interactions that a human can have
"""
self.quarantine.reset_if_its_time()
return self._behavior_level
@property
def behavior_level(self):
"""
Returns appropriate behavior according to which `human` is supposed to act. Dropout, not used here, can further affect this level.
Note: It updates the underlying behavior level if this function is called past the `quarantine.end_timestamp`.
It can not be considered as a side effect. A true behavior of such kind can only be achieved by using Quarantine as a simpy.Event.
Returns:
(int): Behavior level of `human` that determines the number of interactions that a human can have
"""
if self.human.is_dead:
return -1
# if currently someone in the house is following app Rx (someone in the house has to have an app)
if (
self.quarantine.start_timestamp is None # currently no non-app quarantining
and not self.pay_no_attention_to_triggers # hasn't had a positive test in the past
and self.conf['MAKE_HOUSEHOLD_BEHAVE_SAME_AS_MAX_RISK_RESIDENT']
):
# Note: some `human`s in recovery phase who haven't reset their test_results yet will also come here
return max(resident.intervened_behavior.update_and_get_true_behavior_level() for resident in self.human.household.residents)
return self.update_and_get_true_behavior_level()
@behavior_level.setter
def behavior_level(self, val):
self._behavior_level = val
@property
def follow_recommendation_today(self):
"""
Determines whether `human` follows the restrictions today or not
"""
last_date = self.last_date_to_decide_dropout
current_date = self.env.timestamp.date()
if (
last_date is None
or (current_date - last_date).days > 0
):
dropout = _get_dropout_rate(self.current_behavior_reason, self.conf)
self.last_date_to_decide_dropout = current_date
self._follow_recommendation_today = self.rng.rand() < (1 - dropout)
return self._follow_recommendation_today
@property
def is_under_quarantine(self):
"""
Returns True if `human` is under quarantine restrictions. It doesn't account for dropout.
"""
return self.behavior_level == self.quarantine_idx
def is_quarantining(self):
"""
Returns True if `human` is currently quarantining. It accounts for dropout (non-adherence).
"""
self.quarantine.reset_if_its_time()
if self.is_under_quarantine:
if self.follow_recommendation_today:
return True
return False
def daily_interaction_reduction_factor(self, location):
"""
Returns fraction of contacts that are reduced from the unmitigated scneraio.
Args:
location (covid19sim.locations.location.Location): location where `human` is currently at
Returns:
(float): fraction by which unmiitgated contacts should be reduced. 1.0 means 0 interactions, and 0.0 means interactions under unmitigated scenario.
"""
if (
self.intervention_started
and isinstance(location, (Hospital, ICU))
and self.conf['ASSUME_SAFE_HOSPITAL_DAILY_INTERACTIONS_AFTER_INTERVENTION_START']
):
return 1.0
# if `human` is not following any recommendations today, then set the number of interactions to level 0
if not self.follow_recommendation_today:
return 0.0
location_type = _get_location_type(self.human, location)
return self.reduction_levels[location_type][self.behavior_level]
def set_behavior(self, level, reasons):
"""
Sets `self.behavior_level` to level for duration `until`.
Args:
level (int): behvaior level to put `human` on
reasons (list): reasons for this level.
"""
assert reasons is not None and type(reasons) == list, f"reasons: {reasons} is None or it is not a list."
self.behavior_level = level
self.current_behavior_reason = reasons
# (debug)
# if self.human.name in ["human:71", "human:77", "human:34"]:
# print(self.env.timestamp, "set behavior level of", self.human, f"to {level}", "because", self.current_behavior_reason, self.quarantine.start_timestamp, self.quarantine.end_timestamp)
def set_recommended_behavior(self, level):
"""
All app-based behavior changes happen through here. It sets _test_recommended attribute of human according to the behavior level.
Args:
level (int): behvaior level to put `human` on
"""
if level == self.quarantine_idx:
self.human._test_recommended = True # TODO - P - how should this affect score at the test facility
elif (
level != self.quarantine_idx
and self._behavior_level == self.quarantine_idx
):
self.human._test_recommended = False
self.set_behavior(level=level, reasons=[RISK_LEVEL_UPDATE, f"{RISK_LEVEL_UPDATE}: {self._behavior_level}->{level}"])
def trigger_intervention(self, reason):
"""
Changes the necessary attributes in `human`, `self.quarantine`, and `self` depending on the reason.
Args:
reason (str): reason for the change in behavior of human
"""
# if `human` knows about immunity, there is no need to follow any recommendations/quarantining
if self.pay_no_attention_to_triggers:
return
if (
not self.pay_no_attention_to_triggers
and self.human.has_had_positive_test
and self.quarantine.start_timestamp is None
):
self.pay_no_attention_to_triggers = True
self.set_behavior(level=self.baseline_behavior_idx, reasons=[IS_IMMUNE_BEHAVIOR])
return
# (no app required)
# If someone went for a test, they need to quarantine
if reason == TEST_TAKEN:
result = self.human.hidden_test_result
if result == NEGATIVE_TEST_RESULT:
self.quarantine.update(QUARANTINE_UNTIL_TEST_RESULT)
elif result == POSITIVE_TEST_RESULT:
self.quarantine.update(QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT)
else:
raise ValueError(f"Unknown test result:{result}")
# (no app required)
elif reason == SELF_DIAGNOSIS:
assert self.conf['QUARANTINE_SELF_REPORTED_INDIVIDUALS'], "configs do not allow for quarantining self-reported individuals"
self.quarantine.update(QUARANTINE_DUE_TO_SELF_DIAGNOSIS)
# (app required) tracing based behavioral changes
elif reason == RISK_LEVEL_UPDATE:
assert self.conf['RISK_MODEL'] != "", "risk model is empty but behavior change due to risk changes is being called."
assert self.human.has_app, "human doesn't have an app, but the behavior changes are being called."
# if currently quarantining because of non-app triggers, don't do anything
self.quarantine.reset_if_its_time()
if self.quarantine.start_timestamp is not None:
return
# determine recommendation of the app
normalized_model = False
if self.human.city.daily_rec_level_mapping is None:
intervention_level = self.human.rec_level
else:
# QKFIX: There are 4 recommendation levels, the value is hard-coded here
probas = self.human.city.daily_rec_level_mapping[self.human.rec_level]
intervention_level = self.rng.choice(4, p=probas)
normalized_model = True
self.human._intervention_level = intervention_level
# map intervention level to behavior levels by shifting them by 1 (because 1st index is reserved for no reduction in contacts)
behavior_level = convert_intervention_to_behavior_level(intervention_level)
assert 0 < behavior_level < self.n_behavior_levels, f"behavior_level: {behavior_level} can't be outside the range [1,{self.n_behavior_levels}]. Total number of levels:{self.n_behavior_levels}"
# if there is no change in the recommendation, don't do anything
if (
RISK_LEVEL_UPDATE in self.current_behavior_reason
and self._behavior_level == behavior_level
):
return
# (debug)
# if self.human.name == "human:71" and self._behavior_level==1 and behavior_level==4:
# breakpoint()
self.set_recommended_behavior(level=behavior_level)
else:
raise ValueError(f"Unknown reason for intervention:{reason}")
def __repr__(self):
return f"IntervenedBehavior for {self.human}"
def _get_location_type(human, location):
"""
Returns the location type to use for contact reduction depending on location and human's attributes
Args:
human (covid19sim.human.Human): `human` for whom this factor need to be determined
location (covid19sim.locations.location.Location): `location` at which human is currently
Returns:
(str): location type that should be considered for evaluation number of contacts
"""
if (
location == human.workplace
and location.location_type != "SCHOOL"
):
return "WORKPLACE"
elif (
location == human.workplace
and location.location_type == "SCHOOL"
):
return "SCHOOL"
elif location == human.household:
return "HOUSEHOLD"
else:
return "OTHER"
def _get_dropout_rate(reasons, conf):
"""
Returns a probability of not following an intervention due to `reasons`
Args:
reasons (list): list of strings that define the current behavior
conf (dict): yaml configuration of the experiment
Returns:
(float): dropout rate for the current behavior
"""
_reason = reasons[-1]
_reason = UNSET_QUARANTINE if UNSET_QUARANTINE in _reason else _reason
_reason = RISK_LEVEL_UPDATE if RISK_LEVEL_UPDATE in _reason else _reason
if _reason in [INITIALIZED_BEHAVIOR, INTERVENTION_START_BEHAVIOR, UNSET_QUARANTINE, IS_IMMUNE_BEHAVIOR]:
return 0.0
if _reason in [QUARANTINE_UNTIL_TEST_RESULT, QUARANTINE_DUE_TO_POSITIVE_TEST_RESULT]:
return conf['QUARANTINE_DROPOUT_TEST']
elif _reason == QUARANTINE_DUE_TO_SELF_DIAGNOSIS:
return conf['QUARANTINE_DROPOUT_SELF_REPORTED_SYMPTOMS']
elif _reason == QUARANTINE_HOUSEHOLD:
return conf['QUARANTINE_DROPOUT_HOUSEHOLD']
elif _reason == RISK_LEVEL_UPDATE:
return conf['ALL_LEVELS_DROPOUT']
else:
raise ValueError(f"Unknown value:{reasons}")
| [
"warnings.warn",
"numpy.zeros",
"datetime.timedelta"
] | [((10598, 10630), 'numpy.zeros', 'np.zeros', (['self.n_behavior_levels'], {}), '(self.n_behavior_levels)\n', (10606, 10630), True, 'import numpy as np\n'), ((10657, 10689), 'numpy.zeros', 'np.zeros', (['self.n_behavior_levels'], {}), '(self.n_behavior_levels)\n', (10665, 10689), True, 'import numpy as np\n'), ((10712, 10744), 'numpy.zeros', 'np.zeros', (['self.n_behavior_levels'], {}), '(self.n_behavior_levels)\n', (10720, 10744), True, 'import numpy as np\n'), ((10768, 10800), 'numpy.zeros', 'np.zeros', (['self.n_behavior_levels'], {}), '(self.n_behavior_levels)\n', (10776, 10800), True, 'import numpy as np\n'), ((13841, 13959), 'warnings.warn', 'warnings.warn', (['"""An unrealistic scenario - initilization of baseline behavior is only for humans with an app"""'], {}), "(\n 'An unrealistic scenario - initilization of baseline behavior is only for humans with an app'\n )\n", (13854, 13959), False, 'import warnings\n'), ((5618, 5654), 'datetime.timedelta', 'datetime.timedelta', ([], {'seconds': 'duration'}), '(seconds=duration)\n', (5636, 5654), False, 'import datetime\n'), ((6160, 6196), 'datetime.timedelta', 'datetime.timedelta', ([], {'seconds': 'duration'}), '(seconds=duration)\n', (6178, 6196), False, 'import datetime\n')] |
import numpy
import random
from solution import solution
def elitism(population, scores, bestIndividual, bestScore):
"""
This melitism operator of the population
"""
# get the worst individual
worstFitnessId = selectWorstIndividual(scores)
# replace worst cromosome with best one from previous generation if its fitness is less than the other
if scores[worstFitnessId] > bestScore:
population[worstFitnessId] = numpy.copy(bestIndividual)
scores[worstFitnessId] = numpy.copy(bestScore)
def selectWorstIndividual(scores):
"""
It is used to get the worst individual in a population based n the fitness value
"""
maxFitnessId = numpy.where(scores == numpy.max(scores))
maxFitnessId = maxFitnessId[0][0]
return maxFitnessId
class GA(solution):
def __init__(self, objf, sol_shift, lb, ub, dim, PopSize, EvlNum):
self.cp = 1 # crossover Probability
self.mp = 0.01 # Mutation Probability
self.keep = 2
# elitism parameter: how many of the best individuals to keep from one generation to the next
self.dim = dim
self.popnum = PopSize
self.maxiers = int(EvlNum / PopSize)
self.optimizer = "GA"
self.objfname = objf.__name__
self.objf = objf
self.sol_shift = sol_shift
# convert lb, ub to array
self.lb = numpy.array([lb for _ in range(dim)])
self.ub = numpy.array([ub for _ in range(dim)])
self.best = float("inf")
# initialize population
self.solutions = []
self.solutions_new = numpy.zeros((self.popnum,self.dim))
for p in range(PopSize):
sol = []
for d in range(dim):
d_val = random.uniform(self.lb[d], self.ub[d])
sol.append(d_val)
self.solutions.append(sol)
self.solutions = numpy.array(self.solutions)
self.population_fitness = []
# calculate fitness for all the population
for i in range(PopSize):
fitness = objf(self.solutions[i, :]-self.sol_shift)
self.population_fitness += [fitness]
if fitness < self.best:
self.best = fitness
self.bestIndividual = self.solutions[i, :]
self.population_fitness = numpy.array(self.population_fitness)
def update(self, iter_id):
if iter_id < self.maxiers:
# The crossover of all individuals
# initialize a new population
newPopulation = numpy.empty_like(self.solutions)
newPopulation[0:self.keep] = self.solutions[0:self.keep]
# Create pairs of parents. The number of pairs equals the number of individuals divided by 2
for i in range(self.keep, self.popnum, 2):
# pair of parents selection
##reverse score because minimum value should have more chance of selection
reverse = max(self.population_fitness) + min(self.population_fitness)
reverseScores = reverse - self.population_fitness.copy()
sumScores = sum(reverseScores)
pick = random.uniform(0, sumScores)
current = 0
for individualId in range(self.popnum):
current += reverseScores[individualId]
if current > pick:
parent1Id = individualId
break
pick = random.uniform(0, sumScores)
current = 0
for individualId in range(self.popnum):
current += reverseScores[individualId]
if current > pick:
parent2Id = individualId
break
parent1 = self.solutions[parent1Id].copy()
parent2 = self.solutions[parent2Id].copy()
crossoverLength = min(len(parent1), len(parent2))
parentsCrossoverProbability = random.uniform(0.0, 1.0)
if parentsCrossoverProbability < self.cp:
# The point at which crossover takes place between two parents.
crossover_point = random.randint(0, crossoverLength - 1)
# The new offspring will have its first half of its genes taken from the first parent and second half of its genes taken from the second parent.
offspring1 = numpy.concatenate(
[parent1[0:crossover_point], parent2[crossover_point:]]
)
# The new offspring will have its first half of its genes taken from the second parent and second half of its genes taken from the first parent.
offspring2 = numpy.concatenate(
[parent2[0:crossover_point], parent1[crossover_point:]]
)
else:
offspring1 = parent1.copy()
offspring2 = parent2.copy()
# Add offsprings to population
newPopulation[i] = numpy.copy(offspring1)
newPopulation[i + 1] = numpy.copy(offspring2)
# mutation
for i in range(self.keep, self.popnum):
# Mutation
offspringMutationProbability = random.uniform(0.0, 1.0)
if offspringMutationProbability < self.mp:
mutationIndex = random.randint(0, self.dim - 1)
mutationValue = random.uniform(self.lb[mutationIndex], self.ub[mutationIndex])
newPopulation[i, mutationIndex] = mutationValue
# ga = clearDups(ga, lb, ub)
newPopulation_unique = numpy.unique(newPopulation, axis=0)
oldLen = len(newPopulation)
newLen = len(newPopulation_unique)
if newLen < oldLen:
nDuplicates = oldLen - newLen
newPopulation_unique = numpy.append(
newPopulation_unique,
numpy.random.uniform(0, 1, (nDuplicates, self.dim))
* (numpy.array(self.ub) - numpy.array(self.lb))
+ numpy.array(self.lb),
axis=0,
)
# Loop through individuals in population
for i in range(self.popnum):
# Return back the search agents that go beyond the boundaries of the search space
newPopulation_unique[i] = numpy.clip(newPopulation_unique[i], self.lb, self.ub)
# calculate fitness for all the population
for i in range(self.popnum):
fitness = self.objf(newPopulation_unique[i, :]-self.sol_shift)
if fitness < self.population_fitness[i]:
self.population_fitness[i] = fitness
self.solutions[i] = newPopulation_unique[i].copy()
if fitness < self.best:
self.best = fitness
self.bestIndividual = self.solutions[i]
# Sort from best to worst
sortedIndices = self.population_fitness.argsort()
self.solutions = self.solutions[sortedIndices]
self.population_fitness = self.population_fitness[sortedIndices]
| [
"numpy.clip",
"numpy.copy",
"random.uniform",
"numpy.unique",
"numpy.max",
"numpy.array",
"numpy.zeros",
"numpy.empty_like",
"numpy.concatenate",
"numpy.random.uniform",
"random.randint"
] | [((450, 476), 'numpy.copy', 'numpy.copy', (['bestIndividual'], {}), '(bestIndividual)\n', (460, 476), False, 'import numpy\n'), ((510, 531), 'numpy.copy', 'numpy.copy', (['bestScore'], {}), '(bestScore)\n', (520, 531), False, 'import numpy\n'), ((1601, 1637), 'numpy.zeros', 'numpy.zeros', (['(self.popnum, self.dim)'], {}), '((self.popnum, self.dim))\n', (1612, 1637), False, 'import numpy\n'), ((1886, 1913), 'numpy.array', 'numpy.array', (['self.solutions'], {}), '(self.solutions)\n', (1897, 1913), False, 'import numpy\n'), ((2313, 2349), 'numpy.array', 'numpy.array', (['self.population_fitness'], {}), '(self.population_fitness)\n', (2324, 2349), False, 'import numpy\n'), ((710, 727), 'numpy.max', 'numpy.max', (['scores'], {}), '(scores)\n', (719, 727), False, 'import numpy\n'), ((2538, 2570), 'numpy.empty_like', 'numpy.empty_like', (['self.solutions'], {}), '(self.solutions)\n', (2554, 2570), False, 'import numpy\n'), ((5712, 5747), 'numpy.unique', 'numpy.unique', (['newPopulation'], {'axis': '(0)'}), '(newPopulation, axis=0)\n', (5724, 5747), False, 'import numpy\n'), ((1749, 1787), 'random.uniform', 'random.uniform', (['self.lb[d]', 'self.ub[d]'], {}), '(self.lb[d], self.ub[d])\n', (1763, 1787), False, 'import random\n'), ((3164, 3192), 'random.uniform', 'random.uniform', (['(0)', 'sumScores'], {}), '(0, sumScores)\n', (3178, 3192), False, 'import random\n'), ((3477, 3505), 'random.uniform', 'random.uniform', (['(0)', 'sumScores'], {}), '(0, sumScores)\n', (3491, 3505), False, 'import random\n'), ((3997, 4021), 'random.uniform', 'random.uniform', (['(0.0)', '(1.0)'], {}), '(0.0, 1.0)\n', (4011, 4021), False, 'import random\n'), ((5080, 5102), 'numpy.copy', 'numpy.copy', (['offspring1'], {}), '(offspring1)\n', (5090, 5102), False, 'import numpy\n'), ((5142, 5164), 'numpy.copy', 'numpy.copy', (['offspring2'], {}), '(offspring2)\n', (5152, 5164), False, 'import numpy\n'), ((5315, 5339), 'random.uniform', 'random.uniform', (['(0.0)', '(1.0)'], {}), '(0.0, 1.0)\n', (5329, 5339), False, 'import random\n'), ((6473, 6526), 'numpy.clip', 'numpy.clip', (['newPopulation_unique[i]', 'self.lb', 'self.ub'], {}), '(newPopulation_unique[i], self.lb, self.ub)\n', (6483, 6526), False, 'import numpy\n'), ((4202, 4240), 'random.randint', 'random.randint', (['(0)', '(crossoverLength - 1)'], {}), '(0, crossoverLength - 1)\n', (4216, 4240), False, 'import random\n'), ((4439, 4513), 'numpy.concatenate', 'numpy.concatenate', (['[parent1[0:crossover_point], parent2[crossover_point:]]'], {}), '([parent1[0:crossover_point], parent2[crossover_point:]])\n', (4456, 4513), False, 'import numpy\n'), ((4758, 4832), 'numpy.concatenate', 'numpy.concatenate', (['[parent2[0:crossover_point], parent1[crossover_point:]]'], {}), '([parent2[0:crossover_point], parent1[crossover_point:]])\n', (4775, 4832), False, 'import numpy\n'), ((5435, 5466), 'random.randint', 'random.randint', (['(0)', '(self.dim - 1)'], {}), '(0, self.dim - 1)\n', (5449, 5466), False, 'import random\n'), ((5503, 5565), 'random.uniform', 'random.uniform', (['self.lb[mutationIndex]', 'self.ub[mutationIndex]'], {}), '(self.lb[mutationIndex], self.ub[mutationIndex])\n', (5517, 5565), False, 'import random\n'), ((6170, 6190), 'numpy.array', 'numpy.array', (['self.lb'], {}), '(self.lb)\n', (6181, 6190), False, 'import numpy\n'), ((6028, 6079), 'numpy.random.uniform', 'numpy.random.uniform', (['(0)', '(1)', '(nDuplicates, self.dim)'], {}), '(0, 1, (nDuplicates, self.dim))\n', (6048, 6079), False, 'import numpy\n'), ((6103, 6123), 'numpy.array', 'numpy.array', (['self.ub'], {}), '(self.ub)\n', (6114, 6123), False, 'import numpy\n'), ((6126, 6146), 'numpy.array', 'numpy.array', (['self.lb'], {}), '(self.lb)\n', (6137, 6146), False, 'import numpy\n')] |
# Copyright (c) 2018, Xilinx
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the <organization> nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import numpy as np
import math
from im2col import im2col_indices
from abc import ABCMeta, abstractproperty
class Layer:
__metaclass__ = ABCMeta
@abstractproperty
def __init__(self):
pass
@abstractproperty
def execute(self):
pass
# @abstractproperty
# def updateBitwidths(self, inBitWidth):
## pass
def get_type(self):
return self.__class__.__name__
def get_stride(self):
if hasattr(self, 'stride'):
return self.stride
return 1
def get_in_dim(self):
if hasattr(self, 'padded_idim'):
return self.padded_idim
elif hasattr(self, 'in_dim'):
return self.in_dim
elif hasattr(self, 'idim'):
return self.idim
return -1
def get_pad(self):
if hasattr(self, 'pad'):
return self.pad
return 0
def getOutputSize(self):
return (self.outsize)
def get_filter_dim(self):
if hasattr(self, 'kernel'):
return self.kernel
return 0
def getInputSize(self):
return (self.insize)
def get_parallel(self):
if hasattr(self, 'parallel'):
return self.parallel
return 1
def get_out_dim(self):
#print "using baseclass def: ", self.get_in_dim(), self.get_filter_dim(), self.get_stride()
return int(math.floor(float(self.get_in_dim() - self.get_filter_dim())/self.get_stride()+1)) # Why was it this? math.ceil(self.get_in_dim() + ( 2 * self.get_pad() - self.get_filter_dim() + 1/self.get_stride()))
def __repr__(self):
return self.__class__.__name__
# device-independent FINN layer types
class DummyLayer(Layer):
def __init__(self):
self.ibits = 32
self.obits = 32
def execute(self):
pass
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
self.obits = self.ibits
return self.obits
class ExternalExecutionLayer(Layer):
"Call an executable to process the data. I/O is done via npy files."
def __init__(self, execmd):
import tempfile
self.execmd = execmd
self.ifilename = tempfile.mktemp() + ".npy"
self.ofilename = tempfile.mktemp() + ".npy"
def execute(self, v):
from subprocess import check_call
np.save(self.ifilename, v.astype(np.float32))
check_call([self.execmd, self.ifilename, self.ofilename])
return np.load(self.ofilename)
class MatrixThresholdLayer(Layer):
"Fused layer type for a matrix operation followed by thresholding"
def __init__(self, name, mlayer, tlayer):
self.name = name
self.mlayer = mlayer
self.kernel = mlayer.kernel
self.tlayer = tlayer
self.ibits = self.mlayer.ibits
self.wbits = self.mlayer.wbits
self.obits = self.tlayer.obits
self.outsize = self.mlayer.getOutputSize()
self.insize = self.mlayer.getInputSize()
def getNumOps(self):
return self.mlayer.getNumOps()
def execute(self, v):
return self.tlayer.execute(self.mlayer.execute(v))
def updateBitwidths(self, inBitWidth):
self.tlayer.updateBitwidths(self.mlayer.updateBitwidths(inBitWidth))
self.ibits = self.mlayer.ibits
self.obits = self.tlayer.obits
return self.obits
class SoftmaxLayer(Layer):
"Compute softmax values for each sets of scores."
def __init__(self):
self.ibits = 32
self.obits = 32
def execute(selv, v):
e_x = np.exp(v - np.max(v))
return e_x / e_x.sum()
def updateBitwidths(self, inBitWidth):
return self.obits
class ReLULayer(Layer):
"Apply elementwise ReLU to the vector."
def __init__(self):
self.ibits = 32
self.obits = 32
def execute(self, v):
return np.asarray(map(lambda x: x if x>0 else 0, v))
def updateBitwidths(self, inBitWidth):
# strictly speaking, ReLU can actually reduce the output
# bitwidth since everything below 0 becomes a 0
self.ibits = inBitWidth
self.obits = self.ibits
return self.obits
class LinearLayer(Layer):
"Using vectors A and B, apply Ax+B to incoming x."
def __init__(self, A, B):
if A.shape != B.shape:
raise Exception("LinearLayer A and B shapes do not match")
self.A = A
self.B = B
self.ibits = 32
self.wbits = 32
self.obits = 32
# TODO this is not always correct -- actual size must be propagated from
# previous layer. the param shape used here can be much smaller than
# the actual incoming image size (in which case the param is repeated/
# broadcasted)
self.insize = A.shape[0]
self.outsize = A.shape[0]
def execute(self, v):
# the outermost dimension is the channel dimension
# reshape as inner dimension to apply transform
vr = v.reshape((self.A.shape[0], -1)).transpose()
return (self.A*vr+self.B).transpose().flatten()
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
# for now, we assume the LinearLayer always performs 32-bit float math
return self.obits
class ThresholdingLayer(Layer):
"Given a set of thresholds, return the number of thresholds crossed."
def __init__(self, thresholds):
# we expect the thresholds array in the following format:
# thresholds = [levels][channels]
if thresholds.ndim == 1:
self.thresholds = thresholds.reshape((len(thresholds),-1))
elif thresholds.ndim == 2:
self.thresholds = thresholds
else:
raise Exception("Thresholds array must be 1- or 2-dimensional")
self.ibits = 32
self.obits = int(math.ceil(math.log(self.thresholds.shape[0]+1, 2)))
def execute(self, v):
# interpret as multi-channel image, where the number of channels is
# decided as the number of threshold channels
vr = v.reshape((self.thresholds.shape[1], -1))
ret = np.zeros(vr.shape, dtype=np.int)
for t in self.thresholds:
for c in range(self.thresholds.shape[1]):
ret[c] += map(lambda x: 1 if x == True else 0, vr[c] >= t[c])
return ret.flatten()
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
# output bit width stays unchanged for ThresholdingLayer
return self.obits
class BipolarThresholdingLayer(ThresholdingLayer):
"A 1-level ThresholdingLayer that returns -1 and +1 instead of 0 and 1."
def __init__(self, thresholds):
super(BipolarThresholdingLayer, self).__init__(thresholds)
if self.thresholds.shape[0] != 1:
raise Exception("BipolarThresholdingLayer can only have one level")
def execute(self, v):
# just the base implementation, but scaled by 2x-1 such that the output
# is -1, +1 instead of 0, 1. this could have been done with a following
# LinearLayer, but that LinearLayer may disappear as a result of
# streamlining. we have an interest in keeping the bipolar thresholding
# intact since there are special XNOR primitives for it.
ret = super(BipolarThresholdingLayer, self).execute(v)
return 2*ret - 1
# TODO add a LookupTableLayer for nonlinear quantization support
class FullyConnectedLayer(Layer):
"""
A layer that implements fully-connected network layers.
Note that bias is not implemented, this can be done by adding a LinearLayer
following the FullyConnectedLayer.
"""
def __init__(self, W, wbits, ibits, obits):
self.kernel = 1
self.wbits = wbits
self.ibits = ibits
self.obits = obits
self.W = W
self.outsize = W.shape[0]
self.insize = W.shape[1]
def execute(self, v):
return np.dot(self.W, v)
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
if self.ibits == 32 or self.wbits == 32:
# produce float outputs for float inputs (since 32bits means
# float at the moment)
self.obits = 32
else:
# find the number of bits necessary to represent the largest possible
# sum for a result element. assume maximum valued weight and input:
maxWVal = (1 << self.wbits) - 1
maxIVal = (1 << self.ibits) - 1
# assume every single input is maximum:
self.obits = int(self.insize*maxWVal*maxIVal).bit_length()
return self.obits
def getParamSize(self):
return self.W.size
def getNumOps(self):
return self.W.size * 2
def getInputSize(self):
"""in_channels"""
return (self.insize)
def getOutputSize(self):
return (self.outsize)
def getTotalParamBits(self):
return self.wbits * self.getParamSize()
def getTotalInputBits(self):
return self.ibits * np.prod(self.getInputSize())
def getTotalOutputBits(self):
return self.obits * np.prod(self.getOutputSize())
class ChanInterleaveLayer(Layer):
"""
Interleaves multichannel image data passing though the layer. For instance,
a typical RGB image may be normally laid out as three single-channel
images (R, G, B) such that we have img[chan][row][col]. After passing
through this layer, it will be converted to a single image of RGB pixels,
such that it is laid out as img[row][col][chan].
"""
def __init__(self, inDim, inChans):
self.dim = inDim
self.chans = inChans
self.ibits = 32
self.obits = 32
def execute(self, v):
# first, convert the incoming flattened vector into a multidim array
img = v.reshape((self.chans, self.dim, self.dim))
# tranpose axes, flatten and return
return img.transpose((1, 2, 0)).flatten()
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
self.obits = self.ibits
return self.obits
class ChanDeinterleaveLayer(Layer):
"Does the inverse of ChanInterleaveLayer, see explanation there."
def __init__(self, inDim, inChans):
self.dim = inDim
self.chans = inChans
def execute(self, v):
# first, convert the incoming flattened vector into a multidim array
img = v.reshape((self.dim, self.dim, self.chans))
# tranpose axes, flatten and return
return img.transpose((2, 0, 1)).flatten()
class PaddingLayer(Layer):
"A layer that adds padding around the edges of the image."
def __init__(self, inDim, inChans, padCount, padVal):
self.dim = inDim
self.chans = inChans
self.padCount = padCount
self.padVal = padVal
def execute(self, v):
img = v.reshape((self.chans, self.dim, self.dim))
padCounts = ((0, 0),
(self.padCount, self.padCount),
(self.padCount, self.padCount))
img = np.pad(img, padCounts, "constant", constant_values=self.padVal)
return img.flatten()
class SlidingWindowLayer(Layer):
"Slide a window over a multichannel image (im2col)"
def __init__(self, inDim, inChans, windowDim, stride=1):
self.idim = inDim
self.chans = inChans
self.k = windowDim
self.s = stride
def execute(self, v):
# reshape the input vector into a 2D image
img = v.reshape((1, self.chans, self.idim, self.idim))
# call im2col to get the sliding window result
res = im2col_indices(img, self.k, self.k, padding=0,
stride_y=self.s, stride_x=self.s)
return res.flatten()
class ConvolutionLayer(Layer):
"Convolution via im2col and matrix-matrix multiplication"
def __init__(self, W, inDim, pad, stride, wbits, ibits, obits, padVal=0):
self.wbits = wbits
self.ibits = ibits
self.obits = obits
self.ofm = W.shape[0]
self.ifm = W.shape[1]
self.kernel = W.shape[2]
self.idim = inDim
self.padded_idim = inDim + 2*pad
self.odim =int(math.floor((float(self.padded_idim - self.kernel) / stride) +1))
self.in_dim = inDim
self.out_dim = self.odim
self.stride = stride
self.pad = pad
self.padVal = padVal
if(W.shape[2] != W.shape[3]):
raise Exception("Only square conv filters supported for now")
# instantiate internal layer components
self.layers = []
if pad != 0:
self.layers += [PaddingLayer(self.idim, self.ifm, pad, padVal)]
self.layers += [SlidingWindowLayer(self.padded_idim, self.ifm, self.kernel, self.stride)]
self.W = W.reshape((self.ofm, self.ifm*self.kernel*self.kernel))
self.outsize = self.ofm * self.odim * self.odim
def execute(self, v):
# execute internal padding/sliding window layers first
vn = v
for l in self.layers:
vn = l.execute(vn)
# reconstruct image matrix
vn = vn.reshape((self.ifm*self.kernel*self.kernel, self.odim*self.odim))
# matrix-matrix multiply
res = np.dot(self.W, vn)
return res.flatten()
def get_filter_dim(self):
return self.kernel
def get_in_dim(self):
return self.padded_idim
def getParamSize(self):
return self.W.size
def getNumOps(self):
if hasattr(self, 'parallel'):
return self.W.size * self.odim * self.odim * 2 * self.parallel
return self.W.size * self.odim * self.odim * 2
def getInputSize(self):
return (self.ifm, self.idim, self.idim)[0]
def getOutputSize(self):
return (self.ofm, self.odim, self.odim)[0]
def getTotalParamBits(self):
return self.wbits * self.getParamSize()
def getTotalInputBits(self):
return self.ibits * np.prod(self.getInputSize())
def getTotalOutputBits(self):
return self.obits * np.prod(self.getOutputSize())
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
if self.ibits == 32 or self.wbits == 32:
# produce float outputs for float inputs (since 32bits means
# float at the moment)
self.obits = 32
else:
# find the number of bits necessary to represent the largest possible
# sum for a result element. assume maximum valued weight and input:
maxWVal = (1 << self.wbits) - 1
maxIVal = (1 << self.ibits) - 1
# assume every single input is maximum:
self.obits = int(self.W.shape[1]*maxWVal*maxIVal).bit_length()
return self.obits
class PoolingLayer(Layer):
"Perform pooling"
def __init__(self, inDim, inChans, poolSize, strideSize, poolFxn = "max"):
self.ibits = 32
self.obits = 32
self.idim = inDim
self.chans = inChans
self.k = poolSize
self.s = strideSize
self.odim = math.ceil((float(self.idim - self.k) / float(self.s))+1)
self.poolFxn = poolFxn
self.outsize = (self.chans, self.odim, self.odim)[0]
self.insize = self.idim * self.idim * self.chans
def execute(self, v):
img = v.reshape((self.chans, self.idim, self.idim))
out_img = np.zeros((self.chans, self.odim*self.odim), dtype=np.float32)
for c in range(self.chans):
chan_img = img[c].reshape((1, 1, self.idim, self.idim))
# extract parts of image with sliding window
wnd = im2col_indices(chan_img, self.k, self.k, padding=0,
stride_y=self.s, stride_x=self.s)
# each window is a column -- get the reduction along columns
if self.poolFxn == "MAX":
out_img[c]=wnd.max(axis = 0).flatten()
elif self.poolFxn == "AVE":
out_img[c]=wnd.mean(axis = 0).flatten()
else:
raise Exception("Unsupported pooling function")
return out_img.flatten()
def updateBitwidths(self, inBitWidth):
self.ibits = inBitWidth
self.obits = self.ibits
return self.obits
class MonitorLayer(Layer):
"A layer that prints the numpy array data passing through."
def __init__(self, tag):
self.tag = tag
self.i = 0
def execute(self, v):
print("\n\nMonitorLayer %s at execution %d:" % (self.tag, self.i))
o = np.get_printoptions()
np.set_printoptions(threshold=np.nan)
print(np.array_repr(v))
np.set_printoptions(**o)
self.i += 1
return v
def isLinearLayer(layer):
lname = layer.__class__.__name__
return (lname == "LinearLayer")
def isScalarLinearLayer(layer):
if isLinearLayer(layer):
return layer.A.shape == (1,)
else:
return False
def isMatrixLayer(layer):
lname = layer.__class__.__name__
return lname == "FullyConnectedLayer" or lname == "ConvolutionLayer"
def isThresholdLayer(layer):
return isinstance(layer, ThresholdingLayer)
def isMatrixThresholdLayer(layer):
return isinstance(layer, MatrixThresholdLayer)
def isPoolingLayer(layer):
return isinstance(layer, PoolingLayer)
def isMaxPoolingLayer(layer):
if isPoolingLayer(layer):
return layer.poolFxn == "MAX"
else:
return False
def isFCLayer(layer):
return isinstance(layer, FullyConnectedLayer)
def isConvLayer(layer):
return isinstance(layer, ConvolutionLayer)
def isReLULayer(layer):
return isinstance(layer, ReLULayer)
def isSoftmaxLayer(layer):
return isinstance(layer, SoftmaxLayer)
| [
"subprocess.check_call",
"numpy.get_printoptions",
"numpy.array_repr",
"im2col.im2col_indices",
"numpy.max",
"tempfile.mktemp",
"math.log",
"numpy.dot",
"numpy.zeros",
"numpy.pad",
"numpy.load",
"numpy.set_printoptions"
] | [((3925, 3982), 'subprocess.check_call', 'check_call', (['[self.execmd, self.ifilename, self.ofilename]'], {}), '([self.execmd, self.ifilename, self.ofilename])\n', (3935, 3982), False, 'from subprocess import check_call\n'), ((3998, 4021), 'numpy.load', 'np.load', (['self.ofilename'], {}), '(self.ofilename)\n', (4005, 4021), True, 'import numpy as np\n'), ((7630, 7662), 'numpy.zeros', 'np.zeros', (['vr.shape'], {'dtype': 'np.int'}), '(vr.shape, dtype=np.int)\n', (7638, 7662), True, 'import numpy as np\n'), ((9448, 9465), 'numpy.dot', 'np.dot', (['self.W', 'v'], {}), '(self.W, v)\n', (9454, 9465), True, 'import numpy as np\n'), ((12560, 12623), 'numpy.pad', 'np.pad', (['img', 'padCounts', '"""constant"""'], {'constant_values': 'self.padVal'}), "(img, padCounts, 'constant', constant_values=self.padVal)\n", (12566, 12623), True, 'import numpy as np\n'), ((13120, 13205), 'im2col.im2col_indices', 'im2col_indices', (['img', 'self.k', 'self.k'], {'padding': '(0)', 'stride_y': 'self.s', 'stride_x': 'self.s'}), '(img, self.k, self.k, padding=0, stride_y=self.s, stride_x=self.s\n )\n', (13134, 13205), False, 'from im2col import im2col_indices\n'), ((14741, 14759), 'numpy.dot', 'np.dot', (['self.W', 'vn'], {}), '(self.W, vn)\n', (14747, 14759), True, 'import numpy as np\n'), ((16883, 16946), 'numpy.zeros', 'np.zeros', (['(self.chans, self.odim * self.odim)'], {'dtype': 'np.float32'}), '((self.chans, self.odim * self.odim), dtype=np.float32)\n', (16891, 16946), True, 'import numpy as np\n'), ((18010, 18031), 'numpy.get_printoptions', 'np.get_printoptions', ([], {}), '()\n', (18029, 18031), True, 'import numpy as np\n'), ((18040, 18077), 'numpy.set_printoptions', 'np.set_printoptions', ([], {'threshold': 'np.nan'}), '(threshold=np.nan)\n', (18059, 18077), True, 'import numpy as np\n'), ((18118, 18142), 'numpy.set_printoptions', 'np.set_printoptions', ([], {}), '(**o)\n', (18137, 18142), True, 'import numpy as np\n'), ((3715, 3732), 'tempfile.mktemp', 'tempfile.mktemp', ([], {}), '()\n', (3730, 3732), False, 'import tempfile\n'), ((3767, 3784), 'tempfile.mktemp', 'tempfile.mktemp', ([], {}), '()\n', (3782, 3784), False, 'import tempfile\n'), ((17124, 17213), 'im2col.im2col_indices', 'im2col_indices', (['chan_img', 'self.k', 'self.k'], {'padding': '(0)', 'stride_y': 'self.s', 'stride_x': 'self.s'}), '(chan_img, self.k, self.k, padding=0, stride_y=self.s,\n stride_x=self.s)\n', (17138, 17213), False, 'from im2col import im2col_indices\n'), ((18092, 18108), 'numpy.array_repr', 'np.array_repr', (['v'], {}), '(v)\n', (18105, 18108), True, 'import numpy as np\n'), ((5098, 5107), 'numpy.max', 'np.max', (['v'], {}), '(v)\n', (5104, 5107), True, 'import numpy as np\n'), ((7362, 7403), 'math.log', 'math.log', (['(self.thresholds.shape[0] + 1)', '(2)'], {}), '(self.thresholds.shape[0] + 1, 2)\n', (7370, 7403), False, 'import math\n')] |
import matplotlib.pyplot as plt
import numpy as np
import dynpy
bn = dynpy.bn.BooleanNetwork(rules=dynpy.sample_nets.budding_yeast_bn)
initState = np.zeros(bn.num_vars, 'uint8')
initState[ [1,3,6] ] = 1
plt.spy(bn.get_trajectory(start_state=initState, max_time=15))
plt.xlabel('Node')
plt.ylabel('Time')
| [
"numpy.zeros",
"matplotlib.pyplot.xlabel",
"dynpy.bn.BooleanNetwork",
"matplotlib.pyplot.ylabel"
] | [((70, 135), 'dynpy.bn.BooleanNetwork', 'dynpy.bn.BooleanNetwork', ([], {'rules': 'dynpy.sample_nets.budding_yeast_bn'}), '(rules=dynpy.sample_nets.budding_yeast_bn)\n', (93, 135), False, 'import dynpy\n'), ((149, 179), 'numpy.zeros', 'np.zeros', (['bn.num_vars', '"""uint8"""'], {}), "(bn.num_vars, 'uint8')\n", (157, 179), True, 'import numpy as np\n'), ((268, 286), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Node"""'], {}), "('Node')\n", (278, 286), True, 'import matplotlib.pyplot as plt\n'), ((287, 305), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Time"""'], {}), "('Time')\n", (297, 305), True, 'import matplotlib.pyplot as plt\n')] |
from keras.models import load_model, Model
import numpy as np
import os
from src.data.shl_data import shl_min, shl_max, mean, std
from tqdm import tqdm
import seaborn as sns
import shutil
from loguru import logger
x_min = shl_min()[np.newaxis, np.newaxis, :]
x_max = shl_max()[np.newaxis, np.newaxis, :]
x_mean = mean()
x_std = std()
base = "data/interim/hips/data"
logger.add("duplex_fe_cv.log", format="{time:YYYY-MM-DD at HH:mm:ss} | {level} | {message}")
logger.info("CV feature extraction has started.")
sensors = ["accel", "gyro", "mag"]
sources = [0]*3 + [1]*3 + [2]*3
destinations = [0, 1, 2]*3
modalities = list(zip(sources, destinations))
model_names = [f"{sensors[x]}2{sensors[y]}_duplex" for (x, y) in modalities]
for model_name, (in_sensor, out_sensor) in tqdm(list(zip(model_names, modalities))[5:], total=9, desc = "Modalities"):
for i in tqdm(range(5), desc = "Folds", leave = False):
os.makedirs(f"data/interim/hips/best_fold{i}_{model_name}_features/")
model = load_model(f"models/hips/best_fold{i}_{model_name}")
feature_encoder = Model(model.input, model.get_layer("features").output)
rmses = []
for fname in tqdm(os.listdir(base), desc = "files", leave = False):
arr = np.load(base + "/" + fname)
x = (arr - x_mean) / x_std
x = (x - x_min) / (x_max - x_min)
x = x * 2 - 1
features = feature_encoder.predict(x[:,:,:, in_sensor])
np.save(f"data/interim/hips/best_fold{i}_{model_name}_features/{fname}", features)
rmse = np.mean(np.square(model.predict(x[:, :, :, in_sensor], verbose=0)[0] - x[:, :, :, out_sensor]), axis = 1)
rmses.extend(rmse)
logger.info(f"{model_name} fold {i} finished with rmse = {np.mean(rmses)}") | [
"loguru.logger.add",
"numpy.mean",
"os.listdir",
"keras.models.load_model",
"loguru.logger.info",
"os.makedirs",
"src.data.shl_data.std",
"src.data.shl_data.shl_max",
"src.data.shl_data.shl_min",
"numpy.load",
"numpy.save",
"src.data.shl_data.mean"
] | [((314, 320), 'src.data.shl_data.mean', 'mean', ([], {}), '()\n', (318, 320), False, 'from src.data.shl_data import shl_min, shl_max, mean, std\n'), ((329, 334), 'src.data.shl_data.std', 'std', ([], {}), '()\n', (332, 334), False, 'from src.data.shl_data import shl_min, shl_max, mean, std\n'), ((369, 466), 'loguru.logger.add', 'logger.add', (['"""duplex_fe_cv.log"""'], {'format': '"""{time:YYYY-MM-DD at HH:mm:ss} | {level} | {message}"""'}), "('duplex_fe_cv.log', format=\n '{time:YYYY-MM-DD at HH:mm:ss} | {level} | {message}')\n", (379, 466), False, 'from loguru import logger\n'), ((462, 511), 'loguru.logger.info', 'logger.info', (['"""CV feature extraction has started."""'], {}), "('CV feature extraction has started.')\n", (473, 511), False, 'from loguru import logger\n'), ((223, 232), 'src.data.shl_data.shl_min', 'shl_min', ([], {}), '()\n', (230, 232), False, 'from src.data.shl_data import shl_min, shl_max, mean, std\n'), ((268, 277), 'src.data.shl_data.shl_max', 'shl_max', ([], {}), '()\n', (275, 277), False, 'from src.data.shl_data import shl_min, shl_max, mean, std\n'), ((920, 989), 'os.makedirs', 'os.makedirs', (['f"""data/interim/hips/best_fold{i}_{model_name}_features/"""'], {}), "(f'data/interim/hips/best_fold{i}_{model_name}_features/')\n", (931, 989), False, 'import os\n'), ((1015, 1067), 'keras.models.load_model', 'load_model', (['f"""models/hips/best_fold{i}_{model_name}"""'], {}), "(f'models/hips/best_fold{i}_{model_name}')\n", (1025, 1067), False, 'from keras.models import load_model, Model\n'), ((1194, 1210), 'os.listdir', 'os.listdir', (['base'], {}), '(base)\n', (1204, 1210), False, 'import os\n'), ((1262, 1289), 'numpy.load', 'np.load', (["(base + '/' + fname)"], {}), "(base + '/' + fname)\n", (1269, 1289), True, 'import numpy as np\n'), ((1482, 1568), 'numpy.save', 'np.save', (['f"""data/interim/hips/best_fold{i}_{model_name}_features/{fname}"""', 'features'], {}), "(f'data/interim/hips/best_fold{i}_{model_name}_features/{fname}',\n features)\n", (1489, 1568), True, 'import numpy as np\n'), ((1788, 1802), 'numpy.mean', 'np.mean', (['rmses'], {}), '(rmses)\n', (1795, 1802), True, 'import numpy as np\n')] |
import numpy as np
def evaluate(env, agent, num_runs, max_steps=np.inf):
returns = np.zeros(num_runs)
for run_ix in range(num_runs):
env.reset()
cumulative_reward = 0.
step = 0
while env.steps_beyond_done is None and step < max_steps:
next_state_actions = env.get_sa_pairs()
choice_set = env.get_choice_set_array(next_state_actions)
action = agent.choose_action(choice_set, stochastic=False)
_, reward, _, _ = env.step(action)
cumulative_reward += reward
step += 1
returns[run_ix] = cumulative_reward
return returns
| [
"numpy.zeros"
] | [((89, 107), 'numpy.zeros', 'np.zeros', (['num_runs'], {}), '(num_runs)\n', (97, 107), True, 'import numpy as np\n')] |
import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt
import formatter
# m: number of machines
# n: number of jobs
# T: number of time indices
# S: schedule
# p: integer processing times
# s: inclusive integer earlest starting times
# f: exclusive itneger latest finishing times
def new_schedule(m, n, T):
return np.zeros((m, n, T), dtype=bool)
def new_framework(m, n, T, relation):
framework = np.zeros((m, n, T, m, n, T), dtype=bool)
for i1 in range(m):
for i2 in range(m):
for j1 in range(n):
for j2 in range(n):
for t1 in range(T):
for t2 in range(T):
if relation(i1, j1, t1, i2, j2, t2):
framework[i1, j1, t1, i2, j2, t2] = True
return framework
def alpha_relation(i1, j1, t1, i2, j2, t2):
return i1 == i2 and j1 != j2 or t1 != t2
def new_set_relation(S):
def relation(i1, j1, t1, i2, j2, t2):
return i1 == i2 and j1 == j2 and t1 == t2 and S[i1, j1, t1]
def draw_schedule(m, n, T, p, s, f, nfd, pfd, S):
M = np.arange(m)
N = np.arange(n)
Tee = np.arange(T)
MN = np.arange(m * n)
fig = plt.figure()
# hatch parameters
mpl.rcParams['hatch.linewidth'] = 5
mpl.rcParams['hatch.color'] = 'grey'
# Setup axis
subplot = fig.add_subplot(111)
right_axis = subplot.twinx()
subplot.set_xlabel('time')
subplot.set_ylabel('machine')
right_axis.set_ylabel('job')
subplot.xaxis.set_ticks(np.arange(T + 1))
subplot.set_xlim(0, T)
subplot.set_ylim(-0.5, m*n - 0.5)
subplot.yaxis.set_ticks(MN)
subplot.yaxis.set_ticklabels(reversed([str(i + 1) for i in M] * n))
right_axis.yaxis.set_ticks(np.arange(n))
right_axis.yaxis.set_ticklabels(reversed([formatter.number_to_letters(j) for j in N]))
right_axis.set_ylim(-0.5, n - 0.5)
# Align right axis with left
right_axis.barh(N, np.zeros(n))
X = nfd.copy()
# Set ignores
for i in M:
for j in N:
# gamma
X[i, j, :s[i, j]] = True
# delta
X[i, j, f[i, j]:] = True
# eta
for t1 in Tee:
if pfd[i, j, t1]:
for t2 in Tee:
if t2 <= t1 - p[j] or t2 >= t1 + p[j]:
X[i, j, t2] = True
# zeta
for i1 in M:
for j in N:
if np.any(pfd[i1, j, :]):
# clear all machines that are not i1
for i2 in M:
if i1 != i2:
X[i2, j, :] = True
# Draw banded
subplot.barh(MN, [((k // m) % 2) * T for k in MN], facecolor='whitesmoke', height=1)
widths = np.repeat(p, m)[::-1]
# Draw assigments on over jobs
S2 = S.astype(int) # compute MxNxTee matrix where non-zeros are processing times
for j in N:
S2[:, j, :] *= p[j]
assigned = np.sum(S2, axis=1) # aggregate over job assignments
S3 = new_schedule(m, n, T).astype(int) # copy aggregate to each job to display
for j in N:
S3[:, j, :] = assigned
for t in Tee:
linewidths = S3[:, :, t].T.flatten().astype(int)[::-1]
bars = subplot.barh(MN, linewidths, hatch='/',
facecolor='None', left=t)
# Draw ignores
for t in Tee:
# transpose: order is MN, not NM; convert from boolean to int; reverse y axis
subplot.barh(MN, X[:, :, t].T.flatten().astype(int)[::-1],
left=t, facecolor='grey')
# Draw assigments
for t in Tee:
linewidths = S[:, :, t].T.flatten().astype(int)[::-1]
bars = subplot.barh(MN, np.multiply(widths, linewidths), facecolor='black', left=t)
plt.show()
m = 2
n = 3
T = 6
p = np.array([2,3,2])
s = np.array([[0,1,0],[1,0,0]])
f = np.array([[4,6,6],[5,6,6]])
S = new_schedule(m, n, T)
S[0, 0, 0] = True
S[0, 2, 2] = True
S[1, 1, 3] = True
nfd = new_schedule(m, n, T)
nfd[1, 1, 2] = True
pfd = new_schedule(m, n, T)
pfd[0, 2, 2] = True
draw_schedule(m, n, T, p, s, f, nfd, pfd, S)
| [
"numpy.multiply",
"numpy.repeat",
"numpy.any",
"numpy.array",
"numpy.zeros",
"matplotlib.pyplot.figure",
"numpy.sum",
"formatter.number_to_letters",
"numpy.arange",
"matplotlib.pyplot.show"
] | [((3249, 3268), 'numpy.array', 'np.array', (['[2, 3, 2]'], {}), '([2, 3, 2])\n', (3257, 3268), True, 'import numpy as np\n'), ((3271, 3303), 'numpy.array', 'np.array', (['[[0, 1, 0], [1, 0, 0]]'], {}), '([[0, 1, 0], [1, 0, 0]])\n', (3279, 3303), True, 'import numpy as np\n'), ((3303, 3335), 'numpy.array', 'np.array', (['[[4, 6, 6], [5, 6, 6]]'], {}), '([[4, 6, 6], [5, 6, 6]])\n', (3311, 3335), True, 'import numpy as np\n'), ((338, 369), 'numpy.zeros', 'np.zeros', (['(m, n, T)'], {'dtype': 'bool'}), '((m, n, T), dtype=bool)\n', (346, 369), True, 'import numpy as np\n'), ((422, 462), 'numpy.zeros', 'np.zeros', (['(m, n, T, m, n, T)'], {'dtype': 'bool'}), '((m, n, T, m, n, T), dtype=bool)\n', (430, 462), True, 'import numpy as np\n'), ((985, 997), 'numpy.arange', 'np.arange', (['m'], {}), '(m)\n', (994, 997), True, 'import numpy as np\n'), ((1003, 1015), 'numpy.arange', 'np.arange', (['n'], {}), '(n)\n', (1012, 1015), True, 'import numpy as np\n'), ((1023, 1035), 'numpy.arange', 'np.arange', (['T'], {}), '(T)\n', (1032, 1035), True, 'import numpy as np\n'), ((1042, 1058), 'numpy.arange', 'np.arange', (['(m * n)'], {}), '(m * n)\n', (1051, 1058), True, 'import numpy as np\n'), ((1067, 1079), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (1077, 1079), True, 'import matplotlib.pyplot as plt\n'), ((2512, 2530), 'numpy.sum', 'np.sum', (['S2'], {'axis': '(1)'}), '(S2, axis=1)\n', (2518, 2530), True, 'import numpy as np\n'), ((3215, 3225), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (3223, 3225), True, 'import matplotlib.pyplot as plt\n'), ((1367, 1383), 'numpy.arange', 'np.arange', (['(T + 1)'], {}), '(T + 1)\n', (1376, 1383), True, 'import numpy as np\n'), ((1570, 1582), 'numpy.arange', 'np.arange', (['n'], {}), '(n)\n', (1579, 1582), True, 'import numpy as np\n'), ((1758, 1769), 'numpy.zeros', 'np.zeros', (['n'], {}), '(n)\n', (1766, 1769), True, 'import numpy as np\n'), ((2328, 2343), 'numpy.repeat', 'np.repeat', (['p', 'm'], {}), '(p, m)\n', (2337, 2343), True, 'import numpy as np\n'), ((2091, 2112), 'numpy.any', 'np.any', (['pfd[i1, j, :]'], {}), '(pfd[i1, j, :])\n', (2097, 2112), True, 'import numpy as np\n'), ((3153, 3184), 'numpy.multiply', 'np.multiply', (['widths', 'linewidths'], {}), '(widths, linewidths)\n', (3164, 3184), True, 'import numpy as np\n'), ((1627, 1657), 'formatter.number_to_letters', 'formatter.number_to_letters', (['j'], {}), '(j)\n', (1654, 1657), False, 'import formatter\n')] |
import tempfile, os, glob
from scipy.stats import norm as ndist
from traitlets import (HasTraits,
Integer,
Unicode,
Float,
Integer,
Instance,
Dict,
Bool,
default)
import numpy as np
import regreg.api as rr
from selection.algorithms.lasso import lasso, lasso_full, lasso_full_modelQ
from selection.algorithms.sqrt_lasso import choose_lambda
from selection.truncated.gaussian import truncated_gaussian_old as TG
from selection.randomized.lasso import lasso as random_lasso_method, form_targets
from selection.randomized.modelQ import modelQ as randomized_modelQ
from utils import BHfilter
from selection.randomized.base import restricted_estimator
# Rpy
import rpy2.robjects as rpy
from rpy2.robjects import numpy2ri
methods = {}
class generic_method(HasTraits):
need_CV = False
selectiveR_method = False
wide_ok = True # ok for p>= n?
# Traits
q = Float(0.2)
method_name = Unicode('Generic method')
model_target = Unicode()
@classmethod
def setup(cls, feature_cov):
cls.feature_cov = feature_cov
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
(self.X,
self.Y,
self.l_theory,
self.l_min,
self.l_1se,
self.sigma_reid) = (X,
Y,
l_theory,
l_min,
l_1se,
sigma_reid)
def select(self):
raise NotImplementedError('abstract method')
@classmethod
def register(cls):
methods[cls.__name__] = cls
def selected_target(self, active, beta):
C = self.feature_cov[active]
Q = C[:,active]
return np.linalg.inv(Q).dot(C.dot(beta))
def full_target(self, active, beta):
return beta[active]
def get_target(self, active, beta):
if self.model_target not in ['selected', 'full']:
raise ValueError('Gaussian methods only have selected or full targets')
if self.model_target == 'full':
return self.full_target(active, beta)
else:
return self.selected_target(active, beta)
# Knockoff selection
class knockoffs_mf(generic_method):
method_name = Unicode('Knockoffs')
knockoff_method = Unicode('Second order')
model_target = Unicode("full")
def select(self):
try:
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('Y', self.Y)
rpy.r.assign('q', self.q)
rpy.r('V=knockoff.filter(X, Y, fdr=q)$selected')
rpy.r('if (length(V) > 0) {V = V-1}')
V = rpy.r('V')
numpy2ri.deactivate()
return np.asarray(V, np.int), np.asarray(V, np.int)
except:
return [], []
knockoffs_mf.register()
class knockoffs_sigma(generic_method):
factor_method = 'asdp'
method_name = Unicode('Knockoffs')
knockoff_method = Unicode("ModelX (asdp)")
model_target = Unicode("full")
@classmethod
def setup(cls, feature_cov):
cls.feature_cov = feature_cov
numpy2ri.activate()
# see if we've factored this before
have_factorization = False
if not os.path.exists('.knockoff_factorizations'):
os.mkdir('.knockoff_factorizations')
factors = glob.glob('.knockoff_factorizations/*npz')
for factor_file in factors:
factor = np.load(factor_file)
feature_cov_f = factor['feature_cov']
if ((feature_cov_f.shape == feature_cov.shape) and
(factor['method'] == cls.factor_method) and
np.allclose(feature_cov_f, feature_cov)):
have_factorization = True
print('found factorization: %s' % factor_file)
cls.knockoff_chol = factor['knockoff_chol']
if not have_factorization:
print('doing factorization')
cls.knockoff_chol = factor_knockoffs(feature_cov, cls.factor_method)
numpy2ri.deactivate()
def select(self):
numpy2ri.activate()
rpy.r.assign('chol_k', self.knockoff_chol)
rpy.r('''
knockoffs = function(X) {
mu = rep(0, ncol(X))
mu_k = X # sweep(X, 2, mu, "-") %*% SigmaInv_s
X_k = mu_k + matrix(rnorm(ncol(X) * nrow(X)), nrow(X)) %*%
chol_k
return(X_k)
}
''')
numpy2ri.deactivate()
try:
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('Y', self.Y)
rpy.r.assign('q', self.q)
rpy.r('V=knockoff.filter(X, Y, fdr=q, knockoffs=knockoffs)$selected')
rpy.r('if (length(V) > 0) {V = V-1}')
V = rpy.r('V')
numpy2ri.deactivate()
return np.asarray(V, np.int), np.asarray(V, np.int)
except:
return [], []
knockoffs_sigma.register()
def factor_knockoffs(feature_cov, method='asdp'):
numpy2ri.activate()
rpy.r.assign('Sigma', feature_cov)
rpy.r.assign('method', method)
rpy.r('''
# Compute the Cholesky -- from create.gaussian
diag_s = diag(switch(method, equi = create.solve_equi(Sigma),
sdp = create.solve_sdp(Sigma), asdp = create.solve_asdp(Sigma)))
if (is.null(dim(diag_s))) {
diag_s = diag(diag_s, length(diag_s))
}
SigmaInv_s = solve(Sigma, diag_s)
Sigma_k = 2 * diag_s - diag_s %*% SigmaInv_s
chol_k = chol(Sigma_k)
''')
knockoff_chol = np.asarray(rpy.r('chol_k'))
SigmaInv_s = np.asarray(rpy.r('SigmaInv_s'))
diag_s = np.asarray(rpy.r('diag_s'))
np.savez('.knockoff_factorizations/%s.npz' % (os.path.split(tempfile.mkstemp()[1])[1],),
method=method,
feature_cov=feature_cov,
knockoff_chol=knockoff_chol)
return knockoff_chol
class knockoffs_sigma_equi(knockoffs_sigma):
knockoff_method = Unicode('ModelX (equi)')
factor_method = 'equi'
knockoffs_sigma_equi.register()
class knockoffs_orig(generic_method):
wide_OK = False # requires at least n>p
method_name = Unicode("Knockoffs")
knockoff_method = Unicode('Candes & Barber')
model_target = Unicode('full')
def select(self):
try:
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('Y', self.Y)
rpy.r.assign('q', self.q)
rpy.r('V=knockoff.filter(X, Y, statistic=stat.glmnet_lambdadiff, fdr=q, knockoffs=create.fixed)$selected')
rpy.r('if (length(V) > 0) {V = V-1}')
V = rpy.r('V')
numpy2ri.deactivate()
V = np.asarray(V, np.int)
return V, V
except:
return [], []
knockoffs_orig.register()
class knockoffs_fixed(generic_method):
wide_OK = False # requires at least n>p
method_name = Unicode("Knockoffs")
knockoff_method = Unicode('Fixed')
model_target = Unicode('full')
def select(self):
try:
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('Y', self.Y)
rpy.r.assign('q', self.q)
rpy.r('V=knockoff.filter(X, Y, fdr=q, knockoffs=create.fixed)$selected')
rpy.r('if (length(V) > 0) {V = V-1}')
V = rpy.r('V')
numpy2ri.deactivate()
return np.asarray(V, np.int), np.asarray(V, np.int)
except:
return [], []
knockoffs_fixed.register()
# Liu, Markovic, Tibs selection
class parametric_method(generic_method):
confidence = Float(0.95)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
generic_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self._fit = False
def select(self):
if not self._fit:
self.method_instance.fit()
self._fit = True
active_set, pvalues = self.generate_pvalues()
if len(pvalues) > 0:
selected = [active_set[i] for i in BHfilter(pvalues, q=self.q)]
return selected, active_set
else:
return [], active_set
class liu_theory(parametric_method):
sigma_estimator = Unicode('relaxed')
method_name = Unicode("Liu")
lambda_choice = Unicode("theory")
model_target = Unicode("full")
dispersion = Float(0.)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
parametric_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
n, p = X.shape
if n < p:
self.method_name = 'ROSI'
self.lagrange = l_theory * np.ones(X.shape[1])
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso_full.gaussian(self.X, self.Y, self.lagrange * np.sqrt(n))
return self._method_instance
def generate_summary(self, compute_intervals=False):
if not self._fit:
self.method_instance.fit()
self._fit = True
X, Y, lagrange, L = self.X, self.Y, self.lagrange, self.method_instance
n, p = X.shape
if len(L.active) > 0:
if self.sigma_estimator == 'reid' and n < p:
dispersion = self.sigma_reid**2
elif self.dispersion != 0:
dispersion = self.dispersion
else:
dispersion = None
S = L.summary(compute_intervals=compute_intervals, dispersion=dispersion)
return S
def generate_pvalues(self):
S = self.generate_summary(compute_intervals=False)
if S is not None:
active_set = np.array(S['variable'])
pvalues = np.asarray(S['pval'])
return active_set, pvalues
else:
return [], []
def generate_intervals(self):
S = self.generate_summary(compute_intervals=True)
if S is not None:
active_set = np.array(S['variable'])
lower, upper = np.asarray(S['lower_confidence']), np.asarray(S['upper_confidence'])
return active_set, lower, upper
else:
return [], [], []
liu_theory.register()
class liu_aggressive(liu_theory):
lambda_choice = Unicode("aggressive")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
liu_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
liu_aggressive.register()
class liu_modelQ_pop_aggressive(liu_aggressive):
method_name = Unicode("Liu (ModelQ population)")
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso_full_modelQ(self.feature_cov * n, self.X, self.Y, self.lagrange * np.sqrt(n))
return self._method_instance
liu_modelQ_pop_aggressive.register()
class liu_modelQ_semi_aggressive(liu_aggressive):
method_name = Unicode("Liu (ModelQ semi-supervised)")
B = 10000 # how many samples to use to estimate E[XX^T]
@classmethod
def setup(cls, feature_cov):
cls.feature_cov = feature_cov
cls._chol = np.linalg.cholesky(feature_cov)
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
# draw sample of X for semi-supervised method
_chol = self._chol
p = _chol.shape[0]
Q = 0
batch_size = int(self.B/10)
for _ in range(10):
X_semi = np.random.standard_normal((batch_size, p)).dot(_chol.T)
Q += X_semi.T.dot(X_semi)
Q += self.X.T.dot(self.X)
Q /= (10 * batch_size + self.X.shape[0])
n, p = self.X.shape
self._method_instance = lasso_full_modelQ(Q * self.X.shape[0], self.X, self.Y, self.lagrange * np.sqrt(n))
return self._method_instance
liu_modelQ_semi_aggressive.register()
class liu_sparseinv_aggressive(liu_aggressive):
method_name = Unicode("ROSI")
"""
Force the use of the debiasing matrix.
"""
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso_full.gaussian(self.X, self.Y, self.lagrange * np.sqrt(n))
self._method_instance.sparse_inverse = True
return self._method_instance
liu_sparseinv_aggressive.register()
class liu_aggressive_reid(liu_aggressive):
sigma_estimator = Unicode('Reid')
pass
liu_aggressive_reid.register()
class liu_CV(liu_theory):
need_CV = True
lambda_choice = Unicode("CV")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
liu_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_min * np.ones(X.shape[1])
liu_CV.register()
class liu_1se(liu_theory):
need_CV = True
lambda_choice = Unicode("1se")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
liu_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_1se * np.ones(X.shape[1])
liu_1se.register()
class liu_sparseinv_1se(liu_1se):
method_name = Unicode("ROSI")
"""
Force the use of the debiasing matrix.
"""
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso_full.gaussian(self.X, self.Y, self.lagrange * np.sqrt(n))
self._method_instance.sparse_inverse = True
return self._method_instance
liu_sparseinv_1se.register()
class liu_sparseinv_1se_known(liu_1se):
method_name = Unicode("ROSI - known")
dispersion = Float(1.)
"""
Force the use of the debiasing matrix.
"""
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso_full.gaussian(self.X, self.Y, self.lagrange * np.sqrt(n))
self._method_instance.sparse_inverse = True
return self._method_instance
liu_sparseinv_1se_known.register()
class liu_R_theory(liu_theory):
selectiveR_method = True
method_name = Unicode("Liu (R code)")
def generate_pvalues(self):
try:
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('y', self.Y)
rpy.r.assign('sigma_reid', self.sigma_reid)
rpy.r('y = as.numeric(y)')
rpy.r.assign('lam', self.lagrange[0])
rpy.r('''
p = ncol(X);
n = nrow(X);
sigma_est = 1.
if (p >= n) {
sigma_est = sigma_reid
} else {
sigma_est = sigma(lm(y ~ X - 1))
}
penalty_factor = rep(1, p);
lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code
soln = selectiveInference:::solve_problem_glmnet(X, y, lam, penalty_factor=penalty_factor, loss="ls")
PVS = selectiveInference:::inference_group_lasso(X, y,
soln, groups=1:ncol(X),
lambda=lam, penalty_factor=penalty_factor,
sigma_est, loss="ls", algo="Q",
construct_ci=FALSE)
active_vars=PVS$active_vars - 1 # for 0-based
pvalues = PVS$pvalues
''')
pvalues = np.asarray(rpy.r('pvalues'))
active_set = np.asarray(rpy.r('active_vars'))
numpy2ri.deactivate()
if len(active_set) > 0:
return active_set, pvalues
else:
return [], []
except:
return [np.nan], [np.nan] # some R failure occurred
liu_R_theory.register()
class liu_R_aggressive(liu_R_theory):
lambda_choice = Unicode('aggressive')
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
liu_R_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
liu_R_aggressive.register()
class lee_full_R_theory(liu_theory):
wide_OK = False # requires at least n>p
method_name = Unicode("Lee (R code)")
selectiveR_method = True
def generate_pvalues(self):
numpy2ri.activate()
rpy.r.assign('x', self.X)
rpy.r.assign('y', self.Y)
rpy.r('y = as.numeric(y)')
rpy.r.assign('sigma_reid', self.sigma_reid)
rpy.r.assign('lam', self.lagrange[0])
rpy.r('''
sigma_est=sigma_reid
n = nrow(x);
gfit = glmnet(x, y, standardize=FALSE, intercept=FALSE)
lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code
if (lam < max(abs(t(x) %*% y) / n)) {
beta = coef(gfit, x=x, y=y, s=lam, exact=TRUE)[-1]
out = fixedLassoInf(x, y, beta, lam*n, sigma=sigma_est, type='full', intercept=FALSE)
active_vars=out$vars - 1 # for 0-based
pvalues = out$pv
} else {
pvalues = NULL
active_vars = numeric(0)
}
''')
pvalues = np.asarray(rpy.r('pvalues'))
active_set = np.asarray(rpy.r('active_vars'))
numpy2ri.deactivate()
if len(active_set) > 0:
return active_set, pvalues
else:
return [], []
lee_full_R_theory.register()
class lee_full_R_aggressive(lee_full_R_theory):
lambda_choice = Unicode("aggressive")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
lee_full_R_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
lee_full_R_aggressive.register()
# Unrandomized selected
class lee_theory(parametric_method):
model_target = Unicode("selected")
method_name = Unicode("Lee")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
parametric_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1])
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = lasso.gaussian(self.X, self.Y, self.lagrange * np.sqrt(n))
return self._method_instance
def generate_summary(self, compute_intervals=False):
if not self._fit:
self.method_instance.fit()
self._fit = True
X, Y, lagrange, L = self.X, self.Y, self.lagrange, self.method_instance
if len(L.active) > 0:
S = L.summary(compute_intervals=compute_intervals, alternative='onesided')
return S
def generate_pvalues(self):
S = self.generate_summary(compute_intervals=False)
if S is not None:
active_set = np.array(S['variable'])
pvalues = np.asarray(S['pval'])
return active_set, pvalues
else:
return [], []
def generate_intervals(self):
S = self.generate_summary(compute_intervals=True)
if S is not None:
active_set = np.array(S['variable'])
lower, upper = np.asarray(S['lower_confidence']), np.asarray(S['upper_confidence'])
return active_set, lower, upper
else:
return [], [], []
def point_estimator(self):
X, Y, lagrange, L = self.X, self.Y, self.lagrange, self.method_instance
n, p = X.shape
beta_full = np.zeros(p)
if self.estimator == "LASSO":
beta_full[L.active] = L.soln
else:
beta_full[L.active] = L.onestep_estimator
return L.active, beta_full
lee_theory.register()
class lee_CV(lee_theory):
need_CV = True
lambda_choice = Unicode("CV")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
lee_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_min * np.ones(X.shape[1])
lee_CV.register()
class lee_1se(lee_theory):
need_CV = True
lambda_choice = Unicode("1se")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
lee_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_1se * np.ones(X.shape[1])
lee_1se.register()
class lee_aggressive(lee_theory):
lambda_choice = Unicode("aggressive")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
lee_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = 0.8 * l_theory * np.ones(X.shape[1])
lee_aggressive.register()
class lee_weak(lee_theory):
lambda_choice = Unicode("weak")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
lee_theory.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = 2 * l_theory * np.ones(X.shape[1])
lee_weak.register()
class sqrt_lasso(parametric_method):
method_name = Unicode('SqrtLASSO')
kappa = Float(0.7)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
parametric_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = self.kappa * choose_lambda(X)
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
self._method_instance = lasso.sqrt_lasso(self.X, self.Y, self.lagrange)
return self._method_instance
def generate_summary(self, compute_intervals=False):
X, Y, lagrange, L = self.X, self.Y, self.lagrange, self.method_instance
n, p = X.shape
X = X / np.sqrt(n)
if len(L.active) > 0:
S = L.summary(compute_intervals=compute_intervals, alternative='onesided')
return S
def generate_pvalues(self):
S = self.generate_summary(compute_intervals=False)
if S is not None:
active_set = np.array(S['variable'])
pvalues = np.asarray(S['pval'])
return active_set, pvalues
else:
return [], []
def generate_intervals(self):
S = self.generate_summary(compute_intervals=True)
if S is not None:
active_set = np.array(S['variable'])
lower, upper = np.asarray(S['lower_confidence']), np.asarray(S['upper_confidence'])
return active_set, lower, upper
else:
return [], [], []
sqrt_lasso.register()
# Randomized selected
class randomized_lasso(parametric_method):
method_name = Unicode("Randomized LASSO")
model_target = Unicode("selected")
lambda_choice = Unicode("theory")
randomizer_scale = Float(1)
ndraw = 10000
burnin = 1000
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
parametric_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1])
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
mean_diag = np.mean((self.X ** 2).sum(0))
self._method_instance = random_lasso_method.gaussian(self.X,
self.Y,
feature_weights = self.lagrange * np.sqrt(n),
ridge_term=np.std(self.Y) * np.sqrt(mean_diag) / np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
def generate_summary(self, compute_intervals=False):
X, Y, lagrange, rand_lasso = self.X, self.Y, self.lagrange, self.method_instance
n, p = X.shape
if not self._fit:
signs = self.method_instance.fit()
self._fit = True
signs = rand_lasso.fit()
active_set = np.nonzero(signs)[0]
active = signs != 0
# estimates sigma
# JM: for transparency it's better not to have this digged down in the code
X_active = X[:,active_set]
rpy.r.assign('X_active', X_active)
rpy.r.assign('Y', Y)
rpy.r('X_active=as.matrix(X_active)')
rpy.r('Y=as.numeric(Y)')
rpy.r('sigma_est = sigma(lm(Y~ X_active - 1))')
dispersion = rpy.r('sigma_est')
print("dispersion (sigma est for Python)", dispersion)
(observed_target,
cov_target,
cov_target_score,
alternatives) = form_targets(self.model_target,
rand_lasso.loglike,
rand_lasso._W,
active,
**{'dispersion': dispersion})
if active.sum() > 0:
_, pvalues, intervals = rand_lasso.summary(observed_target,
cov_target,
cov_target_score,
alternatives,
level=0.9,
ndraw=self.ndraw,
burnin=self.burnin,
compute_intervals=compute_intervals)
return active_set, pvalues, intervals
else:
return [], [], []
def generate_pvalues(self, compute_intervals=False):
active_set, pvalues, _ = self.generate_summary(compute_intervals=compute_intervals)
if len(active_set) > 0:
return active_set, pvalues
else:
return [], []
def generate_intervals(self):
active_set, _, intervals = self.generate_summary(compute_intervals=True)
if len(active_set) > 0:
return active_set, intervals[:,0], intervals[:,1]
else:
return [], [], []
class randomized_lasso_CV(randomized_lasso):
need_CV = True
lambda_choice = Unicode("CV")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_min * np.ones(X.shape[1])
class randomized_lasso_1se(randomized_lasso):
need_CV = True
lambda_choice = Unicode("1se")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_1se * np.ones(X.shape[1])
randomized_lasso.register(), randomized_lasso_CV.register(), randomized_lasso_1se.register()
# More aggressive lambda choice
class randomized_lasso_aggressive(randomized_lasso):
lambda_choice = Unicode("aggressive")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
class randomized_lasso_aggressive_half(randomized_lasso):
lambda_choice = Unicode('aggressive')
randomizer_scale = Float(0.5)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
class randomized_lasso_weak_half(randomized_lasso):
lambda_choice = Unicode('weak')
randomizer_scale = Float(0.5)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 2.
randomized_lasso_weak_half.register()
class randomized_lasso_aggressive_quarter(randomized_lasso):
randomizer_scale = Float(0.25)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
randomized_lasso_aggressive.register(), randomized_lasso_aggressive_half.register(), randomized_lasso_aggressive_quarter.register()
# Randomized selected smaller randomization
class randomized_lasso_half(randomized_lasso):
randomizer_scale = Float(0.5)
pass
class randomized_lasso_half_CV(randomized_lasso_CV):
need_CV = True
randomizer_scale = Float(0.5)
pass
class randomized_lasso_half_1se(randomized_lasso_1se):
need_CV = True
randomizer_scale = Float(0.5)
pass
randomized_lasso_half.register(), randomized_lasso_half_CV.register(), randomized_lasso_half_1se.register()
# selective mle
class randomized_lasso_mle(randomized_lasso_aggressive_half):
method_name = Unicode("Randomized MLE")
randomizer_scale = Float(0.5)
model_target = Unicode("selected")
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = randomized_modelQ(self.feature_cov * n,
self.X,
self.Y,
self.lagrange * np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
def generate_pvalues(self):
X, Y, lagrange, rand_lasso = self.X, self.Y, self.lagrange, self.method_instance
n, p = X.shape
if not self._fit:
signs = self.method_instance.fit()
self._fit = True
signs = rand_lasso.fit()
active_set = np.nonzero(signs)[0]
Z, pvalues = rand_lasso.selective_MLE(target=self.model_target,
solve_args={'min_iter':1000, 'tol':1.e-12})[-3:-1]
print(pvalues, 'pvalues')
print(Z, 'Zvalues')
if len(pvalues) > 0:
return active_set, pvalues
else:
return [], []
randomized_lasso_mle.register()
# Using modelQ for randomized
class randomized_lasso_half_pop_1se(randomized_lasso_half_1se):
method_name = Unicode("Randomized ModelQ (pop)")
randomizer_scale = Float(0.5)
nsample = 15000
burnin = 2000
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = randomized_modelQ(self.feature_cov * n,
self.X,
self.Y,
self.lagrange * np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
class randomized_lasso_half_semi_1se(randomized_lasso_half_1se):
method_name = Unicode("Randomized ModelQ (semi-supervised)")
randomizer_scale = Float(0.5)
B = 10000
nsample = 15000
burnin = 2000
@classmethod
def setup(cls, feature_cov):
cls.feature_cov = feature_cov
cls._chol = np.linalg.cholesky(feature_cov)
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
# draw sample of X for semi-supervised method
_chol = self._chol
p = _chol.shape[0]
Q = 0
batch_size = int(self.B/10)
for _ in range(10):
X_semi = np.random.standard_normal((batch_size, p)).dot(_chol.T)
Q += X_semi.T.dot(X_semi)
Q += self.X.T.dot(self.X)
Q /= (10 * batch_size + self.X.shape[0])
n, p = self.X.shape
self._method_instance = randomized_modelQ(Q * n,
self.X,
self.Y,
self.lagrange * np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
randomized_lasso_half_pop_1se.register(), randomized_lasso_half_semi_1se.register()
# Using modelQ for randomized
class randomized_lasso_half_pop_aggressive(randomized_lasso_aggressive_half):
method_name = Unicode("Randomized ModelQ (pop)")
randomizer_scale = Float(0.5)
nsample = 10000
burnin = 2000
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
self._method_instance = randomized_modelQ(self.feature_cov * n,
self.X,
self.Y,
self.lagrange * np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
class randomized_lasso_half_semi_aggressive(randomized_lasso_aggressive_half):
method_name = Unicode("Randomized ModelQ (semi-supervised)")
randomizer_scale = Float(0.25)
B = 10000
nsample = 15000
burnin = 2000
@classmethod
def setup(cls, feature_cov):
cls.feature_cov = feature_cov
cls._chol = np.linalg.cholesky(feature_cov)
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
# draw sample of X for semi-supervised method
_chol = self._chol
p = _chol.shape[0]
Q = 0
batch_size = int(self.B/10)
for _ in range(10):
X_semi = np.random.standard_normal((batch_size, p)).dot(_chol.T)
Q += X_semi.T.dot(X_semi)
Q += self.X.T.dot(self.X)
Q /= (10 * batch_size + self.X.shape[0])
n, p = self.X.shape
self._method_instance = randomized_modelQ(Q * n,
self.X,
self.Y,
self.lagrange * np.sqrt(n),
randomizer_scale=self.randomizer_scale * np.std(self.Y) * np.sqrt(n))
return self._method_instance
randomized_lasso_half_pop_aggressive.register(), randomized_lasso_half_semi_aggressive.register()
# Randomized sqrt selected
class randomized_sqrtlasso(randomized_lasso):
method_name = Unicode("Randomized SqrtLASSO")
model_target = Unicode("selected")
randomizer_scale = Float(1)
kappa = Float(0.7)
@property
def method_instance(self):
if not hasattr(self, "_method_instance"):
n, p = self.X.shape
lagrange = np.ones(p) * choose_lambda(self.X) * self.kappa
self._method_instance = random_lasso_method.gaussian(self.X,
self.Y,
lagrange,
randomizer_scale=self.randomizer_scale * np.std(self.Y))
return self._method_instance
def generate_summary(self, compute_intervals=False):
X, Y, rand_lasso = self.X, self.Y, self.method_instance
n, p = X.shape
X = X / np.sqrt(n)
if not self._fit:
self.method_instance.fit()
self._fit = True
signs = self.method_instance.selection_variable['sign']
active_set = np.nonzero(signs)[0]
active = signs != 0
(observed_target,
cov_target,
cov_target_score,
alternatives) = form_targets(self.model_target,
rand_lasso.loglike,
rand_lasso._W,
active)
_, pvalues, intervals = rand_lasso.summary(observed_target,
cov_target,
cov_target_score,
alternatives,
ndraw=self.ndraw,
burnin=self.burnin,
compute_intervals=compute_intervals)
if len(pvalues) > 0:
return active_set, pvalues, intervals
else:
return [], [], []
class randomized_sqrtlasso_half(randomized_sqrtlasso):
randomizer_scale = Float(0.5)
pass
randomized_sqrtlasso.register(), randomized_sqrtlasso_half.register()
class randomized_sqrtlasso_bigger(randomized_sqrtlasso):
kappa = Float(0.8)
pass
class randomized_sqrtlasso_bigger_half(randomized_sqrtlasso):
kappa = Float(0.8)
randomizer_scale = Float(0.5)
pass
randomized_sqrtlasso_bigger.register(), randomized_sqrtlasso_bigger_half.register()
# Randomized full
class randomized_lasso_full(randomized_lasso):
model_target = Unicode('full')
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1])
class randomized_lasso_full_CV(randomized_lasso_full):
need_CV = True
lambda_choice = Unicode("CV")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso_full.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_min * np.ones(X.shape[1])
class randomized_lasso_full_1se(randomized_lasso_full):
need_CV = True
lambda_choice = Unicode("1se")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso_full.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_1se * np.ones(X.shape[1])
randomized_lasso_full.register(), randomized_lasso_full_CV.register(), randomized_lasso_full_1se.register()
# Randomized full smaller randomization
class randomized_lasso_full_half(randomized_lasso_full):
randomizer_scale = Float(0.5)
pass
class randomized_lasso_full_half_CV(randomized_lasso_full_CV):
randomizer_scale = Float(0.5)
pass
class randomized_lasso_full_half_1se(randomized_lasso_full_1se):
need_CV = True
randomizer_scale = Float(0.5)
pass
randomized_lasso_full_half.register(), randomized_lasso_full_half_CV.register(), randomized_lasso_full_half_1se.register()
# Aggressive choice of lambda
class randomized_lasso_full_aggressive(randomized_lasso_full):
lambda_choice = Unicode("aggressive")
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
randomized_lasso_full.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_theory * np.ones(X.shape[1]) * 0.8
class randomized_lasso_full_aggressive_half(randomized_lasso_full_aggressive):
randomizer_scale = Float(0.5)
pass
randomized_lasso_full_aggressive.register(), randomized_lasso_full_aggressive_half.register()
class randomized_lasso_R_theory(randomized_lasso):
method_name = Unicode("Randomized LASSO (R code)")
selective_Rmethod = True
def generate_summary(self, compute_intervals=False):
numpy2ri.activate()
rpy.r.assign('X', self.X)
rpy.r.assign('y', self.Y)
rpy.r('y = as.numeric(y)')
rpy.r.assign('q', self.q)
rpy.r.assign('lam', self.lagrange[0])
rpy.r.assign("randomizer_scale", self.randomizer_scale)
rpy.r.assign("compute_intervals", compute_intervals)
rpy.r('''
n = nrow(X)
p = ncol(X)
lam = lam * sqrt(n)
mean_diag = mean(apply(X^2, 2, sum))
ridge_term = sqrt(mean_diag) * sd(y) / sqrt(n)
result = randomizedLasso(X, y, lam, ridge_term=ridge_term,
noise_scale = randomizer_scale * sd(y) * sqrt(n), family='gaussian')
active_set = result$active_set
if (length(active_set)==0){
active_set = -1
} else{
sigma_est = sigma(lm(y ~ X[,active_set] - 1))
cat("sigma est for R", sigma_est,"\n")
targets = selectiveInference:::compute_target(result, 'partial', sigma_est = sigma_est,
construct_pvalues=rep(TRUE, length(active_set)),
construct_ci=rep(compute_intervals, length(active_set)))
out = randomizedLassoInf(result,
targets=targets,
sampler = "norejection",
level=0.9,
burnin=1000,
nsample=10000)
active_set=active_set-1
pvalues = out$pvalues
intervals = out$ci
}
''')
active_set = np.asarray(rpy.r('active_set'), np.int)
print(active_set)
if active_set[0]==-1:
numpy2ri.deactivate()
return [], [], []
pvalues = np.asarray(rpy.r('pvalues'))
intervals = np.asarray(rpy.r('intervals'))
numpy2ri.deactivate()
return active_set, pvalues, intervals
randomized_lasso_R_theory.register()
class data_splitting_1se(parametric_method):
method_name = Unicode('Data splitting')
selection_frac = Float(0.5)
def __init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid):
parametric_method.__init__(self, X, Y, l_theory, l_min, l_1se, sigma_reid)
self.lagrange = l_1se * np.ones(X.shape[1])
n, p = self.X.shape
n1 = int(self.selection_frac * n)
X1, X2 = self.X1, self.X2 = self.X[:n1], self.X[n1:]
Y1, Y2 = self.Y1, self.Y2 = self.Y[:n1], self.Y[n1:]
pen = rr.weighted_l1norm(np.sqrt(n1) * self.lagrange, lagrange=1.)
loss = rr.squared_error(X1, Y1)
problem = rr.simple_problem(loss, pen)
soln = problem.solve()
self.active_set = np.nonzero(soln)[0]
self.signs = np.sign(soln)[self.active_set]
self._fit = True
def generate_pvalues(self):
X2, Y2 = self.X2[:,self.active_set], self.Y2
if len(self.active_set) > 0:
s = len(self.active_set)
X2i = np.linalg.inv(X2.T.dot(X2))
beta2 = X2i.dot(X2.T.dot(Y2))
resid2 = Y2 - X2.dot(beta2)
n2 = X2.shape[0]
sigma2 = np.sqrt((resid2**2).sum() / (n2 - s))
Z2 = beta2 / np.sqrt(sigma2**2 * np.diag(X2i))
signed_Z2 = self.signs * Z2
pvalues = 1 - ndist.cdf(signed_Z2)
return self.active_set, pvalues
else:
return [], []
data_splitting_1se.register()
| [
"regreg.api.simple_problem",
"numpy.random.standard_normal",
"numpy.sqrt",
"numpy.array",
"scipy.stats.norm.cdf",
"rpy2.robjects.numpy2ri.activate",
"rpy2.robjects.r",
"os.path.exists",
"utils.BHfilter",
"numpy.asarray",
"os.mkdir",
"traitlets.Unicode",
"glob.glob",
"selection.randomized.l... | [((1071, 1081), 'traitlets.Float', 'Float', (['(0.2)'], {}), '(0.2)\n', (1076, 1081), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((1100, 1125), 'traitlets.Unicode', 'Unicode', (['"""Generic method"""'], {}), "('Generic method')\n", (1107, 1125), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((1145, 1154), 'traitlets.Unicode', 'Unicode', ([], {}), '()\n', (1152, 1154), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((2425, 2445), 'traitlets.Unicode', 'Unicode', (['"""Knockoffs"""'], {}), "('Knockoffs')\n", (2432, 2445), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((2468, 2491), 'traitlets.Unicode', 'Unicode', (['"""Second order"""'], {}), "('Second order')\n", (2475, 2491), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((2511, 2526), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (2518, 2526), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((3098, 3118), 'traitlets.Unicode', 'Unicode', (['"""Knockoffs"""'], {}), "('Knockoffs')\n", (3105, 3118), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((3141, 3165), 'traitlets.Unicode', 'Unicode', (['"""ModelX (asdp)"""'], {}), "('ModelX (asdp)')\n", (3148, 3165), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((3185, 3200), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (3192, 3200), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((5190, 5209), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (5207, 5209), False, 'from rpy2.robjects import numpy2ri\n'), ((5214, 5248), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Sigma"""', 'feature_cov'], {}), "('Sigma', feature_cov)\n", (5226, 5248), True, 'import rpy2.robjects as rpy\n'), ((5253, 5283), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""method"""', 'method'], {}), "('method', method)\n", (5265, 5283), True, 'import rpy2.robjects as rpy\n'), ((5288, 5717), 'rpy2.robjects.r', 'rpy.r', (['"""\n\n # Compute the Cholesky -- from create.gaussian\n\n diag_s = diag(switch(method, equi = create.solve_equi(Sigma), \n sdp = create.solve_sdp(Sigma), asdp = create.solve_asdp(Sigma)))\n if (is.null(dim(diag_s))) {\n diag_s = diag(diag_s, length(diag_s))\n }\n SigmaInv_s = solve(Sigma, diag_s)\n Sigma_k = 2 * diag_s - diag_s %*% SigmaInv_s\n chol_k = chol(Sigma_k)\n """'], {}), '(\n """\n\n # Compute the Cholesky -- from create.gaussian\n\n diag_s = diag(switch(method, equi = create.solve_equi(Sigma), \n sdp = create.solve_sdp(Sigma), asdp = create.solve_asdp(Sigma)))\n if (is.null(dim(diag_s))) {\n diag_s = diag(diag_s, length(diag_s))\n }\n SigmaInv_s = solve(Sigma, diag_s)\n Sigma_k = 2 * diag_s - diag_s %*% SigmaInv_s\n chol_k = chol(Sigma_k)\n """\n )\n', (5293, 5717), True, 'import rpy2.robjects as rpy\n'), ((6142, 6166), 'traitlets.Unicode', 'Unicode', (['"""ModelX (equi)"""'], {}), "('ModelX (equi)')\n", (6149, 6166), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((6330, 6350), 'traitlets.Unicode', 'Unicode', (['"""Knockoffs"""'], {}), "('Knockoffs')\n", (6337, 6350), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((6373, 6399), 'traitlets.Unicode', 'Unicode', (['"""Candes & Barber"""'], {}), "('Candes & Barber')\n", (6380, 6399), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((6419, 6434), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (6426, 6434), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((7082, 7102), 'traitlets.Unicode', 'Unicode', (['"""Knockoffs"""'], {}), "('Knockoffs')\n", (7089, 7102), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((7125, 7141), 'traitlets.Unicode', 'Unicode', (['"""Fixed"""'], {}), "('Fixed')\n", (7132, 7141), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((7161, 7176), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (7168, 7176), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((7782, 7793), 'traitlets.Float', 'Float', (['(0.95)'], {}), '(0.95)\n', (7787, 7793), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((8394, 8412), 'traitlets.Unicode', 'Unicode', (['"""relaxed"""'], {}), "('relaxed')\n", (8401, 8412), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((8431, 8445), 'traitlets.Unicode', 'Unicode', (['"""Liu"""'], {}), "('Liu')\n", (8438, 8445), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((8466, 8483), 'traitlets.Unicode', 'Unicode', (['"""theory"""'], {}), "('theory')\n", (8473, 8483), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((8503, 8518), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (8510, 8518), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((8536, 8546), 'traitlets.Float', 'Float', (['(0.0)'], {}), '(0.0)\n', (8541, 8546), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((10454, 10475), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (10461, 10475), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((10777, 10811), 'traitlets.Unicode', 'Unicode', (['"""Liu (ModelQ population)"""'], {}), "('Liu (ModelQ population)')\n", (10784, 10811), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((11204, 11243), 'traitlets.Unicode', 'Unicode', (['"""Liu (ModelQ semi-supervised)"""'], {}), "('Liu (ModelQ semi-supervised)')\n", (11211, 11243), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((12261, 12276), 'traitlets.Unicode', 'Unicode', (['"""ROSI"""'], {}), "('ROSI')\n", (12268, 12276), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((12761, 12776), 'traitlets.Unicode', 'Unicode', (['"""Reid"""'], {}), "('Reid')\n", (12768, 12776), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((12897, 12910), 'traitlets.Unicode', 'Unicode', (['"""CV"""'], {}), "('CV')\n", (12904, 12910), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((13206, 13220), 'traitlets.Unicode', 'Unicode', (['"""1se"""'], {}), "('1se')\n", (13213, 13220), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((13490, 13505), 'traitlets.Unicode', 'Unicode', (['"""ROSI"""'], {}), "('ROSI')\n", (13497, 13505), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((13976, 13999), 'traitlets.Unicode', 'Unicode', (['"""ROSI - known"""'], {}), "('ROSI - known')\n", (13983, 13999), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((14017, 14027), 'traitlets.Float', 'Float', (['(1.0)'], {}), '(1.0)\n', (14022, 14027), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((14524, 14547), 'traitlets.Unicode', 'Unicode', (['"""Liu (R code)"""'], {}), "('Liu (R code)')\n", (14531, 14547), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((16243, 16264), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (16250, 16264), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((16602, 16625), 'traitlets.Unicode', 'Unicode', (['"""Lee (R code)"""'], {}), "('Lee (R code)')\n", (16609, 16625), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((17809, 17830), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (17816, 17830), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((18163, 18182), 'traitlets.Unicode', 'Unicode', (['"""selected"""'], {}), "('selected')\n", (18170, 18182), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((18201, 18215), 'traitlets.Unicode', 'Unicode', (['"""Lee"""'], {}), "('Lee')\n", (18208, 18215), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((20143, 20156), 'traitlets.Unicode', 'Unicode', (['"""CV"""'], {}), "('CV')\n", (20150, 20156), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((20445, 20459), 'traitlets.Unicode', 'Unicode', (['"""1se"""'], {}), "('1se')\n", (20452, 20459), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((20736, 20757), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (20743, 20757), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((21044, 21059), 'traitlets.Unicode', 'Unicode', (['"""weak"""'], {}), "('weak')\n", (21051, 21059), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((21341, 21361), 'traitlets.Unicode', 'Unicode', (['"""SqrtLASSO"""'], {}), "('SqrtLASSO')\n", (21348, 21361), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((21374, 21384), 'traitlets.Float', 'Float', (['(0.7)'], {}), '(0.7)\n', (21379, 21384), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((22887, 22914), 'traitlets.Unicode', 'Unicode', (['"""Randomized LASSO"""'], {}), "('Randomized LASSO')\n", (22894, 22914), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((22934, 22953), 'traitlets.Unicode', 'Unicode', (['"""selected"""'], {}), "('selected')\n", (22941, 22953), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((22974, 22991), 'traitlets.Unicode', 'Unicode', (['"""theory"""'], {}), "('theory')\n", (22981, 22991), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((23015, 23023), 'traitlets.Float', 'Float', (['(1)'], {}), '(1)\n', (23020, 23023), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((26517, 26530), 'traitlets.Unicode', 'Unicode', (['"""CV"""'], {}), "('CV')\n", (26524, 26530), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((26821, 26835), 'traitlets.Unicode', 'Unicode', (['"""1se"""'], {}), "('1se')\n", (26828, 26835), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((27240, 27261), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (27247, 27261), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((27553, 27574), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (27560, 27574), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((27598, 27608), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (27603, 27608), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((27895, 27910), 'traitlets.Unicode', 'Unicode', (['"""weak"""'], {}), "('weak')\n", (27902, 27910), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((27934, 27944), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (27939, 27944), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((28280, 28291), 'traitlets.Float', 'Float', (['(0.25)'], {}), '(0.25)\n', (28285, 28291), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((28753, 28763), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (28758, 28763), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((28871, 28881), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (28876, 28881), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((28991, 29001), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (28996, 29001), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((29219, 29244), 'traitlets.Unicode', 'Unicode', (['"""Randomized MLE"""'], {}), "('Randomized MLE')\n", (29226, 29244), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((29268, 29278), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (29273, 29278), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((29298, 29317), 'traitlets.Unicode', 'Unicode', (['"""selected"""'], {}), "('selected')\n", (29305, 29317), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((30702, 30736), 'traitlets.Unicode', 'Unicode', (['"""Randomized ModelQ (pop)"""'], {}), "('Randomized ModelQ (pop)')\n", (30709, 30736), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((30760, 30770), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (30765, 30770), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((31465, 31511), 'traitlets.Unicode', 'Unicode', (['"""Randomized ModelQ (semi-supervised)"""'], {}), "('Randomized ModelQ (semi-supervised)')\n", (31472, 31511), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((31535, 31545), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (31540, 31545), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((32935, 32969), 'traitlets.Unicode', 'Unicode', (['"""Randomized ModelQ (pop)"""'], {}), "('Randomized ModelQ (pop)')\n", (32942, 32969), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((32994, 33004), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (32999, 33004), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((33713, 33759), 'traitlets.Unicode', 'Unicode', (['"""Randomized ModelQ (semi-supervised)"""'], {}), "('Randomized ModelQ (semi-supervised)')\n", (33720, 33759), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((33783, 33794), 'traitlets.Float', 'Float', (['(0.25)'], {}), '(0.25)\n', (33788, 33794), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((35164, 35195), 'traitlets.Unicode', 'Unicode', (['"""Randomized SqrtLASSO"""'], {}), "('Randomized SqrtLASSO')\n", (35171, 35195), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((35215, 35234), 'traitlets.Unicode', 'Unicode', (['"""selected"""'], {}), "('selected')\n", (35222, 35234), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((35258, 35266), 'traitlets.Float', 'Float', (['(1)'], {}), '(1)\n', (35263, 35266), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((35279, 35289), 'traitlets.Float', 'Float', (['(0.7)'], {}), '(0.7)\n', (35284, 35289), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((37266, 37276), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (37271, 37276), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((37428, 37438), 'traitlets.Float', 'Float', (['(0.8)'], {}), '(0.8)\n', (37433, 37438), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((37524, 37534), 'traitlets.Float', 'Float', (['(0.8)'], {}), '(0.8)\n', (37529, 37534), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((37558, 37568), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (37563, 37568), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((37750, 37765), 'traitlets.Unicode', 'Unicode', (['"""full"""'], {}), "('full')\n", (37757, 37765), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((38068, 38081), 'traitlets.Unicode', 'Unicode', (['"""CV"""'], {}), "('CV')\n", (38075, 38081), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((38387, 38401), 'traitlets.Unicode', 'Unicode', (['"""1se"""'], {}), "('1se')\n", (38394, 38401), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((38841, 38851), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (38846, 38851), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((38949, 38959), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (38954, 38959), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((39079, 39089), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (39084, 39089), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((39339, 39360), 'traitlets.Unicode', 'Unicode', (['"""aggressive"""'], {}), "('aggressive')\n", (39346, 39360), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((39681, 39691), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (39686, 39691), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((39869, 39905), 'traitlets.Unicode', 'Unicode', (['"""Randomized LASSO (R code)"""'], {}), "('Randomized LASSO (R code)')\n", (39876, 39905), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((42066, 42091), 'traitlets.Unicode', 'Unicode', (['"""Data splitting"""'], {}), "('Data splitting')\n", (42073, 42091), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((42113, 42123), 'traitlets.Float', 'Float', (['(0.5)'], {}), '(0.5)\n', (42118, 42123), False, 'from traitlets import HasTraits, Integer, Unicode, Float, Integer, Instance, Dict, Bool, default\n'), ((3299, 3318), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (3316, 3318), False, 'from rpy2.robjects import numpy2ri\n'), ((3526, 3568), 'glob.glob', 'glob.glob', (['""".knockoff_factorizations/*npz"""'], {}), "('.knockoff_factorizations/*npz')\n", (3535, 3568), False, 'import tempfile, os, glob\n'), ((4210, 4231), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (4229, 4231), False, 'from rpy2.robjects import numpy2ri\n'), ((4264, 4283), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (4281, 4283), False, 'from rpy2.robjects import numpy2ri\n'), ((4292, 4334), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""chol_k"""', 'self.knockoff_chol'], {}), "('chol_k', self.knockoff_chol)\n", (4304, 4334), True, 'import rpy2.robjects as rpy\n'), ((4343, 4626), 'rpy2.robjects.r', 'rpy.r', (['"""\n knockoffs = function(X) {\n mu = rep(0, ncol(X))\n mu_k = X # sweep(X, 2, mu, "-") %*% SigmaInv_s\n X_k = mu_k + matrix(rnorm(ncol(X) * nrow(X)), nrow(X)) %*% \n chol_k\n return(X_k)\n }\n """'], {}), '(\n """\n knockoffs = function(X) {\n mu = rep(0, ncol(X))\n mu_k = X # sweep(X, 2, mu, "-") %*% SigmaInv_s\n X_k = mu_k + matrix(rnorm(ncol(X) * nrow(X)), nrow(X)) %*% \n chol_k\n return(X_k)\n }\n """\n )\n', (4348, 4626), True, 'import rpy2.robjects as rpy\n'), ((4625, 4646), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (4644, 4646), False, 'from rpy2.robjects import numpy2ri\n'), ((5739, 5754), 'rpy2.robjects.r', 'rpy.r', (['"""chol_k"""'], {}), "('chol_k')\n", (5744, 5754), True, 'import rpy2.robjects as rpy\n'), ((5784, 5803), 'rpy2.robjects.r', 'rpy.r', (['"""SigmaInv_s"""'], {}), "('SigmaInv_s')\n", (5789, 5803), True, 'import rpy2.robjects as rpy\n'), ((5829, 5844), 'rpy2.robjects.r', 'rpy.r', (['"""diag_s"""'], {}), "('diag_s')\n", (5834, 5844), True, 'import rpy2.robjects as rpy\n'), ((11414, 11445), 'numpy.linalg.cholesky', 'np.linalg.cholesky', (['feature_cov'], {}), '(feature_cov)\n', (11432, 11445), True, 'import numpy as np\n'), ((16696, 16715), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (16713, 16715), False, 'from rpy2.robjects import numpy2ri\n'), ((16724, 16749), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""x"""', 'self.X'], {}), "('x', self.X)\n", (16736, 16749), True, 'import rpy2.robjects as rpy\n'), ((16758, 16783), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""y"""', 'self.Y'], {}), "('y', self.Y)\n", (16770, 16783), True, 'import rpy2.robjects as rpy\n'), ((16792, 16818), 'rpy2.robjects.r', 'rpy.r', (['"""y = as.numeric(y)"""'], {}), "('y = as.numeric(y)')\n", (16797, 16818), True, 'import rpy2.robjects as rpy\n'), ((16827, 16870), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""sigma_reid"""', 'self.sigma_reid'], {}), "('sigma_reid', self.sigma_reid)\n", (16839, 16870), True, 'import rpy2.robjects as rpy\n'), ((16879, 16916), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""lam"""', 'self.lagrange[0]'], {}), "('lam', self.lagrange[0])\n", (16891, 16916), True, 'import rpy2.robjects as rpy\n'), ((16925, 17476), 'rpy2.robjects.r', 'rpy.r', (['"""\n sigma_est=sigma_reid\n n = nrow(x);\n gfit = glmnet(x, y, standardize=FALSE, intercept=FALSE)\n lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code\n if (lam < max(abs(t(x) %*% y) / n)) {\n beta = coef(gfit, x=x, y=y, s=lam, exact=TRUE)[-1]\n out = fixedLassoInf(x, y, beta, lam*n, sigma=sigma_est, type=\'full\', intercept=FALSE)\n active_vars=out$vars - 1 # for 0-based\n pvalues = out$pv\n } else {\n pvalues = NULL\n active_vars = numeric(0)\n }\n """'], {}), '(\n """\n sigma_est=sigma_reid\n n = nrow(x);\n gfit = glmnet(x, y, standardize=FALSE, intercept=FALSE)\n lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code\n if (lam < max(abs(t(x) %*% y) / n)) {\n beta = coef(gfit, x=x, y=y, s=lam, exact=TRUE)[-1]\n out = fixedLassoInf(x, y, beta, lam*n, sigma=sigma_est, type=\'full\', intercept=FALSE)\n active_vars=out$vars - 1 # for 0-based\n pvalues = out$pv\n } else {\n pvalues = NULL\n active_vars = numeric(0)\n }\n """\n )\n', (16930, 17476), True, 'import rpy2.robjects as rpy\n'), ((17577, 17598), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (17596, 17598), False, 'from rpy2.robjects import numpy2ri\n'), ((19854, 19865), 'numpy.zeros', 'np.zeros', (['p'], {}), '(p)\n', (19862, 19865), True, 'import numpy as np\n'), ((24538, 24572), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X_active"""', 'X_active'], {}), "('X_active', X_active)\n", (24550, 24572), True, 'import rpy2.robjects as rpy\n'), ((24581, 24601), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Y"""', 'Y'], {}), "('Y', Y)\n", (24593, 24601), True, 'import rpy2.robjects as rpy\n'), ((24610, 24647), 'rpy2.robjects.r', 'rpy.r', (['"""X_active=as.matrix(X_active)"""'], {}), "('X_active=as.matrix(X_active)')\n", (24615, 24647), True, 'import rpy2.robjects as rpy\n'), ((24656, 24680), 'rpy2.robjects.r', 'rpy.r', (['"""Y=as.numeric(Y)"""'], {}), "('Y=as.numeric(Y)')\n", (24661, 24680), True, 'import rpy2.robjects as rpy\n'), ((24689, 24736), 'rpy2.robjects.r', 'rpy.r', (['"""sigma_est = sigma(lm(Y~ X_active - 1))"""'], {}), "('sigma_est = sigma(lm(Y~ X_active - 1))')\n", (24694, 24736), True, 'import rpy2.robjects as rpy\n'), ((24758, 24776), 'rpy2.robjects.r', 'rpy.r', (['"""sigma_est"""'], {}), "('sigma_est')\n", (24763, 24776), True, 'import rpy2.robjects as rpy\n'), ((24944, 25052), 'selection.randomized.lasso.form_targets', 'form_targets', (['self.model_target', 'rand_lasso.loglike', 'rand_lasso._W', 'active'], {}), "(self.model_target, rand_lasso.loglike, rand_lasso._W, active,\n **{'dispersion': dispersion})\n", (24956, 25052), False, 'from selection.randomized.lasso import lasso as random_lasso_method, form_targets\n'), ((31707, 31738), 'numpy.linalg.cholesky', 'np.linalg.cholesky', (['feature_cov'], {}), '(feature_cov)\n', (31725, 31738), True, 'import numpy as np\n'), ((33957, 33988), 'numpy.linalg.cholesky', 'np.linalg.cholesky', (['feature_cov'], {}), '(feature_cov)\n', (33975, 33988), True, 'import numpy as np\n'), ((36375, 36449), 'selection.randomized.lasso.form_targets', 'form_targets', (['self.model_target', 'rand_lasso.loglike', 'rand_lasso._W', 'active'], {}), '(self.model_target, rand_lasso.loglike, rand_lasso._W, active)\n', (36387, 36449), False, 'from selection.randomized.lasso import lasso as random_lasso_method, form_targets\n'), ((40001, 40020), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (40018, 40020), False, 'from rpy2.robjects import numpy2ri\n'), ((40029, 40054), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (40041, 40054), True, 'import rpy2.robjects as rpy\n'), ((40063, 40088), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""y"""', 'self.Y'], {}), "('y', self.Y)\n", (40075, 40088), True, 'import rpy2.robjects as rpy\n'), ((40097, 40123), 'rpy2.robjects.r', 'rpy.r', (['"""y = as.numeric(y)"""'], {}), "('y = as.numeric(y)')\n", (40102, 40123), True, 'import rpy2.robjects as rpy\n'), ((40132, 40157), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""q"""', 'self.q'], {}), "('q', self.q)\n", (40144, 40157), True, 'import rpy2.robjects as rpy\n'), ((40166, 40203), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""lam"""', 'self.lagrange[0]'], {}), "('lam', self.lagrange[0])\n", (40178, 40203), True, 'import rpy2.robjects as rpy\n'), ((40212, 40267), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""randomizer_scale"""', 'self.randomizer_scale'], {}), "('randomizer_scale', self.randomizer_scale)\n", (40224, 40267), True, 'import rpy2.robjects as rpy\n'), ((40276, 40328), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""compute_intervals"""', 'compute_intervals'], {}), "('compute_intervals', compute_intervals)\n", (40288, 40328), True, 'import rpy2.robjects as rpy\n'), ((40337, 41609), 'rpy2.robjects.r', 'rpy.r', (['"""\n n = nrow(X)\n p = ncol(X)\n lam = lam * sqrt(n)\n mean_diag = mean(apply(X^2, 2, sum))\n ridge_term = sqrt(mean_diag) * sd(y) / sqrt(n)\n result = randomizedLasso(X, y, lam, ridge_term=ridge_term,\n noise_scale = randomizer_scale * sd(y) * sqrt(n), family=\'gaussian\')\n active_set = result$active_set\n if (length(active_set)==0){\n active_set = -1\n } else{\n sigma_est = sigma(lm(y ~ X[,active_set] - 1))\n cat("sigma est for R", sigma_est,"\n")\n targets = selectiveInference:::compute_target(result, \'partial\', sigma_est = sigma_est,\n construct_pvalues=rep(TRUE, length(active_set)), \n construct_ci=rep(compute_intervals, length(active_set)))\n\n out = randomizedLassoInf(result,\n targets=targets,\n sampler = "norejection",\n level=0.9,\n burnin=1000,\n nsample=10000)\n active_set=active_set-1\n pvalues = out$pvalues\n intervals = out$ci\n }\n """'], {}), '(\n """\n n = nrow(X)\n p = ncol(X)\n lam = lam * sqrt(n)\n mean_diag = mean(apply(X^2, 2, sum))\n ridge_term = sqrt(mean_diag) * sd(y) / sqrt(n)\n result = randomizedLasso(X, y, lam, ridge_term=ridge_term,\n noise_scale = randomizer_scale * sd(y) * sqrt(n), family=\'gaussian\')\n active_set = result$active_set\n if (length(active_set)==0){\n active_set = -1\n } else{\n sigma_est = sigma(lm(y ~ X[,active_set] - 1))\n cat("sigma est for R", sigma_est,"\n")\n targets = selectiveInference:::compute_target(result, \'partial\', sigma_est = sigma_est,\n construct_pvalues=rep(TRUE, length(active_set)), \n construct_ci=rep(compute_intervals, length(active_set)))\n\n out = randomizedLassoInf(result,\n targets=targets,\n sampler = "norejection",\n level=0.9,\n burnin=1000,\n nsample=10000)\n active_set=active_set-1\n pvalues = out$pvalues\n intervals = out$ci\n }\n """\n )\n', (40342, 41609), True, 'import rpy2.robjects as rpy\n'), ((41891, 41912), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (41910, 41912), False, 'from rpy2.robjects import numpy2ri\n'), ((42612, 42636), 'regreg.api.squared_error', 'rr.squared_error', (['X1', 'Y1'], {}), '(X1, Y1)\n', (42628, 42636), True, 'import regreg.api as rr\n'), ((42655, 42683), 'regreg.api.simple_problem', 'rr.simple_problem', (['loss', 'pen'], {}), '(loss, pen)\n', (42672, 42683), True, 'import regreg.api as rr\n'), ((2575, 2594), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (2592, 2594), False, 'from rpy2.robjects import numpy2ri\n'), ((2607, 2632), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (2619, 2632), True, 'import rpy2.robjects as rpy\n'), ((2645, 2670), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Y"""', 'self.Y'], {}), "('Y', self.Y)\n", (2657, 2670), True, 'import rpy2.robjects as rpy\n'), ((2683, 2708), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""q"""', 'self.q'], {}), "('q', self.q)\n", (2695, 2708), True, 'import rpy2.robjects as rpy\n'), ((2721, 2769), 'rpy2.robjects.r', 'rpy.r', (['"""V=knockoff.filter(X, Y, fdr=q)$selected"""'], {}), "('V=knockoff.filter(X, Y, fdr=q)$selected')\n", (2726, 2769), True, 'import rpy2.robjects as rpy\n'), ((2782, 2819), 'rpy2.robjects.r', 'rpy.r', (['"""if (length(V) > 0) {V = V-1}"""'], {}), "('if (length(V) > 0) {V = V-1}')\n", (2787, 2819), True, 'import rpy2.robjects as rpy\n'), ((2836, 2846), 'rpy2.robjects.r', 'rpy.r', (['"""V"""'], {}), "('V')\n", (2841, 2846), True, 'import rpy2.robjects as rpy\n'), ((2859, 2880), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (2878, 2880), False, 'from rpy2.robjects import numpy2ri\n'), ((3415, 3457), 'os.path.exists', 'os.path.exists', (['""".knockoff_factorizations"""'], {}), "('.knockoff_factorizations')\n", (3429, 3457), False, 'import tempfile, os, glob\n'), ((3471, 3507), 'os.mkdir', 'os.mkdir', (['""".knockoff_factorizations"""'], {}), "('.knockoff_factorizations')\n", (3479, 3507), False, 'import tempfile, os, glob\n'), ((3626, 3646), 'numpy.load', 'np.load', (['factor_file'], {}), '(factor_file)\n', (3633, 3646), True, 'import numpy as np\n'), ((4673, 4692), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (4690, 4692), False, 'from rpy2.robjects import numpy2ri\n'), ((4705, 4730), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (4717, 4730), True, 'import rpy2.robjects as rpy\n'), ((4743, 4768), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Y"""', 'self.Y'], {}), "('Y', self.Y)\n", (4755, 4768), True, 'import rpy2.robjects as rpy\n'), ((4781, 4806), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""q"""', 'self.q'], {}), "('q', self.q)\n", (4793, 4806), True, 'import rpy2.robjects as rpy\n'), ((4819, 4888), 'rpy2.robjects.r', 'rpy.r', (['"""V=knockoff.filter(X, Y, fdr=q, knockoffs=knockoffs)$selected"""'], {}), "('V=knockoff.filter(X, Y, fdr=q, knockoffs=knockoffs)$selected')\n", (4824, 4888), True, 'import rpy2.robjects as rpy\n'), ((4901, 4938), 'rpy2.robjects.r', 'rpy.r', (['"""if (length(V) > 0) {V = V-1}"""'], {}), "('if (length(V) > 0) {V = V-1}')\n", (4906, 4938), True, 'import rpy2.robjects as rpy\n'), ((4955, 4965), 'rpy2.robjects.r', 'rpy.r', (['"""V"""'], {}), "('V')\n", (4960, 4965), True, 'import rpy2.robjects as rpy\n'), ((4978, 4999), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (4997, 4999), False, 'from rpy2.robjects import numpy2ri\n'), ((6483, 6502), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (6500, 6502), False, 'from rpy2.robjects import numpy2ri\n'), ((6515, 6540), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (6527, 6540), True, 'import rpy2.robjects as rpy\n'), ((6553, 6578), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Y"""', 'self.Y'], {}), "('Y', self.Y)\n", (6565, 6578), True, 'import rpy2.robjects as rpy\n'), ((6591, 6616), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""q"""', 'self.q'], {}), "('q', self.q)\n", (6603, 6616), True, 'import rpy2.robjects as rpy\n'), ((6629, 6745), 'rpy2.robjects.r', 'rpy.r', (['"""V=knockoff.filter(X, Y, statistic=stat.glmnet_lambdadiff, fdr=q, knockoffs=create.fixed)$selected"""'], {}), "(\n 'V=knockoff.filter(X, Y, statistic=stat.glmnet_lambdadiff, fdr=q, knockoffs=create.fixed)$selected'\n )\n", (6634, 6745), True, 'import rpy2.robjects as rpy\n'), ((6748, 6785), 'rpy2.robjects.r', 'rpy.r', (['"""if (length(V) > 0) {V = V-1}"""'], {}), "('if (length(V) > 0) {V = V-1}')\n", (6753, 6785), True, 'import rpy2.robjects as rpy\n'), ((6802, 6812), 'rpy2.robjects.r', 'rpy.r', (['"""V"""'], {}), "('V')\n", (6807, 6812), True, 'import rpy2.robjects as rpy\n'), ((6825, 6846), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (6844, 6846), False, 'from rpy2.robjects import numpy2ri\n'), ((6863, 6884), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (6873, 6884), True, 'import numpy as np\n'), ((7225, 7244), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (7242, 7244), False, 'from rpy2.robjects import numpy2ri\n'), ((7257, 7282), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (7269, 7282), True, 'import rpy2.robjects as rpy\n'), ((7295, 7320), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""Y"""', 'self.Y'], {}), "('Y', self.Y)\n", (7307, 7320), True, 'import rpy2.robjects as rpy\n'), ((7333, 7358), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""q"""', 'self.q'], {}), "('q', self.q)\n", (7345, 7358), True, 'import rpy2.robjects as rpy\n'), ((7371, 7443), 'rpy2.robjects.r', 'rpy.r', (['"""V=knockoff.filter(X, Y, fdr=q, knockoffs=create.fixed)$selected"""'], {}), "('V=knockoff.filter(X, Y, fdr=q, knockoffs=create.fixed)$selected')\n", (7376, 7443), True, 'import rpy2.robjects as rpy\n'), ((7456, 7493), 'rpy2.robjects.r', 'rpy.r', (['"""if (length(V) > 0) {V = V-1}"""'], {}), "('if (length(V) > 0) {V = V-1}')\n", (7461, 7493), True, 'import rpy2.robjects as rpy\n'), ((7510, 7520), 'rpy2.robjects.r', 'rpy.r', (['"""V"""'], {}), "('V')\n", (7515, 7520), True, 'import rpy2.robjects as rpy\n'), ((7533, 7554), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (7552, 7554), False, 'from rpy2.robjects import numpy2ri\n'), ((8811, 8830), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (8818, 8830), True, 'import numpy as np\n'), ((9876, 9899), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (9884, 9899), True, 'import numpy as np\n'), ((9922, 9943), 'numpy.asarray', 'np.asarray', (["S['pval']"], {}), "(S['pval'])\n", (9932, 9943), True, 'import numpy as np\n'), ((10168, 10191), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (10176, 10191), True, 'import numpy as np\n'), ((13087, 13106), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (13094, 13106), True, 'import numpy as np\n'), ((13397, 13416), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (13404, 13416), True, 'import numpy as np\n'), ((14606, 14625), 'rpy2.robjects.numpy2ri.activate', 'numpy2ri.activate', ([], {}), '()\n', (14623, 14625), False, 'from rpy2.robjects import numpy2ri\n'), ((14638, 14663), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""X"""', 'self.X'], {}), "('X', self.X)\n", (14650, 14663), True, 'import rpy2.robjects as rpy\n'), ((14676, 14701), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""y"""', 'self.Y'], {}), "('y', self.Y)\n", (14688, 14701), True, 'import rpy2.robjects as rpy\n'), ((14714, 14757), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""sigma_reid"""', 'self.sigma_reid'], {}), "('sigma_reid', self.sigma_reid)\n", (14726, 14757), True, 'import rpy2.robjects as rpy\n'), ((14770, 14796), 'rpy2.robjects.r', 'rpy.r', (['"""y = as.numeric(y)"""'], {}), "('y = as.numeric(y)')\n", (14775, 14796), True, 'import rpy2.robjects as rpy\n'), ((14810, 14847), 'rpy2.robjects.r.assign', 'rpy.r.assign', (['"""lam"""', 'self.lagrange[0]'], {}), "('lam', self.lagrange[0])\n", (14822, 14847), True, 'import rpy2.robjects as rpy\n'), ((14860, 15816), 'rpy2.robjects.r', 'rpy.r', (['"""\n p = ncol(X);\n n = nrow(X);\n\n sigma_est = 1.\n if (p >= n) { \n sigma_est = sigma_reid\n } else {\n sigma_est = sigma(lm(y ~ X - 1))\n }\n\n penalty_factor = rep(1, p);\n lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code\n soln = selectiveInference:::solve_problem_glmnet(X, y, lam, penalty_factor=penalty_factor, loss="ls")\n PVS = selectiveInference:::inference_group_lasso(X, y, \n soln, groups=1:ncol(X), \n lambda=lam, penalty_factor=penalty_factor, \n sigma_est, loss="ls", algo="Q", \n construct_ci=FALSE)\n active_vars=PVS$active_vars - 1 # for 0-based\n pvalues = PVS$pvalues\n """'], {}), '(\n """\n p = ncol(X);\n n = nrow(X);\n\n sigma_est = 1.\n if (p >= n) { \n sigma_est = sigma_reid\n } else {\n sigma_est = sigma(lm(y ~ X - 1))\n }\n\n penalty_factor = rep(1, p);\n lam = lam / sqrt(n); # lambdas are passed a sqrt(n) free from python code\n soln = selectiveInference:::solve_problem_glmnet(X, y, lam, penalty_factor=penalty_factor, loss="ls")\n PVS = selectiveInference:::inference_group_lasso(X, y, \n soln, groups=1:ncol(X), \n lambda=lam, penalty_factor=penalty_factor, \n sigma_est, loss="ls", algo="Q", \n construct_ci=FALSE)\n active_vars=PVS$active_vars - 1 # for 0-based\n pvalues = PVS$pvalues\n """\n )\n', (14865, 15816), True, 'import rpy2.robjects as rpy\n'), ((15929, 15950), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (15948, 15950), False, 'from rpy2.robjects import numpy2ri\n'), ((17497, 17513), 'rpy2.robjects.r', 'rpy.r', (['"""pvalues"""'], {}), "('pvalues')\n", (17502, 17513), True, 'import rpy2.robjects as rpy\n'), ((17547, 17567), 'rpy2.robjects.r', 'rpy.r', (['"""active_vars"""'], {}), "('active_vars')\n", (17552, 17567), True, 'import rpy2.robjects as rpy\n'), ((18402, 18421), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (18409, 18421), True, 'import numpy as np\n'), ((19199, 19222), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (19207, 19222), True, 'import numpy as np\n'), ((19245, 19266), 'numpy.asarray', 'np.asarray', (["S['pval']"], {}), "(S['pval'])\n", (19255, 19266), True, 'import numpy as np\n'), ((19491, 19514), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (19499, 19514), True, 'import numpy as np\n'), ((20333, 20352), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (20340, 20352), True, 'import numpy as np\n'), ((20636, 20655), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (20643, 20655), True, 'import numpy as np\n'), ((20943, 20962), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (20950, 20962), True, 'import numpy as np\n'), ((21243, 21262), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (21250, 21262), True, 'import numpy as np\n'), ((21573, 21589), 'selection.algorithms.sqrt_lasso.choose_lambda', 'choose_lambda', (['X'], {}), '(X)\n', (21586, 21589), False, 'from selection.algorithms.sqrt_lasso import choose_lambda\n'), ((21722, 21769), 'selection.algorithms.lasso.lasso.sqrt_lasso', 'lasso.sqrt_lasso', (['self.X', 'self.Y', 'self.lagrange'], {}), '(self.X, self.Y, self.lagrange)\n', (21738, 21769), False, 'from selection.algorithms.lasso import lasso, lasso_full, lasso_full_modelQ\n'), ((21986, 21996), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (21993, 21996), True, 'import numpy as np\n'), ((22279, 22302), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (22287, 22302), True, 'import numpy as np\n'), ((22325, 22346), 'numpy.asarray', 'np.asarray', (["S['pval']"], {}), "(S['pval'])\n", (22335, 22346), True, 'import numpy as np\n'), ((22571, 22594), 'numpy.array', 'np.array', (["S['variable']"], {}), "(S['variable'])\n", (22579, 22594), True, 'import numpy as np\n'), ((23247, 23266), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (23254, 23266), True, 'import numpy as np\n'), ((24334, 24351), 'numpy.nonzero', 'np.nonzero', (['signs'], {}), '(signs)\n', (24344, 24351), True, 'import numpy as np\n'), ((26713, 26732), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (26720, 26732), True, 'import numpy as np\n'), ((27018, 27037), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (27025, 27037), True, 'import numpy as np\n'), ((30192, 30209), 'numpy.nonzero', 'np.nonzero', (['signs'], {}), '(signs)\n', (30202, 30209), True, 'import numpy as np\n'), ((36030, 36040), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (36037, 36040), True, 'import numpy as np\n'), ((36222, 36239), 'numpy.nonzero', 'np.nonzero', (['signs'], {}), '(signs)\n', (36232, 36239), True, 'import numpy as np\n'), ((37951, 37970), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (37958, 37970), True, 'import numpy as np\n'), ((38269, 38288), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (38276, 38288), True, 'import numpy as np\n'), ((38589, 38608), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (38596, 38608), True, 'import numpy as np\n'), ((41634, 41653), 'rpy2.robjects.r', 'rpy.r', (['"""active_set"""'], {}), "('active_set')\n", (41639, 41653), True, 'import rpy2.robjects as rpy\n'), ((41732, 41753), 'rpy2.robjects.numpy2ri.deactivate', 'numpy2ri.deactivate', ([], {}), '()\n', (41751, 41753), False, 'from rpy2.robjects import numpy2ri\n'), ((41814, 41830), 'rpy2.robjects.r', 'rpy.r', (['"""pvalues"""'], {}), "('pvalues')\n", (41819, 41830), True, 'import rpy2.robjects as rpy\n'), ((41863, 41881), 'rpy2.robjects.r', 'rpy.r', (['"""intervals"""'], {}), "('intervals')\n", (41868, 41881), True, 'import rpy2.robjects as rpy\n'), ((42308, 42327), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (42315, 42327), True, 'import numpy as np\n'), ((42742, 42758), 'numpy.nonzero', 'np.nonzero', (['soln'], {}), '(soln)\n', (42752, 42758), True, 'import numpy as np\n'), ((42783, 42796), 'numpy.sign', 'np.sign', (['soln'], {}), '(soln)\n', (42790, 42796), True, 'import numpy as np\n'), ((1902, 1918), 'numpy.linalg.inv', 'np.linalg.inv', (['Q'], {}), '(Q)\n', (1915, 1918), True, 'import numpy as np\n'), ((2900, 2921), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (2910, 2921), True, 'import numpy as np\n'), ((2923, 2944), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (2933, 2944), True, 'import numpy as np\n'), ((3836, 3875), 'numpy.allclose', 'np.allclose', (['feature_cov_f', 'feature_cov'], {}), '(feature_cov_f, feature_cov)\n', (3847, 3875), True, 'import numpy as np\n'), ((5019, 5040), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (5029, 5040), True, 'import numpy as np\n'), ((5042, 5063), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (5052, 5063), True, 'import numpy as np\n'), ((7574, 7595), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (7584, 7595), True, 'import numpy as np\n'), ((7597, 7618), 'numpy.asarray', 'np.asarray', (['V', 'np.int'], {}), '(V, np.int)\n', (7607, 7618), True, 'import numpy as np\n'), ((10219, 10252), 'numpy.asarray', 'np.asarray', (["S['lower_confidence']"], {}), "(S['lower_confidence'])\n", (10229, 10252), True, 'import numpy as np\n'), ((10254, 10287), 'numpy.asarray', 'np.asarray', (["S['upper_confidence']"], {}), "(S['upper_confidence'])\n", (10264, 10287), True, 'import numpy as np\n'), ((10655, 10674), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (10662, 10674), True, 'import numpy as np\n'), ((15841, 15857), 'rpy2.robjects.r', 'rpy.r', (['"""pvalues"""'], {}), "('pvalues')\n", (15846, 15857), True, 'import rpy2.robjects as rpy\n'), ((15895, 15915), 'rpy2.robjects.r', 'rpy.r', (['"""active_vars"""'], {}), "('active_vars')\n", (15900, 15915), True, 'import rpy2.robjects as rpy\n'), ((16446, 16465), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (16453, 16465), True, 'import numpy as np\n'), ((18017, 18036), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (18024, 18036), True, 'import numpy as np\n'), ((19542, 19575), 'numpy.asarray', 'np.asarray', (["S['lower_confidence']"], {}), "(S['lower_confidence'])\n", (19552, 19575), True, 'import numpy as np\n'), ((19577, 19610), 'numpy.asarray', 'np.asarray', (["S['upper_confidence']"], {}), "(S['upper_confidence'])\n", (19587, 19610), True, 'import numpy as np\n'), ((22622, 22655), 'numpy.asarray', 'np.asarray', (["S['lower_confidence']"], {}), "(S['lower_confidence'])\n", (22632, 22655), True, 'import numpy as np\n'), ((22657, 22690), 'numpy.asarray', 'np.asarray', (["S['upper_confidence']"], {}), "(S['upper_confidence'])\n", (22667, 22690), True, 'import numpy as np\n'), ((27447, 27466), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (27454, 27466), True, 'import numpy as np\n'), ((27795, 27814), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (27802, 27814), True, 'import numpy as np\n'), ((28131, 28150), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (28138, 28150), True, 'import numpy as np\n'), ((28477, 28496), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (28484, 28496), True, 'import numpy as np\n'), ((39551, 39570), 'numpy.ones', 'np.ones', (['X.shape[1]'], {}), '(X.shape[1])\n', (39558, 39570), True, 'import numpy as np\n'), ((42555, 42566), 'numpy.sqrt', 'np.sqrt', (['n1'], {}), '(n1)\n', (42562, 42566), True, 'import numpy as np\n'), ((43342, 43362), 'scipy.stats.norm.cdf', 'ndist.cdf', (['signed_Z2'], {}), '(signed_Z2)\n', (43351, 43362), True, 'from scipy.stats import norm as ndist\n'), ((8216, 8243), 'utils.BHfilter', 'BHfilter', (['pvalues'], {'q': 'self.q'}), '(pvalues, q=self.q)\n', (8224, 8243), False, 'from utils import BHfilter\n'), ((9047, 9057), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (9054, 9057), True, 'import numpy as np\n'), ((11048, 11058), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (11055, 11058), True, 'import numpy as np\n'), ((12106, 12116), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (12113, 12116), True, 'import numpy as np\n'), ((12553, 12563), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (12560, 12563), True, 'import numpy as np\n'), ((13782, 13792), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (13789, 13792), True, 'import numpy as np\n'), ((14303, 14313), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (14310, 14313), True, 'import numpy as np\n'), ((18633, 18643), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (18640, 18643), True, 'import numpy as np\n'), ((29716, 29726), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (29723, 29726), True, 'import numpy as np\n'), ((31207, 31217), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (31214, 31217), True, 'import numpy as np\n'), ((32548, 32558), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (32555, 32558), True, 'import numpy as np\n'), ((33441, 33451), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (33448, 33451), True, 'import numpy as np\n'), ((34798, 34808), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (34805, 34808), True, 'import numpy as np\n'), ((35441, 35451), 'numpy.ones', 'np.ones', (['p'], {}), '(p)\n', (35448, 35451), True, 'import numpy as np\n'), ((35454, 35475), 'selection.algorithms.sqrt_lasso.choose_lambda', 'choose_lambda', (['self.X'], {}), '(self.X)\n', (35467, 35475), False, 'from selection.algorithms.sqrt_lasso import choose_lambda\n'), ((11778, 11820), 'numpy.random.standard_normal', 'np.random.standard_normal', (['(batch_size, p)'], {}), '((batch_size, p))\n', (11803, 11820), True, 'import numpy as np\n'), ((23694, 23704), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (23701, 23704), True, 'import numpy as np\n'), ((23820, 23830), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (23827, 23830), True, 'import numpy as np\n'), ((23955, 23965), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (23962, 23965), True, 'import numpy as np\n'), ((29840, 29850), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (29847, 29850), True, 'import numpy as np\n'), ((31331, 31341), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (31338, 31341), True, 'import numpy as np\n'), ((32071, 32113), 'numpy.random.standard_normal', 'np.random.standard_normal', (['(batch_size, p)'], {}), '((batch_size, p))\n', (32096, 32113), True, 'import numpy as np\n'), ((32672, 32682), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (32679, 32682), True, 'import numpy as np\n'), ((33565, 33575), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (33572, 33575), True, 'import numpy as np\n'), ((34321, 34363), 'numpy.random.standard_normal', 'np.random.standard_normal', (['(batch_size, p)'], {}), '((batch_size, p))\n', (34346, 34363), True, 'import numpy as np\n'), ((34922, 34932), 'numpy.sqrt', 'np.sqrt', (['n'], {}), '(n)\n', (34929, 34932), True, 'import numpy as np\n'), ((35816, 35830), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (35822, 35830), True, 'import numpy as np\n'), ((43262, 43274), 'numpy.diag', 'np.diag', (['X2i'], {}), '(X2i)\n', (43269, 43274), True, 'import numpy as np\n'), ((5910, 5928), 'tempfile.mkstemp', 'tempfile.mkstemp', ([], {}), '()\n', (5926, 5928), False, 'import tempfile, os, glob\n'), ((23782, 23796), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (23788, 23796), True, 'import numpy as np\n'), ((23799, 23817), 'numpy.sqrt', 'np.sqrt', (['mean_diag'], {}), '(mean_diag)\n', (23806, 23817), True, 'import numpy as np\n'), ((23938, 23952), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (23944, 23952), True, 'import numpy as np\n'), ((29823, 29837), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (29829, 29837), True, 'import numpy as np\n'), ((31314, 31328), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (31320, 31328), True, 'import numpy as np\n'), ((32655, 32669), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (32661, 32669), True, 'import numpy as np\n'), ((33548, 33562), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (33554, 33562), True, 'import numpy as np\n'), ((34905, 34919), 'numpy.std', 'np.std', (['self.Y'], {}), '(self.Y)\n', (34911, 34919), True, 'import numpy as np\n')] |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Aug 26 21:10:16 2017
@author: dhaval
"""
import argparse
import sys
from io import BytesIO
import matplotlib
import numpy as np
import requests
from PIL import Image
matplotlib.use('agg')
import matplotlib.pyplot as plt
from keras.preprocessing import image
from keras.models import load_model
from keras.applications.inception_v3 import preprocess_input
target_size = (299, 299) # fixed size for InceptionV3 architecture
def predict(model, img, target_size):
"""Run model prediction on image
Args:
model: keras model
img: PIL format image
target_size: (w,h) tuple
Returns:
list of predicted labels and their probabilities
"""
if img.size != target_size:
img = img.resize(target_size)
x = image.img_to_array(img)
x = np.expand_dims(x, axis=0)
x = preprocess_input(x)
preds = model.predict(x)
return preds[0]
def plot_preds(image, preds):
"""Displays image and the top-n predicted probabilities in a bar graph
Args:
image: PIL image
preds: list of predicted labels and their probabilities
"""
"""# For Spyder
plt.imshow(image)
plt.axis('off')"""
plt.imshow(image)
plt.axis('off')
plt.figure()
labels = ("cat")
plt.barh([0, 1], preds, alpha=0.5)
plt.yticks([0, 1], labels)
plt.xlabel('Probability')
plt.xlim(0, 1.01)
plt.tight_layout()
plt.savefig('out.png')
if __name__ == "__main__":
a = argparse.ArgumentParser()
a.add_argument("--image", help="path to image")
a.add_argument("--image_url", help="url to image")
a.add_argument("--model")
args = a.parse_args()
if args.image is None and args.image_url is None:
a.print_help()
sys.exit(1)
model = load_model(args.model)
if args.image is not None:
img = Image.open(args.image)
preds = predict(model, img, target_size)
plot_preds(img, preds)
if args.image_url is not None:
response = requests.get(args.image_url)
img = Image.open(BytesIO(response.content))
preds = predict(model, img, target_size)
plot_preds(img, preds)
| [
"keras.preprocessing.image.img_to_array",
"keras.applications.inception_v3.preprocess_input",
"io.BytesIO",
"sys.exit",
"matplotlib.pyplot.imshow",
"argparse.ArgumentParser",
"matplotlib.pyplot.barh",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.yticks",
"matplotlib.pyplot.axis",
"matplotlib.p... | [((236, 257), 'matplotlib.use', 'matplotlib.use', (['"""agg"""'], {}), "('agg')\n", (250, 257), False, 'import matplotlib\n'), ((830, 853), 'keras.preprocessing.image.img_to_array', 'image.img_to_array', (['img'], {}), '(img)\n', (848, 853), False, 'from keras.preprocessing import image\n'), ((862, 887), 'numpy.expand_dims', 'np.expand_dims', (['x'], {'axis': '(0)'}), '(x, axis=0)\n', (876, 887), True, 'import numpy as np\n'), ((896, 915), 'keras.applications.inception_v3.preprocess_input', 'preprocess_input', (['x'], {}), '(x)\n', (912, 915), False, 'from keras.applications.inception_v3 import preprocess_input\n'), ((1250, 1267), 'matplotlib.pyplot.imshow', 'plt.imshow', (['image'], {}), '(image)\n', (1260, 1267), True, 'import matplotlib.pyplot as plt\n'), ((1272, 1287), 'matplotlib.pyplot.axis', 'plt.axis', (['"""off"""'], {}), "('off')\n", (1280, 1287), True, 'import matplotlib.pyplot as plt\n'), ((1293, 1305), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (1303, 1305), True, 'import matplotlib.pyplot as plt\n'), ((1331, 1365), 'matplotlib.pyplot.barh', 'plt.barh', (['[0, 1]', 'preds'], {'alpha': '(0.5)'}), '([0, 1], preds, alpha=0.5)\n', (1339, 1365), True, 'import matplotlib.pyplot as plt\n'), ((1370, 1396), 'matplotlib.pyplot.yticks', 'plt.yticks', (['[0, 1]', 'labels'], {}), '([0, 1], labels)\n', (1380, 1396), True, 'import matplotlib.pyplot as plt\n'), ((1401, 1426), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Probability"""'], {}), "('Probability')\n", (1411, 1426), True, 'import matplotlib.pyplot as plt\n'), ((1431, 1448), 'matplotlib.pyplot.xlim', 'plt.xlim', (['(0)', '(1.01)'], {}), '(0, 1.01)\n', (1439, 1448), True, 'import matplotlib.pyplot as plt\n'), ((1453, 1471), 'matplotlib.pyplot.tight_layout', 'plt.tight_layout', ([], {}), '()\n', (1469, 1471), True, 'import matplotlib.pyplot as plt\n'), ((1476, 1498), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""out.png"""'], {}), "('out.png')\n", (1487, 1498), True, 'import matplotlib.pyplot as plt\n'), ((1536, 1561), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {}), '()\n', (1559, 1561), False, 'import argparse\n'), ((1836, 1858), 'keras.models.load_model', 'load_model', (['args.model'], {}), '(args.model)\n', (1846, 1858), False, 'from keras.models import load_model\n'), ((1811, 1822), 'sys.exit', 'sys.exit', (['(1)'], {}), '(1)\n', (1819, 1822), False, 'import sys\n'), ((1904, 1926), 'PIL.Image.open', 'Image.open', (['args.image'], {}), '(args.image)\n', (1914, 1926), False, 'from PIL import Image\n'), ((2062, 2090), 'requests.get', 'requests.get', (['args.image_url'], {}), '(args.image_url)\n', (2074, 2090), False, 'import requests\n'), ((2116, 2141), 'io.BytesIO', 'BytesIO', (['response.content'], {}), '(response.content)\n', (2123, 2141), False, 'from io import BytesIO\n')] |
from collections import Counter
import networkx as nx
import numpy as np
from features_infra.feature_calculators import NodeFeatureCalculator, FeatureMeta
class BfsMomentsCalculator(NodeFeatureCalculator):
def is_relevant(self):
return True
def weighted_avg_and_std(self, values, weights):
"""
Return the weighted average and standard deviation.
values, weights -- Numpy ndarrays with the same shape.
"""
average = np.average(values, weights=weights)
# Fast and numerically precise:
variance = np.average((values - average) ** 2, weights=weights)
return average, np.sqrt(variance)
def _calculate(self, include: set):
for node in self._gnx:
# calculate BFS distances
distances = nx.single_source_shortest_path_length(self._gnx, node)
# distances.pop(node)
# if not distances:
# self._features[node] = [0., 0.]
# continue
node_dist = Counter(distances.values())
dists, weights = zip(*node_dist.items())
# This was in the previous version
# instead of the above commented fix
adjusted_dists = np.asarray([x + 1 for x in dists])
weights = np.asarray(weights)
self._features[node] = [self.weighted_avg_and_std(adjusted_dists, weights)]
def _get_feature(self,element):
return list(self._features[element])[0]
feature_entry = {
"bfs_moments": FeatureMeta(BfsMomentsCalculator, {"bfs"}),
}
if __name__ == "__main__":
from measure_tests.specific_feature_test import test_specific_feature
test_specific_feature(BfsMomentsCalculator, is_max_connected=True)
| [
"networkx.single_source_shortest_path_length",
"numpy.sqrt",
"numpy.average",
"numpy.asarray",
"features_infra.feature_calculators.FeatureMeta",
"measure_tests.specific_feature_test.test_specific_feature"
] | [((1560, 1602), 'features_infra.feature_calculators.FeatureMeta', 'FeatureMeta', (['BfsMomentsCalculator', "{'bfs'}"], {}), "(BfsMomentsCalculator, {'bfs'})\n", (1571, 1602), False, 'from features_infra.feature_calculators import NodeFeatureCalculator, FeatureMeta\n'), ((1719, 1785), 'measure_tests.specific_feature_test.test_specific_feature', 'test_specific_feature', (['BfsMomentsCalculator'], {'is_max_connected': '(True)'}), '(BfsMomentsCalculator, is_max_connected=True)\n', (1740, 1785), False, 'from measure_tests.specific_feature_test import test_specific_feature\n'), ((495, 530), 'numpy.average', 'np.average', (['values'], {'weights': 'weights'}), '(values, weights=weights)\n', (505, 530), True, 'import numpy as np\n'), ((592, 644), 'numpy.average', 'np.average', (['((values - average) ** 2)'], {'weights': 'weights'}), '((values - average) ** 2, weights=weights)\n', (602, 644), True, 'import numpy as np\n'), ((670, 687), 'numpy.sqrt', 'np.sqrt', (['variance'], {}), '(variance)\n', (677, 687), True, 'import numpy as np\n'), ((827, 881), 'networkx.single_source_shortest_path_length', 'nx.single_source_shortest_path_length', (['self._gnx', 'node'], {}), '(self._gnx, node)\n', (864, 881), True, 'import networkx as nx\n'), ((1264, 1300), 'numpy.asarray', 'np.asarray', (['[(x + 1) for x in dists]'], {}), '([(x + 1) for x in dists])\n', (1274, 1300), True, 'import numpy as np\n'), ((1322, 1341), 'numpy.asarray', 'np.asarray', (['weights'], {}), '(weights)\n', (1332, 1341), True, 'import numpy as np\n')] |
# -*- coding: utf-8 -*-
"""Oscillators are lifeforms that returns to its initial configuration after
some time"""
# Import modules
import numpy as np
from .base import Lifeform
class Blinker(Lifeform):
"""A horizontal Blinker lifeform"""
def __init__(self, length=3):
"""Initialize the class
Parameters
----------
length : int
Length of the blinker. Default is 3
"""
super(Blinker, self).__init__()
self.length = length
@property
def layout(self) -> np.ndarray:
return np.ones(shape=(self.length, 1), dtype=int)
class Toad(Lifeform):
"""A Toad lifeform oscillator"""
def __init__(self):
"""Initialize the class"""
super(Toad, self).__init__()
@property
def layout(self) -> np.ndarray:
return np.array([[1, 1, 1, 0], [0, 1, 1, 1]])
class Pulsar(Lifeform):
"""A Pulsar lifeform oscillator"""
def __init__(self):
"""Initialize the class"""
super(Pulsar, self).__init__()
@property
def layout(self) -> np.ndarray:
X = np.zeros((17, 17))
X[2, 4:7] = 1
X[4:7, 7] = 1
X += X.T
X += X[:, ::-1]
X += X[::-1, :]
return X
class FigureEight(Lifeform):
"""A Figure eight lifeform oscillator"""
def __init__(self):
"""Initialize the class"""
super(FigureEight, self).__init__()
@property
def layout(self) -> np.ndarray:
X = np.zeros((6, 6))
X[0:3, 0:3] = 1
X[3:6, 3:6] = 1
return X
class Beacon(Lifeform):
"""A Beacon lifeform oscillator"""
def __init__(self):
"""Initialize the class"""
super(Beacon, self).__init__()
@property
def layout(self) -> np.ndarray:
X = np.zeros((4, 4))
X[0:2, 0:2] = 1
X[2:4, 2:4] = 1
return X
| [
"numpy.array",
"numpy.zeros",
"numpy.ones"
] | [((569, 611), 'numpy.ones', 'np.ones', ([], {'shape': '(self.length, 1)', 'dtype': 'int'}), '(shape=(self.length, 1), dtype=int)\n', (576, 611), True, 'import numpy as np\n'), ((836, 874), 'numpy.array', 'np.array', (['[[1, 1, 1, 0], [0, 1, 1, 1]]'], {}), '([[1, 1, 1, 0], [0, 1, 1, 1]])\n', (844, 874), True, 'import numpy as np\n'), ((1102, 1120), 'numpy.zeros', 'np.zeros', (['(17, 17)'], {}), '((17, 17))\n', (1110, 1120), True, 'import numpy as np\n'), ((1490, 1506), 'numpy.zeros', 'np.zeros', (['(6, 6)'], {}), '((6, 6))\n', (1498, 1506), True, 'import numpy as np\n'), ((1799, 1815), 'numpy.zeros', 'np.zeros', (['(4, 4)'], {}), '((4, 4))\n', (1807, 1815), True, 'import numpy as np\n')] |
from flare.algorithm_zoo.distributional_rl_algorithms import C51
from flare.model_zoo.distributional_rl_models import C51Model
from flare.algorithm_zoo.distributional_rl_algorithms import QRDQN
from flare.model_zoo.distributional_rl_models import QRDQNModel
from flare.algorithm_zoo.distributional_rl_algorithms import IQN
from flare.model_zoo.distributional_rl_models import IQNModel
import numpy as np
import math
import torch
import torch.nn as nn
import unittest
class TestC51(unittest.TestCase):
def initialize(self, bins=2):
inner_size = 256
num_actions = 3
state_shape = [1]
mlp = nn.Sequential(nn.Linear(inner_size, inner_size), nn.ReLU())
model = C51Model(
dims=state_shape,
num_actions=num_actions,
perception_net=mlp,
vmax=10,
vmin=-10,
bins=bins)
alg = C51(model=model,
exploration_end_steps=500000,
update_ref_interval=100)
return model, alg
def test_select_q_distribution(self):
model, alg = self.initialize()
distribution = [[[0.1, 0.9], [0.2, 0.8], [0.3, 0.7]],
[[0.4, 0.6], [0.5, 0.5], [0.6, 0.4]]]
action = [0, 2]
expected = np.array(
[d[a] for d, a in zip(distribution, action)]).flatten()
actual = alg.select_q_distribution(
torch.tensor(distribution), torch.tensor(action)).numpy().flatten()
self.assertEqual(len(expected), len(actual))
for x, y in zip(expected, actual):
self.assertAlmostEqual(x, y)
def test_check_alive(self):
model, alg = self.initialize(3)
values = [[[1, 2, 3]] * 2, [[3, 4, 5]] * 2, [[5, 6, 7]] * 2]
alive = [1, 0, 1]
next_values = torch.tensor(values).float()
next_alive = torch.tensor(alive).float().view(-1, 1)
expected = [
a if b == 1 else [[0, 1, 0]] * 2 for a, b in zip(values, alive)
]
expected = np.array(expected)
actual = alg.check_alive(next_values, next_alive).numpy()
self.assertEqual(expected.shape, actual.shape)
for x, y in zip(expected.flatten(), actual.flatten()):
self.assertAlmostEqual(x, y)
def one_backup(self, r, q, discount, model):
N = len(q)
m = [0.] * N
for j in xrange(N):
Tz = r + discount * model.atoms[j]
Tz = min(Tz, 10)
Tz = max(Tz, -10)
b = (Tz + 10.) / model.delta_z
l = int(math.floor(b))
u = int(math.ceil(b))
m[l] += q[j] * (u - b)
m[u] += q[j] * (b - l)
return m
def test_backup(self):
model, alg = self.initialize()
discount = 0.9
reward = [[1.5], [-0.2], [0.]]
next_q_distribution = [[0.1, 0.9], [0.2, 0.8], [0.3, 0.7]]
expected = np.array([
self.one_backup(r[0], q, discount, model)
for r, q in zip(reward, next_q_distribution)
]).flatten()
actual = alg.backup(
model.atoms,
torch.FloatTensor([model.vmax]),
torch.FloatTensor([model.vmin]), model.delta_z,
torch.tensor(reward), discount,
torch.tensor(next_q_distribution)).numpy().flatten()
self.assertEqual(len(expected), len(actual))
for x, y in zip(expected, actual):
self.assertAlmostEqual(x, y)
def test_get_current_values(self):
model, alg = self.initialize()
A = "A"
B = "B"
alg.model.value = lambda x, y: (x, y)
A_hat, B_hat = alg.get_current_values(A, B)
self.assertEqual(A, A_hat)
self.assertEqual(B, B_hat)
def test_get_next_values(self):
model, alg = self.initialize()
A = "A"
B = "B"
C = {"q_value": A}
alg.ref_model.value = lambda x, y: (x, y)
C_hat, B_hat, A_hat = alg.get_next_values(C, B)
self.assertEqual(A, A_hat)
self.assertEqual(B, B_hat)
self.assertEqual(C, C_hat)
class TestQRDQN(unittest.TestCase):
def initialize(self, bins=2):
inner_size = 256
num_actions = 3
state_shape = [1]
N = 32
mlp = nn.Sequential(nn.Linear(inner_size, inner_size), nn.ReLU())
alg = QRDQN(
model=QRDQNModel(
dims=state_shape,
num_actions=num_actions,
perception_net=mlp,
N=N),
exploration_end_steps=500000,
update_ref_interval=100)
return alg
def test_check_alive(self):
alg = self.initialize()
values = [[[1], [2], [3]], [[3], [4], [5]], [[5], [6], [7]]]
alive = [1, 0, 1]
next_values = torch.tensor(values).float()
next_alive = torch.tensor(alive).float().view(-1, 1)
expected = [
a if b == 1 else [[0], [0], [0]] for a, b in zip(values, alive)
]
expected = np.array(expected)
actual = alg.check_alive(next_values, next_alive).numpy()
self.assertEqual(expected.shape, actual.shape)
for x, y in zip(expected.flatten(), actual.flatten()):
self.assertAlmostEqual(x, y)
def huber_loss(self, u, k=1):
if abs(u) <= k:
return 0.5 * u * u
else:
return k * (abs(u) - 0.5 * k)
def quantile_huber_loss(self, u, tau, k=1):
if u < 0:
delta = 1
else:
delta = 1
return abs(tau - delta) * self.huber_loss(u, k)
def expection_quantile_huber_loss(self, theta, Ttheta, tau, k=1):
r1 = 0
for theta_i, tau_i in zip(theta, tau):
r2 = 0
for Ttheta_j in Ttheta:
r2 += self.quantile_huber_loss(Ttheta_j - theta_i, tau_i, k)
r1 += r2 / len(Ttheta)
return r1
def batch_expection_quantile_huber_loss(self,
q_distribution,
critic_value,
tau,
k=1):
expected = []
for theta, Ttheta, t in zip(q_distribution, critic_value, tau):
expected.append(
self.expection_quantile_huber_loss(theta, Ttheta, t, k))
return expected
def test_get_quantile_huber_loss(self):
alg = self.initialize()
critic_value = [[-1., 2.], [3., 4.], [-5., -5.]]
q_distribution = [[9., 8.5], [7., 6.], [-5., -5.]]
tau = [[0.3, 0.6], [0.4, 0.8], [0.6, 0.1]]
expected = self.batch_expection_quantile_huber_loss(
q_distribution, critic_value, tau, k=1)
expected = np.array(expected)
critic_value = torch.tensor(critic_value)
q_distribution = torch.tensor(q_distribution)
tau = torch.tensor(tau)
actual = alg.get_quantile_huber_loss(critic_value, q_distribution,
tau).view(-1).numpy()
self.assertEqual(expected.shape, actual.shape)
for x, y in zip(expected.flatten(), actual.flatten()):
self.assertAlmostEqual(x, y, places=6)
class TestIQN(unittest.TestCase):
def initialize(self):
inner_size = 256
num_actions = 3
state_shape = [1]
mlp = nn.Sequential(nn.Linear(inner_size, inner_size), nn.ReLU())
model = IQNModel(
dims=state_shape,
num_actions=num_actions,
perception_net=mlp,
inner_size=inner_size)
alg = IQN(model=model,
exploration_end_steps=500000,
update_ref_interval=100)
return alg
def test_get_current_values(self):
alg = self.initialize()
A = "A"
B = "B"
N = 10
alg.model.value = lambda x, y, z: (x, y, z)
alg.N = N
A_hat, B_hat, N_hat = alg.get_current_values(A, B)
self.assertEqual(A, A_hat)
self.assertEqual(B, B_hat)
self.assertEqual(N, N_hat)
def tdest_get_next_values(self):
alg = self.initialize()
next_values = "A"
next_value = "B"
next_states_update = "C"
a_list = [next_values, {"q_value": next_value}]
alg.ref_model.value = lambda x, y, z: (x, y, z)
A_hat, B_hat, C_hat = alg.get_next_values(a_list, next_states_update)
self.assertEqual(next_values, A_hat)
self.assertEqual(next_states_update, B_hat)
self.assertEqual(next_value, C_hat)
if __name__ == "__main__":
unittest.main()
| [
"torch.nn.ReLU",
"math.ceil",
"flare.model_zoo.distributional_rl_models.QRDQNModel",
"math.floor",
"flare.algorithm_zoo.distributional_rl_algorithms.C51",
"numpy.array",
"torch.tensor",
"flare.algorithm_zoo.distributional_rl_algorithms.IQN",
"torch.nn.Linear",
"unittest.main",
"flare.model_zoo.d... | [((8611, 8626), 'unittest.main', 'unittest.main', ([], {}), '()\n', (8624, 8626), False, 'import unittest\n'), ((702, 807), 'flare.model_zoo.distributional_rl_models.C51Model', 'C51Model', ([], {'dims': 'state_shape', 'num_actions': 'num_actions', 'perception_net': 'mlp', 'vmax': '(10)', 'vmin': '(-10)', 'bins': 'bins'}), '(dims=state_shape, num_actions=num_actions, perception_net=mlp,\n vmax=10, vmin=-10, bins=bins)\n', (710, 807), False, 'from flare.model_zoo.distributional_rl_models import C51Model\n'), ((891, 962), 'flare.algorithm_zoo.distributional_rl_algorithms.C51', 'C51', ([], {'model': 'model', 'exploration_end_steps': '(500000)', 'update_ref_interval': '(100)'}), '(model=model, exploration_end_steps=500000, update_ref_interval=100)\n', (894, 962), False, 'from flare.algorithm_zoo.distributional_rl_algorithms import C51\n'), ((2024, 2042), 'numpy.array', 'np.array', (['expected'], {}), '(expected)\n', (2032, 2042), True, 'import numpy as np\n'), ((5003, 5021), 'numpy.array', 'np.array', (['expected'], {}), '(expected)\n', (5011, 5021), True, 'import numpy as np\n'), ((6757, 6775), 'numpy.array', 'np.array', (['expected'], {}), '(expected)\n', (6765, 6775), True, 'import numpy as np\n'), ((6800, 6826), 'torch.tensor', 'torch.tensor', (['critic_value'], {}), '(critic_value)\n', (6812, 6826), False, 'import torch\n'), ((6852, 6880), 'torch.tensor', 'torch.tensor', (['q_distribution'], {}), '(q_distribution)\n', (6864, 6880), False, 'import torch\n'), ((6895, 6912), 'torch.tensor', 'torch.tensor', (['tau'], {}), '(tau)\n', (6907, 6912), False, 'import torch\n'), ((7452, 7550), 'flare.model_zoo.distributional_rl_models.IQNModel', 'IQNModel', ([], {'dims': 'state_shape', 'num_actions': 'num_actions', 'perception_net': 'mlp', 'inner_size': 'inner_size'}), '(dims=state_shape, num_actions=num_actions, perception_net=mlp,\n inner_size=inner_size)\n', (7460, 7550), False, 'from flare.model_zoo.distributional_rl_models import IQNModel\n'), ((7610, 7681), 'flare.algorithm_zoo.distributional_rl_algorithms.IQN', 'IQN', ([], {'model': 'model', 'exploration_end_steps': '(500000)', 'update_ref_interval': '(100)'}), '(model=model, exploration_end_steps=500000, update_ref_interval=100)\n', (7613, 7681), False, 'from flare.algorithm_zoo.distributional_rl_algorithms import IQN\n'), ((640, 673), 'torch.nn.Linear', 'nn.Linear', (['inner_size', 'inner_size'], {}), '(inner_size, inner_size)\n', (649, 673), True, 'import torch.nn as nn\n'), ((675, 684), 'torch.nn.ReLU', 'nn.ReLU', ([], {}), '()\n', (682, 684), True, 'import torch.nn as nn\n'), ((4275, 4308), 'torch.nn.Linear', 'nn.Linear', (['inner_size', 'inner_size'], {}), '(inner_size, inner_size)\n', (4284, 4308), True, 'import torch.nn as nn\n'), ((4310, 4319), 'torch.nn.ReLU', 'nn.ReLU', ([], {}), '()\n', (4317, 4319), True, 'import torch.nn as nn\n'), ((7390, 7423), 'torch.nn.Linear', 'nn.Linear', (['inner_size', 'inner_size'], {}), '(inner_size, inner_size)\n', (7399, 7423), True, 'import torch.nn as nn\n'), ((7425, 7434), 'torch.nn.ReLU', 'nn.ReLU', ([], {}), '()\n', (7432, 7434), True, 'import torch.nn as nn\n'), ((1807, 1827), 'torch.tensor', 'torch.tensor', (['values'], {}), '(values)\n', (1819, 1827), False, 'import torch\n'), ((2555, 2568), 'math.floor', 'math.floor', (['b'], {}), '(b)\n', (2565, 2568), False, 'import math\n'), ((2590, 2602), 'math.ceil', 'math.ceil', (['b'], {}), '(b)\n', (2599, 2602), False, 'import math\n'), ((4360, 4438), 'flare.model_zoo.distributional_rl_models.QRDQNModel', 'QRDQNModel', ([], {'dims': 'state_shape', 'num_actions': 'num_actions', 'perception_net': 'mlp', 'N': 'N'}), '(dims=state_shape, num_actions=num_actions, perception_net=mlp, N=N)\n', (4370, 4438), False, 'from flare.model_zoo.distributional_rl_models import QRDQNModel\n'), ((4786, 4806), 'torch.tensor', 'torch.tensor', (['values'], {}), '(values)\n', (4798, 4806), False, 'import torch\n'), ((1857, 1876), 'torch.tensor', 'torch.tensor', (['alive'], {}), '(alive)\n', (1869, 1876), False, 'import torch\n'), ((4836, 4855), 'torch.tensor', 'torch.tensor', (['alive'], {}), '(alive)\n', (4848, 4855), False, 'import torch\n'), ((1410, 1436), 'torch.tensor', 'torch.tensor', (['distribution'], {}), '(distribution)\n', (1422, 1436), False, 'import torch\n'), ((1438, 1458), 'torch.tensor', 'torch.tensor', (['action'], {}), '(action)\n', (1450, 1458), False, 'import torch\n'), ((3118, 3149), 'torch.FloatTensor', 'torch.FloatTensor', (['[model.vmax]'], {}), '([model.vmax])\n', (3135, 3149), False, 'import torch\n'), ((3163, 3194), 'torch.FloatTensor', 'torch.FloatTensor', (['[model.vmin]'], {}), '([model.vmin])\n', (3180, 3194), False, 'import torch\n'), ((3223, 3243), 'torch.tensor', 'torch.tensor', (['reward'], {}), '(reward)\n', (3235, 3243), False, 'import torch\n'), ((3267, 3300), 'torch.tensor', 'torch.tensor', (['next_q_distribution'], {}), '(next_q_distribution)\n', (3279, 3300), False, 'import torch\n')] |
# http://github.com/timestocome
# train a raspberry pi robot to wander the house while avoiding obstacles
# and looking for cats
# this robot uses wheels for steering
# 4 wheel drive with separate controls each side
# change from off policy learning in first try
# adapted from https://morvanzhou.github.io/tutorials/
import numpy as np
###############################################################################
# q learning happens here
###############################################################################
actions = ['forward', 'reverse', 'turn_left', 'turn_right', 'hard_left', 'hard_right']
n_distance_states = 100 + 1
n_cat_states = 3
n_actions = 6
qTable = 'qTable.npy'
# load saved table from file
def load_q_table():
t_1d = np.load(qTable)
table = t_1d.reshape(n_distance_states, n_cat_states, n_actions)
return table
q_table = load_q_table()
print('--------------------------------')
print('Final Q Table')
for i in range(n_distance_states):
for j in range(n_cat_states):
print('distance %d, cat %d' %(i, j))
print('action values', q_table[i, j, :])
# print actions by distance no cat
z = np.zeros(n_distance_states)
for i in range(n_distance_states):
for j in range(n_cat_states):
if j == 2: # no cat
z[i] = np.argmax(q_table[i, j, :])
print('--------- distance/ action -------------')
for i in range(len(z)):
a = int(z[i])
print(i, actions[a]) | [
"numpy.zeros",
"numpy.load",
"numpy.argmax"
] | [((1191, 1218), 'numpy.zeros', 'np.zeros', (['n_distance_states'], {}), '(n_distance_states)\n', (1199, 1218), True, 'import numpy as np\n'), ((774, 789), 'numpy.load', 'np.load', (['qTable'], {}), '(qTable)\n', (781, 789), True, 'import numpy as np\n'), ((1336, 1363), 'numpy.argmax', 'np.argmax', (['q_table[i, j, :]'], {}), '(q_table[i, j, :])\n', (1345, 1363), True, 'import numpy as np\n')] |
import pandas as pd
import numpy as np
from sklearn.decomposition import PCA
from sklearn import preprocessing
import matplotlib.pyplot as plt
#load and tranpose csv data
#Data fetched on 2021-05-08
csvDataT = pd.read_csv('ticks.norm.csv')
csvData = csvDataT.T
#Symbol column like AEFES,AKBNK,AKSA...
ticks = csvData.iloc[0]
#Data columns. First column contains name of features so removed
csvData = csvData.iloc[1:]
#Append Headers
csvData.columns = ticks
#Data contains Index number which is equals to feature columns count
# (PE ratio, Earning per share... vs.)
csvData.index = [0] * csvData.shape[0]
#Actual PCA math and data reduction
centeredData = preprocessing.scale(csvData.T)
pca = PCA()
pca.fit(centeredData)
reducedData = pca.transform(centeredData)
#Reformat data and prepare PCA result component labels for scatter graph
percentageVariance = np.round(pca.explained_variance_ratio_ * 100, decimals=1)
labels = ['Comp' + str(n) for n in range(1, len(percentageVariance)+1)]
#create pandas data frame matrix for 2d representation
frame = pd.DataFrame(reducedData, index=[*ticks], columns=labels)
#First 2 component of PCA analysis result contains most dominant data (out of 4 others in this case)
# Comp1 and Comp2 will be used to create scatter plot
plt.scatter(frame.Comp1, frame.Comp2)
plt.title('Bist 100 PCA Analysis (as 2021-05-08)')
plt.xlabel('Principle Component 1')
plt.ylabel('Principle Component 2')
for sample in frame.index:
plt.annotate(sample, (frame.Comp1.loc[sample], frame.Comp2.loc[sample]))
plt.show()
| [
"pandas.read_csv",
"matplotlib.pyplot.ylabel",
"sklearn.decomposition.PCA",
"numpy.round",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.annotate",
"matplotlib.pyplot.scatter",
"pandas.DataFrame",
"matplotlib.pyplot.title",
"sklearn.preprocessing.scale",
"matplotlib.pyplot.show"
] | [((215, 244), 'pandas.read_csv', 'pd.read_csv', (['"""ticks.norm.csv"""'], {}), "('ticks.norm.csv')\n", (226, 244), True, 'import pandas as pd\n'), ((672, 702), 'sklearn.preprocessing.scale', 'preprocessing.scale', (['csvData.T'], {}), '(csvData.T)\n', (691, 702), False, 'from sklearn import preprocessing\n'), ((709, 714), 'sklearn.decomposition.PCA', 'PCA', ([], {}), '()\n', (712, 714), False, 'from sklearn.decomposition import PCA\n'), ((884, 941), 'numpy.round', 'np.round', (['(pca.explained_variance_ratio_ * 100)'], {'decimals': '(1)'}), '(pca.explained_variance_ratio_ * 100, decimals=1)\n', (892, 941), True, 'import numpy as np\n'), ((1080, 1137), 'pandas.DataFrame', 'pd.DataFrame', (['reducedData'], {'index': '[*ticks]', 'columns': 'labels'}), '(reducedData, index=[*ticks], columns=labels)\n', (1092, 1137), True, 'import pandas as pd\n'), ((1294, 1331), 'matplotlib.pyplot.scatter', 'plt.scatter', (['frame.Comp1', 'frame.Comp2'], {}), '(frame.Comp1, frame.Comp2)\n', (1305, 1331), True, 'import matplotlib.pyplot as plt\n'), ((1332, 1382), 'matplotlib.pyplot.title', 'plt.title', (['"""Bist 100 PCA Analysis (as 2021-05-08)"""'], {}), "('Bist 100 PCA Analysis (as 2021-05-08)')\n", (1341, 1382), True, 'import matplotlib.pyplot as plt\n'), ((1383, 1418), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Principle Component 1"""'], {}), "('Principle Component 1')\n", (1393, 1418), True, 'import matplotlib.pyplot as plt\n'), ((1419, 1454), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Principle Component 2"""'], {}), "('Principle Component 2')\n", (1429, 1454), True, 'import matplotlib.pyplot as plt\n'), ((1560, 1570), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1568, 1570), True, 'import matplotlib.pyplot as plt\n'), ((1487, 1559), 'matplotlib.pyplot.annotate', 'plt.annotate', (['sample', '(frame.Comp1.loc[sample], frame.Comp2.loc[sample])'], {}), '(sample, (frame.Comp1.loc[sample], frame.Comp2.loc[sample]))\n', (1499, 1559), True, 'import matplotlib.pyplot as plt\n')] |
import random
import os
import time
import neat
import visualize
import pickle
from bareSnake import snakeGame
import numpy as np
import math
from neat.graphs import feed_forward_layers
from neat.graphs import required_for_output
import tensorflow as tf
tf.config.run_functions_eagerly(True)
import pandas as pd
df = pd.read_csv("testData3.csv")
df.drop(columns=['Unnamed: 0'])
hld = 2
dfMunch = df.query('intention == "munch"').drop(columns=['Unnamed: 0']).reset_index(drop=True)
dfWall = df.query('intention == "wall move"').drop(columns=['Unnamed: 0']).reset_index(drop=True)
dfFood = df.query('intention == "food move"').drop(columns=['Unnamed: 0']).reset_index(drop=True)
MunchMoves = [[],[]]
WallMoves = [[],[]]
FoodMoves = [[],[]]
for i in range(len(dfMunch)):
finalIns = []
finalOuts = []
ins = np.array(dfMunch.values[i][0][1:-1].split(','),dtype=float)
outs = np.array(dfMunch.values[i][1][1:-1].split(','),dtype=int)
for j in range(len(ins)):
finalIns.append(ins[j])
for j in range(len(outs)):
finalOuts.append(outs[j])
MunchMoves[0].append(finalIns)
MunchMoves[1].append(finalOuts)
for i in range(len(dfFood)):
ins = np.array(dfFood.values[i][0][1:-1].split(','),dtype=float)
outs = np.array(dfFood.values[i][1][1:-1].split(','),dtype=int)
FoodMoves[0].append(ins)
FoodMoves[1].append(outs)
for i in range(len(dfWall)):
ins = np.array(dfWall.values[i][0][1:-1].split(','),dtype=float)
outs = np.array(dfWall.values[i][1][1:-1].split(','),dtype=int)
WallMoves[0].append(ins)
WallMoves[1].append(outs)
hold = 8
def find_index(array):
s = np.array(array)
sort_index = np.argsort(s)
return sort_index
def run(config_file):
"""
runs the NEAT algorithm to train a neural network to play flappy bird.
:param config_file: location of config file
:return: None
"""
config = neat.config.Config(neat.DefaultGenome, neat.DefaultReproduction,
neat.DefaultSpeciesSet, neat.DefaultStagnation,
config_file)
p = neat.Population(config)
genomes = p.population.items()
genome1key = next(iter(p.population))
genome = p.population[genome1key]
print(genome1key)
print(genome)
net = neat.nn.FeedForwardNetwork.create(genome, config)
net = neat.nn.FeedForwardNetwork.create(genome, config)
lr = .1
batchSize = 400
epochSize = 100
OgAvgMunch = net.batchAcc(MunchMoves[0][0:batchSize],MunchMoves[1][0:batchSize])
OgAvgFood = net.batchAcc(FoodMoves[0][0:batchSize], FoodMoves[1][0:batchSize])
OgAvgWall = net.batchAcc(WallMoves[0][0:batchSize], WallMoves[1][0:batchSize])
asdf = 9
for k in range(epochSize):
net.backProp_GenomeFast(MunchMoves[0][0:batchSize],MunchMoves[1][0:batchSize],lr,genome)
#print(net.batchAcc(MunchMoves[0][0:batchSize],MunchMoves[1][0:batchSize]))
newAvgMunch = net.batchAcc(MunchMoves[0][0:batchSize],MunchMoves[1][0:batchSize])
asdfasdf = 95
print("at the end\n\n i hope")
print("the first acc is %d", OgAvgMunch)
print("the after training acc is $d", newAvgMunch)
if __name__ == '__main__':
#print('in start')
# Determine path to configuration file. This path manipulation is
# here so that the script will run successfully regardless of the
# current working directory.
local_dir = os.path.dirname(__file__)
config_path = os.path.join(local_dir, 'configParam2.txt')
run(config_path) | [
"pandas.read_csv",
"neat.Population",
"tensorflow.config.run_functions_eagerly",
"os.path.join",
"neat.nn.FeedForwardNetwork.create",
"numpy.argsort",
"numpy.array",
"os.path.dirname",
"neat.config.Config"
] | [((255, 292), 'tensorflow.config.run_functions_eagerly', 'tf.config.run_functions_eagerly', (['(True)'], {}), '(True)\n', (286, 292), True, 'import tensorflow as tf\n'), ((320, 348), 'pandas.read_csv', 'pd.read_csv', (['"""testData3.csv"""'], {}), "('testData3.csv')\n", (331, 348), True, 'import pandas as pd\n'), ((1653, 1668), 'numpy.array', 'np.array', (['array'], {}), '(array)\n', (1661, 1668), True, 'import numpy as np\n'), ((1686, 1699), 'numpy.argsort', 'np.argsort', (['s'], {}), '(s)\n', (1696, 1699), True, 'import numpy as np\n'), ((1915, 2045), 'neat.config.Config', 'neat.config.Config', (['neat.DefaultGenome', 'neat.DefaultReproduction', 'neat.DefaultSpeciesSet', 'neat.DefaultStagnation', 'config_file'], {}), '(neat.DefaultGenome, neat.DefaultReproduction, neat.\n DefaultSpeciesSet, neat.DefaultStagnation, config_file)\n', (1933, 2045), False, 'import neat\n'), ((2099, 2122), 'neat.Population', 'neat.Population', (['config'], {}), '(config)\n', (2114, 2122), False, 'import neat\n'), ((2289, 2338), 'neat.nn.FeedForwardNetwork.create', 'neat.nn.FeedForwardNetwork.create', (['genome', 'config'], {}), '(genome, config)\n', (2322, 2338), False, 'import neat\n'), ((2350, 2399), 'neat.nn.FeedForwardNetwork.create', 'neat.nn.FeedForwardNetwork.create', (['genome', 'config'], {}), '(genome, config)\n', (2383, 2399), False, 'import neat\n'), ((3410, 3435), 'os.path.dirname', 'os.path.dirname', (['__file__'], {}), '(__file__)\n', (3425, 3435), False, 'import os\n'), ((3454, 3497), 'os.path.join', 'os.path.join', (['local_dir', '"""configParam2.txt"""'], {}), "(local_dir, 'configParam2.txt')\n", (3466, 3497), False, 'import os\n')] |
import sys
import os
import glob
import logging
import operator
import time
import pickle
import multiprocessing as mp
import numpy as np
from datetime import datetime
from Bio.PDB import *
import copy
import gc
# python 3 compatibility
from functools import reduce
from past.builtins import map
sys.path.append('../../')
from config import *
sys.path.append(scripts_dir)
from utils import *
from pymol_helper import *
from classes import *
from validators import *
def rmsd(V, W):
D = len(V[0])
N = len(V)
rmsd = 0.0
for v, w in zip(V, W):
rmsd += sum([(v[i]-w[i])**2.0 for i in range(D)])
return np.sqrt(rmsd/N)
def kabsch(P, Q):
# Computation of the covariance matrix
C = np.dot(np.transpose(P), Q)
V, S, W = np.linalg.svd(C)
d = (np.linalg.det(V) * np.linalg.det(W)) < 0.0
if d:
S[-1] = -S[-1]
V[:, -1] = -V[:, -1]
# Create Rotation matrix U
U = np.dot(V, W)
return U
def kabsch_rmsd(P, Q):
P = rotate(P, Q)
return rmsd(P, Q)
def rotate(P, Q):
U = kabsch(P, Q)
# Rotate P
P = np.dot(P, U)
return P
def convert_array(c1, c2):
ret1 = []
ret2 = []
for i, j in zip(c1, c2):
if i == 0 or j == 0:
continue
ret1.append(i)
ret2.append(j)
return np.array(ret1), np.array(ret2)
def load_graph_data(fn):
graph_data = {}
fp = open(fn)
cnt = 0
for line in fp.readlines():
pieces = line.split()
node1 = strToNode(pieces[0])
node2 = strToNode(pieces[1])
if node1 not in graph_data:
graph_data[node1] = {}
if node2 not in graph_data:
graph_data[node2] = {}
# t1 t2 is for best alignment order
#(t1, t2, z-score, local_aln_indx, local_aln_indx, seq1, seq2, aln_score)
if node1 == strToNode(pieces[3]):
graph_data[node1][node2] = (pieces[3], pieces[4], float(pieces[2]), '', '', '', '', 0.)
graph_data[node2][node1] = (pieces[4], pieces[3], float(pieces[2]), '', '', '', '', 0.)
else:
graph_data[node1][node2] = (pieces[4], pieces[3], float(pieces[2]), '', '', '', '', 0.)
graph_data[node2][node1] = (pieces[3], pieces[4], float(pieces[2]), '', '', '', '', 0.)
cnt += 1
fp.close()
# print('Maximum number of edges in cluster graph: ' + str(cnt))
return graph_data
def load_cluster_alignment_data(alignment_data, clusters):
cluster_alignment_data = {}
for c_id in clusters:
cluster_alignment_data[c_id] = {}
for i in range(len(clusters[c_id])):
node1 = strToNode(clusters[c_id][i])
if node1 not in cluster_alignment_data[c_id]:
cluster_alignment_data[c_id][node1] = {}
for j in range(len(clusters[c_id])):
if i == j:
continue
node2 = strToNode(clusters[c_id][j])
if node2 not in cluster_alignment_data[c_id]:
cluster_alignment_data[c_id][node2] = {}
if node1 not in alignment_data or node2 not in alignment_data[node1]:
logger.error('ERROR: (' + str(node1) + ', ' + str(node2) + ') pair not found in graph file!')
sys.exit()
cluster_alignment_data[c_id][node1][node2] = alignment_data[node1][node2]
cluster_alignment_data[c_id][node2][node1] = alignment_data[node2][node1]
return cluster_alignment_data, get_loops_in_cluster(clusters)
def load_alignment_data(input_fname_base, alignment_dir, graphs_and_pickles_dir, alignment_fname, clusters, previous_graph_file_reused):
alignment_data_fname = os.path.join(graphs_and_pickles_dir, 'alignment_data_' + input_fname_base + '.pickle2')
if (sys.version_info >= (3, 0)):
alignment_data_fname = os.path.join(graphs_and_pickles_dir, 'alignment_data_' + input_fname_base + '.pickle3')
if previous_graph_file_reused == True:
if is_valid_pickle(alignment_data_fname, clusters) == True:
logger.info('Loading saved alignment data from previous run (In ' + alignment_data_fname[base_path_len:] + ') ...\n')
f = open(alignment_data_fname, 'rb')
cluster_alignment_data = pickle.load(f)
f.close()
return cluster_alignment_data
logger.info('Loading alignment data from alignment files.')
start_time = time.time()
alignment_data = load_graph_data(alignment_fname)
cluster_alignment_data, loops_node_list = load_cluster_alignment_data(alignment_data, clusters)
# print('Number of loops in cluster file: ' + str(len(loops_in_cluster)))
file_counter = 0
for node in loops_node_list:
for r1 in get_all_loop_combination(str(node)):
node1 = strToNode(r1)
# for fn in glob.glob(os.path.join(alignment_dir, '*.aln')):
fn = os.path.join(alignment_dir, r1 + '.aln')
if not os.path.isfile(fn):
return None
# stime = datetime.now()
file_counter += 1
print('Processsing ' + fn[base_path_len:] + ' ... (' + str(file_counter) + ')')
# sys.stdout.flush()
# r1 = os.path.basename(fn)[:-4]
# node1 = strToNode(r1)
# if node1 not in loops_in_cluster:
# continue
cid_nodelist_pair = find_nodes_in_cluster(node1, cluster_alignment_data)
fp = open(fn)
lines = fp.readlines()
fp.close()
# flag = 0
# print('No. of lines: ' + str(len(lines)))
# print('Connected nodes: ' + str(len(node_dict)))
line_index = 0
while line_index < len(lines):
# print 'Reading line ' + str(line_index)
# sys.exit()
if lines[line_index].startswith('# Aligning'):
test_r1 = lines[line_index].split('::')[1].split(' and ')[0].strip().strip(':')
if r1 != test_r1:
logger.error('ERROR: filename and loop mismatch. r1(filename): ' + r1 + ', r1(loop): ' + test_r1)
sys.exit()
r2 = lines[line_index].split('::')[1].split(' and ')[1].strip().strip(':')
node2 = strToNode(r2)
for c_id, node_dict in cid_nodelist_pair:
if node2 in node_dict:
t1 = cluster_alignment_data[c_id][node1][node2][0]
t2 = cluster_alignment_data[c_id][node1][node2][1]
# make sure the best alignment ordering is same as the ordering of loop in current file
if not ((r1 == t1 and r2 == t2) or (r1 == t2 and r2 == t1)):
# line_index += 12
continue
#safety condition for reverse order (might be redundant)
if (r1 == t2 and r2 == t1):
t1 = r2
t2 = r1
score_text = lines[line_index+1].split(':')[1].strip()
if score_text == '':
score = -50.
logger.error('ERROR: No alignment score found for: ' + r1 + ' and ' + r2)
sys.exit()
else:
score = float(score_text)
text = lines[line_index+3].split(':')[1].strip()
cr1 = get_local_alignment_index(r1, text)
text = lines[line_index+4].split(':')[1].strip()
cr2 = get_local_alignment_index(r2, text)
aln1 = lines[line_index+6].strip()
aln2 = lines[line_index+7].strip()
if len(aln1) == 0 or len(aln2) == 0:
# set dummy alignment
aln1 = 'A'
aln2 = 'A'
temp_cr1 = cr1.split(':')
dummy_index = temp_cr1[1].split('_')[0].split('-')[0]
cr1 = temp_cr1[0] + ':' + dummy_index + '-' + dummy_index
temp_cr2 = cr2.split(':')
dummy_index = temp_cr2[1].split('_')[0].split('-')[0]
cr2 = temp_cr2[0] + ':' + dummy_index + '-' + dummy_index
zscore = cluster_alignment_data[c_id][node1][node2][2]
cluster_alignment_data[c_id][node1][node2] = (t1, t2, zscore, cr1, cr2, aln1, aln2, score)
cluster_alignment_data[c_id][node2][node1] = (t2, t1, zscore, cr2, cr1, aln2, aln1, score)
# break
# we can skip at least 11 lines from current alignment data
line_index += 11
line_index += 1
# while end
# etime = datetime.now()
# difftime = (etime - stime).total_seconds()
# print('Time taken: ')
# print(difftime)
# break
f = open(alignment_data_fname,"wb")
pickle.dump(cluster_alignment_data, f)
f.close()
logger.info('Done')
logger.info('Time taken: ' + str(round((time.time() - start_time), 3)) + ' seconds.\n')
return cluster_alignment_data
def extract_atom_coordinate(loop_coord, pdb_pm, pdb_id):
loop_coord_backbone, loop_coord_sugar = loop_coord
aligned_segment_coord = []
for chain_id, index, icode in pdb_pm:
if chain_id == '':
continue
if (pdb_id, chain_id, index, icode) in loop_coord_backbone and loop_coord_backbone[(pdb_id, chain_id, index, icode)] != 0.:
aligned_segment_coord.append(loop_coord_backbone[(pdb_id, chain_id, index, icode)])
if (pdb_id, chain_id, index, icode) in loop_coord_sugar and loop_coord_sugar[(pdb_id, chain_id, index, icode)] != 0.:
aligned_segment_coord.append(loop_coord_sugar[(pdb_id, chain_id, index, icode)])
return aligned_segment_coord
def generate_rmsd_data(input_fname_base, partial_pdbx_dir, graphs_and_pickles_dir, alignment_data, clusters, loop_list, previous_graph_file_reused):
rmsd_data_fname = os.path.join(graphs_and_pickles_dir, 'rmsd_data_' + input_fname_base + '.pickle2')
if (sys.version_info >= (3, 0)):
rmsd_data_fname = os.path.join(graphs_and_pickles_dir, 'rmsd_data_' + input_fname_base + '.pickle3')
if previous_graph_file_reused == True:
if is_valid_pickle(rmsd_data_fname, clusters) == True:
logger.info('Loading saved RMSD data from previous run (In ' + rmsd_data_fname[base_path_len:] + ') ...\n')
f = open(rmsd_data_fname, 'rb')
rmsd_data_dict = pickle.load(f)
f.close()
return rmsd_data_dict
# print(alignment_data['GNGA'][strToNode('4V9F_0:2621-2626')][strToNode('4V9F_0:460-465')])
# print(alignment_data['GNAA'][strToNode('4V9F_0:2621-2626')][strToNode('4V9F_0:460-465')])
# sys.exit()
logger.info('Generating RMSD data.')
start_time = time.time()
rmsd_data_dict = {}
coord_dict = {}
pdb_structure = None
prev_pdb_chain = ''
structure_counter = 0
# for lp in loop_list:
# pdb_chain, regions = lp.split(':')
# pdb = pdb_chain.split('_')[0]
# pdb_pm = get_pdb_index_list(lp)
# if prev_pdb_chain != pdb_chain:
# pdb_structure = None
# else:
# structure_counter += 1
# if structure_counter % 500 == 0:
# gc.collect()
# coord_backbone, coord_sugar, pdb_structure = get_atom_coordinate(os.path.join(pdbx_dir, pdb+'.cif'), pdb_pm, pdb_structure)
# coord_dict[lp] = (coord_backbone, coord_sugar)
# prev_pdb_chain = pdb_chain
for lp in loop_list:
pdb_pm = get_pdb_index_list(lp)
coord_backbone, coord_sugar, pdb_structure = get_atom_coordinate(os.path.join(partial_pdbx_dir, lp + '.cif'), pdb_pm)
coord_dict[lp] = (coord_backbone, coord_sugar)
# time_align_residue = 0
# time_get_coordinate = 0
# time_rmsd = 0
# time_start = time.time()
for cluster_id in alignment_data:
# if cluster_id not in clusters:
# continue
sum_of_avg_rmsd_for_c = 0.
rmsd_data_list_dict = {}
index_dict = {}
i = 0
# print(loop_list)
for l1 in alignment_data[cluster_id]:
index_dict[l1] = i
i += 1
# pdb_chain_dict = {}
# pdb_res_mapping_dict = {}
# fasta_seq_dict = {}
# for l1 in alignment_data[cluster_id]:
# pdb_chain, _ = str(l1).strip().split(':')
# pdb_id, chain_id = pdb_chain.strip().split('_')
# if pdb_id not in pdb_chain_dict:
# pdb_chain_dict[pdb_id] = []
# pdb_chain_dict[pdb_id].append(chain_id)
# if pdb_chain not in pdb_res_mapping_dict:
# pdb_res_mapping_dict[pdb_chain] = load_pdb_res_map(pdb_chain)
# for pdb_id in pdb_chain_dict:
# fasta_seq_dict.update(load_fasta_seq(pdb_id, pdb_chain_dict[pdb_id]))
pdb_res_mapping_dict, fasta_seq_dict = load_pdb_fasta_mapping_and_fasta_seq_dict(cluster_id, alignment_data)
# i = 0
for l1 in alignment_data[cluster_id]:
# if str(l1) not in loop_list:
# continue
fit_ret = []
sum_of_rmsd_for_l1 = 0.
# rmsd_data_list_item = {}
# j = 0
for l2 in alignment_data[cluster_id][l1]:
# if str(l2) not in loop_list:
# continue
if l1 != l2:
# print(cluster_id)
r1, r2, zscore, cr1, cr2, aln_1, aln_2, score = alignment_data[cluster_id][l1][l2]
# print('r1, r2: ')
# print(r1, r2)
# print(r1, r2, zscore, cr1, cr2, aln_1, aln_2, score)
# if output_env == 'local':
# time_s = time.time()
pdb1_pm, pdb2_pm, i1_pm, i2_pm = aln_residue_temp(pdb_res_mapping_dict, fasta_seq_dict, r1, r2, cr1, cr2, aln_1, aln_2, 0, len(aln_1)-1, 0)
# time_align_residue += time.time() - time_s
# else:
# pdb1_pm, pdb2_pm, i1_pm, i2_pm = aln_residue(r1, r2, cr1, cr2, aln_1, aln_2, 0, len(aln_1)-1, 0)
pdb_chain1, _ = r1.split(':')
pdb_chain2, _ = r2.split(':')
pdb1 = pdb_chain1.split('_')[0]
pdb2 = pdb_chain2.split('_')[0]
# structures = {}
#returns centroid of backbone atoms
# time_s = time.time()
coord1 = extract_atom_coordinate(coord_dict[str(l1)], pdb1_pm, pdb1)
coord2 = extract_atom_coordinate(coord_dict[str(l2)], pdb2_pm, pdb2)
# time_get_coordinate += time.time() - time_s
# print(coord1, coord2)
X, Y = convert_array(coord1, coord2)
if len(X) != len(Y):
logger.warning('WARNING: Corresponding co-ordinates for alignments not found! rmsd = 20 assigned.')
rmsd = 20.
elif len(X) == 0:
logger.warning('WARNING: Co-ordinates for alignments not found! rmsd = 20 assigned.')
rmsd = 20.
else:
XC = sum(X)/len(X)
YC = sum(Y)/len(Y)
# calculating relative co-ordinate using mean as reference
X -= XC
Y -= YC
# time_s = time.time()
rmsd = kabsch_rmsd(X, Y)
# time_rmsd += time.time() - time_s
sum_of_rmsd_for_l1 += rmsd
# X.shape[0] represents the number of aligned nucleotides
# fit_ret.append((index_dict[l2], str(l2), rmsd, X.shape[0]))
fit_ret.append((index_dict[l2], str(l2), rmsd, len(pdb1_pm)))
# end of if
# j += 1
# end of l2 for loop
# time_diff = time.time() - time_start
# if time_diff > 30:
# print(cluster_id, l1)
# print('time_align_residue', time_align_residue)
# print('time_get_coordinate', time_get_coordinate)
# print('time_rmsd', time_rmsd)
# time_start = time.time()
# print('')
avg_of_rmsd_for_l1 = 0.0
if (len(clusters[cluster_id]) - 1) > 0:
avg_of_rmsd_for_l1 = sum_of_rmsd_for_l1 / (len(clusters[cluster_id]) - 1)
sum_of_avg_rmsd_for_c += avg_of_rmsd_for_l1
# print str(i)+','+l1+'\t'+'|'.join(map(lambda x: str(x[0])+','+x[1]+','+str(x[2])+','+str(x[3]), sorted(fit_ret, key=lambda x: x[2])))
rmsd_data_list_dict[(index_dict[l1], str(l1))] = (avg_of_rmsd_for_l1, sorted(fit_ret, key=lambda x: x[2]))
# i += 1
# end of l1 for loop
avg_of_avg_rmsd_for_c = 0.0
if len(clusters[cluster_id]) > 0:
avg_of_avg_rmsd_for_c = sum_of_avg_rmsd_for_c / len(clusters[cluster_id])
rmsd_data_dict[cluster_id] = (avg_of_avg_rmsd_for_c, rmsd_data_list_dict) # sorted(rmsd_data_list_dict, key=lambda x: x[0][1]) #order by loop average
f = open(rmsd_data_fname,"wb")
pickle.dump(rmsd_data_dict, f)
f.close()
logger.info('Done')
logger.info('Time taken: ' + str(round((time.time() - start_time), 3)) + ' seconds.\n')
return rmsd_data_dict
def read_pdb_chain_organism_details(fname):
fp = open(fname)
first_line = True
pdb_organism_details = {}
for line in fp.readlines():
if first_line:
first_line = False
continue
pieces = line.strip('\n').strip('\r').split('\t')
# For each chain, store RNA Types, Organism, Class, Type (Manually Defined), Source
if len(pieces) > 0:
pdb_organism_details[pieces[0].strip()] = pieces[1:]
fp.close()
return pdb_organism_details
def remove_based_on_zscore(zscore, rmsd, align_length, is_alignment_from_user):
# if cluster_source == 'DeNovo':
if is_alignment_from_user == False:
# zscore < 0.0
if get_zscore_rank(zscore) == 100:
return True
# zscore 0 to 0.5, rmsd >= 1.0
if get_zscore_rank(zscore) >= 5 and get_rmsd_rank(rmsd, align_length, is_length_adjusted_score) >= 3:
return True
# zscore 0.5 to 1, rmsd >= 2.0
if get_zscore_rank(zscore) == 4 and get_rmsd_rank(rmsd, align_length, is_length_adjusted_score) >= 4:
return True
return False
def remove_based_on_rmsd(rmsd, align_length):
# rmsd >= 4.0
if get_rmsd_rank(rmsd, align_length, is_length_adjusted_score) >= 5:
return True
return False
def extreme_filtering_based_on_rmsd(rmsd, align_length):
if extreme_filtering == True and rmsd > rmsd_threshold_for_merging:
return True
return False
def get_loop_string_for_filtering_log(r):
loop_str = ''
r_pdb_ind = convert_a_loop_from_FASTA_to_PDB(r)
loop_str = r_pdb_ind
if input_index_type == 'fasta':
loop_str += ' (PDB) ' + r + ' (FASTA)'
return loop_str
def filter_loops_in_cluster(clusters, rmsd_data_dict, alignment_data, is_alignment_from_user):
current_rmsd_data_dict = copy.deepcopy(rmsd_data_dict)
removed_loops = 0
while True:
max_cid_len = max([len(x) for x in clusters])
filtered_cluster = {}
for cluster_id in sorted(clusters):
loops = clusters[cluster_id]
filtered_loops = []
for i in range(len(loops)):
loops[i] = str(strToNode(loops[i]))
_, cluster_pairwise_align_details = current_rmsd_data_dict[cluster_id]
align_len_threshold = generate_align_length_threshold(cluster_pairwise_align_details)
for (i, r1) in cluster_pairwise_align_details:
if r1 in loops:
_, pairwise_align_details = cluster_pairwise_align_details[(i, r1)]
j, r2, rmsd, align_length = find_best_aligned_pair(pairwise_align_details, align_len_threshold)
# (t1, t2, zscore, cr1, cr2, aln1, aln2, score) = alignment_data[cluster_id.strip().split('_')[0]][strToNode(r1)][strToNode(r2)]
(t1, t2, zscore, cr1, cr2, aln1, aln2, score) = alignment_data[cluster_id][strToNode(r1)][strToNode(r2)]
if extreme_filtering == True and not is_acceptable_align_len(align_length, align_len_threshold):
logger.info('Filtering ' + get_loop_string_for_filtering_log(r1).ljust(75) + ' from ' + str(cluster_id).ljust(max_cid_len) + ' based on length \t(align_length: ' + str(align_length) + ') [Extreme filtering].')
removed_loops += 1
elif extreme_filtering_based_on_rmsd(rmsd, align_length):
logger.info('Filtering ' + get_loop_string_for_filtering_log(r1).ljust(75) + ' from ' + str(cluster_id).ljust(max_cid_len) + ' based on rmsd \t(zscore: ' + "{:.3f}".format(round(zscore, 3)) + ', rmsd: ' + "{:.3f}".format(round(rmsd, 3)) + ') [Extreme filtering].')
removed_loops += 1
elif remove_based_on_zscore(zscore, rmsd, align_length, is_alignment_from_user):
logger.info('Filtering ' + get_loop_string_for_filtering_log(r1).ljust(75) + ' from ' + str(cluster_id).ljust(max_cid_len) + ' based on zscore\t(zscore: ' + "{:.3f}".format(round(zscore, 3)) + ', rmsd: ' + "{:.3f}".format(round(rmsd, 3)) + ').')
removed_loops += 1
elif remove_based_on_rmsd(rmsd, align_length):
logger.info('Filtering ' + get_loop_string_for_filtering_log(r1).ljust(75) + ' from ' + str(cluster_id).ljust(max_cid_len) + ' based on rmsd \t(zscore: ' + "{:.3f}".format(round(zscore, 3)) + ', rmsd: ' + "{:.3f}".format(round(rmsd, 3)) + ').')
removed_loops += 1
else:
filtered_loops.append(r1)
# filtered_loops = list(set(filtered_loops))
if len(filtered_loops) > 1:
filtered_cluster[cluster_id] = filtered_loops
else:
removed_loops += len(filtered_loops)
if len(get_loops_in_cluster(filtered_cluster)) == len(get_loops_in_cluster(clusters)):
break
clusters = copy.deepcopy(filtered_cluster)
for cluster_id in clusters:
loops = clusters[cluster_id]
current_rmsd_data_dict[cluster_id] = extract_current_rmsd_data_dict(rmsd_data_dict, cluster_id, loops)
if removed_loops > 0:
logger.info('Removed ' + str(removed_loops) + ' loop' + ('s' if removed_loops > 1 else '') + ' from input data through filtering based on zvalue and rmsd.\n')
return filtered_cluster
# def filter_loops_in_cluster_denovo_result_analysis(clusters, rmsd_data_dict, alignment_data):
# current_rmsd_data_dict = copy.deepcopy(rmsd_data_dict)
# removed_loops = 0
# while True:
# filtered_cluster = {}
# for c_id in sorted(clusters, key=lambda x: x):
# loops = clusters[c_id]
# filtered_loops = []
# for i in range(len(loops)):
# loops[i] = str(strToNode(loops[i]))
# for cluster_id in sorted(current_rmsd_data_dict, key= lambda x: x):
# _, cluster_pairwise_align_details = current_rmsd_data_dict[cluster_id]
# align_len_threshold = generate_align_length_threshold(cluster_pairwise_align_details)
# for (i, r1) in cluster_pairwise_align_details:
# if r1 in loops:
# _, pairwise_align_details = cluster_pairwise_align_details[(i, r1)]
# j, r2, rmsd, align_length = find_best_aligned_pair(pairwise_align_details, align_len_threshold)
# # (t1, t2, zscore, cr1, cr2, aln1, aln2, score) = alignment_data[cluster_id.strip().split('_')[0]][strToNode(r1)][strToNode(r2)]
# (t1, t2, zscore, cr1, cr2, aln1, aln2, score) = alignment_data[cluster_id][strToNode(r1)][strToNode(r2)]
# if remove_based_on_zscore(zscore, rmsd, align_length):
# logger.info('removing ' + r1 + ' from ' + cluster_id + ' based on zscore (zscore: ' + str(zscore) + ', rmsd: ' + str(rmsd) + ').')
# removed_loops += 1
# elif remove_based_on_rmsd(rmsd, align_length):
# logger.info('removing ' + r1 + ' from ' + cluster_id + ' based on rmsd (zscore: ' + str(zscore) + ', rmsd: ' + str(rmsd) + ').')
# removed_loops += 1
# else:
# filtered_loops.append(r1)
# filtered_loops = list(set(filtered_loops))
# if len(filtered_loops) > 1:
# filtered_cluster[c_id] = filtered_loops
# else:
# removed_loops += len(filtered_loops)
# if len(get_loops_in_cluster(filtered_cluster)) == len(get_loops_in_cluster(clusters)):
# break
# clusters = copy.deepcopy(filtered_cluster)
# for cluster_id in clusters:
# loops = clusters[cluster_id]
# current_rmsd_data_dict[cluster_id] = extract_current_rmsd_data_dict(rmsd_data_dict, cluster_id, loops)
# logger.info('Removed Loops from clusters through filtering zvalue and rmsd: ' + str(removed_loops))
# return filtered_cluster
def generate_length_adjusted_rmsd_score(rmsd_data_dict):
length_adjusted_rmsd_score_dict = {}
for cluster_id in rmsd_data_dict:
_, rmsd_data_list_dict = rmsd_data_dict[cluster_id]
# total_rmsd = 0.0
new_rmsd_data_list_dict = {}
rmsd_align_len_list = []
for (i, r1) in rmsd_data_list_dict:
_, pairwise_align_details = rmsd_data_list_dict[(i, r1)]
rmsd_align_len_list_for_r1 = []
# total_rmsd_for_r1 = 0.0
new_pairwise_align_details = []
for (j, r2, rmsd, align_length) in pairwise_align_details:
adjusted_score = rmsd / math.sqrt(align_length)
new_pairwise_align_details.append((j, r2, adjusted_score, align_length))
# total_rmsd_for_r1 += adjusted_score
rmsd_align_len_list_for_r1.append((adjusted_score, align_length))
# avg_rmsd_for_r1 = total_rmsd_for_r1 / len(new_pairwise_align_details)
avg_rmsd_for_r1, total_align_len_for_r1 = get_weighted_avg_rmsd(rmsd_align_len_list_for_r1)
new_rmsd_data_list_dict[(i, r1)] = (avg_rmsd_for_r1, sorted(new_pairwise_align_details, key=lambda x: x[2]))
# total_rmsd += avg_rmsd_for_r1
rmsd_align_len_list.append((avg_rmsd_for_r1, total_align_len_for_r1))
# avg_rmsd = total_rmsd / len(new_rmsd_data_list_dict)
avg_rmsd, total_align_len = get_weighted_avg_rmsd(rmsd_align_len_list)
length_adjusted_rmsd_score_dict[cluster_id] = (avg_rmsd, new_rmsd_data_list_dict)
return length_adjusted_rmsd_score_dict
# def extract_current_rmsd_data_dict_denovo_analysis(rmsd_data_dict, loops):
# for i in range(len(loops)):
# loops[i] = str(strToNode(loops[i]))
# new_rmsd_data_list_dict = {}
# # total_rmsd = 0.0
# rmsd_align_len_list = []
# for cluster_id in rmsd_data_dict:
# _, rmsd_data_list_dict = rmsd_data_dict[cluster_id]
# not_found_count = 0
# for (i, r1) in rmsd_data_list_dict:
# if r1 in loops:
# _, pairwise_align_details = rmsd_data_list_dict[(i, r1)]
# # total_rmsd_for_r1 = 0.0
# rmsd_align_len_list_for_r1 = []
# new_pairwise_align_details = []
# for (j, r2, rmsd, align_length) in pairwise_align_details:
# if r2 in loops:
# new_pairwise_align_details.append((j, r2, rmsd, align_length))
# rmsd_align_len_list_for_r1.append((rmsd, align_length))
# # total_rmsd_for_r1 += rmsd
# avg_rmsd_for_r1, total_align_len_for_r1 = get_weighted_avg_rmsd(rmsd_align_len_list_for_r1)
# # avg_rmsd_for_r1 = 0.0
# # if len(new_pairwise_align_details) > 0:
# # avg_rmsd_for_r1 = total_rmsd_for_r1 / len(new_pairwise_align_details)
# new_rmsd_data_list_dict[(i, r1)] = (avg_rmsd_for_r1, sorted(new_pairwise_align_details, key=lambda x: x[2]))
# rmsd_align_len_list.append((avg_rmsd_for_r1, total_align_len_for_r1))
# # total_rmsd += avg_rmsd_for_r1
# else:
# # print r1 + ' not found'
# not_found_count += 1
# #sys.exit()
# # print str(not_fount_count) + ' loops not found.'
# avg_rmsd, total_align_len = get_weighted_avg_rmsd(rmsd_align_len_list)
# # avg_rmsd = 0.0
# # if len(new_rmsd_data_list_dict) > 0:
# # avg_rmsd = total_rmsd / len(new_rmsd_data_list_dict)
# return (avg_rmsd, new_rmsd_data_list_dict)
def extract_current_rmsd_data_dict(rmsd_data_dict, cluster_id, loops):
for i in range(len(loops)):
loops[i] = str(strToNode(loops[i]))
new_rmsd_data_list_dict = {}
# total_rmsd = 0.0
rmsd_align_len_list = []
_, rmsd_data_list_dict = rmsd_data_dict[cluster_id]
not_found_count = 0
for (i, r1) in rmsd_data_list_dict:
if r1 in loops:
_, pairwise_align_details = rmsd_data_list_dict[(i, r1)]
# total_rmsd_for_r1 = 0.0
rmsd_align_len_list_for_r1 = []
new_pairwise_align_details = []
for (j, r2, rmsd, align_length) in pairwise_align_details:
if r2 in loops:
new_pairwise_align_details.append((j, r2, rmsd, align_length))
rmsd_align_len_list_for_r1.append((rmsd, align_length))
# total_rmsd_for_r1 += rmsd
avg_rmsd_for_r1, total_align_len_for_r1 = get_weighted_avg_rmsd(rmsd_align_len_list_for_r1)
# avg_rmsd_for_r1 = 0.0
# if len(new_pairwise_align_details) > 0:
# avg_rmsd_for_r1 = total_rmsd_for_r1 / len(new_pairwise_align_details)
new_rmsd_data_list_dict[(i, r1)] = (avg_rmsd_for_r1, sorted(new_pairwise_align_details, key=lambda x: x[2]))
rmsd_align_len_list.append((avg_rmsd_for_r1, total_align_len_for_r1))
# total_rmsd += avg_rmsd_for_r1
else:
# print r1 + ' not found'
not_found_count += 1
#sys.exit()
# print str(not_fount_count) + ' loops not found.'
avg_rmsd, total_align_len = get_weighted_avg_rmsd(rmsd_align_len_list)
# avg_rmsd = 0.0
# if len(new_rmsd_data_list_dict) > 0:
# avg_rmsd = total_rmsd / len(new_rmsd_data_list_dict)
return (avg_rmsd, new_rmsd_data_list_dict)
def load_alignment_and_rmsd_data(clusters, loop_list, input_fname_base, partial_pdbx_dir, alignment_dir, graphs_and_pickles_dir, previous_graph_file_reused):
graph_fname = os.path.join(graphs_and_pickles_dir, input_fname_base + '.z.graph')
alignment_data = load_alignment_data(input_fname_base, alignment_dir, graphs_and_pickles_dir, graph_fname, clusters, previous_graph_file_reused)
if alignment_data == None:
return None, None
rmsd_data_dict = generate_rmsd_data(input_fname_base, partial_pdbx_dir, graphs_and_pickles_dir, alignment_data, clusters, loop_list, previous_graph_file_reused)
return alignment_data, rmsd_data_dict
# def generate_superimposition_images(removable_text_file_list, partial_pdbx_dir, alignment_dir, superimposition_output_dir, subfamily_details_dir, loop_type, summary_dir, subfamilies_dir, superimposition_details_dir, representative_dir, progressive_dir, graphs_and_pickles_dir, pymol_session_dir, user_input_fname, clusters, loop_list, previous_graph_file_reused, is_alignment_from_user, draw_figures, filter_cluster, set_view_manually, show_extended_loop):
def generate_superimposition_images(clusters, loop_list, alignment_data, rmsd_data_dict, draw_figures, filter_cluster, set_view_manually, show_extended_loop, is_alignment_from_user, user_input_fname, removable_text_file_list, directories, loop_type):
(partial_pdbx_dir, summary_dir, subfamilies_dir, subfamily_details_dir, representative_dir, superimposition_output_dir, superimposition_details_dir, progressive_dir, pymol_session_dir) = directories
if draw_figures == True:
logger.info('Generating superimposition image and output files ...\n')
else:
logger.info('Generating superimposition files ...\n')
start_time = time.time()
length_adjusted_rmsd_score_dict = rmsd_data_dict
if is_length_adjusted_score:
length_adjusted_rmsd_score_dict = generate_length_adjusted_rmsd_score(rmsd_data_dict)
pdb_organism_details = read_pdb_chain_organism_details(os.path.join(lib_dir, 'PDB_Chain_Organism_Details.tsv'))
pdb_organism_details_scrapped = read_pdb_chain_organism_details(os.path.join(lib_dir, 'PDB_Chain_Organism_Details_scrapped.tsv'))
for pdb_chain in pdb_organism_details_scrapped:
if pdb_chain not in pdb_organism_details:
pdb_organism_details[pdb_chain] = pdb_organism_details_scrapped[pdb_chain]
if filter_cluster:
clusters = filter_loops_in_cluster(clusters, length_adjusted_rmsd_score_dict, alignment_data, is_alignment_from_user)
include_organism_info = True
current_rmsd_data_dict = {}
for cluster_id in clusters:
loops = clusters[cluster_id]
for lp in loops:
pdb_chain = lp.strip().split(':')[0]
if pdb_chain not in pdb_organism_details:
include_organism_info = False
break
# print(cluster_id,len(loops))
logger.info('Extracting rmsd data dict for ' + cluster_id)
current_rmsd_data_dict[cluster_id] = extract_current_rmsd_data_dict(length_adjusted_rmsd_score_dict, cluster_id, loops)
_, cluster_pairwise_alignment_details = current_rmsd_data_dict[cluster_id]
logger.info('Completed extracting rmsd data dict for ' + cluster_id)
# print(len(cluster_pairwise_alignment_details))
# print(current_rmsd_data_dict[cluster_id])
# print('\n')
# sys.exit()
if include_organism_info == False and output_env == 'global':
pdb_organism_details = {}
# generate_pymol_images(current_rmsd_data_dict, loop_type, pymol_image_dir, alignment_data, mapping_dir, pdb_dir, aligned_dir, is_cif, is_normalized_score, merge_components, pdb_organism_details, log_file_list, is_length_adjusted_score, draw_pymol_figure)
time_in_distance_calc = generate_pymol_images(0, removable_text_file_list, partial_pdbx_dir, summary_dir, superimposition_output_dir, subfamily_details_dir, superimposition_details_dir, representative_dir, pymol_session_dir, current_rmsd_data_dict, alignment_data, pdb_organism_details, loop_type, set_view_manually, draw_figures, show_extended_loop)
if draw_figures == True:
logger.info('Superimposition image and output file generation complete.')
else:
if set_view_manually == True:
logger.info('View files for the first loop(s) set successfully.')
return
else:
logger.info('Superimposition file generation complete.')
logger.info('Time taken: ' + str(round((time.time() - start_time), 3)) + ' seconds.')
print('\nProcessed input file: ' + os.path.join(data_dir, user_input_fname)[base_path_len:])
print('Basic configurations:')
print('Input index type: ' + input_index_type)
print('Annotation source: ' + annotation_source)
print('Traversal algorithm: ' + traversal_algorithm)
print('\nFor generated text outputs, please check the following directories')
print('==================================================================')
print('Superimposition details: '.ljust(60) + superimposition_details_dir[base_path_len:])
print('Annotation of representative motifs: '.ljust(60) + representative_dir[base_path_len:])
print('Subfamilywise annotations of all motifs: '.ljust(60) + os.path.join(superimposition_output_dir, 'subfamilywise_bp_ann')[base_path_len:])
print('Subfamily summary and familywise align length threshold: '.ljust(60) + summary_dir[base_path_len:])
if draw_figures == True:
print('\nFor generated image outputs, please check the following directories')
print('===================================================================')
print('Superimposition outputs: '.ljust(60) + subfamilies_dir[base_path_len:])
print('Representative motifs: '.ljust(60) + representative_dir[base_path_len:])
print('Progressive superimposition images: '.ljust(60) + progressive_dir[base_path_len:])
if output_env == 'local':
print('')
print('Time in distance calculation: ' + str(time_in_distance_calc) + ' seconds.')
# # Rotate the first loop of the cluster to define the orientation
def rotate_first_loop_alignto(load_name, rotation_matrix):
pdb_data = get_pdb_coordinates(load_name)
pdb_translated = pdb_data# - centroid
pdb_rotated = numpy.dot(pdb_translated, rotation_matrix)
alter_structure(pdb_rotated, load_name)
def generate_superimposition_images_using_alignto(superimposition_output_dir, partial_pdbx_dir, clusters, draw_figures):
if draw_figures == False:
return
try:
import pymol
from pymol import stored
except Exception as e:
try:
sys.path.append(pymol_py3_dir)
import pymol
from pymol import stored
except Exception as e:
logger.error('PyMOL not found.')
sys.exit()
logger.info('Generating superimposition image files using pymol default alignto.\n')
start_time = time.time()
pymol.finish_launching(['pymol', '-cq'])
# pymol.finish_launching()
# alignto_methods = ['align', 'super', 'cealign']
alignto_methods = ['align', 'super']
# alignto_methods = ['align']
# alignto_methods = ['super']
# alignto_methods = ['cealign'] # edit /usr/lib/python2.7/dist-packages/pymol/fitting.py line 30: window=8 => window=5 or 4
output_dir = os.path.join(superimposition_output_dir, 'alignto_output')
create_directory(output_dir)
for cluster_id in clusters:
loops = clusters[cluster_id]
# loops = list(set(loops))
converted_loops = []
reset_pymol()
r1 = ''
for i, loop in enumerate(loops):
load_color = 'red' if i == 0 else 'green'
converted_loops.append(convert_a_loop_from_FASTA_to_PDB(loop))
load_name = 'loop_'+str(i)
if i == 0:
r1 = loop
# print('setting r1 to ' + r1)
# sys.exit()
pymol.cmd.load(os.path.join(partial_pdbx_dir, loop+'.cif'), load_name)
pymol.cmd.hide('everything', load_name)
pymol.cmd.show('cartoon', load_name)
pymol.cmd.color(load_color, load_name)
# pymol.commanding.sync()
pymol.cmd.sync()
for method in alignto_methods:
rotation_matrices = get_multiple_orientation_rotation_matrices()
for v, rotation_matrix in enumerate(rotation_matrices):
rotation_version = 'v' + str(v + 1)
image_fname = os.path.join(superimposition_output_dir, 'alignto_output', cluster_id + '_' + method + '_' + rotation_version + '.png')
align_to_target = 'loop_0'
view_fn = os.path.join(views_dir, str(r1) + '.view')
if os.path.isfile(view_fn):
logger.info('View file found for ' + r1 + '. Setting view of this loop for all loops in this cluster.')
fv = open(view_fn)
view_lines = fv.readlines()
fv.close()
pymol.cmd.set_view(view_lines[0].strip())
# sys.exit()
# rotate_first_loop_alignto(align_to_target, rotation_matrix)
# pymol.cmd.show('cartoon', align_to_target)
pymol.cmd.alignto(align_to_target, method)
# if os.path.isfile(view_fn):
# logger.info('View file found for ' + r1 + '. Setting view of this loop for all loops in this cluster.')
# fv = open(view_fn)
# view_lines = fv.readlines()
# fv.close()
# pymol.cmd.set_view(view_lines[0].strip())
# print(v)
# pymol.cmd._do('zoom')
pymol.cmd.zoom()
pymol.cmd.sync()
# pymol.cmd._do('set ray_opaque_background, 0')
# pymol.cmd.set(name='ray_opaque_background',value=0,quiet=1)
pymol.cmd.png(image_fname, 1200, 1200, dpi=300, ray=1, quiet=1)
pymol.cmd.sync()
logger.info('Superimposition image generation (using PyMol \'alignto\') complete.')
logger.info('Time taken: ' + str(round((time.time() - start_time), 3)) + ' seconds.')
| [
"numpy.sqrt",
"numpy.array",
"pymol.finish_launching",
"copy.deepcopy",
"sys.exit",
"pymol.cmd.zoom",
"sys.path.append",
"pymol.cmd.png",
"numpy.dot",
"pymol.cmd.color",
"pymol.cmd.show",
"pickle.load",
"pymol.cmd.hide",
"os.path.isfile",
"numpy.linalg.svd",
"pymol.cmd.alignto",
"num... | [((298, 323), 'sys.path.append', 'sys.path.append', (['"""../../"""'], {}), "('../../')\n", (313, 323), False, 'import sys\n'), ((345, 373), 'sys.path.append', 'sys.path.append', (['scripts_dir'], {}), '(scripts_dir)\n', (360, 373), False, 'import sys\n'), ((629, 646), 'numpy.sqrt', 'np.sqrt', (['(rmsd / N)'], {}), '(rmsd / N)\n', (636, 646), True, 'import numpy as np\n'), ((758, 774), 'numpy.linalg.svd', 'np.linalg.svd', (['C'], {}), '(C)\n', (771, 774), True, 'import numpy as np\n'), ((930, 942), 'numpy.dot', 'np.dot', (['V', 'W'], {}), '(V, W)\n', (936, 942), True, 'import numpy as np\n'), ((1088, 1100), 'numpy.dot', 'np.dot', (['P', 'U'], {}), '(P, U)\n', (1094, 1100), True, 'import numpy as np\n'), ((3706, 3797), 'os.path.join', 'os.path.join', (['graphs_and_pickles_dir', "('alignment_data_' + input_fname_base + '.pickle2')"], {}), "(graphs_and_pickles_dir, 'alignment_data_' + input_fname_base +\n '.pickle2')\n", (3718, 3797), False, 'import os\n'), ((4439, 4450), 'time.time', 'time.time', ([], {}), '()\n', (4448, 4450), False, 'import time\n'), ((9410, 9448), 'pickle.dump', 'pickle.dump', (['cluster_alignment_data', 'f'], {}), '(cluster_alignment_data, f)\n', (9421, 9448), False, 'import pickle\n'), ((10504, 10590), 'os.path.join', 'os.path.join', (['graphs_and_pickles_dir', "('rmsd_data_' + input_fname_base + '.pickle2')"], {}), "(graphs_and_pickles_dir, 'rmsd_data_' + input_fname_base +\n '.pickle2')\n", (10516, 10590), False, 'import os\n'), ((11377, 11388), 'time.time', 'time.time', ([], {}), '()\n', (11386, 11388), False, 'import time\n'), ((17938, 17968), 'pickle.dump', 'pickle.dump', (['rmsd_data_dict', 'f'], {}), '(rmsd_data_dict, f)\n', (17949, 17968), False, 'import pickle\n'), ((19966, 19995), 'copy.deepcopy', 'copy.deepcopy', (['rmsd_data_dict'], {}), '(rmsd_data_dict)\n', (19979, 19995), False, 'import copy\n'), ((32060, 32127), 'os.path.join', 'os.path.join', (['graphs_and_pickles_dir', "(input_fname_base + '.z.graph')"], {}), "(graphs_and_pickles_dir, input_fname_base + '.z.graph')\n", (32072, 32127), False, 'import os\n'), ((33666, 33677), 'time.time', 'time.time', ([], {}), '()\n', (33675, 33677), False, 'import time\n'), ((38913, 38924), 'time.time', 'time.time', ([], {}), '()\n', (38922, 38924), False, 'import time\n'), ((38930, 38970), 'pymol.finish_launching', 'pymol.finish_launching', (["['pymol', '-cq']"], {}), "(['pymol', '-cq'])\n", (38952, 38970), False, 'import pymol\n'), ((39313, 39371), 'os.path.join', 'os.path.join', (['superimposition_output_dir', '"""alignto_output"""'], {}), "(superimposition_output_dir, 'alignto_output')\n", (39325, 39371), False, 'import os\n'), ((723, 738), 'numpy.transpose', 'np.transpose', (['P'], {}), '(P)\n', (735, 738), True, 'import numpy as np\n'), ((1306, 1320), 'numpy.array', 'np.array', (['ret1'], {}), '(ret1)\n', (1314, 1320), True, 'import numpy as np\n'), ((1322, 1336), 'numpy.array', 'np.array', (['ret2'], {}), '(ret2)\n', (1330, 1336), True, 'import numpy as np\n'), ((3862, 3953), 'os.path.join', 'os.path.join', (['graphs_and_pickles_dir', "('alignment_data_' + input_fname_base + '.pickle3')"], {}), "(graphs_and_pickles_dir, 'alignment_data_' + input_fname_base +\n '.pickle3')\n", (3874, 3953), False, 'import os\n'), ((10650, 10736), 'os.path.join', 'os.path.join', (['graphs_and_pickles_dir', "('rmsd_data_' + input_fname_base + '.pickle3')"], {}), "(graphs_and_pickles_dir, 'rmsd_data_' + input_fname_base +\n '.pickle3')\n", (10662, 10736), False, 'import os\n'), ((23171, 23202), 'copy.deepcopy', 'copy.deepcopy', (['filtered_cluster'], {}), '(filtered_cluster)\n', (23184, 23202), False, 'import copy\n'), ((33923, 33978), 'os.path.join', 'os.path.join', (['lib_dir', '"""PDB_Chain_Organism_Details.tsv"""'], {}), "(lib_dir, 'PDB_Chain_Organism_Details.tsv')\n", (33935, 33978), False, 'import os\n'), ((34048, 34112), 'os.path.join', 'os.path.join', (['lib_dir', '"""PDB_Chain_Organism_Details_scrapped.tsv"""'], {}), "(lib_dir, 'PDB_Chain_Organism_Details_scrapped.tsv')\n", (34060, 34112), False, 'import os\n'), ((40189, 40205), 'pymol.cmd.sync', 'pymol.cmd.sync', ([], {}), '()\n', (40203, 40205), False, 'import pymol\n'), ((784, 800), 'numpy.linalg.det', 'np.linalg.det', (['V'], {}), '(V)\n', (797, 800), True, 'import numpy as np\n'), ((803, 819), 'numpy.linalg.det', 'np.linalg.det', (['W'], {}), '(W)\n', (816, 819), True, 'import numpy as np\n'), ((4278, 4292), 'pickle.load', 'pickle.load', (['f'], {}), '(f)\n', (4289, 4292), False, 'import pickle\n'), ((4911, 4951), 'os.path.join', 'os.path.join', (['alignment_dir', "(r1 + '.aln')"], {}), "(alignment_dir, r1 + '.aln')\n", (4923, 4951), False, 'import os\n'), ((11038, 11052), 'pickle.load', 'pickle.load', (['f'], {}), '(f)\n', (11049, 11052), False, 'import pickle\n'), ((12239, 12282), 'os.path.join', 'os.path.join', (['partial_pdbx_dir', "(lp + '.cif')"], {}), "(partial_pdbx_dir, lp + '.cif')\n", (12251, 12282), False, 'import os\n'), ((40006, 40045), 'pymol.cmd.hide', 'pymol.cmd.hide', (['"""everything"""', 'load_name'], {}), "('everything', load_name)\n", (40020, 40045), False, 'import pymol\n'), ((40058, 40094), 'pymol.cmd.show', 'pymol.cmd.show', (['"""cartoon"""', 'load_name'], {}), "('cartoon', load_name)\n", (40072, 40094), False, 'import pymol\n'), ((40107, 40145), 'pymol.cmd.color', 'pymol.cmd.color', (['load_color', 'load_name'], {}), '(load_color, load_name)\n', (40122, 40145), False, 'import pymol\n'), ((4972, 4990), 'os.path.isfile', 'os.path.isfile', (['fn'], {}), '(fn)\n', (4986, 4990), False, 'import os\n'), ((36516, 36556), 'os.path.join', 'os.path.join', (['data_dir', 'user_input_fname'], {}), '(data_dir, user_input_fname)\n', (36528, 36556), False, 'import os\n'), ((37192, 37256), 'os.path.join', 'os.path.join', (['superimposition_output_dir', '"""subfamilywise_bp_ann"""'], {}), "(superimposition_output_dir, 'subfamilywise_bp_ann')\n", (37204, 37256), False, 'import os\n'), ((38614, 38644), 'sys.path.append', 'sys.path.append', (['pymol_py3_dir'], {}), '(pymol_py3_dir)\n', (38629, 38644), False, 'import sys\n'), ((39938, 39983), 'os.path.join', 'os.path.join', (['partial_pdbx_dir', "(loop + '.cif')"], {}), "(partial_pdbx_dir, loop + '.cif')\n", (39950, 39983), False, 'import os\n'), ((40472, 40595), 'os.path.join', 'os.path.join', (['superimposition_output_dir', '"""alignto_output"""', "(cluster_id + '_' + method + '_' + rotation_version + '.png')"], {}), "(superimposition_output_dir, 'alignto_output', cluster_id + '_' +\n method + '_' + rotation_version + '.png')\n", (40484, 40595), False, 'import os\n'), ((40723, 40746), 'os.path.isfile', 'os.path.isfile', (['view_fn'], {}), '(view_fn)\n', (40737, 40746), False, 'import os\n'), ((41240, 41282), 'pymol.cmd.alignto', 'pymol.cmd.alignto', (['align_to_target', 'method'], {}), '(align_to_target, method)\n', (41257, 41282), False, 'import pymol\n'), ((41726, 41742), 'pymol.cmd.zoom', 'pymol.cmd.zoom', ([], {}), '()\n', (41740, 41742), False, 'import pymol\n'), ((41759, 41775), 'pymol.cmd.sync', 'pymol.cmd.sync', ([], {}), '()\n', (41773, 41775), False, 'import pymol\n'), ((41934, 41997), 'pymol.cmd.png', 'pymol.cmd.png', (['image_fname', '(1200)', '(1200)'], {'dpi': '(300)', 'ray': '(1)', 'quiet': '(1)'}), '(image_fname, 1200, 1200, dpi=300, ray=1, quiet=1)\n', (41947, 41997), False, 'import pymol\n'), ((42014, 42030), 'pymol.cmd.sync', 'pymol.cmd.sync', ([], {}), '()\n', (42028, 42030), False, 'import pymol\n'), ((3281, 3291), 'sys.exit', 'sys.exit', ([], {}), '()\n', (3289, 3291), False, 'import sys\n'), ((38795, 38805), 'sys.exit', 'sys.exit', ([], {}), '()\n', (38803, 38805), False, 'import sys\n'), ((6188, 6198), 'sys.exit', 'sys.exit', ([], {}), '()\n', (6196, 6198), False, 'import sys\n'), ((9532, 9543), 'time.time', 'time.time', ([], {}), '()\n', (9541, 9543), False, 'import time\n'), ((18052, 18063), 'time.time', 'time.time', ([], {}), '()\n', (18061, 18063), False, 'import time\n'), ((36430, 36441), 'time.time', 'time.time', ([], {}), '()\n', (36439, 36441), False, 'import time\n'), ((42164, 42175), 'time.time', 'time.time', ([], {}), '()\n', (42173, 42175), False, 'import time\n'), ((7441, 7451), 'sys.exit', 'sys.exit', ([], {}), '()\n', (7449, 7451), False, 'import sys\n')] |
import csv
import numpy as np
def getDataSource(data_path):
coffee_in_ml = []
sleep_in_hours = []
with open(data_path) as csv_file:
csv_reader = csv.DictReader(csv_file)
for row in csv_reader:
coffee_in_ml.append(float(row["Coffee in ml"]))
sleep_in_hours.append(float(row["sleep in hours"]))
return {"x" : coffee_in_ml, "y": sleep_in_hours}
def findCorrelation(datasource):
correlation = np.corrcoef(datasource["x"], datasource["y"])
print("Correlation between Coffee in ml and sleep in hours :- \n--->",correlation[0,1])
def setup():
data_path = "./data/cups of coffee vs hours of sleep.csv"
datasource = getDataSource(data_path)
findCorrelation(datasource)
setup()
| [
"csv.DictReader",
"numpy.corrcoef"
] | [((469, 514), 'numpy.corrcoef', 'np.corrcoef', (["datasource['x']", "datasource['y']"], {}), "(datasource['x'], datasource['y'])\n", (480, 514), True, 'import numpy as np\n'), ((175, 199), 'csv.DictReader', 'csv.DictReader', (['csv_file'], {}), '(csv_file)\n', (189, 199), False, 'import csv\n')] |
from __future__ import print_function
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim as optim
import torch.utils.data
import torchvision.datasets as dset
import torchvision.transforms as transforms
import torchvision.utils as vutils
from torchvision.utils import make_grid
import torch.autograd as autograd
from torch.autograd import Variable
import argparse
import numpy as np
import random
import os
import sys
import shutil
import time
import math
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from utils import Logger
from utils import inception_score
from utils import CustomImgDataset
# from is_utils import get_inception_score
parser = argparse.ArgumentParser()
parser.add_argument('--dataset', required=True, help='cifar10 | lsun | imagenet | folder | lfw ')
parser.add_argument('--arch', required=True, help='cnn | resnet (TODO)')
parser.add_argument('--loss', default='wgan', help='wgan | dcgan')
parser.add_argument('--dataroot', default='~/dataset/', help='path to dataset')
parser.add_argument('--workers', type=int, help='number of data loading workers', default=2)
parser.add_argument('--batchSize', type=int, default=64, help='input batch size')
parser.add_argument('--imageSize', type=int, default=64, help='the height / width of the input image to network')
parser.add_argument('--nc', type=int, default=3, help='input image channels')
parser.add_argument('--nz', type=int, default=100, help='size of the latent z vector')
parser.add_argument('--ngf', type=int, default=64)
parser.add_argument('--ndf', type=int, default=64)
parser.add_argument('--niter', type=int, default=256, help='number of epochs to train for')
parser.add_argument('--lrD', type=float, default= 0.00005, help='learning rate for Critic, default=0.00005')
parser.add_argument('--lrG', type=float, default= 0.00005, help='learning rate for Generator, default=0.00005')
parser.add_argument('--beta1', type=float, default=0.5, help='beta1 for adam. default=0.5')
parser.add_argument('--beta2', type=float, default=0.999, help='beta2 for adam. default=0.999')
parser.add_argument('--cuda' , action='store_true', help='enables cuda')
parser.add_argument('--ngpu' , type=int, default=1, help='number of GPUs to use')
parser.add_argument('--netG', default='', help="path to netG (to continue training)")
parser.add_argument('--netD', default='', help="path to netD (to continue training)")
parser.add_argument('--norm_type', default='', help =
'''
Can be 'OR':
Orthonormal Regularization \lambda ||WtW-I||_2^2
Can be 'OR+Mani'
Can be 'UVR':
Decompose W into UDV, and add Orthonormal Regularization on U&V \lambda ||UtU-I||_2^2 + ||VtV-I||_2^2
Can be 'UVR+Mani':
Can be 'WN':
Weight Normalization
Can be 'Sphere':
Sphere Normalization
Can be 'BN':
Batch Normalization
Can be 'LN':
Layer Normalization
Can be 'GP':
Gradient Penalty
Can be 'WC':
Weight Clipping param norm to c (Wasserstein distance and Lipschitz continuity)
Or you can use like 'OR+BN+WC' or 'OR+BN'
''')
parser.add_argument('--clamp_lower', type=float, default=-0.01)
parser.add_argument('--clamp_upper', type=float, default=0.01)
parser.add_argument('--gpwei', type=float, default=10)
parser.add_argument('--orthwei', type=float, default=1000)
parser.add_argument('--orscale', type=float, default=1) #TODO
parser.add_argument('--Diters', type=int, default=5, help='number of D iters per each G iter')
parser.add_argument('--n_extra_layers', type=int, default=0, help='Number of extra layers on gen and disc')
parser.add_argument('--experiment', default=None, help='Where to store samples and models')
parser.add_argument('--addinfo', default="", help='additional information show up in path')
parser.add_argument('--opt', default='adam', help='adam | rmsprop')
parser.add_argument('--use_proj', action='store_true', help='apply projection after Optimization')
parser.add_argument('--show_sv_info', action='store_true', help='apply projection after Optimization')
opt = parser.parse_args()
if opt.experiment is None:
opt.experiment = os.path.dirname(os.path.abspath(__file__))+"/"+opt.dataset+'_'+opt.loss+'_'+opt.norm_type+('_PROJ' if opt.use_proj else '')+'_'+opt.arch
os.system('mkdir {0}'.format(opt.experiment))
sys.stdout = Logger(opt.experiment+"/log.txt","w", sys.stdout)
print(opt)
opt.manualSeed = random.randint(1, 10000) # fix seed
print("Random Seed: ", opt.manualSeed)
random.seed(opt.manualSeed)
torch.manual_seed(opt.manualSeed)
cudnn.benchmark = True
if torch.cuda.is_available() and not opt.cuda:
print("WARNING: You have a CUDA device, so you should probably run with --cuda")
if opt.cuda:
torch.set_default_tensor_type("torch.cuda.FloatTensor")
FloatTensor = torch.cuda.FloatTensor if opt.cuda else torch.FloatTensor
LongTensor = torch.cuda.LongTensor if opt.cuda else torch.LongTensor
ByteTensor = torch.cuda.ByteTensor if opt.cuda else torch.ByteTensor
Tensor = FloatTensor
if opt.dataset in ['imagenet', 'folder', 'lfw']:
# folder dataset
dataset = dset.ImageFolder(root=opt.dataroot,
transform=transforms.Compose([
transforms.Scale(opt.imageSize),
transforms.CenterCrop(opt.imageSize),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
]))
elif opt.dataset == 'lsun':
dataset = dset.LSUN(db_path=opt.dataroot, classes=['bedroom_train'],
transform=transforms.Compose([
transforms.Scale(opt.imageSize),
transforms.CenterCrop(opt.imageSize),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
]))
elif opt.dataset == 'cifar10':
dataset = dset.CIFAR10(root=opt.dataroot, download=True,
transform=transforms.Compose([
transforms.Scale(opt.imageSize),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
])
)
assert dataset
dataloader = torch.utils.data.DataLoader(dataset, batch_size=opt.batchSize,
shuffle=True, num_workers=int(opt.workers))
ngpu = int(opt.ngpu)
nz = int(opt.nz)
ngf = int(opt.ngf)
ndf = int(opt.ndf)
nc = int(opt.nc)
n_extra_layers = int(opt.n_extra_layers)
# custom weights initialization called on netG and netD
def weights_init(m):
classname = m.__class__.__name__
if classname.find('Conv') != -1:
m.weight.data.normal_(0.0, 0.02)
elif classname.find('BatchNorm') != -1:
m.weight.data.normal_(1.0, 0.02)
m.bias.data.fill_(0)
### set network
if opt.dataset.startswith("cifar"):
import models.cifar as models
netD = models.__dict__[opt.arch+'_D'](opt.imageSize, nc, ngf, ngpu, n_extra_layers, opt.norm_type, opt.loss)
netG = models.__dict__[opt.arch+'_G'](opt.imageSize, nz, nc, ndf, ngpu, n_extra_layers)
if opt.netG != '': # load checkpoint if needed
netG.load_state_dict(torch.load(opt.netG))
print(netG)
if opt.netD != '':
netD.load_state_dict(torch.load(opt.netD))
print(netD)
input = torch.FloatTensor(opt.batchSize, 3, opt.imageSize, opt.imageSize)
noise = torch.FloatTensor(opt.batchSize, nz, 1, 1)
fixed_noise = torch.FloatTensor(opt.batchSize, nz, 1, 1).normal_(0, 1)
one = torch.FloatTensor([1])
mone = one * -1
if opt.cuda:
netD.cuda()
netG.cuda()
input = input.cuda()
one, mone = one.cuda(), mone.cuda()
noise, fixed_noise = noise.cuda(), fixed_noise.cuda()
# setup optimizer
if opt.opt == 'adam':
optimizerD = optim.Adam(netD.parameters(), lr=opt.lrD, betas=(opt.beta1, opt.beta2))
optimizerG = optim.Adam(netG.parameters(), lr=opt.lrG, betas=(opt.beta1, opt.beta2))
elif opt.opt == 'rmsprop':
optimizerD = optim.RMSprop(netD.parameters(), lr = opt.lrD)
optimizerG = optim.RMSprop(netG.parameters(), lr = opt.lrG)
def calc_gradient_penalty(netD, x, g):
assert x.size() == g.size()
a = torch.rand(x.size(0), 1)
a = a.cuda() if opt.cuda else a
a = a\
.expand(x.size(0), x.nelement()//x.size(0))\
.contiguous()\
.view(
x.size(0),
nc,
opt.imageSize,
opt.imageSize
)
interpolated = Variable(a*x.data + (1-a)*g.data, requires_grad=True)
c = netD(interpolated)
gradients = autograd.grad(
outputs=c, inputs=interpolated,
grad_outputs=(
torch.ones(c.size()).cuda() if opt.cuda else
torch.ones(c.size())
),
create_graph=True,
retain_graph=True,
only_inputs=True
)[0]
gradients = gradients.view(gradients.size(0), -1)
return opt.gpwei * ((gradients.norm(2, dim=1) - 1) ** 2).mean()
# Start Training
print("=================================================================")
print("=======================Start Training===========================")
print("=================================================================")
gen_iterations = 0
IS_array = []
bestIS = 0
if opt.loss == "dcgan":
criterion = nn.BCELoss()
real_label = 1
fake_label = 0
for epoch in range(opt.niter):
data_iter = iter(dataloader)
i = 0
while i < len(dataloader):
####################################################
# ----- train model_D -----
# WGAN: maximize D(x) - D(G(z))
# DCGAN: maximize log(D(x)) + log(1 - D(G(z)))
####################################################
for p in netD.parameters(): # reset requires_grad
p.requires_grad = True # they are set to False below in netG update
# train the discriminator Diters times
Diters = opt.Diters
# if gen_iterations < 25 or gen_iterations % 500 == 0:
# Diters = 100
j = 0
while j < Diters and i < len(dataloader):
j += 1
# clamp parameters to a cube
if 'WC' in opt.norm_type:
for p in netD.parameters():
p.data.clamp_(opt.clamp_lower, opt.clamp_upper)
if 'SN' in opt.norm_type:
netD.update_sigma()
data = data_iter.next()
i += 1
# train with real
real_cpu, _ = data
netD.zero_grad()
batch_size = real_cpu.size(0)
if opt.cuda:
real_cpu = real_cpu.cuda()
input.resize_as_(real_cpu).copy_(real_cpu)
real_inputv = Variable(input)
output = netD(real_inputv)
if opt.loss == "wgan":
errD_real = -output.mean()
elif opt.loss == "dcgan":
label = FloatTensor(batch_size,)
label.fill_(real_label)
labelv = Variable(label)
errD_real = criterion(output, labelv)
errD_real.backward()
# train with fake
noise.resize_(batch_size, nz, 1, 1).normal_(0, 1)
noisev = Variable(noise, volatile = True) # totally freeze netG
fake = Variable(netG(noisev).data)
fake_inputv = fake
output = netD(fake_inputv)
if opt.loss == "wgan":
errD_fake = output.mean()
elif opt.loss == "dcgan":
label.fill_(fake_label)
labelv = Variable(label)
errD_fake = criterion(output, labelv)
errD_fake.backward()
errD = errD_real + errD_fake
Distribution_D = errD
if 'GP' in opt.norm_type:
gradient_penalty = calc_gradient_penalty(netD, real_inputv, fake)
gradient_penalty.backward()
errD = errD + gradient_penalty
if 'OR' in opt.norm_type or 'UVR' in opt.norm_type:
orth_wei = opt.orthwei * (0.01**(epoch/opt.niter))
orth_penalty = netD.orth_penalty()*orth_wei
orth_penalty.backward()
errD = errD + orth_penalty
optimizerD.step()
if opt.use_proj:
netD.project()
####################################################
# ------ train model_G -------
# WGAN: maximize D(G(z))
# DCGAN; maximize log(D(G(z)))
# train model_D more: because the better model_D is,
# the better model_G will be
####################################################
for p in netD.parameters():
p.requires_grad = False # to avoid computation
netG.zero_grad()
# in case our last batch was the tail batch of the dataloader,
# make sure we feed a full batch of noise
noise.resize_(opt.batchSize, nz, 1, 1).normal_(0, 1)
noisev = Variable(noise)
fake = netG(noisev)
output = netD(fake)
if opt.loss == "wgan":
errG = -output.mean()
elif opt.loss == "dcgan":
label = FloatTensor(opt.batchSize)
label.fill_(real_label) # fake labels are real for generator cost logd trick
labelv = Variable(label)
errG = criterion(output, labelv)
errG.backward()
optimizerG.step()
gen_iterations += 1
print('[%d/%d][%d/%d][%d] Distribution_D: %f Loss_D: %f Loss_G: %f Loss_D_real: %f Loss_D_fake %f'
% (epoch, opt.niter, i, len(dataloader), gen_iterations, Distribution_D,
errD.data[0], errG.data[0], errD_real.data[0], errD_fake.data[0]))
if gen_iterations % 500 == 0:
real_cpu = real_cpu.mul(0.5).add(0.5)
vutils.save_image(real_cpu, '{0}/real_samples.png'.format(opt.experiment))
fake = netG(Variable(fixed_noise, volatile=True))
fake.data = fake.data.mul(0.5).add(0.5)
vutils.save_image(fake.data, '{0}/fake_samples_{1}.png'.format(opt.experiment, gen_iterations))
###
if(opt.show_sv_info):
print ("Print Singular Value Information...")
netD.showOrthInfo()
### Calculate inception_score
# Generate 5000 data
noisev = Variable(FloatTensor(5000,nz,1,1).normal_(0,1), volatile=True)
netG.eval()
print ("Calculating Inception Score...")
fask_imgs = netG(noisev)
IS = inception_score(CustomImgDataset(fask_imgs.data), batch_size=opt.batchSize, cuda=opt.cuda, splits=10)
# fask_imgs = np.transpose(netG(noisev).data.cpu().numpy(),(0,2,3,1))
# fask_imgs = (fask_imgs*0.5+0.5)*255
# IS = get_inception_score(fask_imgs)
IS_array.append(IS)
print(IS)
if bestIS < IS[0]:
bestIS = IS[0]
fask_imgs = np.transpose(netG(noisev).data.cpu().numpy(),(0,2,3,1))
fask_imgs = (fask_imgs*0.5+0.5)*255
np.save(opt.experiment+"/fakeimgs_best.npy",fask_imgs)
if epoch%10 == 0:
# do checkpointing
torch.save(netG.state_dict(), '{0}/netG_epoch_{1}.pth'.format(opt.experiment, epoch))
torch.save(netD.state_dict(), '{0}/netD_epoch_{1}.pth'.format(opt.experiment, epoch))
noisev = Variable(FloatTensor(5000,nz,1,1).normal_(0,1), volatile=True)
netG.eval()
fask_imgs = np.transpose(netG(noisev).data.cpu().numpy(),(0,2,3,1))
fask_imgs = (fask_imgs*0.5+0.5)*255
np.save(opt.experiment+"/fakeimgs_final.npy",fask_imgs)
shutil.copy2('./tfIS.py', opt.experiment)
shutil.copy2('./is_utils.py', opt.experiment)
IS_array = np.array(IS_array)
plt.plot(range(len(IS_array[:,0])), IS_array[:,0], 'r-', label = 'Inception Score')
plt.legend()
plt.savefig(opt.experiment+'/inception_score.pdf', bbox_inches='tight',format="pdf", dpi = 300)
plt.close()
np.save(opt.experiment+"/inception_score.npy",{"IS_array":IS_array})
noise = Variable(FloatTensor(64,nz,1,1).normal_(0,1))
fake_u=netG(noise)
imgs = make_grid(fake_u.data*0.5+0.5).cpu() # CHW
plt.figure(figsize=(5,5))
plt.imshow(imgs.permute(1,2,0).numpy()) # HWC
plt.savefig(opt.experiment+'/final_figures.pdf', bbox_inches='tight',format="pdf", dpi = 300)
plt.close()
| [
"numpy.array",
"torch.cuda.is_available",
"torchvision.utils.make_grid",
"numpy.save",
"argparse.ArgumentParser",
"shutil.copy2",
"torch.set_default_tensor_type",
"matplotlib.pyplot.close",
"torchvision.transforms.ToTensor",
"torch.autograd.Variable",
"random.randint",
"matplotlib.pyplot.savef... | [((539, 560), 'matplotlib.use', 'matplotlib.use', (['"""Agg"""'], {}), "('Agg')\n", (553, 560), False, 'import matplotlib\n'), ((740, 765), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {}), '()\n', (763, 765), False, 'import argparse\n'), ((4317, 4369), 'utils.Logger', 'Logger', (["(opt.experiment + '/log.txt')", '"""w"""', 'sys.stdout'], {}), "(opt.experiment + '/log.txt', 'w', sys.stdout)\n", (4323, 4369), False, 'from utils import Logger\n'), ((4396, 4420), 'random.randint', 'random.randint', (['(1)', '(10000)'], {}), '(1, 10000)\n', (4410, 4420), False, 'import random\n'), ((4471, 4498), 'random.seed', 'random.seed', (['opt.manualSeed'], {}), '(opt.manualSeed)\n', (4482, 4498), False, 'import random\n'), ((4499, 4532), 'torch.manual_seed', 'torch.manual_seed', (['opt.manualSeed'], {}), '(opt.manualSeed)\n', (4516, 4532), False, 'import torch\n'), ((7445, 7510), 'torch.FloatTensor', 'torch.FloatTensor', (['opt.batchSize', '(3)', 'opt.imageSize', 'opt.imageSize'], {}), '(opt.batchSize, 3, opt.imageSize, opt.imageSize)\n', (7462, 7510), False, 'import torch\n'), ((7519, 7561), 'torch.FloatTensor', 'torch.FloatTensor', (['opt.batchSize', 'nz', '(1)', '(1)'], {}), '(opt.batchSize, nz, 1, 1)\n', (7536, 7561), False, 'import torch\n'), ((7639, 7661), 'torch.FloatTensor', 'torch.FloatTensor', (['[1]'], {}), '([1])\n', (7656, 7661), False, 'import torch\n'), ((15505, 15563), 'numpy.save', 'np.save', (["(opt.experiment + '/fakeimgs_final.npy')", 'fask_imgs'], {}), "(opt.experiment + '/fakeimgs_final.npy', fask_imgs)\n", (15512, 15563), True, 'import numpy as np\n'), ((15561, 15602), 'shutil.copy2', 'shutil.copy2', (['"""./tfIS.py"""', 'opt.experiment'], {}), "('./tfIS.py', opt.experiment)\n", (15573, 15602), False, 'import shutil\n'), ((15603, 15648), 'shutil.copy2', 'shutil.copy2', (['"""./is_utils.py"""', 'opt.experiment'], {}), "('./is_utils.py', opt.experiment)\n", (15615, 15648), False, 'import shutil\n'), ((15662, 15680), 'numpy.array', 'np.array', (['IS_array'], {}), '(IS_array)\n', (15670, 15680), True, 'import numpy as np\n'), ((15765, 15777), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (15775, 15777), True, 'import matplotlib.pyplot as plt\n'), ((15778, 15878), 'matplotlib.pyplot.savefig', 'plt.savefig', (["(opt.experiment + '/inception_score.pdf')"], {'bbox_inches': '"""tight"""', 'format': '"""pdf"""', 'dpi': '(300)'}), "(opt.experiment + '/inception_score.pdf', bbox_inches='tight',\n format='pdf', dpi=300)\n", (15789, 15878), True, 'import matplotlib.pyplot as plt\n'), ((15874, 15885), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (15883, 15885), True, 'import matplotlib.pyplot as plt\n'), ((15887, 15959), 'numpy.save', 'np.save', (["(opt.experiment + '/inception_score.npy')", "{'IS_array': IS_array}"], {}), "(opt.experiment + '/inception_score.npy', {'IS_array': IS_array})\n", (15894, 15959), True, 'import numpy as np\n'), ((16080, 16106), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(5, 5)'}), '(figsize=(5, 5))\n', (16090, 16106), True, 'import matplotlib.pyplot as plt\n'), ((16152, 16250), 'matplotlib.pyplot.savefig', 'plt.savefig', (["(opt.experiment + '/final_figures.pdf')"], {'bbox_inches': '"""tight"""', 'format': '"""pdf"""', 'dpi': '(300)'}), "(opt.experiment + '/final_figures.pdf', bbox_inches='tight',\n format='pdf', dpi=300)\n", (16163, 16250), True, 'import matplotlib.pyplot as plt\n'), ((16246, 16257), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (16255, 16257), True, 'import matplotlib.pyplot as plt\n'), ((4561, 4586), 'torch.cuda.is_available', 'torch.cuda.is_available', ([], {}), '()\n', (4584, 4586), False, 'import torch\n'), ((4707, 4762), 'torch.set_default_tensor_type', 'torch.set_default_tensor_type', (['"""torch.cuda.FloatTensor"""'], {}), "('torch.cuda.FloatTensor')\n", (4736, 4762), False, 'import torch\n'), ((8585, 8644), 'torch.autograd.Variable', 'Variable', (['(a * x.data + (1 - a) * g.data)'], {'requires_grad': '(True)'}), '(a * x.data + (1 - a) * g.data, requires_grad=True)\n', (8593, 8644), False, 'from torch.autograd import Variable\n'), ((9398, 9410), 'torch.nn.BCELoss', 'nn.BCELoss', ([], {}), '()\n', (9408, 9410), True, 'import torch.nn as nn\n'), ((7323, 7343), 'torch.load', 'torch.load', (['opt.netG'], {}), '(opt.netG)\n', (7333, 7343), False, 'import torch\n'), ((7402, 7422), 'torch.load', 'torch.load', (['opt.netD'], {}), '(opt.netD)\n', (7412, 7422), False, 'import torch\n'), ((7576, 7618), 'torch.FloatTensor', 'torch.FloatTensor', (['opt.batchSize', 'nz', '(1)', '(1)'], {}), '(opt.batchSize, nz, 1, 1)\n', (7593, 7618), False, 'import torch\n'), ((13063, 13078), 'torch.autograd.Variable', 'Variable', (['noise'], {}), '(noise)\n', (13071, 13078), False, 'from torch.autograd import Variable\n'), ((14567, 14599), 'utils.CustomImgDataset', 'CustomImgDataset', (['fask_imgs.data'], {}), '(fask_imgs.data)\n', (14583, 14599), False, 'from utils import CustomImgDataset\n'), ((15023, 15080), 'numpy.save', 'np.save', (["(opt.experiment + '/fakeimgs_best.npy')", 'fask_imgs'], {}), "(opt.experiment + '/fakeimgs_best.npy', fask_imgs)\n", (15030, 15080), True, 'import numpy as np\n'), ((16037, 16071), 'torchvision.utils.make_grid', 'make_grid', (['(fake_u.data * 0.5 + 0.5)'], {}), '(fake_u.data * 0.5 + 0.5)\n', (16046, 16071), False, 'from torchvision.utils import make_grid\n'), ((10800, 10815), 'torch.autograd.Variable', 'Variable', (['input'], {}), '(input)\n', (10808, 10815), False, 'from torch.autograd import Variable\n'), ((11303, 11333), 'torch.autograd.Variable', 'Variable', (['noise'], {'volatile': '(True)'}), '(noise, volatile=True)\n', (11311, 11333), False, 'from torch.autograd import Variable\n'), ((13391, 13406), 'torch.autograd.Variable', 'Variable', (['label'], {}), '(label)\n', (13399, 13406), False, 'from torch.autograd import Variable\n'), ((14001, 14037), 'torch.autograd.Variable', 'Variable', (['fixed_noise'], {'volatile': '(True)'}), '(fixed_noise, volatile=True)\n', (14009, 14037), False, 'from torch.autograd import Variable\n'), ((5213, 5244), 'torchvision.transforms.Scale', 'transforms.Scale', (['opt.imageSize'], {}), '(opt.imageSize)\n', (5229, 5244), True, 'import torchvision.transforms as transforms\n'), ((5281, 5317), 'torchvision.transforms.CenterCrop', 'transforms.CenterCrop', (['opt.imageSize'], {}), '(opt.imageSize)\n', (5302, 5317), True, 'import torchvision.transforms as transforms\n'), ((5354, 5375), 'torchvision.transforms.ToTensor', 'transforms.ToTensor', ([], {}), '()\n', (5373, 5375), True, 'import torchvision.transforms as transforms\n'), ((5412, 5466), 'torchvision.transforms.Normalize', 'transforms.Normalize', (['(0.5, 0.5, 0.5)', '(0.5, 0.5, 0.5)'], {}), '((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))\n', (5432, 5466), True, 'import torchvision.transforms as transforms\n'), ((11086, 11101), 'torch.autograd.Variable', 'Variable', (['label'], {}), '(label)\n', (11094, 11101), False, 'from torch.autograd import Variable\n'), ((11655, 11670), 'torch.autograd.Variable', 'Variable', (['label'], {}), '(label)\n', (11663, 11670), False, 'from torch.autograd import Variable\n'), ((5687, 5718), 'torchvision.transforms.Scale', 'transforms.Scale', (['opt.imageSize'], {}), '(opt.imageSize)\n', (5703, 5718), True, 'import torchvision.transforms as transforms\n'), ((5748, 5784), 'torchvision.transforms.CenterCrop', 'transforms.CenterCrop', (['opt.imageSize'], {}), '(opt.imageSize)\n', (5769, 5784), True, 'import torchvision.transforms as transforms\n'), ((5814, 5835), 'torchvision.transforms.ToTensor', 'transforms.ToTensor', ([], {}), '()\n', (5833, 5835), True, 'import torchvision.transforms as transforms\n'), ((5865, 5919), 'torchvision.transforms.Normalize', 'transforms.Normalize', (['(0.5, 0.5, 0.5)', '(0.5, 0.5, 0.5)'], {}), '((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))\n', (5885, 5919), True, 'import torchvision.transforms as transforms\n'), ((6130, 6161), 'torchvision.transforms.Scale', 'transforms.Scale', (['opt.imageSize'], {}), '(opt.imageSize)\n', (6146, 6161), True, 'import torchvision.transforms as transforms\n'), ((6194, 6215), 'torchvision.transforms.ToTensor', 'transforms.ToTensor', ([], {}), '()\n', (6213, 6215), True, 'import torchvision.transforms as transforms\n'), ((6248, 6302), 'torchvision.transforms.Normalize', 'transforms.Normalize', (['(0.5, 0.5, 0.5)', '(0.5, 0.5, 0.5)'], {}), '((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))\n', (6268, 6302), True, 'import torchvision.transforms as transforms\n'), ((4137, 4162), 'os.path.abspath', 'os.path.abspath', (['__file__'], {}), '(__file__)\n', (4152, 4162), False, 'import os\n')] |
import numpy as np
import logging
import time
from stereovis.framed.algorithms import StereoMRF
from spinn_utilities.progress_bar import ProgressBar
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
logger = logging.getLogger(__file__)
class FramebasedStereoMatching(object):
def __init__(self, resolution, max_disparity, algorithm='mrf', inputs=None):
if algorithm == 'mrf':
# reverse the resolution order since x-dimension corresponds to n_cols and y to n_rows
# and the shape initialisation of numpy is (n_rows, n_cols) which is (y, x)
x, y = resolution
self.algorithm = StereoMRF(dim=(y, x), n_levels=max_disparity)
if inputs is not None:
# this means that the operational mode is offline and hence one can initialise the frame iterator
self.frames_left = np.asarray(inputs['left'])
self.frames_right = np.asarray(inputs['right'])
self.frames_timestamps = np.asarray(inputs['ts'])
# initialise the placeholder for the depth-resolved inputs
self.depth_frames = []
else:
raise NotImplementedError("Only MRF is supported.")
def get_timestamps(self):
return self.frames_timestamps
def get_output(self):
self.depth_frames = np.asarray(self.depth_frames)
return self.depth_frames
def run_one_frame(self, image_left, image_right, prior=None, **kwargs):
"""
Run one single frame of the frame-based stereo matching. Should be used when running online.
Args:
image_left: a numpy array representing the left image
image_right: a numpy array representing the right image
prior: optional, a numpy array with disparity values
Keyword Args:
prior_trust_factor: float, value between 0 and 1 for the prior influence
prior_influence_mode: str, can be 'const' or `adaptive` for the prior incorporation strategy
n_iter: int, number of iteration to run the algorithm
Returns:
A numpy array representing the depth map resolved by the algorithm.
"""
depth_map = self.algorithm.lbp(image_left, image_right, prior, **kwargs)
self.depth_frames.append(depth_map)
return depth_map
def run(self, prior_info=None):
"""
Run the frame-based stereo matching on all frames and priors.
Args:
prior_info: optional, a list of priors a subset of which is used to initialise the algorithm.
Returns:
"""
n_frames = len(self.frames_timestamps)
if prior_info is not None:
if len(prior_info['ts']) > n_frames:
# pick the n closest ones (where n is the number of frames)
prior_indices = [np.searchsorted(prior_info['ts'], t_frame, side="left")
for t_frame in self.frames_timestamps]
priors = prior_info['priors'][prior_indices]
else:
priors = prior_info['priors']
assert len(priors) == len(self.frames_left) == len(self.frames_right)
pb = ProgressBar(n_frames, "Starting offline frame-based stereo matching with prior initialisation.")
start_timer = time.time()
for i, (left, right, prior) in enumerate(zip(self.frames_left, self.frames_right, priors)):
self.run_one_frame(left, right, prior, prior_trust_factor=1.0,
prior_influence_mode='adaptive', n_iter=10)
pb.update()
end_timer = time.time()
pb.end()
else:
pb = ProgressBar(n_frames, "Starting offline frame-based stereo matching without prior initialisation.")
start_timer = time.time()
for i, (left, right) in enumerate(zip(self.frames_left, self.frames_right)):
self.run_one_frame(left, right)
plt.imsave('output/checkerboard_downsampled/left_{}.png'.format(i), left)
plt.imsave('output/checkerboard_downsampled/right_{}.png'.format(i), right)
plt.imsave('output/checkerboard_downsampled/result_{}.png'.format(i), self.depth_frames[i])
pb.update()
end_timer = time.time()
pb.end()
logger.info("Frame-based stereo matching took {}s per image pair on average.".format((end_timer - start_timer)
/ n_frames))
| [
"logging.getLogger",
"matplotlib.use",
"numpy.searchsorted",
"numpy.asarray",
"spinn_utilities.progress_bar.ProgressBar",
"stereovis.framed.algorithms.StereoMRF",
"time.time"
] | [((168, 189), 'matplotlib.use', 'matplotlib.use', (['"""Agg"""'], {}), "('Agg')\n", (182, 189), False, 'import matplotlib\n'), ((233, 260), 'logging.getLogger', 'logging.getLogger', (['__file__'], {}), '(__file__)\n', (250, 260), False, 'import logging\n'), ((1364, 1393), 'numpy.asarray', 'np.asarray', (['self.depth_frames'], {}), '(self.depth_frames)\n', (1374, 1393), True, 'import numpy as np\n'), ((661, 706), 'stereovis.framed.algorithms.StereoMRF', 'StereoMRF', ([], {'dim': '(y, x)', 'n_levels': 'max_disparity'}), '(dim=(y, x), n_levels=max_disparity)\n', (670, 706), False, 'from stereovis.framed.algorithms import StereoMRF\n'), ((3264, 3364), 'spinn_utilities.progress_bar.ProgressBar', 'ProgressBar', (['n_frames', '"""Starting offline frame-based stereo matching with prior initialisation."""'], {}), "(n_frames,\n 'Starting offline frame-based stereo matching with prior initialisation.')\n", (3275, 3364), False, 'from spinn_utilities.progress_bar import ProgressBar\n'), ((3387, 3398), 'time.time', 'time.time', ([], {}), '()\n', (3396, 3398), False, 'import time\n'), ((3713, 3724), 'time.time', 'time.time', ([], {}), '()\n', (3722, 3724), False, 'import time\n'), ((3777, 3885), 'spinn_utilities.progress_bar.ProgressBar', 'ProgressBar', (['n_frames', '"""Starting offline frame-based stereo matching without prior initialisation."""'], {}), "(n_frames,\n 'Starting offline frame-based stereo matching without prior initialisation.'\n )\n", (3788, 3885), False, 'from spinn_utilities.progress_bar import ProgressBar\n'), ((3903, 3914), 'time.time', 'time.time', ([], {}), '()\n', (3912, 3914), False, 'import time\n'), ((4394, 4405), 'time.time', 'time.time', ([], {}), '()\n', (4403, 4405), False, 'import time\n'), ((891, 917), 'numpy.asarray', 'np.asarray', (["inputs['left']"], {}), "(inputs['left'])\n", (901, 917), True, 'import numpy as np\n'), ((954, 981), 'numpy.asarray', 'np.asarray', (["inputs['right']"], {}), "(inputs['right'])\n", (964, 981), True, 'import numpy as np\n'), ((1023, 1047), 'numpy.asarray', 'np.asarray', (["inputs['ts']"], {}), "(inputs['ts'])\n", (1033, 1047), True, 'import numpy as np\n'), ((2911, 2966), 'numpy.searchsorted', 'np.searchsorted', (["prior_info['ts']", 't_frame'], {'side': '"""left"""'}), "(prior_info['ts'], t_frame, side='left')\n", (2926, 2966), True, 'import numpy as np\n')] |
from __future__ import print_function
import os
import sys
import time
import argparse
import numpy as np
import xml.dom.minidom as xdom
from os.path import realpath, join, isdir, isfile, dirname, splitext
from ..core.environ import environ
U_ROOT = u"SimulationData"
U_JOB = u"job"
U_DATE = u"date"
U_EVAL = u"Evaluation"
U_EVAL_N = u"n"
U_EVAL_D = u"d"
U_EVAL_S = u"status"
U_PARAMS = u"Parameters"
U_RESP = u"Responses"
IND = " "
class TabularWriter(object):
def __init__(self, filename, job):
"""Set up a logger object, which takes evaluation events and outputs
an XML log file
"""
self.stack = []
self.filename = realpath(filename)
if not self.filename.endswith('.edb'):
self.filename += '.edb'
self.evald = dirname(self.filename)
if not isdir(self.evald):
raise OSError('no such directory {0!r}'.format(self.evald))
self.start_document(job)
pass
def create_element(self, name, attrs):
sp = IND * len(self.stack)
a = " ".join('{0}="{1}"'.format(k, v) for (k, v) in attrs)
with open(self.filename, "a") as stream:
stream.write("{0}<{1} {2}/>\n".format(sp, name, a))
stream.flush()
return
def start_element(self, name, attrs, end=False):
sp = IND * len(self.stack)
a = " ".join('{0}="{1}"'.format(k, v) for (k, v) in attrs)
with open(self.filename, "a") as stream:
stream.write("{0}<{1} {2}>\n".format(sp, name, a))
stream.flush()
self.stack.append(name)
return
def end_element(self, name):
_name = self.stack.pop(-1)
assert _name == name
sp = IND * len(self.stack)
with open(self.filename, "a") as stream:
stream.write("{0}</{1}>\n".format(sp, name))
stream.flush()
return
def start_document(self, job):
with open(self.filename, "w") as stream:
stream.write("""<?xml version="1.0"?>\n""")
stream.flush()
now = time.asctime(time.localtime())
self.start_element(U_ROOT, ((U_JOB, job),
(U_DATE, now)))
return
def end_document(self):
_name = self.stack.pop(-1)
assert _name == U_ROOT
with open(self.filename, "a") as stream:
stream.write("</{0}>\n".format(U_ROOT))
stream.flush()
stream.close()
return
def write_eval_info(self, n, s, d, parameters, responses=None):
"""Write information for this evaluation
Parameters
----------
n : int
Evaluation number
s : int
Evaluation status
d : int
Evaluation directory
parameters : list of tuple
(name, value) pairs for each parameter
respones : list of tuple (optional)
(name, value) pairs for each response
"""
d = d.replace(self.evald, ".")
self.start_element(U_EVAL, ((U_EVAL_N, n), (U_EVAL_S, s), (U_EVAL_D, d)))
self.create_element(U_PARAMS, parameters)
if responses:
self.create_element(U_RESP, responses)
self.end_element(U_EVAL)
return
def close(self):
"""
Clean up the logger object
"""
self.end_document()
return
def read_mml_evaldb(filepath):
"""Read the Material Model Laboratory tabular file
Parameters
----------
filepath : str
Path to index file to read
Returns
-------
sources : list of str
Individual filepaths for each evaluation
parameters : tuple of tuple
(name, value) pairs for parameters for each evaluation
"""
D = realpath(dirname(filepath))
doc = xdom.parse(filepath)
root = doc.getElementsByTagName(U_ROOT)[0]
job = root.getAttribute(U_JOB)
sources = []
parameters = {}
responses = {}
for evaluation in root.getElementsByTagName(U_EVAL):
n = evaluation.getAttribute(U_EVAL_N)
d = realpath(join(D, evaluation.getAttribute(U_EVAL_D)))
f = join(d, "{0}.exo".format(job))
if isfile(f):
sources.append(f)
# get parameters
nparams = evaluation.getElementsByTagName(U_PARAMS)[0]
evars, enames = [], []
for (name, value) in nparams.attributes.items():
enames.append(name)
evars.append(float(value))
parameters[f] = zip(enames, evars)
# get responses
nresponses = evaluation.getElementsByTagName(U_RESP)
if nresponses:
rvars, rnames = [], []
for (name, value) in nresponses[0].attributes.items():
rnames.append(name)
rvars.append(float(value))
responses[f] = zip(rnames, rvars)
return sources, parameters, responses
def read_mml_evaldb_nd(filepath, nonan=1):
sources, parameters, responses = read_mml_evaldb(filepath)
head = [x[0] for x in parameters[sources[0]]]
resp = responses.get(sources[0])
if resp:
head.extend([x[0] for x in resp])
data = []
for source in sources:
r = responses.get(source)
if r is None:
continue
p = parameters[source]
line = [x[1] for x in p]
line.extend([x[1] for x in r])
data.append(line)
data = np.array(data)
if nonan:
# remove nan's
rows = np.where(np.isnan(data))[0]
data = np.delete(data, rows, 0)
return head, data, len(responses[sources[0]])
def correlations(filepath, nonan=1):
title = "CORRELATIONS AMONG INPUT AND OUTPUT VARIABLES CREATED BY MATMODLAB"
head, data, nresp = read_mml_evaldb_nd(filepath, nonan=nonan)
H = " " * 13 + " ".join("{0:>12s}".format(x) for x in head)
with open(splitext(filepath)[0] + ".corr", "w") as fobj:
fobj.write("{0}\n".format(title))
# get correlation matrix
corrcoef = np.corrcoef(data, rowvar=0)
i = 1
fobj.write("{0}\n".format(H))
for row in corrcoef:
fobj.write("{0:>12} {1}\n".format(
head[i-1],
" ".join("{0: 12.2f}".format(x) for x in row[:i])))
i += 1
return
def plot_correlations(filepath, nonan=1, pdf=0):
if environ.notebook == 2 and not pdf:
return plot_bokeh_correlations(filepath, nonan)
try:
import matplotlib.pyplot as plt
from matplotlib.ticker import FormatStrFormatter
except ImportError:
print("unable to import matplotlib")
return
head, data, nresp = read_mml_evaldb_nd(filepath, nonan=nonan)
# create xy scatter plots
y = data[:, -nresp]
sort = np.argsort(y)
y = y[sort]
keys = head[:-nresp]
colors = "bgrcmykw"
pdf = "{0}.pdf".format(splitext(filepath)[0])
plt.clf()
# set up subplots
fig, axs = plt.subplots(1, len(keys), sharey=True)
if len(keys) == 1:
axs = [axs]
ylabel = r"{0}".format(head[-1])
axs[0].set_ylabel(ylabel)
for i, key in enumerate(keys):
x = data[:, i][sort]
m2, m, b = np.polyfit(x, y, 2)
m2, (m, b) = 0, np.polyfit(x, y, 1)
axs[i].plot(x, y, "{0}.".format(colors[i]),
x, m2 * x * x + m * x + b, "-k")
axs[i].set_xlabel(r"{0}".format(key))
plt.setp(axs[i].xaxis.get_majorticklabels(),
rotation=45, fontsize="small")
continue
plt.savefig(pdf, transparent=True)
return
def plot_bokeh_correlations(filepath, nonan=1):
from bokeh.plotting import figure, gridplot
head, data, nresp = read_mml_evaldb_nd(filepath, nonan=nonan)
# create xy scatter plots
y = data[:, -nresp]
sort = np.argsort(y)
y = y[sort]
keys = head[:-nresp]
colors = ('blue', 'green', 'red', 'cyan',
'maroon', 'yellow', 'black', 'white')
ylabel = r"{0}".format(head[-1])
plots = []
for i, key in enumerate(keys):
x = data[:, i][sort]
m2, m, b = np.polyfit(x, y, 2)
m2, (m, b) = 0, np.polyfit(x, y, 1)
TOOLS = "pan,wheel_zoom,box_zoom,reset,save,resize"
y_axis_label = ylabel if not i else None
p = figure(tools=TOOLS, x_axis_label=r'{0}'.format(key),
y_axis_label=y_axis_label)
p.scatter(x, y, color=colors[i])
p.line(x, m2 * x * x + m * x + b, color='black')
plots.append(p)
return gridplot([plots])
def is_evaldb(filename):
if not isfile(filename) or not filename.endswith('.edb'):
return False
with open(filename, 'r') as fh:
for i in range(4):
if U_ROOT in fh.readline():
return True
return False
def main(argv):
parser = argparse.ArgumentParser()
parser.add_argument("action", choices=("plot", "table"))
parser.add_argument("filepath")
args = parser.parse_args(argv)
if args.action == "plot":
sys.exit(plot_correlations(args.filepath))
sys.exit(correlations(args.filepath))
if __name__ == "__main__":
main(sys.argv[1:])
| [
"xml.dom.minidom.parse",
"matplotlib.pyplot.savefig",
"argparse.ArgumentParser",
"numpy.corrcoef",
"numpy.polyfit",
"numpy.delete",
"matplotlib.pyplot.clf",
"os.path.splitext",
"numpy.argsort",
"numpy.array",
"bokeh.plotting.gridplot",
"os.path.realpath",
"os.path.dirname",
"os.path.isfile... | [((3815, 3835), 'xml.dom.minidom.parse', 'xdom.parse', (['filepath'], {}), '(filepath)\n', (3825, 3835), True, 'import xml.dom.minidom as xdom\n'), ((5415, 5429), 'numpy.array', 'np.array', (['data'], {}), '(data)\n', (5423, 5429), True, 'import numpy as np\n'), ((6756, 6769), 'numpy.argsort', 'np.argsort', (['y'], {}), '(y)\n', (6766, 6769), True, 'import numpy as np\n'), ((6891, 6900), 'matplotlib.pyplot.clf', 'plt.clf', ([], {}), '()\n', (6898, 6900), True, 'import matplotlib.pyplot as plt\n'), ((7510, 7544), 'matplotlib.pyplot.savefig', 'plt.savefig', (['pdf'], {'transparent': '(True)'}), '(pdf, transparent=True)\n', (7521, 7544), True, 'import matplotlib.pyplot as plt\n'), ((7786, 7799), 'numpy.argsort', 'np.argsort', (['y'], {}), '(y)\n', (7796, 7799), True, 'import numpy as np\n'), ((8493, 8510), 'bokeh.plotting.gridplot', 'gridplot', (['[plots]'], {}), '([plots])\n', (8501, 8510), False, 'from bokeh.plotting import figure, gridplot\n'), ((8798, 8823), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {}), '()\n', (8821, 8823), False, 'import argparse\n'), ((668, 686), 'os.path.realpath', 'realpath', (['filename'], {}), '(filename)\n', (676, 686), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((791, 813), 'os.path.dirname', 'dirname', (['self.filename'], {}), '(self.filename)\n', (798, 813), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((3786, 3803), 'os.path.dirname', 'dirname', (['filepath'], {}), '(filepath)\n', (3793, 3803), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((4197, 4206), 'os.path.isfile', 'isfile', (['f'], {}), '(f)\n', (4203, 4206), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((5525, 5549), 'numpy.delete', 'np.delete', (['data', 'rows', '(0)'], {}), '(data, rows, 0)\n', (5534, 5549), True, 'import numpy as np\n'), ((6004, 6031), 'numpy.corrcoef', 'np.corrcoef', (['data'], {'rowvar': '(0)'}), '(data, rowvar=0)\n', (6015, 6031), True, 'import numpy as np\n'), ((7173, 7192), 'numpy.polyfit', 'np.polyfit', (['x', 'y', '(2)'], {}), '(x, y, 2)\n', (7183, 7192), True, 'import numpy as np\n'), ((8076, 8095), 'numpy.polyfit', 'np.polyfit', (['x', 'y', '(2)'], {}), '(x, y, 2)\n', (8086, 8095), True, 'import numpy as np\n'), ((829, 846), 'os.path.isdir', 'isdir', (['self.evald'], {}), '(self.evald)\n', (834, 846), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((2085, 2101), 'time.localtime', 'time.localtime', ([], {}), '()\n', (2099, 2101), False, 'import time\n'), ((6864, 6882), 'os.path.splitext', 'splitext', (['filepath'], {}), '(filepath)\n', (6872, 6882), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((7217, 7236), 'numpy.polyfit', 'np.polyfit', (['x', 'y', '(1)'], {}), '(x, y, 1)\n', (7227, 7236), True, 'import numpy as np\n'), ((8120, 8139), 'numpy.polyfit', 'np.polyfit', (['x', 'y', '(1)'], {}), '(x, y, 1)\n', (8130, 8139), True, 'import numpy as np\n'), ((8548, 8564), 'os.path.isfile', 'isfile', (['filename'], {}), '(filename)\n', (8554, 8564), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n'), ((5491, 5505), 'numpy.isnan', 'np.isnan', (['data'], {}), '(data)\n', (5499, 5505), True, 'import numpy as np\n'), ((5863, 5881), 'os.path.splitext', 'splitext', (['filepath'], {}), '(filepath)\n', (5871, 5881), False, 'from os.path import realpath, join, isdir, isfile, dirname, splitext\n')] |
'''
This code will produce a porkchop plot of the J function over a range of launch times and flight times
'''
import math
import numpy
import PyKEP as pk
import matplotlib.pyplot as plt
import Vector
p1 = pk.planet.jpl_lp('earth')
p2 = pk.planet.mpcorb('99942 19.2 0.15 K107N 202.49545 126.41859 204.43202 3.33173 0.1911104 1.11267324 0.9223398 1 MPO164109 1397 2 2004-2008 0.40 M-v 3Eh MPCAPO C802 (99942) Apophis 20080109')
k2 = 0.6
n = 0
isp_chem = 350
isp_lt = 4000
t0_range = [0, 5000]
tof_range = [100, 900]
@numpy.vectorize
def J(t0, tof):
ep1 = pk.epoch(t0)
ep2 = pk.epoch(t0 + tof)
r1, v1 = p1.eph(ep1)
r2, v2 = p2.eph(ep2)
resJ = []
for lw in [False, True]:
prob = pk.lambert_exposin(r1, r2, tof * pk.DAY2SEC, pk.MU_SUN, lw, n, k2)
for i in range(prob.num_solutions()):
exps = prob.get_exposins()[i]
dv1 = Vector.mag(Vector.sub(prob.get_v1()[i], v1))
dv2 = Vector.mag(Vector.sub(prob.get_v2()[i], v2))
dvlt = exps.get_delta_v(pk.MU_SUN)
resJ.append(1.0 - math.exp(-(dv1 + dv2) / 9.81 / isp_chem - dvlt / 9.81 / isp_lt))
if len(resJ) == 0:
return numpy.nan
else:
return numpy.nanmin(resJ)
t0 = numpy.linspace(t0_range[0], t0_range[1], 200)
tof = numpy.linspace(tof_range[0], tof_range[1], 200)
X, Y = numpy.meshgrid(t0, tof)
Z = J(X, Y)
mZ = numpy.ma.array(Z, mask=numpy.isnan(Z))
plt.figure()
plt.pcolor(X, Y, mZ, vmin=numpy.nanmin(Z), vmax=numpy.nanmax(Z))
plt.colorbar()
plt.show()
| [
"PyKEP.planet.mpcorb",
"matplotlib.pyplot.colorbar",
"PyKEP.planet.jpl_lp",
"matplotlib.pyplot.figure",
"numpy.linspace",
"numpy.isnan",
"PyKEP.epoch",
"numpy.nanmax",
"numpy.nanmin",
"numpy.meshgrid",
"math.exp",
"PyKEP.lambert_exposin",
"matplotlib.pyplot.show"
] | [((207, 232), 'PyKEP.planet.jpl_lp', 'pk.planet.jpl_lp', (['"""earth"""'], {}), "('earth')\n", (223, 232), True, 'import PyKEP as pk\n'), ((238, 470), 'PyKEP.planet.mpcorb', 'pk.planet.mpcorb', (['"""99942 19.2 0.15 K107N 202.49545 126.41859 204.43202 3.33173 0.1911104 1.11267324 0.9223398 1 MPO164109 1397 2 2004-2008 0.40 M-v 3Eh MPCAPO C802 (99942) Apophis 20080109"""'], {}), "(\n '99942 19.2 0.15 K107N 202.49545 126.41859 204.43202 3.33173 0.1911104 1.11267324 0.9223398 1 MPO164109 1397 2 2004-2008 0.40 M-v 3Eh MPCAPO C802 (99942) Apophis 20080109'\n )\n", (254, 470), True, 'import PyKEP as pk\n'), ((1265, 1310), 'numpy.linspace', 'numpy.linspace', (['t0_range[0]', 't0_range[1]', '(200)'], {}), '(t0_range[0], t0_range[1], 200)\n', (1279, 1310), False, 'import numpy\n'), ((1317, 1364), 'numpy.linspace', 'numpy.linspace', (['tof_range[0]', 'tof_range[1]', '(200)'], {}), '(tof_range[0], tof_range[1], 200)\n', (1331, 1364), False, 'import numpy\n'), ((1372, 1395), 'numpy.meshgrid', 'numpy.meshgrid', (['t0', 'tof'], {}), '(t0, tof)\n', (1386, 1395), False, 'import numpy\n'), ((1452, 1464), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (1462, 1464), True, 'import matplotlib.pyplot as plt\n'), ((1530, 1544), 'matplotlib.pyplot.colorbar', 'plt.colorbar', ([], {}), '()\n', (1542, 1544), True, 'import matplotlib.pyplot as plt\n'), ((1545, 1555), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1553, 1555), True, 'import matplotlib.pyplot as plt\n'), ((594, 606), 'PyKEP.epoch', 'pk.epoch', (['t0'], {}), '(t0)\n', (602, 606), True, 'import PyKEP as pk\n'), ((617, 635), 'PyKEP.epoch', 'pk.epoch', (['(t0 + tof)'], {}), '(t0 + tof)\n', (625, 635), True, 'import PyKEP as pk\n'), ((744, 810), 'PyKEP.lambert_exposin', 'pk.lambert_exposin', (['r1', 'r2', '(tof * pk.DAY2SEC)', 'pk.MU_SUN', 'lw', 'n', 'k2'], {}), '(r1, r2, tof * pk.DAY2SEC, pk.MU_SUN, lw, n, k2)\n', (762, 810), True, 'import PyKEP as pk\n'), ((1240, 1258), 'numpy.nanmin', 'numpy.nanmin', (['resJ'], {}), '(resJ)\n', (1252, 1258), False, 'import numpy\n'), ((1436, 1450), 'numpy.isnan', 'numpy.isnan', (['Z'], {}), '(Z)\n', (1447, 1450), False, 'import numpy\n'), ((1491, 1506), 'numpy.nanmin', 'numpy.nanmin', (['Z'], {}), '(Z)\n', (1503, 1506), False, 'import numpy\n'), ((1513, 1528), 'numpy.nanmax', 'numpy.nanmax', (['Z'], {}), '(Z)\n', (1525, 1528), False, 'import numpy\n'), ((1102, 1165), 'math.exp', 'math.exp', (['(-(dv1 + dv2) / 9.81 / isp_chem - dvlt / 9.81 / isp_lt)'], {}), '(-(dv1 + dv2) / 9.81 / isp_chem - dvlt / 9.81 / isp_lt)\n', (1110, 1165), False, 'import math\n')] |
import numpy as np
import scipy.constants as c
import math, cmath
from sympy import *
from math import e
import numba
from numba import jit
import sympy as sp
r, x, a, theta = symbols('r x a theta')
init_printing(use_unicode=True)
@jit(nopython=True, cache=True, parallel=True)
def spherical_to_cartesian(r, theta, phi):
x = r * np.sin(theta) * np.cos(phi)
y = r * np.sin(theta) * np.sin(phi)
z = r * np.cos(theta)
return x, y, z
@jit(nopython=True, cache=True, parallel=True)
def cartesian_to_spherical(x, y, z):
r = math.sqrt(x ** 2 + y ** 2 + z ** 2)
theta = np.arccos(z / math.sqrt(x ** 2 + y ** 2 + z ** 2)) if r != 0 else 0
if x == 0:
phi = 0 if (y == 0) else 1.5708
else:
phi = np.arctan(y / x)
return r, theta, phi
@jit(nopython=True, cache=True, parallel=True)
def absolute(number):
return (number.real**2 + number.imag**2)**0.5
def P_l(l):
ans = 1 / (2 ** l * factorial(l)) * sp.diff((x ** 2 - 1) ** l, x, int(l))
return ans
def Pm_l(m, l):
ans = ((1 - x ** 2) ** (abs(m) / 2)) * sp.diff(P_l(l), x, abs(int(m)))
return ans
def angular_wave_func(m, l, theta_value, phi):
if m > 0:
E = (-1)**m
else:
E = 1
A_factor_1 = (2*l+1)/(4*math.pi)
A_factor_2 = math.factorial(l-abs(m)) / math.factorial(l+abs(m))
A = math.sqrt(A_factor_1*A_factor_2)
B = cmath.exp(m*phi*1j)
C = (Pm_l(m,l).subs(x,cos(theta)).subs(theta, theta_value)).evalf()
long_ans = complex(E * A * B * C)
ans = round(long_ans.real, 5) + round(long_ans.imag, 5)*1j
return ans
def Lq(q):
ans = e ** x * sp.diff(e ** -x * x ** q, x, int(q))
return ans
def assoc_Lq(p, q):
ans = (-1) ** p * sp.diff(Lq(q), x, int(p))
return ans
bohr=c.physical_constants['Bohr radius'][0]
def radial_wave_func(n, l, radius):
if radius == 0:
return np.nan
else:
A_factor_1 = (2/(n*a))**3
A_factor_2 = (math.factorial(n-l-1)) / (2*n*(math.factorial(n+l))**3)
A = (A_factor_1 * A_factor_2)**0.5
B = e**(-radius/(n*a))
C = ((2*radius)/(n*a))**l
p = 2*l + 1
q = n-l-1+p
D = assoc_Lq(p,q)
expression = A * B * C * D / (a**(-3/2))
subbed = expression.subs(x, 2*r/(n*a)).subs(r, radius).subs(a, bohr)
return round(subbed.evalf(), 5)
#@jit
def linspace(start, stop, num=50):
increment = (stop-start)/(num-1)
current = start
output = []
for i in range(0,int((stop-start)/increment)+1):
output.append(round(float(current),5))
current+=increment
return output
def meshgrid(x,y,z):
output = [[],[],[]]
output_0, output_1, output_2 = [],[],[]
x_list, y_list, z_list = [],[],[]
z_inner = []
for k,z_i in enumerate(z):
z_inner.append(z_i)
for i,x_i in enumerate(x):
x_list.append([x_i,x_i])
z_list.append(z_inner)
for j,y_i in enumerate(y):
y_inner = [[y_i,y_i] for i in range(len(x))]
y_list.append(y_inner)
output_0.append(x_list)
output_2.append(z_list)
return output_0, y_list, output_2
cartesian_to_spherical_vector = (np.vectorize(cartesian_to_spherical))
angular_wave_vector = (np.vectorize(angular_wave_func))
radial_wave_vector = (np.vectorize(radial_wave_func))
absolute_vector = (np.vectorize(absolute))
def hydrogen_wave_func(n, l, m, roa, Nx, Ny, Nz):
x_space = np.linspace(-roa, roa, Nx)
y_space = np.linspace(-roa, roa, Ny)
z_space = np.linspace(-roa, roa, Nz)
xx, yy, zz = np.meshgrid(y_space, x_space, z_space)
r, theta, phi = (cartesian_to_spherical_vector(yy, xx, zz))
if m == 0:
angular = angular_wave_vector(m, l, theta, phi)
elif m < 0:
angular = (1j / math.sqrt(2)) * (angular_wave_vector(m, l, theta, phi) - (-1) ** m * angular_wave_vector(-m, l, theta, phi))
elif m > 0:
angular = (1 / math.sqrt(2)) * (angular_wave_vector(-m, l, theta, phi) + (-1) ** m * angular_wave_vector(m, l, theta, phi))
radial = radial_wave_vector(n, l, r * a)
mag = absolute_vector(radial * angular) ** 2
return np.array(yy), np.array(xx), np.array(zz), np.round(mag, 5), radial * angular
#don't use?
def hydrogen_wave_func_cross(n, l, m, roa, Nx, Ny, Nz):
x_space = np.linspace(-roa, roa, int(Nx/2))
y_space = np.linspace(-roa, roa, Ny)
z_space = np.linspace(-roa, roa, Nz)
xx, yy, zz = np.meshgrid(y_space, x_space, z_space)
r, theta, phi = (cartesian_to_spherical_vector(yy, xx, zz))
if m == 0:
angular = angular_wave_vector(m, l, theta, phi)
elif m < 0:
angular = (1j / math.sqrt(2)) * (angular_wave_vector(m, l, theta, phi) - (-1) ** m * angular_wave_vector(-m, l, theta, phi))
elif m > 0:
angular = (1 / math.sqrt(2)) * (angular_wave_vector(-m, l, theta, phi) + (-1) ** m * angular_wave_vector(m, l, theta, phi))
radial = radial_wave_vector(n, l, r * a)
mag_true = radial * angular
mag = absolute_vector(mag_true) ** 2
return np.array(yy), np.array(xx), np.array(zz), np.round(mag, 5), mag_true | [
"math.factorial",
"math.sqrt",
"numpy.array",
"cmath.exp",
"numba.jit",
"numpy.linspace",
"numpy.cos",
"numpy.sin",
"numpy.meshgrid",
"numpy.vectorize",
"numpy.round",
"numpy.arctan"
] | [((233, 278), 'numba.jit', 'jit', ([], {'nopython': '(True)', 'cache': '(True)', 'parallel': '(True)'}), '(nopython=True, cache=True, parallel=True)\n', (236, 278), False, 'from numba import jit\n'), ((449, 494), 'numba.jit', 'jit', ([], {'nopython': '(True)', 'cache': '(True)', 'parallel': '(True)'}), '(nopython=True, cache=True, parallel=True)\n', (452, 494), False, 'from numba import jit\n'), ((779, 824), 'numba.jit', 'jit', ([], {'nopython': '(True)', 'cache': '(True)', 'parallel': '(True)'}), '(nopython=True, cache=True, parallel=True)\n', (782, 824), False, 'from numba import jit\n'), ((3144, 3180), 'numpy.vectorize', 'np.vectorize', (['cartesian_to_spherical'], {}), '(cartesian_to_spherical)\n', (3156, 3180), True, 'import numpy as np\n'), ((3205, 3236), 'numpy.vectorize', 'np.vectorize', (['angular_wave_func'], {}), '(angular_wave_func)\n', (3217, 3236), True, 'import numpy as np\n'), ((3260, 3290), 'numpy.vectorize', 'np.vectorize', (['radial_wave_func'], {}), '(radial_wave_func)\n', (3272, 3290), True, 'import numpy as np\n'), ((3311, 3333), 'numpy.vectorize', 'np.vectorize', (['absolute'], {}), '(absolute)\n', (3323, 3333), True, 'import numpy as np\n'), ((540, 575), 'math.sqrt', 'math.sqrt', (['(x ** 2 + y ** 2 + z ** 2)'], {}), '(x ** 2 + y ** 2 + z ** 2)\n', (549, 575), False, 'import math, cmath\n'), ((1330, 1364), 'math.sqrt', 'math.sqrt', (['(A_factor_1 * A_factor_2)'], {}), '(A_factor_1 * A_factor_2)\n', (1339, 1364), False, 'import math, cmath\n'), ((1371, 1396), 'cmath.exp', 'cmath.exp', (['(m * phi * 1.0j)'], {}), '(m * phi * 1.0j)\n', (1380, 1396), False, 'import math, cmath\n'), ((3400, 3426), 'numpy.linspace', 'np.linspace', (['(-roa)', 'roa', 'Nx'], {}), '(-roa, roa, Nx)\n', (3411, 3426), True, 'import numpy as np\n'), ((3441, 3467), 'numpy.linspace', 'np.linspace', (['(-roa)', 'roa', 'Ny'], {}), '(-roa, roa, Ny)\n', (3452, 3467), True, 'import numpy as np\n'), ((3482, 3508), 'numpy.linspace', 'np.linspace', (['(-roa)', 'roa', 'Nz'], {}), '(-roa, roa, Nz)\n', (3493, 3508), True, 'import numpy as np\n'), ((3531, 3569), 'numpy.meshgrid', 'np.meshgrid', (['y_space', 'x_space', 'z_space'], {}), '(y_space, x_space, z_space)\n', (3542, 3569), True, 'import numpy as np\n'), ((4340, 4366), 'numpy.linspace', 'np.linspace', (['(-roa)', 'roa', 'Ny'], {}), '(-roa, roa, Ny)\n', (4351, 4366), True, 'import numpy as np\n'), ((4381, 4407), 'numpy.linspace', 'np.linspace', (['(-roa)', 'roa', 'Nz'], {}), '(-roa, roa, Nz)\n', (4392, 4407), True, 'import numpy as np\n'), ((4430, 4468), 'numpy.meshgrid', 'np.meshgrid', (['y_space', 'x_space', 'z_space'], {}), '(y_space, x_space, z_space)\n', (4441, 4468), True, 'import numpy as np\n'), ((350, 361), 'numpy.cos', 'np.cos', (['phi'], {}), '(phi)\n', (356, 361), True, 'import numpy as np\n'), ((390, 401), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (396, 401), True, 'import numpy as np\n'), ((414, 427), 'numpy.cos', 'np.cos', (['theta'], {}), '(theta)\n', (420, 427), True, 'import numpy as np\n'), ((735, 751), 'numpy.arctan', 'np.arctan', (['(y / x)'], {}), '(y / x)\n', (744, 751), True, 'import numpy as np\n'), ((4132, 4144), 'numpy.array', 'np.array', (['yy'], {}), '(yy)\n', (4140, 4144), True, 'import numpy as np\n'), ((4146, 4158), 'numpy.array', 'np.array', (['xx'], {}), '(xx)\n', (4154, 4158), True, 'import numpy as np\n'), ((4160, 4172), 'numpy.array', 'np.array', (['zz'], {}), '(zz)\n', (4168, 4172), True, 'import numpy as np\n'), ((4174, 4190), 'numpy.round', 'np.round', (['mag', '(5)'], {}), '(mag, 5)\n', (4182, 4190), True, 'import numpy as np\n'), ((5050, 5062), 'numpy.array', 'np.array', (['yy'], {}), '(yy)\n', (5058, 5062), True, 'import numpy as np\n'), ((5064, 5076), 'numpy.array', 'np.array', (['xx'], {}), '(xx)\n', (5072, 5076), True, 'import numpy as np\n'), ((5078, 5090), 'numpy.array', 'np.array', (['zz'], {}), '(zz)\n', (5086, 5090), True, 'import numpy as np\n'), ((5092, 5108), 'numpy.round', 'np.round', (['mag', '(5)'], {}), '(mag, 5)\n', (5100, 5108), True, 'import numpy as np\n'), ((334, 347), 'numpy.sin', 'np.sin', (['theta'], {}), '(theta)\n', (340, 347), True, 'import numpy as np\n'), ((374, 387), 'numpy.sin', 'np.sin', (['theta'], {}), '(theta)\n', (380, 387), True, 'import numpy as np\n'), ((1937, 1962), 'math.factorial', 'math.factorial', (['(n - l - 1)'], {}), '(n - l - 1)\n', (1951, 1962), False, 'import math, cmath\n'), ((602, 637), 'math.sqrt', 'math.sqrt', (['(x ** 2 + y ** 2 + z ** 2)'], {}), '(x ** 2 + y ** 2 + z ** 2)\n', (611, 637), False, 'import math, cmath\n'), ((1968, 1989), 'math.factorial', 'math.factorial', (['(n + l)'], {}), '(n + l)\n', (1982, 1989), False, 'import math, cmath\n'), ((3755, 3767), 'math.sqrt', 'math.sqrt', (['(2)'], {}), '(2)\n', (3764, 3767), False, 'import math, cmath\n'), ((4654, 4666), 'math.sqrt', 'math.sqrt', (['(2)'], {}), '(2)\n', (4663, 4666), False, 'import math, cmath\n'), ((3903, 3915), 'math.sqrt', 'math.sqrt', (['(2)'], {}), '(2)\n', (3912, 3915), False, 'import math, cmath\n'), ((4802, 4814), 'math.sqrt', 'math.sqrt', (['(2)'], {}), '(2)\n', (4811, 4814), False, 'import math, cmath\n')] |
## Bootstrapped from https://github.com/cfld/locusts
import os
import random
import backoff
import rasterio
import ee
ee.Initialize()
from polygon_geohasher.polygon_geohasher import geohash_to_polygon, polygon_to_geohashes
from shapely import geometry
import urllib
from urllib.request import urlretrieve
import numpy as np
from scipy.spatial import ConvexHull
sentinel_channels = ['B1', 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B8A', 'B9', 'B11', 'B12', 'QA60']
def geohash2cell(geohash):
polygon = geohash_to_polygon(geohash)
cell = ee.Geometry(geometry.mapping(polygon))
return cell
def maskS2clouds(image):
qa = image.select('QA60')
cloudBitMask = 1 << 10
cirrusBitMask = 1 << 11
mask = qa.bitwiseAnd(cloudBitMask).eq(0)
mask = mask.bitwiseAnd(cirrusBitMask).eq(0)
return image.updateMask(mask)
@backoff.on_exception(backoff.constant, urllib.error.HTTPError, max_tries=4, interval=2)
def safe_urlretrieve(url, outpath):
_ = urlretrieve(url, outpath)
def get_one_sentinel(date_start, date_end, geohash, outpath, transform):
cell = geohash2cell(geohash)
collection = (
ee.ImageCollection('COPERNICUS/S2')
.select(sentinel_channels)
.filterDate(date_start, date_end)
.filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 20)).map(maskS2clouds) # Apply cloud mask
)
image = collection.sort('system:index', opt_ascending=False).median()
try:
url = image.clip(cell).getDownloadURL(
params={
"name": geohash,
"crs": "EPSG:4326",
"crs_transform": transform
}
)
_ = safe_urlretrieve(url, outpath)
except:
pass
def geotiff_to_geohashes(geotiff, max_pts = 260000000):
img = rasterio.open(geotiff)
transform = list(img.transform)[:6]
nz = np.nonzero(img.read(1))
coords = np.empty((len(nz[0]), 2))
for k, (i,j) in enumerate(zip(nz[0], nz[1])):
coords[k] = np.array(img.transform*(i,j))
random_pts = coords[np.random.choice(coords.shape[0], max_pts, replace=False), :]
hull = ConvexHull(random_pts)
polygon = geometry.Polygon(random_pts[hull.vertices, :])
# hull_vertices = np.load('hull-vertices.npy')
# polygon = geometry.Polygon(hull_vertices)
geohashes = polygon_to_geohashes(polygon, precision=5, inner=True)
return geohashes, transform
def main(
geotiff,
out_dir='data/sentinel_2_download',
date_start="2016-01-01",
date_end="2016-12-31",
):
os.makedirs(out_dir, exist_ok=True)
geohashes, transform = geotiff_to_geohashes(geotiff)
for geohash in geohashes:
outpath = os.path.join(out_dir, f'{geohash}.zip')
get_one_sentinel(date_start, date_end, geohash, outpath, transform)
if __name__ == '__main__':
main('data/land-cover-10m.tiff')
| [
"os.makedirs",
"urllib.request.urlretrieve",
"numpy.random.choice",
"rasterio.open",
"os.path.join",
"ee.ImageCollection",
"shapely.geometry.mapping",
"backoff.on_exception",
"scipy.spatial.ConvexHull",
"numpy.array",
"shapely.geometry.Polygon",
"polygon_geohasher.polygon_geohasher.geohash_to_... | [((120, 135), 'ee.Initialize', 'ee.Initialize', ([], {}), '()\n', (133, 135), False, 'import ee\n'), ((849, 940), 'backoff.on_exception', 'backoff.on_exception', (['backoff.constant', 'urllib.error.HTTPError'], {'max_tries': '(4)', 'interval': '(2)'}), '(backoff.constant, urllib.error.HTTPError, max_tries=4,\n interval=2)\n', (869, 940), False, 'import backoff\n'), ((510, 537), 'polygon_geohasher.polygon_geohasher.geohash_to_polygon', 'geohash_to_polygon', (['geohash'], {}), '(geohash)\n', (528, 537), False, 'from polygon_geohasher.polygon_geohasher import geohash_to_polygon, polygon_to_geohashes\n'), ((981, 1006), 'urllib.request.urlretrieve', 'urlretrieve', (['url', 'outpath'], {}), '(url, outpath)\n', (992, 1006), False, 'from urllib.request import urlretrieve\n'), ((1802, 1824), 'rasterio.open', 'rasterio.open', (['geotiff'], {}), '(geotiff)\n', (1815, 1824), False, 'import rasterio\n'), ((2136, 2158), 'scipy.spatial.ConvexHull', 'ConvexHull', (['random_pts'], {}), '(random_pts)\n', (2146, 2158), False, 'from scipy.spatial import ConvexHull\n'), ((2173, 2219), 'shapely.geometry.Polygon', 'geometry.Polygon', (['random_pts[hull.vertices, :]'], {}), '(random_pts[hull.vertices, :])\n', (2189, 2219), False, 'from shapely import geometry\n'), ((2335, 2389), 'polygon_geohasher.polygon_geohasher.polygon_to_geohashes', 'polygon_to_geohashes', (['polygon'], {'precision': '(5)', 'inner': '(True)'}), '(polygon, precision=5, inner=True)\n', (2355, 2389), False, 'from polygon_geohasher.polygon_geohasher import geohash_to_polygon, polygon_to_geohashes\n'), ((2549, 2584), 'os.makedirs', 'os.makedirs', (['out_dir'], {'exist_ok': '(True)'}), '(out_dir, exist_ok=True)\n', (2560, 2584), False, 'import os\n'), ((561, 586), 'shapely.geometry.mapping', 'geometry.mapping', (['polygon'], {}), '(polygon)\n', (577, 586), False, 'from shapely import geometry\n'), ((2008, 2040), 'numpy.array', 'np.array', (['(img.transform * (i, j))'], {}), '(img.transform * (i, j))\n', (2016, 2040), True, 'import numpy as np\n'), ((2692, 2731), 'os.path.join', 'os.path.join', (['out_dir', 'f"""{geohash}.zip"""'], {}), "(out_dir, f'{geohash}.zip')\n", (2704, 2731), False, 'import os\n'), ((2063, 2120), 'numpy.random.choice', 'np.random.choice', (['coords.shape[0]', 'max_pts'], {'replace': '(False)'}), '(coords.shape[0], max_pts, replace=False)\n', (2079, 2120), True, 'import numpy as np\n'), ((1288, 1331), 'ee.Filter.lt', 'ee.Filter.lt', (['"""CLOUDY_PIXEL_PERCENTAGE"""', '(20)'], {}), "('CLOUDY_PIXEL_PERCENTAGE', 20)\n", (1300, 1331), False, 'import ee\n'), ((1147, 1182), 'ee.ImageCollection', 'ee.ImageCollection', (['"""COPERNICUS/S2"""'], {}), "('COPERNICUS/S2')\n", (1165, 1182), False, 'import ee\n')] |
import pandas as pd
import numpy as np
from misc import data_io
DATA_DIR = 'data/ut-interaction/'
""" Folder structure
<'set1' or 'set2'>/keypoints
<video_name>/
<video_name>_<frame_num>_keypoints.json
...
Ex: DATA_DIR + 'set1/keypoints/0_1_4/0_1_4_000000000042_keypoints.json'
"""
VIDEOS = [
['0_1_4','1_1_2','2_1_1','3_1_3','4_1_0','5_1_5','6_2_4','7_2_5','8_2_0',
'9_2_2','10_2_1','11_2_3','12_3_4','13_3_2','14_3_1','15_3_3','16_3_5',
'17_3_0','18_4_4','19_4_1','20_4_2','21_4_0','22_4_3','23_4_5','24_5_0',
'25_5_4','26_5_2','27_5_1','28_5_3','29_5_5','30_6_2','31_6_5','32_6_1',
'33_6_3','34_6_0','35_7_0','36_7_5','37_7_4','38_7_2','39_7_3','40_7_1',
'41_8_0','42_8_2','43_8_4','44_8_4','45_8_5','46_8_3','47_8_1','48_9_3',
'49_9_5','50_9_2','51_9_4','52_9_0','53_9_1','54_10_0','55_10_4','56_10_5',
'57_10_3','58_10_1','59_10_2'], #set1
['0_11_4','1_11_2','2_11_5','3_11_0','4_11_3','5_11_1','6_12_0','7_12_3',
'8_12_5','9_12_1','10_12_4','11_12_2','12_13_4','13_13_2','14_13_1',
'15_13_3','16_13_5','17_13_0','18_14_0','19_14_1','20_14_5','21_14_3',
'22_14_4','23_14_2','24_15_1','25_15_0','26_15_4','27_15_2','28_15_3',
'29_15_5','30_16_3','31_16_0','32_16_1','33_16_4','34_16_2','35_16_5',
'36_17_1','37_17_0','38_17_3','39_17_5','40_17_4','41_17_2','42_18_2',
'43_18_4','44_18_1','45_18_3','46_18_5','47_18_0','48_19_0','49_19_1',
'50_19_4','51_19_3','52_19_5','53_19_2','54_20_1','55_20_0','56_20_5',
'57_20_3','58_20_4','59_20_2'] #set2
]
ACTIONS = ['Hand Shaking','Hugging','Kicking','Pointing','Punching','Pushing']
def get_ground_truth(data_dir=DATA_DIR):
video_lst, setid_lst, seq_lst, path_lst, action_lst = [], [], [], [], []
for set_id, set_videos in enumerate(VIDEOS):
video_lst = video_lst + set_videos
setid_lst = setid_lst + len(set_videos)*[set_id+1]
for video in set_videos:
num, seq, action = video.split('_')
seq_lst.append(int(seq))
action_lst.append(int(action))
path = '{}set{}/keypoints/{}/'.format(data_dir, set_id+1, video)
path_lst.append(path)
dataframe_dict = {'video_id': video_lst,
'setid': setid_lst,
'seq': seq_lst,
'path': path_lst,
'action': action_lst}
ground_truth = pd.DataFrame(dataframe_dict).set_index('video_id')
return ground_truth
def get_folds(setid):
if setid == 1:
folds = np.arange(10)
elif setid == 2:
folds = np.arange(10, 20)
else:
raise ValueError("setid must be 1 or 2, value entered: "+str(setid))
return folds
def get_train_gt(fold_num):
if fold_num < 0 or fold_num > 19:
raise ValueError("fold_num must be within 0 and 19, value entered: "+str(fold_num))
if fold_num < 10:
setid = 1
sequences = np.arange(10)
fold_sequences = sequences[sequences != fold_num] + 1
else:
setid = 2
sequences = np.arange(10, 20)
fold_sequences = sequences[sequences != fold_num] + 1
ground_truth = get_ground_truth()
gt_split = ground_truth[ground_truth.setid == setid]
gt_split = gt_split[gt_split.seq.isin(fold_sequences)]
return gt_split
def get_val_gt(fold_num):
if fold_num < 0 or fold_num > 19:
raise ValueError("fold_num must be within 0 and 19, value entered: "+str(fold_num))
if fold_num < 10:
setid = 1
sequences = np.arange(10)
fold_sequences = sequences[sequences == fold_num] + 1
else:
setid = 2
sequences = np.arange(10, 20)
fold_sequences = sequences[sequences == fold_num] + 1
ground_truth = get_ground_truth()
gt_split = ground_truth[ground_truth.setid == setid]
gt_split = gt_split[gt_split.seq.isin(fold_sequences)]
return gt_split
def get_train(fold_num, **kwargs):
if fold_num < 0 or fold_num > 19:
raise ValueError("fold_num must be within 0 and 19, value entered: "+str(fold_num))
if fold_num < 10:
setid = 1
sequences = np.arange(10)
fold_sequences = sequences[sequences != fold_num] + 1
else:
setid = 2
sequences = np.arange(10, 20)
fold_sequences = sequences[sequences != fold_num] + 1
return get_seqs(setid, fold_sequences, **kwargs)
def get_val(fold_num, **kwargs):
if fold_num < 0 or fold_num > 19:
raise ValueError("fold_num must be within 0 and 19, value entered: "+str(fold_num))
if fold_num < 10:
setid = 1
sequences = np.arange(10)
fold_sequences = sequences[sequences == fold_num] + 1
else:
setid = 2
sequences = np.arange(10, 20)
fold_sequences = sequences[sequences == fold_num] + 1
return get_seqs(setid, fold_sequences, **kwargs)
def get_seqs(setid, selected_sequences, **kwargs):
if setid < 1 or setid > 2:
raise ValueError("setid must be 1 or 2, value entered: "+str(setid))
ground_truth = get_ground_truth()
gt_split = ground_truth[ground_truth.setid == setid]
gt_split = gt_split[gt_split.seq.isin(selected_sequences)]
X, Y = data_io.get_data(gt_split, pose_style='OpenPose', **kwargs)
return X, Y
| [
"pandas.DataFrame",
"misc.data_io.get_data",
"numpy.arange"
] | [((5236, 5295), 'misc.data_io.get_data', 'data_io.get_data', (['gt_split'], {'pose_style': '"""OpenPose"""'}), "(gt_split, pose_style='OpenPose', **kwargs)\n", (5252, 5295), False, 'from misc import data_io\n'), ((2532, 2545), 'numpy.arange', 'np.arange', (['(10)'], {}), '(10)\n', (2541, 2545), True, 'import numpy as np\n'), ((2929, 2942), 'numpy.arange', 'np.arange', (['(10)'], {}), '(10)\n', (2938, 2942), True, 'import numpy as np\n'), ((3053, 3070), 'numpy.arange', 'np.arange', (['(10)', '(20)'], {}), '(10, 20)\n', (3062, 3070), True, 'import numpy as np\n'), ((3534, 3547), 'numpy.arange', 'np.arange', (['(10)'], {}), '(10)\n', (3543, 3547), True, 'import numpy as np\n'), ((3658, 3675), 'numpy.arange', 'np.arange', (['(10)', '(20)'], {}), '(10, 20)\n', (3667, 3675), True, 'import numpy as np\n'), ((4148, 4161), 'numpy.arange', 'np.arange', (['(10)'], {}), '(10)\n', (4157, 4161), True, 'import numpy as np\n'), ((4272, 4289), 'numpy.arange', 'np.arange', (['(10)', '(20)'], {}), '(10, 20)\n', (4281, 4289), True, 'import numpy as np\n'), ((4634, 4647), 'numpy.arange', 'np.arange', (['(10)'], {}), '(10)\n', (4643, 4647), True, 'import numpy as np\n'), ((4758, 4775), 'numpy.arange', 'np.arange', (['(10)', '(20)'], {}), '(10, 20)\n', (4767, 4775), True, 'import numpy as np\n'), ((2394, 2422), 'pandas.DataFrame', 'pd.DataFrame', (['dataframe_dict'], {}), '(dataframe_dict)\n', (2406, 2422), True, 'import pandas as pd\n'), ((2583, 2600), 'numpy.arange', 'np.arange', (['(10)', '(20)'], {}), '(10, 20)\n', (2592, 2600), True, 'import numpy as np\n')] |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Benchmark different GUI image draw times in tkinter
Environment setup instructions:
conda create -n gui-test tk matplotlib pillow vispy
pip install pyopengltk
"""
import time
import tkinter as tk
import numpy as np
from PIL import Image, ImageTk
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
import vispy
from vispy import scene
from vispy.app import use_app
def pil_gui_test(arr):
# https://stackoverflow.com/questions/52459277/convert-a-c-or-numpy-array-to-a-tkinter-photoimage-with-a-minimum-number-of-copi
root = tk.Tk()
start = time.time()
img = ImageTk.PhotoImage(Image.fromarray(arr))
stop = time.time()
print(f"Pillow run took {stop-start} s")
lbl = tk.Label(root, image=img)
lbl.pack()
root.mainloop()
def matplotlib_gui_test(arr):
# https://matplotlib.org/3.1.0/gallery/user_interfaces/embedding_in_tk_sgskip.html
root = tk.Tk()
f = Figure()
canvas = FigureCanvasTkAgg(f,root)
canvas.get_tk_widget().pack(side=tk.TOP, fill=tk.BOTH, expand=1)
start = time.time()
f.add_subplot(111).imshow(arr)
canvas.draw()
stop = time.time()
print(f"Matplotlib run took {stop-start} s")
lbl = tk.Label(root)
lbl.pack()
root.mainloop()
def vispy_gui_test(arr):
# https://github.com/vispy/vispy/issues/2168
# https://vispy.org/gallery/scene/image.html
root = tk.Tk()
app = use_app("tkinter")
canvas = vispy.scene.SceneCanvas(keys='interactive', show=True, parent=root, app=app)
# Set up a viewbox to display the image with interactive pan/zoom
view = canvas.central_widget.add_view()
# Set 2D camera (the camera will scale to the contents in the scene)
view.camera = scene.PanZoomCamera(aspect=1)
view.camera.flip = (0, 1, 0)
view.camera.zoom(1.0)
# TODO: This isn't setting the window size correctly.
# Need to manually expand the window to see the image
canvas.native.pack(side=tk.TOP, fill=tk.BOTH, expand=1)
# Create the image
start = time.time()
image = scene.visuals.Image(arr, interpolation='nearest',
parent=view.scene, method='subdivide')
view.camera.set_range()
stop = time.time()
print(f"Vispy run took {stop-start} s")
app.run()
if __name__ == "__main__":
# generate image array to plot
arr = np.random.randint(low=255, size=(100, 100, 3), dtype=np.uint8)
pil_gui_test(arr)
matplotlib_gui_test(arr)
vispy_gui_test(arr)
| [
"vispy.app.use_app",
"PIL.Image.fromarray",
"vispy.scene.visuals.Image",
"matplotlib.figure.Figure",
"vispy.scene.SceneCanvas",
"numpy.random.randint",
"tkinter.Tk",
"tkinter.Label",
"vispy.scene.PanZoomCamera",
"time.time",
"matplotlib.backends.backend_tkagg.FigureCanvasTkAgg"
] | [((646, 653), 'tkinter.Tk', 'tk.Tk', ([], {}), '()\n', (651, 653), True, 'import tkinter as tk\n'), ((671, 682), 'time.time', 'time.time', ([], {}), '()\n', (680, 682), False, 'import time\n'), ((745, 756), 'time.time', 'time.time', ([], {}), '()\n', (754, 756), False, 'import time\n'), ((817, 842), 'tkinter.Label', 'tk.Label', (['root'], {'image': 'img'}), '(root, image=img)\n', (825, 842), True, 'import tkinter as tk\n'), ((1012, 1019), 'tkinter.Tk', 'tk.Tk', ([], {}), '()\n', (1017, 1019), True, 'import tkinter as tk\n'), ((1033, 1041), 'matplotlib.figure.Figure', 'Figure', ([], {}), '()\n', (1039, 1041), False, 'from matplotlib.figure import Figure\n'), ((1055, 1081), 'matplotlib.backends.backend_tkagg.FigureCanvasTkAgg', 'FigureCanvasTkAgg', (['f', 'root'], {}), '(f, root)\n', (1072, 1081), False, 'from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg\n'), ((1167, 1178), 'time.time', 'time.time', ([], {}), '()\n', (1176, 1178), False, 'import time\n'), ((1250, 1261), 'time.time', 'time.time', ([], {}), '()\n', (1259, 1261), False, 'import time\n'), ((1326, 1340), 'tkinter.Label', 'tk.Label', (['root'], {}), '(root)\n', (1334, 1340), True, 'import tkinter as tk\n'), ((1525, 1532), 'tkinter.Tk', 'tk.Tk', ([], {}), '()\n', (1530, 1532), True, 'import tkinter as tk\n'), ((1543, 1561), 'vispy.app.use_app', 'use_app', (['"""tkinter"""'], {}), "('tkinter')\n", (1550, 1561), False, 'from vispy.app import use_app\n'), ((1575, 1651), 'vispy.scene.SceneCanvas', 'vispy.scene.SceneCanvas', ([], {'keys': '"""interactive"""', 'show': '(True)', 'parent': 'root', 'app': 'app'}), "(keys='interactive', show=True, parent=root, app=app)\n", (1598, 1651), False, 'import vispy\n'), ((1867, 1896), 'vispy.scene.PanZoomCamera', 'scene.PanZoomCamera', ([], {'aspect': '(1)'}), '(aspect=1)\n', (1886, 1896), False, 'from vispy import scene\n'), ((2177, 2188), 'time.time', 'time.time', ([], {}), '()\n', (2186, 2188), False, 'import time\n'), ((2201, 2294), 'vispy.scene.visuals.Image', 'scene.visuals.Image', (['arr'], {'interpolation': '"""nearest"""', 'parent': 'view.scene', 'method': '"""subdivide"""'}), "(arr, interpolation='nearest', parent=view.scene, method\n ='subdivide')\n", (2220, 2294), False, 'from vispy import scene\n'), ((2361, 2372), 'time.time', 'time.time', ([], {}), '()\n', (2370, 2372), False, 'import time\n'), ((2513, 2575), 'numpy.random.randint', 'np.random.randint', ([], {'low': '(255)', 'size': '(100, 100, 3)', 'dtype': 'np.uint8'}), '(low=255, size=(100, 100, 3), dtype=np.uint8)\n', (2530, 2575), True, 'import numpy as np\n'), ((712, 732), 'PIL.Image.fromarray', 'Image.fromarray', (['arr'], {}), '(arr)\n', (727, 732), False, 'from PIL import Image, ImageTk\n')] |
#!/usr/bin/python
import kaldi_io
import sys
import os
from os.path import join, isdir
from numpy.random import permutation
import itertools
import keras
import numpy as np
from keras.preprocessing.sequence import pad_sequences
import queue
from threading import Thread
import random
import glob
import sys
sys.path.insert(0, '/mnt/matylda3/vydana/HOW2_EXP/MT_Transformer')
from MT_TransV1.CMVN import CMVN
from MT_TransV1.Load_sp_model import Load_sp_models
#===============================================
#-----------------------------------------------
class DataLoader(object):
def __init__(self, input_dict):
#def __init__(self,files, max_batch_label_len, max_batch_len, max_feat_len, max_label_len, Src_model, Tgt_model, queue_size=100,apply_cmvn=1,min_words=3,min_len_ratio=1.5):
self.files = input_dict['files'] ####
print(self.files)
if self.files==[]:
print('input to data generator in empty')
exit(0)
self.Src_model = input_dict['Src_model']
self.Tgt_model = input_dict['Tgt_model']
self.max_batch_len = input_dict['max_batch_len']
self.max_batch_label_len = input_dict['max_batch_label_len']
self.max_feat_len = input_dict['max_feat_len']
self.max_label_len = input_dict['max_label_len']
self.min_len_ratio = input_dict['min_len_ratio']
self.min_words = input_dict['min_words']
self.max_words = input_dict['max_words']
self.apply_cmvn = input_dict['apply_cmvn']
self.queue = queue.Queue(input_dict['queue_size'])
self.Src_padding_id = self.Src_model.__len__()
self.Tgt_padding_id = self.Tgt_model.__len__()
self.word_space_token = self.Src_model.EncodeAsIds('_____')[0]
self._thread = Thread(target=self.__load_data)
self._thread.daemon = True
self._thread.start()
def __reset_the_data_holders(self):
self.batch_names=[]
self.batch_Src_data=[]
self.batch_Src_length=[]
self.batch_Src_labels=[]
self.batch_Src_label_length=[]
self.batch_Src_text=[]
self.batch_Src_text_length=[]
self.batch_Tgt_labels=[]
self.batch_Tgt_label_length=[]
self.batch_Tgt_text=[]
self.batch_Tgt_text_length=[]
#---------------------------------------------------------------------
def make_batching_dict(self):
#----------------------------------------
smp_Src_data= pad_sequences(self.batch_Src_data,maxlen=max(self.batch_Src_length),dtype='float32',padding='post',value=0.0)
smp_Src_labels = pad_sequences(self.batch_Src_labels,maxlen=max(self.batch_Src_label_length),dtype='int32',padding='post',value=self.Src_padding_id)
smp_Tgt_labels = pad_sequences(self.batch_Tgt_labels,maxlen=max(self.batch_Tgt_label_length),dtype='int32',padding='post',value=self.Tgt_padding_id)
smp_Src_Text = pad_sequences(self.batch_Src_text, maxlen=max(self.batch_Src_text_length),dtype=object,padding='post',value='')
smp_Tgt_Text = pad_sequences(self.batch_Tgt_text, maxlen=max(self.batch_Tgt_text_length),dtype=object,padding='post',value='')
batch_data_dict={
'smp_names':self.batch_names,
'smp_Src_data':smp_Src_data,
'smp_Src_labels':smp_Src_labels,
'smp_Tgt_labels':smp_Tgt_labels,
'smp_Src_Text':smp_Src_Text,
'smp_Tgt_Text':smp_Tgt_Text,
'smp_Src_data_length':self.batch_Src_length,
'smp_Src_label_length':self.batch_Src_label_length,
'smp_Src_text_length':self.batch_Src_text_length,
'smp_Tgt_label_length':self.batch_Tgt_label_length,
'smp_Tgt_text_length':self.batch_Tgt_text_length}
return batch_data_dict
#------------------------------------------
#------------------------------------------
def __load_data(self):
###initilize the lists
while True:
self.__reset_the_data_holders()
max_batch_label_len = self.max_batch_label_len
random.shuffle(self.files)
for inp_file in self.files:
with open(inp_file) as f:
print(inp_file)
for line in f:
#============================
split_lines=line.split(' @@@@ ')
#============================
####this is mostly for the joint model
###usuvally MT setup will not have scp so just fill the space with the default vallues
#breakpoint()
##assigining
key = split_lines[0]
scp_path = split_lines[1] #will be 'None' fo MT setup
scp_path = 'None' if scp_path == '' else scp_path ####some times None is missed by empty strings
#============================
### Char labels
#============================
src_text = split_lines[3]
src_tok = split_lines[4]
# print(src_text,src_tok,split_lines,len(src_tok))
if len(src_tok)>0:
src_tok = [int(i) for i in src_tok.split(' ')]
else:
print(split_lines)
continue;
#============================
##Word models
#============================
tgt_text = split_lines[5]
tgt_tok = split_lines[6]
# print("tgt_text,tgt_tok",tgt_text,tgt_tok,len(tgt_tok))
if len(tgt_tok)>0:
tgt_tok = [int(i) for i in tgt_tok.split(' ')]
else:
print(split_lines)
continue;
#============================
### text
#============================
Src_tokens = src_tok
Tgt_tokens = tgt_tok
Src_Words_Text = src_text.split(' ')
Tgt_Words_Text = tgt_text.split(' ')
#print(Src_Words_Text, Tgt_Words_Text)
###########################################################
if (Src_Words_Text[0] == 'None') or (Tgt_Words_Text[0] == 'None'):
#breakpoint()
continue;
###########################################################
###
### text_filtering
if (len(Src_Words_Text) < self.min_words) or (len(Tgt_Words_Text) < self.min_words):
#print("skippeddue to min_words", self.min_words,len(Src_Words_Text))
continue;
##
if ((len(Src_Words_Text)/len(Tgt_Words_Text)) > self.min_len_ratio) or ((len(Tgt_Words_Text)/len(Src_Words_Text)) > self.min_len_ratio):
#print("skippped due to min_len_ratio", self.min_len_ratio,'.......................',len(Src_Words_Text)/len(Tgt_Words_Text))
continue;
##
if (len(Src_Words_Text) > self.max_words) or (len(Tgt_Words_Text) > self.max_words):
#print("skippeddue to min_words", self.max_words,len(Src_Words_Text))
continue;
#--------------------------
if ((scp_path != 'None')):
mat = kaldi_io.read_mat(scp_path)
if self.apply_cmvn:
mat = CMVN(mat)
####pruning the Acoustic features based on length ###for joint model
if (mat.shape[0]>self.max_feat_len) or (len(Src_tokens) > self.max_label_len):
#print("key,mat.shape,Src_Words_Text,Src_tokens,self.max_label_len",key,mat.shape,len(Src_Words_Text),len(Src_tokens),self.max_label_len)
continue;
else:
mat=np.zeros((100,83),dtype=np.float32)
####For MT model
###Src_tokens more than self.max_feat_len or Tgt_tokens more than self.max_label_len
### should be removed
###
if (len(Src_tokens) > self.max_feat_len) or (len(Tgt_tokens) > self.max_label_len):
#print("key,Src_tokens, self.max_feat_len, Tgt_tokens, self.max_label_len",key,len(Src_tokens), self.max_feat_len, len(Tgt_tokens), self.max_label_len)
continue;
#--------------------------
#==============================================================
###Add to the list
####
self.batch_Src_data.append(mat)
self.batch_names.append(key)
self.batch_Src_length.append(mat.shape[0])
self.batch_Src_labels.append(Src_tokens)
self.batch_Src_label_length.append(len(Src_tokens))
self.batch_Tgt_labels.append(Tgt_tokens)
self.batch_Tgt_label_length.append(len(Tgt_tokens))
self.batch_Src_text.append(Src_Words_Text)
self.batch_Src_text_length.append(len(Src_Words_Text))
self.batch_Tgt_text.append(Tgt_Words_Text)
self.batch_Tgt_text_length.append(len(Tgt_Words_Text))
#==============================================================
#==============================================================
# total_labels_in_batch is used to keep track of the length of sequences in a batch, just make sure it does not overflow the gpu
##in general lstm training we are not using this because self.max_batch_len will be around 10-20 and self.max_batch_label_len is usuvally set very high
#-------------------------------------------------------------------------------
if not (scp_path == 'None'):
expect_len_of_features=max(max(self.batch_Src_length,default=0),mat.shape[0])
expect_len_of_labels=max(max(self.batch_Tgt_label_length,default=0),len(Tgt_tokens))
total_labels_in_batch= (expect_len_of_features + expect_len_of_labels)*(len(self.batch_names)+4)
else:
expect_len_of_features=max(max(self.batch_Src_label_length,default=0),len(Src_tokens))
expect_len_of_labels=max(max(self.batch_Tgt_label_length,default=0),len(Tgt_tokens))
total_labels_in_batch= (expect_len_of_features + expect_len_of_labels)*(len(self.batch_names)+4)
#-------------------------------------------------------------------------------
###check if ypu have enough labels output and if you have then push to the queue
###else keep adding them to the lists
#print(len(self.batch_Src_data), self.max_batch_len)
if total_labels_in_batch > self.max_batch_label_len or len(self.batch_Src_data)==self.max_batch_len:
# #==============================================================
# ####to clumsy -------> for secound level of randomization
# CCCC=list(zip(batch_data,batch_names,batch_labels,batch_Tgt_Words_Text,batch_word_text,batch_label_length,batch_length,batch_Tgt_label_length,batch_word_text_length))
# random.shuffle(CCCC)
# batch_data,batch_names,batch_labels,batch_Tgt_Words_Text,batch_word_text,batch_label_length,batch_length,batch_Tgt_label_length,batch_word_text_length=zip(*CCCC)
# #==============================================================
batch_data_dict = self.make_batching_dict()
self.queue.put(batch_data_dict)
###after pushing data to lists reset them
self.__reset_the_data_holders()
if len(self.batch_names)>0:
### Collect the left over stuff as the last batch
#-----------------------------------------------
batch_data_dict = self.make_batching_dict()
self.queue.put(batch_data_dict)
#exit(0)
def next(self, timeout=30000):
return self.queue.get(block=True, timeout=timeout)
#===================================================================
# sys.path.insert(0,'/mnt/matylda3/vydana/HOW2_EXP/KAT_Attention')
# import Attention_arg
# from Attention_arg import parser
# args = parser.parse_args()
# print(args)
# ###debugger
# args.Src_model_path='/mnt/matylda3/vydana/benchmarking_datasets/Timit/models/Timit_PHSEQ_100/Timit_PHSEQ__100__word.model'
# args.Tgt_model_path='/mnt/matylda3/vydana/benchmarking_datasets/Timit/models/Timit_PHSEQ_100/Timit_PHSEQ__100__word.model'
# args.text_file = '/mnt/matylda3/vydana/benchmarking_datasets/Timit/All_text'
# args.train_path='/mnt/matylda3/vydana/benchmarking_datasets/Timit/scp_files/train/'
# args.dev_path='/mnt/matylda3/vydana/benchmarking_datasets/Timit/scp_files/dev/'
# Src_model=Load_sp_models(args.Src_model_path)
# Tgt_model=Load_sp_models(args.Tgt_model_path)
# train_gen = DataLoader(files=glob.glob(args.train_path + "*"),max_batch_label_len=20000, max_batch_len=4,max_feat_len=2000,max_label_len=200,Src_model=Src_model,Tgt_model=Tgt_model,text_file=args.text_file)
# for i in range(10):
# B1 = train_gen.next()
# print(B1.keys())
# #breakpoint()
| [
"sys.path.insert",
"kaldi_io.read_mat",
"random.shuffle",
"numpy.zeros",
"threading.Thread",
"queue.Queue",
"MT_TransV1.CMVN.CMVN"
] | [((309, 375), 'sys.path.insert', 'sys.path.insert', (['(0)', '"""/mnt/matylda3/vydana/HOW2_EXP/MT_Transformer"""'], {}), "(0, '/mnt/matylda3/vydana/HOW2_EXP/MT_Transformer')\n", (324, 375), False, 'import sys\n'), ((1558, 1595), 'queue.Queue', 'queue.Queue', (["input_dict['queue_size']"], {}), "(input_dict['queue_size'])\n", (1569, 1595), False, 'import queue\n'), ((1816, 1847), 'threading.Thread', 'Thread', ([], {'target': 'self.__load_data'}), '(target=self.__load_data)\n', (1822, 1847), False, 'from threading import Thread\n'), ((4161, 4187), 'random.shuffle', 'random.shuffle', (['self.files'], {}), '(self.files)\n', (4175, 4187), False, 'import random\n'), ((8107, 8134), 'kaldi_io.read_mat', 'kaldi_io.read_mat', (['scp_path'], {}), '(scp_path)\n', (8124, 8134), False, 'import kaldi_io\n'), ((8710, 8747), 'numpy.zeros', 'np.zeros', (['(100, 83)'], {'dtype': 'np.float32'}), '((100, 83), dtype=np.float32)\n', (8718, 8747), True, 'import numpy as np\n'), ((8221, 8230), 'MT_TransV1.CMVN.CMVN', 'CMVN', (['mat'], {}), '(mat)\n', (8225, 8230), False, 'from MT_TransV1.CMVN import CMVN\n')] |
"""Standard library imports"""
import numpy as np # 1.19.4
import pandas as pd # 1.2.0
import scipy as sp #
import matplotlib.pyplot as plt
from scipy.interpolate import interp1d
from scipy.optimize import fsolve
"""Local modules"""
from pyloads.blade_data import BladeFeatures
from pyloads.aerodynamic_profiles import AeroProfiles
from pyloads.operation_dtu10mw import Operation
class Rotor(Operation):
"""Create a Rotor object (by Default is the DTU 10 MW) by defining the blade geometry (cord, twist and
thickness), as well as the aerodynamic profiles (i.e as output from XFOIL interactive program for design).
- Calculate the Normal and Tangential loads for given operational conditions.
- Calculate the Power and Thrust coefficient.
- Calculate and plot the Rotor Power Curve.
Parameters
----------
radio : array , default=None
twist : array , default=None
cord : array , default=None
t_c : array , default=None
profiles : array , default='Default'"""
# class attributes
number_of_blades = 3
radio = 89.17 # [m]
rho = 1.225 # [km/m3]
operation = pd.DataFrame(
{'u': [4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16., 17., 18., 19., 20., 21.,
22., 23., 24., 25., ],
'pitch': [2.751, 1.966, 0.896, 0., 0., 0., 0., 0., 4.502, 7.266,
9.292, 10.958, 12.499, 13.896, 15.2, 16.432, 17.618, 18.758, 19.86,
20.927,
21.963, 22.975],
'RPM': [6., 6., 6., 6., 6.426, 7.229, 8.032, 8.836, 9.6, 9.6, 9.6, 9.6,
9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, ]
})
# blade_data = pd.read_csv('bladedat.txt', sep='\t', names=['r', 'twist', 'c', 't/c'])
# class constructor
def __init__(self, radio='DTU_10MW', twist='DTU_10MW', cord='DTU_10MW', t_c='DTU_10MW', profiles='DTU_10MW'):
super().__init__()
bld = BladeFeatures()
# Take the parameters from BladeFeatures corresponding to DTU 10MW
if radio == 'DTU_10MW':
self.radio = bld.radio
if twist == 'DTU_10MW':
self.twist = bld.twist
if cord == 'DTU_10MW':
self.cord = bld.cord
if t_c == 'DTU_10MW':
self.t_c = bld.t_c
"""Load the aerodynamics profiles."""
# TODO:
# This should be in a child class from Rotor called DTU-10MW
if profiles == 'DTU_10MW':
aero_prof = AeroProfiles()
ffa_241 = aero_prof.ffa_241
ffa_301 = aero_prof.ffa_301
ffa_360 = aero_prof.ffa_360
ffa_480 = aero_prof.ffa_480
ffa_600 = aero_prof.ffa_600
cylinder = aero_prof.cylinder
self.ffa_dict = dict(zip(np.arange(6), [ffa_241, ffa_301, ffa_360, ffa_480, ffa_600, cylinder]))
# TODO:
# check that the len of the features is the same
# check that the data has valid ranges..
@staticmethod
def integrate(y, r):
"""Useful function for numerical integration.
parameters
----------
y : array
function to be integrated
r : array
integrate over r radial positions.
"""
M = 0 # dummy assignment before loop
for k in range(len(y) - 1):
A_k = (y[k + 1] - y[k]) / (r[k + 1] - r[k])
B_k = (y[k] * r[k + 1] - y[k + 1] * r[k]) / (r[k + 1] - r[k])
M += 1 / 3 * A_k * ((r[k + 1]) ** 3 - (r[k]) ** 3) + 0.5 * B_k * ((r[k + 1]) ** 2 - (r[k]) ** 2)
return M
@staticmethod
def thruster(pN, r):
"""Compute the total Thrust (T * num_blades) for the Rotor.
parameter
---------
pN : array
normal loads vector (i.e as returned by norma_tangential_loads method.
r : array
vector with radial position [m]"""
# [r] m
T = 0
B = Rotor.number_of_blades
for i in range(len(pN) - 1):
T += (pN[i + 1] + pN[i]) * 0.5 * (r[i + 1] - r[i])
# print(f'thrust {T} for item num {i}')
return T * B
def lift_drag_coeff(self, alpha, t_c):
# TODO:
# raise exceptions for thick and alpha
# read how to write docstring in Python PEP-8
"""Interpolation for drag and lift coefficients.
Returns: (Cl, Cd)
--------------parameters:
t_c: float (ie. 24.1)
alpha: int or float (rad)
"""
t = t_c
cdthick, clthick = np.zeros(6), np.zeros(6)
for k in range(6):
f1cl = interp1d(self.ffa_dict[k].iloc[:, 0], self.ffa_dict[k].iloc[:, 1])
f1cd = interp1d(self.ffa_dict[k].iloc[:, 0], self.ffa_dict[k].iloc[:, 2])
clthick[k] = f1cl(alpha * 180 / np.pi) # must convert into degrees
cdthick[k] = f1cd(alpha * 180 / np.pi)
thick_prof = np.array([24.1, 30.1, 36., 48., 60., 100.])
f2cl = interp1d(thick_prof, clthick)
f2cd = interp1d(thick_prof, cdthick)
Cl = f2cl(t)
Cd = f2cd(t)
# print(f'alpha:{alpha}, t_c={t_c}')
# print(f'Cd= {Cd} \t Cl= {Cl}')
return Cl, Cd
def normal_tangential_loads(self, tsr, v_0, r, theta, c, t_c, a=0.2, aa=0.2, imax=100, verbose=False):
# TODO:
# Add velocity triangle vector plot
"""Calculate the Tangential and Normal loads (in N/m) given the wind speed and tip speed ratio (tsr) for a given
radial position (twist, cord length and thickness/cord ratio at the radial position must be given).
Parameters
----------
tsr : int or float
Tip speed ratio.
v_0 : int or float
Wind speed [m/s].
r : int or float
Radial position.
theta : int or float
Local twist at r.
c : int or float
Cord length.
t_c : int or float
Thickness/cord ratio.
a : int or float, default=0.2
tangential induction factor
aa : int or float, default=0.2
normal induction factor
imax : int, default=100
max number of iter before stoping loop.
verbose : bool, default=False
if True, print and plot the variables for each iteration.
Returns
-------
pT : float
tangential load [N/m] at radial position.
pN : float
normal load [N/m] at radial position.
"""
def glauert_equation(x, sigma, F, phi, Cn):
return [x[0] - ((1 - x[1]) ** 2 * sigma * Cn) / (np.sin(phi) ** 2),
x[0] - 4 * x[1] * (1 - 0.25 * (5 - 3 * x[1]) * x[1]) * F]
i = 0
tol_a, tol_aa = 10, 10
B = Rotor.number_of_blades
sigma = (c * B) / (2 * np.pi * r)
if verbose:
a_list, aa_list, phi_list, alpha_list, i_list = [], [], [], [], []
while tol_a > 10 ** (-3) and tol_aa > 10 ** (-3) and i < imax:
a0, aa0 = a, aa
phi = np.arctan(((1 - a) * Rotor.radio) / ((1 + aa) * tsr * r))
alpha = np.rad2deg(phi) - theta
alpha = np.deg2rad(alpha)
Cl, Cd = self.lift_drag_coeff(alpha, t_c)
Cn = Cl * np.cos(phi) + Cd * np.sin(phi)
Ct = Cl * np.sin(phi) - Cd * np.cos(phi)
# if i == 0: #get info of first values to check
# print(Rotor.radio)
# print(r)
# print(tsr)
# print('phi:',phi)
# print('theta:',theta)
# print('alpha:',alpha)
# print('Cl:',Cl)
# print('Cl:', Cd)
F = (2 / np.pi) * np.arccos(np.exp(-(B / 2) * (Rotor.radio - r) / (r * np.sin(abs(phi)))))
if a <= 1 / 3:
a = 1 / (((4 * F * np.sin(phi) ** 2) / (sigma * Cn)) + 1)
else:
CT, a = fsolve(glauert_equation, [1, a], args=(sigma, F, phi, Cn)) # [1, a] is necessary. why?
aa = 1 / (((4 * F * np.sin(phi) * np.cos(phi)) / (sigma * Ct)) - 1)
tol_a, tol_aa = abs(a - a0), abs(aa - aa0)
if verbose:
print('iter #:',i)
print('\t a: ',a)
print('\t a_prime: ',aa)
print('\t phi: ',phi)
print('\t alpha: ',alpha)
a_list.append(a)
aa_list.append(aa)
phi_list.append(phi)
alpha_list.append(alpha)
i_list.append(i)
i += 1
if verbose:
print('final iteration (i):',i)
if i>1:
# TODO
# review if figsize is correct.
fig, axes = plt.subplots(2,2, figsize=(10,4))
axes[0, 0].plot(i_list, a_list, marker='o')
axes[0, 0].set_ylabel('a', fontsize=14)
axes[0, 0].set_xlabel('iteration num')
axes[0, 1].plot(i_list, aa_list,marker='o')
axes[0, 1].set_ylabel('a\'', fontsize=14)
axes[0, 1].set_xlabel('iteration num')
axes[1, 0].plot(i_list, phi_list,marker='o')
axes[1, 0].set_ylabel('phi', fontsize=14)
axes[1, 0].set_xlabel('iteration num')
axes[1, 1].plot(i_list, alpha_list,marker='o')
axes[1, 1].set_ylabel('alpha', fontsize=14)
axes[1, 1].set_xlabel('iteration num')
fig.tight_layout(pad=3.0)
plt.show()
v_rel = (v_0 / np.sin(phi)) * (1 - a)
pT = 0.5 * Ct * Rotor.rho * (v_rel ** 2) * c
pN = 0.5 * Cn * Rotor.rho * (v_rel ** 2) * c
if i == imax:
print(f'warning: Not converged for {imax} iter at radial position = {r} m')
return pT, pN
def power_thrust_coefficient(self, tsr, u, r, theta, c, t_c, plot_Loads=False):
"""Calculate the power and thrust for given operational parameters.
This method uses the norma_tangential_loads in order to calculate the loads.
:parameter
----------
tsr : int or float
Tip speed ratio.
u : int or float
Wind speed [m/s].
r : int or float
Radial position.
c : int or float
Cord length.
t_c : int or float
Thickness/cord ratio.
plot_Loads : bool, default=False
Plot the normal and tangential loads against radial position.
:return
-------
power : float
Total power considering Rotor.number_of_blades.
thrust : float
Total thrust considering Rotor.number_of_blades.
pT : float
tangential load [N/m] at radial position.
pN : float
normal load [N/m] at radial position.
"""
pT = np.zeros(len(r))
pN = np.zeros(len(r))
for i in range(len(r)):
try:
pT[i], pN[i] = self.normal_tangential_loads(tsr, u, r[i], theta[i], c[i], t_c[i])
except TypeError:
pT[i], pN[i] = np.nan, np.nan
# append and assign values at r=R
r = np.append(r, Rotor.radio)
pT = np.append(pT[:-1], 0) # The -1 is a rusty way to solve the problem
pN = np.append(pN[:-1], 0)
w = tsr * u / Rotor.radio
power = Rotor.integrate(pT, r) * Rotor.number_of_blades * w
# print(f'power integral{Rotor.integrate(pT,r)}')
# print(f'thrust integral{Rotor.thruster(pN, r)}')
thrust = Rotor.thruster(pN, r)
if plot_Loads: # ( == True)
plt.figure()
plt.plot(self.radio, pN)
plt.plot(self.radio, pT)
plt.grid()
plt.ylabel('normal loads [N/m]', fontsize=14)
plt.xlabel('rotor radius [m]', fontsize=14)
plt.show()
return power, thrust, pT, pN
def power_curve(self, u_vector, w_vector, pitch_vector, plot_curve=True):
"""Calculate and plot the Power Curve given a vector of wind speed,
rotational speed (in RPM) and corresponding pitch angle.
:parameter
----------
u_vector : array
range of speed for the power curve
w_vector : array
vector with rotational speed (in RPM)
pitch_vector : array
pitch angle vector
:return
-------
"""
P, T = np.zeros(len(u_vector)), np.zeros(len(u_vector))
# df = Rotor.blade_data.iloc[0:]
pN = np.zeros([len(u_vector), len(self.radio)])
pT = np.zeros([len(u_vector), len(self.radio)])
# print(u_vector)
for j in range(len(u_vector)):
u = u_vector.values[j]
w = w_vector.values[j] * np.pi / 30 # convert from RPM to rad/s
pitch = pitch_vector.values[j]
TSR = w * Rotor.radio / u
# print(TSR, w, pitch)
P[j], T[j], pT[j,], pN[j,] = self.power_thrust_coefficient(TSR, u, self.radio, self.twist + pitch,
self.cord, self.t_c)
if plot_curve:
plt.plot(u_vector, P / 1e6, linestyle='--', marker='o')
plt.xlabel('Wind speed')
plt.ylabel('power [MW]')
plt.grid()
return P, T
if __name__ == "__main__":
print(f'numpy version {np.__version__} , \t pandas vers {pd.__version__} , \t scipy vers {sp.__version__}')
print('stop')
# instance a rotor object.
# WT_data = pd.read_csv('operation.txt', sep='\s+')
# WT_data.index = WT_data.u
# print(WT_data.loc[6])
# u, pitch, rpm = WT_data.loc[6]
dtu_10mw = Rotor()
print(type(dtu_10mw)) # <class '__main__.Rotor'>
# test power method
oper_df = dtu_10mw.show_operation() # returns a DataFrame
u, pitch, rpm = dtu_10mw.show_operation(u=6)
tsr = (rpm * np.pi / 30) * Rotor.radio / u
# P, T = dtu_10mw.power_curve(oper_df.u, oper_df.RPM, oper_df.pitch)
power, thrust, pT, pN = dtu_10mw.power_thrust_coefficient(tsr, u, dtu_10mw.radio, dtu_10mw.twist + pitch,
dtu_10mw.cord,
dtu_10mw.t_c, plot_Loads=True)
# tan_i, norm_i = dtu_10mw.normal_tangential_loads(tsr, u, dtu_10mw.radio[0], dtu_10mw.twist[0] + pitch,
# dtu_10mw.cord[0], dtu_10mw.t_c[0], verbose=True)
# TODO#
# * Power and Thrust are NEGATIVE...
# * Review... different results as IPYNB :
# [56.73502664, 128.66511904, 196.82870201, 955.83255009,
# 1372.0058535, 1685.01982088, 2137.75442846, 2601.22578824, <<<<< 2601 is the first different value.
# 2986.14621076, 3263.07927127, 3431.68926186, 3461.78866371,
# 3474.49291476, 3421.50774457, 3224.94102283, 2815.05298268,
# 2063.40641495, 0.])
# * Improve plots
# * let DTU_10MW be a subclass and define Rotor with user params.
# * add power and thrust calculation DONE !
# * add DEFLECTION !
print('Finish ran static loads.')
| [
"matplotlib.pyplot.grid",
"matplotlib.pyplot.ylabel",
"pyloads.blade_data.BladeFeatures",
"scipy.interpolate.interp1d",
"numpy.array",
"numpy.sin",
"pyloads.aerodynamic_profiles.AeroProfiles",
"numpy.arange",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"pandas.DataFrame",
"numpy.rad2... | [((1130, 1596), 'pandas.DataFrame', 'pd.DataFrame', (["{'u': [4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, \n 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0], 'pitch': [\n 2.751, 1.966, 0.896, 0.0, 0.0, 0.0, 0.0, 0.0, 4.502, 7.266, 9.292, \n 10.958, 12.499, 13.896, 15.2, 16.432, 17.618, 18.758, 19.86, 20.927, \n 21.963, 22.975], 'RPM': [6.0, 6.0, 6.0, 6.0, 6.426, 7.229, 8.032, 8.836,\n 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6]}"], {}), "({'u': [4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, \n 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0],\n 'pitch': [2.751, 1.966, 0.896, 0.0, 0.0, 0.0, 0.0, 0.0, 4.502, 7.266, \n 9.292, 10.958, 12.499, 13.896, 15.2, 16.432, 17.618, 18.758, 19.86, \n 20.927, 21.963, 22.975], 'RPM': [6.0, 6.0, 6.0, 6.0, 6.426, 7.229, \n 8.032, 8.836, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, 9.6, \n 9.6, 9.6, 9.6]})\n", (1142, 1596), True, 'import pandas as pd\n'), ((1939, 1954), 'pyloads.blade_data.BladeFeatures', 'BladeFeatures', ([], {}), '()\n', (1952, 1954), False, 'from pyloads.blade_data import BladeFeatures\n'), ((4930, 4977), 'numpy.array', 'np.array', (['[24.1, 30.1, 36.0, 48.0, 60.0, 100.0]'], {}), '([24.1, 30.1, 36.0, 48.0, 60.0, 100.0])\n', (4938, 4977), True, 'import numpy as np\n'), ((4989, 5018), 'scipy.interpolate.interp1d', 'interp1d', (['thick_prof', 'clthick'], {}), '(thick_prof, clthick)\n', (4997, 5018), False, 'from scipy.interpolate import interp1d\n'), ((5034, 5063), 'scipy.interpolate.interp1d', 'interp1d', (['thick_prof', 'cdthick'], {}), '(thick_prof, cdthick)\n', (5042, 5063), False, 'from scipy.interpolate import interp1d\n'), ((11234, 11259), 'numpy.append', 'np.append', (['r', 'Rotor.radio'], {}), '(r, Rotor.radio)\n', (11243, 11259), True, 'import numpy as np\n'), ((11273, 11294), 'numpy.append', 'np.append', (['pT[:-1]', '(0)'], {}), '(pT[:-1], 0)\n', (11282, 11294), True, 'import numpy as np\n'), ((11354, 11375), 'numpy.append', 'np.append', (['pN[:-1]', '(0)'], {}), '(pN[:-1], 0)\n', (11363, 11375), True, 'import numpy as np\n'), ((2485, 2499), 'pyloads.aerodynamic_profiles.AeroProfiles', 'AeroProfiles', ([], {}), '()\n', (2497, 2499), False, 'from pyloads.aerodynamic_profiles import AeroProfiles\n'), ((4552, 4563), 'numpy.zeros', 'np.zeros', (['(6)'], {}), '(6)\n', (4560, 4563), True, 'import numpy as np\n'), ((4565, 4576), 'numpy.zeros', 'np.zeros', (['(6)'], {}), '(6)\n', (4573, 4576), True, 'import numpy as np\n'), ((4624, 4690), 'scipy.interpolate.interp1d', 'interp1d', (['self.ffa_dict[k].iloc[:, 0]', 'self.ffa_dict[k].iloc[:, 1]'], {}), '(self.ffa_dict[k].iloc[:, 0], self.ffa_dict[k].iloc[:, 1])\n', (4632, 4690), False, 'from scipy.interpolate import interp1d\n'), ((4710, 4776), 'scipy.interpolate.interp1d', 'interp1d', (['self.ffa_dict[k].iloc[:, 0]', 'self.ffa_dict[k].iloc[:, 2]'], {}), '(self.ffa_dict[k].iloc[:, 0], self.ffa_dict[k].iloc[:, 2])\n', (4718, 4776), False, 'from scipy.interpolate import interp1d\n'), ((7075, 7130), 'numpy.arctan', 'np.arctan', (['((1 - a) * Rotor.radio / ((1 + aa) * tsr * r))'], {}), '((1 - a) * Rotor.radio / ((1 + aa) * tsr * r))\n', (7084, 7130), True, 'import numpy as np\n'), ((7197, 7214), 'numpy.deg2rad', 'np.deg2rad', (['alpha'], {}), '(alpha)\n', (7207, 7214), True, 'import numpy as np\n'), ((11684, 11696), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (11694, 11696), True, 'import matplotlib.pyplot as plt\n'), ((11709, 11733), 'matplotlib.pyplot.plot', 'plt.plot', (['self.radio', 'pN'], {}), '(self.radio, pN)\n', (11717, 11733), True, 'import matplotlib.pyplot as plt\n'), ((11746, 11770), 'matplotlib.pyplot.plot', 'plt.plot', (['self.radio', 'pT'], {}), '(self.radio, pT)\n', (11754, 11770), True, 'import matplotlib.pyplot as plt\n'), ((11783, 11793), 'matplotlib.pyplot.grid', 'plt.grid', ([], {}), '()\n', (11791, 11793), True, 'import matplotlib.pyplot as plt\n'), ((11806, 11851), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""normal loads [N/m]"""'], {'fontsize': '(14)'}), "('normal loads [N/m]', fontsize=14)\n", (11816, 11851), True, 'import matplotlib.pyplot as plt\n'), ((11864, 11907), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""rotor radius [m]"""'], {'fontsize': '(14)'}), "('rotor radius [m]', fontsize=14)\n", (11874, 11907), True, 'import matplotlib.pyplot as plt\n'), ((11920, 11930), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (11928, 11930), True, 'import matplotlib.pyplot as plt\n'), ((13232, 13293), 'matplotlib.pyplot.plot', 'plt.plot', (['u_vector', '(P / 1000000.0)'], {'linestyle': '"""--"""', 'marker': '"""o"""'}), "(u_vector, P / 1000000.0, linestyle='--', marker='o')\n", (13240, 13293), True, 'import matplotlib.pyplot as plt\n'), ((13300, 13324), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Wind speed"""'], {}), "('Wind speed')\n", (13310, 13324), True, 'import matplotlib.pyplot as plt\n'), ((13337, 13361), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""power [MW]"""'], {}), "('power [MW]')\n", (13347, 13361), True, 'import matplotlib.pyplot as plt\n'), ((13374, 13384), 'matplotlib.pyplot.grid', 'plt.grid', ([], {}), '()\n', (13382, 13384), True, 'import matplotlib.pyplot as plt\n'), ((7153, 7168), 'numpy.rad2deg', 'np.rad2deg', (['phi'], {}), '(phi)\n', (7163, 7168), True, 'import numpy as np\n'), ((7963, 8021), 'scipy.optimize.fsolve', 'fsolve', (['glauert_equation', '[1, a]'], {'args': '(sigma, F, phi, Cn)'}), '(glauert_equation, [1, a], args=(sigma, F, phi, Cn))\n', (7969, 8021), False, 'from scipy.optimize import fsolve\n'), ((8780, 8815), 'matplotlib.pyplot.subplots', 'plt.subplots', (['(2)', '(2)'], {'figsize': '(10, 4)'}), '(2, 2, figsize=(10, 4))\n', (8792, 8815), True, 'import matplotlib.pyplot as plt\n'), ((9568, 9578), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (9576, 9578), True, 'import matplotlib.pyplot as plt\n'), ((9603, 9614), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (9609, 9614), True, 'import numpy as np\n'), ((2781, 2793), 'numpy.arange', 'np.arange', (['(6)'], {}), '(6)\n', (2790, 2793), True, 'import numpy as np\n'), ((7291, 7302), 'numpy.cos', 'np.cos', (['phi'], {}), '(phi)\n', (7297, 7302), True, 'import numpy as np\n'), ((7310, 7321), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (7316, 7321), True, 'import numpy as np\n'), ((7344, 7355), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (7350, 7355), True, 'import numpy as np\n'), ((7363, 7374), 'numpy.cos', 'np.cos', (['phi'], {}), '(phi)\n', (7369, 7374), True, 'import numpy as np\n'), ((6639, 6650), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (6645, 6650), True, 'import numpy as np\n'), ((8098, 8109), 'numpy.cos', 'np.cos', (['phi'], {}), '(phi)\n', (8104, 8109), True, 'import numpy as np\n'), ((8084, 8095), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (8090, 8095), True, 'import numpy as np\n'), ((7881, 7892), 'numpy.sin', 'np.sin', (['phi'], {}), '(phi)\n', (7887, 7892), True, 'import numpy as np\n')] |
import numpy as np
from sklearn.metrics import average_precision_score
def load_data(data_path):
"""load array data from data_path"""
data = np.load(data_path)
return data['X_train'], data['y_train'], data['X_test'], data['y_test']
def calculate_average_precision(label, index, similarity, num_search_sample):
"""calculate average precision of similar search result.
The average precison is calculated over num_search_sample
"""
label_idx = np.array([label[idx] for idx in index])
label_idx_true = np.array([np.where(row == row[0], 1, 0) for row in label_idx])
label_idx_true = label_idx_true[:, 1:]
ap = []
for i in range(num_search_sample):
ap.append(average_precision_score(label_idx_true[i], similarity[i]))
return ap
| [
"numpy.where",
"numpy.array",
"numpy.load",
"sklearn.metrics.average_precision_score"
] | [((151, 169), 'numpy.load', 'np.load', (['data_path'], {}), '(data_path)\n', (158, 169), True, 'import numpy as np\n'), ((473, 512), 'numpy.array', 'np.array', (['[label[idx] for idx in index]'], {}), '([label[idx] for idx in index])\n', (481, 512), True, 'import numpy as np\n'), ((544, 573), 'numpy.where', 'np.where', (['(row == row[0])', '(1)', '(0)'], {}), '(row == row[0], 1, 0)\n', (552, 573), True, 'import numpy as np\n'), ((711, 768), 'sklearn.metrics.average_precision_score', 'average_precision_score', (['label_idx_true[i]', 'similarity[i]'], {}), '(label_idx_true[i], similarity[i])\n', (734, 768), False, 'from sklearn.metrics import average_precision_score\n')] |
"""Module that handles shared information for all network objects."""
import xml.etree.ElementTree as et
import numbers
import numpy as np
import pandas as pd
import scipy.sparse as sps
from paminco.utils.readin import parse_number, xml_find_root
from paminco.utils.misc import Cache
from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2
import paminco._doc as _doc
ID_UNMAPPED = -9999
LBL_UNMAPPED = "Invalid"
class FlowDirection(IntEnum2):
"""Enum defining the type flow for the graph."""
DIRECTED = 0
"""All edges can only take flow >= 0."""
UNDIRECTED = 1
"""All edges can take any flow."""
MIXED = 2
"""Some edges may only take flow >= 0."""
class Edges:
"""
Class that contains the edges/links of a network.
An edges object can be instantiated in several ways:
Edges(e)
where ``e`` is an Edges object. Data in ``e`` will be
copied if specfied by parameter ``copy``.
Edges(st)
where ``st`` is array_like. Parameter st is converted to
ndarray and is expected to me of shape (m, 2). Can be
node indices or node labels specifying an edge. If labels
are given, indices are mapped by ``map_labels_to_indices``,
given indices are mapped by ``map_indices_to_labels``. Edge
bounds are determined by the parameter ``directed``.
Edges((st, bounds))
where ``st`` is array_like and ``bounds`` is tuple (lower,
upper) specifying bounds used for all edges or array_like
of shape (m, 2) marking individual bounds for all edges.
Edges((labels, indices, bounds))
where ``labels``, ``indices`` are array_like of shape
(m, 2) and ``bounds`` is tuple (lower, upper) specifying
bounds used for all edges or array_like of shape (m, 2)
containing individual bounds for all edges.
Parameters
----------
data : ndarray, or tuple of ndarray
Edge data.
directed_flow : bool, default=True
Controls default values for ``None`` in bounds. If ``True``, lower
bounds are set to 0 and ``False`` to -inf. Missing upper bounds are
set to inf.
map_labels_to_indices : None, bool, dict, or callable, default=True
Determines mapping of labels to indices if no indices are
given. If ``None`` or ``False``, indices of edges will be set
to -9999, denoting invalid edge indices. If ``dict``,
labels will be mapped by this dict. If ``True``, node indices
are set to 0, 1, ..., n-1. If ``callable``, use callable with
signature ``indices = callable(labels)``.
map_indices_to_labels : None, bool, dict, or callable, default=True
Determines mapping of indices to indices if no labels are
given. If ``None`` or ``False``, indices of edges will be set
to 'invalid', denoting invalid edge labels. If ``dict``,
indices will be mapped by this dict. If ``True``, node labels
are set to node indices as str. If ``callable``, use callable
with signature ``labels = callable(indices)``.
dtype_float : dtype, default=numpy.float_
Datatype for edge bounds.
dtype_int : dtype, default=int
Datatype for edge bounds.
copy : bool, default=False
Whether to create a copy of the inputs in data.
Attributes
----------
flow_directions : ndarray
Ndarray of shape (m, ). A ``-1`` denotes an edge with lb < 0 and
ub <= 0. A ``0`` denotes an edge with lb < 0 and ub > 0.
A ``1`` denotes an edge with lb >=0 and ub > 0.
"""
def __init__(
self,
data,
directed_flow: bool = True,
map_labels_to_indices=True, # optional
map_indices_to_labels=True, # optional
dtype_float=None,
dtype_int=None,
copy: bool = False,
) -> None:
# Collect kwargs
kw = {
"directed_flow": directed_flow,
"map_labels_to_indices": map_labels_to_indices,
"map_indices_to_labels": map_indices_to_labels,
"dtype_float": dtype_float,
"dtype_int": dtype_int,
"copy": copy,
}
if isinstance(data, Edges):
d = (data.labels, data.indices, data.bounds)
return self.__init__(d,
dtype_float=data.dtype_float,
dtype_int=data.dtype_int)
elif isinstance(data, tuple):
if len(data) == 3:
pass
elif len(data) == 2:
# (labels or indices, bounds)
st, bounds = data
st = np.array(st)
if st.dtype.kind in {'U', 'S'}:
# (labels, bounds)
if isinstance(map_labels_to_indices, dict):
st_ids = np.vectorize(map_labels_to_indices.__getitem__)(st)
elif map_labels_to_indices is True:
# Automap labels
# Get unique labels and sort them if quasi-ints
unique_lbl = np.unique(st)
try:
unique_lbl = sorted(unique_lbl, key=int)
except ValueError:
pass
d = dict(zip(unique_lbl, np.arange(len(unique_lbl))))
st_ids = np.vectorize(d.__getitem__)(st)
elif map_labels_to_indices is None or map_labels_to_indices is False:
# Set to invalid indices
st_ids = np.full(st.shape, ID_UNMAPPED, dtype=int)
else:
# Map labels by callable
st_ids = map_labels_to_indices(st)
return self.__init__((st, st_ids, bounds), **kw)
elif issubclass(st.dtype.type, numbers.Integral):
# (indices, bounds)
unique_st = np.unique(st)
if np.array_equal(np.sort(unique_st), np.arange(len(unique_st))) is False:
raise ValueError(f"Indices must be all integers from 0 to {len(unique_st) - 1}.")
if isinstance(map_indices_to_labels, dict):
st_lbl = np.vectorize(map_indices_to_labels.__getitem__)(st)
elif map_indices_to_labels is True:
st_lbl = st.astype(str)
elif map_indices_to_labels is None or map_indices_to_labels is False:
# Set to invalid indices
st_lbl = np.full(st.shape, LBL_UNMAPPED)
else:
st_lbl = map_indices_to_labels(st)
return self.__init__((st_lbl, st, bounds), **kw)
else:
raise ValueError(f"Invalid edge data: {data}.")
else:
raise ValueError(f"Invalid edge data: {data}.")
else:
# Only labels or indices given -> build lower and upper bounds by directed
if directed_flow is True:
return self.__init__((data, (0, np.inf)), **kw)
return self.__init__((data, (-np.inf, np.inf)), **kw)
# Handle datatypes
if dtype_float is None:
dtype_float = np.float64
if dtype_int is None:
dtype_int = int
self._dtype_float = dtype_float
self._dtype_int = dtype_int
# Unpack data
labels, indices, bounds = data
self.labels = np.array(labels, dtype=str, copy=copy)
self.indices = np.array(indices, dtype=dtype_int, copy=copy)
# Broadcast bounds if lower, upper for all edges given
if not isinstance(bounds, np.ndarray):
bounds = np.array(bounds)
if len(bounds.shape) == 1:
bounds = bounds.reshape(1, -1)
bounds = np.repeat(bounds, len(labels), axis=0)
# Handle 'None' bounds
bkw = {"posinf": np.inf, "neginf": -np.inf}
self.bounds = np.array(bounds, dtype=dtype_float, copy=copy)
self.bounds[:, 1] = np.nan_to_num(self.bounds[:, 1],
copy=False,
nan=np.inf,
**bkw)
if directed_flow is True:
self.bounds[:, 0] = np.nan_to_num(self.bounds[:, 0],
copy=False,
nan=0.,
**bkw)
else:
self.bounds[:, 0] = np.nan_to_num(self.bounds[:, 0],
copy=False,
nan=-np.inf,
**bkw)
# Check consistency of labels, indices and bounds
if self.labels.shape[1] != 2:
raise ValueError(
f"Invalid edge data, labels are of shape {self.labels.shape}."
)
if (self.labels.shape == self.indices.shape == self.bounds.shape) is False:
raise ValueError(
"Inconsistent shapes. "
f"Labels: {self.labels.shape}, "
f"indices: {self.indices.shape}, "
f"bounds: {self.bounds.shape}."
)
# Set edge directions and get type of graph
self.flow_directions = np.zeros(len(self))
self.flow_directions[self.lb < 0] -= 1
self.flow_directions[self.ub > 0] += 1
if len(self.flow_undirected) == len(self):
self.flow_dir = FlowDirection.UNDIRECTED
elif len(self.flow_undirected) == 0:
self.flow_dir = FlowDirection.DIRECTED
else:
self.flow_dir = FlowDirection.MIXED
self.cache = Cache()
def __eq__(self, other) -> bool:
for att in ["labels", "indices", "bounds"]:
if np.array_equal(getattr(self, att), getattr(other, att)) is False:
return False
return True
def __len__(self) -> int:
return len(self.indices)
def __getitem__(self, idx):
if is_iterable(idx):
return [self[i] for i in idx]
return {att: getattr(self, att)[idx]
for att in ["source_lbl", "target_lbl", "s", "t", "lb", "ub"]}
def to_df(self, **kwargs) -> pd.DataFrame:
"""Get object as DataFrame.
Parameters
----------
**kwargs : keyword arguments, optional
Passed to DataFrame constructor.
Returns
-------
df : pandas.DataFrame
Edges with source/target labels, source/target ids, lower
and upper bounds.
"""
data = np.hstack([self.labels, self.indices, self.bounds])
df = pd.DataFrame(data, **kwargs)
df.columns = ["source_lbl", "target_lbl", "s", "t", "lb", "ub"]
df[["source_lbl", "target_lbl"]] = df[["source_lbl", "target_lbl"]].astype(str)
df[["s", "t"]] = df[["s", "t"]].astype(self._dtype_int)
df[["lb", "ub"]] = df[["lb", "ub"]].astype(self._dtype_float)
return df
def get_flow_df(
self,
x,
labels: bool = True,
colname_flow: str = "flow"
) -> pd.DataFrame:
if isinstance(x, (int, float)):
x = np.full(len(self), x)
if labels is True:
s, t = self.source_lbl, self.target_lbl
dtype = str
else:
s, t = self.s, self.t
dtype = int
df = pd.DataFrame({"source": s,
"target": t,
colname_flow: x})
df[["source", "target"]] = df[["source", "target"]].astype(dtype)
return df
def get_directed(
self,
w=None,
backward_positive: bool = True
) -> tuple:
if self.cache.is_valid("directed_elements") is False:
forward = self.ub > 0
backward = self.lb < 0
s_fw, t_fw = self.indices[forward, :].T
t_bw, s_bw = self.indices[backward, :].T
s = np.hstack((s_fw, s_bw))
t = np.hstack((t_fw, t_bw))
self.cache["directed_elements"] = (forward, backward, s, t)
else:
(forward, backward, s, t) = self.cache["directed_elements"]
if w is not None:
w_fw = w[forward]
w_bw = w[backward]
if backward_positive is False:
w_bw = - w_bw
# Stack weight similar to source, target
w = np.hstack((w_fw, w_bw))
return s, t, w
return s, t
def get_duplicate_edges(self) -> np.ndarray:
# Dubplicates -> s/t both are the same
st = pd.Series([str(a) + "-" + str(b) for (a, b) in self.indices])
return np.where(st.duplicated())[0]
def map_labels(self, d: dict) -> None:
"""Map edge labels by d."""
self.indices = np.vectorize(d.__getitem__)(self.labels).astype(self.dtype_int)
def _delete_edges(
self,
del_idx,
return_indices: bool = False
):
del_idx = np.array(del_idx)
# Delete edges in all numpy arrays
self.labels = np.delete(self.labels, del_idx, axis=0)
self.indices = np.delete(self.indices, del_idx, axis=0)
self.bounds = np.delete(self.bounds, del_idx, axis=0)
self.flow_directions = np.delete(self.flow_directions, del_idx, axis=0)
# Recompute bounded edges for cs graph
self.cache.set_invalid("directed_elements")
if return_indices is True:
if del_idx.dtype == "bool":
return np.where(del_idx)[0].reshape(-1,)
return del_idx.reshape(-1,)
def _delete_nodes(
self,
nodes,
return_indices: bool = False
):
nodes = np.array(nodes).reshape(1, -1)
# get indices of edges to delete
idx_s = ((self.s.reshape(-1, 1) - nodes) == 0).any(axis=1)
idx_t = ((self.t.reshape(-1, 1) - nodes) == 0).any(axis=1)
del_idx = idx_s | idx_t
return self._delete_edges(del_idx, return_indices=return_indices)
def add_to_etree(
self,
root: et.Element,
overwrite: bool = True,
cost_writer=None,
) -> None:
"""Add edge data to XML Element.
Parameters
----------
root : Element
Element to which 'edges' will be appended to.
overwrite : bool, default=True
If True, existing 'edges' Element in `root` will be
deleted. If False, edge data will be appended to the
existing data.
cost_writer: callable, optional
Function that adds cost information for every edge.
Will be called with ``cost_writer(edge_node, index,
overwrite)`` where ``edge_node`` is xml Element,
``index`` is int and ``overwrite`` = overwrite.
"""
edges = root.find("edges")
if overwrite is True and edges is not None:
root.remove(edges)
edges = root.find("edges")
if edges is None:
root.append(et.Element("edges"))
for (i, edge) in enumerate(self.to_df().T.to_dict().values()):
edge_node = et.SubElement(root.find("edges"), 'edge')
edge_node.attrib['from'] = edge['source_lbl']
edge_node.attrib['to'] = edge['target_lbl']
edge_node.attrib['lb'] = str(edge['lb'])
edge_node.attrib['ub'] = str(edge['ub'])
if cost_writer is not None:
cost_writer(edge_node, i, overwrite=overwrite)
return root
def _read_edge(edge_node):
source_target = (edge_node.attrib["from"], edge_node.attrib["to"])
lb = parse_number(edge_node.attrib.get("lb", None))
ub = parse_number(edge_node.attrib.get("ub", None))
return source_target, (lb, ub)
@classmethod
def from_xml(
cls,
data,
return_data: bool = False,
**kwargs
):
data = xml_find_root(data)
edges = data.find("edges")
if edges is None:
return None
source_target = []
bounds = []
for e in edges:
st, b = Edges._read_edge(e)
source_target.append(st)
bounds.append(b)
if return_data is True:
return source_target, bounds
return cls((source_target, bounds), **kwargs)
from_xml.__func__.__doc__ = _doc.from_xml.__doc__
def make_save_dict(
self,
prefix: str = "",
save_dict=None
) -> dict:
if save_dict is None:
save_dict = {}
for k in ["labels", "indices", "bounds"]:
save_dict[prefix + k] = getattr(self, k)
return save_dict
make_save_dict.__doc__ = _doc.make_save_dict.__doc__
def save_to_numpy(
self,
file: str,
**kwargs
) -> None:
save_dict = self.make_save_dict()
save_dict.update(**kwargs)
np.savez(file, **save_dict)
save_to_numpy.__doc__ = _doc.save_to_numpy.__doc__
@classmethod
def from_npz(
cls,
data,
prefix: str = "",
**kwargs
):
if isinstance(data, str):
data = np.load(data)
edge_data = (data[prefix + "labels"],
data[prefix + "indices"],
data[prefix + "bounds"])
return cls(edge_data, **kwargs)
from_npz.__func__.__doc__ = _doc.from_npz.__doc__
@property
def flow_forward(self) -> np.ndarray:
return np.where(self.flow_directions == 1)[0]
@property
def flow_backward(self) -> np.ndarray:
return np.where(self.flow_directions == -1)[0]
@property
def flow_undirected(self) -> np.ndarray:
return np.where(self.flow_directions == 0)[0]
@property
def lb(self) -> np.ndarray:
"""ndarray (m, ) of floats: lower bound."""
return self.bounds[:, 0]
@property
def ub(self) -> np.ndarray:
"""ndarray (m, ) of floats: upper bound."""
return self.bounds[:, 1]
@property
def s(self) -> np.ndarray:
"""ndarray (m, ) of int: source ids."""
return self.indices[:, 0]
@property
def t(self) -> np.ndarray:
"""ndarray (m, ) of int: target ids."""
return self.indices[:, 1]
@property
def source_lbl(self) -> np.ndarray:
"""ndarray (m, ) of str: sources labels."""
return self.labels[:, 0]
@property
def target_lbl(self) -> np.ndarray:
"""ndarray (m, ) of str: target labels."""
return self.labels[:, 1]
@property
def dtype_int(self):
"""dtype of int data."""
return self.indices.dtype
@property
def dtype_float(self):
"""dtype of float data."""
return self.bounds.dtype
class Nodes:
"""Class that contains the nodes/vertices of a network.
A Nodes object can be instantiated in several ways:
Nodes(n)
where ``n`` is a Nodes object.
Nodes(nodes)
where ``nodes`` is array_like and contains either node
labels or node indices. If no indices are given, they
are set automatically.
Nodes(nodes, zone)
where ``nodes`` and ``zone`` are array_like of shape (n, ).
``zone`` must be boolean array denoting if a node is a
zone, mostly used for traffic networks.
Nodes(nodes, xy, zone)
where ``nodes`` and ``zone`` are array_like of shape (n, )
and ``xy`` is array_like of shape (n, 2) and contains the
coordinates of the nodes.
Nodes(node_labels, node_indices, xy, zone)
where ``node_labels`` and ``node_indices`` and ``zone``
are are array_like of shape (n, ) and ``xy`` is array_like
of shape (n, 2).
Parameters
----------
data : node_data
Input data.
dtype_float : dtype, default=numpy.float_
Datatype for X and Y coordinates.
dtype_int : dtype, default=int
Datatype for node indices.
map_labels: None, bool, dict, or callable, default=True
Determines mapping of labels to indices if no indices are
given or vice versa. If ``None`` or ``False``, indices / labels
are set to -9999 / 'invalid'. If ``dict``, mapping by this
dict. If ``True``, indices are set to 0, 1, ..., n-1, labels to
indices as str. If ``callable``, use callable with
signature ``indices = callable(labels)`` or
``labels = callable(indices)``.
copy : bool, default=False
Whether to create a copy of the inputs in data.
Attributes
----------
index
node
zone
has_zones
x
y
"""
def __init__(
self,
data,
dtype_float=None,
dtype_int=None,
map_labels=True, # optional
copy: bool = False,
) -> None:
# Collect kwargs
kw = {
"map_labels": map_labels,
"dtype_float": dtype_float,
"dtype_int": dtype_int,
"copy": copy,
}
if isinstance(data, Nodes):
d = (data.labels, data.indices, data.xy, data.zone)
return self.__init__(d,
dtype_float=data.dtype_float,
dtype_int=data.dtype_int)
elif isinstance(data, tuple):
if len(data) == 4:
pass
elif len(data) == 3:
# (labels or indices, xy, zone)
node, xy, zone = data
node = np.array(node)
if node.dtype.kind in {'U', 'S'}:
# Case Labels
if map_labels is True:
# Automap labels
indices = np.arange(len(node))
elif map_labels is None or map_labels is False:
indices = np.full(len(node), ID_UNMAPPED, dtype=int)
else:
indices = map_labels(node)
return self.__init__((node, indices, xy, zone), **kw)
elif issubclass(node.dtype.type, numbers.Integral):
if np.array_equal(np.sort(node), np.arange(len(node))) is False:
raise ValueError(f"Indices must of integers from 0 to {len(node) - 1} in any order.")
if map_labels is True:
labels = node.astype(str)
elif map_labels is None or map_labels is False:
# Set to invalid indices
labels = np.full(len(node), "None")
else:
labels = map_labels(node)
kw["dtype_int"] = node.dtype
return self.__init__((labels, node, xy, zone), **kw)
else:
raise ValueError(f"Nodes must be ints or strings, are: {node.dtype}.")
elif len(data) == 2:
# (labels or indices, xy)
zone = np.full(len(data[0]), False, dtype=bool)
return self.__init__((*data, zone), **kw)
else:
raise ValueError("TODO")
else:
# Only labels or Id's specified
data = np.array(data, copy=False)
return self.__init__((data, None), **kw)
# Handle datatypes
if dtype_float is None:
dtype_float = np.float64
if dtype_int is None:
dtype_int = int
self.dtype_int = dtype_int
self.dtype_float = dtype_float
labels, indices, xy, zone = data
indices = np.argsort(indices)
self.labels = np.array(labels, dtype=str, copy=copy)[indices]
if isinstance(zone, bool):
zone = [zone] * len(self.labels)
self.zone = np.array(zone, dtype=bool, copy=copy)[indices]
if xy is not None:
xy = np.array(xy)
if xy.shape != (len(self.labels), 2):
raise ValueError(f"Coordinates have wrong shape: {xy.shape}, should be {len(labels), 2}.")
self.xy = np.array(xy, dtype=dtype_float, copy=copy)[indices]
else:
self.xy = None
if (len(self.labels) == len(indices) == len(self.zone)) is False:
raise ValueError(
"Invalid shape of node data, "
f"labels: {self.labels.shape}, "
f"indices: {indices.shape}, "
f"zone: {self.zone.shape}."
)
self.set_mappings()
def __len__(self) -> int:
return len(self.labels)
def __eq__(self, other) -> bool:
for att in ["labels", "indices", "zone"]:
if np.array_equal(getattr(self, att), getattr(other, att)) is False:
return False
return True
def set_mappings(self) -> None:
"""(Re)-set labels <-> indices mappings."""
self.lbl2id = dict(zip(self.labels, self.indices))
self.id2lbl = dict(zip(self.indices, self.labels))
def get_pos(self) -> dict:
if self.xy is None:
raise ValueError("No node coordinates set.")
return dict(zip(self.labels, self.xy))
def delete_nodes(
self,
nodes,
return_indices: bool = False
):
"""Delete nodes from Nodes object.
Parameters
----------
nodes : int, ndarray of int
Indices of nodes to delete.
return_indices : bool, default=False
If True, node indices of deleted nodes are returned.
Returns
-------
ndarray, optional
If return_indices is True, node indices of deleted
nodes are returned.
See Also
--------
numpy.delete
"""
self.labels = np.delete(self.labels, nodes)
self.zone = np.delete(self.zone, nodes)
if self.xy is not None:
self.xy = np.delete(self.xy, nodes, axis=0)
if return_indices is True:
return np.array(nodes)
def to_df(
self,
**kwargs
) -> pd.DataFrame:
"""Get object as pandas DataFrame.
Parameters
----------
**kwargs : keyword arguments, optional
Keyword arguments passed to pd.DataFrame constructor.
Returns
-------
pandas.DataFrame
Nodes data with node label, coordinates (x, y) and zone
(bool).
"""
df = pd.DataFrame({"label": self.labels, "zone": self.zone}, **kwargs)
df["label"] = df["label"].astype(str)
df["zone"] = df["zone"].astype(bool)
if self.xy is not None:
df[["x", "y"]] = self.xy.astype(self.dtype_float)
return df
def add_to_etree(
self,
root: et.Element,
overwrite: bool = True
):
"""Add node data to xml.etree.ElementTree.Element.
Parameters
----------
root : xml.etree.ElementTree.Element
Element to which 'nodes' will be appended to.
overwrite : bool, default=True
If True, existing 'nodes' Element in root will be
deleted. If False, node data will be appended to the
existing data.
"""
nodes = root.find("nodes")
if overwrite is True and nodes is not None:
root.remove(nodes)
nodes = root.find("nodes")
if nodes is None:
root.append(et.Element("nodes"))
for node in self.to_df().T.to_dict().values():
n_node = et.SubElement(root.find("nodes"), 'node')
n_node.attrib['node'] = node['label']
if 'x' in node:
n_node.attrib['x'] = str(node['x'])
n_node.attrib['y'] = str(node['y'])
if node['zone'] is True:
n_node.attrib['zone'] = "true"
return root
@classmethod
def from_edges(
cls,
edges: Edges,
**kw):
d = dict(zip(edges.labels.ravel(), edges.indices.ravel()))
labels = np.array(list(d.keys()))
indices = np.array(list(d.values()))
if np.array_equal(np.sort(indices), np.arange(len(indices))) is False:
raise ValueError("Invalid edge indices.")
return cls(labels[indices.argsort()], **kw)
@classmethod
def from_xml(
cls,
data,
return_data: bool = False,
**kwargs
):
data = xml_find_root(data)
nodes = data.find("nodes")
if nodes is None:
return None
lbl = []
xy = []
zone = []
for n in nodes:
lbl.append(n.get('node'))
x = parse_number(n.get('x', 0.0))
y = parse_number(n.get('y', 0.0))
xy.append([x, y])
zone.append(n.get('zone', 'false').strip().lower() == 'true')
if return_data is True:
return (lbl, xy, zone)
return cls((lbl, xy, zone), **kwargs)
from_xml.__func__.__doc__ = _doc.from_xml.__doc__
def make_save_dict(self, prefix: str = "", save_dict=None) -> dict:
if save_dict is None:
save_dict = {}
for k in ["labels", "zone", "xy"]:
save_dict[prefix + k] = getattr(self, k)
return save_dict
make_save_dict.__doc__ = _doc.make_save_dict.__doc__
def save_to_numpy(
self,
file: str,
**kwargs
) -> None:
save_dict = self.make_save_dict()
save_dict.update(kwargs)
np.savez(file, **save_dict)
save_to_numpy.__doc__ = _doc.save_to_numpy.__doc__
@classmethod
def from_npz(
cls,
data,
prefix: str = "",
**kwargs,
):
if isinstance(data, str):
data = np.load(data)
# make empty edge object and fill with data
node_data = (
data[prefix + "labels"],
data[prefix + "xy"],
data[prefix + "zone"],
)
return cls(node_data, **kwargs)
from_npz.__func__.__doc__ = _doc.from_npz.__doc__
def _get_node(self, idx):
return {att: getattr(self, att)[idx]
for att in ["index", "node", "x", "z", "zone"]}
@property
def indices(self) -> np.ndarray:
"""ndarray (m, ) of int: node indices."""
return np.arange(len(self.labels), dtype=self.dtype_int)
@property
def has_zones(self) -> bool:
"""bool: Whether Nodes object has any zone."""
return self.zone.any()
@property
def x(self) -> np.ndarray:
"""ndarray (m, ) of floats: X coordinates."""
if self.xy is None:
raise AttributeError("Nodes has no coordinates.")
return self.xy[:, 0]
@property
def y(self) -> np.ndarray:
"""ndarray (m, ) of floats: Y coordinates."""
if self.xy is None:
raise AttributeError("Nodes has no coordinates.")
return self.xy[:, 1]
class Shared:
"""Class that acts as a shared object for a Network.
Consists mainly of nodes and edges object, handles label and index
mappings.
Parameters
----------
edge_data : tuple of ndarray
Data to construct Edges object.
node_data : array_like or tuple of ndarray, optional
Data to construct Nodes object.
dtype_float : dtype, default=numpy.float_
Datatype for all float ndarray.
dtype_int : dtype, default=int
Datatype for all int ndarray.
See Also
--------
Edges
Nodes
"""
def __init__(
self,
edge_data,
node_data=None,
dtype_float=np.float_,
dtype_int=int,
**kwargs
) -> None:
if node_data is None:
self.edges = Edges(edge_data,
dtype_float=dtype_float,
dtype_int=dtype_int,
**kwargs)
self.nodes = Nodes.from_edges(self.edges,
dtype_float=dtype_float,
dtype_int=dtype_int)
else:
self.nodes = Nodes(node_data,
dtype_float=dtype_float,
dtype_int=dtype_int)
self.edges = Edges(edge_data,
map_labels_to_indices=self.nodes.lbl2id,
map_indices_to_labels=self.nodes.id2lbl,
dtype_float=dtype_float,
dtype_int=dtype_int,
**kwargs)
self._update_edges()
self.cache = Cache()
def __eq__(self, other) -> bool:
for att in ["edges", "nodes"]:
if getattr(self, att) != getattr(other, att):
return False
return True
def update(self):
"""Update internal node and edge mappings."""
self._update_nodes()
self._update_edges()
def reset_cache(self, hard: bool = False) -> None:
self.cache.reset()
def _update_nodes(self):
self.nodes.set_mappings()
def _update_edges(self):
self._set_edge_indices()
def _set_edge_indices(self) -> None:
self.edges.map_labels(self.node2id)
self._set_edge_id_mapping()
def _set_edge_id_mapping(self) -> None:
# create mapping (nodeid, nodeid) -> edgeid
k_id = [tuple(row) for row in self.edges.indices]
self._nodes2edge = dict(zip(k_id, range(len(k_id))))
def _get_dtypes(
self,
dtype_int=None,
dtype_float=None
) -> tuple:
if dtype_int is None:
dtype_int = self.dtype_int
if dtype_float is None:
dtype_float = self.dtype_float
return (dtype_int, dtype_float)
def delete_edges(
self,
edges,
update: bool = True,
**kwargs
):
"""Delete edge(s) from Edges object.
Parameters
----------
edges : int or ndarray of ints
Indices to delete.
update : bool, default=True
Whether to reset mapping of node labels to node ids.
return_indices, default=False
If True, edge indices of deleted edges are returned.
Returns
-------
ndarray, optional
If return_indices is True, edge indices of deleted nodes are
returned.
See Also
--------
numpy.delete
"""
self.cache.set_invalid("gamma", "gamma_T")
ret = self.edges._delete_edges(edges, **kwargs)
if update is True:
self._update_edges()
return ret
def delete_nodes(
self,
nodes,
update: bool = True,
is_label: bool = True,
**kwargs
):
"""Delete node(s) from Nodes object.
Parameters
----------
nodes : int, array of ints, str, or array of str
Indices or labels of nodes to delete.
update : bool, default=True
Whether to reset mapping of node labels to node ids.
is_label : bool, default=True
Whether to delete by label or internal node index.
return_indices : bool, default=False
If True, node indices of deleted nodes are returned.
Returns
-------
ndarray, optional
If return_indices is True, node indices of deleted nodes are
returned.
See Also
--------
numpy.delete
"""
if is_label is True:
nodes = self.get_node_id(nodes, vectorize=True)
ret = self.nodes.delete_nodes(nodes, **kwargs)
if update is True:
self._update_nodes()
return ret
def delete_nodes_in_edges(
self,
nodes,
update: bool = True,
is_label: bool = False,
**kwargs
):
"""Delete node(s) from Edges object.
An edge is deleted if either source or target id equals that of
a node in nodes.
Parameters
----------
nodes : int, array of ints, str, or array of str
Nodes to delete.
return_indices : bool, default=False
If True, edge indices of deleted edges are returned.
Returns
-------
ndarray, optional
If return_indices is True, edge indices of deleted edges
are returned.
"""
self.cache.set_invalid("gamma", "gamma_T")
if is_label is True:
nodes = self.get_node_id(nodes, vectorize=True)
ret = self.edges._delete_nodes(nodes, **kwargs)
if update is True:
self._update_edges()
return ret
def incidence_matrix(self, *args, **kwargs) -> sps.spmatrix:
"""Alias for :func:`Shared.Gamma`."""
return self.Gamma(*args, **kwargs)
def Gamma(
self,
return_as: str = 'csr',
transpose: bool = False,
) -> sps.spmatrix:
"""Return the incidence matrix Gamma of the network.
Gamma is of shape (m, n) and is defined as::
Gamma[v, e] = 1 if edge e enters vertex v,
Gamma[v, e] = -1 if edge e leaves vertex v,
Gamma[v, e] = 0 otherwise.
Parameters
----------
return_as : str, default='csr'
Sparse matrix type to be returned.
transpose : bool, default=True
Whether to transpose Gamma matrix.
Returns
-------
Gamma : spmatrix
Incidence matrix of the network.
See Also
--------
scipy.sparse
References
----------
https://en.wikipedia.org/wiki/Incidence_matrix
Examples
--------
Sioux-Falls:
>>> import paminco
>>> net = paminco.net.load_sioux()
>>> net.Gamma().toarray()[:5, :5]
array([[-1, -1, 1, 0, 1],
[ 1, 0, -1, -1, 0],
[ 0, 1, 0, 0, -1],
[ 0, 0, 0, 0, 0],
[ 0, 0, 0, 0, 0]])
"""
# Rebuild gamma if neccessary
if self.cache.is_valid("gamma") is False:
i = self.edges.indices.T.ravel()
j = np.hstack([np.array(range(self.m))] * 2)
vals = np.hstack(([-1] * self.m, [1] * self.m))
coo = sps.coo_matrix((vals, (i, j)), shape=(self.n, self.m))
# Cache gamma and transpose
gamma = sparse_format(coo, return_as)
self.cache["gamma"] = gamma
self.cache["gamma_T"] = gamma.T.tocsr()
if transpose:
return sparse_format(self.cache["gamma_T"], return_as)
return sparse_format(self.cache["gamma"], return_as)
def adjacency_matrix(self, *args, **kw) -> sps.csr_matrix:
"""Alias for :func:`~Shared.csgraph`."""
return self.csgraph(*args, **kw)
def csgraph(
self,
weight=None,
respect_bounds: bool = True,
backward_positive: bool = False,
dtype=None,
) -> sps.csr_matrix:
"""Get the compressed sparse graph, shape (n, n).
A network/graph with n nodes can be represented by an node to
node adjacency matrix H. If there is a connection from node i
to node j, then H[i, j] = w, where w is the weight of the
connection.
Parameters
----------
weight : ndarray
Weight on network edges, shape (m, ).
respect_bounds : bool, default=True
If True, an undirected edge from s to t with
``lb<0 and ub>0`` will lead to separate entries in H. I.e.,
H[s, t] = w and H[t, s] = w.
backward_positive : bool, default=False
Whether to negate weight for undirected edges if
``respect_bounds`` is True. I.e., H[s, t] = w and
H[t, s] = -w.
dtype : dtype, optional
Datatype of csgraph.
Returns
-------
csr_matrix
Compressed sparse network graph.
Examples
--------
SiouxFalls:
>>> import paminco
>>> net = paminco.net.load_sioux()
>>> H = net.shared.csgraph(np.arange(net.m) + 1)
>>> H[:5, :5].toarray()
array([[ 0., 1., 2., 0., 0.],
[ 3., 0., 0., 0., 0.],
[ 5., 0., 0., 6., 0.],
[ 0., 0., 8., 0., 9.],
[ 0., 0., 0., 11., 0.]])
"""
if dtype is None:
dtype = self.dtype_float
if weight is None:
weight = np.ones(self.m)
if respect_bounds is True:
s, t, w = self.edges.get_directed(weight, backward_positive=backward_positive)
else:
if self.cache.is_valid("csgraph") is False:
s, t = self.edges.indices.T
w = weight
return sps.csr_matrix((w, (s, t)),
shape=(self.n, self.n),
dtype=dtype)
def get_edge_id(
self,
nodes
):
"""Map node indices to edge indices.
Parameters
----------
nodes : (sequence of) tuple (int, int)
Node indices (source, target) to be mapped to edge indices.
Returns
-------
int, or list of int
Edge indices for nodes.
"""
if isinstance(nodes, tuple):
return self.nodes2edge[nodes]
return [self.get_edge_id(n) for n in nodes]
def get_node_id(
self,
nodes,
vectorize: bool = False
):
"""Map labels in nodes to node indices.
Parameters
----------
nodes : str or array_like
Node labels to map to node indices.
vectorize : bool, default=False
Whether to vectorize over ``nodes`` (must be ndarray).
Better performance for larger arrays.
Returns
-------
int, list or ndarray
Node indices.
``int`` : If nodes is str.
``ndarray`` : If nodes is ndarray and vectorize is True.
``list of int`` : else.
"""
# Single entry
if isinstance(nodes, str):
return self.node2id[nodes]
# Vectorize for arrays, better performance for larger arrays
if (isinstance(nodes, np.ndarray) and
(vectorize is True or nodes.ndim > 1)):
return np.vectorize(self.node2id.__getitem__)(nodes)
if is_iterable(nodes):
return [self.node2id[n] for n in nodes]
return ValueError("'nodes' must be either str, iterable or array.")
def get_node_label(
self,
nodes,
vectorize: bool = False
):
"""Map indices in nodes to node labels.
Parameters
----------
nodes : int or array_like
Node indices to map to node labels.
vectorize : bool, default=False
Whether to vectorize over ``nodes`` (must be ndarray).
Better performance for larger arrays.
Returns
-------
str, list or ndarray
Node label(s).
``str`` : If nodes is int.
``ndarray`` : If nodes is ndarray and vectorize is True.
``list of str`` : else.
Raises
------
ValueError:
Nodes is neither int, ndarray or iterable.
"""
# Reverse dict
d = self.nodes.id2lbl
# Case single entry
if is_int(nodes):
return d[nodes]
# Vectorize for numpy arrays, better performance for larger arrays
if (isinstance(nodes, np.ndarray) and
(vectorize is True or nodes.ndim > 1)):
return np.vectorize(d.__getitem__)(nodes)
if is_iterable(nodes):
return [d[n] for n in nodes]
return ValueError("'nodes' must be either int, iterable or array.")
@classmethod
def from_xml(cls, data, **kwargs):
edges_data = Edges.from_xml(data, return_data=True)
nodes_data = Nodes.from_xml(data, return_data=True)
return cls(edges_data, nodes_data, **kwargs)
from_xml.__func__.__doc__ = _doc.from_xml.__doc__
def make_save_dict(
self,
prefix: str = "",
save_dict=None
) -> dict:
sd = self.edges.make_save_dict(prefix=prefix + "edge_",
save_dict=save_dict)
sd = self.nodes.make_save_dict(prefix=prefix + "node_",
save_dict=sd)
return sd
make_save_dict.__doc__ = _doc.make_save_dict.__doc__
def save_to_numpy(
self,
file: str,
**kwargs
) -> None:
save_dict = self.make_save_dict()
save_dict.update(kwargs)
np.savez(file, **save_dict)
save_to_numpy.__doc__ = _doc.save_to_numpy.__doc__
@classmethod
def from_npz(
cls,
data,
prefix: str = "",
kw_edges=None,
kw_nodes=None,
):
"""Load Shared from .npz file.
Parameters
----------
data : str or NpzFile
Filename as str or :class:`~numpy.lib.npyio.NpzFile`.
prefix : str, default=""
Object data is stored with ``key = (prefix + internal_name)``.
kw_edges : keyword arguments, optional
Further arguments passed to edge constructor.
kw_nodes : keyword arguments, optional
Further arguments passed to nodes constructor.
Returns
-------
s : Shared
Object to be shared among network objects.
"""
if kw_edges is None:
kw_edges = {}
if kw_nodes is None:
kw_nodes = {}
if isinstance(data, str):
data = np.load(data)
nodes = Nodes.from_npz(data,
prefix + "node_",
**kw_nodes)
edges = Edges.from_npz(data,
prefix + "edge_",
**kw_edges)
return cls(edges, nodes)
@property
def flow_direction(self) -> FlowDirection:
"""The direction of flow on the edges.
See Also
--------
paminco.net.shared.FlowDirection
"""
return self.edges.flow_dir
@property
def n(self) -> int:
"""Get number of nodes in network."""
return len(self.nodes)
@property
def m(self) -> int:
"""Get number of edges in network."""
return len(self.edges)
@property
def nodes2edge(self) -> dict:
"""Get dict that maps (node_id, node_id) -> edge_id."""
return self._nodes2edge
@property
def node2id(self) -> dict:
"""Get dict that maps node label (str) -> node id (int)."""
return self.nodes.lbl2id
@property
def dtype_int(self):
"""Get int data type, used for node ids in network."""
return self.edges.dtype_int
@property
def dtype_float(self):
"""Get float dtype for network."""
return self.edges.dtype_float
| [
"numpy.hstack",
"paminco.utils.misc.Cache",
"paminco.utils.typing.sparse_format",
"numpy.argsort",
"numpy.array",
"numpy.savez",
"numpy.where",
"numpy.delete",
"numpy.sort",
"scipy.sparse.coo_matrix",
"pandas.DataFrame",
"scipy.sparse.csr_matrix",
"numpy.ones",
"paminco.utils.typing.is_int... | [((7761, 7799), 'numpy.array', 'np.array', (['labels'], {'dtype': 'str', 'copy': 'copy'}), '(labels, dtype=str, copy=copy)\n', (7769, 7799), True, 'import numpy as np\n'), ((7823, 7868), 'numpy.array', 'np.array', (['indices'], {'dtype': 'dtype_int', 'copy': 'copy'}), '(indices, dtype=dtype_int, copy=copy)\n', (7831, 7868), True, 'import numpy as np\n'), ((8298, 8344), 'numpy.array', 'np.array', (['bounds'], {'dtype': 'dtype_float', 'copy': 'copy'}), '(bounds, dtype=dtype_float, copy=copy)\n', (8306, 8344), True, 'import numpy as np\n'), ((8373, 8436), 'numpy.nan_to_num', 'np.nan_to_num', (['self.bounds[:, 1]'], {'copy': '(False)', 'nan': 'np.inf'}), '(self.bounds[:, 1], copy=False, nan=np.inf, **bkw)\n', (8386, 8436), True, 'import numpy as np\n'), ((10131, 10138), 'paminco.utils.misc.Cache', 'Cache', ([], {}), '()\n', (10136, 10138), False, 'from paminco.utils.misc import Cache\n'), ((10467, 10483), 'paminco.utils.typing.is_iterable', 'is_iterable', (['idx'], {}), '(idx)\n', (10478, 10483), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((11072, 11123), 'numpy.hstack', 'np.hstack', (['[self.labels, self.indices, self.bounds]'], {}), '([self.labels, self.indices, self.bounds])\n', (11081, 11123), True, 'import numpy as np\n'), ((11137, 11165), 'pandas.DataFrame', 'pd.DataFrame', (['data'], {}), '(data, **kwargs)\n', (11149, 11165), True, 'import pandas as pd\n'), ((11911, 11968), 'pandas.DataFrame', 'pd.DataFrame', (["{'source': s, 'target': t, colname_flow: x}"], {}), "({'source': s, 'target': t, colname_flow: x})\n", (11923, 11968), True, 'import pandas as pd\n'), ((13637, 13654), 'numpy.array', 'np.array', (['del_idx'], {}), '(del_idx)\n', (13645, 13654), True, 'import numpy as np\n'), ((13729, 13768), 'numpy.delete', 'np.delete', (['self.labels', 'del_idx'], {'axis': '(0)'}), '(self.labels, del_idx, axis=0)\n', (13738, 13768), True, 'import numpy as np\n'), ((13792, 13832), 'numpy.delete', 'np.delete', (['self.indices', 'del_idx'], {'axis': '(0)'}), '(self.indices, del_idx, axis=0)\n', (13801, 13832), True, 'import numpy as np\n'), ((13855, 13894), 'numpy.delete', 'np.delete', (['self.bounds', 'del_idx'], {'axis': '(0)'}), '(self.bounds, del_idx, axis=0)\n', (13864, 13894), True, 'import numpy as np\n'), ((13926, 13974), 'numpy.delete', 'np.delete', (['self.flow_directions', 'del_idx'], {'axis': '(0)'}), '(self.flow_directions, del_idx, axis=0)\n', (13935, 13974), True, 'import numpy as np\n'), ((16701, 16720), 'paminco.utils.readin.xml_find_root', 'xml_find_root', (['data'], {}), '(data)\n', (16714, 16720), False, 'from paminco.utils.readin import parse_number, xml_find_root\n'), ((17782, 17809), 'numpy.savez', 'np.savez', (['file'], {}), '(file, **save_dict)\n', (17790, 17809), True, 'import numpy as np\n'), ((24620, 24639), 'numpy.argsort', 'np.argsort', (['indices'], {}), '(indices)\n', (24630, 24639), True, 'import numpy as np\n'), ((26845, 26874), 'numpy.delete', 'np.delete', (['self.labels', 'nodes'], {}), '(self.labels, nodes)\n', (26854, 26874), True, 'import numpy as np\n'), ((26895, 26922), 'numpy.delete', 'np.delete', (['self.zone', 'nodes'], {}), '(self.zone, nodes)\n', (26904, 26922), True, 'import numpy as np\n'), ((27558, 27623), 'pandas.DataFrame', 'pd.DataFrame', (["{'label': self.labels, 'zone': self.zone}"], {}), "({'label': self.labels, 'zone': self.zone}, **kwargs)\n", (27570, 27623), True, 'import pandas as pd\n'), ((29609, 29628), 'paminco.utils.readin.xml_find_root', 'xml_find_root', (['data'], {}), '(data)\n', (29622, 29628), False, 'from paminco.utils.readin import parse_number, xml_find_root\n'), ((30740, 30767), 'numpy.savez', 'np.savez', (['file'], {}), '(file, **save_dict)\n', (30748, 30767), True, 'import numpy as np\n'), ((33935, 33942), 'paminco.utils.misc.Cache', 'Cache', ([], {}), '()\n', (33940, 33942), False, 'from paminco.utils.misc import Cache\n'), ((40276, 40321), 'paminco.utils.typing.sparse_format', 'sparse_format', (["self.cache['gamma']", 'return_as'], {}), "(self.cache['gamma'], return_as)\n", (40289, 40321), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((42567, 42631), 'scipy.sparse.csr_matrix', 'sps.csr_matrix', (['(w, (s, t))'], {'shape': '(self.n, self.n)', 'dtype': 'dtype'}), '((w, (s, t)), shape=(self.n, self.n), dtype=dtype)\n', (42581, 42631), True, 'import scipy.sparse as sps\n'), ((44322, 44340), 'paminco.utils.typing.is_iterable', 'is_iterable', (['nodes'], {}), '(nodes)\n', (44333, 44340), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((45433, 45446), 'paminco.utils.typing.is_int', 'is_int', (['nodes'], {}), '(nodes)\n', (45439, 45446), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((45737, 45755), 'paminco.utils.typing.is_iterable', 'is_iterable', (['nodes'], {}), '(nodes)\n', (45748, 45755), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((46808, 46835), 'numpy.savez', 'np.savez', (['file'], {}), '(file, **save_dict)\n', (46816, 46835), True, 'import numpy as np\n'), ((8009, 8025), 'numpy.array', 'np.array', (['bounds'], {}), '(bounds)\n', (8017, 8025), True, 'import numpy as np\n'), ((8629, 8689), 'numpy.nan_to_num', 'np.nan_to_num', (['self.bounds[:, 0]'], {'copy': '(False)', 'nan': '(0.0)'}), '(self.bounds[:, 0], copy=False, nan=0.0, **bkw)\n', (8642, 8689), True, 'import numpy as np\n'), ((8873, 8937), 'numpy.nan_to_num', 'np.nan_to_num', (['self.bounds[:, 0]'], {'copy': '(False)', 'nan': '(-np.inf)'}), '(self.bounds[:, 0], copy=False, nan=-np.inf, **bkw)\n', (8886, 8937), True, 'import numpy as np\n'), ((12521, 12544), 'numpy.hstack', 'np.hstack', (['(s_fw, s_bw)'], {}), '((s_fw, s_bw))\n', (12530, 12544), True, 'import numpy as np\n'), ((12561, 12584), 'numpy.hstack', 'np.hstack', (['(t_fw, t_bw)'], {}), '((t_fw, t_bw))\n', (12570, 12584), True, 'import numpy as np\n'), ((13024, 13047), 'numpy.hstack', 'np.hstack', (['(w_fw, w_bw)'], {}), '((w_fw, w_bw))\n', (13033, 13047), True, 'import numpy as np\n'), ((18060, 18073), 'numpy.load', 'np.load', (['data'], {}), '(data)\n', (18067, 18073), True, 'import numpy as np\n'), ((18402, 18437), 'numpy.where', 'np.where', (['(self.flow_directions == 1)'], {}), '(self.flow_directions == 1)\n', (18410, 18437), True, 'import numpy as np\n'), ((18514, 18550), 'numpy.where', 'np.where', (['(self.flow_directions == -1)'], {}), '(self.flow_directions == -1)\n', (18522, 18550), True, 'import numpy as np\n'), ((18629, 18664), 'numpy.where', 'np.where', (['(self.flow_directions == 0)'], {}), '(self.flow_directions == 0)\n', (18637, 18664), True, 'import numpy as np\n'), ((24662, 24700), 'numpy.array', 'np.array', (['labels'], {'dtype': 'str', 'copy': 'copy'}), '(labels, dtype=str, copy=copy)\n', (24670, 24700), True, 'import numpy as np\n'), ((24810, 24847), 'numpy.array', 'np.array', (['zone'], {'dtype': 'bool', 'copy': 'copy'}), '(zone, dtype=bool, copy=copy)\n', (24818, 24847), True, 'import numpy as np\n'), ((24902, 24914), 'numpy.array', 'np.array', (['xy'], {}), '(xy)\n', (24910, 24914), True, 'import numpy as np\n'), ((26977, 27010), 'numpy.delete', 'np.delete', (['self.xy', 'nodes'], {'axis': '(0)'}), '(self.xy, nodes, axis=0)\n', (26986, 27010), True, 'import numpy as np\n'), ((27074, 27089), 'numpy.array', 'np.array', (['nodes'], {}), '(nodes)\n', (27082, 27089), True, 'import numpy as np\n'), ((31019, 31032), 'numpy.load', 'np.load', (['data'], {}), '(data)\n', (31026, 31032), True, 'import numpy as np\n'), ((39850, 39890), 'numpy.hstack', 'np.hstack', (['([-1] * self.m, [1] * self.m)'], {}), '(([-1] * self.m, [1] * self.m))\n', (39859, 39890), True, 'import numpy as np\n'), ((39909, 39963), 'scipy.sparse.coo_matrix', 'sps.coo_matrix', (['(vals, (i, j))'], {'shape': '(self.n, self.m)'}), '((vals, (i, j)), shape=(self.n, self.m))\n', (39923, 39963), True, 'import scipy.sparse as sps\n'), ((40037, 40066), 'paminco.utils.typing.sparse_format', 'sparse_format', (['coo', 'return_as'], {}), '(coo, return_as)\n', (40050, 40066), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((40213, 40260), 'paminco.utils.typing.sparse_format', 'sparse_format', (["self.cache['gamma_T']", 'return_as'], {}), "(self.cache['gamma_T'], return_as)\n", (40226, 40260), False, 'from paminco.utils.typing import sparse_format, is_int, is_iterable, IntEnum2\n'), ((42251, 42266), 'numpy.ones', 'np.ones', (['self.m'], {}), '(self.m)\n', (42258, 42266), True, 'import numpy as np\n'), ((47866, 47879), 'numpy.load', 'np.load', (['data'], {}), '(data)\n', (47873, 47879), True, 'import numpy as np\n'), ((14397, 14412), 'numpy.array', 'np.array', (['nodes'], {}), '(nodes)\n', (14405, 14412), True, 'import numpy as np\n'), ((15755, 15774), 'xml.etree.ElementTree.Element', 'et.Element', (['"""edges"""'], {}), "('edges')\n", (15765, 15774), True, 'import xml.etree.ElementTree as et\n'), ((24235, 24261), 'numpy.array', 'np.array', (['data'], {'copy': '(False)'}), '(data, copy=False)\n', (24243, 24261), True, 'import numpy as np\n'), ((25094, 25136), 'numpy.array', 'np.array', (['xy'], {'dtype': 'dtype_float', 'copy': 'copy'}), '(xy, dtype=dtype_float, copy=copy)\n', (25102, 25136), True, 'import numpy as np\n'), ((28566, 28585), 'xml.etree.ElementTree.Element', 'et.Element', (['"""nodes"""'], {}), "('nodes')\n", (28576, 28585), True, 'import xml.etree.ElementTree as et\n'), ((29289, 29305), 'numpy.sort', 'np.sort', (['indices'], {}), '(indices)\n', (29296, 29305), True, 'import numpy as np\n'), ((44256, 44294), 'numpy.vectorize', 'np.vectorize', (['self.node2id.__getitem__'], {}), '(self.node2id.__getitem__)\n', (44268, 44294), True, 'import numpy as np\n'), ((45682, 45709), 'numpy.vectorize', 'np.vectorize', (['d.__getitem__'], {}), '(d.__getitem__)\n', (45694, 45709), True, 'import numpy as np\n'), ((13436, 13463), 'numpy.vectorize', 'np.vectorize', (['d.__getitem__'], {}), '(d.__getitem__)\n', (13448, 13463), True, 'import numpy as np\n'), ((4800, 4812), 'numpy.array', 'np.array', (['st'], {}), '(st)\n', (4808, 4812), True, 'import numpy as np\n'), ((22524, 22538), 'numpy.array', 'np.array', (['node'], {}), '(node)\n', (22532, 22538), True, 'import numpy as np\n'), ((14190, 14207), 'numpy.where', 'np.where', (['del_idx'], {}), '(del_idx)\n', (14198, 14207), True, 'import numpy as np\n'), ((6141, 6154), 'numpy.unique', 'np.unique', (['st'], {}), '(st)\n', (6150, 6154), True, 'import numpy as np\n'), ((4997, 5044), 'numpy.vectorize', 'np.vectorize', (['map_labels_to_indices.__getitem__'], {}), '(map_labels_to_indices.__getitem__)\n', (5009, 5044), True, 'import numpy as np\n'), ((5255, 5268), 'numpy.unique', 'np.unique', (['st'], {}), '(st)\n', (5264, 5268), True, 'import numpy as np\n'), ((5554, 5581), 'numpy.vectorize', 'np.vectorize', (['d.__getitem__'], {}), '(d.__getitem__)\n', (5566, 5581), True, 'import numpy as np\n'), ((5758, 5799), 'numpy.full', 'np.full', (['st.shape', 'ID_UNMAPPED'], {'dtype': 'int'}), '(st.shape, ID_UNMAPPED, dtype=int)\n', (5765, 5799), True, 'import numpy as np\n'), ((6193, 6211), 'numpy.sort', 'np.sort', (['unique_st'], {}), '(unique_st)\n', (6200, 6211), True, 'import numpy as np\n'), ((6475, 6522), 'numpy.vectorize', 'np.vectorize', (['map_indices_to_labels.__getitem__'], {}), '(map_indices_to_labels.__getitem__)\n', (6487, 6522), True, 'import numpy as np\n'), ((23164, 23177), 'numpy.sort', 'np.sort', (['node'], {}), '(node)\n', (23171, 23177), True, 'import numpy as np\n'), ((6803, 6834), 'numpy.full', 'np.full', (['st.shape', 'LBL_UNMAPPED'], {}), '(st.shape, LBL_UNMAPPED)\n', (6810, 6834), True, 'import numpy as np\n')] |
import functools
import gc
import itertools
import logging
import pathlib
import shutil
import hetnetpy.hetnet
import hetnetpy.matrix
import hetnetpy.permute
import hetnetpy.readwrite
import numpy
import pandas
import scipy.sparse
import hetmatpy.degree_weight
import hetmatpy.matrix
def hetmat_from_graph(
graph, path, save_metagraph=True, save_nodes=True, save_edges=True
):
"""
Create a hetmat.HetMat from a hetnetpy.hetnet.Graph.
"""
assert isinstance(graph, hetnetpy.hetnet.Graph)
hetmat = HetMat(path, initialize=True)
hetmat.metagraph = graph.metagraph
# Save metanodes
metanodes = list(graph.metagraph.get_nodes())
for metanode in metanodes:
path = hetmat.get_nodes_path(metanode)
rows = list()
node_to_position = hetnetpy.matrix.get_node_to_position(graph, metanode)
for node, position in node_to_position.items():
rows.append((position, node.identifier, node.name))
node_df = pandas.DataFrame(rows, columns=["position", "identifier", "name"])
path = hetmat.get_nodes_path(metanode)
node_df.to_csv(path, index=False, sep="\t")
# Save metaedges
metaedges = list(graph.metagraph.get_edges(exclude_inverts=True))
for metaedge in metaedges:
rows, cols, matrix = hetnetpy.matrix.metaedge_to_adjacency_matrix(
graph, metaedge, dense_threshold=1
)
path = hetmat.get_edges_path(metaedge, file_format=None)
save_matrix(matrix, path)
return hetmat
def hetmat_from_permuted_graph(hetmat, permutation_id, permuted_graph):
"""
Assumes subdirectory structure and that permutations inherit nodes but not
edges.
"""
permuted_hetmat = initialize_permutation_directory(hetmat, permutation_id)
permuted_hetmat = hetmat_from_graph(
permuted_graph,
permuted_hetmat.directory,
save_metagraph=False,
save_nodes=False,
)
return permuted_hetmat
def initialize_permutation_directory(hetmat, permutation_id):
"""
Initializes the directory structure of a HetMat permutation.
Parameters
----------
hetmat : HetMat
permutation_id : str
Returns
-------
HetMat
"""
if not hetmat.permutations_directory.is_dir():
hetmat.permutations_directory.mkdir()
directory = hetmat.permutations_directory.joinpath(f"{permutation_id}.hetmat")
if directory.is_dir():
# If directory exists, back it up using a .bak extension
backup_directory = directory.with_name(directory.name + ".bak")
if backup_directory.is_dir():
shutil.rmtree(backup_directory)
shutil.move(directory, backup_directory)
permuted_hetmat = HetMat(directory, initialize=True)
permuted_hetmat.is_permutation = True
permuted_hetmat.metagraph_path.symlink_to("../../metagraph.json")
permuted_hetmat.nodes_directory.rmdir()
permuted_hetmat.nodes_directory.symlink_to("../../nodes", target_is_directory=True)
return permuted_hetmat
def read_matrix(path, file_format="infer"):
path = str(path)
if file_format == "infer":
if path.endswith(".sparse.npz"):
file_format = "sparse.npz"
if path.endswith(".npy"):
file_format = "npy"
if file_format == "infer":
raise ValueError("Could not infer file_format for {path}")
if file_format == "sparse.npz":
# https://docs.scipy.org/doc/scipy-1.0.0/reference/generated/scipy.sparse.load_npz.html
return scipy.sparse.load_npz(path)
if file_format == "npy":
# https://docs.scipy.org/doc/numpy-1.14.0/reference/generated/numpy.load.html
return numpy.load(path)
raise ValueError(f"file_format={file_format} is not supported.")
def save_matrix(matrix, path):
"""
Save a matrix to a the file specified by path.
Path should not include it's extension which is inferred.
"""
path = pathlib.Path(path)
if not path.parent.exists():
path.parent.mkdir()
path = str(path)
if isinstance(matrix, numpy.ndarray):
if not path.endswith(".npy"):
path += ".npy"
numpy.save(path, matrix)
elif scipy.sparse.issparse(matrix):
if not path.endswith(".sparse.npz"):
path += ".sparse.npz"
scipy.sparse.save_npz(path, matrix, compressed=True)
def read_first_matrix(specs, delete_failures=False):
"""
Attempt to read each path provided by specs, until one exists. If none of
the specs point to an existing path, raise a FileNotFoundError.
specs should be a list where each element is a dictionary specifying a
potential path from which to read a matrix. Currently, the spec dictionary
supports the following keys:
- path: path to the file
- transpose: whether to transpose the file after reading it. If omitted,
then False.
- file_format: format of the matrix. If omitted, then infer.
"""
paths = list()
for spec in specs:
path = pathlib.Path(spec["path"])
paths.append(str(path))
if not path.is_file():
continue
transpose = spec.get("transpose", False)
file_format = spec.get("file_format", "infer")
try:
matrix = read_matrix(path, file_format=file_format)
except Exception as error:
logging.warning(f"Error reading matrix at {path}:\n{error}")
if delete_failures:
path.unlink()
logging.warning(f"Deleting file at {path}")
continue
if transpose:
matrix = matrix.transpose()
return matrix
raise FileNotFoundError(
"No matrix files found at the specified paths:\n" + "\n".join(paths)
)
compression_extension = {
"gzip": ".gz",
"bz2": ".bz2",
"zip": ".zip",
"xz": ".xz",
None: "",
}
class HetMat:
# Supported formats for nodes files
nodes_formats = {
"tsv",
# 'feather',
# 'pickle',
# 'json',
}
# Supported formats for edges files
edges_formats = {
"npy",
"sparse.npz",
# 'tsv',
}
def __init__(self, directory, initialize=False):
"""
Initialize a HetMat with its MetaGraph.
"""
self.directory = pathlib.Path(directory)
self.metagraph_path = self.directory.joinpath("metagraph.json")
self.nodes_directory = self.directory.joinpath("nodes")
self.edges_directory = self.directory.joinpath("edges")
self.path_counts_directory = self.directory.joinpath("path-counts")
self.path_counts_cache = None
# Permutations should set is_permutation=True
self.is_permutation = False
self.permutations_directory = self.directory.joinpath("permutations")
if initialize:
self.initialize()
def initialize(self):
"""
Initialize the directory structure. This function is intended to be
called when creating new HetMat instance on disk.
"""
# Create directories
directories = [
self.directory,
self.nodes_directory,
self.edges_directory,
]
for directory in directories:
if not directory.is_dir():
directory.mkdir()
@property
@functools.lru_cache()
def permutations(self):
"""
Return a dictionary of permutation name to permutation directory.
Assumes permutation name is the directory name minus its .hetmat
extension.
"""
permutations = {}
for directory in sorted(self.permutations_directory.glob("*.hetmat")):
if not directory.is_dir():
continue
permutation = HetMat(directory)
permutation.is_permutation = True
name, _ = directory.name.rsplit(".", 1)
permutations[name] = permutation
return permutations
def permute_graph(
self,
num_new_permutations=None,
namer=None,
start_from=None,
multiplier=10,
seed=0,
):
"""
Generate and save permutations of the HetMat adjacency matrices.
Parameters
----------
num_new_permutations : int
The number of new, permuted HetMats to generate
namer : generator
Yields the names of new permutations. Cannot pass names of existing permutations
start_from : str
Name of permutation to use as starting point. For multiple permutations,
the first permutation starts from start_from, and future permutations
continue from the previous one.
multiplier : int
How many attempts to make when cross-swapping edges.
seed : int
Random seed for generating new permutations
"""
if namer is None:
# If no namer given, continue increasing names by one for new permutations
namer = (f"{x:03}" for x in itertools.count(start=1))
stat_dfs = list()
for _ in range(num_new_permutations):
permutation_name = next(namer)
new_hetmat = initialize_permutation_directory(self, permutation_name)
if start_from is None:
start_from = self
elif isinstance(start_from, str):
start_from = self.permutations[start_from]
assert isinstance(start_from, HetMat)
metaedges = list(self.metagraph.get_edges(exclude_inverts=True))
for metaedge in metaedges:
rows, cols, original_matrix = start_from.metaedge_to_adjacency_matrix(
metaedge, dense_threshold=1
)
is_directed = metaedge.direction != "both"
permuted_matrix, stats = hetmatpy.matrix.permute_matrix(
original_matrix,
directed=is_directed,
multiplier=multiplier,
seed=seed,
)
path = new_hetmat.get_edges_path(metaedge, file_format=None)
save_matrix(permuted_matrix, path)
stat_df = pandas.DataFrame(stats)
stat_df["metaedge"] = metaedge
stat_df["abbrev"] = metaedge.get_abbrev()
stat_df["permutation"] = permutation_name
stat_dfs.append(stat_df)
start_from = permutation_name
seed += 1
self.permutations[permutation_name] = new_hetmat
return pandas.concat(stat_dfs)
@property
@functools.lru_cache()
def metagraph(self):
"""
HetMat.metagraph is a cached property. Hence reading the metagraph from
disk should only occur once, the first time the metagraph property is
accessed. See https://stackoverflow.com/a/19979379/4651668. If this
method has issues, consider using cached_property from
https://github.com/pydanny/cached-property.
"""
return hetnetpy.readwrite.read_metagraph(self.metagraph_path)
@metagraph.setter
def metagraph(self, metagraph):
"""
Set the metagraph property by writing the metagraph to disk.
"""
hetnetpy.readwrite.write_metagraph(metagraph, self.metagraph_path)
def get_nodes_path(self, metanode, file_format="tsv"):
"""
Get the path for the nodes file for the specified metanode. Setting
file_format=None returns the path without any extension suffix.
"""
metanode = self.metagraph.get_metanode(metanode)
path = self.nodes_directory.joinpath(f"{metanode}")
if file_format is not None:
path = path.with_name(f"{path.name}.{file_format}")
return path
def get_edges_path(self, metaedge, file_format="npy"):
"""
Get the path for the edges file for the specified metaedge. Setting
file_format=None returns the path without any extension suffix.
"""
metaedge_abbrev = self.metagraph.get_metaedge(metaedge).get_abbrev()
path = self.edges_directory.joinpath(f"{metaedge_abbrev}")
if file_format is not None:
path = path.with_name(f"{path.name}.{file_format}")
return path
def get_path_counts_path(self, metapath, metric, damping, file_format):
"""
Setting file_format=None returns the path without any extension suffix.
Supported metrics are 'dwpc' and 'dwwc'.
"""
damping = float(damping)
path = self.path_counts_directory.joinpath(f"{metric}-{damping}/{metapath}")
if file_format is not None:
path = path.with_name(f"{path.name}.{file_format}")
return path
def get_running_degree_group_path(
self, metapath, metric, damping, extension=".tsv.gz"
):
"""
Get path for degree-grouped permutatation running metrics.
Must specify extension.
"""
damping = float(damping)
path = self.directory.joinpath(
"adjusted-path-counts",
f"{metric}-{damping}",
"degree-grouped-permutations",
f"{metapath}{extension}",
)
return path
def get_metapath_summary_path(self, metapath, metric, damping, compression=None):
damping = float(damping)
compr = compression_extension[compression]
path = self.directory.joinpath(
"adjusted-path-counts",
f"{metric}-{damping}",
"adjusted-dwpcs",
f"{metapath}.tsv{compr}",
)
return path
@functools.lru_cache()
def get_node_identifiers(self, metanode):
"""
Returns a list of node identifiers for a metapath
"""
path = self.get_nodes_path(metanode, file_format="tsv")
node_df = pandas.read_csv(path, sep="\t")
return list(node_df["identifier"])
@functools.lru_cache()
def count_nodes(self, metanode):
nodes = self.get_node_identifiers(metanode)
return len(nodes)
def metaedge_to_adjacency_matrix(
self,
metaedge,
dtype=None,
dense_threshold=None,
file_formats=["sparse.npz", "npy"],
):
"""
file_formats sets the precedence of which file to read in
"""
metaedge = self.metagraph.get_metaedge(metaedge)
specs = list()
configurations = itertools.product(file_formats, (True, False))
for file_format, invert in configurations:
path = self.get_edges_path(
metaedge=metaedge.inverse if invert else metaedge,
file_format=file_format,
)
spec = {"path": path, "transpose": invert, "file_format": file_format}
specs.append(spec)
matrix = read_first_matrix(specs)
if dense_threshold is not None:
matrix = hetnetpy.matrix.sparsify_or_densify(
matrix, dense_threshold=dense_threshold
)
if dtype is not None:
matrix = matrix.astype(dtype)
row_ids = self.get_node_identifiers(metaedge.source)
col_ids = self.get_node_identifiers(metaedge.target)
return row_ids, col_ids, matrix
def read_path_counts(
self, metapath, metric, damping, file_formats=["sparse.npz", "npy"]
):
"""
Read matrix with values of a path-count-based metric. Attempts to
locate any files with the matrix (or with trivial transformations).
"""
category = hetmatpy.degree_weight.categorize(metapath)
metrics = [metric]
if metric == "dwpc" and category == "no_repeats":
metrics.append("dwwc")
if metric == "dwwc" and category == "no_repeats":
metrics.append("dwpc")
specs = list()
configurations = itertools.product(
file_formats,
metrics,
(True, False),
)
for file_format, metric, invert in configurations:
path = self.get_path_counts_path(
metapath=metapath.inverse if invert else metapath,
metric=metric,
damping=damping,
file_format=file_format,
)
spec = {"path": path, "transpose": invert, "file_format": file_format}
specs.append(spec)
row_ids = self.get_node_identifiers(metapath.source())
col_ids = self.get_node_identifiers(metapath.target())
matrix = read_first_matrix(specs)
return row_ids, col_ids, matrix
def clear_caches(self):
"""
Clear cached assets of this HetMat and force garbage collection.
"""
# See workaround for methods with @property and @lru_cache decoration
# https://stackoverflow.com/a/45283290/4651668
for lru_cached_function in [
type(self).permutations.fget,
type(self).metagraph.fget,
self.get_node_identifiers,
self.count_nodes,
]:
lru_cached_function.cache_clear()
self.path_counts_cache = None
gc.collect()
| [
"pandas.read_csv",
"shutil.move",
"pathlib.Path",
"itertools.product",
"logging.warning",
"itertools.count",
"gc.collect",
"shutil.rmtree",
"pandas.DataFrame",
"functools.lru_cache",
"numpy.load",
"pandas.concat",
"numpy.save"
] | [((3935, 3953), 'pathlib.Path', 'pathlib.Path', (['path'], {}), '(path)\n', (3947, 3953), False, 'import pathlib\n'), ((7334, 7355), 'functools.lru_cache', 'functools.lru_cache', ([], {}), '()\n', (7353, 7355), False, 'import functools\n'), ((10614, 10635), 'functools.lru_cache', 'functools.lru_cache', ([], {}), '()\n', (10633, 10635), False, 'import functools\n'), ((13636, 13657), 'functools.lru_cache', 'functools.lru_cache', ([], {}), '()\n', (13655, 13657), False, 'import functools\n'), ((13949, 13970), 'functools.lru_cache', 'functools.lru_cache', ([], {}), '()\n', (13968, 13970), False, 'import functools\n'), ((983, 1049), 'pandas.DataFrame', 'pandas.DataFrame', (['rows'], {'columns': "['position', 'identifier', 'name']"}), "(rows, columns=['position', 'identifier', 'name'])\n", (999, 1049), False, 'import pandas\n'), ((2660, 2700), 'shutil.move', 'shutil.move', (['directory', 'backup_directory'], {}), '(directory, backup_directory)\n', (2671, 2700), False, 'import shutil\n'), ((3676, 3692), 'numpy.load', 'numpy.load', (['path'], {}), '(path)\n', (3686, 3692), False, 'import numpy\n'), ((4151, 4175), 'numpy.save', 'numpy.save', (['path', 'matrix'], {}), '(path, matrix)\n', (4161, 4175), False, 'import numpy\n'), ((5006, 5032), 'pathlib.Path', 'pathlib.Path', (["spec['path']"], {}), "(spec['path'])\n", (5018, 5032), False, 'import pathlib\n'), ((6300, 6323), 'pathlib.Path', 'pathlib.Path', (['directory'], {}), '(directory)\n', (6312, 6323), False, 'import pathlib\n'), ((10570, 10593), 'pandas.concat', 'pandas.concat', (['stat_dfs'], {}), '(stat_dfs)\n', (10583, 10593), False, 'import pandas\n'), ((13868, 13899), 'pandas.read_csv', 'pandas.read_csv', (['path'], {'sep': '"""\t"""'}), "(path, sep='\\t')\n", (13883, 13899), False, 'import pandas\n'), ((14453, 14499), 'itertools.product', 'itertools.product', (['file_formats', '(True, False)'], {}), '(file_formats, (True, False))\n', (14470, 14499), False, 'import itertools\n'), ((15879, 15934), 'itertools.product', 'itertools.product', (['file_formats', 'metrics', '(True, False)'], {}), '(file_formats, metrics, (True, False))\n', (15896, 15934), False, 'import itertools\n'), ((17144, 17156), 'gc.collect', 'gc.collect', ([], {}), '()\n', (17154, 17156), False, 'import gc\n'), ((2620, 2651), 'shutil.rmtree', 'shutil.rmtree', (['backup_directory'], {}), '(backup_directory)\n', (2633, 2651), False, 'import shutil\n'), ((5345, 5408), 'logging.warning', 'logging.warning', (['f"""Error reading matrix at {path}:\n{error}"""'], {}), '(f"""Error reading matrix at {path}:\n{error}""")\n', (5360, 5408), False, 'import logging\n'), ((10202, 10225), 'pandas.DataFrame', 'pandas.DataFrame', (['stats'], {}), '(stats)\n', (10218, 10225), False, 'import pandas\n'), ((5484, 5527), 'logging.warning', 'logging.warning', (['f"""Deleting file at {path}"""'], {}), "(f'Deleting file at {path}')\n", (5499, 5527), False, 'import logging\n'), ((9026, 9050), 'itertools.count', 'itertools.count', ([], {'start': '(1)'}), '(start=1)\n', (9041, 9050), False, 'import itertools\n')] |
r"""
=========================================================
Utilities Abaqus (:mod:`desicos.abaqus.abaqus_functions`)
=========================================================
.. currentmodule:: desicos.abaqus.abaqus_functions
Includes all utilities functions that must be executed from Abaqus.
"""
from __future__ import absolute_import
import math
import numpy as np
from .constants import (TOL, FLOAT, COLORS, COLOR_WHINE, COLOR_DARK_BLUE,
COLOR_BLACK)
from . import utils
def configure_session():
"""Improve layout and colors of the current figures in visualization
"""
from abaqus import session
from abaqusConstants import (ON, OFF, SMALL, DASHED, OUTSIDE,
HOLLOW_CIRCLE, DECIMAL, INCREMENT)
plot_names=session.xyDataObjects.keys()
if not 'XYPlot-1' in session.xyPlots.keys():
xyp=session.XYPlot('XYPlot-1')
else:
xyp=session.xyPlots['XYPlot-1']
chartName=xyp.charts.keys()[0]
chart=xyp.charts[chartName]
tmp=session.xyDataObjects.keys()
if len(tmp)==0:
return
xy1=session.xyDataObjects[tmp[0]]
c1=session.Curve(xyData=xy1)
chart.setValues(curvesToPlot=(c1,),)
session.viewports['Viewport: 1'].setValues(displayedObject=xyp)
chart=session.charts['Chart-1']
chart.minorAxis1GridStyle.setValues(show=True)
chart.majorAxis1GridStyle.setValues(show=True)
chart.majorAxis1GridStyle.setValues(style=DASHED)
chart.minorAxis2GridStyle.setValues(show=True)
chart.majorAxis2GridStyle.setValues(show=True)
chart.majorAxis2GridStyle.setValues(style=DASHED)
chart.gridArea.style.setValues(fill=False)
chart.legend.setValues(show=False) # necessary to update legend values
chart.legend.setValues(show=True)
chart.legend.area.setValues(inset=True)
chart.legend.area.setValues(originOffset=(0.,0.))
chart.legend.area.style.setValues(fill=True)
chart.legend.textStyle.setValues(
font='-*-arial narrow-medium-r-normal-*-*-480-*-*-p-*-*-*')
for name in plot_names:
c=session.Curve(xyData=session.xyDataObjects[name])
chart=session.xyPlots['XYPlot-1'].charts['Chart-1']
chart.setValues(curvesToPlot=(c,))
chart.fitCurves(fitAxes1=True, fitAxes2=True)
curve=session.charts['Chart-1'].curves[name]
curve.curveOptions.setValues(showSymbol=ON)
curve.curveOptions.setValues(symbolSize=SMALL)
curve.lineStyle.setValues(thickness=1.6)
curve.symbolStyle.setValues(size=5,
marker=HOLLOW_CIRCLE)
ax=chart.axes1[0]
ay=chart.axes2[0]
ax.labelStyle.setValues(
font='-*-arial narrow-bold-r-normal-*-*-480-*-*-p-*-*-*',
color=COLOR_BLACK)
ax.titleStyle.setValues(
font='-*-arial narrow-bold-r-normal-*-*-480-*-*-p-*-*-*',
color=COLOR_BLACK)
ay.labelStyle.setValues(
font='-*-arial narrow-bold-r-normal-*-*-480-*-*-p-*-*-*',
color=COLOR_BLACK)
ay.titleStyle.setValues(
font='-*-arial narrow-bold-r-normal-*-*-480-*-*-p-*-*-*',
color=COLOR_BLACK)
ax.setValues(tickPlacement=OUTSIDE)
ax.axisData.setValues(labelFormat=DECIMAL,
labelNumDigits=0,
minorTickCount=4,)
ay.setValues(tickPlacement=OUTSIDE)
ay.axisData.setValues(labelFormat=DECIMAL,
labelNumDigits=0,)
if ax.axisData.title.find('ispl')>-1:
ax.axisData.setValues(labelNumDigits=1)
if name.find('circumference') > -1:
ax.axisData.setValues(tickMode=INCREMENT,
tickIncrement=20,
minorTickCount=0,
minAutoCompute=False,
minValue=-180,
maxAutoCompute=False,
maxValue=185)
#
if (name.find('FI_HSNFCCRT') > -1 or name.find('FI_HSNFTCRT') > -1
or name.find('FI_HSNMCCRT') > -1 or name.find('FI_HSNMTCRT') > -1
or name.find('FI_TSAIW') > -1):
ay.axisData.setValues(labelNumDigits=1,
minAutoCompute=False,
minValue=0,
maxAutoCompute=False,
maxValue=2)
curve.lineStyle.setValues(thickness=1.6,
color=COLOR_WHINE)
curve.curveOptions.setValues(showSymbol=OFF)
ay.titleStyle.setValues(color=COLOR_WHINE)
ay.labelStyle.setValues(color=COLOR_WHINE)
#
if (name.find('MS_HSNFCCRT') > -1 or name.find('MS_HSNFTCRT') > -1
or name.find('MS_HSNMCCRT') > -1 or name.find('MS_HSNMTCRT') > -1
or name.find('MS_TSAIW') > -1
or name.find('MS_MAX') > -1 or name.find('MS_MIN') > -1):
ay.axisData.setValues(labelNumDigits=1,
minAutoCompute=False,
minValue=-0.5,
maxAutoCompute=False,
maxValue=1.0)
curve.lineStyle.setValues(thickness=1.6,
color=COLOR_DARK_BLUE)
curve.curveOptions.setValues(showSymbol=OFF)
ay.titleStyle.setValues(color=COLOR_DARK_BLUE)
ay.labelStyle.setValues(color=COLOR_DARK_BLUE)
def print_png(filename):
"""Print a png file from the current viewport
Parameters
----------
filename : str
The name of the output png file.
"""
from abaqus import session
from abaqusConstants import PNG
viewport=session.viewports[session.currentViewportName]
session.printToFile(fileName=filename,
format=PNG,
canvasObjects=(viewport,))
def set_default_view(cc):
"""Set a default view in order to compare figures from different models
Parameters
----------
cc : :class:`.ConeCyl` object
"""
from abaqusConstants import (USER_SPECIFIED, NODAL, COMPONENT, EXTRA_FINE,
FREE, UNIFORM, CONTINUOUS, ON, OFF)
odb=cc.attach_results()
if not odb:
print('No .odb file found for %s!' % cc.jobname)
return
dtm=odb.rootAssembly.datumCsyses[
'ASSEMBLY__T-INSTANCECYLINDER-CSYSCYLINDER']
viewport=session.viewports[session.currentViewportName]
viewport.odbDisplay.basicOptions.setValues(
averageElementOutput=False, transformationType=USER_SPECIFIED,
datumCsys=dtm)
viewport.odbDisplay.setPrimaryVariable(
variableLabel='U',
outputPosition=NODAL,
refinement=(COMPONENT, 'U1'),)
viewport.obasicOptions.setValues(averageElementOutput=True,
curveRefinementLevel=EXTRA_FINE)
viewport.odbDisplay.commonOptions.setValues(visibleEdges=FREE,
deformationScaling=UNIFORM,
uniformScaleFactor=5)
viewport.odbDisplay.contourOptions.setValues(contourStyle=CONTINUOUS)
viewport.restore()
viewport.viewportAnnotationOptions.setValues(compass=OFF)
viewport.viewportAnnotationOptions.setValues(triad=ON)
viewport.viewportAnnotationOptions.setValues(title=OFF)
viewport.viewportAnnotationOptions.setValues(state=OFF)
viewport.viewportAnnotationOptions.setValues(legend=ON)
viewport.viewportAnnotationOptions.setValues(legendTitle=OFF)
viewport.viewportAnnotationOptions.setValues(legendBox=OFF)
viewport.viewportAnnotationOptions.setValues(
legendFont='-*-arial narrow-bold-r-normal-*-*-140-*-*-p-*-*-*')
viewport.viewportAnnotationOptions.setValues(
legendFont='-*-arial narrow-bold-r-normal-*-*-180-*-*-p-*-*-*')
viewport.viewportAnnotationOptions.setValues(legendPosition=(1, 99))
viewport.viewportAnnotationOptions.setValues(legendDecimalPlaces=1)
viewport.setValues(origin=(0.0, -1.05833435058594),
height=188.030563354492,
width=203.452590942383)
viewport.view.setValues(viewOffsetX=-2.724,
viewOffsetY=-52.6898,
cameraUpVector=(-0.453666, -0.433365, 0.778705),
nearPlane=1192.17,
farPlane=2323.39,
width=750.942,
height=665.183,
cameraPosition=(1236.44, 1079.87, 889.94),
cameraTarget=(27.3027, -54.758, 306.503))
def edit_keywords(mod, text, before_pattern=None, insert=False):
"""Edit the keywords to add commands not available in Abaqus CAE
Parameters
----------
mod : Abaqus Model object
The model for which the keywords will be edited.
text : str
The text to be included.
before_pattern : str, optional
One pattern used to find where to put the given text.
insert : bool, optional
Insert the text instead of replacing it.
"""
mod.keywordBlock.synchVersions(storeNodesAndElements=False)
sieBlocks=mod.keywordBlock.sieBlocks
if before_pattern is None:
index=len(sieBlocks) - 2
else:
index=None
for i in range(len(sieBlocks)):
sieBlock=sieBlocks[i]
if sieBlock.find(before_pattern) > -1:
index=i-1
break
if index is None:
print('WARNING - *edit_keywords failed !')
print(' %s pattern not found !' % before_pattern)
#TODO better error handling here...
if insert:
mod.keywordBlock.insert(index, text)
else:
mod.keywordBlock.replace(index, text)
def create_composite_layup(name, stack, plyts, mat_names, region, part,
part_csys, symmetric=False, scaling_factor=1.,
axis_normal=2):
r"""Creates a composite layup
Parameters
----------
name : str
Name of the new composite layup.
stack : list
Stacking sequence represented by a list of orientations in degress.
The stacking sequence starts inwards a ends outwards. The 0 degree
angle is along the axial direction and the angles are measured using
the right-hand rule with the normal direction being normal to the
shell surface pointing outwards.
plyts : list
List containing the ply thicknesses.
mat_names : list
List containing the material name for each ply.
region : an Abaqus Region object
The region consisting of geometric faces, where this laminate will be
assigned to.
part : an Abaqus part Object
A part object where the layup will be created.
part_csys : a valid Datum object
The cylindrical coordinate system of the part object.
symmetric : bool, optional
A boolean telling whether the laminate is symmetric.
scaling_factor : float, optional
A scaling factor to be applied to each ply thickness. Used to apply
thickness imperfection in some cases.
axis_normal : int, optional
Reference
"""
from abaqusConstants import (MIDDLE_SURFACE, FROM_SECTION, SHELL, ON, OFF,
DEFAULT, UNIFORM, SIMPSON, GRADIENT, SYSTEM, ROTATION_NONE,
AXIS_1, AXIS_2, AXIS_3, SPECIFY_THICKNESS, SPECIFY_ORIENT,
SINGLE_VALUE)
myLayup=part.CompositeLayup(name=name,
description='stack from inside to outside',
offsetType=MIDDLE_SURFACE,
symmetric=False,
thicknessAssignment=FROM_SECTION,
elementType=SHELL)
myLayup.Section(preIntegrate=OFF,
integrationRule=SIMPSON,
thicknessType=UNIFORM,
poissonDefinition=DEFAULT,
temperature=GRADIENT,
useDensity=OFF)
if axis_normal == 1:
axis = AXIS_1
elif axis_normal == 2:
axis = AXIS_2
elif axis_normal == 3:
axis = AXIS_3
else:
raise ValueError('Invalid value for `axis_normal`')
myLayup.ReferenceOrientation(orientationType=SYSTEM,
localCsys=part_csys,
fieldName='',
additionalRotationType=ROTATION_NONE,
angle=0.,
additionalRotationField='',
axis=axis)
#CREATING ALL PLIES
numIntPoints=3
if len(stack)==1:
numIntPoints=5
for i, angle in enumerate(stack):
plyt=plyts[i]
mat_name=mat_names[i]
myLayup.CompositePly(suppressed=False,
plyName='ply_%02d' % (i+1),
region=region,
material=mat_name,
thicknessType=SPECIFY_THICKNESS,
thickness=plyt*scaling_factor,
orientationValue=angle,
orientationType=SPECIFY_ORIENT,
numIntPoints=numIntPoints)
def create_isotropic_section(name, mat_names, region, part, model,T,Sect_name,OFFTS):
"""Creates an isotropic section
"""
from abaqusConstants import (MIDDLE_SURFACE, FROM_SECTION, SHELL, ON, OFF,
DEFAULT, UNIFORM, SIMPSON, GRADIENT, SYSTEM, ROTATION_NONE,
AXIS_1, AXIS_2, AXIS_3, SPECIFY_THICKNESS, SPECIFY_ORIENT,NO_IDEALIZATION,
SINGLE_VALUE)
model.HomogeneousShellSection(name=name,
preIntegrate=OFF, material=mat_names[0],
thicknessType=UNIFORM, thickness=T, thicknessField='',
idealization=NO_IDEALIZATION, poissonDefinition=DEFAULT,
thicknessModulus=None, temperature=GRADIENT, useDensity=OFF,
integrationRule=SIMPSON, numIntPts=5)
region = region
if OFFTS==0.0:
part.SectionAssignment(region=region, sectionName=Sect_name,
offset=OFFTS,offsetType=MIDDLE_SURFACE,
offsetField='',
thicknessAssignment=FROM_SECTION)
else:
part.SectionAssignment(region=region, sectionName=Sect_name,
offset=OFFTS,offsetType=SINGLE_VALUE,
offsetField='',
thicknessAssignment=FROM_SECTION)
def modify_composite_layup(part, layup_name, modify_func):
"""Modify plies within a composite layup
Directly modififying plies within a CompositeLayup is not possible, as
the plies are read-only after creation. This function emulates modifying,
by deleting and then re-creating plies, with modifications.
Parameters
----------
part : an Abaqus part object
The part that the to-be-modified layup is attached to.
layup_name : str
Name of the layup that is to be modified.
modify_func : function
Function that will be called for each ply. It should take as arguments
the ply index and a dictionary of keyword arguments. This dictionary
contains all keyword arguments that would re-create the original ply,
if passed to the ``CompositePly``-constructor. This function should
should make the necessary changes this dictionary and then return it.
The returned dictionary will then be used to create the new ply.
"""
from abaqusConstants import SPECIFY_ORIENT, CSYS
layup = part.compositeLayups[layup_name]
ply_data = []
STORE_PLY_ATTRS = ['additionalRotationField', 'additionalRotationType',
'angle', 'axis', 'material', 'numIntPoints', 'orientation',
'orientationType', 'orientationValue', 'plyName', 'region',
'suppressed', 'thickness', 'thicknessType']
for ply in layup.plies.values():
ply_data.append(dict((attr, getattr(ply, attr)) for attr in STORE_PLY_ATTRS))
layup.deletePlies()
for i, kwargs in enumerate(ply_data):
kwargs['region'] = part.sets[kwargs['region'][0]]
if kwargs['orientationType'] != SPECIFY_ORIENT:
kwargs.pop('orientationValue')
if kwargs['orientationType'] != CSYS:
kwargs.pop('orientation')
kwargs = modify_func(i, kwargs)
layup.CompositePly(**kwargs)
def createDiscreteField(mod, odb, step_name, frame_num):
from abaqusConstants import (NODES, PRESCRIBEDCONDITION_DOF)
u=odb.steps[step_name].frames[frame_num].fieldOutputs['U']
ur=odb.steps[step_name].frames[frame_num].fieldOutputs['UR']
datas=[]
for u_value, ur_value in zip(u.values, ur.values):
id=u_value.nodeLabel
data=np.concatenate((u_value.data, ur_value.data))
datas.append([id, data])
datas.sort(key=lambda x: x[0])
list_ids=[]
list_dof_values=[]
for data in datas:
list_ids += [data[0] for i in range(6)]
for dof in range(1,7):
list_dof_values += [float(dof), data[1][dof-1]]
tuple_ids=tuple(list_ids)
tuple_dof_values=tuple(list_dof_values)
mod.DiscreteField(name='discreteField',
description='',
location=NODES,
fieldType=PRESCRIBEDCONDITION_DOF,
dataWidth=2,
defaultValues=(0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
data=(('', 2, tuple_ids, tuple_dof_values),))
def create_sketch_plane(cc, entity):
"""Creates a sketch plane tangent to the shell surface
Parameters
----------
cc : :class:`.ConeCyl` object
entity : object
Any object with the attribute: ``thetadeg``, usually a
:class:`.Imperfection`.
Returns
-------
plane : :class:`.Plane` object
"""
from abaqus import mdb
from .utils import geom
part = mdb.models[cc.model_name].parts[cc.part_name_shell]
for plane in cc.sketch_planes:
if abs(plane.thetadeg - entity.thetadeg) < TOL:
return plane
x1, y1, z1 = utils.cyl2rec(1.05*cc.r, entity.thetadeg, 0.)
v1 = np.array([x1, y1, z1], dtype=FLOAT)
x2, y2, z2 = utils.cyl2rec(1.05*cc.r2, entity.thetadeg, cc.h)
v2 = np.array([x2, y2, z2], dtype=FLOAT)
v3 = np.cross(v2, v1)
if abs(v3.max()) > abs(v3.min()):
v3 = v3/v3.max() * cc.h/2.
else:
v3 = v3/abs(v3.min()) * cc.h/2.
x3, y3, z3 = v2 + v3
pt = part.DatumPointByCoordinate(coords=(x1, y1, z1))
p1 = part.datums[pt.id]
pt = part.DatumPointByCoordinate(coords=(x2, y2, z2))
p2 = part.datums[pt.id]
pt = part.DatumPointByCoordinate(coords=(x3, y3, z3))
p3 = part.datums[pt.id]
plane = geom.Plane()
plane.p1 = p1
plane.p2 = p2
plane.p3 = p3
plane.part = part
plane.create()
plane.thetadeg = entity.thetadeg
cc.sketch_planes.append(plane)
return plane
def set_colors_ti(cc):
from abaqus import mdb, session
from abaqusConstants import ON
part = mdb.models[cc.model_name].parts[cc.part_name_shell]
viewport = session.viewports[session.currentViewportName]
if viewport.displayedObject is None:
viewport.setValues(displayedObject=part)
cmap = viewport.colorMappings['Set']
viewport.setColor(colorMapping=cmap)
viewport.enableMultipleColors()
viewport.setColor(initialColor='#BDBDBD')
keys = part.sets.keys()
names = [k for k in keys if 'Set_measured_imp_t' in k]
# If there are not enough colors for all thicknesses,
# repeat the same color for multiple subsequent thickness sets
repeat = int(math.ceil(max(len(names), 1.0) / float(len(COLORS))))
overrides = dict((name, (True, COLORS[i//repeat], 'Default',
COLORS[i//repeat])) for i, name in enumerate(names))
dummylen = len(keys)-len(overrides)
new_COLORS = tuple([COLORS[-1]]*dummylen + list(COLORS))
session.autoColors.setValues(colors=new_COLORS)
cmap.updateOverrides(overrides=overrides)
keys_to_hide = set(keys) - set(names)
overrides = dict([[k, (False, )] for k in keys_to_hide])
cmap.updateOverrides(overrides=overrides)
viewport.partDisplay.setValues(mesh=ON)
viewport.partDisplay.geometryOptions.setValues(referenceRepresentation=ON)
viewport.disableMultipleColors()
def printLBmodes():
from abaqus import session
from abaqusConstants import DPI_1200, EXTRA_FINE, OFF, PNG
vp = session.viewports[session.currentViewportName]
session.psOptions.setValues(logo=OFF,
resolution=DPI_1200,
shadingQuality=EXTRA_FINE)
session.printOptions.setValues(reduceColors=False)
for i in range(1,51):
vp.odbDisplay.setFrame(step=0, frame=i)
session.printToFile(fileName='mode %02d.png'%i,
format=PNG,
canvasObjects=(vp,))
def get_current_odbdisplay():
from abaqus import session
viewport = session.viewports[session.currentViewportName]
try:
name = viewport.odbDisplay.name
except:
return None
return viewport.odbDisplay
def get_current_odb():
from abaqus import session
viewport = session.viewports[session.currentViewportName]
odbdisplay = get_current_odbdisplay()
if odbdisplay:
return session.odbs[odbdisplay.name]
else:
return None
def get_current_step_name():
odbdisplay = get_current_odbdisplay()
if odbdisplay:
index, frame_num = odbdisplay.fieldFrame
return odbdisplay.fieldSteps[index][0]
else:
return None
def get_current_frame():
odbdisplay = get_current_odbdisplay()
if not odbdisplay:
return None
step_name = get_current_step_name()
step_num, frame_num = odbdisplay.fieldFrame
odb = get_current_odb()
step = odb.steps[step_name]
return step.frames[frame_num]
| [
"abaqus.session.autoColors.setValues",
"numpy.cross",
"abaqus.session.psOptions.setValues",
"abaqus.session.xyDataObjects.keys",
"abaqus.session.xyPlots.keys",
"abaqus.session.XYPlot",
"numpy.array",
"numpy.concatenate",
"abaqus.session.printToFile",
"abaqus.session.printOptions.setValues",
"aba... | [((761, 789), 'abaqus.session.xyDataObjects.keys', 'session.xyDataObjects.keys', ([], {}), '()\n', (787, 789), False, 'from abaqus import session\n'), ((1003, 1031), 'abaqus.session.xyDataObjects.keys', 'session.xyDataObjects.keys', ([], {}), '()\n', (1029, 1031), False, 'from abaqus import session\n'), ((1112, 1137), 'abaqus.session.Curve', 'session.Curve', ([], {'xyData': 'xy1'}), '(xyData=xy1)\n', (1125, 1137), False, 'from abaqus import session\n'), ((5878, 5955), 'abaqus.session.printToFile', 'session.printToFile', ([], {'fileName': 'filename', 'format': 'PNG', 'canvasObjects': '(viewport,)'}), '(fileName=filename, format=PNG, canvasObjects=(viewport,))\n', (5897, 5955), False, 'from abaqus import session\n'), ((18420, 18455), 'numpy.array', 'np.array', (['[x1, y1, z1]'], {'dtype': 'FLOAT'}), '([x1, y1, z1], dtype=FLOAT)\n', (18428, 18455), True, 'import numpy as np\n'), ((18531, 18566), 'numpy.array', 'np.array', (['[x2, y2, z2]'], {'dtype': 'FLOAT'}), '([x2, y2, z2], dtype=FLOAT)\n', (18539, 18566), True, 'import numpy as np\n'), ((18576, 18592), 'numpy.cross', 'np.cross', (['v2', 'v1'], {}), '(v2, v1)\n', (18584, 18592), True, 'import numpy as np\n'), ((20199, 20246), 'abaqus.session.autoColors.setValues', 'session.autoColors.setValues', ([], {'colors': 'new_COLORS'}), '(colors=new_COLORS)\n', (20227, 20246), False, 'from abaqus import session\n'), ((20781, 20871), 'abaqus.session.psOptions.setValues', 'session.psOptions.setValues', ([], {'logo': 'OFF', 'resolution': 'DPI_1200', 'shadingQuality': 'EXTRA_FINE'}), '(logo=OFF, resolution=DPI_1200, shadingQuality=\n EXTRA_FINE)\n', (20808, 20871), False, 'from abaqus import session\n'), ((20935, 20985), 'abaqus.session.printOptions.setValues', 'session.printOptions.setValues', ([], {'reduceColors': '(False)'}), '(reduceColors=False)\n', (20965, 20985), False, 'from abaqus import session\n'), ((851, 877), 'abaqus.session.XYPlot', 'session.XYPlot', (['"""XYPlot-1"""'], {}), "('XYPlot-1')\n", (865, 877), False, 'from abaqus import session\n'), ((2051, 2100), 'abaqus.session.Curve', 'session.Curve', ([], {'xyData': 'session.xyDataObjects[name]'}), '(xyData=session.xyDataObjects[name])\n', (2064, 2100), False, 'from abaqus import session\n'), ((17025, 17070), 'numpy.concatenate', 'np.concatenate', (['(u_value.data, ur_value.data)'], {}), '((u_value.data, ur_value.data))\n', (17039, 17070), True, 'import numpy as np\n'), ((21068, 21155), 'abaqus.session.printToFile', 'session.printToFile', ([], {'fileName': "('mode %02d.png' % i)", 'format': 'PNG', 'canvasObjects': '(vp,)'}), "(fileName='mode %02d.png' % i, format=PNG, canvasObjects\n =(vp,))\n", (21087, 21155), False, 'from abaqus import session\n'), ((815, 837), 'abaqus.session.xyPlots.keys', 'session.xyPlots.keys', ([], {}), '()\n', (835, 837), False, 'from abaqus import session\n')] |
__author__ = 'Dante'
import random
from sklearn.svm import SVC
from sklearn.metrics import accuracy_score as acc
import numpy as np
import density_weight as dw
import matplotlib as plt
from matplotlib import pyplot
import math
from sklearn import cross_validation as cv
from collections import Counter
import scipy.cluster.hierarchy as sch
from structures import fingerprinter as fptr
from structures import kernel_fns as kf
from chem import chem
def dw_performance(matrix, classes, filename, initial=2, iterations=100, beta=1.0, C=1.0, gamma=0.005, degree=2, kernel='rbf', batch=1, decf=False, seed=None, simfp=fptr.integer_sim):
"""This function takes as input the positive and negative samples from a known isozyme and compares how the learning curve
changes between an SVC trained on an increasing number of randomly selected samples and an SVC trained with an increasing
number of samples selected via an uncertainty sampling/density weighting method."""
rand_res = []
dw_res = []
k_dict = {'rbf': 'rbf', 'poly': 'poly', 'tanimoto': kf.tanimoto}
#Iterates n times.
for iteration in range(iterations):
#If you set the random_state kwarg, it will make the test set uniform across all iterations.
x_train, x_test, y_train, y_test = cv.train_test_split(matrix, classes, test_size=0.4, random_state=seed)
i = range(x_train.shape[0])
#Change the second argument to start with a different number of samples. The while loop ensures that the initial
#training smaple is instantiated with at least one example from each class.
rand_train = random.sample(i, initial)
while set(y_train[rand_train]) != {-1, 1}:
del rand_train[-1]
for index in random.sample(i, 1):
rand_train.append(index)
#Initialize the training set for the DW curve with the same points as the random curve.
dw_train = []
dw_train += rand_train
#Results storage.
n = []
rand_scores = []
dw_scores = []
#Each data point in each iteration si created here.
while len(rand_train) < x_train.shape[0]:
clf_rand = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
clf_dw = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
n.append(len(rand_train))
#Fit, predict and generate accuracy scores.
clf_rand.fit(x_train[rand_train], y_train[rand_train])
clf_dw.fit(x_train[dw_train], y_train[dw_train])
r = clf_rand.predict(x_test)
d = clf_dw.predict(x_test)
rand_scores.append(acc(y_test, r))
dw_scores.append(acc(y_test, d))
#Update the available points that can be chosen for random.
available_rand_ = list(set(i) - set(rand_train))
if len(available_rand_) != 0 and len(available_rand_) % batch < len(available_rand_):
for index in random.sample(available_rand_, batch):
rand_train.append(index)
elif len(available_rand_) != 0 and len(available_rand_) % batch == len(available_rand_):
rand_train += available_rand_
else:
pass
#Update the available points that can be chosen for DW, and create index table to maintain identity of each
#example as they are depleted.
available_dw_ = list(set(i) - set(dw_train))
index_table_ = {orig: update for update, orig in enumerate(available_dw_)}
pairwise_tc_avg = dw.avg_proximity(x_train[available_dw_], x_train[available_dw_], f=simfp)
if len(available_dw_) != 0 and len(available_dw_) % batch < len(available_dw_):
if decf:
xi = [dw.weight(dw.hyper_distance(clf_dw.decision_function(x_train[a])), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
else:
xi = [dw.weight(dw.entropy(clf_dw.predict_proba(x_train[a])[:, 0]), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
foo = sorted(zip(available_dw_, xi), key=lambda x: x[1], reverse=True)
dw_train += [ele[0] for ele in foo[:batch]]
elif len(available_dw_) != 0 and len(available_dw_) % batch == len(available_dw_):
dw_train += available_dw_
else:
pass
clf_rand_last = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree).fit(x_train[rand_train], y_train[rand_train])
clf_dw_last = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree).fit(x_train[dw_train], y_train[dw_train])
n.append(len(rand_train))
r_last = clf_rand_last.predict(x_test)
d_last = clf_dw_last.predict(x_test)
rand_scores.append(acc(y_test, r_last))
dw_scores.append(acc(y_test, d_last))
rand_res.append(np.array(rand_scores))
dw_res.append(np.array(dw_scores))
rand_avg = np.sum(np.vstack(tuple(rand_res)), 0) / iterations
dw_avg = np.sum(np.vstack(tuple(dw_res)), 0) / iterations
rand_err = 1.96 * np.std(np.vstack(tuple(rand_res)), 0) / math.sqrt(iterations)
dw_err = 1.96 * np.std(np.vstack(tuple(dw_res)), 0) / math.sqrt(iterations)
xdesc = 'Number of Training Samples'
ydesc = 'Accuracy Score'
plt.rcParams['font.sans-serif'] = ['Arial']
pyplot.errorbar(n, rand_avg, fmt='s-', yerr=rand_err, color='darkred', markersize=9, lw=2, label='Random Selection')
pyplot.errorbar(n, dw_avg, fmt='v-', yerr=dw_err, color='darkblue', markersize=9, lw=2, label='Density Weighted')
pyplot.tick_params(labelsize=14)
leg_title = "Final Accuracy = %s\nC = %s" % (str(round(rand_avg[-1], 3) * 100) + '%', str(C))
pyplot.legend(loc=4, title=leg_title)
pyplot.xlabel(xdesc, size=18, labelpad=14)
pyplot.ylabel(ydesc, size=18, labelpad=14)
pyplot.savefig(filename + "C_%s_decisionf_%s.svg" % (str(C), str(decf)))
pyplot.show()
def dw_ins(matrix, classes, filename, smiles_acc, initial=2, iterations=100, beta=1.0, C=1.0, gamma=0.005, degree=2, kernel='rbf', decf=False, batch=1, seed=None):
"""This function trains SVCs--initialized with a number of compounds from randomly partitioned train/test sets--with
progressively more compounds from the test set selected via active learning and outputs a figure showing the
distribution of selections of compounds in the unlabelled set."""
k_dict = {'rbf': 'rbf', 'poly': 'poly', 'tanimoto': kf.tanimoto}
rankings = {k: [] for k in smiles_acc}
#Iterates n times.
for iteration in range(iterations):
#Set the random_state kwarg, it will make the test set uniform across al iterations.
x_train, x_test, y_train, y_test = cv.train_test_split(matrix, classes, test_size=0.4, random_state=seed)
i = range(x_train.shape[0])
#Change the second argument to start with a different number of samples.
rand_train = random.sample(i, initial)
while set(y_train['label'][rand_train]) != {-1, 1}:
del rand_train[-1]
for index in random.sample(i, 1):
rand_train.append(index)
#Initialize the training set for the DW curve with the same points as the random curve.
dw_train = []
dw_train += rand_train
#Results storage.
n = []
#Each data point in each iteration is created here.
while len(dw_train) < x_train.shape[0]:
clf_dw = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
n.append(len(dw_train))
#Fit, predict and generate accuracy scores.
clf_dw.fit(x_train[dw_train], y_train['label'][dw_train])
#Update the available points that can be chosen for DW, and create index table to maintain identity of each
#example as they are depleted.
available_dw_ = list(set(i) - set(dw_train))
index_table_ = {orig: update for update, orig in enumerate(available_dw_)}
pairwise_tc_avg = dw.avg_proximity(x_train[available_dw_], x_train[available_dw_])
if len(available_dw_) != 0 and len(available_dw_) % batch < len(available_dw_):
#Density weight scores calculated in two lists to find the difference between the score of the "best"
#compound from the background and the "best" hidden labelled compound.
if decf:
xi = [dw.weight(dw.hyper_distance(clf_dw.decision_function(x_train[a])), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
else:
xi = [dw.weight(dw.entropy(clf_dw.predict_proba(x_train[a])[:, 0]), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
foo = sorted(zip(available_dw_, xi), key=lambda x_: x_[1], reverse=True)
adds = [ele[0] for ele in foo[:batch]]
dw_train += adds
smiles_added = [y_train['smiles'][idx] for idx in adds]
for s in smiles_added:
rankings[s].append((len(dw_train) - 2) / batch)
elif len(available_dw_) != 0 and len(available_dw_) % batch == len(available_dw_):
smiles_added = [y_train['smiles'][idx] for idx in available_dw_]
for s in smiles_added:
rankings[s].append(((len(dw_train) - 2) / batch) + 1)
dw_train += available_dw_
else:
pass
n.append(len(dw_train))
final = {k: Counter(v) for k, v in rankings.iteritems()}
positions = [j + 1 for j in range(max([x for val in rankings.values() for x in val]))]
data_ = []
for cpd, ctr in final.iteritems():
data_.append(np.array([ctr[pos] for pos in positions]))
data_in_ = np.vstack(tuple(data_)).T
row = positions
plt.rcParams['font.sans-serif'] = ['Arial']
fig = pyplot.figure()
#Plots a dendrogram above the heatmap.
axdendro = fig.add_axes([0.06, 0.68, 0.8, 0.27])
Y = sch.linkage(np.vstack(tuple([fptr.reconstruct_fp(s, fptype='FP2') for s in smiles_acc])), method='single', metric='jaccard')
Z = sch.dendrogram(Y, orientation='top')
axdendro.set_xticks([])
axdendro.set_yticks([])
#Plotting the heat map. 'pcolor' outputs a mappable object that is used as a mandatory argument to 'colorbar().'
#add axes arguments are: distance from left, distance from bottom, width, height.
ax = fig.add_axes([0.06, 0.05, 0.8, 0.6])
#Grab the order of the leaves of the dendrogram so the heatmap can be reordered to match.
index = Z['leaves']
D = data_in_.T[index]
hmap = ax.pcolor(D.T, cmap='gist_heat')
horiz = np.arange(data_in_.shape[1]) + 0.5
vert = np.arange(data_in_.shape[0]) + 0.5
pyplot.ylim([0, vert[-1] + 0.5])
pyplot.xlim([0, horiz[-1] + 0.5])
pyplot.ylabel('Position Selected', size=16)
ax.set_xticks(horiz, minor=False)
ax.set_yticks(vert, minor=False)
names = []
for s in classes['smiles']:
name_entry = chem.calc_name(s)
names.append(unicode(name_entry, "utf-8"))
col = [names[m] + ' (%s)' % str(classes['label'][m]) for m in index]
ax.set_xticklabels(col, minor=False, rotation=90, ha='center', size=11)
ax.set_yticklabels(row, minor=False, size=11)
#Plots the colorbar on separate axes so that the dendrogram can be aligned to the heatmap alone.
axcolor = fig.add_axes([0.89, 0.05, 0.02, 0.6])
cbar = pyplot.colorbar(hmap, cax=axcolor)
axcolor.set_ylabel('Selection Frequency', size=16, rotation=270)
#Eliminates white lines in Inkscape due to viewer bug; makes colorbar render with overlapping segments.
cbar.solids.set_edgecolor("face")
pyplot.savefig(filename + "C_%s_decisionf_%s.svg" % (str(C), str(decf)))
pyplot.show()
def dw_exp_val(matrix, classes, filename, excl, initial=2, iterations=100, beta=1.0, C=1.0, gamma=0.005, degree=2, kernel='rbf', batch=1, decf=False, seed=None, simfp=fptr.integer_sim):
"""This function takes as input the positive and negative samples from a known isozyme plus additional data collected
experimentally (added in an outside script) using active learning. A 'random' curve is constructed by splitting the
whole set, then excluding the newest batch of data from training, and finally calculating the accuracy at incrementally
increasing training set sizes. To assess 'improvement' due to AL, the 'dw' curve is constructed in the same way
using training data with an equal number of compounds (to the ones excluded in making the random curve) excluded
from training."""
rand_res = []
dw_res = []
k_dict = {'rbf': 'rbf', 'poly': 'poly', 'tanimoto': kf.tanimoto}
# Iterates n times.
for iteration in range(iterations):
#If you set the random_state kwarg, it will make the test set uniform across al iterations.
x_train, x_test, y_train, y_test = cv.train_test_split(matrix, classes, test_size=0.4, random_state=seed)
#Exclude experimental compounds from the random curve, and random compounds for the dw curve.
rand_excl = [i for i, smi in enumerate(y_train['smiles']) if smi in excl]
dw_excl = random.sample(range(x_train.shape[0]), len(rand_excl))
i = list(set(range(x_train.shape[0])) - set(rand_excl))
j = list(set(range(x_train.shape[0])) - set(dw_excl))
#Change the second argument to start with a different number of samples. The while loop ensures that the initial
#training sample is instantiated with at least one example from each class.
rand_train = random.sample(i, initial)
while set(y_train['label'][rand_train]) != {-1, 1}:
del rand_train[-1]
for index in random.sample(i, 1):
rand_train.append(index)
#Initialize the training set for the DW curve points randomly chosen from the allowed dw indices.
dw_train = random.sample(j, initial)
while set(y_train['label'][dw_train]) != {-1, 1}:
del dw_train[-1]
for index in random.sample(j, 1):
dw_train.append(index)
#Results storage.
n = []
rand_scores = []
dw_scores = []
#Each data point in each iteration is created here.
while len(rand_train) < x_train.shape[0] - len(excl):
clf_rand = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
clf_dw = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
n.append(len(rand_train))
#Fit, predict and generate accuracy scores.
clf_rand.fit(x_train[rand_train], y_train['label'][rand_train])
clf_dw.fit(x_train[dw_train], y_train['label'][dw_train])
r = clf_rand.predict(x_test)
d = clf_dw.predict(x_test)
rand_scores.append(acc(y_test['label'], r))
dw_scores.append(acc(y_test['label'], d))
#Update the available points that can be chosen for random.
available_rand_ = list(set(i) - set(rand_train))
if len(available_rand_) != 0 and len(available_rand_) % batch < len(available_rand_):
for index in random.sample(available_rand_, batch):
rand_train.append(index)
elif len(available_rand_) != 0 and len(available_rand_) % batch == len(available_rand_):
rand_train += available_rand_
else:
pass
#Update the available points that can be chosen for DW, and create index table to maintain identity of each
#example as they are depleted.
available_dw_ = list(set(j) - set(dw_train))
index_table_ = {orig: update for update, orig in enumerate(available_dw_)}
pairwise_tc_avg = dw.avg_proximity(x_train[available_dw_], x_train[available_dw_], f=simfp)
if len(available_dw_) != 0 and len(available_dw_) % batch < len(available_dw_):
if decf:
xi = [dw.weight(dw.hyper_distance(clf_dw.decision_function(x_train[a])), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
else:
xi = [dw.weight(dw.entropy(clf_dw.predict_proba(x_train[a])[:, 0]), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
foo = sorted(zip(available_dw_, xi), key=lambda x: x[1], reverse=True)
dw_train += [ele[0] for ele in foo[:batch]]
elif len(available_dw_) != 0 and len(available_dw_) % batch == len(available_dw_):
dw_train += available_dw_
else:
pass
clf_rand_last = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree).fit(x_train[rand_train], y_train['label'][rand_train])
clf_dw_last = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree).fit(x_train[dw_train], y_train['label'][dw_train])
n.append(len(rand_train))
r_last = clf_rand_last.predict(x_test)
d_last = clf_dw_last.predict(x_test)
rand_scores.append(acc(y_test['label'], r_last))
dw_scores.append(acc(y_test['label'], d_last))
rand_res.append(np.array(rand_scores))
dw_res.append(np.array(dw_scores))
rand_avg = np.sum(np.vstack(tuple(rand_res)), 0) / iterations
dw_avg = np.sum(np.vstack(tuple(dw_res)), 0) / iterations
rand_err = 1.96 * np.std(np.vstack(tuple(rand_res)), 0) / math.sqrt(iterations)
dw_err = 1.96 * np.std(np.vstack(tuple(dw_res)), 0) / math.sqrt(iterations)
xdesc = 'Number of Training Samples'
ydesc = 'Accuracy Score'
plt.rcParams['font.sans-serif'] = ['Arial']
pyplot.errorbar(n, rand_avg, fmt='s-', yerr=rand_err, color='darkred', markersize=9, lw=2,
label='Random Selection')
pyplot.errorbar(n, dw_avg, fmt='v-', yerr=dw_err, color='darkblue', markersize=9, lw=2,
label='Density Weighted')
pyplot.tick_params(labelsize=14)
leg_title = "Final Random Accuracy = %s\nFinal DW Accuracy = %s\nC = %s" % (str(round(rand_avg[-1], 3) * 100) + '%', str(round(dw_avg[-1], 3) * 100) + '%', str(C))
pyplot.legend(loc=4, title=leg_title)
pyplot.xlabel(xdesc, size=18, labelpad=14)
pyplot.ylabel(ydesc, size=18, labelpad=14)
pyplot.savefig(filename + "C_%s_decisionf_%s.svg" % (str(C), str(decf)))
pyplot.show()
def dw_exp_ins(matrix, classes, filename, smiles_acc, excl, initial=2, iterations=100, beta=1.0, C=1.0, gamma=0.005, degree=2, kernel='rbf', batch=1, decf=False, seed=None, simfp=fptr.integer_sim):
"""This function takes as input the positive and negative samples from a known isozyme plus additional data collected
experimentally (added in an outside script) using active learning. A 'random' curve is constructed by splitting the
whole set, then excluding the newest batch of data from training, and finally calculating the accuracy at incrementally
increasing training set sizes. To assess 'improvement' due to AL, the 'dw' curve is constructed in the same way
using training data with an equal number of compounds (to the ones excluded in making the random curve) excluded
from training."""
rand_res = []
dw_res = []
rankings = {k: [] for k in smiles_acc}
k_dict = {'rbf': 'rbf', 'poly': 'poly', 'tanimoto': kf.tanimoto}
# Iterates n times.
for iteration in range(iterations):
#If you set the random_state kwarg, it will make the test set uniform across al iterations.
x_train, x_test, y_train, y_test = cv.train_test_split(matrix, classes, test_size=0.4, random_state=seed)
#Exclude experimental compounds from the random curve, and random compounds for the dw curve.
rand_excl = [i for i, smi in enumerate(y_train['smiles']) if smi in excl]
dw_excl = random.sample(range(x_train.shape[0]), len(rand_excl))
j = list(set(range(x_train.shape[0])) - set(dw_excl))
#Initialize the training set for the DW curve points randomly chosen from the allowed dw indices.
dw_train = random.sample(j, initial)
while set(y_train['label'][dw_train]) != {-1, 1}:
del dw_train[-1]
for index in random.sample(j, 1):
dw_train.append(index)
#Results storage.
n = []
#Each data point in each iteration is created here.
while len(dw_train) < x_train.shape[0] - len(excl):
clf_dw = SVC(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)
n.append(len(dw_train))
#Fit, predict and generate accuracy scores.
clf_dw.fit(x_train[dw_train], y_train['label'][dw_train])
#Update the available points that can be chosen for DW, and create index table to maintain identity of each
#example as they are depleted.
available_dw_ = list(set(j) - set(dw_train))
index_table_ = {orig: update for update, orig in enumerate(available_dw_)}
pairwise_tc_avg = dw.avg_proximity(x_train[available_dw_], x_train[available_dw_], f=simfp)
if len(available_dw_) != 0 and len(available_dw_) % batch < len(available_dw_):
if decf:
xi = [dw.weight(dw.hyper_distance(clf_dw.decision_function(x_train[a])), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
else:
xi = [dw.weight(dw.entropy(clf_dw.predict_proba(x_train[a])[:, 0]), pairwise_tc_avg[index_table_[a]], beta=beta) for a in available_dw_]
foo = sorted(zip(available_dw_, xi), key=lambda x: x[1], reverse=True)
adds = [ele[0] for ele in foo[:batch]]
dw_train += adds
smiles_added = [y_train['smiles'][idx] for idx in adds]
for s in smiles_added:
rankings[s].append((len(dw_train) - 2) / batch)
elif len(available_dw_) != 0 and len(available_dw_) % batch == len(available_dw_):
smiles_added = [y_train['smiles'][idx] for idx in available_dw_]
for s in smiles_added:
rankings[s].append(((len(dw_train) - 2) / batch) + 1)
dw_train += available_dw_
else:
pass
n.append(len(dw_train))
smiles_added = [y_train['smiles'][idx] for idx in available_dw_]
for s in smiles_added:
rankings[s].append(((len(dw_train) - 2) / batch) + 1)
final = {k: Counter(v) for k, v in rankings.iteritems()}
positions = [j + 1 for j in range(max([x for val in rankings.values() for x in val]))]
data_ = []
for cpd, ctr in final.iteritems():
data_.append(np.array([ctr[pos] for pos in positions]))
data_in_ = np.vstack(tuple(data_)).T
row = positions
plt.rcParams['font.sans-serif'] = ['Arial']
fig = pyplot.figure()
# Plots a dendrogram above the heatmap.
axdendro = fig.add_axes([0.06, 0.68, 0.8, 0.27])
Y = sch.linkage(np.vstack(tuple([fptr.reconstruct_fp(s, fptype='FP2') for s in smiles_acc])), method='single',
metric='jaccard')
Z = sch.dendrogram(Y, orientation='top')
axdendro.set_xticks([])
axdendro.set_yticks([])
#Plotting the heat map. 'pcolor' outputs a mappable object that is used as a mandatory argument to 'colorbar().'
#add axes arguments are: distance from left, distance from bottom, width, height.
ax = fig.add_axes([0.06, 0.05, 0.8, 0.6])
#Grab the order of the leaves of the dendrogram so the heatmap can be reordered to match.
index = Z['leaves']
D = data_in_.T[index]
hmap = ax.pcolor(D.T, cmap='gist_heat')
horiz = np.arange(data_in_.shape[1]) + 0.5
vert = np.arange(data_in_.shape[0]) + 0.5
pyplot.ylim([0, vert[-1] + 0.5])
pyplot.xlim([0, horiz[-1] + 0.5])
pyplot.ylabel('Position Selected', size=16)
ax.set_xticks(horiz, minor=False)
ax.set_yticks(vert, minor=False)
names = []
for s in classes['smiles']:
name_entry = chem.calc_name(s)
names.append(unicode(name_entry, "utf-8"))
col = [names[m] + ' (%s)' % str(classes['label'][m]) for m in index]
ax.set_xticklabels(col, minor=False, rotation=90, ha='center', size=11)
ax.set_yticklabels(row, minor=False, size=11)
#Plots the colorbar on separate axes so that the dendrogram can be aligned to the heatmap alone.
axcolor = fig.add_axes([0.89, 0.05, 0.02, 0.6])
cbar = pyplot.colorbar(hmap, cax=axcolor)
axcolor.set_ylabel('Selection Frequency', size=16, rotation=270)
#Eliminates white lines in Inkscape due to viewer bug; makes colorbar render with overlapping segments.
cbar.solids.set_edgecolor("face")
pyplot.savefig(filename + "C_%s_decisionf_%s.svg" % (str(C), str(decf)))
pyplot.show()
| [
"matplotlib.pyplot.ylabel",
"math.sqrt",
"numpy.array",
"matplotlib.pyplot.errorbar",
"numpy.arange",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.ylim",
"random.sample",
"matplotlib.pyplot.tick_params",
"matplotlib.pyplot.xlim",
"sklearn.metrics.accuracy_score",
"matplotlib.pyplot.legend",
... | [((5006, 5126), 'matplotlib.pyplot.errorbar', 'pyplot.errorbar', (['n', 'rand_avg'], {'fmt': '"""s-"""', 'yerr': 'rand_err', 'color': '"""darkred"""', 'markersize': '(9)', 'lw': '(2)', 'label': '"""Random Selection"""'}), "(n, rand_avg, fmt='s-', yerr=rand_err, color='darkred',\n markersize=9, lw=2, label='Random Selection')\n", (5021, 5126), False, 'from matplotlib import pyplot\n'), ((5125, 5242), 'matplotlib.pyplot.errorbar', 'pyplot.errorbar', (['n', 'dw_avg'], {'fmt': '"""v-"""', 'yerr': 'dw_err', 'color': '"""darkblue"""', 'markersize': '(9)', 'lw': '(2)', 'label': '"""Density Weighted"""'}), "(n, dw_avg, fmt='v-', yerr=dw_err, color='darkblue',\n markersize=9, lw=2, label='Density Weighted')\n", (5140, 5242), False, 'from matplotlib import pyplot\n'), ((5241, 5273), 'matplotlib.pyplot.tick_params', 'pyplot.tick_params', ([], {'labelsize': '(14)'}), '(labelsize=14)\n', (5259, 5273), False, 'from matplotlib import pyplot\n'), ((5372, 5409), 'matplotlib.pyplot.legend', 'pyplot.legend', ([], {'loc': '(4)', 'title': 'leg_title'}), '(loc=4, title=leg_title)\n', (5385, 5409), False, 'from matplotlib import pyplot\n'), ((5412, 5454), 'matplotlib.pyplot.xlabel', 'pyplot.xlabel', (['xdesc'], {'size': '(18)', 'labelpad': '(14)'}), '(xdesc, size=18, labelpad=14)\n', (5425, 5454), False, 'from matplotlib import pyplot\n'), ((5457, 5499), 'matplotlib.pyplot.ylabel', 'pyplot.ylabel', (['ydesc'], {'size': '(18)', 'labelpad': '(14)'}), '(ydesc, size=18, labelpad=14)\n', (5470, 5499), False, 'from matplotlib import pyplot\n'), ((5577, 5590), 'matplotlib.pyplot.show', 'pyplot.show', ([], {}), '()\n', (5588, 5590), False, 'from matplotlib import pyplot\n'), ((9166, 9181), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (9179, 9181), False, 'from matplotlib import pyplot\n'), ((9411, 9447), 'scipy.cluster.hierarchy.dendrogram', 'sch.dendrogram', (['Y'], {'orientation': '"""top"""'}), "(Y, orientation='top')\n", (9425, 9447), True, 'import scipy.cluster.hierarchy as sch\n'), ((10023, 10055), 'matplotlib.pyplot.ylim', 'pyplot.ylim', (['[0, vert[-1] + 0.5]'], {}), '([0, vert[-1] + 0.5])\n', (10034, 10055), False, 'from matplotlib import pyplot\n'), ((10058, 10091), 'matplotlib.pyplot.xlim', 'pyplot.xlim', (['[0, horiz[-1] + 0.5]'], {}), '([0, horiz[-1] + 0.5])\n', (10069, 10091), False, 'from matplotlib import pyplot\n'), ((10094, 10137), 'matplotlib.pyplot.ylabel', 'pyplot.ylabel', (['"""Position Selected"""'], {'size': '(16)'}), "('Position Selected', size=16)\n", (10107, 10137), False, 'from matplotlib import pyplot\n'), ((10691, 10725), 'matplotlib.pyplot.colorbar', 'pyplot.colorbar', (['hmap'], {'cax': 'axcolor'}), '(hmap, cax=axcolor)\n', (10706, 10725), False, 'from matplotlib import pyplot\n'), ((11014, 11027), 'matplotlib.pyplot.show', 'pyplot.show', ([], {}), '()\n', (11025, 11027), False, 'from matplotlib import pyplot\n'), ((16414, 16534), 'matplotlib.pyplot.errorbar', 'pyplot.errorbar', (['n', 'rand_avg'], {'fmt': '"""s-"""', 'yerr': 'rand_err', 'color': '"""darkred"""', 'markersize': '(9)', 'lw': '(2)', 'label': '"""Random Selection"""'}), "(n, rand_avg, fmt='s-', yerr=rand_err, color='darkred',\n markersize=9, lw=2, label='Random Selection')\n", (16429, 16534), False, 'from matplotlib import pyplot\n'), ((16539, 16656), 'matplotlib.pyplot.errorbar', 'pyplot.errorbar', (['n', 'dw_avg'], {'fmt': '"""v-"""', 'yerr': 'dw_err', 'color': '"""darkblue"""', 'markersize': '(9)', 'lw': '(2)', 'label': '"""Density Weighted"""'}), "(n, dw_avg, fmt='v-', yerr=dw_err, color='darkblue',\n markersize=9, lw=2, label='Density Weighted')\n", (16554, 16656), False, 'from matplotlib import pyplot\n'), ((16673, 16705), 'matplotlib.pyplot.tick_params', 'pyplot.tick_params', ([], {'labelsize': '(14)'}), '(labelsize=14)\n', (16691, 16705), False, 'from matplotlib import pyplot\n'), ((16874, 16911), 'matplotlib.pyplot.legend', 'pyplot.legend', ([], {'loc': '(4)', 'title': 'leg_title'}), '(loc=4, title=leg_title)\n', (16887, 16911), False, 'from matplotlib import pyplot\n'), ((16914, 16956), 'matplotlib.pyplot.xlabel', 'pyplot.xlabel', (['xdesc'], {'size': '(18)', 'labelpad': '(14)'}), '(xdesc, size=18, labelpad=14)\n', (16927, 16956), False, 'from matplotlib import pyplot\n'), ((16959, 17001), 'matplotlib.pyplot.ylabel', 'pyplot.ylabel', (['ydesc'], {'size': '(18)', 'labelpad': '(14)'}), '(ydesc, size=18, labelpad=14)\n', (16972, 17001), False, 'from matplotlib import pyplot\n'), ((17079, 17092), 'matplotlib.pyplot.show', 'pyplot.show', ([], {}), '()\n', (17090, 17092), False, 'from matplotlib import pyplot\n'), ((21193, 21208), 'matplotlib.pyplot.figure', 'pyplot.figure', ([], {}), '()\n', (21206, 21208), False, 'from matplotlib import pyplot\n'), ((21457, 21493), 'scipy.cluster.hierarchy.dendrogram', 'sch.dendrogram', (['Y'], {'orientation': '"""top"""'}), "(Y, orientation='top')\n", (21471, 21493), True, 'import scipy.cluster.hierarchy as sch\n'), ((22069, 22101), 'matplotlib.pyplot.ylim', 'pyplot.ylim', (['[0, vert[-1] + 0.5]'], {}), '([0, vert[-1] + 0.5])\n', (22080, 22101), False, 'from matplotlib import pyplot\n'), ((22104, 22137), 'matplotlib.pyplot.xlim', 'pyplot.xlim', (['[0, horiz[-1] + 0.5]'], {}), '([0, horiz[-1] + 0.5])\n', (22115, 22137), False, 'from matplotlib import pyplot\n'), ((22140, 22183), 'matplotlib.pyplot.ylabel', 'pyplot.ylabel', (['"""Position Selected"""'], {'size': '(16)'}), "('Position Selected', size=16)\n", (22153, 22183), False, 'from matplotlib import pyplot\n'), ((22737, 22771), 'matplotlib.pyplot.colorbar', 'pyplot.colorbar', (['hmap'], {'cax': 'axcolor'}), '(hmap, cax=axcolor)\n', (22752, 22771), False, 'from matplotlib import pyplot\n'), ((23060, 23073), 'matplotlib.pyplot.show', 'pyplot.show', ([], {}), '()\n', (23071, 23073), False, 'from matplotlib import pyplot\n'), ((1285, 1355), 'sklearn.cross_validation.train_test_split', 'cv.train_test_split', (['matrix', 'classes'], {'test_size': '(0.4)', 'random_state': 'seed'}), '(matrix, classes, test_size=0.4, random_state=seed)\n', (1304, 1355), True, 'from sklearn import cross_validation as cv\n'), ((1600, 1625), 'random.sample', 'random.sample', (['i', 'initial'], {}), '(i, initial)\n', (1613, 1625), False, 'import random\n'), ((4790, 4811), 'math.sqrt', 'math.sqrt', (['iterations'], {}), '(iterations)\n', (4799, 4811), False, 'import math\n'), ((4868, 4889), 'math.sqrt', 'math.sqrt', (['iterations'], {}), '(iterations)\n', (4877, 4889), False, 'import math\n'), ((6357, 6427), 'sklearn.cross_validation.train_test_split', 'cv.train_test_split', (['matrix', 'classes'], {'test_size': '(0.4)', 'random_state': 'seed'}), '(matrix, classes, test_size=0.4, random_state=seed)\n', (6376, 6427), True, 'from sklearn import cross_validation as cv\n'), ((6553, 6578), 'random.sample', 'random.sample', (['i', 'initial'], {}), '(i, initial)\n', (6566, 6578), False, 'import random\n'), ((8808, 8818), 'collections.Counter', 'Counter', (['v'], {}), '(v)\n', (8815, 8818), False, 'from collections import Counter\n'), ((9940, 9968), 'numpy.arange', 'np.arange', (['data_in_.shape[1]'], {}), '(data_in_.shape[1])\n', (9949, 9968), True, 'import numpy as np\n'), ((9984, 10012), 'numpy.arange', 'np.arange', (['data_in_.shape[0]'], {}), '(data_in_.shape[0])\n', (9993, 10012), True, 'import numpy as np\n'), ((10270, 10287), 'chem.chem.calc_name', 'chem.calc_name', (['s'], {}), '(s)\n', (10284, 10287), False, 'from chem import chem\n'), ((12126, 12196), 'sklearn.cross_validation.train_test_split', 'cv.train_test_split', (['matrix', 'classes'], {'test_size': '(0.4)', 'random_state': 'seed'}), '(matrix, classes, test_size=0.4, random_state=seed)\n', (12145, 12196), True, 'from sklearn import cross_validation as cv\n'), ((12772, 12797), 'random.sample', 'random.sample', (['i', 'initial'], {}), '(i, initial)\n', (12785, 12797), False, 'import random\n'), ((13061, 13086), 'random.sample', 'random.sample', (['j', 'initial'], {}), '(j, initial)\n', (13074, 13086), False, 'import random\n'), ((16198, 16219), 'math.sqrt', 'math.sqrt', (['iterations'], {}), '(iterations)\n', (16207, 16219), False, 'import math\n'), ((16276, 16297), 'math.sqrt', 'math.sqrt', (['iterations'], {}), '(iterations)\n', (16285, 16297), False, 'import math\n'), ((18243, 18313), 'sklearn.cross_validation.train_test_split', 'cv.train_test_split', (['matrix', 'classes'], {'test_size': '(0.4)', 'random_state': 'seed'}), '(matrix, classes, test_size=0.4, random_state=seed)\n', (18262, 18313), True, 'from sklearn import cross_validation as cv\n'), ((18734, 18759), 'random.sample', 'random.sample', (['j', 'initial'], {}), '(j, initial)\n', (18747, 18759), False, 'import random\n'), ((20835, 20845), 'collections.Counter', 'Counter', (['v'], {}), '(v)\n', (20842, 20845), False, 'from collections import Counter\n'), ((21986, 22014), 'numpy.arange', 'np.arange', (['data_in_.shape[1]'], {}), '(data_in_.shape[1])\n', (21995, 22014), True, 'import numpy as np\n'), ((22030, 22058), 'numpy.arange', 'np.arange', (['data_in_.shape[0]'], {}), '(data_in_.shape[0])\n', (22039, 22058), True, 'import numpy as np\n'), ((22316, 22333), 'chem.chem.calc_name', 'chem.calc_name', (['s'], {}), '(s)\n', (22330, 22333), False, 'from chem import chem\n'), ((1714, 1733), 'random.sample', 'random.sample', (['i', '(1)'], {}), '(i, 1)\n', (1727, 1733), False, 'import random\n'), ((2091, 2168), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (2094, 2168), False, 'from sklearn.svm import SVC\n'), ((2182, 2259), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (2185, 2259), False, 'from sklearn.svm import SVC\n'), ((3342, 3415), 'density_weight.avg_proximity', 'dw.avg_proximity', (['x_train[available_dw_]', 'x_train[available_dw_]'], {'f': 'simfp'}), '(x_train[available_dw_], x_train[available_dw_], f=simfp)\n', (3358, 3415), True, 'import density_weight as dw\n'), ((4458, 4477), 'sklearn.metrics.accuracy_score', 'acc', (['y_test', 'r_last'], {}), '(y_test, r_last)\n', (4461, 4477), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((4499, 4518), 'sklearn.metrics.accuracy_score', 'acc', (['y_test', 'd_last'], {}), '(y_test, d_last)\n', (4502, 4518), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((4541, 4562), 'numpy.array', 'np.array', (['rand_scores'], {}), '(rand_scores)\n', (4549, 4562), True, 'import numpy as np\n'), ((4581, 4600), 'numpy.array', 'np.array', (['dw_scores'], {}), '(dw_scores)\n', (4589, 4600), True, 'import numpy as np\n'), ((6676, 6695), 'random.sample', 'random.sample', (['i', '(1)'], {}), '(i, 1)\n', (6689, 6695), False, 'import random\n'), ((7011, 7088), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (7014, 7088), False, 'from sklearn.svm import SVC\n'), ((7528, 7592), 'density_weight.avg_proximity', 'dw.avg_proximity', (['x_train[available_dw_]', 'x_train[available_dw_]'], {}), '(x_train[available_dw_], x_train[available_dw_])\n', (7544, 7592), True, 'import density_weight as dw\n'), ((9008, 9049), 'numpy.array', 'np.array', (['[ctr[pos] for pos in positions]'], {}), '([ctr[pos] for pos in positions])\n', (9016, 9049), True, 'import numpy as np\n'), ((12893, 12912), 'random.sample', 'random.sample', (['i', '(1)'], {}), '(i, 1)\n', (12906, 12912), False, 'import random\n'), ((13178, 13197), 'random.sample', 'random.sample', (['j', '(1)'], {}), '(j, 1)\n', (13191, 13197), False, 'import random\n'), ((13429, 13506), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (13432, 13506), False, 'from sklearn.svm import SVC\n'), ((13520, 13597), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (13523, 13597), False, 'from sklearn.svm import SVC\n'), ((14716, 14789), 'density_weight.avg_proximity', 'dw.avg_proximity', (['x_train[available_dw_]', 'x_train[available_dw_]'], {'f': 'simfp'}), '(x_train[available_dw_], x_train[available_dw_], f=simfp)\n', (14732, 14789), True, 'import density_weight as dw\n'), ((15850, 15878), 'sklearn.metrics.accuracy_score', 'acc', (["y_test['label']", 'r_last'], {}), "(y_test['label'], r_last)\n", (15853, 15878), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((15900, 15928), 'sklearn.metrics.accuracy_score', 'acc', (["y_test['label']", 'd_last'], {}), "(y_test['label'], d_last)\n", (15903, 15928), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((15951, 15972), 'numpy.array', 'np.array', (['rand_scores'], {}), '(rand_scores)\n', (15959, 15972), True, 'import numpy as np\n'), ((15991, 16010), 'numpy.array', 'np.array', (['dw_scores'], {}), '(dw_scores)\n', (15999, 16010), True, 'import numpy as np\n'), ((18851, 18870), 'random.sample', 'random.sample', (['j', '(1)'], {}), '(j, 1)\n', (18864, 18870), False, 'import random\n'), ((19060, 19137), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree', 'probability': '(True)'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree, probability=True)\n', (19063, 19137), False, 'from sklearn.svm import SVC\n'), ((19579, 19652), 'density_weight.avg_proximity', 'dw.avg_proximity', (['x_train[available_dw_]', 'x_train[available_dw_]'], {'f': 'simfp'}), '(x_train[available_dw_], x_train[available_dw_], f=simfp)\n', (19595, 19652), True, 'import density_weight as dw\n'), ((21035, 21076), 'numpy.array', 'np.array', (['[ctr[pos] for pos in positions]'], {}), '([ctr[pos] for pos in positions])\n', (21043, 21076), True, 'import numpy as np\n'), ((2545, 2559), 'sklearn.metrics.accuracy_score', 'acc', (['y_test', 'r'], {}), '(y_test, r)\n', (2548, 2559), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((2582, 2596), 'sklearn.metrics.accuracy_score', 'acc', (['y_test', 'd'], {}), '(y_test, d)\n', (2585, 2596), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((2825, 2862), 'random.sample', 'random.sample', (['available_rand_', 'batch'], {}), '(available_rand_, batch)\n', (2838, 2862), False, 'import random\n'), ((4100, 4159), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree)\n', (4103, 4159), False, 'from sklearn.svm import SVC\n'), ((4223, 4282), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree)\n', (4226, 4282), False, 'from sklearn.svm import SVC\n'), ((13901, 13924), 'sklearn.metrics.accuracy_score', 'acc', (["y_test['label']", 'r'], {}), "(y_test['label'], r)\n", (13904, 13924), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((13947, 13970), 'sklearn.metrics.accuracy_score', 'acc', (["y_test['label']", 'd'], {}), "(y_test['label'], d)\n", (13950, 13970), True, 'from sklearn.metrics import accuracy_score as acc\n'), ((14199, 14236), 'random.sample', 'random.sample', (['available_rand_', 'batch'], {}), '(available_rand_, batch)\n', (14212, 14236), False, 'import random\n'), ((15474, 15533), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree)\n', (15477, 15533), False, 'from sklearn.svm import SVC\n'), ((15606, 15665), 'sklearn.svm.SVC', 'SVC', ([], {'C': 'C', 'kernel': 'k_dict[kernel]', 'gamma': 'gamma', 'degree': 'degree'}), '(C=C, kernel=k_dict[kernel], gamma=gamma, degree=degree)\n', (15609, 15665), False, 'from sklearn.svm import SVC\n'), ((9309, 9345), 'structures.fingerprinter.reconstruct_fp', 'fptr.reconstruct_fp', (['s'], {'fptype': '"""FP2"""'}), "(s, fptype='FP2')\n", (9328, 9345), True, 'from structures import fingerprinter as fptr\n'), ((21337, 21373), 'structures.fingerprinter.reconstruct_fp', 'fptr.reconstruct_fp', (['s'], {'fptype': '"""FP2"""'}), "(s, fptype='FP2')\n", (21356, 21373), True, 'from structures import fingerprinter as fptr\n')] |
"""
filename: generic_model.py
author: <NAME>
version: 15.04.2021
description: helper functions (plotting, report generation, vgg base model)
"""
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import tensorflow as tf
import cv2
from glob import glob
from sklearn.metrics import confusion_matrix, classification_report, roc_auc_score
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelBinarizer
from tensorflow.keras.utils import to_categorical
from tensorflow.keras.layers import Input, Dense, Flatten, Dropout
from tensorflow.keras.models import Model, load_model
from tensorflow.keras.applications import VGG19
from tensorflow.keras.preprocessing import image
from tensorflow.keras.preprocessing.image import ImageDataGenerator
def split_images_and_process(covid_files, normal_files):
print('Total number of covid images: {}'.format(len(covid_files)))
print('Total number of non-covid images: {}'.format(len(normal_files)))
# Preparing Labels
covid_labels = []
normal_labels = []
covid_images=[]
normal_images=[]
for i in range(len(covid_files)):
image = cv2.imread(covid_files[i])
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
image = cv2.resize(image,(224,224))
covid_images.append(image)
covid_labels.append('Covid')
for i in range(len(normal_files)):
image = cv2.imread(normal_files[i])
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
image = cv2.resize(image,(224,224))
normal_images.append(image)
normal_labels.append('Normal')
# Convert to array and Normalize to interval of [0,1]
covid_images = np.array(covid_images) / 255
normal_images = np.array(normal_images) / 255
# split into training and testing
covid_x_train, covid_x_test, covid_y_train, covid_y_test = train_test_split(covid_images, covid_labels, test_size=0.2)
normal_x_train, normal_x_test, normal_y_train, normal_y_test = train_test_split(normal_images, normal_labels, test_size=0.2)
X_train = np.concatenate((normal_x_train, covid_x_train), axis=0)
X_test = np.concatenate((normal_x_test, covid_x_test), axis=0)
y_train = np.concatenate((normal_y_train, covid_y_train), axis=0)
y_test = np.concatenate((normal_y_test, covid_y_test), axis=0)
# make labels into categories - either 0 or 1
lb = LabelBinarizer()
#print(y_train[0])
y_train = lb.fit_transform(y_train)
#print(y_train[0])
y_train = to_categorical(y_train)
#print(y_train[0])
y_test = lb.transform(y_test)
y_test = to_categorical(y_test)
return [X_train, X_test, y_train, y_test]
def vgg_model(lr=1e-3, dropout_val=0.2, fc_neurons=64):
vggModel = VGG19(weights="imagenet", include_top=False,input_tensor=Input(shape=(224, 224, 3)))
outputs = vggModel.output
outputs = Flatten()(outputs)
outputs = Dense(fc_neurons, activation='relu')(outputs)
outputs = Dropout(dropout_val)(outputs)
outputs = Dense(2, activation='softmax')(outputs)
model = Model(inputs=vggModel.input, outputs=outputs)
for layer in vggModel.layers:
layer.trainable = False
opt = tf.keras.optimizers.Adam(learning_rate = lr)
model.compile(loss='binary_crossentropy',optimizer=opt, metrics=['accuracy'])
return model
def plot_model_acc_loss(history, title):
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title(title)
plt.ylabel('Accuracy/Loss')
plt.xlabel('Epoch')
plt.legend(['train_acc','val_acc','train_loss','val_loss'])
plt.show()
def plot_confusion_matrix(classes, y_true, y_pred):
tick_marks = [0.5,1.5]
cn = confusion_matrix(y_true, y_pred)
sns.heatmap(cn,cmap='plasma',annot=True)
plt.xticks(tick_marks, classes)
plt.yticks(tick_marks, classes)
plt.title('Confusion Matrix')
plt.ylabel('True label')
plt.xlabel('Predicted label')
plt.show()
def report(y_true, y_pred):
cm = confusion_matrix(y_true, y_pred)
tn, fp, fn, tp = cm.ravel()
acc = (tp + tn)/np.sum(cm)
sens = tp/(tp + fn)
spec = tn/(fp + tn)
prec = tp/(tp + fp)
rec = tp/(tp + fn)
f1 = (2*prec*rec)/(prec + rec)
auc = roc_auc_score(y_true, y_pred)
print("\nAccuracy: ", acc)
print("Sensitivity: ", sens)
print("Specificity: ", spec)
print("Precision: ", prec)
print("Recall: ", rec)
print("F1 Score: ", f1)
print("AUC Score: ", auc)
print("\nClassification report:")
print(classification_report(y_true, y_pred))
| [
"matplotlib.pyplot.ylabel",
"sklearn.metrics.classification_report",
"sklearn.metrics.roc_auc_score",
"numpy.array",
"tensorflow.keras.layers.Dense",
"sklearn.preprocessing.LabelBinarizer",
"tensorflow.keras.layers.Input",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"matplotlib.pyplot.yt... | [((1888, 1947), 'sklearn.model_selection.train_test_split', 'train_test_split', (['covid_images', 'covid_labels'], {'test_size': '(0.2)'}), '(covid_images, covid_labels, test_size=0.2)\n', (1904, 1947), False, 'from sklearn.model_selection import train_test_split\n'), ((2015, 2076), 'sklearn.model_selection.train_test_split', 'train_test_split', (['normal_images', 'normal_labels'], {'test_size': '(0.2)'}), '(normal_images, normal_labels, test_size=0.2)\n', (2031, 2076), False, 'from sklearn.model_selection import train_test_split\n'), ((2093, 2148), 'numpy.concatenate', 'np.concatenate', (['(normal_x_train, covid_x_train)'], {'axis': '(0)'}), '((normal_x_train, covid_x_train), axis=0)\n', (2107, 2148), True, 'import numpy as np\n'), ((2162, 2215), 'numpy.concatenate', 'np.concatenate', (['(normal_x_test, covid_x_test)'], {'axis': '(0)'}), '((normal_x_test, covid_x_test), axis=0)\n', (2176, 2215), True, 'import numpy as np\n'), ((2230, 2285), 'numpy.concatenate', 'np.concatenate', (['(normal_y_train, covid_y_train)'], {'axis': '(0)'}), '((normal_y_train, covid_y_train), axis=0)\n', (2244, 2285), True, 'import numpy as np\n'), ((2299, 2352), 'numpy.concatenate', 'np.concatenate', (['(normal_y_test, covid_y_test)'], {'axis': '(0)'}), '((normal_y_test, covid_y_test), axis=0)\n', (2313, 2352), True, 'import numpy as np\n'), ((2413, 2429), 'sklearn.preprocessing.LabelBinarizer', 'LabelBinarizer', ([], {}), '()\n', (2427, 2429), False, 'from sklearn.preprocessing import LabelBinarizer\n'), ((2530, 2553), 'tensorflow.keras.utils.to_categorical', 'to_categorical', (['y_train'], {}), '(y_train)\n', (2544, 2553), False, 'from tensorflow.keras.utils import to_categorical\n'), ((2625, 2647), 'tensorflow.keras.utils.to_categorical', 'to_categorical', (['y_test'], {}), '(y_test)\n', (2639, 2647), False, 'from tensorflow.keras.utils import to_categorical\n'), ((3096, 3141), 'tensorflow.keras.models.Model', 'Model', ([], {'inputs': 'vggModel.input', 'outputs': 'outputs'}), '(inputs=vggModel.input, outputs=outputs)\n', (3101, 3141), False, 'from tensorflow.keras.models import Model, load_model\n'), ((3220, 3262), 'tensorflow.keras.optimizers.Adam', 'tf.keras.optimizers.Adam', ([], {'learning_rate': 'lr'}), '(learning_rate=lr)\n', (3244, 3262), True, 'import tensorflow as tf\n'), ((3413, 3450), 'matplotlib.pyplot.plot', 'plt.plot', (["history.history['accuracy']"], {}), "(history.history['accuracy'])\n", (3421, 3450), True, 'import matplotlib.pyplot as plt\n'), ((3455, 3496), 'matplotlib.pyplot.plot', 'plt.plot', (["history.history['val_accuracy']"], {}), "(history.history['val_accuracy'])\n", (3463, 3496), True, 'import matplotlib.pyplot as plt\n'), ((3501, 3534), 'matplotlib.pyplot.plot', 'plt.plot', (["history.history['loss']"], {}), "(history.history['loss'])\n", (3509, 3534), True, 'import matplotlib.pyplot as plt\n'), ((3539, 3576), 'matplotlib.pyplot.plot', 'plt.plot', (["history.history['val_loss']"], {}), "(history.history['val_loss'])\n", (3547, 3576), True, 'import matplotlib.pyplot as plt\n'), ((3582, 3598), 'matplotlib.pyplot.title', 'plt.title', (['title'], {}), '(title)\n', (3591, 3598), True, 'import matplotlib.pyplot as plt\n'), ((3603, 3630), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Accuracy/Loss"""'], {}), "('Accuracy/Loss')\n", (3613, 3630), True, 'import matplotlib.pyplot as plt\n'), ((3635, 3654), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Epoch"""'], {}), "('Epoch')\n", (3645, 3654), True, 'import matplotlib.pyplot as plt\n'), ((3660, 3722), 'matplotlib.pyplot.legend', 'plt.legend', (["['train_acc', 'val_acc', 'train_loss', 'val_loss']"], {}), "(['train_acc', 'val_acc', 'train_loss', 'val_loss'])\n", (3670, 3722), True, 'import matplotlib.pyplot as plt\n'), ((3724, 3734), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (3732, 3734), True, 'import matplotlib.pyplot as plt\n'), ((3824, 3856), 'sklearn.metrics.confusion_matrix', 'confusion_matrix', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (3840, 3856), False, 'from sklearn.metrics import confusion_matrix, classification_report, roc_auc_score\n'), ((3861, 3903), 'seaborn.heatmap', 'sns.heatmap', (['cn'], {'cmap': '"""plasma"""', 'annot': '(True)'}), "(cn, cmap='plasma', annot=True)\n", (3872, 3903), True, 'import seaborn as sns\n'), ((3906, 3937), 'matplotlib.pyplot.xticks', 'plt.xticks', (['tick_marks', 'classes'], {}), '(tick_marks, classes)\n', (3916, 3937), True, 'import matplotlib.pyplot as plt\n'), ((3942, 3973), 'matplotlib.pyplot.yticks', 'plt.yticks', (['tick_marks', 'classes'], {}), '(tick_marks, classes)\n', (3952, 3973), True, 'import matplotlib.pyplot as plt\n'), ((3978, 4007), 'matplotlib.pyplot.title', 'plt.title', (['"""Confusion Matrix"""'], {}), "('Confusion Matrix')\n", (3987, 4007), True, 'import matplotlib.pyplot as plt\n'), ((4012, 4036), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""True label"""'], {}), "('True label')\n", (4022, 4036), True, 'import matplotlib.pyplot as plt\n'), ((4041, 4070), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Predicted label"""'], {}), "('Predicted label')\n", (4051, 4070), True, 'import matplotlib.pyplot as plt\n'), ((4075, 4085), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (4083, 4085), True, 'import matplotlib.pyplot as plt\n'), ((4124, 4156), 'sklearn.metrics.confusion_matrix', 'confusion_matrix', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (4140, 4156), False, 'from sklearn.metrics import confusion_matrix, classification_report, roc_auc_score\n'), ((4363, 4392), 'sklearn.metrics.roc_auc_score', 'roc_auc_score', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (4376, 4392), False, 'from sklearn.metrics import confusion_matrix, classification_report, roc_auc_score\n'), ((1174, 1200), 'cv2.imread', 'cv2.imread', (['covid_files[i]'], {}), '(covid_files[i])\n', (1184, 1200), False, 'import cv2\n'), ((1217, 1255), 'cv2.cvtColor', 'cv2.cvtColor', (['image', 'cv2.COLOR_BGR2RGB'], {}), '(image, cv2.COLOR_BGR2RGB)\n', (1229, 1255), False, 'import cv2\n'), ((1272, 1301), 'cv2.resize', 'cv2.resize', (['image', '(224, 224)'], {}), '(image, (224, 224))\n', (1282, 1301), False, 'import cv2\n'), ((1427, 1454), 'cv2.imread', 'cv2.imread', (['normal_files[i]'], {}), '(normal_files[i])\n', (1437, 1454), False, 'import cv2\n'), ((1471, 1509), 'cv2.cvtColor', 'cv2.cvtColor', (['image', 'cv2.COLOR_BGR2RGB'], {}), '(image, cv2.COLOR_BGR2RGB)\n', (1483, 1509), False, 'import cv2\n'), ((1526, 1555), 'cv2.resize', 'cv2.resize', (['image', '(224, 224)'], {}), '(image, (224, 224))\n', (1536, 1555), False, 'import cv2\n'), ((1707, 1729), 'numpy.array', 'np.array', (['covid_images'], {}), '(covid_images)\n', (1715, 1729), True, 'import numpy as np\n'), ((1756, 1779), 'numpy.array', 'np.array', (['normal_images'], {}), '(normal_images)\n', (1764, 1779), True, 'import numpy as np\n'), ((2906, 2915), 'tensorflow.keras.layers.Flatten', 'Flatten', ([], {}), '()\n', (2913, 2915), False, 'from tensorflow.keras.layers import Input, Dense, Flatten, Dropout\n'), ((2939, 2975), 'tensorflow.keras.layers.Dense', 'Dense', (['fc_neurons'], {'activation': '"""relu"""'}), "(fc_neurons, activation='relu')\n", (2944, 2975), False, 'from tensorflow.keras.layers import Input, Dense, Flatten, Dropout\n'), ((2999, 3019), 'tensorflow.keras.layers.Dropout', 'Dropout', (['dropout_val'], {}), '(dropout_val)\n', (3006, 3019), False, 'from tensorflow.keras.layers import Input, Dense, Flatten, Dropout\n'), ((3043, 3073), 'tensorflow.keras.layers.Dense', 'Dense', (['(2)'], {'activation': '"""softmax"""'}), "(2, activation='softmax')\n", (3048, 3073), False, 'from tensorflow.keras.layers import Input, Dense, Flatten, Dropout\n'), ((4210, 4220), 'numpy.sum', 'np.sum', (['cm'], {}), '(cm)\n', (4216, 4220), True, 'import numpy as np\n'), ((4656, 4693), 'sklearn.metrics.classification_report', 'classification_report', (['y_true', 'y_pred'], {}), '(y_true, y_pred)\n', (4677, 4693), False, 'from sklearn.metrics import confusion_matrix, classification_report, roc_auc_score\n'), ((2829, 2855), 'tensorflow.keras.layers.Input', 'Input', ([], {'shape': '(224, 224, 3)'}), '(shape=(224, 224, 3))\n', (2834, 2855), False, 'from tensorflow.keras.layers import Input, Dense, Flatten, Dropout\n')] |
# -*- coding: utf-8 -*-
"""
femagtools.dxfsl.machine
~~~~~~~~~~~~~~~~~~~~~~~~
a machine consists of 2 parts and has a geometry
Authors: <NAME>, <NAME>
"""
from __future__ import print_function
import numpy as np
import logging
from .shape import Element, Circle, Arc, Line, Shape
from .corner import Corner
from .functions import point, points_are_close, distance
from .functions import alpha_angle, normalise_angle, middle_angle, third_angle
from .functions import line_m, line_n, mirror_point
from .functions import within_interval, part_of_circle
from .functions import less, less_equal, greater, greater_equal
logger = logging.getLogger('femagtools.geom')
#############################
# Machine #
#############################
class Machine(object):
def __init__(self, geom, center, radius, startangle=0, endangle=0):
self.geom = geom
self.center = center
self.radius = radius
self.startangle = startangle
self.endangle = endangle
self.mirror_orig_geom = None
self.mirror_geom = None
self.mirror_startangle = 0.0
self.mirror_endangle = 0.0
self.part = self.part_of_circle()
self.airgaps = []
self.airgap_radius = 0.0
self.airgap2_radius = 0.0
self.geom.center = center
self.previous_machine = None
def __str__(self):
return "Machine\n" + \
"Center: ({})\n".format(self.center) + \
"Radius: {}\n".format(self.radius) + \
"Angles: Start={}, End={}\n".format(self.startangle,
self.endangle) + \
"Mirror: {}\n".format(self.mirror_geom is not None)
def is_a_machine(self):
return self.radius > 0.0
def is_in_middle(self):
return self.radius > 0.0 and \
points_are_close(self.center, [0.0, 0.0], 1e-8)
def is_full(self):
return self.radius > 0.0 and \
self.startangle == 0.0 and self.endangle == 0.0
def is_half_up(self):
return self.radius > 0.0 and \
np.isclose(self.startangle, 0.0, 1e-8) and \
(np.isclose(self.endangle, np.pi, 1e-8) or
np.isclose(self.endangle, -np.pi, 1e-8))
def is_half_down(self):
return self.radius > 0.0 and \
(np.isclose(self.endangle, np.pi, 1e-8) or
np.isclose(self.endangle, -np.pi, 1e-8)) and \
np.isclose(self.startangle, 0.0, 1e-8)
def is_half_left(self):
return self.radius > 0.0 and \
np.isclose(self.startangle, np.pi/2, 1e-8) and \
np.isclose(self.endangle, -np.pi/2, 1e-8)
def is_half_right(self):
return self.radius > 0.0 and \
np.isclose(self.startangle, -np.pi/2, 1e-8) and \
np.isclose(self.endangle, np.pi/2, 1e-8)
def is_half(self):
return self.is_half_up() or self.is_half_down() or \
self.is_half_left() or self.is_half_right()
def is_quarter(self):
return self.radius > 0.0 and \
np.isclose(alpha_angle(self.startangle, self.endangle), np.pi/2)
def is_startangle_zero(self):
return np.isclose(self.startangle, 0.0)
def move_to_middle(self):
if not self.is_in_middle():
if self.radius > 0.0:
offset = [-(self.center[0]), -(self.center[1])]
self.geom.move(offset)
self.set_center(0.0, 0.0)
self.geom.clear_cut_lines()
return True
return False
def set_center(self, x, y):
self.center[0] = x
self.center[1] = y
self.geom.center = [x, y]
def set_radius(self, radius):
self.radius = radius
def set_kind(self, kind):
self.geom.kind = kind
def set_inner(self):
self.geom.is_inner = True
def set_outer(self):
self.geom.is_outer = True
def clear_cut_lines(self):
self.geom.clear_cut_lines()
if self.mirror_geom is not None:
self.mirror_geom.clear_cut_lines()
def cut_is_possible(self, r_in, r_out):
if r_in > 0.0:
if less(self.geom.min_radius, r_in, rtol=0.0001):
if less_equal(self.geom.max_radius, r_in, rtol=0.0001):
return False
return True
if r_out > 0.0:
if greater(self.geom.max_radius, r_out, rtol=0.0001):
if greater_equal(self.geom.min_radius, r_out, rtol=0.0001):
return False
return True
return False
def cut(self, r_in, r_out):
radius_in = r_in
radius_out = r_out
if r_out == 0.0:
radius_out = self.radius + 10
clone = self.geom.copy_shape(self.center,
self.radius,
0.0,
2*np.pi,
radius_in,
radius_out,
False,
append_inner=(r_in > 0.0),
append_outer=(r_out > 0.0))
if r_out == 0.0:
r_out = self.radius
m = Machine(clone, self.center, r_out,
self.startangle, self.endangle)
m.mirror_geom = self.mirror_geom
m.part = self.part
m.set_minmax_radius()
m.create_auxiliary_lines()
m.set_alfa_and_corners()
m.set_kind(self.geom.kind)
return m
def copy(self, startangle, endangle,
airgap=False, inside=True, split=False):
if airgap and self.airgap_radius > 0.0:
if inside:
if self.airgap2_radius > 0.0:
new_radius = min(self.airgap_radius, self.airgap2_radius)
else:
new_radius = self.airgap_radius
clone = self.geom.copy_shape(self.center,
self.radius,
startangle, endangle,
0.0, new_radius, split)
else:
new_radius = self.radius
gap_radius = max(self.airgap_radius, self.airgap2_radius)
clone = self.geom.copy_shape(self.center,
self.radius,
startangle, endangle,
gap_radius, self.radius+9999,
split)
circ = Circle(Element(center=self.center,
radius=self.airgap_radius))
clone.add_cut_line(circ)
else:
new_radius = self.radius
clone = self.geom.copy_shape(self.center, self.radius,
startangle, endangle, 0.0,
self.radius+9999, split)
if not np.isclose(normalise_angle(startangle),
normalise_angle(endangle), 0.0):
start_p = point(self.center, self.radius+5, startangle)
start_line = Line(Element(start=self.center, end=start_p))
clone.add_cut_line(start_line)
end_p = point(self.center, self.radius+5, endangle)
end_line = Line(Element(start=self.center, end=end_p))
clone.add_cut_line(end_line)
if not np.isclose(alpha_angle(startangle, endangle), 2*np.pi):
return Machine(clone, self.center, new_radius,
startangle, endangle)
else:
# Der Originalwinkel bleibt bestehen
return Machine(clone, self.center, new_radius,
self.startangle, self.endangle)
def full_copy(self):
clone = self.geom.copy_shape(self.center, self.radius,
0.0, 2*np.pi,
0.0, self.radius+9999)
return clone.get_machine()
def copy_mirror(self, startangle, midangle, endangle):
geom1 = self.geom.copy_shape(self.center,
self.radius,
startangle,
midangle,
0.0,
self.radius+9999,
rtol=1e-08,
atol=1e-08)
geom2 = self.geom.copy_shape(self.center,
self.radius,
midangle,
endangle,
0.0,
self.radius+9999,
rtol=1e-08,
atol=1e-08)
machine = Machine(geom1, self.center, self.radius,
startangle, midangle)
machine.mirror_orig_geom = self.geom
machine.mirror_geom = geom2
machine.mirror_geom.center = self.center
machine.mirror_startangle = midangle
machine.mirror_endangle = endangle
return machine
def has_mirrored_windings(self):
if not self.is_mirrored():
return False
return self.geom.area_close_to_endangle(2) > 0
def undo_mirror(self):
assert(self.is_mirrored())
assert(self.previous_machine)
self.previous_machine.set_minmax_radius()
# self.previous_machine.complete_hull()
self.set_alfa_and_corners()
self.previous_machine.create_auxiliary_lines()
self.previous_machine.set_kind(self.geom.kind)
return self.previous_machine
def rotate_to(self, new_startangle):
if np.isclose(new_startangle, self.startangle):
return
if points_are_close(self.center, [0.0, 0.0]):
angle = new_startangle - self.startangle
self.geom.rotate(angle)
self.startangle = new_startangle
self.endangle += angle
def airgap(self, correct_airgap=0.0, correct_airgap2=0.0, atol=0.1):
logger.debug('locking for airgap')
self.airgap_radius = 0.0
self.airgap2_radius = 0.0
if np.isclose(self.radius, 0.0):
logger.debug('no radius')
return False
if correct_airgap < 0:
logger.debug('no airgap')
return False # no airgap
self.airgaps = []
airgaps = self.geom.detect_airgaps(self.center,
self.startangle,
self.endangle, atol)
alpha = alpha_angle(self.startangle, self.endangle)
if len(airgaps) == 1:
self.airgaps = airgaps
elif len(airgaps) > 0:
lower_radius = -1.0
upper_radius = -1.0
for g in airgaps:
if np.isclose(g[0], upper_radius):
if not self.geom.delete_airgap_circle(self.center,
lower_radius,
upper_radius,
g[1],
alpha):
lower_radius = g[0]
else:
if lower_radius > 0.0:
self.airgaps.append((lower_radius, upper_radius))
lower_radius = g[0]
upper_radius = g[1]
self.airgaps.append((lower_radius, upper_radius))
if len(self.airgaps) > 0:
airgap_candidates = []
for g in self.airgaps:
gap_radius = round((g[0]+g[1])/2.0, 6)
gap_dist = g[1] - g[0]
circle = Circle(Element(center=self.center,
radius=gap_radius))
ok, borders = self.geom.is_airgap(self.center,
self.radius,
self.startangle,
self.endangle,
circle, atol)
if not ok:
logger.error("FATAL: No Airgap with radius {}".
format(gap_radius))
print("FATAL: No Airgap with radius {}".
format(gap_radius))
self.geom.airgaps.append(circle)
return True # bad exit
airgap_candidates.append((borders, circle, gap_dist))
self.geom.airgaps.append(circle)
if correct_airgap > 0.0:
if within_interval(correct_airgap, g[0], g[1], 0.0, 0.0):
self.airgap_radius = gap_radius # ok
if correct_airgap2 > 0.0:
if within_interval(correct_airgap2, g[0], g[1], 0.0, 0.0):
self.airgap2_radius = gap_radius # ok
if correct_airgap > 0.0 and self.airgap_radius == 0.0:
logger.error("No airgap with radius {} found"
.format(correct_airgap))
self.show_airgap_candidates(airgap_candidates, False)
return True # bad exit
if correct_airgap2 > 0.0 and self.airgap2_radius == 0.0:
logger.error("No airgap2 with radius {} found"
.format(correct_airgap2))
self.show_airgap_candidates(airgap_candidates, False)
return True # bad exit
if len(self.airgaps) == 0:
logger.debug('No airgap found')
return False # no airgaps found
if self.airgap_radius > 0.0:
return False # correct airgap set
gaps = [c for b, c, d in airgap_candidates if b == 0]
if len(gaps) == 1: # one candidate without border intersection
self.airgap_radius = gaps[0].radius
return False # ok
if len(airgap_candidates) == 1: # one candidate found
self.airgap_radius = airgap_candidates[0][1].radius
return False # ok
self.airgap_radius = self.show_airgap_candidates(airgap_candidates,
True)
return False # ok
def show_airgap_candidates(self, airgap_candidates, get_one):
if get_one:
logger.info("{} airgap candidate(s) found:"
.format(len(airgap_candidates)))
else:
print("{} airgap candidate(s) found:"
.format(len(airgap_candidates)))
dist = 999
circle = None
pos_list = []
for b, c, d in airgap_candidates:
if get_one:
logger.info(" --- {} (width={})".format(c.radius, d))
else:
print(" --- {} (width={})".format(c.radius, d))
if d < dist:
dist = d
circle = c
inner_pc = (c.radius - self.geom.min_radius) / \
(self.geom.max_radius - self.geom.min_radius)
pos = np.abs(inner_pc * 100 - 50)
logger.debug("Abstand Mitte = {} %".format(pos))
if pos < 20:
pos_list.append([pos, d, c])
if get_one:
if pos_list:
dist_list = [[d, c] for pos, d, c in pos_list]
dist_list.sort()
circle = dist_list[0][1]
logger.info("airgap {} prefered".format(circle.radius))
return circle.radius
print("Use options --airgap/--airgap2 <float> to specify")
return None
def has_airgap(self):
return self.airgap_radius > 0.0
def airgap_x(self):
return self.airgap_radius
def airgap_y(self):
return 0.1
def part_of_circle(self, pos=3):
return part_of_circle(self.startangle, self.endangle, pos)
def delete_center_circle(self):
gaps = self.geom.get_gaplist(self.center)
if len(gaps) < 2:
return
first_gap = gaps[0][1]
second_gap = gaps[1][0]
if first_gap != second_gap:
return
first_dist = gaps[0][1]
second_dist = gaps[1][1] - gaps[1][0]
if first_dist < 1.0:
if second_dist / first_dist > 10.0:
self.geom.delete_circle((0.0, 0.0), first_dist)
def repair_hull(self):
logger.debug('repair_hull')
if self.is_full() and not self.has_airgap():
self.delete_center_circle()
if self.startangle == self.endangle:
logger.info('end of repair_hull: circle')
return
self.repair_hull_geom(self.geom, self.startangle, self.endangle)
if self.mirror_geom:
self.repair_hull_geom(self.mirror_geom,
self.mirror_startangle,
self.mirror_endangle)
logger.debug('end of repair_hull')
def repair_hull_geom(self, geom, startangle, endangle):
logger.debug('repair_hull_geom')
c_corner = Corner(self.center, self.center)
start_corners = geom.get_corner_list(self.center, startangle)
end_corners = geom.get_corner_list(self.center, endangle)
geom.repair_hull_line(self.center,
startangle, start_corners,
c_corner in end_corners)
geom.repair_hull_line(self.center,
endangle, end_corners,
c_corner in start_corners)
logger.debug('end of repair_hull_geom')
def set_minmax_radius(self):
self.geom.set_minmax_radius(self.center)
def complete_hull(self, is_inner, is_outer):
logger.info('complete_hull')
start_corners = self.geom.complete_hull_line(self.center,
self.startangle)
end_corners = self.geom.complete_hull_line(self.center,
self.endangle)
if start_corners[0].is_new_point or end_corners[0].is_new_point:
self.geom.complete_hull_arc(self.center,
self.startangle, start_corners[0],
self.endangle, end_corners[0],
self.geom.min_radius)
if start_corners[1].is_new_point or end_corners[1].is_new_point:
self.geom.complete_hull_arc(self.center,
self.startangle, start_corners[1],
self.endangle, end_corners[1],
self.geom.max_radius)
self.set_alfa_and_corners()
def create_auxiliary_lines(self):
self.geom.create_auxiliary_lines(self.startangle, self.endangle)
def set_alfa_and_corners(self):
self.geom.start_corners = self.geom.get_corner_nodes(self.center,
self.startangle)
self.geom.end_corners = self.geom.get_corner_nodes(self.center,
self.endangle)
self.geom.alfa = alpha_angle(self.startangle, self.endangle)
if self.mirror_geom is not None:
self.geom.mirror_corners = self.geom.end_corners
def is_mirrored(self):
return self.mirror_geom is not None
def num_of_layers(self):
w = self.geom.num_of_windings()
if w > 0 and self.is_mirrored():
return w*2
return w
def find_symmetry(self, sym_tolerance):
if self.radius <= 0.0:
return False
return self.geom.find_symmetry(self.center, self.radius,
self.startangle, self.endangle,
sym_tolerance)
def get_symmetry_slice(self):
logger.debug("begin get_symmetry_slice")
if not self.geom.has_symmetry_area():
logger.debug("end get_symmetry_slice: no symmetry area")
return None
machine_slice = self.copy(self.geom.symmetry_startangle(),
self.geom.symmetry_endangle())
machine_slice.clear_cut_lines()
machine_slice.repair_hull()
machine_slice.rotate_to(0.0)
machine_slice.set_alfa_and_corners()
logger.debug("end get_symmetry_slice: angle start: {}, end: {}"
.format(self.geom.symmetry_startangle(),
self.geom.symmetry_endangle()))
return machine_slice
def get_third_symmetry_mirror(self):
logger.debug("begin get_third_symmetry_mirror")
first_thirdangle = third_angle(self.startangle, self.endangle)
second_thirdangle = middle_angle(first_thirdangle, self.endangle)
machine_mirror_1 = self.copy_mirror(self.startangle,
first_thirdangle,
second_thirdangle)
machine_mirror_1.clear_cut_lines()
machine_mirror_1.repair_hull()
machine_mirror_1.set_alfa_and_corners()
if not machine_mirror_1.check_symmetry_graph(0.001, 0.05):
logger.debug("end get_third_symmetry_mirror: no mirror first third")
return None
machine_mirror_2 = self.copy_mirror(first_thirdangle,
second_thirdangle,
self.endangle)
machine_mirror_2.clear_cut_lines()
machine_mirror_2.repair_hull()
machine_mirror_2.set_alfa_and_corners()
if not machine_mirror_2.check_symmetry_graph(0.001, 0.05):
logger.debug("end get_third_symmetry_mirror: no mirror second third")
return None
machine_mirror_1.previous_machine = self
logger.debug("end get_third_symmetry_mirror: ok")
return machine_mirror_1
def get_symmetry_mirror(self):
logger.debug("begin get_symmetry_mirror")
if self.part == 1:
# a complete machine
startangle = 0.0
endangle = 0.0
midangle = np.pi
else:
startangle = self.startangle
endangle = self.endangle
midangle = middle_angle(self.startangle, self.endangle)
machine_mirror = self.get_third_symmetry_mirror()
if machine_mirror:
logger.debug("end get_symmetry_mirror: third found")
return machine_mirror
logger.debug(" - angles: start: {}, mid: {}, end: {}"
.format(startangle, midangle, endangle))
machine_mirror = self.copy_mirror(startangle, midangle, endangle)
machine_mirror.clear_cut_lines()
machine_mirror.repair_hull()
machine_mirror.set_alfa_and_corners()
if machine_mirror.check_symmetry_graph(0.001, 0.05):
machine_mirror.previous_machine = self
machine_mirror.rotate_to(0.0)
machine_mirror.set_alfa_and_corners()
logger.debug("end get_symmetry_mirror: found")
return machine_mirror
logger.debug("end get_symmetry_mirror: no mirror")
return None
def get_symmetry_part(self):
if self.is_mirrored():
return self.part/2
else:
return self.part
def check_symmetry_graph(self, rtol, atol):
logger.debug("begin check_symmetry_graph")
axis_p = point(self.center, self.radius, self.mirror_startangle)
axis_m = line_m(self.center, axis_p)
axis_n = line_n(self.center, axis_m)
def is_node_available(n, nodes):
mirror_p = mirror_point(n, self.center, axis_m, axis_n)
for p in nodes:
if points_are_close(p, mirror_p, rtol, atol):
return True
return False
def get_hit_factor(nodes1, nodes2):
hit = 0
if not nodes1:
return 0.0
for n in nodes1:
if is_node_available(n, nodes2):
hit += 1
else:
d = distance(self.center, n)
logger.debug(" -- r={}, d={}".format(self.radius, d))
if np.isclose(d, self.radius, rtol=0.075, atol=atol):
# very tolerant
logger.debug("NO HIT FOR {} ON OUTER HULL".format(n))
hit += 1
return float(hit) / len(nodes1)
hit_factor1 = get_hit_factor(self.geom.g.nodes(),
self.mirror_geom.g.nodes())
logger.debug("=> hit_factor1 = {}".format(hit_factor1))
if hit_factor1 < 0.9:
return False # not ok
hit_factor2 = get_hit_factor(self.mirror_geom.g.nodes(),
self.geom.g.nodes())
logger.debug("=> hit_factor2 = {}".format(hit_factor2))
if hit_factor2 < 0.9:
return False # not ok
if hit_factor1 < 0.93 and hit_factor2 < 0.93:
return False # not ok
logger.debug("end check_symmetry_graph: ok")
return True
def sync_with_counterpart(self, cp_machine):
self.geom.sym_counterpart = cp_machine.get_symmetry_part()
self.geom.sym_part = self.get_symmetry_part()
cp_machine.geom.sym_counterpart = self.get_symmetry_part()
cp_machine.geom.sym_part = cp_machine.get_symmetry_part()
def search_subregions(self):
self.geom.search_subregions()
def delete_tiny_elements(self, mindist):
self.geom.delete_tiny_elements(mindist)
def create_mirror_lines_outside_windings(self):
if not self.geom.has_areas_touching_both_sides():
return
midangle = middle_angle(self.startangle, self.endangle)
pts = self.geom.split_and_get_intersect_points(self.center,
self.radius+10,
midangle)
pts.sort()
if self.geom.create_lines_outside_windings(pts):
self.geom.area_list = []
logger.debug("create subregions again")
self.geom.create_list_of_areas(crunch=True)
self.geom.search_subregions()
| [
"logging.getLogger",
"numpy.abs",
"numpy.isclose"
] | [((640, 676), 'logging.getLogger', 'logging.getLogger', (['"""femagtools.geom"""'], {}), "('femagtools.geom')\n", (657, 676), False, 'import logging\n'), ((3251, 3283), 'numpy.isclose', 'np.isclose', (['self.startangle', '(0.0)'], {}), '(self.startangle, 0.0)\n', (3261, 3283), True, 'import numpy as np\n'), ((9954, 9997), 'numpy.isclose', 'np.isclose', (['new_startangle', 'self.startangle'], {}), '(new_startangle, self.startangle)\n', (9964, 9997), True, 'import numpy as np\n'), ((10438, 10466), 'numpy.isclose', 'np.isclose', (['self.radius', '(0.0)'], {}), '(self.radius, 0.0)\n', (10448, 10466), True, 'import numpy as np\n'), ((2129, 2168), 'numpy.isclose', 'np.isclose', (['self.startangle', '(0.0)', '(1e-08)'], {}), '(self.startangle, 0.0, 1e-08)\n', (2139, 2168), True, 'import numpy as np\n'), ((2493, 2532), 'numpy.isclose', 'np.isclose', (['self.startangle', '(0.0)', '(1e-08)'], {}), '(self.startangle, 0.0, 1e-08)\n', (2503, 2532), True, 'import numpy as np\n'), ((2615, 2660), 'numpy.isclose', 'np.isclose', (['self.startangle', '(np.pi / 2)', '(1e-08)'], {}), '(self.startangle, np.pi / 2, 1e-08)\n', (2625, 2660), True, 'import numpy as np\n'), ((2679, 2723), 'numpy.isclose', 'np.isclose', (['self.endangle', '(-np.pi / 2)', '(1e-08)'], {}), '(self.endangle, -np.pi / 2, 1e-08)\n', (2689, 2723), True, 'import numpy as np\n'), ((2805, 2851), 'numpy.isclose', 'np.isclose', (['self.startangle', '(-np.pi / 2)', '(1e-08)'], {}), '(self.startangle, -np.pi / 2, 1e-08)\n', (2815, 2851), True, 'import numpy as np\n'), ((2870, 2913), 'numpy.isclose', 'np.isclose', (['self.endangle', '(np.pi / 2)', '(1e-08)'], {}), '(self.endangle, np.pi / 2, 1e-08)\n', (2880, 2913), True, 'import numpy as np\n'), ((15425, 15452), 'numpy.abs', 'np.abs', (['(inner_pc * 100 - 50)'], {}), '(inner_pc * 100 - 50)\n', (15431, 15452), True, 'import numpy as np\n'), ((2190, 2229), 'numpy.isclose', 'np.isclose', (['self.endangle', 'np.pi', '(1e-08)'], {}), '(self.endangle, np.pi, 1e-08)\n', (2200, 2229), True, 'import numpy as np\n'), ((2248, 2288), 'numpy.isclose', 'np.isclose', (['self.endangle', '(-np.pi)', '(1e-08)'], {}), '(self.endangle, -np.pi, 1e-08)\n', (2258, 2288), True, 'import numpy as np\n'), ((2373, 2412), 'numpy.isclose', 'np.isclose', (['self.endangle', 'np.pi', '(1e-08)'], {}), '(self.endangle, np.pi, 1e-08)\n', (2383, 2412), True, 'import numpy as np\n'), ((2431, 2471), 'numpy.isclose', 'np.isclose', (['self.endangle', '(-np.pi)', '(1e-08)'], {}), '(self.endangle, -np.pi, 1e-08)\n', (2441, 2471), True, 'import numpy as np\n'), ((11118, 11148), 'numpy.isclose', 'np.isclose', (['g[0]', 'upper_radius'], {}), '(g[0], upper_radius)\n', (11128, 11148), True, 'import numpy as np\n'), ((24659, 24708), 'numpy.isclose', 'np.isclose', (['d', 'self.radius'], {'rtol': '(0.075)', 'atol': 'atol'}), '(d, self.radius, rtol=0.075, atol=atol)\n', (24669, 24708), True, 'import numpy as np\n')] |
import torch.nn as nn
import torch
import numpy as np
class VNet(nn.Module):
def __init__(self, nb_classes, in_channels=1, depth=5,
start_filters=16, batchnorm=True, mode="AE", input_size=None):
assert mode in ['AE', 'classifier'], "Unknown mode selected, currently supported are: 'AE' and 'classifier'"
if mode == 'classifier' and (input_size is None or len(input_size) != 3):
raise ValueError('The input size must be set as HxWxD')
super(VNet, self).__init__()
self.mode = mode
self.input_size = input_size
self.nb_classes = nb_classes
self.in_channels = in_channels
self.start_filters = start_filters
if self.mode == "AE":
self.up = []
self.down = []
nconvs = [min(cnt+1, 3) for cnt in range(depth)] # Nb of convs in each Down module
# Create the encoder pathway
for cnt in range(depth):
in_channels = self.in_channels if cnt == 0 else out_channels
out_channels = self.start_filters * (2 ** cnt)
dconv = False if cnt == 0 else True # apply a down conv ?
self.down.append(
Down(in_channels, out_channels,
nconv=nconvs[cnt], dconv=dconv,
batchnorm=batchnorm))
if self.mode == "AE":
# Create the decoder pathway
# - careful! decoding only requires depth-1 blocks
for cnt in range(depth - 1):
in_channels = out_channels
out_channels = in_channels // 2
self.up.append(
Up(in_channels, out_channels,
nconv=nconvs[-1-cnt],
batchnorm=batchnorm))
# Add the list of modules to current module
self.down = nn.ModuleList(self.down)
if self.mode == "AE":
self.up = nn.ModuleList(self.up)
# Get ouptut segmentation
if self.mode == "AE":
self.final_layer = nn.Conv3d(out_channels, self.nb_classes, kernel_size=1, groups=1, stride=1)
else: # Classification
(h, w, d) = np.array(self.input_size) // 2**(depth -1)
self.final_layer = nn.Sequential(
nn.Linear(out_channels*h*w*d, 128),
nn.ReLU(True),
nn.Dropout(),
nn.Linear(128, 128),
nn.ReLU(True),
nn.Dropout(),
nn.Linear(128, self.nb_classes))
# Weight initialization
self.weight_initializer()
def weight_initializer(self):
for module in self.modules():
if isinstance(module, nn.ConvTranspose3d) or isinstance(module, nn.Conv3d):
nn.init.xavier_normal_(module.weight)
nn.init.constant_(module.bias, 0)
elif isinstance(module, nn.BatchNorm2d):
nn.init.constant_(module.weight, 1)
nn.init.constant_(module.bias, 0)
elif isinstance(module, nn.Linear):
nn.init.normal_(module.weight, 0, 0.01)
nn.init.constant_(module.bias, 0)
def forward(self, x):
encoder_outs = []
for module in self.down:
x = module(x)
encoder_outs.append(x)
encoder_outs = encoder_outs[:-1][::-1]
for cnt, module in enumerate(self.up):
x_up = encoder_outs[cnt]
x = module(x, x_up)
x = self.final_layer(x)
return x
class LUConv(nn.Module):
def __init__(self, in_channels, out_channels,
kernel_size=5, stride=1, padding=0,
batchnorm=True, bias=True, mode="conv"):
super(LUConv, self).__init__()
if mode == "conv": # Usual Conv
self.conv = nn.Conv3d(in_channels, out_channels, kernel_size, stride=stride, padding=padding, bias=bias)
elif mode == "transpose": # UpConv
self.conv = nn.ConvTranspose3d(in_channels, out_channels, kernel_size, stride=stride, padding=padding, bias=bias)
if batchnorm:
self.bn = nn.BatchNorm3d(out_channels)
self.relu = nn.ReLU(True)
self.ops = nn.Sequential(self.conv, self.bn, self.relu)
def forward(self, x):
x = self.ops(x)
return x
class NConvs(nn.Module):
def __init__(self, in_channels, out_channels, nconv=3,
kernel_size=5, stride=1, padding=0,
batchnorm=True, bias=True, mode="conv"):
super(NConvs, self).__init__()
self.ops = nn.Sequential(LUConv(in_channels, out_channels, kernel_size, stride, padding, batchnorm, bias, mode),
*[LUConv(out_channels, out_channels, kernel_size, stride, padding, batchnorm, bias, mode)
for _ in range(nconv-1)])
def forward(self, x):
x = self.ops(x)
return x
class Down(nn.Module):
def __init__(self, in_channels, out_channels, nconv=3, dconv=True, batchnorm=True):
super(Down, self).__init__()
self.dconv = dconv
self.in_channels = in_channels
if dconv:
self.down_conv = NConvs(in_channels, out_channels, 1, kernel_size=2, stride=2, batchnorm=batchnorm)
self.nconvs = NConvs(out_channels, out_channels, nconv, kernel_size=5, stride=1,
padding=2, batchnorm=batchnorm)
else:
self.nconvs = NConvs(in_channels, out_channels, nconv,
kernel_size=5, stride=1, padding=2, batchnorm=batchnorm)
def forward(self, x):
if self.dconv:
x_down = self.down_conv(x)
else:
x_down = x
x_out = self.nconvs(x_down)
# Add the input in order to learn only the residual
if self.in_channels == 1 or self.dconv:
x = x_out + x_down
else:
x = x_out
return x
class Up(nn.Module):
def __init__(self, in_channels, out_channels, nconv=3, batchnorm=True):
super(Up, self).__init__()
self.up_conv = NConvs(in_channels, out_channels, 1, kernel_size=2, stride=2, batchnorm=batchnorm, mode="transpose")
self.nconvs = NConvs(in_channels, out_channels, nconv, kernel_size=5, stride=1, padding=2, batchnorm=batchnorm)
def forward(self, x_down, x_up):
x_down = self.up_conv(x_down)
xcat = torch.cat((x_up, x_down), dim=1)
x = self.nconvs(xcat)
x = x + x_down
return x
| [
"torch.nn.ReLU",
"torch.nn.Dropout",
"torch.nn.ConvTranspose3d",
"torch.nn.init.constant_",
"torch.nn.ModuleList",
"torch.nn.Sequential",
"torch.nn.init.xavier_normal_",
"numpy.array",
"torch.nn.init.normal_",
"torch.nn.Linear",
"torch.nn.BatchNorm3d",
"torch.cat",
"torch.nn.Conv3d"
] | [((1836, 1860), 'torch.nn.ModuleList', 'nn.ModuleList', (['self.down'], {}), '(self.down)\n', (1849, 1860), True, 'import torch.nn as nn\n'), ((4131, 4144), 'torch.nn.ReLU', 'nn.ReLU', (['(True)'], {}), '(True)\n', (4138, 4144), True, 'import torch.nn as nn\n'), ((4164, 4208), 'torch.nn.Sequential', 'nn.Sequential', (['self.conv', 'self.bn', 'self.relu'], {}), '(self.conv, self.bn, self.relu)\n', (4177, 4208), True, 'import torch.nn as nn\n'), ((6384, 6416), 'torch.cat', 'torch.cat', (['(x_up, x_down)'], {'dim': '(1)'}), '((x_up, x_down), dim=1)\n', (6393, 6416), False, 'import torch\n'), ((1913, 1935), 'torch.nn.ModuleList', 'nn.ModuleList', (['self.up'], {}), '(self.up)\n', (1926, 1935), True, 'import torch.nn as nn\n'), ((2032, 2107), 'torch.nn.Conv3d', 'nn.Conv3d', (['out_channels', 'self.nb_classes'], {'kernel_size': '(1)', 'groups': '(1)', 'stride': '(1)'}), '(out_channels, self.nb_classes, kernel_size=1, groups=1, stride=1)\n', (2041, 2107), True, 'import torch.nn as nn\n'), ((3776, 3873), 'torch.nn.Conv3d', 'nn.Conv3d', (['in_channels', 'out_channels', 'kernel_size'], {'stride': 'stride', 'padding': 'padding', 'bias': 'bias'}), '(in_channels, out_channels, kernel_size, stride=stride, padding=\n padding, bias=bias)\n', (3785, 3873), True, 'import torch.nn as nn\n'), ((4082, 4110), 'torch.nn.BatchNorm3d', 'nn.BatchNorm3d', (['out_channels'], {}), '(out_channels)\n', (4096, 4110), True, 'import torch.nn as nn\n'), ((2163, 2188), 'numpy.array', 'np.array', (['self.input_size'], {}), '(self.input_size)\n', (2171, 2188), True, 'import numpy as np\n'), ((2264, 2304), 'torch.nn.Linear', 'nn.Linear', (['(out_channels * h * w * d)', '(128)'], {}), '(out_channels * h * w * d, 128)\n', (2273, 2304), True, 'import torch.nn as nn\n'), ((2312, 2325), 'torch.nn.ReLU', 'nn.ReLU', (['(True)'], {}), '(True)\n', (2319, 2325), True, 'import torch.nn as nn\n'), ((2339, 2351), 'torch.nn.Dropout', 'nn.Dropout', ([], {}), '()\n', (2349, 2351), True, 'import torch.nn as nn\n'), ((2365, 2384), 'torch.nn.Linear', 'nn.Linear', (['(128)', '(128)'], {}), '(128, 128)\n', (2374, 2384), True, 'import torch.nn as nn\n'), ((2398, 2411), 'torch.nn.ReLU', 'nn.ReLU', (['(True)'], {}), '(True)\n', (2405, 2411), True, 'import torch.nn as nn\n'), ((2425, 2437), 'torch.nn.Dropout', 'nn.Dropout', ([], {}), '()\n', (2435, 2437), True, 'import torch.nn as nn\n'), ((2451, 2482), 'torch.nn.Linear', 'nn.Linear', (['(128)', 'self.nb_classes'], {}), '(128, self.nb_classes)\n', (2460, 2482), True, 'import torch.nn as nn\n'), ((2728, 2765), 'torch.nn.init.xavier_normal_', 'nn.init.xavier_normal_', (['module.weight'], {}), '(module.weight)\n', (2750, 2765), True, 'import torch.nn as nn\n'), ((2782, 2815), 'torch.nn.init.constant_', 'nn.init.constant_', (['module.bias', '(0)'], {}), '(module.bias, 0)\n', (2799, 2815), True, 'import torch.nn as nn\n'), ((3936, 4041), 'torch.nn.ConvTranspose3d', 'nn.ConvTranspose3d', (['in_channels', 'out_channels', 'kernel_size'], {'stride': 'stride', 'padding': 'padding', 'bias': 'bias'}), '(in_channels, out_channels, kernel_size, stride=stride,\n padding=padding, bias=bias)\n', (3954, 4041), True, 'import torch.nn as nn\n'), ((2885, 2920), 'torch.nn.init.constant_', 'nn.init.constant_', (['module.weight', '(1)'], {}), '(module.weight, 1)\n', (2902, 2920), True, 'import torch.nn as nn\n'), ((2937, 2970), 'torch.nn.init.constant_', 'nn.init.constant_', (['module.bias', '(0)'], {}), '(module.bias, 0)\n', (2954, 2970), True, 'import torch.nn as nn\n'), ((3035, 3074), 'torch.nn.init.normal_', 'nn.init.normal_', (['module.weight', '(0)', '(0.01)'], {}), '(module.weight, 0, 0.01)\n', (3050, 3074), True, 'import torch.nn as nn\n'), ((3091, 3124), 'torch.nn.init.constant_', 'nn.init.constant_', (['module.bias', '(0)'], {}), '(module.bias, 0)\n', (3108, 3124), True, 'import torch.nn as nn\n')] |
"""
Filename: visualization.py
Purpose: Set of go-to plotting functions
Author: <NAME>
Date created: 28.11.2018
Possible problems:
1.
"""
import os
import numpy as np
from tractor.galaxy import ExpGalaxy
from tractor import EllipseE
from tractor.galaxy import ExpGalaxy
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from matplotlib.colors import LogNorm, SymLogNorm
from matplotlib.patches import Ellipse
from matplotlib.patches import Rectangle
from skimage.segmentation import find_boundaries
from astropy.visualization import hist
from scipy import stats
import config as conf
import matplotlib.cm as cm
import random
from time import time
from astropy.io import fits
import logging
logger = logging.getLogger('farmer.visualization')
# Random discrete color generator
colors = cm.rainbow(np.linspace(0, 1, 1000))
cidx = np.arange(0, 1000)
random.shuffle(cidx)
colors = colors[cidx]
def plot_background(brick, idx, band=''):
fig, ax = plt.subplots(figsize=(20,20))
vmin, vmax = brick.background_images[idx].min(), brick.background_images[idx].max()
vmin = -vmax
img = ax.imshow(brick.background_images[idx], cmap='RdGy', norm=SymLogNorm(linthresh=0.03))
# plt.colorbar(img, ax=ax)
out_path = os.path.join(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_background.pdf')
ax.axis('off')
ax.margins(0,0)
fig.savefig(out_path, dpi = 300, overwrite=True, pad_inches=0.0)
plt.close()
logger.info(f'Saving figure: {out_path}')
def plot_mask(brick, idx, band=''):
fig, ax = plt.subplots(figsize=(20,20))
img = ax.imshow(brick.masks[idx])
out_path = os.path.join(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_mask.pdf')
ax.axis('off')
ax.margins(0,0)
fig.savefig(out_path, dpi = 300, overwrite=True, pad_inches=0.0)
plt.close()
logger.info(f'Saving figure: {out_path}')
def plot_brick(brick, idx, band=''):
fig, ax = plt.subplots(figsize=(20,20))
backlevel, noisesigma = brick.backgrounds[idx]
vmin, vmax = np.max([backlevel + noisesigma, 1E-5]), brick.images[idx].max()
# vmin, vmax = brick.images[idx].min(), brick.images[idx].max()
if vmin > vmax:
logger.warning(f'{band} brick not plotted!')
return
vmin = -vmax
norm = SymLogNorm(linthresh=0.03)
img = ax.imshow(brick.images[idx], cmap='RdGy', origin='lower', norm=norm)
# plt.colorbar(img, ax=ax)
out_path = os.path.join(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_brick.pdf')
ax.axis('off')
ax.margins(0,0)
fig.savefig(out_path, dpi = 300, overwrite=True, pad_inches=0.0)
plt.close()
logger.info(f'Saving figure: {out_path}')
def plot_blob(myblob, myfblob):
fig, ax = plt.subplots(ncols=4, nrows=1+myfblob.n_bands, figsize=(5 + 5*myfblob.n_bands, 10), sharex=True, sharey=True)
back = myblob.backgrounds[0]
mean, rms = back[0], back[1]
noise = np.random.normal(mean, rms, size=myfblob.dims)
tr = myblob.solution_tractor
norm = LogNorm(np.max([mean + rms, 1E-5]), myblob.images.max(), clip='True')
img_opt = dict(cmap='Greys', norm=norm)
# img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
mmask = myblob.masks[0].copy()
mmask[mmask==1] = np.nan
ax[0, 0].imshow(myblob.images[0], **img_opt)
ax[0, 0].imshow(mmask, alpha=0.5, cmap='Greys')
ax[0, 1].imshow(myblob.solution_model_images[0] + noise, **img_opt)
ax[0, 2].imshow(myblob.images[0] - myblob.solution_model_images[0], cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[0, 3].imshow(myblob.solution_chi_images[0], cmap='RdGy', vmin = -7, vmax = 7)
ax[0, 0].set_ylabel(f'Detection ({myblob.bands[0]})')
ax[0, 0].set_title('Data')
ax[0, 1].set_title('Model')
ax[0, 2].set_title('Data - Model')
ax[0, 3].set_title('$\chi$-map')
band = myblob.bands[0]
for j, src in enumerate(myblob.solution_catalog):
try:
mtype = src.name
except:
mtype = 'PointSource'
flux = src.getBrightness().getFlux(band)
chisq = myblob.solved_chisq[j]
topt = dict(color=colors[j], transform = ax[0, 3].transAxes)
ystart = 0.99 - j * 0.4
ax[0, 3].text(1.05, ystart - 0.1, f'{j}) {mtype}', **topt)
ax[0, 3].text(1.05, ystart - 0.2, f' F({band}) = {flux:4.4f}', **topt)
ax[0, 3].text(1.05, ystart - 0.3, f' $\chi^{2}$ = {chisq:4.4f}', **topt)
objects = myblob.bcatalog[j]
e = Ellipse(xy=(objects['x'], objects['y']),
width=6*objects['a'],
height=6*objects['b'],
angle=objects['theta'] * 180. / np.pi)
e.set_facecolor('none')
e.set_edgecolor('red')
ax[0, 0].add_artist(e)
try:
for i in np.arange(myfblob.n_bands):
back = myfblob.backgrounds[i]
mean, rms = back[0], back[1]
noise = np.random.normal(mean, rms, size=myfblob.dims)
tr = myfblob.solution_tractor
# norm = LogNorm(np.max([mean + rms, 1E-5]), myblob.images.max(), clip='True')
# img_opt = dict(cmap='Greys', norm=norm)
img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[i+1, 0].imshow(myfblob.images[i], **img_opt)
ax[i+1, 1].imshow(myfblob.solution_model_images[i] + noise, **img_opt)
ax[i+1, 2].imshow(myfblob.images[i] - myfblob.solution_model_images[i], cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[i+1, 3].imshow(myfblob.solution_chi_images[i], cmap='RdGy', vmin = -7, vmax = 7)
ax[i+1, 0].set_ylabel(myfblob.bands[i])
band = myfblob.bands[i]
for j, src in enumerate(myfblob.solution_catalog):
try:
mtype = src.name
except:
mtype = 'PointSource'
flux = src.getBrightness().getFlux(band)
chisq = myfblob.solution_chisq[j, i]
Nres = myfblob.n_residual_sources[i]
topt = dict(color=colors[j], transform = ax[i+1, 3].transAxes)
ystart = 0.99 - j * 0.4
ax[i+1, 3].text(1.05, ystart - 0.1, f'{j}) {mtype}', **topt)
ax[i+1, 3].text(1.05, ystart - 0.2, f' F({band}) = {flux:4.4f}', **topt)
ax[i+1, 3].text(1.05, ystart - 0.3, f' $\chi^{2}$ = {chisq:4.4f}', **topt)
if Nres > 0:
ax[i+1, 3].text(1.05, ystart - 0.4, f'{Nres} residual sources found!', **topt)
res_x = myfblob.residual_catalog[i]['x']
res_y = myfblob.residual_catalog[i]['y']
for x, y in zip(res_x, res_y):
ax[i+1, 3].scatter(x, y, marker='+', color='r')
for s, src in enumerate(myfblob.solution_catalog):
x, y = src.pos
color = colors[s]
for i in np.arange(1 + myfblob.n_bands):
for j in np.arange(4):
ax[i,j].plot([x, x], [y - 10, y - 5], c=color)
ax[i,j].plot([x - 10, x - 5], [y, y], c=color)
except:
logger.warning('Could not plot multiwavelength diagnostic figures')
[[ax[i,j].set(xlim=(0,myfblob.dims[1]), ylim=(0,myfblob.dims[0])) for i in np.arange(myfblob.n_bands+1)] for j in np.arange(4)]
#fig.suptitle(f'Solution for {blob_id}')
fig.subplots_adjust(wspace=0.01, hspace=0, right=0.8)
if myblob._is_itemblob:
sid = myblob.bcatalog['source_id'][0]
fig.savefig(os.path.join(conf.PLOT_DIR, f'{myblob.brick_id}_B{myblob.blob_id}_S{sid}.pdf'))
else:
fig.savefig(os.path.join(conf.PLOT_DIR, f'{myblob.brick_id}_B{myblob.blob_id}.pdf'))
plt.close()
def plot_srcprofile(blob, src, sid, bands=None):
if bands is None:
band = conf.MODELING_NICKNAME
nickname = conf.MODELING_NICKNAME
bidx = [0,]
bands = [band,]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf')
elif (len(bands) == 1) & (bands[0] == conf.MODELING_NICKNAME):
band = conf.MODELING_NICKNAME
nickname = conf.MODELING_NICKNAME
bidx = [0,]
bands = [band,]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf')
else:
bidx = [blob._band2idx(b, bands=blob.bands) for b in bands]
if bands[0].startswith(conf.MODELING_NICKNAME):
nickname = conf.MODELING_NICKNAME
else:
nickname = conf.MULTIBAND_NICKNAME
if len(bands) > 1:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_srcprofile.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_srcprofile.pdf')
import matplotlib.backends.backend_pdf
pdf = matplotlib.backends.backend_pdf.PdfPages(outpath)
for idx, band in zip(bidx, bands):
if band == conf.MODELING_NICKNAME:
zpt = conf.MODELING_ZPT
rband = conf.MODELING_NICKNAME
elif band.startswith(conf.MODELING_NICKNAME):
band_name = band[len(conf.MODELING_NICKNAME)+1:]
# zpt = conf.MULTIBAND_ZPT[blob._band2idx(band_name)]
if band_name == conf.MODELING_NICKNAME:
zpt = conf.MODELING_ZPT
rband = band
else:
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band_name)]
rband = conf.MODELING_NICKNAME + '_' + band_name
else:
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band)]
rband = conf.MODELING_NICKNAME + '_' + band
# information
bid = blob.blob_id
bsrc = blob.bcatalog[blob.bcatalog['source_id'] == sid]
ra, dec = bsrc['RA'][0], bsrc['DEC'][0]
if nickname == conf.MODELING_NICKNAME:
xp0, yp0 = bsrc['x_orig'][0] - blob.subvector[1], bsrc['y_orig'][0] - blob.subvector[0]
else:
xp0, yp0 = bsrc['x_orig'][0] - blob.subvector[1] - blob.mosaic_origin[1] + conf.BRICK_BUFFER, bsrc['y_orig'][0] - blob.subvector[0] - blob.mosaic_origin[0] + conf.BRICK_BUFFER
xp, yp = src.pos[0], src.pos[1]
xps, yps = xp, yp
flux, flux_err = bsrc[f'FLUX_{band}'][0], bsrc[f'FLUXERR_{band}'][0]
mag, mag_err = bsrc[f'MAG_{band}'][0], bsrc[f'MAGERR_{band}'][0]
n_blob = bsrc['N_BLOB'][0]
chi2 = bsrc[f'CHISQ_{band}'][0]
snr = bsrc[f'SNR_{band}'][0]
is_resolved = False
if src.name not in ('PointSource', 'SimpleGalaxy'):
is_resolved = True
col = np.array(bsrc.colnames)[np.array([tcoln.startswith('REFF') for tcoln in bsrc.colnames])][0]
rband = col[len('REFF_'):]
reff, reff_err = np.exp(bsrc[f'REFF_{rband}'][0])*conf.PIXEL_SCALE, np.exp(bsrc[f'REFF_{rband}'][0])*bsrc[f'REFF_ERR_{rband}'][0]*2.303*conf.PIXEL_SCALE
ab, ab_err = bsrc[f'AB_{rband}'][0], bsrc[f'AB_ERR_{rband}'][0]
if ab == -99.0:
ab = -99
ab_err = -99
theta, theta_err = bsrc[f'THETA_{rband}'][0], bsrc[f'THETA_ERR_{rband}'][0]
if 'Sersic' in src.name:
nre, nre_err = bsrc[f'N_{rband}'][0], bsrc[f'N_ERR_{rband}'][0]
# images
img = blob.images[idx]
wgt = blob.weights[idx]
err = 1. / np.sqrt(wgt)
mask = blob.masks[idx]
seg = blob.segmap.copy()
seg[blob.segmap != sid] = 0
mod = blob.solution_model_images[idx]
chi = blob.solution_tractor.getChiImage(idx)
chi[blob.segmap != sid] = 0
res = img - mod
rms = np.median(blob.background_rms_images[idx])
xpix, ypix = np.nonzero(seg)
dx, dy = (np.max(xpix) - np.min(xpix)) / 2., (np.max(ypix) - np.min(ypix)) / 2.
buff = np.min([conf.BLOB_BUFFER, 10.])
xlim, ylim = np.array([-(dx + buff), (dx + buff)]) * conf.PIXEL_SCALE, np.array([-(dy + buff), (dy + buff)]) * conf.PIXEL_SCALE
h, w = np.shape(img)
dw, dh = w - xp - 1, h - yp - 1
extent = np.array([-xp, dw, -yp, dh]) * conf.PIXEL_SCALE
xp0, yp0 = (xp0 - xp) * conf.PIXEL_SCALE, (yp0 - yp) * conf.PIXEL_SCALE
xp, yp = 0., 0.
if is_resolved:
aeff = reff #* conf.PIXEL_SCALE
beff = reff / ab #* conf.PIXEL_SCALE
xa = xp + np.cos(np.deg2rad(90-theta)) * np.array([-1, 1]) * aeff
ya = yp + np.sin(np.deg2rad(90-theta)) * np.array([-1, 1]) * aeff
xb = xp + np.cos(np.deg2rad(theta)) * np.array([-1, 1]) * beff
yb = yp + np.sin(np.deg2rad(theta)) * np.array([1, -1]) * beff
# tests
res_seg = res[blob.segmap==sid].flatten()
try:
k2, p_norm = stats.normaltest(res_seg)
except:
k2, p_norm = -99, -99
chi_seg = chi[blob.segmap==sid].flatten()
chi_sig = np.std(chi_seg)
chi_mu = np.mean(chi_seg)
# plotting
fig, ax = plt.subplots(ncols=4, nrows=4, figsize=(15, 15))
# row 1 -- image, info
if rms > 0.95*np.nanmax(img):
normmin = 1.05*np.nanmin(abs(img))
else:
normmin = rms
normmax = 0.95*np.nanmax(img)
if normmin != normmax:
norm = LogNorm(normmin, normmax, clip='True')
else:
norm=None
ax[0,0].imshow(img, norm=norm, cmap='Greys', extent=extent)
ax[0,0].text(0.05, 1.03, band, transform=ax[0,0].transAxes)
ax[0,0].scatter(xp0, yp0, c='purple', marker='+', alpha=0.5)
ax[0,0].scatter(xp, yp, c='royalblue', marker='x', alpha=0.9)
ax[0,0].set(xlim=xlim, ylim=ylim)
ax[0,1].axis('off')
ax[0,2].axis('off')
ax[0,3].axis('off')
ax[0,1].text(0, 0.90,
s = f'Source: {sid} | Blob: {bid} | Brick: {blob.brick_id} | RA: {ra:6.6f}, Dec: {dec:6.6f}',
transform=ax[0,1].transAxes)
if is_resolved:
if 'Sersic' in src.name:
ax[0,1].text(0, 0.70,
s = f'{src.name} with Reff: {reff:3.3f}+/-{reff_err:3.3f}, n: {nre:3.3f}+/-{nre_err:3.3f}, A/B: {ab:3.3f}+/-{ab_err:3.3f}, Theta: {theta:3.3f}+/-{theta_err:3.3f}',
transform=ax[0,1].transAxes)
else:
ax[0,1].text(0, 0.70,
s = f'{src.name} with Reff: {reff:3.3f}+/-{reff_err:3.3f}, A/B: {ab:3.3f}+/-{ab_err:3.3f}, and Theta: {theta:3.3f}+/-{theta_err:3.3f}',
transform=ax[0,1].transAxes)
else:
ax[0,1].text(0, 0.70,
s = f'{src.name}',
transform=ax[0,1].transAxes)
ax[0,1].text(0, 0.50,
s = f'{band} | {flux:3.3f}+/-{flux_err:3.3f} uJy | {mag:3.3f}+/-{mag_err:3.3f} AB | S/N = {snr:3.3f}',
transform=ax[0,1].transAxes)
ax[0,1].text(0, 0.30,
s = f'Chi2/N: {chi2:3.3f} | N_blob: {n_blob} | '+r'$\mu(\chi)$'+f'={chi_mu:3.3f}, '+r'$\sigma(\chi)$'+f'={chi_sig:3.3f} | K2-test: {k2:3.3f}',
transform=ax[0,1].transAxes)
# row 2 -- image, weights, mask, segment
ax[1,0].imshow(img, vmin=-3*rms, vmax=3*rms, cmap='RdGy', extent=extent)
ax[1,0].text(0.05, 1.03, 'Image', transform=ax[1,0].transAxes)
ax[1,0].set(xlim=xlim, ylim=ylim)
ax[1,0].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[1,1].imshow(err, cmap='Greys', extent=extent)
ax[1,1].text(0.05, 1.03, r'med($\sigma$)'+f'={rms*10**(-0.4 * (zpt - 23.9)):5.5f} uJy', transform=ax[1,1].transAxes)
ax[1,1].set(xlim=xlim, ylim=ylim)
ax[1,1].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[1,2].imshow(mask, cmap='Greys', extent=extent)
ax[1,2].text(0.05, 1.03, 'Blob', transform=ax[1,2].transAxes)
ax[1,2].set(xlim=xlim, ylim=ylim)
ax[1,2].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[1,3].imshow(~seg, cmap='Greys', extent=extent)
ax[1,3].text(0.05, 1.03, 'Segment', transform=ax[1,3].transAxes)
ax[1,3].set(xlim=xlim, ylim=ylim)
ax[1,3].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[1,0].scatter(xp, yp, c='royalblue', marker='x')
ax[1,2].scatter(xp0, yp0, c='purple', marker='+', alpha=0.5)
ax[1,2].scatter(xp, yp, c='royalblue', marker='x', alpha=0.9)
ax[1,3].scatter(xp0, yp0, c='purple', marker='+', alpha=0.5)
ax[1,3].scatter(xp, yp, c='royalblue', marker='x', alpha=0.9)
ax[1,2].plot()
# row 3 -- image, model, residual, chi
ax[2,0].imshow(img/err, vmin=-3, vmax=3, cmap='RdGy', extent=extent)
ax[2,0].text(0.05, 1.03, 'S/N', transform=ax[2,0].transAxes)
ax[2,0].set(xlim=xlim, ylim=ylim)
ax[2,0].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
# ax[2,1].imshow(mod, vmin=-3*rms, vmax=3*rms, cmap='RdGy', extent=extent)
ax[2,1].imshow(mod, norm=norm, cmap='Greys', extent=extent)
ax[2,1].text(0.05, 1.03, 'Model', transform=ax[2,1].transAxes)
ax[2,1].set(xlim=xlim, ylim=ylim)
ax[2,1].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[2,2].imshow(res, vmin=-3*rms, vmax=3*rms, cmap='RdGy', extent=extent)
ax[2,2].text(0.05, 1.03, 'Residual', transform=ax[2,2].transAxes)
ax[2,2].set(xlim=xlim, ylim=ylim)
ax[2,2].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
ax[2,3].imshow(chi, vmin=-3, vmax=3, cmap='RdGy', extent=extent)
ax[2,3].text(0.05, 1.03, r'$\chi$', transform=ax[2,3].transAxes)
ax[2,3].set(xlim=xlim, ylim=ylim)
ax[2,3].contour(img, levels=np.arange(2*rms, np.min([5*rms, np.max(img)]), rms), colors='royalblue', extent=extent, alpha=0.5)
if is_resolved:
ax[2,0].plot(xa, ya, c='royalblue', alpha=0.7)
ax[2,0].plot(xb, yb, c='royalblue', alpha=0.7)
ax[2,1].plot(xa, ya, c='royalblue', alpha=0.7)
ax[2,1].plot(xb, yb, c='royalblue', alpha=0.7)
ax[2,2].plot(xa, ya, c='royalblue', alpha=0.7)
ax[2,2].plot(xb, yb, c='royalblue', alpha=0.7)
ax[2,3].plot(xa, ya, c='royalblue', alpha=0.7)
ax[2,3].plot(xb, yb, c='royalblue', alpha=0.7)
else:
ax[2,0].scatter(xp, yp, c='royalblue', marker='x', alpha=0.7)
ax[2,1].scatter(xp, yp, c='royalblue', marker='x', alpha=0.7)
ax[2,2].scatter(xp, yp, c='royalblue', marker='x', alpha=0.7)
ax[2,3].scatter(xp, yp, c='royalblue', marker='x', alpha=0.7)
# row 4 -- psf, x-slice, y-slice, hist
psfmodel = blob.psfimg[band]
xax = np.arange(-np.shape(psfmodel)[0]/2 + 0.5, np.shape(psfmodel)[0]/2 + 0.5)
[ax[3,0].plot(xax * 0.15, psfmodel[x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(psfmodel)[0])]
ax[3,0].axvline(0, ls='dotted', c='k')
ax[3,0].set(xlim=(-5, 5), yscale='log', ylim=(1E-6, 1E-1), xlabel='arcsec')
ax[3,0].text(0.05, 1.03, 'PSF', transform=ax[3,0].transAxes)
# x slice
imgx = blob.images[idx][:, int(xps)]
errx = 1./np.sqrt(blob.weights[idx][:, int(xps)])
modx = blob.solution_model_images[idx][:, int(xps)]
sign = 1
if bsrc[f'RAWFLUX_{band}'][0] < 0:
sign = -1
modxlo = blob.solution_model_images[idx][:, int(xps)] / bsrc[f'RAWFLUX_{band}'][0] * (bsrc[f'RAWFLUX_{band}'][0] - sign * bsrc[f'RAWFLUXERR_{band}'][0])
modxhi = blob.solution_model_images[idx][:, int(xps)] / bsrc[f'RAWFLUX_{band}'][0] * (bsrc[f'RAWFLUX_{band}'][0] + sign * bsrc[f'RAWFLUXERR_{band}'][0])
resx = imgx - modx
# y slice
imgy = blob.images[idx][int(yps), :]
erry = 1./np.sqrt(blob.weights[idx][int(yps), :])
mody = blob.solution_model_images[idx][int(yps), :]
if bsrc[f'RAWFLUX_{band}'][0] < 0:
sign = -1
modylo = blob.solution_model_images[idx][int(yps), :] / bsrc[f'RAWFLUX_{band}'][0] * (bsrc[f'RAWFLUX_{band}'][0] - sign * bsrc[f'RAWFLUXERR_{band}'][0])
modyhi = blob.solution_model_images[idx][int(yps), :] / bsrc[f'RAWFLUX_{band}'][0] * (bsrc[f'RAWFLUX_{band}'][0] + sign * bsrc[f'RAWFLUXERR_{band}'][0])
resy = imgy - mody
ylim = (0.9*np.min([np.min(imgx), np.min(imgy)]), 1.1*np.max([np.max(imgx), np.max(imgy)]))
xax = np.linspace(extent[2], extent[3]+conf.PIXEL_SCALE, len(imgx))
ax[3,2].errorbar(xax, imgx, yerr=errx, c='k')
ax[3,2].plot(xax, modx, c='r')
ax[3,2].fill_between(xax, modxlo, modxhi, color='r', alpha=0.3)
ax[3,2].plot(xax, resx, c='g')
ax[3,2].axvline(0, ls='dotted', c='k')
ax[3,2].set(ylim =ylim, xlabel='arcsec', xlim=xlim)
ax[3,2].text(0.05, 1.03, 'Y', transform=ax[3,2].transAxes)
yax = np.linspace(extent[0], extent[1]+conf.PIXEL_SCALE, len(imgy))
ax[3,1].errorbar(yax, imgy, yerr=erry, c='k')
ax[3,1].plot(yax, mody, c='r')
ax[3,1].fill_between(yax, modylo, modyhi, color='r', alpha=0.3)
ax[3,1].plot(yax, resy, c='g')
ax[3,1].axvline(0, ls='dotted', c='k')
ax[3,1].set(ylim=ylim, xlabel='arcsec', xlim=xlim)
ax[3,1].text(0.05, 1.03, 'X', transform=ax[3,1].transAxes)
hist(chi_seg, ax=ax[3,3], bins='freedman', histtype='step', density=True)
ax[3,3].axvline(0, ls='dotted', color='grey')
ax[3,3].text(0.05, 1.03, 'Residual '+r'$\sigma(\chi)$'+f'={chi_sig:3.3f}', transform=ax[3,3].transAxes)
ax[3,3].set(xlim=(-10, 10), xlabel=r'$\chi$')
ax[3,3].axvline(chi_mu, c='royalblue', ls='dashed')
ax[3,3].axvline(0, c='grey', ls='dashed', alpha=0.3)
ax[3,3].axvline(chi_mu-chi_sig, c='royalblue', ls='dotted')
ax[3,3].axvline(chi_mu+chi_sig, c='royalblue', ls='dotted')
ax[3,3].axvline(-1, c='grey', ls='dotted', alpha=0.3)
ax[3,3].axvline(1, c='grey', ls='dotted', alpha=0.3)
pdf.savefig(fig)
plt.close()
logger.info(f'Saving figure: {outpath}')
pdf.close()
def plot_apertures(blob, band=None):
pass
def plot_iterblob(blob, tr, iteration, bands=None):
if blob._is_itemblob:
sid = blob.bcatalog['source_id'][0]
if bands is None:
band = conf.MODELING_NICKNAME
nickname = conf.MODELING_NICKNAME
bidx = [0,]
bands = [band,]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
else:
bidx = [blob._band2idx(b, bands=blob.bands) for b in bands]
if bands[0].startswith(conf.MODELING_NICKNAME):
nickname = conf.MODELING_NICKNAME
else:
nickname = conf.MULTIBAND_NICKNAME
if len(bands) > 1:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
else:
if bands is None:
band = conf.MODELING_NICKNAME
nickname = conf.MODELING_NICKNAME
bidx = [0,]
bands = [band,]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
else:
bidx = [blob._band2idx(b, bands=blob.bands) for b in bands]
if bands[0].startswith(conf.MODELING_NICKNAME):
nickname = conf.MODELING_NICKNAME
else:
nickname = conf.MULTIBAND_NICKNAME
if len(bands) > 1:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf')
import matplotlib.backends.backend_pdf
pdf = matplotlib.backends.backend_pdf.PdfPages(outpath)
for idx, band in zip(bidx, bands):
if band == conf.MODELING_NICKNAME:
zpt = conf.MODELING_ZPT
elif band.startswith(conf.MODELING_NICKNAME):
band_name = band[len(conf.MODELING_NICKNAME)+1:]
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band_name)]
else:
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band)]
cat = tr.getCatalog()
xp, yp = [src.pos[0] for src in cat], [src.pos[1] for src in cat]
back = blob.background_images[idx]
back_rms = blob.background_rms_images[idx]
mean, rms = np.nanmean(back), np.nanmean(back_rms)
img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
# image
img = blob.images[idx]
# model
mod = tr.getModelImage(idx)
# residual
res = img - mod
# chi2
chi2 = tr.getChiImage(idx)
fig, ax = plt.subplots(ncols=4)
ax[0].imshow(img, **img_opt)
ax[1].imshow(mod, **img_opt)
ax[2].imshow(res, **img_opt)
ax[3].imshow(chi2, cmap='RdGy', vmin=-5, vmax=5)
fig.suptitle(f'Blob {blob.blob_id} | {band} | iter: {iteration}')
[ax[i].scatter(xp, yp, marker='x', c='royalblue') for i in np.arange(4)]
[ax[i].set_title(title, fontsize=20) for i, title in enumerate(('Image', 'Model', 'Image-Model', '$\chi^{2}$'))]
pdf.savefig(fig)
plt.close()
logger.info(f'Saving figure: {outpath}')
pdf.close()
def plot_modprofile(blob, band=None):
if band is None:
band = conf.MODELING_NICKNAME
idx = 0
else:
idx = blob._band2idx(band, bands=blob.bands)
psfmodel = blob.psfimg[band]
back = blob.background_images[idx]
back_rms = blob.background_rms_images[idx]
mean, rms = np.nanmean(back), np.nanmean(back_rms)
noise = np.random.normal(mean, rms, size=blob.dims)
tr = blob.solution_tractor
norm = LogNorm(mean + 3*rms, blob.images[idx].max(), clip='True')
img_opt = dict(cmap='Greys', norm=norm)
img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
xlim = (-np.shape(blob.images[idx])[1]/2, np.shape(blob.images[idx])[1]/2)
fig, ax = plt.subplots(ncols = 5, nrows = 2, figsize=(20,10))
ax[1,0].imshow(blob.images[idx], **img_opt)
ax[1,1].imshow(blob.solution_model_images[idx], **img_opt)
residual = blob.images[idx] - blob.solution_model_images[idx]
ax[1,2].imshow(residual, **img_opt)
xax = np.arange(-np.shape(blob.images[idx])[1]/2, np.shape(blob.images[idx])[1]/2)
[ax[0,0].plot(xax * 0.15, blob.images[idx][x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(blob.images[idx])[0])]
ax[0,0].axvline(0, ls='dotted', c='k')
ax[0,0].set(yscale='log', xlabel='arcsec')
xax = np.arange(-np.shape(blob.solution_model_images[idx])[1]/2, np.shape(blob.solution_model_images[idx])[1]/2)
[ax[0,1].plot(xax * 0.15, blob.solution_model_images[idx][x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(blob.solution_model_images[idx])[0])]
ax[0,1].axvline(0, ls='dotted', c='k')
ax[0,1].set(yscale='log', xlabel='arcsec')
xax = np.arange(-np.shape(residual)[1]/2, np.shape(residual)[1]/2)
[ax[0,2].plot(xax * 0.15, residual[x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(residual)[0])]
ax[0,2].axvline(0, ls='dotted', c='k')
ax[0,2].set(yscale='log', xlabel='arcsec')
norm = LogNorm(1e-5, 0.1*np.nanmax(psfmodel), clip='True')
img_opt = dict(cmap='Blues', norm=norm)
ax[1,3].imshow(psfmodel, norm=norm, extent=0.15 *np.array([-np.shape(psfmodel)[0]/2, np.shape(psfmodel)[0]/2, -np.shape(psfmodel)[0]/2, np.shape(psfmodel)[0]/2,]))
ax[1,3].set(xlim=xlim, ylim=xlim)
xax = np.arange(-np.shape(psfmodel)[0]/2 + 0.5, np.shape(psfmodel)[0]/2 + 0.5)
[ax[0,3].plot(xax * 0.15, psfmodel[x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(psfmodel)[0])]
ax[0,3].axvline(0, ls='dotted', c='k')
ax[0,3].set(xlim=xlim, yscale='log', ylim=(1E-6, 1E-1), xlabel='arcsec')
for j, src in enumerate(blob.solution_catalog):
try:
mtype = src.name
except:
mtype = 'PointSource'
flux = src.getBrightness().getFlux(band)
chisq = blob.solution_chisq[j, idx]
band = band.replace(' ', '_')
if band == conf.MODELING_NICKNAME:
zpt = conf.MODELING_ZPT
elif band.startswith(conf.MODELING_NICKNAME):
band_name = band[len(conf.MODELING_NICKNAME)+1:]
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band_name)]
else:
zpt = conf.MULTIBAND_ZPT[blob._band2idx(band)]
mag = zpt - 2.5 * np.log10(flux)
topt = dict(color=colors[j], transform = ax[0, 3].transAxes)
ystart = 0.99 - j * 0.5
ax[0, 4].text(1.05, ystart - 0.1, f'{j}) {mtype}', **topt)
ax[0, 4].text(1.05, ystart - 0.2, f' F({band}) = {flux:4.4f}', **topt)
ax[0, 4].text(1.05, ystart - 0.3, f' M({band}) = {mag:4.4f}', **topt)
ax[0, 4].text(1.05, ystart - 0.4, f' zpt({band}) = {zpt:4.4f}', **topt)
ax[0, 4].text(1.05, ystart - 0.5, f' $\chi^{2}$ = {chisq:4.4f}', **topt)
ax[0, 4].axis('off')
ax[1, 4].axis('off')
for i in np.arange(3):
ax[0, i].set(xlim=(0.15*xlim[0], 0.15*xlim[1]), ylim=(np.nanmedian(blob.images[idx]), blob.images[idx].max()))
# ax[1, i].set(xlim=(-15, 15), ylim=(-15, 15))
ax[0, 3].set(xlim=(0.15*xlim[0], 0.15*xlim[1]))
if blob._is_itemblob:
sid = blob.bcatalog['source_id'][0]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_debugprofile.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{band}_debugprofile.pdf')
logger.info(f'Saving figure: {outpath}')
fig.savefig(outpath)
plt.close()
def plot_xsection(blob, band, src, sid):
if band is None:
band = conf.MODELING_NICKNAME
idx = 0
else:
idx = blob._band2idx(band, bands=blob.bands)
back = blob.background_images[idx]
back_rms = blob.background_rms_images[idx]
mean, rms = np.nanmean(back), np.nanmean(back_rms)
fig, ax = plt.subplots(ncols=2)
posx, posy = src.pos[0], src.pos[1]
try:
# x slice
imgx = blob.images[idx][:, int(posx)]
errx = 1/np.sqrt(blob.weights[idx][:, int(posx)])
modx = blob.solution_model_images[idx][:, int(posx)]
resx = imgx - modx
# y slice
imgy = blob.images[idx][int(posy), :]
erry = 1/np.sqrt(blob.weights[idx][int(posy), :])
mody = blob.solution_model_images[idx][int(posy), :]
resy = imgy - mody
except:
plt.close()
logger.warning('Could not make plot -- object may have escaped?')
return
# idea: show areas outside segment in grey
ylim = (0.9*np.min([np.min(imgx), np.min(imgy)]), 1.1*np.max([np.max(imgx), np.max(imgy)]))
xax = np.arange(-np.shape(blob.images[idx])[0]/2, np.shape(blob.images[idx])[0]/2) * conf.PIXEL_SCALE
ax[0].errorbar(xax, imgx, yerr=errx, c='k')
ax[0].plot(xax, modx, c='r')
ax[0].plot(xax, resx, c='g')
ax[0].axvline(0, ls='dotted', c='k')
ax[0].set(ylim =ylim, xlabel='arcsec')
yax = np.arange(-np.shape(blob.images[idx])[1]/2, np.shape(blob.images[idx])[1]/2) * conf.PIXEL_SCALE
ax[1].errorbar(yax, imgy, yerr=erry, c='k')
ax[1].plot(yax, mody, c='r')
ax[1].plot(yax, resy, c='g')
ax[1].axvline(0, ls='dotted', c='k')
ax[1].set(ylim=ylim, xlabel='arcsec')
# for j, src in enumerate(blob.solution_catalog):
# try:
# mtype = src.name
# except:
# mtype = 'PointSource'
# flux = src.getBrightness().getFlux(band)
# chisq = blob.solution_chisq[j, idx]
# band = band.replace(' ', '_')
# if band == conf.MODELING_NICKNAME:
# zpt = conf.MODELING_ZPT
# else:
# zpt = conf.MULTIBAND_ZPT[idx]
# mag = zpt - 2.5 * np.log10(flux)
# topt = dict(color=colors[j], transform = ax[0, 3].transAxes)
# ystart = 0.99 - j * 0.4
# ax[0, 4].text(1.05, ystart - 0.1, f'{j}) {mtype}', **topt)
# ax[0, 4].text(1.05, ystart - 0.2, f' F({band}) = {flux:4.4f}', **topt)
# ax[0, 4].text(1.05, ystart - 0.3, f' M({band}) = {mag:4.4f}', **topt)
# ax[0, 4].text(1.05, ystart - 0.4, f' $\chi^{2}$ = {chisq:4.4f}', **topt)
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_xsection.pdf')
logger.info(f'Saving figure: {outpath}')
fig.savefig(outpath)
plt.close()
def plot_detblob(blob, fig=None, ax=None, band=None, level=0, sublevel=0, final_opt=False, init=False):
if band is None:
idx = 0
band = ''
else:
# print(blob.bands)
# print(band)
idx = np.argwhere(np.array(blob.bands) == band)[0][0]
back = blob.background_images[idx]
rms = blob.background_rms_images[idx]
mean, rms = np.nanmean(back), np.nanmean(rms)
noise = np.random.normal(mean, rms, size=blob.dims)
tr = blob.solution_tractor
norm = LogNorm(np.max([mean + rms, 1E-5]), blob.images.max(), clip='True')
img_opt = dict(cmap='Greys', norm=norm)
img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
# Init
if fig is None:
plt.ioff()
fig, ax = plt.subplots(figsize=(24,48), ncols=6, nrows=13)
# Detection image
ax[0,0].imshow(blob.images[idx], **img_opt)
[ax[0,i].axis('off') for i in np.arange(1, 6)]
if blob.n_sources == 1:
objects = blob.bcatalog
e = Ellipse(xy=(objects['x'], objects['y']),
width=6*objects['a'],
height=6*objects['b'],
angle=objects['theta'] * 180. / np.pi)
e.set_facecolor('none')
e.set_edgecolor(colors[0])
ax[0, 0].add_artist(e)
else:
for j, src in enumerate(blob.bcatalog):
objects = blob.bcatalog[j]
e = Ellipse(xy=(objects['x'], objects['y']),
width=6*objects['a'],
height=6*objects['b'],
angle=objects['theta'] * 180. / np.pi)
e.set_facecolor('none')
e.set_edgecolor(colors[j])
ax[0, 0].add_artist(e)
ax[0,1].text(0.1, 0.9, f'Blob #{blob.blob_id}', transform=ax[0,1].transAxes)
ax[0,1].text(0.1, 0.8, f'{blob.n_sources} source(s)', transform=ax[0,1].transAxes)
[ax[1,i+1].set_title(title, fontsize=20) for i, title in enumerate(('Model', 'Model+Noise', 'Image-Model', '$\chi^{2}$', 'Residuals'))]
if blob._is_itemblob:
sid = blob.bcatalog['source_id'][0]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')
fig.savefig(outpath)
logger.info(f'Saving figure: {outpath}')
elif final_opt:
nrow = 4 * level + 2* sublevel + 2
[[ax[i,j].axis('off') for i in np.arange(nrow+1, 11)] for j in np.arange(0, 6)]
ax[11,0].axis('off')
residual = blob.images[idx] - blob.pre_solution_model_images[idx]
ax[11,1].imshow(blob.pre_solution_model_images[idx], **img_opt)
ax[11,2].imshow(blob.pre_solution_model_images[idx] + noise, **img_opt)
ax[11,3].imshow(residual, cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[11,4].imshow(blob.tr.getChiImage(idx), cmap='RdGy', vmin = -5, vmax = 5)
bins = np.linspace(np.nanmin(residual), np.nanmax(residual), 30)
minx, maxx = 0, 0
for i, src in enumerate(blob.bcatalog):
res_seg = residual[blob.segmap==src['source_id']].flatten()
ax[11,5].hist(res_seg, bins=20, histtype='step', color=colors[i], density=True)
resmin, resmax = np.nanmin(res_seg), np.nanmax(res_seg)
if resmin < minx:
minx = resmin
if resmax > maxx:
maxx = resmax
ax[11,5].set_xlim(minx, maxx)
ax[11,5].axvline(0, c='grey', ls='dotted')
ax[11,5].set_ylim(bottom=0)
ax[12,0].axis('off')
residual = blob.images[idx] - blob.solution_model_images[idx]
ax[12,1].imshow(blob.solution_model_images[idx], **img_opt)
ax[12,2].imshow(blob.solution_model_images[idx] + noise, **img_opt)
ax[12,3].imshow(residual, cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[12,4].imshow(blob.tr.getChiImage(idx), cmap='RdGy', vmin = -5, vmax = 5)
ax[12,1].set_ylabel('Solution')
bins = np.linspace(np.nanmin(residual), np.nanmax(residual), 30)
minx, maxx = 0, 0
for i, src in enumerate(blob.bcatalog):
res_seg = residual[blob.segmap==src['source_id']].flatten()
ax[12,5].hist(res_seg, bins=20, histtype='step', color=colors[i], density=True)
resmin, resmax = np.nanmin(res_seg), np.nanmax(res_seg)
if resmin < minx:
minx = resmin
if resmax > maxx:
maxx = resmax
ax[12,5].set_xlim(minx, maxx)
ax[12,5].axvline(0, c='grey', ls='dotted')
ax[12,5].set_ylim(bottom=0)
# Solution params
for i, src in enumerate(blob.solution_catalog):
ax[1,0].text(0.1, 0.8 - 0.4*i, f'#{blob.bcatalog[i]["source_id"]} Model:{src.name}', color=colors[i], transform=ax[1,0].transAxes)
ax[1,0].text(0.1, 0.8 - 0.4*i - 0.1, f' Flux: {src.brightness[0]:3.3f}', color=colors[i], transform=ax[1,0].transAxes)
ax[1,0].text(0.1, 0.8 - 0.4*i - 0.2, ' '+r'$\chi^{2}$/N:'+f'{blob.solution_chisq[i,0]:3.3f}', color=colors[i], transform=ax[1,0].transAxes)
#fig.subplots_adjust(wspace=0, hspace=0)
if blob._is_itemblob:
sid = blob.bcatalog['source_id'][0]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')
fig.savefig(outpath)
plt.close()
logger.info(f'Saving figure: {outpath}')
else:
if conf.DECISION_TREE == 1:
if init:
nrow = 4 * level + 2 * sublevel + 1
else:
nrow = 4 * level + 2 * sublevel + 2
elif conf.DECISION_TREE == 2:
if level == 0:
if sublevel == 0:
nrow = 1
if sublevel == 1:
nrow = 3
if level == 1:
if sublevel == 0:
nrow = 5
if level == 2:
if sublevel == 0:
nrow = 7
if level == 3:
if sublevel == 0:
nrow = 9
if not init:
nrow += 1
residual = blob.images[idx] - blob.tr.getModelImage(idx)
ax[nrow,0].axis('off')
ax[nrow,1].imshow(blob.tr.getModelImage(idx), **img_opt)
ax[nrow,2].imshow(blob.tr.getModelImage(idx) + noise, **img_opt)
ax[nrow,3].imshow(residual, cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[nrow,4].imshow(blob.tr.getChiImage(idx), cmap='RdGy', vmin = -5, vmax = 5)
if conf.DECISION_TREE == 1:
models = {1:'PointSource', 3:'SimpleGalaxy', 5:'ExpGalaxy', 7:'DevGalaxy', 9:'CompositeGalaxy'}
elif conf.DECISION_TREE == 2:
models = {1:'PointSource', 3:'SimpleGalaxy', 5:'SersicGalaxy', 7:'SersicCoreGalaxy', 9:'CompositeGalaxy'}
if init:
ax[nrow,1].set_ylabel(models[nrow])
bins = np.linspace(np.nanmin(residual), np.nanmax(residual), 30)
minx, maxx = 0, 0
for i, src in enumerate(blob.bcatalog):
if np.shape(residual) != np.shape(blob.segmap):
plt.figure()
plt.imshow(blob.segmap, cmap='Greys', norm=LogNorm())
plt.savefig(os.path.join(conf.PLOT_DIR,'debug_segmap.pdf'))
plt.figure()
plt.imshow(residual, cmap='Greys', norm=LogNorm())
plt.savefig(os.path.join(conf.PLOT_DIR,'debug_residual.pdf'))
res_seg = residual[blob.segmap==src['source_id']].flatten()
ax[nrow,5].hist(res_seg, histtype='step', color=colors[i], density=True)
resmin, resmax = np.nanmin(res_seg), np.nanmax(res_seg)
if resmin < minx:
minx = resmin
if resmax > maxx:
maxx = resmax
if not init:
ax[nrow,4].text(0.02, 0.9 - 0.1*i, r'$\chi^{2}$/N'+f'={blob.rchisq[i, level, sublevel]:2.2f} | BIC={blob.bic[i, level, sublevel]:2.2f}',
color=colors[i], transform=ax[nrow,4].transAxes)
ax[nrow,5].set_xlim(minx, maxx)
ax[nrow,5].axvline(0, c='grey', ls='dotted')
ax[nrow,5].set_ylim(bottom=0)
for i, src in enumerate(blob.bcatalog):
x, y = src['x'], src['y']
color = colors[i]
if not blob._solved[i]:
ax[nrow,1].plot([x, x], [y - 10, y - 5], ls='dotted', c=color)
ax[nrow,1].plot([x - 10, x - 5], [y, y], ls='dotted', c=color)
else:
ax[nrow,1].plot([x, x], [y - 10, y - 5], c=color)
ax[nrow,1].plot([x - 10, x - 5], [y, y], c=color)
if blob._is_itemblob:
sid = blob.bcatalog['source_id'][0]
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf')
else:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')
fig.savefig(outpath)
logger.info(f'Saving figure: {outpath}')
return fig, ax
def plot_fblob(blob, band, fig=None, ax=None, final_opt=False, debug=False):
idx = np.argwhere(blob.bands == band)[0][0]
back = blob.backgrounds[idx]
mean, rms = back[0], back[1]
noise = np.random.normal(mean, rms, size=blob.dims)
tr = blob.solution_tractor
norm = LogNorm(np.max([mean + rms, 1E-5]), 0.98*blob.images.max(), clip='True')
img_opt = dict(cmap='Greys', norm=norm)
img_opt = dict(cmap='RdGy', vmin=-5*rms, vmax=5*rms)
if final_opt:
ax[2,0].axis('off')
residual = blob.images[idx] - blob.solution_model_images[idx]
ax[2,1].imshow(blob.solution_model_images[idx], **img_opt)
ax[2,2].imshow(blob.solution_model_images[idx] + noise, **img_opt)
ax[2,3].imshow(residual, cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[2,4].imshow(blob.tr.getChiImage(idx), cmap='RdGy', vmin = -5, vmax = 5)
ax[2,1].set_ylabel('Solution')
bins = np.arange(np.nanpercentile(residua, 5), np.nanpercentile(residual, 95), 0.1)
minx, maxx = 0, 0
for i, src in enumerate(blob.bcatalog):
img_seg = blob.images[idx][blob.segmap==src['source_id']].flatten()
ax[2,5].hist(img_seg, bins=bins, linestyle='dotted', histtype='step', color=colors[i], density=True)
res_seg = residual[blob.segmap==src['source_id']].flatten()
ax[2,5].hist(res_seg, bins=bins, histtype='step', color=colors[i], density=True)
resmin, resmax = np.nanpercentile(res_seg, 5), np.nnanpercentile(res_seg, 95)
if resmin < minx:
minx = resmin
if resmax > maxx:
maxx = resmax
ax[2,5].set_xlim(-5, 5) #minx, maxx)
ax[2,5].axvline(0, c='grey', ls='dotted')
ax[2,5].set_ylim(bottom=0)
dof = '/N'
# Solution params
for i, src in enumerate(blob.solution_catalog):
original_zpt = np.array(conf.MULTIBAND_ZPT)[idx]
target_zpt = 23.9
flux_ujy = src.getBrightness().getFlux(band) * 10 ** (0.4 * (target_zpt - original_zpt))
flux_var = blob.forced_variance
fluxerr_ujy = np.sqrt(flux_var[i].brightness.getParams()[idx]) * 10**(0.4 * (target_zpt - original_zpt))
ax[1,0].text(0.1, 0.8 - 0.4*i, f'#{blob.bcatalog[i]["source_id"]} Model:{src.name}', color=colors[i], transform=ax[1,0].transAxes)
ax[1,0].text(0.1, 0.8 - 0.4*i - 0.1, f' Flux: {flux_ujy:3.3f}+\-{fluxerr_ujy:3.3f} uJy', color=colors[i], transform=ax[1,0].transAxes)
ax[1,0].text(0.1, 0.8 - 0.4*i - 0.2, f' Chi2{dof}: {blob.solution_chisq[i,idx]:3.3f}', color=colors[i], transform=ax[1,0].transAxes)
#fig.subplots_adjust(wspace=0, hspace=0)
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}.pdf')
fig.savefig(outpath)
plt.close()
logger.info(f'Saving figure: {outpath}')
else:
# Init
if fig is None:
plt.ioff()
fig, ax = plt.subplots(figsize=(24,8), ncols=6, nrows=3)
# Detection image
ax[0,0].imshow(blob.images[idx], **img_opt)
[ax[0,i].axis('off') for i in np.arange(1, 6)]
for j, src in enumerate(blob.bcatalog):
objects = blob.bcatalog[j]
position = [src[f'x'], src[f'y']]
position[0] -= (blob.subvector[1] + blob.mosaic_origin[1] - conf.BRICK_BUFFER)
position[1] -= (blob.subvector[0] + blob.mosaic_origin[0] - conf.BRICK_BUFFER)
e = Ellipse(xy=(position[0], position[1]),
width=6*objects['a'],
height=6*objects['b'],
angle=objects['theta'] * 180. / np.pi)
e.set_facecolor('none')
e.set_edgecolor(colors[j])
ax[0, 0].add_artist(e)
ax[0,1].text(0.1, 0.9, f'{band} | Blob #{blob.blob_id}', transform=ax[0,1].transAxes)
ax[0,1].text(0.1, 0.8, f'{blob.n_sources} source(s)', transform=ax[0,1].transAxes)
[ax[0,j].axis('off') for j in np.arange(1, 6)]
ax[1,0].axis('off')
residual = blob.images[idx] - blob.tr.getModelImage(idx)
ax[1,0].axis('off')
ax[1,1].imshow(blob.tr.getModelImage(idx), **img_opt)
ax[1,2].imshow(blob.tr.getModelImage(idx) + noise, **img_opt)
ax[1,3].imshow(residual, cmap='RdGy', vmin=-5*rms, vmax=5*rms)
ax[1,4].imshow(blob.tr.getChiImage(idx), cmap='RdGy', vmin = -5, vmax = 5)
bins = np.linspace(np.nanmin(residual), np.nanmax(residual), 30)
minx, maxx = 0, 0
for i, src in enumerate(blob.bcatalog):
res_seg = residual[blob.segmap==src['source_id']].flatten()
try:
k2, p_norm = stats.normaltest(res_seg)
except:
k2, p_norm = -99, -99
ax[1,5].hist(res_seg, bins=20, histtype='step', color=colors[i], density=True)
resmin, resmax = np.nanmin(res_seg), np.nanmax(res_seg)
if resmin < minx:
minx = resmin
if resmax > maxx:
maxx = resmax
ax[1,5].text(0.05, 0.9 - 0.1*i, s=f"k={k2:3.3f} (p={p_norm:2.2f})", trasnform=ax[1,5].transAxes)
ax[1,5].set_xlim(minx, maxx)
ax[1,5].axvline(0, c='grey', ls='dotted')
ax[1,5].set_ylim(bottom=0)
[ax[1,i+1].set_title(title, fontsize=20) for i, title in enumerate(('Model', 'Model+Noise', 'Image-Model', '$\chi^{2}$', 'Residuals'))]
if debug:
outpath = os.path.join(conf.PLOT_DIR, f'T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}_DEBUG.pdf')
fig.savefig(outpath)
plt.close()
logger.info(f'DEBUG | Saving figure: {outpath}')
return fig, ax
def plot_blobmap(brick, image=None, band=None, catalog=None, mode='rms'):
if image is None:
image = brick.images[0]
if band is None:
band = brick.bands[0]
if catalog is None:
catalog = brick.catalog
fig, ax = plt.subplots(figsize=(20,20))
# imgs_marked = mark_boundaries(brick.images[0], brick.blobmap, color='red')[:,:,0]
imgs_marked = find_boundaries(brick.blobmap, mode='thick').astype(int)
imgs_marked[imgs_marked==0] = -99
backlevel, noisesigma = brick.backgrounds[0]
if mode == 'log':
vmin, vmax = np.max([backlevel + noisesigma, 1E-5]), brick.images[0].max()
norm = LogNorm(np.max([backlevel + noisesigma, 1E-5]), 0.9*np.max(image), clip='True')
ax.imshow(image, cmap='Greys', origin='lower', norm=norm)
elif mode == 'rms':
ax.imshow(image - backlevel, cmap='RdGy', origin='lower', vmin=-3*noisesigma, vmax=3*noisesigma)
mycmap = plt.cm.Greens
mycmap.set_under('k', alpha=0)
ax.imshow(imgs_marked, alpha=0.9, cmap=mycmap, vmin=0, zorder=2, origin='lower')
ax.scatter(catalog['x'], catalog['y'], marker='+', color='limegreen', s=0.1)
ax.add_patch(Rectangle((conf.BRICK_BUFFER, conf.BRICK_BUFFER), conf.BRICK_HEIGHT, conf.BRICK_WIDTH, fill=False, alpha=0.3, edgecolor='purple', linewidth=1))
for i in np.arange(brick.n_blobs):
idx, idy = np.nonzero(brick.blobmap == i+1)
xlo, xhi = np.min(idx) - conf.BLOB_BUFFER, np.max(idx) + 1 + conf.BLOB_BUFFER
ylo, yhi = np.min(idy) - conf.BLOB_BUFFER, np.max(idy) + 1 + conf.BLOB_BUFFER
w = xhi - xlo #+ 2 * conf.BLOB_BUFFER
h = yhi - ylo #+ 2 * conf.BLOB_BUFFER
rect = Rectangle((ylo, xlo), h, w, fill=False, alpha=0.3,
edgecolor='red', zorder=3, linewidth=1)
ax.add_patch(rect)
ax.annotate(str(i+1), (ylo, xlo), color='r', fontsize=2)
#ax.scatter(x + width/2., y + height/2., marker='+', c='r')
# Add collection to axes
#ax.axis('off')
out_path = os.path.join(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_{mode}_blobmaster.pdf')
ax.axis('off')
ax.margins(0,0)
fig.suptitle(brick.bands[0])
fig.savefig(out_path, dpi = 300, overwrite=True, pad_inches=0.0)
plt.close()
logger.info(f'Saving figure: {out_path}')
def plot_ldac(tab_ldac, band, xlims=None, ylims=None, box=False, sel=None):
fig, ax = plt.subplots()
xbin = np.arange(0, 15, 0.1)
ybin = np.arange(12, 26, 0.1)
ax.hist2d(tab_ldac['FLUX_RADIUS'], tab_ldac['MAG_AUTO'], bins=(xbin, ybin), cmap='Greys', norm=LogNorm())
if box:
rect = Rectangle((xlims[0], ylims[0]), xlims[1] - xlims[0], ylims[1] - ylims[0], fill=False, alpha=0.3,
edgecolor='r', facecolor=None, zorder=3, linewidth=1)
ax.add_patch(rect)
if (sel is not None) & box:
ax.scatter(tab_ldac['FLUX_RADIUS'][sel], tab_ldac['MAG_AUTO'][sel], s=0.1, c='r')
fig.subplots_adjust(bottom = 0.15)
ax.set(xlabel='Flux Radius (px)', xlim=(0, 15),
ylabel='Mag Auto (AB)', ylim=(26, 12))
ax.grid()
if sel is not None:
nsel = np.sum(sel)
ax.text(x=0.05, y=0.95, s=f'N = {nsel}', transform=ax.transAxes)
fig.savefig(os.path.join(conf.PLOT_DIR, f'{band}_box_{box}_ldac.pdf'), overwrite=True)
plt.close()
def plot_psf(psfmodel, band, show_gaussian=False):
fig, ax = plt.subplots(ncols=3, figsize=(30,10))
norm = LogNorm(1e-8, 0.1*np.nanmax(psfmodel), clip='True')
img_opt = dict(cmap='Blues', norm=norm)
ax[0].imshow(psfmodel, **img_opt, extent=conf.PIXEL_SCALE *np.array([-np.shape(psfmodel)[0]/2, np.shape(psfmodel)[0]/2, -np.shape(psfmodel)[0]/2, np.shape(psfmodel)[0]/2,]))
ax[0].set(xlim=(-15,15), ylim=(-15, 15))
ax[0].axvline(0, color='w', ls='dotted')
ax[0].axhline(0, color='w', ls='dotted')
xax = np.arange(-np.shape(psfmodel)[0]/2 + 0.5, np.shape(psfmodel)[0]/2+0.5)
[ax[1].plot(xax * conf.PIXEL_SCALE, psfmodel[x], c='royalblue', alpha=0.5) for x in np.arange(0, np.shape(psfmodel)[1])]
ax[1].axvline(0, ls='dotted', c='k')
ax[1].set(xlim=(-15, 15), yscale='log', ylim=(1E-6, 1E-1), xlabel='arcsec')
if show_gaussian:
from scipy.optimize import curve_fit
def gaus(x,a,x0,sigma):
return a*np.exp(-(x-x0)**2/(2*sigma**2))
mean = 0
sigma = 1
ax[1].plot(xax * conf.PIXEL_SCALE,psfmodel[int(np.shape(psfmodel)[1]/2)], 'r')
popt,pcov = curve_fit(gaus,xax * conf.PIXEL_SCALE,psfmodel[int(np.shape(psfmodel)[1]/2)],p0=[1,mean,sigma])
ax[1].plot(xax*conf.PIXEL_SCALE,gaus(xax*conf.PIXEL_SCALE,*popt),'green')
x = xax
y = x.copy()
xv, yv = np.meshgrid(x, y)
radius = np.sqrt(xv**2 + xv**2)
cumcurve = [np.sum(psfmodel[radius<i]) for i in np.arange(0, np.shape(psfmodel)[0]/2)]
ax[2].plot(np.arange(0, np.shape(psfmodel)[0]/2) * conf.PIXEL_SCALE, cumcurve)
fig.suptitle(band)
figname = os.path.join(conf.PLOT_DIR, f'{band}_psf.pdf')
logger.info(f'Saving figure: {figname}')
fig.savefig(figname)
plt.close(fig)
| [
"logging.getLogger",
"numpy.log10",
"numpy.sqrt",
"numpy.nanpercentile",
"skimage.segmentation.find_boundaries",
"numpy.nanmean",
"numpy.array",
"scipy.stats.normaltest",
"numpy.nanmin",
"numpy.arange",
"matplotlib.colors.LogNorm",
"numpy.mean",
"astropy.visualization.hist",
"numpy.max",
... | [((293, 314), 'matplotlib.use', 'matplotlib.use', (['"""Agg"""'], {}), "('Agg')\n", (307, 314), False, 'import matplotlib\n'), ((728, 769), 'logging.getLogger', 'logging.getLogger', (['"""farmer.visualization"""'], {}), "('farmer.visualization')\n", (745, 769), False, 'import logging\n'), ((857, 875), 'numpy.arange', 'np.arange', (['(0)', '(1000)'], {}), '(0, 1000)\n', (866, 875), True, 'import numpy as np\n'), ((876, 896), 'random.shuffle', 'random.shuffle', (['cidx'], {}), '(cidx)\n', (890, 896), False, 'import random\n'), ((825, 848), 'numpy.linspace', 'np.linspace', (['(0)', '(1)', '(1000)'], {}), '(0, 1, 1000)\n', (836, 848), True, 'import numpy as np\n'), ((976, 1006), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 20)'}), '(figsize=(20, 20))\n', (988, 1006), True, 'import matplotlib.pyplot as plt\n'), ((1253, 1324), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""B{brick.brick_id}_{band}_background.pdf"""'], {}), "(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_background.pdf')\n", (1265, 1324), False, 'import os\n'), ((1437, 1448), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (1446, 1448), True, 'import matplotlib.pyplot as plt\n'), ((1546, 1576), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 20)'}), '(figsize=(20, 20))\n', (1558, 1576), True, 'import matplotlib.pyplot as plt\n'), ((1634, 1699), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""B{brick.brick_id}_{band}_mask.pdf"""'], {}), "(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_mask.pdf')\n", (1646, 1699), False, 'import os\n'), ((1812, 1823), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (1821, 1823), True, 'import matplotlib.pyplot as plt\n'), ((1922, 1952), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 20)'}), '(figsize=(20, 20))\n', (1934, 1952), True, 'import matplotlib.pyplot as plt\n'), ((2268, 2294), 'matplotlib.colors.SymLogNorm', 'SymLogNorm', ([], {'linthresh': '(0.03)'}), '(linthresh=0.03)\n', (2278, 2294), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((2420, 2486), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""B{brick.brick_id}_{band}_brick.pdf"""'], {}), "(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_brick.pdf')\n", (2432, 2486), False, 'import os\n'), ((2599, 2610), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (2608, 2610), True, 'import matplotlib.pyplot as plt\n'), ((2705, 2823), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(4)', 'nrows': '(1 + myfblob.n_bands)', 'figsize': '(5 + 5 * myfblob.n_bands, 10)', 'sharex': '(True)', 'sharey': '(True)'}), '(ncols=4, nrows=1 + myfblob.n_bands, figsize=(5 + 5 * myfblob.\n n_bands, 10), sharex=True, sharey=True)\n', (2717, 2823), True, 'import matplotlib.pyplot as plt\n'), ((2902, 2948), 'numpy.random.normal', 'np.random.normal', (['mean', 'rms'], {'size': 'myfblob.dims'}), '(mean, rms, size=myfblob.dims)\n', (2918, 2948), True, 'import numpy as np\n'), ((7797, 7808), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (7806, 7808), True, 'import matplotlib.pyplot as plt\n'), ((9068, 9117), 'matplotlib.backends.backend_pdf.PdfPages', 'matplotlib.backends.backend_pdf.PdfPages', (['outpath'], {}), '(outpath)\n', (9108, 9117), False, 'import matplotlib\n'), ((25052, 25101), 'matplotlib.backends.backend_pdf.PdfPages', 'matplotlib.backends.backend_pdf.PdfPages', (['outpath'], {}), '(outpath)\n', (25092, 25101), False, 'import matplotlib\n'), ((26971, 27014), 'numpy.random.normal', 'np.random.normal', (['mean', 'rms'], {'size': 'blob.dims'}), '(mean, rms, size=blob.dims)\n', (26987, 27014), True, 'import numpy as np\n'), ((27318, 27366), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(5)', 'nrows': '(2)', 'figsize': '(20, 10)'}), '(ncols=5, nrows=2, figsize=(20, 10))\n', (27330, 27366), True, 'import matplotlib.pyplot as plt\n'), ((30403, 30415), 'numpy.arange', 'np.arange', (['(3)'], {}), '(3)\n', (30412, 30415), True, 'import numpy as np\n'), ((31027, 31038), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (31036, 31038), True, 'import matplotlib.pyplot as plt\n'), ((31377, 31398), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(2)'}), '(ncols=2)\n', (31389, 31398), True, 'import matplotlib.pyplot as plt\n'), ((33673, 33768), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_xsection.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_xsection.pdf')\n", (33685, 33768), False, 'import os\n'), ((33840, 33851), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (33849, 33851), True, 'import matplotlib.pyplot as plt\n'), ((34279, 34322), 'numpy.random.normal', 'np.random.normal', (['mean', 'rms'], {'size': 'blob.dims'}), '(mean, rms, size=blob.dims)\n', (34295, 34322), True, 'import numpy as np\n'), ((43543, 43586), 'numpy.random.normal', 'np.random.normal', (['mean', 'rms'], {'size': 'blob.dims'}), '(mean, rms, size=blob.dims)\n', (43559, 43586), True, 'import numpy as np\n'), ((49446, 49476), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 20)'}), '(figsize=(20, 20))\n', (49458, 49476), True, 'import matplotlib.pyplot as plt\n'), ((50524, 50548), 'numpy.arange', 'np.arange', (['brick.n_blobs'], {}), '(brick.n_blobs)\n', (50533, 50548), True, 'import numpy as np\n'), ((51229, 51307), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""B{brick.brick_id}_{band}_{mode}_blobmaster.pdf"""'], {}), "(conf.PLOT_DIR, f'B{brick.brick_id}_{band}_{mode}_blobmaster.pdf')\n", (51241, 51307), False, 'import os\n'), ((51453, 51464), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (51462, 51464), True, 'import matplotlib.pyplot as plt\n'), ((51602, 51616), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {}), '()\n', (51614, 51616), True, 'import matplotlib.pyplot as plt\n'), ((51628, 51649), 'numpy.arange', 'np.arange', (['(0)', '(15)', '(0.1)'], {}), '(0, 15, 0.1)\n', (51637, 51649), True, 'import numpy as np\n'), ((51661, 51683), 'numpy.arange', 'np.arange', (['(12)', '(26)', '(0.1)'], {}), '(12, 26, 0.1)\n', (51670, 51683), True, 'import numpy as np\n'), ((52531, 52542), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (52540, 52542), True, 'import matplotlib.pyplot as plt\n'), ((52610, 52649), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(3)', 'figsize': '(30, 10)'}), '(ncols=3, figsize=(30, 10))\n', (52622, 52649), True, 'import matplotlib.pyplot as plt\n'), ((53919, 53936), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y'], {}), '(x, y)\n', (53930, 53936), True, 'import numpy as np\n'), ((53950, 53976), 'numpy.sqrt', 'np.sqrt', (['(xv ** 2 + xv ** 2)'], {}), '(xv ** 2 + xv ** 2)\n', (53957, 53976), True, 'import numpy as np\n'), ((54186, 54232), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""{band}_psf.pdf"""'], {}), "(conf.PLOT_DIR, f'{band}_psf.pdf')\n", (54198, 54232), False, 'import os\n'), ((54323, 54337), 'matplotlib.pyplot.close', 'plt.close', (['fig'], {}), '(fig)\n', (54332, 54337), True, 'import matplotlib.pyplot as plt\n'), ((2020, 2059), 'numpy.max', 'np.max', (['[backlevel + noisesigma, 1e-05]'], {}), '([backlevel + noisesigma, 1e-05])\n', (2026, 2059), True, 'import numpy as np\n'), ((3006, 3033), 'numpy.max', 'np.max', (['[mean + rms, 1e-05]'], {}), '([mean + rms, 1e-05])\n', (3012, 3033), True, 'import numpy as np\n'), ((4456, 4589), 'matplotlib.patches.Ellipse', 'Ellipse', ([], {'xy': "(objects['x'], objects['y'])", 'width': "(6 * objects['a'])", 'height': "(6 * objects['b'])", 'angle': "(objects['theta'] * 180.0 / np.pi)"}), "(xy=(objects['x'], objects['y']), width=6 * objects['a'], height=6 *\n objects['b'], angle=objects['theta'] * 180.0 / np.pi)\n", (4463, 4589), False, 'from matplotlib.patches import Ellipse\n'), ((4762, 4788), 'numpy.arange', 'np.arange', (['myfblob.n_bands'], {}), '(myfblob.n_bands)\n', (4771, 4788), True, 'import numpy as np\n'), ((8024, 8144), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf'\n )\n", (8036, 8144), False, 'import os\n'), ((11908, 11950), 'numpy.median', 'np.median', (['blob.background_rms_images[idx]'], {}), '(blob.background_rms_images[idx])\n', (11917, 11950), True, 'import numpy as np\n'), ((11973, 11988), 'numpy.nonzero', 'np.nonzero', (['seg'], {}), '(seg)\n', (11983, 11988), True, 'import numpy as np\n'), ((12092, 12124), 'numpy.min', 'np.min', (['[conf.BLOB_BUFFER, 10.0]'], {}), '([conf.BLOB_BUFFER, 10.0])\n', (12098, 12124), True, 'import numpy as np\n'), ((12277, 12290), 'numpy.shape', 'np.shape', (['img'], {}), '(img)\n', (12285, 12290), True, 'import numpy as np\n'), ((13178, 13193), 'numpy.std', 'np.std', (['chi_seg'], {}), '(chi_seg)\n', (13184, 13193), True, 'import numpy as np\n'), ((13211, 13227), 'numpy.mean', 'np.mean', (['chi_seg'], {}), '(chi_seg)\n', (13218, 13227), True, 'import numpy as np\n'), ((13266, 13314), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(4)', 'nrows': '(4)', 'figsize': '(15, 15)'}), '(ncols=4, nrows=4, figsize=(15, 15))\n', (13278, 13314), True, 'import matplotlib.pyplot as plt\n'), ((22079, 22153), 'astropy.visualization.hist', 'hist', (['chi_seg'], {'ax': 'ax[3, 3]', 'bins': '"""freedman"""', 'histtype': '"""step"""', 'density': '(True)'}), "(chi_seg, ax=ax[3, 3], bins='freedman', histtype='step', density=True)\n", (22083, 22153), False, 'from astropy.visualization import hist\n'), ((22788, 22799), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (22797, 22799), True, 'import matplotlib.pyplot as plt\n'), ((26028, 26049), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'ncols': '(4)'}), '(ncols=4)\n', (26040, 26049), True, 'import matplotlib.pyplot as plt\n'), ((26530, 26541), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (26539, 26541), True, 'import matplotlib.pyplot as plt\n'), ((26920, 26936), 'numpy.nanmean', 'np.nanmean', (['back'], {}), '(back)\n', (26930, 26936), True, 'import numpy as np\n'), ((26938, 26958), 'numpy.nanmean', 'np.nanmean', (['back_rms'], {}), '(back_rms)\n', (26948, 26958), True, 'import numpy as np\n'), ((30739, 30838), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_debugprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{band}_debugprofile.pdf')\n", (30751, 30838), False, 'import os\n'), ((30863, 30955), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{band}_debugprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{band}_debugprofile.pdf')\n", (30875, 30955), False, 'import os\n'), ((31323, 31339), 'numpy.nanmean', 'np.nanmean', (['back'], {}), '(back)\n', (31333, 31339), True, 'import numpy as np\n'), ((31341, 31361), 'numpy.nanmean', 'np.nanmean', (['back_rms'], {}), '(back_rms)\n', (31351, 31361), True, 'import numpy as np\n'), ((34233, 34249), 'numpy.nanmean', 'np.nanmean', (['back'], {}), '(back)\n', (34243, 34249), True, 'import numpy as np\n'), ((34251, 34266), 'numpy.nanmean', 'np.nanmean', (['rms'], {}), '(rms)\n', (34261, 34266), True, 'import numpy as np\n'), ((34374, 34401), 'numpy.max', 'np.max', (['[mean + rms, 1e-05]'], {}), '([mean + rms, 1e-05])\n', (34380, 34401), True, 'import numpy as np\n'), ((34575, 34585), 'matplotlib.pyplot.ioff', 'plt.ioff', ([], {}), '()\n', (34583, 34585), True, 'import matplotlib.pyplot as plt\n'), ((34604, 34653), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(24, 48)', 'ncols': '(6)', 'nrows': '(13)'}), '(figsize=(24, 48), ncols=6, nrows=13)\n', (34616, 34653), True, 'import matplotlib.pyplot as plt\n'), ((43642, 43669), 'numpy.max', 'np.max', (['[mean + rms, 1e-05]'], {}), '([mean + rms, 1e-05])\n', (43648, 43669), True, 'import numpy as np\n'), ((46106, 46196), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}.pdf')\n", (46118, 46196), False, 'import os\n'), ((46230, 46241), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (46239, 46241), True, 'import matplotlib.pyplot as plt\n'), ((50366, 50513), 'matplotlib.patches.Rectangle', 'Rectangle', (['(conf.BRICK_BUFFER, conf.BRICK_BUFFER)', 'conf.BRICK_HEIGHT', 'conf.BRICK_WIDTH'], {'fill': '(False)', 'alpha': '(0.3)', 'edgecolor': '"""purple"""', 'linewidth': '(1)'}), "((conf.BRICK_BUFFER, conf.BRICK_BUFFER), conf.BRICK_HEIGHT, conf.\n BRICK_WIDTH, fill=False, alpha=0.3, edgecolor='purple', linewidth=1)\n", (50375, 50513), False, 'from matplotlib.patches import Rectangle\n'), ((50569, 50603), 'numpy.nonzero', 'np.nonzero', (['(brick.blobmap == i + 1)'], {}), '(brick.blobmap == i + 1)\n', (50579, 50603), True, 'import numpy as np\n'), ((50881, 50976), 'matplotlib.patches.Rectangle', 'Rectangle', (['(ylo, xlo)', 'h', 'w'], {'fill': '(False)', 'alpha': '(0.3)', 'edgecolor': '"""red"""', 'zorder': '(3)', 'linewidth': '(1)'}), "((ylo, xlo), h, w, fill=False, alpha=0.3, edgecolor='red', zorder=\n 3, linewidth=1)\n", (50890, 50976), False, 'from matplotlib.patches import Rectangle\n'), ((51821, 51980), 'matplotlib.patches.Rectangle', 'Rectangle', (['(xlims[0], ylims[0])', '(xlims[1] - xlims[0])', '(ylims[1] - ylims[0])'], {'fill': '(False)', 'alpha': '(0.3)', 'edgecolor': '"""r"""', 'facecolor': 'None', 'zorder': '(3)', 'linewidth': '(1)'}), "((xlims[0], ylims[0]), xlims[1] - xlims[0], ylims[1] - ylims[0],\n fill=False, alpha=0.3, edgecolor='r', facecolor=None, zorder=3, linewidth=1\n )\n", (51830, 51980), False, 'from matplotlib.patches import Rectangle\n'), ((52350, 52361), 'numpy.sum', 'np.sum', (['sel'], {}), '(sel)\n', (52356, 52361), True, 'import numpy as np\n'), ((52451, 52508), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""{band}_box_{box}_ldac.pdf"""'], {}), "(conf.PLOT_DIR, f'{band}_box_{box}_ldac.pdf')\n", (52463, 52508), False, 'import os\n'), ((53989, 54017), 'numpy.sum', 'np.sum', (['psfmodel[radius < i]'], {}), '(psfmodel[radius < i])\n', (53995, 54017), True, 'import numpy as np\n'), ((1179, 1205), 'matplotlib.colors.SymLogNorm', 'SymLogNorm', ([], {'linthresh': '(0.03)'}), '(linthresh=0.03)\n', (1189, 1205), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((4893, 4939), 'numpy.random.normal', 'np.random.normal', (['mean', 'rms'], {'size': 'myfblob.dims'}), '(mean, rms, size=myfblob.dims)\n', (4909, 4939), True, 'import numpy as np\n'), ((6957, 6987), 'numpy.arange', 'np.arange', (['(1 + myfblob.n_bands)'], {}), '(1 + myfblob.n_bands)\n', (6966, 6987), True, 'import numpy as np\n'), ((7390, 7402), 'numpy.arange', 'np.arange', (['(4)'], {}), '(4)\n', (7399, 7402), True, 'import numpy as np\n'), ((7610, 7688), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""{myblob.brick_id}_B{myblob.blob_id}_S{sid}.pdf"""'], {}), "(conf.PLOT_DIR, f'{myblob.brick_id}_B{myblob.blob_id}_S{sid}.pdf')\n", (7622, 7688), False, 'import os\n'), ((7720, 7791), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""{myblob.brick_id}_B{myblob.blob_id}.pdf"""'], {}), "(conf.PLOT_DIR, f'{myblob.brick_id}_B{myblob.blob_id}.pdf')\n", (7732, 7791), False, 'import os\n'), ((8365, 8485), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_srcprofile.pdf'\n )\n", (8377, 8485), False, 'import os\n'), ((11622, 11634), 'numpy.sqrt', 'np.sqrt', (['wgt'], {}), '(wgt)\n', (11629, 11634), True, 'import numpy as np\n'), ((12348, 12376), 'numpy.array', 'np.array', (['[-xp, dw, -yp, dh]'], {}), '([-xp, dw, -yp, dh])\n', (12356, 12376), True, 'import numpy as np\n'), ((13034, 13059), 'scipy.stats.normaltest', 'stats.normaltest', (['res_seg'], {}), '(res_seg)\n', (13050, 13059), False, 'from scipy import stats\n'), ((13495, 13509), 'numpy.nanmax', 'np.nanmax', (['img'], {}), '(img)\n', (13504, 13509), True, 'import numpy as np\n'), ((13560, 13598), 'matplotlib.colors.LogNorm', 'LogNorm', (['normmin', 'normmax'], {'clip': '"""True"""'}), "(normmin, normmax, clip='True')\n", (13567, 13598), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((23221, 23382), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (23233, 23382), False, 'import os\n'), ((24217, 24371), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (24229, 24371), False, 'import os\n'), ((25707, 25723), 'numpy.nanmean', 'np.nanmean', (['back'], {}), '(back)\n', (25717, 25723), True, 'import numpy as np\n'), ((25725, 25745), 'numpy.nanmean', 'np.nanmean', (['back_rms'], {}), '(back_rms)\n', (25735, 25745), True, 'import numpy as np\n'), ((28576, 28595), 'numpy.nanmax', 'np.nanmax', (['psfmodel'], {}), '(psfmodel)\n', (28585, 28595), True, 'import numpy as np\n'), ((31896, 31907), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (31905, 31907), True, 'import matplotlib.pyplot as plt\n'), ((34872, 35005), 'matplotlib.patches.Ellipse', 'Ellipse', ([], {'xy': "(objects['x'], objects['y'])", 'width': "(6 * objects['a'])", 'height': "(6 * objects['b'])", 'angle': "(objects['theta'] * 180.0 / np.pi)"}), "(xy=(objects['x'], objects['y']), width=6 * objects['a'], height=6 *\n objects['b'], angle=objects['theta'] * 180.0 / np.pi)\n", (34879, 35005), False, 'from matplotlib.patches import Ellipse\n'), ((36062, 36178), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf'\n )\n", (36074, 36178), False, 'import os\n'), ((36206, 36310), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')\n", (36218, 36310), False, 'import os\n'), ((39594, 39605), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (39603, 39605), True, 'import matplotlib.pyplot as plt\n'), ((43427, 43458), 'numpy.argwhere', 'np.argwhere', (['(blob.bands == band)'], {}), '(blob.bands == band)\n', (43438, 43458), True, 'import numpy as np\n'), ((44296, 44324), 'numpy.nanpercentile', 'np.nanpercentile', (['residua', '(5)'], {}), '(residua, 5)\n', (44312, 44324), True, 'import numpy as np\n'), ((44326, 44356), 'numpy.nanpercentile', 'np.nanpercentile', (['residual', '(95)'], {}), '(residual, 95)\n', (44342, 44356), True, 'import numpy as np\n'), ((46353, 46363), 'matplotlib.pyplot.ioff', 'plt.ioff', ([], {}), '()\n', (46361, 46363), True, 'import matplotlib.pyplot as plt\n'), ((46386, 46433), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(24, 8)', 'ncols': '(6)', 'nrows': '(3)'}), '(figsize=(24, 8), ncols=6, nrows=3)\n', (46398, 46433), True, 'import matplotlib.pyplot as plt\n'), ((47943, 47962), 'numpy.nanmin', 'np.nanmin', (['residual'], {}), '(residual)\n', (47952, 47962), True, 'import numpy as np\n'), ((47964, 47983), 'numpy.nanmax', 'np.nanmax', (['residual'], {}), '(residual)\n', (47973, 47983), True, 'import numpy as np\n'), ((48961, 49057), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}_DEBUG.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{blob.bands[idx]}_DEBUG.pdf')\n", (48973, 49057), False, 'import os\n'), ((49099, 49110), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (49108, 49110), True, 'import matplotlib.pyplot as plt\n'), ((49582, 49626), 'skimage.segmentation.find_boundaries', 'find_boundaries', (['brick.blobmap'], {'mode': '"""thick"""'}), "(brick.blobmap, mode='thick')\n", (49597, 49626), False, 'from skimage.segmentation import find_boundaries\n'), ((49769, 49808), 'numpy.max', 'np.max', (['[backlevel + noisesigma, 1e-05]'], {}), '([backlevel + noisesigma, 1e-05])\n', (49775, 49808), True, 'import numpy as np\n'), ((49854, 49893), 'numpy.max', 'np.max', (['[backlevel + noisesigma, 1e-05]'], {}), '([backlevel + noisesigma, 1e-05])\n', (49860, 49893), True, 'import numpy as np\n'), ((51783, 51792), 'matplotlib.colors.LogNorm', 'LogNorm', ([], {}), '()\n', (51790, 51792), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((52678, 52697), 'numpy.nanmax', 'np.nanmax', (['psfmodel'], {}), '(psfmodel)\n', (52687, 52697), True, 'import numpy as np\n'), ((7014, 7026), 'numpy.arange', 'np.arange', (['(4)'], {}), '(4)\n', (7023, 7026), True, 'import numpy as np\n'), ((7351, 7381), 'numpy.arange', 'np.arange', (['(myfblob.n_bands + 1)'], {}), '(myfblob.n_bands + 1)\n', (7360, 7381), True, 'import numpy as np\n'), ((8767, 8868), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_srcprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_srcprofile.pdf')\n", (8779, 8868), False, 'import os\n'), ((8901, 9002), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_srcprofile.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_srcprofile.pdf')\n", (8913, 9002), False, 'import os\n'), ((12145, 12180), 'numpy.array', 'np.array', (['[-(dx + buff), dx + buff]'], {}), '([-(dx + buff), dx + buff])\n', (12153, 12180), True, 'import numpy as np\n'), ((12203, 12238), 'numpy.array', 'np.array', (['[-(dy + buff), dy + buff]'], {}), '([-(dy + buff), dy + buff])\n', (12211, 12238), True, 'import numpy as np\n'), ((13369, 13383), 'numpy.nanmax', 'np.nanmax', (['img'], {}), '(img)\n', (13378, 13383), True, 'import numpy as np\n'), ((23696, 23843), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (23708, 23843), False, 'import os\n'), ((23879, 24026), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (23891, 24026), False, 'import os\n'), ((24685, 24825), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{nickname}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (24697, 24825), False, 'import os\n'), ((24861, 25001), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{bands[0]}_{blob._level}_{blob._sublevel}_{iteration}_iterblob.pdf'\n )\n", (24873, 25001), False, 'import os\n'), ((26361, 26373), 'numpy.arange', 'np.arange', (['(4)'], {}), '(4)\n', (26370, 26373), True, 'import numpy as np\n'), ((27270, 27296), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (27278, 27296), True, 'import numpy as np\n'), ((27644, 27670), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (27652, 27670), True, 'import numpy as np\n'), ((27969, 28010), 'numpy.shape', 'np.shape', (['blob.solution_model_images[idx]'], {}), '(blob.solution_model_images[idx])\n', (27977, 28010), True, 'import numpy as np\n'), ((28316, 28334), 'numpy.shape', 'np.shape', (['residual'], {}), '(residual)\n', (28324, 28334), True, 'import numpy as np\n'), ((29828, 29842), 'numpy.log10', 'np.log10', (['flux'], {}), '(flux)\n', (29836, 29842), True, 'import numpy as np\n'), ((34770, 34785), 'numpy.arange', 'np.arange', (['(1)', '(6)'], {}), '(1, 6)\n', (34779, 34785), True, 'import numpy as np\n'), ((35308, 35441), 'matplotlib.patches.Ellipse', 'Ellipse', ([], {'xy': "(objects['x'], objects['y'])", 'width': "(6 * objects['a'])", 'height': "(6 * objects['b'])", 'angle': "(objects['theta'] * 180.0 / np.pi)"}), "(xy=(objects['x'], objects['y']), width=6 * objects['a'], height=6 *\n objects['b'], angle=objects['theta'] * 180.0 / np.pi)\n", (35315, 35441), False, 'from matplotlib.patches import Ellipse\n'), ((36977, 36996), 'numpy.nanmin', 'np.nanmin', (['residual'], {}), '(residual)\n', (36986, 36996), True, 'import numpy as np\n'), ((36998, 37017), 'numpy.nanmax', 'np.nanmax', (['residual'], {}), '(residual)\n', (37007, 37017), True, 'import numpy as np\n'), ((38043, 38062), 'numpy.nanmin', 'np.nanmin', (['residual'], {}), '(residual)\n', (38052, 38062), True, 'import numpy as np\n'), ((38064, 38083), 'numpy.nanmax', 'np.nanmax', (['residual'], {}), '(residual)\n', (38073, 38083), True, 'import numpy as np\n'), ((39312, 39428), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf'\n )\n", (39324, 39428), False, 'import os\n'), ((39456, 39560), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')\n", (39468, 39560), False, 'import os\n'), ((41163, 41182), 'numpy.nanmin', 'np.nanmin', (['residual'], {}), '(residual)\n', (41172, 41182), True, 'import numpy as np\n'), ((41184, 41203), 'numpy.nanmax', 'np.nanmax', (['residual'], {}), '(residual)\n', (41193, 41203), True, 'import numpy as np\n'), ((42995, 43111), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_S{sid}_{conf.MODELING_NICKNAME}_{band}.pdf'\n )\n", (43007, 43111), False, 'import os\n'), ((43139, 43243), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', 'f"""T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf"""'], {}), "(conf.PLOT_DIR,\n f'T{blob.brick_id}_B{blob.blob_id}_{conf.MODELING_NICKNAME}_{band}.pdf')\n", (43151, 43243), False, 'import os\n'), ((44824, 44852), 'numpy.nanpercentile', 'np.nanpercentile', (['res_seg', '(5)'], {}), '(res_seg, 5)\n', (44840, 44852), True, 'import numpy as np\n'), ((44854, 44884), 'numpy.nnanpercentile', 'np.nnanpercentile', (['res_seg', '(95)'], {}), '(res_seg, 95)\n', (44871, 44884), True, 'import numpy as np\n'), ((45265, 45293), 'numpy.array', 'np.array', (['conf.MULTIBAND_ZPT'], {}), '(conf.MULTIBAND_ZPT)\n', (45273, 45293), True, 'import numpy as np\n'), ((46936, 47067), 'matplotlib.patches.Ellipse', 'Ellipse', ([], {'xy': '(position[0], position[1])', 'width': "(6 * objects['a'])", 'height': "(6 * objects['b'])", 'angle': "(objects['theta'] * 180.0 / np.pi)"}), "(xy=(position[0], position[1]), width=6 * objects['a'], height=6 *\n objects['b'], angle=objects['theta'] * 180.0 / np.pi)\n", (46943, 47067), False, 'from matplotlib.patches import Ellipse\n'), ((47490, 47505), 'numpy.arange', 'np.arange', (['(1)', '(6)'], {}), '(1, 6)\n', (47499, 47505), True, 'import numpy as np\n'), ((48181, 48206), 'scipy.stats.normaltest', 'stats.normaltest', (['res_seg'], {}), '(res_seg)\n', (48197, 48206), False, 'from scipy import stats\n'), ((48385, 48403), 'numpy.nanmin', 'np.nanmin', (['res_seg'], {}), '(res_seg)\n', (48394, 48403), True, 'import numpy as np\n'), ((48405, 48423), 'numpy.nanmax', 'np.nanmax', (['res_seg'], {}), '(res_seg)\n', (48414, 48423), True, 'import numpy as np\n'), ((49898, 49911), 'numpy.max', 'np.max', (['image'], {}), '(image)\n', (49904, 49911), True, 'import numpy as np\n'), ((50621, 50632), 'numpy.min', 'np.min', (['idx'], {}), '(idx)\n', (50627, 50632), True, 'import numpy as np\n'), ((50707, 50718), 'numpy.min', 'np.min', (['idy'], {}), '(idy)\n', (50713, 50718), True, 'import numpy as np\n'), ((53521, 53562), 'numpy.exp', 'np.exp', (['(-(x - x0) ** 2 / (2 * sigma ** 2))'], {}), '(-(x - x0) ** 2 / (2 * sigma ** 2))\n', (53527, 53562), True, 'import numpy as np\n'), ((10853, 10876), 'numpy.array', 'np.array', (['bsrc.colnames'], {}), '(bsrc.colnames)\n', (10861, 10876), True, 'import numpy as np\n'), ((11014, 11046), 'numpy.exp', 'np.exp', (["bsrc[f'REFF_{rband}'][0]"], {}), "(bsrc[f'REFF_{rband}'][0])\n", (11020, 11046), True, 'import numpy as np\n'), ((12007, 12019), 'numpy.max', 'np.max', (['xpix'], {}), '(xpix)\n', (12013, 12019), True, 'import numpy as np\n'), ((12022, 12034), 'numpy.min', 'np.min', (['xpix'], {}), '(xpix)\n', (12028, 12034), True, 'import numpy as np\n'), ((12043, 12055), 'numpy.max', 'np.max', (['ypix'], {}), '(ypix)\n', (12049, 12055), True, 'import numpy as np\n'), ((12058, 12070), 'numpy.min', 'np.min', (['ypix'], {}), '(ypix)\n', (12064, 12070), True, 'import numpy as np\n'), ((27236, 27262), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (27244, 27262), True, 'import numpy as np\n'), ((27610, 27636), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (27618, 27636), True, 'import numpy as np\n'), ((27776, 27802), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (27784, 27802), True, 'import numpy as np\n'), ((27920, 27961), 'numpy.shape', 'np.shape', (['blob.solution_model_images[idx]'], {}), '(blob.solution_model_images[idx])\n', (27928, 27961), True, 'import numpy as np\n'), ((28131, 28172), 'numpy.shape', 'np.shape', (['blob.solution_model_images[idx]'], {}), '(blob.solution_model_images[idx])\n', (28139, 28172), True, 'import numpy as np\n'), ((28290, 28308), 'numpy.shape', 'np.shape', (['residual'], {}), '(residual)\n', (28298, 28308), True, 'import numpy as np\n'), ((28432, 28450), 'numpy.shape', 'np.shape', (['residual'], {}), '(residual)\n', (28440, 28450), True, 'import numpy as np\n'), ((28916, 28934), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28924, 28934), True, 'import numpy as np\n'), ((29038, 29056), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (29046, 29056), True, 'import numpy as np\n'), ((30479, 30509), 'numpy.nanmedian', 'np.nanmedian', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (30491, 30509), True, 'import numpy as np\n'), ((32070, 32082), 'numpy.min', 'np.min', (['imgx'], {}), '(imgx)\n', (32076, 32082), True, 'import numpy as np\n'), ((32084, 32096), 'numpy.min', 'np.min', (['imgy'], {}), '(imgy)\n', (32090, 32096), True, 'import numpy as np\n'), ((32112, 32124), 'numpy.max', 'np.max', (['imgx'], {}), '(imgx)\n', (32118, 32124), True, 'import numpy as np\n'), ((32126, 32138), 'numpy.max', 'np.max', (['imgy'], {}), '(imgy)\n', (32132, 32138), True, 'import numpy as np\n'), ((32198, 32224), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (32206, 32224), True, 'import numpy as np\n'), ((32505, 32531), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (32513, 32531), True, 'import numpy as np\n'), ((36520, 36535), 'numpy.arange', 'np.arange', (['(0)', '(6)'], {}), '(0, 6)\n', (36529, 36535), True, 'import numpy as np\n'), ((37290, 37308), 'numpy.nanmin', 'np.nanmin', (['res_seg'], {}), '(res_seg)\n', (37299, 37308), True, 'import numpy as np\n'), ((37310, 37328), 'numpy.nanmax', 'np.nanmax', (['res_seg'], {}), '(res_seg)\n', (37319, 37328), True, 'import numpy as np\n'), ((38356, 38374), 'numpy.nanmin', 'np.nanmin', (['res_seg'], {}), '(res_seg)\n', (38365, 38374), True, 'import numpy as np\n'), ((38376, 38394), 'numpy.nanmax', 'np.nanmax', (['res_seg'], {}), '(res_seg)\n', (38385, 38394), True, 'import numpy as np\n'), ((41311, 41329), 'numpy.shape', 'np.shape', (['residual'], {}), '(residual)\n', (41319, 41329), True, 'import numpy as np\n'), ((41333, 41354), 'numpy.shape', 'np.shape', (['blob.segmap'], {}), '(blob.segmap)\n', (41341, 41354), True, 'import numpy as np\n'), ((41372, 41384), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (41382, 41384), True, 'import matplotlib.pyplot as plt\n'), ((41547, 41559), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (41557, 41559), True, 'import matplotlib.pyplot as plt\n'), ((41891, 41909), 'numpy.nanmin', 'np.nanmin', (['res_seg'], {}), '(res_seg)\n', (41900, 41909), True, 'import numpy as np\n'), ((41911, 41929), 'numpy.nanmax', 'np.nanmax', (['res_seg'], {}), '(res_seg)\n', (41920, 41929), True, 'import numpy as np\n'), ((46562, 46577), 'numpy.arange', 'np.arange', (['(1)', '(6)'], {}), '(1, 6)\n', (46571, 46577), True, 'import numpy as np\n'), ((50653, 50664), 'numpy.max', 'np.max', (['idx'], {}), '(idx)\n', (50659, 50664), True, 'import numpy as np\n'), ((50739, 50750), 'numpy.max', 'np.max', (['idy'], {}), '(idy)\n', (50745, 50750), True, 'import numpy as np\n'), ((53125, 53143), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (53133, 53143), True, 'import numpy as np\n'), ((53255, 53273), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (53263, 53273), True, 'import numpy as np\n'), ((12674, 12691), 'numpy.array', 'np.array', (['[-1, 1]'], {}), '([-1, 1])\n', (12682, 12691), True, 'import numpy as np\n'), ((12752, 12769), 'numpy.array', 'np.array', (['[-1, 1]'], {}), '([-1, 1])\n', (12760, 12769), True, 'import numpy as np\n'), ((12828, 12845), 'numpy.array', 'np.array', (['[-1, 1]'], {}), '([-1, 1])\n', (12836, 12845), True, 'import numpy as np\n'), ((12903, 12920), 'numpy.array', 'np.array', (['[1, -1]'], {}), '([1, -1])\n', (12911, 12920), True, 'import numpy as np\n'), ((19500, 19518), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (19508, 19518), True, 'import numpy as np\n'), ((19626, 19644), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (19634, 19644), True, 'import numpy as np\n'), ((21088, 21100), 'numpy.min', 'np.min', (['imgx'], {}), '(imgx)\n', (21094, 21100), True, 'import numpy as np\n'), ((21102, 21114), 'numpy.min', 'np.min', (['imgy'], {}), '(imgy)\n', (21108, 21114), True, 'import numpy as np\n'), ((21130, 21142), 'numpy.max', 'np.max', (['imgx'], {}), '(imgx)\n', (21136, 21142), True, 'import numpy as np\n'), ((21144, 21156), 'numpy.max', 'np.max', (['imgy'], {}), '(imgy)\n', (21150, 21156), True, 'import numpy as np\n'), ((28884, 28902), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28892, 28902), True, 'import numpy as np\n'), ((32164, 32190), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (32172, 32190), True, 'import numpy as np\n'), ((32471, 32497), 'numpy.shape', 'np.shape', (['blob.images[idx]'], {}), '(blob.images[idx])\n', (32479, 32497), True, 'import numpy as np\n'), ((34099, 34119), 'numpy.array', 'np.array', (['blob.bands'], {}), '(blob.bands)\n', (34107, 34119), True, 'import numpy as np\n'), ((36488, 36511), 'numpy.arange', 'np.arange', (['(nrow + 1)', '(11)'], {}), '(nrow + 1, 11)\n', (36497, 36511), True, 'import numpy as np\n'), ((41483, 41530), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', '"""debug_segmap.pdf"""'], {}), "(conf.PLOT_DIR, 'debug_segmap.pdf')\n", (41495, 41530), False, 'import os\n'), ((41655, 41704), 'os.path.join', 'os.path.join', (['conf.PLOT_DIR', '"""debug_residual.pdf"""'], {}), "(conf.PLOT_DIR, 'debug_residual.pdf')\n", (41667, 41704), False, 'import os\n'), ((53093, 53111), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (53101, 53111), True, 'import numpy as np\n'), ((54038, 54056), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (54046, 54056), True, 'import numpy as np\n'), ((54092, 54110), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (54100, 54110), True, 'import numpy as np\n'), ((11065, 11097), 'numpy.exp', 'np.exp', (["bsrc[f'REFF_{rband}'][0]"], {}), "(bsrc[f'REFF_{rband}'][0])\n", (11071, 11097), True, 'import numpy as np\n'), ((12650, 12672), 'numpy.deg2rad', 'np.deg2rad', (['(90 - theta)'], {}), '(90 - theta)\n', (12660, 12672), True, 'import numpy as np\n'), ((12728, 12750), 'numpy.deg2rad', 'np.deg2rad', (['(90 - theta)'], {}), '(90 - theta)\n', (12738, 12750), True, 'import numpy as np\n'), ((12807, 12824), 'numpy.deg2rad', 'np.deg2rad', (['theta'], {}), '(theta)\n', (12817, 12824), True, 'import numpy as np\n'), ((12882, 12899), 'numpy.deg2rad', 'np.deg2rad', (['theta'], {}), '(theta)\n', (12892, 12899), True, 'import numpy as np\n'), ((15724, 15735), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (15730, 15735), True, 'import numpy as np\n'), ((16083, 16094), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (16089, 16094), True, 'import numpy as np\n'), ((16388, 16399), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (16394, 16399), True, 'import numpy as np\n'), ((16696, 16707), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (16702, 16707), True, 'import numpy as np\n'), ((17429, 17440), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (17435, 17440), True, 'import numpy as np\n'), ((17828, 17839), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (17834, 17839), True, 'import numpy as np\n'), ((18160, 18171), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (18166, 18171), True, 'import numpy as np\n'), ((18483, 18494), 'numpy.max', 'np.max', (['img'], {}), '(img)\n', (18489, 18494), True, 'import numpy as np\n'), ((19468, 19486), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (19476, 19486), True, 'import numpy as np\n'), ((41444, 41453), 'matplotlib.colors.LogNorm', 'LogNorm', ([], {}), '()\n', (41451, 41453), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((41616, 41625), 'matplotlib.colors.LogNorm', 'LogNorm', ([], {}), '()\n', (41623, 41625), False, 'from matplotlib.colors import LogNorm, SymLogNorm\n'), ((53645, 53663), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (53653, 53663), True, 'import numpy as np\n'), ((53748, 53766), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (53756, 53766), True, 'import numpy as np\n'), ((28744, 28762), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28752, 28762), True, 'import numpy as np\n'), ((28796, 28814), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28804, 28814), True, 'import numpy as np\n'), ((52856, 52874), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (52864, 52874), True, 'import numpy as np\n'), ((52908, 52926), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (52916, 52926), True, 'import numpy as np\n'), ((28718, 28736), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28726, 28736), True, 'import numpy as np\n'), ((28770, 28788), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (28778, 28788), True, 'import numpy as np\n'), ((52830, 52848), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (52838, 52848), True, 'import numpy as np\n'), ((52882, 52900), 'numpy.shape', 'np.shape', (['psfmodel'], {}), '(psfmodel)\n', (52890, 52900), True, 'import numpy as np\n')] |
import os
from unittest import mock
import idelib
import numpy as np
import pandas as pd
import pytest
import hypothesis as hyp
import hypothesis.strategies as hyp_st
import hypothesis.extra.numpy as hyp_np
import endaq.batch.analyzer
from endaq.calc.stats import rms, L2_norm
np.random.seed(0)
@pytest.fixture()
def ide_SSX70065():
with idelib.importFile(os.path.join("tests", "batch", "SSX70065.IDE")) as doc:
yield doc
@pytest.fixture()
def analyzer_raw():
analyzer_mock = mock.create_autospec(
endaq.batch.analyzer.CalcCache, spec_set=False, instance=True
)
analyzer_mock.MPS2_TO_G = endaq.batch.analyzer.MPS2_TO_G
analyzer_mock.MPS_TO_MMPS = endaq.batch.analyzer.MPS_TO_MMPS
analyzer_mock.M_TO_MM = endaq.batch.analyzer.M_TO_MM
analyzer_mock.PV_NATURAL_FREQS = endaq.batch.analyzer.CalcCache.PV_NATURAL_FREQS
return analyzer_mock
@pytest.fixture()
def analyzer_bulk(analyzer_raw):
analyzer_mock = analyzer_raw
analyzer_mock._channels = {
"acc": mock.Mock(axis_names=list("XYZ")),
"gps": mock.Mock(axis_names=["Latitude", "Longitude"]),
"spd": mock.Mock(axis_names=["Ground"]),
"gyr": mock.Mock(axis_names=list("XYZ")),
"mic": mock.Mock(axis_names=["Mic"]),
"tmp": mock.Mock(axis_names=["Control"]),
"pre": mock.Mock(axis_names=["Control"]),
}
analyzer_mock._accelerationFs = 3000
analyzer_mock._accelerationData = pd.DataFrame(
np.random.random((21, 3)),
index=pd.Series(np.arange(21) / 3000, name="time"),
columns=pd.Series(["X", "Y", "Z"], name="axis"),
)
analyzer_mock._accelerationResultantData = analyzer_mock._accelerationData.apply(
L2_norm, axis="columns"
).to_frame()
analyzer_mock._microphoneData = pd.DataFrame(
np.random.random(21),
index=pd.Series(np.arange(21) / 3000, name="time"),
columns=pd.Series(["Mic"], name="axis"),
)
analyzer_mock._velocityData = pd.DataFrame(
np.random.random((21, 3)),
index=pd.Series(np.arange(21) / 3000, name="time"),
columns=pd.Series(["X", "Y", "Z"], name="axis"),
)
analyzer_mock._displacementData = pd.DataFrame(
np.random.random((21, 3)),
index=pd.Series(np.arange(21) / 3000, name="time"),
columns=pd.Series(["X", "Y", "Z"], name="axis"),
)
analyzer_mock._pressureData = pd.DataFrame(
np.random.random(5),
index=pd.Series(np.arange(5) / 5, name="time"),
columns=pd.Series(["Control"], name="axis"),
)
analyzer_mock._temperatureData = pd.DataFrame(
np.random.random(5),
index=pd.Series(np.arange(5) / 5, name="time"),
columns=pd.Series(["Control"], name="axis"),
)
analyzer_mock._gyroscopeData = pd.DataFrame(
np.random.random(11),
index=pd.Series(np.arange(11) / 5, name="time"),
columns=pd.Series(["Gyro"], name="axis"),
)
return analyzer_mock
# ==============================================================================
# Analyzer class tests
# ==============================================================================
class TestAnalyzer:
def test_from_ide_vs_from_literal(self, ide_SSX70065):
dataset = ide_SSX70065
calc_params = endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
)
dataset_cache = endaq.batch.analyzer.CalcCache.from_ide(dataset, calc_params)
raw_cache = endaq.batch.analyzer.CalcCache.from_raw_data(
[
(
endaq.ide.to_pandas(dataset.channels[32], time_mode="timedelta"),
("Acceleration", "g"),
),
(
endaq.ide.to_pandas(
dataset.channels[36].subchannels[0], time_mode="timedelta"
),
("Pressure", "Pa"),
),
(
endaq.ide.to_pandas(
dataset.channels[36].subchannels[1], time_mode="timedelta"
),
("Temperature", "°C"),
),
],
calc_params,
)
assert set(dataset_cache._channels) == set(raw_cache._channels)
for (ds_struct, raw_struct) in (
(dataset_cache._channels[measure_key], raw_cache._channels[measure_key])
for measure_key in dataset_cache._channels
):
assert ds_struct.units == raw_struct.units
pd.testing.assert_frame_equal(
ds_struct.to_pandas(time_mode="timedelta"),
raw_struct.to_pandas(time_mode="timedelta"),
)
@hyp.given(
df=hyp_np.arrays(
elements=hyp_st.floats(-1e7, 1e7),
shape=(20, 2),
dtype=np.float64,
).map(
lambda array: pd.DataFrame(
array, index=np.timedelta64(200, "ms") * np.arange(20)
)
),
)
def test_accelerationData(self, df):
calc_params = endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
)
data_cache = endaq.batch.analyzer.CalcCache.from_raw_data(
[(df, ("Acceleration", "m/s\u00b2"))], calc_params
)
df_accel = endaq.calc.filters.butterworth(
df, low_cutoff=calc_params.accel_highpass_cutoff
)
pd.testing.assert_frame_equal(data_cache._accelerationData, df_accel)
(_df_accel, df_vel, df_displ) = endaq.calc.integrate.integrals(
df_accel,
n=2,
zero=calc_params.accel_integral_zero,
highpass_cutoff=calc_params.accel_highpass_cutoff,
tukey_percent=calc_params.accel_integral_tukey_percent,
)
pd.testing.assert_frame_equal(data_cache._velocityData, df_vel)
pd.testing.assert_frame_equal(data_cache._displacementData, df_displ)
def test_accRMSFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.accRMSFull.func(analyzer_bulk)[
"Resultant"
]
expt_result = endaq.batch.analyzer.MPS2_TO_G * rms(
analyzer_bulk._accelerationData.apply(L2_norm, axis="columns")
)
assert calc_result == pytest.approx(expt_result)
def test_velRMSFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.velRMSFull.func(analyzer_bulk)[
"Resultant"
]
expt_result = endaq.batch.analyzer.MPS_TO_MMPS * rms(
analyzer_bulk._velocityData.apply(L2_norm, axis="columns")
)
assert calc_result == pytest.approx(expt_result)
def test_disRMSFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.disRMSFull.func(analyzer_bulk)[
"Resultant"
]
expt_result = endaq.batch.analyzer.M_TO_MM * rms(
analyzer_bulk._displacementData.apply(L2_norm, axis="columns")
)
assert calc_result == pytest.approx(expt_result)
def test_accPeakFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.accPeakFull.func(analyzer_bulk)[
"Resultant"
]
expt_result = endaq.batch.analyzer.MPS2_TO_G * rms(
analyzer_bulk._accelerationData.apply(L2_norm, axis="columns").max()
)
assert calc_result == pytest.approx(expt_result)
def test_pseudoVelPeakFull(self, analyzer_bulk):
pass
def test_gpsLocFull(self, analyzer_bulk):
pass
def test_gpsSpeedFull(self, analyzer_bulk):
pass
def test_gyroRMSFull(self, analyzer_bulk):
pass
def test_micRMSFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.micRMSFull.func(analyzer_bulk)[
"Mic"
]
expt_result = rms(analyzer_bulk._microphoneData)
assert calc_result == pytest.approx(expt_result)
def test_pressFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.pressFull.func(analyzer_bulk)[
"Control"
]
expt_result = analyzer_bulk._pressureData.mean()
assert calc_result == pytest.approx(expt_result)
def test_tempFull(self, analyzer_bulk):
calc_result = endaq.batch.analyzer.CalcCache.tempFull.func(analyzer_bulk)[
"Control"
]
expt_result = analyzer_bulk._temperatureData.mean()
assert calc_result == pytest.approx(expt_result)
###########################################################################
# Live File Tests
def testLiveFile(self, ide_SSX70065):
analyzer = endaq.batch.analyzer.CalcCache.from_ide(
ide_SSX70065,
endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
),
)
raw_accel = ide_SSX70065.channels[32].getSession().arrayValues()
np.testing.assert_allclose(
analyzer.accRMSFull["Resultant"],
rms(L2_norm(raw_accel - raw_accel.mean(axis=-1, keepdims=True), axis=0)),
rtol=1e-3,
)
np.testing.assert_allclose(
analyzer.pressFull,
1e-3
* ide_SSX70065.channels[36]
.subchannels[0]
.getSession()
.arrayValues()
.mean(),
rtol=1e-5,
)
np.testing.assert_allclose(
analyzer.tempFull,
ide_SSX70065.channels[36].subchannels[1].getSession().arrayValues().mean(),
rtol=1e-4,
)
@pytest.mark.parametrize(
"filename",
[
os.path.join("tests", "batch", "test1.IDE"),
os.path.join("tests", "batch", "test2.IDE"),
],
)
def testLiveFiles1(self, filename):
ds = idelib.importFile(filename)
analyzer = endaq.batch.analyzer.CalcCache.from_ide(
ds,
endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
),
)
raw_accel = ds.channels[8].getSession().arrayValues(subchannels=[0, 1, 2])
np.testing.assert_allclose(
analyzer.accRMSFull["Resultant"],
rms(L2_norm(raw_accel - raw_accel.mean(axis=-1, keepdims=True), axis=0)),
rtol=0.55, # this is... probably a little too high...
)
audio_scale = 5.307530522779073
np.testing.assert_allclose(
analyzer.micRMSFull,
audio_scale * rms(ds.channels[8].subchannels[3].getSession().arrayValues()),
rtol=1e-3,
)
np.testing.assert_allclose(
analyzer.gyroRMSFull["Resultant"],
rms(L2_norm(ds.channels[84].getSession().arrayValues(), axis=0)),
rtol=1e-2,
)
np.testing.assert_allclose(
analyzer.pressFull,
1e-3 * ds.channels[36].subchannels[0].getSession().arrayValues().mean(),
rtol=1e-3,
)
np.testing.assert_allclose(
analyzer.tempFull,
ds.channels[36].subchannels[1].getSession().arrayValues().mean(),
rtol=0.05, # ...GEFGW?
)
np.testing.assert_allclose(
analyzer.humidFull,
ds.channels[59].subchannels[2].getSession().arrayValues().mean(),
)
@pytest.mark.parametrize(
"filename",
[
os.path.join("tests", "batch", "DAQ12006_000005.IDE"),
],
)
def testLiveFiles2(self, filename):
"""
Checks that audio in units of Pascals are properly handled.
"""
ds = idelib.importFile(filename)
analyzer = endaq.batch.analyzer.CalcCache.from_ide(
ds,
endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
),
)
np.testing.assert_allclose(
analyzer.micRMSFull,
rms(ds.channels[8].subchannels[3].getSession().arrayValues()),
rtol=1e-3,
)
@pytest.mark.parametrize(
"filename",
[
os.path.join("tests", "batch", "test3.IDE"),
],
)
def testLiveFile3(self, filename):
ds = idelib.importFile(filename)
analyzer = endaq.batch.analyzer.CalcCache.from_ide(
ds,
endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
),
)
ch_rot = ds.channels[84]
np.testing.assert_allclose(
analyzer.gyroRMSFull["Resultant"],
rms(L2_norm(ch_rot.getSession().arrayValues(), axis=0)),
rtol=0.005,
)
@pytest.mark.parametrize(
"filename, sample_index",
[
(os.path.join("tests", "batch", "test_GPS_2.IDE"), -2),
(os.path.join("tests", "batch", "test_GPS_3.IDE"), -4),
],
)
def testLiveFileGPS(self, filename, sample_index):
ds = idelib.importFile(filename)
analyzer = endaq.batch.analyzer.CalcCache.from_ide(
ds,
endaq.batch.analyzer.CalcParams(
accel_start_time=None,
accel_end_time=None,
accel_start_margin=None,
accel_end_margin=None,
accel_highpass_cutoff=1,
accel_integral_tukey_percent=0,
accel_integral_zero="mean",
psd_freq_bin_width=1,
psd_window="hann",
pvss_init_freq=1,
pvss_bins_per_octave=12,
vc_init_freq=1,
vc_bins_per_octave=3,
),
)
ch_gps = ds.channels[88]
# confirming channel format for gps file
assert ch_gps.subchannels[0].name == "Latitude"
assert ch_gps.subchannels[1].name == "Longitude"
assert ch_gps.subchannels[3].name == "Ground Speed"
assert tuple(analyzer.gpsLocFull) == tuple(
ch_gps.getSession().arrayValues()[[0, 1], sample_index],
)
# Resampling throws off mean calculation
# -> use resampled data for comparsion
# gps_speed = analyzer.MPS_TO_KMPH * ch_gps.getSession().arrayValues(subchannels=[3])
gps_speed = analyzer._gpsSpeedData
np.testing.assert_allclose(
analyzer.gpsSpeedFull,
np.mean(gps_speed[gps_speed != 0]),
)
| [
"pandas.Series",
"pytest.approx",
"numpy.mean",
"unittest.mock.Mock",
"unittest.mock.create_autospec",
"numpy.random.random",
"endaq.calc.stats.rms",
"os.path.join",
"hypothesis.strategies.floats",
"numpy.timedelta64",
"numpy.random.seed",
"pytest.fixture",
"pandas.testing.assert_frame_equal... | [((281, 298), 'numpy.random.seed', 'np.random.seed', (['(0)'], {}), '(0)\n', (295, 298), True, 'import numpy as np\n'), ((302, 318), 'pytest.fixture', 'pytest.fixture', ([], {}), '()\n', (316, 318), False, 'import pytest\n'), ((443, 459), 'pytest.fixture', 'pytest.fixture', ([], {}), '()\n', (457, 459), False, 'import pytest\n'), ((896, 912), 'pytest.fixture', 'pytest.fixture', ([], {}), '()\n', (910, 912), False, 'import pytest\n'), ((500, 587), 'unittest.mock.create_autospec', 'mock.create_autospec', (['endaq.batch.analyzer.CalcCache'], {'spec_set': '(False)', 'instance': '(True)'}), '(endaq.batch.analyzer.CalcCache, spec_set=False,\n instance=True)\n', (520, 587), False, 'from unittest import mock\n'), ((1077, 1124), 'unittest.mock.Mock', 'mock.Mock', ([], {'axis_names': "['Latitude', 'Longitude']"}), "(axis_names=['Latitude', 'Longitude'])\n", (1086, 1124), False, 'from unittest import mock\n'), ((1141, 1173), 'unittest.mock.Mock', 'mock.Mock', ([], {'axis_names': "['Ground']"}), "(axis_names=['Ground'])\n", (1150, 1173), False, 'from unittest import mock\n'), ((1240, 1269), 'unittest.mock.Mock', 'mock.Mock', ([], {'axis_names': "['Mic']"}), "(axis_names=['Mic'])\n", (1249, 1269), False, 'from unittest import mock\n'), ((1286, 1319), 'unittest.mock.Mock', 'mock.Mock', ([], {'axis_names': "['Control']"}), "(axis_names=['Control'])\n", (1295, 1319), False, 'from unittest import mock\n'), ((1336, 1369), 'unittest.mock.Mock', 'mock.Mock', ([], {'axis_names': "['Control']"}), "(axis_names=['Control'])\n", (1345, 1369), False, 'from unittest import mock\n'), ((1479, 1504), 'numpy.random.random', 'np.random.random', (['(21, 3)'], {}), '((21, 3))\n', (1495, 1504), True, 'import numpy as np\n'), ((1822, 1842), 'numpy.random.random', 'np.random.random', (['(21)'], {}), '(21)\n', (1838, 1842), True, 'import numpy as np\n'), ((2015, 2040), 'numpy.random.random', 'np.random.random', (['(21, 3)'], {}), '((21, 3))\n', (2031, 2040), True, 'import numpy as np\n'), ((2225, 2250), 'numpy.random.random', 'np.random.random', (['(21, 3)'], {}), '((21, 3))\n', (2241, 2250), True, 'import numpy as np\n'), ((2431, 2450), 'numpy.random.random', 'np.random.random', (['(5)'], {}), '(5)\n', (2447, 2450), True, 'import numpy as np\n'), ((2626, 2645), 'numpy.random.random', 'np.random.random', (['(5)'], {}), '(5)\n', (2642, 2645), True, 'import numpy as np\n'), ((2819, 2839), 'numpy.random.random', 'np.random.random', (['(11)'], {}), '(11)\n', (2835, 2839), True, 'import numpy as np\n'), ((6269, 6338), 'pandas.testing.assert_frame_equal', 'pd.testing.assert_frame_equal', (['data_cache._accelerationData', 'df_accel'], {}), '(data_cache._accelerationData, df_accel)\n', (6298, 6338), True, 'import pandas as pd\n'), ((6650, 6713), 'pandas.testing.assert_frame_equal', 'pd.testing.assert_frame_equal', (['data_cache._velocityData', 'df_vel'], {}), '(data_cache._velocityData, df_vel)\n', (6679, 6713), True, 'import pandas as pd\n'), ((6722, 6791), 'pandas.testing.assert_frame_equal', 'pd.testing.assert_frame_equal', (['data_cache._displacementData', 'df_displ'], {}), '(data_cache._displacementData, df_displ)\n', (6751, 6791), True, 'import pandas as pd\n'), ((8702, 8736), 'endaq.calc.stats.rms', 'rms', (['analyzer_bulk._microphoneData'], {}), '(analyzer_bulk._microphoneData)\n', (8705, 8736), False, 'from endaq.calc.stats import rms, L2_norm\n'), ((11127, 11154), 'idelib.importFile', 'idelib.importFile', (['filename'], {}), '(filename)\n', (11144, 11154), False, 'import idelib\n'), ((13385, 13412), 'idelib.importFile', 'idelib.importFile', (['filename'], {}), '(filename)\n', (13402, 13412), False, 'import idelib\n'), ((14431, 14458), 'idelib.importFile', 'idelib.importFile', (['filename'], {}), '(filename)\n', (14448, 14458), False, 'import idelib\n'), ((15628, 15655), 'idelib.importFile', 'idelib.importFile', (['filename'], {}), '(filename)\n', (15645, 15655), False, 'import idelib\n'), ((366, 412), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""SSX70065.IDE"""'], {}), "('tests', 'batch', 'SSX70065.IDE')\n", (378, 412), False, 'import os\n'), ((1582, 1621), 'pandas.Series', 'pd.Series', (["['X', 'Y', 'Z']"], {'name': '"""axis"""'}), "(['X', 'Y', 'Z'], name='axis')\n", (1591, 1621), True, 'import pandas as pd\n'), ((1920, 1951), 'pandas.Series', 'pd.Series', (["['Mic']"], {'name': '"""axis"""'}), "(['Mic'], name='axis')\n", (1929, 1951), True, 'import pandas as pd\n'), ((2118, 2157), 'pandas.Series', 'pd.Series', (["['X', 'Y', 'Z']"], {'name': '"""axis"""'}), "(['X', 'Y', 'Z'], name='axis')\n", (2127, 2157), True, 'import pandas as pd\n'), ((2328, 2367), 'pandas.Series', 'pd.Series', (["['X', 'Y', 'Z']"], {'name': '"""axis"""'}), "(['X', 'Y', 'Z'], name='axis')\n", (2337, 2367), True, 'import pandas as pd\n'), ((2524, 2559), 'pandas.Series', 'pd.Series', (["['Control']"], {'name': '"""axis"""'}), "(['Control'], name='axis')\n", (2533, 2559), True, 'import pandas as pd\n'), ((2719, 2754), 'pandas.Series', 'pd.Series', (["['Control']"], {'name': '"""axis"""'}), "(['Control'], name='axis')\n", (2728, 2754), True, 'import pandas as pd\n'), ((2914, 2946), 'pandas.Series', 'pd.Series', (["['Gyro']"], {'name': '"""axis"""'}), "(['Gyro'], name='axis')\n", (2923, 2946), True, 'import pandas as pd\n'), ((7134, 7160), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (7147, 7160), False, 'import pytest\n'), ((7500, 7526), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (7513, 7526), False, 'import pytest\n'), ((7866, 7892), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (7879, 7892), False, 'import pytest\n'), ((8243, 8269), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (8256, 8269), False, 'import pytest\n'), ((8768, 8794), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (8781, 8794), False, 'import pytest\n'), ((9045, 9071), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (9058, 9071), False, 'import pytest\n'), ((9323, 9349), 'pytest.approx', 'pytest.approx', (['expt_result'], {}), '(expt_result)\n', (9336, 9349), False, 'import pytest\n'), ((10955, 10998), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""test1.IDE"""'], {}), "('tests', 'batch', 'test1.IDE')\n", (10967, 10998), False, 'import os\n'), ((11012, 11055), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""test2.IDE"""'], {}), "('tests', 'batch', 'test2.IDE')\n", (11024, 11055), False, 'import os\n'), ((13168, 13221), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""DAQ12006_000005.IDE"""'], {}), "('tests', 'batch', 'DAQ12006_000005.IDE')\n", (13180, 13221), False, 'import os\n'), ((14317, 14360), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""test3.IDE"""'], {}), "('tests', 'batch', 'test3.IDE')\n", (14329, 14360), False, 'import os\n'), ((17013, 17047), 'numpy.mean', 'np.mean', (['gps_speed[gps_speed != 0]'], {}), '(gps_speed[gps_speed != 0])\n', (17020, 17047), True, 'import numpy as np\n'), ((15420, 15468), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""test_GPS_2.IDE"""'], {}), "('tests', 'batch', 'test_GPS_2.IDE')\n", (15432, 15468), False, 'import os\n'), ((15488, 15536), 'os.path.join', 'os.path.join', (['"""tests"""', '"""batch"""', '"""test_GPS_3.IDE"""'], {}), "('tests', 'batch', 'test_GPS_3.IDE')\n", (15500, 15536), False, 'import os\n'), ((1530, 1543), 'numpy.arange', 'np.arange', (['(21)'], {}), '(21)\n', (1539, 1543), True, 'import numpy as np\n'), ((1868, 1881), 'numpy.arange', 'np.arange', (['(21)'], {}), '(21)\n', (1877, 1881), True, 'import numpy as np\n'), ((2066, 2079), 'numpy.arange', 'np.arange', (['(21)'], {}), '(21)\n', (2075, 2079), True, 'import numpy as np\n'), ((2276, 2289), 'numpy.arange', 'np.arange', (['(21)'], {}), '(21)\n', (2285, 2289), True, 'import numpy as np\n'), ((2476, 2488), 'numpy.arange', 'np.arange', (['(5)'], {}), '(5)\n', (2485, 2488), True, 'import numpy as np\n'), ((2671, 2683), 'numpy.arange', 'np.arange', (['(5)'], {}), '(5)\n', (2680, 2683), True, 'import numpy as np\n'), ((2865, 2878), 'numpy.arange', 'np.arange', (['(11)'], {}), '(11)\n', (2874, 2878), True, 'import numpy as np\n'), ((5197, 5235), 'hypothesis.strategies.floats', 'hyp_st.floats', (['(-10000000.0)', '(10000000.0)'], {}), '(-10000000.0, 10000000.0)\n', (5210, 5235), True, 'import hypothesis.strategies as hyp_st\n'), ((5364, 5389), 'numpy.timedelta64', 'np.timedelta64', (['(200)', '"""ms"""'], {}), "(200, 'ms')\n", (5378, 5389), True, 'import numpy as np\n'), ((5392, 5405), 'numpy.arange', 'np.arange', (['(20)'], {}), '(20)\n', (5401, 5405), True, 'import numpy as np\n')] |
from numpy import array
def scigrid_2011_01_04_13():
ppc = {"version": '2'}
ppc["baseMVA"] = 100.0
ppc["bus"] = array([
[586, 3, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[589, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[590, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[593, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[594, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[595, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[598, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[599, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[601, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[602, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[603, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[607, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[608, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[609, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[612, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[613, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[614, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[616, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[617, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[618, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[619, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[621, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[623, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[624, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[628, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[629, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[632, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[637, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[638, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[640, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[641, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[643, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[646, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[647, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[650, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[652, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[655, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[661, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[663, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[666, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[668, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[670, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[672, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[676, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[681, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[683, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[687, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[689, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[691, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[693, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[694, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[695, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[696, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[697, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[698, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[702, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[704, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[705, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[707, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[708, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[711, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[713, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[716, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[717, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[719, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[724, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[727, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[728, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[730, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[731, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[732, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[735, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[737, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[738, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[741, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[742, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[743, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[746, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[747, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[748, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[749, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[750, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[753, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[758, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[760, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[762, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[763, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[765, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[767, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[769, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[771, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[772, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[774, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[776, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[777, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[778, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[781, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[784, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[785, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[787, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[788, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[789, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[791, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[792, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[795, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[801, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[802, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[805, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[808, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[809, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[811, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[816, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[817, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[821, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[822, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[826, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[829, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[830, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[835, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[836, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[837, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[839, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[841, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[843, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[844, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[845, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[849, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[850, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[851, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[853, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[854, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[855, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[856, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[857, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[858, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[859, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[860, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[862, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[863, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[864, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[865, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[867, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[869, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[870, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[872, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[873, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[874, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[875, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[877, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[882, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[883, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[886, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[889, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[890, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[895, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[896, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[898, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[900, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[902, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[903, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[905, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[906, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[907, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[909, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[913, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[915, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[917, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[918, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[920, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[921, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[923, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[925, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[928, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[931, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[934, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[935, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[936, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[937, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[939, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[940, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[942, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[944, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[945, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[950, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[952, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[958, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[959, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[960, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[963, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[965, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[966, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[967, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[968, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9 ],
[969, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9 ],
[971, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[973, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[976, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[977, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[978, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[981, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[982, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[983, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[984, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[985, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[986, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[987, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[988, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[990, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[993, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[994, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[995, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[997, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[999, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1000, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1002, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1003, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1007, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1008, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1010, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1011, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1012, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1018, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1023, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1026, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1027, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1028, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1029, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1030, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1031, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1032, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1033, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1034, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1035, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1036, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1037, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1038, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1039, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1040, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1041, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1042, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1044, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1046, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1047, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1048, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1049, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1050, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1051, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1052, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1053, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1054, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1055, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1056, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1057, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1058, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1059, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1060, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1061, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1062, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1063, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1064, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1065, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1066, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1067, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1072, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1073, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1074, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1075, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1076, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1077, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1078, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1079, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1080, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1081, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1082, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1083, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1084, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1085, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1086, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1087, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1088, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1089, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1090, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1091, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1092, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1093, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1094, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1095, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1096, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1097, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1098, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1099, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1101, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1102, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1103, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1104, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1105, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1106, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1107, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1108, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1109, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1110, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1111, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1112, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1113, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1114, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1115, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1116, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1117, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1118, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1119, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1120, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1121, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1122, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1123, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1124, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1125, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1126, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1127, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1128, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1129, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1130, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1131, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1132, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1133, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1134, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1135, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1136, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1137, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1138, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1139, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1140, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1141, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1142, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1143, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1144, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1145, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1146, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1147, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1148, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1149, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1150, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1151, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1152, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1153, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1154, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1155, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1156, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1157, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1158, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1159, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1160, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1161, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1162, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1163, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1164, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1165, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1166, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1167, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1168, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1169, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1170, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1171, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1172, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1173, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1174, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1175, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1176, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1177, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1178, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1179, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1180, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1181, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1182, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1183, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1184, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1185, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1186, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1187, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1188, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1189, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1190, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1191, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1192, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1196, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1197, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1198, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1199, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1200, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1204, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1206, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1208, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1211, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1212, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1213, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1214, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1215, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1216, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1217, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1218, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1219, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1220, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1221, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1222, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1224, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1225, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1226, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1227, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1229, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1230, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1231, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1232, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1233, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1235, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1236, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1237, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1238, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1239, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1240, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1241, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1242, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1243, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1244, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1245, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1246, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1247, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1248, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1249, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1250, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1251, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1252, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1253, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1254, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1255, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1256, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1257, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1258, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1259, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1260, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1261, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1264, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1266, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1267, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1268, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1269, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1270, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1274, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1275, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1276, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1277, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1278, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1280, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1281, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1282, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1283, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1285, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1286, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1287, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1288, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1289, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1290, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1291, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1292, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1293, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1294, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1295, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1296, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1297, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1298, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1299, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1300, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1301, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1302, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1303, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1306, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1307, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1308, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1312, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1316, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1317, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1319, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1323, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1326, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1327, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1328, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1329, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1331, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1333, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1336, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1337, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1339, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1340, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1345, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1346, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1348, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1349, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1356, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1357, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1359, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1360, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1361, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1362, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1366, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1367, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1372, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1373, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1374, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1375, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1376, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1377, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1378, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1379, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1380, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1381, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1382, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1383, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1384, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1385, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1386, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1387, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1388, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1389, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1390, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1391, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1392, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1393, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1394, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1395, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1396, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1397, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1398, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1399, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1400, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1401, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1402, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1403, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1404, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1405, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1406, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1407, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1408, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1409, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1410, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1411, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1418, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1419, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1421, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9 ],
[1422, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1423, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1424, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1425, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1426, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1427, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1428, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1429, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1431, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1432, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1433, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1434, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1435, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1436, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1437, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1438, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1439, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1440, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1443, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1444, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1445, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1446, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1447, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1448, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1449, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1450, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1451, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1452, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1453, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1454, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1455, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1456, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1457, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1458, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1459, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1460, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1461, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1462, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1463, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1464, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1465, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1466, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1467, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1468, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1469, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1470, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1471, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1472, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1473, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1474, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1475, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1476, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1477, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1483, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1484, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1485, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1486, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1489, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1490, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1491, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1492, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1493, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1494, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1495, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1497, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1498, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1501, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1503, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1504, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1505, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1506, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1507, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1510, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1511, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1512, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1513, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1518, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1519, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1520, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1521, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1522, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1523, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1524, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1525, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1526, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1527, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1528, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1529, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1530, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1531, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1532, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1534, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1535, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1536, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1537, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1538, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1539, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1540, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1541, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1542, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1543, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1544, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1545, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1546, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1547, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1548, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1549, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1550, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1551, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1552, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1553, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1554, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1555, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1556, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1557, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1558, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1559, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1560, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1561, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1562, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1563, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1564, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1565, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1566, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1567, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1568, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1569, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1570, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1571, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1572, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1573, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1574, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1575, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1576, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1577, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1578, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1579, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1580, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1581, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1582, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1583, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1584, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1585, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1586, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1587, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1588, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1589, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1590, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1591, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1592, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1593, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1594, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1595, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1596, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1597, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1598, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1599, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1600, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1601, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1602, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1603, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1604, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1605, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1606, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1607, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1608, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1609, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1610, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1611, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1612, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1613, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1614, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1615, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1616, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1617, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1618, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1619, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1620, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1621, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1622, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1623, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1624, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1625, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1626, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1627, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1628, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1629, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1630, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1631, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1632, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1633, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1634, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1635, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1636, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1637, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1638, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1639, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1640, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1641, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1643, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1644, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1645, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1646, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1647, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1648, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1649, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1650, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1651, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1652, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1653, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1654, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1655, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1656, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1657, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1658, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1659, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1660, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1661, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1662, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1663, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1664, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1665, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1666, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1667, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1668, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1669, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1670, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1671, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1672, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1673, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1674, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1675, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1676, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1677, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1678, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1679, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1680, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1681, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1682, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1683, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1684, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1685, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1686, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1687, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1688, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1689, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1690, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1691, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1692, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1693, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1694, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1695, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1696, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1697, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1698, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1699, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1700, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1701, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1702, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1703, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1704, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1705, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1706, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1707, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1708, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1709, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1710, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1711, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1712, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1713, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1715, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1716, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1717, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1718, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1719, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1720, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1721, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1723, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1724, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1725, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1726, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1727, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1728, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1729, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1730, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1731, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1732, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1733, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1734, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1735, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1736, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1737, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1738, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1739, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1740, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1741, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1742, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1743, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1744, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1745, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1746, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1747, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1748, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1749, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1750, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1751, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1752, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1753, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1754, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1755, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1756, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1757, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1758, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1759, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1760, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1761, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1762, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1763, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1764, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1765, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1766, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1767, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1768, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1769, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1770, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1771, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1772, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1773, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1774, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1775, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1776, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1777, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1778, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1779, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1780, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1781, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1782, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1783, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1784, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1785, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1786, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1787, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1788, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1789, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1790, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1791, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1792, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1793, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1794, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1795, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1796, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1797, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1798, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1799, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1800, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1801, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1802, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1803, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1804, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1805, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1807, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1808, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1809, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1810, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1811, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1812, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1813, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1815, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1816, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1817, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1818, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1819, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1820, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1821, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1822, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1823, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1824, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1825, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1826, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1827, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1828, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1830, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1831, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1832, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1833, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1834, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1836, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1837, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1838, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1839, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1840, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1841, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1842, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1843, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1844, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1845, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1846, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1847, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1848, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1849, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1850, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1851, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1852, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1853, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1854, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1855, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1856, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1857, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1858, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1860, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1861, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1862, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1863, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1864, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1865, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1866, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1867, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1868, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1869, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1870, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1871, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1872, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1873, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1874, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1875, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1876, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1877, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1878, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1879, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1880, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1881, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1882, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1883, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1884, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1885, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1886, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1887, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1888, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1889, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1890, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1891, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1892, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1893, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1894, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1895, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1896, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1897, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1898, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1899, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1900, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1901, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1902, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1903, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1904, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1905, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1906, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1907, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1908, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1909, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9 ],
[1910, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1911, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1912, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[1913, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1914, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1915, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1916, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1917, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1918, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1919, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1920, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1921, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1923, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1924, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1925, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1926, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1927, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1928, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1929, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1930, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1931, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1932, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1933, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1934, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1935, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1936, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1937, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1938, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1939, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1940, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1941, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1942, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1943, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1944, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1945, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1946, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1947, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1948, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1949, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1950, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1951, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1952, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1953, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1954, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1955, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1956, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1957, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1958, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1959, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1960, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1961, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1962, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1963, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1964, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1965, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1966, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1967, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1968, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1969, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1970, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1971, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1972, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1973, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1974, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1975, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1976, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1977, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1978, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1979, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1980, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1981, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1982, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1983, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1984, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1985, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1986, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1987, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1988, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1989, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1990, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1991, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1992, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1993, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1994, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1995, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1996, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1997, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1998, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1999, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2000, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2001, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2002, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2003, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2004, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2005, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2006, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2007, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2008, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[1, 1, 331.244507, 66.248901, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[2, 1, 0, 0, 0, 0, 0, 1.000014, 0, 380.0, 0, 1.1, 0.9 ],
[3, 1, 58.058252, 11.61165, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[4, 1, 95.478722, 19.095744, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[5, 1, 0, 0, 0, 0, 0, 0.999729, 0, 380.0, 0, 1.1, 0.9 ],
[6, 1, 280.365104, 56.073021, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[7, 1, 211.28997, 42.257994, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[8, 1, 176.792351, 35.35847, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[9, 1, 119.561904, 23.912381, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[10, 1, 0, 0, 0, 0, 0, 0.998922, 0, 380.0, 0, 1.1, 0.9 ],
[11, 1, 104.756609, 20.951322, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[12, 1, 0, 0, 0, 0, 0, 1.000664, 0, 380.0, 0, 1.1, 0.9 ],
[13, 1, 0, 0, 0, 0, 0, 1.000269, 0, 380.0, 0, 1.1, 0.9 ],
[14, 1, 250.53938, 50.107876, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[15, 1, 0, 0, 0, 0, 0, 1.000619, 0, 380.0, 0, 1.1, 0.9 ],
[16, 1, 427.285772, 85.457154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[17, 1, 100.637024, 20.127405, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[18, 1, 0, 0, 0, 0, 0, 1.00161, 0, 380.0, 0, 1.1, 0.9 ],
[19, 1, 248.636149, 49.72723, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[20, 1, 0, 0, 0, 0, 0, 0.996347, 0, 380.0, 0, 1.1, 0.9 ],
[21, 1, 1069.17358, 213.834716, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[22, 1, 0, 0, 0, 0, 0, 0.999305, 0, 380.0, 0, 1.1, 0.9 ],
[23, 1, 139.991073, 27.998215, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[24, 1, 0, 0, 0, 0, 0, 0.999967, 0, 380.0, 0, 1.1, 0.9 ],
[25, 1, 66.958706, 13.391741, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[26, 1, 0, 0, 0, 0, 0, 1.000158, 0, 380.0, 0, 1.1, 0.9 ],
[27, 1, 82.193665, 16.438733, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[28, 1, 242.857656, 48.571531, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[29, 1, 89.206673, 17.841335, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[30, 1, 0, 0, 0, 0, 0, 0.999019, 0, 380.0, 0, 1.1, 0.9 ],
[31, 1, 175.55643, 35.111286, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[32, 1, 0, 0, 0, 0, 0, 0.998857, 0, 380.0, 0, 1.1, 0.9 ],
[33, 1, 220.114772, 44.022954, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[34, 1, 43.669738, 8.733948, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[35, 1, 2.891167, 0.578233, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[36, 1, 9.57224, 1.914448, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[37, 1, 0, 0, 0, 0, 0, 1.003328, 0, 380.0, 0, 1.1, 0.9 ],
[38, 1, 230.616628, 46.123326, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[39, 1, 75.515064, 15.103013, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[40, 1, 78.877846, 15.775569, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[41, 1, 84.775808, 16.955162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[42, 1, 0, 0, 0, 0, 0, 1.001194, 0, 380.0, 0, 1.1, 0.9 ],
[43, 1, 130.007521, 26.001504, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[44, 1, 166.325348, 33.26507, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[45, 1, 88.289214, 17.657843, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[46, 1, 0, 0, 0, 0, 0, 1.000199, 0, 380.0, 0, 1.1, 0.9 ],
[47, 1, 383.88859, 76.777718, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[48, 1, 263.872284, 52.774457, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[49, 1, 66.746375, 13.349275, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[50, 1, 97.191732, 19.438346, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[51, 1, 125.95414, 25.190828, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[52, 1, 0, 0, 0, 0, 0, 1.000211, 0, 380.0, 0, 1.1, 0.9 ],
[53, 1, 191.115234, 38.223047, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[54, 1, 97.097666, 19.419533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[55, 1, 95.224435, 19.044887, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[56, 1, 0, 0, 0, 0, 0, 0.999681, 0, 380.0, 0, 1.1, 0.9 ],
[57, 1, 113.668229, 22.733646, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[58, 1, 260.374368, 52.074874, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[59, 1, 74.364511, 14.872902, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[60, 1, 39.207033, 7.841407, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[61, 1, 0, 0, 0, 0, 0, 0.999712, 0, 380.0, 0, 1.1, 0.9 ],
[62, 1, 298.90577, 59.781154, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[63, 1, 176.441517, 35.288303, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[64, 1, 1872.402063, 374.480413, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[65, 1, 6.238875, 1.247775, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[66, 1, 197.952392, 39.590478, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[67, 1, 424.641227, 84.928245, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[68, 1, 0, 0, 0, 0, 0, 0.998339, 0, 380.0, 0, 1.1, 0.9 ],
[69, 1, 0, 0, 0, 0, 0, 1.000383, 0, 380.0, 0, 1.1, 0.9 ],
[70, 1, 803.324346, 160.664869, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[71, 1, 186.682231, 37.336446, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[72, 1, 305.759877, 61.151975, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[73, 1, 97.885258, 19.577052, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[74, 1, 0, 0, 0, 0, 0, 1.001287, 0, 380.0, 0, 1.1, 0.9 ],
[75, 1, 121.999483, 24.399897, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[76, 1, 117.756269, 23.551254, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[77, 1, 114.054994, 22.810999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[78, 1, 0, 0, 0, 0, 0, 0.998562, 0, 380.0, 0, 1.1, 0.9 ],
[79, 1, 117.770571, 23.554114, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[80, 1, 125.090518, 25.018104, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[81, 1, 141.210159, 28.242032, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[82, 1, 4.699557, 0.939911, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[83, 1, 314.435019, 62.887004, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[84, 1, 30.954188, 6.190838, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[85, 1, 107.343113, 21.468623, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[86, 1, 0, 0, 0, 0, 0, 0.999919, 0, 380.0, 0, 1.1, 0.9 ],
[87, 1, 0, 0, 0, 0, 0, 0.998341, 0, 380.0, 0, 1.1, 0.9 ],
[88, 1, 86.640119, 17.328024, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[89, 1, 107.490329, 21.498066, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[90, 1, 124.146584, 24.829317, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[91, 1, 43.122342, 8.624468, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[92, 1, 47.061603, 9.412321, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[93, 1, 46.158004, 9.231601, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[94, 1, 0, 0, 0, 0, 0, 1.001352, 0, 380.0, 0, 1.1, 0.9 ],
[95, 1, 0, 0, 0, 0, 0, 1.001068, 0, 380.0, 0, 1.1, 0.9 ],
[96, 1, 0, 0, 0, 0, 0, 0.999999, 0, 380.0, 0, 1.1, 0.9 ],
[97, 1, 6.491779, 1.298356, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[98, 1, 119.357696, 23.871539, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[99, 1, 0, 0, 0, 0, 0, 1.001016, 0, 380.0, 0, 1.1, 0.9 ],
[100, 1, 0, 0, 0, 0, 0, 1.001474, 0, 380.0, 0, 1.1, 0.9 ],
[101, 1, 84.517421, 16.903484, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[102, 1, 163.587407, 32.717481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[103, 1, 191.265333, 38.253067, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[104, 1, 0, 0, 0, 0, 0, 0.999855, 0, 380.0, 0, 1.1, 0.9 ],
[105, 1, 0, 0, 0, 0, 0, 0.99956, 0, 380.0, 0, 1.1, 0.9 ],
[106, 1, 0, 0, 0, 0, 0, 0.999751, 0, 380.0, 0, 1.1, 0.9 ],
[107, 1, 0, 0, 0, 0, 0, 1.000002, 0, 380.0, 0, 1.1, 0.9 ],
[108, 1, 134.914374, 26.982875, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[109, 1, 54.624528, 10.924906, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[110, 1, 70.904827, 14.180965, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[111, 1, 124.953464, 24.990693, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[112, 1, 63.242204, 12.648441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[113, 1, 99.692623, 19.938525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[114, 1, 146.822855, 29.364571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[115, 1, 94.648063, 18.929613, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[116, 1, 158.380517, 31.676103, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[117, 1, 0, 0, 0, 0, 0, 1.000396, 0, 380.0, 0, 1.1, 0.9 ],
[118, 1, 245.229569, 49.045914, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[119, 1, 47.535561, 9.507112, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[120, 1, 0, 0, 0, 0, 0, 1.001046, 0, 380.0, 0, 1.1, 0.9 ],
[121, 1, 64.553313, 12.910663, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[122, 1, 56.51577, 11.303154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[123, 1, 0, 0, 0, 0, 0, 1.000104, 0, 380.0, 0, 1.1, 0.9 ],
[124, 1, 0, 0, 0, 0, 0, 1.000001, 0, 380.0, 0, 1.1, 0.9 ],
[125, 1, 0, 0, 0, 0, 0, 0.999462, 0, 380.0, 0, 1.1, 0.9 ],
[126, 1, 296.313585, 59.262717, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[127, 1, 229.081574, 45.816315, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[128, 1, 0, 0, 0, 0, 0, 1.001332, 0, 380.0, 0, 1.1, 0.9 ],
[129, 1, 0, 0, 0, 0, 0, 0.999994, 0, 380.0, 0, 1.1, 0.9 ],
[130, 1, 315.861818, 63.172364, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[131, 1, 69.742016, 13.948403, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[132, 1, 181.597665, 36.319533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[133, 1, 60.828104, 12.165621, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[134, 1, 60.579014, 12.115803, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[135, 1, 60.659331, 12.131866, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[136, 1, 58.762484, 11.752497, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[137, 1, 47.004578, 9.400916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[138, 1, 0, 0, 0, 0, 0, 0.998491, 0, 380.0, 0, 1.1, 0.9 ],
[139, 1, 92.077205, 18.415441, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[140, 1, 63.67533, 12.735066, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[141, 1, 75.444027, 15.088805, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[142, 1, 83.015362, 16.603072, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[143, 1, 0, 0, 0, 0, 0, 0.999975, 0, 380.0, 0, 1.1, 0.9 ],
[144, 1, 75.618411, 15.123682, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[145, 1, 219.975959, 43.995192, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[146, 1, 283.590392, 56.718078, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[147, 1, 173.824211, 34.764842, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[148, 1, 245.297873, 49.059575, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[149, 1, 158.141763, 31.628353, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[150, 1, 206.470492, 41.294098, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[151, 1, 48.654456, 9.730891, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[152, 1, 101.001605, 20.200321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[153, 1, 180.20329, 36.040658, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[154, 1, 185.104539, 37.020908, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[155, 1, 192.802737, 38.560547, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[156, 1, 0, 0, 0, 0, 0, 0.999987, 0, 380.0, 0, 1.1, 0.9 ],
[157, 1, 0, 0, 0, 0, 0, 1.001204, 0, 380.0, 0, 1.1, 0.9 ],
[158, 1, 50.7971, 10.15942, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[159, 1, 0, 0, 0, 0, 0, 1.000889, 0, 380.0, 0, 1.1, 0.9 ],
[160, 1, 0, 0, 0, 0, 0, 1.000007, 0, 380.0, 0, 1.1, 0.9 ],
[161, 1, 157.695907, 31.539181, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[162, 1, 235.708647, 47.141729, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[163, 1, 47.139503, 9.427901, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[164, 1, 47.32908, 9.465816, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[165, 1, 0, 0, 0, 0, 0, 0.999973, 0, 380.0, 0, 1.1, 0.9 ],
[166, 1, 55.335351, 11.06707, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[167, 1, 77.84291, 15.568582, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[168, 1, 53.126793, 10.625359, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[169, 1, 181.868329, 36.373666, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[170, 1, 136.658713, 27.331743, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[171, 1, 116.63816, 23.327632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[172, 1, 57.242831, 11.448566, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[173, 1, 54.683847, 10.936769, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[174, 1, 82.06086, 16.412172, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[175, 1, 54.648007, 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[176, 1, 190.428013, 38.085603, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[177, 1, 31.052062, 6.210412, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[178, 1, 164.459338, 32.891868, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[179, 1, 60.59759, 12.119518, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[180, 1, 53.266832, 10.653366, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[181, 1, 40.204271, 8.040854, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[182, 1, 1.821272, 0.364254, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[183, 1, 545.164071, 109.032814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[184, 1, 0, 0, 0, 0, 0, 0.999598, 0, 380.0, 0, 1.1, 0.9 ],
[185, 1, 116.580184, 23.316037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[186, 1, 62.777823, 12.555565, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[187, 1, 36.718634, 7.343727, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[188, 1, 54.648007, 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[189, 1, 200.523932, 40.104786, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[190, 1, 265.230417, 53.046083, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[191, 1, 0, 0, 0, 0, 0, 1.000004, 0, 380.0, 0, 1.1, 0.9 ],
[192, 1, 63.875519, 12.775104, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[193, 1, 54.559855, 10.911971, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[194, 1, 37.663542, 7.532708, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[195, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[196, 1, 52.839754, 10.567951, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[197, 1, 83.717575, 16.743515, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[198, 1, 49.539578, 9.907916, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[199, 1, 63.780558, 12.756112, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[200, 1, 54.649275, 10.929855, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[201, 1, 0, 0, 0, 0, 0, 0.998237, 0, 380.0, 0, 1.1, 0.9 ],
[202, 1, 55.999994, 11.199999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[203, 1, 7.378501, 1.4757, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[204, 1, 216.262395, 43.252479, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[205, 1, 108.140933, 21.628187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[206, 1, 51.90009, 10.380018, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[207, 1, 154.328515, 30.865703, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[208, 1, 45.443662, 9.088732, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[209, 1, 63.15081, 12.630162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[210, 1, 72.548461, 14.509692, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[211, 1, 254.951553, 50.990311, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[212, 1, 63.90001, 12.780002, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[213, 1, 299.548965, 59.909793, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[214, 1, 201.558484, 40.311697, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[215, 1, 426.205473, 85.241095, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[216, 1, 143.710831, 28.742166, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[217, 1, 46.050054, 9.210011, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[218, 1, 140.293093, 28.058619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[219, 1, 225.468098, 45.09362, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[220, 1, 0, 0, 0, 0, 0, 0.999508, 0, 380.0, 0, 1.1, 0.9 ],
[221, 1, 128.618978, 25.723796, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[222, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[223, 1, 127.469368, 25.493874, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[224, 1, 148.229316, 29.645863, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[225, 1, 266.15424, 53.230848, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[226, 1, 92.9759, 18.59518, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[227, 1, 115.829115, 23.165823, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[228, 1, 113.566909, 22.713382, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[229, 1, 251.304201, 50.26084, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[230, 1, 60.277099, 12.05542, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[231, 1, 0, 0, 0, 0, 0, 1.000849, 0, 380.0, 0, 1.1, 0.9 ],
[232, 1, 0, 0, 0, 0, 0, 0.999983, 0, 380.0, 0, 1.1, 0.9 ],
[233, 1, 0, 0, 0, 0, 0, 0.999757, 0, 380.0, 0, 1.1, 0.9 ],
[234, 1, 214.713729, 42.942746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[235, 1, 69.822043, 13.964409, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[236, 1, 0, 0, 0, 0, 0, 0.999971, 0, 380.0, 0, 1.1, 0.9 ],
[237, 1, 0.577857, 0.115571, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[238, 1, 79.004912, 15.800982, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[239, 1, 109.155193, 21.831039, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[240, 1, 688.53002, 137.706004, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[241, 1, 509.488297, 101.897659, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[242, 1, 185.513909, 37.102782, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[243, 1, 149.672731, 29.934546, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[244, 1, 178.323941, 35.664788, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[245, 1, 0, 0, 0, 0, 0, 1.001823, 0, 380.0, 0, 1.1, 0.9 ],
[246, 1, 0, 0, 0, 0, 0, 1.00019, 0, 380.0, 0, 1.1, 0.9 ],
[247, 1, 35.387378, 7.077476, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[248, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[249, 1, 0, 0, 0, 0, 0, 0.999999, 0, 380.0, 0, 1.1, 0.9 ],
[250, 1, 0, 0, 0, 0, 0, 0.999999, 0, 380.0, 0, 1.1, 0.9 ],
[251, 1, 87.823446, 17.564689, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[252, 1, 225.226964, 45.045393, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[253, 1, 98.883231, 19.776646, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[254, 1, 31.571775, 6.314355, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[255, 1, 155.267358, 31.053472, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[256, 1, 178.064642, 35.612928, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[257, 1, 85.937935, 17.187587, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[258, 1, 280.061351, 56.01227, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[259, 1, 0, 0, 0, 0, 0, 0.999324, 0, 380.0, 0, 1.1, 0.9 ],
[260, 1, 174.299184, 34.859837, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[261, 1, 0, 0, 0, 0, 0, 1.001923, 0, 380.0, 0, 1.1, 0.9 ],
[262, 1, 0, 0, 0, 0, 0, 1.000423, 0, 380.0, 0, 1.1, 0.9 ],
[263, 1, 250.031952, 50.00639, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[264, 1, 323.679848, 64.73597, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[265, 1, 0, 0, 0, 0, 0, 1.000003, 0, 380.0, 0, 1.1, 0.9 ],
[266, 1, 155.992125, 31.198425, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[267, 1, 197.296193, 39.459239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[268, 1, 68.608247, 13.721649, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[269, 1, 55.094995, 11.018999, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[270, 1, 0, 0, 0, 0, 0, 1.000027, 0, 380.0, 0, 1.1, 0.9 ],
[271, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[272, 1, 1.124141, 0.224828, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[273, 1, 153.726786, 30.745357, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[274, 1, 298.82462, 59.764924, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[275, 1, 55.9416, 11.18832, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[276, 1, 218.074579, 43.614916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[277, 1, 0, 0, 0, 0, 0, 0.999467, 0, 380.0, 0, 1.1, 0.9 ],
[278, 1, 170.24286, 34.048572, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[279, 1, 0, 0, 0, 0, 0, 0.999606, 0, 380.0, 0, 1.1, 0.9 ],
[280, 1, 0, 0, 0, 0, 0, 0.999582, 0, 380.0, 0, 1.1, 0.9 ],
[281, 1, 224.87043, 44.974086, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[282, 1, 318.001613, 63.600323, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[283, 1, 127.468855, 25.493771, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[284, 1, 193.376156, 38.675231, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[285, 1, 86.238982, 17.247796, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[286, 1, 180.742976, 36.148595, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[287, 1, 111.088604, 22.217721, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[288, 1, 71.451417, 14.290283, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[289, 1, 112.372355, 22.474471, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[290, 1, 0, 0, 0, 0, 0, 1.004511, 0, 380.0, 0, 1.1, 0.9 ],
[291, 1, 73.950919, 14.790184, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[292, 1, 145.790849, 29.15817, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[293, 1, 128.490989, 25.698198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[294, 1, 34.240907, 6.848181, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[295, 1, 71.643904, 14.328781, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[296, 1, 203.39721, 40.679442, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[297, 1, 213.77275, 42.75455, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[298, 1, 112.876261, 22.575252, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[299, 1, 109.319908, 21.863982, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[300, 1, 297.817032, 59.563406, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[301, 1, 0, 0, 0, 0, 0, 0.999233, 0, 380.0, 0, 1.1, 0.9 ],
[302, 1, 250.874417, 50.174883, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[303, 1, 128.856376, 25.771275, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[304, 1, 110.649061, 22.129812, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[305, 1, 0, 0, 0, 0, 0, 0.99963, 0, 380.0, 0, 1.1, 0.9 ],
[306, 1, 0, 0, 0, 0, 0, 1.001279, 0, 380.0, 0, 1.1, 0.9 ],
[307, 1, 131.240069, 26.248014, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[308, 1, 161.801519, 32.360304, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[309, 1, 264.730039, 52.946008, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[310, 1, 0, 0, 0, 0, 0, 1.000139, 0, 380.0, 0, 1.1, 0.9 ],
[311, 1, 224.864072, 44.972814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[312, 1, 101.12763, 20.225526, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[313, 1, 0, 0, 0, 0, 0, 1.000718, 0, 380.0, 0, 1.1, 0.9 ],
[314, 1, 313.229025, 62.645805, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[315, 1, 0, 0, 0, 0, 0, 1.001596, 0, 380.0, 0, 1.1, 0.9 ],
[316, 1, 122.727204, 24.545441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[317, 1, 165.247685, 33.049537, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[318, 1, 271.56295, 54.31259, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[319, 1, 9.728471, 1.945694, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[320, 1, 0, 0, 0, 0, 0, 0.999998, 0, 380.0, 0, 1.1, 0.9 ],
[321, 1, 230.130721, 46.026144, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[322, 1, 29.297122, 5.859424, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[323, 1, 3.048116, 0.609623, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[324, 1, 538.833195, 107.766639, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[325, 1, 175.527235, 35.105447, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[326, 1, 14.231204, 2.846241, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[327, 1, 122.469223, 24.493845, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[328, 1, 208.706378, 41.741276, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[329, 1, 313.912998, 62.7826, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[330, 1, 0, 0, 0, 0, 0, 1.002494, 0, 380.0, 0, 1.1, 0.9 ],
[331, 1, 24.923624, 4.984725, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[332, 1, 0, 0, 0, 0, 0, 0.998492, 0, 380.0, 0, 1.1, 0.9 ],
[333, 1, 261.879122, 52.375824, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[334, 1, 0, 0, 0, 0, 0, 0.999971, 0, 380.0, 0, 1.1, 0.9 ],
[335, 1, 267.267401, 53.45348, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[336, 1, 0, 0, 0, 0, 0, 0.998828, 0, 380.0, 0, 1.1, 0.9 ],
[337, 1, 106.311135, 21.262227, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[338, 1, 288.543529, 57.708706, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[339, 1, 178.460182, 35.692036, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[340, 1, 150.884477, 30.176895, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[341, 1, 136.402581, 27.280516, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[342, 1, 236.613596, 47.322719, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[343, 1, 129.809669, 25.961934, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[344, 1, 325.46393, 65.092786, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[345, 1, 355.881992, 71.176398, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[346, 1, 353.300089, 70.660018, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[347, 1, 123.555173, 24.711035, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[348, 1, 322.981361, 64.596272, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[349, 1, 0, 0, 0, 0, 0, 1.002022, 0, 380.0, 0, 1.1, 0.9 ],
[350, 1, 169.440736, 33.888147, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[351, 1, 0, 0, 0, 0, 0, 1.001885, 0, 380.0, 0, 1.1, 0.9 ],
[352, 1, 1121.578094, 224.315619, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[353, 1, 3.371839, 0.674368, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[354, 1, 22.907979, 4.581596, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[355, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[356, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[357, 1, 0.057423, 0.011485, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[358, 1, 0, 0, 0, 0, 0, 1.001382, 0, 380.0, 0, 1.1, 0.9 ],
[359, 1, 3.35273, 0.670546, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[360, 1, 0, 0, 0, 0, 0, 1.000729, 0, 380.0, 0, 1.1, 0.9 ],
[361, 1, 85.810098, 17.16202, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[362, 1, 244.603189, 48.920638, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[363, 1, 360.135165, 72.027033, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[364, 1, 84.968934, 16.993787, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[365, 1, 76.26413, 15.252826, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[366, 1, 151.155263, 30.231053, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[367, 1, 73.062175, 14.612435, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[368, 1, 35.977016, 7.195403, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[369, 1, 29.563521, 5.912704, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[370, 1, 87.035851, 17.40717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[371, 1, 437.926082, 87.585216, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[372, 1, 253.959627, 50.791925, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[373, 1, 171.37214, 34.274428, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[374, 1, 87.876732, 17.575346, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[375, 1, 288.266193, 57.653239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[376, 1, 316.173722, 63.234744, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[377, 1, 226.249032, 45.249806, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[378, 1, 225.813549, 45.16271, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[379, 1, 77.828258, 15.565652, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[380, 1, 0, 0, 0, 0, 0, 1.001233, 0, 380.0, 0, 1.1, 0.9 ],
[381, 1, 260.262441, 52.052488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[382, 1, 0, 0, 0, 0, 0, 1.001308, 0, 380.0, 0, 1.1, 0.9 ],
[383, 1, 0, 0, 0, 0, 0, 0.998969, 0, 380.0, 0, 1.1, 0.9 ],
[384, 1, 91.84015, 18.36803, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[385, 1, 115.920294, 23.184059, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[386, 1, 93.138481, 18.627696, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[387, 1, 189.680321, 37.936064, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[388, 1, 1018.58055, 203.71611, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[389, 1, 0, 0, 0, 0, 0, 0.999916, 0, 380.0, 0, 1.1, 0.9 ],
[390, 1, 84.101814, 16.820363, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[391, 1, 95.799138, 19.159828, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[392, 1, 183.837583, 36.767517, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[393, 1, 229.578746, 45.915749, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[394, 1, 82.572875, 16.514575, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[395, 1, 114.440902, 22.88818, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[396, 1, 81.05732, 16.211464, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[397, 1, 649.990419, 129.998084, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[398, 1, 281.52489, 56.304978, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[399, 1, 119.950108, 23.990022, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[400, 1, 63.907408, 12.781482, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[401, 1, 0, 0, 0, 0, 0, 1.00068, 0, 380.0, 0, 1.1, 0.9 ],
[402, 1, 0, 0, 0, 0, 0, 1.000458, 0, 380.0, 0, 1.1, 0.9 ],
[403, 1, 31.731514, 6.346303, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[404, 1, 111.792088, 22.358418, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[405, 1, 842.801818, 168.560364, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[406, 1, 63.856811, 12.771362, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[407, 1, 126.405958, 25.281192, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[408, 1, 365.495142, 73.099028, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[409, 1, 0, 0, 0, 0, 0, 0.999955, 0, 380.0, 0, 1.1, 0.9 ],
[410, 1, 47.32062, 9.464124, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[411, 1, 44.743584, 8.948717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[412, 1, 3.142747, 0.628549, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[413, 1, 156.891603, 31.378321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[414, 1, 13.321795, 2.664359, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[415, 1, 0, 0, 0, 0, 0, 1.00032, 0, 380.0, 0, 1.1, 0.9 ],
[416, 1, 189.71637, 37.943274, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[417, 1, 7.42324, 1.484648, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[418, 1, 154.695841, 30.939168, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[419, 1, 82.683827, 16.536765, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[420, 1, 83.245811, 16.649162, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[421, 1, 119.913469, 23.982694, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[422, 1, 87.852626, 17.570525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[423, 1, 184.509928, 36.901986, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[424, 1, 13.30269, 2.660538, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[425, 1, 109.248654, 21.849731, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[426, 1, 9.051587, 1.810317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[427, 1, 76.069687, 15.213937, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[428, 1, 34.107287, 6.821457, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[429, 1, 384.892639, 76.978528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[430, 1, 205.01907, 41.003814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[431, 1, 137.099401, 27.41988, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[432, 1, 160.260789, 32.052158, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[433, 1, 81.921043, 16.384209, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[434, 1, 42.635701, 8.52714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[435, 1, 170.515962, 34.103192, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[436, 1, 91.035611, 18.207122, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[437, 1, 20.732405, 4.146481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[438, 1, 55.640098, 11.12802, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[439, 1, 103.594671, 20.718934, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[440, 1, 87.548083, 17.509617, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[441, 1, 67.117335, 13.423467, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[442, 1, 88.818955, 17.763791, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[443, 1, 192.567856, 38.513571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[444, 1, 0, 0, 0, 0, 0, 0.999997, 0, 380.0, 0, 1.1, 0.9 ],
[445, 1, 87.500608, 17.500122, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[446, 1, 40.573247, 8.114649, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[447, 1, 77.137671, 15.427534, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[448, 1, 56.688355, 11.337671, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[449, 1, 285.841877, 57.168375, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[450, 1, 174.921589, 34.984318, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[451, 1, 74.744857, 14.948971, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[452, 1, 0, 0, 0, 0, 0, 0.999998, 0, 380.0, 0, 1.1, 0.9 ],
[453, 1, 50.093556, 10.018711, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[454, 1, 34.948569, 6.989714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[455, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[456, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[457, 1, 174.745521, 34.949104, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[458, 1, 166.205025, 33.241005, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[459, 1, 202.277698, 40.45554, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[460, 1, 265.834571, 53.166914, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[461, 1, 276.525599, 55.30512, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[462, 1, 84.590614, 16.918123, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[463, 1, 43.34476, 8.668952, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[464, 1, 43.397154, 8.679431, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[465, 1, 70.098265, 14.019653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[466, 1, 56.910923, 11.382185, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[467, 1, 52.519359, 10.503872, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[468, 1, 86.110989, 17.222198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[469, 1, 53.361254, 10.672251, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[470, 1, 135.890635, 27.178127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[471, 1, 133.796584, 26.759317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[472, 1, 46.798012, 9.359602, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[473, 1, 85.932309, 17.186462, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[474, 1, 44.383139, 8.876628, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[475, 1, 43.555323, 8.711065, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[476, 1, 49.224681, 9.844936, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[477, 1, 79.437989, 15.887598, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[478, 1, 99.788592, 19.957718, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[479, 1, 180.839091, 36.167818, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[480, 1, 79.26505, 15.85301, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[481, 1, 68.837439, 13.767488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[482, 1, 78.16195, 15.63239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[483, 1, 66.47101, 13.294202, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[484, 1, 52.110038, 10.422008, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[485, 1, 77.838606, 15.567721, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[486, 1, 716.077152, 143.21543, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9 ],
[487, 1, 181.45064, 36.290128, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[488, 1, 522.841445, 104.568289, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[489, 1, 137.610381, 27.522076, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9 ],
[490, 1, 42.819219, 8.563844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[491, 1, 58.876975, 11.775395, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[492, 1, 91.813369, 18.362674, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[493, 1, 118.336442, 23.667288, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[494, 1, 161.733452, 32.34669, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[495, 1, 127.313133, 25.462627, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[496, 1, 9.017801, 1.80356, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[497, 1, 1127.673279, 225.534656, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[498, 1, 52.88686, 10.577372, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[499, 1, 73.821392, 14.764278, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[500, 1, 40.416344, 8.083269, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[501, 1, 68.377485, 13.675497, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[502, 1, 269.871772, 53.974354, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[503, 1, 82.651196, 16.530239, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[504, 1, 54.123886, 10.824777, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[505, 1, 383.88859, 76.777718, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[506, 1, 120.497904, 24.099581, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[507, 1, 114.619007, 22.923801, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[508, 1, 166.630951, 33.32619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[509, 1, 219.586543, 43.917309, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[510, 1, 138.725937, 27.745187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[511, 1, 121.011401, 24.20228, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[512, 1, 79.935501, 15.9871, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[513, 1, 44.035931, 8.807186, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[514, 1, 109.601171, 21.920234, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[515, 1, 97.770756, 19.554151, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[516, 1, 109.382469, 21.876494, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[517, 1, 51.379564, 10.275913, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[518, 1, 289.37296, 57.874592, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[519, 1, 28.479597, 5.695919, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[520, 1, 114.983158, 22.996632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[521, 1, 103.868838, 20.773768, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[522, 1, 88.93334, 17.786668, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[523, 1, 47.871806, 9.574361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[524, 1, 138.947496, 27.789499, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[525, 1, 165.53353, 33.106706, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[526, 1, 50.186653, 10.037331, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[527, 1, 55.101418, 11.020284, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[528, 1, 120.263998, 24.0528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[529, 1, 154.160637, 30.832127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[530, 1, 65.326981, 13.065396, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[531, 1, 66.42028, 13.284056, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[532, 1, 63.75189, 12.750378, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[533, 1, 57.129386, 11.425877, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[534, 1, 157.594819, 31.518964, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[535, 1, 197.298599, 39.45972, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[536, 1, 155.513815, 31.102763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[537, 1, 51.733038, 10.346608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[538, 1, 38.672089, 7.734418, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[539, 1, 41.033464, 8.206693, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[540, 1, 36.948833, 7.389767, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[541, 1, 95.442023, 19.088405, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[542, 1, 131.107838, 26.221568, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[543, 1, 71.610457, 14.322091, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[544, 1, 133.375481, 26.675096, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[545, 1, 287.179283, 57.435857, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[546, 1, 143.938594, 28.787719, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[547, 1, 186.05009, 37.210018, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[548, 1, 60.225184, 12.045037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[549, 1, 51.497682, 10.299536, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[550, 1, 42.494345, 8.498869, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[551, 1, 40.963523, 8.192705, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[552, 1, 203.420244, 40.684049, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[553, 1, 1.407353, 0.281471, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[554, 1, 206.085944, 41.217189, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[555, 1, 78.521026, 15.704205, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[556, 1, 121.474641, 24.294928, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[557, 1, 258.089909, 51.617982, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[558, 1, 152.184958, 30.436992, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[559, 1, 81.447924, 16.289585, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[560, 1, 127.240926, 25.448185, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[561, 1, 69.77521, 13.955042, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[562, 1, 190.620645, 38.124129, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[563, 1, 134.021849, 26.80437, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[564, 1, 264.626513, 52.925303, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[565, 1, 199.673817, 39.934763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[566, 1, 0.320719, 0.064144, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[567, 1, 324.578744, 64.915749, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[568, 1, 300.156806, 60.031361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[569, 1, 211.192437, 42.238487, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[570, 1, 329.709424, 65.941885, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[571, 1, 242.757168, 48.551434, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[572, 1, 428.183113, 85.636623, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[573, 1, 124.63849, 24.927698, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[574, 1, 237.483921, 47.496784, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[575, 1, 4.462749, 0.89255, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[576, 1, 288.778854, 57.755771, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[577, 1, 318.348582, 63.669716, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[578, 1, 303.948566, 60.789713, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[579, 1, 110.888732, 22.177746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[580, 1, 23.085384, 4.617077, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[581, 1, 0.132651, 0.02653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[582, 1, 83.523038, 16.704608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[583, 1, 95.797854, 19.159571, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[584, 1, 54.964221, 10.992844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ],
[585, 1, 95.42465, 19.08493, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9 ]
])
ppc["gen"] = array([
[586, 272.0, 0, 9999, -9999, 1.0, 100, 1, 272.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[589, 63.1, 0, 9999, -9999, 1.0, 100, 1, 63.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[590, 38.0, 0, 9999, -9999, 1.0, 100, 1, 38.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[593, 11.1, 0, 9999, -9999, 1.0, 100, 1, 11.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[594, 19.0, 0, 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[595, 1147.054992, 0, 9999, -9999, 1.0, 100, 1, 4730.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[598, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[599, 9.3, 0, 9999, -9999, 1.0, 100, 1, 9.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[601, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[602, 24.6, 0, 9999, -9999, 1.0, 100, 1, 24.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[603, 868.534042, 0, 9999, -9999, 1.0, 100, 1, 3455.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[607, 1800.0, 0, 9999, -9999, 1.0, 100, 1, 1800.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[608, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[609, 36.4, 0, 9999, -9999, 1.0, 100, 1, 36.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[612, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[613, 85.0, 0, 9999, -9999, 1.0, 100, 1, 85.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[614, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[616, 29.0, 0, 9999, -9999, 1.0, 100, 1, 29.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[617, 137.0, 0, 9999, -9999, 1.0, 100, 1, 137.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[618, 33.4, 0, 9999, -9999, 1.0, 100, 1, 33.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[619, 118.0, 0, 9999, -9999, 1.0, 100, 1, 118.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[621, 765.0, 0, 9999, -9999, 1.0, 100, 1, 765.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[623, 267.860808, 0, 9999, -9999, 1.0, 100, 1, 760.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[624, 27.0, 0, 9999, -9999, 1.0, 100, 1, 27.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[628, 449.0, 0, 9999, -9999, 1.0, 100, 1, 449.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[629, 75.3, 0, 9999, -9999, 1.0, 100, 1, 75.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[632, 45.1, 0, 9999, -9999, 1.0, 100, 1, 45.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[637, 53.7, 0, 9999, -9999, 1.0, 100, 1, 53.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[638, 128.7, 0, 9999, -9999, 1.0, 100, 1, 128.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[640, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[641, 12.6, 0, 9999, -9999, 1.0, 100, 1, 12.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[642, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[643, 857.0, 0, 9999, -9999, 1.0, 100, 1, 857.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[646, 103.0, 0, 9999, -9999, 1.0, 100, 1, 103.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[647, 14.0, 0, 9999, -9999, 1.0, 100, 1, 14.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[650, 1324.5, 0, 9999, -9999, 1.0, 100, 1, 1324.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[652, 46.9, 0, 9999, -9999, 1.0, 100, 1, 46.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[655, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[661, 32.7, 0, 9999, -9999, 1.0, 100, 1, 32.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[663, 15.0, 0, 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[666, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[668, 766.0, 0, 9999, -9999, 1.0, 100, 1, 766.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[670, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[672, 33.1, 0, 9999, -9999, 1.0, 100, 1, 33.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[676, 370.0, 0, 9999, -9999, 1.0, 100, 1, 370.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[681, 40.1, 0, 9999, -9999, 1.0, 100, 1, 40.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[683, 27.5, 0, 9999, -9999, 1.0, 100, 1, 27.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[687, 1329.0, 0, 9999, -9999, 1.0, 100, 1, 1329.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[689, 310.0, 0, 9999, -9999, 1.0, 100, 1, 310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[691, 26.0, 0, 9999, -9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[693, 194.0, 0, 9999, -9999, 1.0, 100, 1, 194.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[694, 16.4, 0, 9999, -9999, 1.0, 100, 1, 16.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[695, 14.7, 0, 9999, -9999, 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[696, 721.0, 0, 9999, -9999, 1.0, 100, 1, 721.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[697, 11.6, 0, 9999, -9999, 1.0, 100, 1, 11.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[698, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[702, 73.4, 0, 9999, -9999, 1.0, 100, 1, 73.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[704, 508.0, 0, 9999, -9999, 1.0, 100, 1, 508.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[705, 17.0, 0, 9999, -9999, 1.0, 100, 1, 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[707, 34.0, 0, 9999, -9999, 1.0, 100, 1, 34.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[708, 7.8, 0, 9999, -9999, 1.0, 100, 1, 7.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[711, 88.484779, 0, 9999, -9999, 1.0, 100, 1, 176.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[713, 13.4, 0, 9999, -9999, 1.0, 100, 1, 13.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[714, 15.0, 0, 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[716, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[717, 11.0, 0, 9999, -9999, 1.0, 100, 1, 11.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[719, 1328.962186, 0, 9999, -9999, 1.0, 100, 1, 1958.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[722, 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[724, 12.1, 0, 9999, -9999, 1.0, 100, 1, 12.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[727, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[728, 510.0, 0, 9999, -9999, 1.0, 100, 1, 510.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[730, 633.2, 0, 9999, -9999, 1.0, 100, 1, 633.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[731, 540.174348, 0, 9999, -9999, 1.0, 100, 1, 895.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[732, 14.6, 0, 9999, -9999, 1.0, 100, 1, 14.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[735, 84.8, 0, 9999, -9999, 1.0, 100, 1, 84.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[737, 28.0, 0, 9999, -9999, 1.0, 100, 1, 28.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[738, 138.5, 0, 9999, -9999, 1.0, 100, 1, 138.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[741, 214.0, 0, 9999, -9999, 1.0, 100, 1, 214.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[742, 9.0, 0, 9999, -9999, 1.0, 100, 1, 9.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[743, 220.991864, 0, 9999, -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[746, 100.0, 0, 9999, -9999, 1.0, 100, 1, 100.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[747, 12.5, 0, 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[748, 110.0, 0, 9999, -9999, 1.0, 100, 1, 110.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[749, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[750, 90.8, 0, 9999, -9999, 1.0, 100, 1, 90.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[753, 116.851068, 0, 9999, -9999, 1.0, 100, 1, 311.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[758, 18.5, 0, 9999, -9999, 1.0, 100, 1, 18.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[760, 298.788806, 0, 9999, -9999, 1.0, 100, 1, 794.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[762, 700.835089, 0, 9999, -9999, 1.0, 100, 1, 1105.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[763, 20.3, 0, 9999, -9999, 1.0, 100, 1, 20.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[765, 59.0, 0, 9999, -9999, 1.0, 100, 1, 59.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[767, 11.2, 0, 9999, -9999, 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[769, 43.3, 0, 9999, -9999, 1.0, 100, 1, 43.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[771, 690.0, 0, 9999, -9999, 1.0, 100, 1, 690.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[772, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[774, 33.5, 0, 9999, -9999, 1.0, 100, 1, 33.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[776, 54.222128, 0, 9999, -9999, 1.0, 100, 1, 56.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[777, 79.0, 0, 9999, -9999, 1.0, 100, 1, 79.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[778, 14.7, 0, 9999, -9999, 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[781, 973.218708, 0, 9999, -9999, 1.0, 100, 1, 1310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[784, 802.511044, 0, 9999, -9999, 1.0, 100, 1, 1275.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[785, 3.0, 0, 9999, -9999, 1.0, 100, 1, 3.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[787, 778.0, 0, 9999, -9999, 1.0, 100, 1, 778.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[788, 875.0, 0, 9999, -9999, 1.0, 100, 1, 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[789, 77.4, 0, 9999, -9999, 1.0, 100, 1, 77.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[791, 10.0, 0, 9999, -9999, 1.0, 100, 1, 10.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[792, 62.7, 0, 9999, -9999, 1.0, 100, 1, 62.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[795, 13.6, 0, 9999, -9999, 1.0, 100, 1, 13.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[801, 50.0, 0, 9999, -9999, 1.0, 100, 1, 50.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[802, 500.0, 0, 9999, -9999, 1.0, 100, 1, 500.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[805, 418.686348, 0, 9999, -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[806, 35.8, 0, 9999, -9999, 1.0, 100, 1, 35.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[808, 217.5, 0, 9999, -9999, 1.0, 100, 1, 217.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[809, 12.5, 0, 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[811, 25.2, 0, 9999, -9999, 1.0, 100, 1, 25.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[814, 89.0, 0, 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[816, 80.1, 0, 9999, -9999, 1.0, 100, 1, 80.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[817, 54.0, 0, 9999, -9999, 1.0, 100, 1, 54.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[821, 82.5, 0, 9999, -9999, 1.0, 100, 1, 82.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[822, 134.0, 0, 9999, -9999, 1.0, 100, 1, 134.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[826, 58.0, 0, 9999, -9999, 1.0, 100, 1, 58.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[829, 204.799653, 0, 9999, -9999, 1.0, 100, 1, 211.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[830, 89.0, 0, 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[835, 63.7, 0, 9999, -9999, 1.0, 100, 1, 63.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[836, 25.5, 0, 9999, -9999, 1.0, 100, 1, 25.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[837, 472.0, 0, 9999, -9999, 1.0, 100, 1, 472.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[839, 73.3, 0, 9999, -9999, 1.0, 100, 1, 73.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[841, 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[843, 333.0, 0, 9999, -9999, 1.0, 100, 1, 333.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[844, 40.0, 0, 9999, -9999, 1.0, 100, 1, 40.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[845, 318.0, 0, 9999, -9999, 1.0, 100, 1, 318.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[849, 779.0, 0, 9999, -9999, 1.0, 100, 1, 779.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[850, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[851, 79.5, 0, 9999, -9999, 1.0, 100, 1, 79.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[853, 11.6, 0, 9999, -9999, 1.0, 100, 1, 11.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[854, 81.8, 0, 9999, -9999, 1.0, 100, 1, 81.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[855, 688.0, 0, 9999, -9999, 1.0, 100, 1, 688.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[856, 36.0, 0, 9999, -9999, 1.0, 100, 1, 36.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[857, 1402.0, 0, 9999, -9999, 1.0, 100, 1, 1402.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[858, 56.8, 0, 9999, -9999, 1.0, 100, 1, 56.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[859, 85.0, 0, 9999, -9999, 1.0, 100, 1, 85.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[860, 25.0, 0, 9999, -9999, 1.0, 100, 1, 25.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[862, 725.0, 0, 9999, -9999, 1.0, 100, 1, 725.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[863, 0.6, 0, 9999, -9999, 1.0, 100, 1, 0.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[864, 875.0, 0, 9999, -9999, 1.0, 100, 1, 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[865, 11.0, 0, 9999, -9999, 1.0, 100, 1, 11.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[867, 769.0, 0, 9999, -9999, 1.0, 100, 1, 769.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[869, 1360.0, 0, 9999, -9999, 1.0, 100, 1, 1360.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[870, 58.4, 0, 9999, -9999, 1.0, 100, 1, 58.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[872, 22.5, 0, 9999, -9999, 1.0, 100, 1, 22.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[873, 18.747266, 0, 9999, -9999, 1.0, 100, 1, 122.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[874, 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[875, 24.4, 0, 9999, -9999, 1.0, 100, 1, 24.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[877, 24.8, 0, 9999, -9999, 1.0, 100, 1, 24.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[882, 17.4, 0, 9999, -9999, 1.0, 100, 1, 17.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[883, 18.0, 0, 9999, -9999, 1.0, 100, 1, 18.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[886, 2572.0, 0, 9999, -9999, 1.0, 100, 1, 2572.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[889, 9.5, 0, 9999, -9999, 1.0, 100, 1, 9.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[890, 48.0, 0, 9999, -9999, 1.0, 100, 1, 48.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[895, 19.0, 0, 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[896, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[898, 84.6, 0, 9999, -9999, 1.0, 100, 1, 84.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[900, 112.6, 0, 9999, -9999, 1.0, 100, 1, 112.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[902, 19.5, 0, 9999, -9999, 1.0, 100, 1, 19.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[903, 20.1, 0, 9999, -9999, 1.0, 100, 1, 20.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[905, 137.3, 0, 9999, -9999, 1.0, 100, 1, 137.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[906, 33.577454, 0, 9999, -9999, 1.0, 100, 1, 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[907, 67.3, 0, 9999, -9999, 1.0, 100, 1, 67.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[909, 36.8, 0, 9999, -9999, 1.0, 100, 1, 36.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[913, 74.0, 0, 9999, -9999, 1.0, 100, 1, 74.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[915, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[917, 17.0, 0, 9999, -9999, 1.0, 100, 1, 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[918, 38.5, 0, 9999, -9999, 1.0, 100, 1, 38.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[920, 12.8, 0, 9999, -9999, 1.0, 100, 1, 12.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[921, 124.0, 0, 9999, -9999, 1.0, 100, 1, 124.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[922, 164.0, 0, 9999, -9999, 1.0, 100, 1, 164.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[923, 146.0, 0, 9999, -9999, 1.0, 100, 1, 146.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[925, 26.0, 0, 9999, -9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[928, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[931, 217.1, 0, 9999, -9999, 1.0, 100, 1, 217.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[934, 296.0, 0, 9999, -9999, 1.0, 100, 1, 296.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[935, 23.1, 0, 9999, -9999, 1.0, 100, 1, 23.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[936, 104.4, 0, 9999, -9999, 1.0, 100, 1, 104.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[937, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[939, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[940, 29.6, 0, 9999, -9999, 1.0, 100, 1, 29.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[942, 51.9, 0, 9999, -9999, 1.0, 100, 1, 51.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[944, 25.4, 0, 9999, -9999, 1.0, 100, 1, 25.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[945, 35.0, 0, 9999, -9999, 1.0, 100, 1, 35.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[950, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[952, 31.7, 0, 9999, -9999, 1.0, 100, 1, 31.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[958, 66.7, 0, 9999, -9999, 1.0, 100, 1, 66.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[959, 45.5, 0, 9999, -9999, 1.0, 100, 1, 45.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[960, 26.5, 0, 9999, -9999, 1.0, 100, 1, 26.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[963, 503.264337, 0, 9999, -9999, 1.0, 100, 1, 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[965, 352.0, 0, 9999, -9999, 1.0, 100, 1, 352.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[966, 66.0, 0, 9999, -9999, 1.0, 100, 1, 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[967, 37.5, 0, 9999, -9999, 1.0, 100, 1, 37.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[968, 54.0, 0, 9999, -9999, 0.999501, 100, 1, 54.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[969, 56.9, 0, 9999, -9999, 0.999501, 100, 1, 56.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[971, 20.0, 0, 9999, -9999, 1.0, 100, 1, 20.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[973, 1347.0, 0, 9999, -9999, 1.0, 100, 1, 1347.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[976, 26.9, 0, 9999, -9999, 1.0, 100, 1, 26.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[977, 324.0, 0, 9999, -9999, 1.0, 100, 1, 324.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[978, 4.6, 0, 9999, -9999, 1.0, 100, 1, 4.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[981, 119.0, 0, 9999, -9999, 1.0, 100, 1, 119.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[982, 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[983, 44.0, 0, 9999, -9999, 1.0, 100, 1, 44.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[984, 465.0, 0, 9999, -9999, 1.0, 100, 1, 465.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[985, 22.0, 0, 9999, -9999, 1.0, 100, 1, 22.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[986, 11.2, 0, 9999, -9999, 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[987, 164.5, 0, 9999, -9999, 1.0, 100, 1, 164.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[988, 5.1, 0, 9999, -9999, 1.0, 100, 1, 5.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[990, 238.511447, 0, 9999, -9999, 1.0, 100, 1, 300.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[993, 392.0, 0, 9999, -9999, 1.0, 100, 1, 392.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[994, 33.0, 0, 9999, -9999, 1.0, 100, 1, 33.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[995, 4.2, 0, 9999, -9999, 1.0, 100, 1, 4.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[997, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[999, 15.6, 0, 9999, -9999, 1.0, 100, 1, 15.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1000, 49.0, 0, 9999, -9999, 1.0, 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1002, 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1003, 900.0, 0, 9999, -9999, 1.0, 100, 1, 900.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1007, 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1008, 49.0, 0, 9999, -9999, 1.0, 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1010, 750.0, 0, 9999, -9999, 1.0, 100, 1, 750.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1011, 18.7, 0, 9999, -9999, 1.0, 100, 1, 18.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1012, 2835.0, 0, 9999, -9999, 1.0, 100, 1, 2835.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1018, 175.9, 0, 9999, -9999, 1.0, 100, 1, 175.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1023, 0.2, 0, 9999, -9999, 1.0, 100, 1, 0.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1026, 655.6, 0, 9999, -9999, 1.0, 100, 1, 655.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1027, 17.423964, 0, 9999, -9999, 1.0, 100, 1, 48.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1028, 400.0, 0, 9999, -9999, 1.0, 100, 1, 400.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1029, 60.0, 0, 9999, -9999, 1.0, 100, 1, 60.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1030, 541.076337, 0, 9999, -9999, 1.0, 100, 1, 1018.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1031, 1447.199962, 0, 9999, -9999, 1.0, 100, 1, 1447.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1032, 19.954769, 0, 9999, -9999, 1.0, 100, 1, 153.510391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1033, 3.129107, 0, 9999, -9999, 1.0, 100, 1, 50.164506, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1034, 19.480611, 0, 9999, -9999, 1.0, 100, 1, 84.262779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1035, 4.869691, 0, 9999, -9999, 1.0, 100, 1, 49.886469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1036, 4.299817, 0, 9999, -9999, 1.0, 100, 1, 67.223077, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1037, 26.880386, 0, 9999, -9999, 1.0, 100, 1, 94.684044, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1038, 23.191978, 0, 9999, -9999, 1.0, 100, 1, 85.798525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1039, 14.50049, 0, 9999, -9999, 1.0, 100, 1, 132.724114, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1040, 4.2e-05, 0, 9999, -9999, 1.0, 100, 1, 0.064179, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1041, 23.612723, 0, 9999, -9999, 1.0, 100, 1, 204.187624, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1042, 3.793945, 0, 9999, -9999, 1.0, 100, 1, 52.70053, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1044, 13.8333, 0, 9999, -9999, 1.0, 100, 1, 36.163532, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1046, 72.936676, 0, 9999, -9999, 1.0, 100, 1, 106.787063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1047, 5.880677, 0, 9999, -9999, 1.0, 100, 1, 13.029581, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1048, 38.915865, 0, 9999, -9999, 1.0, 100, 1, 71.656883, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1049, 57.66596, 0, 9999, -9999, 1.0, 100, 1, 293.755375, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1050, 1.597255, 0, 9999, -9999, 1.0, 100, 1, 52.781606, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1051, 11.031378, 0, 9999, -9999, 1.0, 100, 1, 304.42978, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1052, 12.527576, 0, 9999, -9999, 1.0, 100, 1, 20.66869, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1053, 10.416727, 0, 9999, -9999, 1.0, 100, 1, 16.368087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1054, 174.429944, 0, 9999, -9999, 1.0, 100, 1, 273.855776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1055, 0.246667, 0, 9999, -9999, 1.0, 100, 1, 2.856069, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1056, 64.106126, 0, 9999, -9999, 1.0, 100, 1, 603.943953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1057, 55.944221, 0, 9999, -9999, 1.0, 100, 1, 426.979979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1058, 144.133643, 0, 9999, -9999, 1.0, 100, 1, 1055.735174, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1059, 53.908755, 0, 9999, -9999, 1.0, 100, 1, 414.871332, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1060, 0.772854, 0, 9999, -9999, 1.0, 100, 1, 10.351632, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1061, 19.183871, 0, 9999, -9999, 1.0, 100, 1, 161.862597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1062, 0.178546, 0, 9999, -9999, 1.0, 100, 1, 2.878561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1063, 0.477696, 0, 9999, -9999, 1.0, 100, 1, 8.670916, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1064, 18.128029, 0, 9999, -9999, 1.0, 100, 1, 209.786524, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1065, 26.542682, 0, 9999, -9999, 1.0, 100, 1, 339.421643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1066, 6.831872, 0, 9999, -9999, 1.0, 100, 1, 134.399019, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1067, 0.05472, 0, 9999, -9999, 1.0, 100, 1, 32.653526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1072, 56.941881, 0, 9999, -9999, 1.0, 100, 1, 112.606433, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1073, 48.366549, 0, 9999, -9999, 1.0, 100, 1, 77.81765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1074, 78.356593, 0, 9999, -9999, 1.0, 100, 1, 153.592986, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1075, 0.000191, 0, 9999, -9999, 1.0, 100, 1, 15.783448, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1076, 0.000786, 0, 9999, -9999, 1.0, 100, 1, 2.29551, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1077, 0.097611, 0, 9999, -9999, 1.0, 100, 1, 26.120041, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1078, 8.2e-05, 0, 9999, -9999, 1.0, 100, 1, 34.413246, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1079, 37.099719, 0, 9999, -9999, 1.0, 100, 1, 72.327992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1080, 0.010187, 0, 9999, -9999, 1.0, 100, 1, 132.149983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1081, 54.303596, 0, 9999, -9999, 1.0, 100, 1, 405.642115, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1082, 43.48081, 0, 9999, -9999, 1.0, 100, 1, 510.054159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1083, 74.784293, 0, 9999, -9999, 1.0, 100, 1, 633.681488, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1084, 50.75113, 0, 9999, -9999, 1.0, 100, 1, 602.719371, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1085, 0.361091, 0, 9999, -9999, 1.0, 100, 1, 113.714399, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1086, 2.800656, 0, 9999, -9999, 1.0, 100, 1, 225.59917, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1087, 6.712497, 0, 9999, -9999, 1.0, 100, 1, 116.66597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1088, 2.157263, 0, 9999, -9999, 1.0, 100, 1, 36.782492, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1089, 28.036581, 0, 9999, -9999, 1.0, 100, 1, 384.449592, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1090, 58.852002, 0, 9999, -9999, 1.0, 100, 1, 89.140897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1091, 23.028676, 0, 9999, -9999, 1.0, 100, 1, 45.7939, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1092, 28.091666, 0, 9999, -9999, 1.0, 100, 1, 54.002032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1093, 43.281148, 0, 9999, -9999, 1.0, 100, 1, 155.605298, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1094, 0.352909, 0, 9999, -9999, 1.0, 100, 1, 3.759038, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1095, 0.018276, 0, 9999, -9999, 1.0, 100, 1, 0.204951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1096, 14.898008, 0, 9999, -9999, 1.0, 100, 1, 84.50612, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1097, 1.60041, 0, 9999, -9999, 1.0, 100, 1, 4.601122, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1098, 32.387374, 0, 9999, -9999, 1.0, 100, 1, 71.025499, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1099, 160.073145, 0, 9999, -9999, 1.0, 100, 1, 290.937198, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1101, 15.088075, 0, 9999, -9999, 1.0, 100, 1, 83.930665, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1102, 57.90171, 0, 9999, -9999, 1.0, 100, 1, 350.979988, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1103, 55.710431, 0, 9999, -9999, 1.0, 100, 1, 245.381701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1104, 0.008853, 0, 9999, -9999, 1.0, 100, 1, 0.206918, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1105, 0.199198, 0, 9999, -9999, 1.0, 100, 1, 2.178593, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1106, 0.062828, 0, 9999, -9999, 1.0, 100, 1, 2.289793, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1107, 0.083469, 0, 9999, -9999, 1.0, 100, 1, 76.221615, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1108, 0.929597, 0, 9999, -9999, 1.0, 100, 1, 320.422751, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1109, 0.017052, 0, 9999, -9999, 1.0, 100, 1, 0.77821, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1110, 0.097309, 0, 9999, -9999, 1.0, 100, 1, 1.654557, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1111, 0.942973, 0, 9999, -9999, 1.0, 100, 1, 89.637993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1112, 2.764923, 0, 9999, -9999, 1.0, 100, 1, 69.53429, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1113, 0.134233, 0, 9999, -9999, 1.0, 100, 1, 3.536361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1114, 0.002635, 0, 9999, -9999, 1.0, 100, 1, 13.446889, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1115, 2.161287, 0, 9999, -9999, 1.0, 100, 1, 50.575278, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1116, 1.694641, 0, 9999, -9999, 1.0, 100, 1, 32.601142, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1117, 5.543974, 0, 9999, -9999, 1.0, 100, 1, 90.792541, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1118, 0.234033, 0, 9999, -9999, 1.0, 100, 1, 8.725012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1119, 2.259795, 0, 9999, -9999, 1.0, 100, 1, 43.254023, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1120, 0.070837, 0, 9999, -9999, 1.0, 100, 1, 2.416001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1121, 0.008147, 0, 9999, -9999, 1.0, 100, 1, 0.540589, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1122, 0.038948, 0, 9999, -9999, 1.0, 100, 1, 1.462883, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1123, 0.016034, 0, 9999, -9999, 1.0, 100, 1, 1.464336, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1124, 0.024691, 0, 9999, -9999, 1.0, 100, 1, 1.288283, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1125, 0.032998, 0, 9999, -9999, 1.0, 100, 1, 25.818899, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1126, 0.02868, 0, 9999, -9999, 1.0, 100, 1, 29.154893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1127, 23.87135, 0, 9999, -9999, 1.0, 100, 1, 105.296621, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1128, 0.214677, 0, 9999, -9999, 1.0, 100, 1, 3.06139, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1129, 0.299943, 0, 9999, -9999, 1.0, 100, 1, 4.738747, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1130, 0.046998, 0, 9999, -9999, 1.0, 100, 1, 1.025754, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1131, 0.182071, 0, 9999, -9999, 1.0, 100, 1, 2.897078, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1132, 0.015187, 0, 9999, -9999, 1.0, 100, 1, 0.359497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1133, 0.010845, 0, 9999, -9999, 1.0, 100, 1, 0.719597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1134, 0.007663, 0, 9999, -9999, 1.0, 100, 1, 0.508453, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1135, 0.053952, 0, 9999, -9999, 1.0, 100, 1, 8.117819, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1136, 0.008078, 0, 9999, -9999, 1.0, 100, 1, 0.4027, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1137, 0.076215, 0, 9999, -9999, 1.0, 100, 1, 3.669012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1138, 0.021206, 0, 9999, -9999, 1.0, 100, 1, 1.254278, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1139, 0.775293, 0, 9999, -9999, 1.0, 100, 1, 19.822769, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1140, 0.3744, 0, 9999, -9999, 1.0, 100, 1, 28.389457, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1141, 11.90095, 0, 9999, -9999, 1.0, 100, 1, 119.46456, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1142, 0.023405, 0, 9999, -9999, 1.0, 100, 1, 1.215733, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1143, 0.032971, 0, 9999, -9999, 1.0, 100, 1, 25.239356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1144, 2.024094, 0, 9999, -9999, 1.0, 100, 1, 52.527382, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1145, 97.877979, 0, 9999, -9999, 1.0, 100, 1, 175.889627, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1146, 0.01298, 0, 9999, -9999, 1.0, 100, 1, 0.861317, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1147, 1.784569, 0, 9999, -9999, 1.0, 100, 1, 45.703707, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1148, 2.599234, 0, 9999, -9999, 1.0, 100, 1, 17.645529, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1149, 0.087102, 0, 9999, -9999, 1.0, 100, 1, 8.556784, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1150, 0.03472, 0, 9999, -9999, 1.0, 100, 1, 3.62256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1151, 1.356647, 0, 9999, -9999, 1.0, 100, 1, 13.036113, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1152, 0.010347, 0, 9999, -9999, 1.0, 100, 1, 0.116518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1153, 0.002965, 0, 9999, -9999, 1.0, 100, 1, 0.068788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1154, 0.006925, 0, 9999, -9999, 1.0, 100, 1, 0.160625, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1155, 0.061657, 0, 9999, -9999, 1.0, 100, 1, 0.609451, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1156, 0.815924, 0, 9999, -9999, 1.0, 100, 1, 16.022334, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1157, 0.451926, 0, 9999, -9999, 1.0, 100, 1, 4.354147, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1158, 0.09687, 0, 9999, -9999, 1.0, 100, 1, 1.04304, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1159, 0.918197, 0, 9999, -9999, 1.0, 100, 1, 13.498087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1160, 40.379171, 0, 9999, -9999, 1.0, 100, 1, 238.377761, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1161, 0.830356, 0, 9999, -9999, 1.0, 100, 1, 25.263391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1162, 66.188507, 0, 9999, -9999, 1.0, 100, 1, 502.409178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1163, 23.282039, 0, 9999, -9999, 1.0, 100, 1, 330.03194, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1164, 50.407074, 0, 9999, -9999, 1.0, 100, 1, 285.625412, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1165, 6.077626, 0, 9999, -9999, 1.0, 100, 1, 57.188579, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1166, 29.976935, 0, 9999, -9999, 1.0, 100, 1, 83.277163, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1167, 0.474583, 0, 9999, -9999, 1.0, 100, 1, 5.05378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1168, 0.181653, 0, 9999, -9999, 1.0, 100, 1, 1.345774, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1169, 0.365373, 0, 9999, -9999, 1.0, 100, 1, 2.721845, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1170, 0.024039, 0, 9999, -9999, 1.0, 100, 1, 0.26599, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1171, 0.001092, 0, 9999, -9999, 1.0, 100, 1, 9.029885, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1172, 1.1e-05, 0, 9999, -9999, 1.0, 100, 1, 3.584043, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1173, 38.981054, 0, 9999, -9999, 1.0, 100, 1, 254.253327, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1174, 0.118079, 0, 9999, -9999, 1.0, 100, 1, 1.260082, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1175, 0.14491, 0, 9999, -9999, 1.0, 100, 1, 0.855454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1176, 0.023255, 0, 9999, -9999, 1.0, 100, 1, 0.23222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1177, 5.466114, 0, 9999, -9999, 1.0, 100, 1, 27.87401, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1178, 0.003165, 0, 9999, -9999, 1.0, 100, 1, 3.167999, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1179, 0.016234, 0, 9999, -9999, 1.0, 100, 1, 1.306293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1180, 0.062899, 0, 9999, -9999, 1.0, 100, 1, 0.688545, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1181, 39.165189, 0, 9999, -9999, 1.0, 100, 1, 85.739557, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1182, 41.434861, 0, 9999, -9999, 1.0, 100, 1, 99.319579, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1183, 0.366281, 0, 9999, -9999, 1.0, 100, 1, 38.222575, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1184, 0.024619, 0, 9999, -9999, 1.0, 100, 1, 4.219005, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1185, 0.447602, 0, 9999, -9999, 1.0, 100, 1, 11.343971, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1186, 5.094381, 0, 9999, -9999, 1.0, 100, 1, 38.916368, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1187, 0.563103, 0, 9999, -9999, 1.0, 100, 1, 9.814574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1188, 59.763182, 0, 9999, -9999, 1.0, 100, 1, 179.712741, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1189, 1.278207, 0, 9999, -9999, 1.0, 100, 1, 20.261805, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1190, 0.002213, 0, 9999, -9999, 1.0, 100, 1, 220.533673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1191, 0.020667, 0, 9999, -9999, 1.0, 100, 1, 73.079413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1192, 0.010017, 0, 9999, -9999, 1.0, 100, 1, 21.454569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1196, 41.259427, 0, 9999, -9999, 1.0, 100, 1, 160.697956, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1197, 18.45384, 0, 9999, -9999, 1.0, 100, 1, 90.592266, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1198, 7.224154, 0, 9999, -9999, 1.0, 100, 1, 39.819157, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1199, 108.710102, 0, 9999, -9999, 1.0, 100, 1, 201.421956, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1200, 35.155318, 0, 9999, -9999, 1.0, 100, 1, 56.012408, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1204, 2.529712, 0, 9999, -9999, 1.0, 100, 1, 47.541821, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1206, 0.001726, 0, 9999, -9999, 1.0, 100, 1, 3.806894, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1208, 5.6e-05, 0, 9999, -9999, 1.0, 100, 1, 2.242031, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1211, 0.002064, 0, 9999, -9999, 1.0, 100, 1, 18.005229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1212, 0.011502, 0, 9999, -9999, 1.0, 100, 1, 91.171888, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1213, 0.559444, 0, 9999, -9999, 1.0, 100, 1, 57.342704, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1214, 0.041549, 0, 9999, -9999, 1.0, 100, 1, 4.505907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1215, 0.053634, 0, 9999, -9999, 1.0, 100, 1, 2.252965, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1216, 0.987413, 0, 9999, -9999, 1.0, 100, 1, 67.754469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1217, 0.010372, 0, 9999, -9999, 1.0, 100, 1, 35.871617, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1218, 0.003173, 0, 9999, -9999, 1.0, 100, 1, 0.980482, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1219, 0.011997, 0, 9999, -9999, 1.0, 100, 1, 12.33953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1220, 0.026069, 0, 9999, -9999, 1.0, 100, 1, 30.597849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1221, 0.010668, 0, 9999, -9999, 1.0, 100, 1, 593.230436, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1222, 0.547299, 0, 9999, -9999, 1.0, 100, 1, 211.057769, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1224, 0.008468, 0, 9999, -9999, 1.0, 100, 1, 160.523778, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1225, 2.959306, 0, 9999, -9999, 1.0, 100, 1, 34.931481, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1226, 0.253386, 0, 9999, -9999, 1.0, 100, 1, 3.982858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1227, 8.6e-05, 0, 9999, -9999, 1.0, 100, 1, 17.482807, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1229, 15.085958, 0, 9999, -9999, 1.0, 100, 1, 51.244222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1230, 0.00365, 0, 9999, -9999, 1.0, 100, 1, 1.681276, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1231, 1.568908, 0, 9999, -9999, 1.0, 100, 1, 33.55478, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1232, 4.252196, 0, 9999, -9999, 1.0, 100, 1, 75.075088, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1233, 431.19357, 0, 9999, -9999, 1.0, 100, 1, 575.36828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1235, 8.832647, 0, 9999, -9999, 1.0, 100, 1, 9.03734, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1236, 78.888354, 0, 9999, -9999, 1.0, 100, 1, 82.225035, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1237, 0.003793, 0, 9999, -9999, 1.0, 100, 1, 14.605409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1238, 0.054076, 0, 9999, -9999, 1.0, 100, 1, 188.691049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1239, 1.374488, 0, 9999, -9999, 1.0, 100, 1, 2.267706, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1240, 33.728843, 0, 9999, -9999, 1.0, 100, 1, 339.51051, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1241, 22.327877, 0, 9999, -9999, 1.0, 100, 1, 385.361595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1242, 1.67781, 0, 9999, -9999, 1.0, 100, 1, 27.074038, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1243, 4.308538, 0, 9999, -9999, 1.0, 100, 1, 83.079842, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1244, 185.95165, 0, 9999, -9999, 1.0, 100, 1, 323.472536, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1245, 0.397575, 0, 9999, -9999, 1.0, 100, 1, 8.080896, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1246, 31.095104, 0, 9999, -9999, 1.0, 100, 1, 57.127825, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1247, 0.025951, 0, 9999, -9999, 1.0, 100, 1, 21.833396, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1248, 27.41699, 0, 9999, -9999, 1.0, 100, 1, 91.958275, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1249, 3.859809, 0, 9999, -9999, 1.0, 100, 1, 76.135177, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1250, 1.716488, 0, 9999, -9999, 1.0, 100, 1, 30.830519, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1251, 0.655346, 0, 9999, -9999, 1.0, 100, 1, 23.404345, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1252, 0.453551, 0, 9999, -9999, 1.0, 100, 1, 14.887727, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1253, 7.083955, 0, 9999, -9999, 1.0, 100, 1, 64.502694, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1254, 24.436675, 0, 9999, -9999, 1.0, 100, 1, 82.278695, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1255, 0.276671, 0, 9999, -9999, 1.0, 100, 1, 3.818419, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1256, 1.144138, 0, 9999, -9999, 1.0, 100, 1, 15.091842, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1257, 7.200274, 0, 9999, -9999, 1.0, 100, 1, 88.95288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1258, 106.387425, 0, 9999, -9999, 1.0, 100, 1, 235.487329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1259, 9.894629, 0, 9999, -9999, 1.0, 100, 1, 109.288719, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1260, 0.998465, 0, 9999, -9999, 1.0, 100, 1, 20.168717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1261, 0.801997, 0, 9999, -9999, 1.0, 100, 1, 201.699555, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1264, 0.001383, 0, 9999, -9999, 1.0, 100, 1, 82.035361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1266, 0.060644, 0, 9999, -9999, 1.0, 100, 1, 119.710849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1267, 2.856463, 0, 9999, -9999, 1.0, 100, 1, 39.469006, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1268, 0.001116, 0, 9999, -9999, 1.0, 100, 1, 3.4295, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1269, 0.001153, 0, 9999, -9999, 1.0, 100, 1, 5.105829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1270, 0.189973, 0, 9999, -9999, 1.0, 100, 1, 38.950511, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1274, 2.839792, 0, 9999, -9999, 1.0, 100, 1, 53.095629, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1275, 5.533737, 0, 9999, -9999, 1.0, 100, 1, 99.0753, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1276, 1.544906, 0, 9999, -9999, 1.0, 100, 1, 25.655641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1277, 2.311616, 0, 9999, -9999, 1.0, 100, 1, 65.611252, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1278, 5.308314, 0, 9999, -9999, 1.0, 100, 1, 170.437781, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1280, 2.3e-05, 0, 9999, -9999, 1.0, 100, 1, 0.626494, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1281, 0.000408, 0, 9999, -9999, 1.0, 100, 1, 2.51246, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1282, 0.00666, 0, 9999, -9999, 1.0, 100, 1, 4.363037, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1283, 1252.590484, 0, 9999, -9999, 1.0, 100, 1, 1297.764428, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1285, 0.000251, 0, 9999, -9999, 1.0, 100, 1, 2.937048, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1286, 0.002555, 0, 9999, -9999, 1.0, 100, 1, 17.872201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1287, 9.801286, 0, 9999, -9999, 1.0, 100, 1, 93.199628, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1288, 10.578682, 0, 9999, -9999, 1.0, 100, 1, 148.402692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1289, 13.524567, 0, 9999, -9999, 1.0, 100, 1, 184.149235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1290, 0.004073, 0, 9999, -9999, 1.0, 100, 1, 4.901974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1291, 4.36402, 0, 9999, -9999, 1.0, 100, 1, 98.293351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1292, 1.11343, 0, 9999, -9999, 1.0, 100, 1, 41.682074, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1293, 0.234865, 0, 9999, -9999, 1.0, 100, 1, 2.402107, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1294, 0.353955, 0, 9999, -9999, 1.0, 100, 1, 5.39743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1295, 0.406226, 0, 9999, -9999, 1.0, 100, 1, 5.873666, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1296, 0.202818, 0, 9999, -9999, 1.0, 100, 1, 27.356489, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1297, 0.047602, 0, 9999, -9999, 1.0, 100, 1, 177.778742, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1298, 0.092273, 0, 9999, -9999, 1.0, 100, 1, 4.014603, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1299, 0.001945, 0, 9999, -9999, 1.0, 100, 1, 2.158207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1300, 0.891282, 0, 9999, -9999, 1.0, 100, 1, 23.74405, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1301, 2.089531, 0, 9999, -9999, 1.0, 100, 1, 60.863304, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1302, 0.025405, 0, 9999, -9999, 1.0, 100, 1, 4.877299, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1303, 0.00067, 0, 9999, -9999, 1.0, 100, 1, 4.335516, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1306, 0.019645, 0, 9999, -9999, 1.0, 100, 1, 1.827014, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1307, 0.004553, 0, 9999, -9999, 1.0, 100, 1, 0.29894, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1308, 0.326549, 0, 9999, -9999, 1.0, 100, 1, 3.278321, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1312, 180.400447, 0, 9999, -9999, 1.0, 100, 1, 262.264924, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1316, 0.004615, 0, 9999, -9999, 1.0, 100, 1, 2.757497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1317, 3.635417, 0, 9999, -9999, 1.0, 100, 1, 23.958574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1319, 2.674937, 0, 9999, -9999, 1.0, 100, 1, 17.708276, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1323, 34.395359, 0, 9999, -9999, 1.0, 100, 1, 199.111909, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1326, 3.582741, 0, 9999, -9999, 1.0, 100, 1, 56.928865, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1327, 4.899518, 0, 9999, -9999, 1.0, 100, 1, 50.796895, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1328, 2.229815, 0, 9999, -9999, 1.0, 100, 1, 16.063343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1329, 0.008374, 0, 9999, -9999, 1.0, 100, 1, 218.675424, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1331, 0.012219, 0, 9999, -9999, 1.0, 100, 1, 0.289238, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1333, 0.001835, 0, 9999, -9999, 1.0, 100, 1, 45.650254, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1336, 0.160536, 0, 9999, -9999, 1.0, 100, 1, 29.773035, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1337, 82.782728, 0, 9999, -9999, 1.0, 100, 1, 121.31241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1339, 0.840885, 0, 9999, -9999, 1.0, 100, 1, 10.086482, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1340, 43.483815, 0, 9999, -9999, 1.0, 100, 1, 70.098327, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1345, 0.000819, 0, 9999, -9999, 1.0, 100, 1, 3.971188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1346, 0.221371, 0, 9999, -9999, 1.0, 100, 1, 214.719215, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1348, 10.200017, 0, 9999, -9999, 1.0, 100, 1, 22.707927, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1349, 25.154866, 0, 9999, -9999, 1.0, 100, 1, 42.352342, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1356, 5.548377, 0, 9999, -9999, 1.0, 100, 1, 73.486231, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1357, 3.70864, 0, 9999, -9999, 1.0, 100, 1, 56.459913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1359, 4.208776, 0, 9999, -9999, 1.0, 100, 1, 70.633589, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1360, 0.979577, 0, 9999, -9999, 1.0, 100, 1, 17.135983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1361, 6.501126, 0, 9999, -9999, 1.0, 100, 1, 63.207173, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1362, 4.957372, 0, 9999, -9999, 1.0, 100, 1, 79.107216, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1366, 0.081799, 0, 9999, -9999, 1.0, 100, 1, 1.229992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1367, 0.006591, 0, 9999, -9999, 1.0, 100, 1, 43.863891, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1372, 9.467249, 0, 9999, -9999, 1.0, 100, 1, 192.966588, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1373, 1.246446, 0, 9999, -9999, 1.0, 100, 1, 35.200257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1374, 64.772368, 0, 9999, -9999, 1.0, 100, 1, 108.220146, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1375, 35.736757, 0, 9999, -9999, 1.0, 100, 1, 61.223816, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1376, 47.961861, 0, 9999, -9999, 1.0, 100, 1, 176.213655, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1377, 39.370796, 0, 9999, -9999, 1.0, 100, 1, 234.376272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1378, 40.132816, 0, 9999, -9999, 1.0, 100, 1, 246.029906, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1379, 0.004792, 0, 9999, -9999, 1.0, 100, 1, 0.805984, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1380, 0.05126, 0, 9999, -9999, 1.0, 100, 1, 1.213356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1381, 0.00688, 0, 9999, -9999, 1.0, 100, 1, 1.01257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1382, 5.823912, 0, 9999, -9999, 1.0, 100, 1, 138.839906, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1383, 5.531482, 0, 9999, -9999, 1.0, 100, 1, 109.821439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1384, 0.184231, 0, 9999, -9999, 1.0, 100, 1, 4.669135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1385, 0.005411, 0, 9999, -9999, 1.0, 100, 1, 0.124455, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1386, 0.061764, 0, 9999, -9999, 1.0, 100, 1, 0.673858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1387, 0.221128, 0, 9999, -9999, 1.0, 100, 1, 3.493561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1388, 0.039213, 0, 9999, -9999, 1.0, 100, 1, 0.928188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1389, 0.009021, 0, 9999, -9999, 1.0, 100, 1, 0.213536, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1390, 0.236272, 0, 9999, -9999, 1.0, 100, 1, 3.732816, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1391, 0.016171, 0, 9999, -9999, 1.0, 100, 1, 0.521719, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1392, 1.991917, 0, 9999, -9999, 1.0, 100, 1, 19.306386, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1393, 0.014163, 0, 9999, -9999, 1.0, 100, 1, 1.376509, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1394, 0.01204, 0, 9999, -9999, 1.0, 100, 1, 1.077886, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1395, 0.001242, 0, 9999, -9999, 1.0, 100, 1, 0.073776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1396, 0.000121, 0, 9999, -9999, 1.0, 100, 1, 0.026112, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1397, 3.950556, 0, 9999, -9999, 1.0, 100, 1, 25.084545, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1398, 0.455311, 0, 9999, -9999, 1.0, 100, 1, 2.779641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1399, 0.230871, 0, 9999, -9999, 1.0, 100, 1, 17.868157, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1400, 0.013267, 0, 9999, -9999, 1.0, 100, 1, 1.297197, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1401, 7.058214, 0, 9999, -9999, 1.0, 100, 1, 89.339497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1402, 1.904282, 0, 9999, -9999, 1.0, 100, 1, 26.328902, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1403, 38.271193, 0, 9999, -9999, 1.0, 100, 1, 119.651672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1404, 50.959023, 0, 9999, -9999, 1.0, 100, 1, 134.800518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1405, 3.361271, 0, 9999, -9999, 1.0, 100, 1, 29.550802, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1406, 1.997189, 0, 9999, -9999, 1.0, 100, 1, 10.763987, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1407, 0.000246, 0, 9999, -9999, 1.0, 100, 1, 0.211614, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1408, 2.586711, 0, 9999, -9999, 1.0, 100, 1, 41.078698, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1409, 0.613156, 0, 9999, -9999, 1.0, 100, 1, 12.019786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1410, 2.053367, 0, 9999, -9999, 1.0, 100, 1, 37.466518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1411, 2.739087, 0, 9999, -9999, 1.0, 100, 1, 39.395367, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1418, 2.811146, 0, 9999, -9999, 1.0, 100, 1, 88.264613, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1419, 0.681075, 0, 9999, -9999, 1.0, 100, 1, 33.260903, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1421, 0.136505, 0, 9999, -9999, 0.999501, 100, 1, 6.972369, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1422, 0.060115, 0, 9999, -9999, 1.0, 100, 1, 4.730495, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1423, 0.035944, 0, 9999, -9999, 1.0, 100, 1, 1.931017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1424, 199.390672, 0, 9999, -9999, 1.0, 100, 1, 219.092115, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1425, 6.136022, 0, 9999, -9999, 1.0, 100, 1, 21.366402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1426, 6.317865, 0, 9999, -9999, 1.0, 100, 1, 68.762602, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1427, 49.781026, 0, 9999, -9999, 1.0, 100, 1, 480.698671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1428, 17.413111, 0, 9999, -9999, 1.0, 100, 1, 334.885743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1429, 0.061141, 0, 9999, -9999, 1.0, 100, 1, 13.279826, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1431, 38.616412, 0, 9999, -9999, 1.0, 100, 1, 227.662022, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1432, 4.973921, 0, 9999, -9999, 1.0, 100, 1, 12.058931, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1433, 1089.413862, 0, 9999, -9999, 1.0, 100, 1, 1289.241188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1434, 67.518983, 0, 9999, -9999, 1.0, 100, 1, 99.440014, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1435, 56.476643, 0, 9999, -9999, 1.0, 100, 1, 86.713217, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1436, 44.706158, 0, 9999, -9999, 1.0, 100, 1, 98.434116, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1437, 7.376327, 0, 9999, -9999, 1.0, 100, 1, 238.321958, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1438, 43.862961, 0, 9999, -9999, 1.0, 100, 1, 392.815158, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1439, 15.508688, 0, 9999, -9999, 1.0, 100, 1, 99.103164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1440, 0.051597, 0, 9999, -9999, 1.0, 100, 1, 0.833609, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1443, 54.057868, 0, 9999, -9999, 1.0, 100, 1, 103.005076, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1444, 0.105424, 0, 9999, -9999, 1.0, 100, 1, 8.981696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1445, 0.001279, 0, 9999, -9999, 1.0, 100, 1, 25.036799, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1446, 56.433762, 0, 9999, -9999, 1.0, 100, 1, 758.547933, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1447, 2.407264, 0, 9999, -9999, 1.0, 100, 1, 89.477411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1448, 2.596473, 0, 9999, -9999, 1.0, 100, 1, 7.523578, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1449, 17.481136, 0, 9999, -9999, 1.0, 100, 1, 95.437673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1450, 18.640816, 0, 9999, -9999, 1.0, 100, 1, 59.256809, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1451, 24.410815, 0, 9999, -9999, 1.0, 100, 1, 68.198838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1452, 7.964401, 0, 9999, -9999, 1.0, 100, 1, 24.068921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1453, 3.6e-05, 0, 9999, -9999, 1.0, 100, 1, 64.93775, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1454, 3.474548, 0, 9999, -9999, 1.0, 100, 1, 155.126607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1455, 0.066223, 0, 9999, -9999, 1.0, 100, 1, 0.654438, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1456, 10.274464, 0, 9999, -9999, 1.0, 100, 1, 50.054822, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1457, 0.084606, 0, 9999, -9999, 1.0, 100, 1, 2.002672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1458, 0.010401, 0, 9999, -9999, 1.0, 100, 1, 0.246199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1459, 0.05427, 0, 9999, -9999, 1.0, 100, 1, 5.309059, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1460, 2.913168, 0, 9999, -9999, 1.0, 100, 1, 101.498473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1461, 0.699753, 0, 9999, -9999, 1.0, 100, 1, 17.951737, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1462, 0.094803, 0, 9999, -9999, 1.0, 100, 1, 2.402686, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1463, 0.010915, 0, 9999, -9999, 1.0, 100, 1, 0.711207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1464, 0.031454, 0, 9999, -9999, 1.0, 100, 1, 218.884211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1465, 0.424428, 0, 9999, -9999, 1.0, 100, 1, 5.299939, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1466, 0.59163, 0, 9999, -9999, 1.0, 100, 1, 5.685017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1467, 0.072582, 0, 9999, -9999, 1.0, 100, 1, 2.096155, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1468, 0.636875, 0, 9999, -9999, 1.0, 100, 1, 23.789171, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1469, 2.093967, 0, 9999, -9999, 1.0, 100, 1, 65.007467, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1470, 41.82331, 0, 9999, -9999, 1.0, 100, 1, 78.965265, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1471, 102.428898, 0, 9999, -9999, 1.0, 100, 1, 159.165074, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1472, 0.019952, 0, 9999, -9999, 1.0, 100, 1, 11.980182, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1473, 0.789352, 0, 9999, -9999, 1.0, 100, 1, 8.362608, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1474, 0.157832, 0, 9999, -9999, 1.0, 100, 1, 1.398948, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1475, 0.066213, 0, 9999, -9999, 1.0, 100, 1, 0.39088, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1476, 93.472233, 0, 9999, -9999, 1.0, 100, 1, 250.480113, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1477, 0.934008, 0, 9999, -9999, 1.0, 100, 1, 12.122974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1483, 0.044734, 0, 9999, -9999, 1.0, 100, 1, 3.599649, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1484, 2.9e-05, 0, 9999, -9999, 1.0, 100, 1, 0.02991, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1485, 0.000548, 0, 9999, -9999, 1.0, 100, 1, 0.563547, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1486, 0.002819, 0, 9999, -9999, 1.0, 100, 1, 2.89934, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1489, 0.001792, 0, 9999, -9999, 1.0, 100, 1, 0.118938, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1490, 665.084522, 0, 9999, -9999, 1.0, 100, 1, 782.463701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1491, 4.025558, 0, 9999, -9999, 1.0, 100, 1, 84.622838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1492, 13.534107, 0, 9999, -9999, 1.0, 100, 1, 229.927503, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1493, 5.622106, 0, 9999, -9999, 1.0, 100, 1, 83.557175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1494, 44.133257, 0, 9999, -9999, 1.0, 100, 1, 404.486733, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1495, 1.415799, 0, 9999, -9999, 1.0, 100, 1, 66.920717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1497, 0.01221, 0, 9999, -9999, 1.0, 100, 1, 89.070006, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1498, 0.030098, 0, 9999, -9999, 1.0, 100, 1, 105.800802, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1501, 0.003361, 0, 9999, -9999, 1.0, 100, 1, 8.165333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1503, 0.004148, 0, 9999, -9999, 1.0, 100, 1, 45.972187, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1504, 2.344345, 0, 9999, -9999, 1.0, 100, 1, 188.822836, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1505, 0.000546, 0, 9999, -9999, 1.0, 100, 1, 26.765913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1506, 2.043094, 0, 9999, -9999, 1.0, 100, 1, 56.406717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1507, 0.470049, 0, 9999, -9999, 1.0, 100, 1, 15.438042, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1510, 0.005458, 0, 9999, -9999, 1.0, 100, 1, 107.008141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1511, 0.024657, 0, 9999, -9999, 1.0, 100, 1, 155.22192, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1512, 0.002029, 0, 9999, -9999, 1.0, 100, 1, 64.130052, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1513, 0.030915, 0, 9999, -9999, 1.0, 100, 1, 23.051786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1518, 0.003913, 0, 9999, -9999, 1.0, 100, 1, 0.670542, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1519, 0.000272, 0, 9999, -9999, 1.0, 100, 1, 0.04654, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1520, 3.854694, 0, 9999, -9999, 1.0, 100, 1, 79.674256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1521, 1.791884, 0, 9999, -9999, 1.0, 100, 1, 31.179116, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1522, 2.040292, 0, 9999, -9999, 1.0, 100, 1, 40.212666, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1523, 0.949567, 0, 9999, -9999, 1.0, 100, 1, 20.304521, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1524, 1.937981, 0, 9999, -9999, 1.0, 100, 1, 26.159251, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1525, 3.816298, 0, 9999, -9999, 1.0, 100, 1, 68.425403, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1526, 2.354602, 0, 9999, -9999, 1.0, 100, 1, 44.478558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1527, 9.919309, 0, 9999, -9999, 1.0, 100, 1, 103.998682, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1528, 21.619077, 0, 9999, -9999, 1.0, 100, 1, 41.386726, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1529, 8.704895, 0, 9999, -9999, 1.0, 100, 1, 84.378012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1530, 2.692923, 0, 9999, -9999, 1.0, 100, 1, 79.055155, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1531, 104.653862, 0, 9999, -9999, 1.0, 100, 1, 183.821409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1532, 2.125498, 0, 9999, -9999, 1.0, 100, 1, 37.379033, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1534, 1.420342, 0, 9999, -9999, 1.0, 100, 1, 29.516607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1535, 0.603212, 0, 9999, -9999, 1.0, 100, 1, 8.931779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1536, 2.335948, 0, 9999, -9999, 1.0, 100, 1, 39.26145, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1537, 4.551805, 0, 9999, -9999, 1.0, 100, 1, 99.740166, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1538, 51.465034, 0, 9999, -9999, 1.0, 100, 1, 130.774402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1539, 102.043652, 0, 9999, -9999, 1.0, 100, 1, 201.766963, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1540, 1.754708, 0, 9999, -9999, 1.0, 100, 1, 4.160189, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1541, 1.271256, 0, 9999, -9999, 1.0, 100, 1, 3.429917, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1542, 22.605282, 0, 9999, -9999, 1.0, 100, 1, 50.287947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1543, 0.565086, 0, 9999, -9999, 1.0, 100, 1, 14.788669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1544, 23.693358, 0, 9999, -9999, 1.0, 100, 1, 121.437126, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1545, 81.994741, 0, 9999, -9999, 1.0, 100, 1, 185.545128, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1546, 82.218967, 0, 9999, -9999, 1.0, 100, 1, 255.44343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1547, 67.614723, 0, 9999, -9999, 1.0, 100, 1, 362.597919, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1548, 0.721249, 0, 9999, -9999, 1.0, 100, 1, 21.273779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1549, 3.298956, 0, 9999, -9999, 1.0, 100, 1, 77.017486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1550, 0.163234, 0, 9999, -9999, 1.0, 100, 1, 5.214715, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1551, 0.304981, 0, 9999, -9999, 1.0, 100, 1, 9.576491, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1552, 19.070388, 0, 9999, -9999, 1.0, 100, 1, 54.035471, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1553, 40.759532, 0, 9999, -9999, 1.0, 100, 1, 92.480282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1554, 44.242819, 0, 9999, -9999, 1.0, 100, 1, 155.333413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1555, 60.12844, 0, 9999, -9999, 1.0, 100, 1, 103.865774, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1556, 12.322818, 0, 9999, -9999, 1.0, 100, 1, 40.376346, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1557, 8.46835, 0, 9999, -9999, 1.0, 100, 1, 25.990242, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1558, 2.509741, 0, 9999, -9999, 1.0, 100, 1, 24.622373, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1559, 36.528878, 0, 9999, -9999, 1.0, 100, 1, 112.609207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1560, 22.366278, 0, 9999, -9999, 1.0, 100, 1, 86.395942, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1561, 6.93291, 0, 9999, -9999, 1.0, 100, 1, 19.127379, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1562, 4.09189, 0, 9999, -9999, 1.0, 100, 1, 61.888351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1563, 35.327707, 0, 9999, -9999, 1.0, 100, 1, 106.233907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1564, 30.749499, 0, 9999, -9999, 1.0, 100, 1, 58.27282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1565, 5.51138, 0, 9999, -9999, 1.0, 100, 1, 12.83938, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1566, 119.367748, 0, 9999, -9999, 1.0, 100, 1, 358.676351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1567, 1.980328, 0, 9999, -9999, 1.0, 100, 1, 29.531771, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1568, 7.382762, 0, 9999, -9999, 1.0, 100, 1, 89.300597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1569, 142.565953, 0, 9999, -9999, 1.0, 100, 1, 328.718571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1570, 120.200317, 0, 9999, -9999, 1.0, 100, 1, 243.241909, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1571, 56.898408, 0, 9999, -9999, 1.0, 100, 1, 203.443403, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1572, 115.686694, 0, 9999, -9999, 1.0, 100, 1, 232.127956, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1573, 37.277333, 0, 9999, -9999, 1.0, 100, 1, 80.403772, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1574, 51.959213, 0, 9999, -9999, 1.0, 100, 1, 144.715972, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1575, 60.442501, 0, 9999, -9999, 1.0, 100, 1, 153.606376, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1576, 14.073028, 0, 9999, -9999, 1.0, 100, 1, 34.262017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1577, 17.686192, 0, 9999, -9999, 1.0, 100, 1, 217.054488, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1578, 6.361027, 0, 9999, -9999, 1.0, 100, 1, 16.348222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1579, 1.796998, 0, 9999, -9999, 1.0, 100, 1, 35.164333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1580, 0.969771, 0, 9999, -9999, 1.0, 100, 1, 21.892492, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1581, 76.770758, 0, 9999, -9999, 1.0, 100, 1, 156.277964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1582, 4.627554, 0, 9999, -9999, 1.0, 100, 1, 8.151092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1583, 1.013582, 0, 9999, -9999, 1.0, 100, 1, 1.791968, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1584, 32.201187, 0, 9999, -9999, 1.0, 100, 1, 81.24993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1585, 1.813983, 0, 9999, -9999, 1.0, 100, 1, 3.685182, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1586, 32.269635, 0, 9999, -9999, 1.0, 100, 1, 61.31549, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1587, 98.037204, 0, 9999, -9999, 1.0, 100, 1, 191.635296, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1588, 23.404473, 0, 9999, -9999, 1.0, 100, 1, 59.424343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1589, 9.649174, 0, 9999, -9999, 1.0, 100, 1, 48.538268, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1590, 34.170018, 0, 9999, -9999, 1.0, 100, 1, 119.077525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1591, 31.925348, 0, 9999, -9999, 1.0, 100, 1, 142.8447, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1592, 5.561961, 0, 9999, -9999, 1.0, 100, 1, 9.842361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1593, 4.064612, 0, 9999, -9999, 1.0, 100, 1, 7.183183, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1594, 5.400375, 0, 9999, -9999, 1.0, 100, 1, 9.56089, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1595, 28.62726, 0, 9999, -9999, 1.0, 100, 1, 54.79001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1596, 57.027743, 0, 9999, -9999, 1.0, 100, 1, 138.730049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1597, 1.60468, 0, 9999, -9999, 1.0, 100, 1, 2.858987, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1598, 2.718822, 0, 9999, -9999, 1.0, 100, 1, 4.795494, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1599, 29.569389, 0, 9999, -9999, 1.0, 100, 1, 86.703571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1600, 14.712936, 0, 9999, -9999, 1.0, 100, 1, 25.356501, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1601, 4.138944, 0, 9999, -9999, 1.0, 100, 1, 7.643653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1602, 22.706117, 0, 9999, -9999, 1.0, 100, 1, 45.658169, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1603, 15.382223, 0, 9999, -9999, 1.0, 100, 1, 26.209248, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1604, 9.688412, 0, 9999, -9999, 1.0, 100, 1, 16.363032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1605, 25.823012, 0, 9999, -9999, 1.0, 100, 1, 43.477178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1606, 22.584798, 0, 9999, -9999, 1.0, 100, 1, 42.024907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1607, 11.485301, 0, 9999, -9999, 1.0, 100, 1, 19.395236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1608, 10.729219, 0, 9999, -9999, 1.0, 100, 1, 19.491249, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1609, 3.210834, 0, 9999, -9999, 1.0, 100, 1, 6.052272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1610, 10.193242, 0, 9999, -9999, 1.0, 100, 1, 18.571656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1611, 3.490222, 0, 9999, -9999, 1.0, 100, 1, 6.420554, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1612, 5.75046, 0, 9999, -9999, 1.0, 100, 1, 10.811203, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1613, 15.275647, 0, 9999, -9999, 1.0, 100, 1, 27.976217, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1614, 15.393881, 0, 9999, -9999, 1.0, 100, 1, 28.183827, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1615, 93.892032, 0, 9999, -9999, 1.0, 100, 1, 193.234776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1616, 3.890387, 0, 9999, -9999, 1.0, 100, 1, 6.865586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1617, 6.026296, 0, 9999, -9999, 1.0, 100, 1, 10.63107, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1618, 2.790265, 0, 9999, -9999, 1.0, 100, 1, 4.920368, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1619, 3.792149, 0, 9999, -9999, 1.0, 100, 1, 6.689637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1620, 1.084317, 0, 9999, -9999, 1.0, 100, 1, 1.912024, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1621, 4.274053, 0, 9999, -9999, 1.0, 100, 1, 8.056388, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1622, 3.020597, 0, 9999, -9999, 1.0, 100, 1, 5.693597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1623, 11.470276, 0, 9999, -9999, 1.0, 100, 1, 20.717111, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1624, 4.922505, 0, 9999, -9999, 1.0, 100, 1, 8.938454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1625, 33.876307, 0, 9999, -9999, 1.0, 100, 1, 65.182465, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1626, 6.446651, 0, 9999, -9999, 1.0, 100, 1, 11.878862, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1627, 5.757286, 0, 9999, -9999, 1.0, 100, 1, 10.196496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1628, 31.895799, 0, 9999, -9999, 1.0, 100, 1, 66.613993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1629, 67.295304, 0, 9999, -9999, 1.0, 100, 1, 121.671047, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1630, 6.71729, 0, 9999, -9999, 1.0, 100, 1, 12.452584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1631, 17.355646, 0, 9999, -9999, 1.0, 100, 1, 32.486249, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1632, 15.125213, 0, 9999, -9999, 1.0, 100, 1, 25.874893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1633, 32.799309, 0, 9999, -9999, 1.0, 100, 1, 67.433329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1634, 5.115801, 0, 9999, -9999, 1.0, 100, 1, 9.643044, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1635, 11.160851, 0, 9999, -9999, 1.0, 100, 1, 19.166135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1636, 13.536604, 0, 9999, -9999, 1.0, 100, 1, 25.181406, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1637, 16.298847, 0, 9999, -9999, 1.0, 100, 1, 29.114828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1638, 6.806951, 0, 9999, -9999, 1.0, 100, 1, 12.162188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1639, 16.506856, 0, 9999, -9999, 1.0, 100, 1, 29.183593, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1640, 1.264443, 0, 9999, -9999, 1.0, 100, 1, 2.237652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1641, 2.838477, 0, 9999, -9999, 1.0, 100, 1, 5.023705, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1642, 6.627996, 0, 9999, -9999, 1.0, 100, 1, 11.730623, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1643, 1.931834, 0, 9999, -9999, 1.0, 100, 1, 3.417684, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1644, 6.735558, 0, 9999, -9999, 1.0, 100, 1, 11.76596, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1645, 6.302909, 0, 9999, -9999, 1.0, 100, 1, 11.144882, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1646, 2.11504, 0, 9999, -9999, 1.0, 100, 1, 3.73271, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1647, 9.92692, 0, 9999, -9999, 1.0, 100, 1, 17.434827, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1648, 28.233695, 0, 9999, -9999, 1.0, 100, 1, 109.345623, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1649, 5.151655, 0, 9999, -9999, 1.0, 100, 1, 23.481556, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1650, 11.474903, 0, 9999, -9999, 1.0, 100, 1, 176.928964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1651, 6.559486, 0, 9999, -9999, 1.0, 100, 1, 161.276649, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1652, 15.754088, 0, 9999, -9999, 1.0, 100, 1, 84.070562, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1653, 0.859041, 0, 9999, -9999, 1.0, 100, 1, 18.431241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1654, 2.867929, 0, 9999, -9999, 1.0, 100, 1, 47.53021, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1655, 6.126591, 0, 9999, -9999, 1.0, 100, 1, 10.79071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1656, 1.503676, 0, 9999, -9999, 1.0, 100, 1, 2.680105, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1657, 3.159334, 0, 9999, -9999, 1.0, 100, 1, 5.6313, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1658, 1.063334, 0, 9999, -9999, 1.0, 100, 1, 1.879381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1659, 42.758003, 0, 9999, -9999, 1.0, 100, 1, 91.77667, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1660, 81.182801, 0, 9999, -9999, 1.0, 100, 1, 186.942171, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1661, 54.425695, 0, 9999, -9999, 1.0, 100, 1, 138.604087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1662, 1.7252, 0, 9999, -9999, 1.0, 100, 1, 3.040325, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1663, 0.88777, 0, 9999, -9999, 1.0, 100, 1, 1.600649, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1664, 0.892007, 0, 9999, -9999, 1.0, 100, 1, 1.578207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1665, 26.879102, 0, 9999, -9999, 1.0, 100, 1, 48.659717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1666, 1.568464, 0, 9999, -9999, 1.0, 100, 1, 2.877877, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1667, 2.930199, 0, 9999, -9999, 1.0, 100, 1, 5.227282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1668, 2.222682, 0, 9999, -9999, 1.0, 100, 1, 3.927043, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1669, 32.479792, 0, 9999, -9999, 1.0, 100, 1, 72.677935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1670, 57.381942, 0, 9999, -9999, 1.0, 100, 1, 111.043025, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1671, 30.998365, 0, 9999, -9999, 1.0, 100, 1, 62.404971, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1672, 5.901853, 0, 9999, -9999, 1.0, 100, 1, 10.579925, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1673, 2.372304, 0, 9999, -9999, 1.0, 100, 1, 4.091034, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1674, 20.609688, 0, 9999, -9999, 1.0, 100, 1, 47.970381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1675, 17.173313, 0, 9999, -9999, 1.0, 100, 1, 31.233663, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1676, 4.733187, 0, 9999, -9999, 1.0, 100, 1, 83.173368, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1677, 0.748216, 0, 9999, -9999, 1.0, 100, 1, 13.887293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1678, 35.527692, 0, 9999, -9999, 1.0, 100, 1, 226.804108, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1679, 13.18382, 0, 9999, -9999, 1.0, 100, 1, 71.380413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1680, 10.906483, 0, 9999, -9999, 1.0, 100, 1, 52.148102, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1681, 5.842714, 0, 9999, -9999, 1.0, 100, 1, 17.30062, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1682, 12.101248, 0, 9999, -9999, 1.0, 100, 1, 39.892468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1683, 4.466464, 0, 9999, -9999, 1.0, 100, 1, 9.189765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1684, 3.14363, 0, 9999, -9999, 1.0, 100, 1, 40.575646, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1685, 3.384526, 0, 9999, -9999, 1.0, 100, 1, 74.922434, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1686, 4.905179, 0, 9999, -9999, 1.0, 100, 1, 81.035483, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1687, 55.528937, 0, 9999, -9999, 1.0, 100, 1, 112.01808, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1688, 9.148372, 0, 9999, -9999, 1.0, 100, 1, 18.158729, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1689, 13.639446, 0, 9999, -9999, 1.0, 100, 1, 116.696894, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1690, 21.09561, 0, 9999, -9999, 1.0, 100, 1, 116.477465, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1691, 19.637371, 0, 9999, -9999, 1.0, 100, 1, 228.38653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1692, 2.901237, 0, 9999, -9999, 1.0, 100, 1, 26.501573, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1693, 50.543953, 0, 9999, -9999, 1.0, 100, 1, 86.236575, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1694, 18.920588, 0, 9999, -9999, 1.0, 100, 1, 53.656832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1695, 7.719672, 0, 9999, -9999, 1.0, 100, 1, 23.132774, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1696, 30.540056, 0, 9999, -9999, 1.0, 100, 1, 53.34209, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1697, 76.168097, 0, 9999, -9999, 1.0, 100, 1, 136.821485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1698, 12.290127, 0, 9999, -9999, 1.0, 100, 1, 25.60631, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1699, 2.114343, 0, 9999, -9999, 1.0, 100, 1, 5.356106, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1700, 21.391783, 0, 9999, -9999, 1.0, 100, 1, 55.825815, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1701, 10.832276, 0, 9999, -9999, 1.0, 100, 1, 37.297196, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1702, 2.156654, 0, 9999, -9999, 1.0, 100, 1, 25.149806, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1703, 3.858718, 0, 9999, -9999, 1.0, 100, 1, 48.587768, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1704, 10.17193, 0, 9999, -9999, 1.0, 100, 1, 127.647586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1705, 5.26422, 0, 9999, -9999, 1.0, 100, 1, 52.051788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1706, 0.604489, 0, 9999, -9999, 1.0, 100, 1, 6.76178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1707, 6.403263, 0, 9999, -9999, 1.0, 100, 1, 11.7078, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1708, 12.92226, 0, 9999, -9999, 1.0, 100, 1, 26.288692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1709, 17.033589, 0, 9999, -9999, 1.0, 100, 1, 226.257418, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1710, 49.517907, 0, 9999, -9999, 1.0, 100, 1, 183.631947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1711, 2.441574, 0, 9999, -9999, 1.0, 100, 1, 7.213854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1712, 6.895552, 0, 9999, -9999, 1.0, 100, 1, 75.638853, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1713, 28.927684, 0, 9999, -9999, 1.0, 100, 1, 90.775073, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1714, 16.998693, 0, 9999, -9999, 1.0, 100, 1, 42.312538, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1715, 62.747539, 0, 9999, -9999, 1.0, 100, 1, 155.279397, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1716, 97.323451, 0, 9999, -9999, 1.0, 100, 1, 156.979012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1717, 10.583744, 0, 9999, -9999, 1.0, 100, 1, 82.928251, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1718, 170.834174, 0, 9999, -9999, 1.0, 100, 1, 301.614349, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1719, 3.601351, 0, 9999, -9999, 1.0, 100, 1, 19.488967, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1720, 5.131112, 0, 9999, -9999, 1.0, 100, 1, 54.067169, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1721, 37.327656, 0, 9999, -9999, 1.0, 100, 1, 82.151947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1722, 9.385188, 0, 9999, -9999, 1.0, 100, 1, 21.329566, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1723, 0.050571, 0, 9999, -9999, 1.0, 100, 1, 2.855273, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1724, 0.677839, 0, 9999, -9999, 1.0, 100, 1, 36.268783, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1725, 22.953281, 0, 9999, -9999, 1.0, 100, 1, 55.750844, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1726, 15.03217, 0, 9999, -9999, 1.0, 100, 1, 84.308501, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1727, 0.192521, 0, 9999, -9999, 1.0, 100, 1, 0.456443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1728, 28.516908, 0, 9999, -9999, 1.0, 100, 1, 65.283314, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1729, 100.473844, 0, 9999, -9999, 1.0, 100, 1, 220.758669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1730, 4.797176, 0, 9999, -9999, 1.0, 100, 1, 51.367164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1731, 34.263201, 0, 9999, -9999, 1.0, 100, 1, 151.90213, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1732, 155.11784, 0, 9999, -9999, 1.0, 100, 1, 383.858473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1733, 23.326039, 0, 9999, -9999, 1.0, 100, 1, 60.655652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1734, 30.795291, 0, 9999, -9999, 1.0, 100, 1, 77.375277, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1735, 79.949927, 0, 9999, -9999, 1.0, 100, 1, 153.887449, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1736, 32.566074, 0, 9999, -9999, 1.0, 100, 1, 89.439426, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1737, 81.938946, 0, 9999, -9999, 1.0, 100, 1, 194.473407, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1738, 47.91826, 0, 9999, -9999, 1.0, 100, 1, 116.049526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1739, 18.885817, 0, 9999, -9999, 1.0, 100, 1, 33.525947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1740, 37.672724, 0, 9999, -9999, 1.0, 100, 1, 66.638954, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1741, 2.695111, 0, 9999, -9999, 1.0, 100, 1, 35.869318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1742, 1.393089, 0, 9999, -9999, 1.0, 100, 1, 25.619162, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1743, 0.154333, 0, 9999, -9999, 1.0, 100, 1, 0.986841, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1744, 0.212264, 0, 9999, -9999, 1.0, 100, 1, 3.775325, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1745, 2.093329, 0, 9999, -9999, 1.0, 100, 1, 31.215591, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1746, 26.502147, 0, 9999, -9999, 1.0, 100, 1, 172.123236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1747, 1.53228, 0, 9999, -9999, 1.0, 100, 1, 25.963706, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1748, 25.422655, 0, 9999, -9999, 1.0, 100, 1, 67.219313, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1749, 47.531509, 0, 9999, -9999, 1.0, 100, 1, 218.703564, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1750, 11.270767, 0, 9999, -9999, 1.0, 100, 1, 22.191848, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1751, 8.41057, 0, 9999, -9999, 1.0, 100, 1, 18.416283, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1752, 52.647161, 0, 9999, -9999, 1.0, 100, 1, 136.190504, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1753, 37.833072, 0, 9999, -9999, 1.0, 100, 1, 79.270006, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1754, 183.717347, 0, 9999, -9999, 1.0, 100, 1, 408.37422, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1755, 24.049325, 0, 9999, -9999, 1.0, 100, 1, 46.277001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1756, 48.363188, 0, 9999, -9999, 1.0, 100, 1, 93.807787, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1757, 104.993994, 0, 9999, -9999, 1.0, 100, 1, 197.08743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1758, 154.052205, 0, 9999, -9999, 1.0, 100, 1, 311.473267, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1759, 88.42199, 0, 9999, -9999, 1.0, 100, 1, 156.546089, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1760, 60.975908, 0, 9999, -9999, 1.0, 100, 1, 114.687411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1761, 28.606966, 0, 9999, -9999, 1.0, 100, 1, 48.443946, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1762, 56.025721, 0, 9999, -9999, 1.0, 100, 1, 107.077622, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1763, 37.224422, 0, 9999, -9999, 1.0, 100, 1, 90.136674, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1764, 9.235744, 0, 9999, -9999, 1.0, 100, 1, 21.994769, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1765, 52.402958, 0, 9999, -9999, 1.0, 100, 1, 112.249863, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1766, 51.104322, 0, 9999, -9999, 1.0, 100, 1, 99.811208, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1767, 52.541385, 0, 9999, -9999, 1.0, 100, 1, 95.5909, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1768, 85.744629, 0, 9999, -9999, 1.0, 100, 1, 159.818572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1769, 112.347054, 0, 9999, -9999, 1.0, 100, 1, 235.581664, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1770, 259.651541, 0, 9999, -9999, 1.0, 100, 1, 479.248156, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1771, 5.109869, 0, 9999, -9999, 1.0, 100, 1, 276.640075, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1772, 126.592412, 0, 9999, -9999, 1.0, 100, 1, 272.215345, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1773, 258.328874, 0, 9999, -9999, 1.0, 100, 1, 533.823159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1774, 33.114072, 0, 9999, -9999, 1.0, 100, 1, 88.57714, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1775, 97.439377, 0, 9999, -9999, 1.0, 100, 1, 197.787397, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1776, 57.66107, 0, 9999, -9999, 1.0, 100, 1, 111.203656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1777, 71.274796, 0, 9999, -9999, 1.0, 100, 1, 199.457983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1778, 44.558231, 0, 9999, -9999, 1.0, 100, 1, 80.070627, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1779, 40.606138, 0, 9999, -9999, 1.0, 100, 1, 78.485044, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1780, 49.274198, 0, 9999, -9999, 1.0, 100, 1, 97.872974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1781, 0.280452, 0, 9999, -9999, 1.0, 100, 1, 7.067063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1782, 0.319467, 0, 9999, -9999, 1.0, 100, 1, 9.94901, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1783, 0.345254, 0, 9999, -9999, 1.0, 100, 1, 10.739092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1784, 66.79638, 0, 9999, -9999, 1.0, 100, 1, 240.920274, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1785, 50.360782, 0, 9999, -9999, 1.0, 100, 1, 275.41262, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1786, 88.657476, 0, 9999, -9999, 1.0, 100, 1, 195.868213, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1787, 65.421739, 0, 9999, -9999, 1.0, 100, 1, 123.060646, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1788, 3.853407, 0, 9999, -9999, 1.0, 100, 1, 9.486282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1789, 9.757968, 0, 9999, -9999, 1.0, 100, 1, 24.05804, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1790, 0.563999, 0, 9999, -9999, 1.0, 100, 1, 1.412167, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1791, 0.465844, 0, 9999, -9999, 1.0, 100, 1, 1.171034, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1792, 3.387142, 0, 9999, -9999, 1.0, 100, 1, 8.914306, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1793, 14.691741, 0, 9999, -9999, 1.0, 100, 1, 41.722817, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1794, 3.706407, 0, 9999, -9999, 1.0, 100, 1, 6.617641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1795, 1.770783, 0, 9999, -9999, 1.0, 100, 1, 3.33586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1796, 0.41599, 0, 9999, -9999, 1.0, 100, 1, 10.434523, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1797, 22.643915, 0, 9999, -9999, 1.0, 100, 1, 63.411765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1798, 4.790401, 0, 9999, -9999, 1.0, 100, 1, 14.835758, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1799, 26.742258, 0, 9999, -9999, 1.0, 100, 1, 51.10225, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1800, 4.742924, 0, 9999, -9999, 1.0, 100, 1, 79.286766, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1801, 7.953416, 0, 9999, -9999, 1.0, 100, 1, 21.006749, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1802, 4.049656, 0, 9999, -9999, 1.0, 100, 1, 11.305192, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1803, 5.140621, 0, 9999, -9999, 1.0, 100, 1, 15.182571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1804, 144.921246, 0, 9999, -9999, 1.0, 100, 1, 399.133201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1805, 8.536324, 0, 9999, -9999, 1.0, 100, 1, 23.20491, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1806, 5.740923, 0, 9999, -9999, 1.0, 100, 1, 21.469357, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1807, 1.470613, 0, 9999, -9999, 1.0, 100, 1, 28.156483, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1808, 70.361515, 0, 9999, -9999, 1.0, 100, 1, 118.262712, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1809, 18.2725, 0, 9999, -9999, 1.0, 100, 1, 33.031228, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1810, 44.141834, 0, 9999, -9999, 1.0, 100, 1, 74.139408, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1811, 2.450386, 0, 9999, -9999, 1.0, 100, 1, 53.408299, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1812, 18.961252, 0, 9999, -9999, 1.0, 100, 1, 47.34526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1813, 69.413673, 0, 9999, -9999, 1.0, 100, 1, 180.894957, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1814, 5.588762, 0, 9999, -9999, 1.0, 100, 1, 62.572642, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1815, 3.471972, 0, 9999, -9999, 1.0, 100, 1, 61.953143, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1816, 1.600858, 0, 9999, -9999, 1.0, 100, 1, 30.445169, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1817, 86.125537, 0, 9999, -9999, 1.0, 100, 1, 280.614897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1818, 75.34571, 0, 9999, -9999, 1.0, 100, 1, 173.515675, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1819, 0.872404, 0, 9999, -9999, 1.0, 100, 1, 1.538348, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1820, 45.88908, 0, 9999, -9999, 1.0, 100, 1, 79.71358, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1821, 103.350239, 0, 9999, -9999, 1.0, 100, 1, 196.67938, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1822, 102.760969, 0, 9999, -9999, 1.0, 100, 1, 170.831584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1823, 75.58801, 0, 9999, -9999, 1.0, 100, 1, 131.456153, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1824, 5.044208, 0, 9999, -9999, 1.0, 100, 1, 56.565054, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1825, 4.036555, 0, 9999, -9999, 1.0, 100, 1, 81.59195, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1826, 34.051376, 0, 9999, -9999, 1.0, 100, 1, 74.101252, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1827, 2.041287, 0, 9999, -9999, 1.0, 100, 1, 30.303552, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1828, 2.020579, 0, 9999, -9999, 1.0, 100, 1, 43.298921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1830, 11.386028, 0, 9999, -9999, 1.0, 100, 1, 27.724768, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1831, 39.153546, 0, 9999, -9999, 1.0, 100, 1, 69.89001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1832, 14.640804, 0, 9999, -9999, 1.0, 100, 1, 26.560625, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1833, 43.988416, 0, 9999, -9999, 1.0, 100, 1, 81.361962, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1834, 49.227473, 0, 9999, -9999, 1.0, 100, 1, 102.529569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1836, 0.415275, 0, 9999, -9999, 1.0, 100, 1, 6.417969, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1837, 0.694236, 0, 9999, -9999, 1.0, 100, 1, 12.629331, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1838, 12.263587, 0, 9999, -9999, 1.0, 100, 1, 25.580913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1839, 94.041912, 0, 9999, -9999, 1.0, 100, 1, 183.749133, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1840, 55.990814, 0, 9999, -9999, 1.0, 100, 1, 132.975197, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1841, 8.567758, 0, 9999, -9999, 1.0, 100, 1, 22.982632, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1842, 3.013346, 0, 9999, -9999, 1.0, 100, 1, 7.468633, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1843, 4.963466, 0, 9999, -9999, 1.0, 100, 1, 19.264686, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1844, 11.851685, 0, 9999, -9999, 1.0, 100, 1, 32.384294, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1845, 8.548534, 0, 9999, -9999, 1.0, 100, 1, 31.436002, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1846, 0.814326, 0, 9999, -9999, 1.0, 100, 1, 3.74984, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1847, 40.448773, 0, 9999, -9999, 1.0, 100, 1, 120.215574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1848, 5.647164, 0, 9999, -9999, 1.0, 100, 1, 9.514696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1849, 22.348436, 0, 9999, -9999, 1.0, 100, 1, 37.619097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1850, 28.851054, 0, 9999, -9999, 1.0, 100, 1, 48.54058, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1851, 4.777507, 0, 9999, -9999, 1.0, 100, 1, 7.956444, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1852, 22.581538, 0, 9999, -9999, 1.0, 100, 1, 37.606916, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1853, 18.287332, 0, 9999, -9999, 1.0, 100, 1, 30.116711, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1854, 0.071349, 0, 9999, -9999, 1.0, 100, 1, 2.241167, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1855, 58.355405, 0, 9999, -9999, 1.0, 100, 1, 121.687485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1856, 32.390166, 0, 9999, -9999, 1.0, 100, 1, 63.654358, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1857, 6.577045, 0, 9999, -9999, 1.0, 100, 1, 41.229597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1858, 2.782594, 0, 9999, -9999, 1.0, 100, 1, 27.374415, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1860, 46.412756, 0, 9999, -9999, 1.0, 100, 1, 84.163604, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1861, 15.17117, 0, 9999, -9999, 1.0, 100, 1, 26.861144, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1862, 17.100554, 0, 9999, -9999, 1.0, 100, 1, 32.512826, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1863, 15.395611, 0, 9999, -9999, 1.0, 100, 1, 30.063729, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1864, 58.28981, 0, 9999, -9999, 1.0, 100, 1, 138.236316, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1865, 29.398244, 0, 9999, -9999, 1.0, 100, 1, 68.097772, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1866, 34.06823, 0, 9999, -9999, 1.0, 100, 1, 98.289141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1867, 1.138849, 0, 9999, -9999, 1.0, 100, 1, 2.041288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1868, 3.659736, 0, 9999, -9999, 1.0, 100, 1, 6.453374, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1869, 1.540924, 0, 9999, -9999, 1.0, 100, 1, 2.759448, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1870, 21.723018, 0, 9999, -9999, 1.0, 100, 1, 54.564665, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1871, 23.760385, 0, 9999, -9999, 1.0, 100, 1, 52.648444, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1872, 0.976431, 0, 9999, -9999, 1.0, 100, 1, 1.683854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1873, 5.09944, 0, 9999, -9999, 1.0, 100, 1, 9.025283, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1874, 2.012083, 0, 9999, -9999, 1.0, 100, 1, 3.554415, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1875, 4.442785, 0, 9999, -9999, 1.0, 100, 1, 7.837576, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1876, 2.799608, 0, 9999, -9999, 1.0, 100, 1, 4.936672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1877, 0.64407, 0, 9999, -9999, 1.0, 100, 1, 1.135717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1878, 4.747047, 0, 9999, -9999, 1.0, 100, 1, 8.374329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1879, 0.985284, 0, 9999, -9999, 1.0, 100, 1, 1.752881, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1880, 21.679451, 0, 9999, -9999, 1.0, 100, 1, 38.46747, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1881, 2.497923, 0, 9999, -9999, 1.0, 100, 1, 4.535799, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1882, 2.775104, 0, 9999, -9999, 1.0, 100, 1, 5.120641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1883, 3.80439, 0, 9999, -9999, 1.0, 100, 1, 6.940957, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1884, 3.216632, 0, 9999, -9999, 1.0, 100, 1, 5.865468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1885, 26.127919, 0, 9999, -9999, 1.0, 100, 1, 47.510175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1886, 2.920583, 0, 9999, -9999, 1.0, 100, 1, 5.255398, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1887, 8.980031, 0, 9999, -9999, 1.0, 100, 1, 16.937671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1888, 2.284432, 0, 9999, -9999, 1.0, 100, 1, 4.141211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1889, 22.755153, 0, 9999, -9999, 1.0, 100, 1, 91.335184, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1890, 11.091793, 0, 9999, -9999, 1.0, 100, 1, 24.842697, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1891, 1.598973, 0, 9999, -9999, 1.0, 100, 1, 30.836318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1892, 2.193637, 0, 9999, -9999, 1.0, 100, 1, 38.14699, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1893, 3.485072, 0, 9999, -9999, 1.0, 100, 1, 46.5682, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1894, 2.083874, 0, 9999, -9999, 1.0, 100, 1, 31.347572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1895, 0.074321, 0, 9999, -9999, 1.0, 100, 1, 0.140628, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1896, 12.343254, 0, 9999, -9999, 1.0, 100, 1, 45.257234, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1897, 4.490861, 0, 9999, -9999, 1.0, 100, 1, 14.824595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1898, 1.288233, 0, 9999, -9999, 1.0, 100, 1, 18.270499, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1899, 2.768066, 0, 9999, -9999, 1.0, 100, 1, 12.000496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1900, 46.855623, 0, 9999, -9999, 1.0, 100, 1, 78.114509, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1901, 79.712379, 0, 9999, -9999, 1.0, 100, 1, 133.539659, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1902, 168.786014, 0, 9999, -9999, 1.0, 100, 1, 281.819662, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1903, 79.080104, 0, 9999, -9999, 1.0, 100, 1, 135.492385, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1904, 46.677656, 0, 9999, -9999, 1.0, 100, 1, 79.184428, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1905, 3.526731, 0, 9999, -9999, 1.0, 100, 1, 9.160607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1906, 21.874104, 0, 9999, -9999, 1.0, 100, 1, 72.356523, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1907, 12.40785, 0, 9999, -9999, 1.0, 100, 1, 28.893637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1908, 29.231842, 0, 9999, -9999, 1.0, 100, 1, 50.477866, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1909, 2.846508, 0, 9999, -9999, 0.999501, 100, 1, 32.874676, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1910, 1.766063, 0, 9999, -9999, 1.0, 100, 1, 20.259486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1911, 0.705955, 0, 9999, -9999, 1.0, 100, 1, 8.189799, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1912, 3.360662, 0, 9999, -9999, 1.0, 100, 1, 101.236915, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1913, 0.362876, 0, 9999, -9999, 1.0, 100, 1, 6.782522, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1914, 0.788819, 0, 9999, -9999, 1.0, 100, 1, 15.944561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1915, 13.727784, 0, 9999, -9999, 1.0, 100, 1, 159.570248, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1916, 10.117207, 0, 9999, -9999, 1.0, 100, 1, 277.793548, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1917, 91.580936, 0, 9999, -9999, 1.0, 100, 1, 186.387377, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1918, 63.811718, 0, 9999, -9999, 1.0, 100, 1, 120.486097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1919, 21.235829, 0, 9999, -9999, 1.0, 100, 1, 61.1613, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1920, 0.597023, 0, 9999, -9999, 1.0, 100, 1, 9.95472, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1921, 10.5814, 0, 9999, -9999, 1.0, 100, 1, 230.400935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1922, 3.31875, 0, 9999, -9999, 1.0, 100, 1, 66.116137, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1923, 1.096816, 0, 9999, -9999, 1.0, 100, 1, 21.836163, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1924, 2.396826, 0, 9999, -9999, 1.0, 100, 1, 36.518326, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1925, 74.732516, 0, 9999, -9999, 1.0, 100, 1, 135.324361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1926, 37.927912, 0, 9999, -9999, 1.0, 100, 1, 96.610178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1927, 21.753349, 0, 9999, -9999, 1.0, 100, 1, 65.668809, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1928, 0.04724, 0, 9999, -9999, 1.0, 100, 1, 1.509884, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1929, 0.552543, 0, 9999, -9999, 1.0, 100, 1, 4.804832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1930, 3.929054, 0, 9999, -9999, 1.0, 100, 1, 11.004973, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1931, 11.492469, 0, 9999, -9999, 1.0, 100, 1, 38.07556, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1932, 10.876649, 0, 9999, -9999, 1.0, 100, 1, 46.722379, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1933, 10.473207, 0, 9999, -9999, 1.0, 100, 1, 44.239188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1934, 117.537767, 0, 9999, -9999, 1.0, 100, 1, 383.418198, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1935, 34.374027, 0, 9999, -9999, 1.0, 100, 1, 62.335643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1936, 2.950282, 0, 9999, -9999, 1.0, 100, 1, 6.00797, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1937, 70.310402, 0, 9999, -9999, 1.0, 100, 1, 134.605733, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1938, 10.589034, 0, 9999, -9999, 1.0, 100, 1, 89.425619, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1939, 34.352206, 0, 9999, -9999, 1.0, 100, 1, 103.003683, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1940, 8.662273, 0, 9999, -9999, 1.0, 100, 1, 18.980829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1941, 28.419023, 0, 9999, -9999, 1.0, 100, 1, 104.495097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1942, 27.473846, 0, 9999, -9999, 1.0, 100, 1, 70.75487, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1943, 2.0646, 0, 9999, -9999, 1.0, 100, 1, 3.652558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1944, 50.503742, 0, 9999, -9999, 1.0, 100, 1, 93.133765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1945, 6.040478, 0, 9999, -9999, 1.0, 100, 1, 10.651443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1946, 0.742589, 0, 9999, -9999, 1.0, 100, 1, 1.309439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1947, 9.923903, 0, 9999, -9999, 1.0, 100, 1, 17.996246, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1948, 31.485384, 0, 9999, -9999, 1.0, 100, 1, 83.075413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1949, 5.724064, 0, 9999, -9999, 1.0, 100, 1, 10.193229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1950, 0.502461, 0, 9999, -9999, 1.0, 100, 1, 0.866493, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1951, 4.204719, 0, 9999, -9999, 1.0, 100, 1, 7.917597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1952, 17.958372, 0, 9999, -9999, 1.0, 100, 1, 67.723951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1953, 5.075202, 0, 9999, -9999, 1.0, 100, 1, 8.928556, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1954, 7.198599, 0, 9999, -9999, 1.0, 100, 1, 12.726892, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1955, 3.726843, 0, 9999, -9999, 1.0, 100, 1, 6.625255, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1956, 21.634918, 0, 9999, -9999, 1.0, 100, 1, 38.724888, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1957, 38.55709, 0, 9999, -9999, 1.0, 100, 1, 131.682322, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1958, 26.153938, 0, 9999, -9999, 1.0, 100, 1, 59.791759, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1959, 5.715564, 0, 9999, -9999, 1.0, 100, 1, 35.986928, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1960, 7.46671, 0, 9999, -9999, 1.0, 100, 1, 13.579895, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1961, 10.128456, 0, 9999, -9999, 1.0, 100, 1, 17.841481, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1962, 1.777909, 0, 9999, -9999, 1.0, 100, 1, 3.150179, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1963, 0.405646, 0, 9999, -9999, 1.0, 100, 1, 0.73138, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1964, 3.914947, 0, 9999, -9999, 1.0, 100, 1, 66.594121, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1965, 1.169719, 0, 9999, -9999, 1.0, 100, 1, 18.785491, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1966, 1.10539, 0, 9999, -9999, 1.0, 100, 1, 2.674199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1967, 58.064298, 0, 9999, -9999, 1.0, 100, 1, 99.074235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1968, 115.522641, 0, 9999, -9999, 1.0, 100, 1, 201.733891, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1969, 8.791022, 0, 9999, -9999, 1.0, 100, 1, 15.048118, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1970, 146.011633, 0, 9999, -9999, 1.0, 100, 1, 236.871781, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1971, 8.074517, 0, 9999, -9999, 1.0, 100, 1, 14.404409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1972, 0.015521, 0, 9999, -9999, 1.0, 100, 1, 0.028378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1973, 0.292438, 0, 9999, -9999, 1.0, 100, 1, 0.534696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1974, 1.504534, 0, 9999, -9999, 1.0, 100, 1, 2.750907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1975, 36.887137, 0, 9999, -9999, 1.0, 100, 1, 81.92918, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1976, 1.406463, 0, 9999, -9999, 1.0, 100, 1, 2.17499, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1977, 122.592738, 0, 9999, -9999, 1.0, 100, 1, 226.383637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1978, 0.706432, 0, 9999, -9999, 1.0, 100, 1, 1.331592, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1979, 7.337064, 0, 9999, -9999, 1.0, 100, 1, 189.722792, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1980, 52.239056, 0, 9999, -9999, 1.0, 100, 1, 100.61941, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1981, 79.320419, 0, 9999, -9999, 1.0, 100, 1, 144.682717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1982, 69.614382, 0, 9999, -9999, 1.0, 100, 1, 134.93778, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1983, 67.761201, 0, 9999, -9999, 1.0, 100, 1, 155.990147, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1984, 43.229883, 0, 9999, -9999, 1.0, 100, 1, 94.470611, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1985, 18.449298, 0, 9999, -9999, 1.0, 100, 1, 41.975835, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1986, 108.814425, 0, 9999, -9999, 1.0, 100, 1, 298.346979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1987, 189.251646, 0, 9999, -9999, 1.0, 100, 1, 393.914067, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1988, 144.661852, 0, 9999, -9999, 1.0, 100, 1, 251.944939, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1989, 6.390172, 0, 9999, -9999, 1.0, 100, 1, 10.378288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1990, 30.763561, 0, 9999, -9999, 1.0, 100, 1, 50.351426, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1991, 399.179592, 0, 9999, -9999, 1.0, 100, 1, 849.576944, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1992, 125.280995, 0, 9999, -9999, 1.0, 100, 1, 233.477991, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1993, 121.464694, 0, 9999, -9999, 1.0, 100, 1, 242.698643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1994, 45.014021, 0, 9999, -9999, 1.0, 100, 1, 255.834576, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1995, 80.531008, 0, 9999, -9999, 1.0, 100, 1, 262.446698, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1996, 20.04469, 0, 9999, -9999, 1.0, 100, 1, 91.306832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1997, 9.226652, 0, 9999, -9999, 1.0, 100, 1, 26.592561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1998, 5.256357, 0, 9999, -9999, 1.0, 100, 1, 12.126511, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1999, 67.284228, 0, 9999, -9999, 1.0, 100, 1, 199.184531, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2000, 253.175263, 0, 9999, -9999, 1.0, 100, 1, 579.835051, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2001, 28.564477, 0, 9999, -9999, 1.0, 100, 1, 122.315703, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2002, 2.736658, 0, 9999, -9999, 1.0, 100, 1, 30.606436, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2003, 12.738107, 0, 9999, -9999, 1.0, 100, 1, 23.645071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2004, 8.692812, 0, 9999, -9999, 1.0, 100, 1, 17.73338, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2005, 28.121382, 0, 9999, -9999, 1.0, 100, 1, 72.071456, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2006, 25.924839, 0, 9999, -9999, 1.0, 100, 1, 59.660888, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2007, 0.938003, 0, 9999, -9999, 1.0, 100, 1, 1.681507, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[2008, 0.065103, 0, 9999, -9999, 1.0, 100, 1, 0.116706, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
])
ppc["branch"] = array([
[586, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[589, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[590, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[593, 112, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[594, 114, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[595, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[598, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[599, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[601, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[602, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[603, 526, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[607, 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[608, 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[609, 529, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[612, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[613, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[614, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[616, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[617, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[618, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[619, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[621, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[623, 139, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[624, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[628, 142, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[629, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[632, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[637, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[638, 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[640, 153, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[641, 155, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[642, 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[643, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[646, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[647, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[650, 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[652, 167, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[655, 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[661, 177, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[663, 178, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[666, 180, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[668, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[670, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[672, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[676, 19, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[681, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[683, 200, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[687, 202, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[689, 204, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[691, 209, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[693, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[694, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[695, 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[696, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[697, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[698, 212, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[702, 215, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[704, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[705, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[707, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[708, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[711, 224, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[713, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[714, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[716, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[717, 227, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[719, 229, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[722, 545, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[724, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[727, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[728, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[730, 547, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[731, 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[732, 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[735, 253, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[737, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[738, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[741, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[742, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[743, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[746, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[747, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[748, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[749, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[750, 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[753, 28, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[758, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[760, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[762, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[763, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[765, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[767, 292, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[769, 293, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[771, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[772, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[774, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[776, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[777, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[778, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[781, 303, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[784, 563, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[785, 501, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[787, 308, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[788, 311, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[789, 565, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[791, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[792, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[795, 319, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[801, 327, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[802, 327, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[805, 328, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[806, 328, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[808, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[809, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[811, 568, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[814, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[816, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[817, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[821, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[822, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[826, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[829, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[830, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[835, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[836, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[837, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[839, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[841, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[843, 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[844, 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[845, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[849, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[850, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[851, 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[853, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[854, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[855, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[856, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[857, 365, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[858, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[859, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[860, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[862, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[863, 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[864, 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[865, 375, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[867, 376, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[869, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[870, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[872, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[873, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[874, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[875, 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[877, 578, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[882, 388, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[883, 388, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[886, 394, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[889, 397, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[890, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[895, 580, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[896, 581, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[898, 403, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[900, 405, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[902, 405, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[903, 406, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[905, 413, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[906, 414, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[907, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[909, 417, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[913, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[915, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[917, 43, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[918, 424, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[920, 428, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[921, 428, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[922, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[923, 432, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[925, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[928, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[931, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[934, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[935, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[936, 445, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[937, 447, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[939, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[940, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[942, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[944, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[945, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[950, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[952, 47, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[958, 478, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[959, 478, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[960, 479, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[963, 481, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[965, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[966, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[967, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[968, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[969, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[971, 51, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[973, 506, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[976, 58, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[977, 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[978, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[981, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[982, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[983, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[984, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[985, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[986, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[987, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[988, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[990, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[993, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[994, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[995, 509, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[997, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[999, 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1000, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1002, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1003, 72, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1007, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1008, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1010, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1011, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1012, 81, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1018, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1023, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1026, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1027, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1028, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1029, 268, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1030, 269, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1031, 498, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1032, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1033, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1034, 4, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1035, 6, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1036, 7, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1037, 8, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1038, 9, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1039, 11, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1040, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1041, 16, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1042, 17, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1044, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1046, 25, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1047, 27, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1048, 28, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1049, 29, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1050, 31, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1051, 33, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1052, 34, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1053, 35, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1054, 36, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1055, 38, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1056, 39, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1057, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1058, 41, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1059, 43, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1060, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1061, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1062, 47, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1063, 48, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1064, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1065, 50, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1066, 51, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1067, 53, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1072, 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1073, 60, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1074, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1075, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1076, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1077, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1078, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1079, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1080, 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1081, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1082, 72, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1083, 73, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1084, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1085, 76, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1086, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1087, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1088, 80, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1089, 81, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1090, 82, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1091, 83, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1092, 84, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1093, 85, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1094, 88, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1095, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1096, 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1097, 91, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1098, 92, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1099, 93, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1101, 98, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1102, 101, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1103, 102, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1104, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1105, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1106, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1107, 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1108, 111, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1109, 112, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1110, 113, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1111, 114, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1112, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1113, 116, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1114, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1115, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1116, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1117, 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1118, 126, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1119, 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1120, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1121, 131, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1122, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1123, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1124, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1125, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1126, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1127, 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1128, 139, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1129, 140, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1130, 141, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1131, 142, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1132, 144, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1133, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1134, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1135, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1136, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1137, 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1138, 150, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1139, 151, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1140, 152, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1141, 153, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1142, 154, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1143, 155, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1144, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1145, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1146, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1147, 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1148, 164, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1149, 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1150, 167, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1151, 168, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1152, 169, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1153, 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1154, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1155, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1156, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1157, 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1158, 175, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1159, 176, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1160, 177, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1161, 178, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1162, 179, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1163, 180, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1164, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1165, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1166, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1167, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1168, 186, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1169, 187, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1170, 188, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1171, 189, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1172, 190, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1173, 192, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1174, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1175, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1176, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1177, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1178, 198, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1179, 199, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1180, 200, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1181, 202, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1182, 203, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1183, 204, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1184, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1185, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1186, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1187, 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1188, 209, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1189, 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1190, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1191, 212, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1192, 213, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1196, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1197, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1198, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1199, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1200, 222, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1204, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1206, 228, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1208, 230, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1211, 237, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1212, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1213, 239, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1214, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1215, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1216, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1217, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1218, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1219, 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1220, 251, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1221, 252, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1222, 253, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1224, 255, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1225, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1226, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1227, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1229, 263, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1230, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1231, 266, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1232, 267, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1233, 268, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1235, 271, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1236, 272, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1237, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1238, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1239, 275, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1240, 276, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1241, 278, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1242, 281, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1243, 282, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1244, 283, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1245, 284, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1246, 285, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1247, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1248, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1249, 288, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1250, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1251, 291, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1252, 292, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1253, 293, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1254, 294, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1255, 295, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1256, 296, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1257, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1258, 298, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1259, 299, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1260, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1261, 302, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1264, 307, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1266, 309, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1267, 311, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1268, 312, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1269, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1270, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1274, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1275, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1276, 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1277, 324, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1278, 325, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1280, 327, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1281, 328, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1282, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1283, 331, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1285, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1286, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1287, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1288, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1289, 340, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1290, 341, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1291, 342, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1292, 343, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1293, 344, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1294, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1295, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1296, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1297, 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1298, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1299, 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1300, 353, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1301, 354, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1302, 355, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1303, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1306, 361, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1307, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1308, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1312, 367, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1316, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1317, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1319, 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1323, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1326, 384, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1327, 385, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1328, 386, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1329, 387, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1331, 390, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1333, 392, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1336, 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1337, 396, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1339, 398, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1340, 399, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1345, 406, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1346, 407, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1348, 410, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1349, 411, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1356, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1357, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1359, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1360, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1361, 424, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1362, 425, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1366, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1367, 430, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1372, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1373, 436, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1374, 437, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1375, 438, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1376, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1377, 440, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1378, 441, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1379, 442, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1380, 443, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1381, 445, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1382, 446, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1383, 447, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1384, 448, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1385, 449, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1386, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1387, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1388, 453, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1389, 454, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1390, 455, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1391, 456, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1392, 457, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1393, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1394, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1395, 460, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1396, 461, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1397, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1398, 463, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1399, 464, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1400, 465, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1401, 466, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1402, 467, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1403, 468, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1404, 469, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1405, 470, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1406, 471, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1407, 472, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1408, 473, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1409, 474, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1410, 475, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1411, 476, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1418, 483, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1419, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1421, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1422, 487, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1423, 488, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1424, 489, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1425, 490, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1426, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1427, 492, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1428, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1429, 494, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1431, 496, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1432, 497, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1433, 498, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1434, 499, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1435, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1436, 501, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1437, 502, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1438, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1439, 504, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1440, 505, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1443, 508, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1444, 509, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1445, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1446, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1447, 512, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1448, 513, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1449, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1450, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1451, 516, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1452, 517, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1453, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1454, 519, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1455, 520, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1456, 521, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1457, 522, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1458, 523, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1459, 524, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1460, 525, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1461, 526, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1462, 527, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1463, 528, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1464, 529, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1465, 530, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1466, 531, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1467, 532, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1468, 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1469, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1470, 535, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1471, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1472, 537, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1473, 538, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1474, 539, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1475, 540, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1476, 541, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1477, 542, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1483, 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1484, 549, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1485, 550, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1486, 551, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1489, 555, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1490, 556, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1491, 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1492, 558, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1493, 559, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1494, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1495, 561, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1497, 563, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1498, 564, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1501, 567, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1503, 569, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1504, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1505, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1506, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1507, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1510, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1511, 577, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1512, 578, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1513, 579, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1518, 584, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1519, 585, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1520, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1521, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1522, 4, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1523, 6, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1524, 7, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1525, 8, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1526, 9, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1527, 11, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1528, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1529, 16, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1530, 17, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1531, 19, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1532, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1534, 25, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1535, 27, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1536, 28, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1537, 29, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1538, 31, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1539, 33, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1540, 34, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1541, 35, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1542, 36, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1543, 38, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1544, 39, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1545, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1546, 41, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1547, 43, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1548, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1549, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1550, 47, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1551, 48, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1552, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1553, 50, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1554, 51, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1555, 53, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1556, 54, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1557, 55, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1558, 57, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1559, 58, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1560, 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1561, 60, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1562, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1563, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1564, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1565, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1566, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1567, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1568, 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1569, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1570, 72, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1571, 73, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1572, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1573, 76, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1574, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1575, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1576, 80, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1577, 81, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1578, 82, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1579, 83, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1580, 84, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1581, 85, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1582, 88, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1583, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1584, 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1585, 91, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1586, 92, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1587, 93, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1588, 97, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1589, 98, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1590, 101, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1591, 102, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1592, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1593, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1594, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1595, 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1596, 111, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1597, 112, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1598, 113, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1599, 114, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1600, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1601, 116, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1602, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1603, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1604, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1605, 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1606, 126, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1607, 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1608, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1609, 131, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1610, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1611, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1612, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1613, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1614, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1615, 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1616, 139, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1617, 140, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1618, 141, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1619, 142, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1620, 144, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1621, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1622, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1623, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1624, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1625, 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1626, 150, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1627, 151, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1628, 152, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1629, 153, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1630, 154, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1631, 155, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1632, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1633, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1634, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1635, 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1636, 164, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1637, 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1638, 167, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1639, 168, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1640, 169, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1641, 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1642, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1643, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1644, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1645, 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1646, 175, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1647, 176, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1648, 177, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1649, 178, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1650, 179, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1651, 180, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1652, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1653, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1654, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1655, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1656, 186, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1657, 187, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1658, 188, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1659, 189, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1660, 190, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1661, 192, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1662, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1663, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1664, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1665, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1666, 198, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1667, 199, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1668, 200, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1669, 202, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1670, 203, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1671, 204, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1672, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1673, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1674, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1675, 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1676, 209, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1677, 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1678, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1679, 212, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1680, 213, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1681, 214, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1682, 215, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1683, 216, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1684, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1685, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1686, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1687, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1688, 222, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1689, 223, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1690, 224, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1691, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1692, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1693, 227, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1694, 228, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1695, 229, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1696, 230, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1697, 234, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1698, 235, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1699, 237, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1700, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1701, 239, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1702, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1703, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1704, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1705, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1706, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1707, 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1708, 251, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1709, 252, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1710, 253, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1711, 254, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1712, 255, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1713, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1714, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1715, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1716, 260, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1717, 263, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1718, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1719, 266, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1720, 267, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1721, 268, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1722, 269, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1723, 271, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1724, 272, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1725, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1726, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1727, 275, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1728, 276, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1729, 278, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1730, 281, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1731, 282, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1732, 283, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1733, 284, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1734, 285, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1735, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1736, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1737, 288, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1738, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1739, 291, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1740, 292, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1741, 293, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1742, 294, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1743, 295, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1744, 296, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1745, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1746, 298, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1747, 299, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1748, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1749, 302, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1750, 303, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1751, 304, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1752, 307, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1753, 308, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1754, 309, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1755, 311, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1756, 312, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1757, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1758, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1759, 317, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1760, 318, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1761, 319, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1762, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1763, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1764, 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1765, 324, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1766, 325, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1767, 326, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1768, 327, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1769, 328, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1770, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1771, 331, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1772, 333, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1773, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1774, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1775, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1776, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1777, 340, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1778, 341, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1779, 342, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1780, 343, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1781, 344, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1782, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1783, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1784, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1785, 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1786, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1787, 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1788, 353, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1789, 354, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1790, 355, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1791, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1792, 357, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1793, 359, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1794, 361, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1795, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1796, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1797, 364, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1798, 365, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1799, 366, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1800, 367, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1801, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1802, 369, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1803, 370, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1804, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1805, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1806, 373, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1807, 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1808, 375, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1809, 376, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1810, 377, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1811, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1812, 379, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1813, 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1814, 384, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1815, 385, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1816, 386, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1817, 387, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1818, 388, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1819, 390, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1820, 391, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1821, 392, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1822, 393, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1823, 394, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1824, 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1825, 396, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1826, 397, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1827, 398, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1828, 399, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1830, 403, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1831, 404, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1832, 405, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1833, 406, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1834, 407, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1836, 410, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1837, 411, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1838, 412, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1839, 413, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1840, 414, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1841, 416, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1842, 417, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1843, 418, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1844, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1845, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1846, 421, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1847, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1848, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1849, 424, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1850, 425, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1851, 426, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1852, 427, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1853, 428, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1854, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1855, 430, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1856, 431, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1857, 432, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1858, 433, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1860, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1861, 436, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1862, 437, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1863, 438, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1864, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1865, 440, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1866, 441, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1867, 442, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1868, 443, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1869, 445, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1870, 446, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1871, 447, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1872, 448, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1873, 449, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1874, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1875, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1876, 453, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1877, 454, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1878, 455, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1879, 456, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1880, 457, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1881, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1882, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1883, 460, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1884, 461, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1885, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1886, 463, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1887, 464, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1888, 465, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1889, 466, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1890, 467, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1891, 468, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1892, 469, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1893, 470, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1894, 471, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1895, 472, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1896, 473, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1897, 474, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1898, 475, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1899, 476, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1900, 477, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1901, 478, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1902, 479, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1903, 480, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1904, 481, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1905, 482, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1906, 483, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1907, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1908, 485, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1909, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1910, 487, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1911, 488, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1912, 489, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1913, 490, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1914, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1915, 492, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1916, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1917, 494, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1918, 495, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1919, 496, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1920, 497, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1921, 498, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1922, 499, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1923, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1924, 501, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1925, 502, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1926, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1927, 504, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1928, 505, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1929, 506, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1930, 507, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1931, 508, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1932, 509, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1933, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1934, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1935, 512, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1936, 513, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1937, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1938, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1939, 516, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1940, 517, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1941, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1942, 519, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1943, 520, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1944, 521, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1945, 522, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1946, 523, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1947, 524, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1948, 525, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1949, 526, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1950, 527, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1951, 528, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1952, 529, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1953, 530, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1954, 531, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1955, 532, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1956, 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1957, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1958, 535, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1959, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1960, 537, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1961, 538, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1962, 539, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1963, 540, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1964, 541, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1965, 542, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1966, 543, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1967, 544, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1968, 545, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1969, 546, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1970, 547, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1971, 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1972, 549, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1973, 550, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1974, 551, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1975, 552, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1976, 553, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1977, 554, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1978, 555, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1979, 556, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1980, 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1981, 558, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1982, 559, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1983, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1984, 561, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1985, 562, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1986, 563, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1987, 564, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1988, 565, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1989, 566, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1990, 567, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1991, 568, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1992, 569, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1993, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1994, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1995, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1996, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1997, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1998, 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1999, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2000, 577, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2001, 578, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2002, 579, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2003, 580, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2004, 581, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2005, 582, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2006, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2007, 584, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[2008, 585, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360 ],
[1, 490, 0, 0.01433884297520661, 0.151691958358336, 991.0, 991.0, 991.0, 0, 2, 1, -360, 43.375 ],
[3, 4, 0, 0.006291637811634348, 0.903417549506624, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 72.681 ],
[491, 6, 0, 0.011200661157024791, 0.118492839955776, 991.0, 991.0, 991.0, 0, 2, 1, -360, 33.882 ],
[7, 5, 0, 0.005794840720221606, 0.20802058859584005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.471 ],
[8, 9, 0, 0.0024379328254847646, 0.350063268897336, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 28.163 ],
[492, 11, 0, 0.018224793388429753, 0.0482004476327704, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.565 ],
[11, 493, 0, 0.030286942148760328, 0.08010209706571599, 495.0, 495.0, 495.0, 0, 1, 1, -360, 45.809 ],
[492, 493, 0, 0.04521652892561983, 0.11958747011094399, 495.0, 495.0, 495.0, 0, 1, 1, -360, 68.39 ],
[494, 14, 0, 0.012990743801652892, 0.137430291356512, 991.0, 991.0, 991.0, 0, 2, 1, -360, 39.297 ],
[13, 15, 0, 0.007681959833795014, 0.27576354266704156, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 44.371 ],
[16, 5, 0, 0.006275623268698061, 0.22527950450957998, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 36.248000000000005 ],
[17, 18, 0, 0.04623522622347646, 0.9335989000302801, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 200.291 ],
[17, 12, 0, 0.0056020313942728535, 0.113118303398186, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.268 ],
[14, 495, 0, 0.0017957024793388433, 0.018996904156819597, 991.0, 991.0, 991.0, 0, 1, 1, -360, 5.432 ],
[494, 19, 0, 0.010246611570247935, 0.10839986031771602, 991.0, 991.0, 991.0, 0, 1, 1, -360, 30.996 ],
[20, 21, 0, 0.005415685595567867, 0.19440984828307922, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 31.281 ],
[20, 22, 0, 0.0049706544321329645, 0.713737278110032, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 57.42100000000001 ],
[497, 23, 0, 0.002190413223140496, 0.005793146490362, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.313 ],
[23, 499, 0, 0.020799669421487598, 0.22004164444829602, 991.0, 991.0, 991.0, 0, 1, 1, -360, 62.919 ],
[25, 26, 0, 0.00141845567867036, 0.050919084651523595, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 8.193 ],
[25, 22, 0, 0.0035578254847645433, 0.0319293051869808, 856.0, 856.0, 856.0, 0, 1, 1, -360, 10.275 ],
[23, 27, 0, 0.027738181818181818, 0.073361203699828, 495.0, 495.0, 495.0, 0, 1, 1, -360, 41.95399999999999 ],
[28, 23, 0, 0.012841652892561981, 0.0339632611780132, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.423 ],
[8, 21, 0, 0.004948753462603878, 0.17764812836304802, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 28.584 ],
[9, 29, 0, 0.002212863573407202, 0.31774552934092004, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 25.563000000000002 ],
[30, 25, 0, 0.019958795013850415, 0.17911796401827998, 856.0, 856.0, 856.0, 0, 1, 1, -360, 57.641000000000005 ],
[31, 32, 0, 0.0299776084949446, 0.605319030583196, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 129.863 ],
[32, 33, 0, 0.016762234533725762, 0.33846927983213604, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 72.61399999999999 ],
[34, 35, 0, 0.001931900826446281, 0.020437759184893597, 991.0, 991.0, 991.0, 0, 2, 1, -360, 5.843999999999999 ],
[35, 36, 0, 0.0008730578512396695, 0.0092361605077588, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.641 ],
[490, 6, 0, 0.049352066115702475, 0.130525028606764, 495.0, 495.0, 495.0, 0, 1, 1, -360, 74.645 ],
[37, 10, 0, 0.02404639889196676, 0.485553838251812, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 104.169 ],
[10, 38, 0, 0.006848799630657894, 0.13829351176534158, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 29.669 ],
[37, 38, 0, 0.01437834718372576, 1.1613317560186958, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 124.574 ],
[39, 40, 0, 0.04521629732222991, 0.913024308337812, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 195.877 ],
[39, 41, 0, 0.017466989843005543, 0.35269996139852006, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 75.667 ],
[42, 41, 0, 0.031145429362880884, 0.6289001042979919, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 134.922 ],
[18, 42, 0, 0.03439750692520776, 0.6945672650962679, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 149.01 ],
[492, 43, 0, 0.01819173553719008, 0.192452068436848, 991.0, 991.0, 991.0, 0, 2, 1, -360, 55.03 ],
[44, 45, 0, 0.02562314049586777, 0.067767398802972, 495.0, 495.0, 495.0, 0, 1, 1, -360, 38.755 ],
[44, 505, 0, 0.006061487603305785, 0.0160312607980052, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.168 ],
[46, 12, 0, 0.0014741170360110802, 0.2116687641962416, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 17.029 ],
[47, 48, 0, 0.005344182825484765, 0.01199019212302604, 428.0, 428.0, 428.0, 0, 1, 1, -360, 7.7170000000000005 ],
[49, 50, 0, 0.0019151662049861494, 0.0171874439892256, 856.0, 856.0, 856.0, 0, 1, 1, -360, 5.531000000000001 ],
[31, 33, 0, 0.013475992613088641, 0.27211225959163604, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 58.378 ],
[31, 51, 0, 0.003518611495844875, 0.5052381383693519, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 40.647 ],
[52, 53, 0, 0.010464421745152355, 1.5025884408875438, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 120.885 ],
[52, 54, 0, 0.0076126500461911354, 0.1537174637168, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 32.978 ],
[506, 55, 0, 0.012634380165289257, 0.133660287181212, 991.0, 991.0, 991.0, 0, 1, 1, -360, 38.219 ],
[506, 507, 0, 0.044157355371900825, 0.11678619613628, 495.0, 495.0, 495.0, 0, 1, 1, -360, 66.788 ],
[57, 506, 0, 0.004687272727272727, 0.049587095736244, 991.0, 991.0, 991.0, 0, 1, 1, -360, 14.179 ],
[57, 58, 0, 0.014436363636363634, 0.0381809096340232, 495.0, 495.0, 495.0, 0, 1, 1, -360, 21.835 ],
[58, 506, 0, 0.019797685950413223, 0.052360391943288, 495.0, 495.0, 495.0, 0, 1, 1, -360, 29.944000000000003 ],
[59, 60, 0, 0.019407548476454296, 0.174170863885556, 856.0, 856.0, 856.0, 0, 1, 1, -360, 56.049 ],
[508, 62, 0, 0.051111404958677685, 0.03379452026753001, 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.653 ],
[30, 61, 0, 0.03143698060941828, 0.28212765137935203, 856.0, 856.0, 856.0, 0, 1, 1, -360, 90.79 ],
[63, 506, 0, 0.027457190082644623, 0.072618044249872, 495.0, 495.0, 495.0, 0, 1, 1, -360, 41.528999999999996 ],
[13, 64, 0, 0.0014816481994459833, 0.2127501654814608, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 17.116 ],
[65, 66, 0, 0.03778185595567867, 0.7629053006222161, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 163.671 ],
[59, 67, 0, 0.0051880193905817175, 0.046559297286324804, 856.0, 856.0, 856.0, 0, 1, 1, -360, 14.982999999999999 ],
[61, 67, 0, 0.012931440443213295, 0.1160517597580644, 856.0, 856.0, 856.0, 0, 1, 1, -360, 37.346 ],
[68, 69, 0, 0.011149584487534626, 0.4002427745096039, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 64.4 ],
[70, 69, 0, 0.009625346260387812, 0.345526355460808, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 55.596000000000004 ],
[71, 72, 0, 0.008878635734072021, 0.318721276477736, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.283 ],
[73, 74, 0, 0.012529547553116345, 0.253001288604392, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 54.278 ],
[37, 75, 0, 0.027459141274238225, 0.5544652029066119, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 118.95299999999999 ],
[72, 75, 0, 0.006688711911357341, 0.240108375006292, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 38.634 ],
[37, 72, 0, 0.036222068328739615, 0.7314094881920841, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 156.914 ],
[76, 77, 0, 0.004683777700831025, 0.6725445900750401, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 54.107 ],
[77, 51, 0, 0.00363183864265928, 0.5214964473447999, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 41.955 ],
[73, 72, 0, 0.025475069252077563, 0.514402082018968, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 110.35799999999999 ],
[18, 40, 0, 0.01302770083102493, 0.26306018504072, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 56.43600000000001 ],
[492, 45, 0, 0.0308703030303719, 0.18370114733484796, 743.0, 743.0, 743.0, 0, 1, 1, -360, 70.03699999999999 ],
[10, 74, 0, 0.030167359187465374, 0.609150547206812, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 130.685 ],
[45, 511, 0, 0.08203371900826446, 0.05424014819960001, 248.0, 248.0, 248.0, 0, 1, 1, -360, 62.038000000000004 ],
[78, 32, 0, 0.013458795013850415, 0.48313777647302397, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 77.738 ],
[79, 80, 0, 0.0038086911357340715, 0.1367226831743568, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 21.999000000000002 ],
[81, 79, 0, 0.010767832409972299, 0.3865388099484561, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 62.195 ],
[34, 82, 0, 0.0015497520661157025, 0.00409874294399768, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.344 ],
[83, 84, 0, 0.00902611570247934, 0.0238720301499152, 495.0, 495.0, 495.0, 0, 1, 1, -360, 13.652000000000001 ],
[83, 499, 0, 0.04179570247933885, 0.0276350398834796, 248.0, 248.0, 248.0, 0, 1, 1, -360, 31.608 ],
[85, 86, 0, 0.00802354570637119, 0.28802563884886, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 46.343999999999994 ],
[87, 86, 0, 0.01904968836565097, 0.683837154069184, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 110.031 ],
[88, 89, 0, 0.00380297520661157, 0.010058007429140002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.752000000000001 ],
[90, 86, 0, 0.012097818559556786, 0.434282055192244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 69.877 ],
[91, 86, 0, 9.26246537396122e-05, 0.013299992817559201, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 1.07 ],
[86, 92, 0, 0.0001852493074792244, 0.0066499964087796005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.07 ],
[86, 93, 0, 0.008152181440443215, 0.292643346635492, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 47.086999999999996 ],
[94, 86, 0, 0.012883829639889197, 0.46249792780547194, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 74.417 ],
[86, 95, 0, 0.010421052631578947, 0.37409026526870803, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 60.192 ],
[513, 517, 0, 0.0008733884297520661, 0.0023099144321748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.321 ],
[97, 66, 0, 0.03812777008310249, 0.34217338998058805, 856.0, 856.0, 856.0, 0, 1, 1, -360, 110.113 ],
[42, 98, 0, 0.003091759002770083, 0.44394630230884, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 35.716 ],
[99, 100, 0, 0.016371537396121884, 0.587698093837988, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 94.56200000000001 ],
[42, 101, 0, 0.008165339335180054, 0.29311568282888, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 47.163000000000004 ],
[102, 42, 0, 0.012403047091412742, 0.44523901189173193, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 71.64 ],
[103, 87, 0, 0.007073060941828254, 0.25390556381756, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 40.854 ],
[104, 103, 0, 0.0028852146814404432, 0.1035721403291428, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.665 ],
[105, 87, 0, 0.006406682825484765, 0.22998422159488002, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 37.005 ],
[106, 107, 0, 0.005714219759923823, 0.11538365264216799, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.754 ],
[108, 107, 0, 0.0025427631578947367, 0.09127896939786201, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.687000000000001 ],
[109, 106, 0, 0.003030470914127424, 0.10878648330773438, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 17.504 ],
[110, 111, 0, 0.019821849030470913, 0.7115558306889919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 114.491 ],
[87, 112, 0, 0.006135907202216068, 0.220264039928212, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.441 ],
[113, 87, 0, 0.003981648199445983, 0.14293141813921081, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 22.998 ],
[87, 85, 0, 0.011046225761772853, 0.3965324494097, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 63.803000000000004 ],
[110, 114, 0, 0.011665339335180056, 0.418757110306188, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 67.37899999999999 ],
[115, 116, 0, 0.007048925619834712, 0.07457124214588401, 991.0, 991.0, 991.0, 0, 1, 1, -360, 21.323 ],
[117, 118, 0, 0.005987534626038782, 0.21493782785077598, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.584 ],
[117, 119, 0, 0.0038738746537396117, 0.5562504472696961, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 44.751000000000005 ],
[117, 120, 0, 0.005886686288088643, 0.8452704781039522, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 68.003 ],
[121, 122, 0, 0.0021170360110803325, 0.0759964075574972, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 12.228 ],
[123, 124, 0, 0.0018386426592797783, 0.0660027680945204, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 10.62 ],
[125, 126, 0, 0.004941135734072022, 0.17737467056702802, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 28.54 ],
[127, 119, 0, 0.0029027008310249305, 0.1041998502705648, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.766 ],
[118, 128, 0, 0.007397160664819945, 0.265539950057812, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 42.726000000000006 ],
[121, 119, 0, 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.743 ],
[530, 527, 0, 0.022726611570247933, 0.060106736329903994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 34.374 ],
[125, 130, 0, 0.002931440443213297, 0.105231531956442, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.932000000000002 ],
[125, 123, 0, 0.0019078081717451524, 0.2739425623421336, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 22.039 ],
[131, 132, 0, 0.0035744459833795014, 0.12831385593973843, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.646 ],
[133, 123, 0, 0.003864439058171745, 0.13872389704704202, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 22.320999999999998 ],
[524, 134, 0, 0.008092231404958678, 0.08560847143881999, 991.0, 991.0, 991.0, 0, 1, 1, -360, 24.479 ],
[135, 136, 0, 0.005242901662049862, 0.1882073282678, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.283 ],
[123, 131, 0, 0.003138331024930748, 0.1126583971045252, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.127 ],
[117, 128, 0, 0.010800034626038782, 0.38769479063117196, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 62.381 ],
[137, 521, 0, 0.013832396694214875, 0.14633421587532003, 991.0, 991.0, 991.0, 0, 2, 1, -360, 41.843 ],
[531, 514, 0, 0.0059504132231404955, 0.035409362037522, 743.0, 743.0, 743.0, 0, 1, 1, -360, 13.5 ],
[139, 521, 0, 0.021257520661157023, 0.05622132386323199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.152 ],
[140, 514, 0, 0.018527603305785127, 0.04900131122836401, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.023000000000003 ],
[522, 141, 0, 0.012168595041322314, 0.032183175718526795, 495.0, 495.0, 495.0, 0, 1, 1, -360, 18.405 ],
[142, 523, 0, 0.007060165289256198, 0.0746901476577608, 991.0, 991.0, 991.0, 0, 2, 1, -360, 21.357 ],
[530, 526, 0, 0.020281652892561983, 0.053640374808152, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.676 ],
[140, 532, 0, 0.004669090909090909, 0.0123486871461184, 495.0, 495.0, 495.0, 0, 1, 1, -360, 7.062 ],
[142, 144, 0, 0.006678126721756199, 0.0397397958689204, 743.0, 743.0, 743.0, 0, 1, 1, -360, 15.151 ],
[140, 522, 0, 0.020450247933884298, 0.05408627047793199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.930999999999997 ],
[145, 146, 0, 0.028527603305785125, 0.07544904460236, 495.0, 495.0, 495.0, 0, 1, 1, -360, 43.148 ],
[147, 523, 0, 0.02461289256198347, 0.0650955220034416, 495.0, 495.0, 495.0, 0, 2, 1, -360, 37.227 ],
[144, 523, 0, 0.008479338842975206, 0.0224259292904064, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.825 ],
[139, 523, 0, 0.029245619834710742, 0.0193370088934308, 248.0, 248.0, 248.0, 0, 1, 1, -360, 22.116999999999997 ],
[140, 141, 0, 0.008362975206611572, 0.022118173847506, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.649000000000001 ],
[528, 526, 0, 0.015389090909090908, 0.0407006573227188, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.276 ],
[528, 148, 0, 0.014306115702479338, 0.0378364333712244, 495.0, 495.0, 495.0, 0, 1, 1, -360, 21.638 ],
[149, 150, 0, 0.013604628099173552, 0.035981157661543604, 495.0, 495.0, 495.0, 0, 1, 1, -360, 20.576999999999998 ],
[145, 528, 0, 0.00320595041322314, 0.0084790121737992, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.849 ],
[530, 151, 0, 0.013144462809917355, 0.0347641247737036, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.881 ],
[524, 152, 0, 0.014598347107438016, 0.03860931919944, 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.08 ],
[149, 525, 0, 0.016897190082644627, 0.17875695122823998, 991.0, 991.0, 991.0, 0, 2, 1, -360, 51.114 ],
[139, 514, 0, 0.007824132231404959, 0.020693056313687997, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.834000000000001 ],
[126, 120, 0, 0.012780297783933518, 0.458781387757004, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.819 ],
[530, 153, 0, 0.02254545454545455, 0.059627617060924, 495.0, 495.0, 495.0, 0, 1, 1, -360, 34.1 ],
[528, 147, 0, 0.15786710743801652, 0.104380679149868, 248.0, 248.0, 248.0, 0, 1, 1, -360, 119.387 ],
[528, 154, 0, 0.006528264462809917, 0.017265779790547203, 495.0, 495.0, 495.0, 0, 2, 1, -360, 9.874 ],
[130, 120, 0, 0.01450502077562327, 0.5206947188067639, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 83.781 ],
[528, 155, 0, 0.16064132231404957, 0.1062149715341, 248.0, 248.0, 248.0, 0, 1, 1, -360, 121.485 ],
[524, 533, 0, 0.004432727272727273, 0.0468942356109744, 991.0, 991.0, 991.0, 0, 1, 1, -360, 13.409 ],
[524, 149, 0, 0.0056413223140495865, 0.05968007537478799, 991.0, 991.0, 991.0, 0, 2, 1, -360, 17.065 ],
[154, 150, 0, 0.007539173553719007, 0.0199394052006688, 495.0, 495.0, 495.0, 0, 2, 1, -360, 11.402999999999999 ],
[157, 110, 0, 0.009962084487534625, 0.357614433044424, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 57.541000000000004 ],
[119, 158, 0, 0.0002490189289012004, 0.08045252664623159, 5134.0, 5134.0, 5134.0, 0, 3, 1, -360, 4.315 ],
[159, 60, 0, 0.010967451523545706, 0.0984261617997728, 856.0, 856.0, 856.0, 0, 1, 1, -360, 31.674 ],
[536, 161, 0, 0.021314380165289255, 0.056371704363524, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.238 ],
[115, 151, 0, 0.00379404958677686, 0.0401376047510724, 991.0, 991.0, 991.0, 0, 1, 1, -360, 11.477 ],
[162, 134, 0, 0.0015910743801652895, 0.016832124393744, 991.0, 991.0, 991.0, 0, 2, 1, -360, 4.813 ],
[115, 526, 0, 0.0037884297520661154, 0.010019537998747198, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.73 ],
[138, 87, 0, 0.0011838642659279777, 0.16999131006813442, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 13.675999999999998 ],
[123, 163, 0, 0.0022778739612188364, 0.08177009602828919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.157 ],
[112, 164, 0, 0.0008672957063711912, 0.12453516639176802, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 10.019 ],
[112, 165, 0, 0.005989439058171744, 0.21500619230086396, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.595 ],
[166, 165, 0, 0.002632790858725762, 0.09451074335350361, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 15.207 ],
[167, 537, 0, 0.00832595041322314, 0.08808100664460242, 991.0, 991.0, 991.0, 0, 2, 1, -360, 25.186 ],
[168, 104, 0, 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.743 ],
[531, 520, 0, 0.016156694214876033, 0.042730794079516396, 495.0, 495.0, 495.0, 0, 1, 1, -360, 24.436999999999998 ],
[139, 520, 0, 0.010682314049586776, 0.0282522993797748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.157 ],
[520, 169, 0, 0.0011328925619834712, 0.0119849761681232, 991.0, 991.0, 991.0, 0, 2, 1, -360, 3.427 ],
[168, 105, 0, 0.007340893351800554, 0.26352009133553606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 42.401 ],
[520, 170, 0, 0.005842644628099174, 0.015452470732151198, 495.0, 495.0, 495.0, 0, 2, 1, -360, 8.837 ],
[171, 89, 0, 0.005505454545454546, 0.058242717567848004, 991.0, 991.0, 991.0, 0, 1, 1, -360, 16.654 ],
[521, 172, 0, 0.006304793388429752, 0.06669899780522001, 991.0, 991.0, 991.0, 0, 1, 1, -360, 19.072 ],
[123, 173, 0, 0.005247403047091413, 0.18836891696656402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.309 ],
[521, 174, 0, 0.013300495867768597, 0.035176796844864404, 495.0, 495.0, 495.0, 0, 1, 1, -360, 20.117 ],
[37, 39, 0, 0.004338873499549862, 0.35044859579205606, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 37.592 ],
[530, 175, 0, 0.013128595041322313, 0.0347221581224188, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.857 ],
[530, 176, 0, 0.005685289256198347, 0.01503630144005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.599 ],
[88, 530, 0, 0.006015867768595041, 0.0159106066755372, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.099 ],
[177, 496, 0, 0.018632066115702478, 0.19711036673178398, 991.0, 991.0, 991.0, 0, 2, 1, -360, 56.361999999999995 ],
[178, 525, 0, 0.03106842975206612, 0.08216895464241199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 46.99100000000001 ],
[179, 493, 0, 0.057079669421487594, 0.15096278779194802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.333 ],
[180, 181, 0, 0.041027438016528923, 0.10850827416682, 495.0, 495.0, 495.0, 0, 1, 1, -360, 62.053999999999995 ],
[182, 180, 0, 0.00866314049586777, 0.09164817200545601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 26.206 ],
[179, 181, 0, 0.01957223140495868, 0.051764115772731996, 495.0, 495.0, 495.0, 0, 1, 1, -360, 29.603 ],
[180, 493, 0, 0.06676561983471074, 0.17657993119175203, 495.0, 495.0, 495.0, 0, 1, 1, -360, 100.98299999999999 ],
[183, 30, 0, 0.0024804362880886427, 0.356166349712776, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 28.654 ],
[183, 21, 0, 0.0025647506925207757, 0.36827307214930394, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 29.628 ],
[538, 185, 0, 0.018631404958677687, 0.0123189607681008, 248.0, 248.0, 248.0, 0, 1, 1, -360, 14.09 ],
[538, 89, 0, 0.014509752066115702, 0.038375005396288, 495.0, 495.0, 495.0, 0, 1, 1, -360, 21.945999999999998 ],
[184, 186, 0, 0.0016554709141274237, 0.059427351084826, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 9.562000000000001 ],
[184, 187, 0, 0.002698753462603878, 0.09687863927102919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 15.588 ],
[520, 172, 0, 0.0034188429752066113, 0.0361682589818792, 991.0, 991.0, 991.0, 0, 2, 1, -360, 10.342 ],
[89, 175, 0, 0.0037309090909090903, 0.0098674088877672, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.643 ],
[185, 89, 0, 0.005812892561983471, 0.0153737832609196, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.792 ],
[89, 188, 0, 0.003108760330578513, 0.008221966434607202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.702 ],
[189, 190, 0, 0.008599492151454294, 0.17364414688031998, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 37.253 ],
[539, 172, 0, 0.0021570247933884296, 0.022819366646419197, 991.0, 991.0, 991.0, 0, 2, 1, -360, 6.525 ],
[504, 192, 0, 0.0003084297520661157, 0.00326290713886456, 991.0, 991.0, 991.0, 0, 2, 1, -360, 0.9329999999999999 ],
[105, 186, 0, 0.003273372576177285, 0.1175060580379876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.907 ],
[105, 187, 0, 0.0021712257617728533, 0.0779416868808324, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 12.540999999999999 ],
[539, 193, 0, 0.005608595041322314, 0.01483346262541, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.482999999999999 ],
[187, 194, 0, 4.8649584487534626e-05, 0.0069856037041576, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.562 ],
[539, 540, 0, 0.004394710743801653, 0.0116230138006708, 495.0, 495.0, 495.0, 0, 1, 1, -360, 6.647 ],
[539, 196, 0, 0.00332297520661157, 0.008788516227194, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.026 ],
[197, 540, 0, 0.004737190082644629, 0.012528794024621601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 7.165 ],
[110, 198, 0, 0.00018724030470914128, 0.02688587333118328, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 2.1630000000000003 ],
[197, 539, 0, 0.009172231404958677, 0.024258473063998802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 13.873 ],
[199, 537, 0, 0.03612826446280991, 0.0238877676441712, 248.0, 248.0, 248.0, 0, 1, 1, -360, 27.322 ],
[134, 526, 0, 0.007771239669421488, 0.020553167475975197, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.754000000000001 ],
[200, 193, 0, 0.0009322314049586776, 0.009862163056380801, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.82 ],
[4, 201, 0, 0.013726108033240996, 0.49273365914097605, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 79.282 ],
[202, 86, 0, 0.00013365650969529087, 0.00479794133417816, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.772 ],
[85, 203, 0, 0.0019011426592797783, 0.2729854600553416, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 21.962 ],
[147, 204, 0, 0.0073874380165289254, 0.0781523963903056, 991.0, 991.0, 991.0, 0, 2, 1, -360, 22.346999999999998 ],
[147, 205, 0, 0.005959669421487603, 0.00394049369636956, 248.0, 248.0, 248.0, 0, 1, 1, -360, 4.507 ],
[123, 206, 0, 0.0005753116343490305, 0.0826091142668064, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 6.646 ],
[537, 207, 0, 0.018456198347107437, 0.048812461297776, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.915 ],
[165, 208, 0, 0.00414612188365651, 0.14883562055771601, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 23.948 ],
[4, 94, 0, 0.013687673130193905, 0.49135394025941603, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 79.06 ],
[4, 2, 0, 5.2054478301015697e-05, 0.016817654469309, 5134.0, 5134.0, 5134.0, 0, 3, 1, -360, 0.902 ],
[209, 4, 0, 0.0022369286703601107, 0.32120104149338397, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 25.840999999999998 ],
[119, 163, 0, 0.003535145429362881, 0.12690306230914922, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.419 ],
[210, 3, 0, 0.0003150969529085873, 0.011311208844832242, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.82 ],
[99, 211, 0, 0.0035045013850415513, 0.1258030161741948, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.242 ],
[99, 69, 0, 0.021717970914127423, 0.7796219621557, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 125.443 ],
[212, 99, 0, 0.008453774238227147, 0.30346978938770003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 48.82899999999999 ],
[213, 214, 0, 0.01490115702479339, 0.15764073118032798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 45.076 ],
[510, 215, 0, 0.002174710743801653, 0.09202587186721281, 1981.0, 1981.0, 1981.0, 0, 4, 1, -360, 13.157 ],
[128, 69, 0, 0.010711651662049862, 1.538088234801848, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 123.741 ],
[216, 69, 0, 0.009628462603878117, 1.3825528982351443, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 111.228 ],
[217, 98, 0, 0.0012787396121883656, 0.045903620070299994, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 7.386 ],
[504, 218, 0, 0.027480991735537193, 0.072680994226412, 495.0, 495.0, 495.0, 0, 1, 1, -360, 41.565 ],
[177, 504, 0, 0.07054809917355372, 0.18658373169634002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 106.704 ],
[219, 209, 0, 0.003938798476454294, 0.5655728721401839, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 45.501000000000005 ],
[219, 220, 0, 0.0013026315789473684, 0.1870451326342096, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 15.048 ],
[94, 95, 0, 0.01070740997229917, 0.38436979242743197, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 61.846000000000004 ],
[159, 221, 0, 0.009937153739612188, 0.356719480257712, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 57.397 ],
[34, 161, 0, 0.010965289256198347, 0.116002818645824, 991.0, 991.0, 991.0, 0, 2, 1, -360, 33.17 ],
[222, 221, 0, 0.0046457756232686975, 0.16677196601221997, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 26.834 ],
[211, 52, 0, 0.05267313019390582, 0.472709090515552, 856.0, 856.0, 856.0, 0, 1, 1, -360, 152.12 ],
[215, 223, 0, 0.04873190082644628, 0.128884831985184, 495.0, 495.0, 495.0, 0, 1, 1, -360, 73.707 ],
[224, 215, 0, 0.019086280991735535, 0.050478887076288004, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.868000000000002 ],
[225, 224, 0, 0.04200925619834711, 0.11110496071615601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 63.538999999999994 ],
[224, 223, 0, 0.031061818181818183, 0.082151468537468, 495.0, 495.0, 495.0, 0, 1, 1, -360, 46.981 ],
[226, 6, 0, 0.06420099173553719, 0.0424492677936932, 248.0, 248.0, 248.0, 0, 1, 1, -360, 48.552 ],
[7, 3, 0, 0.009332929362880887, 0.335029305054692, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 53.907 ],
[216, 227, 0, 0.01989941135734072, 0.7143401282507, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 114.939 ],
[228, 229, 0, 0.010545454545454545, 0.027890337012274, 495.0, 495.0, 495.0, 0, 1, 1, -360, 15.95 ],
[227, 230, 0, 0.003993074792243767, 0.573366419334696, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 46.128 ],
[231, 53, 0, 0.007193213296398893, 1.0328749562310842, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 83.096 ],
[544, 545, 0, 0.013061818181818181, 0.034545548464856, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.756 ],
[234, 235, 0, 0.04608859504132231, 0.121893887321888, 495.0, 495.0, 495.0, 0, 1, 1, -360, 69.709 ],
[546, 214, 0, 0.057025454545454546, 0.15081940173295602, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.251 ],
[233, 227, 0, 0.0029001038781163438, 0.1041066260218888, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.750999999999998 ],
[237, 238, 0, 0.026324628099173554, 0.06962267451304, 495.0, 495.0, 495.0, 0, 1, 1, -360, 39.816 ],
[212, 100, 0, 0.007955505540166205, 0.285583163531816, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 45.951 ],
[519, 239, 0, 0.01740429752066116, 0.046030422038308406, 495.0, 495.0, 495.0, 0, 1, 1, -360, 26.324 ],
[238, 519, 0, 0.015166280991735538, 0.040111375593995205, 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.939 ],
[213, 240, 0, 0.01665388429752066, 0.04404574915373599, 1200.0, 1200.0, 1200.0, 0, 1, 1, -360, 25.189 ],
[241, 242, 0, 0.009862015235457064, 0.3540221919932281, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 56.963 ],
[70, 241, 0, 0.003819858033240997, 0.5484941897752321, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 44.126999999999995 ],
[509, 213, 0, 0.011363636363636364, 0.120216969880216, 991.0, 991.0, 991.0, 0, 2, 1, -360, 34.375 ],
[68, 243, 0, 0.003611668975069252, 0.1296500701715312, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.861 ],
[243, 244, 0, 0.0007699099722991691, 0.027637882270859202, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 4.447 ],
[68, 244, 0, 0.004104051246537396, 0.147325387728876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 23.705 ],
[544, 547, 0, 0.02418776859504132, 0.255884661882476, 991.0, 991.0, 991.0, 0, 1, 1, -360, 73.168 ],
[245, 227, 0, 0.012676419667590028, 0.45505241780707606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.219 ],
[246, 208, 0, 0.0010155817174515235, 0.0364568961999408, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 5.8660000000000005 ],
[112, 208, 0, 0.0017927631578947367, 0.0643558063672372, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 10.355 ],
[165, 247, 0, 0.0002113919667590028, 0.0075884538459086, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.2209999999999999 ],
[537, 549, 0, 0.00032066115702479337, 0.00084807607842936, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.485 ],
[537, 550, 0, 0.00032198347107438016, 0.0008515732993697601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.48700000000000004 ],
[537, 551, 0, 0.0002651239669421488, 0.0007011927988648, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.401 ],
[110, 251, 0, 0.00023857340720221602, 0.008564200982522441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.3780000000000001 ],
[510, 252, 0, 0.08467702479338843, 0.055987884365424005, 248.0, 248.0, 248.0, 0, 1, 1, -360, 64.03699999999999 ],
[529, 253, 0, 0.04859504132231405, 0.12852286961777998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 73.5 ],
[237, 239, 0, 0.03309421487603306, 0.08752669712542799, 495.0, 495.0, 495.0, 0, 1, 1, -360, 50.055 ],
[254, 238, 0, 0.07815008264462811, 0.05167231372274401, 248.0, 248.0, 248.0, 0, 1, 1, -360, 59.101000000000006 ],
[69, 255, 0, 0.0009369806094182826, 0.134541235754472, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 10.824000000000002 ],
[510, 225, 0, 0.021953719008264466, 0.232250442756508, 991.0, 991.0, 991.0, 0, 1, 1, -360, 66.41 ],
[256, 257, 0, 0.010125619834710746, 0.0267799693631888, 495.0, 495.0, 495.0, 0, 1, 1, -360, 15.315 ],
[258, 190, 0, 0.011717451523545707, 0.10515695255750121, 856.0, 856.0, 856.0, 0, 1, 1, -360, 33.84 ],
[258, 259, 0, 0.015782548476454293, 0.1416387085570408, 856.0, 856.0, 856.0, 0, 1, 1, -360, 45.58 ],
[260, 261, 0, 0.006791031855955679, 0.9751256416231477, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 78.45 ],
[554, 553, 0, 0.17583338842975205, 0.11625986438453201, 248.0, 248.0, 248.0, 0, 1, 1, -360, 132.974 ],
[515, 263, 0, 0.006987107438016529, 0.0739172618295936, 991.0, 991.0, 991.0, 0, 2, 1, -360, 21.136 ],
[14, 264, 0, 0.01700694214876033, 0.17991802858084, 991.0, 991.0, 991.0, 0, 1, 1, -360, 51.446000000000005 ],
[116, 555, 0, 0.0009768595041322315, 0.0103342878835768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.955 ],
[151, 116, 0, 0.007244958677685951, 0.0191612735410668, 495.0, 495.0, 495.0, 0, 1, 1, -360, 10.958 ],
[111, 114, 0, 0.008806613573407202, 0.3161358573133961, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.867 ],
[77, 111, 0, 0.00288452216066482, 0.41418912211817605, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 33.321999999999996 ],
[266, 525, 0, 0.01042909090909091, 0.027582581569373602, 495.0, 495.0, 495.0, 0, 1, 1, -360, 15.774000000000001 ],
[267, 120, 0, 0.013136945983379503, 0.471584184581432, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 75.87899999999999 ],
[268, 269, 0, 0.0010327272727272726, 0.0027313295556817604, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.5619999999999998 ],
[556, 271, 0, 0.052289586776859506, 0.0345735262323792, 248.0, 248.0, 248.0, 0, 1, 1, -360, 39.544000000000004 ],
[556, 272, 0, 0.04685355371900827, 0.030979257409249603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 35.433 ],
[529, 273, 0, 0.0034604958677685953, 0.009152227205140799, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.234 ],
[128, 274, 0, 0.0029350761772853184, 0.1053620459045884, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.953 ],
[34, 275, 0, 0.0008290909090909092, 0.00054818938265696, 248.0, 248.0, 248.0, 0, 1, 1, -360, 0.627 ],
[503, 276, 0, 0.006707438016528925, 0.07095861291266, 991.0, 991.0, 991.0, 0, 2, 1, -360, 20.29 ],
[503, 504, 0, 0.06432727272727272, 0.680524223098808, 991.0, 991.0, 991.0, 0, 2, 1, -360, 194.59 ],
[177, 218, 0, 0.04330380165289256, 0.114528740018308, 495.0, 495.0, 495.0, 0, 1, 1, -360, 65.497 ],
[277, 278, 0, 0.007191135734072023, 1.032576638635032, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 83.072 ],
[557, 558, 0, 0.04341289256198347, 0.258338836678648, 743.0, 743.0, 743.0, 0, 1, 1, -360, 98.493 ],
[557, 559, 0, 0.03415867768595042, 0.09034195998366001, 495.0, 495.0, 495.0, 0, 1, 1, -360, 51.665 ],
[559, 558, 0, 0.04474314049586777, 0.11833546501370001, 495.0, 495.0, 495.0, 0, 1, 1, -360, 67.67399999999999 ],
[277, 78, 0, 0.03585768698060942, 0.32180078416049196, 856.0, 856.0, 856.0, 0, 1, 1, -360, 103.557 ],
[277, 279, 0, 0.021390927977839334, 0.191970480441328, 856.0, 856.0, 856.0, 0, 1, 1, -360, 61.777 ],
[78, 279, 0, 0.015811980609418283, 0.1419028439283376, 856.0, 856.0, 856.0, 0, 1, 1, -360, 45.665 ],
[281, 282, 0, 0.0023178670360110803, 0.08320574945862161, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.388 ],
[283, 161, 0, 0.036741157024793386, 0.09717203248350399, 495.0, 495.0, 495.0, 0, 2, 1, -360, 55.571000000000005 ],
[268, 161, 0, 0.018883636363636366, 0.199771751868832, 991.0, 991.0, 991.0, 0, 2, 1, -360, 57.123000000000005 ],
[256, 284, 0, 0.010755371900826446, 0.113782083346976, 991.0, 991.0, 991.0, 0, 2, 1, -360, 32.535 ],
[515, 516, 0, 0.04071140495867769, 0.107672438361532, 495.0, 495.0, 495.0, 0, 1, 1, -360, 61.576 ],
[263, 516, 0, 0.0030355371900826445, 0.128452925198488, 1981.0, 1981.0, 1981.0, 0, 2, 1, -360, 18.365 ],
[516, 285, 0, 0.006908429752066116, 0.018271230811372, 495.0, 495.0, 495.0, 0, 1, 1, -360, 10.449000000000002 ],
[63, 286, 0, 0.019088925619834708, 0.050485881518556, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.872 ],
[287, 516, 0, 0.01732892561983471, 0.011457770111127998, 248.0, 248.0, 248.0, 0, 1, 1, -360, 13.105 ],
[8, 102, 0, 0.015100069252077563, 0.542055501663692, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 87.21799999999999 ],
[8, 101, 0, 0.019246883656509697, 0.69091598202144, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 111.17 ],
[80, 288, 0, 0.007984072022160666, 0.2866086302684072, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 46.11600000000001 ],
[80, 289, 0, 0.0003782317636201524, 0.122198345223416, 5134.0, 5134.0, 5134.0, 0, 4, 1, -360, 6.553999999999999 ],
[276, 560, 0, 0.01778314049586777, 0.047032375838192794, 495.0, 495.0, 495.0, 0, 2, 1, -360, 26.897 ],
[37, 290, 0, 0.005629501385041551, 0.4546919507138321, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 48.773999999999994 ],
[290, 74, 0, 0.02071595106187673, 1.673216783321968, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 179.483 ],
[512, 291, 0, 0.0053299173553719, 0.056385693247479204, 991.0, 991.0, 991.0, 0, 2, 1, -360, 16.123 ],
[78, 292, 0, 0.0058149815327908595, 0.469673087481408, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 50.381 ],
[199, 548, 0, 0.0015530578512396695, 0.00410748599634868, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.349 ],
[491, 293, 0, 0.014176528925619833, 0.009373426429729999, 248.0, 248.0, 248.0, 0, 1, 1, -360, 10.720999999999998 ],
[4, 294, 0, 9.669321329639889e-05, 0.013884198109531681, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 1.117 ],
[490, 541, 0, 0.050580495867768596, 0.133773946861896, 495.0, 495.0, 495.0, 0, 1, 1, -360, 76.503 ],
[491, 295, 0, 0.010613553719008264, 0.028070443890777202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.053 ],
[491, 296, 0, 0.004400661157024794, 0.0116387512948784, 495.0, 495.0, 495.0, 0, 1, 1, -360, 6.656000000000001 ],
[295, 297, 0, 0.020297520661157024, 0.053682341459340005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.7 ],
[508, 161, 0, 0.023239669421487603, 0.061463658055360006, 495.0, 495.0, 495.0, 0, 1, 1, -360, 35.15 ],
[117, 123, 0, 0.005876211911357341, 0.21094161505628, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.941 ],
[133, 117, 0, 0.004469182825484764, 0.0401081792747688, 856.0, 856.0, 856.0, 0, 1, 1, -360, 12.907 ],
[71, 74, 0, 0.03904524469065097, 0.7884161162841721, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 169.144 ],
[74, 278, 0, 0.0077122576177285325, 1.10740463560792, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 89.09200000000001 ],
[298, 515, 0, 0.021701157024793388, 0.05739464148919599, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.823 ],
[5, 299, 0, 0.0016232686980609415, 0.058271370400665996, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 9.376 ],
[32, 292, 0, 0.009679362880886427, 0.34746541983297996, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 55.908 ],
[5, 29, 0, 0.00743395083102493, 1.0674425076571843, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 85.87700000000001 ],
[503, 560, 0, 0.015140495867768593, 0.160172719142436, 991.0, 991.0, 991.0, 0, 1, 1, -360, 45.8 ],
[300, 301, 0, 0.004892053324099723, 0.7024509290644521, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 56.513000000000005 ],
[51, 300, 0, 0.002573493767313019, 0.3695284920307039, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 29.729 ],
[244, 302, 0, 0.007714508310249307, 1.107727813004004, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 89.118 ],
[31, 302, 0, 0.004369113573407203, 0.6273619041941161, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 50.472 ],
[51, 282, 0, 0.006288434903047093, 0.9029576432132521, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 72.64399999999999 ],
[303, 304, 0, 8.795013850415512e-05, 0.000789298639172312, 856.0, 856.0, 856.0, 0, 1, 1, -360, 0.254 ],
[305, 304, 0, 0.003881117266849031, 0.0783689646873844, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 16.813 ],
[305, 259, 0, 0.0025625, 0.36794989475177603, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 29.601999999999997 ],
[306, 307, 0, 0.03223268698060942, 0.289268628831688, 856.0, 856.0, 856.0, 0, 1, 1, -360, 93.088 ],
[305, 308, 0, 0.0024272853185595567, 0.0217833994511184, 856.0, 856.0, 856.0, 0, 1, 1, -360, 7.01 ],
[305, 309, 0, 0.011014773776523545, 0.22241441259921202, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 47.716 ],
[310, 309, 0, 0.009565962603878117, 0.343394627639832, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 55.253 ],
[306, 309, 0, 0.035333795013850415, 0.31709917455019604, 856.0, 856.0, 856.0, 0, 1, 1, -360, 102.044 ],
[311, 280, 0, 0.003433691135734072, 0.1232611016590444, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 19.833 ],
[280, 278, 0, 0.009749769159764544, 0.7874838737974121, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 84.47200000000001 ],
[311, 32, 0, 0.01205909510619806, 0.9740069506375919, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 104.48 ],
[13, 312, 0, 0.0043324965373961214, 0.622104056565324, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 50.049 ],
[313, 314, 0, 0.006092624653739613, 0.218710302449316, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.191 ],
[312, 313, 0, 0.00893957756232687, 0.32090893884734, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.635 ],
[547, 566, 0, 0.027035702479338848, 0.286013220297816, 991.0, 991.0, 991.0, 0, 1, 1, -360, 81.783 ],
[245, 315, 0, 0.014162569252077564, 0.508401547875772, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 81.803 ],
[312, 316, 0, 8.803670360110802e-05, 0.01264120812658816, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 1.0170000000000001 ],
[312, 314, 0, 0.005339854570637119, 0.191687700220296, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.843000000000004 ],
[554, 546, 0, 0.08174743801652892, 0.21620344446439202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 123.64299999999999 ],
[262, 216, 0, 0.042641966759002774, 0.38268554099981195, 856.0, 856.0, 856.0, 0, 1, 1, -360, 123.15 ],
[317, 233, 0, 0.005647276084951523, 0.114031901035644, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.464000000000002 ],
[318, 317, 0, 0.008311634349030471, 0.16783161497270002, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 36.006 ],
[231, 52, 0, 0.035263677285318554, 1.2658796434850879, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 203.683 ],
[319, 567, 0, 0.006089586776859504, 0.0644223069721, 991.0, 991.0, 991.0, 0, 1, 1, -360, 18.421 ],
[557, 321, 0, 0.010004628099173555, 0.10583989458750401, 991.0, 991.0, 991.0, 0, 2, 1, -360, 30.264 ],
[277, 65, 0, 0.009430170821779778, 0.7616700793261759, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 81.703 ],
[322, 288, 0, 0.006545013850415513, 0.528637424797136, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 56.706 ],
[322, 323, 0, 0.0018503000923372577, 0.14944779312484, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 16.031 ],
[277, 324, 0, 0.019719529085872576, 0.39818407235049996, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 85.425 ],
[324, 325, 0, 0.01103508771932133, 0.22282459929396403, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 47.803999999999995 ],
[277, 325, 0, 0.008665743305609418, 0.174981914850048, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 37.54 ],
[326, 327, 0, 0.007654214876033058, 0.0202436634226288, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.577 ],
[328, 326, 0, 0.10300958677685952, 0.068109252150368, 248.0, 248.0, 248.0, 0, 1, 1, -360, 77.90100000000001 ],
[328, 327, 0, 0.09827173553719008, 0.064976616491468, 248.0, 248.0, 248.0, 0, 1, 1, -360, 74.318 ],
[326, 329, 0, 0.028062148760330575, 0.07421802283046801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 42.443999999999996 ],
[568, 329, 0, 0.05699900826446282, 0.15074945731414802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.211 ],
[568, 326, 0, 0.03218644628099173, 0.08512585494846397, 495.0, 495.0, 495.0, 0, 1, 1, -360, 48.681999999999995 ],
[332, 78, 0, 0.006471029547541551, 0.522661750455416, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 56.065 ],
[333, 306, 0, 0.008580159279778392, 0.308006702824228, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 49.559 ],
[332, 333, 0, 0.007504674515235457, 0.26939943395502003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 43.347 ],
[332, 334, 0, 0.017124653739612188, 0.15368328149175597, 856.0, 856.0, 856.0, 0, 1, 1, -360, 49.456 ],
[66, 334, 0, 0.030625, 0.27484062260471603, 856.0, 856.0, 856.0, 0, 1, 1, -360, 88.445 ],
[330, 335, 0, 0.00550536703601108, 0.790516769355108, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 63.598 ],
[336, 66, 0, 0.015054362880886425, 0.1351036887216764, 856.0, 856.0, 856.0, 0, 1, 1, -360, 43.477 ],
[330, 336, 0, 0.039036357340720224, 0.350327404269788, 856.0, 856.0, 856.0, 0, 1, 1, -360, 112.73700000000001 ],
[68, 70, 0, 0.016314058171745152, 0.14640868261713597, 856.0, 856.0, 856.0, 0, 1, 1, -360, 47.115 ],
[509, 337, 0, 0.03494082644628099, 0.09241056617056001, 495.0, 495.0, 495.0, 0, 1, 1, -360, 52.848 ],
[324, 288, 0, 0.012627423822714683, 0.11332339674541761, 856.0, 856.0, 856.0, 0, 1, 1, -360, 36.468 ],
[338, 559, 0, 0.009228099173553718, 0.097624922595552, 991.0, 991.0, 991.0, 0, 2, 1, -360, 27.915 ],
[339, 559, 0, 0.03560595041322315, 0.023542417076125203, 248.0, 248.0, 248.0, 0, 1, 1, -360, 26.927 ],
[339, 340, 0, 0.08711537190082644, 0.23040041287850396, 495.0, 495.0, 495.0, 0, 1, 1, -360, 131.762 ],
[559, 340, 0, 0.20983272727272728, 0.138740000599684, 248.0, 248.0, 248.0, 0, 1, 1, -360, 158.686 ],
[341, 292, 0, 0.0009329409048961218, 0.07535316024134399, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 8.083 ],
[557, 342, 0, 0.006019834710743802, 0.0636843933534336, 991.0, 991.0, 991.0, 0, 2, 1, -360, 18.21 ],
[558, 343, 0, 0.010650247933884296, 0.11266996708783199, 991.0, 991.0, 991.0, 0, 1, 1, -360, 32.217 ],
[502, 340, 0, 0.021737520661157025, 0.22996326026071198, 991.0, 991.0, 991.0, 0, 2, 1, -360, 65.756 ],
[72, 32, 0, 0.00675502077562327, 0.969954803293024, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 78.03399999999999 ],
[344, 345, 0, 0.0005762927054480609, 0.04654686738645321, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 4.993 ],
[346, 47, 0, 0.0011340027700831024, 0.04070792194158799, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 6.55 ],
[46, 47, 0, 0.0008975069252077563, 0.0322183003580208, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 5.184 ],
[346, 345, 0, 0.0007217797783933517, 0.025910126194627202, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 4.169 ],
[347, 328, 0, 0.029905454545454544, 0.07909314882361201, 495.0, 495.0, 495.0, 0, 1, 1, -360, 45.232 ],
[347, 348, 0, 0.04883438016528925, 0.129155866607944, 495.0, 495.0, 495.0, 0, 1, 1, -360, 73.862 ],
[571, 348, 0, 0.041548429752066116, 0.10988617921762801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 62.842 ],
[347, 572, 0, 0.016052231404958678, 0.04245451362512801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 24.279 ],
[571, 570, 0, 0.17379041322314048, 0.11490906279551602, 248.0, 248.0, 248.0, 0, 1, 1, -360, 131.429 ],
[14, 350, 0, 0.02166743801652892, 0.05730546235524, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.772 ],
[350, 573, 0, 0.026277685950413226, 0.06949852316919598, 495.0, 495.0, 495.0, 0, 1, 1, -360, 39.745 ],
[15, 351, 0, 0.02639265927977839, 0.236857956201204, 856.0, 856.0, 856.0, 0, 1, 1, -360, 76.222 ],
[352, 15, 0, 0.0015260560941828254, 0.219126704094076, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 17.629 ],
[15, 335, 0, 0.0035338758079432133, 1.1417173740880242, 5134.0, 5134.0, 5134.0, 0, 1, 1, -360, 61.235 ],
[232, 227, 0, 5.5747922437673134e-05, 0.000500303468136644, 1200.0, 1200.0, 1200.0, 0, 1, 1, -360, 0.161 ],
[565, 544, 0, 0.0394803305785124, 0.10441652566461601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 59.714 ],
[235, 567, 0, 0.02391404958677686, 0.25298896294275997, 991.0, 991.0, 991.0, 0, 1, 1, -360, 72.34 ],
[567, 286, 0, 0.008068760330578512, 0.34144067500694797, 1981.0, 1981.0, 1981.0, 0, 1, 1, -360, 48.816 ],
[353, 519, 0, 0.007621818181818182, 0.080631926038356, 991.0, 991.0, 991.0, 0, 1, 1, -360, 23.055999999999997 ],
[354, 353, 0, 0.0008436363636363636, 0.00892490784392768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.552 ],
[355, 354, 0, 0.0068502479338842966, 0.0181173530898976, 495.0, 495.0, 495.0, 0, 1, 1, -360, 10.360999999999999 ],
[354, 356, 0, 0.01855404958677686, 0.049071255647172, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.063000000000002 ],
[357, 358, 0, 0.0034823407202216067, 0.5000300103406239, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 40.228 ],
[574, 359, 0, 0.013352066115702478, 0.0353131884615884, 495.0, 495.0, 495.0, 0, 1, 1, -360, 20.195 ],
[235, 575, 0, 0.007459504132231404, 0.0789147905557, 991.0, 991.0, 991.0, 0, 1, 1, -360, 22.565 ],
[167, 361, 0, 0.000616198347107438, 0.0065188198358579995, 991.0, 991.0, 991.0, 0, 1, 1, -360, 1.864 ],
[528, 362, 0, 0.0011960330578512398, 0.012652945368078402, 991.0, 991.0, 991.0, 0, 1, 1, -360, 3.6180000000000003 ],
[363, 344, 0, 0.0002662742382271468, 0.009558592968871479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.538 ],
[259, 364, 0, 0.013069713758102496, 0.26390852570525997, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 56.618 ],
[54, 56, 0, 0.007723337950138504, 0.0693122289241068, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.305 ],
[365, 364, 0, 0.0049974607571537395, 0.10091058802821559, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 21.649 ],
[231, 366, 0, 0.0013273891966759002, 0.0476500209962672, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 7.667000000000001 ],
[30, 367, 0, 0.01126108033240997, 0.1010613005635992, 856.0, 856.0, 856.0, 0, 1, 1, -360, 32.522 ],
[61, 367, 0, 0.020337603878116343, 0.18251754162067196, 856.0, 856.0, 856.0, 0, 1, 1, -360, 58.735 ],
[254, 368, 0, 0.0004297520661157025, 0.00454638722456732, 991.0, 991.0, 991.0, 0, 1, 1, -360, 1.3 ],
[254, 369, 0, 0.00015999999999999999, 0.00169265493591832, 991.0, 991.0, 991.0, 0, 2, 1, -360, 0.484 ],
[254, 370, 0, 0.0003669421487603306, 0.0038819152455960805, 991.0, 991.0, 991.0, 0, 2, 1, -360, 1.11 ],
[99, 358, 0, 0.0020184383656509696, 0.28982797432374396, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 23.316999999999997 ],
[354, 519, 0, 0.006762644628099174, 0.07154264880985199, 991.0, 991.0, 991.0, 0, 1, 1, -360, 20.457 ],
[571, 371, 0, 0.023726942148760328, 0.06275238397221199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 35.887 ],
[207, 372, 0, 0.002329256198347108, 0.006160354689297601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.523 ],
[57, 373, 0, 0.0017725619834710745, 0.0046880246727212796, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.681 ],
[209, 374, 0, 0.0010122922437673131, 0.0363388121515216, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 5.847 ],
[375, 376, 0, 0.0045364727608518006, 0.0916021467933684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 19.652 ],
[376, 377, 0, 0.0030886426592797783, 0.062367022394423606, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 13.38 ],
[16, 49, 0, 0.002266101108033241, 0.32538991773524, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 26.178 ],
[318, 377, 0, 0.004755078485685596, 0.0960163149704152, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 20.599 ],
[378, 297, 0, 0.01753917355371901, 0.046387138574374404, 495.0, 495.0, 495.0, 0, 1, 1, -360, 26.528000000000002 ],
[562, 379, 0, 0.01802314049586777, 0.047667121439141605, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.26 ],
[576, 563, 0, 0.001808264462809917, 0.004782449638150801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.735 ],
[576, 381, 0, 0.0034320661157024794, 0.009077036954898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.191 ],
[577, 576, 0, 0.06004495867768594, 0.15880530575430396, 495.0, 495.0, 495.0, 0, 1, 1, -360, 90.818 ],
[244, 383, 0, 0.006845567867036011, 0.1382282547912684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 29.655 ],
[244, 306, 0, 0.02679108956599723, 0.5409756541164079, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 116.059 ],
[383, 306, 0, 0.0300685595567867, 0.269846910348376, 856.0, 856.0, 856.0, 0, 1, 1, -360, 86.838 ],
[380, 306, 0, 0.00025605955678670365, 0.03676764369572, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 2.958 ],
[252, 225, 0, 0.062094545454545444, 0.041056499553586, 248.0, 248.0, 248.0, 0, 1, 1, -360, 46.958999999999996 ],
[220, 76, 0, 0.002772074099722992, 0.398042682239984, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 32.023 ],
[542, 384, 0, 0.007939834710743802, 0.020999063146094, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.009 ],
[385, 384, 0, 0.053734876033057856, 0.035529141854791196, 248.0, 248.0, 248.0, 0, 1, 1, -360, 40.637 ],
[542, 385, 0, 0.011306115702479337, 0.119608453436296, 991.0, 991.0, 991.0, 0, 2, 1, -360, 34.201 ],
[386, 385, 0, 0.003668760330578512, 0.0388121580140316, 991.0, 991.0, 991.0, 0, 1, 1, -360, 11.097999999999999 ],
[387, 578, 0, 0.015444628099173553, 0.16339016240905604, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.72 ],
[332, 388, 0, 0.014036184210526315, 0.5038646344377999, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 81.07300000000001 ],
[382, 332, 0, 0.017764369806094183, 0.637697365901468, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 102.60700000000001 ],
[382, 388, 0, 0.00476159972299169, 0.17092976750548, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 27.503 ],
[579, 578, 0, 0.01911074380165289, 0.050543585664, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.905 ],
[577, 387, 0, 0.07597818181818182, 0.20094506949431204, 495.0, 495.0, 495.0, 0, 1, 1, -360, 114.917 ],
[144, 390, 0, 0.0004277685950413223, 0.0011313509747276, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.647 ],
[37, 49, 0, 0.008441481994459835, 0.303028527944352, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 48.758 ],
[391, 233, 0, 0.014211218836565096, 0.1275369872004348, 856.0, 856.0, 856.0, 0, 1, 1, -360, 41.042 ],
[392, 310, 0, 0.007035318559556785, 0.06313767618386361, 856.0, 856.0, 856.0, 0, 1, 1, -360, 20.317999999999998 ],
[260, 393, 0, 0.006341412742382271, 0.0569102963692744, 856.0, 856.0, 856.0, 0, 1, 1, -360, 18.314 ],
[394, 230, 0, 0.0007590027700831025, 0.00681158510656168, 856.0, 856.0, 856.0, 0, 1, 1, -360, 2.1919999999999997 ],
[395, 282, 0, 0.008762984764542936, 0.314569689934484, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.615 ],
[395, 244, 0, 0.0034046052631578946, 0.12221699007344, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 19.665 ],
[25, 396, 0, 0.008809037396121884, 0.316222866612064, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.881 ],
[81, 74, 0, 0.0075207756232686974, 0.26997742429652244, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 43.44 ],
[278, 80, 0, 0.016286011080332407, 0.5846279085788, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 94.068 ],
[81, 278, 0, 0.021054016620498613, 0.755787629231688, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 121.60799999999999 ],
[569, 570, 0, 0.03253950413223141, 0.08605961294018, 495.0, 495.0, 495.0, 0, 1, 1, -360, 49.216 ],
[397, 552, 0, 0.006289586776859504, 0.0166345314104904, 1200.0, 1200.0, 1200.0, 0, 1, 1, -360, 9.513 ],
[542, 398, 0, 0.0005580165289256199, 0.0059033089500572, 991.0, 991.0, 991.0, 0, 1, 1, -360, 1.6880000000000002 ],
[398, 385, 0, 0.021893553719008262, 0.05790348713648401, 495.0, 495.0, 495.0, 0, 1, 1, -360, 33.114000000000004 ],
[399, 499, 0, 0.03266380165289256, 0.021597087927192803, 248.0, 248.0, 248.0, 0, 1, 1, -360, 24.701999999999998 ],
[83, 399, 0, 0.025700495867768593, 0.016992996557050798, 248.0, 248.0, 248.0, 0, 1, 1, -360, 19.436 ],
[498, 400, 0, 0.012134214876033058, 0.032092247974028, 495.0, 495.0, 495.0, 0, 1, 1, -360, 18.352999999999998 ],
[518, 239, 0, 0.04685289256198347, 0.123915281026504, 495.0, 495.0, 495.0, 0, 1, 1, -360, 70.865 ],
[575, 543, 0, 0.0030307438016528923, 0.032062521596058796, 991.0, 991.0, 991.0, 0, 1, 1, -360, 9.168 ],
[401, 360, 0, 0.007957063711911357, 0.071409774520472, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.98 ],
[580, 581, 0, 0.007134545454545454, 0.018869255592422397, 495.0, 495.0, 495.0, 0, 1, 1, -360, 10.790999999999999 ],
[401, 402, 0, 0.0033434903047091418, 0.030005778188384805, 856.0, 856.0, 856.0, 0, 1, 1, -360, 9.656 ],
[403, 231, 0, 0.009592105263157893, 0.08608327126915, 856.0, 856.0, 856.0, 0, 1, 1, -360, 27.701999999999998 ],
[189, 360, 0, 0.028456024930747923, 0.255375399471348, 856.0, 856.0, 856.0, 0, 1, 1, -360, 82.181 ],
[234, 404, 0, 0.008092561983471074, 0.0214029921648796, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.24 ],
[235, 404, 0, 0.05107504132231405, 0.13508190749437998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 77.251 ],
[235, 580, 0, 0.000580495867768595, 0.00153527999352772, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.878 ],
[216, 259, 0, 0.0022115650969529088, 0.079389770210892, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 12.774000000000001 ],
[405, 259, 0, 0.0052832409972299165, 0.1896554115982928, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 30.516 ],
[405, 318, 0, 0.0066348684210526315, 0.23817552558268398, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 38.323 ],
[406, 230, 0, 8.098164819944598e-05, 0.046512685161986804, 6845.0, 6845.0, 6845.0, 0, 1, 1, -360, 1.871 ],
[542, 407, 0, 0.025569586776859506, 0.067625761355152, 495.0, 495.0, 495.0, 0, 1, 1, -360, 38.674 ],
[23, 408, 0, 0.03224528925619835, 0.08528148128033601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 48.771 ],
[577, 348, 0, 0.012999008264462809, 0.13751772188026398, 991.0, 991.0, 991.0, 0, 2, 1, -360, 39.321999999999996 ],
[562, 564, 0, 0.06921520661157024, 0.18305853298686803, 495.0, 495.0, 495.0, 0, 1, 1, -360, 104.68799999999999 ],
[582, 507, 0, 0.006357685950413223, 0.016814638289042002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.616 ],
[27, 410, 0, 0.0030042975206611565, 0.007945685980170399, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.544 ],
[501, 27, 0, 0.003811570247933884, 0.040322957460962, 991.0, 991.0, 991.0, 0, 1, 1, -360, 11.53 ],
[27, 411, 0, 0.004648595041322314, 0.012294480221518, 495.0, 495.0, 495.0, 0, 1, 1, -360, 7.031000000000001 ],
[411, 410, 0, 0.002054214876033058, 0.0054329327333556, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.1069999999999998 ],
[403, 360, 0, 0.008191481994459833, 0.07351353506655639, 856.0, 856.0, 856.0, 0, 1, 1, -360, 23.656999999999996 ],
[412, 360, 0, 0.016761772853185596, 0.15042664773666, 856.0, 856.0, 856.0, 0, 1, 1, -360, 48.408 ],
[326, 413, 0, 0.012077024793388432, 0.12776397267356798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 36.533 ],
[414, 413, 0, 0.008093223140495867, 0.08561896310149601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 24.482 ],
[6, 297, 0, 0.019472396694214876, 0.0128750188978664, 248.0, 248.0, 248.0, 0, 1, 1, -360, 14.725999999999999 ],
[554, 580, 0, 0.07435371900826447, 0.196648733567264, 495.0, 495.0, 495.0, 0, 1, 1, -360, 112.46 ],
[262, 401, 0, 0.03931232686980609, 0.35280406181043206, 856.0, 856.0, 856.0, 0, 1, 1, -360, 113.53399999999999 ],
[499, 556, 0, 0.04185586776859504, 0.11069928308639199, 495.0, 495.0, 495.0, 0, 2, 1, -360, 63.306999999999995 ],
[224, 229, 0, 0.004135206611570248, 0.0437467367631624, 991.0, 991.0, 991.0, 0, 1, 1, -360, 12.509 ],
[583, 507, 0, 0.024632727272727268, 0.065147980317596, 495.0, 495.0, 495.0, 0, 1, 1, -360, 37.257 ],
[415, 307, 0, 0.015675554016620498, 0.1406784987952448, 856.0, 856.0, 856.0, 0, 1, 1, -360, 45.271 ],
[416, 507, 0, 0.0010555371900826446, 0.011166626467730801, 991.0, 991.0, 991.0, 0, 1, 1, -360, 3.193 ],
[284, 561, 0, 0.015221487603305786, 0.16102953827307598, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.045 ],
[543, 417, 0, 0.0006614876033057851, 0.027991756419545603, 1981.0, 1981.0, 1981.0, 0, 4, 1, -360, 4.002 ],
[418, 506, 0, 0.0009395041322314049, 0.009939101917118, 991.0, 991.0, 991.0, 0, 1, 1, -360, 2.842 ],
[220, 157, 0, 0.004599549861495845, 0.165112574384632, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 26.566999999999997 ],
[295, 419, 0, 0.0012023140495867769, 0.012719392565946, 991.0, 991.0, 991.0, 0, 1, 1, -360, 3.637 ],
[295, 420, 0, 0.0008003305785123967, 0.008466771900532, 991.0, 991.0, 991.0, 0, 1, 1, -360, 2.421 ],
[541, 62, 0, 0.05133355371900827, 0.0339414035471236, 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.821 ],
[52, 421, 0, 0.00013885041551246538, 0.004984389831631239, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.802 ],
[60, 160, 0, 6.128808864265928e-05, 0.000550023067454096, 856.0, 856.0, 856.0, 0, 2, 1, -360, 0.177 ],
[535, 161, 0, 3.735537190082645e-05, 0.00039518596644331203, 991.0, 991.0, 991.0, 0, 2, 1, -360, 0.113 ],
[267, 282, 0, 0.0065652700831024926, 0.235677115717012, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 37.921 ],
[52, 365, 0, 0.007655586334279779, 0.15458444922992, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 33.164 ],
[28, 27, 0, 0.015726942148760328, 0.041594197273402404, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.787 ],
[30, 201, 0, 0.009128289473684211, 0.327683234253536, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 52.725 ],
[422, 81, 0, 0.0004226685133887349, 0.13655487952674, 5134.0, 5134.0, 5134.0, 0, 6, 1, -360, 7.324 ],
[119, 425, 0, 0.003579120498614958, 0.1284816595874996, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.673000000000002 ],
[423, 425, 0, 0.0006518351800554017, 0.0233992864289392, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 3.765 ],
[424, 425, 0, 0.005922957063711911, 0.21261965153389198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.211 ],
[426, 428, 0, 0.013948429752066116, 0.14756174042535197, 991.0, 991.0, 991.0, 0, 2, 1, -360, 42.193999999999996 ],
[427, 428, 0, 0.0002664462809917355, 0.0028187600792304794, 991.0, 991.0, 991.0, 0, 2, 1, -360, 0.8059999999999999 ],
[19, 428, 0, 0.023607603305785128, 0.24974703912892798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 71.413 ],
[45, 429, 0, 0.02562314049586777, 0.067767398802972, 495.0, 495.0, 495.0, 0, 1, 1, -360, 38.755 ],
[44, 429, 0, 5.289256198347107e-05, 0.00013988883767892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.08 ],
[505, 429, 0, 0.006012561983471073, 0.015901863623161996, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.094 ],
[231, 431, 0, 0.011677285318559558, 0.4191859418495199, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 67.44800000000001 ],
[190, 431, 0, 0.009600761772853185, 0.34464383257266795, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 55.45399999999999 ],
[430, 431, 0, 0.0028100761772853187, 0.1008748520662472, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.230999999999998 ],
[286, 433, 0, 0.01568694214876033, 0.16595362535967603, 991.0, 991.0, 991.0, 0, 1, 1, -360, 47.453 ],
[432, 433, 0, 0.00010049586776859504, 0.00106315516636076, 991.0, 991.0, 991.0, 0, 1, 1, -360, 0.304 ],
[506, 433, 0, 0.0065904132231404955, 0.06972059669946801, 991.0, 991.0, 991.0, 0, 1, 1, -360, 19.936 ],
[23, 434, 0, 0.02613685950413223, 0.069126069139116, 495.0, 495.0, 495.0, 0, 2, 1, -360, 39.532 ],
[400, 434, 0, 0.008155371900826446, 0.021569110159669603, 495.0, 495.0, 495.0, 0, 2, 1, -360, 12.335 ],
[500, 434, 0, 0.006338512396694216, 0.0167639285853336, 495.0, 495.0, 495.0, 0, 2, 1, -360, 9.587 ],
[32, 436, 0, 0.0044813019390581715, 0.16086776359270402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 25.884 ],
[435, 436, 0, 0.0006634349030470914, 0.023815688073266, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 3.832 ],
[78, 436, 0, 0.00897680055401662, 0.32224515307884394, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.85 ],
[86, 438, 0, 0.014693213296398892, 0.52745036936438, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 84.868 ],
[437, 438, 0, 1.0387811634349031e-05, 0.0003728969948845, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.06 ],
[221, 438, 0, 0.002280124653739612, 0.081850890377238, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.17 ],
[207, 439, 0, 0.055703801652892564, 0.0368309823503996, 248.0, 248.0, 248.0, 0, 1, 1, -360, 42.126000000000005 ],
[516, 439, 0, 0.05448462809917355, 0.03602487292327441, 248.0, 248.0, 248.0, 0, 1, 1, -360, 41.20399999999999 ],
[513, 439, 0, 0.046726611570247926, 0.0308953241066316, 248.0, 248.0, 248.0, 0, 1, 1, -360, 35.336999999999996 ],
[181, 441, 0, 0.040805289256198356, 0.10792074104825197, 495.0, 495.0, 495.0, 0, 1, 1, -360, 61.718 ],
[440, 441, 0, 0.0001322314049586777, 0.000349722094197784, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.2 ],
[504, 441, 0, 0.05916099173553719, 0.156467413554364, 495.0, 495.0, 495.0, 0, 1, 1, -360, 89.48100000000001 ],
[135, 442, 0, 0.004956890581717451, 0.177940231009092, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 28.631 ],
[109, 442, 0, 0.0015380886426592797, 0.055213615042649204, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 8.884 ],
[112, 442, 0, 0.0027304362880886425, 0.09801597510545401, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 15.770999999999999 ],
[113, 443, 0, 0.0019885734072022164, 0.07138491472072879, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 11.485999999999999 ],
[132, 443, 0, 0.006788434903047091, 0.24368818615747198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 39.21 ],
[107, 443, 0, 2.2333795013850418e-05, 0.000801728539002036, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.129 ],
[444, 445, 0, 7.877423822714682e-05, 0.00282780221121528, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.455 ],
[112, 445, 0, 0.002816135734072022, 0.101092375313206, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.266 ],
[109, 445, 0, 0.0014354224376731304, 0.0515281497432104, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 8.291 ],
[119, 447, 0, 0.005212690443213296, 0.74849127803204, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 60.217 ],
[100, 447, 0, 0.0050695117728531865, 0.7279322237145921, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 58.563 ],
[446, 447, 0, 2.9518698060941832e-05, 0.00423859584186224, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.341 ],
[124, 448, 0, 6.509695290858726e-05, 0.00233682116794768, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.376 ],
[125, 448, 0, 0.00615148891966759, 0.22082338542026803, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.531 ],
[131, 448, 0, 3.912742382271468e-05, 0.0014045786807313759, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.226 ],
[449, 450, 0, 0.0023614958448753462, 0.08477191683710039, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.64 ],
[173, 450, 0, 0.002862361495844876, 0.10275176694050518, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.533 ],
[184, 450, 0, 0.004022853185595568, 0.14441057621844403, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 23.236 ],
[144, 451, 0, 0.007672727272727273, 0.020292624515794402, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.605 ],
[140, 451, 0, 0.006991074380165291, 0.018489807120219602, 495.0, 495.0, 495.0, 0, 1, 1, -360, 10.574000000000002 ],
[514, 451, 0, 0.01149289256198347, 0.030396095817207994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.383 ],
[537, 585, 0, 0.05072595041322314, 0.134158641165824, 495.0, 495.0, 495.0, 0, 1, 1, -360, 76.723 ],
[141, 585, 0, 0.007994710743801653, 0.0211441978151932, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.092 ],
[584, 585, 0, 9.256198347107438e-05, 0.000244805465938352, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.14 ],
[522, 454, 0, 0.0035008264462809916, 0.0092588924438956, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.295 ],
[144, 454, 0, 0.00452892561983471, 0.011977981726290799, 495.0, 495.0, 495.0, 0, 1, 1, -360, 6.85 ],
[453, 454, 0, 0.001114710743801653, 0.0029481572540882, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.686 ],
[199, 456, 0, 0.013063140495867768, 0.0086372614214612, 248.0, 248.0, 248.0, 0, 1, 1, -360, 9.879 ],
[140, 456, 0, 0.005061818181818182, 0.013387361765852802, 495.0, 495.0, 495.0, 0, 2, 1, -360, 7.656000000000001 ],
[455, 456, 0, 0.0011365289256198346, 0.00300586139962416, 495.0, 495.0, 495.0, 0, 2, 1, -360, 1.719 ],
[537, 456, 0, 0.039058512396694216, 0.025825228046024003, 248.0, 248.0, 248.0, 0, 1, 1, -360, 29.538 ],
[538, 457, 0, 0.027927272727272728, 0.0184653265736368, 248.0, 248.0, 248.0, 0, 1, 1, -360, 21.12 ],
[153, 457, 0, 0.030093223140495867, 0.019897438549384, 248.0, 248.0, 248.0, 0, 1, 1, -360, 22.758000000000003 ],
[176, 457, 0, 0.004579173553719009, 0.0030277190305137603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 3.463 ],
[524, 459, 0, 0.004318677685950414, 0.011421923596476799, 495.0, 495.0, 495.0, 0, 1, 1, -360, 6.532 ],
[458, 459, 0, 0.001993388429752066, 0.0052720605700488, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.015 ],
[134, 459, 0, 0.011813553719008265, 0.031244171895617998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.868 ],
[460, 461, 0, 6.611570247933885e-05, 0.000174861047098892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.1 ],
[150, 461, 0, 0.008018512396694214, 0.021207147792120403, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.128 ],
[149, 461, 0, 0.005586115702479339, 0.0147740098693748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.449 ],
[521, 463, 0, 0.014348429752066114, 0.009487086110365599, 248.0, 248.0, 248.0, 0, 1, 1, -360, 10.850999999999999 ],
[462, 463, 0, 0.007197355371900825, 0.0047588433967958406, 248.0, 248.0, 248.0, 0, 1, 1, -360, 5.443 ],
[538, 463, 0, 0.012211570247933883, 0.0080742088497664, 248.0, 248.0, 248.0, 0, 1, 1, -360, 9.235 ],
[110, 464, 0, 0.0025753116343490306, 0.0924473799817492, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.875 ],
[90, 464, 0, 0.007328947368421053, 0.26309125979076, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 42.332 ],
[165, 464, 0, 0.002152527700831025, 0.0772704722900764, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 12.433 ],
[458, 465, 0, 0.002003305785123967, 0.0052982897270776, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.03 ],
[134, 465, 0, 0.011838677685950413, 0.031310619093534, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.906 ],
[524, 465, 0, 0.004293553719008264, 0.0113554763986092, 495.0, 495.0, 495.0, 0, 1, 1, -360, 6.494 ],
[466, 467, 0, 0.0023509349030470914, 0.084392804892244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.579 ],
[110, 467, 0, 0.0025337603878116343, 0.09095579200221118, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.635 ],
[165, 467, 0, 0.0022891274238227145, 0.08217406777274441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.222000000000001 ],
[468, 469, 0, 0.0005269421487603305, 0.0013936425453786, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.797 ],
[541, 469, 0, 0.022390743801652895, 0.05921844221026801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 33.866 ],
[490, 469, 0, 0.028243305785123966, 0.07469714209944801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 42.718 ],
[263, 471, 0, 0.0371900826446281, 0.0245898347482832, 248.0, 248.0, 248.0, 0, 1, 1, -360, 28.125 ],
[470, 471, 0, 0.001570909090909091, 0.0010386746197682802, 248.0, 248.0, 248.0, 0, 1, 1, -360, 1.188 ],
[534, 471, 0, 0.024497190082644622, 0.0161973787927468, 248.0, 248.0, 248.0, 0, 1, 1, -360, 18.526 ],
[136, 472, 0, 0.0007079293628808865, 0.025412930201351602, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 4.0889999999999995 ],
[110, 472, 0, 0.00019511772853185596, 0.0070042485539216805, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.127 ],
[251, 472, 0, 4.207063711911357e-05, 0.00151023282928764, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.243 ],
[226, 474, 0, 0.017639669421487602, 0.011663231841509601, 248.0, 248.0, 248.0, 0, 1, 1, -360, 13.34 ],
[473, 474, 0, 0.003467107438016529, 0.00916971330986216, 495.0, 495.0, 495.0, 0, 2, 1, -360, 5.244 ],
[257, 474, 0, 0.020264462809917356, 0.053594910935781594, 495.0, 495.0, 495.0, 0, 2, 1, -360, 30.65 ],
[6, 474, 0, 0.08066247933884299, 0.05333349367016, 248.0, 248.0, 248.0, 0, 1, 1, -360, 61.001000000000005 ],
[299, 475, 0, 0.013238227146814403, 0.47521993028123993, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 76.464 ],
[3, 475, 0, 0.0002794321329639889, 0.010030929162389441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.614 ],
[210, 475, 0, 0.0001481994459833795, 0.00531999712702368, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.856 ],
[297, 476, 0, 0.0193500826446281, 0.05117658265464801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 29.267 ],
[296, 476, 0, 0.005596694214876033, 0.014801987636898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.465 ],
[295, 476, 0, 0.0009474380165289256, 0.00250575880492432, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.433 ],
[313, 478, 0, 0.008696849030470914, 0.31219557906752804, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.233000000000004 ],
[477, 478, 0, 1.5235457063711912e-05, 0.0005469155924977479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.08800000000000001 ],
[245, 478, 0, 0.005264542936288089, 0.188984197007248, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.408 ],
[479, 481, 0, 0.028420495867768597, 0.07516576970575199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 42.986000000000004 ],
[565, 481, 0, 0.024842314049586776, 0.065702289836964, 495.0, 495.0, 495.0, 0, 1, 1, -360, 37.574 ],
[480, 481, 0, 7.735537190082645e-05, 0.000204587425105844, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.11699999999999999 ],
[415, 482, 0, 0.011021814404432133, 0.0989140353680364, 856.0, 856.0, 856.0, 0, 1, 1, -360, 31.831 ],
[56, 482, 0, 0.002630886426592798, 0.0236105947261788, 856.0, 856.0, 856.0, 0, 1, 1, -360, 7.598 ],
[409, 482, 0, 0.0007635041551246537, 0.0068519822810072005, 856.0, 856.0, 856.0, 0, 1, 1, -360, 2.205 ],
[483, 484, 0, 9.037396121883656e-05, 0.000811050963873968, 856.0, 856.0, 856.0, 0, 1, 1, -360, 0.261 ],
[3, 484, 0, 0.010022160664819944, 0.08994275516621358, 856.0, 856.0, 856.0, 0, 1, 1, -360, 28.944000000000003 ],
[301, 484, 0, 0.00966516620498615, 0.08673894848517479, 856.0, 856.0, 856.0, 0, 1, 1, -360, 27.913 ],
[233, 485, 0, 0.01410180055401662, 0.1265550251138996, 856.0, 856.0, 856.0, 0, 1, 1, -360, 40.726 ],
[392, 485, 0, 0.00914819944598338, 0.0820994883738036, 856.0, 856.0, 856.0, 0, 1, 1, -360, 26.42 ],
[391, 485, 0, 8.518005540166207e-05, 0.000764438839512864, 856.0, 856.0, 856.0, 0, 1, 1, -360, 0.24600000000000002 ],
[579, 488, 0, 0.004636473829194215, 0.11036180126571601, 1486.0, 1486.0, 1486.0, 0, 1, 1, -360, 21.038 ],
[486, 488, 0, 0.00016969696969690082, 0.00403929018798184, 1486.0, 1486.0, 1486.0, 0, 1, 1, -360, 0.77 ],
[487, 488, 0, 0.00014567493112954544, 0.00346749456396992, 1486.0, 1486.0, 1486.0, 0, 1, 1, -360, 0.6609999999999999 ],
[270, 489, 0, 0.0001745152354570637, 0.0062646695140596, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.008 ],
[331, 489, 0, 0.003002943213296399, 0.10779830627119119, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 17.345 ],
[396, 489, 0, 0.01124792243767313, 0.40377286606072005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 64.968 ],
[519, 253, 0, 0.013353485337561985, 0.141267767926912, 991.0, 991.0, 991.0, 0, 1, 1, -360, 40.394293146100004 ],
[382, 349, 0, 0.009091647380263157, 1.30547149138788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 105.02671053600001 ],
[349, 351, 0, 0.0005858117819605263, 0.0841168325920224, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 6.76729770521 ],
[459, 465, 0, 1.578788789911157e-05, 0.00016702153987596, 991.0, 991.0, 991.0, 0, 1, 1, -360, 0.047758360894800005 ],
[549, 550, 0, 3.680432518409091e-05, 0.000389356391787088, 991.0, 991.0, 991.0, 0, 1, 1, -360, 0.111333083682 ],
[550, 551, 0, 5.755645674710744e-05, 0.0006088951287918401, 991.0, 991.0, 991.0, 0, 1, 1, -360, 0.17410828165999997 ],
[194, 195, 0, 1.7560672583171745e-05, 0.00252154053805592, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.202860889681 ],
[247, 248, 0, 2.1755213937811637e-05, 0.0031238355819477198, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.25131623141 ],
[2, 294, 0, 2.3531392658518004e-05, 0.003378877444715, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.271834647991 ],
[549, 551, 0, 9.265809538429751e-05, 0.0009802386406577602, 991.0, 991.0, 991.0, 0, 1, 1, -360, 0.28029073853799996 ],
[54, 365, 0, 2.573045189134349e-05, 0.00369464080598484, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.297238180249 ],
[131, 265, 0, 2.7616389041343487e-05, 0.00396544290388756, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.319024526206 ],
[91, 92, 0, 2.8945628197853184e-05, 0.0041563086239824396, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.33437989694200004 ],
[247, 249, 0, 3.098840072160664e-05, 0.00444963074500788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.357978005136 ],
[186, 191, 0, 3.1591661821191135e-05, 0.00453625312865552, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.36494687735799997 ],
[129, 173, 0, 3.202671277479225e-05, 0.00459872218332188, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.369972585975 ],
[96, 202, 0, 3.5971247867797784e-05, 0.00516511877739804, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.415539855369 ],
[53, 320, 0, 3.784209581142659e-05, 0.00543375421308236, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.437151890814 ],
[24, 396, 0, 4.144748602818559e-05, 0.005951452925597279, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.47880135859800005 ],
[133, 156, 0, 4.431754564044322e-05, 0.0063635653674415605, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.511956287238 ],
[442, 452, 0, 4.483572190450138e-05, 0.006437970402313801, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.517942259441 ],
[445, 452, 0, 4.490753296371191e-05, 0.0064482817668697215, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.518771820797 ],
[247, 250, 0, 4.594910768732687e-05, 0.00659784169268824, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.530804092004 ],
[187, 195, 0, 4.755760376239612e-05, 0.006828805970367921, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.549385438663 ],
[216, 236, 0, 5.03353075283241e-05, 0.00722765701751724, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.581473472567 ],
[244, 389, 0, 5.1633313019736845e-05, 0.007414037889302401, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.596468032004 ],
[394, 406, 0, 5.6346419007686985e-05, 0.008090793734075721, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.650913832377 ],
[442, 445, 0, 6.388070648310249e-05, 0.00917264360085512, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.737949921293 ],
[442, 444, 0, 6.584378362735456e-05, 0.00945452224616264, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.760627388463 ],
[198, 472, 0, 8.37554210498615e-05, 0.0120264578966664, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.967542623967 ],
[464, 467, 0, 8.460287496468144e-05, 0.01214814397621276, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.977332411594 ],
[198, 251, 0, 8.83613182396122e-05, 0.012687819608389479, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 1.0207499483 ],
[112, 143, 0, 9.049653833033241e-05, 0.012994416294241841, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 1.04541601079 ],
[2, 490, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[5, 491, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[10, 492, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[12, 493, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[13, 494, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[15, 495, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[18, 496, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[20, 497, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[22, 498, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[24, 499, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[26, 500, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[30, 501, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[32, 502, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[37, 503, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[42, 504, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[46, 505, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[52, 506, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[56, 507, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[61, 508, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[68, 509, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[69, 510, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[74, 511, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[78, 512, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[86, 513, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[87, 514, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[94, 515, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[95, 516, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[96, 517, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[99, 518, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[100, 519, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[104, 520, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[105, 521, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[106, 522, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[107, 523, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[117, 524, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[120, 525, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[123, 526, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[124, 527, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[125, 528, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[128, 529, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[129, 530, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[138, 531, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[143, 532, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[156, 533, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[157, 534, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[159, 535, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[160, 536, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[165, 537, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[184, 538, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[191, 539, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[195, 540, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[201, 541, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[220, 542, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[231, 543, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[232, 544, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[233, 545, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[236, 546, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[245, 547, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[246, 548, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[248, 549, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[249, 550, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[250, 551, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[259, 552, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[261, 553, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[262, 554, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[265, 555, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[270, 556, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[277, 557, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[279, 558, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[280, 559, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[290, 560, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[301, 561, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[305, 562, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[306, 563, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[310, 564, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[313, 565, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[315, 566, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[320, 567, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[330, 568, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[332, 569, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[334, 570, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[336, 571, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[349, 572, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[351, 573, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[358, 574, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[360, 575, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[380, 576, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[382, 577, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[383, 578, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[389, 579, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[401, 580, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[402, 581, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[409, 582, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[415, 583, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[444, 584, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ],
[452, 585, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, 1, -360, 360 ]
])
ppc["gen_control"] = array([
[586, 1, 0.08658028904199107, 4.329014452099554, 0, 0, 0],
[589, 1, 0.010042676909098597, 0.5021338454549299, 0, 0, 0],
[590, 1, 0.012095775674984046, 0.6047887837492023, 0, 0, 0],
[593, 1, 0.0017666198683200384, 0.08833099341600192, 0, 0, 0],
[594, 1, 0.006047887837492023, 0.30239439187460115, 0, 0, 0],
[595, 1, 1.50560576164933, 75.2802880824665, 0, 0, 0],
[598, 1, 0.0038197186342054878, 0.1909859317102744, 0, 0, 0],
[599, 1, 0.0029602819415092537, 0.1480140970754627, 0, 0, 0],
[601, 1, 0.019576058000303126, 0.9788029000151565, 0, 0, 0],
[602, 1, 0.007830423200121252, 0.39152116000606263, 0, 0, 0],
[603, 1, 1.0997606567649967, 54.98803283824984, 0, 0, 0],
[607, 1, 0.5729577951308232, 28.64788975654116, 0, 0, 0],
[608, 1, 0.0076394372684109755, 0.3819718634205488, 0, 0, 0],
[609, 1, 0.0057932399285449895, 0.2896619964272495, 0, 0, 0],
[612, 1, 0.00954929658551372, 0.477464829275686, 0, 0, 0],
[613, 1, 0.027056340325622208, 1.3528170162811104, 0, 0, 0],
[614, 1, 0.00954929658551372, 0.477464829275686, 0, 0, 0],
[616, 1, 0.0046154933496649645, 0.23077466748324824, 0, 0, 0],
[617, 1, 0.04360845440717932, 2.1804227203589663, 0, 0, 0],
[618, 1, 0.010631550198538607, 0.5315775099269304, 0, 0, 0],
[619, 1, 0.037560566569687294, 1.8780283284843649, 0, 0, 0],
[621, 1, 0.24350706293059987, 12.175353146529993, 0, 0, 0],
[623, 1, 0.2419155134996809, 12.095775674984045, 0, 0, 0],
[624, 1, 0.004297183463481174, 0.21485917317405873, 0, 0, 0],
[628, 1, 0.14292113889652203, 7.1460569448261015, 0, 0, 0],
[629, 1, 0.023968734429639437, 1.198436721481972, 0, 0, 0],
[632, 1, 0.01435577586688896, 0.717788793344448, 0, 0, 0],
[637, 1, 0.017093240888069558, 0.854662044403478, 0, 0, 0],
[638, 1, 0.02048324117592693, 1.0241620587963465, 0, 0, 0],
[640, 1, 0.0038197186342054878, 0.1909859317102744, 0, 0, 0],
[641, 1, 0.0040107045659157625, 0.20053522829578813, 0, 0, 0],
[642, 1, 0.00919915571071155, 0.4599577855355775, 0, 0, 0],
[643, 1, 0.27279157245950864, 13.639578622975431, 0, 0, 0],
[646, 1, 0.03278591827693044, 1.6392959138465222, 0, 0, 0],
[647, 1, 0.00445633840657307, 0.2228169203286535, 0, 0, 0],
[650, 1, 0.4216014442504307, 21.080072212521536, 0, 0, 0],
[652, 1, 0.00746436683100989, 0.37321834155049455, 0, 0, 0],
[655, 1, 0.019576058000303126, 0.9788029000151565, 0, 0, 0],
[661, 1, 0.010408733278209955, 0.5204366639104978, 0, 0, 0],
[663, 1, 0.00238732414637843, 0.1193662073189215, 0, 0, 0],
[666, 1, 0.00919915571071155, 0.4599577855355775, 0, 0, 0],
[668, 1, 0.24382537281678363, 12.191268640839182, 0, 0, 0],
[670, 1, 0.0076394372684109755, 0.3819718634205488, 0, 0, 0],
[672, 1, 0.010536057232683471, 0.5268028616341736, 0, 0, 0],
[676, 1, 0.11777465788800255, 5.888732894400127, 0, 0, 0],
[681, 1, 0.0063821132179850025, 0.31910566089925013, 0, 0, 0],
[683, 1, 0.008753521870054244, 0.4376760935027122, 0, 0, 0],
[687, 1, 0.42303383873825773, 21.151691936912886, 0, 0, 0],
[689, 1, 0.09867606471697511, 4.933803235848756, 0, 0, 0],
[691, 1, 0.008276057040778557, 0.4138028520389279, 0, 0, 0],
[693, 1, 0.06175211791965539, 3.0876058959827692, 0, 0, 0],
[694, 1, 0.005220282133414166, 0.2610141066707083, 0, 0, 0],
[695, 1, 0.004679155326901723, 0.23395776634508614, 0, 0, 0],
[696, 1, 0.22950142793851305, 11.475071396925653, 0, 0, 0],
[697, 1, 0.0036923946797319715, 0.1846197339865986, 0, 0, 0],
[698, 1, 0.0038197186342054878, 0.1909859317102744, 0, 0, 0],
[702, 1, 0.023363945645890238, 1.168197282294512, 0, 0, 0],
[704, 1, 0.16170142218136566, 8.085071109068283, 0, 0, 0],
[705, 1, 0.005411268065124442, 0.27056340325622213, 0, 0, 0],
[707, 1, 0.010822536130248884, 0.5411268065124443, 0, 0, 0],
[708, 1, 0.0024828171122335675, 0.12414085561167837, 0, 0, 0],
[711, 1, 0.056054370956965534, 2.802718547848277, 0, 0, 0],
[713, 1, 0.004265352474862795, 0.21326762374313976, 0, 0, 0],
[714, 1, 0.00477464829275686, 0.238732414637843, 0, 0, 0],
[716, 1, 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0],
[717, 1, 0.0017507043740108488, 0.08753521870054244, 0, 0, 0],
[719, 1, 0.623250757147862, 31.162537857393104, 0, 0, 0],
[722, 1, 0.006589014644004467, 0.3294507322002233, 0, 0, 0],
[724, 1, 0.0019257748114119334, 0.09628874057059668, 0, 0, 0],
[727, 1, 0.019576058000303126, 0.9788029000151565, 0, 0, 0],
[728, 1, 0.16233804195373325, 8.116902097686662, 0, 0, 0],
[730, 1, 0.10077690996578814, 5.038845498289407, 0, 0, 0],
[731, 1, 0.2848873481344926, 14.244367406724633, 0, 0, 0],
[732, 1, 0.004647324338283344, 0.2323662169141672, 0, 0, 0],
[735, 1, 0.013496339174192726, 0.6748169587096363, 0, 0, 0],
[737, 1, 0.00891267681314614, 0.445633840657307, 0, 0, 0],
[738, 1, 0.04408591923645501, 2.2042959618227504, 0, 0, 0],
[741, 1, 0.0340591578216656, 1.7029578910832803, 0, 0, 0],
[742, 1, 0.0028647889756541157, 0.14323944878270578, 0, 0, 0],
[743, 1, 0.44881693951914486, 22.440846975957243, 0, 0, 0],
[746, 1, 0.03183098861837907, 1.5915494309189535, 0, 0, 0],
[747, 1, 0.0039788735772973835, 0.1989436788648692, 0, 0, 0],
[748, 1, 0.03501408748021698, 1.7507043740108488, 0, 0, 0],
[749, 1, 0.0025464790894703256, 0.12732395447351627, 0, 0, 0],
[750, 1, 0.028902537665488188, 1.4451268832744095, 0, 0, 0],
[753, 1, 0.049624511256052974, 2.4812255628026487, 0, 0, 0],
[758, 1, 0.0058887328944001276, 0.2944366447200064, 0, 0, 0],
[760, 1, 0.2527380496299298, 12.636902481496492, 0, 0, 0],
[762, 1, 0.3517324242330887, 17.586621211654435, 0, 0, 0],
[763, 1, 0.006461690689530951, 0.32308453447654756, 0, 0, 0],
[765, 1, 0.018780283284843647, 0.9390141642421824, 0, 0, 0],
[767, 1, 0.0035650707252584553, 0.17825353626292276, 0, 0, 0],
[769, 1, 0.013782818071758136, 0.6891409035879068, 0, 0, 0],
[771, 1, 0.21963382146681557, 10.981691073340778, 0, 0, 0],
[772, 1, 0.002992112930127632, 0.1496056465063816, 0, 0, 0],
[774, 1, 0.010663381187156987, 0.5331690593578494, 0, 0, 0],
[776, 1, 0.01782535362629228, 0.891267681314614, 0, 0, 0],
[777, 1, 0.012573240504259732, 0.6286620252129866, 0, 0, 0],
[778, 1, 0.004679155326901723, 0.23395776634508614, 0, 0, 0],
[781, 1, 0.4169859509007658, 20.84929754503829, 0, 0, 0],
[784, 1, 0.4058451048843331, 20.292255244216655, 0, 0, 0],
[785, 1, 0.00047746482927568597, 0.0238732414637843, 0, 0, 0],
[787, 1, 0.24764509145098912, 12.382254572549456, 0, 0, 0],
[788, 1, 0.2785211504108168, 13.926057520540843, 0, 0, 0],
[789, 1, 0.0123185925953127, 0.615929629765635, 0, 0, 0],
[791, 1, 0.0031830988618379067, 0.15915494309189535, 0, 0, 0],
[792, 1, 0.009979014931861837, 0.49895074659309185, 0, 0, 0],
[795, 1, 0.004329014452099553, 0.2164507226049777, 0, 0, 0],
[801, 1, 0.007957747154594767, 0.3978873577297384, 0, 0, 0],
[802, 1, 0.07957747154594767, 3.9788735772973833, 0, 0, 0],
[805, 1, 0.44881693951914486, 22.440846975957243, 0, 0, 0],
[806, 1, 0.005697746962689853, 0.2848873481344927, 0, 0, 0],
[808, 1, 0.034616200122487235, 1.7308100061243619, 0, 0, 0],
[809, 1, 0.0039788735772973835, 0.1989436788648692, 0, 0, 0],
[811, 1, 0.0040107045659157625, 0.20053522829578813, 0, 0, 0],
[814, 1, 0.014164789935178685, 0.7082394967589343, 0, 0, 0],
[816, 1, 0.012748310941660816, 0.6374155470830408, 0, 0, 0],
[817, 1, 0.017188733853924696, 0.8594366926962349, 0, 0, 0],
[821, 1, 0.013130282805081364, 0.6565141402540683, 0, 0, 0],
[822, 1, 0.04265352474862795, 2.1326762374313977, 0, 0, 0],
[826, 1, 0.018461973398659858, 0.9230986699329929, 0, 0, 0],
[829, 1, 0.06716338598477982, 3.3581692992389915, 0, 0, 0],
[830, 1, 0.02832957987035737, 1.4164789935178685, 0, 0, 0],
[835, 1, 0.010138169874953733, 0.5069084937476867, 0, 0, 0],
[836, 1, 0.008116902097686661, 0.4058451048843331, 0, 0, 0],
[837, 1, 0.15024226627874918, 7.512113313937459, 0, 0, 0],
[839, 1, 0.011666057328635928, 0.5833028664317964, 0, 0, 0],
[841, 1, 0.0037083101740411615, 0.18541550870205808, 0, 0, 0],
[843, 1, 0.10599719209920229, 5.2998596049601145, 0, 0, 0],
[844, 1, 0.012732395447351627, 0.6366197723675814, 0, 0, 0],
[845, 1, 0.10122254380644544, 5.061127190322272, 0, 0, 0],
[849, 1, 0.24796340133717296, 12.398170066858649, 0, 0, 0],
[850, 1, 0.005092958178940651, 0.25464790894703254, 0, 0, 0],
[851, 1, 0.01265281797580568, 0.632640898790284, 0, 0, 0],
[853, 1, 0.0036923946797319715, 0.1846197339865986, 0, 0, 0],
[854, 1, 0.026037748689834075, 1.3018874344917037, 0, 0, 0],
[855, 1, 0.21899720169444797, 10.949860084722399, 0, 0, 0],
[856, 1, 0.011459155902616463, 0.5729577951308231, 0, 0, 0],
[857, 1, 0.4462704604296745, 22.313523021483725, 0, 0, 0],
[858, 1, 0.01808000153523931, 0.9040000767619655, 0, 0, 0],
[859, 1, 0.027056340325622208, 1.3528170162811104, 0, 0, 0],
[860, 1, 0.0039788735772973835, 0.1989436788648692, 0, 0, 0],
[862, 1, 0.23077466748324824, 11.538733374162412, 0, 0, 0],
[863, 1, 0.0001909859317102744, 0.00954929658551372, 0, 0, 0],
[864, 1, 0.2785211504108168, 13.926057520540843, 0, 0, 0],
[865, 1, 0.0035014087480216977, 0.17507043740108488, 0, 0, 0],
[867, 1, 0.24478030247533505, 12.239015123766753, 0, 0, 0],
[869, 1, 0.4329014452099553, 21.645072260497766, 0, 0, 0],
[870, 1, 0.018589297353133374, 0.9294648676566688, 0, 0, 0],
[872, 1, 0.00716197243913529, 0.3580986219567645, 0, 0, 0],
[873, 1, 0.038833806114422456, 1.941690305721123, 0, 0, 0],
[874, 1, 0.006589014644004467, 0.3294507322002233, 0, 0, 0],
[875, 1, 0.007766761222884492, 0.38833806114422464, 0, 0, 0],
[877, 1, 0.007894085177358009, 0.39470425886790045, 0, 0, 0],
[882, 1, 0.005538592019597957, 0.2769296009798979, 0, 0, 0],
[883, 1, 0.005729577951308231, 0.28647889756541156, 0, 0, 0],
[886, 1, 0.8186930272647096, 40.93465136323548, 0, 0, 0],
[889, 1, 0.0030239439187460114, 0.15119719593730058, 0, 0, 0],
[890, 1, 0.0076394372684109755, 0.3819718634205488, 0, 0, 0],
[895, 1, 0.0030239439187460114, 0.15119719593730058, 0, 0, 0],
[896, 1, 0.0038197186342054878, 0.1909859317102744, 0, 0, 0],
[898, 1, 0.013464508185574344, 0.6732254092787172, 0, 0, 0],
[900, 1, 0.03584169318429482, 1.7920846592147412, 0, 0, 0],
[902, 1, 0.006207042780583919, 0.31035213902919595, 0, 0, 0],
[903, 1, 0.0031990143561470966, 0.15995071780735484, 0, 0, 0],
[905, 1, 0.021851973686517232, 1.0925986843258617, 0, 0, 0],
[906, 1, 0.010504226244065093, 0.5252113122032547, 0, 0, 0],
[907, 1, 0.02142225534016911, 1.0711127670084555, 0, 0, 0],
[909, 1, 0.005856901905781748, 0.2928450952890874, 0, 0, 0],
[913, 1, 0.02355493157760051, 1.1777465788800257, 0, 0, 0],
[915, 1, 0.0038197186342054878, 0.1909859317102744, 0, 0, 0],
[917, 1, 0.005411268065124442, 0.27056340325622213, 0, 0, 0],
[918, 1, 0.012254930618075942, 0.612746530903797, 0, 0, 0],
[920, 1, 0.0020371832715762603, 0.10185916357881303, 0, 0, 0],
[921, 1, 0.019735212943395024, 0.9867606471697512, 0, 0, 0],
[922, 1, 0.05220282133414166, 2.6101410667070835, 0, 0, 0],
[923, 1, 0.023236621691416718, 1.161831084570836, 0, 0, 0],
[925, 1, 0.008276057040778557, 0.4138028520389279, 0, 0, 0],
[928, 1, 0.019576058000303126, 0.9788029000151565, 0, 0, 0],
[931, 1, 0.03455253814525047, 1.7276269072625237, 0, 0, 0],
[934, 1, 0.09421972631040204, 4.710986315520103, 0, 0, 0],
[935, 1, 0.007352958370845565, 0.36764791854227824, 0, 0, 0],
[936, 1, 0.016615776058793875, 0.8307888029396938, 0, 0, 0],
[937, 1, 0.00477464829275686, 0.238732414637843, 0, 0, 0],
[939, 1, 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0],
[940, 1, 0.009421972631040205, 0.47109863155201026, 0, 0, 0],
[942, 1, 0.016520283092938737, 0.8260141546469368, 0, 0, 0],
[944, 1, 0.004042535554534142, 0.2021267777267071, 0, 0, 0],
[945, 1, 0.011140846016432674, 0.5570423008216338, 0, 0, 0],
[950, 1, 0.005092958178940651, 0.25464790894703254, 0, 0, 0],
[952, 1, 0.005045211696013082, 0.2522605848006541, 0, 0, 0],
[958, 1, 0.010615634704229418, 0.530781735211471, 0, 0, 0],
[959, 1, 0.007241549910681238, 0.3620774955340619, 0, 0, 0],
[960, 1, 0.004217605991935227, 0.21088029959676136, 0, 0, 0],
[963, 1, 0.2785211504108168, 13.926057520540843, 0, 0, 0],
[965, 1, 0.11204507993669433, 5.602253996834716, 0, 0, 0],
[966, 1, 0.021008452488130186, 1.0504226244065094, 0, 0, 0],
[967, 1, 0.01193662073189215, 0.5968310365946076, 0, 0, 0],
[968, 1, 0.017188733853924696, 0.8594366926962349, 0, 0, 0],
[969, 1, 0.018111832523857688, 0.9055916261928845, 0, 0, 0],
[971, 1, 0.0031830988618379067, 0.15915494309189535, 0, 0, 0],
[973, 1, 0.4287634166895661, 21.438170834478306, 0, 0, 0],
[976, 1, 0.008562535938343968, 0.4281267969171984, 0, 0, 0],
[977, 1, 0.1031324031235482, 5.15662015617741, 0, 0, 0],
[978, 1, 0.0007321127382227185, 0.03660563691113593, 0, 0, 0],
[981, 1, 0.03787887645587108, 1.8939438227935543, 0, 0, 0],
[982, 1, 0.0015756339366097638, 0.07878169683048819, 0, 0, 0],
[983, 1, 0.01400563499208679, 0.7002817496043395, 0, 0, 0],
[984, 1, 0.14801409707546268, 7.400704853773133, 0, 0, 0],
[985, 1, 0.0035014087480216977, 0.17507043740108488, 0, 0, 0],
[986, 1, 0.0017825353626292277, 0.08912676813146138, 0, 0, 0],
[987, 1, 0.02618098813861678, 1.3090494069308392, 0, 0, 0],
[988, 1, 0.0008116902097686662, 0.04058451048843331, 0, 0, 0],
[990, 1, 0.0954929658551372, 4.7746482927568605, 0, 0, 0],
[993, 1, 0.06238873769202297, 3.119436884601149, 0, 0, 0],
[994, 1, 0.010504226244065093, 0.5252113122032547, 0, 0, 0],
[995, 1, 0.0006684507609859605, 0.033422538049298026, 0, 0, 0],
[997, 1, 0.005984225860255264, 0.2992112930127632, 0, 0, 0],
[999, 1, 0.004965634224467135, 0.24828171122335674, 0, 0, 0],
[1000, 1, 0.015597184423005743, 0.7798592211502873, 0, 0, 0],
[1002, 1, 0.0031512678732195276, 0.15756339366097638, 0, 0, 0],
[1003, 1, 0.2864788975654116, 14.32394487827058, 0, 0, 0],
[1007, 1, 0.007416620348082323, 0.37083101740411617, 0, 0, 0],
[1008, 1, 0.015597184423005743, 0.7798592211502873, 0, 0, 0],
[1010, 1, 0.238732414637843, 11.93662073189215, 0, 0, 0],
[1011, 1, 0.005952394871636886, 0.2976197435818443, 0, 0, 0],
[1012, 1, 0.9024085273310466, 45.12042636655233, 0, 0, 0],
[1018, 1, 0.05599070897972878, 2.7995354489864392, 0, 0, 0],
[1023, 1, 6.366197723675813e-05, 0.003183098861837907, 0, 0, 0],
[1026, 1, 0.20868396138209316, 10.434198069104658, 0, 0, 0],
[1027, 3, 0.003074873500535418, 0.15374367502677092, 2.22, 61.69, 0.004502],
[1028, 2, 0.025464790894703257, 1.273239544735163, 0, 0, 0],
[1029, 2, 0.003819718634205488, 0.19098593171027442, 0, 0, 0],
[1030, 2, 0.06480789282701978, 3.2403946413509894, 0, 0, 0],
[1031, 2, 0.0921316134570364, 4.60658067285182, 0, 0, 0],
[1032, 2, 0.007079413776351905, 0.3539706888175953, 0, 0, 0],
[1033, 2, 0.0016944568259984044, 0.08472284129992022, 0, 0, 0],
[1034, 2, 0.005364335122251813, 0.26821675611259066, 0, 0, 0],
[1035, 3, 0.001981955148228083, 0.09909775741140416, 2.22, 61.69, 0.004502],
[1036, 2, 0.0022873115124132943, 0.11436557562066473, 0, 0, 0],
[1037, 2, 0.0060277734620055035, 0.3013886731002752, 0, 0, 0],
[1038, 2, 0.005462103769994554, 0.2731051884997277, 0, 0, 0],
[1039, 2, 0.005563341057826885, 0.2781670528913443, 0, 0, 0],
[1040, 3, 1.6315213950589632e-06, 8.157606975294815e-05, 2.22, 61.69, 0.004502],
[1041, 2, 0.008814427293793635, 0.44072136468968176, 0, 0, 0],
[1042, 2, 0.0018607001428599438, 0.09303500714299719, 0, 0, 0],
[1044, 3, 0.0023022419250361527, 0.11511209625180763, 2.22, 61.69, 0.004502],
[1046, 2, 0.00679827557108513, 0.33991377855425653, 0, 0, 0],
[1047, 3, 0.0008294889076348922, 0.04147444538174461, 2.22, 61.69, 0.004502],
[1048, 2, 0.004561818873896339, 0.22809094369481697, 0, 0, 0],
[1049, 2, 0.018385610936452915, 0.9192805468226458, 0, 0, 0],
[1050, 2, 0.001537750507570102, 0.07688752537850511, 0, 0, 0],
[1051, 2, 0.009116741738348545, 0.45583708691742725, 0, 0, 0],
[1052, 3, 0.001315809692296204, 0.06579048461481019, 2.22, 61.69, 0.004502],
[1053, 3, 0.001042024786453249, 0.05210123932266245, 2.22, 61.69, 0.004502],
[1054, 2, 0.017434200209443074, 0.8717100104721537, 0, 0, 0],
[1055, 3, 0.00010774097736088163, 0.005387048868044082, 2.22, 61.69, 0.004502],
[1056, 2, 0.024955622083180834, 1.2477811041590419, 0, 0, 0],
[1057, 2, 0.019784894623485406, 0.9892447311742705, 0, 0, 0],
[1058, 2, 0.0501746065091408, 2.5087303254570403, 0, 0, 0],
[1059, 2, 0.019128255048965058, 0.956412752448253, 0, 0, 0],
[1060, 3, 0.00037000637396576757, 0.01850031869828838, 2.22, 61.69, 0.004502],
[1061, 2, 0.007080526996749377, 0.35402634983746883, 0, 0, 0],
[1062, 3, 9.707513784221655e-05, 0.004853756892110828, 2.22, 61.69, 0.004502],
[1063, 3, 0.00028322305939182586, 0.014161152969591292, 2.22, 61.69, 0.004502],
[1064, 2, 0.007915553554409737, 0.3957776777204869, 0, 0, 0],
[1065, 2, 0.012331591192492646, 0.6165795596246323, 0, 0, 0],
[1066, 2, 0.00430468846466002, 0.21523442323300102, 0, 0, 0],
[1067, 3, 0.000833991719638428, 0.0416995859819214, 2.22, 61.69, 0.004502],
[1072, 2, 0.007168748144119091, 0.3584374072059546, 0, 0, 0],
[1073, 2, 0.004954025493475761, 0.24770127467378808, 0, 0, 0],
[1074, 2, 0.009778033156939965, 0.48890165784699824, 0, 0, 0],
[1075, 3, 0.00040004260890517566, 0.020002130445258785, 2.22, 61.69, 0.004502],
[1076, 3, 5.826983890127388e-05, 0.0029134919450636942, 2.22, 61.69, 0.004502],
[1077, 3, 0.000673485067260617, 0.03367425336303085, 2.22, 61.69, 0.004502],
[1078, 3, 0.0008721888640652444, 0.04360944320326222, 2.22, 61.69, 0.004502],
[1079, 2, 0.004604543003215469, 0.23022715016077344, 0, 0, 0],
[1080, 2, 0.0033504365751281366, 0.16752182875640684, 0, 0, 0],
[1081, 2, 0.01904428060299353, 0.9522140301496764, 0, 0, 0],
[1082, 2, 0.019142175329409636, 0.957108766470482, 0, 0, 0],
[1083, 2, 0.02765555111759417, 1.3827775558797086, 0, 0, 0],
[1084, 2, 0.02251139636942165, 1.1255698184710827, 0, 0, 0],
[1085, 2, 0.002924465032188045, 0.14622325160940225, 0, 0, 0],
[1086, 2, 0.006054053089096882, 0.3027026544548441, 0, 0, 0],
[1087, 2, 0.0038538640246270086, 0.19269320123135042, 0, 0, 0],
[1088, 3, 0.0012212923154449559, 0.06106461577224779, 2.22, 61.69, 0.004502],
[1089, 2, 0.013632409346171416, 0.6816204673085708, 0, 0, 0],
[1090, 2, 0.005674885746854652, 0.2837442873427326, 0, 0, 0],
[1091, 3, 0.002915330196419503, 0.14576650982097517, 2.22, 61.69, 0.004502],
[1092, 2, 0.003437876146252996, 0.1718938073126498, 0, 0, 0],
[1093, 2, 0.009906140914748767, 0.49530704573743833, 0, 0, 0],
[1094, 3, 0.00014679877069625013, 0.007339938534812507, 2.22, 61.69, 0.004502],
[1095, 3, 7.832040393398852e-06, 0.0003916020196699426, 2.22, 61.69, 0.004502],
[1096, 2, 0.004823456141103677, 0.24117280705518382, 0, 0, 0],
[1097, 3, 0.0002929164939619051, 0.014645824698095257, 2.22, 61.69, 0.004502],
[1098, 2, 0.004521623727146264, 0.22608118635731317, 0, 0, 0],
[1099, 2, 0.018521637260932335, 0.9260818630466169, 0, 0, 0],
[1101, 2, 0.004867852752026397, 0.24339263760131985, 0, 0, 0],
[1102, 2, 0.019015404138804773, 0.9507702069402387, 0, 0, 0],
[1103, 2, 0.01562148424141561, 0.7810742120707805, 0, 0, 0],
[1104, 3, 6.386306370616109e-06, 0.00031931531853080544, 2.22, 61.69, 0.004502],
[1105, 3, 8.412502229539806e-05, 0.004206251114769903, 2.22, 61.69, 0.004502],
[1106, 3, 6.584959765284522e-05, 0.0032924798826422614, 2.22, 61.69, 0.004502],
[1107, 2, 0.0019415493568754525, 0.09707746784377262, 0, 0, 0],
[1108, 2, 0.008230112689073, 0.41150563445365, 0, 0, 0],
[1109, 3, 2.1817288020453202e-05, 0.00109086440102266, 2.22, 61.69, 0.004502],
[1110, 3, 5.497784342238009e-05, 0.0027488921711190046, 2.22, 61.69, 0.004502],
[1111, 2, 0.0023845796392517157, 0.1192289819625858, 0, 0, 0],
[1112, 2, 0.0021164403594842204, 0.10582201797421102, 0, 0, 0],
[1113, 3, 0.00010674621831632141, 0.005337310915816071, 2.22, 61.69, 0.004502],
[1114, 3, 0.00034110954647959777, 0.017055477323979887, 2.22, 61.69, 0.004502],
[1115, 2, 0.001560581704874582, 0.0780290852437291, 0, 0, 0],
[1116, 3, 0.0010497237040213306, 0.05248618520106653, 2.22, 61.69, 0.004502],
[1117, 2, 0.0030482760183426784, 0.15241380091713394, 0, 0, 0],
[1118, 3, 0.00025020310158992815, 0.012510155079496408, 2.22, 61.69, 0.004502],
[1119, 3, 0.0013944280021936538, 0.06972140010968268, 2.22, 61.69, 0.004502],
[1120, 3, 7.008367642348848e-05, 0.0035041838211744246, 2.22, 61.69, 0.004502],
[1121, 3, 1.4685477050834066e-05, 0.0007342738525417034, 2.22, 61.69, 0.004502],
[1122, 3, 4.191200200044469e-05, 0.0020956001000222344, 2.22, 61.69, 0.004502],
[1123, 3, 3.903195973291004e-05, 0.0019515979866455023, 2.22, 61.69, 0.004502],
[1124, 3, 3.566336656293116e-05, 0.001783168328146558, 2.22, 61.69, 0.004502],
[1125, 3, 0.0006582243839744623, 0.03291121919872311, 2.22, 61.69, 0.004502],
[1126, 3, 0.0007422650376636687, 0.037113251883183436, 2.22, 61.69, 0.004502],
[1127, 2, 0.006703391093283916, 0.3351695546641958, 0, 0, 0],
[1128, 3, 0.00010716349856397227, 0.005358174928198614, 2.22, 61.69, 0.004502],
[1129, 3, 0.00016074416246728902, 0.008037208123364451, 2.22, 61.69, 0.004502],
[1130, 3, 3.210401096978252e-05, 0.0016052005484891263, 2.22, 61.69, 0.004502],
[1131, 3, 9.806928210800955e-05, 0.004903464105400477, 2.22, 61.69, 0.004502],
[1132, 3, 1.1067968826227845e-05, 0.0005533984413113922, 2.22, 61.69, 0.004502],
[1133, 3, 1.9548345246098505e-05, 0.0009774172623049253, 2.22, 61.69, 0.004502],
[1134, 3, 1.381254127932907e-05, 0.0006906270639664534, 2.22, 61.69, 0.004502],
[1135, 3, 0.00021213477502306707, 0.010606738751153356, 2.22, 61.69, 0.004502],
[1136, 3, 1.119383227847146e-05, 0.0005596916139235731, 2.22, 61.69, 0.004502],
[1137, 3, 0.00010232333194126452, 0.005116166597063225, 2.22, 61.69, 0.004502],
[1138, 3, 3.4362727229175405e-05, 0.0017181363614587703, 2.22, 61.69, 0.004502],
[1139, 3, 0.0006015433668049999, 0.030077168340249993, 2.22, 61.69, 0.004502],
[1140, 3, 0.0007645628362529935, 0.03822814181264968, 2.22, 61.69, 0.004502],
[1141, 2, 0.004790241076682773, 0.23951205383413865, 0, 0, 0],
[1142, 3, 3.366840739739377e-05, 0.0016834203698696886, 2.22, 61.69, 0.004502],
[1143, 3, 0.0006435333214336843, 0.032176666071684214, 2.22, 61.69, 0.004502],
[1144, 2, 0.0015897690045774716, 0.0794884502288736, 0, 0, 0],
[1145, 2, 0.011197481443497569, 0.5598740721748785, 0, 0, 0],
[1146, 3, 2.3398271269893032e-05, 0.0011699135634946516, 2.22, 61.69, 0.004502],
[1147, 3, 0.001386514802641611, 0.06932574013208057, 2.22, 61.69, 0.004502],
[1148, 3, 0.000881292737319028, 0.0440646368659514, 2.22, 61.69, 0.004502],
[1149, 3, 0.00022727377904538718, 0.011363688952269359, 2.22, 61.69, 0.004502],
[1150, 3, 9.595428393961811e-05, 0.004797714196980906, 2.22, 61.69, 0.004502],
[1151, 3, 0.0005335375770300506, 0.02667687885150254, 2.22, 61.69, 0.004502],
[1152, 3, 4.444955981844895e-06, 0.00022224779909224476, 2.22, 61.69, 0.004502],
[1153, 3, 2.126258002048503e-06, 0.00010631290010242515, 2.22, 61.69, 0.004502],
[1154, 3, 4.964927577583119e-06, 0.00024824637887915595, 2.22, 61.69, 0.004502],
[1155, 3, 2.461238779559723e-05, 0.0012306193897798617, 2.22, 61.69, 0.004502],
[1156, 3, 0.0005133980246981178, 0.025669901234905892, 2.22, 61.69, 0.004502],
[1157, 3, 0.0001779783911006972, 0.00889891955503486, 2.22, 61.69, 0.004502],
[1158, 3, 4.0543920426570716e-05, 0.002027196021328536, 2.22, 61.69, 0.004502],
[1159, 3, 0.00046795147611456816, 0.023397573805728406, 2.22, 61.69, 0.004502],
[1160, 2, 0.013180409191210338, 0.6590204595605169, 0, 0, 0],
[1161, 3, 0.000744916600802104, 0.03724583004010521, 2.22, 61.69, 0.004502],
[1162, 2, 0.023357274001077667, 1.1678637000538834, 0, 0, 0],
[1163, 2, 0.011575125387027681, 0.578756269351384, 0, 0, 0],
[1164, 2, 0.016316848244546277, 0.8158424122273138, 0, 0, 0],
[1165, 2, 0.002364483341790854, 0.1182241670895427, 0, 0, 0],
[1166, 2, 0.005301588846150501, 0.26507944230752506, 0, 0, 0],
[1167, 3, 0.00019738295259357118, 0.009869147629678561, 2.22, 61.69, 0.004502],
[1168, 3, 6.350577083684924e-05, 0.003175288541842462, 2.22, 61.69, 0.004502],
[1169, 3, 0.00012800233064568244, 0.006400116532284123, 2.22, 61.69, 0.004502],
[1170, 3, 1.022098369235092e-05, 0.000511049184617546, 2.22, 61.69, 0.004502],
[1171, 3, 0.00022898354230095963, 0.011449177115047983, 2.22, 61.69, 0.004502],
[1172, 3, 9.083631449844832e-05, 0.004541815724922416, 2.22, 61.69, 0.004502],
[1173, 2, 0.013055045276394919, 0.652752263819746, 0, 0, 0],
[1174, 3, 4.91693177007236e-05, 0.00245846588503618, 2.22, 61.69, 0.004502],
[1175, 3, 4.730065004514243e-05, 0.0023650325022571217, 2.22, 61.69, 0.004502],
[1176, 3, 9.333997693927025e-06, 0.0004666998846963513, 2.22, 61.69, 0.004502],
[1177, 3, 0.001742934553715349, 0.08714672768576745, 2.22, 61.69, 0.004502],
[1178, 3, 8.066091568149825e-05, 0.004033045784074913, 2.22, 61.69, 0.004502],
[1179, 3, 3.5057030093592115e-05, 0.0017528515046796058, 2.22, 61.69, 0.004502],
[1180, 3, 2.657738254979288e-05, 0.0013288691274896437, 2.22, 61.69, 0.004502],
[1181, 2, 0.00545834972439398, 0.272917486219699, 0, 0, 0],
[1182, 2, 0.006322880792722177, 0.3161440396361089, 0, 0, 0],
[1183, 3, 0.0010124317003108218, 0.050621585015541086, 2.22, 61.69, 0.004502],
[1184, 3, 0.00010984001607269411, 0.005492000803634705, 2.22, 61.69, 0.004502],
[1185, 3, 0.00034479411181407286, 0.017239705590703643, 2.22, 61.69, 0.004502],
[1186, 3, 0.0018022878554343042, 0.09011439277171521, 2.22, 61.69, 0.004502],
[1187, 3, 0.000323966403725451, 0.01619832018627255, 2.22, 61.69, 0.004502],
[1188, 2, 0.011440868435801076, 0.5720434217900537, 0, 0, 0],
[1189, 3, 0.000686637320455041, 0.03433186602275206, 2.22, 61.69, 0.004502],
[1190, 2, 0.005589527545129696, 0.27947637725648483, 0, 0, 0],
[1191, 2, 0.0018545594990491579, 0.09272797495245791, 0, 0, 0],
[1192, 3, 0.0005449212158790416, 0.027246060793952084, 2.22, 61.69, 0.004502],
[1196, 2, 0.010230349597894291, 0.5115174798947145, 0, 0, 0],
[1197, 2, 0.005767282789943071, 0.2883641394971536, 0, 0, 0],
[1198, 3, 0.002327128412977244, 0.11635642064886222, 2.22, 61.69, 0.004502],
[1199, 2, 0.012822920004466005, 0.6411460002233003, 0, 0, 0],
[1200, 2, 0.0035658606694853635, 0.1782930334742682, 0, 0, 0],
[1204, 3, 0.0015394883687458898, 0.0769744184372945, 2.22, 61.69, 0.004502],
[1206, 3, 9.668464549827337e-05, 0.004834232274913669, 2.22, 61.69, 0.004502],
[1208, 3, 5.682927795940036e-05, 0.002841463897970018, 2.22, 61.69, 0.004502],
[1211, 3, 0.0004565707402447971, 0.022828537012239854, 2.22, 61.69, 0.004502],
[1212, 2, 0.0023120295635335325, 0.11560147817667664, 0, 0, 0],
[1213, 2, 0.0015200944705644054, 0.07600472352822027, 0, 0, 0],
[1214, 3, 0.00011915282035718338, 0.005957641017859169, 2.22, 61.69, 0.004502],
[1215, 3, 6.371566290142337e-05, 0.003185783145071168, 2.22, 61.69, 0.004502],
[1216, 2, 0.001836389847798722, 0.0918194923899361, 0, 0, 0],
[1217, 3, 0.0009103520173904468, 0.04551760086952234, 2.22, 61.69, 0.004502],
[1218, 3, 2.5222712787837326e-05, 0.0012611356393918663, 2.22, 61.69, 0.004502],
[1219, 3, 0.00031413998637732304, 0.015706999318866155, 2.22, 61.69, 0.004502],
[1220, 3, 0.0007785293992636844, 0.038926469963184225, 2.22, 61.69, 0.004502],
[1221, 2, 0.015036249105864135, 0.7518124552932068, 0, 0, 0],
[1222, 2, 0.005413370061286074, 0.27066850306430373, 0, 0, 0],
[1224, 2, 0.004069349627228925, 0.2034674813614463, 0, 0, 0],
[1225, 3, 0.0013077719364552604, 0.06538859682276303, 2.22, 61.69, 0.004502],
[1226, 3, 0.00013530487691860895, 0.006765243845930448, 2.22, 61.69, 0.004502],
[1227, 3, 0.0004430994008741681, 0.022154970043708404, 2.22, 61.69, 0.004502],
[1229, 2, 0.00326230849376, 0.16311542468800003, 0, 0, 0],
[1230, 3, 4.3038853117921796e-05, 0.0021519426558960896, 2.22, 61.69, 0.004502],
[1231, 3, 0.0010547456602471713, 0.05273728301235856, 2.22, 61.69, 0.004502],
[1232, 2, 0.0024697583587563036, 0.12348791793781519, 0, 0, 0],
[1233, 2, 0.03662908231521014, 1.831454115760507, 0, 0, 0],
[1235, 3, 0.0005753349157073776, 0.028766745785368877, 2.22, 61.69, 0.004502],
[1236, 2, 0.005234608320670995, 0.26173041603354974, 0, 0, 0],
[1237, 3, 0.00037060663037607794, 0.018530331518803896, 2.22, 61.69, 0.004502],
[1238, 2, 0.004788556177677227, 0.23942780888386136, 0, 0, 0],
[1239, 3, 0.0001443666373276477, 0.007218331866382386, 2.22, 61.69, 0.004502],
[1240, 2, 0.013596413154038011, 0.6798206577019006, 0, 0, 0],
[1241, 2, 0.012753479474826955, 0.6376739737413477, 0, 0, 0],
[1242, 3, 0.0009127997308274422, 0.045639986541372114, 2.22, 61.69, 0.004502],
[1243, 2, 0.0026735986239002922, 0.13367993119501462, 0, 0, 0],
[1244, 2, 0.020592901244747865, 1.0296450622373932, 0, 0, 0],
[1245, 3, 0.0002568848190566446, 0.012844240952832231, 2.22, 61.69, 0.004502],
[1246, 2, 0.003636870278584459, 0.18184351392922293, 0, 0, 0],
[1247, 3, 0.0005563890761219527, 0.027819453806097634, 2.22, 61.69, 0.004502],
[1248, 2, 0.005854245631350222, 0.2927122815675111, 0, 0, 0],
[1249, 2, 0.0024370198788740546, 0.12185099394370273, 0, 0, 0],
[1250, 3, 0.0010097431326340025, 0.05048715663170012, 2.22, 61.69, 0.004502],
[1251, 3, 0.0006748055611425185, 0.03374027805712593, 2.22, 61.69, 0.004502],
[1252, 3, 0.0004341481959299224, 0.02170740979649612, 2.22, 61.69, 0.004502],
[1253, 2, 0.002710855118359899, 0.13554275591799494, 0, 0, 0],
[1254, 2, 0.005238024431161238, 0.2619012215580619, 0, 0, 0],
[1255, 3, 0.00013510691092519703, 0.006755345546259851, 2.22, 61.69, 0.004502],
[1256, 3, 0.0005423076626973951, 0.027115383134869754, 2.22, 61.69, 0.004502],
[1257, 2, 0.0032728775519959264, 0.16364387759979634, 0, 0, 0],
[1258, 2, 0.014991588973313675, 0.7495794486656838, 0, 0, 0],
[1259, 2, 0.0042027025391020625, 0.21013512695510314, 0, 0, 0],
[1260, 3, 0.0006420511659731998, 0.032102558298659996, 2.22, 61.69, 0.004502],
[1261, 2, 0.005206399037785701, 0.2603199518892851, 0, 0, 0],
[1264, 2, 0.002079289414632396, 0.10396447073161982, 0, 0, 0],
[1266, 2, 0.00304107275514185, 0.15205363775709252, 0, 0, 0],
[1267, 3, 0.00139598557878363, 0.0697992789391815, 2.22, 61.69, 0.004502],
[1268, 3, 8.704864155159875e-05, 0.004352432077579938, 2.22, 61.69, 0.004502],
[1269, 3, 0.00012953822905644634, 0.006476911452822317, 2.22, 61.69, 0.004502],
[1270, 3, 0.0010095965444446113, 0.05047982722223056, 2.22, 61.69, 0.004502],
[1274, 2, 0.0017215032391093314, 0.08607516195546658, 0, 0, 0],
[1275, 2, 0.003247530339258952, 0.1623765169629476, 0, 0, 0],
[1276, 3, 0.0008580192206659016, 0.042900961033295076, 2.22, 61.69, 0.004502],
[1277, 2, 0.0019557910943416635, 0.09778955471708319, 0, 0, 0],
[1278, 2, 0.004985816994970686, 0.24929084974853433, 0, 0, 0],
[1280, 3, 1.588070968042346e-05, 0.0007940354840211731, 2.22, 61.69, 0.004502],
[1281, 3, 6.372411239553697e-05, 0.0031862056197768484, 2.22, 61.69, 0.004502],
[1282, 3, 0.00011135812120966316, 0.0055679060604831585, 2.22, 61.69, 0.004502],
[1283, 2, 0.08261824948992594, 4.130912474496298, 0, 0, 0],
[1285, 3, 7.4466680391949e-05, 0.00372333401959745, 2.22, 61.69, 0.004502],
[1286, 3, 0.00045325649560483503, 0.02266282478024175, 2.22, 61.69, 0.004502],
[1287, 2, 0.0038337444765644993, 0.19168722382822495, 0, 0, 0],
[1288, 2, 0.0052226286911288946, 0.2611314345564448, 0, 0, 0],
[1289, 2, 0.006545413287237602, 0.32727066436188007, 0, 0, 0],
[1290, 3, 0.00012471330228118902, 0.006235665114059451, 2.22, 61.69, 0.004502],
[1291, 2, 0.003056328898967611, 0.15281644494838056, 0, 0, 0],
[1292, 3, 0.0011946875690752071, 0.05973437845376036, 2.22, 61.69, 0.004502],
[1293, 3, 9.550400068461457e-05, 0.004775200034230728, 2.22, 61.69, 0.004502],
[1294, 3, 0.00018502224269128183, 0.009251112134564091, 2.22, 61.69, 0.004502],
[1295, 3, 0.00020469650591691907, 0.010234825295845953, 2.22, 61.69, 0.004502],
[1296, 3, 0.0007174113605388258, 0.035870568026941295, 2.22, 61.69, 0.004502],
[1297, 2, 0.0045112352431387875, 0.22556176215693938, 0, 0, 0],
[1298, 3, 0.0001131075724370497, 0.005655378621852487, 2.22, 61.69, 0.004502],
[1299, 3, 5.492571691566938e-05, 0.0027462858457834695, 2.22, 61.69, 0.004502],
[1300, 3, 0.0007153342650551412, 0.035766713252757064, 2.22, 61.69, 0.004502],
[1301, 2, 0.001806752808775971, 0.09033764043879855, 0, 0, 0],
[1302, 3, 0.00012661267721650885, 0.006330633860825443, 2.22, 61.69, 0.004502],
[1303, 3, 0.00010995877904399887, 0.005497938952199944, 2.22, 61.69, 0.004502],
[1306, 3, 4.8654966891256905e-05, 0.0024327483445628455, 2.22, 61.69, 0.004502],
[1307, 3, 8.126951836258918e-06, 0.00040634759181294586, 2.22, 61.69, 0.004502],
[1308, 3, 0.00013144637498283085, 0.006572318749141544, 2.22, 61.69, 0.004502],
[1312, 2, 0.016696303623916272, 0.8348151811958137, 0, 0, 0],
[1316, 3, 7.04275314577295e-05, 0.0035213765728864753, 2.22, 61.69, 0.004502],
[1317, 3, 0.0012212829758454192, 0.06106414879227096, 2.22, 61.69, 0.004502],
[1319, 3, 0.0008998454349854617, 0.04499227174927309, 2.22, 61.69, 0.004502],
[1323, 2, 0.011180599116346964, 0.5590299558173483, 0, 0, 0],
[1326, 2, 0.0019278797396950565, 0.09639398698475282, 0, 0, 0],
[1327, 2, 0.0020073517772337163, 0.1003675888616858, 0, 0, 0],
[1328, 3, 0.0007715140121389826, 0.038575700606949134, 2.22, 61.69, 0.004502],
[1329, 2, 0.00554315071182015, 0.27715753559100753, 0, 0, 0],
[1331, 3, 8.904899263903175e-06, 0.00044524496319515874, 2.22, 61.69, 0.004502],
[1333, 3, 0.0011571874049730807, 0.057859370248654035, 2.22, 61.69, 0.004502],
[1336, 3, 0.0007735478972752508, 0.038677394863762544, 2.22, 61.69, 0.004502],
[1337, 2, 0.007722987880773172, 0.3861493940386586, 0, 0, 0],
[1339, 3, 0.0003752794590235899, 0.0187639729511795, 2.22, 61.69, 0.004502],
[1340, 2, 0.004462598113304154, 0.22312990566520774, 0, 0, 0],
[1345, 3, 0.00010074256287345797, 0.005037128143672898, 2.22, 61.69, 0.004502],
[1346, 2, 0.0054678046188682185, 0.2733902309434109, 0, 0, 0],
[1348, 3, 0.0014456315404578254, 0.07228157702289127, 2.22, 61.69, 0.004502],
[1349, 3, 0.0026962338610516797, 0.13481169305258398, 2.22, 61.69, 0.004502],
[1356, 2, 0.002636881548268083, 0.13184407741340415, 0, 0, 0],
[1357, 2, 0.0019363899944042477, 0.09681949972021239, 0, 0, 0],
[1359, 2, 0.0023553935641064364, 0.11776967820532185, 0, 0, 0],
[1360, 3, 0.000565091809154255, 0.028254590457712756, 2.22, 61.69, 0.004502],
[1361, 2, 0.0025724975441016222, 0.12862487720508112, 0, 0, 0],
[1362, 2, 0.0026756494821448132, 0.13378247410724067, 0, 0, 0],
[1366, 3, 4.2343831004378955e-05, 0.0021171915502189477, 2.22, 61.69, 0.004502],
[1367, 3, 0.0011124687101064913, 0.055623435505324566, 2.22, 61.69, 0.004502],
[1372, 2, 0.00613035230614738, 0.30651761530736904, 0, 0, 0],
[1373, 3, 0.0010501376534794331, 0.052506882673971654, 2.22, 61.69, 0.004502],
[1374, 2, 0.006889508467327262, 0.3444754233663631, 0, 0, 0],
[1375, 2, 0.003897629175102736, 0.1948814587551368, 0, 0, 0],
[1376, 2, 0.011218109707548912, 0.5609054853774457, 0, 0, 0],
[1377, 2, 0.012875261783839766, 0.6437630891919884, 0, 0, 0],
[1378, 2, 0.013216346692985385, 0.6608173346492693, 0, 0, 0],
[1379, 3, 2.0994119942294153e-05, 0.0010497059971147078, 2.22, 61.69, 0.004502],
[1380, 3, 3.735608140112999e-05, 0.0018678040700564997, 2.22, 61.69, 0.004502],
[1381, 3, 2.6478613103564872e-05, 0.0013239306551782435, 2.22, 61.69, 0.004502],
[1382, 2, 0.004268628511686155, 0.2134314255843078, 0, 0, 0],
[1383, 2, 0.0035099682052807594, 0.17549841026403798, 0, 0, 0],
[1384, 3, 0.00014191591891127354, 0.007095795945563678, 2.22, 61.69, 0.004502],
[1385, 3, 3.853419006725922e-06, 0.00019267095033629616, 2.22, 61.69, 0.004502],
[1386, 3, 2.604729428376948e-05, 0.0013023647141884739, 2.22, 61.69, 0.004502],
[1387, 3, 0.0001185059054709369, 0.0059252952735468455, 2.22, 61.69, 0.004502],
[1388, 3, 2.8576481980220802e-05, 0.00142882409901104, 2.22, 61.69, 0.004502],
[1389, 3, 6.57422386039361e-06, 0.0003287111930196805, 2.22, 61.69, 0.004502],
[1390, 3, 0.0001266217424999237, 0.006331087124996186, 2.22, 61.69, 0.004502],
[1391, 3, 1.5251376647900077e-05, 0.0007625688323950039, 2.22, 61.69, 0.004502],
[1392, 3, 0.0007869172972473572, 0.03934586486236786, 2.22, 61.69, 0.004502],
[1393, 3, 3.6579516767363706e-05, 0.0018289758383681852, 2.22, 61.69, 0.004502],
[1394, 3, 2.87602853624818e-05, 0.00143801426812409, 2.22, 61.69, 0.004502],
[1395, 3, 2.0205635904803567e-06, 0.00010102817952401784, 2.22, 61.69, 0.004502],
[1396, 3, 6.76107779311172e-07, 3.38053889655586e-05, 2.22, 61.69, 0.004502],
[1397, 3, 0.0013130028586282839, 0.06565014293141419, 2.22, 61.69, 0.004502],
[1398, 3, 0.00014978670641580512, 0.007489335320790255, 2.22, 61.69, 0.004502],
[1399, 3, 0.00048061967833614875, 0.024030983916807438, 2.22, 61.69, 0.004502],
[1400, 3, 3.446200374165619e-05, 0.0017231001870828095, 2.22, 61.69, 0.004502],
[1401, 2, 0.003257860214767805, 0.16289301073839027, 0, 0, 0],
[1402, 3, 0.0009310354825063851, 0.04655177412531926, 2.22, 61.69, 0.004502],
[1403, 2, 0.007617262031172502, 0.38086310155862513, 0, 0, 0],
[1404, 2, 0.008581667499251882, 0.42908337496259413, 0, 0, 0],
[1405, 3, 0.0012645628517994104, 0.06322814258997052, 2.22, 61.69, 0.004502],
[1406, 3, 0.0006411216112914482, 0.0320560805645724, 2.22, 61.69, 0.004502],
[1407, 3, 5.391959754466621e-06, 0.0002695979877233311, 2.22, 61.69, 0.004502],
[1408, 3, 0.0013913490802911078, 0.0695674540145554, 2.22, 61.69, 0.004502],
[1409, 3, 0.000385302007428299, 0.01926510037141495, 2.22, 61.69, 0.004502],
[1410, 3, 0.0012221772966867837, 0.06110886483433919, 2.22, 61.69, 0.004502],
[1411, 3, 0.0013752497337206917, 0.0687624866860346, 2.22, 61.69, 0.004502],
[1418, 2, 0.002590388417024481, 0.12951942085122406, 0, 0, 0],
[1419, 3, 0.0009263341436855428, 0.046316707184277134, 2.22, 61.69, 0.004502],
[1421, 3, 0.00019338216325404301, 0.009669108162702151, 2.22, 61.69, 0.004502],
[1422, 3, 0.00012711670050993612, 0.006355835025496807, 2.22, 61.69, 0.004502],
[1423, 3, 5.332053829989614e-05, 0.002666026914994807, 2.22, 61.69, 0.004502],
[1424, 2, 0.01394783725195249, 0.6973918625976245, 0, 0, 0],
[1425, 3, 0.0013602274146640447, 0.06801137073320224, 2.22, 61.69, 0.004502],
[1426, 2, 0.0026606709519511967, 0.13303354759755984, 0, 0, 0],
[1427, 2, 0.01962784005101204, 0.981392002550602, 0, 0, 0],
[1428, 2, 0.010783782576601515, 0.5391891288300759, 0, 0, 0],
[1429, 3, 0.0003437800286247544, 0.017189001431237718, 2.22, 61.69, 0.004502],
[1431, 2, 0.012601262227763347, 0.6300631113881674, 0, 0, 0],
[1432, 3, 0.0007676953741931287, 0.03838476870965644, 2.22, 61.69, 0.004502],
[1433, 2, 0.08207564315805406, 4.103782157902703, 0, 0, 0],
[1434, 2, 0.006330547929406013, 0.3165273964703006, 0, 0, 0],
[1435, 2, 0.005520334862536408, 0.2760167431268204, 0, 0, 0],
[1436, 2, 0.006266510483771511, 0.31332552418857557, 0, 0, 0],
[1437, 2, 0.006965405094300177, 0.3482702547150089, 0, 0, 0],
[1438, 2, 0.016649246120510355, 0.8324623060255177, 0, 0, 0],
[1439, 2, 0.005163549230743521, 0.2581774615371761, 0, 0, 0],
[1440, 3, 2.809528726617519e-05, 0.0014047643633087593, 2.22, 61.69, 0.004502],
[1443, 2, 0.006557506818224797, 0.3278753409112398, 0, 0, 0],
[1444, 3, 0.00024027790782441553, 0.012013895391220778, 2.22, 61.69, 0.004502],
[1445, 3, 0.0006346891569050976, 0.03173445784525488, 2.22, 61.69, 0.004502],
[1446, 2, 0.027080541200081264, 1.3540270600040631, 0, 0, 0],
[1447, 2, 0.0025668513053097495, 0.12834256526548746, 0, 0, 0],
[1448, 3, 0.00047896583949883246, 0.023948291974941624, 2.22, 61.69, 0.004502],
[1449, 2, 0.005622586466236279, 0.281129323311814, 0, 0, 0],
[1450, 2, 0.0037724056227270084, 0.18862028113635043, 0, 0, 0],
[1451, 2, 0.0043416728967246255, 0.21708364483623127, 0, 0, 0],
[1452, 3, 0.0015322750739690742, 0.0766137536984537, 2.22, 61.69, 0.004502],
[1453, 2, 0.00164580537351267, 0.08229026867563351, 0, 0, 0],
[1454, 2, 0.004358757471622235, 0.21793787358111177, 0, 0, 0],
[1455, 3, 2.6431954760254552e-05, 0.0013215977380127274, 2.22, 61.69, 0.004502],
[1456, 2, 0.0031865889687578697, 0.15932944843789354, 0, 0, 0],
[1457, 3, 6.16570766178442e-05, 0.0030828538308922105, 2.22, 61.69, 0.004502],
[1458, 3, 7.579836510008574e-06, 0.0003789918255004287, 2.22, 61.69, 0.004502],
[1459, 3, 0.00014103992116575747, 0.007051996058287875, 2.22, 61.69, 0.004502],
[1460, 2, 0.0029359105708128426, 0.14679552854064215, 0, 0, 0],
[1461, 3, 0.0005444349786754551, 0.027221748933772758, 2.22, 61.69, 0.004502],
[1462, 3, 7.302838886117809e-05, 0.0036514194430589046, 2.22, 61.69, 0.004502],
[1463, 3, 1.9345067546824242e-05, 0.0009672533773412123, 2.22, 61.69, 0.004502],
[1464, 2, 0.00555113722863836, 0.27755686143191804, 0, 0, 0],
[1465, 3, 0.00019422903183873174, 0.009711451591936586, 2.22, 61.69, 0.004502],
[1466, 3, 0.00023267440889044382, 0.011633720444522192, 2.22, 61.69, 0.004502],
[1467, 3, 6.230968547665832e-05, 0.0031154842738329164, 2.22, 61.69, 0.004502],
[1468, 3, 0.000682028770294799, 0.03410143851473995, 2.22, 61.69, 0.004502],
[1469, 2, 0.0019110220949797936, 0.09555110474898967, 0, 0, 0],
[1470, 2, 0.005027084884666319, 0.2513542442333159, 0, 0, 0],
[1471, 2, 0.010132763321185349, 0.5066381660592674, 0, 0, 0],
[1472, 3, 0.0003059667942057653, 0.015298339710288265, 2.22, 61.69, 0.004502],
[1473, 3, 0.00032734317531874445, 0.016367158765937223, 2.22, 61.69, 0.004502],
[1474, 3, 5.961088920363028e-05, 0.0029805444601815143, 2.22, 61.69, 0.004502],
[1475, 3, 2.1612940035331083e-05, 0.0010806470017665543, 2.22, 61.69, 0.004502],
[1476, 2, 0.015946059282369706, 0.7973029641184852, 0, 0, 0],
[1477, 3, 0.00043810500622394204, 0.021905250311197104, 2.22, 61.69, 0.004502],
[1483, 3, 9.660389626148084e-05, 0.004830194813074042, 2.22, 61.69, 0.004502],
[1484, 3, 7.614403753328752e-07, 3.807201876664376e-05, 2.22, 61.69, 0.004502],
[1485, 3, 1.4346798697423479e-05, 0.000717339934871174, 2.22, 61.69, 0.004502],
[1486, 3, 7.381146075564043e-05, 0.0036905730377820214, 2.22, 61.69, 0.004502],
[1489, 3, 3.2310278483629793e-06, 0.00016155139241814899, 2.22, 61.69, 0.004502],
[1490, 2, 0.04981318633597547, 2.4906593167987734, 0, 0, 0],
[1491, 2, 0.0026699853794402576, 0.1334992689720129, 0, 0, 0],
[1492, 2, 0.0076418065269222854, 0.3820903263461143, 0, 0, 0],
[1493, 2, 0.0028869080227441985, 0.14434540113720992, 0, 0, 0],
[1494, 2, 0.016943493863839063, 0.8471746931919532, 0, 0, 0],
[1495, 2, 0.0018696204410900048, 0.09348102205450025, 0, 0, 0],
[1497, 2, 0.002258841518401283, 0.11294207592006414, 0, 0, 0],
[1498, 2, 0.0026849613830667303, 0.13424806915333654, 0, 0, 0],
[1501, 3, 0.00020733725832667443, 0.010366862916333723, 2.22, 61.69, 0.004502],
[1503, 3, 0.0011656166063189967, 0.058280830315949834, 2.22, 61.69, 0.004502],
[1504, 2, 0.0050671737326107545, 0.25335868663053773, 0, 0, 0],
[1505, 3, 0.0006784268178891655, 0.03392134089445827, 2.22, 61.69, 0.004502],
[1506, 2, 0.0016890886912840956, 0.08445443456420476, 0, 0, 0],
[1507, 3, 0.00045016028763325084, 0.02250801438166254, 2.22, 61.69, 0.004502],
[1510, 2, 0.0027126824885318744, 0.13563412442659373, 0, 0, 0],
[1511, 2, 0.003936868172270002, 0.19684340861350008, 0, 0, 0],
[1512, 2, 0.0016255674254345136, 0.08127837127172569, 0, 0, 0],
[1513, 3, 0.0005878505520583088, 0.029392527602915438, 2.22, 61.69, 0.004502],
[1518, 3, 1.7457278618548527e-05, 0.0008728639309274264, 2.22, 61.69, 0.004502],
[1519, 3, 1.211636389709449e-06, 6.058181948547245e-05, 2.22, 61.69, 0.004502],
[1520, 2, 0.0025232453159792223, 0.12616226579896114, 0, 0, 0],
[1521, 3, 0.0010296395408443792, 0.051481977042218956, 2.22, 61.69, 0.004502],
[1522, 3, 0.00128741358711326, 0.064370679355663, 2.22, 61.69, 0.004502],
[1523, 3, 0.0006382714465370155, 0.03191357232685078, 2.22, 61.69, 0.004502],
[1524, 3, 0.0009325526713721043, 0.04662763356860522, 2.22, 61.69, 0.004502],
[1525, 2, 0.002242041892516081, 0.11210209462580406, 0, 0, 0],
[1526, 3, 0.001438489342064215, 0.07192446710321075, 2.22, 61.69, 0.004502],
[1527, 2, 0.004089463387653119, 0.20447316938265592, 0, 0, 0],
[1528, 3, 0.0026347607821089578, 0.13173803910544787, 2.22, 61.69, 0.004502],
[1529, 2, 0.0034390643554320474, 0.17195321777160236, 0, 0, 0],
[1530, 2, 0.0023438942580544264, 0.11719471290272133, 0, 0, 0],
[1531, 2, 0.01170243432457441, 0.5851217162287206, 0, 0, 0],
[1532, 3, 0.0012309345041419243, 0.061546725207096226, 2.22, 61.69, 0.004502],
[1534, 3, 0.0009336557350387817, 0.046682786751939084, 2.22, 61.69, 0.004502],
[1535, 3, 0.0003089506133703436, 0.01544753066851718, 2.22, 61.69, 0.004502],
[1536, 3, 0.0013087025779557654, 0.06543512889778827, 2.22, 61.69, 0.004502],
[1537, 2, 0.0031190581433044803, 0.155952907165224, 0, 0, 0],
[1538, 2, 0.008325357011487053, 0.41626785057435267, 0, 0, 0],
[1539, 2, 0.012844883798569344, 0.6422441899284673, 0, 0, 0],
[1540, 3, 0.00026484588609069294, 0.013242294304534647, 2.22, 61.69, 0.004502],
[1541, 3, 0.000218355306613717, 0.01091776533068585, 2.22, 61.69, 0.004502],
[1542, 2, 0.003201430108581241, 0.16007150542906207, 0, 0, 0],
[1543, 3, 0.0004469209788720139, 0.022346048943600698, 2.22, 61.69, 0.004502],
[1544, 2, 0.0075587095096954215, 0.37793547548477113, 0, 0, 0],
[1545, 2, 0.011812169709970757, 0.5906084854985378, 0, 0, 0],
[1546, 2, 0.01626203379888308, 0.8131016899441541, 0, 0, 0],
[1547, 2, 0.021689594680942077, 1.084479734047104, 0, 0, 0],
[1548, 3, 0.0006302765790138034, 0.031513828950690166, 2.22, 61.69, 0.004502],
[1549, 2, 0.002377591145547329, 0.11887955727736645, 0, 0, 0],
[1550, 3, 0.00015265669894834095, 0.0076328349474170465, 2.22, 61.69, 0.004502],
[1551, 3, 0.0002810478650703147, 0.014052393253515734, 2.22, 61.69, 0.004502],
[1552, 2, 0.0034400049196165183, 0.17200024598082594, 0, 0, 0],
[1553, 2, 0.005887477616203734, 0.2943738808101867, 0, 0, 0],
[1554, 2, 0.00988883221505536, 0.494441610752768, 0, 0, 0],
[1555, 2, 0.006612300563621196, 0.3306150281810598, 0, 0, 0],
[1556, 3, 0.0025704380368004303, 0.12852190184002152, 2.22, 61.69, 0.004502],
[1557, 3, 0.0016545902148645411, 0.08272951074322706, 2.22, 61.69, 0.004502],
[1558, 3, 0.000997857734318084, 0.0498928867159042, 2.22, 61.69, 0.004502],
[1559, 2, 0.0071689247750388796, 0.35844623875194404, 0, 0, 0],
[1560, 2, 0.005500136478539206, 0.27500682392696024, 0, 0, 0],
[1561, 3, 0.0012176867577369578, 0.060884337886847884, 2.22, 61.69, 0.004502],
[1562, 2, 0.0021267851829981613, 0.10633925914990806, 0, 0, 0],
[1563, 2, 0.006763060552462782, 0.3381530276231391, 0, 0, 0],
[1564, 2, 0.0037097629455119584, 0.18548814727559793, 0, 0, 0],
[1565, 3, 0.0008173802970750437, 0.04086901485375219, 2.22, 61.69, 0.004502],
[1566, 2, 0.022834045665096173, 1.1417022832548087, 0, 0, 0],
[1567, 3, 0.0010192593449462031, 0.050962967247310156, 2.22, 61.69, 0.004502],
[1568, 2, 0.0033119271961263392, 0.16559635980631698, 0, 0, 0],
[1569, 2, 0.020926874196333774, 1.0463437098166888, 0, 0, 0],
[1570, 2, 0.015485260884033174, 0.7742630442016587, 0, 0, 0],
[1571, 2, 0.012951609260387848, 0.6475804630193925, 0, 0, 0],
[1572, 2, 0.014777724673041566, 0.7388862336520783, 0, 0, 0],
[1573, 2, 0.005118663088374955, 0.25593315441874775, 0, 0, 0],
[1574, 2, 0.009212904923280738, 0.4606452461640369, 0, 0, 0],
[1575, 2, 0.009778885596990375, 0.4889442798495187, 0, 0, 0],
[1576, 3, 0.002181187748580322, 0.10905938742901611, 2.22, 61.69, 0.004502],
[1577, 2, 0.008005977279501149, 0.4002988639750575, 0, 0, 0],
[1578, 3, 0.0010407601676569642, 0.0520380083828482, 2.22, 61.69, 0.004502],
[1579, 3, 0.0011276860415660923, 0.05638430207830462, 2.22, 61.69, 0.004502],
[1580, 3, 0.0006804077392659486, 0.034020386963297435, 2.22, 61.69, 0.004502],
[1581, 2, 0.009948964197406459, 0.4974482098703229, 0, 0, 0],
[1582, 3, 0.0005189146316653127, 0.025945731583265637, 2.22, 61.69, 0.004502],
[1583, 3, 0.00011408020039723344, 0.005704010019861674, 2.22, 61.69, 0.004502],
[1584, 2, 0.005172531192053713, 0.2586265596026857, 0, 0, 0],
[1585, 3, 0.00023460599404312107, 0.011730299702156053, 2.22, 61.69, 0.004502],
[1586, 2, 0.003903465353398814, 0.19517326766994073, 0, 0, 0],
[1587, 2, 0.012199881855085491, 0.6099940927542746, 0, 0, 0],
[1588, 2, 0.00378307114622246, 0.18915355731112304, 0, 0, 0],
[1589, 3, 0.0030729449735528206, 0.15364724867764104, 2.22, 61.69, 0.004502],
[1590, 2, 0.007580710655338087, 0.3790355327669044, 0, 0, 0],
[1591, 2, 0.009093776015663656, 0.45468880078318286, 0, 0, 0],
[1592, 3, 0.0006265841402928839, 0.03132920701464419, 2.22, 61.69, 0.004502],
[1593, 3, 0.0004572956041415501, 0.02286478020707751, 2.22, 61.69, 0.004502],
[1594, 3, 0.0006086651424190906, 0.03043325712095453, 2.22, 61.69, 0.004502],
[1595, 2, 0.0034880403567784826, 0.17440201783892412, 0, 0, 0],
[1596, 2, 0.008831829223465862, 0.4415914611732931, 0, 0, 0],
[1597, 3, 0.000182008742594501, 0.009100437129725051, 2.22, 61.69, 0.004502],
[1598, 3, 0.00030529061271902005, 0.015264530635951002, 2.22, 61.69, 0.004502],
[1599, 2, 0.005519720787392772, 0.2759860393696386, 0, 0, 0],
[1600, 3, 0.001614244976205045, 0.08071224881025225, 2.22, 61.69, 0.004502],
[1601, 3, 0.00048661007202100836, 0.02433050360105042, 2.22, 61.69, 0.004502],
[1602, 3, 0.0029066893044028437, 0.1453344652201422, 2.22, 61.69, 0.004502],
[1603, 3, 0.0016685325799989743, 0.08342662899994871, 2.22, 61.69, 0.004502],
[1604, 3, 0.001041702939552173, 0.052085146977608666, 2.22, 61.69, 0.004502],
[1605, 3, 0.0027678430872774087, 0.13839215436387042, 2.22, 61.69, 0.004502],
[1606, 3, 0.0026753886791452443, 0.13376943395726223, 2.22, 61.69, 0.004502],
[1607, 3, 0.0012347390947160326, 0.06173695473580163, 2.22, 61.69, 0.004502],
[1608, 3, 0.0012408514763572547, 0.06204257381786274, 2.22, 61.69, 0.004502],
[1609, 3, 0.0003852995894705999, 0.019264979473529995, 2.22, 61.69, 0.004502],
[1610, 3, 0.0011823083612115522, 0.05911541806057761, 2.22, 61.69, 0.004502],
[1611, 3, 0.00040874514628008496, 0.02043725731400425, 2.22, 61.69, 0.004502],
[1612, 3, 0.0006882625555892105, 0.03441312777946053, 2.22, 61.69, 0.004502],
[1613, 3, 0.0017810213186252846, 0.08905106593126422, 2.22, 61.69, 0.004502],
[1614, 3, 0.0017942381771421118, 0.0897119088571056, 2.22, 61.69, 0.004502],
[1615, 2, 0.012301707924494735, 0.6150853962247368, 0, 0, 0],
[1616, 3, 0.0004370767889493836, 0.02185383944746918, 2.22, 61.69, 0.004502],
[1617, 3, 0.0006767949224067756, 0.033839746120338784, 2.22, 61.69, 0.004502],
[1618, 3, 0.00031324035822134105, 0.015662017911067052, 2.22, 61.69, 0.004502],
[1619, 3, 0.0004258755004431256, 0.02129377502215628, 2.22, 61.69, 0.004502],
[1620, 3, 0.00012172325385948389, 0.0060861626929741945, 2.22, 61.69, 0.004502],
[1621, 3, 0.0005128855788661356, 0.025644278943306776, 2.22, 61.69, 0.004502],
[1622, 3, 0.00036246565086750607, 0.018123282543375304, 2.22, 61.69, 0.004502],
[1623, 3, 0.0013188922580034204, 0.06594461290017102, 2.22, 61.69, 0.004502],
[1624, 3, 0.000569039657188931, 0.028451982859446553, 2.22, 61.69, 0.004502],
[1625, 2, 0.0041496446244753075, 0.20748223122376538, 0, 0, 0],
[1626, 3, 0.0007562318471572959, 0.0378115923578648, 2.22, 61.69, 0.004502],
[1627, 3, 0.0006491290852077085, 0.03245645426038543, 2.22, 61.69, 0.004502],
[1628, 2, 0.00424077848658593, 0.21203892432929652, 0, 0, 0],
[1629, 2, 0.007745819403923712, 0.38729097019618564, 0, 0, 0],
[1630, 3, 0.0007927560978709857, 0.03963780489354929, 2.22, 61.69, 0.004502],
[1631, 3, 0.002068138835159234, 0.10340694175796171, 2.22, 61.69, 0.004502],
[1632, 3, 0.0016472468553829615, 0.08236234276914807, 2.22, 61.69, 0.004502],
[1633, 2, 0.004292939055943245, 0.21464695279716228, 0, 0, 0],
[1634, 3, 0.0006138952301916811, 0.030694761509584053, 2.22, 61.69, 0.004502],
[1635, 3, 0.001220154041250351, 0.061007702062517544, 2.22, 61.69, 0.004502],
[1636, 3, 0.0016030980766412253, 0.08015490383206127, 2.22, 61.69, 0.004502],
[1637, 3, 0.00185350752292672, 0.09267537614633603, 2.22, 61.69, 0.004502],
[1638, 3, 0.0007742689385781872, 0.03871344692890937, 2.22, 61.69, 0.004502],
[1639, 3, 0.0018578852217172642, 0.09289426108586321, 2.22, 61.69, 0.004502],
[1640, 3, 0.0001424533438422139, 0.007122667192110696, 2.22, 61.69, 0.004502],
[1641, 3, 0.00031981897985402917, 0.015990948992701457, 2.22, 61.69, 0.004502],
[1642, 3, 0.0007467946370447365, 0.037339731852236824, 2.22, 61.69, 0.004502],
[1643, 3, 0.00021757652186159314, 0.010878826093079658, 2.22, 61.69, 0.004502],
[1644, 3, 0.0007490442792419589, 0.03745221396209795, 2.22, 61.69, 0.004502],
[1645, 3, 0.0007095052493304704, 0.035475262466523515, 2.22, 61.69, 0.004502],
[1646, 3, 0.00023763168602681552, 0.011881584301340778, 2.22, 61.69, 0.004502],
[1647, 3, 0.0011099355850146776, 0.055496779250733874, 2.22, 61.69, 0.004502],
[1648, 2, 0.006961158588339223, 0.34805792941696123, 0, 0, 0],
[1649, 3, 0.00149488226606135, 0.0747441133030675, 2.22, 61.69, 0.004502],
[1650, 2, 0.006044926603618354, 0.30224633018091773, 0, 0, 0],
[1651, 2, 0.004929423627853539, 0.246471181392677, 0, 0, 0],
[1652, 2, 0.005050176694499043, 0.2525088347249521, 0, 0, 0],
[1653, 3, 0.0005789625471684006, 0.028948127358420027, 2.22, 61.69, 0.004502],
[1654, 3, 0.0015904792253358113, 0.07952396126679057, 2.22, 61.69, 0.004502],
[1655, 3, 0.0006869579648379821, 0.0343478982418991, 2.22, 61.69, 0.004502],
[1656, 3, 0.00017062079994473715, 0.008531039997236858, 2.22, 61.69, 0.004502],
[1657, 3, 0.00035849972013432747, 0.017924986006716374, 2.22, 61.69, 0.004502],
[1658, 3, 0.00011964508429840477, 0.00598225421492024, 2.22, 61.69, 0.004502],
[1659, 2, 0.00584268430348727, 0.2921342151743635, 0, 0, 0],
[1660, 2, 0.011901108257073838, 0.5950554128536919, 0, 0, 0],
[1661, 2, 0.008823810212990009, 0.4411905106495005, 0, 0, 0],
[1662, 3, 0.00019355309720347875, 0.00967765486017394, 2.22, 61.69, 0.004502],
[1663, 3, 0.0001019004903319335, 0.005095024516596675, 2.22, 61.69, 0.004502],
[1664, 3, 0.00010047175653957785, 0.005023587826978892, 2.22, 61.69, 0.004502],
[1665, 3, 0.0030977737905388955, 0.1548886895269448, 2.22, 61.69, 0.004502],
[1666, 3, 0.0001832113676826654, 0.00916056838413327, 2.22, 61.69, 0.004502],
[1667, 3, 0.00033277909185437904, 0.01663895459271895, 2.22, 61.69, 0.004502],
[1668, 3, 0.00025000334897604874, 0.01250016744880244, 2.22, 61.69, 0.004502],
[1669, 2, 0.004626821026153938, 0.2313410513076969, 0, 0, 0],
[1670, 2, 0.007069218502539776, 0.35346092512698885, 0, 0, 0],
[1671, 2, 0.003972823813169535, 0.19864119065847674, 0, 0, 0],
[1672, 3, 0.0006735389632841594, 0.033676948164207965, 2.22, 61.69, 0.004502],
[1673, 3, 0.00026044328652445207, 0.013022164326222602, 2.22, 61.69, 0.004502],
[1674, 3, 0.00305388930052315, 0.1526944650261575, 2.22, 61.69, 0.004502],
[1675, 3, 0.0019883967212815028, 0.09941983606407513, 2.22, 61.69, 0.004502],
[1676, 2, 0.002739550936466594, 0.1369775468233297, 0, 0, 0],
[1677, 3, 0.00045107957795936066, 0.022553978897968036, 2.22, 61.69, 0.004502],
[1678, 2, 0.0118255326080453, 0.591276630402265, 0, 0, 0],
[1679, 2, 0.004235017338470039, 0.21175086692350195, 0, 0, 0],
[1680, 2, 0.0033198512979085376, 0.1659925648954269, 0, 0, 0],
[1681, 3, 0.001101391669580788, 0.0550695834790394, 2.22, 61.69, 0.004502],
[1682, 3, 0.0025396334158164146, 0.12698167079082073, 2.22, 61.69, 0.004502],
[1683, 3, 0.0005850385990722994, 0.02925192995361497, 2.22, 61.69, 0.004502],
[1684, 3, 0.0014692548587692284, 0.07346274293846142, 2.22, 61.69, 0.004502],
[1685, 2, 0.0023379729437724324, 0.11689864718862161, 0, 0, 0],
[1686, 2, 0.0027140500311261455, 0.13570250155630728, 0, 0, 0],
[1687, 2, 0.00713129246574986, 0.35656462328749305, 0, 0, 0],
[1688, 3, 0.0011560206217410538, 0.057801031087052694, 2.22, 61.69, 0.004502],
[1689, 2, 0.0050663820052153806, 0.25331910026076904, 0, 0, 0],
[1690, 2, 0.006797488746056826, 0.3398744373028413, 0, 0, 0],
[1691, 2, 0.008600361654412853, 0.43001808272064274, 0, 0, 0],
[1692, 3, 0.001111987887564283, 0.055599394378214144, 2.22, 61.69, 0.004502],
[1693, 2, 0.005489990852267899, 0.27449954261339493, 0, 0, 0],
[1694, 2, 0.003415900039070191, 0.17079500195350955, 0, 0, 0],
[1695, 3, 0.0014726781149470127, 0.07363390574735064, 2.22, 61.69, 0.004502],
[1696, 2, 0.003395862907499976, 0.1697931453749988, 0, 0, 0],
[1697, 2, 0.008710326279612261, 0.43551631398061313, 0, 0, 0],
[1698, 3, 0.0016301483386422185, 0.08150741693211093, 2.22, 61.69, 0.004502],
[1699, 3, 0.00034098029406261546, 0.017049014703130774, 2.22, 61.69, 0.004502],
[1700, 2, 0.0035539817740921757, 0.1776990887046088, 0, 0, 0],
[1701, 3, 0.00237441322043975, 0.11872066102198749, 2.22, 61.69, 0.004502],
[1702, 3, 0.000946061560194626, 0.047303078009731304, 2.22, 61.69, 0.004502],
[1703, 3, 0.0017751784315469096, 0.08875892157734548, 2.22, 61.69, 0.004502],
[1704, 2, 0.004669473718911862, 0.23347368594559312, 0, 0, 0],
[1705, 2, 0.002101765751674278, 0.10508828758371391, 0, 0, 0],
[1706, 3, 0.00025866463966033455, 0.012933231983016729, 2.22, 61.69, 0.004502],
[1707, 3, 0.0007453417235058713, 0.03726708617529356, 2.22, 61.69, 0.004502],
[1708, 3, 0.0016735901012157506, 0.08367950506078754, 2.22, 61.69, 0.004502],
[1709, 2, 0.008110566237537491, 0.4055283118768746, 0, 0, 0],
[1710, 2, 0.011690372819987969, 0.5845186409993984, 0, 0, 0],
[1711, 3, 0.0004592482403533105, 0.022962412017665527, 2.22, 61.69, 0.004502],
[1712, 2, 0.0029171136548494614, 0.14585568274247307, 0, 0, 0],
[1713, 2, 0.0057789206449012, 0.28894603224506005, 0, 0, 0],
[1714, 3, 0.002693699836091154, 0.1346849918045577, 2.22, 61.69, 0.004502],
[1715, 2, 0.009885393456059138, 0.4942696728029569, 0, 0, 0],
[1716, 2, 0.009993594261663767, 0.4996797130831883, 0, 0, 0],
[1717, 2, 0.003782973104907569, 0.18914865524537847, 0, 0, 0],
[1718, 2, 0.01920136583254073, 0.9600682916270364, 0, 0, 0],
[1719, 3, 0.0011567708515348696, 0.05783854257674348, 2.22, 61.69, 0.004502],
[1720, 2, 0.0021213818228688203, 0.10606909114344103, 0, 0, 0],
[1721, 2, 0.005229955374101585, 0.26149776870507924, 0, 0, 0],
[1722, 3, 0.0013578823440987752, 0.06789411720493876, 2.22, 61.69, 0.004502],
[1723, 3, 7.851471383507073e-05, 0.003925735691753536, 2.22, 61.69, 0.004502],
[1724, 3, 0.0010018248025824054, 0.05009124012912028, 2.22, 61.69, 0.004502],
[1725, 2, 0.0035492089814250986, 0.1774604490712549, 0, 0, 0],
[1726, 2, 0.004856804743814979, 0.242840237190749, 0, 0, 0],
[1727, 3, 2.9058085077735173e-05, 0.0014529042538867585, 2.22, 61.69, 0.004502],
[1728, 2, 0.0041560648360189495, 0.2078032418009475, 0, 0, 0],
[1729, 2, 0.01405393337667418, 0.7026966688337091, 0, 0, 0],
[1730, 2, 0.0020014537525731364, 0.10007268762865684, 0, 0, 0],
[1731, 2, 0.009670389941702119, 0.483519497085106, 0, 0, 0],
[1732, 2, 0.024437189395982176, 1.221859469799109, 0, 0, 0],
[1733, 2, 0.003861458761299993, 0.19307293806499964, 0, 0, 0],
[1734, 2, 0.004925863110940614, 0.24629315554703074, 0, 0, 0],
[1735, 2, 0.00979677930651881, 0.48983896532594057, 0, 0, 0],
[1736, 2, 0.005693890678315697, 0.28469453391578486, 0, 0, 0],
[1737, 2, 0.012380561624103732, 0.6190280812051866, 0, 0, 0],
[1738, 2, 0.007387942256829133, 0.3693971128414567, 0, 0, 0],
[1739, 3, 0.0021343280894861407, 0.10671640447430704, 2.22, 61.69, 0.004502],
[1740, 2, 0.004242367600347797, 0.21211838001738986, 0, 0, 0],
[1741, 3, 0.0012849231541345082, 0.06424615770672543, 2.22, 61.69, 0.004502],
[1742, 3, 0.0008340627998606473, 0.041703139993032365, 2.22, 61.69, 0.004502],
[1743, 3, 5.13936026299759e-05, 0.002569680131498795, 2.22, 61.69, 0.004502],
[1744, 3, 0.00012396026948393012, 0.006198013474196506, 2.22, 61.69, 0.004502],
[1745, 3, 0.0010773886636756553, 0.05386943318378276, 2.22, 61.69, 0.004502],
[1746, 2, 0.008864688760929952, 0.44323443804649765, 0, 0, 0],
[1747, 3, 0.0008635336374536576, 0.04317668187268288, 2.22, 61.69, 0.004502],
[1748, 2, 0.004279314394263734, 0.2139657197131867, 0, 0, 0],
[1749, 2, 0.013923101334801936, 0.6961550667400968, 0, 0, 0],
[1750, 3, 0.0014127769401448094, 0.07063884700724048, 2.22, 61.69, 0.004502],
[1751, 3, 0.0011724169956124854, 0.05862084978062426, 2.22, 61.69, 0.004502],
[1752, 2, 0.00867015679256696, 0.43350783962834794, 0, 0, 0],
[1753, 2, 0.005046485287334805, 0.25232426436674027, 0, 0, 0],
[1754, 2, 0.025997910300901962, 1.2998955150450984, 0, 0, 0],
[1755, 3, 0.002946085388035321, 0.14730426940176608, 2.22, 61.69, 0.004502],
[1756, 2, 0.005971989172727978, 0.29859945863639886, 0, 0, 0],
[1757, 2, 0.012546975461748345, 0.6273487730874172, 0, 0, 0],
[1758, 2, 0.019829004030811562, 0.9914502015405783, 0, 0, 0],
[1759, 2, 0.009966033571801232, 0.4983016785900616, 0, 0, 0],
[1760, 2, 0.0073012273284985265, 0.36506136642492637, 0, 0, 0],
[1761, 3, 0.0030840374161649965, 0.15420187080824985, 2.22, 61.69, 0.004502],
[1762, 2, 0.0068167731133854026, 0.34083865566927013, 0, 0, 0],
[1763, 2, 0.005738278867752243, 0.28691394338761217, 0, 0, 0],
[1764, 3, 0.0014002305130149393, 0.07001152565074696, 2.22, 61.69, 0.004502],
[1765, 2, 0.007146048220397755, 0.35730241101988774, 0, 0, 0],
[1766, 2, 0.006354178845284036, 0.31770894226420177, 0, 0, 0],
[1767, 2, 0.006085505697192886, 0.30427528485964433, 0, 0, 0],
[1768, 2, 0.010174366269247585, 0.5087183134623792, 0, 0, 0],
[1769, 2, 0.01499759455891321, 0.7498797279456606, 0, 0, 0],
[1770, 2, 0.030509885187144117, 1.525494259357206, 0, 0, 0],
[1771, 2, 0.007633743816642715, 0.38168719083213576, 0, 0, 0],
[1772, 2, 0.01732976708969246, 0.866488354484623, 0, 0, 0],
[1773, 2, 0.03398423777684978, 1.6992118888424892, 0, 0, 0],
[1774, 2, 0.0056389958408761785, 0.28194979204380893, 0, 0, 0],
[1775, 2, 0.012591536776481504, 0.6295768388240752, 0, 0, 0],
[1776, 2, 0.007079444590369237, 0.35397222951846186, 0, 0, 0],
[1777, 2, 0.012697889587441325, 0.6348944793720663, 0, 0, 0],
[1778, 2, 0.005097454405191964, 0.2548727202595982, 0, 0, 0],
[1779, 2, 0.004996513096064047, 0.24982565480320235, 0, 0, 0],
[1780, 2, 0.006230787068824076, 0.3115393534412038, 0, 0, 0],
[1781, 3, 0.00021502447244349144, 0.010751223622174573, 2.22, 61.69, 0.004502],
[1782, 3, 0.0002923350461609784, 0.014616752308048923, 2.22, 61.69, 0.004502],
[1783, 3, 0.000315606657620068, 0.015780332881003403, 2.22, 61.69, 0.004502],
[1784, 2, 0.015337461016832239, 0.766873050841612, 0, 0, 0],
[1785, 2, 0.016202255111263022, 0.8101127555631511, 0, 0, 0],
[1786, 2, 0.01246935769334627, 0.6234678846673135, 0, 0, 0],
[1787, 2, 0.007834284018991623, 0.39171420094958115, 0, 0, 0],
[1788, 3, 0.0006039154901225237, 0.03019577450612619, 2.22, 61.69, 0.004502],
[1789, 3, 0.0015315823649962818, 0.0765791182498141, 2.22, 61.69, 0.004502],
[1790, 3, 8.990133662468075e-05, 0.004495066831234037, 2.22, 61.69, 0.004502],
[1791, 3, 7.455032871317029e-05, 0.0037275164356585146, 2.22, 61.69, 0.004502],
[1792, 3, 0.0005675023214651282, 0.028375116073256407, 2.22, 61.69, 0.004502],
[1793, 3, 0.002656157006665058, 0.1328078503332529, 2.22, 61.69, 0.004502],
[1794, 3, 0.0004212921062352398, 0.02106460531176199, 2.22, 61.69, 0.004502],
[1795, 3, 0.0002123674254215119, 0.010618371271075596, 2.22, 61.69, 0.004502],
[1796, 3, 0.00031775046703264725, 0.015887523351632366, 2.22, 61.69, 0.004502],
[1797, 2, 0.00403691835051508, 0.201845917525754, 0, 0, 0],
[1798, 3, 0.000944473672940868, 0.04722368364704341, 2.22, 61.69, 0.004502],
[1799, 2, 0.003253270301259914, 0.1626635150629957, 0, 0, 0],
[1800, 2, 0.0026467966673667637, 0.1323398333683382, 0, 0, 0],
[1801, 3, 0.0013373311645223187, 0.06686655822611594, 2.22, 61.69, 0.004502],
[1802, 3, 0.0007197108874813503, 0.035985544374067514, 2.22, 61.69, 0.004502],
[1803, 3, 0.0009665525104250152, 0.048327625521250764, 2.22, 61.69, 0.004502],
[1804, 2, 0.025409608772093598, 1.27048043860468, 0, 0, 0],
[1805, 3, 0.001477270474113474, 0.0738635237056737, 2.22, 61.69, 0.004502],
[1806, 3, 0.0013667817016994666, 0.06833908508497333, 2.22, 61.69, 0.004502],
[1807, 3, 0.0009076502282063987, 0.045382511410319945, 2.22, 61.69, 0.004502],
[1808, 2, 0.007528838066696213, 0.37644190333481065, 0, 0, 0],
[1809, 3, 0.002102833294320084, 0.10514166471600422, 2.22, 61.69, 0.004502],
[1810, 2, 0.004719861321134895, 0.23599306605674475, 0, 0, 0],
[1811, 2, 0.001672050348954162, 0.0836025174477081, 0, 0, 0],
[1812, 3, 0.0030140928414828165, 0.15070464207414083, 2.22, 61.69, 0.004502],
[1813, 2, 0.011516130642990736, 0.5758065321495368, 0, 0, 0],
[1814, 2, 0.002392750221002072, 0.11963751105010362, 0, 0, 0],
[1815, 2, 0.0020324845593476418, 0.10162422796738207, 0, 0, 0],
[1816, 3, 0.000983018960981752, 0.0491509480490876, 2.22, 61.69, 0.004502],
[1817, 2, 0.017864499165755984, 0.8932249582877992, 0, 0, 0],
[1818, 2, 0.011046350969132132, 0.5523175484566066, 0, 0, 0],
[1819, 3, 9.793425792119684e-05, 0.004896712896059842, 2.22, 61.69, 0.004502],
[1820, 2, 0.005074724090318581, 0.253736204515929, 0, 0, 0],
[1821, 2, 0.012520998202122803, 0.6260499101061401, 0, 0, 0],
[1822, 2, 0.010875476397094096, 0.5437738198547047, 0, 0, 0],
[1823, 2, 0.008368758642072162, 0.41843793210360813, 0, 0, 0],
[1824, 2, 0.0021616183697018014, 0.10808091848509005, 0, 0, 0],
[1825, 2, 0.0025970025810079836, 0.12985012905039917, 0, 0, 0],
[1826, 2, 0.004717432235769138, 0.23587161178845692, 0, 0, 0],
[1827, 3, 0.0010473607763716022, 0.05236803881858012, 2.22, 61.69, 0.004502],
[1828, 3, 0.001360469510306804, 0.0680234755153402, 2.22, 61.69, 0.004502],
[1830, 3, 0.001765013532013441, 0.08825067660067205, 2.22, 61.69, 0.004502],
[1831, 2, 0.004449336207686825, 0.2224668103843413, 0, 0, 0],
[1832, 3, 0.001690901876552968, 0.08454509382764841, 2.22, 61.69, 0.004502],
[1833, 2, 0.005179663380052178, 0.2589831690026089, 0, 0, 0],
[1834, 2, 0.006527235089427834, 0.32636175447139176, 0, 0, 0],
[1836, 3, 0.00021912289073146074, 0.010956144536573037, 2.22, 61.69, 0.004502],
[1837, 3, 0.0004122879579140169, 0.020614397895700843, 2.22, 61.69, 0.004502],
[1838, 3, 0.001628531485618897, 0.08142657428094485, 2.22, 61.69, 0.004502],
[1839, 2, 0.011697833115635535, 0.5848916557817768, 0, 0, 0],
[1840, 2, 0.008465463985539544, 0.42327319927697715, 0, 0, 0],
[1841, 3, 0.0014631197849879433, 0.07315598924939716, 2.22, 61.69, 0.004502],
[1842, 3, 0.0004754679394685904, 0.023773396973429523, 2.22, 61.69, 0.004502],
[1843, 3, 0.0012264279861417988, 0.06132139930708994, 2.22, 61.69, 0.004502],
[1844, 3, 0.002061648212488373, 0.10308241062441864, 2.22, 61.69, 0.004502],
[1845, 3, 0.0020012780505250503, 0.10006390252625251, 2.22, 61.69, 0.004502],
[1846, 3, 0.0002387222436177512, 0.01193611218088756, 2.22, 61.69, 0.004502],
[1847, 2, 0.007653161133263645, 0.38265805666318226, 0, 0, 0],
[1848, 3, 0.0006057243836929574, 0.030286219184647873, 2.22, 61.69, 0.004502],
[1849, 3, 0.002394906091011762, 0.1197453045505881, 2.22, 61.69, 0.004502],
[1850, 3, 0.0030901892998593753, 0.1545094649929688, 2.22, 61.69, 0.004502],
[1851, 3, 0.0005065229873089011, 0.025326149365445055, 2.22, 61.69, 0.004502],
[1852, 3, 0.0023941306142429277, 0.11970653071214639, 2.22, 61.69, 0.004502],
[1853, 3, 0.001917289339589373, 0.09586446697946867, 2.22, 61.69, 0.004502],
[1854, 3, 6.576971194700433e-05, 0.0032884855973502164, 2.22, 61.69, 0.004502],
[1855, 2, 0.00774686590726215, 0.3873432953631076, 0, 0, 0],
[1856, 2, 0.004052362315850483, 0.20261811579252417, 0, 0, 0],
[1857, 3, 0.0021783820758427335, 0.10891910379213668, 2.22, 61.69, 0.004502],
[1858, 3, 0.0011079593636130858, 0.05539796818065428, 2.22, 61.69, 0.004502],
[1860, 2, 0.005358021415770059, 0.26790107078850295, 0, 0, 0],
[1861, 3, 0.0017100335257855066, 0.08550167628927534, 2.22, 61.69, 0.004502],
[1862, 3, 0.0020698307768289865, 0.10349153884144933, 2.22, 61.69, 0.004502],
[1863, 3, 0.00191391644363232, 0.095695822181616, 2.22, 61.69, 0.004502],
[1864, 2, 0.008800397207769248, 0.44001986038846247, 0, 0, 0],
[1865, 2, 0.0043352387888536065, 0.21676193944268035, 0, 0, 0],
[1866, 2, 0.006257281052932708, 0.31286405264663536, 0, 0, 0],
[1867, 3, 0.00012995244000252472, 0.006497622000126237, 2.22, 61.69, 0.004502],
[1868, 3, 0.00041083453079481484, 0.020541726539740745, 2.22, 61.69, 0.004502],
[1869, 3, 0.00017567193669280263, 0.00878359683464013, 2.22, 61.69, 0.004502],
[1870, 2, 0.003473694483557617, 0.1736847241778809, 0, 0, 0],
[1871, 2, 0.0033517040413269606, 0.16758520206634805, 0, 0, 0],
[1872, 3, 0.00010719744643252312, 0.005359872321626155, 2.22, 61.69, 0.004502],
[1873, 3, 0.000574567390652452, 0.028728369532622606, 2.22, 61.69, 0.004502],
[1874, 3, 0.00022628109654053896, 0.011314054827026949, 2.22, 61.69, 0.004502],
[1875, 3, 0.0004989555693169999, 0.02494777846585, 2.22, 61.69, 0.004502],
[1876, 3, 0.0003142782948794478, 0.015713914743972393, 2.22, 61.69, 0.004502],
[1877, 3, 7.230196727588184e-05, 0.0036150983637940923, 2.22, 61.69, 0.004502],
[1878, 3, 0.0005331263734578022, 0.026656318672890113, 2.22, 61.69, 0.004502],
[1879, 3, 0.00011159186867635697, 0.005579593433817849, 2.22, 61.69, 0.004502],
[1880, 3, 0.00244891520347455, 0.1224457601737275, 2.22, 61.69, 0.004502],
[1881, 3, 0.0002887579564064166, 0.014437897820320829, 2.22, 61.69, 0.004502],
[1882, 3, 0.00032599010771041975, 0.01629950538552099, 2.22, 61.69, 0.004502],
[1883, 3, 0.00044187502678609845, 0.022093751339304926, 2.22, 61.69, 0.004502],
[1884, 3, 0.00037340729038742344, 0.018670364519371176, 2.22, 61.69, 0.004502],
[1885, 3, 0.0030245916943440585, 0.15122958471720294, 2.22, 61.69, 0.004502],
[1886, 3, 0.0003345690401481447, 0.016728452007407236, 2.22, 61.69, 0.004502],
[1887, 3, 0.0010782856336352766, 0.053914281681763834, 2.22, 61.69, 0.004502],
[1888, 3, 0.0002636376916630472, 0.01318188458315236, 2.22, 61.69, 0.004502],
[1889, 2, 0.005814578382053085, 0.29072891910265425, 0, 0, 0],
[1890, 3, 0.0015815352363784706, 0.07907676181892354, 2.22, 61.69, 0.004502],
[1891, 3, 0.000992315529797541, 0.049615776489877056, 2.22, 61.69, 0.004502],
[1892, 3, 0.001259940613113676, 0.0629970306556838, 2.22, 61.69, 0.004502],
[1893, 3, 0.001665887236274936, 0.0832943618137468, 2.22, 61.69, 0.004502],
[1894, 3, 0.001079038206318279, 0.05395191031591395, 2.22, 61.69, 0.004502],
[1895, 3, 8.952647871728964e-06, 0.00044763239358644815, 2.22, 61.69, 0.004502],
[1896, 3, 0.0028811650323339066, 0.14405825161669536, 2.22, 61.69, 0.004502],
[1897, 3, 0.0009437630096352837, 0.04718815048176419, 2.22, 61.69, 0.004502],
[1898, 3, 0.0006406905245851681, 0.03203452622925841, 2.22, 61.69, 0.004502],
[1899, 3, 0.0007639753017939761, 0.0381987650896988, 2.22, 61.69, 0.004502],
[1900, 2, 0.004972924117850934, 0.2486462058925467, 0, 0, 0],
[1901, 2, 0.00850139874298526, 0.42506993714926306, 0, 0, 0],
[1902, 2, 0.017941196935571776, 0.8970598467785887, 0, 0, 0],
[1903, 2, 0.008625713146876468, 0.4312856573438233, 0, 0, 0],
[1904, 2, 0.005041037225995458, 0.2520518612997729, 0, 0, 0],
[1905, 3, 0.0005831823676327024, 0.02915911838163512, 2.22, 61.69, 0.004502],
[1906, 2, 0.004606359297257753, 0.2303179648628877, 0, 0, 0],
[1907, 3, 0.0018394260494774333, 0.09197130247387167, 2.22, 61.69, 0.004502],
[1908, 2, 0.0032135207686216495, 0.1606760384310825, 0, 0, 0],
[1909, 3, 0.0012414089664561352, 0.062070448322806775, 2.22, 61.69, 0.004502],
[1910, 3, 0.0007671015575814698, 0.03835507787907349, 2.22, 61.69, 0.004502],
[1911, 3, 0.0003087108567584627, 0.015435542837923134, 2.22, 61.69, 0.004502],
[1912, 2, 0.0029895860721330676, 0.1494793036066534, 0, 0, 0],
[1913, 3, 0.00021992506558906862, 0.010996253279453432, 2.22, 61.69, 0.004502],
[1914, 3, 0.0005075021454898337, 0.025375107274491684, 2.22, 61.69, 0.004502],
[1915, 2, 0.006010235457498342, 0.3005117728749171, 0, 0, 0],
[1916, 2, 0.008326107867695528, 0.4163053933847764, 0, 0, 0],
[1917, 2, 0.01186578896955475, 0.5932894484777375, 0, 0, 0],
[1918, 2, 0.007670383184040397, 0.3835191592020199, 0, 0, 0],
[1919, 2, 0.0038936492873901407, 0.19468246436950706, 0, 0, 0],
[1920, 3, 0.000332549912725998, 0.0166274956362999, 2.22, 61.69, 0.004502],
[1921, 2, 0.007214669119559851, 0.3607334559779926, 0, 0, 0],
[1922, 2, 0.0021114418882092873, 0.10557209441046439, 0, 0, 0],
[1923, 3, 0.0006974532752472191, 0.03487266376236096, 2.22, 61.69, 0.004502],
[1924, 3, 0.00125215478705234, 0.06260773935261701, 2.22, 61.69, 0.004502],
[1925, 2, 0.008615016374090978, 0.430750818704549, 0, 0, 0],
[1926, 2, 0.0061503949380010674, 0.3075197469000534, 0, 0, 0],
[1927, 2, 0.0041806062493278656, 0.20903031246639325, 0, 0, 0],
[1928, 3, 4.419749409205862e-05, 0.0022098747046029312, 2.22, 61.69, 0.004502],
[1929, 3, 0.00020680114039434865, 0.010340057019717434, 2.22, 61.69, 0.004502],
[1930, 3, 0.0007005983174314458, 0.03502991587157229, 2.22, 61.69, 0.004502],
[1931, 3, 0.0024239654405412703, 0.12119827202706351, 2.22, 61.69, 0.004502],
[1932, 3, 0.002974438998844226, 0.1487219499422113, 2.22, 61.69, 0.004502],
[1933, 3, 0.0028163541927531156, 0.1408177096376558, 2.22, 61.69, 0.004502],
[1934, 2, 0.02440916060463032, 1.220458030231516, 0, 0, 0],
[1935, 2, 0.0039684102931149354, 0.19842051465574678, 0, 0, 0],
[1936, 3, 0.000382479275998745, 0.01912396379993725, 2.22, 61.69, 0.004502],
[1937, 2, 0.008569267103180329, 0.42846335515901646, 0, 0, 0],
[1938, 2, 0.00390989736605716, 0.19549486830285803, 0, 0, 0],
[1939, 2, 0.006557418126204308, 0.3278709063102154, 0, 0, 0],
[1940, 3, 0.001208357077306712, 0.0604178538653356, 2.22, 61.69, 0.004502],
[1941, 2, 0.006652364482492468, 0.3326182241246234, 0, 0, 0],
[1942, 2, 0.0045043949262709645, 0.22521974631354824, 0, 0, 0],
[1943, 3, 0.00023252908320092636, 0.011626454160046318, 2.22, 61.69, 0.004502],
[1944, 2, 0.005929079599901607, 0.29645397999508033, 0, 0, 0],
[1945, 3, 0.0006780918980905403, 0.03390459490452701, 2.22, 61.69, 0.004502],
[1946, 3, 8.336148919521743e-05, 0.004168074459760872, 2.22, 61.69, 0.004502],
[1947, 3, 0.0011456765961899158, 0.05728382980949579, 2.22, 61.69, 0.004502],
[1948, 2, 0.00528874503695904, 0.264437251847952, 0, 0, 0],
[1949, 3, 0.0006489211057679636, 0.03244605528839819, 2.22, 61.69, 0.004502],
[1950, 3, 5.516264040749443e-05, 0.0027581320203747214, 2.22, 61.69, 0.004502],
[1951, 3, 0.0005040498585424706, 0.025202492927123534, 2.22, 61.69, 0.004502],
[1952, 2, 0.004311440642752593, 0.21557203213762965, 0, 0, 0],
[1953, 3, 0.00056840953078036, 0.028420476539017997, 2.22, 61.69, 0.004502],
[1954, 3, 0.000810219119251976, 0.0405109559625988, 2.22, 61.69, 0.004502],
[1955, 3, 0.00042177682050851135, 0.02108884102542557, 2.22, 61.69, 0.004502],
[1956, 3, 0.002465302961964236, 0.12326514809821179, 2.22, 61.69, 0.004502],
[1957, 2, 0.008383156986347735, 0.4191578493173868, 0, 0, 0],
[1958, 2, 0.0038064615860352196, 0.190323079301761, 0, 0, 0],
[1959, 3, 0.001895272146447572, 0.09476360732237861, 2.22, 61.69, 0.004502],
[1960, 3, 0.0008645229684302137, 0.043226148421510686, 2.22, 61.69, 0.004502],
[1961, 3, 0.0011358239614237152, 0.05679119807118577, 2.22, 61.69, 0.004502],
[1962, 3, 0.00020054662262724584, 0.010027331131362293, 2.22, 61.69, 0.004502],
[1963, 3, 4.6561076539460124e-05, 0.002328053826973006, 2.22, 61.69, 0.004502],
[1964, 2, 0.0022125463299369165, 0.11062731649684583, 0, 0, 0],
[1965, 3, 0.0006342156106012513, 0.031710780530062564, 2.22, 61.69, 0.004502],
[1966, 3, 0.00017024481693603925, 0.008512240846801963, 2.22, 61.69, 0.004502],
[1967, 2, 0.006307261687354099, 0.315363084367705, 0, 0, 0],
[1968, 2, 0.01284277839703282, 0.6421389198516411, 0, 0, 0],
[1969, 3, 0.0009579929272501334, 0.04789964636250667, 2.22, 61.69, 0.004502],
[1970, 2, 0.015079725927314894, 0.7539862963657448, 0, 0, 0],
[1971, 3, 0.0009170131292254306, 0.04585065646127153, 2.22, 61.69, 0.004502],
[1972, 3, 1.8066254100367179e-06, 9.03312705018359e-05, 2.22, 61.69, 0.004502],
[1973, 3, 3.403981706132528e-05, 0.001701990853066264, 2.22, 61.69, 0.004502],
[1974, 3, 0.00017512817138826898, 0.008756408569413449, 2.22, 61.69, 0.004502],
[1975, 2, 0.005215773570935892, 0.2607886785467946, 0, 0, 0],
[1976, 3, 0.00013846418760463496, 0.006923209380231748, 2.22, 61.69, 0.004502],
[1977, 2, 0.01441202991758457, 0.7206014958792286, 0, 0, 0],
[1978, 3, 8.477175778714879e-05, 0.0042385878893574395, 2.22, 61.69, 0.004502],
[1979, 2, 0.0057457235400009896, 0.2872861770000495, 0, 0, 0],
[1980, 2, 0.006405630588486738, 0.32028152942433696, 0, 0, 0],
[1981, 2, 0.009210787821818714, 0.46053939109093567, 0, 0, 0],
[1982, 2, 0.008590405853146561, 0.4295202926573281, 0, 0, 0],
[1983, 2, 0.009930641216311431, 0.49653206081557155, 0, 0, 0],
[1984, 2, 0.0060141858887817045, 0.30070929443908523, 0, 0, 0],
[1985, 3, 0.0026722646447263376, 0.13361323223631688, 2.22, 61.69, 0.004502],
[1986, 2, 0.018993358604279195, 0.9496679302139596, 0, 0, 0],
[1987, 2, 0.02507734833641704, 1.2538674168208521, 0, 0, 0],
[1988, 2, 0.01603931294702456, 0.801965647351228, 0, 0, 0],
[1989, 3, 0.0006607023412943799, 0.033035117064719, 2.22, 61.69, 0.004502],
[1990, 2, 0.0032054713137850705, 0.16027356568925352, 0, 0, 0],
[1991, 2, 0.05408574806630115, 2.7042874033150572, 0, 0, 0],
[1992, 2, 0.014863670563732221, 0.743183528186611, 0, 0, 0],
[1993, 2, 0.015450675484657526, 0.7725337742328763, 0, 0, 0],
[1994, 2, 0.01457937125804357, 0.7289685629021785, 0, 0, 0],
[1995, 2, 0.016707875705152985, 0.8353937852576492, 0, 0, 0],
[1996, 2, 0.005812773436471257, 0.2906386718235629, 0, 0, 0],
[1997, 3, 0.0016929350309317515, 0.08464675154658759, 2.22, 61.69, 0.004502],
[1998, 3, 0.0007719976652252124, 0.038599883261260626, 2.22, 61.69, 0.004502],
[1999, 2, 0.012680481108039163, 0.6340240554019583, 0, 0, 0],
[2000, 2, 0.03691344580491312, 1.845672290245656, 0, 0, 0],
[2001, 2, 0.007786859497473928, 0.3893429748736964, 0, 0, 0],
[2002, 3, 0.001170905360798366, 0.05854526803991831, 2.22, 61.69, 0.004502],
[2003, 3, 0.0015052919810963758, 0.07526459905481879, 2.22, 61.69, 0.004502],
[2004, 3, 0.0011289420570764744, 0.05644710285382372, 2.22, 61.69, 0.004502],
[2005, 2, 0.004588211407678609, 0.22941057038393042, 0, 0, 0],
[2006, 2, 0.003798130062159873, 0.18990650310799362, 0, 0, 0],
[2007, 3, 0.00010704803006198773, 0.005352401503099387, 2.22, 61.69, 0.004502],
[2008, 3, 7.429754173230803e-06, 0.00037148770866154025, 2.22, 61.69, 0.004502]
])
ppc["branch_switch"] = array([
[586, 1, 0 ],
[589, 108, 0 ],
[590, 108, 0 ],
[593, 112, 0 ],
[594, 114, 0 ],
[595, 115, 0 ],
[598, 118, 0 ],
[599, 119, 0 ],
[601, 119, 0 ],
[602, 121, 0 ],
[603, 526, 0 ],
[607, 127, 0 ],
[608, 127, 0 ],
[609, 529, 0 ],
[612, 493, 0 ],
[613, 130, 0 ],
[614, 130, 0 ],
[616, 132, 0 ],
[617, 133, 0 ],
[618, 133, 0 ],
[619, 134, 0 ],
[621, 136, 0 ],
[623, 139, 0 ],
[624, 14, 0 ],
[628, 142, 0 ],
[629, 145, 0 ],
[632, 145, 0 ],
[637, 148, 0 ],
[638, 149, 0 ],
[640, 153, 0 ],
[641, 155, 0 ],
[642, 533, 0 ],
[643, 534, 0 ],
[646, 536, 0 ],
[647, 536, 0 ],
[650, 166, 0 ],
[652, 167, 0 ],
[655, 170, 0 ],
[661, 177, 0 ],
[663, 178, 0 ],
[666, 180, 0 ],
[668, 183, 0 ],
[670, 183, 0 ],
[672, 185, 0 ],
[676, 19, 0 ],
[681, 197, 0 ],
[683, 200, 0 ],
[687, 202, 0 ],
[689, 204, 0 ],
[691, 209, 0 ],
[693, 21, 0 ],
[694, 21, 0 ],
[695, 210, 0 ],
[696, 211, 0 ],
[697, 211, 0 ],
[698, 212, 0 ],
[702, 215, 0 ],
[704, 217, 0 ],
[705, 217, 0 ],
[707, 219, 0 ],
[708, 221, 0 ],
[711, 224, 0 ],
[713, 225, 0 ],
[714, 225, 0 ],
[716, 226, 0 ],
[717, 227, 0 ],
[719, 229, 0 ],
[722, 545, 0 ],
[724, 238, 0 ],
[727, 243, 0 ],
[728, 244, 0 ],
[730, 547, 0 ],
[731, 548, 0 ],
[732, 247, 0 ],
[735, 253, 0 ],
[737, 256, 0 ],
[738, 258, 0 ],
[741, 264, 0 ],
[742, 264, 0 ],
[743, 500, 0 ],
[746, 273, 0 ],
[747, 273, 0 ],
[748, 274, 0 ],
[749, 274, 0 ],
[750, 557, 0 ],
[753, 28, 0 ],
[758, 286, 0 ],
[760, 287, 0 ],
[762, 289, 0 ],
[763, 560, 0 ],
[765, 560, 0 ],
[767, 292, 0 ],
[769, 293, 0 ],
[771, 297, 0 ],
[772, 3, 0 ],
[774, 300, 0 ],
[776, 300, 0 ],
[777, 300, 0 ],
[778, 300, 0 ],
[781, 303, 0 ],
[784, 563, 0 ],
[785, 501, 0 ],
[787, 308, 0 ],
[788, 311, 0 ],
[789, 565, 0 ],
[791, 314, 0 ],
[792, 316, 0 ],
[795, 319, 0 ],
[801, 327, 0 ],
[802, 327, 0 ],
[805, 328, 0 ],
[806, 328, 0 ],
[808, 329, 0 ],
[809, 329, 0 ],
[811, 568, 0 ],
[814, 570, 0 ],
[816, 335, 0 ],
[817, 571, 0 ],
[821, 338, 0 ],
[822, 339, 0 ],
[826, 339, 0 ],
[829, 345, 0 ],
[830, 345, 0 ],
[835, 572, 0 ],
[836, 572, 0 ],
[837, 350, 0 ],
[839, 350, 0 ],
[841, 573, 0 ],
[843, 352, 0 ],
[844, 352, 0 ],
[845, 356, 0 ],
[849, 574, 0 ],
[850, 574, 0 ],
[851, 575, 0 ],
[853, 362, 0 ],
[854, 363, 0 ],
[855, 363, 0 ],
[856, 363, 0 ],
[857, 365, 0 ],
[858, 368, 0 ],
[859, 368, 0 ],
[860, 371, 0 ],
[862, 372, 0 ],
[863, 374, 0 ],
[864, 374, 0 ],
[865, 375, 0 ],
[867, 376, 0 ],
[869, 503, 0 ],
[870, 503, 0 ],
[872, 378, 0 ],
[873, 576, 0 ],
[874, 576, 0 ],
[875, 381, 0 ],
[877, 578, 0 ],
[882, 388, 0 ],
[883, 388, 0 ],
[886, 394, 0 ],
[889, 397, 0 ],
[890, 40, 0 ],
[895, 580, 0 ],
[896, 581, 0 ],
[898, 403, 0 ],
[900, 405, 0 ],
[902, 405, 0 ],
[903, 406, 0 ],
[905, 413, 0 ],
[906, 414, 0 ],
[907, 583, 0 ],
[909, 417, 0 ],
[913, 422, 0 ],
[915, 423, 0 ],
[917, 43, 0 ],
[918, 424, 0 ],
[920, 428, 0 ],
[921, 428, 0 ],
[922, 429, 0 ],
[923, 432, 0 ],
[925, 44, 0 ],
[928, 435, 0 ],
[931, 439, 0 ],
[934, 45, 0 ],
[935, 45, 0 ],
[936, 445, 0 ],
[937, 447, 0 ],
[939, 450, 0 ],
[940, 451, 0 ],
[942, 458, 0 ],
[944, 458, 0 ],
[945, 459, 0 ],
[950, 462, 0 ],
[952, 47, 0 ],
[958, 478, 0 ],
[959, 478, 0 ],
[960, 479, 0 ],
[963, 481, 0 ],
[965, 49, 0 ],
[966, 49, 0 ],
[967, 49, 0 ],
[968, 486, 0 ],
[969, 486, 0 ],
[971, 51, 0 ],
[973, 506, 0 ],
[976, 58, 0 ],
[977, 59, 0 ],
[978, 491, 0 ],
[981, 62, 0 ],
[982, 62, 0 ],
[983, 62, 0 ],
[984, 63, 0 ],
[985, 63, 0 ],
[986, 64, 0 ],
[987, 65, 0 ],
[988, 66, 0 ],
[990, 67, 0 ],
[993, 67, 0 ],
[994, 67, 0 ],
[995, 509, 0 ],
[997, 510, 0 ],
[999, 70, 0 ],
[1000, 71, 0 ],
[1002, 71, 0 ],
[1003, 72, 0 ],
[1007, 511, 0 ],
[1008, 75, 0 ],
[1010, 79, 0 ],
[1011, 79, 0 ],
[1012, 81, 0 ],
[1018, 514, 0 ],
[1023, 515, 0 ],
[1026, 518, 0 ],
[1027, 218, 0 ],
[1028, 221, 0 ],
[1029, 268, 0 ],
[1030, 269, 0 ],
[1031, 498, 0 ],
[1032, 1, 0 ],
[1033, 3, 0 ],
[1034, 4, 0 ],
[1035, 6, 0 ],
[1036, 7, 0 ],
[1037, 8, 0 ],
[1038, 9, 0 ],
[1039, 11, 0 ],
[1040, 14, 0 ],
[1041, 16, 0 ],
[1042, 17, 0 ],
[1044, 21, 0 ],
[1046, 25, 0 ],
[1047, 27, 0 ],
[1048, 28, 0 ],
[1049, 29, 0 ],
[1050, 31, 0 ],
[1051, 33, 0 ],
[1052, 34, 0 ],
[1053, 35, 0 ],
[1054, 36, 0 ],
[1055, 38, 0 ],
[1056, 39, 0 ],
[1057, 40, 0 ],
[1058, 41, 0 ],
[1059, 43, 0 ],
[1060, 44, 0 ],
[1061, 45, 0 ],
[1062, 47, 0 ],
[1063, 48, 0 ],
[1064, 49, 0 ],
[1065, 50, 0 ],
[1066, 51, 0 ],
[1067, 53, 0 ],
[1072, 59, 0 ],
[1073, 60, 0 ],
[1074, 62, 0 ],
[1075, 63, 0 ],
[1076, 64, 0 ],
[1077, 65, 0 ],
[1078, 66, 0 ],
[1079, 67, 0 ],
[1080, 70, 0 ],
[1081, 71, 0 ],
[1082, 72, 0 ],
[1083, 73, 0 ],
[1084, 75, 0 ],
[1085, 76, 0 ],
[1086, 77, 0 ],
[1087, 79, 0 ],
[1088, 80, 0 ],
[1089, 81, 0 ],
[1090, 82, 0 ],
[1091, 83, 0 ],
[1092, 84, 0 ],
[1093, 85, 0 ],
[1094, 88, 0 ],
[1095, 89, 0 ],
[1096, 90, 0 ],
[1097, 91, 0 ],
[1098, 92, 0 ],
[1099, 93, 0 ],
[1101, 98, 0 ],
[1102, 101, 0 ],
[1103, 102, 0 ],
[1104, 103, 0 ],
[1105, 108, 0 ],
[1106, 109, 0 ],
[1107, 110, 0 ],
[1108, 111, 0 ],
[1109, 112, 0 ],
[1110, 113, 0 ],
[1111, 114, 0 ],
[1112, 115, 0 ],
[1113, 116, 0 ],
[1114, 118, 0 ],
[1115, 119, 0 ],
[1116, 121, 0 ],
[1117, 122, 0 ],
[1118, 126, 0 ],
[1119, 127, 0 ],
[1120, 130, 0 ],
[1121, 131, 0 ],
[1122, 132, 0 ],
[1123, 133, 0 ],
[1124, 134, 0 ],
[1125, 135, 0 ],
[1126, 136, 0 ],
[1127, 137, 0 ],
[1128, 139, 0 ],
[1129, 140, 0 ],
[1130, 141, 0 ],
[1131, 142, 0 ],
[1132, 144, 0 ],
[1133, 145, 0 ],
[1134, 146, 0 ],
[1135, 147, 0 ],
[1136, 148, 0 ],
[1137, 149, 0 ],
[1138, 150, 0 ],
[1139, 151, 0 ],
[1140, 152, 0 ],
[1141, 153, 0 ],
[1142, 154, 0 ],
[1143, 155, 0 ],
[1144, 158, 0 ],
[1145, 161, 0 ],
[1146, 162, 0 ],
[1147, 163, 0 ],
[1148, 164, 0 ],
[1149, 166, 0 ],
[1150, 167, 0 ],
[1151, 168, 0 ],
[1152, 169, 0 ],
[1153, 170, 0 ],
[1154, 171, 0 ],
[1155, 172, 0 ],
[1156, 173, 0 ],
[1157, 174, 0 ],
[1158, 175, 0 ],
[1159, 176, 0 ],
[1160, 177, 0 ],
[1161, 178, 0 ],
[1162, 179, 0 ],
[1163, 180, 0 ],
[1164, 181, 0 ],
[1165, 182, 0 ],
[1166, 183, 0 ],
[1167, 185, 0 ],
[1168, 186, 0 ],
[1169, 187, 0 ],
[1170, 188, 0 ],
[1171, 189, 0 ],
[1172, 190, 0 ],
[1173, 192, 0 ],
[1174, 193, 0 ],
[1175, 194, 0 ],
[1176, 196, 0 ],
[1177, 197, 0 ],
[1178, 198, 0 ],
[1179, 199, 0 ],
[1180, 200, 0 ],
[1181, 202, 0 ],
[1182, 203, 0 ],
[1183, 204, 0 ],
[1184, 205, 0 ],
[1185, 206, 0 ],
[1186, 207, 0 ],
[1187, 208, 0 ],
[1188, 209, 0 ],
[1189, 210, 0 ],
[1190, 211, 0 ],
[1191, 212, 0 ],
[1192, 213, 0 ],
[1196, 217, 0 ],
[1197, 218, 0 ],
[1198, 219, 0 ],
[1199, 221, 0 ],
[1200, 222, 0 ],
[1204, 226, 0 ],
[1206, 228, 0 ],
[1208, 230, 0 ],
[1211, 237, 0 ],
[1212, 238, 0 ],
[1213, 239, 0 ],
[1214, 240, 0 ],
[1215, 241, 0 ],
[1216, 242, 0 ],
[1217, 243, 0 ],
[1218, 244, 0 ],
[1219, 247, 0 ],
[1220, 251, 0 ],
[1221, 252, 0 ],
[1222, 253, 0 ],
[1224, 255, 0 ],
[1225, 256, 0 ],
[1226, 257, 0 ],
[1227, 258, 0 ],
[1229, 263, 0 ],
[1230, 264, 0 ],
[1231, 266, 0 ],
[1232, 267, 0 ],
[1233, 268, 0 ],
[1235, 271, 0 ],
[1236, 272, 0 ],
[1237, 273, 0 ],
[1238, 274, 0 ],
[1239, 275, 0 ],
[1240, 276, 0 ],
[1241, 278, 0 ],
[1242, 281, 0 ],
[1243, 282, 0 ],
[1244, 283, 0 ],
[1245, 284, 0 ],
[1246, 285, 0 ],
[1247, 286, 0 ],
[1248, 287, 0 ],
[1249, 288, 0 ],
[1250, 289, 0 ],
[1251, 291, 0 ],
[1252, 292, 0 ],
[1253, 293, 0 ],
[1254, 294, 0 ],
[1255, 295, 0 ],
[1256, 296, 0 ],
[1257, 297, 0 ],
[1258, 298, 0 ],
[1259, 299, 0 ],
[1260, 300, 0 ],
[1261, 302, 0 ],
[1264, 307, 0 ],
[1266, 309, 0 ],
[1267, 311, 0 ],
[1268, 312, 0 ],
[1269, 314, 0 ],
[1270, 316, 0 ],
[1274, 321, 0 ],
[1275, 322, 0 ],
[1276, 323, 0 ],
[1277, 324, 0 ],
[1278, 325, 0 ],
[1280, 327, 0 ],
[1281, 328, 0 ],
[1282, 329, 0 ],
[1283, 331, 0 ],
[1285, 335, 0 ],
[1286, 337, 0 ],
[1287, 338, 0 ],
[1288, 339, 0 ],
[1289, 340, 0 ],
[1290, 341, 0 ],
[1291, 342, 0 ],
[1292, 343, 0 ],
[1293, 344, 0 ],
[1294, 345, 0 ],
[1295, 346, 0 ],
[1296, 347, 0 ],
[1297, 348, 0 ],
[1298, 350, 0 ],
[1299, 352, 0 ],
[1300, 353, 0 ],
[1301, 354, 0 ],
[1302, 355, 0 ],
[1303, 356, 0 ],
[1306, 361, 0 ],
[1307, 362, 0 ],
[1308, 363, 0 ],
[1312, 367, 0 ],
[1316, 371, 0 ],
[1317, 372, 0 ],
[1319, 374, 0 ],
[1323, 378, 0 ],
[1326, 384, 0 ],
[1327, 385, 0 ],
[1328, 386, 0 ],
[1329, 387, 0 ],
[1331, 390, 0 ],
[1333, 392, 0 ],
[1336, 395, 0 ],
[1337, 396, 0 ],
[1339, 398, 0 ],
[1340, 399, 0 ],
[1345, 406, 0 ],
[1346, 407, 0 ],
[1348, 410, 0 ],
[1349, 411, 0 ],
[1356, 419, 0 ],
[1357, 420, 0 ],
[1359, 422, 0 ],
[1360, 423, 0 ],
[1361, 424, 0 ],
[1362, 425, 0 ],
[1366, 429, 0 ],
[1367, 430, 0 ],
[1372, 435, 0 ],
[1373, 436, 0 ],
[1374, 437, 0 ],
[1375, 438, 0 ],
[1376, 439, 0 ],
[1377, 440, 0 ],
[1378, 441, 0 ],
[1379, 442, 0 ],
[1380, 443, 0 ],
[1381, 445, 0 ],
[1382, 446, 0 ],
[1383, 447, 0 ],
[1384, 448, 0 ],
[1385, 449, 0 ],
[1386, 450, 0 ],
[1387, 451, 0 ],
[1388, 453, 0 ],
[1389, 454, 0 ],
[1390, 455, 0 ],
[1391, 456, 0 ],
[1392, 457, 0 ],
[1393, 458, 0 ],
[1394, 459, 0 ],
[1395, 460, 0 ],
[1396, 461, 0 ],
[1397, 462, 0 ],
[1398, 463, 0 ],
[1399, 464, 0 ],
[1400, 465, 0 ],
[1401, 466, 0 ],
[1402, 467, 0 ],
[1403, 468, 0 ],
[1404, 469, 0 ],
[1405, 470, 0 ],
[1406, 471, 0 ],
[1407, 472, 0 ],
[1408, 473, 0 ],
[1409, 474, 0 ],
[1410, 475, 0 ],
[1411, 476, 0 ],
[1418, 483, 0 ],
[1419, 484, 0 ],
[1421, 486, 0 ],
[1422, 487, 0 ],
[1423, 488, 0 ],
[1424, 489, 0 ],
[1425, 490, 0 ],
[1426, 491, 0 ],
[1427, 492, 0 ],
[1428, 493, 0 ],
[1429, 494, 0 ],
[1431, 496, 0 ],
[1432, 497, 0 ],
[1433, 498, 0 ],
[1434, 499, 0 ],
[1435, 500, 0 ],
[1436, 501, 0 ],
[1437, 502, 0 ],
[1438, 503, 0 ],
[1439, 504, 0 ],
[1440, 505, 0 ],
[1443, 508, 0 ],
[1444, 509, 0 ],
[1445, 510, 0 ],
[1446, 511, 0 ],
[1447, 512, 0 ],
[1448, 513, 0 ],
[1449, 514, 0 ],
[1450, 515, 0 ],
[1451, 516, 0 ],
[1452, 517, 0 ],
[1453, 518, 0 ],
[1454, 519, 0 ],
[1455, 520, 0 ],
[1456, 521, 0 ],
[1457, 522, 0 ],
[1458, 523, 0 ],
[1459, 524, 0 ],
[1460, 525, 0 ],
[1461, 526, 0 ],
[1462, 527, 0 ],
[1463, 528, 0 ],
[1464, 529, 0 ],
[1465, 530, 0 ],
[1466, 531, 0 ],
[1467, 532, 0 ],
[1468, 533, 0 ],
[1469, 534, 0 ],
[1470, 535, 0 ],
[1471, 536, 0 ],
[1472, 537, 0 ],
[1473, 538, 0 ],
[1474, 539, 0 ],
[1475, 540, 0 ],
[1476, 541, 0 ],
[1477, 542, 0 ],
[1483, 548, 0 ],
[1484, 549, 0 ],
[1485, 550, 0 ],
[1486, 551, 0 ],
[1489, 555, 0 ],
[1490, 556, 0 ],
[1491, 557, 0 ],
[1492, 558, 0 ],
[1493, 559, 0 ],
[1494, 560, 0 ],
[1495, 561, 0 ],
[1497, 563, 0 ],
[1498, 564, 0 ],
[1501, 567, 0 ],
[1503, 569, 0 ],
[1504, 570, 0 ],
[1505, 571, 0 ],
[1506, 572, 0 ],
[1507, 573, 0 ],
[1510, 576, 0 ],
[1511, 577, 0 ],
[1512, 578, 0 ],
[1513, 579, 0 ],
[1518, 584, 0 ],
[1519, 585, 0 ],
[1520, 1, 0 ],
[1521, 3, 0 ],
[1522, 4, 0 ],
[1523, 6, 0 ],
[1524, 7, 0 ],
[1525, 8, 0 ],
[1526, 9, 0 ],
[1527, 11, 0 ],
[1528, 14, 0 ],
[1529, 16, 0 ],
[1530, 17, 0 ],
[1531, 19, 0 ],
[1532, 21, 0 ],
[1534, 25, 0 ],
[1535, 27, 0 ],
[1536, 28, 0 ],
[1537, 29, 0 ],
[1538, 31, 0 ],
[1539, 33, 0 ],
[1540, 34, 0 ],
[1541, 35, 0 ],
[1542, 36, 0 ],
[1543, 38, 0 ],
[1544, 39, 0 ],
[1545, 40, 0 ],
[1546, 41, 0 ],
[1547, 43, 0 ],
[1548, 44, 0 ],
[1549, 45, 0 ],
[1550, 47, 0 ],
[1551, 48, 0 ],
[1552, 49, 0 ],
[1553, 50, 0 ],
[1554, 51, 0 ],
[1555, 53, 0 ],
[1556, 54, 0 ],
[1557, 55, 0 ],
[1558, 57, 0 ],
[1559, 58, 0 ],
[1560, 59, 0 ],
[1561, 60, 0 ],
[1562, 62, 0 ],
[1563, 63, 0 ],
[1564, 64, 0 ],
[1565, 65, 0 ],
[1566, 66, 0 ],
[1567, 67, 0 ],
[1568, 70, 0 ],
[1569, 71, 0 ],
[1570, 72, 0 ],
[1571, 73, 0 ],
[1572, 75, 0 ],
[1573, 76, 0 ],
[1574, 77, 0 ],
[1575, 79, 0 ],
[1576, 80, 0 ],
[1577, 81, 0 ],
[1578, 82, 0 ],
[1579, 83, 0 ],
[1580, 84, 0 ],
[1581, 85, 0 ],
[1582, 88, 0 ],
[1583, 89, 0 ],
[1584, 90, 0 ],
[1585, 91, 0 ],
[1586, 92, 0 ],
[1587, 93, 0 ],
[1588, 97, 0 ],
[1589, 98, 0 ],
[1590, 101, 0 ],
[1591, 102, 0 ],
[1592, 103, 0 ],
[1593, 108, 0 ],
[1594, 109, 0 ],
[1595, 110, 0 ],
[1596, 111, 0 ],
[1597, 112, 0 ],
[1598, 113, 0 ],
[1599, 114, 0 ],
[1600, 115, 0 ],
[1601, 116, 0 ],
[1602, 118, 0 ],
[1603, 119, 0 ],
[1604, 121, 0 ],
[1605, 122, 0 ],
[1606, 126, 0 ],
[1607, 127, 0 ],
[1608, 130, 0 ],
[1609, 131, 0 ],
[1610, 132, 0 ],
[1611, 133, 0 ],
[1612, 134, 0 ],
[1613, 135, 0 ],
[1614, 136, 0 ],
[1615, 137, 0 ],
[1616, 139, 0 ],
[1617, 140, 0 ],
[1618, 141, 0 ],
[1619, 142, 0 ],
[1620, 144, 0 ],
[1621, 145, 0 ],
[1622, 146, 0 ],
[1623, 147, 0 ],
[1624, 148, 0 ],
[1625, 149, 0 ],
[1626, 150, 0 ],
[1627, 151, 0 ],
[1628, 152, 0 ],
[1629, 153, 0 ],
[1630, 154, 0 ],
[1631, 155, 0 ],
[1632, 158, 0 ],
[1633, 161, 0 ],
[1634, 162, 0 ],
[1635, 163, 0 ],
[1636, 164, 0 ],
[1637, 166, 0 ],
[1638, 167, 0 ],
[1639, 168, 0 ],
[1640, 169, 0 ],
[1641, 170, 0 ],
[1642, 171, 0 ],
[1643, 172, 0 ],
[1644, 173, 0 ],
[1645, 174, 0 ],
[1646, 175, 0 ],
[1647, 176, 0 ],
[1648, 177, 0 ],
[1649, 178, 0 ],
[1650, 179, 0 ],
[1651, 180, 0 ],
[1652, 181, 0 ],
[1653, 182, 0 ],
[1654, 183, 0 ],
[1655, 185, 0 ],
[1656, 186, 0 ],
[1657, 187, 0 ],
[1658, 188, 0 ],
[1659, 189, 0 ],
[1660, 190, 0 ],
[1661, 192, 0 ],
[1662, 193, 0 ],
[1663, 194, 0 ],
[1664, 196, 0 ],
[1665, 197, 0 ],
[1666, 198, 0 ],
[1667, 199, 0 ],
[1668, 200, 0 ],
[1669, 202, 0 ],
[1670, 203, 0 ],
[1671, 204, 0 ],
[1672, 205, 0 ],
[1673, 206, 0 ],
[1674, 207, 0 ],
[1675, 208, 0 ],
[1676, 209, 0 ],
[1677, 210, 0 ],
[1678, 211, 0 ],
[1679, 212, 0 ],
[1680, 213, 0 ],
[1681, 214, 0 ],
[1682, 215, 0 ],
[1683, 216, 0 ],
[1684, 217, 0 ],
[1685, 218, 0 ],
[1686, 219, 0 ],
[1687, 221, 0 ],
[1688, 222, 0 ],
[1689, 223, 0 ],
[1690, 224, 0 ],
[1691, 225, 0 ],
[1692, 226, 0 ],
[1693, 227, 0 ],
[1694, 228, 0 ],
[1695, 229, 0 ],
[1696, 230, 0 ],
[1697, 234, 0 ],
[1698, 235, 0 ],
[1699, 237, 0 ],
[1700, 238, 0 ],
[1701, 239, 0 ],
[1702, 240, 0 ],
[1703, 241, 0 ],
[1704, 242, 0 ],
[1705, 243, 0 ],
[1706, 244, 0 ],
[1707, 247, 0 ],
[1708, 251, 0 ],
[1709, 252, 0 ],
[1710, 253, 0 ],
[1711, 254, 0 ],
[1712, 255, 0 ],
[1713, 256, 0 ],
[1714, 257, 0 ],
[1715, 258, 0 ],
[1716, 260, 0 ],
[1717, 263, 0 ],
[1718, 264, 0 ],
[1719, 266, 0 ],
[1720, 267, 0 ],
[1721, 268, 0 ],
[1722, 269, 0 ],
[1723, 271, 0 ],
[1724, 272, 0 ],
[1725, 273, 0 ],
[1726, 274, 0 ],
[1727, 275, 0 ],
[1728, 276, 0 ],
[1729, 278, 0 ],
[1730, 281, 0 ],
[1731, 282, 0 ],
[1732, 283, 0 ],
[1733, 284, 0 ],
[1734, 285, 0 ],
[1735, 286, 0 ],
[1736, 287, 0 ],
[1737, 288, 0 ],
[1738, 289, 0 ],
[1739, 291, 0 ],
[1740, 292, 0 ],
[1741, 293, 0 ],
[1742, 294, 0 ],
[1743, 295, 0 ],
[1744, 296, 0 ],
[1745, 297, 0 ],
[1746, 298, 0 ],
[1747, 299, 0 ],
[1748, 300, 0 ],
[1749, 302, 0 ],
[1750, 303, 0 ],
[1751, 304, 0 ],
[1752, 307, 0 ],
[1753, 308, 0 ],
[1754, 309, 0 ],
[1755, 311, 0 ],
[1756, 312, 0 ],
[1757, 314, 0 ],
[1758, 316, 0 ],
[1759, 317, 0 ],
[1760, 318, 0 ],
[1761, 319, 0 ],
[1762, 321, 0 ],
[1763, 322, 0 ],
[1764, 323, 0 ],
[1765, 324, 0 ],
[1766, 325, 0 ],
[1767, 326, 0 ],
[1768, 327, 0 ],
[1769, 328, 0 ],
[1770, 329, 0 ],
[1771, 331, 0 ],
[1772, 333, 0 ],
[1773, 335, 0 ],
[1774, 337, 0 ],
[1775, 338, 0 ],
[1776, 339, 0 ],
[1777, 340, 0 ],
[1778, 341, 0 ],
[1779, 342, 0 ],
[1780, 343, 0 ],
[1781, 344, 0 ],
[1782, 345, 0 ],
[1783, 346, 0 ],
[1784, 347, 0 ],
[1785, 348, 0 ],
[1786, 350, 0 ],
[1787, 352, 0 ],
[1788, 353, 0 ],
[1789, 354, 0 ],
[1790, 355, 0 ],
[1791, 356, 0 ],
[1792, 357, 0 ],
[1793, 359, 0 ],
[1794, 361, 0 ],
[1795, 362, 0 ],
[1796, 363, 0 ],
[1797, 364, 0 ],
[1798, 365, 0 ],
[1799, 366, 0 ],
[1800, 367, 0 ],
[1801, 368, 0 ],
[1802, 369, 0 ],
[1803, 370, 0 ],
[1804, 371, 0 ],
[1805, 372, 0 ],
[1806, 373, 0 ],
[1807, 374, 0 ],
[1808, 375, 0 ],
[1809, 376, 0 ],
[1810, 377, 0 ],
[1811, 378, 0 ],
[1812, 379, 0 ],
[1813, 381, 0 ],
[1814, 384, 0 ],
[1815, 385, 0 ],
[1816, 386, 0 ],
[1817, 387, 0 ],
[1818, 388, 0 ],
[1819, 390, 0 ],
[1820, 391, 0 ],
[1821, 392, 0 ],
[1822, 393, 0 ],
[1823, 394, 0 ],
[1824, 395, 0 ],
[1825, 396, 0 ],
[1826, 397, 0 ],
[1827, 398, 0 ],
[1828, 399, 0 ],
[1830, 403, 0 ],
[1831, 404, 0 ],
[1832, 405, 0 ],
[1833, 406, 0 ],
[1834, 407, 0 ],
[1836, 410, 0 ],
[1837, 411, 0 ],
[1838, 412, 0 ],
[1839, 413, 0 ],
[1840, 414, 0 ],
[1841, 416, 0 ],
[1842, 417, 0 ],
[1843, 418, 0 ],
[1844, 419, 0 ],
[1845, 420, 0 ],
[1846, 421, 0 ],
[1847, 422, 0 ],
[1848, 423, 0 ],
[1849, 424, 0 ],
[1850, 425, 0 ],
[1851, 426, 0 ],
[1852, 427, 0 ],
[1853, 428, 0 ],
[1854, 429, 0 ],
[1855, 430, 0 ],
[1856, 431, 0 ],
[1857, 432, 0 ],
[1858, 433, 0 ],
[1860, 435, 0 ],
[1861, 436, 0 ],
[1862, 437, 0 ],
[1863, 438, 0 ],
[1864, 439, 0 ],
[1865, 440, 0 ],
[1866, 441, 0 ],
[1867, 442, 0 ],
[1868, 443, 0 ],
[1869, 445, 0 ],
[1870, 446, 0 ],
[1871, 447, 0 ],
[1872, 448, 0 ],
[1873, 449, 0 ],
[1874, 450, 0 ],
[1875, 451, 0 ],
[1876, 453, 0 ],
[1877, 454, 0 ],
[1878, 455, 0 ],
[1879, 456, 0 ],
[1880, 457, 0 ],
[1881, 458, 0 ],
[1882, 459, 0 ],
[1883, 460, 0 ],
[1884, 461, 0 ],
[1885, 462, 0 ],
[1886, 463, 0 ],
[1887, 464, 0 ],
[1888, 465, 0 ],
[1889, 466, 0 ],
[1890, 467, 0 ],
[1891, 468, 0 ],
[1892, 469, 0 ],
[1893, 470, 0 ],
[1894, 471, 0 ],
[1895, 472, 0 ],
[1896, 473, 0 ],
[1897, 474, 0 ],
[1898, 475, 0 ],
[1899, 476, 0 ],
[1900, 477, 0 ],
[1901, 478, 0 ],
[1902, 479, 0 ],
[1903, 480, 0 ],
[1904, 481, 0 ],
[1905, 482, 0 ],
[1906, 483, 0 ],
[1907, 484, 0 ],
[1908, 485, 0 ],
[1909, 486, 0 ],
[1910, 487, 0 ],
[1911, 488, 0 ],
[1912, 489, 0 ],
[1913, 490, 0 ],
[1914, 491, 0 ],
[1915, 492, 0 ],
[1916, 493, 0 ],
[1917, 494, 0 ],
[1918, 495, 0 ],
[1919, 496, 0 ],
[1920, 497, 0 ],
[1921, 498, 0 ],
[1922, 499, 0 ],
[1923, 500, 0 ],
[1924, 501, 0 ],
[1925, 502, 0 ],
[1926, 503, 0 ],
[1927, 504, 0 ],
[1928, 505, 0 ],
[1929, 506, 0 ],
[1930, 507, 0 ],
[1931, 508, 0 ],
[1932, 509, 0 ],
[1933, 510, 0 ],
[1934, 511, 0 ],
[1935, 512, 0 ],
[1936, 513, 0 ],
[1937, 514, 0 ],
[1938, 515, 0 ],
[1939, 516, 0 ],
[1940, 517, 0 ],
[1941, 518, 0 ],
[1942, 519, 0 ],
[1943, 520, 0 ],
[1944, 521, 0 ],
[1945, 522, 0 ],
[1946, 523, 0 ],
[1947, 524, 0 ],
[1948, 525, 0 ],
[1949, 526, 0 ],
[1950, 527, 0 ],
[1951, 528, 0 ],
[1952, 529, 0 ],
[1953, 530, 0 ],
[1954, 531, 0 ],
[1955, 532, 0 ],
[1956, 533, 0 ],
[1957, 534, 0 ],
[1958, 535, 0 ],
[1959, 536, 0 ],
[1960, 537, 0 ],
[1961, 538, 0 ],
[1962, 539, 0 ],
[1963, 540, 0 ],
[1964, 541, 0 ],
[1965, 542, 0 ],
[1966, 543, 0 ],
[1967, 544, 0 ],
[1968, 545, 0 ],
[1969, 546, 0 ],
[1970, 547, 0 ],
[1971, 548, 0 ],
[1972, 549, 0 ],
[1973, 550, 0 ],
[1974, 551, 0 ],
[1975, 552, 0 ],
[1976, 553, 0 ],
[1977, 554, 0 ],
[1978, 555, 0 ],
[1979, 556, 0 ],
[1980, 557, 0 ],
[1981, 558, 0 ],
[1982, 559, 0 ],
[1983, 560, 0 ],
[1984, 561, 0 ],
[1985, 562, 0 ],
[1986, 563, 0 ],
[1987, 564, 0 ],
[1988, 565, 0 ],
[1989, 566, 0 ],
[1990, 567, 0 ],
[1991, 568, 0 ],
[1992, 569, 0 ],
[1993, 570, 0 ],
[1994, 571, 0 ],
[1995, 572, 0 ],
[1996, 573, 0 ],
[1997, 574, 0 ],
[1998, 575, 0 ],
[1999, 576, 0 ],
[2000, 577, 0 ],
[2001, 578, 0 ],
[2002, 579, 0 ],
[2003, 580, 0 ],
[2004, 581, 0 ],
[2005, 582, 0 ],
[2006, 583, 0 ],
[2007, 584, 0 ],
[2008, 585, 0 ],
[1, 490, 0 ],
[3, 4, 1 ],
[491, 6, 0 ],
[7, 5, 0 ],
[8, 9, 0 ],
[492, 11, 0 ],
[11, 493, 0 ],
[492, 493, 1 ],
[494, 14, 0 ],
[13, 15, 0 ],
[16, 5, 0 ],
[17, 18, 1 ],
[17, 12, 0 ],
[14, 495, 0 ],
[494, 19, 0 ],
[20, 21, 0 ],
[20, 22, 1 ],
[497, 23, 0 ],
[23, 499, 1 ],
[25, 26, 0 ],
[25, 22, 0 ],
[23, 27, 0 ],
[28, 23, 0 ],
[8, 21, 0 ],
[9, 29, 0 ],
[30, 25, 1 ],
[31, 32, 1 ],
[32, 33, 1 ],
[34, 35, 0 ],
[35, 36, 0 ],
[490, 6, 1 ],
[37, 10, 1 ],
[10, 38, 0 ],
[37, 38, 1 ],
[39, 40, 1 ],
[39, 41, 1 ],
[42, 41, 1 ],
[18, 42, 1 ],
[492, 43, 1 ],
[44, 45, 0 ],
[44, 505, 0 ],
[46, 12, 0 ],
[47, 48, 0 ],
[49, 50, 0 ],
[31, 33, 1 ],
[31, 51, 0 ],
[52, 53, 1 ],
[52, 54, 0 ],
[506, 55, 0 ],
[506, 507, 1 ],
[57, 506, 0 ],
[57, 58, 0 ],
[58, 506, 0 ],
[59, 60, 1 ],
[508, 62, 0 ],
[30, 61, 1 ],
[63, 506, 0 ],
[13, 64, 0 ],
[65, 66, 1 ],
[59, 67, 0 ],
[61, 67, 0 ],
[68, 69, 1 ],
[70, 69, 1 ],
[71, 72, 1 ],
[73, 74, 1 ],
[37, 75, 1 ],
[72, 75, 0 ],
[37, 72, 1 ],
[76, 77, 1 ],
[77, 51, 0 ],
[73, 72, 1 ],
[18, 40, 1 ],
[492, 45, 1 ],
[10, 74, 1 ],
[45, 511, 1 ],
[78, 32, 1 ],
[79, 80, 0 ],
[81, 79, 1 ],
[34, 82, 0 ],
[83, 84, 0 ],
[83, 499, 0 ],
[85, 86, 0 ],
[87, 86, 1 ],
[88, 89, 0 ],
[90, 86, 1 ],
[91, 86, 0 ],
[86, 92, 0 ],
[86, 93, 0 ],
[94, 86, 1 ],
[86, 95, 1 ],
[513, 517, 0 ],
[97, 66, 1 ],
[42, 98, 0 ],
[99, 100, 1 ],
[42, 101, 0 ],
[102, 42, 1 ],
[103, 87, 0 ],
[104, 103, 0 ],
[105, 87, 0 ],
[106, 107, 0 ],
[108, 107, 0 ],
[109, 106, 0 ],
[110, 111, 1 ],
[87, 112, 0 ],
[113, 87, 0 ],
[87, 85, 1 ],
[110, 114, 1 ],
[115, 116, 0 ],
[117, 118, 0 ],
[117, 119, 0 ],
[117, 120, 1 ],
[121, 122, 0 ],
[123, 124, 0 ],
[125, 126, 0 ],
[127, 119, 0 ],
[118, 128, 0 ],
[121, 119, 0 ],
[530, 527, 0 ],
[125, 130, 0 ],
[125, 123, 0 ],
[131, 132, 0 ],
[133, 123, 0 ],
[524, 134, 0 ],
[135, 136, 0 ],
[123, 131, 0 ],
[117, 128, 1 ],
[137, 521, 0 ],
[531, 514, 0 ],
[139, 521, 0 ],
[140, 514, 0 ],
[522, 141, 0 ],
[142, 523, 0 ],
[530, 526, 0 ],
[140, 532, 0 ],
[142, 144, 0 ],
[140, 522, 0 ],
[145, 146, 0 ],
[147, 523, 0 ],
[144, 523, 0 ],
[139, 523, 0 ],
[140, 141, 0 ],
[528, 526, 0 ],
[528, 148, 0 ],
[149, 150, 0 ],
[145, 528, 0 ],
[530, 151, 0 ],
[524, 152, 0 ],
[149, 525, 1 ],
[139, 514, 0 ],
[126, 120, 1 ],
[530, 153, 0 ],
[528, 147, 1 ],
[528, 154, 0 ],
[130, 120, 1 ],
[528, 155, 1 ],
[524, 533, 0 ],
[524, 149, 0 ],
[154, 150, 0 ],
[157, 110, 1 ],
[119, 158, 0 ],
[159, 60, 0 ],
[536, 161, 0 ],
[115, 151, 0 ],
[162, 134, 0 ],
[115, 526, 0 ],
[138, 87, 0 ],
[123, 163, 0 ],
[112, 164, 0 ],
[112, 165, 0 ],
[166, 165, 0 ],
[167, 537, 0 ],
[168, 104, 0 ],
[531, 520, 0 ],
[139, 520, 0 ],
[520, 169, 0 ],
[168, 105, 0 ],
[520, 170, 0 ],
[171, 89, 0 ],
[521, 172, 0 ],
[123, 173, 0 ],
[521, 174, 0 ],
[37, 39, 0 ],
[530, 175, 0 ],
[530, 176, 0 ],
[88, 530, 0 ],
[177, 496, 1 ],
[178, 525, 0 ],
[179, 493, 1 ],
[180, 181, 1 ],
[182, 180, 0 ],
[179, 181, 0 ],
[180, 493, 1 ],
[183, 30, 0 ],
[183, 21, 0 ],
[538, 185, 0 ],
[538, 89, 0 ],
[184, 186, 0 ],
[184, 187, 0 ],
[520, 172, 0 ],
[89, 175, 0 ],
[185, 89, 0 ],
[89, 188, 0 ],
[189, 190, 0 ],
[539, 172, 0 ],
[504, 192, 0 ],
[105, 186, 0 ],
[105, 187, 0 ],
[539, 193, 0 ],
[187, 194, 0 ],
[539, 540, 0 ],
[539, 196, 0 ],
[197, 540, 0 ],
[110, 198, 0 ],
[197, 539, 0 ],
[199, 537, 0 ],
[134, 526, 0 ],
[200, 193, 0 ],
[4, 201, 1 ],
[202, 86, 0 ],
[85, 203, 0 ],
[147, 204, 0 ],
[147, 205, 0 ],
[123, 206, 0 ],
[537, 207, 0 ],
[165, 208, 0 ],
[4, 94, 1 ],
[4, 2, 0 ],
[209, 4, 0 ],
[119, 163, 0 ],
[210, 3, 0 ],
[99, 211, 0 ],
[99, 69, 1 ],
[212, 99, 0 ],
[213, 214, 0 ],
[510, 215, 0 ],
[128, 69, 1 ],
[216, 69, 1 ],
[217, 98, 0 ],
[504, 218, 0 ],
[177, 504, 1 ],
[219, 209, 0 ],
[219, 220, 0 ],
[94, 95, 1 ],
[159, 221, 1 ],
[34, 161, 0 ],
[222, 221, 0 ],
[211, 52, 1 ],
[215, 223, 1 ],
[224, 215, 0 ],
[225, 224, 1 ],
[224, 223, 0 ],
[226, 6, 0 ],
[7, 3, 1 ],
[216, 227, 1 ],
[228, 229, 0 ],
[227, 230, 0 ],
[231, 53, 1 ],
[544, 545, 0 ],
[234, 235, 1 ],
[546, 214, 1 ],
[233, 227, 0 ],
[237, 238, 0 ],
[212, 100, 0 ],
[519, 239, 0 ],
[238, 519, 0 ],
[213, 240, 0 ],
[241, 242, 1 ],
[70, 241, 0 ],
[509, 213, 0 ],
[68, 243, 0 ],
[243, 244, 0 ],
[68, 244, 0 ],
[544, 547, 1 ],
[245, 227, 1 ],
[246, 208, 0 ],
[112, 208, 0 ],
[165, 247, 0 ],
[537, 549, 0 ],
[537, 550, 0 ],
[537, 551, 0 ],
[110, 251, 0 ],
[510, 252, 1 ],
[529, 253, 1 ],
[237, 239, 1 ],
[254, 238, 1 ],
[69, 255, 0 ],
[510, 225, 1 ],
[256, 257, 0 ],
[258, 190, 0 ],
[258, 259, 0 ],
[260, 261, 1 ],
[554, 553, 1 ],
[515, 263, 0 ],
[14, 264, 1 ],
[116, 555, 0 ],
[151, 116, 0 ],
[111, 114, 1 ],
[77, 111, 0 ],
[266, 525, 0 ],
[267, 120, 1 ],
[268, 269, 0 ],
[556, 271, 0 ],
[556, 272, 0 ],
[529, 273, 0 ],
[128, 274, 0 ],
[34, 275, 0 ],
[503, 276, 0 ],
[503, 504, 1 ],
[177, 218, 1 ],
[277, 278, 1 ],
[557, 558, 1 ],
[557, 559, 1 ],
[559, 558, 1 ],
[277, 78, 1 ],
[277, 279, 1 ],
[78, 279, 0 ],
[281, 282, 0 ],
[283, 161, 1 ],
[268, 161, 1 ],
[256, 284, 0 ],
[515, 516, 1 ],
[263, 516, 0 ],
[516, 285, 0 ],
[63, 286, 0 ],
[287, 516, 0 ],
[8, 102, 1 ],
[8, 101, 1 ],
[80, 288, 0 ],
[80, 289, 0 ],
[276, 560, 0 ],
[37, 290, 0 ],
[290, 74, 1 ],
[512, 291, 0 ],
[78, 292, 1 ],
[199, 548, 0 ],
[491, 293, 0 ],
[4, 294, 0 ],
[490, 541, 1 ],
[491, 295, 0 ],
[491, 296, 0 ],
[295, 297, 0 ],
[508, 161, 0 ],
[117, 123, 0 ],
[133, 117, 0 ],
[71, 74, 1 ],
[74, 278, 1 ],
[298, 515, 0 ],
[5, 299, 0 ],
[32, 292, 1 ],
[5, 29, 1 ],
[503, 560, 0 ],
[300, 301, 1 ],
[51, 300, 0 ],
[244, 302, 1 ],
[31, 302, 1 ],
[51, 282, 1 ],
[303, 304, 0 ],
[305, 304, 0 ],
[305, 259, 0 ],
[306, 307, 1 ],
[305, 308, 0 ],
[305, 309, 0 ],
[310, 309, 1 ],
[306, 309, 1 ],
[311, 280, 0 ],
[280, 278, 1 ],
[311, 32, 1 ],
[13, 312, 1 ],
[313, 314, 0 ],
[312, 313, 1 ],
[547, 566, 1 ],
[245, 315, 1 ],
[312, 316, 0 ],
[312, 314, 0 ],
[554, 546, 1 ],
[262, 216, 1 ],
[317, 233, 0 ],
[318, 317, 0 ],
[231, 52, 1 ],
[319, 567, 0 ],
[557, 321, 0 ],
[277, 65, 1 ],
[322, 288, 1 ],
[322, 323, 0 ],
[277, 324, 1 ],
[324, 325, 0 ],
[277, 325, 0 ],
[326, 327, 0 ],
[328, 326, 1 ],
[328, 327, 1 ],
[326, 329, 0 ],
[568, 329, 1 ],
[568, 326, 0 ],
[332, 78, 1 ],
[333, 306, 0 ],
[332, 333, 0 ],
[332, 334, 0 ],
[66, 334, 1 ],
[330, 335, 1 ],
[336, 66, 0 ],
[330, 336, 1 ],
[68, 70, 0 ],
[509, 337, 1 ],
[324, 288, 0 ],
[338, 559, 0 ],
[339, 559, 0 ],
[339, 340, 1 ],
[559, 340, 1 ],
[341, 292, 0 ],
[557, 342, 0 ],
[558, 343, 0 ],
[502, 340, 1 ],
[72, 32, 1 ],
[344, 345, 0 ],
[346, 47, 0 ],
[46, 47, 0 ],
[346, 345, 0 ],
[347, 328, 0 ],
[347, 348, 1 ],
[571, 348, 1 ],
[347, 572, 0 ],
[571, 570, 1 ],
[14, 350, 0 ],
[350, 573, 0 ],
[15, 351, 1 ],
[352, 15, 0 ],
[15, 335, 1 ],
[232, 227, 0 ],
[565, 544, 1 ],
[235, 567, 1 ],
[567, 286, 0 ],
[353, 519, 0 ],
[354, 353, 0 ],
[355, 354, 0 ],
[354, 356, 0 ],
[357, 358, 0 ],
[574, 359, 0 ],
[235, 575, 0 ],
[167, 361, 0 ],
[528, 362, 0 ],
[363, 344, 0 ],
[259, 364, 1 ],
[54, 56, 0 ],
[365, 364, 0 ],
[231, 366, 0 ],
[30, 367, 0 ],
[61, 367, 1 ],
[254, 368, 0 ],
[254, 369, 0 ],
[254, 370, 0 ],
[99, 358, 0 ],
[354, 519, 0 ],
[571, 371, 0 ],
[207, 372, 0 ],
[57, 373, 0 ],
[209, 374, 0 ],
[375, 376, 0 ],
[376, 377, 0 ],
[16, 49, 0 ],
[318, 377, 0 ],
[378, 297, 0 ],
[562, 379, 0 ],
[576, 563, 0 ],
[576, 381, 0 ],
[577, 576, 1 ],
[244, 383, 0 ],
[244, 306, 1 ],
[383, 306, 1 ],
[380, 306, 0 ],
[252, 225, 0 ],
[220, 76, 0 ],
[542, 384, 0 ],
[385, 384, 0 ],
[542, 385, 0 ],
[386, 385, 0 ],
[387, 578, 0 ],
[332, 388, 1 ],
[382, 332, 1 ],
[382, 388, 0 ],
[579, 578, 0 ],
[577, 387, 1 ],
[144, 390, 0 ],
[37, 49, 0 ],
[391, 233, 0 ],
[392, 310, 0 ],
[260, 393, 0 ],
[394, 230, 0 ],
[395, 282, 1 ],
[395, 244, 0 ],
[25, 396, 1 ],
[81, 74, 0 ],
[278, 80, 1 ],
[81, 278, 1 ],
[569, 570, 0 ],
[397, 552, 0 ],
[542, 398, 0 ],
[398, 385, 0 ],
[399, 499, 0 ],
[83, 399, 0 ],
[498, 400, 0 ],
[518, 239, 1 ],
[575, 543, 0 ],
[401, 360, 0 ],
[580, 581, 0 ],
[401, 402, 0 ],
[403, 231, 0 ],
[189, 360, 1 ],
[234, 404, 0 ],
[235, 404, 1 ],
[235, 580, 0 ],
[216, 259, 0 ],
[405, 259, 0 ],
[405, 318, 0 ],
[406, 230, 0 ],
[542, 407, 0 ],
[23, 408, 0 ],
[577, 348, 0 ],
[562, 564, 1 ],
[582, 507, 0 ],
[27, 410, 0 ],
[501, 27, 0 ],
[27, 411, 0 ],
[411, 410, 0 ],
[403, 360, 0 ],
[412, 360, 0 ],
[326, 413, 0 ],
[414, 413, 0 ],
[6, 297, 0 ],
[554, 580, 1 ],
[262, 401, 1 ],
[499, 556, 1 ],
[224, 229, 0 ],
[583, 507, 0 ],
[415, 307, 0 ],
[416, 507, 0 ],
[284, 561, 0 ],
[543, 417, 0 ],
[418, 506, 0 ],
[220, 157, 0 ],
[295, 419, 0 ],
[295, 420, 0 ],
[541, 62, 0 ],
[52, 421, 0 ],
[60, 160, 0 ],
[535, 161, 0 ],
[267, 282, 0 ],
[52, 365, 0 ],
[28, 27, 0 ],
[30, 201, 1 ],
[422, 81, 0 ],
[119, 425, 0 ],
[423, 425, 0 ],
[424, 425, 0 ],
[426, 428, 0 ],
[427, 428, 0 ],
[19, 428, 1 ],
[45, 429, 0 ],
[44, 429, 0 ],
[505, 429, 0 ],
[231, 431, 1 ],
[190, 431, 1 ],
[430, 431, 0 ],
[286, 433, 0 ],
[432, 433, 0 ],
[506, 433, 0 ],
[23, 434, 0 ],
[400, 434, 0 ],
[500, 434, 0 ],
[32, 436, 0 ],
[435, 436, 0 ],
[78, 436, 1 ],
[86, 438, 1 ],
[437, 438, 0 ],
[221, 438, 0 ],
[207, 439, 0 ],
[516, 439, 0 ],
[513, 439, 0 ],
[181, 441, 1 ],
[440, 441, 0 ],
[504, 441, 1 ],
[135, 442, 0 ],
[109, 442, 0 ],
[112, 442, 0 ],
[113, 443, 0 ],
[132, 443, 0 ],
[107, 443, 0 ],
[444, 445, 0 ],
[112, 445, 0 ],
[109, 445, 0 ],
[119, 447, 1 ],
[100, 447, 1 ],
[446, 447, 0 ],
[124, 448, 0 ],
[125, 448, 0 ],
[131, 448, 0 ],
[449, 450, 0 ],
[173, 450, 0 ],
[184, 450, 0 ],
[144, 451, 0 ],
[140, 451, 0 ],
[514, 451, 0 ],
[537, 585, 1 ],
[141, 585, 0 ],
[584, 585, 0 ],
[522, 454, 0 ],
[144, 454, 0 ],
[453, 454, 0 ],
[199, 456, 0 ],
[140, 456, 0 ],
[455, 456, 0 ],
[537, 456, 0 ],
[538, 457, 0 ],
[153, 457, 0 ],
[176, 457, 0 ],
[524, 459, 0 ],
[458, 459, 0 ],
[134, 459, 0 ],
[460, 461, 0 ],
[150, 461, 0 ],
[149, 461, 0 ],
[521, 463, 0 ],
[462, 463, 0 ],
[538, 463, 0 ],
[110, 464, 0 ],
[90, 464, 0 ],
[165, 464, 0 ],
[458, 465, 0 ],
[134, 465, 0 ],
[524, 465, 0 ],
[466, 467, 0 ],
[110, 467, 0 ],
[165, 467, 0 ],
[468, 469, 0 ],
[541, 469, 0 ],
[490, 469, 0 ],
[263, 471, 0 ],
[470, 471, 0 ],
[534, 471, 0 ],
[136, 472, 0 ],
[110, 472, 0 ],
[251, 472, 0 ],
[226, 474, 0 ],
[473, 474, 0 ],
[257, 474, 0 ],
[6, 474, 1 ],
[299, 475, 1 ],
[3, 475, 0 ],
[210, 475, 0 ],
[297, 476, 0 ],
[296, 476, 0 ],
[295, 476, 0 ],
[313, 478, 1 ],
[477, 478, 0 ],
[245, 478, 0 ],
[479, 481, 0 ],
[565, 481, 0 ],
[480, 481, 0 ],
[415, 482, 0 ],
[56, 482, 0 ],
[409, 482, 0 ],
[483, 484, 0 ],
[3, 484, 0 ],
[301, 484, 0 ],
[233, 485, 0 ],
[392, 485, 0 ],
[391, 485, 0 ],
[579, 488, 0 ],
[486, 488, 0 ],
[487, 488, 0 ],
[270, 489, 0 ],
[331, 489, 0 ],
[396, 489, 1 ],
[519, 253, 0 ],
[382, 349, 1 ],
[349, 351, 0 ],
[459, 465, 0 ],
[549, 550, 0 ],
[550, 551, 0 ],
[194, 195, 0 ],
[247, 248, 0 ],
[2, 294, 0 ],
[549, 551, 0 ],
[54, 365, 0 ],
[131, 265, 0 ],
[91, 92, 0 ],
[247, 249, 0 ],
[186, 191, 0 ],
[129, 173, 0 ],
[96, 202, 0 ],
[53, 320, 0 ],
[24, 396, 0 ],
[133, 156, 0 ],
[442, 452, 0 ],
[445, 452, 0 ],
[247, 250, 0 ],
[187, 195, 0 ],
[216, 236, 0 ],
[244, 389, 0 ],
[394, 406, 0 ],
[442, 445, 0 ],
[442, 444, 0 ],
[198, 472, 0 ],
[464, 467, 0 ],
[198, 251, 0 ],
[112, 143, 0 ],
[2, 490, 0 ],
[5, 491, 0 ],
[10, 492, 0 ],
[12, 493, 0 ],
[13, 494, 0 ],
[15, 495, 0 ],
[18, 496, 0 ],
[20, 497, 0 ],
[22, 498, 0 ],
[24, 499, 0 ],
[26, 500, 0 ],
[30, 501, 0 ],
[32, 502, 0 ],
[37, 503, 0 ],
[42, 504, 0 ],
[46, 505, 0 ],
[52, 506, 0 ],
[56, 507, 0 ],
[61, 508, 0 ],
[68, 509, 0 ],
[69, 510, 0 ],
[74, 511, 0 ],
[78, 512, 0 ],
[86, 513, 0 ],
[87, 514, 0 ],
[94, 515, 0 ],
[95, 516, 0 ],
[96, 517, 0 ],
[99, 518, 0 ],
[100, 519, 0 ],
[104, 520, 0 ],
[105, 521, 0 ],
[106, 522, 0 ],
[107, 523, 0 ],
[117, 524, 0 ],
[120, 525, 0 ],
[123, 526, 0 ],
[124, 527, 0 ],
[125, 528, 0 ],
[128, 529, 0 ],
[129, 530, 0 ],
[138, 531, 0 ],
[143, 532, 0 ],
[156, 533, 0 ],
[157, 534, 0 ],
[159, 535, 0 ],
[160, 536, 0 ],
[165, 537, 0 ],
[184, 538, 0 ],
[191, 539, 0 ],
[195, 540, 0 ],
[201, 541, 0 ],
[220, 542, 0 ],
[231, 543, 0 ],
[232, 544, 0 ],
[233, 545, 0 ],
[236, 546, 0 ],
[245, 547, 0 ],
[246, 548, 0 ],
[248, 549, 0 ],
[249, 550, 0 ],
[250, 551, 0 ],
[259, 552, 0 ],
[261, 553, 0 ],
[262, 554, 0 ],
[265, 555, 0 ],
[270, 556, 0 ],
[277, 557, 0 ],
[279, 558, 0 ],
[280, 559, 0 ],
[290, 560, 0 ],
[301, 561, 0 ],
[305, 562, 0 ],
[306, 563, 0 ],
[310, 564, 0 ],
[313, 565, 0 ],
[315, 566, 0 ],
[320, 567, 0 ],
[330, 568, 0 ],
[332, 569, 0 ],
[334, 570, 0 ],
[336, 571, 0 ],
[349, 572, 0 ],
[351, 573, 0 ],
[358, 574, 0 ],
[360, 575, 0 ],
[380, 576, 0 ],
[382, 577, 0 ],
[383, 578, 0 ],
[389, 579, 0 ],
[401, 580, 0 ],
[402, 581, 0 ],
[409, 582, 0 ],
[415, 583, 0 ],
[444, 584, 0 ],
[452, 585, 0 ]
])
ppc["parameters"] = {
"x_trans_sg": 0.003,
"x_trans_fm": 0.001,
"x_trans_fl": 0.001,
"d_l": 1e-3,
"d_l_perturb": 1e-5,
"w_1_ij": 1,
"w_2_ij": 1,
"w_3_ij": 1,
"w_4_ij": 1,
"b_r": 238,
"b_c": 248 }
return ppc | [
"numpy.array"
] | [((115, 105634), 'numpy.array', 'array', (['[[586, 3, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [589, 2, 0, 0, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [590, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, \n 0, 1.1, 0.9], [593, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [594,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [595, 2, 0, 0, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [598, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, \n 1.1, 0.9], [599, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [601, 2,\n 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [602, 2, 0, 0, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [603, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [607, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [608, 2, 0, \n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [609, 2, 0, 0, 0, 0, 0, 1.0, 0,\n 220.0, 0, 1.1, 0.9], [612, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [613, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [614, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [616, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [617, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [618, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [619, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [621, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [623, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [624, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [628, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [629, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [632, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [637, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [638, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [640, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [641, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [643, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [646, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [647, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [650, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [652, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [655, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [661, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [663, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [666, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [668, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [670, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [672, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [676, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [681, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [683, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [687, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [689, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [691, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [693, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [694, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [695, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [696, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [697, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [698, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [702, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [704, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [705, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [707, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [708, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [711, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [713, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [716, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [717, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [719, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [724, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [727, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [728, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [730, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [731, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [732, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [735, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [737, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [738, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [741, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [742, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [743, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [746, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [747, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [748, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [749, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [750, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [753, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [758, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [760, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [762, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [763, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [765, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [767, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [769, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [771, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [772, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [774, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [776, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [777, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [778, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [781, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [784, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [785, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [787, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [788, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [789, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [791, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [792, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [795, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [801, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [802, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [805, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [808, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [809, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [811, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [816, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [817, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [821, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [822, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [826, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [829, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [830, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [835, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [836, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [837, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [839, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [841, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [843, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [844, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [845, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [849, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [850, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [851, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [853, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [854, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [855, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [856, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [857, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [858, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [859, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [860, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [862, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [863, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [864, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [865, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [867, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [869, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [870, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [872, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [873, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [874, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [875, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [877, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [882, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [883, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [886, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [889, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [890, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [895, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [896, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [898, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [900, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [902, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [903, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [905, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [906, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [907, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [909, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [913, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [915, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [917, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [918, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [920, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [921, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [923, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [925, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [928, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [931, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [934, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [935, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [936, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [937, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [939, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [940, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [942, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [944, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [945, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [950, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [952, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [958, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [959, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [960, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [963, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [965, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [966, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [967, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [968, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1,\n 0.9], [969, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9], [971, 2,\n 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [973, 2, 0, 0, 0, 0, 0, 1.0,\n 0, 220.0, 0, 1.1, 0.9], [976, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [977, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [978, 2, 0, \n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [981, 2, 0, 0, 0, 0, 0, 1.0, 0,\n 220.0, 0, 1.1, 0.9], [982, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [983, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [984, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [985, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [986, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [987, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [988, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [990, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [993, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [994, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [995, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [997, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [999, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [1000, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1002, 2, 0, 0,\n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1003, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [1007, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [1008, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1010, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1011, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1012, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1018, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1023, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1026, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1027, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1028, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1029, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1030, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1031, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1032, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1033, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1034, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1035, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1036, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1037, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1038, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1039, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1040, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1041, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1042, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1044, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1046, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1047, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1048, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1049, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1050, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1051, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1052, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1053, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1054, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1055, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1056, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1057, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1058, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1059, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1060, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1061, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1062, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1063, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1064, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1065, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1066, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1067, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1072, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1073, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1074, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1075, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1076, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1077, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1078, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1079, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1080, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1081, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1082, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1083, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1084, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1085, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1086, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1087, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1088, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1089, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1090, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1091, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1092, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1093, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1094, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1095, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1096, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1097, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1098, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1099, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1101, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1102, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1103, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1104, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1105, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1106, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1107, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1108, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1109, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1110, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1111, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1112, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1113, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1114, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1115, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1116, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1117, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1118, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1119, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1120, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1121, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1122, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1123, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1124, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1125, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1126, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1127, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1128, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1129, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1130, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1131, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1132, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1133, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1134, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1135, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1136, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1137, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1138, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1139, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1140, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1141, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1142, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1143, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1144, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1145, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1146, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1147, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1148, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1149, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1150, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1151, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1152, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1153, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1154, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1155, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1156, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1157, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1158, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1159, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1160, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1161, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1162, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1163, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1164, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1165, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1166, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1167, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1168, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1169, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1170, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1171, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1172, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1173, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1174, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1175, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1176, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1177, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1178, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1179, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1180, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1181, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1182, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1183, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1184, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1185, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1186, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1187, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1188, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1189, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1190, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1191, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1192, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1196, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1197, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1198, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1199, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1200, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1204, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1206, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1208, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1211, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1212, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1213, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1214, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1215, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1216, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1217, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1218, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1219, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1220, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1221, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1222, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1224, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1225, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1226, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1227, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1229, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1230, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1231, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1232, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1233, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1235, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1236, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1237, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1238, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1239, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1240, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1241, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1242, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1243, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1244, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1245, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1246, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1247, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1248, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1249, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1250, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1251, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1252, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1253, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1254, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1255, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1256, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1257, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1258, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1259, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1260, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1261, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1264, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1266, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1267, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1268, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1269, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1270, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1274, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1275, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1276, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1277, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1278, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1280, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1281, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1282, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1283, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1285, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1286, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1287, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1288, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1289, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1290, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1291, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1292, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1293, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1294, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1295, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1296, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1297, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1298, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1299, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1300, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1301, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1302, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1303, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1306, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1307, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1308, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1312, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1316, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1317, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1319, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1323, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1326, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1327, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1328, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1329, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1331, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1333, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1336, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1337, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1339, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1340, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1345, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1346, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1348, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1349, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1356, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1357, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1359, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1360, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1361, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1362, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1366, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1367, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1372, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1373, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1374, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1375, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1376, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1377, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1378, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1379, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1380, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1381, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1382, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1383, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1384, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1385, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1386, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1387, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1388, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1389, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1390, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1391, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1392, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1393, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1394, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1395, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1396, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1397, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1398, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1399, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1400, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1401, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1402, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1403, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1404, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1405, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1406, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1407, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1408, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1409, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1410, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1411, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1418, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1419, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1421, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9], [1422,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1423, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1424, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1425, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1426,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1427, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1428, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1429, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1431,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1432, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1433, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1434, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1435,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1436, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1437, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1438, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1439,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1440, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1443, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1444, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1445,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1446, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1447, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1448, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1449,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1450, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1451, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1452, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1453,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1454, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1455, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1456, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1457,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1458, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1459, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1460, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1461,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1462, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1463, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1464, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1465,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1466, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1467, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1468, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1469,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1470, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1471, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1472, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1473,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1474, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1475, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1476, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1477,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1483, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1484, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1485, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1486,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1489, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1490, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1491, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1492,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1493, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1494, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1495, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1497,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1498, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1501, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1503, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1504,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1505, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1506, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1507, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1510,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1511, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1512, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1513, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1518,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1519, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1520, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1521, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1522,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1523, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1524, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1525, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1526,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1527, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1528, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1529, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1530,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1531, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1532, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1534, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1535,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1536, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1537, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1538, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1539,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1540, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1541, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1542, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1543,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1544, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1545, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1546, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1547,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1548, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1549, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1550, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1551,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1552, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1553, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1554, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1555,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1556, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1557, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1558, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1559,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1560, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1561, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1562, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1563,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1564, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1565, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1566, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1567,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1568, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1569, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1570, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1571,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1572, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1573, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1574, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1575,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1576, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1577, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1578, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1579,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1580, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1581, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1582, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1583,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1584, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1585, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1586, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1587,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1588, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1589, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1590, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1591,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1592, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1593, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1594, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1595,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1596, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1597, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1598, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1599,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1600, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1601, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1602, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1603,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1604, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1605, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1606, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1607,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1608, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1609, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1610, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1611,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1612, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1613, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1614, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1615,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1616, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1617, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1618, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1619,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1620, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1621, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1622, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1623,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1624, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1625, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1626, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1627,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1628, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1629, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1630, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1631,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1632, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1633, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1634, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1635,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1636, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1637, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1638, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1639,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1640, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1641, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1643,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1644, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1645, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1646, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1647,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1648, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1649, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1650, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1651,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1652, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1653, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1654, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1655,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1656, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1657, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1658, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1659,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1660, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1661, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1662, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1663,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1664, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1665, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1666, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1667,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1668, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1669, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1670, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1671,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1672, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1673, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1674, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1675,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1676, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1677, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1678, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1679,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1680, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1681, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1682, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1683,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1684, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1685, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1686, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1687,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1688, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1689, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1690, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1691,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1692, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1693, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1694, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1695,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1696, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1697, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1698, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1699,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1700, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1701, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1702, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1703,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1704, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1705, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1706, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1707,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1708, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1709, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1710, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1711,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1712, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1713, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1715,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1716, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1717, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1718, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1719,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1720, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1721, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1723,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1724, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1725, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1726, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1727,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1728, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1729, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1730, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1731,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1732, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1733, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1734, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1735,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1736, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1737, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1738, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1739,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1740, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1741, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1742, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1743,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1744, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1745, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1746, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1747,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1748, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1749, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1750, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1751,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1752, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1753, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1754, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1755,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1756, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1757, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1758, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1759,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1760, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1761, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1762, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1763,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1764, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1765, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1766, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1767,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1768, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1769, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1770, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1771,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1772, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1773, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1774, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1775,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1776, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1777, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1778, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1779,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1780, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1781, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1782, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1783,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1784, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1785, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1786, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1787,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1788, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1789, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1790, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1791,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1792, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1793, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1794, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1795,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1796, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1797, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1798, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1799,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1800, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1801, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1802, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1803,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1804, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1805, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1807,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1808, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1809, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1810, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1811,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1812, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1813, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1815,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1816, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1817, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1818, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1819,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1820, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1821, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1822, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1823,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1824, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1825, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1826, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1827,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1828, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1830, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1831, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1832,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1833, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1834, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1836, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1837,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1838, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1839, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1840, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1841,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1842, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1843, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1844, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1845,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1846, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1847, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1848, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1849,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1850, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1851, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1852, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1853,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1854, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1855, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1856, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1857,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1858, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1860, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1861, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1862,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1863, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1864, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1865, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1866,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1867, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1868, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1869, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1870,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1871, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1872, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1873, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1874,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1875, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1876, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1877, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1878,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1879, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1880, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1881, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1882,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1883, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1884, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1885, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1886,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1887, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1888, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1889, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1890,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1891, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1892, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1893, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1894,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1895, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1896, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1897, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1898,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1899, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1900, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1901, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1902,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1903, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1904, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1905, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1906,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1907, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1908, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1909, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9], [\n 1910, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1911, 2, 0, 0, 0,\n 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1912, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [1913, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [1914, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1915, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1916, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1917, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1918, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1919, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1920, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1921, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1923, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1924, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1925, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1926, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1927, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1928, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1929, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1930, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1931, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1932, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1933, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1934, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1935, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1936, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1937, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1938, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1939, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1940, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1941, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1942, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1943, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1944, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1945, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1946, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1947, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1948, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1949, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1950, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1951, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1952, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1953, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1954, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1955, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1956, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1957, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1958, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1959, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1960, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1961, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1962, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1963, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1964, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1965, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1966, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1967, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1968, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1969, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1970, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1971, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1972, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1973, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1974, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1975, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1976, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1977, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1978, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1979, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1980, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1981, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1982, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1983, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1984, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1985, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1986, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1987, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1988, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1989, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1990, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1991, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1992, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1993, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1994, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1995, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1996, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1997, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1998, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1999, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2000, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [2001, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [2002, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2003, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2004, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [2005, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [2006, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2007, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2008, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1, 1, 331.244507, 66.248901, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [2, 1, 0, 0, 0, 0, 0, 1.000014, 0, 380.0, 0, 1.1, \n 0.9], [3, 1, 58.058252, 11.61165, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [4, 1, 95.478722, 19.095744, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [5, \n 1, 0, 0, 0, 0, 0, 0.999729, 0, 380.0, 0, 1.1, 0.9], [6, 1, 280.365104, \n 56.073021, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [7, 1, 211.28997, \n 42.257994, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [8, 1, 176.792351, \n 35.35847, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [9, 1, 119.561904, \n 23.912381, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [10, 1, 0, 0, 0, 0, 0,\n 0.998922, 0, 380.0, 0, 1.1, 0.9], [11, 1, 104.756609, 20.951322, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [12, 1, 0, 0, 0, 0, 0, 1.000664, 0, \n 380.0, 0, 1.1, 0.9], [13, 1, 0, 0, 0, 0, 0, 1.000269, 0, 380.0, 0, 1.1,\n 0.9], [14, 1, 250.53938, 50.107876, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [15, 1, 0, 0, 0, 0, 0, 1.000619, 0, 380.0, 0, 1.1, 0.9], [16, 1, \n 427.285772, 85.457154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [17, 1, \n 100.637024, 20.127405, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [18, 1, 0,\n 0, 0, 0, 0, 1.00161, 0, 380.0, 0, 1.1, 0.9], [19, 1, 248.636149, \n 49.72723, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [20, 1, 0, 0, 0, 0, 0, \n 0.996347, 0, 380.0, 0, 1.1, 0.9], [21, 1, 1069.17358, 213.834716, 0, 0,\n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [22, 1, 0, 0, 0, 0, 0, 0.999305, 0, \n 380.0, 0, 1.1, 0.9], [23, 1, 139.991073, 27.998215, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [24, 1, 0, 0, 0, 0, 0, 0.999967, 0, 380.0, 0, 1.1,\n 0.9], [25, 1, 66.958706, 13.391741, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [26, 1, 0, 0, 0, 0, 0, 1.000158, 0, 380.0, 0, 1.1, 0.9], [27, 1, \n 82.193665, 16.438733, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [28, 1, \n 242.857656, 48.571531, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [29, 1, \n 89.206673, 17.841335, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [30, 1, 0, \n 0, 0, 0, 0, 0.999019, 0, 380.0, 0, 1.1, 0.9], [31, 1, 175.55643, \n 35.111286, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [32, 1, 0, 0, 0, 0, 0,\n 0.998857, 0, 380.0, 0, 1.1, 0.9], [33, 1, 220.114772, 44.022954, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [34, 1, 43.669738, 8.733948, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [35, 1, 2.891167, 0.578233, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [36, 1, 9.57224, 1.914448, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [37, 1, 0, 0, 0, 0, 0, 1.003328, 0, 380.0, 0, 1.1,\n 0.9], [38, 1, 230.616628, 46.123326, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [39, 1, 75.515064, 15.103013, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [40, 1, 78.877846, 15.775569, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [41, 1, 84.775808, 16.955162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [42,\n 1, 0, 0, 0, 0, 0, 1.001194, 0, 380.0, 0, 1.1, 0.9], [43, 1, 130.007521,\n 26.001504, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [44, 1, 166.325348, \n 33.26507, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [45, 1, 88.289214, \n 17.657843, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [46, 1, 0, 0, 0, 0, 0,\n 1.000199, 0, 380.0, 0, 1.1, 0.9], [47, 1, 383.88859, 76.777718, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [48, 1, 263.872284, 52.774457, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [49, 1, 66.746375, 13.349275, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [50, 1, 97.191732, 19.438346, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [51, 1, 125.95414, 25.190828, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [52, 1, 0, 0, 0, 0, 0, 1.000211, 0, 380.0, 0, 1.1,\n 0.9], [53, 1, 191.115234, 38.223047, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [54, 1, 97.097666, 19.419533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [55, 1, 95.224435, 19.044887, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [56, 1, 0, 0, 0, 0, 0, 0.999681, 0, 380.0, 0, 1.1, 0.9], [57, 1, \n 113.668229, 22.733646, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [58, 1, \n 260.374368, 52.074874, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [59, 1, \n 74.364511, 14.872902, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [60, 1, \n 39.207033, 7.841407, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [61, 1, 0, 0,\n 0, 0, 0, 0.999712, 0, 380.0, 0, 1.1, 0.9], [62, 1, 298.90577, 59.781154,\n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [63, 1, 176.441517, 35.288303, 0,\n 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [64, 1, 1872.402063, 374.480413, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [65, 1, 6.238875, 1.247775, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [66, 1, 197.952392, 39.590478, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [67, 1, 424.641227, 84.928245, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [68, 1, 0, 0, 0, 0, 0, 0.998339, 0, 380.0,\n 0, 1.1, 0.9], [69, 1, 0, 0, 0, 0, 0, 1.000383, 0, 380.0, 0, 1.1, 0.9],\n [70, 1, 803.324346, 160.664869, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 71, 1, 186.682231, 37.336446, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [72,\n 1, 305.759877, 61.151975, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [73, 1,\n 97.885258, 19.577052, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [74, 1, 0, \n 0, 0, 0, 0, 1.001287, 0, 380.0, 0, 1.1, 0.9], [75, 1, 121.999483, \n 24.399897, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [76, 1, 117.756269, \n 23.551254, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [77, 1, 114.054994, \n 22.810999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [78, 1, 0, 0, 0, 0, 0,\n 0.998562, 0, 380.0, 0, 1.1, 0.9], [79, 1, 117.770571, 23.554114, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [80, 1, 125.090518, 25.018104, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [81, 1, 141.210159, 28.242032, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [82, 1, 4.699557, 0.939911, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [83, 1, 314.435019, 62.887004, 0, 0, 0, 1.0, 0,\n 220.0, 0, 1.1, 0.9], [84, 1, 30.954188, 6.190838, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [85, 1, 107.343113, 21.468623, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [86, 1, 0, 0, 0, 0, 0, 0.999919, 0, 380.0, 0, 1.1,\n 0.9], [87, 1, 0, 0, 0, 0, 0, 0.998341, 0, 380.0, 0, 1.1, 0.9], [88, 1, \n 86.640119, 17.328024, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [89, 1, \n 107.490329, 21.498066, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [90, 1, \n 124.146584, 24.829317, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [91, 1, \n 43.122342, 8.624468, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [92, 1, \n 47.061603, 9.412321, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [93, 1, \n 46.158004, 9.231601, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [94, 1, 0, 0,\n 0, 0, 0, 1.001352, 0, 380.0, 0, 1.1, 0.9], [95, 1, 0, 0, 0, 0, 0, \n 1.001068, 0, 380.0, 0, 1.1, 0.9], [96, 1, 0, 0, 0, 0, 0, 0.999999, 0, \n 380.0, 0, 1.1, 0.9], [97, 1, 6.491779, 1.298356, 0, 0, 0, 1.0, 0, 380.0,\n 0, 1.1, 0.9], [98, 1, 119.357696, 23.871539, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [99, 1, 0, 0, 0, 0, 0, 1.001016, 0, 380.0, 0, 1.1, 0.9], [\n 100, 1, 0, 0, 0, 0, 0, 1.001474, 0, 380.0, 0, 1.1, 0.9], [101, 1, \n 84.517421, 16.903484, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [102, 1, \n 163.587407, 32.717481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [103, 1, \n 191.265333, 38.253067, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [104, 1, 0,\n 0, 0, 0, 0, 0.999855, 0, 380.0, 0, 1.1, 0.9], [105, 1, 0, 0, 0, 0, 0, \n 0.99956, 0, 380.0, 0, 1.1, 0.9], [106, 1, 0, 0, 0, 0, 0, 0.999751, 0, \n 380.0, 0, 1.1, 0.9], [107, 1, 0, 0, 0, 0, 0, 1.000002, 0, 380.0, 0, 1.1,\n 0.9], [108, 1, 134.914374, 26.982875, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [109, 1, 54.624528, 10.924906, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [110, 1, 70.904827, 14.180965, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [111, 1, 124.953464, 24.990693, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [112, 1, 63.242204, 12.648441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [113, 1, 99.692623, 19.938525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [114, 1, 146.822855, 29.364571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [115, 1, 94.648063, 18.929613, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [116, 1, 158.380517, 31.676103, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [117, 1, 0, 0, 0, 0, 0, 1.000396, 0, 380.0, 0, 1.1, 0.9], [118, 1,\n 245.229569, 49.045914, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [119, 1, \n 47.535561, 9.507112, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [120, 1, 0, \n 0, 0, 0, 0, 1.001046, 0, 380.0, 0, 1.1, 0.9], [121, 1, 64.553313, \n 12.910663, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [122, 1, 56.51577, \n 11.303154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [123, 1, 0, 0, 0, 0, 0,\n 1.000104, 0, 380.0, 0, 1.1, 0.9], [124, 1, 0, 0, 0, 0, 0, 1.000001, 0, \n 380.0, 0, 1.1, 0.9], [125, 1, 0, 0, 0, 0, 0, 0.999462, 0, 380.0, 0, 1.1,\n 0.9], [126, 1, 296.313585, 59.262717, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [127, 1, 229.081574, 45.816315, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [128, 1, 0, 0, 0, 0, 0, 1.001332, 0, 380.0, 0, 1.1, 0.9], [129, 1,\n 0, 0, 0, 0, 0, 0.999994, 0, 380.0, 0, 1.1, 0.9], [130, 1, 315.861818, \n 63.172364, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [131, 1, 69.742016, \n 13.948403, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [132, 1, 181.597665, \n 36.319533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [133, 1, 60.828104, \n 12.165621, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [134, 1, 60.579014, \n 12.115803, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [135, 1, 60.659331, \n 12.131866, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [136, 1, 58.762484, \n 11.752497, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [137, 1, 47.004578, \n 9.400916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [138, 1, 0, 0, 0, 0, 0,\n 0.998491, 0, 380.0, 0, 1.1, 0.9], [139, 1, 92.077205, 18.415441, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [140, 1, 63.67533, 12.735066, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [141, 1, 75.444027, 15.088805, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [142, 1, 83.015362, 16.603072, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [143, 1, 0, 0, 0, 0, 0, 0.999975, 0, 380.0,\n 0, 1.1, 0.9], [144, 1, 75.618411, 15.123682, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [145, 1, 219.975959, 43.995192, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [146, 1, 283.590392, 56.718078, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [147, 1, 173.824211, 34.764842, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [148, 1, 245.297873, 49.059575, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [149, 1, 158.141763, 31.628353, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [150, 1, 206.470492, 41.294098, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [151, 1, 48.654456, 9.730891, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [152, 1, 101.001605, 20.200321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [153, 1, 180.20329, 36.040658, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [154, 1, 185.104539, 37.020908, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [155, 1, 192.802737, 38.560547, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [156, 1, 0, 0, 0, 0, 0, 0.999987, 0, 380.0, 0, 1.1, 0.9], [157, 1,\n 0, 0, 0, 0, 0, 1.001204, 0, 380.0, 0, 1.1, 0.9], [158, 1, 50.7971, \n 10.15942, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [159, 1, 0, 0, 0, 0, 0,\n 1.000889, 0, 380.0, 0, 1.1, 0.9], [160, 1, 0, 0, 0, 0, 0, 1.000007, 0, \n 380.0, 0, 1.1, 0.9], [161, 1, 157.695907, 31.539181, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [162, 1, 235.708647, 47.141729, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [163, 1, 47.139503, 9.427901, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [164, 1, 47.32908, 9.465816, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [165, 1, 0, 0, 0, 0, 0, 0.999973, 0, 380.0, 0, 1.1,\n 0.9], [166, 1, 55.335351, 11.06707, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [167, 1, 77.84291, 15.568582, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [168, 1, 53.126793, 10.625359, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 169, 1, 181.868329, 36.373666, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 170, 1, 136.658713, 27.331743, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 171, 1, 116.63816, 23.327632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 172, 1, 57.242831, 11.448566, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 173, 1, 54.683847, 10.936769, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 174, 1, 82.06086, 16.412172, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [175,\n 1, 54.648007, 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [176, 1,\n 190.428013, 38.085603, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [177, 1, \n 31.052062, 6.210412, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [178, 1, \n 164.459338, 32.891868, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [179, 1, \n 60.59759, 12.119518, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [180, 1, \n 53.266832, 10.653366, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [181, 1, \n 40.204271, 8.040854, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [182, 1, \n 1.821272, 0.364254, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [183, 1, \n 545.164071, 109.032814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [184, 1, \n 0, 0, 0, 0, 0, 0.999598, 0, 380.0, 0, 1.1, 0.9], [185, 1, 116.580184, \n 23.316037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [186, 1, 62.777823, \n 12.555565, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [187, 1, 36.718634, \n 7.343727, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [188, 1, 54.648007, \n 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [189, 1, 200.523932, \n 40.104786, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [190, 1, 265.230417, \n 53.046083, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [191, 1, 0, 0, 0, 0, 0,\n 1.000004, 0, 380.0, 0, 1.1, 0.9], [192, 1, 63.875519, 12.775104, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [193, 1, 54.559855, 10.911971, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [194, 1, 37.663542, 7.532708, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [195, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [196, 1, 52.839754, 10.567951, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [197, 1, 83.717575, 16.743515, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [198, 1, 49.539578, 9.907916, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [199, 1, 63.780558, 12.756112, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [200, 1, 54.649275, 10.929855, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 201, 1, 0, 0, 0, 0, 0, 0.998237, 0, 380.0, 0, 1.1, 0.9], [202, 1, \n 55.999994, 11.199999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [203, 1, \n 7.378501, 1.4757, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [204, 1, \n 216.262395, 43.252479, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [205, 1, \n 108.140933, 21.628187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [206, 1, \n 51.90009, 10.380018, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [207, 1, \n 154.328515, 30.865703, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [208, 1, \n 45.443662, 9.088732, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [209, 1, \n 63.15081, 12.630162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [210, 1, \n 72.548461, 14.509692, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [211, 1, \n 254.951553, 50.990311, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [212, 1, \n 63.90001, 12.780002, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [213, 1, \n 299.548965, 59.909793, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [214, 1, \n 201.558484, 40.311697, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [215, 1, \n 426.205473, 85.241095, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [216, 1, \n 143.710831, 28.742166, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [217, 1, \n 46.050054, 9.210011, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [218, 1, \n 140.293093, 28.058619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [219, 1, \n 225.468098, 45.09362, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [220, 1, 0,\n 0, 0, 0, 0, 0.999508, 0, 380.0, 0, 1.1, 0.9], [221, 1, 128.618978, \n 25.723796, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [222, 1, 0.0, 0.0, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [223, 1, 127.469368, 25.493874, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [224, 1, 148.229316, 29.645863, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [225, 1, 266.15424, 53.230848, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [226, 1, 92.9759, 18.59518, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [227, 1, 115.829115, 23.165823, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [228, 1, 113.566909, 22.713382, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [229, 1, 251.304201, 50.26084, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [230, 1, 60.277099, 12.05542, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [231, 1, 0, 0, 0, 0, 0, 1.000849, 0, 380.0, 0, 1.1,\n 0.9], [232, 1, 0, 0, 0, 0, 0, 0.999983, 0, 380.0, 0, 1.1, 0.9], [233, 1,\n 0, 0, 0, 0, 0, 0.999757, 0, 380.0, 0, 1.1, 0.9], [234, 1, 214.713729, \n 42.942746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [235, 1, 69.822043, \n 13.964409, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [236, 1, 0, 0, 0, 0, 0,\n 0.999971, 0, 380.0, 0, 1.1, 0.9], [237, 1, 0.577857, 0.115571, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [238, 1, 79.004912, 15.800982, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [239, 1, 109.155193, 21.831039, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [240, 1, 688.53002, 137.706004, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [241, 1, 509.488297, 101.897659, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [242, 1, 185.513909, 37.102782, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [243, 1, 149.672731, 29.934546, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [244, 1, 178.323941, 35.664788, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [245, 1, 0, 0, 0, 0, 0, 1.001823, 0, 380.0,\n 0, 1.1, 0.9], [246, 1, 0, 0, 0, 0, 0, 1.00019, 0, 380.0, 0, 1.1, 0.9],\n [247, 1, 35.387378, 7.077476, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 248, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [249, 1, 0, 0, 0, 0,\n 0, 0.999999, 0, 380.0, 0, 1.1, 0.9], [250, 1, 0, 0, 0, 0, 0, 0.999999, \n 0, 380.0, 0, 1.1, 0.9], [251, 1, 87.823446, 17.564689, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [252, 1, 225.226964, 45.045393, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [253, 1, 98.883231, 19.776646, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [254, 1, 31.571775, 6.314355, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [255, 1, 155.267358, 31.053472, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [256, 1, 178.064642, 35.612928, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [257, 1, 85.937935, 17.187587, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [258, 1, 280.061351, 56.01227, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [259, 1, 0, 0, 0, 0, 0, 0.999324, 0, 380.0, 0, 1.1,\n 0.9], [260, 1, 174.299184, 34.859837, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [261, 1, 0, 0, 0, 0, 0, 1.001923, 0, 380.0, 0, 1.1, 0.9], [262, 1,\n 0, 0, 0, 0, 0, 1.000423, 0, 380.0, 0, 1.1, 0.9], [263, 1, 250.031952, \n 50.00639, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [264, 1, 323.679848, \n 64.73597, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [265, 1, 0, 0, 0, 0, 0,\n 1.000003, 0, 380.0, 0, 1.1, 0.9], [266, 1, 155.992125, 31.198425, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [267, 1, 197.296193, 39.459239, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [268, 1, 68.608247, 13.721649, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [269, 1, 55.094995, 11.018999, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [270, 1, 0, 0, 0, 0, 0, 1.000027, 0, 380.0,\n 0, 1.1, 0.9], [271, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [272, 1, 1.124141, 0.224828, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [273,\n 1, 153.726786, 30.745357, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [274, 1,\n 298.82462, 59.764924, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [275, 1, \n 55.9416, 11.18832, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [276, 1, \n 218.074579, 43.614916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [277, 1, 0,\n 0, 0, 0, 0, 0.999467, 0, 380.0, 0, 1.1, 0.9], [278, 1, 170.24286, \n 34.048572, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [279, 1, 0, 0, 0, 0, 0,\n 0.999606, 0, 380.0, 0, 1.1, 0.9], [280, 1, 0, 0, 0, 0, 0, 0.999582, 0, \n 380.0, 0, 1.1, 0.9], [281, 1, 224.87043, 44.974086, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [282, 1, 318.001613, 63.600323, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [283, 1, 127.468855, 25.493771, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [284, 1, 193.376156, 38.675231, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [285, 1, 86.238982, 17.247796, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [286, 1, 180.742976, 36.148595, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [287, 1, 111.088604, 22.217721, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [288, 1, 71.451417, 14.290283, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [289, 1, 112.372355, 22.474471, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [290, 1, 0, 0, 0, 0, 0, 1.004511, 0, 380.0, 0, 1.1,\n 0.9], [291, 1, 73.950919, 14.790184, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [292, 1, 145.790849, 29.15817, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [293, 1, 128.490989, 25.698198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [294, 1, 34.240907, 6.848181, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [295, 1, 71.643904, 14.328781, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [296, 1, 203.39721, 40.679442, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 297, 1, 213.77275, 42.75455, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [298,\n 1, 112.876261, 22.575252, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [299, 1,\n 109.319908, 21.863982, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [300, 1, \n 297.817032, 59.563406, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [301, 1, 0,\n 0, 0, 0, 0, 0.999233, 0, 380.0, 0, 1.1, 0.9], [302, 1, 250.874417, \n 50.174883, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [303, 1, 128.856376, \n 25.771275, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [304, 1, 110.649061, \n 22.129812, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [305, 1, 0, 0, 0, 0, 0,\n 0.99963, 0, 380.0, 0, 1.1, 0.9], [306, 1, 0, 0, 0, 0, 0, 1.001279, 0, \n 380.0, 0, 1.1, 0.9], [307, 1, 131.240069, 26.248014, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [308, 1, 161.801519, 32.360304, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [309, 1, 264.730039, 52.946008, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [310, 1, 0, 0, 0, 0, 0, 1.000139, 0, 380.0, 0, 1.1,\n 0.9], [311, 1, 224.864072, 44.972814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [312, 1, 101.12763, 20.225526, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [313, 1, 0, 0, 0, 0, 0, 1.000718, 0, 380.0, 0, 1.1, 0.9], [314, 1,\n 313.229025, 62.645805, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [315, 1, 0,\n 0, 0, 0, 0, 1.001596, 0, 380.0, 0, 1.1, 0.9], [316, 1, 122.727204, \n 24.545441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [317, 1, 165.247685, \n 33.049537, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [318, 1, 271.56295, \n 54.31259, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [319, 1, 9.728471, \n 1.945694, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [320, 1, 0, 0, 0, 0, 0,\n 0.999998, 0, 380.0, 0, 1.1, 0.9], [321, 1, 230.130721, 46.026144, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [322, 1, 29.297122, 5.859424, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [323, 1, 3.048116, 0.609623, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [324, 1, 538.833195, 107.766639, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [325, 1, 175.527235, 35.105447, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [326, 1, 14.231204, 2.846241, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [327, 1, 122.469223, 24.493845, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [328, 1, 208.706378, 41.741276, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [329, 1, 313.912998, 62.7826, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [330, 1, 0, 0, 0, 0, 0, 1.002494, 0, 380.0, 0, 1.1,\n 0.9], [331, 1, 24.923624, 4.984725, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [332, 1, 0, 0, 0, 0, 0, 0.998492, 0, 380.0, 0, 1.1, 0.9], [333, 1, \n 261.879122, 52.375824, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [334, 1, 0,\n 0, 0, 0, 0, 0.999971, 0, 380.0, 0, 1.1, 0.9], [335, 1, 267.267401, \n 53.45348, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [336, 1, 0, 0, 0, 0, 0,\n 0.998828, 0, 380.0, 0, 1.1, 0.9], [337, 1, 106.311135, 21.262227, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [338, 1, 288.543529, 57.708706, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [339, 1, 178.460182, 35.692036, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [340, 1, 150.884477, 30.176895, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [341, 1, 136.402581, 27.280516, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [342, 1, 236.613596, 47.322719, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [343, 1, 129.809669, 25.961934, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [344, 1, 325.46393, 65.092786, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [345, 1, 355.881992, 71.176398, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [346, 1, 353.300089, 70.660018, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [347, 1, 123.555173, 24.711035, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [348, 1, 322.981361, 64.596272, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [349, 1, 0, 0, 0, 0, 0, 1.002022, 0, 380.0,\n 0, 1.1, 0.9], [350, 1, 169.440736, 33.888147, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [351, 1, 0, 0, 0, 0, 0, 1.001885, 0, 380.0, 0, 1.1, 0.9], [\n 352, 1, 1121.578094, 224.315619, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [353, 1, 3.371839, 0.674368, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [354,\n 1, 22.907979, 4.581596, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [355, 1, \n 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [356, 1, 0.0, 0.0, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [357, 1, 0.057423, 0.011485, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [358, 1, 0, 0, 0, 0, 0, 1.001382, 0, 380.0,\n 0, 1.1, 0.9], [359, 1, 3.35273, 0.670546, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [360, 1, 0, 0, 0, 0, 0, 1.000729, 0, 380.0, 0, 1.1, 0.9], [\n 361, 1, 85.810098, 17.16202, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [362,\n 1, 244.603189, 48.920638, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [363, 1,\n 360.135165, 72.027033, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [364, 1, \n 84.968934, 16.993787, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [365, 1, \n 76.26413, 15.252826, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [366, 1, \n 151.155263, 30.231053, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [367, 1, \n 73.062175, 14.612435, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [368, 1, \n 35.977016, 7.195403, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [369, 1, \n 29.563521, 5.912704, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [370, 1, \n 87.035851, 17.40717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [371, 1, \n 437.926082, 87.585216, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [372, 1, \n 253.959627, 50.791925, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [373, 1, \n 171.37214, 34.274428, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [374, 1, \n 87.876732, 17.575346, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [375, 1, \n 288.266193, 57.653239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [376, 1, \n 316.173722, 63.234744, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [377, 1, \n 226.249032, 45.249806, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [378, 1, \n 225.813549, 45.16271, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [379, 1, \n 77.828258, 15.565652, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [380, 1, 0,\n 0, 0, 0, 0, 1.001233, 0, 380.0, 0, 1.1, 0.9], [381, 1, 260.262441, \n 52.052488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [382, 1, 0, 0, 0, 0, 0,\n 1.001308, 0, 380.0, 0, 1.1, 0.9], [383, 1, 0, 0, 0, 0, 0, 0.998969, 0, \n 380.0, 0, 1.1, 0.9], [384, 1, 91.84015, 18.36803, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [385, 1, 115.920294, 23.184059, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [386, 1, 93.138481, 18.627696, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [387, 1, 189.680321, 37.936064, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [388, 1, 1018.58055, 203.71611, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [389, 1, 0, 0, 0, 0, 0, 0.999916, 0, 380.0, 0, 1.1,\n 0.9], [390, 1, 84.101814, 16.820363, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [391, 1, 95.799138, 19.159828, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [392, 1, 183.837583, 36.767517, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [393, 1, 229.578746, 45.915749, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [394, 1, 82.572875, 16.514575, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [395, 1, 114.440902, 22.88818, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [396, 1, 81.05732, 16.211464, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [397, 1, 649.990419, 129.998084, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [398, 1, 281.52489, 56.304978, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [399, 1, 119.950108, 23.990022, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 400, 1, 63.907408, 12.781482, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 401, 1, 0, 0, 0, 0, 0, 1.00068, 0, 380.0, 0, 1.1, 0.9], [402, 1, 0, 0, \n 0, 0, 0, 1.000458, 0, 380.0, 0, 1.1, 0.9], [403, 1, 31.731514, 6.346303,\n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [404, 1, 111.792088, 22.358418, 0,\n 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [405, 1, 842.801818, 168.560364, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [406, 1, 63.856811, 12.771362, 0, 0,\n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [407, 1, 126.405958, 25.281192, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [408, 1, 365.495142, 73.099028, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [409, 1, 0, 0, 0, 0, 0, 0.999955, 0, 380.0,\n 0, 1.1, 0.9], [410, 1, 47.32062, 9.464124, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [411, 1, 44.743584, 8.948717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [412, 1, 3.142747, 0.628549, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [413, 1, 156.891603, 31.378321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 414, 1, 13.321795, 2.664359, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [415,\n 1, 0, 0, 0, 0, 0, 1.00032, 0, 380.0, 0, 1.1, 0.9], [416, 1, 189.71637, \n 37.943274, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [417, 1, 7.42324, \n 1.484648, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [418, 1, 154.695841, \n 30.939168, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [419, 1, 82.683827, \n 16.536765, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [420, 1, 83.245811, \n 16.649162, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [421, 1, 119.913469, \n 23.982694, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [422, 1, 87.852626, \n 17.570525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [423, 1, 184.509928, \n 36.901986, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [424, 1, 13.30269, \n 2.660538, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [425, 1, 109.248654, \n 21.849731, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [426, 1, 9.051587, \n 1.810317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [427, 1, 76.069687, \n 15.213937, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [428, 1, 34.107287, \n 6.821457, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [429, 1, 384.892639, \n 76.978528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [430, 1, 205.01907, \n 41.003814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [431, 1, 137.099401, \n 27.41988, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [432, 1, 160.260789, \n 32.052158, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [433, 1, 81.921043, \n 16.384209, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [434, 1, 42.635701, \n 8.52714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [435, 1, 170.515962, \n 34.103192, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [436, 1, 91.035611, \n 18.207122, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [437, 1, 20.732405, \n 4.146481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [438, 1, 55.640098, \n 11.12802, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [439, 1, 103.594671, \n 20.718934, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [440, 1, 87.548083, \n 17.509617, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [441, 1, 67.117335, \n 13.423467, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [442, 1, 88.818955, \n 17.763791, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [443, 1, 192.567856, \n 38.513571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [444, 1, 0, 0, 0, 0, 0,\n 0.999997, 0, 380.0, 0, 1.1, 0.9], [445, 1, 87.500608, 17.500122, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [446, 1, 40.573247, 8.114649, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [447, 1, 77.137671, 15.427534, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [448, 1, 56.688355, 11.337671, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [449, 1, 285.841877, 57.168375, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [450, 1, 174.921589, 34.984318, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [451, 1, 74.744857, 14.948971, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [452, 1, 0, 0, 0, 0, 0, 0.999998, 0, 380.0,\n 0, 1.1, 0.9], [453, 1, 50.093556, 10.018711, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [454, 1, 34.948569, 6.989714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [455, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [456, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [457, 1, 174.745521, 34.949104, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 458, 1, 166.205025, 33.241005, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 459, 1, 202.277698, 40.45554, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 460, 1, 265.834571, 53.166914, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 461, 1, 276.525599, 55.30512, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 462, 1, 84.590614, 16.918123, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 463, 1, 43.34476, 8.668952, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [464,\n 1, 43.397154, 8.679431, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [465, 1, \n 70.098265, 14.019653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [466, 1, \n 56.910923, 11.382185, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [467, 1, \n 52.519359, 10.503872, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [468, 1, \n 86.110989, 17.222198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [469, 1, \n 53.361254, 10.672251, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [470, 1, \n 135.890635, 27.178127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [471, 1, \n 133.796584, 26.759317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [472, 1, \n 46.798012, 9.359602, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [473, 1, \n 85.932309, 17.186462, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [474, 1, \n 44.383139, 8.876628, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [475, 1, \n 43.555323, 8.711065, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [476, 1, \n 49.224681, 9.844936, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [477, 1, \n 79.437989, 15.887598, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [478, 1, \n 99.788592, 19.957718, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [479, 1, \n 180.839091, 36.167818, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [480, 1, \n 79.26505, 15.85301, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [481, 1, \n 68.837439, 13.767488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [482, 1, \n 78.16195, 15.63239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [483, 1, \n 66.47101, 13.294202, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [484, 1, \n 52.110038, 10.422008, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [485, 1, \n 77.838606, 15.567721, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [486, 1, \n 716.077152, 143.21543, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9], [487,\n 1, 181.45064, 36.290128, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [488, 1,\n 522.841445, 104.568289, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [489, 1, \n 137.610381, 27.522076, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [490, 1, \n 42.819219, 8.563844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [491, 1, \n 58.876975, 11.775395, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [492, 1, \n 91.813369, 18.362674, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [493, 1, \n 118.336442, 23.667288, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [494, 1, \n 161.733452, 32.34669, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [495, 1, \n 127.313133, 25.462627, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [496, 1, \n 9.017801, 1.80356, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [497, 1, \n 1127.673279, 225.534656, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [498, 1,\n 52.88686, 10.577372, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [499, 1, \n 73.821392, 14.764278, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [500, 1, \n 40.416344, 8.083269, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [501, 1, \n 68.377485, 13.675497, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [502, 1, \n 269.871772, 53.974354, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [503, 1, \n 82.651196, 16.530239, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [504, 1, \n 54.123886, 10.824777, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [505, 1, \n 383.88859, 76.777718, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [506, 1, \n 120.497904, 24.099581, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [507, 1, \n 114.619007, 22.923801, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [508, 1, \n 166.630951, 33.32619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [509, 1, \n 219.586543, 43.917309, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [510, 1, \n 138.725937, 27.745187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [511, 1, \n 121.011401, 24.20228, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [512, 1, \n 79.935501, 15.9871, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [513, 1, \n 44.035931, 8.807186, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [514, 1, \n 109.601171, 21.920234, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [515, 1, \n 97.770756, 19.554151, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [516, 1, \n 109.382469, 21.876494, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [517, 1, \n 51.379564, 10.275913, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [518, 1, \n 289.37296, 57.874592, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [519, 1, \n 28.479597, 5.695919, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [520, 1, \n 114.983158, 22.996632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [521, 1, \n 103.868838, 20.773768, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [522, 1, \n 88.93334, 17.786668, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [523, 1, \n 47.871806, 9.574361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [524, 1, \n 138.947496, 27.789499, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [525, 1, \n 165.53353, 33.106706, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [526, 1, \n 50.186653, 10.037331, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [527, 1, \n 55.101418, 11.020284, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [528, 1, \n 120.263998, 24.0528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [529, 1, \n 154.160637, 30.832127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [530, 1, \n 65.326981, 13.065396, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [531, 1, \n 66.42028, 13.284056, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [532, 1, \n 63.75189, 12.750378, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [533, 1, \n 57.129386, 11.425877, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [534, 1, \n 157.594819, 31.518964, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [535, 1, \n 197.298599, 39.45972, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [536, 1, \n 155.513815, 31.102763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [537, 1, \n 51.733038, 10.346608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [538, 1, \n 38.672089, 7.734418, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [539, 1, \n 41.033464, 8.206693, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [540, 1, \n 36.948833, 7.389767, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [541, 1, \n 95.442023, 19.088405, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [542, 1, \n 131.107838, 26.221568, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [543, 1, \n 71.610457, 14.322091, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [544, 1, \n 133.375481, 26.675096, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [545, 1, \n 287.179283, 57.435857, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [546, 1, \n 143.938594, 28.787719, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [547, 1, \n 186.05009, 37.210018, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [548, 1, \n 60.225184, 12.045037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [549, 1, \n 51.497682, 10.299536, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [550, 1, \n 42.494345, 8.498869, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [551, 1, \n 40.963523, 8.192705, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [552, 1, \n 203.420244, 40.684049, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [553, 1, \n 1.407353, 0.281471, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [554, 1, \n 206.085944, 41.217189, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [555, 1, \n 78.521026, 15.704205, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [556, 1, \n 121.474641, 24.294928, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [557, 1, \n 258.089909, 51.617982, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [558, 1, \n 152.184958, 30.436992, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [559, 1, \n 81.447924, 16.289585, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [560, 1, \n 127.240926, 25.448185, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [561, 1, \n 69.77521, 13.955042, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [562, 1, \n 190.620645, 38.124129, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [563, 1, \n 134.021849, 26.80437, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [564, 1, \n 264.626513, 52.925303, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [565, 1, \n 199.673817, 39.934763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [566, 1, \n 0.320719, 0.064144, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [567, 1, \n 324.578744, 64.915749, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [568, 1, \n 300.156806, 60.031361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [569, 1, \n 211.192437, 42.238487, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [570, 1, \n 329.709424, 65.941885, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [571, 1, \n 242.757168, 48.551434, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [572, 1, \n 428.183113, 85.636623, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [573, 1, \n 124.63849, 24.927698, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [574, 1, \n 237.483921, 47.496784, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [575, 1, \n 4.462749, 0.89255, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [576, 1, \n 288.778854, 57.755771, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [577, 1, \n 318.348582, 63.669716, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [578, 1, \n 303.948566, 60.789713, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [579, 1, \n 110.888732, 22.177746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [580, 1, \n 23.085384, 4.617077, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [581, 1, \n 0.132651, 0.02653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [582, 1, \n 83.523038, 16.704608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [583, 1, \n 95.797854, 19.159571, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [584, 1, \n 54.964221, 10.992844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [585, 1, \n 95.42465, 19.08493, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9]]'], {}), '([[586, 3, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [589, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [590, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [593, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [594, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [595, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [598, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [599, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [601, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [602, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [603, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [607, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [608, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [609, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [612, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [613, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [614, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [616, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [617, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [618, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [619, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [621, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [623, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [624, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [628, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [629, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [632, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [637, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [638, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [640, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [641, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [643, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [646, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [647, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [650, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [652, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [655, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [661, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [663, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [666, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [668, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [670, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [672, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [676, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [681, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [683, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [687, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [689, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [691, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [693, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [694, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [695, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [696, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [697, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [698, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [702, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [704, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [705, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [707, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [708, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [711, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [713, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [716, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [717, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [719, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [724, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [727, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [728, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [730, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [731, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [732, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [735, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [737, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [738, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [741, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [742, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [743, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [746, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [747, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [748, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [749, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [750, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [753, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [758, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [760, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [762, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [763, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [765, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [767, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [769, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [771, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [772, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [774, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [776, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [777, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [778, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [781, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [784, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [785, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [787, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [788, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [789, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [791, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [792, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [795, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [801, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [802, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [805, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [808, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [809, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [811, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [816, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [817, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [821, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [822, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [826, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [829, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [830, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [835, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [836, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [837, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [839, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [841, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [843, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [844, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [845, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [849, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [850, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [851, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [853, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [854, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [855, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [856, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [857, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [858, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [859, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [860, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [862, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [863, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [864, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [865, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [867, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [869, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [870, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [872, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [873, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [874, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [875, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [877, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [882, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [883, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [886, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [889, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [890, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [895, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [896, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [898, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [900, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [902, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [903, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [905, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [906, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [907, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [909, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [913, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [915, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [917, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [918, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [920, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [921, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [923, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [925, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [928, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [931, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [934, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [935, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [936, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [937, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [939, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [940, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [942, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [944, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [945, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [950, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [952, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [958, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [959, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [960, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [963, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [965, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [966, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [967, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [968, 2, 0, 0, 0, 0, 0, 0.999501,\n 0, 220.0, 0, 1.1, 0.9], [969, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0, \n 1.1, 0.9], [971, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [973, 2,\n 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [976, 2, 0, 0, 0, 0, 0, 1.0,\n 0, 220.0, 0, 1.1, 0.9], [977, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [978, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [981, 2, 0, \n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [982, 2, 0, 0, 0, 0, 0, 1.0, 0,\n 220.0, 0, 1.1, 0.9], [983, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [984, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [985, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [986, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [987, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [988, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [990, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [993, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [994, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [995, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [997, 2, 0, 0, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [999, 2, 0, 0, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [1000, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [1002, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1003, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1007, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1008, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1010, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1011, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1012, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1018, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1023, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1026, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1027, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1028, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1029, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1030, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1031, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1032, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1033, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1034, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1035, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1036, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1037, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1038, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1039, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1040, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1041, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1042, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1044, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1046, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1047, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1048, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1049, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1050, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1051, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1052, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1053, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1054, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1055, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1056, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1057, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1058, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1059, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1060, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1061, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1062, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1063, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1064, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1065, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1066, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1067, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1072, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1073, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1074, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1075, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1076, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1077, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1078, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1079, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1080, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1081, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1082, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1083, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1084, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1085, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1086, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1087, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1088, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1089, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1090, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1091, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1092, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1093, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1094, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1095, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1096, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1097, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1098, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1099, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1101, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1102, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1103, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1104, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1105, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1106, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1107, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1108, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1109, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1110, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1111, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1112, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1113, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1114, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1115, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1116, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1117, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1118, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1119, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1120, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1121, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1122, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1123, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1124, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1125, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1126, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1127, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1128, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1129, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1130, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1131, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1132, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1133, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1134, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1135, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1136, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1137, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1138, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1139, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1140, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1141, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1142, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1143, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1144, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1145, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1146, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1147, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1148, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1149, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1150, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1151, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1152, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1153, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1154, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1155, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1156, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1157, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1158, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1159, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1160, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1161, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1162, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1163, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1164, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1165, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1166, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1167, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1168, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1169, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1170, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1171, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1172, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1173, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1174, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1175, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1176, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1177, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1178, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1179, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1180, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1181, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1182, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1183, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1184, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1185, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1186, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1187, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1188, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1189, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1190, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1191, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1192, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1196, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1197, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1198, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1199, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1200, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1204, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1206, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1208, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1211, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1212, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1213, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1214, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1215, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1216, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1217, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1218, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1219, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1220, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1221, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1222, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1224, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1225, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1226, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1227, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1229, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1230, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1231, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1232, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1233, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1235, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1236, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1237, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1238, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1239, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1240, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1241, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1242, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1243, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1244, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1245, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1246, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1247, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1248, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1249, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1250, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1251, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1252, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1253, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1254, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1255, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1256, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1257, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1258, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1259, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1260, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1261, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1264, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1266, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1267, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1268, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1269, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1270, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1274, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1275, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1276, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1277, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1278, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1280, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1281, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1282, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1283, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1285, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1286, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1287, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1288, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1289, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1290, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1291, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1292, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1293, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1294, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1295, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1296, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1297, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1298, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1299, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1300, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1301, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1302, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1303, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1306, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1307, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1308, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1312, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1316, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1317, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1319, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1323, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1326, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1327, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1328, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1329, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1331, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1333, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1336, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1337, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1339, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1340, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1345, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1346, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1348, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1349, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1356, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1357, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1359, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1360, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1361, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1362, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1366, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1367, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1372, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1373, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1374, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1375, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1376, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1377, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1378, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1379, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1380, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1381, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1382, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1383, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1384, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1385, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1386, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1387, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1388, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1389, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1390, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1391, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1392, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1393, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1394, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1395, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1396, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1397, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1398, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1399, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1400, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1401, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1402, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1403, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1404, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1405, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1406, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1407, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1408, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1409, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1410, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1,\n 0.9], [1411, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1418, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1419, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [1421, 2, 0, 0, 0, 0, 0, 0.999501, 0, 220.0, 0,\n 1.1, 0.9], [1422, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1423,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1424, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1425, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1426, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1427,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1428, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1429, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1431, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1432,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1433, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1434, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1435, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1436,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1437, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1438, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1439, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1440,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1443, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1444, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1445, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1446,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1447, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1448, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1449, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1450,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1451, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1452, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1453, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1454,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1455, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1456, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1457, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1458,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1459, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1460, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1461, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1462,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1463, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1464, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1465, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1466,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1467, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1468, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1469, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1470,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1471, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1472, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1473, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1474,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1475, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1476, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1477, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1483,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1484, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1485, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1486, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1489,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1490, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1491, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1492, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1493,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1494, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1495, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1497, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1498,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1501, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1503, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1504, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1505,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1506, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1507, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1510, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1511,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1512, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1513, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1518, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1519,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1520, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1521, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1522, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1523,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1524, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1525, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1526, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1527,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1528, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1529, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1530, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1531,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1532, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1534, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1535, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1536,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1537, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1538, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1539, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1540,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1541, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1542, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1543, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1544,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1545, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1546, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1547, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1548,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1549, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1550, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1551, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1552,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1553, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1554, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1555, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1556,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1557, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1558, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1559, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1560,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1561, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1562, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1563, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1564,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1565, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1566, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1567, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1568,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1569, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1570, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1571, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1572,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1573, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1574, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1575, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1576,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1577, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1578, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1579, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1580,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1581, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1582, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1583, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1584,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1585, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1586, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1587, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1588,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1589, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1590, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1591, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1592,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1593, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1594, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1595, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1596,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1597, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1598, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1599, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1600,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1601, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1602, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1603, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1604,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1605, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1606, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1607, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1608,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1609, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1610, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1611, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1612,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1613, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1614, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1615, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1616,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1617, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1618, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1619, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1620,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1621, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1622, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1623, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1624,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1625, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1626, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1627, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1628,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1629, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1630, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1631, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1632,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1633, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1634, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1635, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1636,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1637, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1638, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1639, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1640,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1641, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1642, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1643, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1644,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1645, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1646, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1647, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1648,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1649, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1650, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1651, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1652,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1653, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1654, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1655, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1656,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1657, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1658, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1659, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1660,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1661, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1662, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1663, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1664,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1665, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1666, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1667, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1668,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1669, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1670, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1671, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1672,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1673, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1674, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1675, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1676,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1677, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1678, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1679, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1680,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1681, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1682, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1683, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1684,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1685, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1686, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1687, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1688,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1689, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1690, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1691, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1692,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1693, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1694, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1695, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1696,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1697, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1698, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1699, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1700,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1701, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1702, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1703, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1704,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1705, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1706, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1707, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1708,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1709, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1710, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1711, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1712,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1713, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1714, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1715, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1716,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1717, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1718, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1719, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1720,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1721, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1722, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1723, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1724,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1725, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1726, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1727, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1728,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1729, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1730, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1731, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1732,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1733, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1734, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1735, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1736,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1737, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1738, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1739, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1740,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1741, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1742, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1743, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1744,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1745, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1746, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1747, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1748,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1749, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1750, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1751, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1752,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1753, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1754, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1755, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1756,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1757, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1758, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1759, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1760,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1761, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1762, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1763, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1764,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1765, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1766, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1767, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1768,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1769, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1770, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1771, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1772,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1773, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1774, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1775, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1776,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1777, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1778, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1779, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1780,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1781, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1782, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1783, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1784,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1785, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1786, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1787, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1788,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1789, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1790, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1791, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1792,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1793, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1794, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1795, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1796,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1797, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1798, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1799, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1800,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1801, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1802, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1803, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1804,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1805, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1806, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1807, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1808,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1809, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1810, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1811, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1812,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1813, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1814, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1815, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1816,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1817, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1818, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1819, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1820,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1821, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1822, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1823, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1824,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1825, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1826, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1827, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1828,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1830, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1831, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1832, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1833,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1834, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1836, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1837, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1838,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1839, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1840, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1841, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1842,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1843, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1844, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1845, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1846,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1847, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1848, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1849, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1850,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1851, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1852, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1853, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1854,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1855, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1856, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1857, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1858,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1860, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1861, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1862, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1863,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1864, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1865, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1866, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1867,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1868, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1869, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1870, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1871,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1872, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1873, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1874, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1875,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1876, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1877, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1878, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1879,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1880, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1881, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1882, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1883,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1884, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1885, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1886, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1887,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1888, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1889, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1890, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1891,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1892, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1893, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1894, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1895,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1896, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1897, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [1898, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1899,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1900, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1901, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1902, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1903,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1904, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [1905, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [1906, 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1907,\n 2, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1908, 2, 0, 0, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [1909, 2, 0, 0, 0, 0, 0, 0.999501, 0, \n 220.0, 0, 1.1, 0.9], [1910, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [1911, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1912, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [1913, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1914, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1915, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1916, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1917, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1918, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1919, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1920, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1921, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1922, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1923, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1924, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1925, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1926, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1927, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1928, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1929, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1930, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1931, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1932, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1933, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1934, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1935, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1936, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1937, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1938, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1939, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1940, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1941, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1942, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1943, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1944, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1945, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1946, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1947, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1948, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1949, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1950, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1951, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1952, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1953, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1954, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1955, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1956, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1957, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1958, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1959, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1960, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1961, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1962, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1963, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1964, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1965, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1966, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1967, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1968, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1969, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1970, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1971, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1972, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1973, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1974, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1975, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1976, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1977, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1978, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1979, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1980, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1981, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1982, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1983, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1984, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1985, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1986, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1987, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1988, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1989, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1990, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1991, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1992, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1993, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1994, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1995, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1996, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1997, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [1998, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [1999, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2000, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2001, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [2002, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [2003, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2004, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2005, 2, 0, 0, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [2006, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [2007, 2, 0, 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2008, 2, 0,\n 0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [1, 1, 331.244507, 66.248901, \n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [2, 1, 0, 0, 0, 0, 0, 1.000014, 0,\n 380.0, 0, 1.1, 0.9], [3, 1, 58.058252, 11.61165, 0, 0, 0, 1.0, 0, 380.0,\n 0, 1.1, 0.9], [4, 1, 95.478722, 19.095744, 0, 0, 0, 1.0, 0, 380.0, 0, \n 1.1, 0.9], [5, 1, 0, 0, 0, 0, 0, 0.999729, 0, 380.0, 0, 1.1, 0.9], [6, \n 1, 280.365104, 56.073021, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [7, 1, \n 211.28997, 42.257994, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [8, 1, \n 176.792351, 35.35847, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [9, 1, \n 119.561904, 23.912381, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [10, 1, 0,\n 0, 0, 0, 0, 0.998922, 0, 380.0, 0, 1.1, 0.9], [11, 1, 104.756609, \n 20.951322, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [12, 1, 0, 0, 0, 0, 0,\n 1.000664, 0, 380.0, 0, 1.1, 0.9], [13, 1, 0, 0, 0, 0, 0, 1.000269, 0, \n 380.0, 0, 1.1, 0.9], [14, 1, 250.53938, 50.107876, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [15, 1, 0, 0, 0, 0, 0, 1.000619, 0, 380.0, 0, 1.1,\n 0.9], [16, 1, 427.285772, 85.457154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [17, 1, 100.637024, 20.127405, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [18, 1, 0, 0, 0, 0, 0, 1.00161, 0, 380.0, 0, 1.1, 0.9], [19, 1, \n 248.636149, 49.72723, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [20, 1, 0, \n 0, 0, 0, 0, 0.996347, 0, 380.0, 0, 1.1, 0.9], [21, 1, 1069.17358, \n 213.834716, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [22, 1, 0, 0, 0, 0, 0,\n 0.999305, 0, 380.0, 0, 1.1, 0.9], [23, 1, 139.991073, 27.998215, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [24, 1, 0, 0, 0, 0, 0, 0.999967, 0, \n 380.0, 0, 1.1, 0.9], [25, 1, 66.958706, 13.391741, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [26, 1, 0, 0, 0, 0, 0, 1.000158, 0, 380.0, 0, 1.1,\n 0.9], [27, 1, 82.193665, 16.438733, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [28, 1, 242.857656, 48.571531, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [29, 1, 89.206673, 17.841335, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [30,\n 1, 0, 0, 0, 0, 0, 0.999019, 0, 380.0, 0, 1.1, 0.9], [31, 1, 175.55643, \n 35.111286, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [32, 1, 0, 0, 0, 0, 0,\n 0.998857, 0, 380.0, 0, 1.1, 0.9], [33, 1, 220.114772, 44.022954, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [34, 1, 43.669738, 8.733948, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [35, 1, 2.891167, 0.578233, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [36, 1, 9.57224, 1.914448, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [37, 1, 0, 0, 0, 0, 0, 1.003328, 0, 380.0, 0, 1.1,\n 0.9], [38, 1, 230.616628, 46.123326, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [39, 1, 75.515064, 15.103013, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [40, 1, 78.877846, 15.775569, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [41, 1, 84.775808, 16.955162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [42,\n 1, 0, 0, 0, 0, 0, 1.001194, 0, 380.0, 0, 1.1, 0.9], [43, 1, 130.007521,\n 26.001504, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [44, 1, 166.325348, \n 33.26507, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [45, 1, 88.289214, \n 17.657843, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [46, 1, 0, 0, 0, 0, 0,\n 1.000199, 0, 380.0, 0, 1.1, 0.9], [47, 1, 383.88859, 76.777718, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [48, 1, 263.872284, 52.774457, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [49, 1, 66.746375, 13.349275, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [50, 1, 97.191732, 19.438346, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [51, 1, 125.95414, 25.190828, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [52, 1, 0, 0, 0, 0, 0, 1.000211, 0, 380.0, 0, 1.1,\n 0.9], [53, 1, 191.115234, 38.223047, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [54, 1, 97.097666, 19.419533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [55, 1, 95.224435, 19.044887, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [56, 1, 0, 0, 0, 0, 0, 0.999681, 0, 380.0, 0, 1.1, 0.9], [57, 1, \n 113.668229, 22.733646, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [58, 1, \n 260.374368, 52.074874, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [59, 1, \n 74.364511, 14.872902, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [60, 1, \n 39.207033, 7.841407, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [61, 1, 0, 0,\n 0, 0, 0, 0.999712, 0, 380.0, 0, 1.1, 0.9], [62, 1, 298.90577, 59.781154,\n 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [63, 1, 176.441517, 35.288303, 0,\n 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [64, 1, 1872.402063, 374.480413, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [65, 1, 6.238875, 1.247775, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [66, 1, 197.952392, 39.590478, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [67, 1, 424.641227, 84.928245, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [68, 1, 0, 0, 0, 0, 0, 0.998339, 0, 380.0,\n 0, 1.1, 0.9], [69, 1, 0, 0, 0, 0, 0, 1.000383, 0, 380.0, 0, 1.1, 0.9],\n [70, 1, 803.324346, 160.664869, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 71, 1, 186.682231, 37.336446, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [72,\n 1, 305.759877, 61.151975, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [73, 1,\n 97.885258, 19.577052, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [74, 1, 0, \n 0, 0, 0, 0, 1.001287, 0, 380.0, 0, 1.1, 0.9], [75, 1, 121.999483, \n 24.399897, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [76, 1, 117.756269, \n 23.551254, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [77, 1, 114.054994, \n 22.810999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [78, 1, 0, 0, 0, 0, 0,\n 0.998562, 0, 380.0, 0, 1.1, 0.9], [79, 1, 117.770571, 23.554114, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [80, 1, 125.090518, 25.018104, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [81, 1, 141.210159, 28.242032, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [82, 1, 4.699557, 0.939911, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [83, 1, 314.435019, 62.887004, 0, 0, 0, 1.0, 0,\n 220.0, 0, 1.1, 0.9], [84, 1, 30.954188, 6.190838, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [85, 1, 107.343113, 21.468623, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [86, 1, 0, 0, 0, 0, 0, 0.999919, 0, 380.0, 0, 1.1,\n 0.9], [87, 1, 0, 0, 0, 0, 0, 0.998341, 0, 380.0, 0, 1.1, 0.9], [88, 1, \n 86.640119, 17.328024, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [89, 1, \n 107.490329, 21.498066, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [90, 1, \n 124.146584, 24.829317, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [91, 1, \n 43.122342, 8.624468, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [92, 1, \n 47.061603, 9.412321, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [93, 1, \n 46.158004, 9.231601, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [94, 1, 0, 0,\n 0, 0, 0, 1.001352, 0, 380.0, 0, 1.1, 0.9], [95, 1, 0, 0, 0, 0, 0, \n 1.001068, 0, 380.0, 0, 1.1, 0.9], [96, 1, 0, 0, 0, 0, 0, 0.999999, 0, \n 380.0, 0, 1.1, 0.9], [97, 1, 6.491779, 1.298356, 0, 0, 0, 1.0, 0, 380.0,\n 0, 1.1, 0.9], [98, 1, 119.357696, 23.871539, 0, 0, 0, 1.0, 0, 380.0, 0,\n 1.1, 0.9], [99, 1, 0, 0, 0, 0, 0, 1.001016, 0, 380.0, 0, 1.1, 0.9], [\n 100, 1, 0, 0, 0, 0, 0, 1.001474, 0, 380.0, 0, 1.1, 0.9], [101, 1, \n 84.517421, 16.903484, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [102, 1, \n 163.587407, 32.717481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [103, 1, \n 191.265333, 38.253067, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [104, 1, 0,\n 0, 0, 0, 0, 0.999855, 0, 380.0, 0, 1.1, 0.9], [105, 1, 0, 0, 0, 0, 0, \n 0.99956, 0, 380.0, 0, 1.1, 0.9], [106, 1, 0, 0, 0, 0, 0, 0.999751, 0, \n 380.0, 0, 1.1, 0.9], [107, 1, 0, 0, 0, 0, 0, 1.000002, 0, 380.0, 0, 1.1,\n 0.9], [108, 1, 134.914374, 26.982875, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [109, 1, 54.624528, 10.924906, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [110, 1, 70.904827, 14.180965, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [111, 1, 124.953464, 24.990693, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [112, 1, 63.242204, 12.648441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [113, 1, 99.692623, 19.938525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [114, 1, 146.822855, 29.364571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [115, 1, 94.648063, 18.929613, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [116, 1, 158.380517, 31.676103, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [117, 1, 0, 0, 0, 0, 0, 1.000396, 0, 380.0, 0, 1.1, 0.9], [118, 1,\n 245.229569, 49.045914, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [119, 1, \n 47.535561, 9.507112, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [120, 1, 0, \n 0, 0, 0, 0, 1.001046, 0, 380.0, 0, 1.1, 0.9], [121, 1, 64.553313, \n 12.910663, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [122, 1, 56.51577, \n 11.303154, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [123, 1, 0, 0, 0, 0, 0,\n 1.000104, 0, 380.0, 0, 1.1, 0.9], [124, 1, 0, 0, 0, 0, 0, 1.000001, 0, \n 380.0, 0, 1.1, 0.9], [125, 1, 0, 0, 0, 0, 0, 0.999462, 0, 380.0, 0, 1.1,\n 0.9], [126, 1, 296.313585, 59.262717, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [127, 1, 229.081574, 45.816315, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [128, 1, 0, 0, 0, 0, 0, 1.001332, 0, 380.0, 0, 1.1, 0.9], [129, 1,\n 0, 0, 0, 0, 0, 0.999994, 0, 380.0, 0, 1.1, 0.9], [130, 1, 315.861818, \n 63.172364, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [131, 1, 69.742016, \n 13.948403, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [132, 1, 181.597665, \n 36.319533, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [133, 1, 60.828104, \n 12.165621, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [134, 1, 60.579014, \n 12.115803, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [135, 1, 60.659331, \n 12.131866, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [136, 1, 58.762484, \n 11.752497, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [137, 1, 47.004578, \n 9.400916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [138, 1, 0, 0, 0, 0, 0,\n 0.998491, 0, 380.0, 0, 1.1, 0.9], [139, 1, 92.077205, 18.415441, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [140, 1, 63.67533, 12.735066, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [141, 1, 75.444027, 15.088805, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [142, 1, 83.015362, 16.603072, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [143, 1, 0, 0, 0, 0, 0, 0.999975, 0, 380.0,\n 0, 1.1, 0.9], [144, 1, 75.618411, 15.123682, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [145, 1, 219.975959, 43.995192, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [146, 1, 283.590392, 56.718078, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [147, 1, 173.824211, 34.764842, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [148, 1, 245.297873, 49.059575, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [149, 1, 158.141763, 31.628353, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [150, 1, 206.470492, 41.294098, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [151, 1, 48.654456, 9.730891, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [152, 1, 101.001605, 20.200321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [153, 1, 180.20329, 36.040658, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [154, 1, 185.104539, 37.020908, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [155, 1, 192.802737, 38.560547, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [156, 1, 0, 0, 0, 0, 0, 0.999987, 0, 380.0, 0, 1.1, 0.9], [157, 1,\n 0, 0, 0, 0, 0, 1.001204, 0, 380.0, 0, 1.1, 0.9], [158, 1, 50.7971, \n 10.15942, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [159, 1, 0, 0, 0, 0, 0,\n 1.000889, 0, 380.0, 0, 1.1, 0.9], [160, 1, 0, 0, 0, 0, 0, 1.000007, 0, \n 380.0, 0, 1.1, 0.9], [161, 1, 157.695907, 31.539181, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [162, 1, 235.708647, 47.141729, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [163, 1, 47.139503, 9.427901, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [164, 1, 47.32908, 9.465816, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [165, 1, 0, 0, 0, 0, 0, 0.999973, 0, 380.0, 0, 1.1,\n 0.9], [166, 1, 55.335351, 11.06707, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [167, 1, 77.84291, 15.568582, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [168, 1, 53.126793, 10.625359, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 169, 1, 181.868329, 36.373666, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 170, 1, 136.658713, 27.331743, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 171, 1, 116.63816, 23.327632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 172, 1, 57.242831, 11.448566, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 173, 1, 54.683847, 10.936769, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 174, 1, 82.06086, 16.412172, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [175,\n 1, 54.648007, 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [176, 1,\n 190.428013, 38.085603, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [177, 1, \n 31.052062, 6.210412, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [178, 1, \n 164.459338, 32.891868, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [179, 1, \n 60.59759, 12.119518, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [180, 1, \n 53.266832, 10.653366, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [181, 1, \n 40.204271, 8.040854, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [182, 1, \n 1.821272, 0.364254, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [183, 1, \n 545.164071, 109.032814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [184, 1, \n 0, 0, 0, 0, 0, 0.999598, 0, 380.0, 0, 1.1, 0.9], [185, 1, 116.580184, \n 23.316037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [186, 1, 62.777823, \n 12.555565, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [187, 1, 36.718634, \n 7.343727, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [188, 1, 54.648007, \n 10.929601, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [189, 1, 200.523932, \n 40.104786, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [190, 1, 265.230417, \n 53.046083, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [191, 1, 0, 0, 0, 0, 0,\n 1.000004, 0, 380.0, 0, 1.1, 0.9], [192, 1, 63.875519, 12.775104, 0, 0, \n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [193, 1, 54.559855, 10.911971, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [194, 1, 37.663542, 7.532708, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [195, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [196, 1, 52.839754, 10.567951, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [197, 1, 83.717575, 16.743515, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [198, 1, 49.539578, 9.907916, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [199, 1, 63.780558, 12.756112, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [200, 1, 54.649275, 10.929855, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 201, 1, 0, 0, 0, 0, 0, 0.998237, 0, 380.0, 0, 1.1, 0.9], [202, 1, \n 55.999994, 11.199999, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [203, 1, \n 7.378501, 1.4757, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [204, 1, \n 216.262395, 43.252479, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [205, 1, \n 108.140933, 21.628187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [206, 1, \n 51.90009, 10.380018, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [207, 1, \n 154.328515, 30.865703, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [208, 1, \n 45.443662, 9.088732, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [209, 1, \n 63.15081, 12.630162, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [210, 1, \n 72.548461, 14.509692, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [211, 1, \n 254.951553, 50.990311, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [212, 1, \n 63.90001, 12.780002, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [213, 1, \n 299.548965, 59.909793, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [214, 1, \n 201.558484, 40.311697, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [215, 1, \n 426.205473, 85.241095, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [216, 1, \n 143.710831, 28.742166, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [217, 1, \n 46.050054, 9.210011, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [218, 1, \n 140.293093, 28.058619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [219, 1, \n 225.468098, 45.09362, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [220, 1, 0,\n 0, 0, 0, 0, 0.999508, 0, 380.0, 0, 1.1, 0.9], [221, 1, 128.618978, \n 25.723796, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [222, 1, 0.0, 0.0, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [223, 1, 127.469368, 25.493874, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [224, 1, 148.229316, 29.645863, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [225, 1, 266.15424, 53.230848, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [226, 1, 92.9759, 18.59518, 0, 0, 0, 1.0, \n 0, 220.0, 0, 1.1, 0.9], [227, 1, 115.829115, 23.165823, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [228, 1, 113.566909, 22.713382, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [229, 1, 251.304201, 50.26084, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [230, 1, 60.277099, 12.05542, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [231, 1, 0, 0, 0, 0, 0, 1.000849, 0, 380.0, 0, 1.1,\n 0.9], [232, 1, 0, 0, 0, 0, 0, 0.999983, 0, 380.0, 0, 1.1, 0.9], [233, 1,\n 0, 0, 0, 0, 0, 0.999757, 0, 380.0, 0, 1.1, 0.9], [234, 1, 214.713729, \n 42.942746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [235, 1, 69.822043, \n 13.964409, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [236, 1, 0, 0, 0, 0, 0,\n 0.999971, 0, 380.0, 0, 1.1, 0.9], [237, 1, 0.577857, 0.115571, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [238, 1, 79.004912, 15.800982, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [239, 1, 109.155193, 21.831039, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [240, 1, 688.53002, 137.706004, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [241, 1, 509.488297, 101.897659, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [242, 1, 185.513909, 37.102782, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [243, 1, 149.672731, 29.934546, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [244, 1, 178.323941, 35.664788, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [245, 1, 0, 0, 0, 0, 0, 1.001823, 0, 380.0,\n 0, 1.1, 0.9], [246, 1, 0, 0, 0, 0, 0, 1.00019, 0, 380.0, 0, 1.1, 0.9],\n [247, 1, 35.387378, 7.077476, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [\n 248, 1, 0, 0, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [249, 1, 0, 0, 0, 0,\n 0, 0.999999, 0, 380.0, 0, 1.1, 0.9], [250, 1, 0, 0, 0, 0, 0, 0.999999, \n 0, 380.0, 0, 1.1, 0.9], [251, 1, 87.823446, 17.564689, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [252, 1, 225.226964, 45.045393, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [253, 1, 98.883231, 19.776646, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [254, 1, 31.571775, 6.314355, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [255, 1, 155.267358, 31.053472, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [256, 1, 178.064642, 35.612928, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [257, 1, 85.937935, 17.187587, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [258, 1, 280.061351, 56.01227, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [259, 1, 0, 0, 0, 0, 0, 0.999324, 0, 380.0, 0, 1.1,\n 0.9], [260, 1, 174.299184, 34.859837, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [261, 1, 0, 0, 0, 0, 0, 1.001923, 0, 380.0, 0, 1.1, 0.9], [262, 1,\n 0, 0, 0, 0, 0, 1.000423, 0, 380.0, 0, 1.1, 0.9], [263, 1, 250.031952, \n 50.00639, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [264, 1, 323.679848, \n 64.73597, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [265, 1, 0, 0, 0, 0, 0,\n 1.000003, 0, 380.0, 0, 1.1, 0.9], [266, 1, 155.992125, 31.198425, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [267, 1, 197.296193, 39.459239, 0, 0, 0,\n 1.0, 0, 380.0, 0, 1.1, 0.9], [268, 1, 68.608247, 13.721649, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [269, 1, 55.094995, 11.018999, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [270, 1, 0, 0, 0, 0, 0, 1.000027, 0, 380.0,\n 0, 1.1, 0.9], [271, 1, 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [272, 1, 1.124141, 0.224828, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [273,\n 1, 153.726786, 30.745357, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [274, 1,\n 298.82462, 59.764924, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [275, 1, \n 55.9416, 11.18832, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [276, 1, \n 218.074579, 43.614916, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [277, 1, 0,\n 0, 0, 0, 0, 0.999467, 0, 380.0, 0, 1.1, 0.9], [278, 1, 170.24286, \n 34.048572, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [279, 1, 0, 0, 0, 0, 0,\n 0.999606, 0, 380.0, 0, 1.1, 0.9], [280, 1, 0, 0, 0, 0, 0, 0.999582, 0, \n 380.0, 0, 1.1, 0.9], [281, 1, 224.87043, 44.974086, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [282, 1, 318.001613, 63.600323, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [283, 1, 127.468855, 25.493771, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [284, 1, 193.376156, 38.675231, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [285, 1, 86.238982, 17.247796, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [286, 1, 180.742976, 36.148595, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [287, 1, 111.088604, 22.217721, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [288, 1, 71.451417, 14.290283, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [289, 1, 112.372355, 22.474471, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [290, 1, 0, 0, 0, 0, 0, 1.004511, 0, 380.0, 0, 1.1,\n 0.9], [291, 1, 73.950919, 14.790184, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [292, 1, 145.790849, 29.15817, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [293, 1, 128.490989, 25.698198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [294, 1, 34.240907, 6.848181, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [295, 1, 71.643904, 14.328781, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [296, 1, 203.39721, 40.679442, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 297, 1, 213.77275, 42.75455, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [298,\n 1, 112.876261, 22.575252, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [299, 1,\n 109.319908, 21.863982, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [300, 1, \n 297.817032, 59.563406, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [301, 1, 0,\n 0, 0, 0, 0, 0.999233, 0, 380.0, 0, 1.1, 0.9], [302, 1, 250.874417, \n 50.174883, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [303, 1, 128.856376, \n 25.771275, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [304, 1, 110.649061, \n 22.129812, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [305, 1, 0, 0, 0, 0, 0,\n 0.99963, 0, 380.0, 0, 1.1, 0.9], [306, 1, 0, 0, 0, 0, 0, 1.001279, 0, \n 380.0, 0, 1.1, 0.9], [307, 1, 131.240069, 26.248014, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [308, 1, 161.801519, 32.360304, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [309, 1, 264.730039, 52.946008, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [310, 1, 0, 0, 0, 0, 0, 1.000139, 0, 380.0, 0, 1.1,\n 0.9], [311, 1, 224.864072, 44.972814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [312, 1, 101.12763, 20.225526, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [313, 1, 0, 0, 0, 0, 0, 1.000718, 0, 380.0, 0, 1.1, 0.9], [314, 1,\n 313.229025, 62.645805, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [315, 1, 0,\n 0, 0, 0, 0, 1.001596, 0, 380.0, 0, 1.1, 0.9], [316, 1, 122.727204, \n 24.545441, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [317, 1, 165.247685, \n 33.049537, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [318, 1, 271.56295, \n 54.31259, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [319, 1, 9.728471, \n 1.945694, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [320, 1, 0, 0, 0, 0, 0,\n 0.999998, 0, 380.0, 0, 1.1, 0.9], [321, 1, 230.130721, 46.026144, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [322, 1, 29.297122, 5.859424, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [323, 1, 3.048116, 0.609623, 0, 0, 0, 1.0,\n 0, 380.0, 0, 1.1, 0.9], [324, 1, 538.833195, 107.766639, 0, 0, 0, 1.0, \n 0, 380.0, 0, 1.1, 0.9], [325, 1, 175.527235, 35.105447, 0, 0, 0, 1.0, 0,\n 380.0, 0, 1.1, 0.9], [326, 1, 14.231204, 2.846241, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [327, 1, 122.469223, 24.493845, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [328, 1, 208.706378, 41.741276, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [329, 1, 313.912998, 62.7826, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [330, 1, 0, 0, 0, 0, 0, 1.002494, 0, 380.0, 0, 1.1,\n 0.9], [331, 1, 24.923624, 4.984725, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [332, 1, 0, 0, 0, 0, 0, 0.998492, 0, 380.0, 0, 1.1, 0.9], [333, 1, \n 261.879122, 52.375824, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [334, 1, 0,\n 0, 0, 0, 0, 0.999971, 0, 380.0, 0, 1.1, 0.9], [335, 1, 267.267401, \n 53.45348, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [336, 1, 0, 0, 0, 0, 0,\n 0.998828, 0, 380.0, 0, 1.1, 0.9], [337, 1, 106.311135, 21.262227, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [338, 1, 288.543529, 57.708706, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [339, 1, 178.460182, 35.692036, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [340, 1, 150.884477, 30.176895, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [341, 1, 136.402581, 27.280516, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [342, 1, 236.613596, 47.322719, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [343, 1, 129.809669, 25.961934, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [344, 1, 325.46393, 65.092786, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [345, 1, 355.881992, 71.176398, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [346, 1, 353.300089, 70.660018, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [347, 1, 123.555173, 24.711035, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [348, 1, 322.981361, 64.596272, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [349, 1, 0, 0, 0, 0, 0, 1.002022, 0, 380.0,\n 0, 1.1, 0.9], [350, 1, 169.440736, 33.888147, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [351, 1, 0, 0, 0, 0, 0, 1.001885, 0, 380.0, 0, 1.1, 0.9], [\n 352, 1, 1121.578094, 224.315619, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [353, 1, 3.371839, 0.674368, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [354,\n 1, 22.907979, 4.581596, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [355, 1, \n 0.0, 0.0, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [356, 1, 0.0, 0.0, 0, 0,\n 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [357, 1, 0.057423, 0.011485, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [358, 1, 0, 0, 0, 0, 0, 1.001382, 0, 380.0,\n 0, 1.1, 0.9], [359, 1, 3.35273, 0.670546, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [360, 1, 0, 0, 0, 0, 0, 1.000729, 0, 380.0, 0, 1.1, 0.9], [\n 361, 1, 85.810098, 17.16202, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [362,\n 1, 244.603189, 48.920638, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [363, 1,\n 360.135165, 72.027033, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [364, 1, \n 84.968934, 16.993787, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [365, 1, \n 76.26413, 15.252826, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [366, 1, \n 151.155263, 30.231053, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [367, 1, \n 73.062175, 14.612435, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [368, 1, \n 35.977016, 7.195403, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [369, 1, \n 29.563521, 5.912704, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [370, 1, \n 87.035851, 17.40717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [371, 1, \n 437.926082, 87.585216, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [372, 1, \n 253.959627, 50.791925, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [373, 1, \n 171.37214, 34.274428, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [374, 1, \n 87.876732, 17.575346, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [375, 1, \n 288.266193, 57.653239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [376, 1, \n 316.173722, 63.234744, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [377, 1, \n 226.249032, 45.249806, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [378, 1, \n 225.813549, 45.16271, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [379, 1, \n 77.828258, 15.565652, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [380, 1, 0,\n 0, 0, 0, 0, 1.001233, 0, 380.0, 0, 1.1, 0.9], [381, 1, 260.262441, \n 52.052488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [382, 1, 0, 0, 0, 0, 0,\n 1.001308, 0, 380.0, 0, 1.1, 0.9], [383, 1, 0, 0, 0, 0, 0, 0.998969, 0, \n 380.0, 0, 1.1, 0.9], [384, 1, 91.84015, 18.36803, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [385, 1, 115.920294, 23.184059, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [386, 1, 93.138481, 18.627696, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [387, 1, 189.680321, 37.936064, 0, 0, 0, 1.0, 0, \n 220.0, 0, 1.1, 0.9], [388, 1, 1018.58055, 203.71611, 0, 0, 0, 1.0, 0, \n 380.0, 0, 1.1, 0.9], [389, 1, 0, 0, 0, 0, 0, 0.999916, 0, 380.0, 0, 1.1,\n 0.9], [390, 1, 84.101814, 16.820363, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, \n 0.9], [391, 1, 95.799138, 19.159828, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [392, 1, 183.837583, 36.767517, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [393, 1, 229.578746, 45.915749, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [394, 1, 82.572875, 16.514575, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [395, 1, 114.440902, 22.88818, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, \n 0.9], [396, 1, 81.05732, 16.211464, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9\n ], [397, 1, 649.990419, 129.998084, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [398, 1, 281.52489, 56.304978, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [399, 1, 119.950108, 23.990022, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 400, 1, 63.907408, 12.781482, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 401, 1, 0, 0, 0, 0, 0, 1.00068, 0, 380.0, 0, 1.1, 0.9], [402, 1, 0, 0, \n 0, 0, 0, 1.000458, 0, 380.0, 0, 1.1, 0.9], [403, 1, 31.731514, 6.346303,\n 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [404, 1, 111.792088, 22.358418, 0,\n 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [405, 1, 842.801818, 168.560364, 0, \n 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [406, 1, 63.856811, 12.771362, 0, 0,\n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [407, 1, 126.405958, 25.281192, 0, 0, 0,\n 1.0, 0, 220.0, 0, 1.1, 0.9], [408, 1, 365.495142, 73.099028, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [409, 1, 0, 0, 0, 0, 0, 0.999955, 0, 380.0,\n 0, 1.1, 0.9], [410, 1, 47.32062, 9.464124, 0, 0, 0, 1.0, 0, 220.0, 0, \n 1.1, 0.9], [411, 1, 44.743584, 8.948717, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [412, 1, 3.142747, 0.628549, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9],\n [413, 1, 156.891603, 31.378321, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 414, 1, 13.321795, 2.664359, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [415,\n 1, 0, 0, 0, 0, 0, 1.00032, 0, 380.0, 0, 1.1, 0.9], [416, 1, 189.71637, \n 37.943274, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [417, 1, 7.42324, \n 1.484648, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [418, 1, 154.695841, \n 30.939168, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [419, 1, 82.683827, \n 16.536765, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [420, 1, 83.245811, \n 16.649162, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [421, 1, 119.913469, \n 23.982694, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [422, 1, 87.852626, \n 17.570525, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [423, 1, 184.509928, \n 36.901986, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [424, 1, 13.30269, \n 2.660538, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [425, 1, 109.248654, \n 21.849731, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [426, 1, 9.051587, \n 1.810317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [427, 1, 76.069687, \n 15.213937, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [428, 1, 34.107287, \n 6.821457, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [429, 1, 384.892639, \n 76.978528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [430, 1, 205.01907, \n 41.003814, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [431, 1, 137.099401, \n 27.41988, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [432, 1, 160.260789, \n 32.052158, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [433, 1, 81.921043, \n 16.384209, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [434, 1, 42.635701, \n 8.52714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [435, 1, 170.515962, \n 34.103192, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [436, 1, 91.035611, \n 18.207122, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [437, 1, 20.732405, \n 4.146481, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [438, 1, 55.640098, \n 11.12802, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [439, 1, 103.594671, \n 20.718934, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [440, 1, 87.548083, \n 17.509617, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [441, 1, 67.117335, \n 13.423467, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [442, 1, 88.818955, \n 17.763791, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [443, 1, 192.567856, \n 38.513571, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [444, 1, 0, 0, 0, 0, 0,\n 0.999997, 0, 380.0, 0, 1.1, 0.9], [445, 1, 87.500608, 17.500122, 0, 0, \n 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [446, 1, 40.573247, 8.114649, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [447, 1, 77.137671, 15.427534, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [448, 1, 56.688355, 11.337671, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [449, 1, 285.841877, 57.168375, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [450, 1, 174.921589, 34.984318, 0, 0, 0, \n 1.0, 0, 380.0, 0, 1.1, 0.9], [451, 1, 74.744857, 14.948971, 0, 0, 0, \n 1.0, 0, 220.0, 0, 1.1, 0.9], [452, 1, 0, 0, 0, 0, 0, 0.999998, 0, 380.0,\n 0, 1.1, 0.9], [453, 1, 50.093556, 10.018711, 0, 0, 0, 1.0, 0, 220.0, 0,\n 1.1, 0.9], [454, 1, 34.948569, 6.989714, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1,\n 0.9], [455, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9\n ], [456, 1, 56.980701, 11.39614, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9],\n [457, 1, 174.745521, 34.949104, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 458, 1, 166.205025, 33.241005, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 459, 1, 202.277698, 40.45554, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 460, 1, 265.834571, 53.166914, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 461, 1, 276.525599, 55.30512, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 462, 1, 84.590614, 16.918123, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [\n 463, 1, 43.34476, 8.668952, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [464,\n 1, 43.397154, 8.679431, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [465, 1, \n 70.098265, 14.019653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [466, 1, \n 56.910923, 11.382185, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [467, 1, \n 52.519359, 10.503872, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [468, 1, \n 86.110989, 17.222198, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [469, 1, \n 53.361254, 10.672251, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [470, 1, \n 135.890635, 27.178127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [471, 1, \n 133.796584, 26.759317, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [472, 1, \n 46.798012, 9.359602, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [473, 1, \n 85.932309, 17.186462, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [474, 1, \n 44.383139, 8.876628, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [475, 1, \n 43.555323, 8.711065, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [476, 1, \n 49.224681, 9.844936, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [477, 1, \n 79.437989, 15.887598, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [478, 1, \n 99.788592, 19.957718, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [479, 1, \n 180.839091, 36.167818, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [480, 1, \n 79.26505, 15.85301, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [481, 1, \n 68.837439, 13.767488, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [482, 1, \n 78.16195, 15.63239, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [483, 1, \n 66.47101, 13.294202, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [484, 1, \n 52.110038, 10.422008, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [485, 1, \n 77.838606, 15.567721, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [486, 1, \n 716.077152, 143.21543, 0, 0, 0, 0.999501, 0, 220.0, 0, 1.1, 0.9], [487,\n 1, 181.45064, 36.290128, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [488, 1,\n 522.841445, 104.568289, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [489, 1, \n 137.610381, 27.522076, 0, 0, 0, 1.0, 0, 380.0, 0, 1.1, 0.9], [490, 1, \n 42.819219, 8.563844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [491, 1, \n 58.876975, 11.775395, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [492, 1, \n 91.813369, 18.362674, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [493, 1, \n 118.336442, 23.667288, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [494, 1, \n 161.733452, 32.34669, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [495, 1, \n 127.313133, 25.462627, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [496, 1, \n 9.017801, 1.80356, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [497, 1, \n 1127.673279, 225.534656, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [498, 1,\n 52.88686, 10.577372, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [499, 1, \n 73.821392, 14.764278, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [500, 1, \n 40.416344, 8.083269, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [501, 1, \n 68.377485, 13.675497, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [502, 1, \n 269.871772, 53.974354, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [503, 1, \n 82.651196, 16.530239, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [504, 1, \n 54.123886, 10.824777, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [505, 1, \n 383.88859, 76.777718, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [506, 1, \n 120.497904, 24.099581, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [507, 1, \n 114.619007, 22.923801, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [508, 1, \n 166.630951, 33.32619, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [509, 1, \n 219.586543, 43.917309, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [510, 1, \n 138.725937, 27.745187, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [511, 1, \n 121.011401, 24.20228, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [512, 1, \n 79.935501, 15.9871, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [513, 1, \n 44.035931, 8.807186, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [514, 1, \n 109.601171, 21.920234, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [515, 1, \n 97.770756, 19.554151, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [516, 1, \n 109.382469, 21.876494, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [517, 1, \n 51.379564, 10.275913, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [518, 1, \n 289.37296, 57.874592, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [519, 1, \n 28.479597, 5.695919, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [520, 1, \n 114.983158, 22.996632, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [521, 1, \n 103.868838, 20.773768, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [522, 1, \n 88.93334, 17.786668, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [523, 1, \n 47.871806, 9.574361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [524, 1, \n 138.947496, 27.789499, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [525, 1, \n 165.53353, 33.106706, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [526, 1, \n 50.186653, 10.037331, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [527, 1, \n 55.101418, 11.020284, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [528, 1, \n 120.263998, 24.0528, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [529, 1, \n 154.160637, 30.832127, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [530, 1, \n 65.326981, 13.065396, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [531, 1, \n 66.42028, 13.284056, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [532, 1, \n 63.75189, 12.750378, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [533, 1, \n 57.129386, 11.425877, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [534, 1, \n 157.594819, 31.518964, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [535, 1, \n 197.298599, 39.45972, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [536, 1, \n 155.513815, 31.102763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [537, 1, \n 51.733038, 10.346608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [538, 1, \n 38.672089, 7.734418, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [539, 1, \n 41.033464, 8.206693, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [540, 1, \n 36.948833, 7.389767, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [541, 1, \n 95.442023, 19.088405, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [542, 1, \n 131.107838, 26.221568, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [543, 1, \n 71.610457, 14.322091, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [544, 1, \n 133.375481, 26.675096, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [545, 1, \n 287.179283, 57.435857, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [546, 1, \n 143.938594, 28.787719, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [547, 1, \n 186.05009, 37.210018, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [548, 1, \n 60.225184, 12.045037, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [549, 1, \n 51.497682, 10.299536, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [550, 1, \n 42.494345, 8.498869, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [551, 1, \n 40.963523, 8.192705, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [552, 1, \n 203.420244, 40.684049, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [553, 1, \n 1.407353, 0.281471, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [554, 1, \n 206.085944, 41.217189, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [555, 1, \n 78.521026, 15.704205, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [556, 1, \n 121.474641, 24.294928, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [557, 1, \n 258.089909, 51.617982, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [558, 1, \n 152.184958, 30.436992, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [559, 1, \n 81.447924, 16.289585, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [560, 1, \n 127.240926, 25.448185, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [561, 1, \n 69.77521, 13.955042, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [562, 1, \n 190.620645, 38.124129, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [563, 1, \n 134.021849, 26.80437, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [564, 1, \n 264.626513, 52.925303, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [565, 1, \n 199.673817, 39.934763, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [566, 1, \n 0.320719, 0.064144, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [567, 1, \n 324.578744, 64.915749, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [568, 1, \n 300.156806, 60.031361, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [569, 1, \n 211.192437, 42.238487, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [570, 1, \n 329.709424, 65.941885, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [571, 1, \n 242.757168, 48.551434, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [572, 1, \n 428.183113, 85.636623, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [573, 1, \n 124.63849, 24.927698, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [574, 1, \n 237.483921, 47.496784, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [575, 1, \n 4.462749, 0.89255, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [576, 1, \n 288.778854, 57.755771, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [577, 1, \n 318.348582, 63.669716, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [578, 1, \n 303.948566, 60.789713, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [579, 1, \n 110.888732, 22.177746, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [580, 1, \n 23.085384, 4.617077, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [581, 1, \n 0.132651, 0.02653, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [582, 1, \n 83.523038, 16.704608, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [583, 1, \n 95.797854, 19.159571, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [584, 1, \n 54.964221, 10.992844, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9], [585, 1, \n 95.42465, 19.08493, 0, 0, 0, 1.0, 0, 220.0, 0, 1.1, 0.9]])\n', (120, 105634), False, 'from numpy import array\n'), ((126562, 238407), 'numpy.array', 'array', (['[[586, 272.0, 0, 9999, -9999, 1.0, 100, 1, 272.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [589, 63.1, 0, 9999, -9999, 1.0, 100, 1, 63.1, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [590, 38.0, 0, 9999, -9999, 1.0, 100, 1, \n 38.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [593, 11.1, 0, 9999, -9999,\n 1.0, 100, 1, 11.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [594, 19.0, 0,\n 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [595, 1147.054992, 0, 9999, -9999, 1.0, 100, 1, 4730.0, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [598, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [599, 9.3, 0, 9999, -9999, 1.0, \n 100, 1, 9.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [601, 61.5, 0, 9999,\n -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [602, \n 24.6, 0, 9999, -9999, 1.0, 100, 1, 24.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [603, 868.534042, 0, 9999, -9999, 1.0, 100, 1, 3455.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [607, 1800.0, 0, 9999, -9999, 1.0, 100, 1, \n 1800.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [608, 24.0, 0, 9999, -\n 9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [609, \n 36.4, 0, 9999, -9999, 1.0, 100, 1, 36.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [612, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [613, 85.0, 0, 9999, -9999, 1.0, 100, 1, 85.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [614, 30.0, 0, 9999, -9999, 1.0,\n 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [616, 29.0, 0, \n 9999, -9999, 1.0, 100, 1, 29.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [617, 137.0, 0, 9999, -9999, 1.0, 100, 1, 137.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [618, 33.4, 0, 9999, -9999, 1.0, 100, 1, 33.4, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [619, 118.0, 0, 9999, -9999, 1.0, 100, 1,\n 118.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [621, 765.0, 0, 9999, -\n 9999, 1.0, 100, 1, 765.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [623, \n 267.860808, 0, 9999, -9999, 1.0, 100, 1, 760.0, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [624, 27.0, 0, 9999, -9999, 1.0, 100, 1, 27.0, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [628, 449.0, 0, 9999, -9999, 1.0, 100, 1,\n 449.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [629, 75.3, 0, 9999, -\n 9999, 1.0, 100, 1, 75.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [632, \n 45.1, 0, 9999, -9999, 1.0, 100, 1, 45.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [637, 53.7, 0, 9999, -9999, 1.0, 100, 1, 53.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [638, 128.7, 0, 9999, -9999, 1.0, 100, 1, 128.7, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [640, 12.0, 0, 9999, -9999, 1.0,\n 100, 1, 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [641, 12.6, 0, \n 9999, -9999, 1.0, 100, 1, 12.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [642, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [643, 857.0, 0, 9999, -9999, 1.0, 100, 1, 857.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [646, 103.0, 0, 9999, -9999, 1.0, 100, 1, \n 103.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [647, 14.0, 0, 9999, -\n 9999, 1.0, 100, 1, 14.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [650, \n 1324.5, 0, 9999, -9999, 1.0, 100, 1, 1324.5, 0.0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0], [652, 46.9, 0, 9999, -9999, 1.0, 100, 1, 46.9, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [655, 61.5, 0, 9999, -9999, 1.0, 100, 1, \n 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [661, 32.7, 0, 9999, -9999,\n 1.0, 100, 1, 32.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [663, 15.0, 0,\n 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [666, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [668, 766.0, 0, 9999, -9999, 1.0, 100, 1, 766.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [670, 24.0, 0, 9999, -9999, 1.0, 100, 1, \n 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [672, 33.1, 0, 9999, -9999,\n 1.0, 100, 1, 33.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [676, 370.0, \n 0, 9999, -9999, 1.0, 100, 1, 370.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [681, 40.1, 0, 9999, -9999, 1.0, 100, 1, 40.1, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [683, 27.5, 0, 9999, -9999, 1.0, 100, 1, 27.5, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [687, 1329.0, 0, 9999, -9999, 1.0, \n 100, 1, 1329.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [689, 310.0, 0, \n 9999, -9999, 1.0, 100, 1, 310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [691, 26.0, 0, 9999, -9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [693, 194.0, 0, 9999, -9999, 1.0, 100, 1, 194.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [694, 16.4, 0, 9999, -9999, 1.0, 100, 1, \n 16.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [695, 14.7, 0, 9999, -9999,\n 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [696, 721.0, \n 0, 9999, -9999, 1.0, 100, 1, 721.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [697, 11.6, 0, 9999, -9999, 1.0, 100, 1, 11.6, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [698, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [702, 73.4, 0, 9999, -9999, 1.0, 100,\n 1, 73.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [704, 508.0, 0, 9999, -\n 9999, 1.0, 100, 1, 508.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [705, \n 17.0, 0, 9999, -9999, 1.0, 100, 1, 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [707, 34.0, 0, 9999, -9999, 1.0, 100, 1, 34.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [708, 7.8, 0, 9999, -9999, 1.0, 100, 1, 7.8, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [711, 88.484779, 0, 9999, -9999, 1.0,\n 100, 1, 176.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [713, 13.4, 0, \n 9999, -9999, 1.0, 100, 1, 13.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [714, 15.0, 0, 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [716, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [717, 11.0, 0, 9999, -9999, 1.0, 100, 1, 11.0,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [719, 1328.962186, 0, 9999, -\n 9999, 1.0, 100, 1, 1958.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [722,\n 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [724, 12.1, 0, 9999, -9999, 1.0, 100, 1, 12.1, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [727, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [728, 510.0, 0, 9999, -9999, 1.0,\n 100, 1, 510.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [730, 633.2, 0, \n 9999, -9999, 1.0, 100, 1, 633.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [731, 540.174348, 0, 9999, -9999, 1.0, 100, 1, 895.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [732, 14.6, 0, 9999, -9999, 1.0, 100, 1, 14.6, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [735, 84.8, 0, 9999, -9999, 1.0,\n 100, 1, 84.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [737, 28.0, 0, \n 9999, -9999, 1.0, 100, 1, 28.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [738, 138.5, 0, 9999, -9999, 1.0, 100, 1, 138.5, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [741, 214.0, 0, 9999, -9999, 1.0, 100, 1, 214.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [742, 9.0, 0, 9999, -9999, 1.0, 100, 1, \n 9.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [743, 220.991864, 0, 9999, \n -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [746,\n 100.0, 0, 9999, -9999, 1.0, 100, 1, 100.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0], [747, 12.5, 0, 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [748, 110.0, 0, 9999, -9999, 1.0, 100, 1, \n 110.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [749, 16.0, 0, 9999, -\n 9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [750, \n 90.8, 0, 9999, -9999, 1.0, 100, 1, 90.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [753, 116.851068, 0, 9999, -9999, 1.0, 100, 1, 311.8, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [758, 18.5, 0, 9999, -9999, 1.0, 100, 1, \n 18.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [760, 298.788806, 0, 9999,\n -9999, 1.0, 100, 1, 794.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [762,\n 700.835089, 0, 9999, -9999, 1.0, 100, 1, 1105.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [763, 20.3, 0, 9999, -9999, 1.0, 100, 1, 20.3, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [765, 59.0, 0, 9999, -9999, 1.0, 100, 1,\n 59.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [767, 11.2, 0, 9999, -9999,\n 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [769, 43.3, 0,\n 9999, -9999, 1.0, 100, 1, 43.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [771, 690.0, 0, 9999, -9999, 1.0, 100, 1, 690.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [772, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [774, 33.5, 0, 9999, -9999, 1.0, 100, 1,\n 33.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [776, 54.222128, 0, 9999, \n -9999, 1.0, 100, 1, 56.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [777, \n 79.0, 0, 9999, -9999, 1.0, 100, 1, 79.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [778, 14.7, 0, 9999, -9999, 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [781, 973.218708, 0, 9999, -9999, 1.0, 100, 1, \n 1310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [784, 802.511044, 0, \n 9999, -9999, 1.0, 100, 1, 1275.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [785, 3.0, 0, 9999, -9999, 1.0, 100, 1, 3.0, 0.0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0], [787, 778.0, 0, 9999, -9999, 1.0, 100, 1, 778.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [788, 875.0, 0, 9999, -9999, 1.0, 100, 1, \n 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [789, 77.4, 0, 9999, -\n 9999, 1.0, 100, 1, 77.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [791, \n 10.0, 0, 9999, -9999, 1.0, 100, 1, 10.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [792, 62.7, 0, 9999, -9999, 1.0, 100, 1, 62.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [795, 13.6, 0, 9999, -9999, 1.0, 100, 1, 13.6, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [801, 50.0, 0, 9999, -9999, 1.0,\n 100, 1, 50.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [802, 500.0, 0, \n 9999, -9999, 1.0, 100, 1, 500.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [805, 418.686348, 0, 9999, -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [806, 35.8, 0, 9999, -9999, 1.0, 100, 1, 35.8, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [808, 217.5, 0, 9999, -9999, 1.0,\n 100, 1, 217.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [809, 12.5, 0, \n 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [811, 25.2, 0, 9999, -9999, 1.0, 100, 1, 25.2, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [814, 89.0, 0, 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [816, 80.1, 0, 9999, -9999, 1.0, 100, 1, \n 80.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [817, 54.0, 0, 9999, -9999,\n 1.0, 100, 1, 54.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [821, 82.5, 0,\n 9999, -9999, 1.0, 100, 1, 82.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [822, 134.0, 0, 9999, -9999, 1.0, 100, 1, 134.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [826, 58.0, 0, 9999, -9999, 1.0, 100, 1, 58.0, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [829, 204.799653, 0, 9999, -9999, 1.0, \n 100, 1, 211.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [830, 89.0, 0, \n 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [835, 63.7, 0, 9999, -9999, 1.0, 100, 1, 63.7, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [836, 25.5, 0, 9999, -9999, 1.0, 100, 1, 25.5, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [837, 472.0, 0, 9999, -9999, 1.0, 100, 1, \n 472.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [839, 73.3, 0, 9999, -\n 9999, 1.0, 100, 1, 73.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [841, \n 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [843, 333.0, 0, 9999, -9999, 1.0, 100, 1, 333.0, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [844, 40.0, 0, 9999, -9999, 1.0, 100, 1, 40.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [845, 318.0, 0, 9999, -9999, 1.0,\n 100, 1, 318.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [849, 779.0, 0, \n 9999, -9999, 1.0, 100, 1, 779.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [850, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [851, 79.5, 0, 9999, -9999, 1.0, 100, 1, 79.5, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [853, 11.6, 0, 9999, -9999, 1.0, 100, 1, \n 11.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [854, 81.8, 0, 9999, -9999,\n 1.0, 100, 1, 81.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [855, 688.0, \n 0, 9999, -9999, 1.0, 100, 1, 688.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [856, 36.0, 0, 9999, -9999, 1.0, 100, 1, 36.0, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [857, 1402.0, 0, 9999, -9999, 1.0, 100, 1, 1402.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [858, 56.8, 0, 9999, -9999, 1.0,\n 100, 1, 56.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [859, 85.0, 0, \n 9999, -9999, 1.0, 100, 1, 85.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [860, 25.0, 0, 9999, -9999, 1.0, 100, 1, 25.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [862, 725.0, 0, 9999, -9999, 1.0, 100, 1, 725.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [863, 0.6, 0, 9999, -9999, 1.0, 100, 1, 0.6,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [864, 875.0, 0, 9999, -9999, 1.0,\n 100, 1, 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [865, 11.0, 0, \n 9999, -9999, 1.0, 100, 1, 11.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [867, 769.0, 0, 9999, -9999, 1.0, 100, 1, 769.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [869, 1360.0, 0, 9999, -9999, 1.0, 100, 1, 1360.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [870, 58.4, 0, 9999, -9999, 1.0, 100,\n 1, 58.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [872, 22.5, 0, 9999, -\n 9999, 1.0, 100, 1, 22.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [873, \n 18.747266, 0, 9999, -9999, 1.0, 100, 1, 122.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [874, 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [875, 24.4, 0, 9999, -9999, 1.0, 100, 1, \n 24.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [877, 24.8, 0, 9999, -9999,\n 1.0, 100, 1, 24.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [882, 17.4, 0,\n 9999, -9999, 1.0, 100, 1, 17.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [883, 18.0, 0, 9999, -9999, 1.0, 100, 1, 18.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [886, 2572.0, 0, 9999, -9999, 1.0, 100, 1, 2572.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [889, 9.5, 0, 9999, -9999, 1.0, 100, 1, \n 9.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [890, 48.0, 0, 9999, -9999,\n 1.0, 100, 1, 48.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [895, 19.0, 0,\n 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [896, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [898, 84.6, 0, 9999, -9999, 1.0, 100, 1, 84.6, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [900, 112.6, 0, 9999, -9999, 1.0, 100, 1, \n 112.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [902, 19.5, 0, 9999, -\n 9999, 1.0, 100, 1, 19.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [903, \n 20.1, 0, 9999, -9999, 1.0, 100, 1, 20.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [905, 137.3, 0, 9999, -9999, 1.0, 100, 1, 137.3, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [906, 33.577454, 0, 9999, -9999, 1.0, 100, 1, \n 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [907, 67.3, 0, 9999, -9999,\n 1.0, 100, 1, 67.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [909, 36.8, 0,\n 9999, -9999, 1.0, 100, 1, 36.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [913, 74.0, 0, 9999, -9999, 1.0, 100, 1, 74.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [915, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [917, 17.0, 0, 9999, -9999, 1.0, 100, 1, \n 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [918, 38.5, 0, 9999, -9999,\n 1.0, 100, 1, 38.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [920, 12.8, 0,\n 9999, -9999, 1.0, 100, 1, 12.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [921, 124.0, 0, 9999, -9999, 1.0, 100, 1, 124.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [922, 164.0, 0, 9999, -9999, 1.0, 100, 1, 164.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [923, 146.0, 0, 9999, -9999, 1.0, 100, 1,\n 146.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [925, 26.0, 0, 9999, -\n 9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [928, \n 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [931, 217.1, 0, 9999, -9999, 1.0, 100, 1, 217.1, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [934, 296.0, 0, 9999, -9999, 1.0, 100, 1, 296.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [935, 23.1, 0, 9999, -9999, 1.0,\n 100, 1, 23.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [936, 104.4, 0, \n 9999, -9999, 1.0, 100, 1, 104.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [937, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [939, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [940, 29.6, 0, 9999, -9999, 1.0, 100, 1, 29.6,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [942, 51.9, 0, 9999, -9999, 1.0,\n 100, 1, 51.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [944, 25.4, 0, \n 9999, -9999, 1.0, 100, 1, 25.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [945, 35.0, 0, 9999, -9999, 1.0, 100, 1, 35.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [950, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [952, 31.7, 0, 9999, -9999, 1.0, 100, 1, \n 31.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [958, 66.7, 0, 9999, -9999,\n 1.0, 100, 1, 66.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [959, 45.5, 0,\n 9999, -9999, 1.0, 100, 1, 45.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [960, 26.5, 0, 9999, -9999, 1.0, 100, 1, 26.5, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [963, 503.264337, 0, 9999, -9999, 1.0, 100, 1, 875.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [965, 352.0, 0, 9999, -9999, 1.0, 100,\n 1, 352.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [966, 66.0, 0, 9999, -\n 9999, 1.0, 100, 1, 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [967, \n 37.5, 0, 9999, -9999, 1.0, 100, 1, 37.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [968, 54.0, 0, 9999, -9999, 0.999501, 100, 1, 54.0, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [969, 56.9, 0, 9999, -9999, 0.999501, 100, 1, \n 56.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [971, 20.0, 0, 9999, -9999,\n 1.0, 100, 1, 20.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [973, 1347.0,\n 0, 9999, -9999, 1.0, 100, 1, 1347.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [976, 26.9, 0, 9999, -9999, 1.0, 100, 1, 26.9, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [977, 324.0, 0, 9999, -9999, 1.0, 100, 1, 324.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [978, 4.6, 0, 9999, -9999, 1.0, 100, \n 1, 4.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [981, 119.0, 0, 9999, -\n 9999, 1.0, 100, 1, 119.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [982, \n 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [983, 44.0, 0, 9999, -9999, 1.0, 100, 1, 44.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [984, 465.0, 0, 9999, -9999, 1.0, 100, 1, 465.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [985, 22.0, 0, 9999, -9999, 1.0,\n 100, 1, 22.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [986, 11.2, 0, \n 9999, -9999, 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [987, 164.5, 0, 9999, -9999, 1.0, 100, 1, 164.5, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [988, 5.1, 0, 9999, -9999, 1.0, 100, 1, 5.1, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [990, 238.511447, 0, 9999, -9999, 1.0, 100,\n 1, 300.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [993, 392.0, 0, 9999, \n -9999, 1.0, 100, 1, 392.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [994,\n 33.0, 0, 9999, -9999, 1.0, 100, 1, 33.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [995, 4.2, 0, 9999, -9999, 1.0, 100, 1, 4.2, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [997, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [999, 15.6, 0, 9999, -9999, 1.0, 100,\n 1, 15.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1000, 49.0, 0, 9999, -\n 9999, 1.0, 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1002, \n 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1003, 900.0, 0, 9999, -9999, 1.0, 100, 1, 900.0, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [1007, 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1008, 49.0, 0, 9999, -9999, 1.0,\n 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1010, 750.0, 0, \n 9999, -9999, 1.0, 100, 1, 750.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [1011, 18.7, 0, 9999, -9999, 1.0, 100, 1, 18.7, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1012, 2835.0, 0, 9999, -9999, 1.0, 100, 1, 2835.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1018, 175.9, 0, 9999, -9999, 1.0, \n 100, 1, 175.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1023, 0.2, 0, \n 9999, -9999, 1.0, 100, 1, 0.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1026, 655.6, 0, 9999, -9999, 1.0, 100, 1, 655.6, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1027, 17.423964, 0, 9999, -9999, 1.0, 100, 1, 48.3, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1028, 400.0, 0, 9999, -9999, \n 1.0, 100, 1, 400.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1029, 60.0,\n 0, 9999, -9999, 1.0, 100, 1, 60.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1030, 541.076337, 0, 9999, -9999, 1.0, 100, 1, 1018.0, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1031, 1447.199962, 0, 9999, -9999, 1.0, 100, \n 1, 1447.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1032, 19.954769, 0, \n 9999, -9999, 1.0, 100, 1, 153.510391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1033, 3.129107, 0, 9999, -9999, 1.0, 100, 1, 50.164506, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1034, 19.480611, 0, 9999, -9999, 1.0, 100,\n 1, 84.262779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1035, 4.869691, 0,\n 9999, -9999, 1.0, 100, 1, 49.886469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1036, 4.299817, 0, 9999, -9999, 1.0, 100, 1, 67.223077, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1037, 26.880386, 0, 9999, -9999, 1.0, 100,\n 1, 94.684044, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1038, 23.191978, \n 0, 9999, -9999, 1.0, 100, 1, 85.798525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1039, 14.50049, 0, 9999, -9999, 1.0, 100, 1, 132.724114, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1040, 4.2e-05, 0, 9999, -9999, 1.0, 100,\n 1, 0.064179, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1041, 23.612723, 0,\n 9999, -9999, 1.0, 100, 1, 204.187624, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1042, 3.793945, 0, 9999, -9999, 1.0, 100, 1, 52.70053, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1044, 13.8333, 0, 9999, -9999, 1.0, 100, 1,\n 36.163532, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1046, 72.936676, 0, \n 9999, -9999, 1.0, 100, 1, 106.787063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1047, 5.880677, 0, 9999, -9999, 1.0, 100, 1, 13.029581, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1048, 38.915865, 0, 9999, -9999, 1.0, 100,\n 1, 71.656883, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1049, 57.66596, 0,\n 9999, -9999, 1.0, 100, 1, 293.755375, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1050, 1.597255, 0, 9999, -9999, 1.0, 100, 1, 52.781606, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1051, 11.031378, 0, 9999, -9999, 1.0, 100,\n 1, 304.42978, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1052, 12.527576, \n 0, 9999, -9999, 1.0, 100, 1, 20.66869, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1053, 10.416727, 0, 9999, -9999, 1.0, 100, 1, 16.368087, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1054, 174.429944, 0, 9999, -9999, 1.0, \n 100, 1, 273.855776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1055, \n 0.246667, 0, 9999, -9999, 1.0, 100, 1, 2.856069, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1056, 64.106126, 0, 9999, -9999, 1.0, 100, 1, \n 603.943953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1057, 55.944221, 0,\n 9999, -9999, 1.0, 100, 1, 426.979979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1058, 144.133643, 0, 9999, -9999, 1.0, 100, 1, 1055.735174, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1059, 53.908755, 0, 9999, -9999, 1.0, \n 100, 1, 414.871332, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1060, \n 0.772854, 0, 9999, -9999, 1.0, 100, 1, 10.351632, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1061, 19.183871, 0, 9999, -9999, 1.0, 100, 1, \n 161.862597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1062, 0.178546, 0, \n 9999, -9999, 1.0, 100, 1, 2.878561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1063, 0.477696, 0, 9999, -9999, 1.0, 100, 1, 8.670916, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1064, 18.128029, 0, 9999, -9999, 1.0, 100,\n 1, 209.786524, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1065, 26.542682,\n 0, 9999, -9999, 1.0, 100, 1, 339.421643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1066, 6.831872, 0, 9999, -9999, 1.0, 100, 1, 134.399019, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1067, 0.05472, 0, 9999, -9999, 1.0, 100,\n 1, 32.653526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1072, 56.941881, \n 0, 9999, -9999, 1.0, 100, 1, 112.606433, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1073, 48.366549, 0, 9999, -9999, 1.0, 100, 1, 77.81765, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1074, 78.356593, 0, 9999, -9999, 1.0, \n 100, 1, 153.592986, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1075, \n 0.000191, 0, 9999, -9999, 1.0, 100, 1, 15.783448, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1076, 0.000786, 0, 9999, -9999, 1.0, 100, 1, 2.29551, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1077, 0.097611, 0, 9999, -9999,\n 1.0, 100, 1, 26.120041, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1078, \n 8.2e-05, 0, 9999, -9999, 1.0, 100, 1, 34.413246, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1079, 37.099719, 0, 9999, -9999, 1.0, 100, 1, \n 72.327992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1080, 0.010187, 0, \n 9999, -9999, 1.0, 100, 1, 132.149983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1081, 54.303596, 0, 9999, -9999, 1.0, 100, 1, 405.642115, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1082, 43.48081, 0, 9999, -9999, 1.0, \n 100, 1, 510.054159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1083, \n 74.784293, 0, 9999, -9999, 1.0, 100, 1, 633.681488, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1084, 50.75113, 0, 9999, -9999, 1.0, 100, 1, \n 602.719371, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1085, 0.361091, 0, \n 9999, -9999, 1.0, 100, 1, 113.714399, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1086, 2.800656, 0, 9999, -9999, 1.0, 100, 1, 225.59917, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1087, 6.712497, 0, 9999, -9999, 1.0, 100, \n 1, 116.66597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1088, 2.157263, 0,\n 9999, -9999, 1.0, 100, 1, 36.782492, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1089, 28.036581, 0, 9999, -9999, 1.0, 100, 1, 384.449592, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1090, 58.852002, 0, 9999, -9999, 1.0, \n 100, 1, 89.140897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1091, \n 23.028676, 0, 9999, -9999, 1.0, 100, 1, 45.7939, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1092, 28.091666, 0, 9999, -9999, 1.0, 100, 1, \n 54.002032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1093, 43.281148, 0, \n 9999, -9999, 1.0, 100, 1, 155.605298, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1094, 0.352909, 0, 9999, -9999, 1.0, 100, 1, 3.759038, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1095, 0.018276, 0, 9999, -9999, 1.0, 100, \n 1, 0.204951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1096, 14.898008, 0,\n 9999, -9999, 1.0, 100, 1, 84.50612, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1097, 1.60041, 0, 9999, -9999, 1.0, 100, 1, 4.601122, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1098, 32.387374, 0, 9999, -9999, 1.0, 100, 1,\n 71.025499, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1099, 160.073145, 0,\n 9999, -9999, 1.0, 100, 1, 290.937198, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1101, 15.088075, 0, 9999, -9999, 1.0, 100, 1, 83.930665, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1102, 57.90171, 0, 9999, -9999, 1.0, 100, \n 1, 350.979988, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1103, 55.710431,\n 0, 9999, -9999, 1.0, 100, 1, 245.381701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1104, 0.008853, 0, 9999, -9999, 1.0, 100, 1, 0.206918, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1105, 0.199198, 0, 9999, -9999, 1.0, \n 100, 1, 2.178593, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1106, \n 0.062828, 0, 9999, -9999, 1.0, 100, 1, 2.289793, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1107, 0.083469, 0, 9999, -9999, 1.0, 100, 1, 76.221615,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1108, 0.929597, 0, 9999, -9999,\n 1.0, 100, 1, 320.422751, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1109, \n 0.017052, 0, 9999, -9999, 1.0, 100, 1, 0.77821, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1110, 0.097309, 0, 9999, -9999, 1.0, 100, 1, 1.654557,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1111, 0.942973, 0, 9999, -9999,\n 1.0, 100, 1, 89.637993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1112, \n 2.764923, 0, 9999, -9999, 1.0, 100, 1, 69.53429, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1113, 0.134233, 0, 9999, -9999, 1.0, 100, 1, 3.536361,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1114, 0.002635, 0, 9999, -9999,\n 1.0, 100, 1, 13.446889, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1115, \n 2.161287, 0, 9999, -9999, 1.0, 100, 1, 50.575278, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1116, 1.694641, 0, 9999, -9999, 1.0, 100, 1, 32.601142,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1117, 5.543974, 0, 9999, -9999,\n 1.0, 100, 1, 90.792541, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1118, \n 0.234033, 0, 9999, -9999, 1.0, 100, 1, 8.725012, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1119, 2.259795, 0, 9999, -9999, 1.0, 100, 1, 43.254023,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1120, 0.070837, 0, 9999, -9999,\n 1.0, 100, 1, 2.416001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1121, \n 0.008147, 0, 9999, -9999, 1.0, 100, 1, 0.540589, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1122, 0.038948, 0, 9999, -9999, 1.0, 100, 1, 1.462883,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1123, 0.016034, 0, 9999, -9999,\n 1.0, 100, 1, 1.464336, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1124, \n 0.024691, 0, 9999, -9999, 1.0, 100, 1, 1.288283, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1125, 0.032998, 0, 9999, -9999, 1.0, 100, 1, 25.818899,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1126, 0.02868, 0, 9999, -9999, \n 1.0, 100, 1, 29.154893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1127, \n 23.87135, 0, 9999, -9999, 1.0, 100, 1, 105.296621, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1128, 0.214677, 0, 9999, -9999, 1.0, 100, 1, \n 3.06139, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1129, 0.299943, 0, \n 9999, -9999, 1.0, 100, 1, 4.738747, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1130, 0.046998, 0, 9999, -9999, 1.0, 100, 1, 1.025754, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1131, 0.182071, 0, 9999, -9999, 1.0, 100, \n 1, 2.897078, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1132, 0.015187, 0,\n 9999, -9999, 1.0, 100, 1, 0.359497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1133, 0.010845, 0, 9999, -9999, 1.0, 100, 1, 0.719597, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1134, 0.007663, 0, 9999, -9999, 1.0, 100, \n 1, 0.508453, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1135, 0.053952, 0,\n 9999, -9999, 1.0, 100, 1, 8.117819, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1136, 0.008078, 0, 9999, -9999, 1.0, 100, 1, 0.4027, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1137, 0.076215, 0, 9999, -9999, 1.0, 100, 1, \n 3.669012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1138, 0.021206, 0, \n 9999, -9999, 1.0, 100, 1, 1.254278, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1139, 0.775293, 0, 9999, -9999, 1.0, 100, 1, 19.822769, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1140, 0.3744, 0, 9999, -9999, 1.0, 100, 1,\n 28.389457, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1141, 11.90095, 0, \n 9999, -9999, 1.0, 100, 1, 119.46456, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1142, 0.023405, 0, 9999, -9999, 1.0, 100, 1, 1.215733, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1143, 0.032971, 0, 9999, -9999, 1.0, 100, \n 1, 25.239356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1144, 2.024094, 0,\n 9999, -9999, 1.0, 100, 1, 52.527382, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1145, 97.877979, 0, 9999, -9999, 1.0, 100, 1, 175.889627, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1146, 0.01298, 0, 9999, -9999, 1.0, 100,\n 1, 0.861317, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1147, 1.784569, 0,\n 9999, -9999, 1.0, 100, 1, 45.703707, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1148, 2.599234, 0, 9999, -9999, 1.0, 100, 1, 17.645529, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1149, 0.087102, 0, 9999, -9999, 1.0, 100, \n 1, 8.556784, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1150, 0.03472, 0, \n 9999, -9999, 1.0, 100, 1, 3.62256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1151, 1.356647, 0, 9999, -9999, 1.0, 100, 1, 13.036113, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1152, 0.010347, 0, 9999, -9999, 1.0, 100, \n 1, 0.116518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1153, 0.002965, 0,\n 9999, -9999, 1.0, 100, 1, 0.068788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1154, 0.006925, 0, 9999, -9999, 1.0, 100, 1, 0.160625, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1155, 0.061657, 0, 9999, -9999, 1.0, 100, \n 1, 0.609451, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1156, 0.815924, 0,\n 9999, -9999, 1.0, 100, 1, 16.022334, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1157, 0.451926, 0, 9999, -9999, 1.0, 100, 1, 4.354147, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1158, 0.09687, 0, 9999, -9999, 1.0, 100, 1,\n 1.04304, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1159, 0.918197, 0, \n 9999, -9999, 1.0, 100, 1, 13.498087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1160, 40.379171, 0, 9999, -9999, 1.0, 100, 1, 238.377761, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1161, 0.830356, 0, 9999, -9999, 1.0, \n 100, 1, 25.263391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1162, \n 66.188507, 0, 9999, -9999, 1.0, 100, 1, 502.409178, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1163, 23.282039, 0, 9999, -9999, 1.0, 100, 1, \n 330.03194, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1164, 50.407074, 0, \n 9999, -9999, 1.0, 100, 1, 285.625412, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1165, 6.077626, 0, 9999, -9999, 1.0, 100, 1, 57.188579, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1166, 29.976935, 0, 9999, -9999, 1.0, 100,\n 1, 83.277163, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1167, 0.474583, 0,\n 9999, -9999, 1.0, 100, 1, 5.05378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1168, 0.181653, 0, 9999, -9999, 1.0, 100, 1, 1.345774, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1169, 0.365373, 0, 9999, -9999, 1.0, 100, 1, \n 2.721845, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1170, 0.024039, 0, \n 9999, -9999, 1.0, 100, 1, 0.26599, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1171, 0.001092, 0, 9999, -9999, 1.0, 100, 1, 9.029885, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1172, 1.1e-05, 0, 9999, -9999, 1.0, 100, 1, \n 3.584043, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1173, 38.981054, 0, \n 9999, -9999, 1.0, 100, 1, 254.253327, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1174, 0.118079, 0, 9999, -9999, 1.0, 100, 1, 1.260082, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1175, 0.14491, 0, 9999, -9999, 1.0, 100, 1,\n 0.855454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1176, 0.023255, 0, \n 9999, -9999, 1.0, 100, 1, 0.23222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1177, 5.466114, 0, 9999, -9999, 1.0, 100, 1, 27.87401, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1178, 0.003165, 0, 9999, -9999, 1.0, 100, 1, \n 3.167999, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1179, 0.016234, 0, \n 9999, -9999, 1.0, 100, 1, 1.306293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1180, 0.062899, 0, 9999, -9999, 1.0, 100, 1, 0.688545, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1181, 39.165189, 0, 9999, -9999, 1.0, 100,\n 1, 85.739557, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1182, 41.434861, \n 0, 9999, -9999, 1.0, 100, 1, 99.319579, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1183, 0.366281, 0, 9999, -9999, 1.0, 100, 1, 38.222575, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1184, 0.024619, 0, 9999, -9999, 1.0, \n 100, 1, 4.219005, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1185, \n 0.447602, 0, 9999, -9999, 1.0, 100, 1, 11.343971, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1186, 5.094381, 0, 9999, -9999, 1.0, 100, 1, 38.916368,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1187, 0.563103, 0, 9999, -9999,\n 1.0, 100, 1, 9.814574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1188, \n 59.763182, 0, 9999, -9999, 1.0, 100, 1, 179.712741, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1189, 1.278207, 0, 9999, -9999, 1.0, 100, 1, \n 20.261805, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1190, 0.002213, 0, \n 9999, -9999, 1.0, 100, 1, 220.533673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1191, 0.020667, 0, 9999, -9999, 1.0, 100, 1, 73.079413, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1192, 0.010017, 0, 9999, -9999, 1.0, 100, \n 1, 21.454569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1196, 41.259427, \n 0, 9999, -9999, 1.0, 100, 1, 160.697956, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1197, 18.45384, 0, 9999, -9999, 1.0, 100, 1, 90.592266, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1198, 7.224154, 0, 9999, -9999, 1.0, \n 100, 1, 39.819157, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1199, \n 108.710102, 0, 9999, -9999, 1.0, 100, 1, 201.421956, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1200, 35.155318, 0, 9999, -9999, 1.0, 100, 1, \n 56.012408, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1204, 2.529712, 0, \n 9999, -9999, 1.0, 100, 1, 47.541821, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1206, 0.001726, 0, 9999, -9999, 1.0, 100, 1, 3.806894, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1208, 5.6e-05, 0, 9999, -9999, 1.0, 100, 1,\n 2.242031, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1211, 0.002064, 0, \n 9999, -9999, 1.0, 100, 1, 18.005229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1212, 0.011502, 0, 9999, -9999, 1.0, 100, 1, 91.171888, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1213, 0.559444, 0, 9999, -9999, 1.0, 100, \n 1, 57.342704, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1214, 0.041549, 0,\n 9999, -9999, 1.0, 100, 1, 4.505907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1215, 0.053634, 0, 9999, -9999, 1.0, 100, 1, 2.252965, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1216, 0.987413, 0, 9999, -9999, 1.0, 100, \n 1, 67.754469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1217, 0.010372, 0,\n 9999, -9999, 1.0, 100, 1, 35.871617, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1218, 0.003173, 0, 9999, -9999, 1.0, 100, 1, 0.980482, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1219, 0.011997, 0, 9999, -9999, 1.0, 100, \n 1, 12.33953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1220, 0.026069, 0,\n 9999, -9999, 1.0, 100, 1, 30.597849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1221, 0.010668, 0, 9999, -9999, 1.0, 100, 1, 593.230436, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1222, 0.547299, 0, 9999, -9999, 1.0, 100, \n 1, 211.057769, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1224, 0.008468, \n 0, 9999, -9999, 1.0, 100, 1, 160.523778, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1225, 2.959306, 0, 9999, -9999, 1.0, 100, 1, 34.931481, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1226, 0.253386, 0, 9999, -9999, 1.0, \n 100, 1, 3.982858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1227, 8.6e-05,\n 0, 9999, -9999, 1.0, 100, 1, 17.482807, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1229, 15.085958, 0, 9999, -9999, 1.0, 100, 1, 51.244222, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1230, 0.00365, 0, 9999, -9999, 1.0, 100,\n 1, 1.681276, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1231, 1.568908, 0,\n 9999, -9999, 1.0, 100, 1, 33.55478, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1232, 4.252196, 0, 9999, -9999, 1.0, 100, 1, 75.075088, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1233, 431.19357, 0, 9999, -9999, 1.0, 100,\n 1, 575.36828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1235, 8.832647, 0,\n 9999, -9999, 1.0, 100, 1, 9.03734, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1236, 78.888354, 0, 9999, -9999, 1.0, 100, 1, 82.225035, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1237, 0.003793, 0, 9999, -9999, 1.0, 100, \n 1, 14.605409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1238, 0.054076, 0,\n 9999, -9999, 1.0, 100, 1, 188.691049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1239, 1.374488, 0, 9999, -9999, 1.0, 100, 1, 2.267706, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1240, 33.728843, 0, 9999, -9999, 1.0, 100,\n 1, 339.51051, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1241, 22.327877, \n 0, 9999, -9999, 1.0, 100, 1, 385.361595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1242, 1.67781, 0, 9999, -9999, 1.0, 100, 1, 27.074038, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1243, 4.308538, 0, 9999, -9999, 1.0, \n 100, 1, 83.079842, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1244, \n 185.95165, 0, 9999, -9999, 1.0, 100, 1, 323.472536, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1245, 0.397575, 0, 9999, -9999, 1.0, 100, 1, \n 8.080896, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1246, 31.095104, 0, \n 9999, -9999, 1.0, 100, 1, 57.127825, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1247, 0.025951, 0, 9999, -9999, 1.0, 100, 1, 21.833396, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1248, 27.41699, 0, 9999, -9999, 1.0, 100, \n 1, 91.958275, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1249, 3.859809, 0,\n 9999, -9999, 1.0, 100, 1, 76.135177, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1250, 1.716488, 0, 9999, -9999, 1.0, 100, 1, 30.830519, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1251, 0.655346, 0, 9999, -9999, 1.0, 100, \n 1, 23.404345, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1252, 0.453551, 0,\n 9999, -9999, 1.0, 100, 1, 14.887727, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1253, 7.083955, 0, 9999, -9999, 1.0, 100, 1, 64.502694, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1254, 24.436675, 0, 9999, -9999, 1.0, 100,\n 1, 82.278695, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1255, 0.276671, 0,\n 9999, -9999, 1.0, 100, 1, 3.818419, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1256, 1.144138, 0, 9999, -9999, 1.0, 100, 1, 15.091842, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1257, 7.200274, 0, 9999, -9999, 1.0, 100, \n 1, 88.95288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1258, 106.387425, \n 0, 9999, -9999, 1.0, 100, 1, 235.487329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1259, 9.894629, 0, 9999, -9999, 1.0, 100, 1, 109.288719, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1260, 0.998465, 0, 9999, -9999, 1.0, \n 100, 1, 20.168717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1261, \n 0.801997, 0, 9999, -9999, 1.0, 100, 1, 201.699555, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1264, 0.001383, 0, 9999, -9999, 1.0, 100, 1, \n 82.035361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1266, 0.060644, 0, \n 9999, -9999, 1.0, 100, 1, 119.710849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1267, 2.856463, 0, 9999, -9999, 1.0, 100, 1, 39.469006, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1268, 0.001116, 0, 9999, -9999, 1.0, 100, \n 1, 3.4295, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1269, 0.001153, 0, \n 9999, -9999, 1.0, 100, 1, 5.105829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1270, 0.189973, 0, 9999, -9999, 1.0, 100, 1, 38.950511, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1274, 2.839792, 0, 9999, -9999, 1.0, 100, \n 1, 53.095629, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1275, 5.533737, 0,\n 9999, -9999, 1.0, 100, 1, 99.0753, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1276, 1.544906, 0, 9999, -9999, 1.0, 100, 1, 25.655641, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1277, 2.311616, 0, 9999, -9999, 1.0, 100, \n 1, 65.611252, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1278, 5.308314, 0,\n 9999, -9999, 1.0, 100, 1, 170.437781, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1280, 2.3e-05, 0, 9999, -9999, 1.0, 100, 1, 0.626494, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1281, 0.000408, 0, 9999, -9999, 1.0, 100, 1, \n 2.51246, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1282, 0.00666, 0, 9999,\n -9999, 1.0, 100, 1, 4.363037, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1283, 1252.590484, 0, 9999, -9999, 1.0, 100, 1, 1297.764428, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1285, 0.000251, 0, 9999, -9999, 1.0, 100, \n 1, 2.937048, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1286, 0.002555, 0,\n 9999, -9999, 1.0, 100, 1, 17.872201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1287, 9.801286, 0, 9999, -9999, 1.0, 100, 1, 93.199628, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1288, 10.578682, 0, 9999, -9999, 1.0, 100,\n 1, 148.402692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1289, 13.524567,\n 0, 9999, -9999, 1.0, 100, 1, 184.149235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1290, 0.004073, 0, 9999, -9999, 1.0, 100, 1, 4.901974, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1291, 4.36402, 0, 9999, -9999, 1.0, 100,\n 1, 98.293351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1292, 1.11343, 0,\n 9999, -9999, 1.0, 100, 1, 41.682074, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1293, 0.234865, 0, 9999, -9999, 1.0, 100, 1, 2.402107, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1294, 0.353955, 0, 9999, -9999, 1.0, 100, \n 1, 5.39743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1295, 0.406226, 0, \n 9999, -9999, 1.0, 100, 1, 5.873666, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1296, 0.202818, 0, 9999, -9999, 1.0, 100, 1, 27.356489, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1297, 0.047602, 0, 9999, -9999, 1.0, 100, \n 1, 177.778742, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1298, 0.092273, \n 0, 9999, -9999, 1.0, 100, 1, 4.014603, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1299, 0.001945, 0, 9999, -9999, 1.0, 100, 1, 2.158207, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1300, 0.891282, 0, 9999, -9999, 1.0, \n 100, 1, 23.74405, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1301, \n 2.089531, 0, 9999, -9999, 1.0, 100, 1, 60.863304, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1302, 0.025405, 0, 9999, -9999, 1.0, 100, 1, 4.877299,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1303, 0.00067, 0, 9999, -9999, \n 1.0, 100, 1, 4.335516, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1306, \n 0.019645, 0, 9999, -9999, 1.0, 100, 1, 1.827014, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1307, 0.004553, 0, 9999, -9999, 1.0, 100, 1, 0.29894, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1308, 0.326549, 0, 9999, -9999,\n 1.0, 100, 1, 3.278321, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1312, \n 180.400447, 0, 9999, -9999, 1.0, 100, 1, 262.264924, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1316, 0.004615, 0, 9999, -9999, 1.0, 100, 1, \n 2.757497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1317, 3.635417, 0, \n 9999, -9999, 1.0, 100, 1, 23.958574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1319, 2.674937, 0, 9999, -9999, 1.0, 100, 1, 17.708276, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1323, 34.395359, 0, 9999, -9999, 1.0, 100,\n 1, 199.111909, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1326, 3.582741, \n 0, 9999, -9999, 1.0, 100, 1, 56.928865, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1327, 4.899518, 0, 9999, -9999, 1.0, 100, 1, 50.796895, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1328, 2.229815, 0, 9999, -9999, 1.0, \n 100, 1, 16.063343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1329, \n 0.008374, 0, 9999, -9999, 1.0, 100, 1, 218.675424, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1331, 0.012219, 0, 9999, -9999, 1.0, 100, 1, \n 0.289238, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1333, 0.001835, 0, \n 9999, -9999, 1.0, 100, 1, 45.650254, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1336, 0.160536, 0, 9999, -9999, 1.0, 100, 1, 29.773035, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1337, 82.782728, 0, 9999, -9999, 1.0, 100,\n 1, 121.31241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1339, 0.840885, 0,\n 9999, -9999, 1.0, 100, 1, 10.086482, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1340, 43.483815, 0, 9999, -9999, 1.0, 100, 1, 70.098327, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1345, 0.000819, 0, 9999, -9999, 1.0, 100, \n 1, 3.971188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1346, 0.221371, 0,\n 9999, -9999, 1.0, 100, 1, 214.719215, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1348, 10.200017, 0, 9999, -9999, 1.0, 100, 1, 22.707927, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1349, 25.154866, 0, 9999, -9999, 1.0, 100,\n 1, 42.352342, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1356, 5.548377, 0,\n 9999, -9999, 1.0, 100, 1, 73.486231, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1357, 3.70864, 0, 9999, -9999, 1.0, 100, 1, 56.459913, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1359, 4.208776, 0, 9999, -9999, 1.0, 100, \n 1, 70.633589, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1360, 0.979577, 0,\n 9999, -9999, 1.0, 100, 1, 17.135983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1361, 6.501126, 0, 9999, -9999, 1.0, 100, 1, 63.207173, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1362, 4.957372, 0, 9999, -9999, 1.0, 100, \n 1, 79.107216, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1366, 0.081799, 0,\n 9999, -9999, 1.0, 100, 1, 1.229992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1367, 0.006591, 0, 9999, -9999, 1.0, 100, 1, 43.863891, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1372, 9.467249, 0, 9999, -9999, 1.0, 100, \n 1, 192.966588, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1373, 1.246446, \n 0, 9999, -9999, 1.0, 100, 1, 35.200257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1374, 64.772368, 0, 9999, -9999, 1.0, 100, 1, 108.220146, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1375, 35.736757, 0, 9999, -9999, 1.0,\n 100, 1, 61.223816, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1376, \n 47.961861, 0, 9999, -9999, 1.0, 100, 1, 176.213655, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1377, 39.370796, 0, 9999, -9999, 1.0, 100, 1, \n 234.376272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1378, 40.132816, 0,\n 9999, -9999, 1.0, 100, 1, 246.029906, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1379, 0.004792, 0, 9999, -9999, 1.0, 100, 1, 0.805984, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1380, 0.05126, 0, 9999, -9999, 1.0, 100, 1,\n 1.213356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1381, 0.00688, 0, \n 9999, -9999, 1.0, 100, 1, 1.01257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1382, 5.823912, 0, 9999, -9999, 1.0, 100, 1, 138.839906, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1383, 5.531482, 0, 9999, -9999, 1.0, 100, \n 1, 109.821439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1384, 0.184231, \n 0, 9999, -9999, 1.0, 100, 1, 4.669135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1385, 0.005411, 0, 9999, -9999, 1.0, 100, 1, 0.124455, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1386, 0.061764, 0, 9999, -9999, 1.0, \n 100, 1, 0.673858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1387, \n 0.221128, 0, 9999, -9999, 1.0, 100, 1, 3.493561, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1388, 0.039213, 0, 9999, -9999, 1.0, 100, 1, 0.928188,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1389, 0.009021, 0, 9999, -9999,\n 1.0, 100, 1, 0.213536, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1390, \n 0.236272, 0, 9999, -9999, 1.0, 100, 1, 3.732816, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1391, 0.016171, 0, 9999, -9999, 1.0, 100, 1, 0.521719,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1392, 1.991917, 0, 9999, -9999,\n 1.0, 100, 1, 19.306386, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1393, \n 0.014163, 0, 9999, -9999, 1.0, 100, 1, 1.376509, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1394, 0.01204, 0, 9999, -9999, 1.0, 100, 1, 1.077886, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1395, 0.001242, 0, 9999, -9999,\n 1.0, 100, 1, 0.073776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1396, \n 0.000121, 0, 9999, -9999, 1.0, 100, 1, 0.026112, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1397, 3.950556, 0, 9999, -9999, 1.0, 100, 1, 25.084545,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1398, 0.455311, 0, 9999, -9999,\n 1.0, 100, 1, 2.779641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1399, \n 0.230871, 0, 9999, -9999, 1.0, 100, 1, 17.868157, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1400, 0.013267, 0, 9999, -9999, 1.0, 100, 1, 1.297197,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1401, 7.058214, 0, 9999, -9999,\n 1.0, 100, 1, 89.339497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1402, \n 1.904282, 0, 9999, -9999, 1.0, 100, 1, 26.328902, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1403, 38.271193, 0, 9999, -9999, 1.0, 100, 1, \n 119.651672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1404, 50.959023, 0,\n 9999, -9999, 1.0, 100, 1, 134.800518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1405, 3.361271, 0, 9999, -9999, 1.0, 100, 1, 29.550802, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1406, 1.997189, 0, 9999, -9999, 1.0, 100, \n 1, 10.763987, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1407, 0.000246, 0,\n 9999, -9999, 1.0, 100, 1, 0.211614, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1408, 2.586711, 0, 9999, -9999, 1.0, 100, 1, 41.078698, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1409, 0.613156, 0, 9999, -9999, 1.0, 100, \n 1, 12.019786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1410, 2.053367, 0,\n 9999, -9999, 1.0, 100, 1, 37.466518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1411, 2.739087, 0, 9999, -9999, 1.0, 100, 1, 39.395367, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1418, 2.811146, 0, 9999, -9999, 1.0, 100, \n 1, 88.264613, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1419, 0.681075, 0,\n 9999, -9999, 1.0, 100, 1, 33.260903, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1421, 0.136505, 0, 9999, -9999, 0.999501, 100, 1, 6.972369, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1422, 0.060115, 0, 9999, -9999, 1.0, \n 100, 1, 4.730495, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1423, \n 0.035944, 0, 9999, -9999, 1.0, 100, 1, 1.931017, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1424, 199.390672, 0, 9999, -9999, 1.0, 100, 1, \n 219.092115, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1425, 6.136022, 0, \n 9999, -9999, 1.0, 100, 1, 21.366402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1426, 6.317865, 0, 9999, -9999, 1.0, 100, 1, 68.762602, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1427, 49.781026, 0, 9999, -9999, 1.0, 100,\n 1, 480.698671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1428, 17.413111,\n 0, 9999, -9999, 1.0, 100, 1, 334.885743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1429, 0.061141, 0, 9999, -9999, 1.0, 100, 1, 13.279826, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1431, 38.616412, 0, 9999, -9999, 1.0, \n 100, 1, 227.662022, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1432, \n 4.973921, 0, 9999, -9999, 1.0, 100, 1, 12.058931, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1433, 1089.413862, 0, 9999, -9999, 1.0, 100, 1, \n 1289.241188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1434, 67.518983, 0,\n 9999, -9999, 1.0, 100, 1, 99.440014, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1435, 56.476643, 0, 9999, -9999, 1.0, 100, 1, 86.713217, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1436, 44.706158, 0, 9999, -9999, 1.0, 100,\n 1, 98.434116, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1437, 7.376327, 0,\n 9999, -9999, 1.0, 100, 1, 238.321958, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1438, 43.862961, 0, 9999, -9999, 1.0, 100, 1, 392.815158, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1439, 15.508688, 0, 9999, -9999, 1.0, \n 100, 1, 99.103164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1440, \n 0.051597, 0, 9999, -9999, 1.0, 100, 1, 0.833609, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1443, 54.057868, 0, 9999, -9999, 1.0, 100, 1, \n 103.005076, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1444, 0.105424, 0, \n 9999, -9999, 1.0, 100, 1, 8.981696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1445, 0.001279, 0, 9999, -9999, 1.0, 100, 1, 25.036799, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1446, 56.433762, 0, 9999, -9999, 1.0, 100,\n 1, 758.547933, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1447, 2.407264, \n 0, 9999, -9999, 1.0, 100, 1, 89.477411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1448, 2.596473, 0, 9999, -9999, 1.0, 100, 1, 7.523578, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1449, 17.481136, 0, 9999, -9999, 1.0, \n 100, 1, 95.437673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1450, \n 18.640816, 0, 9999, -9999, 1.0, 100, 1, 59.256809, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1451, 24.410815, 0, 9999, -9999, 1.0, 100, 1, \n 68.198838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1452, 7.964401, 0, \n 9999, -9999, 1.0, 100, 1, 24.068921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1453, 3.6e-05, 0, 9999, -9999, 1.0, 100, 1, 64.93775, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1454, 3.474548, 0, 9999, -9999, 1.0, 100, 1, \n 155.126607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1455, 0.066223, 0, \n 9999, -9999, 1.0, 100, 1, 0.654438, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1456, 10.274464, 0, 9999, -9999, 1.0, 100, 1, 50.054822, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1457, 0.084606, 0, 9999, -9999, 1.0, 100, \n 1, 2.002672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1458, 0.010401, 0,\n 9999, -9999, 1.0, 100, 1, 0.246199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1459, 0.05427, 0, 9999, -9999, 1.0, 100, 1, 5.309059, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1460, 2.913168, 0, 9999, -9999, 1.0, 100, 1, \n 101.498473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1461, 0.699753, 0, \n 9999, -9999, 1.0, 100, 1, 17.951737, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1462, 0.094803, 0, 9999, -9999, 1.0, 100, 1, 2.402686, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1463, 0.010915, 0, 9999, -9999, 1.0, 100, \n 1, 0.711207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1464, 0.031454, 0,\n 9999, -9999, 1.0, 100, 1, 218.884211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1465, 0.424428, 0, 9999, -9999, 1.0, 100, 1, 5.299939, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1466, 0.59163, 0, 9999, -9999, 1.0, 100, 1,\n 5.685017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1467, 0.072582, 0, \n 9999, -9999, 1.0, 100, 1, 2.096155, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1468, 0.636875, 0, 9999, -9999, 1.0, 100, 1, 23.789171, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1469, 2.093967, 0, 9999, -9999, 1.0, 100, \n 1, 65.007467, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1470, 41.82331, 0,\n 9999, -9999, 1.0, 100, 1, 78.965265, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1471, 102.428898, 0, 9999, -9999, 1.0, 100, 1, 159.165074, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1472, 0.019952, 0, 9999, -9999, 1.0, \n 100, 1, 11.980182, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1473, \n 0.789352, 0, 9999, -9999, 1.0, 100, 1, 8.362608, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1474, 0.157832, 0, 9999, -9999, 1.0, 100, 1, 1.398948,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1475, 0.066213, 0, 9999, -9999,\n 1.0, 100, 1, 0.39088, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1476, \n 93.472233, 0, 9999, -9999, 1.0, 100, 1, 250.480113, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1477, 0.934008, 0, 9999, -9999, 1.0, 100, 1, \n 12.122974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1483, 0.044734, 0, \n 9999, -9999, 1.0, 100, 1, 3.599649, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1484, 2.9e-05, 0, 9999, -9999, 1.0, 100, 1, 0.02991, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1485, 0.000548, 0, 9999, -9999, 1.0, 100, 1, \n 0.563547, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1486, 0.002819, 0, \n 9999, -9999, 1.0, 100, 1, 2.89934, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1489, 0.001792, 0, 9999, -9999, 1.0, 100, 1, 0.118938, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1490, 665.084522, 0, 9999, -9999, 1.0, 100, 1,\n 782.463701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1491, 4.025558, 0, \n 9999, -9999, 1.0, 100, 1, 84.622838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1492, 13.534107, 0, 9999, -9999, 1.0, 100, 1, 229.927503, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1493, 5.622106, 0, 9999, -9999, 1.0, \n 100, 1, 83.557175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1494, \n 44.133257, 0, 9999, -9999, 1.0, 100, 1, 404.486733, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1495, 1.415799, 0, 9999, -9999, 1.0, 100, 1, \n 66.920717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1497, 0.01221, 0, \n 9999, -9999, 1.0, 100, 1, 89.070006, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1498, 0.030098, 0, 9999, -9999, 1.0, 100, 1, 105.800802, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1501, 0.003361, 0, 9999, -9999, 1.0, 100, \n 1, 8.165333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1503, 0.004148, 0,\n 9999, -9999, 1.0, 100, 1, 45.972187, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1504, 2.344345, 0, 9999, -9999, 1.0, 100, 1, 188.822836, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1505, 0.000546, 0, 9999, -9999, 1.0, 100, \n 1, 26.765913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1506, 2.043094, 0,\n 9999, -9999, 1.0, 100, 1, 56.406717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1507, 0.470049, 0, 9999, -9999, 1.0, 100, 1, 15.438042, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1510, 0.005458, 0, 9999, -9999, 1.0, 100, \n 1, 107.008141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1511, 0.024657, \n 0, 9999, -9999, 1.0, 100, 1, 155.22192, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1512, 0.002029, 0, 9999, -9999, 1.0, 100, 1, 64.130052, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1513, 0.030915, 0, 9999, -9999, 1.0, \n 100, 1, 23.051786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1518, \n 0.003913, 0, 9999, -9999, 1.0, 100, 1, 0.670542, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1519, 0.000272, 0, 9999, -9999, 1.0, 100, 1, 0.04654, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1520, 3.854694, 0, 9999, -9999,\n 1.0, 100, 1, 79.674256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1521, \n 1.791884, 0, 9999, -9999, 1.0, 100, 1, 31.179116, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1522, 2.040292, 0, 9999, -9999, 1.0, 100, 1, 40.212666,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1523, 0.949567, 0, 9999, -9999,\n 1.0, 100, 1, 20.304521, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1524, \n 1.937981, 0, 9999, -9999, 1.0, 100, 1, 26.159251, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1525, 3.816298, 0, 9999, -9999, 1.0, 100, 1, 68.425403,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1526, 2.354602, 0, 9999, -9999,\n 1.0, 100, 1, 44.478558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1527, \n 9.919309, 0, 9999, -9999, 1.0, 100, 1, 103.998682, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1528, 21.619077, 0, 9999, -9999, 1.0, 100, 1, \n 41.386726, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1529, 8.704895, 0, \n 9999, -9999, 1.0, 100, 1, 84.378012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1530, 2.692923, 0, 9999, -9999, 1.0, 100, 1, 79.055155, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1531, 104.653862, 0, 9999, -9999, 1.0, 100,\n 1, 183.821409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1532, 2.125498, \n 0, 9999, -9999, 1.0, 100, 1, 37.379033, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1534, 1.420342, 0, 9999, -9999, 1.0, 100, 1, 29.516607, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1535, 0.603212, 0, 9999, -9999, 1.0, \n 100, 1, 8.931779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1536, \n 2.335948, 0, 9999, -9999, 1.0, 100, 1, 39.26145, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1537, 4.551805, 0, 9999, -9999, 1.0, 100, 1, 99.740166,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1538, 51.465034, 0, 9999, -9999,\n 1.0, 100, 1, 130.774402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1539, \n 102.043652, 0, 9999, -9999, 1.0, 100, 1, 201.766963, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1540, 1.754708, 0, 9999, -9999, 1.0, 100, 1, \n 4.160189, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1541, 1.271256, 0, \n 9999, -9999, 1.0, 100, 1, 3.429917, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1542, 22.605282, 0, 9999, -9999, 1.0, 100, 1, 50.287947, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1543, 0.565086, 0, 9999, -9999, 1.0, 100, \n 1, 14.788669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1544, 23.693358, \n 0, 9999, -9999, 1.0, 100, 1, 121.437126, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1545, 81.994741, 0, 9999, -9999, 1.0, 100, 1, 185.545128, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1546, 82.218967, 0, 9999, -9999, 1.0,\n 100, 1, 255.44343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1547, \n 67.614723, 0, 9999, -9999, 1.0, 100, 1, 362.597919, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1548, 0.721249, 0, 9999, -9999, 1.0, 100, 1, \n 21.273779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1549, 3.298956, 0, \n 9999, -9999, 1.0, 100, 1, 77.017486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1550, 0.163234, 0, 9999, -9999, 1.0, 100, 1, 5.214715, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1551, 0.304981, 0, 9999, -9999, 1.0, 100, \n 1, 9.576491, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1552, 19.070388, 0,\n 9999, -9999, 1.0, 100, 1, 54.035471, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1553, 40.759532, 0, 9999, -9999, 1.0, 100, 1, 92.480282, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1554, 44.242819, 0, 9999, -9999, 1.0, 100,\n 1, 155.333413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1555, 60.12844, \n 0, 9999, -9999, 1.0, 100, 1, 103.865774, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1556, 12.322818, 0, 9999, -9999, 1.0, 100, 1, 40.376346, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1557, 8.46835, 0, 9999, -9999, 1.0, 100,\n 1, 25.990242, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1558, 2.509741, 0,\n 9999, -9999, 1.0, 100, 1, 24.622373, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1559, 36.528878, 0, 9999, -9999, 1.0, 100, 1, 112.609207, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1560, 22.366278, 0, 9999, -9999, 1.0, \n 100, 1, 86.395942, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1561, \n 6.93291, 0, 9999, -9999, 1.0, 100, 1, 19.127379, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1562, 4.09189, 0, 9999, -9999, 1.0, 100, 1, 61.888351,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1563, 35.327707, 0, 9999, -9999,\n 1.0, 100, 1, 106.233907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1564, \n 30.749499, 0, 9999, -9999, 1.0, 100, 1, 58.27282, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1565, 5.51138, 0, 9999, -9999, 1.0, 100, 1, 12.83938, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1566, 119.367748, 0, 9999, -\n 9999, 1.0, 100, 1, 358.676351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1567, 1.980328, 0, 9999, -9999, 1.0, 100, 1, 29.531771, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [1568, 7.382762, 0, 9999, -9999, 1.0, 100, 1, \n 89.300597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1569, 142.565953, 0,\n 9999, -9999, 1.0, 100, 1, 328.718571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1570, 120.200317, 0, 9999, -9999, 1.0, 100, 1, 243.241909, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1571, 56.898408, 0, 9999, -9999, 1.0, \n 100, 1, 203.443403, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1572, \n 115.686694, 0, 9999, -9999, 1.0, 100, 1, 232.127956, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1573, 37.277333, 0, 9999, -9999, 1.0, 100, 1, \n 80.403772, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1574, 51.959213, 0, \n 9999, -9999, 1.0, 100, 1, 144.715972, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1575, 60.442501, 0, 9999, -9999, 1.0, 100, 1, 153.606376, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1576, 14.073028, 0, 9999, -9999, 1.0, \n 100, 1, 34.262017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1577, \n 17.686192, 0, 9999, -9999, 1.0, 100, 1, 217.054488, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1578, 6.361027, 0, 9999, -9999, 1.0, 100, 1, \n 16.348222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1579, 1.796998, 0, \n 9999, -9999, 1.0, 100, 1, 35.164333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1580, 0.969771, 0, 9999, -9999, 1.0, 100, 1, 21.892492, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1581, 76.770758, 0, 9999, -9999, 1.0, 100,\n 1, 156.277964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1582, 4.627554, \n 0, 9999, -9999, 1.0, 100, 1, 8.151092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1583, 1.013582, 0, 9999, -9999, 1.0, 100, 1, 1.791968, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1584, 32.201187, 0, 9999, -9999, 1.0, \n 100, 1, 81.24993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1585, \n 1.813983, 0, 9999, -9999, 1.0, 100, 1, 3.685182, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1586, 32.269635, 0, 9999, -9999, 1.0, 100, 1, 61.31549,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1587, 98.037204, 0, 9999, -9999,\n 1.0, 100, 1, 191.635296, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1588, \n 23.404473, 0, 9999, -9999, 1.0, 100, 1, 59.424343, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1589, 9.649174, 0, 9999, -9999, 1.0, 100, 1, \n 48.538268, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1590, 34.170018, 0, \n 9999, -9999, 1.0, 100, 1, 119.077525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1591, 31.925348, 0, 9999, -9999, 1.0, 100, 1, 142.8447, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1592, 5.561961, 0, 9999, -9999, 1.0, 100, \n 1, 9.842361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1593, 4.064612, 0,\n 9999, -9999, 1.0, 100, 1, 7.183183, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1594, 5.400375, 0, 9999, -9999, 1.0, 100, 1, 9.56089, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1595, 28.62726, 0, 9999, -9999, 1.0, 100, 1, \n 54.79001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1596, 57.027743, 0, \n 9999, -9999, 1.0, 100, 1, 138.730049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1597, 1.60468, 0, 9999, -9999, 1.0, 100, 1, 2.858987, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1598, 2.718822, 0, 9999, -9999, 1.0, 100, 1, \n 4.795494, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1599, 29.569389, 0, \n 9999, -9999, 1.0, 100, 1, 86.703571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1600, 14.712936, 0, 9999, -9999, 1.0, 100, 1, 25.356501, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1601, 4.138944, 0, 9999, -9999, 1.0, 100, \n 1, 7.643653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1602, 22.706117, 0,\n 9999, -9999, 1.0, 100, 1, 45.658169, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1603, 15.382223, 0, 9999, -9999, 1.0, 100, 1, 26.209248, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1604, 9.688412, 0, 9999, -9999, 1.0, 100, \n 1, 16.363032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1605, 25.823012, \n 0, 9999, -9999, 1.0, 100, 1, 43.477178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1606, 22.584798, 0, 9999, -9999, 1.0, 100, 1, 42.024907, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1607, 11.485301, 0, 9999, -9999, 1.0, \n 100, 1, 19.395236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1608, \n 10.729219, 0, 9999, -9999, 1.0, 100, 1, 19.491249, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1609, 3.210834, 0, 9999, -9999, 1.0, 100, 1, \n 6.052272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1610, 10.193242, 0, \n 9999, -9999, 1.0, 100, 1, 18.571656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1611, 3.490222, 0, 9999, -9999, 1.0, 100, 1, 6.420554, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1612, 5.75046, 0, 9999, -9999, 1.0, 100, 1,\n 10.811203, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1613, 15.275647, 0, \n 9999, -9999, 1.0, 100, 1, 27.976217, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1614, 15.393881, 0, 9999, -9999, 1.0, 100, 1, 28.183827, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1615, 93.892032, 0, 9999, -9999, 1.0, 100,\n 1, 193.234776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1616, 3.890387, \n 0, 9999, -9999, 1.0, 100, 1, 6.865586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1617, 6.026296, 0, 9999, -9999, 1.0, 100, 1, 10.63107, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1618, 2.790265, 0, 9999, -9999, 1.0, \n 100, 1, 4.920368, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1619, \n 3.792149, 0, 9999, -9999, 1.0, 100, 1, 6.689637, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1620, 1.084317, 0, 9999, -9999, 1.0, 100, 1, 1.912024,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1621, 4.274053, 0, 9999, -9999,\n 1.0, 100, 1, 8.056388, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1622, \n 3.020597, 0, 9999, -9999, 1.0, 100, 1, 5.693597, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1623, 11.470276, 0, 9999, -9999, 1.0, 100, 1, \n 20.717111, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1624, 4.922505, 0, \n 9999, -9999, 1.0, 100, 1, 8.938454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1625, 33.876307, 0, 9999, -9999, 1.0, 100, 1, 65.182465, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1626, 6.446651, 0, 9999, -9999, 1.0, 100, \n 1, 11.878862, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1627, 5.757286, 0,\n 9999, -9999, 1.0, 100, 1, 10.196496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1628, 31.895799, 0, 9999, -9999, 1.0, 100, 1, 66.613993, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1629, 67.295304, 0, 9999, -9999, 1.0, 100,\n 1, 121.671047, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1630, 6.71729, 0,\n 9999, -9999, 1.0, 100, 1, 12.452584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1631, 17.355646, 0, 9999, -9999, 1.0, 100, 1, 32.486249, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1632, 15.125213, 0, 9999, -9999, 1.0, 100,\n 1, 25.874893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1633, 32.799309, \n 0, 9999, -9999, 1.0, 100, 1, 67.433329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1634, 5.115801, 0, 9999, -9999, 1.0, 100, 1, 9.643044, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1635, 11.160851, 0, 9999, -9999, 1.0, \n 100, 1, 19.166135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1636, \n 13.536604, 0, 9999, -9999, 1.0, 100, 1, 25.181406, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1637, 16.298847, 0, 9999, -9999, 1.0, 100, 1, \n 29.114828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1638, 6.806951, 0, \n 9999, -9999, 1.0, 100, 1, 12.162188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1639, 16.506856, 0, 9999, -9999, 1.0, 100, 1, 29.183593, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1640, 1.264443, 0, 9999, -9999, 1.0, 100, \n 1, 2.237652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1641, 2.838477, 0,\n 9999, -9999, 1.0, 100, 1, 5.023705, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1642, 6.627996, 0, 9999, -9999, 1.0, 100, 1, 11.730623, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1643, 1.931834, 0, 9999, -9999, 1.0, 100, \n 1, 3.417684, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1644, 6.735558, 0,\n 9999, -9999, 1.0, 100, 1, 11.76596, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1645, 6.302909, 0, 9999, -9999, 1.0, 100, 1, 11.144882, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1646, 2.11504, 0, 9999, -9999, 1.0, 100, 1,\n 3.73271, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1647, 9.92692, 0, 9999,\n -9999, 1.0, 100, 1, 17.434827, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1648, 28.233695, 0, 9999, -9999, 1.0, 100, 1, 109.345623, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1649, 5.151655, 0, 9999, -9999, 1.0, 100, 1, \n 23.481556, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1650, 11.474903, 0, \n 9999, -9999, 1.0, 100, 1, 176.928964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1651, 6.559486, 0, 9999, -9999, 1.0, 100, 1, 161.276649, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1652, 15.754088, 0, 9999, -9999, 1.0, 100,\n 1, 84.070562, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1653, 0.859041, 0,\n 9999, -9999, 1.0, 100, 1, 18.431241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1654, 2.867929, 0, 9999, -9999, 1.0, 100, 1, 47.53021, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1655, 6.126591, 0, 9999, -9999, 1.0, 100, \n 1, 10.79071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1656, 1.503676, 0,\n 9999, -9999, 1.0, 100, 1, 2.680105, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1657, 3.159334, 0, 9999, -9999, 1.0, 100, 1, 5.6313, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1658, 1.063334, 0, 9999, -9999, 1.0, 100, 1, \n 1.879381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1659, 42.758003, 0, \n 9999, -9999, 1.0, 100, 1, 91.77667, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1660, 81.182801, 0, 9999, -9999, 1.0, 100, 1, 186.942171, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1661, 54.425695, 0, 9999, -9999, 1.0, \n 100, 1, 138.604087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1662, \n 1.7252, 0, 9999, -9999, 1.0, 100, 1, 3.040325, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [1663, 0.88777, 0, 9999, -9999, 1.0, 100, 1, 1.600649, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1664, 0.892007, 0, 9999, -9999, 1.0,\n 100, 1, 1.578207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1665, \n 26.879102, 0, 9999, -9999, 1.0, 100, 1, 48.659717, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1666, 1.568464, 0, 9999, -9999, 1.0, 100, 1, \n 2.877877, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1667, 2.930199, 0, \n 9999, -9999, 1.0, 100, 1, 5.227282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1668, 2.222682, 0, 9999, -9999, 1.0, 100, 1, 3.927043, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1669, 32.479792, 0, 9999, -9999, 1.0, 100,\n 1, 72.677935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1670, 57.381942, \n 0, 9999, -9999, 1.0, 100, 1, 111.043025, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1671, 30.998365, 0, 9999, -9999, 1.0, 100, 1, 62.404971, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1672, 5.901853, 0, 9999, -9999, 1.0, \n 100, 1, 10.579925, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1673, \n 2.372304, 0, 9999, -9999, 1.0, 100, 1, 4.091034, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1674, 20.609688, 0, 9999, -9999, 1.0, 100, 1, \n 47.970381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1675, 17.173313, 0, \n 9999, -9999, 1.0, 100, 1, 31.233663, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1676, 4.733187, 0, 9999, -9999, 1.0, 100, 1, 83.173368, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1677, 0.748216, 0, 9999, -9999, 1.0, 100, \n 1, 13.887293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1678, 35.527692, \n 0, 9999, -9999, 1.0, 100, 1, 226.804108, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1679, 13.18382, 0, 9999, -9999, 1.0, 100, 1, 71.380413, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1680, 10.906483, 0, 9999, -9999, 1.0, \n 100, 1, 52.148102, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1681, \n 5.842714, 0, 9999, -9999, 1.0, 100, 1, 17.30062, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1682, 12.101248, 0, 9999, -9999, 1.0, 100, 1, \n 39.892468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1683, 4.466464, 0, \n 9999, -9999, 1.0, 100, 1, 9.189765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1684, 3.14363, 0, 9999, -9999, 1.0, 100, 1, 40.575646, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1685, 3.384526, 0, 9999, -9999, 1.0, 100, \n 1, 74.922434, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1686, 4.905179, 0,\n 9999, -9999, 1.0, 100, 1, 81.035483, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1687, 55.528937, 0, 9999, -9999, 1.0, 100, 1, 112.01808, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1688, 9.148372, 0, 9999, -9999, 1.0, 100, \n 1, 18.158729, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1689, 13.639446, \n 0, 9999, -9999, 1.0, 100, 1, 116.696894, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1690, 21.09561, 0, 9999, -9999, 1.0, 100, 1, 116.477465, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1691, 19.637371, 0, 9999, -9999, 1.0, \n 100, 1, 228.38653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1692, \n 2.901237, 0, 9999, -9999, 1.0, 100, 1, 26.501573, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1693, 50.543953, 0, 9999, -9999, 1.0, 100, 1, \n 86.236575, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1694, 18.920588, 0, \n 9999, -9999, 1.0, 100, 1, 53.656832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1695, 7.719672, 0, 9999, -9999, 1.0, 100, 1, 23.132774, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1696, 30.540056, 0, 9999, -9999, 1.0, 100,\n 1, 53.34209, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1697, 76.168097, 0,\n 9999, -9999, 1.0, 100, 1, 136.821485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1698, 12.290127, 0, 9999, -9999, 1.0, 100, 1, 25.60631, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1699, 2.114343, 0, 9999, -9999, 1.0, 100, \n 1, 5.356106, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1700, 21.391783, 0,\n 9999, -9999, 1.0, 100, 1, 55.825815, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1701, 10.832276, 0, 9999, -9999, 1.0, 100, 1, 37.297196, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1702, 2.156654, 0, 9999, -9999, 1.0, 100, \n 1, 25.149806, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1703, 3.858718, 0,\n 9999, -9999, 1.0, 100, 1, 48.587768, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1704, 10.17193, 0, 9999, -9999, 1.0, 100, 1, 127.647586, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1705, 5.26422, 0, 9999, -9999, 1.0, 100, 1,\n 52.051788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1706, 0.604489, 0, \n 9999, -9999, 1.0, 100, 1, 6.76178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1707, 6.403263, 0, 9999, -9999, 1.0, 100, 1, 11.7078, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1708, 12.92226, 0, 9999, -9999, 1.0, 100, 1, \n 26.288692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1709, 17.033589, 0, \n 9999, -9999, 1.0, 100, 1, 226.257418, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1710, 49.517907, 0, 9999, -9999, 1.0, 100, 1, 183.631947, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1711, 2.441574, 0, 9999, -9999, 1.0, \n 100, 1, 7.213854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1712, \n 6.895552, 0, 9999, -9999, 1.0, 100, 1, 75.638853, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1713, 28.927684, 0, 9999, -9999, 1.0, 100, 1, \n 90.775073, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1714, 16.998693, 0, \n 9999, -9999, 1.0, 100, 1, 42.312538, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1715, 62.747539, 0, 9999, -9999, 1.0, 100, 1, 155.279397, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1716, 97.323451, 0, 9999, -9999, 1.0, \n 100, 1, 156.979012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1717, \n 10.583744, 0, 9999, -9999, 1.0, 100, 1, 82.928251, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1718, 170.834174, 0, 9999, -9999, 1.0, 100, 1, \n 301.614349, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1719, 3.601351, 0, \n 9999, -9999, 1.0, 100, 1, 19.488967, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1720, 5.131112, 0, 9999, -9999, 1.0, 100, 1, 54.067169, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1721, 37.327656, 0, 9999, -9999, 1.0, 100,\n 1, 82.151947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1722, 9.385188, 0,\n 9999, -9999, 1.0, 100, 1, 21.329566, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1723, 0.050571, 0, 9999, -9999, 1.0, 100, 1, 2.855273, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1724, 0.677839, 0, 9999, -9999, 1.0, 100, \n 1, 36.268783, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1725, 22.953281, \n 0, 9999, -9999, 1.0, 100, 1, 55.750844, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1726, 15.03217, 0, 9999, -9999, 1.0, 100, 1, 84.308501, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1727, 0.192521, 0, 9999, -9999, 1.0, \n 100, 1, 0.456443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1728, \n 28.516908, 0, 9999, -9999, 1.0, 100, 1, 65.283314, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1729, 100.473844, 0, 9999, -9999, 1.0, 100, 1, \n 220.758669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1730, 4.797176, 0, \n 9999, -9999, 1.0, 100, 1, 51.367164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1731, 34.263201, 0, 9999, -9999, 1.0, 100, 1, 151.90213, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1732, 155.11784, 0, 9999, -9999, 1.0, 100,\n 1, 383.858473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1733, 23.326039,\n 0, 9999, -9999, 1.0, 100, 1, 60.655652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1734, 30.795291, 0, 9999, -9999, 1.0, 100, 1, 77.375277, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1735, 79.949927, 0, 9999, -9999, 1.0, \n 100, 1, 153.887449, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1736, \n 32.566074, 0, 9999, -9999, 1.0, 100, 1, 89.439426, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1737, 81.938946, 0, 9999, -9999, 1.0, 100, 1, \n 194.473407, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1738, 47.91826, 0, \n 9999, -9999, 1.0, 100, 1, 116.049526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1739, 18.885817, 0, 9999, -9999, 1.0, 100, 1, 33.525947, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1740, 37.672724, 0, 9999, -9999, 1.0, 100,\n 1, 66.638954, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1741, 2.695111, 0,\n 9999, -9999, 1.0, 100, 1, 35.869318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1742, 1.393089, 0, 9999, -9999, 1.0, 100, 1, 25.619162, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1743, 0.154333, 0, 9999, -9999, 1.0, 100, \n 1, 0.986841, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1744, 0.212264, 0,\n 9999, -9999, 1.0, 100, 1, 3.775325, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1745, 2.093329, 0, 9999, -9999, 1.0, 100, 1, 31.215591, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1746, 26.502147, 0, 9999, -9999, 1.0, 100,\n 1, 172.123236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1747, 1.53228, 0,\n 9999, -9999, 1.0, 100, 1, 25.963706, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1748, 25.422655, 0, 9999, -9999, 1.0, 100, 1, 67.219313, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1749, 47.531509, 0, 9999, -9999, 1.0, 100,\n 1, 218.703564, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1750, 11.270767,\n 0, 9999, -9999, 1.0, 100, 1, 22.191848, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1751, 8.41057, 0, 9999, -9999, 1.0, 100, 1, 18.416283, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1752, 52.647161, 0, 9999, -9999, 1.0, \n 100, 1, 136.190504, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1753, \n 37.833072, 0, 9999, -9999, 1.0, 100, 1, 79.270006, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1754, 183.717347, 0, 9999, -9999, 1.0, 100, 1, \n 408.37422, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1755, 24.049325, 0, \n 9999, -9999, 1.0, 100, 1, 46.277001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1756, 48.363188, 0, 9999, -9999, 1.0, 100, 1, 93.807787, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1757, 104.993994, 0, 9999, -9999, 1.0, 100,\n 1, 197.08743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1758, 154.052205,\n 0, 9999, -9999, 1.0, 100, 1, 311.473267, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1759, 88.42199, 0, 9999, -9999, 1.0, 100, 1, 156.546089, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1760, 60.975908, 0, 9999, -9999, 1.0, \n 100, 1, 114.687411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1761, \n 28.606966, 0, 9999, -9999, 1.0, 100, 1, 48.443946, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1762, 56.025721, 0, 9999, -9999, 1.0, 100, 1, \n 107.077622, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1763, 37.224422, 0,\n 9999, -9999, 1.0, 100, 1, 90.136674, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1764, 9.235744, 0, 9999, -9999, 1.0, 100, 1, 21.994769, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1765, 52.402958, 0, 9999, -9999, 1.0, 100,\n 1, 112.249863, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1766, 51.104322,\n 0, 9999, -9999, 1.0, 100, 1, 99.811208, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1767, 52.541385, 0, 9999, -9999, 1.0, 100, 1, 95.5909, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1768, 85.744629, 0, 9999, -9999, 1.0, \n 100, 1, 159.818572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1769, \n 112.347054, 0, 9999, -9999, 1.0, 100, 1, 235.581664, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1770, 259.651541, 0, 9999, -9999, 1.0, 100, 1, \n 479.248156, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1771, 5.109869, 0, \n 9999, -9999, 1.0, 100, 1, 276.640075, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1772, 126.592412, 0, 9999, -9999, 1.0, 100, 1, 272.215345, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1773, 258.328874, 0, 9999, -9999, 1.0, \n 100, 1, 533.823159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1774, \n 33.114072, 0, 9999, -9999, 1.0, 100, 1, 88.57714, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1775, 97.439377, 0, 9999, -9999, 1.0, 100, 1, \n 197.787397, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1776, 57.66107, 0, \n 9999, -9999, 1.0, 100, 1, 111.203656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1777, 71.274796, 0, 9999, -9999, 1.0, 100, 1, 199.457983, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1778, 44.558231, 0, 9999, -9999, 1.0, \n 100, 1, 80.070627, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1779, \n 40.606138, 0, 9999, -9999, 1.0, 100, 1, 78.485044, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1780, 49.274198, 0, 9999, -9999, 1.0, 100, 1, \n 97.872974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1781, 0.280452, 0, \n 9999, -9999, 1.0, 100, 1, 7.067063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1782, 0.319467, 0, 9999, -9999, 1.0, 100, 1, 9.94901, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1783, 0.345254, 0, 9999, -9999, 1.0, 100, 1, \n 10.739092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1784, 66.79638, 0, \n 9999, -9999, 1.0, 100, 1, 240.920274, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1785, 50.360782, 0, 9999, -9999, 1.0, 100, 1, 275.41262, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1786, 88.657476, 0, 9999, -9999, 1.0, 100,\n 1, 195.868213, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1787, 65.421739,\n 0, 9999, -9999, 1.0, 100, 1, 123.060646, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1788, 3.853407, 0, 9999, -9999, 1.0, 100, 1, 9.486282, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1789, 9.757968, 0, 9999, -9999, 1.0, \n 100, 1, 24.05804, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1790, \n 0.563999, 0, 9999, -9999, 1.0, 100, 1, 1.412167, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1791, 0.465844, 0, 9999, -9999, 1.0, 100, 1, 1.171034,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1792, 3.387142, 0, 9999, -9999,\n 1.0, 100, 1, 8.914306, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1793, \n 14.691741, 0, 9999, -9999, 1.0, 100, 1, 41.722817, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1794, 3.706407, 0, 9999, -9999, 1.0, 100, 1, \n 6.617641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1795, 1.770783, 0, \n 9999, -9999, 1.0, 100, 1, 3.33586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1796, 0.41599, 0, 9999, -9999, 1.0, 100, 1, 10.434523, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1797, 22.643915, 0, 9999, -9999, 1.0, 100, 1,\n 63.411765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1798, 4.790401, 0, \n 9999, -9999, 1.0, 100, 1, 14.835758, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1799, 26.742258, 0, 9999, -9999, 1.0, 100, 1, 51.10225, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1800, 4.742924, 0, 9999, -9999, 1.0, 100, \n 1, 79.286766, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1801, 7.953416, 0,\n 9999, -9999, 1.0, 100, 1, 21.006749, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1802, 4.049656, 0, 9999, -9999, 1.0, 100, 1, 11.305192, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1803, 5.140621, 0, 9999, -9999, 1.0, 100, \n 1, 15.182571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1804, 144.921246,\n 0, 9999, -9999, 1.0, 100, 1, 399.133201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1805, 8.536324, 0, 9999, -9999, 1.0, 100, 1, 23.20491, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1806, 5.740923, 0, 9999, -9999, 1.0, \n 100, 1, 21.469357, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1807, \n 1.470613, 0, 9999, -9999, 1.0, 100, 1, 28.156483, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1808, 70.361515, 0, 9999, -9999, 1.0, 100, 1, \n 118.262712, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1809, 18.2725, 0, \n 9999, -9999, 1.0, 100, 1, 33.031228, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1810, 44.141834, 0, 9999, -9999, 1.0, 100, 1, 74.139408, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1811, 2.450386, 0, 9999, -9999, 1.0, 100, \n 1, 53.408299, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1812, 18.961252, \n 0, 9999, -9999, 1.0, 100, 1, 47.34526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1813, 69.413673, 0, 9999, -9999, 1.0, 100, 1, 180.894957, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1814, 5.588762, 0, 9999, -9999, 1.0,\n 100, 1, 62.572642, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1815, \n 3.471972, 0, 9999, -9999, 1.0, 100, 1, 61.953143, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1816, 1.600858, 0, 9999, -9999, 1.0, 100, 1, 30.445169,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1817, 86.125537, 0, 9999, -9999,\n 1.0, 100, 1, 280.614897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1818, \n 75.34571, 0, 9999, -9999, 1.0, 100, 1, 173.515675, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1819, 0.872404, 0, 9999, -9999, 1.0, 100, 1, \n 1.538348, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1820, 45.88908, 0, \n 9999, -9999, 1.0, 100, 1, 79.71358, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1821, 103.350239, 0, 9999, -9999, 1.0, 100, 1, 196.67938, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1822, 102.760969, 0, 9999, -9999, 1.0, \n 100, 1, 170.831584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1823, \n 75.58801, 0, 9999, -9999, 1.0, 100, 1, 131.456153, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1824, 5.044208, 0, 9999, -9999, 1.0, 100, 1, \n 56.565054, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1825, 4.036555, 0, \n 9999, -9999, 1.0, 100, 1, 81.59195, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1826, 34.051376, 0, 9999, -9999, 1.0, 100, 1, 74.101252, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1827, 2.041287, 0, 9999, -9999, 1.0, 100, \n 1, 30.303552, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1828, 2.020579, 0,\n 9999, -9999, 1.0, 100, 1, 43.298921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1830, 11.386028, 0, 9999, -9999, 1.0, 100, 1, 27.724768, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1831, 39.153546, 0, 9999, -9999, 1.0, 100,\n 1, 69.89001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1832, 14.640804, 0,\n 9999, -9999, 1.0, 100, 1, 26.560625, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1833, 43.988416, 0, 9999, -9999, 1.0, 100, 1, 81.361962, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1834, 49.227473, 0, 9999, -9999, 1.0, 100,\n 1, 102.529569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1836, 0.415275, \n 0, 9999, -9999, 1.0, 100, 1, 6.417969, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1837, 0.694236, 0, 9999, -9999, 1.0, 100, 1, 12.629331, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1838, 12.263587, 0, 9999, -9999, 1.0, \n 100, 1, 25.580913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1839, \n 94.041912, 0, 9999, -9999, 1.0, 100, 1, 183.749133, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1840, 55.990814, 0, 9999, -9999, 1.0, 100, 1, \n 132.975197, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1841, 8.567758, 0, \n 9999, -9999, 1.0, 100, 1, 22.982632, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1842, 3.013346, 0, 9999, -9999, 1.0, 100, 1, 7.468633, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1843, 4.963466, 0, 9999, -9999, 1.0, 100, \n 1, 19.264686, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1844, 11.851685, \n 0, 9999, -9999, 1.0, 100, 1, 32.384294, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1845, 8.548534, 0, 9999, -9999, 1.0, 100, 1, 31.436002, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1846, 0.814326, 0, 9999, -9999, 1.0, \n 100, 1, 3.74984, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1847, \n 40.448773, 0, 9999, -9999, 1.0, 100, 1, 120.215574, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1848, 5.647164, 0, 9999, -9999, 1.0, 100, 1, \n 9.514696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1849, 22.348436, 0, \n 9999, -9999, 1.0, 100, 1, 37.619097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1850, 28.851054, 0, 9999, -9999, 1.0, 100, 1, 48.54058, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1851, 4.777507, 0, 9999, -9999, 1.0, 100, \n 1, 7.956444, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1852, 22.581538, 0,\n 9999, -9999, 1.0, 100, 1, 37.606916, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1853, 18.287332, 0, 9999, -9999, 1.0, 100, 1, 30.116711, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1854, 0.071349, 0, 9999, -9999, 1.0, 100, \n 1, 2.241167, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1855, 58.355405, 0,\n 9999, -9999, 1.0, 100, 1, 121.687485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1856, 32.390166, 0, 9999, -9999, 1.0, 100, 1, 63.654358, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1857, 6.577045, 0, 9999, -9999, 1.0, 100, \n 1, 41.229597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1858, 2.782594, 0,\n 9999, -9999, 1.0, 100, 1, 27.374415, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1860, 46.412756, 0, 9999, -9999, 1.0, 100, 1, 84.163604, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1861, 15.17117, 0, 9999, -9999, 1.0, 100, \n 1, 26.861144, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1862, 17.100554, \n 0, 9999, -9999, 1.0, 100, 1, 32.512826, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1863, 15.395611, 0, 9999, -9999, 1.0, 100, 1, 30.063729, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1864, 58.28981, 0, 9999, -9999, 1.0, \n 100, 1, 138.236316, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1865, \n 29.398244, 0, 9999, -9999, 1.0, 100, 1, 68.097772, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1866, 34.06823, 0, 9999, -9999, 1.0, 100, 1, \n 98.289141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1867, 1.138849, 0, \n 9999, -9999, 1.0, 100, 1, 2.041288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1868, 3.659736, 0, 9999, -9999, 1.0, 100, 1, 6.453374, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1869, 1.540924, 0, 9999, -9999, 1.0, 100, \n 1, 2.759448, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1870, 21.723018, 0,\n 9999, -9999, 1.0, 100, 1, 54.564665, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1871, 23.760385, 0, 9999, -9999, 1.0, 100, 1, 52.648444, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1872, 0.976431, 0, 9999, -9999, 1.0, 100, \n 1, 1.683854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1873, 5.09944, 0, \n 9999, -9999, 1.0, 100, 1, 9.025283, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1874, 2.012083, 0, 9999, -9999, 1.0, 100, 1, 3.554415, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1875, 4.442785, 0, 9999, -9999, 1.0, 100, \n 1, 7.837576, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1876, 2.799608, 0,\n 9999, -9999, 1.0, 100, 1, 4.936672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1877, 0.64407, 0, 9999, -9999, 1.0, 100, 1, 1.135717, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1878, 4.747047, 0, 9999, -9999, 1.0, 100, 1, \n 8.374329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1879, 0.985284, 0, \n 9999, -9999, 1.0, 100, 1, 1.752881, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1880, 21.679451, 0, 9999, -9999, 1.0, 100, 1, 38.46747, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1881, 2.497923, 0, 9999, -9999, 1.0, 100, \n 1, 4.535799, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1882, 2.775104, 0,\n 9999, -9999, 1.0, 100, 1, 5.120641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1883, 3.80439, 0, 9999, -9999, 1.0, 100, 1, 6.940957, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1884, 3.216632, 0, 9999, -9999, 1.0, 100, 1, \n 5.865468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1885, 26.127919, 0, \n 9999, -9999, 1.0, 100, 1, 47.510175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1886, 2.920583, 0, 9999, -9999, 1.0, 100, 1, 5.255398, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1887, 8.980031, 0, 9999, -9999, 1.0, 100, \n 1, 16.937671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1888, 2.284432, 0,\n 9999, -9999, 1.0, 100, 1, 4.141211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1889, 22.755153, 0, 9999, -9999, 1.0, 100, 1, 91.335184, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1890, 11.091793, 0, 9999, -9999, 1.0, 100,\n 1, 24.842697, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1891, 1.598973, 0,\n 9999, -9999, 1.0, 100, 1, 30.836318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1892, 2.193637, 0, 9999, -9999, 1.0, 100, 1, 38.14699, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1893, 3.485072, 0, 9999, -9999, 1.0, 100, \n 1, 46.5682, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1894, 2.083874, 0, \n 9999, -9999, 1.0, 100, 1, 31.347572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1895, 0.074321, 0, 9999, -9999, 1.0, 100, 1, 0.140628, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1896, 12.343254, 0, 9999, -9999, 1.0, 100,\n 1, 45.257234, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1897, 4.490861, 0,\n 9999, -9999, 1.0, 100, 1, 14.824595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1898, 1.288233, 0, 9999, -9999, 1.0, 100, 1, 18.270499, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1899, 2.768066, 0, 9999, -9999, 1.0, 100, \n 1, 12.000496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1900, 46.855623, \n 0, 9999, -9999, 1.0, 100, 1, 78.114509, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1901, 79.712379, 0, 9999, -9999, 1.0, 100, 1, 133.539659, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1902, 168.786014, 0, 9999, -9999, \n 1.0, 100, 1, 281.819662, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1903, \n 79.080104, 0, 9999, -9999, 1.0, 100, 1, 135.492385, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1904, 46.677656, 0, 9999, -9999, 1.0, 100, 1, \n 79.184428, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1905, 3.526731, 0, \n 9999, -9999, 1.0, 100, 1, 9.160607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1906, 21.874104, 0, 9999, -9999, 1.0, 100, 1, 72.356523, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1907, 12.40785, 0, 9999, -9999, 1.0, 100, \n 1, 28.893637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1908, 29.231842, \n 0, 9999, -9999, 1.0, 100, 1, 50.477866, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1909, 2.846508, 0, 9999, -9999, 0.999501, 100, 1, 32.874676, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1910, 1.766063, 0, 9999, -9999,\n 1.0, 100, 1, 20.259486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1911, \n 0.705955, 0, 9999, -9999, 1.0, 100, 1, 8.189799, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1912, 3.360662, 0, 9999, -9999, 1.0, 100, 1, \n 101.236915, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1913, 0.362876, 0, \n 9999, -9999, 1.0, 100, 1, 6.782522, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1914, 0.788819, 0, 9999, -9999, 1.0, 100, 1, 15.944561, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1915, 13.727784, 0, 9999, -9999, 1.0, 100,\n 1, 159.570248, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1916, 10.117207,\n 0, 9999, -9999, 1.0, 100, 1, 277.793548, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1917, 91.580936, 0, 9999, -9999, 1.0, 100, 1, 186.387377, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1918, 63.811718, 0, 9999, -9999, 1.0,\n 100, 1, 120.486097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1919, \n 21.235829, 0, 9999, -9999, 1.0, 100, 1, 61.1613, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1920, 0.597023, 0, 9999, -9999, 1.0, 100, 1, 9.95472, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1921, 10.5814, 0, 9999, -9999, \n 1.0, 100, 1, 230.400935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1922, \n 3.31875, 0, 9999, -9999, 1.0, 100, 1, 66.116137, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1923, 1.096816, 0, 9999, -9999, 1.0, 100, 1, 21.836163,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1924, 2.396826, 0, 9999, -9999,\n 1.0, 100, 1, 36.518326, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1925, \n 74.732516, 0, 9999, -9999, 1.0, 100, 1, 135.324361, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1926, 37.927912, 0, 9999, -9999, 1.0, 100, 1, \n 96.610178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1927, 21.753349, 0, \n 9999, -9999, 1.0, 100, 1, 65.668809, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1928, 0.04724, 0, 9999, -9999, 1.0, 100, 1, 1.509884, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1929, 0.552543, 0, 9999, -9999, 1.0, 100, 1, \n 4.804832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1930, 3.929054, 0, \n 9999, -9999, 1.0, 100, 1, 11.004973, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1931, 11.492469, 0, 9999, -9999, 1.0, 100, 1, 38.07556, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1932, 10.876649, 0, 9999, -9999, 1.0, 100,\n 1, 46.722379, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1933, 10.473207, \n 0, 9999, -9999, 1.0, 100, 1, 44.239188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1934, 117.537767, 0, 9999, -9999, 1.0, 100, 1, 383.418198, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1935, 34.374027, 0, 9999, -9999, 1.0,\n 100, 1, 62.335643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1936, \n 2.950282, 0, 9999, -9999, 1.0, 100, 1, 6.00797, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1937, 70.310402, 0, 9999, -9999, 1.0, 100, 1, \n 134.605733, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1938, 10.589034, 0,\n 9999, -9999, 1.0, 100, 1, 89.425619, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1939, 34.352206, 0, 9999, -9999, 1.0, 100, 1, 103.003683, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1940, 8.662273, 0, 9999, -9999, 1.0, \n 100, 1, 18.980829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1941, \n 28.419023, 0, 9999, -9999, 1.0, 100, 1, 104.495097, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1942, 27.473846, 0, 9999, -9999, 1.0, 100, 1, \n 70.75487, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1943, 2.0646, 0, 9999,\n -9999, 1.0, 100, 1, 3.652558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1944, 50.503742, 0, 9999, -9999, 1.0, 100, 1, 93.133765, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [1945, 6.040478, 0, 9999, -9999, 1.0, 100, 1, \n 10.651443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1946, 0.742589, 0, \n 9999, -9999, 1.0, 100, 1, 1.309439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1947, 9.923903, 0, 9999, -9999, 1.0, 100, 1, 17.996246, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1948, 31.485384, 0, 9999, -9999, 1.0, 100,\n 1, 83.075413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1949, 5.724064, 0,\n 9999, -9999, 1.0, 100, 1, 10.193229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1950, 0.502461, 0, 9999, -9999, 1.0, 100, 1, 0.866493, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1951, 4.204719, 0, 9999, -9999, 1.0, 100, \n 1, 7.917597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1952, 17.958372, 0,\n 9999, -9999, 1.0, 100, 1, 67.723951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1953, 5.075202, 0, 9999, -9999, 1.0, 100, 1, 8.928556, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1954, 7.198599, 0, 9999, -9999, 1.0, 100, \n 1, 12.726892, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1955, 3.726843, 0,\n 9999, -9999, 1.0, 100, 1, 6.625255, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1956, 21.634918, 0, 9999, -9999, 1.0, 100, 1, 38.724888, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1957, 38.55709, 0, 9999, -9999, 1.0, 100, \n 1, 131.682322, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1958, 26.153938,\n 0, 9999, -9999, 1.0, 100, 1, 59.791759, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1959, 5.715564, 0, 9999, -9999, 1.0, 100, 1, 35.986928, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1960, 7.46671, 0, 9999, -9999, 1.0, 100,\n 1, 13.579895, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1961, 10.128456, \n 0, 9999, -9999, 1.0, 100, 1, 17.841481, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1962, 1.777909, 0, 9999, -9999, 1.0, 100, 1, 3.150179, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1963, 0.405646, 0, 9999, -9999, 1.0, \n 100, 1, 0.73138, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1964, 3.914947,\n 0, 9999, -9999, 1.0, 100, 1, 66.594121, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1965, 1.169719, 0, 9999, -9999, 1.0, 100, 1, 18.785491, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1966, 1.10539, 0, 9999, -9999, 1.0, 100,\n 1, 2.674199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1967, 58.064298, 0,\n 9999, -9999, 1.0, 100, 1, 99.074235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1968, 115.522641, 0, 9999, -9999, 1.0, 100, 1, 201.733891, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1969, 8.791022, 0, 9999, -9999, 1.0, \n 100, 1, 15.048118, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1970, \n 146.011633, 0, 9999, -9999, 1.0, 100, 1, 236.871781, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1971, 8.074517, 0, 9999, -9999, 1.0, 100, 1, \n 14.404409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1972, 0.015521, 0, \n 9999, -9999, 1.0, 100, 1, 0.028378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1973, 0.292438, 0, 9999, -9999, 1.0, 100, 1, 0.534696, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1974, 1.504534, 0, 9999, -9999, 1.0, 100, \n 1, 2.750907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1975, 36.887137, 0,\n 9999, -9999, 1.0, 100, 1, 81.92918, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1976, 1.406463, 0, 9999, -9999, 1.0, 100, 1, 2.17499, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1977, 122.592738, 0, 9999, -9999, 1.0, 100, 1,\n 226.383637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1978, 0.706432, 0, \n 9999, -9999, 1.0, 100, 1, 1.331592, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1979, 7.337064, 0, 9999, -9999, 1.0, 100, 1, 189.722792, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1980, 52.239056, 0, 9999, -9999, 1.0, 100,\n 1, 100.61941, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1981, 79.320419, \n 0, 9999, -9999, 1.0, 100, 1, 144.682717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1982, 69.614382, 0, 9999, -9999, 1.0, 100, 1, 134.93778, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1983, 67.761201, 0, 9999, -9999, 1.0, \n 100, 1, 155.990147, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1984, \n 43.229883, 0, 9999, -9999, 1.0, 100, 1, 94.470611, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1985, 18.449298, 0, 9999, -9999, 1.0, 100, 1, \n 41.975835, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1986, 108.814425, 0,\n 9999, -9999, 1.0, 100, 1, 298.346979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1987, 189.251646, 0, 9999, -9999, 1.0, 100, 1, 393.914067, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1988, 144.661852, 0, 9999, -9999, 1.0, \n 100, 1, 251.944939, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1989, \n 6.390172, 0, 9999, -9999, 1.0, 100, 1, 10.378288, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1990, 30.763561, 0, 9999, -9999, 1.0, 100, 1, \n 50.351426, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1991, 399.179592, 0,\n 9999, -9999, 1.0, 100, 1, 849.576944, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1992, 125.280995, 0, 9999, -9999, 1.0, 100, 1, 233.477991, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1993, 121.464694, 0, 9999, -9999, 1.0, \n 100, 1, 242.698643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1994, \n 45.014021, 0, 9999, -9999, 1.0, 100, 1, 255.834576, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1995, 80.531008, 0, 9999, -9999, 1.0, 100, 1, \n 262.446698, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1996, 20.04469, 0, \n 9999, -9999, 1.0, 100, 1, 91.306832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1997, 9.226652, 0, 9999, -9999, 1.0, 100, 1, 26.592561, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1998, 5.256357, 0, 9999, -9999, 1.0, 100, \n 1, 12.126511, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1999, 67.284228, \n 0, 9999, -9999, 1.0, 100, 1, 199.184531, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [2000, 253.175263, 0, 9999, -9999, 1.0, 100, 1, 579.835051, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2001, 28.564477, 0, 9999, -9999, 1.0,\n 100, 1, 122.315703, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2002, \n 2.736658, 0, 9999, -9999, 1.0, 100, 1, 30.606436, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [2003, 12.738107, 0, 9999, -9999, 1.0, 100, 1, \n 23.645071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2004, 8.692812, 0, \n 9999, -9999, 1.0, 100, 1, 17.73338, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [2005, 28.121382, 0, 9999, -9999, 1.0, 100, 1, 72.071456, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [2006, 25.924839, 0, 9999, -9999, 1.0, 100,\n 1, 59.660888, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2007, 0.938003, 0,\n 9999, -9999, 1.0, 100, 1, 1.681507, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [2008, 0.065103, 0, 9999, -9999, 1.0, 100, 1, 0.116706, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0]]'], {}), '([[586, 272.0, 0, 9999, -9999, 1.0, 100, 1, 272.0, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [589, 63.1, 0, 9999, -9999, 1.0, 100, 1, 63.1, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [590, 38.0, 0, 9999, -9999, 1.0, 100,\n 1, 38.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [593, 11.1, 0, 9999, -\n 9999, 1.0, 100, 1, 11.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [594, \n 19.0, 0, 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [595, 1147.054992, 0, 9999, -9999, 1.0, 100, 1, 4730.0, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [598, 12.0, 0, 9999, -9999, 1.0, 100, 1,\n 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [599, 9.3, 0, 9999, -9999,\n 1.0, 100, 1, 9.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [601, 61.5, 0,\n 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [602, 24.6, 0, 9999, -9999, 1.0, 100, 1, 24.6, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [603, 868.534042, 0, 9999, -9999, 1.0, 100, 1, 3455.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [607, 1800.0, 0, 9999, -9999, 1.0, \n 100, 1, 1800.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [608, 24.0, 0, \n 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [609, 36.4, 0, 9999, -9999, 1.0, 100, 1, 36.4, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [612, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [613, 85.0, 0, 9999, -9999, 1.0, 100, 1, \n 85.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [614, 30.0, 0, 9999, -9999,\n 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [616, 29.0, 0,\n 9999, -9999, 1.0, 100, 1, 29.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [617, 137.0, 0, 9999, -9999, 1.0, 100, 1, 137.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [618, 33.4, 0, 9999, -9999, 1.0, 100, 1, 33.4, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [619, 118.0, 0, 9999, -9999, 1.0, 100, 1,\n 118.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [621, 765.0, 0, 9999, -\n 9999, 1.0, 100, 1, 765.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [623, \n 267.860808, 0, 9999, -9999, 1.0, 100, 1, 760.0, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [624, 27.0, 0, 9999, -9999, 1.0, 100, 1, 27.0, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [628, 449.0, 0, 9999, -9999, 1.0, 100, 1,\n 449.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [629, 75.3, 0, 9999, -\n 9999, 1.0, 100, 1, 75.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [632, \n 45.1, 0, 9999, -9999, 1.0, 100, 1, 45.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [637, 53.7, 0, 9999, -9999, 1.0, 100, 1, 53.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [638, 128.7, 0, 9999, -9999, 1.0, 100, 1, 128.7, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [640, 12.0, 0, 9999, -9999, 1.0,\n 100, 1, 12.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [641, 12.6, 0, \n 9999, -9999, 1.0, 100, 1, 12.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [642, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [643, 857.0, 0, 9999, -9999, 1.0, 100, 1, 857.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [646, 103.0, 0, 9999, -9999, 1.0, 100, 1, \n 103.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [647, 14.0, 0, 9999, -\n 9999, 1.0, 100, 1, 14.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [650, \n 1324.5, 0, 9999, -9999, 1.0, 100, 1, 1324.5, 0.0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0], [652, 46.9, 0, 9999, -9999, 1.0, 100, 1, 46.9, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [655, 61.5, 0, 9999, -9999, 1.0, 100, 1, \n 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [661, 32.7, 0, 9999, -9999,\n 1.0, 100, 1, 32.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [663, 15.0, 0,\n 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [666, 28.9, 0, 9999, -9999, 1.0, 100, 1, 28.9, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [668, 766.0, 0, 9999, -9999, 1.0, 100, 1, 766.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [670, 24.0, 0, 9999, -9999, 1.0, 100, 1, \n 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [672, 33.1, 0, 9999, -9999,\n 1.0, 100, 1, 33.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [676, 370.0, \n 0, 9999, -9999, 1.0, 100, 1, 370.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [681, 40.1, 0, 9999, -9999, 1.0, 100, 1, 40.1, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [683, 27.5, 0, 9999, -9999, 1.0, 100, 1, 27.5, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [687, 1329.0, 0, 9999, -9999, 1.0, \n 100, 1, 1329.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [689, 310.0, 0, \n 9999, -9999, 1.0, 100, 1, 310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [691, 26.0, 0, 9999, -9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [693, 194.0, 0, 9999, -9999, 1.0, 100, 1, 194.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [694, 16.4, 0, 9999, -9999, 1.0, 100, 1, \n 16.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [695, 14.7, 0, 9999, -9999,\n 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [696, 721.0, \n 0, 9999, -9999, 1.0, 100, 1, 721.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [697, 11.6, 0, 9999, -9999, 1.0, 100, 1, 11.6, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [698, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [702, 73.4, 0, 9999, -9999, 1.0, 100,\n 1, 73.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [704, 508.0, 0, 9999, -\n 9999, 1.0, 100, 1, 508.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [705, \n 17.0, 0, 9999, -9999, 1.0, 100, 1, 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [707, 34.0, 0, 9999, -9999, 1.0, 100, 1, 34.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [708, 7.8, 0, 9999, -9999, 1.0, 100, 1, 7.8, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [711, 88.484779, 0, 9999, -9999, 1.0,\n 100, 1, 176.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [713, 13.4, 0, \n 9999, -9999, 1.0, 100, 1, 13.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [714, 15.0, 0, 9999, -9999, 1.0, 100, 1, 15.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [716, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [717, 11.0, 0, 9999, -9999, 1.0, 100, 1, 11.0,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [719, 1328.962186, 0, 9999, -\n 9999, 1.0, 100, 1, 1958.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [722,\n 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [724, 12.1, 0, 9999, -9999, 1.0, 100, 1, 12.1, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [727, 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [728, 510.0, 0, 9999, -9999, 1.0,\n 100, 1, 510.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [730, 633.2, 0, \n 9999, -9999, 1.0, 100, 1, 633.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [731, 540.174348, 0, 9999, -9999, 1.0, 100, 1, 895.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [732, 14.6, 0, 9999, -9999, 1.0, 100, 1, 14.6, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [735, 84.8, 0, 9999, -9999, 1.0,\n 100, 1, 84.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [737, 28.0, 0, \n 9999, -9999, 1.0, 100, 1, 28.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [738, 138.5, 0, 9999, -9999, 1.0, 100, 1, 138.5, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [741, 214.0, 0, 9999, -9999, 1.0, 100, 1, 214.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [742, 9.0, 0, 9999, -9999, 1.0, 100, 1, \n 9.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [743, 220.991864, 0, 9999, \n -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [746,\n 100.0, 0, 9999, -9999, 1.0, 100, 1, 100.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0], [747, 12.5, 0, 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [748, 110.0, 0, 9999, -9999, 1.0, 100, 1, \n 110.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [749, 16.0, 0, 9999, -\n 9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [750, \n 90.8, 0, 9999, -9999, 1.0, 100, 1, 90.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [753, 116.851068, 0, 9999, -9999, 1.0, 100, 1, 311.8, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [758, 18.5, 0, 9999, -9999, 1.0, 100, 1, \n 18.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [760, 298.788806, 0, 9999,\n -9999, 1.0, 100, 1, 794.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [762,\n 700.835089, 0, 9999, -9999, 1.0, 100, 1, 1105.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [763, 20.3, 0, 9999, -9999, 1.0, 100, 1, 20.3, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [765, 59.0, 0, 9999, -9999, 1.0, 100, 1,\n 59.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [767, 11.2, 0, 9999, -9999,\n 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [769, 43.3, 0,\n 9999, -9999, 1.0, 100, 1, 43.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [771, 690.0, 0, 9999, -9999, 1.0, 100, 1, 690.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [772, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [774, 33.5, 0, 9999, -9999, 1.0, 100, 1,\n 33.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [776, 54.222128, 0, 9999, \n -9999, 1.0, 100, 1, 56.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [777, \n 79.0, 0, 9999, -9999, 1.0, 100, 1, 79.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [778, 14.7, 0, 9999, -9999, 1.0, 100, 1, 14.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [781, 973.218708, 0, 9999, -9999, 1.0, 100, 1, \n 1310.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [784, 802.511044, 0, \n 9999, -9999, 1.0, 100, 1, 1275.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [785, 3.0, 0, 9999, -9999, 1.0, 100, 1, 3.0, 0.0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0], [787, 778.0, 0, 9999, -9999, 1.0, 100, 1, 778.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [788, 875.0, 0, 9999, -9999, 1.0, 100, 1, \n 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [789, 77.4, 0, 9999, -\n 9999, 1.0, 100, 1, 77.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [791, \n 10.0, 0, 9999, -9999, 1.0, 100, 1, 10.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [792, 62.7, 0, 9999, -9999, 1.0, 100, 1, 62.7, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [795, 13.6, 0, 9999, -9999, 1.0, 100, 1, 13.6, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [801, 50.0, 0, 9999, -9999, 1.0,\n 100, 1, 50.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [802, 500.0, 0, \n 9999, -9999, 1.0, 100, 1, 500.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [805, 418.686348, 0, 9999, -9999, 1.0, 100, 1, 1410.0, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [806, 35.8, 0, 9999, -9999, 1.0, 100, 1, 35.8, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [808, 217.5, 0, 9999, -9999, 1.0,\n 100, 1, 217.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [809, 12.5, 0, \n 9999, -9999, 1.0, 100, 1, 12.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [811, 25.2, 0, 9999, -9999, 1.0, 100, 1, 25.2, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [814, 89.0, 0, 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [816, 80.1, 0, 9999, -9999, 1.0, 100, 1, \n 80.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [817, 54.0, 0, 9999, -9999,\n 1.0, 100, 1, 54.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [821, 82.5, 0,\n 9999, -9999, 1.0, 100, 1, 82.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [822, 134.0, 0, 9999, -9999, 1.0, 100, 1, 134.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [826, 58.0, 0, 9999, -9999, 1.0, 100, 1, 58.0, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [829, 204.799653, 0, 9999, -9999, 1.0, \n 100, 1, 211.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [830, 89.0, 0, \n 9999, -9999, 1.0, 100, 1, 89.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [835, 63.7, 0, 9999, -9999, 1.0, 100, 1, 63.7, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [836, 25.5, 0, 9999, -9999, 1.0, 100, 1, 25.5, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [837, 472.0, 0, 9999, -9999, 1.0, 100, 1, \n 472.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [839, 73.3, 0, 9999, -\n 9999, 1.0, 100, 1, 73.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [841, \n 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [843, 333.0, 0, 9999, -9999, 1.0, 100, 1, 333.0, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [844, 40.0, 0, 9999, -9999, 1.0, 100, 1, 40.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [845, 318.0, 0, 9999, -9999, 1.0,\n 100, 1, 318.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [849, 779.0, 0, \n 9999, -9999, 1.0, 100, 1, 779.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [850, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [851, 79.5, 0, 9999, -9999, 1.0, 100, 1, 79.5, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [853, 11.6, 0, 9999, -9999, 1.0, 100, 1, \n 11.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [854, 81.8, 0, 9999, -9999,\n 1.0, 100, 1, 81.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [855, 688.0, \n 0, 9999, -9999, 1.0, 100, 1, 688.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [856, 36.0, 0, 9999, -9999, 1.0, 100, 1, 36.0, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [857, 1402.0, 0, 9999, -9999, 1.0, 100, 1, 1402.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [858, 56.8, 0, 9999, -9999, 1.0,\n 100, 1, 56.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [859, 85.0, 0, \n 9999, -9999, 1.0, 100, 1, 85.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [860, 25.0, 0, 9999, -9999, 1.0, 100, 1, 25.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [862, 725.0, 0, 9999, -9999, 1.0, 100, 1, 725.0, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [863, 0.6, 0, 9999, -9999, 1.0, 100, 1, 0.6,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [864, 875.0, 0, 9999, -9999, 1.0,\n 100, 1, 875.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [865, 11.0, 0, \n 9999, -9999, 1.0, 100, 1, 11.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [867, 769.0, 0, 9999, -9999, 1.0, 100, 1, 769.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [869, 1360.0, 0, 9999, -9999, 1.0, 100, 1, 1360.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [870, 58.4, 0, 9999, -9999, 1.0, 100,\n 1, 58.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [872, 22.5, 0, 9999, -\n 9999, 1.0, 100, 1, 22.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [873, \n 18.747266, 0, 9999, -9999, 1.0, 100, 1, 122.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [874, 20.7, 0, 9999, -9999, 1.0, 100, 1, 20.7, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [875, 24.4, 0, 9999, -9999, 1.0, 100, 1, \n 24.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [877, 24.8, 0, 9999, -9999,\n 1.0, 100, 1, 24.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [882, 17.4, 0,\n 9999, -9999, 1.0, 100, 1, 17.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [883, 18.0, 0, 9999, -9999, 1.0, 100, 1, 18.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [886, 2572.0, 0, 9999, -9999, 1.0, 100, 1, 2572.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [889, 9.5, 0, 9999, -9999, 1.0, 100, 1, \n 9.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [890, 48.0, 0, 9999, -9999,\n 1.0, 100, 1, 48.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [895, 19.0, 0,\n 9999, -9999, 1.0, 100, 1, 19.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [896, 24.0, 0, 9999, -9999, 1.0, 100, 1, 24.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [898, 84.6, 0, 9999, -9999, 1.0, 100, 1, 84.6, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [900, 112.6, 0, 9999, -9999, 1.0, 100, 1, \n 112.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [902, 19.5, 0, 9999, -\n 9999, 1.0, 100, 1, 19.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [903, \n 20.1, 0, 9999, -9999, 1.0, 100, 1, 20.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [905, 137.3, 0, 9999, -9999, 1.0, 100, 1, 137.3, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [906, 33.577454, 0, 9999, -9999, 1.0, 100, 1, \n 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [907, 67.3, 0, 9999, -9999,\n 1.0, 100, 1, 67.3, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [909, 36.8, 0,\n 9999, -9999, 1.0, 100, 1, 36.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [913, 74.0, 0, 9999, -9999, 1.0, 100, 1, 74.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [915, 12.0, 0, 9999, -9999, 1.0, 100, 1, 12.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [917, 17.0, 0, 9999, -9999, 1.0, 100, 1, \n 17.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [918, 38.5, 0, 9999, -9999,\n 1.0, 100, 1, 38.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [920, 12.8, 0,\n 9999, -9999, 1.0, 100, 1, 12.8, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [921, 124.0, 0, 9999, -9999, 1.0, 100, 1, 124.0, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [922, 164.0, 0, 9999, -9999, 1.0, 100, 1, 164.0, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [923, 146.0, 0, 9999, -9999, 1.0, 100, 1,\n 146.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [925, 26.0, 0, 9999, -\n 9999, 1.0, 100, 1, 26.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [928, \n 61.5, 0, 9999, -9999, 1.0, 100, 1, 61.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [931, 217.1, 0, 9999, -9999, 1.0, 100, 1, 217.1, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [934, 296.0, 0, 9999, -9999, 1.0, 100, 1, 296.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [935, 23.1, 0, 9999, -9999, 1.0,\n 100, 1, 23.1, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [936, 104.4, 0, \n 9999, -9999, 1.0, 100, 1, 104.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [937, 30.0, 0, 9999, -9999, 1.0, 100, 1, 30.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [939, 0.1, 0, 9999, -9999, 1.0, 100, 1, 0.1, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [940, 29.6, 0, 9999, -9999, 1.0, 100, 1, 29.6,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [942, 51.9, 0, 9999, -9999, 1.0,\n 100, 1, 51.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [944, 25.4, 0, \n 9999, -9999, 1.0, 100, 1, 25.4, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [945, 35.0, 0, 9999, -9999, 1.0, 100, 1, 35.0, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [950, 16.0, 0, 9999, -9999, 1.0, 100, 1, 16.0, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [952, 31.7, 0, 9999, -9999, 1.0, 100, 1, \n 31.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [958, 66.7, 0, 9999, -9999,\n 1.0, 100, 1, 66.7, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [959, 45.5, 0,\n 9999, -9999, 1.0, 100, 1, 45.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [960, 26.5, 0, 9999, -9999, 1.0, 100, 1, 26.5, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [963, 503.264337, 0, 9999, -9999, 1.0, 100, 1, 875.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [965, 352.0, 0, 9999, -9999, 1.0, 100,\n 1, 352.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [966, 66.0, 0, 9999, -\n 9999, 1.0, 100, 1, 66.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [967, \n 37.5, 0, 9999, -9999, 1.0, 100, 1, 37.5, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [968, 54.0, 0, 9999, -9999, 0.999501, 100, 1, 54.0, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [969, 56.9, 0, 9999, -9999, 0.999501, 100, 1, \n 56.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [971, 20.0, 0, 9999, -9999,\n 1.0, 100, 1, 20.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [973, 1347.0,\n 0, 9999, -9999, 1.0, 100, 1, 1347.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [976, 26.9, 0, 9999, -9999, 1.0, 100, 1, 26.9, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [977, 324.0, 0, 9999, -9999, 1.0, 100, 1, 324.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [978, 4.6, 0, 9999, -9999, 1.0, 100, \n 1, 4.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [981, 119.0, 0, 9999, -\n 9999, 1.0, 100, 1, 119.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [982, \n 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [983, 44.0, 0, 9999, -9999, 1.0, 100, 1, 44.0, 0.0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0], [984, 465.0, 0, 9999, -9999, 1.0, 100, 1, 465.0, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [985, 22.0, 0, 9999, -9999, 1.0,\n 100, 1, 22.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [986, 11.2, 0, \n 9999, -9999, 1.0, 100, 1, 11.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [987, 164.5, 0, 9999, -9999, 1.0, 100, 1, 164.5, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [988, 5.1, 0, 9999, -9999, 1.0, 100, 1, 5.1, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [990, 238.511447, 0, 9999, -9999, 1.0, 100,\n 1, 300.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [993, 392.0, 0, 9999, \n -9999, 1.0, 100, 1, 392.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [994,\n 33.0, 0, 9999, -9999, 1.0, 100, 1, 33.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [995, 4.2, 0, 9999, -9999, 1.0, 100, 1, 4.2, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [997, 18.8, 0, 9999, -9999, 1.0, 100, 1, 18.8, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [999, 15.6, 0, 9999, -9999, 1.0, 100,\n 1, 15.6, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1000, 49.0, 0, 9999, -\n 9999, 1.0, 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1002, \n 9.9, 0, 9999, -9999, 1.0, 100, 1, 9.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1003, 900.0, 0, 9999, -9999, 1.0, 100, 1, 900.0, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [1007, 23.3, 0, 9999, -9999, 1.0, 100, 1, 23.3,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1008, 49.0, 0, 9999, -9999, 1.0,\n 100, 1, 49.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1010, 750.0, 0, \n 9999, -9999, 1.0, 100, 1, 750.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n [1011, 18.7, 0, 9999, -9999, 1.0, 100, 1, 18.7, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1012, 2835.0, 0, 9999, -9999, 1.0, 100, 1, 2835.0, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1018, 175.9, 0, 9999, -9999, 1.0, \n 100, 1, 175.9, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1023, 0.2, 0, \n 9999, -9999, 1.0, 100, 1, 0.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1026, 655.6, 0, 9999, -9999, 1.0, 100, 1, 655.6, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1027, 17.423964, 0, 9999, -9999, 1.0, 100, 1, 48.3, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1028, 400.0, 0, 9999, -9999, \n 1.0, 100, 1, 400.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1029, 60.0,\n 0, 9999, -9999, 1.0, 100, 1, 60.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1030, 541.076337, 0, 9999, -9999, 1.0, 100, 1, 1018.0, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1031, 1447.199962, 0, 9999, -9999, 1.0, 100, \n 1, 1447.2, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1032, 19.954769, 0, \n 9999, -9999, 1.0, 100, 1, 153.510391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1033, 3.129107, 0, 9999, -9999, 1.0, 100, 1, 50.164506, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1034, 19.480611, 0, 9999, -9999, 1.0, 100,\n 1, 84.262779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1035, 4.869691, 0,\n 9999, -9999, 1.0, 100, 1, 49.886469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1036, 4.299817, 0, 9999, -9999, 1.0, 100, 1, 67.223077, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1037, 26.880386, 0, 9999, -9999, 1.0, 100,\n 1, 94.684044, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1038, 23.191978, \n 0, 9999, -9999, 1.0, 100, 1, 85.798525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1039, 14.50049, 0, 9999, -9999, 1.0, 100, 1, 132.724114, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1040, 4.2e-05, 0, 9999, -9999, 1.0, 100,\n 1, 0.064179, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1041, 23.612723, 0,\n 9999, -9999, 1.0, 100, 1, 204.187624, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1042, 3.793945, 0, 9999, -9999, 1.0, 100, 1, 52.70053, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1044, 13.8333, 0, 9999, -9999, 1.0, 100, 1,\n 36.163532, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1046, 72.936676, 0, \n 9999, -9999, 1.0, 100, 1, 106.787063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1047, 5.880677, 0, 9999, -9999, 1.0, 100, 1, 13.029581, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1048, 38.915865, 0, 9999, -9999, 1.0, 100,\n 1, 71.656883, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1049, 57.66596, 0,\n 9999, -9999, 1.0, 100, 1, 293.755375, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1050, 1.597255, 0, 9999, -9999, 1.0, 100, 1, 52.781606, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1051, 11.031378, 0, 9999, -9999, 1.0, 100,\n 1, 304.42978, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1052, 12.527576, \n 0, 9999, -9999, 1.0, 100, 1, 20.66869, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1053, 10.416727, 0, 9999, -9999, 1.0, 100, 1, 16.368087, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1054, 174.429944, 0, 9999, -9999, 1.0, \n 100, 1, 273.855776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1055, \n 0.246667, 0, 9999, -9999, 1.0, 100, 1, 2.856069, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1056, 64.106126, 0, 9999, -9999, 1.0, 100, 1, \n 603.943953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1057, 55.944221, 0,\n 9999, -9999, 1.0, 100, 1, 426.979979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1058, 144.133643, 0, 9999, -9999, 1.0, 100, 1, 1055.735174, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1059, 53.908755, 0, 9999, -9999, 1.0, \n 100, 1, 414.871332, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1060, \n 0.772854, 0, 9999, -9999, 1.0, 100, 1, 10.351632, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1061, 19.183871, 0, 9999, -9999, 1.0, 100, 1, \n 161.862597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1062, 0.178546, 0, \n 9999, -9999, 1.0, 100, 1, 2.878561, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1063, 0.477696, 0, 9999, -9999, 1.0, 100, 1, 8.670916, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1064, 18.128029, 0, 9999, -9999, 1.0, 100,\n 1, 209.786524, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1065, 26.542682,\n 0, 9999, -9999, 1.0, 100, 1, 339.421643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1066, 6.831872, 0, 9999, -9999, 1.0, 100, 1, 134.399019, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1067, 0.05472, 0, 9999, -9999, 1.0, 100,\n 1, 32.653526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1072, 56.941881, \n 0, 9999, -9999, 1.0, 100, 1, 112.606433, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1073, 48.366549, 0, 9999, -9999, 1.0, 100, 1, 77.81765, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1074, 78.356593, 0, 9999, -9999, 1.0, \n 100, 1, 153.592986, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1075, \n 0.000191, 0, 9999, -9999, 1.0, 100, 1, 15.783448, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1076, 0.000786, 0, 9999, -9999, 1.0, 100, 1, 2.29551, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1077, 0.097611, 0, 9999, -9999,\n 1.0, 100, 1, 26.120041, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1078, \n 8.2e-05, 0, 9999, -9999, 1.0, 100, 1, 34.413246, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1079, 37.099719, 0, 9999, -9999, 1.0, 100, 1, \n 72.327992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1080, 0.010187, 0, \n 9999, -9999, 1.0, 100, 1, 132.149983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1081, 54.303596, 0, 9999, -9999, 1.0, 100, 1, 405.642115, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1082, 43.48081, 0, 9999, -9999, 1.0, \n 100, 1, 510.054159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1083, \n 74.784293, 0, 9999, -9999, 1.0, 100, 1, 633.681488, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1084, 50.75113, 0, 9999, -9999, 1.0, 100, 1, \n 602.719371, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1085, 0.361091, 0, \n 9999, -9999, 1.0, 100, 1, 113.714399, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1086, 2.800656, 0, 9999, -9999, 1.0, 100, 1, 225.59917, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1087, 6.712497, 0, 9999, -9999, 1.0, 100, \n 1, 116.66597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1088, 2.157263, 0,\n 9999, -9999, 1.0, 100, 1, 36.782492, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1089, 28.036581, 0, 9999, -9999, 1.0, 100, 1, 384.449592, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1090, 58.852002, 0, 9999, -9999, 1.0, \n 100, 1, 89.140897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1091, \n 23.028676, 0, 9999, -9999, 1.0, 100, 1, 45.7939, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1092, 28.091666, 0, 9999, -9999, 1.0, 100, 1, \n 54.002032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1093, 43.281148, 0, \n 9999, -9999, 1.0, 100, 1, 155.605298, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1094, 0.352909, 0, 9999, -9999, 1.0, 100, 1, 3.759038, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1095, 0.018276, 0, 9999, -9999, 1.0, 100, \n 1, 0.204951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1096, 14.898008, 0,\n 9999, -9999, 1.0, 100, 1, 84.50612, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1097, 1.60041, 0, 9999, -9999, 1.0, 100, 1, 4.601122, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1098, 32.387374, 0, 9999, -9999, 1.0, 100, 1,\n 71.025499, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1099, 160.073145, 0,\n 9999, -9999, 1.0, 100, 1, 290.937198, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1101, 15.088075, 0, 9999, -9999, 1.0, 100, 1, 83.930665, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1102, 57.90171, 0, 9999, -9999, 1.0, 100, \n 1, 350.979988, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1103, 55.710431,\n 0, 9999, -9999, 1.0, 100, 1, 245.381701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1104, 0.008853, 0, 9999, -9999, 1.0, 100, 1, 0.206918, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1105, 0.199198, 0, 9999, -9999, 1.0, \n 100, 1, 2.178593, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1106, \n 0.062828, 0, 9999, -9999, 1.0, 100, 1, 2.289793, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1107, 0.083469, 0, 9999, -9999, 1.0, 100, 1, 76.221615,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1108, 0.929597, 0, 9999, -9999,\n 1.0, 100, 1, 320.422751, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1109, \n 0.017052, 0, 9999, -9999, 1.0, 100, 1, 0.77821, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1110, 0.097309, 0, 9999, -9999, 1.0, 100, 1, 1.654557,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1111, 0.942973, 0, 9999, -9999,\n 1.0, 100, 1, 89.637993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1112, \n 2.764923, 0, 9999, -9999, 1.0, 100, 1, 69.53429, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1113, 0.134233, 0, 9999, -9999, 1.0, 100, 1, 3.536361,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1114, 0.002635, 0, 9999, -9999,\n 1.0, 100, 1, 13.446889, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1115, \n 2.161287, 0, 9999, -9999, 1.0, 100, 1, 50.575278, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1116, 1.694641, 0, 9999, -9999, 1.0, 100, 1, 32.601142,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1117, 5.543974, 0, 9999, -9999,\n 1.0, 100, 1, 90.792541, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1118, \n 0.234033, 0, 9999, -9999, 1.0, 100, 1, 8.725012, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1119, 2.259795, 0, 9999, -9999, 1.0, 100, 1, 43.254023,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1120, 0.070837, 0, 9999, -9999,\n 1.0, 100, 1, 2.416001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1121, \n 0.008147, 0, 9999, -9999, 1.0, 100, 1, 0.540589, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1122, 0.038948, 0, 9999, -9999, 1.0, 100, 1, 1.462883,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1123, 0.016034, 0, 9999, -9999,\n 1.0, 100, 1, 1.464336, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1124, \n 0.024691, 0, 9999, -9999, 1.0, 100, 1, 1.288283, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1125, 0.032998, 0, 9999, -9999, 1.0, 100, 1, 25.818899,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1126, 0.02868, 0, 9999, -9999, \n 1.0, 100, 1, 29.154893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1127, \n 23.87135, 0, 9999, -9999, 1.0, 100, 1, 105.296621, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1128, 0.214677, 0, 9999, -9999, 1.0, 100, 1, \n 3.06139, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1129, 0.299943, 0, \n 9999, -9999, 1.0, 100, 1, 4.738747, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1130, 0.046998, 0, 9999, -9999, 1.0, 100, 1, 1.025754, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1131, 0.182071, 0, 9999, -9999, 1.0, 100, \n 1, 2.897078, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1132, 0.015187, 0,\n 9999, -9999, 1.0, 100, 1, 0.359497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1133, 0.010845, 0, 9999, -9999, 1.0, 100, 1, 0.719597, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1134, 0.007663, 0, 9999, -9999, 1.0, 100, \n 1, 0.508453, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1135, 0.053952, 0,\n 9999, -9999, 1.0, 100, 1, 8.117819, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1136, 0.008078, 0, 9999, -9999, 1.0, 100, 1, 0.4027, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1137, 0.076215, 0, 9999, -9999, 1.0, 100, 1, \n 3.669012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1138, 0.021206, 0, \n 9999, -9999, 1.0, 100, 1, 1.254278, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1139, 0.775293, 0, 9999, -9999, 1.0, 100, 1, 19.822769, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1140, 0.3744, 0, 9999, -9999, 1.0, 100, 1,\n 28.389457, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1141, 11.90095, 0, \n 9999, -9999, 1.0, 100, 1, 119.46456, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1142, 0.023405, 0, 9999, -9999, 1.0, 100, 1, 1.215733, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1143, 0.032971, 0, 9999, -9999, 1.0, 100, \n 1, 25.239356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1144, 2.024094, 0,\n 9999, -9999, 1.0, 100, 1, 52.527382, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1145, 97.877979, 0, 9999, -9999, 1.0, 100, 1, 175.889627, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1146, 0.01298, 0, 9999, -9999, 1.0, 100,\n 1, 0.861317, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1147, 1.784569, 0,\n 9999, -9999, 1.0, 100, 1, 45.703707, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1148, 2.599234, 0, 9999, -9999, 1.0, 100, 1, 17.645529, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1149, 0.087102, 0, 9999, -9999, 1.0, 100, \n 1, 8.556784, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1150, 0.03472, 0, \n 9999, -9999, 1.0, 100, 1, 3.62256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1151, 1.356647, 0, 9999, -9999, 1.0, 100, 1, 13.036113, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1152, 0.010347, 0, 9999, -9999, 1.0, 100, \n 1, 0.116518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1153, 0.002965, 0,\n 9999, -9999, 1.0, 100, 1, 0.068788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1154, 0.006925, 0, 9999, -9999, 1.0, 100, 1, 0.160625, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1155, 0.061657, 0, 9999, -9999, 1.0, 100, \n 1, 0.609451, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1156, 0.815924, 0,\n 9999, -9999, 1.0, 100, 1, 16.022334, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1157, 0.451926, 0, 9999, -9999, 1.0, 100, 1, 4.354147, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1158, 0.09687, 0, 9999, -9999, 1.0, 100, 1,\n 1.04304, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1159, 0.918197, 0, \n 9999, -9999, 1.0, 100, 1, 13.498087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1160, 40.379171, 0, 9999, -9999, 1.0, 100, 1, 238.377761, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1161, 0.830356, 0, 9999, -9999, 1.0, \n 100, 1, 25.263391, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1162, \n 66.188507, 0, 9999, -9999, 1.0, 100, 1, 502.409178, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1163, 23.282039, 0, 9999, -9999, 1.0, 100, 1, \n 330.03194, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1164, 50.407074, 0, \n 9999, -9999, 1.0, 100, 1, 285.625412, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1165, 6.077626, 0, 9999, -9999, 1.0, 100, 1, 57.188579, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1166, 29.976935, 0, 9999, -9999, 1.0, 100,\n 1, 83.277163, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1167, 0.474583, 0,\n 9999, -9999, 1.0, 100, 1, 5.05378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1168, 0.181653, 0, 9999, -9999, 1.0, 100, 1, 1.345774, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1169, 0.365373, 0, 9999, -9999, 1.0, 100, 1, \n 2.721845, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1170, 0.024039, 0, \n 9999, -9999, 1.0, 100, 1, 0.26599, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1171, 0.001092, 0, 9999, -9999, 1.0, 100, 1, 9.029885, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1172, 1.1e-05, 0, 9999, -9999, 1.0, 100, 1, \n 3.584043, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1173, 38.981054, 0, \n 9999, -9999, 1.0, 100, 1, 254.253327, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1174, 0.118079, 0, 9999, -9999, 1.0, 100, 1, 1.260082, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1175, 0.14491, 0, 9999, -9999, 1.0, 100, 1,\n 0.855454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1176, 0.023255, 0, \n 9999, -9999, 1.0, 100, 1, 0.23222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1177, 5.466114, 0, 9999, -9999, 1.0, 100, 1, 27.87401, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1178, 0.003165, 0, 9999, -9999, 1.0, 100, 1, \n 3.167999, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1179, 0.016234, 0, \n 9999, -9999, 1.0, 100, 1, 1.306293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1180, 0.062899, 0, 9999, -9999, 1.0, 100, 1, 0.688545, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1181, 39.165189, 0, 9999, -9999, 1.0, 100,\n 1, 85.739557, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1182, 41.434861, \n 0, 9999, -9999, 1.0, 100, 1, 99.319579, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1183, 0.366281, 0, 9999, -9999, 1.0, 100, 1, 38.222575, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1184, 0.024619, 0, 9999, -9999, 1.0, \n 100, 1, 4.219005, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1185, \n 0.447602, 0, 9999, -9999, 1.0, 100, 1, 11.343971, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1186, 5.094381, 0, 9999, -9999, 1.0, 100, 1, 38.916368,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1187, 0.563103, 0, 9999, -9999,\n 1.0, 100, 1, 9.814574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1188, \n 59.763182, 0, 9999, -9999, 1.0, 100, 1, 179.712741, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1189, 1.278207, 0, 9999, -9999, 1.0, 100, 1, \n 20.261805, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1190, 0.002213, 0, \n 9999, -9999, 1.0, 100, 1, 220.533673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1191, 0.020667, 0, 9999, -9999, 1.0, 100, 1, 73.079413, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1192, 0.010017, 0, 9999, -9999, 1.0, 100, \n 1, 21.454569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1196, 41.259427, \n 0, 9999, -9999, 1.0, 100, 1, 160.697956, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1197, 18.45384, 0, 9999, -9999, 1.0, 100, 1, 90.592266, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1198, 7.224154, 0, 9999, -9999, 1.0, \n 100, 1, 39.819157, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1199, \n 108.710102, 0, 9999, -9999, 1.0, 100, 1, 201.421956, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1200, 35.155318, 0, 9999, -9999, 1.0, 100, 1, \n 56.012408, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1204, 2.529712, 0, \n 9999, -9999, 1.0, 100, 1, 47.541821, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1206, 0.001726, 0, 9999, -9999, 1.0, 100, 1, 3.806894, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1208, 5.6e-05, 0, 9999, -9999, 1.0, 100, 1,\n 2.242031, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1211, 0.002064, 0, \n 9999, -9999, 1.0, 100, 1, 18.005229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1212, 0.011502, 0, 9999, -9999, 1.0, 100, 1, 91.171888, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1213, 0.559444, 0, 9999, -9999, 1.0, 100, \n 1, 57.342704, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1214, 0.041549, 0,\n 9999, -9999, 1.0, 100, 1, 4.505907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1215, 0.053634, 0, 9999, -9999, 1.0, 100, 1, 2.252965, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1216, 0.987413, 0, 9999, -9999, 1.0, 100, \n 1, 67.754469, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1217, 0.010372, 0,\n 9999, -9999, 1.0, 100, 1, 35.871617, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1218, 0.003173, 0, 9999, -9999, 1.0, 100, 1, 0.980482, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1219, 0.011997, 0, 9999, -9999, 1.0, 100, \n 1, 12.33953, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1220, 0.026069, 0,\n 9999, -9999, 1.0, 100, 1, 30.597849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1221, 0.010668, 0, 9999, -9999, 1.0, 100, 1, 593.230436, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1222, 0.547299, 0, 9999, -9999, 1.0, 100, \n 1, 211.057769, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1224, 0.008468, \n 0, 9999, -9999, 1.0, 100, 1, 160.523778, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1225, 2.959306, 0, 9999, -9999, 1.0, 100, 1, 34.931481, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1226, 0.253386, 0, 9999, -9999, 1.0, \n 100, 1, 3.982858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1227, 8.6e-05,\n 0, 9999, -9999, 1.0, 100, 1, 17.482807, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1229, 15.085958, 0, 9999, -9999, 1.0, 100, 1, 51.244222, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1230, 0.00365, 0, 9999, -9999, 1.0, 100,\n 1, 1.681276, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1231, 1.568908, 0,\n 9999, -9999, 1.0, 100, 1, 33.55478, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1232, 4.252196, 0, 9999, -9999, 1.0, 100, 1, 75.075088, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1233, 431.19357, 0, 9999, -9999, 1.0, 100,\n 1, 575.36828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1235, 8.832647, 0,\n 9999, -9999, 1.0, 100, 1, 9.03734, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1236, 78.888354, 0, 9999, -9999, 1.0, 100, 1, 82.225035, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1237, 0.003793, 0, 9999, -9999, 1.0, 100, \n 1, 14.605409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1238, 0.054076, 0,\n 9999, -9999, 1.0, 100, 1, 188.691049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1239, 1.374488, 0, 9999, -9999, 1.0, 100, 1, 2.267706, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1240, 33.728843, 0, 9999, -9999, 1.0, 100,\n 1, 339.51051, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1241, 22.327877, \n 0, 9999, -9999, 1.0, 100, 1, 385.361595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1242, 1.67781, 0, 9999, -9999, 1.0, 100, 1, 27.074038, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1243, 4.308538, 0, 9999, -9999, 1.0, \n 100, 1, 83.079842, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1244, \n 185.95165, 0, 9999, -9999, 1.0, 100, 1, 323.472536, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1245, 0.397575, 0, 9999, -9999, 1.0, 100, 1, \n 8.080896, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1246, 31.095104, 0, \n 9999, -9999, 1.0, 100, 1, 57.127825, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1247, 0.025951, 0, 9999, -9999, 1.0, 100, 1, 21.833396, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1248, 27.41699, 0, 9999, -9999, 1.0, 100, \n 1, 91.958275, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1249, 3.859809, 0,\n 9999, -9999, 1.0, 100, 1, 76.135177, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1250, 1.716488, 0, 9999, -9999, 1.0, 100, 1, 30.830519, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1251, 0.655346, 0, 9999, -9999, 1.0, 100, \n 1, 23.404345, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1252, 0.453551, 0,\n 9999, -9999, 1.0, 100, 1, 14.887727, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1253, 7.083955, 0, 9999, -9999, 1.0, 100, 1, 64.502694, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1254, 24.436675, 0, 9999, -9999, 1.0, 100,\n 1, 82.278695, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1255, 0.276671, 0,\n 9999, -9999, 1.0, 100, 1, 3.818419, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1256, 1.144138, 0, 9999, -9999, 1.0, 100, 1, 15.091842, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1257, 7.200274, 0, 9999, -9999, 1.0, 100, \n 1, 88.95288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1258, 106.387425, \n 0, 9999, -9999, 1.0, 100, 1, 235.487329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1259, 9.894629, 0, 9999, -9999, 1.0, 100, 1, 109.288719, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1260, 0.998465, 0, 9999, -9999, 1.0, \n 100, 1, 20.168717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1261, \n 0.801997, 0, 9999, -9999, 1.0, 100, 1, 201.699555, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1264, 0.001383, 0, 9999, -9999, 1.0, 100, 1, \n 82.035361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1266, 0.060644, 0, \n 9999, -9999, 1.0, 100, 1, 119.710849, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1267, 2.856463, 0, 9999, -9999, 1.0, 100, 1, 39.469006, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1268, 0.001116, 0, 9999, -9999, 1.0, 100, \n 1, 3.4295, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1269, 0.001153, 0, \n 9999, -9999, 1.0, 100, 1, 5.105829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1270, 0.189973, 0, 9999, -9999, 1.0, 100, 1, 38.950511, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1274, 2.839792, 0, 9999, -9999, 1.0, 100, \n 1, 53.095629, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1275, 5.533737, 0,\n 9999, -9999, 1.0, 100, 1, 99.0753, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1276, 1.544906, 0, 9999, -9999, 1.0, 100, 1, 25.655641, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1277, 2.311616, 0, 9999, -9999, 1.0, 100, \n 1, 65.611252, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1278, 5.308314, 0,\n 9999, -9999, 1.0, 100, 1, 170.437781, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1280, 2.3e-05, 0, 9999, -9999, 1.0, 100, 1, 0.626494, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1281, 0.000408, 0, 9999, -9999, 1.0, 100, 1, \n 2.51246, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1282, 0.00666, 0, 9999,\n -9999, 1.0, 100, 1, 4.363037, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1283, 1252.590484, 0, 9999, -9999, 1.0, 100, 1, 1297.764428, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1285, 0.000251, 0, 9999, -9999, 1.0, 100, \n 1, 2.937048, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1286, 0.002555, 0,\n 9999, -9999, 1.0, 100, 1, 17.872201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1287, 9.801286, 0, 9999, -9999, 1.0, 100, 1, 93.199628, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1288, 10.578682, 0, 9999, -9999, 1.0, 100,\n 1, 148.402692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1289, 13.524567,\n 0, 9999, -9999, 1.0, 100, 1, 184.149235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1290, 0.004073, 0, 9999, -9999, 1.0, 100, 1, 4.901974, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1291, 4.36402, 0, 9999, -9999, 1.0, 100,\n 1, 98.293351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1292, 1.11343, 0,\n 9999, -9999, 1.0, 100, 1, 41.682074, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1293, 0.234865, 0, 9999, -9999, 1.0, 100, 1, 2.402107, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1294, 0.353955, 0, 9999, -9999, 1.0, 100, \n 1, 5.39743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1295, 0.406226, 0, \n 9999, -9999, 1.0, 100, 1, 5.873666, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1296, 0.202818, 0, 9999, -9999, 1.0, 100, 1, 27.356489, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1297, 0.047602, 0, 9999, -9999, 1.0, 100, \n 1, 177.778742, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1298, 0.092273, \n 0, 9999, -9999, 1.0, 100, 1, 4.014603, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1299, 0.001945, 0, 9999, -9999, 1.0, 100, 1, 2.158207, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1300, 0.891282, 0, 9999, -9999, 1.0, \n 100, 1, 23.74405, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1301, \n 2.089531, 0, 9999, -9999, 1.0, 100, 1, 60.863304, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1302, 0.025405, 0, 9999, -9999, 1.0, 100, 1, 4.877299,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1303, 0.00067, 0, 9999, -9999, \n 1.0, 100, 1, 4.335516, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1306, \n 0.019645, 0, 9999, -9999, 1.0, 100, 1, 1.827014, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1307, 0.004553, 0, 9999, -9999, 1.0, 100, 1, 0.29894, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1308, 0.326549, 0, 9999, -9999,\n 1.0, 100, 1, 3.278321, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1312, \n 180.400447, 0, 9999, -9999, 1.0, 100, 1, 262.264924, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1316, 0.004615, 0, 9999, -9999, 1.0, 100, 1, \n 2.757497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1317, 3.635417, 0, \n 9999, -9999, 1.0, 100, 1, 23.958574, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1319, 2.674937, 0, 9999, -9999, 1.0, 100, 1, 17.708276, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1323, 34.395359, 0, 9999, -9999, 1.0, 100,\n 1, 199.111909, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1326, 3.582741, \n 0, 9999, -9999, 1.0, 100, 1, 56.928865, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1327, 4.899518, 0, 9999, -9999, 1.0, 100, 1, 50.796895, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1328, 2.229815, 0, 9999, -9999, 1.0, \n 100, 1, 16.063343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1329, \n 0.008374, 0, 9999, -9999, 1.0, 100, 1, 218.675424, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1331, 0.012219, 0, 9999, -9999, 1.0, 100, 1, \n 0.289238, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1333, 0.001835, 0, \n 9999, -9999, 1.0, 100, 1, 45.650254, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1336, 0.160536, 0, 9999, -9999, 1.0, 100, 1, 29.773035, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1337, 82.782728, 0, 9999, -9999, 1.0, 100,\n 1, 121.31241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1339, 0.840885, 0,\n 9999, -9999, 1.0, 100, 1, 10.086482, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1340, 43.483815, 0, 9999, -9999, 1.0, 100, 1, 70.098327, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1345, 0.000819, 0, 9999, -9999, 1.0, 100, \n 1, 3.971188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1346, 0.221371, 0,\n 9999, -9999, 1.0, 100, 1, 214.719215, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1348, 10.200017, 0, 9999, -9999, 1.0, 100, 1, 22.707927, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1349, 25.154866, 0, 9999, -9999, 1.0, 100,\n 1, 42.352342, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1356, 5.548377, 0,\n 9999, -9999, 1.0, 100, 1, 73.486231, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1357, 3.70864, 0, 9999, -9999, 1.0, 100, 1, 56.459913, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1359, 4.208776, 0, 9999, -9999, 1.0, 100, \n 1, 70.633589, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1360, 0.979577, 0,\n 9999, -9999, 1.0, 100, 1, 17.135983, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1361, 6.501126, 0, 9999, -9999, 1.0, 100, 1, 63.207173, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1362, 4.957372, 0, 9999, -9999, 1.0, 100, \n 1, 79.107216, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1366, 0.081799, 0,\n 9999, -9999, 1.0, 100, 1, 1.229992, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1367, 0.006591, 0, 9999, -9999, 1.0, 100, 1, 43.863891, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1372, 9.467249, 0, 9999, -9999, 1.0, 100, \n 1, 192.966588, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1373, 1.246446, \n 0, 9999, -9999, 1.0, 100, 1, 35.200257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1374, 64.772368, 0, 9999, -9999, 1.0, 100, 1, 108.220146, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1375, 35.736757, 0, 9999, -9999, 1.0,\n 100, 1, 61.223816, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1376, \n 47.961861, 0, 9999, -9999, 1.0, 100, 1, 176.213655, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1377, 39.370796, 0, 9999, -9999, 1.0, 100, 1, \n 234.376272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1378, 40.132816, 0,\n 9999, -9999, 1.0, 100, 1, 246.029906, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1379, 0.004792, 0, 9999, -9999, 1.0, 100, 1, 0.805984, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1380, 0.05126, 0, 9999, -9999, 1.0, 100, 1,\n 1.213356, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1381, 0.00688, 0, \n 9999, -9999, 1.0, 100, 1, 1.01257, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1382, 5.823912, 0, 9999, -9999, 1.0, 100, 1, 138.839906, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1383, 5.531482, 0, 9999, -9999, 1.0, 100, \n 1, 109.821439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1384, 0.184231, \n 0, 9999, -9999, 1.0, 100, 1, 4.669135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1385, 0.005411, 0, 9999, -9999, 1.0, 100, 1, 0.124455, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1386, 0.061764, 0, 9999, -9999, 1.0, \n 100, 1, 0.673858, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1387, \n 0.221128, 0, 9999, -9999, 1.0, 100, 1, 3.493561, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1388, 0.039213, 0, 9999, -9999, 1.0, 100, 1, 0.928188,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1389, 0.009021, 0, 9999, -9999,\n 1.0, 100, 1, 0.213536, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1390, \n 0.236272, 0, 9999, -9999, 1.0, 100, 1, 3.732816, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1391, 0.016171, 0, 9999, -9999, 1.0, 100, 1, 0.521719,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1392, 1.991917, 0, 9999, -9999,\n 1.0, 100, 1, 19.306386, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1393, \n 0.014163, 0, 9999, -9999, 1.0, 100, 1, 1.376509, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1394, 0.01204, 0, 9999, -9999, 1.0, 100, 1, 1.077886, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1395, 0.001242, 0, 9999, -9999,\n 1.0, 100, 1, 0.073776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1396, \n 0.000121, 0, 9999, -9999, 1.0, 100, 1, 0.026112, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1397, 3.950556, 0, 9999, -9999, 1.0, 100, 1, 25.084545,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1398, 0.455311, 0, 9999, -9999,\n 1.0, 100, 1, 2.779641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1399, \n 0.230871, 0, 9999, -9999, 1.0, 100, 1, 17.868157, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1400, 0.013267, 0, 9999, -9999, 1.0, 100, 1, 1.297197,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1401, 7.058214, 0, 9999, -9999,\n 1.0, 100, 1, 89.339497, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1402, \n 1.904282, 0, 9999, -9999, 1.0, 100, 1, 26.328902, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1403, 38.271193, 0, 9999, -9999, 1.0, 100, 1, \n 119.651672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1404, 50.959023, 0,\n 9999, -9999, 1.0, 100, 1, 134.800518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1405, 3.361271, 0, 9999, -9999, 1.0, 100, 1, 29.550802, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1406, 1.997189, 0, 9999, -9999, 1.0, 100, \n 1, 10.763987, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1407, 0.000246, 0,\n 9999, -9999, 1.0, 100, 1, 0.211614, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1408, 2.586711, 0, 9999, -9999, 1.0, 100, 1, 41.078698, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1409, 0.613156, 0, 9999, -9999, 1.0, 100, \n 1, 12.019786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1410, 2.053367, 0,\n 9999, -9999, 1.0, 100, 1, 37.466518, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1411, 2.739087, 0, 9999, -9999, 1.0, 100, 1, 39.395367, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1418, 2.811146, 0, 9999, -9999, 1.0, 100, \n 1, 88.264613, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1419, 0.681075, 0,\n 9999, -9999, 1.0, 100, 1, 33.260903, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1421, 0.136505, 0, 9999, -9999, 0.999501, 100, 1, 6.972369, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1422, 0.060115, 0, 9999, -9999, 1.0, \n 100, 1, 4.730495, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1423, \n 0.035944, 0, 9999, -9999, 1.0, 100, 1, 1.931017, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1424, 199.390672, 0, 9999, -9999, 1.0, 100, 1, \n 219.092115, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1425, 6.136022, 0, \n 9999, -9999, 1.0, 100, 1, 21.366402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1426, 6.317865, 0, 9999, -9999, 1.0, 100, 1, 68.762602, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1427, 49.781026, 0, 9999, -9999, 1.0, 100,\n 1, 480.698671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1428, 17.413111,\n 0, 9999, -9999, 1.0, 100, 1, 334.885743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1429, 0.061141, 0, 9999, -9999, 1.0, 100, 1, 13.279826, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1431, 38.616412, 0, 9999, -9999, 1.0, \n 100, 1, 227.662022, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1432, \n 4.973921, 0, 9999, -9999, 1.0, 100, 1, 12.058931, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1433, 1089.413862, 0, 9999, -9999, 1.0, 100, 1, \n 1289.241188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1434, 67.518983, 0,\n 9999, -9999, 1.0, 100, 1, 99.440014, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1435, 56.476643, 0, 9999, -9999, 1.0, 100, 1, 86.713217, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1436, 44.706158, 0, 9999, -9999, 1.0, 100,\n 1, 98.434116, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1437, 7.376327, 0,\n 9999, -9999, 1.0, 100, 1, 238.321958, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1438, 43.862961, 0, 9999, -9999, 1.0, 100, 1, 392.815158, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1439, 15.508688, 0, 9999, -9999, 1.0, \n 100, 1, 99.103164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1440, \n 0.051597, 0, 9999, -9999, 1.0, 100, 1, 0.833609, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1443, 54.057868, 0, 9999, -9999, 1.0, 100, 1, \n 103.005076, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1444, 0.105424, 0, \n 9999, -9999, 1.0, 100, 1, 8.981696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1445, 0.001279, 0, 9999, -9999, 1.0, 100, 1, 25.036799, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1446, 56.433762, 0, 9999, -9999, 1.0, 100,\n 1, 758.547933, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1447, 2.407264, \n 0, 9999, -9999, 1.0, 100, 1, 89.477411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1448, 2.596473, 0, 9999, -9999, 1.0, 100, 1, 7.523578, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1449, 17.481136, 0, 9999, -9999, 1.0, \n 100, 1, 95.437673, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1450, \n 18.640816, 0, 9999, -9999, 1.0, 100, 1, 59.256809, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1451, 24.410815, 0, 9999, -9999, 1.0, 100, 1, \n 68.198838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1452, 7.964401, 0, \n 9999, -9999, 1.0, 100, 1, 24.068921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1453, 3.6e-05, 0, 9999, -9999, 1.0, 100, 1, 64.93775, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1454, 3.474548, 0, 9999, -9999, 1.0, 100, 1, \n 155.126607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1455, 0.066223, 0, \n 9999, -9999, 1.0, 100, 1, 0.654438, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1456, 10.274464, 0, 9999, -9999, 1.0, 100, 1, 50.054822, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1457, 0.084606, 0, 9999, -9999, 1.0, 100, \n 1, 2.002672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1458, 0.010401, 0,\n 9999, -9999, 1.0, 100, 1, 0.246199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1459, 0.05427, 0, 9999, -9999, 1.0, 100, 1, 5.309059, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1460, 2.913168, 0, 9999, -9999, 1.0, 100, 1, \n 101.498473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1461, 0.699753, 0, \n 9999, -9999, 1.0, 100, 1, 17.951737, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1462, 0.094803, 0, 9999, -9999, 1.0, 100, 1, 2.402686, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1463, 0.010915, 0, 9999, -9999, 1.0, 100, \n 1, 0.711207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1464, 0.031454, 0,\n 9999, -9999, 1.0, 100, 1, 218.884211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1465, 0.424428, 0, 9999, -9999, 1.0, 100, 1, 5.299939, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1466, 0.59163, 0, 9999, -9999, 1.0, 100, 1,\n 5.685017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1467, 0.072582, 0, \n 9999, -9999, 1.0, 100, 1, 2.096155, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1468, 0.636875, 0, 9999, -9999, 1.0, 100, 1, 23.789171, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1469, 2.093967, 0, 9999, -9999, 1.0, 100, \n 1, 65.007467, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1470, 41.82331, 0,\n 9999, -9999, 1.0, 100, 1, 78.965265, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1471, 102.428898, 0, 9999, -9999, 1.0, 100, 1, 159.165074, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1472, 0.019952, 0, 9999, -9999, 1.0, \n 100, 1, 11.980182, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1473, \n 0.789352, 0, 9999, -9999, 1.0, 100, 1, 8.362608, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1474, 0.157832, 0, 9999, -9999, 1.0, 100, 1, 1.398948,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1475, 0.066213, 0, 9999, -9999,\n 1.0, 100, 1, 0.39088, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1476, \n 93.472233, 0, 9999, -9999, 1.0, 100, 1, 250.480113, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1477, 0.934008, 0, 9999, -9999, 1.0, 100, 1, \n 12.122974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1483, 0.044734, 0, \n 9999, -9999, 1.0, 100, 1, 3.599649, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1484, 2.9e-05, 0, 9999, -9999, 1.0, 100, 1, 0.02991, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1485, 0.000548, 0, 9999, -9999, 1.0, 100, 1, \n 0.563547, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1486, 0.002819, 0, \n 9999, -9999, 1.0, 100, 1, 2.89934, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1489, 0.001792, 0, 9999, -9999, 1.0, 100, 1, 0.118938, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1490, 665.084522, 0, 9999, -9999, 1.0, 100, 1,\n 782.463701, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1491, 4.025558, 0, \n 9999, -9999, 1.0, 100, 1, 84.622838, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1492, 13.534107, 0, 9999, -9999, 1.0, 100, 1, 229.927503, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1493, 5.622106, 0, 9999, -9999, 1.0, \n 100, 1, 83.557175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1494, \n 44.133257, 0, 9999, -9999, 1.0, 100, 1, 404.486733, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1495, 1.415799, 0, 9999, -9999, 1.0, 100, 1, \n 66.920717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1497, 0.01221, 0, \n 9999, -9999, 1.0, 100, 1, 89.070006, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1498, 0.030098, 0, 9999, -9999, 1.0, 100, 1, 105.800802, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1501, 0.003361, 0, 9999, -9999, 1.0, 100, \n 1, 8.165333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1503, 0.004148, 0,\n 9999, -9999, 1.0, 100, 1, 45.972187, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1504, 2.344345, 0, 9999, -9999, 1.0, 100, 1, 188.822836, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1505, 0.000546, 0, 9999, -9999, 1.0, 100, \n 1, 26.765913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1506, 2.043094, 0,\n 9999, -9999, 1.0, 100, 1, 56.406717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1507, 0.470049, 0, 9999, -9999, 1.0, 100, 1, 15.438042, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1510, 0.005458, 0, 9999, -9999, 1.0, 100, \n 1, 107.008141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1511, 0.024657, \n 0, 9999, -9999, 1.0, 100, 1, 155.22192, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1512, 0.002029, 0, 9999, -9999, 1.0, 100, 1, 64.130052, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1513, 0.030915, 0, 9999, -9999, 1.0, \n 100, 1, 23.051786, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1518, \n 0.003913, 0, 9999, -9999, 1.0, 100, 1, 0.670542, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1519, 0.000272, 0, 9999, -9999, 1.0, 100, 1, 0.04654, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1520, 3.854694, 0, 9999, -9999,\n 1.0, 100, 1, 79.674256, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1521, \n 1.791884, 0, 9999, -9999, 1.0, 100, 1, 31.179116, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1522, 2.040292, 0, 9999, -9999, 1.0, 100, 1, 40.212666,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1523, 0.949567, 0, 9999, -9999,\n 1.0, 100, 1, 20.304521, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1524, \n 1.937981, 0, 9999, -9999, 1.0, 100, 1, 26.159251, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1525, 3.816298, 0, 9999, -9999, 1.0, 100, 1, 68.425403,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1526, 2.354602, 0, 9999, -9999,\n 1.0, 100, 1, 44.478558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1527, \n 9.919309, 0, 9999, -9999, 1.0, 100, 1, 103.998682, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1528, 21.619077, 0, 9999, -9999, 1.0, 100, 1, \n 41.386726, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1529, 8.704895, 0, \n 9999, -9999, 1.0, 100, 1, 84.378012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1530, 2.692923, 0, 9999, -9999, 1.0, 100, 1, 79.055155, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1531, 104.653862, 0, 9999, -9999, 1.0, 100,\n 1, 183.821409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1532, 2.125498, \n 0, 9999, -9999, 1.0, 100, 1, 37.379033, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1534, 1.420342, 0, 9999, -9999, 1.0, 100, 1, 29.516607, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1535, 0.603212, 0, 9999, -9999, 1.0, \n 100, 1, 8.931779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1536, \n 2.335948, 0, 9999, -9999, 1.0, 100, 1, 39.26145, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1537, 4.551805, 0, 9999, -9999, 1.0, 100, 1, 99.740166,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1538, 51.465034, 0, 9999, -9999,\n 1.0, 100, 1, 130.774402, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1539, \n 102.043652, 0, 9999, -9999, 1.0, 100, 1, 201.766963, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1540, 1.754708, 0, 9999, -9999, 1.0, 100, 1, \n 4.160189, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1541, 1.271256, 0, \n 9999, -9999, 1.0, 100, 1, 3.429917, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1542, 22.605282, 0, 9999, -9999, 1.0, 100, 1, 50.287947, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1543, 0.565086, 0, 9999, -9999, 1.0, 100, \n 1, 14.788669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1544, 23.693358, \n 0, 9999, -9999, 1.0, 100, 1, 121.437126, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1545, 81.994741, 0, 9999, -9999, 1.0, 100, 1, 185.545128, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1546, 82.218967, 0, 9999, -9999, 1.0,\n 100, 1, 255.44343, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1547, \n 67.614723, 0, 9999, -9999, 1.0, 100, 1, 362.597919, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1548, 0.721249, 0, 9999, -9999, 1.0, 100, 1, \n 21.273779, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1549, 3.298956, 0, \n 9999, -9999, 1.0, 100, 1, 77.017486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1550, 0.163234, 0, 9999, -9999, 1.0, 100, 1, 5.214715, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1551, 0.304981, 0, 9999, -9999, 1.0, 100, \n 1, 9.576491, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1552, 19.070388, 0,\n 9999, -9999, 1.0, 100, 1, 54.035471, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1553, 40.759532, 0, 9999, -9999, 1.0, 100, 1, 92.480282, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1554, 44.242819, 0, 9999, -9999, 1.0, 100,\n 1, 155.333413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1555, 60.12844, \n 0, 9999, -9999, 1.0, 100, 1, 103.865774, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1556, 12.322818, 0, 9999, -9999, 1.0, 100, 1, 40.376346, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1557, 8.46835, 0, 9999, -9999, 1.0, 100,\n 1, 25.990242, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1558, 2.509741, 0,\n 9999, -9999, 1.0, 100, 1, 24.622373, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1559, 36.528878, 0, 9999, -9999, 1.0, 100, 1, 112.609207, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1560, 22.366278, 0, 9999, -9999, 1.0, \n 100, 1, 86.395942, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1561, \n 6.93291, 0, 9999, -9999, 1.0, 100, 1, 19.127379, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1562, 4.09189, 0, 9999, -9999, 1.0, 100, 1, 61.888351,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1563, 35.327707, 0, 9999, -9999,\n 1.0, 100, 1, 106.233907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1564, \n 30.749499, 0, 9999, -9999, 1.0, 100, 1, 58.27282, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1565, 5.51138, 0, 9999, -9999, 1.0, 100, 1, 12.83938, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1566, 119.367748, 0, 9999, -\n 9999, 1.0, 100, 1, 358.676351, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1567, 1.980328, 0, 9999, -9999, 1.0, 100, 1, 29.531771, 0.0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0], [1568, 7.382762, 0, 9999, -9999, 1.0, 100, 1, \n 89.300597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1569, 142.565953, 0,\n 9999, -9999, 1.0, 100, 1, 328.718571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1570, 120.200317, 0, 9999, -9999, 1.0, 100, 1, 243.241909, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1571, 56.898408, 0, 9999, -9999, 1.0, \n 100, 1, 203.443403, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1572, \n 115.686694, 0, 9999, -9999, 1.0, 100, 1, 232.127956, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1573, 37.277333, 0, 9999, -9999, 1.0, 100, 1, \n 80.403772, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1574, 51.959213, 0, \n 9999, -9999, 1.0, 100, 1, 144.715972, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1575, 60.442501, 0, 9999, -9999, 1.0, 100, 1, 153.606376, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1576, 14.073028, 0, 9999, -9999, 1.0, \n 100, 1, 34.262017, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1577, \n 17.686192, 0, 9999, -9999, 1.0, 100, 1, 217.054488, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1578, 6.361027, 0, 9999, -9999, 1.0, 100, 1, \n 16.348222, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1579, 1.796998, 0, \n 9999, -9999, 1.0, 100, 1, 35.164333, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1580, 0.969771, 0, 9999, -9999, 1.0, 100, 1, 21.892492, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1581, 76.770758, 0, 9999, -9999, 1.0, 100,\n 1, 156.277964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1582, 4.627554, \n 0, 9999, -9999, 1.0, 100, 1, 8.151092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1583, 1.013582, 0, 9999, -9999, 1.0, 100, 1, 1.791968, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1584, 32.201187, 0, 9999, -9999, 1.0, \n 100, 1, 81.24993, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1585, \n 1.813983, 0, 9999, -9999, 1.0, 100, 1, 3.685182, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1586, 32.269635, 0, 9999, -9999, 1.0, 100, 1, 61.31549,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1587, 98.037204, 0, 9999, -9999,\n 1.0, 100, 1, 191.635296, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1588, \n 23.404473, 0, 9999, -9999, 1.0, 100, 1, 59.424343, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1589, 9.649174, 0, 9999, -9999, 1.0, 100, 1, \n 48.538268, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1590, 34.170018, 0, \n 9999, -9999, 1.0, 100, 1, 119.077525, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1591, 31.925348, 0, 9999, -9999, 1.0, 100, 1, 142.8447, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1592, 5.561961, 0, 9999, -9999, 1.0, 100, \n 1, 9.842361, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1593, 4.064612, 0,\n 9999, -9999, 1.0, 100, 1, 7.183183, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1594, 5.400375, 0, 9999, -9999, 1.0, 100, 1, 9.56089, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1595, 28.62726, 0, 9999, -9999, 1.0, 100, 1, \n 54.79001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1596, 57.027743, 0, \n 9999, -9999, 1.0, 100, 1, 138.730049, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1597, 1.60468, 0, 9999, -9999, 1.0, 100, 1, 2.858987, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1598, 2.718822, 0, 9999, -9999, 1.0, 100, 1, \n 4.795494, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1599, 29.569389, 0, \n 9999, -9999, 1.0, 100, 1, 86.703571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1600, 14.712936, 0, 9999, -9999, 1.0, 100, 1, 25.356501, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1601, 4.138944, 0, 9999, -9999, 1.0, 100, \n 1, 7.643653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1602, 22.706117, 0,\n 9999, -9999, 1.0, 100, 1, 45.658169, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1603, 15.382223, 0, 9999, -9999, 1.0, 100, 1, 26.209248, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1604, 9.688412, 0, 9999, -9999, 1.0, 100, \n 1, 16.363032, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1605, 25.823012, \n 0, 9999, -9999, 1.0, 100, 1, 43.477178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1606, 22.584798, 0, 9999, -9999, 1.0, 100, 1, 42.024907, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1607, 11.485301, 0, 9999, -9999, 1.0, \n 100, 1, 19.395236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1608, \n 10.729219, 0, 9999, -9999, 1.0, 100, 1, 19.491249, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1609, 3.210834, 0, 9999, -9999, 1.0, 100, 1, \n 6.052272, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1610, 10.193242, 0, \n 9999, -9999, 1.0, 100, 1, 18.571656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1611, 3.490222, 0, 9999, -9999, 1.0, 100, 1, 6.420554, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1612, 5.75046, 0, 9999, -9999, 1.0, 100, 1,\n 10.811203, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1613, 15.275647, 0, \n 9999, -9999, 1.0, 100, 1, 27.976217, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1614, 15.393881, 0, 9999, -9999, 1.0, 100, 1, 28.183827, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1615, 93.892032, 0, 9999, -9999, 1.0, 100,\n 1, 193.234776, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1616, 3.890387, \n 0, 9999, -9999, 1.0, 100, 1, 6.865586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1617, 6.026296, 0, 9999, -9999, 1.0, 100, 1, 10.63107, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1618, 2.790265, 0, 9999, -9999, 1.0, \n 100, 1, 4.920368, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1619, \n 3.792149, 0, 9999, -9999, 1.0, 100, 1, 6.689637, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1620, 1.084317, 0, 9999, -9999, 1.0, 100, 1, 1.912024,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1621, 4.274053, 0, 9999, -9999,\n 1.0, 100, 1, 8.056388, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1622, \n 3.020597, 0, 9999, -9999, 1.0, 100, 1, 5.693597, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1623, 11.470276, 0, 9999, -9999, 1.0, 100, 1, \n 20.717111, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1624, 4.922505, 0, \n 9999, -9999, 1.0, 100, 1, 8.938454, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1625, 33.876307, 0, 9999, -9999, 1.0, 100, 1, 65.182465, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1626, 6.446651, 0, 9999, -9999, 1.0, 100, \n 1, 11.878862, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1627, 5.757286, 0,\n 9999, -9999, 1.0, 100, 1, 10.196496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1628, 31.895799, 0, 9999, -9999, 1.0, 100, 1, 66.613993, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1629, 67.295304, 0, 9999, -9999, 1.0, 100,\n 1, 121.671047, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1630, 6.71729, 0,\n 9999, -9999, 1.0, 100, 1, 12.452584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1631, 17.355646, 0, 9999, -9999, 1.0, 100, 1, 32.486249, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1632, 15.125213, 0, 9999, -9999, 1.0, 100,\n 1, 25.874893, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1633, 32.799309, \n 0, 9999, -9999, 1.0, 100, 1, 67.433329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1634, 5.115801, 0, 9999, -9999, 1.0, 100, 1, 9.643044, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1635, 11.160851, 0, 9999, -9999, 1.0, \n 100, 1, 19.166135, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1636, \n 13.536604, 0, 9999, -9999, 1.0, 100, 1, 25.181406, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1637, 16.298847, 0, 9999, -9999, 1.0, 100, 1, \n 29.114828, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1638, 6.806951, 0, \n 9999, -9999, 1.0, 100, 1, 12.162188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1639, 16.506856, 0, 9999, -9999, 1.0, 100, 1, 29.183593, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1640, 1.264443, 0, 9999, -9999, 1.0, 100, \n 1, 2.237652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1641, 2.838477, 0,\n 9999, -9999, 1.0, 100, 1, 5.023705, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1642, 6.627996, 0, 9999, -9999, 1.0, 100, 1, 11.730623, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1643, 1.931834, 0, 9999, -9999, 1.0, 100, \n 1, 3.417684, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1644, 6.735558, 0,\n 9999, -9999, 1.0, 100, 1, 11.76596, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1645, 6.302909, 0, 9999, -9999, 1.0, 100, 1, 11.144882, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1646, 2.11504, 0, 9999, -9999, 1.0, 100, 1,\n 3.73271, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1647, 9.92692, 0, 9999,\n -9999, 1.0, 100, 1, 17.434827, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1648, 28.233695, 0, 9999, -9999, 1.0, 100, 1, 109.345623, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1649, 5.151655, 0, 9999, -9999, 1.0, 100, 1, \n 23.481556, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1650, 11.474903, 0, \n 9999, -9999, 1.0, 100, 1, 176.928964, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1651, 6.559486, 0, 9999, -9999, 1.0, 100, 1, 161.276649, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1652, 15.754088, 0, 9999, -9999, 1.0, 100,\n 1, 84.070562, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1653, 0.859041, 0,\n 9999, -9999, 1.0, 100, 1, 18.431241, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1654, 2.867929, 0, 9999, -9999, 1.0, 100, 1, 47.53021, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1655, 6.126591, 0, 9999, -9999, 1.0, 100, \n 1, 10.79071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1656, 1.503676, 0,\n 9999, -9999, 1.0, 100, 1, 2.680105, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1657, 3.159334, 0, 9999, -9999, 1.0, 100, 1, 5.6313, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1658, 1.063334, 0, 9999, -9999, 1.0, 100, 1, \n 1.879381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1659, 42.758003, 0, \n 9999, -9999, 1.0, 100, 1, 91.77667, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1660, 81.182801, 0, 9999, -9999, 1.0, 100, 1, 186.942171, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1661, 54.425695, 0, 9999, -9999, 1.0, \n 100, 1, 138.604087, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1662, \n 1.7252, 0, 9999, -9999, 1.0, 100, 1, 3.040325, 0.0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0], [1663, 0.88777, 0, 9999, -9999, 1.0, 100, 1, 1.600649, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1664, 0.892007, 0, 9999, -9999, 1.0,\n 100, 1, 1.578207, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1665, \n 26.879102, 0, 9999, -9999, 1.0, 100, 1, 48.659717, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1666, 1.568464, 0, 9999, -9999, 1.0, 100, 1, \n 2.877877, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1667, 2.930199, 0, \n 9999, -9999, 1.0, 100, 1, 5.227282, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1668, 2.222682, 0, 9999, -9999, 1.0, 100, 1, 3.927043, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1669, 32.479792, 0, 9999, -9999, 1.0, 100,\n 1, 72.677935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1670, 57.381942, \n 0, 9999, -9999, 1.0, 100, 1, 111.043025, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1671, 30.998365, 0, 9999, -9999, 1.0, 100, 1, 62.404971, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1672, 5.901853, 0, 9999, -9999, 1.0, \n 100, 1, 10.579925, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1673, \n 2.372304, 0, 9999, -9999, 1.0, 100, 1, 4.091034, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1674, 20.609688, 0, 9999, -9999, 1.0, 100, 1, \n 47.970381, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1675, 17.173313, 0, \n 9999, -9999, 1.0, 100, 1, 31.233663, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1676, 4.733187, 0, 9999, -9999, 1.0, 100, 1, 83.173368, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1677, 0.748216, 0, 9999, -9999, 1.0, 100, \n 1, 13.887293, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1678, 35.527692, \n 0, 9999, -9999, 1.0, 100, 1, 226.804108, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1679, 13.18382, 0, 9999, -9999, 1.0, 100, 1, 71.380413, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1680, 10.906483, 0, 9999, -9999, 1.0, \n 100, 1, 52.148102, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1681, \n 5.842714, 0, 9999, -9999, 1.0, 100, 1, 17.30062, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1682, 12.101248, 0, 9999, -9999, 1.0, 100, 1, \n 39.892468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1683, 4.466464, 0, \n 9999, -9999, 1.0, 100, 1, 9.189765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1684, 3.14363, 0, 9999, -9999, 1.0, 100, 1, 40.575646, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1685, 3.384526, 0, 9999, -9999, 1.0, 100, \n 1, 74.922434, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1686, 4.905179, 0,\n 9999, -9999, 1.0, 100, 1, 81.035483, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1687, 55.528937, 0, 9999, -9999, 1.0, 100, 1, 112.01808, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1688, 9.148372, 0, 9999, -9999, 1.0, 100, \n 1, 18.158729, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1689, 13.639446, \n 0, 9999, -9999, 1.0, 100, 1, 116.696894, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1690, 21.09561, 0, 9999, -9999, 1.0, 100, 1, 116.477465, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1691, 19.637371, 0, 9999, -9999, 1.0, \n 100, 1, 228.38653, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1692, \n 2.901237, 0, 9999, -9999, 1.0, 100, 1, 26.501573, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1693, 50.543953, 0, 9999, -9999, 1.0, 100, 1, \n 86.236575, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1694, 18.920588, 0, \n 9999, -9999, 1.0, 100, 1, 53.656832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1695, 7.719672, 0, 9999, -9999, 1.0, 100, 1, 23.132774, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1696, 30.540056, 0, 9999, -9999, 1.0, 100,\n 1, 53.34209, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1697, 76.168097, 0,\n 9999, -9999, 1.0, 100, 1, 136.821485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1698, 12.290127, 0, 9999, -9999, 1.0, 100, 1, 25.60631, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1699, 2.114343, 0, 9999, -9999, 1.0, 100, \n 1, 5.356106, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1700, 21.391783, 0,\n 9999, -9999, 1.0, 100, 1, 55.825815, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1701, 10.832276, 0, 9999, -9999, 1.0, 100, 1, 37.297196, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1702, 2.156654, 0, 9999, -9999, 1.0, 100, \n 1, 25.149806, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1703, 3.858718, 0,\n 9999, -9999, 1.0, 100, 1, 48.587768, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1704, 10.17193, 0, 9999, -9999, 1.0, 100, 1, 127.647586, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1705, 5.26422, 0, 9999, -9999, 1.0, 100, 1,\n 52.051788, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1706, 0.604489, 0, \n 9999, -9999, 1.0, 100, 1, 6.76178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1707, 6.403263, 0, 9999, -9999, 1.0, 100, 1, 11.7078, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1708, 12.92226, 0, 9999, -9999, 1.0, 100, 1, \n 26.288692, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1709, 17.033589, 0, \n 9999, -9999, 1.0, 100, 1, 226.257418, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1710, 49.517907, 0, 9999, -9999, 1.0, 100, 1, 183.631947, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1711, 2.441574, 0, 9999, -9999, 1.0, \n 100, 1, 7.213854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1712, \n 6.895552, 0, 9999, -9999, 1.0, 100, 1, 75.638853, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1713, 28.927684, 0, 9999, -9999, 1.0, 100, 1, \n 90.775073, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1714, 16.998693, 0, \n 9999, -9999, 1.0, 100, 1, 42.312538, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1715, 62.747539, 0, 9999, -9999, 1.0, 100, 1, 155.279397, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1716, 97.323451, 0, 9999, -9999, 1.0, \n 100, 1, 156.979012, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1717, \n 10.583744, 0, 9999, -9999, 1.0, 100, 1, 82.928251, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1718, 170.834174, 0, 9999, -9999, 1.0, 100, 1, \n 301.614349, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1719, 3.601351, 0, \n 9999, -9999, 1.0, 100, 1, 19.488967, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1720, 5.131112, 0, 9999, -9999, 1.0, 100, 1, 54.067169, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1721, 37.327656, 0, 9999, -9999, 1.0, 100,\n 1, 82.151947, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1722, 9.385188, 0,\n 9999, -9999, 1.0, 100, 1, 21.329566, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1723, 0.050571, 0, 9999, -9999, 1.0, 100, 1, 2.855273, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1724, 0.677839, 0, 9999, -9999, 1.0, 100, \n 1, 36.268783, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1725, 22.953281, \n 0, 9999, -9999, 1.0, 100, 1, 55.750844, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1726, 15.03217, 0, 9999, -9999, 1.0, 100, 1, 84.308501, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1727, 0.192521, 0, 9999, -9999, 1.0, \n 100, 1, 0.456443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1728, \n 28.516908, 0, 9999, -9999, 1.0, 100, 1, 65.283314, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1729, 100.473844, 0, 9999, -9999, 1.0, 100, 1, \n 220.758669, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1730, 4.797176, 0, \n 9999, -9999, 1.0, 100, 1, 51.367164, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1731, 34.263201, 0, 9999, -9999, 1.0, 100, 1, 151.90213, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1732, 155.11784, 0, 9999, -9999, 1.0, 100,\n 1, 383.858473, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1733, 23.326039,\n 0, 9999, -9999, 1.0, 100, 1, 60.655652, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1734, 30.795291, 0, 9999, -9999, 1.0, 100, 1, 77.375277, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1735, 79.949927, 0, 9999, -9999, 1.0, \n 100, 1, 153.887449, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1736, \n 32.566074, 0, 9999, -9999, 1.0, 100, 1, 89.439426, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1737, 81.938946, 0, 9999, -9999, 1.0, 100, 1, \n 194.473407, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1738, 47.91826, 0, \n 9999, -9999, 1.0, 100, 1, 116.049526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1739, 18.885817, 0, 9999, -9999, 1.0, 100, 1, 33.525947, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1740, 37.672724, 0, 9999, -9999, 1.0, 100,\n 1, 66.638954, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1741, 2.695111, 0,\n 9999, -9999, 1.0, 100, 1, 35.869318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1742, 1.393089, 0, 9999, -9999, 1.0, 100, 1, 25.619162, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1743, 0.154333, 0, 9999, -9999, 1.0, 100, \n 1, 0.986841, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1744, 0.212264, 0,\n 9999, -9999, 1.0, 100, 1, 3.775325, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1745, 2.093329, 0, 9999, -9999, 1.0, 100, 1, 31.215591, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1746, 26.502147, 0, 9999, -9999, 1.0, 100,\n 1, 172.123236, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1747, 1.53228, 0,\n 9999, -9999, 1.0, 100, 1, 25.963706, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1748, 25.422655, 0, 9999, -9999, 1.0, 100, 1, 67.219313, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1749, 47.531509, 0, 9999, -9999, 1.0, 100,\n 1, 218.703564, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1750, 11.270767,\n 0, 9999, -9999, 1.0, 100, 1, 22.191848, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1751, 8.41057, 0, 9999, -9999, 1.0, 100, 1, 18.416283, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1752, 52.647161, 0, 9999, -9999, 1.0, \n 100, 1, 136.190504, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1753, \n 37.833072, 0, 9999, -9999, 1.0, 100, 1, 79.270006, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1754, 183.717347, 0, 9999, -9999, 1.0, 100, 1, \n 408.37422, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1755, 24.049325, 0, \n 9999, -9999, 1.0, 100, 1, 46.277001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1756, 48.363188, 0, 9999, -9999, 1.0, 100, 1, 93.807787, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1757, 104.993994, 0, 9999, -9999, 1.0, 100,\n 1, 197.08743, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1758, 154.052205,\n 0, 9999, -9999, 1.0, 100, 1, 311.473267, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1759, 88.42199, 0, 9999, -9999, 1.0, 100, 1, 156.546089, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1760, 60.975908, 0, 9999, -9999, 1.0, \n 100, 1, 114.687411, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1761, \n 28.606966, 0, 9999, -9999, 1.0, 100, 1, 48.443946, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1762, 56.025721, 0, 9999, -9999, 1.0, 100, 1, \n 107.077622, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1763, 37.224422, 0,\n 9999, -9999, 1.0, 100, 1, 90.136674, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1764, 9.235744, 0, 9999, -9999, 1.0, 100, 1, 21.994769, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1765, 52.402958, 0, 9999, -9999, 1.0, 100,\n 1, 112.249863, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1766, 51.104322,\n 0, 9999, -9999, 1.0, 100, 1, 99.811208, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1767, 52.541385, 0, 9999, -9999, 1.0, 100, 1, 95.5909, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1768, 85.744629, 0, 9999, -9999, 1.0, \n 100, 1, 159.818572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1769, \n 112.347054, 0, 9999, -9999, 1.0, 100, 1, 235.581664, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1770, 259.651541, 0, 9999, -9999, 1.0, 100, 1, \n 479.248156, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1771, 5.109869, 0, \n 9999, -9999, 1.0, 100, 1, 276.640075, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1772, 126.592412, 0, 9999, -9999, 1.0, 100, 1, 272.215345, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1773, 258.328874, 0, 9999, -9999, 1.0, \n 100, 1, 533.823159, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1774, \n 33.114072, 0, 9999, -9999, 1.0, 100, 1, 88.57714, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1775, 97.439377, 0, 9999, -9999, 1.0, 100, 1, \n 197.787397, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1776, 57.66107, 0, \n 9999, -9999, 1.0, 100, 1, 111.203656, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1777, 71.274796, 0, 9999, -9999, 1.0, 100, 1, 199.457983, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1778, 44.558231, 0, 9999, -9999, 1.0, \n 100, 1, 80.070627, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1779, \n 40.606138, 0, 9999, -9999, 1.0, 100, 1, 78.485044, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1780, 49.274198, 0, 9999, -9999, 1.0, 100, 1, \n 97.872974, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1781, 0.280452, 0, \n 9999, -9999, 1.0, 100, 1, 7.067063, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1782, 0.319467, 0, 9999, -9999, 1.0, 100, 1, 9.94901, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1783, 0.345254, 0, 9999, -9999, 1.0, 100, 1, \n 10.739092, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1784, 66.79638, 0, \n 9999, -9999, 1.0, 100, 1, 240.920274, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1785, 50.360782, 0, 9999, -9999, 1.0, 100, 1, 275.41262, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1786, 88.657476, 0, 9999, -9999, 1.0, 100,\n 1, 195.868213, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1787, 65.421739,\n 0, 9999, -9999, 1.0, 100, 1, 123.060646, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1788, 3.853407, 0, 9999, -9999, 1.0, 100, 1, 9.486282, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1789, 9.757968, 0, 9999, -9999, 1.0, \n 100, 1, 24.05804, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1790, \n 0.563999, 0, 9999, -9999, 1.0, 100, 1, 1.412167, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1791, 0.465844, 0, 9999, -9999, 1.0, 100, 1, 1.171034,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1792, 3.387142, 0, 9999, -9999,\n 1.0, 100, 1, 8.914306, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1793, \n 14.691741, 0, 9999, -9999, 1.0, 100, 1, 41.722817, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1794, 3.706407, 0, 9999, -9999, 1.0, 100, 1, \n 6.617641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1795, 1.770783, 0, \n 9999, -9999, 1.0, 100, 1, 3.33586, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\n ], [1796, 0.41599, 0, 9999, -9999, 1.0, 100, 1, 10.434523, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1797, 22.643915, 0, 9999, -9999, 1.0, 100, 1,\n 63.411765, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1798, 4.790401, 0, \n 9999, -9999, 1.0, 100, 1, 14.835758, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1799, 26.742258, 0, 9999, -9999, 1.0, 100, 1, 51.10225, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1800, 4.742924, 0, 9999, -9999, 1.0, 100, \n 1, 79.286766, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1801, 7.953416, 0,\n 9999, -9999, 1.0, 100, 1, 21.006749, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1802, 4.049656, 0, 9999, -9999, 1.0, 100, 1, 11.305192, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1803, 5.140621, 0, 9999, -9999, 1.0, 100, \n 1, 15.182571, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1804, 144.921246,\n 0, 9999, -9999, 1.0, 100, 1, 399.133201, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1805, 8.536324, 0, 9999, -9999, 1.0, 100, 1, 23.20491, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1806, 5.740923, 0, 9999, -9999, 1.0, \n 100, 1, 21.469357, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1807, \n 1.470613, 0, 9999, -9999, 1.0, 100, 1, 28.156483, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1808, 70.361515, 0, 9999, -9999, 1.0, 100, 1, \n 118.262712, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1809, 18.2725, 0, \n 9999, -9999, 1.0, 100, 1, 33.031228, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1810, 44.141834, 0, 9999, -9999, 1.0, 100, 1, 74.139408, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1811, 2.450386, 0, 9999, -9999, 1.0, 100, \n 1, 53.408299, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1812, 18.961252, \n 0, 9999, -9999, 1.0, 100, 1, 47.34526, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1813, 69.413673, 0, 9999, -9999, 1.0, 100, 1, 180.894957, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1814, 5.588762, 0, 9999, -9999, 1.0,\n 100, 1, 62.572642, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1815, \n 3.471972, 0, 9999, -9999, 1.0, 100, 1, 61.953143, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1816, 1.600858, 0, 9999, -9999, 1.0, 100, 1, 30.445169,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1817, 86.125537, 0, 9999, -9999,\n 1.0, 100, 1, 280.614897, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1818, \n 75.34571, 0, 9999, -9999, 1.0, 100, 1, 173.515675, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1819, 0.872404, 0, 9999, -9999, 1.0, 100, 1, \n 1.538348, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1820, 45.88908, 0, \n 9999, -9999, 1.0, 100, 1, 79.71358, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1821, 103.350239, 0, 9999, -9999, 1.0, 100, 1, 196.67938, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1822, 102.760969, 0, 9999, -9999, 1.0, \n 100, 1, 170.831584, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1823, \n 75.58801, 0, 9999, -9999, 1.0, 100, 1, 131.456153, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1824, 5.044208, 0, 9999, -9999, 1.0, 100, 1, \n 56.565054, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1825, 4.036555, 0, \n 9999, -9999, 1.0, 100, 1, 81.59195, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1826, 34.051376, 0, 9999, -9999, 1.0, 100, 1, 74.101252, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1827, 2.041287, 0, 9999, -9999, 1.0, 100, \n 1, 30.303552, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1828, 2.020579, 0,\n 9999, -9999, 1.0, 100, 1, 43.298921, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1830, 11.386028, 0, 9999, -9999, 1.0, 100, 1, 27.724768, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1831, 39.153546, 0, 9999, -9999, 1.0, 100,\n 1, 69.89001, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1832, 14.640804, 0,\n 9999, -9999, 1.0, 100, 1, 26.560625, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1833, 43.988416, 0, 9999, -9999, 1.0, 100, 1, 81.361962, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1834, 49.227473, 0, 9999, -9999, 1.0, 100,\n 1, 102.529569, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1836, 0.415275, \n 0, 9999, -9999, 1.0, 100, 1, 6.417969, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0, 0], [1837, 0.694236, 0, 9999, -9999, 1.0, 100, 1, 12.629331, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1838, 12.263587, 0, 9999, -9999, 1.0, \n 100, 1, 25.580913, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1839, \n 94.041912, 0, 9999, -9999, 1.0, 100, 1, 183.749133, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1840, 55.990814, 0, 9999, -9999, 1.0, 100, 1, \n 132.975197, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1841, 8.567758, 0, \n 9999, -9999, 1.0, 100, 1, 22.982632, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1842, 3.013346, 0, 9999, -9999, 1.0, 100, 1, 7.468633, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1843, 4.963466, 0, 9999, -9999, 1.0, 100, \n 1, 19.264686, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1844, 11.851685, \n 0, 9999, -9999, 1.0, 100, 1, 32.384294, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1845, 8.548534, 0, 9999, -9999, 1.0, 100, 1, 31.436002, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1846, 0.814326, 0, 9999, -9999, 1.0, \n 100, 1, 3.74984, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1847, \n 40.448773, 0, 9999, -9999, 1.0, 100, 1, 120.215574, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1848, 5.647164, 0, 9999, -9999, 1.0, 100, 1, \n 9.514696, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1849, 22.348436, 0, \n 9999, -9999, 1.0, 100, 1, 37.619097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1850, 28.851054, 0, 9999, -9999, 1.0, 100, 1, 48.54058, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1851, 4.777507, 0, 9999, -9999, 1.0, 100, \n 1, 7.956444, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1852, 22.581538, 0,\n 9999, -9999, 1.0, 100, 1, 37.606916, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1853, 18.287332, 0, 9999, -9999, 1.0, 100, 1, 30.116711, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1854, 0.071349, 0, 9999, -9999, 1.0, 100, \n 1, 2.241167, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1855, 58.355405, 0,\n 9999, -9999, 1.0, 100, 1, 121.687485, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1856, 32.390166, 0, 9999, -9999, 1.0, 100, 1, 63.654358, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1857, 6.577045, 0, 9999, -9999, 1.0, 100, \n 1, 41.229597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1858, 2.782594, 0,\n 9999, -9999, 1.0, 100, 1, 27.374415, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1860, 46.412756, 0, 9999, -9999, 1.0, 100, 1, 84.163604, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1861, 15.17117, 0, 9999, -9999, 1.0, 100, \n 1, 26.861144, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1862, 17.100554, \n 0, 9999, -9999, 1.0, 100, 1, 32.512826, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1863, 15.395611, 0, 9999, -9999, 1.0, 100, 1, 30.063729, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1864, 58.28981, 0, 9999, -9999, 1.0, \n 100, 1, 138.236316, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1865, \n 29.398244, 0, 9999, -9999, 1.0, 100, 1, 68.097772, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1866, 34.06823, 0, 9999, -9999, 1.0, 100, 1, \n 98.289141, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1867, 1.138849, 0, \n 9999, -9999, 1.0, 100, 1, 2.041288, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1868, 3.659736, 0, 9999, -9999, 1.0, 100, 1, 6.453374, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1869, 1.540924, 0, 9999, -9999, 1.0, 100, \n 1, 2.759448, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1870, 21.723018, 0,\n 9999, -9999, 1.0, 100, 1, 54.564665, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1871, 23.760385, 0, 9999, -9999, 1.0, 100, 1, 52.648444, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1872, 0.976431, 0, 9999, -9999, 1.0, 100, \n 1, 1.683854, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1873, 5.09944, 0, \n 9999, -9999, 1.0, 100, 1, 9.025283, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1874, 2.012083, 0, 9999, -9999, 1.0, 100, 1, 3.554415, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1875, 4.442785, 0, 9999, -9999, 1.0, 100, \n 1, 7.837576, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1876, 2.799608, 0,\n 9999, -9999, 1.0, 100, 1, 4.936672, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1877, 0.64407, 0, 9999, -9999, 1.0, 100, 1, 1.135717, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1878, 4.747047, 0, 9999, -9999, 1.0, 100, 1, \n 8.374329, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1879, 0.985284, 0, \n 9999, -9999, 1.0, 100, 1, 1.752881, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1880, 21.679451, 0, 9999, -9999, 1.0, 100, 1, 38.46747, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1881, 2.497923, 0, 9999, -9999, 1.0, 100, \n 1, 4.535799, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1882, 2.775104, 0,\n 9999, -9999, 1.0, 100, 1, 5.120641, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1883, 3.80439, 0, 9999, -9999, 1.0, 100, 1, 6.940957, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1884, 3.216632, 0, 9999, -9999, 1.0, 100, 1, \n 5.865468, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1885, 26.127919, 0, \n 9999, -9999, 1.0, 100, 1, 47.510175, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1886, 2.920583, 0, 9999, -9999, 1.0, 100, 1, 5.255398, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1887, 8.980031, 0, 9999, -9999, 1.0, 100, \n 1, 16.937671, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1888, 2.284432, 0,\n 9999, -9999, 1.0, 100, 1, 4.141211, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1889, 22.755153, 0, 9999, -9999, 1.0, 100, 1, 91.335184, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1890, 11.091793, 0, 9999, -9999, 1.0, 100,\n 1, 24.842697, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1891, 1.598973, 0,\n 9999, -9999, 1.0, 100, 1, 30.836318, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1892, 2.193637, 0, 9999, -9999, 1.0, 100, 1, 38.14699, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1893, 3.485072, 0, 9999, -9999, 1.0, 100, \n 1, 46.5682, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1894, 2.083874, 0, \n 9999, -9999, 1.0, 100, 1, 31.347572, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1895, 0.074321, 0, 9999, -9999, 1.0, 100, 1, 0.140628, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1896, 12.343254, 0, 9999, -9999, 1.0, 100,\n 1, 45.257234, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1897, 4.490861, 0,\n 9999, -9999, 1.0, 100, 1, 14.824595, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1898, 1.288233, 0, 9999, -9999, 1.0, 100, 1, 18.270499, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1899, 2.768066, 0, 9999, -9999, 1.0, 100, \n 1, 12.000496, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1900, 46.855623, \n 0, 9999, -9999, 1.0, 100, 1, 78.114509, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1901, 79.712379, 0, 9999, -9999, 1.0, 100, 1, 133.539659, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1902, 168.786014, 0, 9999, -9999, \n 1.0, 100, 1, 281.819662, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1903, \n 79.080104, 0, 9999, -9999, 1.0, 100, 1, 135.492385, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1904, 46.677656, 0, 9999, -9999, 1.0, 100, 1, \n 79.184428, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1905, 3.526731, 0, \n 9999, -9999, 1.0, 100, 1, 9.160607, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1906, 21.874104, 0, 9999, -9999, 1.0, 100, 1, 72.356523, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1907, 12.40785, 0, 9999, -9999, 1.0, 100, \n 1, 28.893637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1908, 29.231842, \n 0, 9999, -9999, 1.0, 100, 1, 50.477866, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1909, 2.846508, 0, 9999, -9999, 0.999501, 100, 1, 32.874676, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1910, 1.766063, 0, 9999, -9999,\n 1.0, 100, 1, 20.259486, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1911, \n 0.705955, 0, 9999, -9999, 1.0, 100, 1, 8.189799, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1912, 3.360662, 0, 9999, -9999, 1.0, 100, 1, \n 101.236915, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1913, 0.362876, 0, \n 9999, -9999, 1.0, 100, 1, 6.782522, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1914, 0.788819, 0, 9999, -9999, 1.0, 100, 1, 15.944561, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1915, 13.727784, 0, 9999, -9999, 1.0, 100,\n 1, 159.570248, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1916, 10.117207,\n 0, 9999, -9999, 1.0, 100, 1, 277.793548, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1917, 91.580936, 0, 9999, -9999, 1.0, 100, 1, 186.387377, 0.0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1918, 63.811718, 0, 9999, -9999, 1.0,\n 100, 1, 120.486097, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1919, \n 21.235829, 0, 9999, -9999, 1.0, 100, 1, 61.1613, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1920, 0.597023, 0, 9999, -9999, 1.0, 100, 1, 9.95472, \n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1921, 10.5814, 0, 9999, -9999, \n 1.0, 100, 1, 230.400935, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1922, \n 3.31875, 0, 9999, -9999, 1.0, 100, 1, 66.116137, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1923, 1.096816, 0, 9999, -9999, 1.0, 100, 1, 21.836163,\n 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1924, 2.396826, 0, 9999, -9999,\n 1.0, 100, 1, 36.518326, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1925, \n 74.732516, 0, 9999, -9999, 1.0, 100, 1, 135.324361, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1926, 37.927912, 0, 9999, -9999, 1.0, 100, 1, \n 96.610178, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1927, 21.753349, 0, \n 9999, -9999, 1.0, 100, 1, 65.668809, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1928, 0.04724, 0, 9999, -9999, 1.0, 100, 1, 1.509884, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1929, 0.552543, 0, 9999, -9999, 1.0, 100, 1, \n 4.804832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1930, 3.929054, 0, \n 9999, -9999, 1.0, 100, 1, 11.004973, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1931, 11.492469, 0, 9999, -9999, 1.0, 100, 1, 38.07556, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1932, 10.876649, 0, 9999, -9999, 1.0, 100,\n 1, 46.722379, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1933, 10.473207, \n 0, 9999, -9999, 1.0, 100, 1, 44.239188, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1934, 117.537767, 0, 9999, -9999, 1.0, 100, 1, 383.418198, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1935, 34.374027, 0, 9999, -9999, 1.0,\n 100, 1, 62.335643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1936, \n 2.950282, 0, 9999, -9999, 1.0, 100, 1, 6.00797, 0.0, 0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0], [1937, 70.310402, 0, 9999, -9999, 1.0, 100, 1, \n 134.605733, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1938, 10.589034, 0,\n 9999, -9999, 1.0, 100, 1, 89.425619, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1939, 34.352206, 0, 9999, -9999, 1.0, 100, 1, 103.003683, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1940, 8.662273, 0, 9999, -9999, 1.0, \n 100, 1, 18.980829, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1941, \n 28.419023, 0, 9999, -9999, 1.0, 100, 1, 104.495097, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1942, 27.473846, 0, 9999, -9999, 1.0, 100, 1, \n 70.75487, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1943, 2.0646, 0, 9999,\n -9999, 1.0, 100, 1, 3.652558, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [\n 1944, 50.503742, 0, 9999, -9999, 1.0, 100, 1, 93.133765, 0.0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0], [1945, 6.040478, 0, 9999, -9999, 1.0, 100, 1, \n 10.651443, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1946, 0.742589, 0, \n 9999, -9999, 1.0, 100, 1, 1.309439, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1947, 9.923903, 0, 9999, -9999, 1.0, 100, 1, 17.996246, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1948, 31.485384, 0, 9999, -9999, 1.0, 100,\n 1, 83.075413, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1949, 5.724064, 0,\n 9999, -9999, 1.0, 100, 1, 10.193229, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1950, 0.502461, 0, 9999, -9999, 1.0, 100, 1, 0.866493, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1951, 4.204719, 0, 9999, -9999, 1.0, 100, \n 1, 7.917597, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1952, 17.958372, 0,\n 9999, -9999, 1.0, 100, 1, 67.723951, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1953, 5.075202, 0, 9999, -9999, 1.0, 100, 1, 8.928556, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1954, 7.198599, 0, 9999, -9999, 1.0, 100, \n 1, 12.726892, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1955, 3.726843, 0,\n 9999, -9999, 1.0, 100, 1, 6.625255, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1956, 21.634918, 0, 9999, -9999, 1.0, 100, 1, 38.724888, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1957, 38.55709, 0, 9999, -9999, 1.0, 100, \n 1, 131.682322, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1958, 26.153938,\n 0, 9999, -9999, 1.0, 100, 1, 59.791759, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1959, 5.715564, 0, 9999, -9999, 1.0, 100, 1, 35.986928, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1960, 7.46671, 0, 9999, -9999, 1.0, 100,\n 1, 13.579895, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1961, 10.128456, \n 0, 9999, -9999, 1.0, 100, 1, 17.841481, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1962, 1.777909, 0, 9999, -9999, 1.0, 100, 1, 3.150179, 0.0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1963, 0.405646, 0, 9999, -9999, 1.0, \n 100, 1, 0.73138, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1964, 3.914947,\n 0, 9999, -9999, 1.0, 100, 1, 66.594121, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1965, 1.169719, 0, 9999, -9999, 1.0, 100, 1, 18.785491, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1966, 1.10539, 0, 9999, -9999, 1.0, 100,\n 1, 2.674199, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1967, 58.064298, 0,\n 9999, -9999, 1.0, 100, 1, 99.074235, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1968, 115.522641, 0, 9999, -9999, 1.0, 100, 1, 201.733891, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1969, 8.791022, 0, 9999, -9999, 1.0, \n 100, 1, 15.048118, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1970, \n 146.011633, 0, 9999, -9999, 1.0, 100, 1, 236.871781, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1971, 8.074517, 0, 9999, -9999, 1.0, 100, 1, \n 14.404409, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1972, 0.015521, 0, \n 9999, -9999, 1.0, 100, 1, 0.028378, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1973, 0.292438, 0, 9999, -9999, 1.0, 100, 1, 0.534696, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1974, 1.504534, 0, 9999, -9999, 1.0, 100, \n 1, 2.750907, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1975, 36.887137, 0,\n 9999, -9999, 1.0, 100, 1, 81.92918, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1976, 1.406463, 0, 9999, -9999, 1.0, 100, 1, 2.17499, 0.0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0], [1977, 122.592738, 0, 9999, -9999, 1.0, 100, 1,\n 226.383637, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1978, 0.706432, 0, \n 9999, -9999, 1.0, 100, 1, 1.331592, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [1979, 7.337064, 0, 9999, -9999, 1.0, 100, 1, 189.722792, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1980, 52.239056, 0, 9999, -9999, 1.0, 100,\n 1, 100.61941, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1981, 79.320419, \n 0, 9999, -9999, 1.0, 100, 1, 144.682717, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [1982, 69.614382, 0, 9999, -9999, 1.0, 100, 1, 134.93778, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1983, 67.761201, 0, 9999, -9999, 1.0, \n 100, 1, 155.990147, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1984, \n 43.229883, 0, 9999, -9999, 1.0, 100, 1, 94.470611, 0.0, 0, 0, 0, 0, 0, \n 0, 0, 0, 0, 0, 0], [1985, 18.449298, 0, 9999, -9999, 1.0, 100, 1, \n 41.975835, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1986, 108.814425, 0,\n 9999, -9999, 1.0, 100, 1, 298.346979, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1987, 189.251646, 0, 9999, -9999, 1.0, 100, 1, 393.914067, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1988, 144.661852, 0, 9999, -9999, 1.0, \n 100, 1, 251.944939, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1989, \n 6.390172, 0, 9999, -9999, 1.0, 100, 1, 10.378288, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [1990, 30.763561, 0, 9999, -9999, 1.0, 100, 1, \n 50.351426, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1991, 399.179592, 0,\n 9999, -9999, 1.0, 100, 1, 849.576944, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1992, 125.280995, 0, 9999, -9999, 1.0, 100, 1, 233.477991, 0.0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1993, 121.464694, 0, 9999, -9999, 1.0, \n 100, 1, 242.698643, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1994, \n 45.014021, 0, 9999, -9999, 1.0, 100, 1, 255.834576, 0.0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0], [1995, 80.531008, 0, 9999, -9999, 1.0, 100, 1, \n 262.446698, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1996, 20.04469, 0, \n 9999, -9999, 1.0, 100, 1, 91.306832, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0], [1997, 9.226652, 0, 9999, -9999, 1.0, 100, 1, 26.592561, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [1998, 5.256357, 0, 9999, -9999, 1.0, 100, \n 1, 12.126511, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1999, 67.284228, \n 0, 9999, -9999, 1.0, 100, 1, 199.184531, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0], [2000, 253.175263, 0, 9999, -9999, 1.0, 100, 1, 579.835051, 0.0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2001, 28.564477, 0, 9999, -9999, 1.0,\n 100, 1, 122.315703, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2002, \n 2.736658, 0, 9999, -9999, 1.0, 100, 1, 30.606436, 0.0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0], [2003, 12.738107, 0, 9999, -9999, 1.0, 100, 1, \n 23.645071, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2004, 8.692812, 0, \n 9999, -9999, 1.0, 100, 1, 17.73338, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [2005, 28.121382, 0, 9999, -9999, 1.0, 100, 1, 72.071456, 0.0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0], [2006, 25.924839, 0, 9999, -9999, 1.0, 100,\n 1, 59.660888, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2007, 0.938003, 0,\n 9999, -9999, 1.0, 100, 1, 1.681507, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \n 0], [2008, 0.065103, 0, 9999, -9999, 1.0, 100, 1, 0.116706, 0.0, 0, 0, \n 0, 0, 0, 0, 0, 0, 0, 0, 0]])\n', (126567, 238407), False, 'from numpy import array\n'), ((245155, 407541), 'numpy.array', 'array', (['[[586, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [589, 108, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [590, 108, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [593, 112, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [594, 114, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [595, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [598, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [599, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [601, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [602,\n 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [603, 526, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [607, 127, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [608, 127, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [609, 529, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [612, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [613, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [614, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [616, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [617,\n 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [618, 133, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [619, 134, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [621, 136, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [623, 139, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [624, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [628, 142, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [629, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [632, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [637,\n 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [638, 149, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [640, 153, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [641, 155, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [642, 533, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [643, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [646, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [647, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [650, 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [652,\n 167, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [655, 170, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [661, 177, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [663, 178, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [666, 180, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [668, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [670, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [672, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [676, 19, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [681, \n 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [683, 200, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [687, 202, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [689, 204, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [691, 209, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [693, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [694, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [695, 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [696, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [697,\n 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [698, 212, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [702, 215, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [704, 217, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [705, 217, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [707, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [708, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [711, 224, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [713, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [714,\n 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [716, 226, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [717, 227, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [719, 229, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [722, 545, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [724, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [727, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [728, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [730, 547, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [731,\n 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [732, 247, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [735, 253, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [737, 256, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [738, 258, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [741, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [742, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [743, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [746, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [747,\n 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [748, 274, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [749, 274, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [750, 557, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [753, 28, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [758, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [760, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [762, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [763, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [765,\n 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [767, 292, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [769, 293, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [771, 297, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [772, 3, 0, 1e-05, 0, 9999, 9999, 9999,\n 0, 0, 1, -360, 360], [774, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1,\n -360, 360], [776, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [777, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 778, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [781, 303,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [784, 563, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [785, 501, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [787, 308, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [788, 311, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [789, 565, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [791, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [792, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [795,\n 319, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [801, 327, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [802, 327, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [805, 328, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [806, 328, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [808, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [809, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [811, 568, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [814, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [816,\n 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [817, 571, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [821, 338, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [822, 339, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [826, 339, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [829, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [830, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [835, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [836, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [837,\n 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [839, 350, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [841, 573, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [843, 352, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [844, 352, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [845, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [849, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [850, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [851, 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [853,\n 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [854, 363, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [855, 363, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [856, 363, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [857, 365, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [858, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [859, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [860, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [862, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [863,\n 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [864, 374, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [865, 375, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [867, 376, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [869, 503, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [870, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [872, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [873, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [874, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [875,\n 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [877, 578, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [882, 388, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [883, 388, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [886, 394, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [889, 397, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [890, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [895, 580, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [896, 581, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [898,\n 403, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [900, 405, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [902, 405, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [903, 406, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [905, 413, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [906, 414, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [907, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [909, 417, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [913, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [915,\n 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [917, 43, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [918, 424, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [920, 428, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [921, 428, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [922, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [923, 432, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [925, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [928, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [931, \n 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [934, 45, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [935, 45, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [936, 445, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [937, 447, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [939, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [940, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [942, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [944, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [945,\n 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [950, 462, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [952, 47, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [958, 478, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [959, 478, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [960, 479, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [963, 481, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [965, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [966, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [967, 49,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [968, 486, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [969, 486, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [971, 51, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [973, 506, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [976, 58, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [977, 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [978, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [981, 62,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [982, 62, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [983, 62, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [984, 63, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [985, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [986, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [987, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [988, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [990, 67,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [993, 67, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [994, 67, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [995, 509, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [997, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [999, 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1000, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1002, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1003,\n 72, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1007, 511, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1008, 75, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1010, 79, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1011, 79, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1012, 81, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1018, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1023, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1026, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1027, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1028, \n 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1029, 268, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1030, 269, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1031, 498, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1032, 1, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1033, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [1034, 4, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1035, 6, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [1036, 7, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1037, 8,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1038, 9, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1039, 11, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1040, 14, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1041, 16, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1042, 17, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1044, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1046, 25, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1047,\n 27, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1048, 28, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1049, 29, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1050, 31, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1051, 33, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1052, 34, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1053, 35, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1054, 36, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1055, 38, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1056,\n 39, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1057, 40, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1058, 41, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1059, 43, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1060, 44, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1061, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1062, 47, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1063, 48, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1064, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1065,\n 50, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1066, 51, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1067, 53, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1072, 59, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1073, 60, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1074, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1075, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1076, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1077, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1078,\n 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1079, 67, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1080, 70, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1081, 71, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1082, 72, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1083, 73, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1084, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1085, 76, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1086, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1087,\n 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1088, 80, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1089, 81, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1090, 82, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1091, 83, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1092, 84, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1093, 85, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1094, 88, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1095, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1096,\n 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1097, 91, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1098, 92, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1099, 93, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1101, 98, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1102, 101, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1103, 102, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1104, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1105, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1106, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1107, \n 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1108, 111, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1109, 112, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1110, 113, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1111, 114, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1112, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1113, 116, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1114, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1115, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1116, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1117, \n 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1118, 126, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1119, 127, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1120, 130, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1121, 131, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1122, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1123, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1124, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1125, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1126, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1127, \n 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1128, 139, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1129, 140, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1130, 141, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1131, 142, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1132, 144, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1133, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1134, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1135, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1136, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1137, \n 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1138, 150, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1139, 151, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1140, 152, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1141, 153, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1142, 154, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1143, 155, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1144, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1145, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1146, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1147, \n 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1148, 164, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1149, 166, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1150, 167, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1151, 168, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1152, 169, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1153, 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1154, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1155, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1156, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1157, \n 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1158, 175, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1159, 176, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1160, 177, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1161, 178, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1162, 179, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1163, 180, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1164, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1165, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1166, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1167, \n 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1168, 186, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1169, 187, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1170, 188, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1171, 189, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1172, 190, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1173, 192, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1174, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1175, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1176, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1177, \n 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1178, 198, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1179, 199, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1180, 200, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1181, 202, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1182, 203, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1183, 204, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1184, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1185, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1186, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1187, \n 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1188, 209, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1189, 210, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1190, 211, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1191, 212, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1192, 213, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1196, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1197, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1198, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1199, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1200, \n 222, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1204, 226, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1206, 228, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1208, 230, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1211, 237, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1212, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1213, 239, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1214, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1215, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1216, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1217, \n 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1218, 244, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1219, 247, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1220, 251, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1221, 252, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1222, 253, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1224, 255, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1225, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1226, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1227, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1229, \n 263, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1230, 264, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1231, 266, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1232, 267, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1233, 268, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1235, 271, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1236, 272, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1237, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1238, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1239, 275, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1240, \n 276, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1241, 278, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1242, 281, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1243, 282, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1244, 283, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1245, 284, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1246, 285, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1247, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1248, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1249, 288, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1250, \n 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1251, 291, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1252, 292, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1253, 293, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1254, 294, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1255, 295, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1256, 296, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1257, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1258, 298, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1259, 299, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1260, \n 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1261, 302, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1264, 307, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1266, 309, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1267, 311, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1268, 312, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1269, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1270, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1274, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1275, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1276, \n 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1277, 324, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1278, 325, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1280, 327, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1281, 328, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1282, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1283, 331, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1285, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1286, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1287, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1288, \n 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1289, 340, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1290, 341, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1291, 342, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1292, 343, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1293, 344, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1294, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1295, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1296, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1297, 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1298, \n 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1299, 352, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1300, 353, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1301, 354, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1302, 355, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1303, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1306, 361, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1307, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1308, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1312, 367, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1316, \n 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1317, 372, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1319, 374, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1323, 378, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1326, 384, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1327, 385, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1328, 386, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1329, 387, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1331, 390, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1333, 392, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1336, \n 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1337, 396, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1339, 398, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1340, 399, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1345, 406, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1346, 407, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1348, 410, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1349, 411, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1356, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1357, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1359, \n 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1360, 423, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1361, 424, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1362, 425, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1366, 429, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1367, 430, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1372, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1373, 436, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1374, 437, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1375, 438, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1376, \n 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1377, 440, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1378, 441, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1379, 442, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1380, 443, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1381, 445, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1382, 446, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1383, 447, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1384, 448, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1385, 449, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1386, \n 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1387, 451, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1388, 453, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1389, 454, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1390, 455, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1391, 456, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1392, 457, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1393, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1394, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1395, 460, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1396, \n 461, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1397, 462, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1398, 463, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1399, 464, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1400, 465, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1401, 466, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1402, 467, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1403, 468, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1404, 469, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1405, 470, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1406, \n 471, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1407, 472, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1408, 473, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1409, 474, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1410, 475, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1411, 476, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1418, 483, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1419, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1421, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1422, 487, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1423, \n 488, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1424, 489, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1425, 490, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1426, 491, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1427, 492, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1428, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1429, 494, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1431, 496, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1432, 497, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1433, 498, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1434, \n 499, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1435, 500, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1436, 501, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1437, 502, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1438, 503, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1439, 504, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1440, 505, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1443, 508, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1444, 509, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1445, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1446, \n 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1447, 512, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1448, 513, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1449, 514, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1450, 515, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1451, 516, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1452, 517, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1453, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1454, 519, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1455, 520, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1456, \n 521, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1457, 522, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1458, 523, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1459, 524, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1460, 525, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1461, 526, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1462, 527, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1463, 528, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1464, 529, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1465, 530, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1466, \n 531, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1467, 532, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1468, 533, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1469, 534, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1470, 535, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1471, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1472, 537, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1473, 538, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1474, 539, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1475, 540, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1476, \n 541, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1477, 542, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1483, 548, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1484, 549, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1485, 550, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1486, 551, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1489, 555, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1490, 556, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1491, 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1492, 558, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1493, \n 559, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1494, 560, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1495, 561, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1497, 563, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1498, 564, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1501, 567, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1503, 569, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1504, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1505, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1506, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1507, \n 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1510, 576, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1511, 577, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1512, 578, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1513, 579, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1518, 584, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1519, 585, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1520, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [1521, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1522, 4,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1523, 6, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1524, 7, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1525, 8, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1526, 9, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [1527, 11, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1528, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1529, 16, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1530,\n 17, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1531, 19, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1532, 21, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1534, 25, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1535, 27, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1536, 28, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1537, 29, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1538, 31, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1539, 33, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1540,\n 34, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1541, 35, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1542, 36, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1543, 38, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1544, 39, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1545, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1546, 41, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1547, 43, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1548, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1549,\n 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1550, 47, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1551, 48, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1552, 49, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1553, 50, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1554, 51, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1555, 53, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1556, 54, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1557, 55, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1558,\n 57, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1559, 58, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1560, 59, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1561, 60, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1562, 62, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1563, 63, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1564, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1565, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1566, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1567,\n 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1568, 70, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1569, 71, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1570, 72, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1571, 73, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1572, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1573, 76, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1574, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1575, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1576,\n 80, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1577, 81, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1578, 82, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1579, 83, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1580, 84, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1581, 85, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1582, 88, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1583, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1584, 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1585,\n 91, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1586, 92, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1587, 93, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1588, 97, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1589, 98, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1590, 101, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1591, 102, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1592, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1593, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1594, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1595, \n 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1596, 111, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1597, 112, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1598, 113, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1599, 114, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1600, 115, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1601, 116, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1602, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1603, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1604, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1605, \n 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1606, 126, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1607, 127, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1608, 130, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1609, 131, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1610, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1611, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1612, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1613, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1614, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1615, \n 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1616, 139, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1617, 140, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1618, 141, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1619, 142, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1620, 144, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1621, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1622, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1623, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1624, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1625, \n 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1626, 150, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1627, 151, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1628, 152, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1629, 153, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1630, 154, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1631, 155, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1632, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1633, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1634, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1635, \n 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1636, 164, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1637, 166, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1638, 167, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1639, 168, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1640, 169, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1641, 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1642, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1643, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1644, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1645, \n 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1646, 175, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1647, 176, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1648, 177, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1649, 178, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1650, 179, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1651, 180, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1652, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1653, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1654, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1655, \n 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1656, 186, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1657, 187, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1658, 188, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1659, 189, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1660, 190, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1661, 192, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1662, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1663, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1664, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1665, \n 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1666, 198, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1667, 199, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1668, 200, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1669, 202, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1670, 203, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1671, 204, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1672, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1673, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1674, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1675, \n 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1676, 209, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1677, 210, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1678, 211, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1679, 212, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1680, 213, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1681, 214, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1682, 215, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1683, 216, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1684, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1685, \n 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1686, 219, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1687, 221, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1688, 222, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1689, 223, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1690, 224, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1691, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1692, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1693, 227, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1694, 228, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1695, \n 229, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1696, 230, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1697, 234, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1698, 235, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1699, 237, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1700, 238, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1701, 239, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1702, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1703, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1704, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1705, \n 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1706, 244, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1707, 247, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1708, 251, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1709, 252, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1710, 253, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1711, 254, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1712, 255, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1713, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1714, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1715, \n 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1716, 260, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1717, 263, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1718, 264, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1719, 266, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1720, 267, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1721, 268, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1722, 269, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1723, 271, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1724, 272, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1725, \n 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1726, 274, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1727, 275, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1728, 276, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1729, 278, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1730, 281, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1731, 282, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1732, 283, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1733, 284, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1734, 285, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1735, \n 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1736, 287, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1737, 288, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1738, 289, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1739, 291, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1740, 292, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1741, 293, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1742, 294, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1743, 295, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1744, 296, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1745, \n 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1746, 298, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1747, 299, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1748, 300, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1749, 302, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1750, 303, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1751, 304, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1752, 307, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1753, 308, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1754, 309, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1755, \n 311, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1756, 312, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1757, 314, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1758, 316, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1759, 317, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1760, 318, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1761, 319, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1762, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1763, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1764, 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1765, \n 324, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1766, 325, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1767, 326, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1768, 327, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1769, 328, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1770, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1771, 331, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1772, 333, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1773, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1774, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1775, \n 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1776, 339, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1777, 340, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1778, 341, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1779, 342, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1780, 343, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1781, 344, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1782, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1783, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1784, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1785, \n 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1786, 350, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1787, 352, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1788, 353, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1789, 354, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1790, 355, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1791, 356, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1792, 357, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1793, 359, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1794, 361, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1795, \n 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1796, 363, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1797, 364, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1798, 365, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1799, 366, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1800, 367, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1801, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1802, 369, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1803, 370, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1804, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1805, \n 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1806, 373, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1807, 374, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1808, 375, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1809, 376, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1810, 377, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1811, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1812, 379, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1813, 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1814, 384, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1815, \n 385, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1816, 386, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1817, 387, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1818, 388, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1819, 390, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1820, 391, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1821, 392, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1822, 393, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1823, 394, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1824, 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1825, \n 396, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1826, 397, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1827, 398, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1828, 399, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1830, 403, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1831, 404, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1832, 405, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1833, 406, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1834, 407, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1836, 410, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1837, \n 411, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1838, 412, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1839, 413, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1840, 414, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1841, 416, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1842, 417, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1843, 418, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1844, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1845, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1846, 421, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1847, \n 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1848, 423, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1849, 424, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1850, 425, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1851, 426, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1852, 427, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1853, 428, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1854, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1855, 430, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1856, 431, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1857, \n 432, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1858, 433, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1860, 435, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1861, 436, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1862, 437, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1863, 438, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1864, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1865, 440, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1866, 441, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1867, 442, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1868, \n 443, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1869, 445, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1870, 446, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1871, 447, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1872, 448, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1873, 449, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1874, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1875, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1876, 453, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1877, 454, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1878, \n 455, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1879, 456, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1880, 457, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1881, 458, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1882, 459, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1883, 460, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1884, 461, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1885, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1886, 463, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1887, 464, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1888, \n 465, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1889, 466, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1890, 467, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1891, 468, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1892, 469, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1893, 470, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1894, 471, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1895, 472, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1896, 473, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1897, 474, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1898, \n 475, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1899, 476, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1900, 477, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1901, 478, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1902, 479, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1903, 480, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1904, 481, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1905, 482, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1906, 483, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1907, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1908, \n 485, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1909, 486, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1910, 487, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1911, 488, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1912, 489, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1913, 490, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1914, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1915, 492, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1916, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1917, 494, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1918, \n 495, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1919, 496, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1920, 497, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1921, 498, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1922, 499, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1923, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1924, 501, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1925, 502, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1926, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1927, 504, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1928, \n 505, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1929, 506, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1930, 507, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1931, 508, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1932, 509, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1933, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1934, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1935, 512, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1936, 513, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1937, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1938, \n 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1939, 516, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1940, 517, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1941, 518, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1942, 519, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1943, 520, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1944, 521, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1945, 522, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1946, 523, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1947, 524, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1948, \n 525, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1949, 526, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1950, 527, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1951, 528, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1952, 529, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1953, 530, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1954, 531, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1955, 532, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1956, 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1957, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1958, \n 535, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1959, 536, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1960, 537, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1961, 538, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1962, 539, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1963, 540, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1964, 541, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1965, 542, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1966, 543, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1967, 544, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1968, \n 545, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1969, 546, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1970, 547, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1971, 548, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1972, 549, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1973, 550, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1974, 551, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1975, 552, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1976, 553, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1977, 554, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1978, \n 555, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1979, 556, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1980, 557, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1981, 558, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1982, 559, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1983, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1984, 561, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1985, 562, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1986, 563, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1987, 564, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1988, \n 565, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1989, 566, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1990, 567, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1991, 568, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1992, 569, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1993, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1994, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1995, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1996, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1997, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1998, \n 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1999, 576, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2000, 577, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2001, 578, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [2002, 579, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [2003, 580, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [2004, 581, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [2005, 582, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [2006, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 2007, 584, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2008, \n 585, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1, 490, 0, \n 0.01433884297520661, 0.151691958358336, 991.0, 991.0, 991.0, 0, 2, 1, -\n 360, 43.375], [3, 4, 0, 0.006291637811634348, 0.903417549506624, 3423.0,\n 3423.0, 3423.0, 0, 2, 1, -360, 72.681], [491, 6, 0, \n 0.011200661157024791, 0.118492839955776, 991.0, 991.0, 991.0, 0, 2, 1, \n -360, 33.882], [7, 5, 0, 0.005794840720221606, 0.20802058859584005, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.471], [8, 9, 0, \n 0.0024379328254847646, 0.350063268897336, 3423.0, 3423.0, 3423.0, 0, 1,\n 1, -360, 28.163], [492, 11, 0, 0.018224793388429753, 0.0482004476327704,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.565], [11, 493, 0, \n 0.030286942148760328, 0.08010209706571599, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 45.809], [492, 493, 0, 0.04521652892561983, 0.11958747011094399, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 68.39], [494, 14, 0, \n 0.012990743801652892, 0.137430291356512, 991.0, 991.0, 991.0, 0, 2, 1, \n -360, 39.297], [13, 15, 0, 0.007681959833795014, 0.27576354266704156, \n 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 44.371], [16, 5, 0, \n 0.006275623268698061, 0.22527950450957998, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 36.248000000000005], [17, 18, 0, 0.04623522622347646, \n 0.9335989000302801, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 200.291], [\n 17, 12, 0, 0.0056020313942728535, 0.113118303398186, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 24.268], [14, 495, 0, 0.0017957024793388433, \n 0.018996904156819597, 991.0, 991.0, 991.0, 0, 1, 1, -360, 5.432], [494,\n 19, 0, 0.010246611570247935, 0.10839986031771602, 991.0, 991.0, 991.0, \n 0, 1, 1, -360, 30.996], [20, 21, 0, 0.005415685595567867, \n 0.19440984828307922, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 31.281], [\n 20, 22, 0, 0.0049706544321329645, 0.713737278110032, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 57.42100000000001], [497, 23, 0, \n 0.002190413223140496, 0.005793146490362, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 3.313], [23, 499, 0, 0.020799669421487598, 0.22004164444829602, \n 991.0, 991.0, 991.0, 0, 1, 1, -360, 62.919], [25, 26, 0, \n 0.00141845567867036, 0.050919084651523595, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 8.193], [25, 22, 0, 0.0035578254847645433, 0.0319293051869808,\n 856.0, 856.0, 856.0, 0, 1, 1, -360, 10.275], [23, 27, 0, \n 0.027738181818181818, 0.073361203699828, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 41.95399999999999], [28, 23, 0, 0.012841652892561981, \n 0.0339632611780132, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.423], [8, 21,\n 0, 0.004948753462603878, 0.17764812836304802, 1711.0, 1711.0, 1711.0, 0,\n 2, 1, -360, 28.584], [9, 29, 0, 0.002212863573407202, \n 0.31774552934092004, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 25.563000000000002], [30, 25, 0, 0.019958795013850415, \n 0.17911796401827998, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 57.641000000000005], [31, 32, 0, 0.0299776084949446, 0.605319030583196,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 129.863], [32, 33, 0, \n 0.016762234533725762, 0.33846927983213604, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 72.61399999999999], [34, 35, 0, 0.001931900826446281, \n 0.020437759184893597, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 5.843999999999999], [35, 36, 0, 0.0008730578512396695, \n 0.0092361605077588, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.641], [490, 6,\n 0, 0.049352066115702475, 0.130525028606764, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 74.645], [37, 10, 0, 0.02404639889196676, 0.485553838251812, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 104.169], [10, 38, 0, \n 0.006848799630657894, 0.13829351176534158, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 29.669], [37, 38, 0, 0.01437834718372576, 1.1613317560186958, \n 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 124.574], [39, 40, 0, \n 0.04521629732222991, 0.913024308337812, 1283.0, 1283.0, 1283.0, 0, 1, 1,\n -360, 195.877], [39, 41, 0, 0.017466989843005543, 0.35269996139852006, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 75.667], [42, 41, 0, \n 0.031145429362880884, 0.6289001042979919, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 134.922], [18, 42, 0, 0.03439750692520776, 0.6945672650962679,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 149.01], [492, 43, 0, \n 0.01819173553719008, 0.192452068436848, 991.0, 991.0, 991.0, 0, 2, 1, -\n 360, 55.03], [44, 45, 0, 0.02562314049586777, 0.067767398802972, 495.0,\n 495.0, 495.0, 0, 1, 1, -360, 38.755], [44, 505, 0, 0.006061487603305785,\n 0.0160312607980052, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.168], [46, 12,\n 0, 0.0014741170360110802, 0.2116687641962416, 3423.0, 3423.0, 3423.0, 0,\n 2, 1, -360, 17.029], [47, 48, 0, 0.005344182825484765, \n 0.01199019212302604, 428.0, 428.0, 428.0, 0, 1, 1, -360, \n 7.7170000000000005], [49, 50, 0, 0.0019151662049861494, \n 0.0171874439892256, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 5.531000000000001], [31, 33, 0, 0.013475992613088641, \n 0.27211225959163604, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 58.378], [\n 31, 51, 0, 0.003518611495844875, 0.5052381383693519, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 40.647], [52, 53, 0, 0.010464421745152355, \n 1.5025884408875438, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 120.885], [\n 52, 54, 0, 0.0076126500461911354, 0.1537174637168, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 32.978], [506, 55, 0, 0.012634380165289257, \n 0.133660287181212, 991.0, 991.0, 991.0, 0, 1, 1, -360, 38.219], [506, \n 507, 0, 0.044157355371900825, 0.11678619613628, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 66.788], [57, 506, 0, 0.004687272727272727, \n 0.049587095736244, 991.0, 991.0, 991.0, 0, 1, 1, -360, 14.179], [57, 58,\n 0, 0.014436363636363634, 0.0381809096340232, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 21.835], [58, 506, 0, 0.019797685950413223, 0.052360391943288,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 29.944000000000003], [59, 60, 0, \n 0.019407548476454296, 0.174170863885556, 856.0, 856.0, 856.0, 0, 1, 1, \n -360, 56.049], [508, 62, 0, 0.051111404958677685, 0.03379452026753001, \n 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.653], [30, 61, 0, \n 0.03143698060941828, 0.28212765137935203, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 90.79], [63, 506, 0, 0.027457190082644623, 0.072618044249872, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 41.528999999999996], [13, 64, 0, \n 0.0014816481994459833, 0.2127501654814608, 3423.0, 3423.0, 3423.0, 0, 2,\n 1, -360, 17.116], [65, 66, 0, 0.03778185595567867, 0.7629053006222161, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 163.671], [59, 67, 0, \n 0.0051880193905817175, 0.046559297286324804, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 14.982999999999999], [61, 67, 0, 0.012931440443213295, \n 0.1160517597580644, 856.0, 856.0, 856.0, 0, 1, 1, -360, 37.346], [68, \n 69, 0, 0.011149584487534626, 0.4002427745096039, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 64.4], [70, 69, 0, 0.009625346260387812, \n 0.345526355460808, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 55.596000000000004], [71, 72, 0, 0.008878635734072021, \n 0.318721276477736, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.283], [73,\n 74, 0, 0.012529547553116345, 0.253001288604392, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 54.278], [37, 75, 0, 0.027459141274238225, \n 0.5544652029066119, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 118.95299999999999], [72, 75, 0, 0.006688711911357341, \n 0.240108375006292, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 38.634], [37,\n 72, 0, 0.036222068328739615, 0.7314094881920841, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 156.914], [76, 77, 0, 0.004683777700831025, \n 0.6725445900750401, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 54.107], [77,\n 51, 0, 0.00363183864265928, 0.5214964473447999, 3423.0, 3423.0, 3423.0,\n 0, 2, 1, -360, 41.955], [73, 72, 0, 0.025475069252077563, \n 0.514402082018968, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 110.35799999999999], [18, 40, 0, 0.01302770083102493, 0.26306018504072,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 56.43600000000001], [492, 45, 0,\n 0.0308703030303719, 0.18370114733484796, 743.0, 743.0, 743.0, 0, 1, 1, \n -360, 70.03699999999999], [10, 74, 0, 0.030167359187465374, \n 0.609150547206812, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 130.685], [45,\n 511, 0, 0.08203371900826446, 0.05424014819960001, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 62.038000000000004], [78, 32, 0, 0.013458795013850415, \n 0.48313777647302397, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 77.738], [\n 79, 80, 0, 0.0038086911357340715, 0.1367226831743568, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 21.999000000000002], [81, 79, 0, \n 0.010767832409972299, 0.3865388099484561, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 62.195], [34, 82, 0, 0.0015497520661157025, \n 0.00409874294399768, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.344], [83, \n 84, 0, 0.00902611570247934, 0.0238720301499152, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 13.652000000000001], [83, 499, 0, 0.04179570247933885, \n 0.0276350398834796, 248.0, 248.0, 248.0, 0, 1, 1, -360, 31.608], [85, \n 86, 0, 0.00802354570637119, 0.28802563884886, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 46.343999999999994], [87, 86, 0, 0.01904968836565097, \n 0.683837154069184, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 110.031], [88,\n 89, 0, 0.00380297520661157, 0.010058007429140002, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 5.752000000000001], [90, 86, 0, 0.012097818559556786, \n 0.434282055192244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 69.877], [91,\n 86, 0, 9.26246537396122e-05, 0.013299992817559201, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 1.07], [86, 92, 0, 0.0001852493074792244, \n 0.0066499964087796005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.07], [\n 86, 93, 0, 0.008152181440443215, 0.292643346635492, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 47.086999999999996], [94, 86, 0, \n 0.012883829639889197, 0.46249792780547194, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 74.417], [86, 95, 0, 0.010421052631578947, 0.37409026526870803,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 60.192], [513, 517, 0, \n 0.0008733884297520661, 0.0023099144321748, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 1.321], [97, 66, 0, 0.03812777008310249, 0.34217338998058805, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 110.113], [42, 98, 0, \n 0.003091759002770083, 0.44394630230884, 3423.0, 3423.0, 3423.0, 0, 2, 1,\n -360, 35.716], [99, 100, 0, 0.016371537396121884, 0.587698093837988, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 94.56200000000001], [42, 101, 0,\n 0.008165339335180054, 0.29311568282888, 1711.0, 1711.0, 1711.0, 0, 1, 1,\n -360, 47.163000000000004], [102, 42, 0, 0.012403047091412742, \n 0.44523901189173193, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 71.64], [\n 103, 87, 0, 0.007073060941828254, 0.25390556381756, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 40.854], [104, 103, 0, 0.0028852146814404432, \n 0.1035721403291428, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.665], [\n 105, 87, 0, 0.006406682825484765, 0.22998422159488002, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 37.005], [106, 107, 0, 0.005714219759923823, \n 0.11538365264216799, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.754], [\n 108, 107, 0, 0.0025427631578947367, 0.09127896939786201, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 14.687000000000001], [109, 106, 0, \n 0.003030470914127424, 0.10878648330773438, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 17.504], [110, 111, 0, 0.019821849030470913, \n 0.7115558306889919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 114.491], [\n 87, 112, 0, 0.006135907202216068, 0.220264039928212, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 35.441], [113, 87, 0, 0.003981648199445983, \n 0.14293141813921081, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 22.998], [\n 87, 85, 0, 0.011046225761772853, 0.3965324494097, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 63.803000000000004], [110, 114, 0, \n 0.011665339335180056, 0.418757110306188, 1711.0, 1711.0, 1711.0, 0, 1, \n 1, -360, 67.37899999999999], [115, 116, 0, 0.007048925619834712, \n 0.07457124214588401, 991.0, 991.0, 991.0, 0, 1, 1, -360, 21.323], [117,\n 118, 0, 0.005987534626038782, 0.21493782785077598, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 34.584], [117, 119, 0, 0.0038738746537396117, \n 0.5562504472696961, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 44.751000000000005], [117, 120, 0, 0.005886686288088643, \n 0.8452704781039522, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 68.003], [\n 121, 122, 0, 0.0021170360110803325, 0.0759964075574972, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 12.228], [123, 124, 0, 0.0018386426592797783, \n 0.0660027680945204, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 10.62], [125,\n 126, 0, 0.004941135734072022, 0.17737467056702802, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 28.54], [127, 119, 0, 0.0029027008310249305, \n 0.1041998502705648, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.766], [\n 118, 128, 0, 0.007397160664819945, 0.265539950057812, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 42.726000000000006], [121, 119, 0, \n 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 14.743], [530, 527, 0, 0.022726611570247933, \n 0.060106736329903994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 34.374], [125,\n 130, 0, 0.002931440443213297, 0.105231531956442, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 16.932000000000002], [125, 123, 0, 0.0019078081717451524,\n 0.2739425623421336, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 22.039], [\n 131, 132, 0, 0.0035744459833795014, 0.12831385593973843, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 20.646], [133, 123, 0, 0.003864439058171745, \n 0.13872389704704202, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 22.320999999999998], [524, 134, 0, 0.008092231404958678, \n 0.08560847143881999, 991.0, 991.0, 991.0, 0, 1, 1, -360, 24.479], [135,\n 136, 0, 0.005242901662049862, 0.1882073282678, 1711.0, 1711.0, 1711.0, \n 0, 1, 1, -360, 30.283], [123, 131, 0, 0.003138331024930748, \n 0.1126583971045252, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.127], [\n 117, 128, 0, 0.010800034626038782, 0.38769479063117196, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 62.381], [137, 521, 0, 0.013832396694214875, \n 0.14633421587532003, 991.0, 991.0, 991.0, 0, 2, 1, -360, 41.843], [531,\n 514, 0, 0.0059504132231404955, 0.035409362037522, 743.0, 743.0, 743.0, \n 0, 1, 1, -360, 13.5], [139, 521, 0, 0.021257520661157023, \n 0.05622132386323199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.152], [140,\n 514, 0, 0.018527603305785127, 0.04900131122836401, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 28.023000000000003], [522, 141, 0, 0.012168595041322314,\n 0.032183175718526795, 495.0, 495.0, 495.0, 0, 1, 1, -360, 18.405], [142,\n 523, 0, 0.007060165289256198, 0.0746901476577608, 991.0, 991.0, 991.0, \n 0, 2, 1, -360, 21.357], [530, 526, 0, 0.020281652892561983, \n 0.053640374808152, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.676], [140, \n 532, 0, 0.004669090909090909, 0.0123486871461184, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 7.062], [142, 144, 0, 0.006678126721756199, \n 0.0397397958689204, 743.0, 743.0, 743.0, 0, 1, 1, -360, 15.151], [140, \n 522, 0, 0.020450247933884298, 0.05408627047793199, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 30.930999999999997], [145, 146, 0, 0.028527603305785125,\n 0.07544904460236, 495.0, 495.0, 495.0, 0, 1, 1, -360, 43.148], [147, \n 523, 0, 0.02461289256198347, 0.0650955220034416, 495.0, 495.0, 495.0, 0,\n 2, 1, -360, 37.227], [144, 523, 0, 0.008479338842975206, \n 0.0224259292904064, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.825], [139, \n 523, 0, 0.029245619834710742, 0.0193370088934308, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 22.116999999999997], [140, 141, 0, 0.008362975206611572,\n 0.022118173847506, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 12.649000000000001], [528, 526, 0, 0.015389090909090908, \n 0.0407006573227188, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.276], [528, \n 148, 0, 0.014306115702479338, 0.0378364333712244, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 21.638], [149, 150, 0, 0.013604628099173552, \n 0.035981157661543604, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 20.576999999999998], [145, 528, 0, 0.00320595041322314, \n 0.0084790121737992, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.849], [530, \n 151, 0, 0.013144462809917355, 0.0347641247737036, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 19.881], [524, 152, 0, 0.014598347107438016, \n 0.03860931919944, 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.08], [149, 525,\n 0, 0.016897190082644627, 0.17875695122823998, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 51.114], [139, 514, 0, 0.007824132231404959, \n 0.020693056313687997, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 11.834000000000001], [126, 120, 0, 0.012780297783933518, \n 0.458781387757004, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.819], [530,\n 153, 0, 0.02254545454545455, 0.059627617060924, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 34.1], [528, 147, 0, 0.15786710743801652, 0.104380679149868,\n 248.0, 248.0, 248.0, 0, 1, 1, -360, 119.387], [528, 154, 0, \n 0.006528264462809917, 0.017265779790547203, 495.0, 495.0, 495.0, 0, 2, \n 1, -360, 9.874], [130, 120, 0, 0.01450502077562327, 0.5206947188067639,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 83.781], [528, 155, 0, \n 0.16064132231404957, 0.1062149715341, 248.0, 248.0, 248.0, 0, 1, 1, -\n 360, 121.485], [524, 533, 0, 0.004432727272727273, 0.0468942356109744, \n 991.0, 991.0, 991.0, 0, 1, 1, -360, 13.409], [524, 149, 0, \n 0.0056413223140495865, 0.05968007537478799, 991.0, 991.0, 991.0, 0, 2, \n 1, -360, 17.065], [154, 150, 0, 0.007539173553719007, \n 0.0199394052006688, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 11.402999999999999], [157, 110, 0, 0.009962084487534625, \n 0.357614433044424, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 57.541000000000004], [119, 158, 0, 0.0002490189289012004, \n 0.08045252664623159, 5134.0, 5134.0, 5134.0, 0, 3, 1, -360, 4.315], [\n 159, 60, 0, 0.010967451523545706, 0.0984261617997728, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 31.674], [536, 161, 0, 0.021314380165289255, \n 0.056371704363524, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.238], [115, \n 151, 0, 0.00379404958677686, 0.0401376047510724, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 11.477], [162, 134, 0, 0.0015910743801652895, \n 0.016832124393744, 991.0, 991.0, 991.0, 0, 2, 1, -360, 4.813], [115, \n 526, 0, 0.0037884297520661154, 0.010019537998747198, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 5.73], [138, 87, 0, 0.0011838642659279777, \n 0.16999131006813442, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 13.675999999999998], [123, 163, 0, 0.0022778739612188364, \n 0.08177009602828919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.157], [\n 112, 164, 0, 0.0008672957063711912, 0.12453516639176802, 3423.0, 3423.0,\n 3423.0, 0, 2, 1, -360, 10.019], [112, 165, 0, 0.005989439058171744, \n 0.21500619230086396, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.595], [\n 166, 165, 0, 0.002632790858725762, 0.09451074335350361, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 15.207], [167, 537, 0, 0.00832595041322314, \n 0.08808100664460242, 991.0, 991.0, 991.0, 0, 2, 1, -360, 25.186], [168,\n 104, 0, 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 14.743], [531, 520, 0, 0.016156694214876033, \n 0.042730794079516396, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 24.436999999999998], [139, 520, 0, 0.010682314049586776, \n 0.0282522993797748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.157], [520, \n 169, 0, 0.0011328925619834712, 0.0119849761681232, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 3.427], [168, 105, 0, 0.007340893351800554, \n 0.26352009133553606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 42.401], [\n 520, 170, 0, 0.005842644628099174, 0.015452470732151198, 495.0, 495.0, \n 495.0, 0, 2, 1, -360, 8.837], [171, 89, 0, 0.005505454545454546, \n 0.058242717567848004, 991.0, 991.0, 991.0, 0, 1, 1, -360, 16.654], [521,\n 172, 0, 0.006304793388429752, 0.06669899780522001, 991.0, 991.0, 991.0,\n 0, 1, 1, -360, 19.072], [123, 173, 0, 0.005247403047091413, \n 0.18836891696656402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.309], [\n 521, 174, 0, 0.013300495867768597, 0.035176796844864404, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 20.117], [37, 39, 0, 0.004338873499549862, \n 0.35044859579205606, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 37.592], [\n 530, 175, 0, 0.013128595041322313, 0.0347221581224188, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 19.857], [530, 176, 0, 0.005685289256198347, \n 0.01503630144005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.599], [88, 530,\n 0, 0.006015867768595041, 0.0159106066755372, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 9.099], [177, 496, 0, 0.018632066115702478, \n 0.19711036673178398, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 56.361999999999995], [178, 525, 0, 0.03106842975206612, \n 0.08216895464241199, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 46.99100000000001], [179, 493, 0, 0.057079669421487594, \n 0.15096278779194802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.333], [180,\n 181, 0, 0.041027438016528923, 0.10850827416682, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 62.053999999999995], [182, 180, 0, 0.00866314049586777, \n 0.09164817200545601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 26.206], [179,\n 181, 0, 0.01957223140495868, 0.051764115772731996, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 29.603], [180, 493, 0, 0.06676561983471074, \n 0.17657993119175203, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 100.98299999999999], [183, 30, 0, 0.0024804362880886427, \n 0.356166349712776, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 28.654], [183,\n 21, 0, 0.0025647506925207757, 0.36827307214930394, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 29.628], [538, 185, 0, 0.018631404958677687, \n 0.0123189607681008, 248.0, 248.0, 248.0, 0, 1, 1, -360, 14.09], [538, \n 89, 0, 0.014509752066115702, 0.038375005396288, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 21.945999999999998], [184, 186, 0, 0.0016554709141274237, \n 0.059427351084826, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 9.562000000000001], [184, 187, 0, 0.002698753462603878, \n 0.09687863927102919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 15.588], [\n 520, 172, 0, 0.0034188429752066113, 0.0361682589818792, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 10.342], [89, 175, 0, 0.0037309090909090903, \n 0.0098674088877672, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.643], [185, \n 89, 0, 0.005812892561983471, 0.0153737832609196, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 8.792], [89, 188, 0, 0.003108760330578513, \n 0.008221966434607202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.702], [189,\n 190, 0, 0.008599492151454294, 0.17364414688031998, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 37.253], [539, 172, 0, 0.0021570247933884296, \n 0.022819366646419197, 991.0, 991.0, 991.0, 0, 2, 1, -360, 6.525], [504,\n 192, 0, 0.0003084297520661157, 0.00326290713886456, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 0.9329999999999999], [105, 186, 0, 0.003273372576177285,\n 0.1175060580379876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.907], [\n 105, 187, 0, 0.0021712257617728533, 0.0779416868808324, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 12.540999999999999], [539, 193, 0, \n 0.005608595041322314, 0.01483346262541, 495.0, 495.0, 495.0, 0, 1, 1, -\n 360, 8.482999999999999], [187, 194, 0, 4.8649584487534626e-05, \n 0.0069856037041576, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.562], [539,\n 540, 0, 0.004394710743801653, 0.0116230138006708, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.647], [539, 196, 0, 0.00332297520661157, \n 0.008788516227194, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.026], [197, \n 540, 0, 0.004737190082644629, 0.012528794024621601, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 7.165], [110, 198, 0, 0.00018724030470914128, \n 0.02688587333118328, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 2.1630000000000003], [197, 539, 0, 0.009172231404958677, \n 0.024258473063998802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 13.873], [199,\n 537, 0, 0.03612826446280991, 0.0238877676441712, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 27.322], [134, 526, 0, 0.007771239669421488, \n 0.020553167475975197, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 11.754000000000001], [200, 193, 0, 0.0009322314049586776, \n 0.009862163056380801, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.82], [4, \n 201, 0, 0.013726108033240996, 0.49273365914097605, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 79.282], [202, 86, 0, 0.00013365650969529087, \n 0.00479794133417816, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.772], [85,\n 203, 0, 0.0019011426592797783, 0.2729854600553416, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 21.962], [147, 204, 0, 0.0073874380165289254, \n 0.0781523963903056, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 22.346999999999998], [147, 205, 0, 0.005959669421487603, \n 0.00394049369636956, 248.0, 248.0, 248.0, 0, 1, 1, -360, 4.507], [123, \n 206, 0, 0.0005753116343490305, 0.0826091142668064, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 6.646], [537, 207, 0, 0.018456198347107437, \n 0.048812461297776, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.915], [165, \n 208, 0, 0.00414612188365651, 0.14883562055771601, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 23.948], [4, 94, 0, 0.013687673130193905, \n 0.49135394025941603, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 79.06], [4,\n 2, 0, 5.2054478301015697e-05, 0.016817654469309, 5134.0, 5134.0, 5134.0,\n 0, 3, 1, -360, 0.902], [209, 4, 0, 0.0022369286703601107, \n 0.32120104149338397, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 25.840999999999998], [119, 163, 0, 0.003535145429362881, \n 0.12690306230914922, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.419], [\n 210, 3, 0, 0.0003150969529085873, 0.011311208844832242, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 1.82], [99, 211, 0, 0.0035045013850415513, \n 0.1258030161741948, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.242], [99,\n 69, 0, 0.021717970914127423, 0.7796219621557, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 125.443], [212, 99, 0, 0.008453774238227147, \n 0.30346978938770003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 48.82899999999999], [213, 214, 0, 0.01490115702479339, \n 0.15764073118032798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 45.076], [510,\n 215, 0, 0.002174710743801653, 0.09202587186721281, 1981.0, 1981.0, \n 1981.0, 0, 4, 1, -360, 13.157], [128, 69, 0, 0.010711651662049862, \n 1.538088234801848, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 123.741], [\n 216, 69, 0, 0.009628462603878117, 1.3825528982351443, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 111.228], [217, 98, 0, 0.0012787396121883656, \n 0.045903620070299994, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 7.386], [\n 504, 218, 0, 0.027480991735537193, 0.072680994226412, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 41.565], [177, 504, 0, 0.07054809917355372, \n 0.18658373169634002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 106.704], [219,\n 209, 0, 0.003938798476454294, 0.5655728721401839, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 45.501000000000005], [219, 220, 0, \n 0.0013026315789473684, 0.1870451326342096, 3423.0, 3423.0, 3423.0, 0, 2,\n 1, -360, 15.048], [94, 95, 0, 0.01070740997229917, 0.38436979242743197,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 61.846000000000004], [159, 221, \n 0, 0.009937153739612188, 0.356719480257712, 1711.0, 1711.0, 1711.0, 0, \n 2, 1, -360, 57.397], [34, 161, 0, 0.010965289256198347, \n 0.116002818645824, 991.0, 991.0, 991.0, 0, 2, 1, -360, 33.17], [222, \n 221, 0, 0.0046457756232686975, 0.16677196601221997, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 26.834], [211, 52, 0, 0.05267313019390582, \n 0.472709090515552, 856.0, 856.0, 856.0, 0, 1, 1, -360, 152.12], [215, \n 223, 0, 0.04873190082644628, 0.128884831985184, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 73.707], [224, 215, 0, 0.019086280991735535, \n 0.050478887076288004, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 28.868000000000002], [225, 224, 0, 0.04200925619834711, \n 0.11110496071615601, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 63.538999999999994], [224, 223, 0, 0.031061818181818183, \n 0.082151468537468, 495.0, 495.0, 495.0, 0, 1, 1, -360, 46.981], [226, 6,\n 0, 0.06420099173553719, 0.0424492677936932, 248.0, 248.0, 248.0, 0, 1, \n 1, -360, 48.552], [7, 3, 0, 0.009332929362880887, 0.335029305054692, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 53.907], [216, 227, 0, \n 0.01989941135734072, 0.7143401282507, 1711.0, 1711.0, 1711.0, 0, 1, 1, \n -360, 114.939], [228, 229, 0, 0.010545454545454545, 0.027890337012274, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 15.95], [227, 230, 0, \n 0.003993074792243767, 0.573366419334696, 3423.0, 3423.0, 3423.0, 0, 2, \n 1, -360, 46.128], [231, 53, 0, 0.007193213296398893, 1.0328749562310842,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 83.096], [544, 545, 0, \n 0.013061818181818181, 0.034545548464856, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 19.756], [234, 235, 0, 0.04608859504132231, 0.121893887321888, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 69.709], [546, 214, 0, \n 0.057025454545454546, 0.15081940173295602, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 86.251], [233, 227, 0, 0.0029001038781163438, 0.1041066260218888,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.750999999999998], [237, 238, \n 0, 0.026324628099173554, 0.06962267451304, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 39.816], [212, 100, 0, 0.007955505540166205, 0.285583163531816, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 45.951], [519, 239, 0, \n 0.01740429752066116, 0.046030422038308406, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 26.324], [238, 519, 0, 0.015166280991735538, 0.040111375593995205,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.939], [213, 240, 0, \n 0.01665388429752066, 0.04404574915373599, 1200.0, 1200.0, 1200.0, 0, 1,\n 1, -360, 25.189], [241, 242, 0, 0.009862015235457064, \n 0.3540221919932281, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 56.963], [70,\n 241, 0, 0.003819858033240997, 0.5484941897752321, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 44.126999999999995], [509, 213, 0, \n 0.011363636363636364, 0.120216969880216, 991.0, 991.0, 991.0, 0, 2, 1, \n -360, 34.375], [68, 243, 0, 0.003611668975069252, 0.1296500701715312, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.861], [243, 244, 0, \n 0.0007699099722991691, 0.027637882270859202, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 4.447], [68, 244, 0, 0.004104051246537396, \n 0.147325387728876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 23.705], [544,\n 547, 0, 0.02418776859504132, 0.255884661882476, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 73.168], [245, 227, 0, 0.012676419667590028, \n 0.45505241780707606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.219], [\n 246, 208, 0, 0.0010155817174515235, 0.0364568961999408, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 5.8660000000000005], [112, 208, 0, \n 0.0017927631578947367, 0.0643558063672372, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 10.355], [165, 247, 0, 0.0002113919667590028, \n 0.0075884538459086, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 1.2209999999999999], [537, 549, 0, 0.00032066115702479337, \n 0.00084807607842936, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.485], [537, \n 550, 0, 0.00032198347107438016, 0.0008515732993697601, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.48700000000000004], [537, 551, 0, \n 0.0002651239669421488, 0.0007011927988648, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 0.401], [110, 251, 0, 0.00023857340720221602, \n 0.008564200982522441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 1.3780000000000001], [510, 252, 0, 0.08467702479338843, \n 0.055987884365424005, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 64.03699999999999], [529, 253, 0, 0.04859504132231405, \n 0.12852286961777998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 73.5], [237, \n 239, 0, 0.03309421487603306, 0.08752669712542799, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 50.055], [254, 238, 0, 0.07815008264462811, \n 0.05167231372274401, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 59.101000000000006], [69, 255, 0, 0.0009369806094182826, \n 0.134541235754472, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 10.824000000000002], [510, 225, 0, 0.021953719008264466, \n 0.232250442756508, 991.0, 991.0, 991.0, 0, 1, 1, -360, 66.41], [256, \n 257, 0, 0.010125619834710746, 0.0267799693631888, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 15.315], [258, 190, 0, 0.011717451523545707, \n 0.10515695255750121, 856.0, 856.0, 856.0, 0, 1, 1, -360, 33.84], [258, \n 259, 0, 0.015782548476454293, 0.1416387085570408, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 45.58], [260, 261, 0, 0.006791031855955679, \n 0.9751256416231477, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 78.45], [554,\n 553, 0, 0.17583338842975205, 0.11625986438453201, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 132.974], [515, 263, 0, 0.006987107438016529, \n 0.0739172618295936, 991.0, 991.0, 991.0, 0, 2, 1, -360, 21.136], [14, \n 264, 0, 0.01700694214876033, 0.17991802858084, 991.0, 991.0, 991.0, 0, \n 1, 1, -360, 51.446000000000005], [116, 555, 0, 0.0009768595041322315, \n 0.0103342878835768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.955], [151, \n 116, 0, 0.007244958677685951, 0.0191612735410668, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 10.958], [111, 114, 0, 0.008806613573407202, \n 0.3161358573133961, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.867], [77,\n 111, 0, 0.00288452216066482, 0.41418912211817605, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 33.321999999999996], [266, 525, 0, \n 0.01042909090909091, 0.027582581569373602, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 15.774000000000001], [267, 120, 0, 0.013136945983379503, \n 0.471584184581432, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 75.87899999999999], [268, 269, 0, 0.0010327272727272726, \n 0.0027313295556817604, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 1.5619999999999998], [556, 271, 0, 0.052289586776859506, \n 0.0345735262323792, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 39.544000000000004], [556, 272, 0, 0.04685355371900827, \n 0.030979257409249603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 35.433], [529,\n 273, 0, 0.0034604958677685953, 0.009152227205140799, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 5.234], [128, 274, 0, 0.0029350761772853184, \n 0.1053620459045884, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.953], [34,\n 275, 0, 0.0008290909090909092, 0.00054818938265696, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 0.627], [503, 276, 0, 0.006707438016528925, \n 0.07095861291266, 991.0, 991.0, 991.0, 0, 2, 1, -360, 20.29], [503, 504,\n 0, 0.06432727272727272, 0.680524223098808, 991.0, 991.0, 991.0, 0, 2, 1,\n -360, 194.59], [177, 218, 0, 0.04330380165289256, 0.114528740018308, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 65.497], [277, 278, 0, \n 0.007191135734072023, 1.032576638635032, 3423.0, 3423.0, 3423.0, 0, 2, \n 1, -360, 83.072], [557, 558, 0, 0.04341289256198347, 0.258338836678648,\n 743.0, 743.0, 743.0, 0, 1, 1, -360, 98.493], [557, 559, 0, \n 0.03415867768595042, 0.09034195998366001, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 51.665], [559, 558, 0, 0.04474314049586777, 0.11833546501370001, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 67.67399999999999], [277, 78, 0, \n 0.03585768698060942, 0.32180078416049196, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 103.557], [277, 279, 0, 0.021390927977839334, 0.191970480441328, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 61.777], [78, 279, 0, \n 0.015811980609418283, 0.1419028439283376, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 45.665], [281, 282, 0, 0.0023178670360110803, 0.08320574945862161,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.388], [283, 161, 0, \n 0.036741157024793386, 0.09717203248350399, 495.0, 495.0, 495.0, 0, 2, 1,\n -360, 55.571000000000005], [268, 161, 0, 0.018883636363636366, \n 0.199771751868832, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 57.123000000000005], [256, 284, 0, 0.010755371900826446, \n 0.113782083346976, 991.0, 991.0, 991.0, 0, 2, 1, -360, 32.535], [515, \n 516, 0, 0.04071140495867769, 0.107672438361532, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 61.576], [263, 516, 0, 0.0030355371900826445, \n 0.128452925198488, 1981.0, 1981.0, 1981.0, 0, 2, 1, -360, 18.365], [516,\n 285, 0, 0.006908429752066116, 0.018271230811372, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 10.449000000000002], [63, 286, 0, 0.019088925619834708, \n 0.050485881518556, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.872], [287, \n 516, 0, 0.01732892561983471, 0.011457770111127998, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 13.105], [8, 102, 0, 0.015100069252077563, \n 0.542055501663692, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 87.21799999999999], [8, 101, 0, 0.019246883656509697, 0.69091598202144,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 111.17], [80, 288, 0, \n 0.007984072022160666, 0.2866086302684072, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 46.11600000000001], [80, 289, 0, 0.0003782317636201524, \n 0.122198345223416, 5134.0, 5134.0, 5134.0, 0, 4, 1, -360, \n 6.553999999999999], [276, 560, 0, 0.01778314049586777, \n 0.047032375838192794, 495.0, 495.0, 495.0, 0, 2, 1, -360, 26.897], [37,\n 290, 0, 0.005629501385041551, 0.4546919507138321, 2567.0, 2567.0, \n 2567.0, 0, 2, 1, -360, 48.773999999999994], [290, 74, 0, \n 0.02071595106187673, 1.673216783321968, 2567.0, 2567.0, 2567.0, 0, 2, 1,\n -360, 179.483], [512, 291, 0, 0.0053299173553719, 0.056385693247479204,\n 991.0, 991.0, 991.0, 0, 2, 1, -360, 16.123], [78, 292, 0, \n 0.0058149815327908595, 0.469673087481408, 2567.0, 2567.0, 2567.0, 0, 2,\n 1, -360, 50.381], [199, 548, 0, 0.0015530578512396695, \n 0.00410748599634868, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.349], [491, \n 293, 0, 0.014176528925619833, 0.009373426429729999, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 10.720999999999998], [4, 294, 0, 9.669321329639889e-05, \n 0.013884198109531681, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 1.117], [\n 490, 541, 0, 0.050580495867768596, 0.133773946861896, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 76.503], [491, 295, 0, 0.010613553719008264, \n 0.028070443890777202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.053], [491,\n 296, 0, 0.004400661157024794, 0.0116387512948784, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.656000000000001], [295, 297, 0, 0.020297520661157024, \n 0.053682341459340005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.7], [508, \n 161, 0, 0.023239669421487603, 0.061463658055360006, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 35.15], [117, 123, 0, 0.005876211911357341, \n 0.21094161505628, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.941], [133,\n 117, 0, 0.004469182825484764, 0.0401081792747688, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 12.907], [71, 74, 0, 0.03904524469065097, \n 0.7884161162841721, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 169.144], [\n 74, 278, 0, 0.0077122576177285325, 1.10740463560792, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 89.09200000000001], [298, 515, 0, \n 0.021701157024793388, 0.05739464148919599, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 32.823], [5, 299, 0, 0.0016232686980609415, 0.058271370400665996,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 9.376], [32, 292, 0, \n 0.009679362880886427, 0.34746541983297996, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 55.908], [5, 29, 0, 0.00743395083102493, 1.0674425076571843, \n 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 85.87700000000001], [503, 560, 0,\n 0.015140495867768593, 0.160172719142436, 991.0, 991.0, 991.0, 0, 1, 1, \n -360, 45.8], [300, 301, 0, 0.004892053324099723, 0.7024509290644521, \n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 56.513000000000005], [51, 300, 0,\n 0.002573493767313019, 0.3695284920307039, 3423.0, 3423.0, 3423.0, 0, 1,\n 1, -360, 29.729], [244, 302, 0, 0.007714508310249307, 1.107727813004004,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 89.118], [31, 302, 0, \n 0.004369113573407203, 0.6273619041941161, 3423.0, 3423.0, 3423.0, 0, 1,\n 1, -360, 50.472], [51, 282, 0, 0.006288434903047093, 0.9029576432132521,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 72.64399999999999], [303, 304, 0,\n 8.795013850415512e-05, 0.000789298639172312, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 0.254], [305, 304, 0, 0.003881117266849031, 0.0783689646873844,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 16.813], [305, 259, 0, 0.0025625,\n 0.36794989475177603, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 29.601999999999997], [306, 307, 0, 0.03223268698060942, \n 0.289268628831688, 856.0, 856.0, 856.0, 0, 1, 1, -360, 93.088], [305, \n 308, 0, 0.0024272853185595567, 0.0217833994511184, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 7.01], [305, 309, 0, 0.011014773776523545, \n 0.22241441259921202, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 47.716], [\n 310, 309, 0, 0.009565962603878117, 0.343394627639832, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 55.253], [306, 309, 0, 0.035333795013850415, \n 0.31709917455019604, 856.0, 856.0, 856.0, 0, 1, 1, -360, 102.044], [311,\n 280, 0, 0.003433691135734072, 0.1232611016590444, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 19.833], [280, 278, 0, 0.009749769159764544, \n 0.7874838737974121, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, \n 84.47200000000001], [311, 32, 0, 0.01205909510619806, \n 0.9740069506375919, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 104.48], [13,\n 312, 0, 0.0043324965373961214, 0.622104056565324, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 50.049], [313, 314, 0, 0.006092624653739613, \n 0.218710302449316, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.191], [312,\n 313, 0, 0.00893957756232687, 0.32090893884734, 1711.0, 1711.0, 1711.0, \n 0, 1, 1, -360, 51.635], [547, 566, 0, 0.027035702479338848, \n 0.286013220297816, 991.0, 991.0, 991.0, 0, 1, 1, -360, 81.783], [245, \n 315, 0, 0.014162569252077564, 0.508401547875772, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 81.803], [312, 316, 0, 8.803670360110802e-05, \n 0.01264120812658816, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.0170000000000001], [312, 314, 0, 0.005339854570637119, \n 0.191687700220296, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 30.843000000000004], [554, 546, 0, 0.08174743801652892, \n 0.21620344446439202, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 123.64299999999999], [262, 216, 0, 0.042641966759002774, \n 0.38268554099981195, 856.0, 856.0, 856.0, 0, 1, 1, -360, 123.15], [317,\n 233, 0, 0.005647276084951523, 0.114031901035644, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 24.464000000000002], [318, 317, 0, 0.008311634349030471,\n 0.16783161497270002, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 36.006], [\n 231, 52, 0, 0.035263677285318554, 1.2658796434850879, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 203.683], [319, 567, 0, 0.006089586776859504, \n 0.0644223069721, 991.0, 991.0, 991.0, 0, 1, 1, -360, 18.421], [557, 321,\n 0, 0.010004628099173555, 0.10583989458750401, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 30.264], [277, 65, 0, 0.009430170821779778, 0.7616700793261759,\n 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 81.703], [322, 288, 0, \n 0.006545013850415513, 0.528637424797136, 2567.0, 2567.0, 2567.0, 0, 2, \n 1, -360, 56.706], [322, 323, 0, 0.0018503000923372577, 0.14944779312484,\n 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 16.031], [277, 324, 0, \n 0.019719529085872576, 0.39818407235049996, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 85.425], [324, 325, 0, 0.01103508771932133, \n 0.22282459929396403, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 47.803999999999995], [277, 325, 0, 0.008665743305609418, \n 0.174981914850048, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 37.54], [326,\n 327, 0, 0.007654214876033058, 0.0202436634226288, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 11.577], [328, 326, 0, 0.10300958677685952, \n 0.068109252150368, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 77.90100000000001], [328, 327, 0, 0.09827173553719008, \n 0.064976616491468, 248.0, 248.0, 248.0, 0, 1, 1, -360, 74.318], [326, \n 329, 0, 0.028062148760330575, 0.07421802283046801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 42.443999999999996], [568, 329, 0, 0.05699900826446282, \n 0.15074945731414802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.211], [568,\n 326, 0, 0.03218644628099173, 0.08512585494846397, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 48.681999999999995], [332, 78, 0, 0.006471029547541551, \n 0.522661750455416, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 56.065], [333,\n 306, 0, 0.008580159279778392, 0.308006702824228, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 49.559], [332, 333, 0, 0.007504674515235457, \n 0.26939943395502003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 43.347], [\n 332, 334, 0, 0.017124653739612188, 0.15368328149175597, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 49.456], [66, 334, 0, 0.030625, \n 0.27484062260471603, 856.0, 856.0, 856.0, 0, 1, 1, -360, 88.445], [330,\n 335, 0, 0.00550536703601108, 0.790516769355108, 3423.0, 3423.0, 3423.0,\n 0, 1, 1, -360, 63.598], [336, 66, 0, 0.015054362880886425, \n 0.1351036887216764, 856.0, 856.0, 856.0, 0, 1, 1, -360, 43.477], [330, \n 336, 0, 0.039036357340720224, 0.350327404269788, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 112.73700000000001], [68, 70, 0, 0.016314058171745152, \n 0.14640868261713597, 856.0, 856.0, 856.0, 0, 1, 1, -360, 47.115], [509,\n 337, 0, 0.03494082644628099, 0.09241056617056001, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 52.848], [324, 288, 0, 0.012627423822714683, \n 0.11332339674541761, 856.0, 856.0, 856.0, 0, 1, 1, -360, 36.468], [338,\n 559, 0, 0.009228099173553718, 0.097624922595552, 991.0, 991.0, 991.0, 0,\n 2, 1, -360, 27.915], [339, 559, 0, 0.03560595041322315, \n 0.023542417076125203, 248.0, 248.0, 248.0, 0, 1, 1, -360, 26.927], [339,\n 340, 0, 0.08711537190082644, 0.23040041287850396, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 131.762], [559, 340, 0, 0.20983272727272728, \n 0.138740000599684, 248.0, 248.0, 248.0, 0, 1, 1, -360, 158.686], [341, \n 292, 0, 0.0009329409048961218, 0.07535316024134399, 2567.0, 2567.0, \n 2567.0, 0, 1, 1, -360, 8.083], [557, 342, 0, 0.006019834710743802, \n 0.0636843933534336, 991.0, 991.0, 991.0, 0, 2, 1, -360, 18.21], [558, \n 343, 0, 0.010650247933884296, 0.11266996708783199, 991.0, 991.0, 991.0,\n 0, 1, 1, -360, 32.217], [502, 340, 0, 0.021737520661157025, \n 0.22996326026071198, 991.0, 991.0, 991.0, 0, 2, 1, -360, 65.756], [72, \n 32, 0, 0.00675502077562327, 0.969954803293024, 3423.0, 3423.0, 3423.0, \n 0, 2, 1, -360, 78.03399999999999], [344, 345, 0, 0.0005762927054480609,\n 0.04654686738645321, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 4.993], [\n 346, 47, 0, 0.0011340027700831024, 0.04070792194158799, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 6.55], [46, 47, 0, 0.0008975069252077563, \n 0.0322183003580208, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 5.184], [346,\n 345, 0, 0.0007217797783933517, 0.025910126194627202, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 4.169], [347, 328, 0, 0.029905454545454544, \n 0.07909314882361201, 495.0, 495.0, 495.0, 0, 1, 1, -360, 45.232], [347,\n 348, 0, 0.04883438016528925, 0.129155866607944, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 73.862], [571, 348, 0, 0.041548429752066116, \n 0.10988617921762801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 62.842], [347,\n 572, 0, 0.016052231404958678, 0.04245451362512801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 24.279], [571, 570, 0, 0.17379041322314048, \n 0.11490906279551602, 248.0, 248.0, 248.0, 0, 1, 1, -360, 131.429], [14,\n 350, 0, 0.02166743801652892, 0.05730546235524, 495.0, 495.0, 495.0, 0, \n 1, 1, -360, 32.772], [350, 573, 0, 0.026277685950413226, \n 0.06949852316919598, 495.0, 495.0, 495.0, 0, 1, 1, -360, 39.745], [15, \n 351, 0, 0.02639265927977839, 0.236857956201204, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 76.222], [352, 15, 0, 0.0015260560941828254, \n 0.219126704094076, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 17.629], [15,\n 335, 0, 0.0035338758079432133, 1.1417173740880242, 5134.0, 5134.0, \n 5134.0, 0, 1, 1, -360, 61.235], [232, 227, 0, 5.5747922437673134e-05, \n 0.000500303468136644, 1200.0, 1200.0, 1200.0, 0, 1, 1, -360, 0.161], [\n 565, 544, 0, 0.0394803305785124, 0.10441652566461601, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 59.714], [235, 567, 0, 0.02391404958677686, \n 0.25298896294275997, 991.0, 991.0, 991.0, 0, 1, 1, -360, 72.34], [567, \n 286, 0, 0.008068760330578512, 0.34144067500694797, 1981.0, 1981.0, \n 1981.0, 0, 1, 1, -360, 48.816], [353, 519, 0, 0.007621818181818182, \n 0.080631926038356, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 23.055999999999997], [354, 353, 0, 0.0008436363636363636, \n 0.00892490784392768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.552], [355, \n 354, 0, 0.0068502479338842966, 0.0181173530898976, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.360999999999999], [354, 356, 0, 0.01855404958677686, \n 0.049071255647172, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 28.063000000000002], [357, 358, 0, 0.0034823407202216067, \n 0.5000300103406239, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 40.228], [\n 574, 359, 0, 0.013352066115702478, 0.0353131884615884, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 20.195], [235, 575, 0, 0.007459504132231404, \n 0.0789147905557, 991.0, 991.0, 991.0, 0, 1, 1, -360, 22.565], [167, 361,\n 0, 0.000616198347107438, 0.0065188198358579995, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 1.864], [528, 362, 0, 0.0011960330578512398, \n 0.012652945368078402, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 3.6180000000000003], [363, 344, 0, 0.0002662742382271468, \n 0.009558592968871479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.538], [\n 259, 364, 0, 0.013069713758102496, 0.26390852570525997, 1283.0, 1283.0,\n 1283.0, 0, 1, 1, -360, 56.618], [54, 56, 0, 0.007723337950138504, \n 0.0693122289241068, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.305], [365, \n 364, 0, 0.0049974607571537395, 0.10091058802821559, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 21.649], [231, 366, 0, 0.0013273891966759002, \n 0.0476500209962672, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, \n 7.667000000000001], [30, 367, 0, 0.01126108033240997, \n 0.1010613005635992, 856.0, 856.0, 856.0, 0, 1, 1, -360, 32.522], [61, \n 367, 0, 0.020337603878116343, 0.18251754162067196, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 58.735], [254, 368, 0, 0.0004297520661157025, \n 0.00454638722456732, 991.0, 991.0, 991.0, 0, 1, 1, -360, 1.3], [254, \n 369, 0, 0.00015999999999999999, 0.00169265493591832, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 0.484], [254, 370, 0, 0.0003669421487603306, \n 0.0038819152455960805, 991.0, 991.0, 991.0, 0, 2, 1, -360, 1.11], [99, \n 358, 0, 0.0020184383656509696, 0.28982797432374396, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 23.316999999999997], [354, 519, 0, \n 0.006762644628099174, 0.07154264880985199, 991.0, 991.0, 991.0, 0, 1, 1,\n -360, 20.457], [571, 371, 0, 0.023726942148760328, 0.06275238397221199,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 35.887], [207, 372, 0, \n 0.002329256198347108, 0.006160354689297601, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 3.523], [57, 373, 0, 0.0017725619834710745, \n 0.0046880246727212796, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.681], [209,\n 374, 0, 0.0010122922437673131, 0.0363388121515216, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 5.847], [375, 376, 0, 0.0045364727608518006, \n 0.0916021467933684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 19.652], [\n 376, 377, 0, 0.0030886426592797783, 0.062367022394423606, 1283.0, \n 1283.0, 1283.0, 0, 1, 1, -360, 13.38], [16, 49, 0, 0.002266101108033241,\n 0.32538991773524, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 26.178], [318,\n 377, 0, 0.004755078485685596, 0.0960163149704152, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 20.599], [378, 297, 0, 0.01753917355371901, \n 0.046387138574374404, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 26.528000000000002], [562, 379, 0, 0.01802314049586777, \n 0.047667121439141605, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.26], [576,\n 563, 0, 0.001808264462809917, 0.004782449638150801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 2.735], [576, 381, 0, 0.0034320661157024794, \n 0.009077036954898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.191], [577, \n 576, 0, 0.06004495867768594, 0.15880530575430396, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 90.818], [244, 383, 0, 0.006845567867036011, \n 0.1382282547912684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 29.655], [\n 244, 306, 0, 0.02679108956599723, 0.5409756541164079, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 116.059], [383, 306, 0, 0.0300685595567867, \n 0.269846910348376, 856.0, 856.0, 856.0, 0, 1, 1, -360, 86.838], [380, \n 306, 0, 0.00025605955678670365, 0.03676764369572, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 2.958], [252, 225, 0, 0.062094545454545444, \n 0.041056499553586, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 46.958999999999996], [220, 76, 0, 0.002772074099722992, \n 0.398042682239984, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 32.023], [542,\n 384, 0, 0.007939834710743802, 0.020999063146094, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 12.009], [385, 384, 0, 0.053734876033057856, \n 0.035529141854791196, 248.0, 248.0, 248.0, 0, 1, 1, -360, 40.637], [542,\n 385, 0, 0.011306115702479337, 0.119608453436296, 991.0, 991.0, 991.0, 0,\n 2, 1, -360, 34.201], [386, 385, 0, 0.003668760330578512, \n 0.0388121580140316, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 11.097999999999999], [387, 578, 0, 0.015444628099173553, \n 0.16339016240905604, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.72], [332, \n 388, 0, 0.014036184210526315, 0.5038646344377999, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 81.07300000000001], [382, 332, 0, \n 0.017764369806094183, 0.637697365901468, 1711.0, 1711.0, 1711.0, 0, 1, \n 1, -360, 102.60700000000001], [382, 388, 0, 0.00476159972299169, \n 0.17092976750548, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 27.503], [579,\n 578, 0, 0.01911074380165289, 0.050543585664, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 28.905], [577, 387, 0, 0.07597818181818182, \n 0.20094506949431204, 495.0, 495.0, 495.0, 0, 1, 1, -360, 114.917], [144,\n 390, 0, 0.0004277685950413223, 0.0011313509747276, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 0.647], [37, 49, 0, 0.008441481994459835, \n 0.303028527944352, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 48.758], [391,\n 233, 0, 0.014211218836565096, 0.1275369872004348, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 41.042], [392, 310, 0, 0.007035318559556785, \n 0.06313767618386361, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 20.317999999999998], [260, 393, 0, 0.006341412742382271, \n 0.0569102963692744, 856.0, 856.0, 856.0, 0, 1, 1, -360, 18.314], [394, \n 230, 0, 0.0007590027700831025, 0.00681158510656168, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 2.1919999999999997], [395, 282, 0, 0.008762984764542936,\n 0.314569689934484, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.615], [395,\n 244, 0, 0.0034046052631578946, 0.12221699007344, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 19.665], [25, 396, 0, 0.008809037396121884, \n 0.316222866612064, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.881], [81,\n 74, 0, 0.0075207756232686974, 0.26997742429652244, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 43.44], [278, 80, 0, 0.016286011080332407, \n 0.5846279085788, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 94.068], [81, \n 278, 0, 0.021054016620498613, 0.755787629231688, 1711.0, 1711.0, 1711.0,\n 0, 2, 1, -360, 121.60799999999999], [569, 570, 0, 0.03253950413223141, \n 0.08605961294018, 495.0, 495.0, 495.0, 0, 1, 1, -360, 49.216], [397, \n 552, 0, 0.006289586776859504, 0.0166345314104904, 1200.0, 1200.0, \n 1200.0, 0, 1, 1, -360, 9.513], [542, 398, 0, 0.0005580165289256199, \n 0.0059033089500572, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 1.6880000000000002], [398, 385, 0, 0.021893553719008262, \n 0.05790348713648401, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 33.114000000000004], [399, 499, 0, 0.03266380165289256, \n 0.021597087927192803, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 24.701999999999998], [83, 399, 0, 0.025700495867768593, \n 0.016992996557050798, 248.0, 248.0, 248.0, 0, 1, 1, -360, 19.436], [498,\n 400, 0, 0.012134214876033058, 0.032092247974028, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 18.352999999999998], [518, 239, 0, 0.04685289256198347, \n 0.123915281026504, 495.0, 495.0, 495.0, 0, 1, 1, -360, 70.865], [575, \n 543, 0, 0.0030307438016528923, 0.032062521596058796, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 9.168], [401, 360, 0, 0.007957063711911357, \n 0.071409774520472, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.98], [580, \n 581, 0, 0.007134545454545454, 0.018869255592422397, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.790999999999999], [401, 402, 0, 0.0033434903047091418,\n 0.030005778188384805, 856.0, 856.0, 856.0, 0, 1, 1, -360, 9.656], [403,\n 231, 0, 0.009592105263157893, 0.08608327126915, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 27.701999999999998], [189, 360, 0, 0.028456024930747923, \n 0.255375399471348, 856.0, 856.0, 856.0, 0, 1, 1, -360, 82.181], [234, \n 404, 0, 0.008092561983471074, 0.0214029921648796, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 12.24], [235, 404, 0, 0.05107504132231405, \n 0.13508190749437998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 77.251], [235,\n 580, 0, 0.000580495867768595, 0.00153527999352772, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 0.878], [216, 259, 0, 0.0022115650969529088, \n 0.079389770210892, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, \n 12.774000000000001], [405, 259, 0, 0.0052832409972299165, \n 0.1896554115982928, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 30.516], [\n 405, 318, 0, 0.0066348684210526315, 0.23817552558268398, 1711.0, 1711.0,\n 1711.0, 0, 2, 1, -360, 38.323], [406, 230, 0, 8.098164819944598e-05, \n 0.046512685161986804, 6845.0, 6845.0, 6845.0, 0, 1, 1, -360, 1.871], [\n 542, 407, 0, 0.025569586776859506, 0.067625761355152, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 38.674], [23, 408, 0, 0.03224528925619835, \n 0.08528148128033601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 48.771], [577,\n 348, 0, 0.012999008264462809, 0.13751772188026398, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 39.321999999999996], [562, 564, 0, 0.06921520661157024, \n 0.18305853298686803, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 104.68799999999999], [582, 507, 0, 0.006357685950413223, \n 0.016814638289042002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.616], [27, \n 410, 0, 0.0030042975206611565, 0.007945685980170399, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 4.544], [501, 27, 0, 0.003811570247933884, \n 0.040322957460962, 991.0, 991.0, 991.0, 0, 1, 1, -360, 11.53], [27, 411,\n 0, 0.004648595041322314, 0.012294480221518, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 7.031000000000001], [411, 410, 0, 0.002054214876033058, \n 0.0054329327333556, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 3.1069999999999998], [403, 360, 0, 0.008191481994459833, \n 0.07351353506655639, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 23.656999999999996], [412, 360, 0, 0.016761772853185596, \n 0.15042664773666, 856.0, 856.0, 856.0, 0, 1, 1, -360, 48.408], [326, \n 413, 0, 0.012077024793388432, 0.12776397267356798, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 36.533], [414, 413, 0, 0.008093223140495867, \n 0.08561896310149601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 24.482], [6, \n 297, 0, 0.019472396694214876, 0.0128750188978664, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 14.725999999999999], [554, 580, 0, 0.07435371900826447, \n 0.196648733567264, 495.0, 495.0, 495.0, 0, 1, 1, -360, 112.46], [262, \n 401, 0, 0.03931232686980609, 0.35280406181043206, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 113.53399999999999], [499, 556, 0, 0.04185586776859504, \n 0.11069928308639199, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 63.306999999999995], [224, 229, 0, 0.004135206611570248, \n 0.0437467367631624, 991.0, 991.0, 991.0, 0, 1, 1, -360, 12.509], [583, \n 507, 0, 0.024632727272727268, 0.065147980317596, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 37.257], [415, 307, 0, 0.015675554016620498, \n 0.1406784987952448, 856.0, 856.0, 856.0, 0, 1, 1, -360, 45.271], [416, \n 507, 0, 0.0010555371900826446, 0.011166626467730801, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 3.193], [284, 561, 0, 0.015221487603305786, \n 0.16102953827307598, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.045], [543,\n 417, 0, 0.0006614876033057851, 0.027991756419545603, 1981.0, 1981.0, \n 1981.0, 0, 4, 1, -360, 4.002], [418, 506, 0, 0.0009395041322314049, \n 0.009939101917118, 991.0, 991.0, 991.0, 0, 1, 1, -360, 2.842], [220, \n 157, 0, 0.004599549861495845, 0.165112574384632, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 26.566999999999997], [295, 419, 0, 0.0012023140495867769,\n 0.012719392565946, 991.0, 991.0, 991.0, 0, 1, 1, -360, 3.637], [295, \n 420, 0, 0.0008003305785123967, 0.008466771900532, 991.0, 991.0, 991.0, \n 0, 1, 1, -360, 2.421], [541, 62, 0, 0.05133355371900827, \n 0.0339414035471236, 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.821], [52, \n 421, 0, 0.00013885041551246538, 0.004984389831631239, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 0.802], [60, 160, 0, 6.128808864265928e-05, \n 0.000550023067454096, 856.0, 856.0, 856.0, 0, 2, 1, -360, 0.177], [535,\n 161, 0, 3.735537190082645e-05, 0.00039518596644331203, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 0.113], [267, 282, 0, 0.0065652700831024926, \n 0.235677115717012, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 37.921], [52,\n 365, 0, 0.007655586334279779, 0.15458444922992, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 33.164], [28, 27, 0, 0.015726942148760328, \n 0.041594197273402404, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.787], [30,\n 201, 0, 0.009128289473684211, 0.327683234253536, 1711.0, 1711.0, 1711.0,\n 0, 2, 1, -360, 52.725], [422, 81, 0, 0.0004226685133887349, \n 0.13655487952674, 5134.0, 5134.0, 5134.0, 0, 6, 1, -360, 7.324], [119, \n 425, 0, 0.003579120498614958, 0.1284816595874996, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 20.673000000000002], [423, 425, 0, \n 0.0006518351800554017, 0.0233992864289392, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 3.765], [424, 425, 0, 0.005922957063711911, \n 0.21261965153389198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.211], [\n 426, 428, 0, 0.013948429752066116, 0.14756174042535197, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 42.193999999999996], [427, 428, 0, \n 0.0002664462809917355, 0.0028187600792304794, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 0.8059999999999999], [19, 428, 0, 0.023607603305785128, \n 0.24974703912892798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 71.413], [45, \n 429, 0, 0.02562314049586777, 0.067767398802972, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 38.755], [44, 429, 0, 5.289256198347107e-05, \n 0.00013988883767892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.08], [505, \n 429, 0, 0.006012561983471073, 0.015901863623161996, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 9.094], [231, 431, 0, 0.011677285318559558, \n 0.4191859418495199, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 67.44800000000001], [190, 431, 0, 0.009600761772853185, \n 0.34464383257266795, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 55.45399999999999], [430, 431, 0, 0.0028100761772853187, \n 0.1008748520662472, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 16.230999999999998], [286, 433, 0, 0.01568694214876033, \n 0.16595362535967603, 991.0, 991.0, 991.0, 0, 1, 1, -360, 47.453], [432,\n 433, 0, 0.00010049586776859504, 0.00106315516636076, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 0.304], [506, 433, 0, 0.0065904132231404955, \n 0.06972059669946801, 991.0, 991.0, 991.0, 0, 1, 1, -360, 19.936], [23, \n 434, 0, 0.02613685950413223, 0.069126069139116, 495.0, 495.0, 495.0, 0,\n 2, 1, -360, 39.532], [400, 434, 0, 0.008155371900826446, \n 0.021569110159669603, 495.0, 495.0, 495.0, 0, 2, 1, -360, 12.335], [500,\n 434, 0, 0.006338512396694216, 0.0167639285853336, 495.0, 495.0, 495.0, \n 0, 2, 1, -360, 9.587], [32, 436, 0, 0.0044813019390581715, \n 0.16086776359270402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 25.884], [\n 435, 436, 0, 0.0006634349030470914, 0.023815688073266, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 3.832], [78, 436, 0, 0.00897680055401662, \n 0.32224515307884394, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.85], [86,\n 438, 0, 0.014693213296398892, 0.52745036936438, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 84.868], [437, 438, 0, 1.0387811634349031e-05, \n 0.0003728969948845, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.06], [221,\n 438, 0, 0.002280124653739612, 0.081850890377238, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 13.17], [207, 439, 0, 0.055703801652892564, \n 0.0368309823503996, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 42.126000000000005], [516, 439, 0, 0.05448462809917355, \n 0.03602487292327441, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 41.20399999999999], [513, 439, 0, 0.046726611570247926, \n 0.0308953241066316, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 35.336999999999996], [181, 441, 0, 0.040805289256198356, \n 0.10792074104825197, 495.0, 495.0, 495.0, 0, 1, 1, -360, 61.718], [440,\n 441, 0, 0.0001322314049586777, 0.000349722094197784, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.2], [504, 441, 0, 0.05916099173553719, \n 0.156467413554364, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 89.48100000000001], [135, 442, 0, 0.004956890581717451, \n 0.177940231009092, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 28.631], [109,\n 442, 0, 0.0015380886426592797, 0.055213615042649204, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 8.884], [112, 442, 0, 0.0027304362880886425, \n 0.09801597510545401, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 15.770999999999999], [113, 443, 0, 0.0019885734072022164, \n 0.07138491472072879, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 11.485999999999999], [132, 443, 0, 0.006788434903047091, \n 0.24368818615747198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 39.21], [\n 107, 443, 0, 2.2333795013850418e-05, 0.000801728539002036, 1711.0, \n 1711.0, 1711.0, 0, 1, 1, -360, 0.129], [444, 445, 0, \n 7.877423822714682e-05, 0.00282780221121528, 1711.0, 1711.0, 1711.0, 0, \n 1, 1, -360, 0.455], [112, 445, 0, 0.002816135734072022, \n 0.101092375313206, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.266], [109,\n 445, 0, 0.0014354224376731304, 0.0515281497432104, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 8.291], [119, 447, 0, 0.005212690443213296, \n 0.74849127803204, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 60.217], [100,\n 447, 0, 0.0050695117728531865, 0.7279322237145921, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 58.563], [446, 447, 0, 2.9518698060941832e-05, \n 0.00423859584186224, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.341], [\n 124, 448, 0, 6.509695290858726e-05, 0.00233682116794768, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 0.376], [125, 448, 0, 0.00615148891966759, \n 0.22082338542026803, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.531], [\n 131, 448, 0, 3.912742382271468e-05, 0.0014045786807313759, 1711.0, \n 1711.0, 1711.0, 0, 1, 1, -360, 0.226], [449, 450, 0, \n 0.0023614958448753462, 0.08477191683710039, 1711.0, 1711.0, 1711.0, 0, \n 1, 1, -360, 13.64], [173, 450, 0, 0.002862361495844876, \n 0.10275176694050518, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.533], [\n 184, 450, 0, 0.004022853185595568, 0.14441057621844403, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 23.236], [144, 451, 0, 0.007672727272727273, \n 0.020292624515794402, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.605], [140,\n 451, 0, 0.006991074380165291, 0.018489807120219602, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.574000000000002], [514, 451, 0, 0.01149289256198347, \n 0.030396095817207994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.383], [537,\n 585, 0, 0.05072595041322314, 0.134158641165824, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 76.723], [141, 585, 0, 0.007994710743801653, \n 0.0211441978151932, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.092], [584, \n 585, 0, 9.256198347107438e-05, 0.000244805465938352, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.14], [522, 454, 0, 0.0035008264462809916, \n 0.0092588924438956, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.295], [144, \n 454, 0, 0.00452892561983471, 0.011977981726290799, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 6.85], [453, 454, 0, 0.001114710743801653, \n 0.0029481572540882, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.686], [199, \n 456, 0, 0.013063140495867768, 0.0086372614214612, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 9.879], [140, 456, 0, 0.005061818181818182, \n 0.013387361765852802, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 7.656000000000001], [455, 456, 0, 0.0011365289256198346, \n 0.00300586139962416, 495.0, 495.0, 495.0, 0, 2, 1, -360, 1.719], [537, \n 456, 0, 0.039058512396694216, 0.025825228046024003, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 29.538], [538, 457, 0, 0.027927272727272728, \n 0.0184653265736368, 248.0, 248.0, 248.0, 0, 1, 1, -360, 21.12], [153, \n 457, 0, 0.030093223140495867, 0.019897438549384, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 22.758000000000003], [176, 457, 0, 0.004579173553719009, \n 0.0030277190305137603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 3.463], [524,\n 459, 0, 0.004318677685950414, 0.011421923596476799, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 6.532], [458, 459, 0, 0.001993388429752066, \n 0.0052720605700488, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.015], [134, \n 459, 0, 0.011813553719008265, 0.031244171895617998, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 17.868], [460, 461, 0, 6.611570247933885e-05, \n 0.000174861047098892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.1], [150, \n 461, 0, 0.008018512396694214, 0.021207147792120403, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 12.128], [149, 461, 0, 0.005586115702479339, \n 0.0147740098693748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.449], [521, \n 463, 0, 0.014348429752066114, 0.009487086110365599, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 10.850999999999999], [462, 463, 0, 0.007197355371900825,\n 0.0047588433967958406, 248.0, 248.0, 248.0, 0, 1, 1, -360, 5.443], [538,\n 463, 0, 0.012211570247933883, 0.0080742088497664, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 9.235], [110, 464, 0, 0.0025753116343490306, \n 0.0924473799817492, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.875], [90,\n 464, 0, 0.007328947368421053, 0.26309125979076, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 42.332], [165, 464, 0, 0.002152527700831025, \n 0.0772704722900764, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 12.433], [\n 458, 465, 0, 0.002003305785123967, 0.0052982897270776, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 3.03], [134, 465, 0, 0.011838677685950413, \n 0.031310619093534, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.906], [524, \n 465, 0, 0.004293553719008264, 0.0113554763986092, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.494], [466, 467, 0, 0.0023509349030470914, \n 0.084392804892244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.579], [110,\n 467, 0, 0.0025337603878116343, 0.09095579200221118, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 14.635], [165, 467, 0, 0.0022891274238227145, \n 0.08217406777274441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 13.222000000000001], [468, 469, 0, 0.0005269421487603305, \n 0.0013936425453786, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.797], [541, \n 469, 0, 0.022390743801652895, 0.05921844221026801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 33.866], [490, 469, 0, 0.028243305785123966, \n 0.07469714209944801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 42.718], [263,\n 471, 0, 0.0371900826446281, 0.0245898347482832, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 28.125], [470, 471, 0, 0.001570909090909091, \n 0.0010386746197682802, 248.0, 248.0, 248.0, 0, 1, 1, -360, 1.188], [534,\n 471, 0, 0.024497190082644622, 0.0161973787927468, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 18.526], [136, 472, 0, 0.0007079293628808865, \n 0.025412930201351602, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 4.0889999999999995], [110, 472, 0, 0.00019511772853185596, \n 0.0070042485539216805, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.127], [\n 251, 472, 0, 4.207063711911357e-05, 0.00151023282928764, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 0.243], [226, 474, 0, 0.017639669421487602, \n 0.011663231841509601, 248.0, 248.0, 248.0, 0, 1, 1, -360, 13.34], [473,\n 474, 0, 0.003467107438016529, 0.00916971330986216, 495.0, 495.0, 495.0,\n 0, 2, 1, -360, 5.244], [257, 474, 0, 0.020264462809917356, \n 0.053594910935781594, 495.0, 495.0, 495.0, 0, 2, 1, -360, 30.65], [6, \n 474, 0, 0.08066247933884299, 0.05333349367016, 248.0, 248.0, 248.0, 0, \n 1, 1, -360, 61.001000000000005], [299, 475, 0, 0.013238227146814403, \n 0.47521993028123993, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 76.464], [3,\n 475, 0, 0.0002794321329639889, 0.010030929162389441, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 1.614], [210, 475, 0, 0.0001481994459833795, \n 0.00531999712702368, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.856], [\n 297, 476, 0, 0.0193500826446281, 0.05117658265464801, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 29.267], [296, 476, 0, 0.005596694214876033, \n 0.014801987636898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.465], [295, \n 476, 0, 0.0009474380165289256, 0.00250575880492432, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 1.433], [313, 478, 0, 0.008696849030470914, \n 0.31219557906752804, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 50.233000000000004], [477, 478, 0, 1.5235457063711912e-05, \n 0.0005469155924977479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 0.08800000000000001], [245, 478, 0, 0.005264542936288089, \n 0.188984197007248, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.408], [479,\n 481, 0, 0.028420495867768597, 0.07516576970575199, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 42.986000000000004], [565, 481, 0, 0.024842314049586776,\n 0.065702289836964, 495.0, 495.0, 495.0, 0, 1, 1, -360, 37.574], [480, \n 481, 0, 7.735537190082645e-05, 0.000204587425105844, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.11699999999999999], [415, 482, 0, \n 0.011021814404432133, 0.0989140353680364, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 31.831], [56, 482, 0, 0.002630886426592798, 0.0236105947261788, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 7.598], [409, 482, 0, \n 0.0007635041551246537, 0.0068519822810072005, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 2.205], [483, 484, 0, 9.037396121883656e-05, \n 0.000811050963873968, 856.0, 856.0, 856.0, 0, 1, 1, -360, 0.261], [3, \n 484, 0, 0.010022160664819944, 0.08994275516621358, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 28.944000000000003], [301, 484, 0, 0.00966516620498615, \n 0.08673894848517479, 856.0, 856.0, 856.0, 0, 1, 1, -360, 27.913], [233,\n 485, 0, 0.01410180055401662, 0.1265550251138996, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 40.726], [392, 485, 0, 0.00914819944598338, \n 0.0820994883738036, 856.0, 856.0, 856.0, 0, 1, 1, -360, 26.42], [391, \n 485, 0, 8.518005540166207e-05, 0.000764438839512864, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 0.24600000000000002], [579, 488, 0, \n 0.004636473829194215, 0.11036180126571601, 1486.0, 1486.0, 1486.0, 0, 1,\n 1, -360, 21.038], [486, 488, 0, 0.00016969696969690082, \n 0.00403929018798184, 1486.0, 1486.0, 1486.0, 0, 1, 1, -360, 0.77], [487,\n 488, 0, 0.00014567493112954544, 0.00346749456396992, 1486.0, 1486.0, \n 1486.0, 0, 1, 1, -360, 0.6609999999999999], [270, 489, 0, \n 0.0001745152354570637, 0.0062646695140596, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 1.008], [331, 489, 0, 0.003002943213296399, \n 0.10779830627119119, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 17.345], [\n 396, 489, 0, 0.01124792243767313, 0.40377286606072005, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 64.968], [519, 253, 0, 0.013353485337561985, \n 0.141267767926912, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 40.394293146100004], [382, 349, 0, 0.009091647380263157, \n 1.30547149138788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 105.02671053600001], [349, 351, 0, 0.0005858117819605263, \n 0.0841168325920224, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 6.76729770521], [459, 465, 0, 1.578788789911157e-05, \n 0.00016702153987596, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.047758360894800005], [549, 550, 0, 3.680432518409091e-05, \n 0.000389356391787088, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.111333083682], [550, 551, 0, 5.755645674710744e-05, \n 0.0006088951287918401, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.17410828165999997], [194, 195, 0, 1.7560672583171745e-05, \n 0.00252154053805592, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.202860889681], [247, 248, 0, 2.1755213937811637e-05, \n 0.0031238355819477198, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.25131623141], [2, 294, 0, 2.3531392658518004e-05, 0.003378877444715, \n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.271834647991], [549, 551, 0, \n 9.265809538429751e-05, 0.0009802386406577602, 991.0, 991.0, 991.0, 0, 1,\n 1, -360, 0.28029073853799996], [54, 365, 0, 2.573045189134349e-05, \n 0.00369464080598484, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.297238180249], [131, 265, 0, 2.7616389041343487e-05, \n 0.00396544290388756, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.319024526206], [91, 92, 0, 2.8945628197853184e-05, \n 0.0041563086239824396, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.33437989694200004], [247, 249, 0, 3.098840072160664e-05, \n 0.00444963074500788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.357978005136], [186, 191, 0, 3.1591661821191135e-05, \n 0.00453625312865552, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.36494687735799997], [129, 173, 0, 3.202671277479225e-05, \n 0.00459872218332188, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.369972585975], [96, 202, 0, 3.5971247867797784e-05, \n 0.00516511877739804, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.415539855369], [53, 320, 0, 3.784209581142659e-05, \n 0.00543375421308236, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.437151890814], [24, 396, 0, 4.144748602818559e-05, \n 0.005951452925597279, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.47880135859800005], [133, 156, 0, 4.431754564044322e-05, \n 0.0063635653674415605, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.511956287238], [442, 452, 0, 4.483572190450138e-05, \n 0.006437970402313801, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.517942259441], [445, 452, 0, 4.490753296371191e-05, \n 0.0064482817668697215, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.518771820797], [247, 250, 0, 4.594910768732687e-05, \n 0.00659784169268824, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.530804092004], [187, 195, 0, 4.755760376239612e-05, \n 0.006828805970367921, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.549385438663], [216, 236, 0, 5.03353075283241e-05, \n 0.00722765701751724, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.581473472567], [244, 389, 0, 5.1633313019736845e-05, \n 0.007414037889302401, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.596468032004], [394, 406, 0, 5.6346419007686985e-05, \n 0.008090793734075721, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.650913832377], [442, 445, 0, 6.388070648310249e-05, \n 0.00917264360085512, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.737949921293], [442, 444, 0, 6.584378362735456e-05, \n 0.00945452224616264, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.760627388463], [198, 472, 0, 8.37554210498615e-05, 0.0120264578966664,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.967542623967], [464, 467, 0, \n 8.460287496468144e-05, 0.01214814397621276, 3423.0, 3423.0, 3423.0, 0, \n 1, 1, -360, 0.977332411594], [198, 251, 0, 8.83613182396122e-05, \n 0.012687819608389479, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.0207499483], [112, 143, 0, 9.049653833033241e-05, \n 0.012994416294241841, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.04541601079], [2, 490, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [5, 491, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, \n 1, -360, 360], [10, 492, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [12, 493, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [13, 494, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [15, 495, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [18, 496, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [20, 497, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [22, 498, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [24, 499, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [26, 500, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [30, 501, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [32, 502, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [37, 503, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [42, 504, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [46, 505, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [52, 506, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [56, 507, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [61, 508, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [68, 509, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [69, 510, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [74, 511, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [78, 512, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [86, 513, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [87, 514, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [94, 515, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [95, 516, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [96, 517, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [99, 518, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [100, 519, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [104, 520, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [105, 521, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [106, 522, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [107, 523, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [117, 524, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [120, 525, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [123, 526, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [124, 527, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [125, 528, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [128, 529, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [129, 530, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [138, 531, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [143, 532, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [156, 533, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [157, 534, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [159, 535, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [160, 536, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [165, 537, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [184, 538, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [191, 539, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [195, 540, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [201, 541, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [220, 542, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [231, 543, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [232, 544, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [233, 545, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [236, 546, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [245, 547, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [246, 548, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [248, 549, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [249, 550, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [250, 551, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [259, 552, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [261, 553, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [262, 554, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [265, 555, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [270, 556, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [277, 557, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [279, 558, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [280, 559, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [290, 560, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [301, 561, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [305, 562, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [306, 563, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [310, 564, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [313, 565, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [315, 566, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [320, 567, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [330, 568, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [332, 569, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [334, 570, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [336, 571, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [349, 572, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [351, 573, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [358, 574, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [360, 575, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [380, 576, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [382, 577, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [383, 578, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [389, 579, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [401, 580, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [402, 581, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [409, 582, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [415, 583, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [444, 584, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [452, 585, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360]]'], {}), '([[586, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [589, \n 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [590, 108, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [593, 112, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [594, 114, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [595, 115, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [598, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [599, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [601, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [602, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [603,\n 526, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [607, 127, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [608, 127, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [609, 529, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [612, 493, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [613, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [614, 130, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [616, 132, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [617, 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [618,\n 133, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [619, 134, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [621, 136, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [623, 139, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [624, 14, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [628, 142, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [629, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [632, 145, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [637, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [638,\n 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [640, 153, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [641, 155, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [642, 533, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [643, 534, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [646, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [647, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [650, 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [652, 167, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [655,\n 170, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [661, 177, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [663, 178, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [666, 180, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [668, 183, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [670, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [672, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [676, 19, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [681, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [683, \n 200, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [687, 202, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [689, 204, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [691, 209, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [693, 21, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [694, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [695, 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [696, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [697, 211, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [698,\n 212, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [702, 215, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [704, 217, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [705, 217, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [707, 219, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [708, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [711, 224, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [713, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [714, 225, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [716,\n 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [717, 227, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [719, 229, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [722, 545, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [724, 238, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [727, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [728, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [730, 547, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [731, 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [732,\n 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [735, 253, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [737, 256, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [738, 258, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [741, 264, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [742, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [743, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [746, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [747, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [748,\n 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [749, 274, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [750, 557, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [753, 28, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [758, 286, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [760, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [762, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [763, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [765, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [767,\n 292, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [769, 293, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [771, 297, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [772, 3, 0, 1e-05, 0, 9999, 9999,\n 9999, 0, 0, 1, -360, 360], [774, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [776, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [777, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [778, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [781,\n 303, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [784, 563, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [785, 501, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [787, 308, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [788, 311, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [789, 565, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [791, 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [792, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [795, 319, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [801,\n 327, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [802, 327, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [805, 328, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [806, 328, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [808, 329, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [809, 329, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [811, 568, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [814, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [816, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [817,\n 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [821, 338, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [822, 339, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [826, 339, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [829, 345, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [830, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [835, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [836, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [837, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [839,\n 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [841, 573, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [843, 352, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [844, 352, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [845, 356, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [849, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [850, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [851, 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [853, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [854,\n 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [855, 363, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [856, 363, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [857, 365, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [858, 368, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [859, 368, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [860, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [862, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [863, 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [864,\n 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [865, 375, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [867, 376, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [869, 503, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [870, 503, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [872, 378, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [873, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [874, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [875, 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [877,\n 578, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [882, 388, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [883, 388, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [886, 394, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [889, 397, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [890, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [895, 580, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [896, 581, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [898, 403, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [900,\n 405, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [902, 405, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [903, 406, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [905, 413, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [906, 414, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [907, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [909, 417, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [913, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [915, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [917,\n 43, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [918, 424, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [920, 428, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [921, 428, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [922, 429, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [923, 432, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [925, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [928, 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [931, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [934,\n 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [935, 45, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [936, 445, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [937, 447, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [939, 450, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [940, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [942, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [944, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [945, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [950,\n 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [952, 47, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [958, 478, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [959, 478, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [960, 479, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [963, 481, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [965, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [966, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [967, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [968, 486,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [969, 486, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [971, 51, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [973, 506, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [976, 58, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [977, 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [978, 491, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [981, 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [982, \n 62, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [983, 62, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [984, 63, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [985, 63, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [986, 64, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [987, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [988, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [990, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [993, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [994, 67,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [995, 509, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [997, 510, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [999, 70, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1000, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1002, 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1003, 72, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1007, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1008, 75, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1010, 79,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1011, 79, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1012, 81, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1018, 514, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1023, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1026, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1027, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1028, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1029, 268, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1030, \n 269, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1031, 498, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1032, 1, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1033, 3, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1034, 4, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1035, 6, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [1036, 7, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1037, 8, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [1038, 9, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1039, 11,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1040, 14, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1041, 16, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1042, 17, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1044, 21, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1046, 25, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1047, 27, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1048, 28, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1049,\n 29, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1050, 31, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1051, 33, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1052, 34, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1053, 35, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1054, 36, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1055, 38, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1056, 39, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1057, 40, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1058,\n 41, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1059, 43, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1060, 44, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1061, 45, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1062, 47, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1063, 48, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1064, 49, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1065, 50, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1066, 51, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1067,\n 53, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1072, 59, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1073, 60, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1074, 62, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1075, 63, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1076, 64, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1077, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1078, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1079, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1080,\n 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1081, 71, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1082, 72, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1083, 73, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1084, 75, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1085, 76, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1086, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1087, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1088, 80, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1089,\n 81, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1090, 82, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1091, 83, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1092, 84, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1093, 85, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1094, 88, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1095, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1096, 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1097, 91, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1098,\n 92, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1099, 93, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1101, 98, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1102, 101, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1103, 102, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1104, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1105, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1106, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1107, 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1108, 111, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1109, \n 112, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1110, 113, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1111, 114, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1112, 115, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1113, 116, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1114, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1115, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1116, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1117, 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1118, 126, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1119, \n 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1120, 130, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1121, 131, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1122, 132, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1123, 133, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1124, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1125, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1126, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1127, 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1128, 139, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1129, \n 140, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1130, 141, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1131, 142, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1132, 144, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1133, 145, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1134, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1135, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1136, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1137, 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1138, 150, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1139, \n 151, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1140, 152, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1141, 153, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1142, 154, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1143, 155, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1144, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1145, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1146, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1147, 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1148, 164, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1149, \n 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1150, 167, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1151, 168, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1152, 169, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1153, 170, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1154, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1155, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1156, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1157, 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1158, 175, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1159, \n 176, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1160, 177, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1161, 178, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1162, 179, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1163, 180, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1164, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1165, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1166, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1167, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1168, 186, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1169, \n 187, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1170, 188, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1171, 189, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1172, 190, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1173, 192, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1174, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1175, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1176, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1177, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1178, 198, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1179, \n 199, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1180, 200, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1181, 202, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1182, 203, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1183, 204, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1184, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1185, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1186, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1187, 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1188, 209, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1189, \n 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1190, 211, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1191, 212, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1192, 213, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1196, 217, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1197, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1198, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1199, 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1200, 222, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1204, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1206, \n 228, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1208, 230, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1211, 237, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1212, 238, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1213, 239, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1214, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1215, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1216, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1217, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1218, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1219, \n 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1220, 251, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1221, 252, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1222, 253, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1224, 255, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1225, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1226, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1227, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1229, 263, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1230, 264, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1231, \n 266, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1232, 267, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1233, 268, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1235, 271, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1236, 272, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1237, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1238, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1239, 275, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1240, 276, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1241, 278, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1242, \n 281, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1243, 282, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1244, 283, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1245, 284, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1246, 285, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1247, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1248, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1249, 288, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1250, 289, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1251, 291, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1252, \n 292, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1253, 293, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1254, 294, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1255, 295, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1256, 296, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1257, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1258, 298, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1259, 299, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1260, 300, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1261, 302, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1264, \n 307, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1266, 309, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1267, 311, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1268, 312, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1269, 314, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1270, 316, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1274, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1275, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1276, 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1277, 324, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1278, \n 325, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1280, 327, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1281, 328, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1282, 329, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1283, 331, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1285, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1286, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1287, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1288, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1289, 340, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1290, \n 341, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1291, 342, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1292, 343, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1293, 344, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1294, 345, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1295, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1296, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1297, 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1298, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1299, 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1300, \n 353, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1301, 354, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1302, 355, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1303, 356, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1306, 361, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1307, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1308, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1312, 367, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1316, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1317, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1319, \n 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1323, 378, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1326, 384, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1327, 385, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1328, 386, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1329, 387, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1331, 390, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1333, 392, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1336, 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1337, 396, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1339, \n 398, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1340, 399, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1345, 406, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1346, 407, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1348, 410, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1349, 411, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1356, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1357, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1359, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1360, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1361, \n 424, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1362, 425, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1366, 429, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1367, 430, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1372, 435, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1373, 436, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1374, 437, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1375, 438, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1376, 439, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1377, 440, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1378, \n 441, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1379, 442, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1380, 443, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1381, 445, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1382, 446, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1383, 447, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1384, 448, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1385, 449, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1386, 450, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1387, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1388, \n 453, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1389, 454, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1390, 455, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1391, 456, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1392, 457, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1393, 458, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1394, 459, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1395, 460, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1396, 461, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1397, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1398, \n 463, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1399, 464, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1400, 465, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1401, 466, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1402, 467, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1403, 468, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1404, 469, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1405, 470, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1406, 471, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1407, 472, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1408, \n 473, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1409, 474, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1410, 475, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1411, 476, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1418, 483, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1419, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1421, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1422, 487, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1423, 488, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1424, 489, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1425, \n 490, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1426, 491, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1427, 492, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1428, 493, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1429, 494, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1431, 496, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1432, 497, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1433, 498, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1434, 499, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1435, 500, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1436, \n 501, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1437, 502, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1438, 503, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1439, 504, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1440, 505, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1443, 508, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1444, 509, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1445, 510, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1446, 511, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1447, 512, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1448, \n 513, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1449, 514, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1450, 515, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1451, 516, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1452, 517, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1453, 518, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1454, 519, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1455, 520, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1456, 521, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1457, 522, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1458, \n 523, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1459, 524, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1460, 525, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1461, 526, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1462, 527, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1463, 528, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1464, 529, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1465, 530, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1466, 531, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1467, 532, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1468, \n 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1469, 534, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1470, 535, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1471, 536, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1472, 537, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1473, 538, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1474, 539, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1475, 540, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1476, 541, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1477, 542, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1483, \n 548, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1484, 549, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1485, 550, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1486, 551, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1489, 555, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1490, 556, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1491, 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1492, 558, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1493, 559, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1494, 560, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1495, \n 561, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1497, 563, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1498, 564, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1501, 567, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1503, 569, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1504, 570, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1505, 571, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1506, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1507, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1510, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1511, \n 577, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1512, 578, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1513, 579, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1518, 584, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1519, 585, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1520, 1, 0, 1e-05, 0, 9999, 9999, 9999, 0, \n 0, 1, -360, 360], [1521, 3, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1522, 4, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360],\n [1523, 6, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1524, 7,\n 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1525, 8, 0, 1e-05,\n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1526, 9, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1527, 11, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1528, 14, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1529, 16, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1530, 17, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1531, 19, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1532,\n 21, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1534, 25, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1535, 27, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1536, 28, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1537, 29, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1538, 31, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1539, 33, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1540, 34, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1541, 35, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1542,\n 36, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1543, 38, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1544, 39, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1545, 40, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1546, 41, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1547, 43, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1548, 44, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1549, 45, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1550, 47, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1551,\n 48, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1552, 49, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1553, 50, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1554, 51, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1555, 53, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1556, 54, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1557, 55, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1558, 57, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1559, 58, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1560,\n 59, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1561, 60, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1562, 62, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1563, 63, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1564, 64, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1565, 65, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1566, 66, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1567, 67, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1568, 70, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1569,\n 71, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1570, 72, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1571, 73, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1572, 75, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1573, 76, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1574, 77, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1575, 79, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1576, 80, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1577, 81, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1578,\n 82, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1579, 83, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1580, 84, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1581, 85, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1582, 88, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1583, 89, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1584, 90, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1585, 91, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360\n ], [1586, 92, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1587,\n 93, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1588, 97, 0, \n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1589, 98, 0, 1e-05, 0,\n 9999, 9999, 9999, 0, 0, 1, -360, 360], [1590, 101, 0, 1e-05, 0, 9999, \n 9999, 9999, 0, 0, 1, -360, 360], [1591, 102, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1592, 103, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1593, 108, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1594, 109, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1595, 110, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1596, 111, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1597, \n 112, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1598, 113, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1599, 114, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1600, 115, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1601, 116, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1602, 118, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1603, 119, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1604, 121, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1605, 122, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1606, 126, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1607, \n 127, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1608, 130, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1609, 131, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1610, 132, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1611, 133, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1612, 134, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1613, 135, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1614, 136, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1615, 137, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1616, 139, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1617, \n 140, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1618, 141, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1619, 142, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1620, 144, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1621, 145, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1622, 146, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1623, 147, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1624, 148, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1625, 149, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1626, 150, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1627, \n 151, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1628, 152, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1629, 153, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1630, 154, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1631, 155, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1632, 158, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1633, 161, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1634, 162, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1635, 163, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1636, 164, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1637, \n 166, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1638, 167, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1639, 168, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1640, 169, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1641, 170, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1642, 171, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1643, 172, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1644, 173, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1645, 174, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1646, 175, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1647, \n 176, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1648, 177, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1649, 178, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1650, 179, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1651, 180, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1652, 181, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1653, 182, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1654, 183, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1655, 185, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1656, 186, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1657, \n 187, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1658, 188, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1659, 189, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1660, 190, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1661, 192, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1662, 193, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1663, 194, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1664, 196, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1665, 197, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1666, 198, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1667, \n 199, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1668, 200, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1669, 202, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1670, 203, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1671, 204, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1672, 205, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1673, 206, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1674, 207, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1675, 208, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1676, 209, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1677, \n 210, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1678, 211, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1679, 212, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1680, 213, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1681, 214, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1682, 215, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1683, 216, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1684, 217, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1685, 218, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1686, 219, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1687, \n 221, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1688, 222, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1689, 223, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1690, 224, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1691, 225, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1692, 226, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1693, 227, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1694, 228, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1695, 229, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1696, 230, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1697, \n 234, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1698, 235, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1699, 237, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1700, 238, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1701, 239, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1702, 240, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1703, 241, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1704, 242, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1705, 243, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1706, 244, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1707, \n 247, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1708, 251, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1709, 252, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1710, 253, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1711, 254, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1712, 255, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1713, 256, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1714, 257, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1715, 258, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1716, 260, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1717, \n 263, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1718, 264, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1719, 266, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1720, 267, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1721, 268, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1722, 269, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1723, 271, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1724, 272, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1725, 273, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1726, 274, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1727, \n 275, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1728, 276, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1729, 278, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1730, 281, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1731, 282, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1732, 283, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1733, 284, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1734, 285, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1735, 286, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1736, 287, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1737, \n 288, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1738, 289, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1739, 291, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1740, 292, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1741, 293, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1742, 294, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1743, 295, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1744, 296, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1745, 297, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1746, 298, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1747, \n 299, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1748, 300, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1749, 302, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1750, 303, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1751, 304, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1752, 307, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1753, 308, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1754, 309, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1755, 311, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1756, 312, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1757, \n 314, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1758, 316, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1759, 317, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1760, 318, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1761, 319, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1762, 321, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1763, 322, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1764, 323, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1765, 324, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1766, 325, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1767, \n 326, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1768, 327, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1769, 328, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1770, 329, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1771, 331, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1772, 333, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1773, 335, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1774, 337, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1775, 338, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1776, 339, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1777, \n 340, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1778, 341, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1779, 342, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1780, 343, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1781, 344, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1782, 345, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1783, 346, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1784, 347, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1785, 348, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1786, 350, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1787, \n 352, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1788, 353, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1789, 354, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1790, 355, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1791, 356, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1792, 357, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1793, 359, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1794, 361, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1795, 362, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1796, 363, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1797, \n 364, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1798, 365, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1799, 366, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1800, 367, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1801, 368, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1802, 369, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1803, 370, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1804, 371, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1805, 372, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1806, 373, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1807, \n 374, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1808, 375, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1809, 376, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1810, 377, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1811, 378, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1812, 379, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1813, 381, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1814, 384, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1815, 385, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1816, 386, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1817, \n 387, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1818, 388, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1819, 390, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1820, 391, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1821, 392, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1822, 393, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1823, 394, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1824, 395, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1825, 396, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1826, 397, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1827, \n 398, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1828, 399, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1830, 403, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1831, 404, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1832, 405, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1833, 406, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1834, 407, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1836, 410, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1837, 411, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1838, 412, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1839, \n 413, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1840, 414, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1841, 416, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1842, 417, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1843, 418, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1844, 419, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1845, 420, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1846, 421, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1847, 422, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1848, 423, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1849, \n 424, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1850, 425, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1851, 426, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1852, 427, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1853, 428, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1854, 429, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1855, 430, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1856, 431, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1857, 432, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1858, 433, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1860, \n 435, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1861, 436, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1862, 437, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1863, 438, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1864, 439, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1865, 440, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1866, 441, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1867, 442, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1868, 443, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1869, 445, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1870, \n 446, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1871, 447, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1872, 448, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1873, 449, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1874, 450, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1875, 451, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1876, 453, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1877, 454, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1878, 455, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1879, 456, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1880, \n 457, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1881, 458, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1882, 459, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1883, 460, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1884, 461, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1885, 462, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1886, 463, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1887, 464, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1888, 465, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1889, 466, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1890, \n 467, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1891, 468, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1892, 469, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1893, 470, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1894, 471, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1895, 472, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1896, 473, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1897, 474, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1898, 475, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1899, 476, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1900, \n 477, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1901, 478, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1902, 479, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1903, 480, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1904, 481, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1905, 482, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1906, 483, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1907, 484, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1908, 485, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1909, 486, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1910, \n 487, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1911, 488, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1912, 489, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1913, 490, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1914, 491, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1915, 492, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1916, 493, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1917, 494, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1918, 495, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1919, 496, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1920, \n 497, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1921, 498, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1922, 499, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1923, 500, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1924, 501, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1925, 502, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1926, 503, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1927, 504, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1928, 505, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1929, 506, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1930, \n 507, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1931, 508, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1932, 509, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1933, 510, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1934, 511, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1935, 512, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1936, 513, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1937, 514, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1938, 515, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1939, 516, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1940, \n 517, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1941, 518, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1942, 519, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1943, 520, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1944, 521, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1945, 522, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1946, 523, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1947, 524, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1948, 525, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1949, 526, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1950, \n 527, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1951, 528, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1952, 529, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1953, 530, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1954, 531, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1955, 532, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1956, 533, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1957, 534, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1958, 535, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1959, 536, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1960, \n 537, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1961, 538, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1962, 539, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1963, 540, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1964, 541, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1965, 542, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1966, 543, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1967, 544, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1968, 545, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1969, 546, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1970, \n 547, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1971, 548, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1972, 549, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1973, 550, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1974, 551, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1975, 552, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1976, 553, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1977, 554, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1978, 555, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1979, 556, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1980, \n 557, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1981, 558, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1982, 559, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1983, 560, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1984, 561, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1985, 562, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1986, 563, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1987, 564, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1988, 565, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1989, 566, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1990, \n 567, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1991, 568, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1992, 569, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [1993, 570, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [1994, 571, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [1995, 572, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [1996, 573, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [1997, 574, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [1998, 575, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1999, 576, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2000, \n 577, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2001, 578, 0,\n 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2002, 579, 0, 1e-05, \n 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [2003, 580, 0, 1e-05, 0, 9999,\n 9999, 9999, 0, 0, 1, -360, 360], [2004, 581, 0, 1e-05, 0, 9999, 9999, \n 9999, 0, 0, 1, -360, 360], [2005, 582, 0, 1e-05, 0, 9999, 9999, 9999, 0,\n 0, 1, -360, 360], [2006, 583, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -\n 360, 360], [2007, 584, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, \n 360], [2008, 585, 0, 1e-05, 0, 9999, 9999, 9999, 0, 0, 1, -360, 360], [\n 1, 490, 0, 0.01433884297520661, 0.151691958358336, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 43.375], [3, 4, 0, 0.006291637811634348, \n 0.903417549506624, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 72.681], [491,\n 6, 0, 0.011200661157024791, 0.118492839955776, 991.0, 991.0, 991.0, 0, \n 2, 1, -360, 33.882], [7, 5, 0, 0.005794840720221606, \n 0.20802058859584005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.471], [8,\n 9, 0, 0.0024379328254847646, 0.350063268897336, 3423.0, 3423.0, 3423.0,\n 0, 1, 1, -360, 28.163], [492, 11, 0, 0.018224793388429753, \n 0.0482004476327704, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.565], [11, \n 493, 0, 0.030286942148760328, 0.08010209706571599, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 45.809], [492, 493, 0, 0.04521652892561983, \n 0.11958747011094399, 495.0, 495.0, 495.0, 0, 1, 1, -360, 68.39], [494, \n 14, 0, 0.012990743801652892, 0.137430291356512, 991.0, 991.0, 991.0, 0,\n 2, 1, -360, 39.297], [13, 15, 0, 0.007681959833795014, \n 0.27576354266704156, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 44.371], [\n 16, 5, 0, 0.006275623268698061, 0.22527950450957998, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 36.248000000000005], [17, 18, 0, \n 0.04623522622347646, 0.9335989000302801, 1283.0, 1283.0, 1283.0, 0, 1, \n 1, -360, 200.291], [17, 12, 0, 0.0056020313942728535, 0.113118303398186,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.268], [14, 495, 0, \n 0.0017957024793388433, 0.018996904156819597, 991.0, 991.0, 991.0, 0, 1,\n 1, -360, 5.432], [494, 19, 0, 0.010246611570247935, 0.10839986031771602,\n 991.0, 991.0, 991.0, 0, 1, 1, -360, 30.996], [20, 21, 0, \n 0.005415685595567867, 0.19440984828307922, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 31.281], [20, 22, 0, 0.0049706544321329645, 0.713737278110032,\n 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 57.42100000000001], [497, 23, 0,\n 0.002190413223140496, 0.005793146490362, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 3.313], [23, 499, 0, 0.020799669421487598, 0.22004164444829602, \n 991.0, 991.0, 991.0, 0, 1, 1, -360, 62.919], [25, 26, 0, \n 0.00141845567867036, 0.050919084651523595, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 8.193], [25, 22, 0, 0.0035578254847645433, 0.0319293051869808,\n 856.0, 856.0, 856.0, 0, 1, 1, -360, 10.275], [23, 27, 0, \n 0.027738181818181818, 0.073361203699828, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 41.95399999999999], [28, 23, 0, 0.012841652892561981, \n 0.0339632611780132, 495.0, 495.0, 495.0, 0, 1, 1, -360, 19.423], [8, 21,\n 0, 0.004948753462603878, 0.17764812836304802, 1711.0, 1711.0, 1711.0, 0,\n 2, 1, -360, 28.584], [9, 29, 0, 0.002212863573407202, \n 0.31774552934092004, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 25.563000000000002], [30, 25, 0, 0.019958795013850415, \n 0.17911796401827998, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 57.641000000000005], [31, 32, 0, 0.0299776084949446, 0.605319030583196,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 129.863], [32, 33, 0, \n 0.016762234533725762, 0.33846927983213604, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 72.61399999999999], [34, 35, 0, 0.001931900826446281, \n 0.020437759184893597, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 5.843999999999999], [35, 36, 0, 0.0008730578512396695, \n 0.0092361605077588, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.641], [490, 6,\n 0, 0.049352066115702475, 0.130525028606764, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 74.645], [37, 10, 0, 0.02404639889196676, 0.485553838251812, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 104.169], [10, 38, 0, \n 0.006848799630657894, 0.13829351176534158, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 29.669], [37, 38, 0, 0.01437834718372576, 1.1613317560186958, \n 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 124.574], [39, 40, 0, \n 0.04521629732222991, 0.913024308337812, 1283.0, 1283.0, 1283.0, 0, 1, 1,\n -360, 195.877], [39, 41, 0, 0.017466989843005543, 0.35269996139852006, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 75.667], [42, 41, 0, \n 0.031145429362880884, 0.6289001042979919, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 134.922], [18, 42, 0, 0.03439750692520776, 0.6945672650962679,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 149.01], [492, 43, 0, \n 0.01819173553719008, 0.192452068436848, 991.0, 991.0, 991.0, 0, 2, 1, -\n 360, 55.03], [44, 45, 0, 0.02562314049586777, 0.067767398802972, 495.0,\n 495.0, 495.0, 0, 1, 1, -360, 38.755], [44, 505, 0, 0.006061487603305785,\n 0.0160312607980052, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.168], [46, 12,\n 0, 0.0014741170360110802, 0.2116687641962416, 3423.0, 3423.0, 3423.0, 0,\n 2, 1, -360, 17.029], [47, 48, 0, 0.005344182825484765, \n 0.01199019212302604, 428.0, 428.0, 428.0, 0, 1, 1, -360, \n 7.7170000000000005], [49, 50, 0, 0.0019151662049861494, \n 0.0171874439892256, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 5.531000000000001], [31, 33, 0, 0.013475992613088641, \n 0.27211225959163604, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 58.378], [\n 31, 51, 0, 0.003518611495844875, 0.5052381383693519, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 40.647], [52, 53, 0, 0.010464421745152355, \n 1.5025884408875438, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 120.885], [\n 52, 54, 0, 0.0076126500461911354, 0.1537174637168, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 32.978], [506, 55, 0, 0.012634380165289257, \n 0.133660287181212, 991.0, 991.0, 991.0, 0, 1, 1, -360, 38.219], [506, \n 507, 0, 0.044157355371900825, 0.11678619613628, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 66.788], [57, 506, 0, 0.004687272727272727, \n 0.049587095736244, 991.0, 991.0, 991.0, 0, 1, 1, -360, 14.179], [57, 58,\n 0, 0.014436363636363634, 0.0381809096340232, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 21.835], [58, 506, 0, 0.019797685950413223, 0.052360391943288,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 29.944000000000003], [59, 60, 0, \n 0.019407548476454296, 0.174170863885556, 856.0, 856.0, 856.0, 0, 1, 1, \n -360, 56.049], [508, 62, 0, 0.051111404958677685, 0.03379452026753001, \n 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.653], [30, 61, 0, \n 0.03143698060941828, 0.28212765137935203, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 90.79], [63, 506, 0, 0.027457190082644623, 0.072618044249872, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 41.528999999999996], [13, 64, 0, \n 0.0014816481994459833, 0.2127501654814608, 3423.0, 3423.0, 3423.0, 0, 2,\n 1, -360, 17.116], [65, 66, 0, 0.03778185595567867, 0.7629053006222161, \n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 163.671], [59, 67, 0, \n 0.0051880193905817175, 0.046559297286324804, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 14.982999999999999], [61, 67, 0, 0.012931440443213295, \n 0.1160517597580644, 856.0, 856.0, 856.0, 0, 1, 1, -360, 37.346], [68, \n 69, 0, 0.011149584487534626, 0.4002427745096039, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 64.4], [70, 69, 0, 0.009625346260387812, \n 0.345526355460808, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 55.596000000000004], [71, 72, 0, 0.008878635734072021, \n 0.318721276477736, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.283], [73,\n 74, 0, 0.012529547553116345, 0.253001288604392, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 54.278], [37, 75, 0, 0.027459141274238225, \n 0.5544652029066119, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 118.95299999999999], [72, 75, 0, 0.006688711911357341, \n 0.240108375006292, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 38.634], [37,\n 72, 0, 0.036222068328739615, 0.7314094881920841, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 156.914], [76, 77, 0, 0.004683777700831025, \n 0.6725445900750401, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 54.107], [77,\n 51, 0, 0.00363183864265928, 0.5214964473447999, 3423.0, 3423.0, 3423.0,\n 0, 2, 1, -360, 41.955], [73, 72, 0, 0.025475069252077563, \n 0.514402082018968, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 110.35799999999999], [18, 40, 0, 0.01302770083102493, 0.26306018504072,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 56.43600000000001], [492, 45, 0,\n 0.0308703030303719, 0.18370114733484796, 743.0, 743.0, 743.0, 0, 1, 1, \n -360, 70.03699999999999], [10, 74, 0, 0.030167359187465374, \n 0.609150547206812, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 130.685], [45,\n 511, 0, 0.08203371900826446, 0.05424014819960001, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 62.038000000000004], [78, 32, 0, 0.013458795013850415, \n 0.48313777647302397, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 77.738], [\n 79, 80, 0, 0.0038086911357340715, 0.1367226831743568, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 21.999000000000002], [81, 79, 0, \n 0.010767832409972299, 0.3865388099484561, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 62.195], [34, 82, 0, 0.0015497520661157025, \n 0.00409874294399768, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.344], [83, \n 84, 0, 0.00902611570247934, 0.0238720301499152, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 13.652000000000001], [83, 499, 0, 0.04179570247933885, \n 0.0276350398834796, 248.0, 248.0, 248.0, 0, 1, 1, -360, 31.608], [85, \n 86, 0, 0.00802354570637119, 0.28802563884886, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 46.343999999999994], [87, 86, 0, 0.01904968836565097, \n 0.683837154069184, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 110.031], [88,\n 89, 0, 0.00380297520661157, 0.010058007429140002, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 5.752000000000001], [90, 86, 0, 0.012097818559556786, \n 0.434282055192244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 69.877], [91,\n 86, 0, 9.26246537396122e-05, 0.013299992817559201, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 1.07], [86, 92, 0, 0.0001852493074792244, \n 0.0066499964087796005, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.07], [\n 86, 93, 0, 0.008152181440443215, 0.292643346635492, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 47.086999999999996], [94, 86, 0, \n 0.012883829639889197, 0.46249792780547194, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 74.417], [86, 95, 0, 0.010421052631578947, 0.37409026526870803,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 60.192], [513, 517, 0, \n 0.0008733884297520661, 0.0023099144321748, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 1.321], [97, 66, 0, 0.03812777008310249, 0.34217338998058805, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 110.113], [42, 98, 0, \n 0.003091759002770083, 0.44394630230884, 3423.0, 3423.0, 3423.0, 0, 2, 1,\n -360, 35.716], [99, 100, 0, 0.016371537396121884, 0.587698093837988, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 94.56200000000001], [42, 101, 0,\n 0.008165339335180054, 0.29311568282888, 1711.0, 1711.0, 1711.0, 0, 1, 1,\n -360, 47.163000000000004], [102, 42, 0, 0.012403047091412742, \n 0.44523901189173193, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 71.64], [\n 103, 87, 0, 0.007073060941828254, 0.25390556381756, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 40.854], [104, 103, 0, 0.0028852146814404432, \n 0.1035721403291428, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.665], [\n 105, 87, 0, 0.006406682825484765, 0.22998422159488002, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 37.005], [106, 107, 0, 0.005714219759923823, \n 0.11538365264216799, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 24.754], [\n 108, 107, 0, 0.0025427631578947367, 0.09127896939786201, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 14.687000000000001], [109, 106, 0, \n 0.003030470914127424, 0.10878648330773438, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 17.504], [110, 111, 0, 0.019821849030470913, \n 0.7115558306889919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 114.491], [\n 87, 112, 0, 0.006135907202216068, 0.220264039928212, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 35.441], [113, 87, 0, 0.003981648199445983, \n 0.14293141813921081, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 22.998], [\n 87, 85, 0, 0.011046225761772853, 0.3965324494097, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 63.803000000000004], [110, 114, 0, \n 0.011665339335180056, 0.418757110306188, 1711.0, 1711.0, 1711.0, 0, 1, \n 1, -360, 67.37899999999999], [115, 116, 0, 0.007048925619834712, \n 0.07457124214588401, 991.0, 991.0, 991.0, 0, 1, 1, -360, 21.323], [117,\n 118, 0, 0.005987534626038782, 0.21493782785077598, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 34.584], [117, 119, 0, 0.0038738746537396117, \n 0.5562504472696961, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 44.751000000000005], [117, 120, 0, 0.005886686288088643, \n 0.8452704781039522, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 68.003], [\n 121, 122, 0, 0.0021170360110803325, 0.0759964075574972, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 12.228], [123, 124, 0, 0.0018386426592797783, \n 0.0660027680945204, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 10.62], [125,\n 126, 0, 0.004941135734072022, 0.17737467056702802, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 28.54], [127, 119, 0, 0.0029027008310249305, \n 0.1041998502705648, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.766], [\n 118, 128, 0, 0.007397160664819945, 0.265539950057812, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 42.726000000000006], [121, 119, 0, \n 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 14.743], [530, 527, 0, 0.022726611570247933, \n 0.060106736329903994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 34.374], [125,\n 130, 0, 0.002931440443213297, 0.105231531956442, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 16.932000000000002], [125, 123, 0, 0.0019078081717451524,\n 0.2739425623421336, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 22.039], [\n 131, 132, 0, 0.0035744459833795014, 0.12831385593973843, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 20.646], [133, 123, 0, 0.003864439058171745, \n 0.13872389704704202, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 22.320999999999998], [524, 134, 0, 0.008092231404958678, \n 0.08560847143881999, 991.0, 991.0, 991.0, 0, 1, 1, -360, 24.479], [135,\n 136, 0, 0.005242901662049862, 0.1882073282678, 1711.0, 1711.0, 1711.0, \n 0, 1, 1, -360, 30.283], [123, 131, 0, 0.003138331024930748, \n 0.1126583971045252, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.127], [\n 117, 128, 0, 0.010800034626038782, 0.38769479063117196, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 62.381], [137, 521, 0, 0.013832396694214875, \n 0.14633421587532003, 991.0, 991.0, 991.0, 0, 2, 1, -360, 41.843], [531,\n 514, 0, 0.0059504132231404955, 0.035409362037522, 743.0, 743.0, 743.0, \n 0, 1, 1, -360, 13.5], [139, 521, 0, 0.021257520661157023, \n 0.05622132386323199, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.152], [140,\n 514, 0, 0.018527603305785127, 0.04900131122836401, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 28.023000000000003], [522, 141, 0, 0.012168595041322314,\n 0.032183175718526795, 495.0, 495.0, 495.0, 0, 1, 1, -360, 18.405], [142,\n 523, 0, 0.007060165289256198, 0.0746901476577608, 991.0, 991.0, 991.0, \n 0, 2, 1, -360, 21.357], [530, 526, 0, 0.020281652892561983, \n 0.053640374808152, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.676], [140, \n 532, 0, 0.004669090909090909, 0.0123486871461184, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 7.062], [142, 144, 0, 0.006678126721756199, \n 0.0397397958689204, 743.0, 743.0, 743.0, 0, 1, 1, -360, 15.151], [140, \n 522, 0, 0.020450247933884298, 0.05408627047793199, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 30.930999999999997], [145, 146, 0, 0.028527603305785125,\n 0.07544904460236, 495.0, 495.0, 495.0, 0, 1, 1, -360, 43.148], [147, \n 523, 0, 0.02461289256198347, 0.0650955220034416, 495.0, 495.0, 495.0, 0,\n 2, 1, -360, 37.227], [144, 523, 0, 0.008479338842975206, \n 0.0224259292904064, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.825], [139, \n 523, 0, 0.029245619834710742, 0.0193370088934308, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 22.116999999999997], [140, 141, 0, 0.008362975206611572,\n 0.022118173847506, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 12.649000000000001], [528, 526, 0, 0.015389090909090908, \n 0.0407006573227188, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.276], [528, \n 148, 0, 0.014306115702479338, 0.0378364333712244, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 21.638], [149, 150, 0, 0.013604628099173552, \n 0.035981157661543604, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 20.576999999999998], [145, 528, 0, 0.00320595041322314, \n 0.0084790121737992, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.849], [530, \n 151, 0, 0.013144462809917355, 0.0347641247737036, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 19.881], [524, 152, 0, 0.014598347107438016, \n 0.03860931919944, 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.08], [149, 525,\n 0, 0.016897190082644627, 0.17875695122823998, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 51.114], [139, 514, 0, 0.007824132231404959, \n 0.020693056313687997, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 11.834000000000001], [126, 120, 0, 0.012780297783933518, \n 0.458781387757004, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.819], [530,\n 153, 0, 0.02254545454545455, 0.059627617060924, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 34.1], [528, 147, 0, 0.15786710743801652, 0.104380679149868,\n 248.0, 248.0, 248.0, 0, 1, 1, -360, 119.387], [528, 154, 0, \n 0.006528264462809917, 0.017265779790547203, 495.0, 495.0, 495.0, 0, 2, \n 1, -360, 9.874], [130, 120, 0, 0.01450502077562327, 0.5206947188067639,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 83.781], [528, 155, 0, \n 0.16064132231404957, 0.1062149715341, 248.0, 248.0, 248.0, 0, 1, 1, -\n 360, 121.485], [524, 533, 0, 0.004432727272727273, 0.0468942356109744, \n 991.0, 991.0, 991.0, 0, 1, 1, -360, 13.409], [524, 149, 0, \n 0.0056413223140495865, 0.05968007537478799, 991.0, 991.0, 991.0, 0, 2, \n 1, -360, 17.065], [154, 150, 0, 0.007539173553719007, \n 0.0199394052006688, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 11.402999999999999], [157, 110, 0, 0.009962084487534625, \n 0.357614433044424, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 57.541000000000004], [119, 158, 0, 0.0002490189289012004, \n 0.08045252664623159, 5134.0, 5134.0, 5134.0, 0, 3, 1, -360, 4.315], [\n 159, 60, 0, 0.010967451523545706, 0.0984261617997728, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 31.674], [536, 161, 0, 0.021314380165289255, \n 0.056371704363524, 495.0, 495.0, 495.0, 0, 1, 1, -360, 32.238], [115, \n 151, 0, 0.00379404958677686, 0.0401376047510724, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 11.477], [162, 134, 0, 0.0015910743801652895, \n 0.016832124393744, 991.0, 991.0, 991.0, 0, 2, 1, -360, 4.813], [115, \n 526, 0, 0.0037884297520661154, 0.010019537998747198, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 5.73], [138, 87, 0, 0.0011838642659279777, \n 0.16999131006813442, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 13.675999999999998], [123, 163, 0, 0.0022778739612188364, \n 0.08177009602828919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.157], [\n 112, 164, 0, 0.0008672957063711912, 0.12453516639176802, 3423.0, 3423.0,\n 3423.0, 0, 2, 1, -360, 10.019], [112, 165, 0, 0.005989439058171744, \n 0.21500619230086396, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.595], [\n 166, 165, 0, 0.002632790858725762, 0.09451074335350361, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 15.207], [167, 537, 0, 0.00832595041322314, \n 0.08808100664460242, 991.0, 991.0, 991.0, 0, 2, 1, -360, 25.186], [168,\n 104, 0, 0.002552458448753463, 0.0916270065931116, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 14.743], [531, 520, 0, 0.016156694214876033, \n 0.042730794079516396, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 24.436999999999998], [139, 520, 0, 0.010682314049586776, \n 0.0282522993797748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.157], [520, \n 169, 0, 0.0011328925619834712, 0.0119849761681232, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 3.427], [168, 105, 0, 0.007340893351800554, \n 0.26352009133553606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 42.401], [\n 520, 170, 0, 0.005842644628099174, 0.015452470732151198, 495.0, 495.0, \n 495.0, 0, 2, 1, -360, 8.837], [171, 89, 0, 0.005505454545454546, \n 0.058242717567848004, 991.0, 991.0, 991.0, 0, 1, 1, -360, 16.654], [521,\n 172, 0, 0.006304793388429752, 0.06669899780522001, 991.0, 991.0, 991.0,\n 0, 1, 1, -360, 19.072], [123, 173, 0, 0.005247403047091413, \n 0.18836891696656402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.309], [\n 521, 174, 0, 0.013300495867768597, 0.035176796844864404, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 20.117], [37, 39, 0, 0.004338873499549862, \n 0.35044859579205606, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 37.592], [\n 530, 175, 0, 0.013128595041322313, 0.0347221581224188, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 19.857], [530, 176, 0, 0.005685289256198347, \n 0.01503630144005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.599], [88, 530,\n 0, 0.006015867768595041, 0.0159106066755372, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 9.099], [177, 496, 0, 0.018632066115702478, \n 0.19711036673178398, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 56.361999999999995], [178, 525, 0, 0.03106842975206612, \n 0.08216895464241199, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 46.99100000000001], [179, 493, 0, 0.057079669421487594, \n 0.15096278779194802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.333], [180,\n 181, 0, 0.041027438016528923, 0.10850827416682, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 62.053999999999995], [182, 180, 0, 0.00866314049586777, \n 0.09164817200545601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 26.206], [179,\n 181, 0, 0.01957223140495868, 0.051764115772731996, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 29.603], [180, 493, 0, 0.06676561983471074, \n 0.17657993119175203, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 100.98299999999999], [183, 30, 0, 0.0024804362880886427, \n 0.356166349712776, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 28.654], [183,\n 21, 0, 0.0025647506925207757, 0.36827307214930394, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 29.628], [538, 185, 0, 0.018631404958677687, \n 0.0123189607681008, 248.0, 248.0, 248.0, 0, 1, 1, -360, 14.09], [538, \n 89, 0, 0.014509752066115702, 0.038375005396288, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 21.945999999999998], [184, 186, 0, 0.0016554709141274237, \n 0.059427351084826, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 9.562000000000001], [184, 187, 0, 0.002698753462603878, \n 0.09687863927102919, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 15.588], [\n 520, 172, 0, 0.0034188429752066113, 0.0361682589818792, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 10.342], [89, 175, 0, 0.0037309090909090903, \n 0.0098674088877672, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.643], [185, \n 89, 0, 0.005812892561983471, 0.0153737832609196, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 8.792], [89, 188, 0, 0.003108760330578513, \n 0.008221966434607202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 4.702], [189,\n 190, 0, 0.008599492151454294, 0.17364414688031998, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 37.253], [539, 172, 0, 0.0021570247933884296, \n 0.022819366646419197, 991.0, 991.0, 991.0, 0, 2, 1, -360, 6.525], [504,\n 192, 0, 0.0003084297520661157, 0.00326290713886456, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 0.9329999999999999], [105, 186, 0, 0.003273372576177285,\n 0.1175060580379876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 18.907], [\n 105, 187, 0, 0.0021712257617728533, 0.0779416868808324, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 12.540999999999999], [539, 193, 0, \n 0.005608595041322314, 0.01483346262541, 495.0, 495.0, 495.0, 0, 1, 1, -\n 360, 8.482999999999999], [187, 194, 0, 4.8649584487534626e-05, \n 0.0069856037041576, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.562], [539,\n 540, 0, 0.004394710743801653, 0.0116230138006708, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.647], [539, 196, 0, 0.00332297520661157, \n 0.008788516227194, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.026], [197, \n 540, 0, 0.004737190082644629, 0.012528794024621601, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 7.165], [110, 198, 0, 0.00018724030470914128, \n 0.02688587333118328, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 2.1630000000000003], [197, 539, 0, 0.009172231404958677, \n 0.024258473063998802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 13.873], [199,\n 537, 0, 0.03612826446280991, 0.0238877676441712, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 27.322], [134, 526, 0, 0.007771239669421488, \n 0.020553167475975197, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 11.754000000000001], [200, 193, 0, 0.0009322314049586776, \n 0.009862163056380801, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.82], [4, \n 201, 0, 0.013726108033240996, 0.49273365914097605, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 79.282], [202, 86, 0, 0.00013365650969529087, \n 0.00479794133417816, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.772], [85,\n 203, 0, 0.0019011426592797783, 0.2729854600553416, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 21.962], [147, 204, 0, 0.0073874380165289254, \n 0.0781523963903056, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 22.346999999999998], [147, 205, 0, 0.005959669421487603, \n 0.00394049369636956, 248.0, 248.0, 248.0, 0, 1, 1, -360, 4.507], [123, \n 206, 0, 0.0005753116343490305, 0.0826091142668064, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 6.646], [537, 207, 0, 0.018456198347107437, \n 0.048812461297776, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.915], [165, \n 208, 0, 0.00414612188365651, 0.14883562055771601, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 23.948], [4, 94, 0, 0.013687673130193905, \n 0.49135394025941603, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 79.06], [4,\n 2, 0, 5.2054478301015697e-05, 0.016817654469309, 5134.0, 5134.0, 5134.0,\n 0, 3, 1, -360, 0.902], [209, 4, 0, 0.0022369286703601107, \n 0.32120104149338397, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 25.840999999999998], [119, 163, 0, 0.003535145429362881, \n 0.12690306230914922, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.419], [\n 210, 3, 0, 0.0003150969529085873, 0.011311208844832242, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 1.82], [99, 211, 0, 0.0035045013850415513, \n 0.1258030161741948, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.242], [99,\n 69, 0, 0.021717970914127423, 0.7796219621557, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 125.443], [212, 99, 0, 0.008453774238227147, \n 0.30346978938770003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 48.82899999999999], [213, 214, 0, 0.01490115702479339, \n 0.15764073118032798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 45.076], [510,\n 215, 0, 0.002174710743801653, 0.09202587186721281, 1981.0, 1981.0, \n 1981.0, 0, 4, 1, -360, 13.157], [128, 69, 0, 0.010711651662049862, \n 1.538088234801848, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 123.741], [\n 216, 69, 0, 0.009628462603878117, 1.3825528982351443, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 111.228], [217, 98, 0, 0.0012787396121883656, \n 0.045903620070299994, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 7.386], [\n 504, 218, 0, 0.027480991735537193, 0.072680994226412, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 41.565], [177, 504, 0, 0.07054809917355372, \n 0.18658373169634002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 106.704], [219,\n 209, 0, 0.003938798476454294, 0.5655728721401839, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 45.501000000000005], [219, 220, 0, \n 0.0013026315789473684, 0.1870451326342096, 3423.0, 3423.0, 3423.0, 0, 2,\n 1, -360, 15.048], [94, 95, 0, 0.01070740997229917, 0.38436979242743197,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 61.846000000000004], [159, 221, \n 0, 0.009937153739612188, 0.356719480257712, 1711.0, 1711.0, 1711.0, 0, \n 2, 1, -360, 57.397], [34, 161, 0, 0.010965289256198347, \n 0.116002818645824, 991.0, 991.0, 991.0, 0, 2, 1, -360, 33.17], [222, \n 221, 0, 0.0046457756232686975, 0.16677196601221997, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 26.834], [211, 52, 0, 0.05267313019390582, \n 0.472709090515552, 856.0, 856.0, 856.0, 0, 1, 1, -360, 152.12], [215, \n 223, 0, 0.04873190082644628, 0.128884831985184, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 73.707], [224, 215, 0, 0.019086280991735535, \n 0.050478887076288004, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 28.868000000000002], [225, 224, 0, 0.04200925619834711, \n 0.11110496071615601, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 63.538999999999994], [224, 223, 0, 0.031061818181818183, \n 0.082151468537468, 495.0, 495.0, 495.0, 0, 1, 1, -360, 46.981], [226, 6,\n 0, 0.06420099173553719, 0.0424492677936932, 248.0, 248.0, 248.0, 0, 1, \n 1, -360, 48.552], [7, 3, 0, 0.009332929362880887, 0.335029305054692, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 53.907], [216, 227, 0, \n 0.01989941135734072, 0.7143401282507, 1711.0, 1711.0, 1711.0, 0, 1, 1, \n -360, 114.939], [228, 229, 0, 0.010545454545454545, 0.027890337012274, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 15.95], [227, 230, 0, \n 0.003993074792243767, 0.573366419334696, 3423.0, 3423.0, 3423.0, 0, 2, \n 1, -360, 46.128], [231, 53, 0, 0.007193213296398893, 1.0328749562310842,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 83.096], [544, 545, 0, \n 0.013061818181818181, 0.034545548464856, 495.0, 495.0, 495.0, 0, 1, 1, \n -360, 19.756], [234, 235, 0, 0.04608859504132231, 0.121893887321888, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 69.709], [546, 214, 0, \n 0.057025454545454546, 0.15081940173295602, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 86.251], [233, 227, 0, 0.0029001038781163438, 0.1041066260218888,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.750999999999998], [237, 238, \n 0, 0.026324628099173554, 0.06962267451304, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 39.816], [212, 100, 0, 0.007955505540166205, 0.285583163531816, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 45.951], [519, 239, 0, \n 0.01740429752066116, 0.046030422038308406, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 26.324], [238, 519, 0, 0.015166280991735538, 0.040111375593995205,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 22.939], [213, 240, 0, \n 0.01665388429752066, 0.04404574915373599, 1200.0, 1200.0, 1200.0, 0, 1,\n 1, -360, 25.189], [241, 242, 0, 0.009862015235457064, \n 0.3540221919932281, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 56.963], [70,\n 241, 0, 0.003819858033240997, 0.5484941897752321, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 44.126999999999995], [509, 213, 0, \n 0.011363636363636364, 0.120216969880216, 991.0, 991.0, 991.0, 0, 2, 1, \n -360, 34.375], [68, 243, 0, 0.003611668975069252, 0.1296500701715312, \n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 20.861], [243, 244, 0, \n 0.0007699099722991691, 0.027637882270859202, 1711.0, 1711.0, 1711.0, 0,\n 1, 1, -360, 4.447], [68, 244, 0, 0.004104051246537396, \n 0.147325387728876, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 23.705], [544,\n 547, 0, 0.02418776859504132, 0.255884661882476, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 73.168], [245, 227, 0, 0.012676419667590028, \n 0.45505241780707606, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 73.219], [\n 246, 208, 0, 0.0010155817174515235, 0.0364568961999408, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 5.8660000000000005], [112, 208, 0, \n 0.0017927631578947367, 0.0643558063672372, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 10.355], [165, 247, 0, 0.0002113919667590028, \n 0.0075884538459086, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 1.2209999999999999], [537, 549, 0, 0.00032066115702479337, \n 0.00084807607842936, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.485], [537, \n 550, 0, 0.00032198347107438016, 0.0008515732993697601, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.48700000000000004], [537, 551, 0, \n 0.0002651239669421488, 0.0007011927988648, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 0.401], [110, 251, 0, 0.00023857340720221602, \n 0.008564200982522441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 1.3780000000000001], [510, 252, 0, 0.08467702479338843, \n 0.055987884365424005, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 64.03699999999999], [529, 253, 0, 0.04859504132231405, \n 0.12852286961777998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 73.5], [237, \n 239, 0, 0.03309421487603306, 0.08752669712542799, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 50.055], [254, 238, 0, 0.07815008264462811, \n 0.05167231372274401, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 59.101000000000006], [69, 255, 0, 0.0009369806094182826, \n 0.134541235754472, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 10.824000000000002], [510, 225, 0, 0.021953719008264466, \n 0.232250442756508, 991.0, 991.0, 991.0, 0, 1, 1, -360, 66.41], [256, \n 257, 0, 0.010125619834710746, 0.0267799693631888, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 15.315], [258, 190, 0, 0.011717451523545707, \n 0.10515695255750121, 856.0, 856.0, 856.0, 0, 1, 1, -360, 33.84], [258, \n 259, 0, 0.015782548476454293, 0.1416387085570408, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 45.58], [260, 261, 0, 0.006791031855955679, \n 0.9751256416231477, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 78.45], [554,\n 553, 0, 0.17583338842975205, 0.11625986438453201, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 132.974], [515, 263, 0, 0.006987107438016529, \n 0.0739172618295936, 991.0, 991.0, 991.0, 0, 2, 1, -360, 21.136], [14, \n 264, 0, 0.01700694214876033, 0.17991802858084, 991.0, 991.0, 991.0, 0, \n 1, 1, -360, 51.446000000000005], [116, 555, 0, 0.0009768595041322315, \n 0.0103342878835768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.955], [151, \n 116, 0, 0.007244958677685951, 0.0191612735410668, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 10.958], [111, 114, 0, 0.008806613573407202, \n 0.3161358573133961, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.867], [77,\n 111, 0, 0.00288452216066482, 0.41418912211817605, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 33.321999999999996], [266, 525, 0, \n 0.01042909090909091, 0.027582581569373602, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 15.774000000000001], [267, 120, 0, 0.013136945983379503, \n 0.471584184581432, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 75.87899999999999], [268, 269, 0, 0.0010327272727272726, \n 0.0027313295556817604, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 1.5619999999999998], [556, 271, 0, 0.052289586776859506, \n 0.0345735262323792, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 39.544000000000004], [556, 272, 0, 0.04685355371900827, \n 0.030979257409249603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 35.433], [529,\n 273, 0, 0.0034604958677685953, 0.009152227205140799, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 5.234], [128, 274, 0, 0.0029350761772853184, \n 0.1053620459045884, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.953], [34,\n 275, 0, 0.0008290909090909092, 0.00054818938265696, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 0.627], [503, 276, 0, 0.006707438016528925, \n 0.07095861291266, 991.0, 991.0, 991.0, 0, 2, 1, -360, 20.29], [503, 504,\n 0, 0.06432727272727272, 0.680524223098808, 991.0, 991.0, 991.0, 0, 2, 1,\n -360, 194.59], [177, 218, 0, 0.04330380165289256, 0.114528740018308, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 65.497], [277, 278, 0, \n 0.007191135734072023, 1.032576638635032, 3423.0, 3423.0, 3423.0, 0, 2, \n 1, -360, 83.072], [557, 558, 0, 0.04341289256198347, 0.258338836678648,\n 743.0, 743.0, 743.0, 0, 1, 1, -360, 98.493], [557, 559, 0, \n 0.03415867768595042, 0.09034195998366001, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 51.665], [559, 558, 0, 0.04474314049586777, 0.11833546501370001, \n 495.0, 495.0, 495.0, 0, 1, 1, -360, 67.67399999999999], [277, 78, 0, \n 0.03585768698060942, 0.32180078416049196, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 103.557], [277, 279, 0, 0.021390927977839334, 0.191970480441328, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 61.777], [78, 279, 0, \n 0.015811980609418283, 0.1419028439283376, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 45.665], [281, 282, 0, 0.0023178670360110803, 0.08320574945862161,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.388], [283, 161, 0, \n 0.036741157024793386, 0.09717203248350399, 495.0, 495.0, 495.0, 0, 2, 1,\n -360, 55.571000000000005], [268, 161, 0, 0.018883636363636366, \n 0.199771751868832, 991.0, 991.0, 991.0, 0, 2, 1, -360, \n 57.123000000000005], [256, 284, 0, 0.010755371900826446, \n 0.113782083346976, 991.0, 991.0, 991.0, 0, 2, 1, -360, 32.535], [515, \n 516, 0, 0.04071140495867769, 0.107672438361532, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 61.576], [263, 516, 0, 0.0030355371900826445, \n 0.128452925198488, 1981.0, 1981.0, 1981.0, 0, 2, 1, -360, 18.365], [516,\n 285, 0, 0.006908429752066116, 0.018271230811372, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 10.449000000000002], [63, 286, 0, 0.019088925619834708, \n 0.050485881518556, 495.0, 495.0, 495.0, 0, 1, 1, -360, 28.872], [287, \n 516, 0, 0.01732892561983471, 0.011457770111127998, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 13.105], [8, 102, 0, 0.015100069252077563, \n 0.542055501663692, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 87.21799999999999], [8, 101, 0, 0.019246883656509697, 0.69091598202144,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 111.17], [80, 288, 0, \n 0.007984072022160666, 0.2866086302684072, 1711.0, 1711.0, 1711.0, 0, 2,\n 1, -360, 46.11600000000001], [80, 289, 0, 0.0003782317636201524, \n 0.122198345223416, 5134.0, 5134.0, 5134.0, 0, 4, 1, -360, \n 6.553999999999999], [276, 560, 0, 0.01778314049586777, \n 0.047032375838192794, 495.0, 495.0, 495.0, 0, 2, 1, -360, 26.897], [37,\n 290, 0, 0.005629501385041551, 0.4546919507138321, 2567.0, 2567.0, \n 2567.0, 0, 2, 1, -360, 48.773999999999994], [290, 74, 0, \n 0.02071595106187673, 1.673216783321968, 2567.0, 2567.0, 2567.0, 0, 2, 1,\n -360, 179.483], [512, 291, 0, 0.0053299173553719, 0.056385693247479204,\n 991.0, 991.0, 991.0, 0, 2, 1, -360, 16.123], [78, 292, 0, \n 0.0058149815327908595, 0.469673087481408, 2567.0, 2567.0, 2567.0, 0, 2,\n 1, -360, 50.381], [199, 548, 0, 0.0015530578512396695, \n 0.00410748599634868, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.349], [491, \n 293, 0, 0.014176528925619833, 0.009373426429729999, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 10.720999999999998], [4, 294, 0, 9.669321329639889e-05, \n 0.013884198109531681, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 1.117], [\n 490, 541, 0, 0.050580495867768596, 0.133773946861896, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 76.503], [491, 295, 0, 0.010613553719008264, \n 0.028070443890777202, 495.0, 495.0, 495.0, 0, 1, 1, -360, 16.053], [491,\n 296, 0, 0.004400661157024794, 0.0116387512948784, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.656000000000001], [295, 297, 0, 0.020297520661157024, \n 0.053682341459340005, 495.0, 495.0, 495.0, 0, 1, 1, -360, 30.7], [508, \n 161, 0, 0.023239669421487603, 0.061463658055360006, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 35.15], [117, 123, 0, 0.005876211911357341, \n 0.21094161505628, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 33.941], [133,\n 117, 0, 0.004469182825484764, 0.0401081792747688, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 12.907], [71, 74, 0, 0.03904524469065097, \n 0.7884161162841721, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 169.144], [\n 74, 278, 0, 0.0077122576177285325, 1.10740463560792, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 89.09200000000001], [298, 515, 0, \n 0.021701157024793388, 0.05739464148919599, 495.0, 495.0, 495.0, 0, 1, 1,\n -360, 32.823], [5, 299, 0, 0.0016232686980609415, 0.058271370400665996,\n 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 9.376], [32, 292, 0, \n 0.009679362880886427, 0.34746541983297996, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 55.908], [5, 29, 0, 0.00743395083102493, 1.0674425076571843, \n 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 85.87700000000001], [503, 560, 0,\n 0.015140495867768593, 0.160172719142436, 991.0, 991.0, 991.0, 0, 1, 1, \n -360, 45.8], [300, 301, 0, 0.004892053324099723, 0.7024509290644521, \n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 56.513000000000005], [51, 300, 0,\n 0.002573493767313019, 0.3695284920307039, 3423.0, 3423.0, 3423.0, 0, 1,\n 1, -360, 29.729], [244, 302, 0, 0.007714508310249307, 1.107727813004004,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 89.118], [31, 302, 0, \n 0.004369113573407203, 0.6273619041941161, 3423.0, 3423.0, 3423.0, 0, 1,\n 1, -360, 50.472], [51, 282, 0, 0.006288434903047093, 0.9029576432132521,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 72.64399999999999], [303, 304, 0,\n 8.795013850415512e-05, 0.000789298639172312, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 0.254], [305, 304, 0, 0.003881117266849031, 0.0783689646873844,\n 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 16.813], [305, 259, 0, 0.0025625,\n 0.36794989475177603, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, \n 29.601999999999997], [306, 307, 0, 0.03223268698060942, \n 0.289268628831688, 856.0, 856.0, 856.0, 0, 1, 1, -360, 93.088], [305, \n 308, 0, 0.0024272853185595567, 0.0217833994511184, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 7.01], [305, 309, 0, 0.011014773776523545, \n 0.22241441259921202, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 47.716], [\n 310, 309, 0, 0.009565962603878117, 0.343394627639832, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 55.253], [306, 309, 0, 0.035333795013850415, \n 0.31709917455019604, 856.0, 856.0, 856.0, 0, 1, 1, -360, 102.044], [311,\n 280, 0, 0.003433691135734072, 0.1232611016590444, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 19.833], [280, 278, 0, 0.009749769159764544, \n 0.7874838737974121, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, \n 84.47200000000001], [311, 32, 0, 0.01205909510619806, \n 0.9740069506375919, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 104.48], [13,\n 312, 0, 0.0043324965373961214, 0.622104056565324, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 50.049], [313, 314, 0, 0.006092624653739613, \n 0.218710302449316, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.191], [312,\n 313, 0, 0.00893957756232687, 0.32090893884734, 1711.0, 1711.0, 1711.0, \n 0, 1, 1, -360, 51.635], [547, 566, 0, 0.027035702479338848, \n 0.286013220297816, 991.0, 991.0, 991.0, 0, 1, 1, -360, 81.783], [245, \n 315, 0, 0.014162569252077564, 0.508401547875772, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 81.803], [312, 316, 0, 8.803670360110802e-05, \n 0.01264120812658816, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.0170000000000001], [312, 314, 0, 0.005339854570637119, \n 0.191687700220296, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 30.843000000000004], [554, 546, 0, 0.08174743801652892, \n 0.21620344446439202, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 123.64299999999999], [262, 216, 0, 0.042641966759002774, \n 0.38268554099981195, 856.0, 856.0, 856.0, 0, 1, 1, -360, 123.15], [317,\n 233, 0, 0.005647276084951523, 0.114031901035644, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 24.464000000000002], [318, 317, 0, 0.008311634349030471,\n 0.16783161497270002, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 36.006], [\n 231, 52, 0, 0.035263677285318554, 1.2658796434850879, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 203.683], [319, 567, 0, 0.006089586776859504, \n 0.0644223069721, 991.0, 991.0, 991.0, 0, 1, 1, -360, 18.421], [557, 321,\n 0, 0.010004628099173555, 0.10583989458750401, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 30.264], [277, 65, 0, 0.009430170821779778, 0.7616700793261759,\n 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 81.703], [322, 288, 0, \n 0.006545013850415513, 0.528637424797136, 2567.0, 2567.0, 2567.0, 0, 2, \n 1, -360, 56.706], [322, 323, 0, 0.0018503000923372577, 0.14944779312484,\n 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 16.031], [277, 324, 0, \n 0.019719529085872576, 0.39818407235049996, 1283.0, 1283.0, 1283.0, 0, 1,\n 1, -360, 85.425], [324, 325, 0, 0.01103508771932133, \n 0.22282459929396403, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, \n 47.803999999999995], [277, 325, 0, 0.008665743305609418, \n 0.174981914850048, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 37.54], [326,\n 327, 0, 0.007654214876033058, 0.0202436634226288, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 11.577], [328, 326, 0, 0.10300958677685952, \n 0.068109252150368, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 77.90100000000001], [328, 327, 0, 0.09827173553719008, \n 0.064976616491468, 248.0, 248.0, 248.0, 0, 1, 1, -360, 74.318], [326, \n 329, 0, 0.028062148760330575, 0.07421802283046801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 42.443999999999996], [568, 329, 0, 0.05699900826446282, \n 0.15074945731414802, 495.0, 495.0, 495.0, 0, 1, 1, -360, 86.211], [568,\n 326, 0, 0.03218644628099173, 0.08512585494846397, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 48.681999999999995], [332, 78, 0, 0.006471029547541551, \n 0.522661750455416, 2567.0, 2567.0, 2567.0, 0, 2, 1, -360, 56.065], [333,\n 306, 0, 0.008580159279778392, 0.308006702824228, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 49.559], [332, 333, 0, 0.007504674515235457, \n 0.26939943395502003, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 43.347], [\n 332, 334, 0, 0.017124653739612188, 0.15368328149175597, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 49.456], [66, 334, 0, 0.030625, \n 0.27484062260471603, 856.0, 856.0, 856.0, 0, 1, 1, -360, 88.445], [330,\n 335, 0, 0.00550536703601108, 0.790516769355108, 3423.0, 3423.0, 3423.0,\n 0, 1, 1, -360, 63.598], [336, 66, 0, 0.015054362880886425, \n 0.1351036887216764, 856.0, 856.0, 856.0, 0, 1, 1, -360, 43.477], [330, \n 336, 0, 0.039036357340720224, 0.350327404269788, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 112.73700000000001], [68, 70, 0, 0.016314058171745152, \n 0.14640868261713597, 856.0, 856.0, 856.0, 0, 1, 1, -360, 47.115], [509,\n 337, 0, 0.03494082644628099, 0.09241056617056001, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 52.848], [324, 288, 0, 0.012627423822714683, \n 0.11332339674541761, 856.0, 856.0, 856.0, 0, 1, 1, -360, 36.468], [338,\n 559, 0, 0.009228099173553718, 0.097624922595552, 991.0, 991.0, 991.0, 0,\n 2, 1, -360, 27.915], [339, 559, 0, 0.03560595041322315, \n 0.023542417076125203, 248.0, 248.0, 248.0, 0, 1, 1, -360, 26.927], [339,\n 340, 0, 0.08711537190082644, 0.23040041287850396, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 131.762], [559, 340, 0, 0.20983272727272728, \n 0.138740000599684, 248.0, 248.0, 248.0, 0, 1, 1, -360, 158.686], [341, \n 292, 0, 0.0009329409048961218, 0.07535316024134399, 2567.0, 2567.0, \n 2567.0, 0, 1, 1, -360, 8.083], [557, 342, 0, 0.006019834710743802, \n 0.0636843933534336, 991.0, 991.0, 991.0, 0, 2, 1, -360, 18.21], [558, \n 343, 0, 0.010650247933884296, 0.11266996708783199, 991.0, 991.0, 991.0,\n 0, 1, 1, -360, 32.217], [502, 340, 0, 0.021737520661157025, \n 0.22996326026071198, 991.0, 991.0, 991.0, 0, 2, 1, -360, 65.756], [72, \n 32, 0, 0.00675502077562327, 0.969954803293024, 3423.0, 3423.0, 3423.0, \n 0, 2, 1, -360, 78.03399999999999], [344, 345, 0, 0.0005762927054480609,\n 0.04654686738645321, 2567.0, 2567.0, 2567.0, 0, 1, 1, -360, 4.993], [\n 346, 47, 0, 0.0011340027700831024, 0.04070792194158799, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 6.55], [46, 47, 0, 0.0008975069252077563, \n 0.0322183003580208, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 5.184], [346,\n 345, 0, 0.0007217797783933517, 0.025910126194627202, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 4.169], [347, 328, 0, 0.029905454545454544, \n 0.07909314882361201, 495.0, 495.0, 495.0, 0, 1, 1, -360, 45.232], [347,\n 348, 0, 0.04883438016528925, 0.129155866607944, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 73.862], [571, 348, 0, 0.041548429752066116, \n 0.10988617921762801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 62.842], [347,\n 572, 0, 0.016052231404958678, 0.04245451362512801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 24.279], [571, 570, 0, 0.17379041322314048, \n 0.11490906279551602, 248.0, 248.0, 248.0, 0, 1, 1, -360, 131.429], [14,\n 350, 0, 0.02166743801652892, 0.05730546235524, 495.0, 495.0, 495.0, 0, \n 1, 1, -360, 32.772], [350, 573, 0, 0.026277685950413226, \n 0.06949852316919598, 495.0, 495.0, 495.0, 0, 1, 1, -360, 39.745], [15, \n 351, 0, 0.02639265927977839, 0.236857956201204, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 76.222], [352, 15, 0, 0.0015260560941828254, \n 0.219126704094076, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 17.629], [15,\n 335, 0, 0.0035338758079432133, 1.1417173740880242, 5134.0, 5134.0, \n 5134.0, 0, 1, 1, -360, 61.235], [232, 227, 0, 5.5747922437673134e-05, \n 0.000500303468136644, 1200.0, 1200.0, 1200.0, 0, 1, 1, -360, 0.161], [\n 565, 544, 0, 0.0394803305785124, 0.10441652566461601, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 59.714], [235, 567, 0, 0.02391404958677686, \n 0.25298896294275997, 991.0, 991.0, 991.0, 0, 1, 1, -360, 72.34], [567, \n 286, 0, 0.008068760330578512, 0.34144067500694797, 1981.0, 1981.0, \n 1981.0, 0, 1, 1, -360, 48.816], [353, 519, 0, 0.007621818181818182, \n 0.080631926038356, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 23.055999999999997], [354, 353, 0, 0.0008436363636363636, \n 0.00892490784392768, 991.0, 991.0, 991.0, 0, 2, 1, -360, 2.552], [355, \n 354, 0, 0.0068502479338842966, 0.0181173530898976, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.360999999999999], [354, 356, 0, 0.01855404958677686, \n 0.049071255647172, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 28.063000000000002], [357, 358, 0, 0.0034823407202216067, \n 0.5000300103406239, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 40.228], [\n 574, 359, 0, 0.013352066115702478, 0.0353131884615884, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 20.195], [235, 575, 0, 0.007459504132231404, \n 0.0789147905557, 991.0, 991.0, 991.0, 0, 1, 1, -360, 22.565], [167, 361,\n 0, 0.000616198347107438, 0.0065188198358579995, 991.0, 991.0, 991.0, 0,\n 1, 1, -360, 1.864], [528, 362, 0, 0.0011960330578512398, \n 0.012652945368078402, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 3.6180000000000003], [363, 344, 0, 0.0002662742382271468, \n 0.009558592968871479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.538], [\n 259, 364, 0, 0.013069713758102496, 0.26390852570525997, 1283.0, 1283.0,\n 1283.0, 0, 1, 1, -360, 56.618], [54, 56, 0, 0.007723337950138504, \n 0.0693122289241068, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.305], [365, \n 364, 0, 0.0049974607571537395, 0.10091058802821559, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 21.649], [231, 366, 0, 0.0013273891966759002, \n 0.0476500209962672, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, \n 7.667000000000001], [30, 367, 0, 0.01126108033240997, \n 0.1010613005635992, 856.0, 856.0, 856.0, 0, 1, 1, -360, 32.522], [61, \n 367, 0, 0.020337603878116343, 0.18251754162067196, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 58.735], [254, 368, 0, 0.0004297520661157025, \n 0.00454638722456732, 991.0, 991.0, 991.0, 0, 1, 1, -360, 1.3], [254, \n 369, 0, 0.00015999999999999999, 0.00169265493591832, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 0.484], [254, 370, 0, 0.0003669421487603306, \n 0.0038819152455960805, 991.0, 991.0, 991.0, 0, 2, 1, -360, 1.11], [99, \n 358, 0, 0.0020184383656509696, 0.28982797432374396, 3423.0, 3423.0, \n 3423.0, 0, 1, 1, -360, 23.316999999999997], [354, 519, 0, \n 0.006762644628099174, 0.07154264880985199, 991.0, 991.0, 991.0, 0, 1, 1,\n -360, 20.457], [571, 371, 0, 0.023726942148760328, 0.06275238397221199,\n 495.0, 495.0, 495.0, 0, 1, 1, -360, 35.887], [207, 372, 0, \n 0.002329256198347108, 0.006160354689297601, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 3.523], [57, 373, 0, 0.0017725619834710745, \n 0.0046880246727212796, 495.0, 495.0, 495.0, 0, 1, 1, -360, 2.681], [209,\n 374, 0, 0.0010122922437673131, 0.0363388121515216, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 5.847], [375, 376, 0, 0.0045364727608518006, \n 0.0916021467933684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 19.652], [\n 376, 377, 0, 0.0030886426592797783, 0.062367022394423606, 1283.0, \n 1283.0, 1283.0, 0, 1, 1, -360, 13.38], [16, 49, 0, 0.002266101108033241,\n 0.32538991773524, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 26.178], [318,\n 377, 0, 0.004755078485685596, 0.0960163149704152, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 20.599], [378, 297, 0, 0.01753917355371901, \n 0.046387138574374404, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 26.528000000000002], [562, 379, 0, 0.01802314049586777, \n 0.047667121439141605, 495.0, 495.0, 495.0, 0, 1, 1, -360, 27.26], [576,\n 563, 0, 0.001808264462809917, 0.004782449638150801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 2.735], [576, 381, 0, 0.0034320661157024794, \n 0.009077036954898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.191], [577, \n 576, 0, 0.06004495867768594, 0.15880530575430396, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 90.818], [244, 383, 0, 0.006845567867036011, \n 0.1382282547912684, 1283.0, 1283.0, 1283.0, 0, 1, 1, -360, 29.655], [\n 244, 306, 0, 0.02679108956599723, 0.5409756541164079, 1283.0, 1283.0, \n 1283.0, 0, 1, 1, -360, 116.059], [383, 306, 0, 0.0300685595567867, \n 0.269846910348376, 856.0, 856.0, 856.0, 0, 1, 1, -360, 86.838], [380, \n 306, 0, 0.00025605955678670365, 0.03676764369572, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 2.958], [252, 225, 0, 0.062094545454545444, \n 0.041056499553586, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 46.958999999999996], [220, 76, 0, 0.002772074099722992, \n 0.398042682239984, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 32.023], [542,\n 384, 0, 0.007939834710743802, 0.020999063146094, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 12.009], [385, 384, 0, 0.053734876033057856, \n 0.035529141854791196, 248.0, 248.0, 248.0, 0, 1, 1, -360, 40.637], [542,\n 385, 0, 0.011306115702479337, 0.119608453436296, 991.0, 991.0, 991.0, 0,\n 2, 1, -360, 34.201], [386, 385, 0, 0.003668760330578512, \n 0.0388121580140316, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 11.097999999999999], [387, 578, 0, 0.015444628099173553, \n 0.16339016240905604, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.72], [332, \n 388, 0, 0.014036184210526315, 0.5038646344377999, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 81.07300000000001], [382, 332, 0, \n 0.017764369806094183, 0.637697365901468, 1711.0, 1711.0, 1711.0, 0, 1, \n 1, -360, 102.60700000000001], [382, 388, 0, 0.00476159972299169, \n 0.17092976750548, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 27.503], [579,\n 578, 0, 0.01911074380165289, 0.050543585664, 495.0, 495.0, 495.0, 0, 1,\n 1, -360, 28.905], [577, 387, 0, 0.07597818181818182, \n 0.20094506949431204, 495.0, 495.0, 495.0, 0, 1, 1, -360, 114.917], [144,\n 390, 0, 0.0004277685950413223, 0.0011313509747276, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 0.647], [37, 49, 0, 0.008441481994459835, \n 0.303028527944352, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 48.758], [391,\n 233, 0, 0.014211218836565096, 0.1275369872004348, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 41.042], [392, 310, 0, 0.007035318559556785, \n 0.06313767618386361, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 20.317999999999998], [260, 393, 0, 0.006341412742382271, \n 0.0569102963692744, 856.0, 856.0, 856.0, 0, 1, 1, -360, 18.314], [394, \n 230, 0, 0.0007590027700831025, 0.00681158510656168, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 2.1919999999999997], [395, 282, 0, 0.008762984764542936,\n 0.314569689934484, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.615], [395,\n 244, 0, 0.0034046052631578946, 0.12221699007344, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 19.665], [25, 396, 0, 0.008809037396121884, \n 0.316222866612064, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 50.881], [81,\n 74, 0, 0.0075207756232686974, 0.26997742429652244, 1711.0, 1711.0, \n 1711.0, 0, 2, 1, -360, 43.44], [278, 80, 0, 0.016286011080332407, \n 0.5846279085788, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 94.068], [81, \n 278, 0, 0.021054016620498613, 0.755787629231688, 1711.0, 1711.0, 1711.0,\n 0, 2, 1, -360, 121.60799999999999], [569, 570, 0, 0.03253950413223141, \n 0.08605961294018, 495.0, 495.0, 495.0, 0, 1, 1, -360, 49.216], [397, \n 552, 0, 0.006289586776859504, 0.0166345314104904, 1200.0, 1200.0, \n 1200.0, 0, 1, 1, -360, 9.513], [542, 398, 0, 0.0005580165289256199, \n 0.0059033089500572, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 1.6880000000000002], [398, 385, 0, 0.021893553719008262, \n 0.05790348713648401, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 33.114000000000004], [399, 499, 0, 0.03266380165289256, \n 0.021597087927192803, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 24.701999999999998], [83, 399, 0, 0.025700495867768593, \n 0.016992996557050798, 248.0, 248.0, 248.0, 0, 1, 1, -360, 19.436], [498,\n 400, 0, 0.012134214876033058, 0.032092247974028, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 18.352999999999998], [518, 239, 0, 0.04685289256198347, \n 0.123915281026504, 495.0, 495.0, 495.0, 0, 1, 1, -360, 70.865], [575, \n 543, 0, 0.0030307438016528923, 0.032062521596058796, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 9.168], [401, 360, 0, 0.007957063711911357, \n 0.071409774520472, 856.0, 856.0, 856.0, 0, 1, 1, -360, 22.98], [580, \n 581, 0, 0.007134545454545454, 0.018869255592422397, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.790999999999999], [401, 402, 0, 0.0033434903047091418,\n 0.030005778188384805, 856.0, 856.0, 856.0, 0, 1, 1, -360, 9.656], [403,\n 231, 0, 0.009592105263157893, 0.08608327126915, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 27.701999999999998], [189, 360, 0, 0.028456024930747923, \n 0.255375399471348, 856.0, 856.0, 856.0, 0, 1, 1, -360, 82.181], [234, \n 404, 0, 0.008092561983471074, 0.0214029921648796, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 12.24], [235, 404, 0, 0.05107504132231405, \n 0.13508190749437998, 495.0, 495.0, 495.0, 0, 1, 1, -360, 77.251], [235,\n 580, 0, 0.000580495867768595, 0.00153527999352772, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 0.878], [216, 259, 0, 0.0022115650969529088, \n 0.079389770210892, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, \n 12.774000000000001], [405, 259, 0, 0.0052832409972299165, \n 0.1896554115982928, 1711.0, 1711.0, 1711.0, 0, 2, 1, -360, 30.516], [\n 405, 318, 0, 0.0066348684210526315, 0.23817552558268398, 1711.0, 1711.0,\n 1711.0, 0, 2, 1, -360, 38.323], [406, 230, 0, 8.098164819944598e-05, \n 0.046512685161986804, 6845.0, 6845.0, 6845.0, 0, 1, 1, -360, 1.871], [\n 542, 407, 0, 0.025569586776859506, 0.067625761355152, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 38.674], [23, 408, 0, 0.03224528925619835, \n 0.08528148128033601, 495.0, 495.0, 495.0, 0, 1, 1, -360, 48.771], [577,\n 348, 0, 0.012999008264462809, 0.13751772188026398, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 39.321999999999996], [562, 564, 0, 0.06921520661157024, \n 0.18305853298686803, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 104.68799999999999], [582, 507, 0, 0.006357685950413223, \n 0.016814638289042002, 495.0, 495.0, 495.0, 0, 1, 1, -360, 9.616], [27, \n 410, 0, 0.0030042975206611565, 0.007945685980170399, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 4.544], [501, 27, 0, 0.003811570247933884, \n 0.040322957460962, 991.0, 991.0, 991.0, 0, 1, 1, -360, 11.53], [27, 411,\n 0, 0.004648595041322314, 0.012294480221518, 495.0, 495.0, 495.0, 0, 1, \n 1, -360, 7.031000000000001], [411, 410, 0, 0.002054214876033058, \n 0.0054329327333556, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 3.1069999999999998], [403, 360, 0, 0.008191481994459833, \n 0.07351353506655639, 856.0, 856.0, 856.0, 0, 1, 1, -360, \n 23.656999999999996], [412, 360, 0, 0.016761772853185596, \n 0.15042664773666, 856.0, 856.0, 856.0, 0, 1, 1, -360, 48.408], [326, \n 413, 0, 0.012077024793388432, 0.12776397267356798, 991.0, 991.0, 991.0,\n 0, 2, 1, -360, 36.533], [414, 413, 0, 0.008093223140495867, \n 0.08561896310149601, 991.0, 991.0, 991.0, 0, 2, 1, -360, 24.482], [6, \n 297, 0, 0.019472396694214876, 0.0128750188978664, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 14.725999999999999], [554, 580, 0, 0.07435371900826447, \n 0.196648733567264, 495.0, 495.0, 495.0, 0, 1, 1, -360, 112.46], [262, \n 401, 0, 0.03931232686980609, 0.35280406181043206, 856.0, 856.0, 856.0, \n 0, 1, 1, -360, 113.53399999999999], [499, 556, 0, 0.04185586776859504, \n 0.11069928308639199, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 63.306999999999995], [224, 229, 0, 0.004135206611570248, \n 0.0437467367631624, 991.0, 991.0, 991.0, 0, 1, 1, -360, 12.509], [583, \n 507, 0, 0.024632727272727268, 0.065147980317596, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 37.257], [415, 307, 0, 0.015675554016620498, \n 0.1406784987952448, 856.0, 856.0, 856.0, 0, 1, 1, -360, 45.271], [416, \n 507, 0, 0.0010555371900826446, 0.011166626467730801, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 3.193], [284, 561, 0, 0.015221487603305786, \n 0.16102953827307598, 991.0, 991.0, 991.0, 0, 1, 1, -360, 46.045], [543,\n 417, 0, 0.0006614876033057851, 0.027991756419545603, 1981.0, 1981.0, \n 1981.0, 0, 4, 1, -360, 4.002], [418, 506, 0, 0.0009395041322314049, \n 0.009939101917118, 991.0, 991.0, 991.0, 0, 1, 1, -360, 2.842], [220, \n 157, 0, 0.004599549861495845, 0.165112574384632, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 26.566999999999997], [295, 419, 0, 0.0012023140495867769,\n 0.012719392565946, 991.0, 991.0, 991.0, 0, 1, 1, -360, 3.637], [295, \n 420, 0, 0.0008003305785123967, 0.008466771900532, 991.0, 991.0, 991.0, \n 0, 1, 1, -360, 2.421], [541, 62, 0, 0.05133355371900827, \n 0.0339414035471236, 248.0, 248.0, 248.0, 0, 1, 1, -360, 38.821], [52, \n 421, 0, 0.00013885041551246538, 0.004984389831631239, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 0.802], [60, 160, 0, 6.128808864265928e-05, \n 0.000550023067454096, 856.0, 856.0, 856.0, 0, 2, 1, -360, 0.177], [535,\n 161, 0, 3.735537190082645e-05, 0.00039518596644331203, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 0.113], [267, 282, 0, 0.0065652700831024926, \n 0.235677115717012, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 37.921], [52,\n 365, 0, 0.007655586334279779, 0.15458444922992, 1283.0, 1283.0, 1283.0,\n 0, 1, 1, -360, 33.164], [28, 27, 0, 0.015726942148760328, \n 0.041594197273402404, 495.0, 495.0, 495.0, 0, 1, 1, -360, 23.787], [30,\n 201, 0, 0.009128289473684211, 0.327683234253536, 1711.0, 1711.0, 1711.0,\n 0, 2, 1, -360, 52.725], [422, 81, 0, 0.0004226685133887349, \n 0.13655487952674, 5134.0, 5134.0, 5134.0, 0, 6, 1, -360, 7.324], [119, \n 425, 0, 0.003579120498614958, 0.1284816595874996, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 20.673000000000002], [423, 425, 0, \n 0.0006518351800554017, 0.0233992864289392, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 3.765], [424, 425, 0, 0.005922957063711911, \n 0.21261965153389198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 34.211], [\n 426, 428, 0, 0.013948429752066116, 0.14756174042535197, 991.0, 991.0, \n 991.0, 0, 2, 1, -360, 42.193999999999996], [427, 428, 0, \n 0.0002664462809917355, 0.0028187600792304794, 991.0, 991.0, 991.0, 0, 2,\n 1, -360, 0.8059999999999999], [19, 428, 0, 0.023607603305785128, \n 0.24974703912892798, 991.0, 991.0, 991.0, 0, 2, 1, -360, 71.413], [45, \n 429, 0, 0.02562314049586777, 0.067767398802972, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 38.755], [44, 429, 0, 5.289256198347107e-05, \n 0.00013988883767892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.08], [505, \n 429, 0, 0.006012561983471073, 0.015901863623161996, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 9.094], [231, 431, 0, 0.011677285318559558, \n 0.4191859418495199, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 67.44800000000001], [190, 431, 0, 0.009600761772853185, \n 0.34464383257266795, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 55.45399999999999], [430, 431, 0, 0.0028100761772853187, \n 0.1008748520662472, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 16.230999999999998], [286, 433, 0, 0.01568694214876033, \n 0.16595362535967603, 991.0, 991.0, 991.0, 0, 1, 1, -360, 47.453], [432,\n 433, 0, 0.00010049586776859504, 0.00106315516636076, 991.0, 991.0, \n 991.0, 0, 1, 1, -360, 0.304], [506, 433, 0, 0.0065904132231404955, \n 0.06972059669946801, 991.0, 991.0, 991.0, 0, 1, 1, -360, 19.936], [23, \n 434, 0, 0.02613685950413223, 0.069126069139116, 495.0, 495.0, 495.0, 0,\n 2, 1, -360, 39.532], [400, 434, 0, 0.008155371900826446, \n 0.021569110159669603, 495.0, 495.0, 495.0, 0, 2, 1, -360, 12.335], [500,\n 434, 0, 0.006338512396694216, 0.0167639285853336, 495.0, 495.0, 495.0, \n 0, 2, 1, -360, 9.587], [32, 436, 0, 0.0044813019390581715, \n 0.16086776359270402, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 25.884], [\n 435, 436, 0, 0.0006634349030470914, 0.023815688073266, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 3.832], [78, 436, 0, 0.00897680055401662, \n 0.32224515307884394, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 51.85], [86,\n 438, 0, 0.014693213296398892, 0.52745036936438, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 84.868], [437, 438, 0, 1.0387811634349031e-05, \n 0.0003728969948845, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.06], [221,\n 438, 0, 0.002280124653739612, 0.081850890377238, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 13.17], [207, 439, 0, 0.055703801652892564, \n 0.0368309823503996, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 42.126000000000005], [516, 439, 0, 0.05448462809917355, \n 0.03602487292327441, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 41.20399999999999], [513, 439, 0, 0.046726611570247926, \n 0.0308953241066316, 248.0, 248.0, 248.0, 0, 1, 1, -360, \n 35.336999999999996], [181, 441, 0, 0.040805289256198356, \n 0.10792074104825197, 495.0, 495.0, 495.0, 0, 1, 1, -360, 61.718], [440,\n 441, 0, 0.0001322314049586777, 0.000349722094197784, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.2], [504, 441, 0, 0.05916099173553719, \n 0.156467413554364, 495.0, 495.0, 495.0, 0, 1, 1, -360, \n 89.48100000000001], [135, 442, 0, 0.004956890581717451, \n 0.177940231009092, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 28.631], [109,\n 442, 0, 0.0015380886426592797, 0.055213615042649204, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 8.884], [112, 442, 0, 0.0027304362880886425, \n 0.09801597510545401, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 15.770999999999999], [113, 443, 0, 0.0019885734072022164, \n 0.07138491472072879, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 11.485999999999999], [132, 443, 0, 0.006788434903047091, \n 0.24368818615747198, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 39.21], [\n 107, 443, 0, 2.2333795013850418e-05, 0.000801728539002036, 1711.0, \n 1711.0, 1711.0, 0, 1, 1, -360, 0.129], [444, 445, 0, \n 7.877423822714682e-05, 0.00282780221121528, 1711.0, 1711.0, 1711.0, 0, \n 1, 1, -360, 0.455], [112, 445, 0, 0.002816135734072022, \n 0.101092375313206, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.266], [109,\n 445, 0, 0.0014354224376731304, 0.0515281497432104, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 8.291], [119, 447, 0, 0.005212690443213296, \n 0.74849127803204, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 60.217], [100,\n 447, 0, 0.0050695117728531865, 0.7279322237145921, 3423.0, 3423.0, \n 3423.0, 0, 2, 1, -360, 58.563], [446, 447, 0, 2.9518698060941832e-05, \n 0.00423859584186224, 3423.0, 3423.0, 3423.0, 0, 2, 1, -360, 0.341], [\n 124, 448, 0, 6.509695290858726e-05, 0.00233682116794768, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 0.376], [125, 448, 0, 0.00615148891966759, \n 0.22082338542026803, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 35.531], [\n 131, 448, 0, 3.912742382271468e-05, 0.0014045786807313759, 1711.0, \n 1711.0, 1711.0, 0, 1, 1, -360, 0.226], [449, 450, 0, \n 0.0023614958448753462, 0.08477191683710039, 1711.0, 1711.0, 1711.0, 0, \n 1, 1, -360, 13.64], [173, 450, 0, 0.002862361495844876, \n 0.10275176694050518, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 16.533], [\n 184, 450, 0, 0.004022853185595568, 0.14441057621844403, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 23.236], [144, 451, 0, 0.007672727272727273, \n 0.020292624515794402, 495.0, 495.0, 495.0, 0, 1, 1, -360, 11.605], [140,\n 451, 0, 0.006991074380165291, 0.018489807120219602, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 10.574000000000002], [514, 451, 0, 0.01149289256198347, \n 0.030396095817207994, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.383], [537,\n 585, 0, 0.05072595041322314, 0.134158641165824, 495.0, 495.0, 495.0, 0,\n 1, 1, -360, 76.723], [141, 585, 0, 0.007994710743801653, \n 0.0211441978151932, 495.0, 495.0, 495.0, 0, 1, 1, -360, 12.092], [584, \n 585, 0, 9.256198347107438e-05, 0.000244805465938352, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.14], [522, 454, 0, 0.0035008264462809916, \n 0.0092588924438956, 495.0, 495.0, 495.0, 0, 1, 1, -360, 5.295], [144, \n 454, 0, 0.00452892561983471, 0.011977981726290799, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 6.85], [453, 454, 0, 0.001114710743801653, \n 0.0029481572540882, 495.0, 495.0, 495.0, 0, 1, 1, -360, 1.686], [199, \n 456, 0, 0.013063140495867768, 0.0086372614214612, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 9.879], [140, 456, 0, 0.005061818181818182, \n 0.013387361765852802, 495.0, 495.0, 495.0, 0, 2, 1, -360, \n 7.656000000000001], [455, 456, 0, 0.0011365289256198346, \n 0.00300586139962416, 495.0, 495.0, 495.0, 0, 2, 1, -360, 1.719], [537, \n 456, 0, 0.039058512396694216, 0.025825228046024003, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 29.538], [538, 457, 0, 0.027927272727272728, \n 0.0184653265736368, 248.0, 248.0, 248.0, 0, 1, 1, -360, 21.12], [153, \n 457, 0, 0.030093223140495867, 0.019897438549384, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 22.758000000000003], [176, 457, 0, 0.004579173553719009, \n 0.0030277190305137603, 248.0, 248.0, 248.0, 0, 1, 1, -360, 3.463], [524,\n 459, 0, 0.004318677685950414, 0.011421923596476799, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 6.532], [458, 459, 0, 0.001993388429752066, \n 0.0052720605700488, 495.0, 495.0, 495.0, 0, 1, 1, -360, 3.015], [134, \n 459, 0, 0.011813553719008265, 0.031244171895617998, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 17.868], [460, 461, 0, 6.611570247933885e-05, \n 0.000174861047098892, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.1], [150, \n 461, 0, 0.008018512396694214, 0.021207147792120403, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 12.128], [149, 461, 0, 0.005586115702479339, \n 0.0147740098693748, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.449], [521, \n 463, 0, 0.014348429752066114, 0.009487086110365599, 248.0, 248.0, 248.0,\n 0, 1, 1, -360, 10.850999999999999], [462, 463, 0, 0.007197355371900825,\n 0.0047588433967958406, 248.0, 248.0, 248.0, 0, 1, 1, -360, 5.443], [538,\n 463, 0, 0.012211570247933883, 0.0080742088497664, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 9.235], [110, 464, 0, 0.0025753116343490306, \n 0.0924473799817492, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 14.875], [90,\n 464, 0, 0.007328947368421053, 0.26309125979076, 1711.0, 1711.0, 1711.0,\n 0, 1, 1, -360, 42.332], [165, 464, 0, 0.002152527700831025, \n 0.0772704722900764, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 12.433], [\n 458, 465, 0, 0.002003305785123967, 0.0052982897270776, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 3.03], [134, 465, 0, 0.011838677685950413, \n 0.031310619093534, 495.0, 495.0, 495.0, 0, 1, 1, -360, 17.906], [524, \n 465, 0, 0.004293553719008264, 0.0113554763986092, 495.0, 495.0, 495.0, \n 0, 1, 1, -360, 6.494], [466, 467, 0, 0.0023509349030470914, \n 0.084392804892244, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 13.579], [110,\n 467, 0, 0.0025337603878116343, 0.09095579200221118, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 14.635], [165, 467, 0, 0.0022891274238227145, \n 0.08217406777274441, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 13.222000000000001], [468, 469, 0, 0.0005269421487603305, \n 0.0013936425453786, 495.0, 495.0, 495.0, 0, 1, 1, -360, 0.797], [541, \n 469, 0, 0.022390743801652895, 0.05921844221026801, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 33.866], [490, 469, 0, 0.028243305785123966, \n 0.07469714209944801, 495.0, 495.0, 495.0, 0, 1, 1, -360, 42.718], [263,\n 471, 0, 0.0371900826446281, 0.0245898347482832, 248.0, 248.0, 248.0, 0,\n 1, 1, -360, 28.125], [470, 471, 0, 0.001570909090909091, \n 0.0010386746197682802, 248.0, 248.0, 248.0, 0, 1, 1, -360, 1.188], [534,\n 471, 0, 0.024497190082644622, 0.0161973787927468, 248.0, 248.0, 248.0, \n 0, 1, 1, -360, 18.526], [136, 472, 0, 0.0007079293628808865, \n 0.025412930201351602, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 4.0889999999999995], [110, 472, 0, 0.00019511772853185596, \n 0.0070042485539216805, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 1.127], [\n 251, 472, 0, 4.207063711911357e-05, 0.00151023282928764, 1711.0, 1711.0,\n 1711.0, 0, 1, 1, -360, 0.243], [226, 474, 0, 0.017639669421487602, \n 0.011663231841509601, 248.0, 248.0, 248.0, 0, 1, 1, -360, 13.34], [473,\n 474, 0, 0.003467107438016529, 0.00916971330986216, 495.0, 495.0, 495.0,\n 0, 2, 1, -360, 5.244], [257, 474, 0, 0.020264462809917356, \n 0.053594910935781594, 495.0, 495.0, 495.0, 0, 2, 1, -360, 30.65], [6, \n 474, 0, 0.08066247933884299, 0.05333349367016, 248.0, 248.0, 248.0, 0, \n 1, 1, -360, 61.001000000000005], [299, 475, 0, 0.013238227146814403, \n 0.47521993028123993, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 76.464], [3,\n 475, 0, 0.0002794321329639889, 0.010030929162389441, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 1.614], [210, 475, 0, 0.0001481994459833795, \n 0.00531999712702368, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 0.856], [\n 297, 476, 0, 0.0193500826446281, 0.05117658265464801, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 29.267], [296, 476, 0, 0.005596694214876033, \n 0.014801987636898, 495.0, 495.0, 495.0, 0, 1, 1, -360, 8.465], [295, \n 476, 0, 0.0009474380165289256, 0.00250575880492432, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 1.433], [313, 478, 0, 0.008696849030470914, \n 0.31219557906752804, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 50.233000000000004], [477, 478, 0, 1.5235457063711912e-05, \n 0.0005469155924977479, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, \n 0.08800000000000001], [245, 478, 0, 0.005264542936288089, \n 0.188984197007248, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 30.408], [479,\n 481, 0, 0.028420495867768597, 0.07516576970575199, 495.0, 495.0, 495.0,\n 0, 1, 1, -360, 42.986000000000004], [565, 481, 0, 0.024842314049586776,\n 0.065702289836964, 495.0, 495.0, 495.0, 0, 1, 1, -360, 37.574], [480, \n 481, 0, 7.735537190082645e-05, 0.000204587425105844, 495.0, 495.0, \n 495.0, 0, 1, 1, -360, 0.11699999999999999], [415, 482, 0, \n 0.011021814404432133, 0.0989140353680364, 856.0, 856.0, 856.0, 0, 1, 1,\n -360, 31.831], [56, 482, 0, 0.002630886426592798, 0.0236105947261788, \n 856.0, 856.0, 856.0, 0, 1, 1, -360, 7.598], [409, 482, 0, \n 0.0007635041551246537, 0.0068519822810072005, 856.0, 856.0, 856.0, 0, 1,\n 1, -360, 2.205], [483, 484, 0, 9.037396121883656e-05, \n 0.000811050963873968, 856.0, 856.0, 856.0, 0, 1, 1, -360, 0.261], [3, \n 484, 0, 0.010022160664819944, 0.08994275516621358, 856.0, 856.0, 856.0,\n 0, 1, 1, -360, 28.944000000000003], [301, 484, 0, 0.00966516620498615, \n 0.08673894848517479, 856.0, 856.0, 856.0, 0, 1, 1, -360, 27.913], [233,\n 485, 0, 0.01410180055401662, 0.1265550251138996, 856.0, 856.0, 856.0, 0,\n 1, 1, -360, 40.726], [392, 485, 0, 0.00914819944598338, \n 0.0820994883738036, 856.0, 856.0, 856.0, 0, 1, 1, -360, 26.42], [391, \n 485, 0, 8.518005540166207e-05, 0.000764438839512864, 856.0, 856.0, \n 856.0, 0, 1, 1, -360, 0.24600000000000002], [579, 488, 0, \n 0.004636473829194215, 0.11036180126571601, 1486.0, 1486.0, 1486.0, 0, 1,\n 1, -360, 21.038], [486, 488, 0, 0.00016969696969690082, \n 0.00403929018798184, 1486.0, 1486.0, 1486.0, 0, 1, 1, -360, 0.77], [487,\n 488, 0, 0.00014567493112954544, 0.00346749456396992, 1486.0, 1486.0, \n 1486.0, 0, 1, 1, -360, 0.6609999999999999], [270, 489, 0, \n 0.0001745152354570637, 0.0062646695140596, 1711.0, 1711.0, 1711.0, 0, 1,\n 1, -360, 1.008], [331, 489, 0, 0.003002943213296399, \n 0.10779830627119119, 1711.0, 1711.0, 1711.0, 0, 1, 1, -360, 17.345], [\n 396, 489, 0, 0.01124792243767313, 0.40377286606072005, 1711.0, 1711.0, \n 1711.0, 0, 1, 1, -360, 64.968], [519, 253, 0, 0.013353485337561985, \n 0.141267767926912, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 40.394293146100004], [382, 349, 0, 0.009091647380263157, \n 1.30547149138788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 105.02671053600001], [349, 351, 0, 0.0005858117819605263, \n 0.0841168325920224, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 6.76729770521], [459, 465, 0, 1.578788789911157e-05, \n 0.00016702153987596, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.047758360894800005], [549, 550, 0, 3.680432518409091e-05, \n 0.000389356391787088, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.111333083682], [550, 551, 0, 5.755645674710744e-05, \n 0.0006088951287918401, 991.0, 991.0, 991.0, 0, 1, 1, -360, \n 0.17410828165999997], [194, 195, 0, 1.7560672583171745e-05, \n 0.00252154053805592, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.202860889681], [247, 248, 0, 2.1755213937811637e-05, \n 0.0031238355819477198, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.25131623141], [2, 294, 0, 2.3531392658518004e-05, 0.003378877444715, \n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.271834647991], [549, 551, 0, \n 9.265809538429751e-05, 0.0009802386406577602, 991.0, 991.0, 991.0, 0, 1,\n 1, -360, 0.28029073853799996], [54, 365, 0, 2.573045189134349e-05, \n 0.00369464080598484, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.297238180249], [131, 265, 0, 2.7616389041343487e-05, \n 0.00396544290388756, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.319024526206], [91, 92, 0, 2.8945628197853184e-05, \n 0.0041563086239824396, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.33437989694200004], [247, 249, 0, 3.098840072160664e-05, \n 0.00444963074500788, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.357978005136], [186, 191, 0, 3.1591661821191135e-05, \n 0.00453625312865552, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.36494687735799997], [129, 173, 0, 3.202671277479225e-05, \n 0.00459872218332188, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.369972585975], [96, 202, 0, 3.5971247867797784e-05, \n 0.00516511877739804, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.415539855369], [53, 320, 0, 3.784209581142659e-05, \n 0.00543375421308236, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.437151890814], [24, 396, 0, 4.144748602818559e-05, \n 0.005951452925597279, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.47880135859800005], [133, 156, 0, 4.431754564044322e-05, \n 0.0063635653674415605, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.511956287238], [442, 452, 0, 4.483572190450138e-05, \n 0.006437970402313801, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.517942259441], [445, 452, 0, 4.490753296371191e-05, \n 0.0064482817668697215, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.518771820797], [247, 250, 0, 4.594910768732687e-05, \n 0.00659784169268824, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.530804092004], [187, 195, 0, 4.755760376239612e-05, \n 0.006828805970367921, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.549385438663], [216, 236, 0, 5.03353075283241e-05, \n 0.00722765701751724, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.581473472567], [244, 389, 0, 5.1633313019736845e-05, \n 0.007414037889302401, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.596468032004], [394, 406, 0, 5.6346419007686985e-05, \n 0.008090793734075721, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.650913832377], [442, 445, 0, 6.388070648310249e-05, \n 0.00917264360085512, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.737949921293], [442, 444, 0, 6.584378362735456e-05, \n 0.00945452224616264, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 0.760627388463], [198, 472, 0, 8.37554210498615e-05, 0.0120264578966664,\n 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, 0.967542623967], [464, 467, 0, \n 8.460287496468144e-05, 0.01214814397621276, 3423.0, 3423.0, 3423.0, 0, \n 1, 1, -360, 0.977332411594], [198, 251, 0, 8.83613182396122e-05, \n 0.012687819608389479, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.0207499483], [112, 143, 0, 9.049653833033241e-05, \n 0.012994416294241841, 3423.0, 3423.0, 3423.0, 0, 1, 1, -360, \n 1.04541601079], [2, 490, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [5, 491, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0, \n 1, -360, 360], [10, 492, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [12, 493, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [13, 494, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [15, 495, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [18, 496, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [20, 497, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [22, 498, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [24, 499, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [26, 500, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [30, 501, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [32, 502, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [37, 503, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [42, 504, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [46, 505, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [52, 506, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [56, 507, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [61, 508, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [68, 509, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [69, 510, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [74, 511, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [78, 512, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [86, 513, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [87, 514, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [94, 515, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [95, 516, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [96, 517, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [99, 518, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [100, 519, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [104, 520, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [105, 521, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [106, 522, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [107, 523, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [117, 524, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [120, 525, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [123, 526, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [124, 527, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [125, 528, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [128, 529, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [129, 530, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [138, 531, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [143, 532, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [156, 533, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [157, 534, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [159, 535, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [160, 536, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [165, 537, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [184, 538, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [191, 539, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [195, 540, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [201, 541, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [220, 542, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [231, 543, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [232, 544, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [233, 545, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [236, 546, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [245, 547, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [246, 548, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [248, 549, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [249, 550, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [250, 551, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [259, 552, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [261, 553, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [262, 554, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [265, 555, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [270, 556, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [277, 557, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [279, 558, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [280, 559, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [290, 560, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [301, 561, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [305, 562, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [306, 563, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [310, 564, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [313, 565, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [315, 566, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [320, 567, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [330, 568, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [332, 569, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [334, 570, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [336, 571, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [349, 572, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [351, 573, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [358, 574, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [360, 575, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [380, 576, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [382, 577, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [383, 578, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [389, 579, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [401, 580, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [402, 581, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [409, 582, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [415, 583, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [444, 584, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360], [452, 585, 0, 0.005, 0.0, 2000.0, 2000.0, 2000.0, 1.0, 0,\n 1, -360, 360]])\n', (245160, 407541), False, 'from numpy import array\n'), ((427906, 510708), 'numpy.array', 'array', (['[[586, 1, 0.08658028904199107, 4.329014452099554, 0, 0, 0], [589, 1, \n 0.010042676909098597, 0.5021338454549299, 0, 0, 0], [590, 1, \n 0.012095775674984046, 0.6047887837492023, 0, 0, 0], [593, 1, \n 0.0017666198683200384, 0.08833099341600192, 0, 0, 0], [594, 1, \n 0.006047887837492023, 0.30239439187460115, 0, 0, 0], [595, 1, \n 1.50560576164933, 75.2802880824665, 0, 0, 0], [598, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [599, 1, \n 0.0029602819415092537, 0.1480140970754627, 0, 0, 0], [601, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [602, 1, \n 0.007830423200121252, 0.39152116000606263, 0, 0, 0], [603, 1, \n 1.0997606567649967, 54.98803283824984, 0, 0, 0], [607, 1, \n 0.5729577951308232, 28.64788975654116, 0, 0, 0], [608, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [609, 1, \n 0.0057932399285449895, 0.2896619964272495, 0, 0, 0], [612, 1, \n 0.00954929658551372, 0.477464829275686, 0, 0, 0], [613, 1, \n 0.027056340325622208, 1.3528170162811104, 0, 0, 0], [614, 1, \n 0.00954929658551372, 0.477464829275686, 0, 0, 0], [616, 1, \n 0.0046154933496649645, 0.23077466748324824, 0, 0, 0], [617, 1, \n 0.04360845440717932, 2.1804227203589663, 0, 0, 0], [618, 1, \n 0.010631550198538607, 0.5315775099269304, 0, 0, 0], [619, 1, \n 0.037560566569687294, 1.8780283284843649, 0, 0, 0], [621, 1, \n 0.24350706293059987, 12.175353146529993, 0, 0, 0], [623, 1, \n 0.2419155134996809, 12.095775674984045, 0, 0, 0], [624, 1, \n 0.004297183463481174, 0.21485917317405873, 0, 0, 0], [628, 1, \n 0.14292113889652203, 7.1460569448261015, 0, 0, 0], [629, 1, \n 0.023968734429639437, 1.198436721481972, 0, 0, 0], [632, 1, \n 0.01435577586688896, 0.717788793344448, 0, 0, 0], [637, 1, \n 0.017093240888069558, 0.854662044403478, 0, 0, 0], [638, 1, \n 0.02048324117592693, 1.0241620587963465, 0, 0, 0], [640, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [641, 1, \n 0.0040107045659157625, 0.20053522829578813, 0, 0, 0], [642, 1, \n 0.00919915571071155, 0.4599577855355775, 0, 0, 0], [643, 1, \n 0.27279157245950864, 13.639578622975431, 0, 0, 0], [646, 1, \n 0.03278591827693044, 1.6392959138465222, 0, 0, 0], [647, 1, \n 0.00445633840657307, 0.2228169203286535, 0, 0, 0], [650, 1, \n 0.4216014442504307, 21.080072212521536, 0, 0, 0], [652, 1, \n 0.00746436683100989, 0.37321834155049455, 0, 0, 0], [655, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [661, 1, \n 0.010408733278209955, 0.5204366639104978, 0, 0, 0], [663, 1, \n 0.00238732414637843, 0.1193662073189215, 0, 0, 0], [666, 1, \n 0.00919915571071155, 0.4599577855355775, 0, 0, 0], [668, 1, \n 0.24382537281678363, 12.191268640839182, 0, 0, 0], [670, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [672, 1, \n 0.010536057232683471, 0.5268028616341736, 0, 0, 0], [676, 1, \n 0.11777465788800255, 5.888732894400127, 0, 0, 0], [681, 1, \n 0.0063821132179850025, 0.31910566089925013, 0, 0, 0], [683, 1, \n 0.008753521870054244, 0.4376760935027122, 0, 0, 0], [687, 1, \n 0.42303383873825773, 21.151691936912886, 0, 0, 0], [689, 1, \n 0.09867606471697511, 4.933803235848756, 0, 0, 0], [691, 1, \n 0.008276057040778557, 0.4138028520389279, 0, 0, 0], [693, 1, \n 0.06175211791965539, 3.0876058959827692, 0, 0, 0], [694, 1, \n 0.005220282133414166, 0.2610141066707083, 0, 0, 0], [695, 1, \n 0.004679155326901723, 0.23395776634508614, 0, 0, 0], [696, 1, \n 0.22950142793851305, 11.475071396925653, 0, 0, 0], [697, 1, \n 0.0036923946797319715, 0.1846197339865986, 0, 0, 0], [698, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [702, 1, \n 0.023363945645890238, 1.168197282294512, 0, 0, 0], [704, 1, \n 0.16170142218136566, 8.085071109068283, 0, 0, 0], [705, 1, \n 0.005411268065124442, 0.27056340325622213, 0, 0, 0], [707, 1, \n 0.010822536130248884, 0.5411268065124443, 0, 0, 0], [708, 1, \n 0.0024828171122335675, 0.12414085561167837, 0, 0, 0], [711, 1, \n 0.056054370956965534, 2.802718547848277, 0, 0, 0], [713, 1, \n 0.004265352474862795, 0.21326762374313976, 0, 0, 0], [714, 1, \n 0.00477464829275686, 0.238732414637843, 0, 0, 0], [716, 1, \n 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0], [717, 1, \n 0.0017507043740108488, 0.08753521870054244, 0, 0, 0], [719, 1, \n 0.623250757147862, 31.162537857393104, 0, 0, 0], [722, 1, \n 0.006589014644004467, 0.3294507322002233, 0, 0, 0], [724, 1, \n 0.0019257748114119334, 0.09628874057059668, 0, 0, 0], [727, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [728, 1, \n 0.16233804195373325, 8.116902097686662, 0, 0, 0], [730, 1, \n 0.10077690996578814, 5.038845498289407, 0, 0, 0], [731, 1, \n 0.2848873481344926, 14.244367406724633, 0, 0, 0], [732, 1, \n 0.004647324338283344, 0.2323662169141672, 0, 0, 0], [735, 1, \n 0.013496339174192726, 0.6748169587096363, 0, 0, 0], [737, 1, \n 0.00891267681314614, 0.445633840657307, 0, 0, 0], [738, 1, \n 0.04408591923645501, 2.2042959618227504, 0, 0, 0], [741, 1, \n 0.0340591578216656, 1.7029578910832803, 0, 0, 0], [742, 1, \n 0.0028647889756541157, 0.14323944878270578, 0, 0, 0], [743, 1, \n 0.44881693951914486, 22.440846975957243, 0, 0, 0], [746, 1, \n 0.03183098861837907, 1.5915494309189535, 0, 0, 0], [747, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [748, 1, \n 0.03501408748021698, 1.7507043740108488, 0, 0, 0], [749, 1, \n 0.0025464790894703256, 0.12732395447351627, 0, 0, 0], [750, 1, \n 0.028902537665488188, 1.4451268832744095, 0, 0, 0], [753, 1, \n 0.049624511256052974, 2.4812255628026487, 0, 0, 0], [758, 1, \n 0.0058887328944001276, 0.2944366447200064, 0, 0, 0], [760, 1, \n 0.2527380496299298, 12.636902481496492, 0, 0, 0], [762, 1, \n 0.3517324242330887, 17.586621211654435, 0, 0, 0], [763, 1, \n 0.006461690689530951, 0.32308453447654756, 0, 0, 0], [765, 1, \n 0.018780283284843647, 0.9390141642421824, 0, 0, 0], [767, 1, \n 0.0035650707252584553, 0.17825353626292276, 0, 0, 0], [769, 1, \n 0.013782818071758136, 0.6891409035879068, 0, 0, 0], [771, 1, \n 0.21963382146681557, 10.981691073340778, 0, 0, 0], [772, 1, \n 0.002992112930127632, 0.1496056465063816, 0, 0, 0], [774, 1, \n 0.010663381187156987, 0.5331690593578494, 0, 0, 0], [776, 1, \n 0.01782535362629228, 0.891267681314614, 0, 0, 0], [777, 1, \n 0.012573240504259732, 0.6286620252129866, 0, 0, 0], [778, 1, \n 0.004679155326901723, 0.23395776634508614, 0, 0, 0], [781, 1, \n 0.4169859509007658, 20.84929754503829, 0, 0, 0], [784, 1, \n 0.4058451048843331, 20.292255244216655, 0, 0, 0], [785, 1, \n 0.00047746482927568597, 0.0238732414637843, 0, 0, 0], [787, 1, \n 0.24764509145098912, 12.382254572549456, 0, 0, 0], [788, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [789, 1, \n 0.0123185925953127, 0.615929629765635, 0, 0, 0], [791, 1, \n 0.0031830988618379067, 0.15915494309189535, 0, 0, 0], [792, 1, \n 0.009979014931861837, 0.49895074659309185, 0, 0, 0], [795, 1, \n 0.004329014452099553, 0.2164507226049777, 0, 0, 0], [801, 1, \n 0.007957747154594767, 0.3978873577297384, 0, 0, 0], [802, 1, \n 0.07957747154594767, 3.9788735772973833, 0, 0, 0], [805, 1, \n 0.44881693951914486, 22.440846975957243, 0, 0, 0], [806, 1, \n 0.005697746962689853, 0.2848873481344927, 0, 0, 0], [808, 1, \n 0.034616200122487235, 1.7308100061243619, 0, 0, 0], [809, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [811, 1, \n 0.0040107045659157625, 0.20053522829578813, 0, 0, 0], [814, 1, \n 0.014164789935178685, 0.7082394967589343, 0, 0, 0], [816, 1, \n 0.012748310941660816, 0.6374155470830408, 0, 0, 0], [817, 1, \n 0.017188733853924696, 0.8594366926962349, 0, 0, 0], [821, 1, \n 0.013130282805081364, 0.6565141402540683, 0, 0, 0], [822, 1, \n 0.04265352474862795, 2.1326762374313977, 0, 0, 0], [826, 1, \n 0.018461973398659858, 0.9230986699329929, 0, 0, 0], [829, 1, \n 0.06716338598477982, 3.3581692992389915, 0, 0, 0], [830, 1, \n 0.02832957987035737, 1.4164789935178685, 0, 0, 0], [835, 1, \n 0.010138169874953733, 0.5069084937476867, 0, 0, 0], [836, 1, \n 0.008116902097686661, 0.4058451048843331, 0, 0, 0], [837, 1, \n 0.15024226627874918, 7.512113313937459, 0, 0, 0], [839, 1, \n 0.011666057328635928, 0.5833028664317964, 0, 0, 0], [841, 1, \n 0.0037083101740411615, 0.18541550870205808, 0, 0, 0], [843, 1, \n 0.10599719209920229, 5.2998596049601145, 0, 0, 0], [844, 1, \n 0.012732395447351627, 0.6366197723675814, 0, 0, 0], [845, 1, \n 0.10122254380644544, 5.061127190322272, 0, 0, 0], [849, 1, \n 0.24796340133717296, 12.398170066858649, 0, 0, 0], [850, 1, \n 0.005092958178940651, 0.25464790894703254, 0, 0, 0], [851, 1, \n 0.01265281797580568, 0.632640898790284, 0, 0, 0], [853, 1, \n 0.0036923946797319715, 0.1846197339865986, 0, 0, 0], [854, 1, \n 0.026037748689834075, 1.3018874344917037, 0, 0, 0], [855, 1, \n 0.21899720169444797, 10.949860084722399, 0, 0, 0], [856, 1, \n 0.011459155902616463, 0.5729577951308231, 0, 0, 0], [857, 1, \n 0.4462704604296745, 22.313523021483725, 0, 0, 0], [858, 1, \n 0.01808000153523931, 0.9040000767619655, 0, 0, 0], [859, 1, \n 0.027056340325622208, 1.3528170162811104, 0, 0, 0], [860, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [862, 1, \n 0.23077466748324824, 11.538733374162412, 0, 0, 0], [863, 1, \n 0.0001909859317102744, 0.00954929658551372, 0, 0, 0], [864, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [865, 1, \n 0.0035014087480216977, 0.17507043740108488, 0, 0, 0], [867, 1, \n 0.24478030247533505, 12.239015123766753, 0, 0, 0], [869, 1, \n 0.4329014452099553, 21.645072260497766, 0, 0, 0], [870, 1, \n 0.018589297353133374, 0.9294648676566688, 0, 0, 0], [872, 1, \n 0.00716197243913529, 0.3580986219567645, 0, 0, 0], [873, 1, \n 0.038833806114422456, 1.941690305721123, 0, 0, 0], [874, 1, \n 0.006589014644004467, 0.3294507322002233, 0, 0, 0], [875, 1, \n 0.007766761222884492, 0.38833806114422464, 0, 0, 0], [877, 1, \n 0.007894085177358009, 0.39470425886790045, 0, 0, 0], [882, 1, \n 0.005538592019597957, 0.2769296009798979, 0, 0, 0], [883, 1, \n 0.005729577951308231, 0.28647889756541156, 0, 0, 0], [886, 1, \n 0.8186930272647096, 40.93465136323548, 0, 0, 0], [889, 1, \n 0.0030239439187460114, 0.15119719593730058, 0, 0, 0], [890, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [895, 1, \n 0.0030239439187460114, 0.15119719593730058, 0, 0, 0], [896, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [898, 1, \n 0.013464508185574344, 0.6732254092787172, 0, 0, 0], [900, 1, \n 0.03584169318429482, 1.7920846592147412, 0, 0, 0], [902, 1, \n 0.006207042780583919, 0.31035213902919595, 0, 0, 0], [903, 1, \n 0.0031990143561470966, 0.15995071780735484, 0, 0, 0], [905, 1, \n 0.021851973686517232, 1.0925986843258617, 0, 0, 0], [906, 1, \n 0.010504226244065093, 0.5252113122032547, 0, 0, 0], [907, 1, \n 0.02142225534016911, 1.0711127670084555, 0, 0, 0], [909, 1, \n 0.005856901905781748, 0.2928450952890874, 0, 0, 0], [913, 1, \n 0.02355493157760051, 1.1777465788800257, 0, 0, 0], [915, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [917, 1, \n 0.005411268065124442, 0.27056340325622213, 0, 0, 0], [918, 1, \n 0.012254930618075942, 0.612746530903797, 0, 0, 0], [920, 1, \n 0.0020371832715762603, 0.10185916357881303, 0, 0, 0], [921, 1, \n 0.019735212943395024, 0.9867606471697512, 0, 0, 0], [922, 1, \n 0.05220282133414166, 2.6101410667070835, 0, 0, 0], [923, 1, \n 0.023236621691416718, 1.161831084570836, 0, 0, 0], [925, 1, \n 0.008276057040778557, 0.4138028520389279, 0, 0, 0], [928, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [931, 1, \n 0.03455253814525047, 1.7276269072625237, 0, 0, 0], [934, 1, \n 0.09421972631040204, 4.710986315520103, 0, 0, 0], [935, 1, \n 0.007352958370845565, 0.36764791854227824, 0, 0, 0], [936, 1, \n 0.016615776058793875, 0.8307888029396938, 0, 0, 0], [937, 1, \n 0.00477464829275686, 0.238732414637843, 0, 0, 0], [939, 1, \n 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0], [940, 1, \n 0.009421972631040205, 0.47109863155201026, 0, 0, 0], [942, 1, \n 0.016520283092938737, 0.8260141546469368, 0, 0, 0], [944, 1, \n 0.004042535554534142, 0.2021267777267071, 0, 0, 0], [945, 1, \n 0.011140846016432674, 0.5570423008216338, 0, 0, 0], [950, 1, \n 0.005092958178940651, 0.25464790894703254, 0, 0, 0], [952, 1, \n 0.005045211696013082, 0.2522605848006541, 0, 0, 0], [958, 1, \n 0.010615634704229418, 0.530781735211471, 0, 0, 0], [959, 1, \n 0.007241549910681238, 0.3620774955340619, 0, 0, 0], [960, 1, \n 0.004217605991935227, 0.21088029959676136, 0, 0, 0], [963, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [965, 1, \n 0.11204507993669433, 5.602253996834716, 0, 0, 0], [966, 1, \n 0.021008452488130186, 1.0504226244065094, 0, 0, 0], [967, 1, \n 0.01193662073189215, 0.5968310365946076, 0, 0, 0], [968, 1, \n 0.017188733853924696, 0.8594366926962349, 0, 0, 0], [969, 1, \n 0.018111832523857688, 0.9055916261928845, 0, 0, 0], [971, 1, \n 0.0031830988618379067, 0.15915494309189535, 0, 0, 0], [973, 1, \n 0.4287634166895661, 21.438170834478306, 0, 0, 0], [976, 1, \n 0.008562535938343968, 0.4281267969171984, 0, 0, 0], [977, 1, \n 0.1031324031235482, 5.15662015617741, 0, 0, 0], [978, 1, \n 0.0007321127382227185, 0.03660563691113593, 0, 0, 0], [981, 1, \n 0.03787887645587108, 1.8939438227935543, 0, 0, 0], [982, 1, \n 0.0015756339366097638, 0.07878169683048819, 0, 0, 0], [983, 1, \n 0.01400563499208679, 0.7002817496043395, 0, 0, 0], [984, 1, \n 0.14801409707546268, 7.400704853773133, 0, 0, 0], [985, 1, \n 0.0035014087480216977, 0.17507043740108488, 0, 0, 0], [986, 1, \n 0.0017825353626292277, 0.08912676813146138, 0, 0, 0], [987, 1, \n 0.02618098813861678, 1.3090494069308392, 0, 0, 0], [988, 1, \n 0.0008116902097686662, 0.04058451048843331, 0, 0, 0], [990, 1, \n 0.0954929658551372, 4.7746482927568605, 0, 0, 0], [993, 1, \n 0.06238873769202297, 3.119436884601149, 0, 0, 0], [994, 1, \n 0.010504226244065093, 0.5252113122032547, 0, 0, 0], [995, 1, \n 0.0006684507609859605, 0.033422538049298026, 0, 0, 0], [997, 1, \n 0.005984225860255264, 0.2992112930127632, 0, 0, 0], [999, 1, \n 0.004965634224467135, 0.24828171122335674, 0, 0, 0], [1000, 1, \n 0.015597184423005743, 0.7798592211502873, 0, 0, 0], [1002, 1, \n 0.0031512678732195276, 0.15756339366097638, 0, 0, 0], [1003, 1, \n 0.2864788975654116, 14.32394487827058, 0, 0, 0], [1007, 1, \n 0.007416620348082323, 0.37083101740411617, 0, 0, 0], [1008, 1, \n 0.015597184423005743, 0.7798592211502873, 0, 0, 0], [1010, 1, \n 0.238732414637843, 11.93662073189215, 0, 0, 0], [1011, 1, \n 0.005952394871636886, 0.2976197435818443, 0, 0, 0], [1012, 1, \n 0.9024085273310466, 45.12042636655233, 0, 0, 0], [1018, 1, \n 0.05599070897972878, 2.7995354489864392, 0, 0, 0], [1023, 1, \n 6.366197723675813e-05, 0.003183098861837907, 0, 0, 0], [1026, 1, \n 0.20868396138209316, 10.434198069104658, 0, 0, 0], [1027, 3, \n 0.003074873500535418, 0.15374367502677092, 2.22, 61.69, 0.004502], [\n 1028, 2, 0.025464790894703257, 1.273239544735163, 0, 0, 0], [1029, 2, \n 0.003819718634205488, 0.19098593171027442, 0, 0, 0], [1030, 2, \n 0.06480789282701978, 3.2403946413509894, 0, 0, 0], [1031, 2, \n 0.0921316134570364, 4.60658067285182, 0, 0, 0], [1032, 2, \n 0.007079413776351905, 0.3539706888175953, 0, 0, 0], [1033, 2, \n 0.0016944568259984044, 0.08472284129992022, 0, 0, 0], [1034, 2, \n 0.005364335122251813, 0.26821675611259066, 0, 0, 0], [1035, 3, \n 0.001981955148228083, 0.09909775741140416, 2.22, 61.69, 0.004502], [\n 1036, 2, 0.0022873115124132943, 0.11436557562066473, 0, 0, 0], [1037, 2,\n 0.0060277734620055035, 0.3013886731002752, 0, 0, 0], [1038, 2, \n 0.005462103769994554, 0.2731051884997277, 0, 0, 0], [1039, 2, \n 0.005563341057826885, 0.2781670528913443, 0, 0, 0], [1040, 3, \n 1.6315213950589632e-06, 8.157606975294815e-05, 2.22, 61.69, 0.004502],\n [1041, 2, 0.008814427293793635, 0.44072136468968176, 0, 0, 0], [1042, 2,\n 0.0018607001428599438, 0.09303500714299719, 0, 0, 0], [1044, 3, \n 0.0023022419250361527, 0.11511209625180763, 2.22, 61.69, 0.004502], [\n 1046, 2, 0.00679827557108513, 0.33991377855425653, 0, 0, 0], [1047, 3, \n 0.0008294889076348922, 0.04147444538174461, 2.22, 61.69, 0.004502], [\n 1048, 2, 0.004561818873896339, 0.22809094369481697, 0, 0, 0], [1049, 2,\n 0.018385610936452915, 0.9192805468226458, 0, 0, 0], [1050, 2, \n 0.001537750507570102, 0.07688752537850511, 0, 0, 0], [1051, 2, \n 0.009116741738348545, 0.45583708691742725, 0, 0, 0], [1052, 3, \n 0.001315809692296204, 0.06579048461481019, 2.22, 61.69, 0.004502], [\n 1053, 3, 0.001042024786453249, 0.05210123932266245, 2.22, 61.69, \n 0.004502], [1054, 2, 0.017434200209443074, 0.8717100104721537, 0, 0, 0],\n [1055, 3, 0.00010774097736088163, 0.005387048868044082, 2.22, 61.69, \n 0.004502], [1056, 2, 0.024955622083180834, 1.2477811041590419, 0, 0, 0],\n [1057, 2, 0.019784894623485406, 0.9892447311742705, 0, 0, 0], [1058, 2,\n 0.0501746065091408, 2.5087303254570403, 0, 0, 0], [1059, 2, \n 0.019128255048965058, 0.956412752448253, 0, 0, 0], [1060, 3, \n 0.00037000637396576757, 0.01850031869828838, 2.22, 61.69, 0.004502], [\n 1061, 2, 0.007080526996749377, 0.35402634983746883, 0, 0, 0], [1062, 3,\n 9.707513784221655e-05, 0.004853756892110828, 2.22, 61.69, 0.004502], [\n 1063, 3, 0.00028322305939182586, 0.014161152969591292, 2.22, 61.69, \n 0.004502], [1064, 2, 0.007915553554409737, 0.3957776777204869, 0, 0, 0],\n [1065, 2, 0.012331591192492646, 0.6165795596246323, 0, 0, 0], [1066, 2,\n 0.00430468846466002, 0.21523442323300102, 0, 0, 0], [1067, 3, \n 0.000833991719638428, 0.0416995859819214, 2.22, 61.69, 0.004502], [1072,\n 2, 0.007168748144119091, 0.3584374072059546, 0, 0, 0], [1073, 2, \n 0.004954025493475761, 0.24770127467378808, 0, 0, 0], [1074, 2, \n 0.009778033156939965, 0.48890165784699824, 0, 0, 0], [1075, 3, \n 0.00040004260890517566, 0.020002130445258785, 2.22, 61.69, 0.004502], [\n 1076, 3, 5.826983890127388e-05, 0.0029134919450636942, 2.22, 61.69, \n 0.004502], [1077, 3, 0.000673485067260617, 0.03367425336303085, 2.22, \n 61.69, 0.004502], [1078, 3, 0.0008721888640652444, 0.04360944320326222,\n 2.22, 61.69, 0.004502], [1079, 2, 0.004604543003215469, \n 0.23022715016077344, 0, 0, 0], [1080, 2, 0.0033504365751281366, \n 0.16752182875640684, 0, 0, 0], [1081, 2, 0.01904428060299353, \n 0.9522140301496764, 0, 0, 0], [1082, 2, 0.019142175329409636, \n 0.957108766470482, 0, 0, 0], [1083, 2, 0.02765555111759417, \n 1.3827775558797086, 0, 0, 0], [1084, 2, 0.02251139636942165, \n 1.1255698184710827, 0, 0, 0], [1085, 2, 0.002924465032188045, \n 0.14622325160940225, 0, 0, 0], [1086, 2, 0.006054053089096882, \n 0.3027026544548441, 0, 0, 0], [1087, 2, 0.0038538640246270086, \n 0.19269320123135042, 0, 0, 0], [1088, 3, 0.0012212923154449559, \n 0.06106461577224779, 2.22, 61.69, 0.004502], [1089, 2, \n 0.013632409346171416, 0.6816204673085708, 0, 0, 0], [1090, 2, \n 0.005674885746854652, 0.2837442873427326, 0, 0, 0], [1091, 3, \n 0.002915330196419503, 0.14576650982097517, 2.22, 61.69, 0.004502], [\n 1092, 2, 0.003437876146252996, 0.1718938073126498, 0, 0, 0], [1093, 2, \n 0.009906140914748767, 0.49530704573743833, 0, 0, 0], [1094, 3, \n 0.00014679877069625013, 0.007339938534812507, 2.22, 61.69, 0.004502], [\n 1095, 3, 7.832040393398852e-06, 0.0003916020196699426, 2.22, 61.69, \n 0.004502], [1096, 2, 0.004823456141103677, 0.24117280705518382, 0, 0, 0\n ], [1097, 3, 0.0002929164939619051, 0.014645824698095257, 2.22, 61.69, \n 0.004502], [1098, 2, 0.004521623727146264, 0.22608118635731317, 0, 0, 0\n ], [1099, 2, 0.018521637260932335, 0.9260818630466169, 0, 0, 0], [1101,\n 2, 0.004867852752026397, 0.24339263760131985, 0, 0, 0], [1102, 2, \n 0.019015404138804773, 0.9507702069402387, 0, 0, 0], [1103, 2, \n 0.01562148424141561, 0.7810742120707805, 0, 0, 0], [1104, 3, \n 6.386306370616109e-06, 0.00031931531853080544, 2.22, 61.69, 0.004502],\n [1105, 3, 8.412502229539806e-05, 0.004206251114769903, 2.22, 61.69, \n 0.004502], [1106, 3, 6.584959765284522e-05, 0.0032924798826422614, 2.22,\n 61.69, 0.004502], [1107, 2, 0.0019415493568754525, 0.09707746784377262,\n 0, 0, 0], [1108, 2, 0.008230112689073, 0.41150563445365, 0, 0, 0], [\n 1109, 3, 2.1817288020453202e-05, 0.00109086440102266, 2.22, 61.69, \n 0.004502], [1110, 3, 5.497784342238009e-05, 0.0027488921711190046, 2.22,\n 61.69, 0.004502], [1111, 2, 0.0023845796392517157, 0.1192289819625858, \n 0, 0, 0], [1112, 2, 0.0021164403594842204, 0.10582201797421102, 0, 0, 0\n ], [1113, 3, 0.00010674621831632141, 0.005337310915816071, 2.22, 61.69,\n 0.004502], [1114, 3, 0.00034110954647959777, 0.017055477323979887, 2.22,\n 61.69, 0.004502], [1115, 2, 0.001560581704874582, 0.0780290852437291, 0,\n 0, 0], [1116, 3, 0.0010497237040213306, 0.05248618520106653, 2.22, \n 61.69, 0.004502], [1117, 2, 0.0030482760183426784, 0.15241380091713394,\n 0, 0, 0], [1118, 3, 0.00025020310158992815, 0.012510155079496408, 2.22,\n 61.69, 0.004502], [1119, 3, 0.0013944280021936538, 0.06972140010968268,\n 2.22, 61.69, 0.004502], [1120, 3, 7.008367642348848e-05, \n 0.0035041838211744246, 2.22, 61.69, 0.004502], [1121, 3, \n 1.4685477050834066e-05, 0.0007342738525417034, 2.22, 61.69, 0.004502],\n [1122, 3, 4.191200200044469e-05, 0.0020956001000222344, 2.22, 61.69, \n 0.004502], [1123, 3, 3.903195973291004e-05, 0.0019515979866455023, 2.22,\n 61.69, 0.004502], [1124, 3, 3.566336656293116e-05, 0.001783168328146558,\n 2.22, 61.69, 0.004502], [1125, 3, 0.0006582243839744623, \n 0.03291121919872311, 2.22, 61.69, 0.004502], [1126, 3, \n 0.0007422650376636687, 0.037113251883183436, 2.22, 61.69, 0.004502], [\n 1127, 2, 0.006703391093283916, 0.3351695546641958, 0, 0, 0], [1128, 3, \n 0.00010716349856397227, 0.005358174928198614, 2.22, 61.69, 0.004502], [\n 1129, 3, 0.00016074416246728902, 0.008037208123364451, 2.22, 61.69, \n 0.004502], [1130, 3, 3.210401096978252e-05, 0.0016052005484891263, 2.22,\n 61.69, 0.004502], [1131, 3, 9.806928210800955e-05, 0.004903464105400477,\n 2.22, 61.69, 0.004502], [1132, 3, 1.1067968826227845e-05, \n 0.0005533984413113922, 2.22, 61.69, 0.004502], [1133, 3, \n 1.9548345246098505e-05, 0.0009774172623049253, 2.22, 61.69, 0.004502],\n [1134, 3, 1.381254127932907e-05, 0.0006906270639664534, 2.22, 61.69, \n 0.004502], [1135, 3, 0.00021213477502306707, 0.010606738751153356, 2.22,\n 61.69, 0.004502], [1136, 3, 1.119383227847146e-05, \n 0.0005596916139235731, 2.22, 61.69, 0.004502], [1137, 3, \n 0.00010232333194126452, 0.005116166597063225, 2.22, 61.69, 0.004502], [\n 1138, 3, 3.4362727229175405e-05, 0.0017181363614587703, 2.22, 61.69, \n 0.004502], [1139, 3, 0.0006015433668049999, 0.030077168340249993, 2.22,\n 61.69, 0.004502], [1140, 3, 0.0007645628362529935, 0.03822814181264968,\n 2.22, 61.69, 0.004502], [1141, 2, 0.004790241076682773, \n 0.23951205383413865, 0, 0, 0], [1142, 3, 3.366840739739377e-05, \n 0.0016834203698696886, 2.22, 61.69, 0.004502], [1143, 3, \n 0.0006435333214336843, 0.032176666071684214, 2.22, 61.69, 0.004502], [\n 1144, 2, 0.0015897690045774716, 0.0794884502288736, 0, 0, 0], [1145, 2,\n 0.011197481443497569, 0.5598740721748785, 0, 0, 0], [1146, 3, \n 2.3398271269893032e-05, 0.0011699135634946516, 2.22, 61.69, 0.004502],\n [1147, 3, 0.001386514802641611, 0.06932574013208057, 2.22, 61.69, \n 0.004502], [1148, 3, 0.000881292737319028, 0.0440646368659514, 2.22, \n 61.69, 0.004502], [1149, 3, 0.00022727377904538718, \n 0.011363688952269359, 2.22, 61.69, 0.004502], [1150, 3, \n 9.595428393961811e-05, 0.004797714196980906, 2.22, 61.69, 0.004502], [\n 1151, 3, 0.0005335375770300506, 0.02667687885150254, 2.22, 61.69, \n 0.004502], [1152, 3, 4.444955981844895e-06, 0.00022224779909224476, \n 2.22, 61.69, 0.004502], [1153, 3, 2.126258002048503e-06, \n 0.00010631290010242515, 2.22, 61.69, 0.004502], [1154, 3, \n 4.964927577583119e-06, 0.00024824637887915595, 2.22, 61.69, 0.004502],\n [1155, 3, 2.461238779559723e-05, 0.0012306193897798617, 2.22, 61.69, \n 0.004502], [1156, 3, 0.0005133980246981178, 0.025669901234905892, 2.22,\n 61.69, 0.004502], [1157, 3, 0.0001779783911006972, 0.00889891955503486,\n 2.22, 61.69, 0.004502], [1158, 3, 4.0543920426570716e-05, \n 0.002027196021328536, 2.22, 61.69, 0.004502], [1159, 3, \n 0.00046795147611456816, 0.023397573805728406, 2.22, 61.69, 0.004502], [\n 1160, 2, 0.013180409191210338, 0.6590204595605169, 0, 0, 0], [1161, 3, \n 0.000744916600802104, 0.03724583004010521, 2.22, 61.69, 0.004502], [\n 1162, 2, 0.023357274001077667, 1.1678637000538834, 0, 0, 0], [1163, 2, \n 0.011575125387027681, 0.578756269351384, 0, 0, 0], [1164, 2, \n 0.016316848244546277, 0.8158424122273138, 0, 0, 0], [1165, 2, \n 0.002364483341790854, 0.1182241670895427, 0, 0, 0], [1166, 2, \n 0.005301588846150501, 0.26507944230752506, 0, 0, 0], [1167, 3, \n 0.00019738295259357118, 0.009869147629678561, 2.22, 61.69, 0.004502], [\n 1168, 3, 6.350577083684924e-05, 0.003175288541842462, 2.22, 61.69, \n 0.004502], [1169, 3, 0.00012800233064568244, 0.006400116532284123, 2.22,\n 61.69, 0.004502], [1170, 3, 1.022098369235092e-05, 0.000511049184617546,\n 2.22, 61.69, 0.004502], [1171, 3, 0.00022898354230095963, \n 0.011449177115047983, 2.22, 61.69, 0.004502], [1172, 3, \n 9.083631449844832e-05, 0.004541815724922416, 2.22, 61.69, 0.004502], [\n 1173, 2, 0.013055045276394919, 0.652752263819746, 0, 0, 0], [1174, 3, \n 4.91693177007236e-05, 0.00245846588503618, 2.22, 61.69, 0.004502], [\n 1175, 3, 4.730065004514243e-05, 0.0023650325022571217, 2.22, 61.69, \n 0.004502], [1176, 3, 9.333997693927025e-06, 0.0004666998846963513, 2.22,\n 61.69, 0.004502], [1177, 3, 0.001742934553715349, 0.08714672768576745, \n 2.22, 61.69, 0.004502], [1178, 3, 8.066091568149825e-05, \n 0.004033045784074913, 2.22, 61.69, 0.004502], [1179, 3, \n 3.5057030093592115e-05, 0.0017528515046796058, 2.22, 61.69, 0.004502],\n [1180, 3, 2.657738254979288e-05, 0.0013288691274896437, 2.22, 61.69, \n 0.004502], [1181, 2, 0.00545834972439398, 0.272917486219699, 0, 0, 0],\n [1182, 2, 0.006322880792722177, 0.3161440396361089, 0, 0, 0], [1183, 3,\n 0.0010124317003108218, 0.050621585015541086, 2.22, 61.69, 0.004502], [\n 1184, 3, 0.00010984001607269411, 0.005492000803634705, 2.22, 61.69, \n 0.004502], [1185, 3, 0.00034479411181407286, 0.017239705590703643, 2.22,\n 61.69, 0.004502], [1186, 3, 0.0018022878554343042, 0.09011439277171521,\n 2.22, 61.69, 0.004502], [1187, 3, 0.000323966403725451, \n 0.01619832018627255, 2.22, 61.69, 0.004502], [1188, 2, \n 0.011440868435801076, 0.5720434217900537, 0, 0, 0], [1189, 3, \n 0.000686637320455041, 0.03433186602275206, 2.22, 61.69, 0.004502], [\n 1190, 2, 0.005589527545129696, 0.27947637725648483, 0, 0, 0], [1191, 2,\n 0.0018545594990491579, 0.09272797495245791, 0, 0, 0], [1192, 3, \n 0.0005449212158790416, 0.027246060793952084, 2.22, 61.69, 0.004502], [\n 1196, 2, 0.010230349597894291, 0.5115174798947145, 0, 0, 0], [1197, 2, \n 0.005767282789943071, 0.2883641394971536, 0, 0, 0], [1198, 3, \n 0.002327128412977244, 0.11635642064886222, 2.22, 61.69, 0.004502], [\n 1199, 2, 0.012822920004466005, 0.6411460002233003, 0, 0, 0], [1200, 2, \n 0.0035658606694853635, 0.1782930334742682, 0, 0, 0], [1204, 3, \n 0.0015394883687458898, 0.0769744184372945, 2.22, 61.69, 0.004502], [\n 1206, 3, 9.668464549827337e-05, 0.004834232274913669, 2.22, 61.69, \n 0.004502], [1208, 3, 5.682927795940036e-05, 0.002841463897970018, 2.22,\n 61.69, 0.004502], [1211, 3, 0.0004565707402447971, 0.022828537012239854,\n 2.22, 61.69, 0.004502], [1212, 2, 0.0023120295635335325, \n 0.11560147817667664, 0, 0, 0], [1213, 2, 0.0015200944705644054, \n 0.07600472352822027, 0, 0, 0], [1214, 3, 0.00011915282035718338, \n 0.005957641017859169, 2.22, 61.69, 0.004502], [1215, 3, \n 6.371566290142337e-05, 0.003185783145071168, 2.22, 61.69, 0.004502], [\n 1216, 2, 0.001836389847798722, 0.0918194923899361, 0, 0, 0], [1217, 3, \n 0.0009103520173904468, 0.04551760086952234, 2.22, 61.69, 0.004502], [\n 1218, 3, 2.5222712787837326e-05, 0.0012611356393918663, 2.22, 61.69, \n 0.004502], [1219, 3, 0.00031413998637732304, 0.015706999318866155, 2.22,\n 61.69, 0.004502], [1220, 3, 0.0007785293992636844, 0.038926469963184225,\n 2.22, 61.69, 0.004502], [1221, 2, 0.015036249105864135, \n 0.7518124552932068, 0, 0, 0], [1222, 2, 0.005413370061286074, \n 0.27066850306430373, 0, 0, 0], [1224, 2, 0.004069349627228925, \n 0.2034674813614463, 0, 0, 0], [1225, 3, 0.0013077719364552604, \n 0.06538859682276303, 2.22, 61.69, 0.004502], [1226, 3, \n 0.00013530487691860895, 0.006765243845930448, 2.22, 61.69, 0.004502], [\n 1227, 3, 0.0004430994008741681, 0.022154970043708404, 2.22, 61.69, \n 0.004502], [1229, 2, 0.00326230849376, 0.16311542468800003, 0, 0, 0], [\n 1230, 3, 4.3038853117921796e-05, 0.0021519426558960896, 2.22, 61.69, \n 0.004502], [1231, 3, 0.0010547456602471713, 0.05273728301235856, 2.22, \n 61.69, 0.004502], [1232, 2, 0.0024697583587563036, 0.12348791793781519,\n 0, 0, 0], [1233, 2, 0.03662908231521014, 1.831454115760507, 0, 0, 0], [\n 1235, 3, 0.0005753349157073776, 0.028766745785368877, 2.22, 61.69, \n 0.004502], [1236, 2, 0.005234608320670995, 0.26173041603354974, 0, 0, 0\n ], [1237, 3, 0.00037060663037607794, 0.018530331518803896, 2.22, 61.69,\n 0.004502], [1238, 2, 0.004788556177677227, 0.23942780888386136, 0, 0, 0\n ], [1239, 3, 0.0001443666373276477, 0.007218331866382386, 2.22, 61.69, \n 0.004502], [1240, 2, 0.013596413154038011, 0.6798206577019006, 0, 0, 0],\n [1241, 2, 0.012753479474826955, 0.6376739737413477, 0, 0, 0], [1242, 3,\n 0.0009127997308274422, 0.045639986541372114, 2.22, 61.69, 0.004502], [\n 1243, 2, 0.0026735986239002922, 0.13367993119501462, 0, 0, 0], [1244, 2,\n 0.020592901244747865, 1.0296450622373932, 0, 0, 0], [1245, 3, \n 0.0002568848190566446, 0.012844240952832231, 2.22, 61.69, 0.004502], [\n 1246, 2, 0.003636870278584459, 0.18184351392922293, 0, 0, 0], [1247, 3,\n 0.0005563890761219527, 0.027819453806097634, 2.22, 61.69, 0.004502], [\n 1248, 2, 0.005854245631350222, 0.2927122815675111, 0, 0, 0], [1249, 2, \n 0.0024370198788740546, 0.12185099394370273, 0, 0, 0], [1250, 3, \n 0.0010097431326340025, 0.05048715663170012, 2.22, 61.69, 0.004502], [\n 1251, 3, 0.0006748055611425185, 0.03374027805712593, 2.22, 61.69, \n 0.004502], [1252, 3, 0.0004341481959299224, 0.02170740979649612, 2.22, \n 61.69, 0.004502], [1253, 2, 0.002710855118359899, 0.13554275591799494, \n 0, 0, 0], [1254, 2, 0.005238024431161238, 0.2619012215580619, 0, 0, 0],\n [1255, 3, 0.00013510691092519703, 0.006755345546259851, 2.22, 61.69, \n 0.004502], [1256, 3, 0.0005423076626973951, 0.027115383134869754, 2.22,\n 61.69, 0.004502], [1257, 2, 0.0032728775519959264, 0.16364387759979634,\n 0, 0, 0], [1258, 2, 0.014991588973313675, 0.7495794486656838, 0, 0, 0],\n [1259, 2, 0.0042027025391020625, 0.21013512695510314, 0, 0, 0], [1260, \n 3, 0.0006420511659731998, 0.032102558298659996, 2.22, 61.69, 0.004502],\n [1261, 2, 0.005206399037785701, 0.2603199518892851, 0, 0, 0], [1264, 2,\n 0.002079289414632396, 0.10396447073161982, 0, 0, 0], [1266, 2, \n 0.00304107275514185, 0.15205363775709252, 0, 0, 0], [1267, 3, \n 0.00139598557878363, 0.0697992789391815, 2.22, 61.69, 0.004502], [1268,\n 3, 8.704864155159875e-05, 0.004352432077579938, 2.22, 61.69, 0.004502],\n [1269, 3, 0.00012953822905644634, 0.006476911452822317, 2.22, 61.69, \n 0.004502], [1270, 3, 0.0010095965444446113, 0.05047982722223056, 2.22, \n 61.69, 0.004502], [1274, 2, 0.0017215032391093314, 0.08607516195546658,\n 0, 0, 0], [1275, 2, 0.003247530339258952, 0.1623765169629476, 0, 0, 0],\n [1276, 3, 0.0008580192206659016, 0.042900961033295076, 2.22, 61.69, \n 0.004502], [1277, 2, 0.0019557910943416635, 0.09778955471708319, 0, 0, \n 0], [1278, 2, 0.004985816994970686, 0.24929084974853433, 0, 0, 0], [\n 1280, 3, 1.588070968042346e-05, 0.0007940354840211731, 2.22, 61.69, \n 0.004502], [1281, 3, 6.372411239553697e-05, 0.0031862056197768484, 2.22,\n 61.69, 0.004502], [1282, 3, 0.00011135812120966316, \n 0.0055679060604831585, 2.22, 61.69, 0.004502], [1283, 2, \n 0.08261824948992594, 4.130912474496298, 0, 0, 0], [1285, 3, \n 7.4466680391949e-05, 0.00372333401959745, 2.22, 61.69, 0.004502], [1286,\n 3, 0.00045325649560483503, 0.02266282478024175, 2.22, 61.69, 0.004502],\n [1287, 2, 0.0038337444765644993, 0.19168722382822495, 0, 0, 0], [1288, \n 2, 0.0052226286911288946, 0.2611314345564448, 0, 0, 0], [1289, 2, \n 0.006545413287237602, 0.32727066436188007, 0, 0, 0], [1290, 3, \n 0.00012471330228118902, 0.006235665114059451, 2.22, 61.69, 0.004502], [\n 1291, 2, 0.003056328898967611, 0.15281644494838056, 0, 0, 0], [1292, 3,\n 0.0011946875690752071, 0.05973437845376036, 2.22, 61.69, 0.004502], [\n 1293, 3, 9.550400068461457e-05, 0.004775200034230728, 2.22, 61.69, \n 0.004502], [1294, 3, 0.00018502224269128183, 0.009251112134564091, 2.22,\n 61.69, 0.004502], [1295, 3, 0.00020469650591691907, \n 0.010234825295845953, 2.22, 61.69, 0.004502], [1296, 3, \n 0.0007174113605388258, 0.035870568026941295, 2.22, 61.69, 0.004502], [\n 1297, 2, 0.0045112352431387875, 0.22556176215693938, 0, 0, 0], [1298, 3,\n 0.0001131075724370497, 0.005655378621852487, 2.22, 61.69, 0.004502], [\n 1299, 3, 5.492571691566938e-05, 0.0027462858457834695, 2.22, 61.69, \n 0.004502], [1300, 3, 0.0007153342650551412, 0.035766713252757064, 2.22,\n 61.69, 0.004502], [1301, 2, 0.001806752808775971, 0.09033764043879855, \n 0, 0, 0], [1302, 3, 0.00012661267721650885, 0.006330633860825443, 2.22,\n 61.69, 0.004502], [1303, 3, 0.00010995877904399887, \n 0.005497938952199944, 2.22, 61.69, 0.004502], [1306, 3, \n 4.8654966891256905e-05, 0.0024327483445628455, 2.22, 61.69, 0.004502],\n [1307, 3, 8.126951836258918e-06, 0.00040634759181294586, 2.22, 61.69, \n 0.004502], [1308, 3, 0.00013144637498283085, 0.006572318749141544, 2.22,\n 61.69, 0.004502], [1312, 2, 0.016696303623916272, 0.8348151811958137, 0,\n 0, 0], [1316, 3, 7.04275314577295e-05, 0.0035213765728864753, 2.22, \n 61.69, 0.004502], [1317, 3, 0.0012212829758454192, 0.06106414879227096,\n 2.22, 61.69, 0.004502], [1319, 3, 0.0008998454349854617, \n 0.04499227174927309, 2.22, 61.69, 0.004502], [1323, 2, \n 0.011180599116346964, 0.5590299558173483, 0, 0, 0], [1326, 2, \n 0.0019278797396950565, 0.09639398698475282, 0, 0, 0], [1327, 2, \n 0.0020073517772337163, 0.1003675888616858, 0, 0, 0], [1328, 3, \n 0.0007715140121389826, 0.038575700606949134, 2.22, 61.69, 0.004502], [\n 1329, 2, 0.00554315071182015, 0.27715753559100753, 0, 0, 0], [1331, 3, \n 8.904899263903175e-06, 0.00044524496319515874, 2.22, 61.69, 0.004502],\n [1333, 3, 0.0011571874049730807, 0.057859370248654035, 2.22, 61.69, \n 0.004502], [1336, 3, 0.0007735478972752508, 0.038677394863762544, 2.22,\n 61.69, 0.004502], [1337, 2, 0.007722987880773172, 0.3861493940386586, 0,\n 0, 0], [1339, 3, 0.0003752794590235899, 0.0187639729511795, 2.22, 61.69,\n 0.004502], [1340, 2, 0.004462598113304154, 0.22312990566520774, 0, 0, 0\n ], [1345, 3, 0.00010074256287345797, 0.005037128143672898, 2.22, 61.69,\n 0.004502], [1346, 2, 0.0054678046188682185, 0.2733902309434109, 0, 0, 0\n ], [1348, 3, 0.0014456315404578254, 0.07228157702289127, 2.22, 61.69, \n 0.004502], [1349, 3, 0.0026962338610516797, 0.13481169305258398, 2.22, \n 61.69, 0.004502], [1356, 2, 0.002636881548268083, 0.13184407741340415, \n 0, 0, 0], [1357, 2, 0.0019363899944042477, 0.09681949972021239, 0, 0, 0\n ], [1359, 2, 0.0023553935641064364, 0.11776967820532185, 0, 0, 0], [\n 1360, 3, 0.000565091809154255, 0.028254590457712756, 2.22, 61.69, \n 0.004502], [1361, 2, 0.0025724975441016222, 0.12862487720508112, 0, 0, \n 0], [1362, 2, 0.0026756494821448132, 0.13378247410724067, 0, 0, 0], [\n 1366, 3, 4.2343831004378955e-05, 0.0021171915502189477, 2.22, 61.69, \n 0.004502], [1367, 3, 0.0011124687101064913, 0.055623435505324566, 2.22,\n 61.69, 0.004502], [1372, 2, 0.00613035230614738, 0.30651761530736904, 0,\n 0, 0], [1373, 3, 0.0010501376534794331, 0.052506882673971654, 2.22, \n 61.69, 0.004502], [1374, 2, 0.006889508467327262, 0.3444754233663631, 0,\n 0, 0], [1375, 2, 0.003897629175102736, 0.1948814587551368, 0, 0, 0], [\n 1376, 2, 0.011218109707548912, 0.5609054853774457, 0, 0, 0], [1377, 2, \n 0.012875261783839766, 0.6437630891919884, 0, 0, 0], [1378, 2, \n 0.013216346692985385, 0.6608173346492693, 0, 0, 0], [1379, 3, \n 2.0994119942294153e-05, 0.0010497059971147078, 2.22, 61.69, 0.004502],\n [1380, 3, 3.735608140112999e-05, 0.0018678040700564997, 2.22, 61.69, \n 0.004502], [1381, 3, 2.6478613103564872e-05, 0.0013239306551782435, \n 2.22, 61.69, 0.004502], [1382, 2, 0.004268628511686155, \n 0.2134314255843078, 0, 0, 0], [1383, 2, 0.0035099682052807594, \n 0.17549841026403798, 0, 0, 0], [1384, 3, 0.00014191591891127354, \n 0.007095795945563678, 2.22, 61.69, 0.004502], [1385, 3, \n 3.853419006725922e-06, 0.00019267095033629616, 2.22, 61.69, 0.004502],\n [1386, 3, 2.604729428376948e-05, 0.0013023647141884739, 2.22, 61.69, \n 0.004502], [1387, 3, 0.0001185059054709369, 0.0059252952735468455, 2.22,\n 61.69, 0.004502], [1388, 3, 2.8576481980220802e-05, 0.00142882409901104,\n 2.22, 61.69, 0.004502], [1389, 3, 6.57422386039361e-06, \n 0.0003287111930196805, 2.22, 61.69, 0.004502], [1390, 3, \n 0.0001266217424999237, 0.006331087124996186, 2.22, 61.69, 0.004502], [\n 1391, 3, 1.5251376647900077e-05, 0.0007625688323950039, 2.22, 61.69, \n 0.004502], [1392, 3, 0.0007869172972473572, 0.03934586486236786, 2.22, \n 61.69, 0.004502], [1393, 3, 3.6579516767363706e-05, \n 0.0018289758383681852, 2.22, 61.69, 0.004502], [1394, 3, \n 2.87602853624818e-05, 0.00143801426812409, 2.22, 61.69, 0.004502], [\n 1395, 3, 2.0205635904803567e-06, 0.00010102817952401784, 2.22, 61.69, \n 0.004502], [1396, 3, 6.76107779311172e-07, 3.38053889655586e-05, 2.22, \n 61.69, 0.004502], [1397, 3, 0.0013130028586282839, 0.06565014293141419,\n 2.22, 61.69, 0.004502], [1398, 3, 0.00014978670641580512, \n 0.007489335320790255, 2.22, 61.69, 0.004502], [1399, 3, \n 0.00048061967833614875, 0.024030983916807438, 2.22, 61.69, 0.004502], [\n 1400, 3, 3.446200374165619e-05, 0.0017231001870828095, 2.22, 61.69, \n 0.004502], [1401, 2, 0.003257860214767805, 0.16289301073839027, 0, 0, 0\n ], [1402, 3, 0.0009310354825063851, 0.04655177412531926, 2.22, 61.69, \n 0.004502], [1403, 2, 0.007617262031172502, 0.38086310155862513, 0, 0, 0\n ], [1404, 2, 0.008581667499251882, 0.42908337496259413, 0, 0, 0], [1405,\n 3, 0.0012645628517994104, 0.06322814258997052, 2.22, 61.69, 0.004502],\n [1406, 3, 0.0006411216112914482, 0.0320560805645724, 2.22, 61.69, \n 0.004502], [1407, 3, 5.391959754466621e-06, 0.0002695979877233311, 2.22,\n 61.69, 0.004502], [1408, 3, 0.0013913490802911078, 0.0695674540145554, \n 2.22, 61.69, 0.004502], [1409, 3, 0.000385302007428299, \n 0.01926510037141495, 2.22, 61.69, 0.004502], [1410, 3, \n 0.0012221772966867837, 0.06110886483433919, 2.22, 61.69, 0.004502], [\n 1411, 3, 0.0013752497337206917, 0.0687624866860346, 2.22, 61.69, \n 0.004502], [1418, 2, 0.002590388417024481, 0.12951942085122406, 0, 0, 0\n ], [1419, 3, 0.0009263341436855428, 0.046316707184277134, 2.22, 61.69, \n 0.004502], [1421, 3, 0.00019338216325404301, 0.009669108162702151, 2.22,\n 61.69, 0.004502], [1422, 3, 0.00012711670050993612, \n 0.006355835025496807, 2.22, 61.69, 0.004502], [1423, 3, \n 5.332053829989614e-05, 0.002666026914994807, 2.22, 61.69, 0.004502], [\n 1424, 2, 0.01394783725195249, 0.6973918625976245, 0, 0, 0], [1425, 3, \n 0.0013602274146640447, 0.06801137073320224, 2.22, 61.69, 0.004502], [\n 1426, 2, 0.0026606709519511967, 0.13303354759755984, 0, 0, 0], [1427, 2,\n 0.01962784005101204, 0.981392002550602, 0, 0, 0], [1428, 2, \n 0.010783782576601515, 0.5391891288300759, 0, 0, 0], [1429, 3, \n 0.0003437800286247544, 0.017189001431237718, 2.22, 61.69, 0.004502], [\n 1431, 2, 0.012601262227763347, 0.6300631113881674, 0, 0, 0], [1432, 3, \n 0.0007676953741931287, 0.03838476870965644, 2.22, 61.69, 0.004502], [\n 1433, 2, 0.08207564315805406, 4.103782157902703, 0, 0, 0], [1434, 2, \n 0.006330547929406013, 0.3165273964703006, 0, 0, 0], [1435, 2, \n 0.005520334862536408, 0.2760167431268204, 0, 0, 0], [1436, 2, \n 0.006266510483771511, 0.31332552418857557, 0, 0, 0], [1437, 2, \n 0.006965405094300177, 0.3482702547150089, 0, 0, 0], [1438, 2, \n 0.016649246120510355, 0.8324623060255177, 0, 0, 0], [1439, 2, \n 0.005163549230743521, 0.2581774615371761, 0, 0, 0], [1440, 3, \n 2.809528726617519e-05, 0.0014047643633087593, 2.22, 61.69, 0.004502], [\n 1443, 2, 0.006557506818224797, 0.3278753409112398, 0, 0, 0], [1444, 3, \n 0.00024027790782441553, 0.012013895391220778, 2.22, 61.69, 0.004502], [\n 1445, 3, 0.0006346891569050976, 0.03173445784525488, 2.22, 61.69, \n 0.004502], [1446, 2, 0.027080541200081264, 1.3540270600040631, 0, 0, 0],\n [1447, 2, 0.0025668513053097495, 0.12834256526548746, 0, 0, 0], [1448, \n 3, 0.00047896583949883246, 0.023948291974941624, 2.22, 61.69, 0.004502],\n [1449, 2, 0.005622586466236279, 0.281129323311814, 0, 0, 0], [1450, 2, \n 0.0037724056227270084, 0.18862028113635043, 0, 0, 0], [1451, 2, \n 0.0043416728967246255, 0.21708364483623127, 0, 0, 0], [1452, 3, \n 0.0015322750739690742, 0.0766137536984537, 2.22, 61.69, 0.004502], [\n 1453, 2, 0.00164580537351267, 0.08229026867563351, 0, 0, 0], [1454, 2, \n 0.004358757471622235, 0.21793787358111177, 0, 0, 0], [1455, 3, \n 2.6431954760254552e-05, 0.0013215977380127274, 2.22, 61.69, 0.004502],\n [1456, 2, 0.0031865889687578697, 0.15932944843789354, 0, 0, 0], [1457, \n 3, 6.16570766178442e-05, 0.0030828538308922105, 2.22, 61.69, 0.004502],\n [1458, 3, 7.579836510008574e-06, 0.0003789918255004287, 2.22, 61.69, \n 0.004502], [1459, 3, 0.00014103992116575747, 0.007051996058287875, 2.22,\n 61.69, 0.004502], [1460, 2, 0.0029359105708128426, 0.14679552854064215,\n 0, 0, 0], [1461, 3, 0.0005444349786754551, 0.027221748933772758, 2.22, \n 61.69, 0.004502], [1462, 3, 7.302838886117809e-05, \n 0.0036514194430589046, 2.22, 61.69, 0.004502], [1463, 3, \n 1.9345067546824242e-05, 0.0009672533773412123, 2.22, 61.69, 0.004502],\n [1464, 2, 0.00555113722863836, 0.27755686143191804, 0, 0, 0], [1465, 3,\n 0.00019422903183873174, 0.009711451591936586, 2.22, 61.69, 0.004502], [\n 1466, 3, 0.00023267440889044382, 0.011633720444522192, 2.22, 61.69, \n 0.004502], [1467, 3, 6.230968547665832e-05, 0.0031154842738329164, 2.22,\n 61.69, 0.004502], [1468, 3, 0.000682028770294799, 0.03410143851473995, \n 2.22, 61.69, 0.004502], [1469, 2, 0.0019110220949797936, \n 0.09555110474898967, 0, 0, 0], [1470, 2, 0.005027084884666319, \n 0.2513542442333159, 0, 0, 0], [1471, 2, 0.010132763321185349, \n 0.5066381660592674, 0, 0, 0], [1472, 3, 0.0003059667942057653, \n 0.015298339710288265, 2.22, 61.69, 0.004502], [1473, 3, \n 0.00032734317531874445, 0.016367158765937223, 2.22, 61.69, 0.004502], [\n 1474, 3, 5.961088920363028e-05, 0.0029805444601815143, 2.22, 61.69, \n 0.004502], [1475, 3, 2.1612940035331083e-05, 0.0010806470017665543, \n 2.22, 61.69, 0.004502], [1476, 2, 0.015946059282369706, \n 0.7973029641184852, 0, 0, 0], [1477, 3, 0.00043810500622394204, \n 0.021905250311197104, 2.22, 61.69, 0.004502], [1483, 3, \n 9.660389626148084e-05, 0.004830194813074042, 2.22, 61.69, 0.004502], [\n 1484, 3, 7.614403753328752e-07, 3.807201876664376e-05, 2.22, 61.69, \n 0.004502], [1485, 3, 1.4346798697423479e-05, 0.000717339934871174, 2.22,\n 61.69, 0.004502], [1486, 3, 7.381146075564043e-05, \n 0.0036905730377820214, 2.22, 61.69, 0.004502], [1489, 3, \n 3.2310278483629793e-06, 0.00016155139241814899, 2.22, 61.69, 0.004502],\n [1490, 2, 0.04981318633597547, 2.4906593167987734, 0, 0, 0], [1491, 2, \n 0.0026699853794402576, 0.1334992689720129, 0, 0, 0], [1492, 2, \n 0.0076418065269222854, 0.3820903263461143, 0, 0, 0], [1493, 2, \n 0.0028869080227441985, 0.14434540113720992, 0, 0, 0], [1494, 2, \n 0.016943493863839063, 0.8471746931919532, 0, 0, 0], [1495, 2, \n 0.0018696204410900048, 0.09348102205450025, 0, 0, 0], [1497, 2, \n 0.002258841518401283, 0.11294207592006414, 0, 0, 0], [1498, 2, \n 0.0026849613830667303, 0.13424806915333654, 0, 0, 0], [1501, 3, \n 0.00020733725832667443, 0.010366862916333723, 2.22, 61.69, 0.004502], [\n 1503, 3, 0.0011656166063189967, 0.058280830315949834, 2.22, 61.69, \n 0.004502], [1504, 2, 0.0050671737326107545, 0.25335868663053773, 0, 0, \n 0], [1505, 3, 0.0006784268178891655, 0.03392134089445827, 2.22, 61.69, \n 0.004502], [1506, 2, 0.0016890886912840956, 0.08445443456420476, 0, 0, \n 0], [1507, 3, 0.00045016028763325084, 0.02250801438166254, 2.22, 61.69,\n 0.004502], [1510, 2, 0.0027126824885318744, 0.13563412442659373, 0, 0, \n 0], [1511, 2, 0.003936868172270002, 0.19684340861350008, 0, 0, 0], [\n 1512, 2, 0.0016255674254345136, 0.08127837127172569, 0, 0, 0], [1513, 3,\n 0.0005878505520583088, 0.029392527602915438, 2.22, 61.69, 0.004502], [\n 1518, 3, 1.7457278618548527e-05, 0.0008728639309274264, 2.22, 61.69, \n 0.004502], [1519, 3, 1.211636389709449e-06, 6.058181948547245e-05, 2.22,\n 61.69, 0.004502], [1520, 2, 0.0025232453159792223, 0.12616226579896114,\n 0, 0, 0], [1521, 3, 0.0010296395408443792, 0.051481977042218956, 2.22, \n 61.69, 0.004502], [1522, 3, 0.00128741358711326, 0.064370679355663, \n 2.22, 61.69, 0.004502], [1523, 3, 0.0006382714465370155, \n 0.03191357232685078, 2.22, 61.69, 0.004502], [1524, 3, \n 0.0009325526713721043, 0.04662763356860522, 2.22, 61.69, 0.004502], [\n 1525, 2, 0.002242041892516081, 0.11210209462580406, 0, 0, 0], [1526, 3,\n 0.001438489342064215, 0.07192446710321075, 2.22, 61.69, 0.004502], [\n 1527, 2, 0.004089463387653119, 0.20447316938265592, 0, 0, 0], [1528, 3,\n 0.0026347607821089578, 0.13173803910544787, 2.22, 61.69, 0.004502], [\n 1529, 2, 0.0034390643554320474, 0.17195321777160236, 0, 0, 0], [1530, 2,\n 0.0023438942580544264, 0.11719471290272133, 0, 0, 0], [1531, 2, \n 0.01170243432457441, 0.5851217162287206, 0, 0, 0], [1532, 3, \n 0.0012309345041419243, 0.061546725207096226, 2.22, 61.69, 0.004502], [\n 1534, 3, 0.0009336557350387817, 0.046682786751939084, 2.22, 61.69, \n 0.004502], [1535, 3, 0.0003089506133703436, 0.01544753066851718, 2.22, \n 61.69, 0.004502], [1536, 3, 0.0013087025779557654, 0.06543512889778827,\n 2.22, 61.69, 0.004502], [1537, 2, 0.0031190581433044803, \n 0.155952907165224, 0, 0, 0], [1538, 2, 0.008325357011487053, \n 0.41626785057435267, 0, 0, 0], [1539, 2, 0.012844883798569344, \n 0.6422441899284673, 0, 0, 0], [1540, 3, 0.00026484588609069294, \n 0.013242294304534647, 2.22, 61.69, 0.004502], [1541, 3, \n 0.000218355306613717, 0.01091776533068585, 2.22, 61.69, 0.004502], [\n 1542, 2, 0.003201430108581241, 0.16007150542906207, 0, 0, 0], [1543, 3,\n 0.0004469209788720139, 0.022346048943600698, 2.22, 61.69, 0.004502], [\n 1544, 2, 0.0075587095096954215, 0.37793547548477113, 0, 0, 0], [1545, 2,\n 0.011812169709970757, 0.5906084854985378, 0, 0, 0], [1546, 2, \n 0.01626203379888308, 0.8131016899441541, 0, 0, 0], [1547, 2, \n 0.021689594680942077, 1.084479734047104, 0, 0, 0], [1548, 3, \n 0.0006302765790138034, 0.031513828950690166, 2.22, 61.69, 0.004502], [\n 1549, 2, 0.002377591145547329, 0.11887955727736645, 0, 0, 0], [1550, 3,\n 0.00015265669894834095, 0.0076328349474170465, 2.22, 61.69, 0.004502],\n [1551, 3, 0.0002810478650703147, 0.014052393253515734, 2.22, 61.69, \n 0.004502], [1552, 2, 0.0034400049196165183, 0.17200024598082594, 0, 0, \n 0], [1553, 2, 0.005887477616203734, 0.2943738808101867, 0, 0, 0], [1554,\n 2, 0.00988883221505536, 0.494441610752768, 0, 0, 0], [1555, 2, \n 0.006612300563621196, 0.3306150281810598, 0, 0, 0], [1556, 3, \n 0.0025704380368004303, 0.12852190184002152, 2.22, 61.69, 0.004502], [\n 1557, 3, 0.0016545902148645411, 0.08272951074322706, 2.22, 61.69, \n 0.004502], [1558, 3, 0.000997857734318084, 0.0498928867159042, 2.22, \n 61.69, 0.004502], [1559, 2, 0.0071689247750388796, 0.35844623875194404,\n 0, 0, 0], [1560, 2, 0.005500136478539206, 0.27500682392696024, 0, 0, 0],\n [1561, 3, 0.0012176867577369578, 0.060884337886847884, 2.22, 61.69, \n 0.004502], [1562, 2, 0.0021267851829981613, 0.10633925914990806, 0, 0, \n 0], [1563, 2, 0.006763060552462782, 0.3381530276231391, 0, 0, 0], [1564,\n 2, 0.0037097629455119584, 0.18548814727559793, 0, 0, 0], [1565, 3, \n 0.0008173802970750437, 0.04086901485375219, 2.22, 61.69, 0.004502], [\n 1566, 2, 0.022834045665096173, 1.1417022832548087, 0, 0, 0], [1567, 3, \n 0.0010192593449462031, 0.050962967247310156, 2.22, 61.69, 0.004502], [\n 1568, 2, 0.0033119271961263392, 0.16559635980631698, 0, 0, 0], [1569, 2,\n 0.020926874196333774, 1.0463437098166888, 0, 0, 0], [1570, 2, \n 0.015485260884033174, 0.7742630442016587, 0, 0, 0], [1571, 2, \n 0.012951609260387848, 0.6475804630193925, 0, 0, 0], [1572, 2, \n 0.014777724673041566, 0.7388862336520783, 0, 0, 0], [1573, 2, \n 0.005118663088374955, 0.25593315441874775, 0, 0, 0], [1574, 2, \n 0.009212904923280738, 0.4606452461640369, 0, 0, 0], [1575, 2, \n 0.009778885596990375, 0.4889442798495187, 0, 0, 0], [1576, 3, \n 0.002181187748580322, 0.10905938742901611, 2.22, 61.69, 0.004502], [\n 1577, 2, 0.008005977279501149, 0.4002988639750575, 0, 0, 0], [1578, 3, \n 0.0010407601676569642, 0.0520380083828482, 2.22, 61.69, 0.004502], [\n 1579, 3, 0.0011276860415660923, 0.05638430207830462, 2.22, 61.69, \n 0.004502], [1580, 3, 0.0006804077392659486, 0.034020386963297435, 2.22,\n 61.69, 0.004502], [1581, 2, 0.009948964197406459, 0.4974482098703229, 0,\n 0, 0], [1582, 3, 0.0005189146316653127, 0.025945731583265637, 2.22, \n 61.69, 0.004502], [1583, 3, 0.00011408020039723344, \n 0.005704010019861674, 2.22, 61.69, 0.004502], [1584, 2, \n 0.005172531192053713, 0.2586265596026857, 0, 0, 0], [1585, 3, \n 0.00023460599404312107, 0.011730299702156053, 2.22, 61.69, 0.004502], [\n 1586, 2, 0.003903465353398814, 0.19517326766994073, 0, 0, 0], [1587, 2,\n 0.012199881855085491, 0.6099940927542746, 0, 0, 0], [1588, 2, \n 0.00378307114622246, 0.18915355731112304, 0, 0, 0], [1589, 3, \n 0.0030729449735528206, 0.15364724867764104, 2.22, 61.69, 0.004502], [\n 1590, 2, 0.007580710655338087, 0.3790355327669044, 0, 0, 0], [1591, 2, \n 0.009093776015663656, 0.45468880078318286, 0, 0, 0], [1592, 3, \n 0.0006265841402928839, 0.03132920701464419, 2.22, 61.69, 0.004502], [\n 1593, 3, 0.0004572956041415501, 0.02286478020707751, 2.22, 61.69, \n 0.004502], [1594, 3, 0.0006086651424190906, 0.03043325712095453, 2.22, \n 61.69, 0.004502], [1595, 2, 0.0034880403567784826, 0.17440201783892412,\n 0, 0, 0], [1596, 2, 0.008831829223465862, 0.4415914611732931, 0, 0, 0],\n [1597, 3, 0.000182008742594501, 0.009100437129725051, 2.22, 61.69, \n 0.004502], [1598, 3, 0.00030529061271902005, 0.015264530635951002, 2.22,\n 61.69, 0.004502], [1599, 2, 0.005519720787392772, 0.2759860393696386, 0,\n 0, 0], [1600, 3, 0.001614244976205045, 0.08071224881025225, 2.22, 61.69,\n 0.004502], [1601, 3, 0.00048661007202100836, 0.02433050360105042, 2.22,\n 61.69, 0.004502], [1602, 3, 0.0029066893044028437, 0.1453344652201422, \n 2.22, 61.69, 0.004502], [1603, 3, 0.0016685325799989743, \n 0.08342662899994871, 2.22, 61.69, 0.004502], [1604, 3, \n 0.001041702939552173, 0.052085146977608666, 2.22, 61.69, 0.004502], [\n 1605, 3, 0.0027678430872774087, 0.13839215436387042, 2.22, 61.69, \n 0.004502], [1606, 3, 0.0026753886791452443, 0.13376943395726223, 2.22, \n 61.69, 0.004502], [1607, 3, 0.0012347390947160326, 0.06173695473580163,\n 2.22, 61.69, 0.004502], [1608, 3, 0.0012408514763572547, \n 0.06204257381786274, 2.22, 61.69, 0.004502], [1609, 3, \n 0.0003852995894705999, 0.019264979473529995, 2.22, 61.69, 0.004502], [\n 1610, 3, 0.0011823083612115522, 0.05911541806057761, 2.22, 61.69, \n 0.004502], [1611, 3, 0.00040874514628008496, 0.02043725731400425, 2.22,\n 61.69, 0.004502], [1612, 3, 0.0006882625555892105, 0.03441312777946053,\n 2.22, 61.69, 0.004502], [1613, 3, 0.0017810213186252846, \n 0.08905106593126422, 2.22, 61.69, 0.004502], [1614, 3, \n 0.0017942381771421118, 0.0897119088571056, 2.22, 61.69, 0.004502], [\n 1615, 2, 0.012301707924494735, 0.6150853962247368, 0, 0, 0], [1616, 3, \n 0.0004370767889493836, 0.02185383944746918, 2.22, 61.69, 0.004502], [\n 1617, 3, 0.0006767949224067756, 0.033839746120338784, 2.22, 61.69, \n 0.004502], [1618, 3, 0.00031324035822134105, 0.015662017911067052, 2.22,\n 61.69, 0.004502], [1619, 3, 0.0004258755004431256, 0.02129377502215628,\n 2.22, 61.69, 0.004502], [1620, 3, 0.00012172325385948389, \n 0.0060861626929741945, 2.22, 61.69, 0.004502], [1621, 3, \n 0.0005128855788661356, 0.025644278943306776, 2.22, 61.69, 0.004502], [\n 1622, 3, 0.00036246565086750607, 0.018123282543375304, 2.22, 61.69, \n 0.004502], [1623, 3, 0.0013188922580034204, 0.06594461290017102, 2.22, \n 61.69, 0.004502], [1624, 3, 0.000569039657188931, 0.028451982859446553,\n 2.22, 61.69, 0.004502], [1625, 2, 0.0041496446244753075, \n 0.20748223122376538, 0, 0, 0], [1626, 3, 0.0007562318471572959, \n 0.0378115923578648, 2.22, 61.69, 0.004502], [1627, 3, \n 0.0006491290852077085, 0.03245645426038543, 2.22, 61.69, 0.004502], [\n 1628, 2, 0.00424077848658593, 0.21203892432929652, 0, 0, 0], [1629, 2, \n 0.007745819403923712, 0.38729097019618564, 0, 0, 0], [1630, 3, \n 0.0007927560978709857, 0.03963780489354929, 2.22, 61.69, 0.004502], [\n 1631, 3, 0.002068138835159234, 0.10340694175796171, 2.22, 61.69, \n 0.004502], [1632, 3, 0.0016472468553829615, 0.08236234276914807, 2.22, \n 61.69, 0.004502], [1633, 2, 0.004292939055943245, 0.21464695279716228, \n 0, 0, 0], [1634, 3, 0.0006138952301916811, 0.030694761509584053, 2.22, \n 61.69, 0.004502], [1635, 3, 0.001220154041250351, 0.061007702062517544,\n 2.22, 61.69, 0.004502], [1636, 3, 0.0016030980766412253, \n 0.08015490383206127, 2.22, 61.69, 0.004502], [1637, 3, \n 0.00185350752292672, 0.09267537614633603, 2.22, 61.69, 0.004502], [1638,\n 3, 0.0007742689385781872, 0.03871344692890937, 2.22, 61.69, 0.004502],\n [1639, 3, 0.0018578852217172642, 0.09289426108586321, 2.22, 61.69, \n 0.004502], [1640, 3, 0.0001424533438422139, 0.007122667192110696, 2.22,\n 61.69, 0.004502], [1641, 3, 0.00031981897985402917, \n 0.015990948992701457, 2.22, 61.69, 0.004502], [1642, 3, \n 0.0007467946370447365, 0.037339731852236824, 2.22, 61.69, 0.004502], [\n 1643, 3, 0.00021757652186159314, 0.010878826093079658, 2.22, 61.69, \n 0.004502], [1644, 3, 0.0007490442792419589, 0.03745221396209795, 2.22, \n 61.69, 0.004502], [1645, 3, 0.0007095052493304704, 0.035475262466523515,\n 2.22, 61.69, 0.004502], [1646, 3, 0.00023763168602681552, \n 0.011881584301340778, 2.22, 61.69, 0.004502], [1647, 3, \n 0.0011099355850146776, 0.055496779250733874, 2.22, 61.69, 0.004502], [\n 1648, 2, 0.006961158588339223, 0.34805792941696123, 0, 0, 0], [1649, 3,\n 0.00149488226606135, 0.0747441133030675, 2.22, 61.69, 0.004502], [1650,\n 2, 0.006044926603618354, 0.30224633018091773, 0, 0, 0], [1651, 2, \n 0.004929423627853539, 0.246471181392677, 0, 0, 0], [1652, 2, \n 0.005050176694499043, 0.2525088347249521, 0, 0, 0], [1653, 3, \n 0.0005789625471684006, 0.028948127358420027, 2.22, 61.69, 0.004502], [\n 1654, 3, 0.0015904792253358113, 0.07952396126679057, 2.22, 61.69, \n 0.004502], [1655, 3, 0.0006869579648379821, 0.0343478982418991, 2.22, \n 61.69, 0.004502], [1656, 3, 0.00017062079994473715, \n 0.008531039997236858, 2.22, 61.69, 0.004502], [1657, 3, \n 0.00035849972013432747, 0.017924986006716374, 2.22, 61.69, 0.004502], [\n 1658, 3, 0.00011964508429840477, 0.00598225421492024, 2.22, 61.69, \n 0.004502], [1659, 2, 0.00584268430348727, 0.2921342151743635, 0, 0, 0],\n [1660, 2, 0.011901108257073838, 0.5950554128536919, 0, 0, 0], [1661, 2,\n 0.008823810212990009, 0.4411905106495005, 0, 0, 0], [1662, 3, \n 0.00019355309720347875, 0.00967765486017394, 2.22, 61.69, 0.004502], [\n 1663, 3, 0.0001019004903319335, 0.005095024516596675, 2.22, 61.69, \n 0.004502], [1664, 3, 0.00010047175653957785, 0.005023587826978892, 2.22,\n 61.69, 0.004502], [1665, 3, 0.0030977737905388955, 0.1548886895269448, \n 2.22, 61.69, 0.004502], [1666, 3, 0.0001832113676826654, \n 0.00916056838413327, 2.22, 61.69, 0.004502], [1667, 3, \n 0.00033277909185437904, 0.01663895459271895, 2.22, 61.69, 0.004502], [\n 1668, 3, 0.00025000334897604874, 0.01250016744880244, 2.22, 61.69, \n 0.004502], [1669, 2, 0.004626821026153938, 0.2313410513076969, 0, 0, 0],\n [1670, 2, 0.007069218502539776, 0.35346092512698885, 0, 0, 0], [1671, 2,\n 0.003972823813169535, 0.19864119065847674, 0, 0, 0], [1672, 3, \n 0.0006735389632841594, 0.033676948164207965, 2.22, 61.69, 0.004502], [\n 1673, 3, 0.00026044328652445207, 0.013022164326222602, 2.22, 61.69, \n 0.004502], [1674, 3, 0.00305388930052315, 0.1526944650261575, 2.22, \n 61.69, 0.004502], [1675, 3, 0.0019883967212815028, 0.09941983606407513,\n 2.22, 61.69, 0.004502], [1676, 2, 0.002739550936466594, \n 0.1369775468233297, 0, 0, 0], [1677, 3, 0.00045107957795936066, \n 0.022553978897968036, 2.22, 61.69, 0.004502], [1678, 2, \n 0.0118255326080453, 0.591276630402265, 0, 0, 0], [1679, 2, \n 0.004235017338470039, 0.21175086692350195, 0, 0, 0], [1680, 2, \n 0.0033198512979085376, 0.1659925648954269, 0, 0, 0], [1681, 3, \n 0.001101391669580788, 0.0550695834790394, 2.22, 61.69, 0.004502], [1682,\n 3, 0.0025396334158164146, 0.12698167079082073, 2.22, 61.69, 0.004502],\n [1683, 3, 0.0005850385990722994, 0.02925192995361497, 2.22, 61.69, \n 0.004502], [1684, 3, 0.0014692548587692284, 0.07346274293846142, 2.22, \n 61.69, 0.004502], [1685, 2, 0.0023379729437724324, 0.11689864718862161,\n 0, 0, 0], [1686, 2, 0.0027140500311261455, 0.13570250155630728, 0, 0, 0\n ], [1687, 2, 0.00713129246574986, 0.35656462328749305, 0, 0, 0], [1688,\n 3, 0.0011560206217410538, 0.057801031087052694, 2.22, 61.69, 0.004502],\n [1689, 2, 0.0050663820052153806, 0.25331910026076904, 0, 0, 0], [1690, \n 2, 0.006797488746056826, 0.3398744373028413, 0, 0, 0], [1691, 2, \n 0.008600361654412853, 0.43001808272064274, 0, 0, 0], [1692, 3, \n 0.001111987887564283, 0.055599394378214144, 2.22, 61.69, 0.004502], [\n 1693, 2, 0.005489990852267899, 0.27449954261339493, 0, 0, 0], [1694, 2,\n 0.003415900039070191, 0.17079500195350955, 0, 0, 0], [1695, 3, \n 0.0014726781149470127, 0.07363390574735064, 2.22, 61.69, 0.004502], [\n 1696, 2, 0.003395862907499976, 0.1697931453749988, 0, 0, 0], [1697, 2, \n 0.008710326279612261, 0.43551631398061313, 0, 0, 0], [1698, 3, \n 0.0016301483386422185, 0.08150741693211093, 2.22, 61.69, 0.004502], [\n 1699, 3, 0.00034098029406261546, 0.017049014703130774, 2.22, 61.69, \n 0.004502], [1700, 2, 0.0035539817740921757, 0.1776990887046088, 0, 0, 0\n ], [1701, 3, 0.00237441322043975, 0.11872066102198749, 2.22, 61.69, \n 0.004502], [1702, 3, 0.000946061560194626, 0.047303078009731304, 2.22, \n 61.69, 0.004502], [1703, 3, 0.0017751784315469096, 0.08875892157734548,\n 2.22, 61.69, 0.004502], [1704, 2, 0.004669473718911862, \n 0.23347368594559312, 0, 0, 0], [1705, 2, 0.002101765751674278, \n 0.10508828758371391, 0, 0, 0], [1706, 3, 0.00025866463966033455, \n 0.012933231983016729, 2.22, 61.69, 0.004502], [1707, 3, \n 0.0007453417235058713, 0.03726708617529356, 2.22, 61.69, 0.004502], [\n 1708, 3, 0.0016735901012157506, 0.08367950506078754, 2.22, 61.69, \n 0.004502], [1709, 2, 0.008110566237537491, 0.4055283118768746, 0, 0, 0],\n [1710, 2, 0.011690372819987969, 0.5845186409993984, 0, 0, 0], [1711, 3,\n 0.0004592482403533105, 0.022962412017665527, 2.22, 61.69, 0.004502], [\n 1712, 2, 0.0029171136548494614, 0.14585568274247307, 0, 0, 0], [1713, 2,\n 0.0057789206449012, 0.28894603224506005, 0, 0, 0], [1714, 3, \n 0.002693699836091154, 0.1346849918045577, 2.22, 61.69, 0.004502], [1715,\n 2, 0.009885393456059138, 0.4942696728029569, 0, 0, 0], [1716, 2, \n 0.009993594261663767, 0.4996797130831883, 0, 0, 0], [1717, 2, \n 0.003782973104907569, 0.18914865524537847, 0, 0, 0], [1718, 2, \n 0.01920136583254073, 0.9600682916270364, 0, 0, 0], [1719, 3, \n 0.0011567708515348696, 0.05783854257674348, 2.22, 61.69, 0.004502], [\n 1720, 2, 0.0021213818228688203, 0.10606909114344103, 0, 0, 0], [1721, 2,\n 0.005229955374101585, 0.26149776870507924, 0, 0, 0], [1722, 3, \n 0.0013578823440987752, 0.06789411720493876, 2.22, 61.69, 0.004502], [\n 1723, 3, 7.851471383507073e-05, 0.003925735691753536, 2.22, 61.69, \n 0.004502], [1724, 3, 0.0010018248025824054, 0.05009124012912028, 2.22, \n 61.69, 0.004502], [1725, 2, 0.0035492089814250986, 0.1774604490712549, \n 0, 0, 0], [1726, 2, 0.004856804743814979, 0.242840237190749, 0, 0, 0],\n [1727, 3, 2.9058085077735173e-05, 0.0014529042538867585, 2.22, 61.69, \n 0.004502], [1728, 2, 0.0041560648360189495, 0.2078032418009475, 0, 0, 0\n ], [1729, 2, 0.01405393337667418, 0.7026966688337091, 0, 0, 0], [1730, \n 2, 0.0020014537525731364, 0.10007268762865684, 0, 0, 0], [1731, 2, \n 0.009670389941702119, 0.483519497085106, 0, 0, 0], [1732, 2, \n 0.024437189395982176, 1.221859469799109, 0, 0, 0], [1733, 2, \n 0.003861458761299993, 0.19307293806499964, 0, 0, 0], [1734, 2, \n 0.004925863110940614, 0.24629315554703074, 0, 0, 0], [1735, 2, \n 0.00979677930651881, 0.48983896532594057, 0, 0, 0], [1736, 2, \n 0.005693890678315697, 0.28469453391578486, 0, 0, 0], [1737, 2, \n 0.012380561624103732, 0.6190280812051866, 0, 0, 0], [1738, 2, \n 0.007387942256829133, 0.3693971128414567, 0, 0, 0], [1739, 3, \n 0.0021343280894861407, 0.10671640447430704, 2.22, 61.69, 0.004502], [\n 1740, 2, 0.004242367600347797, 0.21211838001738986, 0, 0, 0], [1741, 3,\n 0.0012849231541345082, 0.06424615770672543, 2.22, 61.69, 0.004502], [\n 1742, 3, 0.0008340627998606473, 0.041703139993032365, 2.22, 61.69, \n 0.004502], [1743, 3, 5.13936026299759e-05, 0.002569680131498795, 2.22, \n 61.69, 0.004502], [1744, 3, 0.00012396026948393012, \n 0.006198013474196506, 2.22, 61.69, 0.004502], [1745, 3, \n 0.0010773886636756553, 0.05386943318378276, 2.22, 61.69, 0.004502], [\n 1746, 2, 0.008864688760929952, 0.44323443804649765, 0, 0, 0], [1747, 3,\n 0.0008635336374536576, 0.04317668187268288, 2.22, 61.69, 0.004502], [\n 1748, 2, 0.004279314394263734, 0.2139657197131867, 0, 0, 0], [1749, 2, \n 0.013923101334801936, 0.6961550667400968, 0, 0, 0], [1750, 3, \n 0.0014127769401448094, 0.07063884700724048, 2.22, 61.69, 0.004502], [\n 1751, 3, 0.0011724169956124854, 0.05862084978062426, 2.22, 61.69, \n 0.004502], [1752, 2, 0.00867015679256696, 0.43350783962834794, 0, 0, 0],\n [1753, 2, 0.005046485287334805, 0.25232426436674027, 0, 0, 0], [1754, 2,\n 0.025997910300901962, 1.2998955150450984, 0, 0, 0], [1755, 3, \n 0.002946085388035321, 0.14730426940176608, 2.22, 61.69, 0.004502], [\n 1756, 2, 0.005971989172727978, 0.29859945863639886, 0, 0, 0], [1757, 2,\n 0.012546975461748345, 0.6273487730874172, 0, 0, 0], [1758, 2, \n 0.019829004030811562, 0.9914502015405783, 0, 0, 0], [1759, 2, \n 0.009966033571801232, 0.4983016785900616, 0, 0, 0], [1760, 2, \n 0.0073012273284985265, 0.36506136642492637, 0, 0, 0], [1761, 3, \n 0.0030840374161649965, 0.15420187080824985, 2.22, 61.69, 0.004502], [\n 1762, 2, 0.0068167731133854026, 0.34083865566927013, 0, 0, 0], [1763, 2,\n 0.005738278867752243, 0.28691394338761217, 0, 0, 0], [1764, 3, \n 0.0014002305130149393, 0.07001152565074696, 2.22, 61.69, 0.004502], [\n 1765, 2, 0.007146048220397755, 0.35730241101988774, 0, 0, 0], [1766, 2,\n 0.006354178845284036, 0.31770894226420177, 0, 0, 0], [1767, 2, \n 0.006085505697192886, 0.30427528485964433, 0, 0, 0], [1768, 2, \n 0.010174366269247585, 0.5087183134623792, 0, 0, 0], [1769, 2, \n 0.01499759455891321, 0.7498797279456606, 0, 0, 0], [1770, 2, \n 0.030509885187144117, 1.525494259357206, 0, 0, 0], [1771, 2, \n 0.007633743816642715, 0.38168719083213576, 0, 0, 0], [1772, 2, \n 0.01732976708969246, 0.866488354484623, 0, 0, 0], [1773, 2, \n 0.03398423777684978, 1.6992118888424892, 0, 0, 0], [1774, 2, \n 0.0056389958408761785, 0.28194979204380893, 0, 0, 0], [1775, 2, \n 0.012591536776481504, 0.6295768388240752, 0, 0, 0], [1776, 2, \n 0.007079444590369237, 0.35397222951846186, 0, 0, 0], [1777, 2, \n 0.012697889587441325, 0.6348944793720663, 0, 0, 0], [1778, 2, \n 0.005097454405191964, 0.2548727202595982, 0, 0, 0], [1779, 2, \n 0.004996513096064047, 0.24982565480320235, 0, 0, 0], [1780, 2, \n 0.006230787068824076, 0.3115393534412038, 0, 0, 0], [1781, 3, \n 0.00021502447244349144, 0.010751223622174573, 2.22, 61.69, 0.004502], [\n 1782, 3, 0.0002923350461609784, 0.014616752308048923, 2.22, 61.69, \n 0.004502], [1783, 3, 0.000315606657620068, 0.015780332881003403, 2.22, \n 61.69, 0.004502], [1784, 2, 0.015337461016832239, 0.766873050841612, 0,\n 0, 0], [1785, 2, 0.016202255111263022, 0.8101127555631511, 0, 0, 0], [\n 1786, 2, 0.01246935769334627, 0.6234678846673135, 0, 0, 0], [1787, 2, \n 0.007834284018991623, 0.39171420094958115, 0, 0, 0], [1788, 3, \n 0.0006039154901225237, 0.03019577450612619, 2.22, 61.69, 0.004502], [\n 1789, 3, 0.0015315823649962818, 0.0765791182498141, 2.22, 61.69, \n 0.004502], [1790, 3, 8.990133662468075e-05, 0.004495066831234037, 2.22,\n 61.69, 0.004502], [1791, 3, 7.455032871317029e-05, \n 0.0037275164356585146, 2.22, 61.69, 0.004502], [1792, 3, \n 0.0005675023214651282, 0.028375116073256407, 2.22, 61.69, 0.004502], [\n 1793, 3, 0.002656157006665058, 0.1328078503332529, 2.22, 61.69, \n 0.004502], [1794, 3, 0.0004212921062352398, 0.02106460531176199, 2.22, \n 61.69, 0.004502], [1795, 3, 0.0002123674254215119, 0.010618371271075596,\n 2.22, 61.69, 0.004502], [1796, 3, 0.00031775046703264725, \n 0.015887523351632366, 2.22, 61.69, 0.004502], [1797, 2, \n 0.00403691835051508, 0.201845917525754, 0, 0, 0], [1798, 3, \n 0.000944473672940868, 0.04722368364704341, 2.22, 61.69, 0.004502], [\n 1799, 2, 0.003253270301259914, 0.1626635150629957, 0, 0, 0], [1800, 2, \n 0.0026467966673667637, 0.1323398333683382, 0, 0, 0], [1801, 3, \n 0.0013373311645223187, 0.06686655822611594, 2.22, 61.69, 0.004502], [\n 1802, 3, 0.0007197108874813503, 0.035985544374067514, 2.22, 61.69, \n 0.004502], [1803, 3, 0.0009665525104250152, 0.048327625521250764, 2.22,\n 61.69, 0.004502], [1804, 2, 0.025409608772093598, 1.27048043860468, 0, \n 0, 0], [1805, 3, 0.001477270474113474, 0.0738635237056737, 2.22, 61.69,\n 0.004502], [1806, 3, 0.0013667817016994666, 0.06833908508497333, 2.22, \n 61.69, 0.004502], [1807, 3, 0.0009076502282063987, 0.045382511410319945,\n 2.22, 61.69, 0.004502], [1808, 2, 0.007528838066696213, \n 0.37644190333481065, 0, 0, 0], [1809, 3, 0.002102833294320084, \n 0.10514166471600422, 2.22, 61.69, 0.004502], [1810, 2, \n 0.004719861321134895, 0.23599306605674475, 0, 0, 0], [1811, 2, \n 0.001672050348954162, 0.0836025174477081, 0, 0, 0], [1812, 3, \n 0.0030140928414828165, 0.15070464207414083, 2.22, 61.69, 0.004502], [\n 1813, 2, 0.011516130642990736, 0.5758065321495368, 0, 0, 0], [1814, 2, \n 0.002392750221002072, 0.11963751105010362, 0, 0, 0], [1815, 2, \n 0.0020324845593476418, 0.10162422796738207, 0, 0, 0], [1816, 3, \n 0.000983018960981752, 0.0491509480490876, 2.22, 61.69, 0.004502], [1817,\n 2, 0.017864499165755984, 0.8932249582877992, 0, 0, 0], [1818, 2, \n 0.011046350969132132, 0.5523175484566066, 0, 0, 0], [1819, 3, \n 9.793425792119684e-05, 0.004896712896059842, 2.22, 61.69, 0.004502], [\n 1820, 2, 0.005074724090318581, 0.253736204515929, 0, 0, 0], [1821, 2, \n 0.012520998202122803, 0.6260499101061401, 0, 0, 0], [1822, 2, \n 0.010875476397094096, 0.5437738198547047, 0, 0, 0], [1823, 2, \n 0.008368758642072162, 0.41843793210360813, 0, 0, 0], [1824, 2, \n 0.0021616183697018014, 0.10808091848509005, 0, 0, 0], [1825, 2, \n 0.0025970025810079836, 0.12985012905039917, 0, 0, 0], [1826, 2, \n 0.004717432235769138, 0.23587161178845692, 0, 0, 0], [1827, 3, \n 0.0010473607763716022, 0.05236803881858012, 2.22, 61.69, 0.004502], [\n 1828, 3, 0.001360469510306804, 0.0680234755153402, 2.22, 61.69, \n 0.004502], [1830, 3, 0.001765013532013441, 0.08825067660067205, 2.22, \n 61.69, 0.004502], [1831, 2, 0.004449336207686825, 0.2224668103843413, 0,\n 0, 0], [1832, 3, 0.001690901876552968, 0.08454509382764841, 2.22, 61.69,\n 0.004502], [1833, 2, 0.005179663380052178, 0.2589831690026089, 0, 0, 0],\n [1834, 2, 0.006527235089427834, 0.32636175447139176, 0, 0, 0], [1836, 3,\n 0.00021912289073146074, 0.010956144536573037, 2.22, 61.69, 0.004502], [\n 1837, 3, 0.0004122879579140169, 0.020614397895700843, 2.22, 61.69, \n 0.004502], [1838, 3, 0.001628531485618897, 0.08142657428094485, 2.22, \n 61.69, 0.004502], [1839, 2, 0.011697833115635535, 0.5848916557817768, 0,\n 0, 0], [1840, 2, 0.008465463985539544, 0.42327319927697715, 0, 0, 0], [\n 1841, 3, 0.0014631197849879433, 0.07315598924939716, 2.22, 61.69, \n 0.004502], [1842, 3, 0.0004754679394685904, 0.023773396973429523, 2.22,\n 61.69, 0.004502], [1843, 3, 0.0012264279861417988, 0.06132139930708994,\n 2.22, 61.69, 0.004502], [1844, 3, 0.002061648212488373, \n 0.10308241062441864, 2.22, 61.69, 0.004502], [1845, 3, \n 0.0020012780505250503, 0.10006390252625251, 2.22, 61.69, 0.004502], [\n 1846, 3, 0.0002387222436177512, 0.01193611218088756, 2.22, 61.69, \n 0.004502], [1847, 2, 0.007653161133263645, 0.38265805666318226, 0, 0, 0\n ], [1848, 3, 0.0006057243836929574, 0.030286219184647873, 2.22, 61.69, \n 0.004502], [1849, 3, 0.002394906091011762, 0.1197453045505881, 2.22, \n 61.69, 0.004502], [1850, 3, 0.0030901892998593753, 0.1545094649929688, \n 2.22, 61.69, 0.004502], [1851, 3, 0.0005065229873089011, \n 0.025326149365445055, 2.22, 61.69, 0.004502], [1852, 3, \n 0.0023941306142429277, 0.11970653071214639, 2.22, 61.69, 0.004502], [\n 1853, 3, 0.001917289339589373, 0.09586446697946867, 2.22, 61.69, \n 0.004502], [1854, 3, 6.576971194700433e-05, 0.0032884855973502164, 2.22,\n 61.69, 0.004502], [1855, 2, 0.00774686590726215, 0.3873432953631076, 0,\n 0, 0], [1856, 2, 0.004052362315850483, 0.20261811579252417, 0, 0, 0], [\n 1857, 3, 0.0021783820758427335, 0.10891910379213668, 2.22, 61.69, \n 0.004502], [1858, 3, 0.0011079593636130858, 0.05539796818065428, 2.22, \n 61.69, 0.004502], [1860, 2, 0.005358021415770059, 0.26790107078850295, \n 0, 0, 0], [1861, 3, 0.0017100335257855066, 0.08550167628927534, 2.22, \n 61.69, 0.004502], [1862, 3, 0.0020698307768289865, 0.10349153884144933,\n 2.22, 61.69, 0.004502], [1863, 3, 0.00191391644363232, \n 0.095695822181616, 2.22, 61.69, 0.004502], [1864, 2, \n 0.008800397207769248, 0.44001986038846247, 0, 0, 0], [1865, 2, \n 0.0043352387888536065, 0.21676193944268035, 0, 0, 0], [1866, 2, \n 0.006257281052932708, 0.31286405264663536, 0, 0, 0], [1867, 3, \n 0.00012995244000252472, 0.006497622000126237, 2.22, 61.69, 0.004502], [\n 1868, 3, 0.00041083453079481484, 0.020541726539740745, 2.22, 61.69, \n 0.004502], [1869, 3, 0.00017567193669280263, 0.00878359683464013, 2.22,\n 61.69, 0.004502], [1870, 2, 0.003473694483557617, 0.1736847241778809, 0,\n 0, 0], [1871, 2, 0.0033517040413269606, 0.16758520206634805, 0, 0, 0],\n [1872, 3, 0.00010719744643252312, 0.005359872321626155, 2.22, 61.69, \n 0.004502], [1873, 3, 0.000574567390652452, 0.028728369532622606, 2.22, \n 61.69, 0.004502], [1874, 3, 0.00022628109654053896, \n 0.011314054827026949, 2.22, 61.69, 0.004502], [1875, 3, \n 0.0004989555693169999, 0.02494777846585, 2.22, 61.69, 0.004502], [1876,\n 3, 0.0003142782948794478, 0.015713914743972393, 2.22, 61.69, 0.004502],\n [1877, 3, 7.230196727588184e-05, 0.0036150983637940923, 2.22, 61.69, \n 0.004502], [1878, 3, 0.0005331263734578022, 0.026656318672890113, 2.22,\n 61.69, 0.004502], [1879, 3, 0.00011159186867635697, \n 0.005579593433817849, 2.22, 61.69, 0.004502], [1880, 3, \n 0.00244891520347455, 0.1224457601737275, 2.22, 61.69, 0.004502], [1881,\n 3, 0.0002887579564064166, 0.014437897820320829, 2.22, 61.69, 0.004502],\n [1882, 3, 0.00032599010771041975, 0.01629950538552099, 2.22, 61.69, \n 0.004502], [1883, 3, 0.00044187502678609845, 0.022093751339304926, 2.22,\n 61.69, 0.004502], [1884, 3, 0.00037340729038742344, \n 0.018670364519371176, 2.22, 61.69, 0.004502], [1885, 3, \n 0.0030245916943440585, 0.15122958471720294, 2.22, 61.69, 0.004502], [\n 1886, 3, 0.0003345690401481447, 0.016728452007407236, 2.22, 61.69, \n 0.004502], [1887, 3, 0.0010782856336352766, 0.053914281681763834, 2.22,\n 61.69, 0.004502], [1888, 3, 0.0002636376916630472, 0.01318188458315236,\n 2.22, 61.69, 0.004502], [1889, 2, 0.005814578382053085, \n 0.29072891910265425, 0, 0, 0], [1890, 3, 0.0015815352363784706, \n 0.07907676181892354, 2.22, 61.69, 0.004502], [1891, 3, \n 0.000992315529797541, 0.049615776489877056, 2.22, 61.69, 0.004502], [\n 1892, 3, 0.001259940613113676, 0.0629970306556838, 2.22, 61.69, \n 0.004502], [1893, 3, 0.001665887236274936, 0.0832943618137468, 2.22, \n 61.69, 0.004502], [1894, 3, 0.001079038206318279, 0.05395191031591395, \n 2.22, 61.69, 0.004502], [1895, 3, 8.952647871728964e-06, \n 0.00044763239358644815, 2.22, 61.69, 0.004502], [1896, 3, \n 0.0028811650323339066, 0.14405825161669536, 2.22, 61.69, 0.004502], [\n 1897, 3, 0.0009437630096352837, 0.04718815048176419, 2.22, 61.69, \n 0.004502], [1898, 3, 0.0006406905245851681, 0.03203452622925841, 2.22, \n 61.69, 0.004502], [1899, 3, 0.0007639753017939761, 0.0381987650896988, \n 2.22, 61.69, 0.004502], [1900, 2, 0.004972924117850934, \n 0.2486462058925467, 0, 0, 0], [1901, 2, 0.00850139874298526, \n 0.42506993714926306, 0, 0, 0], [1902, 2, 0.017941196935571776, \n 0.8970598467785887, 0, 0, 0], [1903, 2, 0.008625713146876468, \n 0.4312856573438233, 0, 0, 0], [1904, 2, 0.005041037225995458, \n 0.2520518612997729, 0, 0, 0], [1905, 3, 0.0005831823676327024, \n 0.02915911838163512, 2.22, 61.69, 0.004502], [1906, 2, \n 0.004606359297257753, 0.2303179648628877, 0, 0, 0], [1907, 3, \n 0.0018394260494774333, 0.09197130247387167, 2.22, 61.69, 0.004502], [\n 1908, 2, 0.0032135207686216495, 0.1606760384310825, 0, 0, 0], [1909, 3,\n 0.0012414089664561352, 0.062070448322806775, 2.22, 61.69, 0.004502], [\n 1910, 3, 0.0007671015575814698, 0.03835507787907349, 2.22, 61.69, \n 0.004502], [1911, 3, 0.0003087108567584627, 0.015435542837923134, 2.22,\n 61.69, 0.004502], [1912, 2, 0.0029895860721330676, 0.1494793036066534, \n 0, 0, 0], [1913, 3, 0.00021992506558906862, 0.010996253279453432, 2.22,\n 61.69, 0.004502], [1914, 3, 0.0005075021454898337, 0.025375107274491684,\n 2.22, 61.69, 0.004502], [1915, 2, 0.006010235457498342, \n 0.3005117728749171, 0, 0, 0], [1916, 2, 0.008326107867695528, \n 0.4163053933847764, 0, 0, 0], [1917, 2, 0.01186578896955475, \n 0.5932894484777375, 0, 0, 0], [1918, 2, 0.007670383184040397, \n 0.3835191592020199, 0, 0, 0], [1919, 2, 0.0038936492873901407, \n 0.19468246436950706, 0, 0, 0], [1920, 3, 0.000332549912725998, \n 0.0166274956362999, 2.22, 61.69, 0.004502], [1921, 2, \n 0.007214669119559851, 0.3607334559779926, 0, 0, 0], [1922, 2, \n 0.0021114418882092873, 0.10557209441046439, 0, 0, 0], [1923, 3, \n 0.0006974532752472191, 0.03487266376236096, 2.22, 61.69, 0.004502], [\n 1924, 3, 0.00125215478705234, 0.06260773935261701, 2.22, 61.69, \n 0.004502], [1925, 2, 0.008615016374090978, 0.430750818704549, 0, 0, 0],\n [1926, 2, 0.0061503949380010674, 0.3075197469000534, 0, 0, 0], [1927, 2,\n 0.0041806062493278656, 0.20903031246639325, 0, 0, 0], [1928, 3, \n 4.419749409205862e-05, 0.0022098747046029312, 2.22, 61.69, 0.004502], [\n 1929, 3, 0.00020680114039434865, 0.010340057019717434, 2.22, 61.69, \n 0.004502], [1930, 3, 0.0007005983174314458, 0.03502991587157229, 2.22, \n 61.69, 0.004502], [1931, 3, 0.0024239654405412703, 0.12119827202706351,\n 2.22, 61.69, 0.004502], [1932, 3, 0.002974438998844226, \n 0.1487219499422113, 2.22, 61.69, 0.004502], [1933, 3, \n 0.0028163541927531156, 0.1408177096376558, 2.22, 61.69, 0.004502], [\n 1934, 2, 0.02440916060463032, 1.220458030231516, 0, 0, 0], [1935, 2, \n 0.0039684102931149354, 0.19842051465574678, 0, 0, 0], [1936, 3, \n 0.000382479275998745, 0.01912396379993725, 2.22, 61.69, 0.004502], [\n 1937, 2, 0.008569267103180329, 0.42846335515901646, 0, 0, 0], [1938, 2,\n 0.00390989736605716, 0.19549486830285803, 0, 0, 0], [1939, 2, \n 0.006557418126204308, 0.3278709063102154, 0, 0, 0], [1940, 3, \n 0.001208357077306712, 0.0604178538653356, 2.22, 61.69, 0.004502], [1941,\n 2, 0.006652364482492468, 0.3326182241246234, 0, 0, 0], [1942, 2, \n 0.0045043949262709645, 0.22521974631354824, 0, 0, 0], [1943, 3, \n 0.00023252908320092636, 0.011626454160046318, 2.22, 61.69, 0.004502], [\n 1944, 2, 0.005929079599901607, 0.29645397999508033, 0, 0, 0], [1945, 3,\n 0.0006780918980905403, 0.03390459490452701, 2.22, 61.69, 0.004502], [\n 1946, 3, 8.336148919521743e-05, 0.004168074459760872, 2.22, 61.69, \n 0.004502], [1947, 3, 0.0011456765961899158, 0.05728382980949579, 2.22, \n 61.69, 0.004502], [1948, 2, 0.00528874503695904, 0.264437251847952, 0, \n 0, 0], [1949, 3, 0.0006489211057679636, 0.03244605528839819, 2.22, \n 61.69, 0.004502], [1950, 3, 5.516264040749443e-05, \n 0.0027581320203747214, 2.22, 61.69, 0.004502], [1951, 3, \n 0.0005040498585424706, 0.025202492927123534, 2.22, 61.69, 0.004502], [\n 1952, 2, 0.004311440642752593, 0.21557203213762965, 0, 0, 0], [1953, 3,\n 0.00056840953078036, 0.028420476539017997, 2.22, 61.69, 0.004502], [\n 1954, 3, 0.000810219119251976, 0.0405109559625988, 2.22, 61.69, \n 0.004502], [1955, 3, 0.00042177682050851135, 0.02108884102542557, 2.22,\n 61.69, 0.004502], [1956, 3, 0.002465302961964236, 0.12326514809821179, \n 2.22, 61.69, 0.004502], [1957, 2, 0.008383156986347735, \n 0.4191578493173868, 0, 0, 0], [1958, 2, 0.0038064615860352196, \n 0.190323079301761, 0, 0, 0], [1959, 3, 0.001895272146447572, \n 0.09476360732237861, 2.22, 61.69, 0.004502], [1960, 3, \n 0.0008645229684302137, 0.043226148421510686, 2.22, 61.69, 0.004502], [\n 1961, 3, 0.0011358239614237152, 0.05679119807118577, 2.22, 61.69, \n 0.004502], [1962, 3, 0.00020054662262724584, 0.010027331131362293, 2.22,\n 61.69, 0.004502], [1963, 3, 4.6561076539460124e-05, \n 0.002328053826973006, 2.22, 61.69, 0.004502], [1964, 2, \n 0.0022125463299369165, 0.11062731649684583, 0, 0, 0], [1965, 3, \n 0.0006342156106012513, 0.031710780530062564, 2.22, 61.69, 0.004502], [\n 1966, 3, 0.00017024481693603925, 0.008512240846801963, 2.22, 61.69, \n 0.004502], [1967, 2, 0.006307261687354099, 0.315363084367705, 0, 0, 0],\n [1968, 2, 0.01284277839703282, 0.6421389198516411, 0, 0, 0], [1969, 3, \n 0.0009579929272501334, 0.04789964636250667, 2.22, 61.69, 0.004502], [\n 1970, 2, 0.015079725927314894, 0.7539862963657448, 0, 0, 0], [1971, 3, \n 0.0009170131292254306, 0.04585065646127153, 2.22, 61.69, 0.004502], [\n 1972, 3, 1.8066254100367179e-06, 9.03312705018359e-05, 2.22, 61.69, \n 0.004502], [1973, 3, 3.403981706132528e-05, 0.001701990853066264, 2.22,\n 61.69, 0.004502], [1974, 3, 0.00017512817138826898, \n 0.008756408569413449, 2.22, 61.69, 0.004502], [1975, 2, \n 0.005215773570935892, 0.2607886785467946, 0, 0, 0], [1976, 3, \n 0.00013846418760463496, 0.006923209380231748, 2.22, 61.69, 0.004502], [\n 1977, 2, 0.01441202991758457, 0.7206014958792286, 0, 0, 0], [1978, 3, \n 8.477175778714879e-05, 0.0042385878893574395, 2.22, 61.69, 0.004502], [\n 1979, 2, 0.0057457235400009896, 0.2872861770000495, 0, 0, 0], [1980, 2,\n 0.006405630588486738, 0.32028152942433696, 0, 0, 0], [1981, 2, \n 0.009210787821818714, 0.46053939109093567, 0, 0, 0], [1982, 2, \n 0.008590405853146561, 0.4295202926573281, 0, 0, 0], [1983, 2, \n 0.009930641216311431, 0.49653206081557155, 0, 0, 0], [1984, 2, \n 0.0060141858887817045, 0.30070929443908523, 0, 0, 0], [1985, 3, \n 0.0026722646447263376, 0.13361323223631688, 2.22, 61.69, 0.004502], [\n 1986, 2, 0.018993358604279195, 0.9496679302139596, 0, 0, 0], [1987, 2, \n 0.02507734833641704, 1.2538674168208521, 0, 0, 0], [1988, 2, \n 0.01603931294702456, 0.801965647351228, 0, 0, 0], [1989, 3, \n 0.0006607023412943799, 0.033035117064719, 2.22, 61.69, 0.004502], [1990,\n 2, 0.0032054713137850705, 0.16027356568925352, 0, 0, 0], [1991, 2, \n 0.05408574806630115, 2.7042874033150572, 0, 0, 0], [1992, 2, \n 0.014863670563732221, 0.743183528186611, 0, 0, 0], [1993, 2, \n 0.015450675484657526, 0.7725337742328763, 0, 0, 0], [1994, 2, \n 0.01457937125804357, 0.7289685629021785, 0, 0, 0], [1995, 2, \n 0.016707875705152985, 0.8353937852576492, 0, 0, 0], [1996, 2, \n 0.005812773436471257, 0.2906386718235629, 0, 0, 0], [1997, 3, \n 0.0016929350309317515, 0.08464675154658759, 2.22, 61.69, 0.004502], [\n 1998, 3, 0.0007719976652252124, 0.038599883261260626, 2.22, 61.69, \n 0.004502], [1999, 2, 0.012680481108039163, 0.6340240554019583, 0, 0, 0],\n [2000, 2, 0.03691344580491312, 1.845672290245656, 0, 0, 0], [2001, 2, \n 0.007786859497473928, 0.3893429748736964, 0, 0, 0], [2002, 3, \n 0.001170905360798366, 0.05854526803991831, 2.22, 61.69, 0.004502], [\n 2003, 3, 0.0015052919810963758, 0.07526459905481879, 2.22, 61.69, \n 0.004502], [2004, 3, 0.0011289420570764744, 0.05644710285382372, 2.22, \n 61.69, 0.004502], [2005, 2, 0.004588211407678609, 0.22941057038393042, \n 0, 0, 0], [2006, 2, 0.003798130062159873, 0.18990650310799362, 0, 0, 0],\n [2007, 3, 0.00010704803006198773, 0.005352401503099387, 2.22, 61.69, \n 0.004502], [2008, 3, 7.429754173230803e-06, 0.00037148770866154025, \n 2.22, 61.69, 0.004502]]'], {}), '([[586, 1, 0.08658028904199107, 4.329014452099554, 0, 0, 0], [589, 1, \n 0.010042676909098597, 0.5021338454549299, 0, 0, 0], [590, 1, \n 0.012095775674984046, 0.6047887837492023, 0, 0, 0], [593, 1, \n 0.0017666198683200384, 0.08833099341600192, 0, 0, 0], [594, 1, \n 0.006047887837492023, 0.30239439187460115, 0, 0, 0], [595, 1, \n 1.50560576164933, 75.2802880824665, 0, 0, 0], [598, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [599, 1, \n 0.0029602819415092537, 0.1480140970754627, 0, 0, 0], [601, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [602, 1, \n 0.007830423200121252, 0.39152116000606263, 0, 0, 0], [603, 1, \n 1.0997606567649967, 54.98803283824984, 0, 0, 0], [607, 1, \n 0.5729577951308232, 28.64788975654116, 0, 0, 0], [608, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [609, 1, \n 0.0057932399285449895, 0.2896619964272495, 0, 0, 0], [612, 1, \n 0.00954929658551372, 0.477464829275686, 0, 0, 0], [613, 1, \n 0.027056340325622208, 1.3528170162811104, 0, 0, 0], [614, 1, \n 0.00954929658551372, 0.477464829275686, 0, 0, 0], [616, 1, \n 0.0046154933496649645, 0.23077466748324824, 0, 0, 0], [617, 1, \n 0.04360845440717932, 2.1804227203589663, 0, 0, 0], [618, 1, \n 0.010631550198538607, 0.5315775099269304, 0, 0, 0], [619, 1, \n 0.037560566569687294, 1.8780283284843649, 0, 0, 0], [621, 1, \n 0.24350706293059987, 12.175353146529993, 0, 0, 0], [623, 1, \n 0.2419155134996809, 12.095775674984045, 0, 0, 0], [624, 1, \n 0.004297183463481174, 0.21485917317405873, 0, 0, 0], [628, 1, \n 0.14292113889652203, 7.1460569448261015, 0, 0, 0], [629, 1, \n 0.023968734429639437, 1.198436721481972, 0, 0, 0], [632, 1, \n 0.01435577586688896, 0.717788793344448, 0, 0, 0], [637, 1, \n 0.017093240888069558, 0.854662044403478, 0, 0, 0], [638, 1, \n 0.02048324117592693, 1.0241620587963465, 0, 0, 0], [640, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [641, 1, \n 0.0040107045659157625, 0.20053522829578813, 0, 0, 0], [642, 1, \n 0.00919915571071155, 0.4599577855355775, 0, 0, 0], [643, 1, \n 0.27279157245950864, 13.639578622975431, 0, 0, 0], [646, 1, \n 0.03278591827693044, 1.6392959138465222, 0, 0, 0], [647, 1, \n 0.00445633840657307, 0.2228169203286535, 0, 0, 0], [650, 1, \n 0.4216014442504307, 21.080072212521536, 0, 0, 0], [652, 1, \n 0.00746436683100989, 0.37321834155049455, 0, 0, 0], [655, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [661, 1, \n 0.010408733278209955, 0.5204366639104978, 0, 0, 0], [663, 1, \n 0.00238732414637843, 0.1193662073189215, 0, 0, 0], [666, 1, \n 0.00919915571071155, 0.4599577855355775, 0, 0, 0], [668, 1, \n 0.24382537281678363, 12.191268640839182, 0, 0, 0], [670, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [672, 1, \n 0.010536057232683471, 0.5268028616341736, 0, 0, 0], [676, 1, \n 0.11777465788800255, 5.888732894400127, 0, 0, 0], [681, 1, \n 0.0063821132179850025, 0.31910566089925013, 0, 0, 0], [683, 1, \n 0.008753521870054244, 0.4376760935027122, 0, 0, 0], [687, 1, \n 0.42303383873825773, 21.151691936912886, 0, 0, 0], [689, 1, \n 0.09867606471697511, 4.933803235848756, 0, 0, 0], [691, 1, \n 0.008276057040778557, 0.4138028520389279, 0, 0, 0], [693, 1, \n 0.06175211791965539, 3.0876058959827692, 0, 0, 0], [694, 1, \n 0.005220282133414166, 0.2610141066707083, 0, 0, 0], [695, 1, \n 0.004679155326901723, 0.23395776634508614, 0, 0, 0], [696, 1, \n 0.22950142793851305, 11.475071396925653, 0, 0, 0], [697, 1, \n 0.0036923946797319715, 0.1846197339865986, 0, 0, 0], [698, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [702, 1, \n 0.023363945645890238, 1.168197282294512, 0, 0, 0], [704, 1, \n 0.16170142218136566, 8.085071109068283, 0, 0, 0], [705, 1, \n 0.005411268065124442, 0.27056340325622213, 0, 0, 0], [707, 1, \n 0.010822536130248884, 0.5411268065124443, 0, 0, 0], [708, 1, \n 0.0024828171122335675, 0.12414085561167837, 0, 0, 0], [711, 1, \n 0.056054370956965534, 2.802718547848277, 0, 0, 0], [713, 1, \n 0.004265352474862795, 0.21326762374313976, 0, 0, 0], [714, 1, \n 0.00477464829275686, 0.238732414637843, 0, 0, 0], [716, 1, \n 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0], [717, 1, \n 0.0017507043740108488, 0.08753521870054244, 0, 0, 0], [719, 1, \n 0.623250757147862, 31.162537857393104, 0, 0, 0], [722, 1, \n 0.006589014644004467, 0.3294507322002233, 0, 0, 0], [724, 1, \n 0.0019257748114119334, 0.09628874057059668, 0, 0, 0], [727, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [728, 1, \n 0.16233804195373325, 8.116902097686662, 0, 0, 0], [730, 1, \n 0.10077690996578814, 5.038845498289407, 0, 0, 0], [731, 1, \n 0.2848873481344926, 14.244367406724633, 0, 0, 0], [732, 1, \n 0.004647324338283344, 0.2323662169141672, 0, 0, 0], [735, 1, \n 0.013496339174192726, 0.6748169587096363, 0, 0, 0], [737, 1, \n 0.00891267681314614, 0.445633840657307, 0, 0, 0], [738, 1, \n 0.04408591923645501, 2.2042959618227504, 0, 0, 0], [741, 1, \n 0.0340591578216656, 1.7029578910832803, 0, 0, 0], [742, 1, \n 0.0028647889756541157, 0.14323944878270578, 0, 0, 0], [743, 1, \n 0.44881693951914486, 22.440846975957243, 0, 0, 0], [746, 1, \n 0.03183098861837907, 1.5915494309189535, 0, 0, 0], [747, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [748, 1, \n 0.03501408748021698, 1.7507043740108488, 0, 0, 0], [749, 1, \n 0.0025464790894703256, 0.12732395447351627, 0, 0, 0], [750, 1, \n 0.028902537665488188, 1.4451268832744095, 0, 0, 0], [753, 1, \n 0.049624511256052974, 2.4812255628026487, 0, 0, 0], [758, 1, \n 0.0058887328944001276, 0.2944366447200064, 0, 0, 0], [760, 1, \n 0.2527380496299298, 12.636902481496492, 0, 0, 0], [762, 1, \n 0.3517324242330887, 17.586621211654435, 0, 0, 0], [763, 1, \n 0.006461690689530951, 0.32308453447654756, 0, 0, 0], [765, 1, \n 0.018780283284843647, 0.9390141642421824, 0, 0, 0], [767, 1, \n 0.0035650707252584553, 0.17825353626292276, 0, 0, 0], [769, 1, \n 0.013782818071758136, 0.6891409035879068, 0, 0, 0], [771, 1, \n 0.21963382146681557, 10.981691073340778, 0, 0, 0], [772, 1, \n 0.002992112930127632, 0.1496056465063816, 0, 0, 0], [774, 1, \n 0.010663381187156987, 0.5331690593578494, 0, 0, 0], [776, 1, \n 0.01782535362629228, 0.891267681314614, 0, 0, 0], [777, 1, \n 0.012573240504259732, 0.6286620252129866, 0, 0, 0], [778, 1, \n 0.004679155326901723, 0.23395776634508614, 0, 0, 0], [781, 1, \n 0.4169859509007658, 20.84929754503829, 0, 0, 0], [784, 1, \n 0.4058451048843331, 20.292255244216655, 0, 0, 0], [785, 1, \n 0.00047746482927568597, 0.0238732414637843, 0, 0, 0], [787, 1, \n 0.24764509145098912, 12.382254572549456, 0, 0, 0], [788, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [789, 1, \n 0.0123185925953127, 0.615929629765635, 0, 0, 0], [791, 1, \n 0.0031830988618379067, 0.15915494309189535, 0, 0, 0], [792, 1, \n 0.009979014931861837, 0.49895074659309185, 0, 0, 0], [795, 1, \n 0.004329014452099553, 0.2164507226049777, 0, 0, 0], [801, 1, \n 0.007957747154594767, 0.3978873577297384, 0, 0, 0], [802, 1, \n 0.07957747154594767, 3.9788735772973833, 0, 0, 0], [805, 1, \n 0.44881693951914486, 22.440846975957243, 0, 0, 0], [806, 1, \n 0.005697746962689853, 0.2848873481344927, 0, 0, 0], [808, 1, \n 0.034616200122487235, 1.7308100061243619, 0, 0, 0], [809, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [811, 1, \n 0.0040107045659157625, 0.20053522829578813, 0, 0, 0], [814, 1, \n 0.014164789935178685, 0.7082394967589343, 0, 0, 0], [816, 1, \n 0.012748310941660816, 0.6374155470830408, 0, 0, 0], [817, 1, \n 0.017188733853924696, 0.8594366926962349, 0, 0, 0], [821, 1, \n 0.013130282805081364, 0.6565141402540683, 0, 0, 0], [822, 1, \n 0.04265352474862795, 2.1326762374313977, 0, 0, 0], [826, 1, \n 0.018461973398659858, 0.9230986699329929, 0, 0, 0], [829, 1, \n 0.06716338598477982, 3.3581692992389915, 0, 0, 0], [830, 1, \n 0.02832957987035737, 1.4164789935178685, 0, 0, 0], [835, 1, \n 0.010138169874953733, 0.5069084937476867, 0, 0, 0], [836, 1, \n 0.008116902097686661, 0.4058451048843331, 0, 0, 0], [837, 1, \n 0.15024226627874918, 7.512113313937459, 0, 0, 0], [839, 1, \n 0.011666057328635928, 0.5833028664317964, 0, 0, 0], [841, 1, \n 0.0037083101740411615, 0.18541550870205808, 0, 0, 0], [843, 1, \n 0.10599719209920229, 5.2998596049601145, 0, 0, 0], [844, 1, \n 0.012732395447351627, 0.6366197723675814, 0, 0, 0], [845, 1, \n 0.10122254380644544, 5.061127190322272, 0, 0, 0], [849, 1, \n 0.24796340133717296, 12.398170066858649, 0, 0, 0], [850, 1, \n 0.005092958178940651, 0.25464790894703254, 0, 0, 0], [851, 1, \n 0.01265281797580568, 0.632640898790284, 0, 0, 0], [853, 1, \n 0.0036923946797319715, 0.1846197339865986, 0, 0, 0], [854, 1, \n 0.026037748689834075, 1.3018874344917037, 0, 0, 0], [855, 1, \n 0.21899720169444797, 10.949860084722399, 0, 0, 0], [856, 1, \n 0.011459155902616463, 0.5729577951308231, 0, 0, 0], [857, 1, \n 0.4462704604296745, 22.313523021483725, 0, 0, 0], [858, 1, \n 0.01808000153523931, 0.9040000767619655, 0, 0, 0], [859, 1, \n 0.027056340325622208, 1.3528170162811104, 0, 0, 0], [860, 1, \n 0.0039788735772973835, 0.1989436788648692, 0, 0, 0], [862, 1, \n 0.23077466748324824, 11.538733374162412, 0, 0, 0], [863, 1, \n 0.0001909859317102744, 0.00954929658551372, 0, 0, 0], [864, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [865, 1, \n 0.0035014087480216977, 0.17507043740108488, 0, 0, 0], [867, 1, \n 0.24478030247533505, 12.239015123766753, 0, 0, 0], [869, 1, \n 0.4329014452099553, 21.645072260497766, 0, 0, 0], [870, 1, \n 0.018589297353133374, 0.9294648676566688, 0, 0, 0], [872, 1, \n 0.00716197243913529, 0.3580986219567645, 0, 0, 0], [873, 1, \n 0.038833806114422456, 1.941690305721123, 0, 0, 0], [874, 1, \n 0.006589014644004467, 0.3294507322002233, 0, 0, 0], [875, 1, \n 0.007766761222884492, 0.38833806114422464, 0, 0, 0], [877, 1, \n 0.007894085177358009, 0.39470425886790045, 0, 0, 0], [882, 1, \n 0.005538592019597957, 0.2769296009798979, 0, 0, 0], [883, 1, \n 0.005729577951308231, 0.28647889756541156, 0, 0, 0], [886, 1, \n 0.8186930272647096, 40.93465136323548, 0, 0, 0], [889, 1, \n 0.0030239439187460114, 0.15119719593730058, 0, 0, 0], [890, 1, \n 0.0076394372684109755, 0.3819718634205488, 0, 0, 0], [895, 1, \n 0.0030239439187460114, 0.15119719593730058, 0, 0, 0], [896, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [898, 1, \n 0.013464508185574344, 0.6732254092787172, 0, 0, 0], [900, 1, \n 0.03584169318429482, 1.7920846592147412, 0, 0, 0], [902, 1, \n 0.006207042780583919, 0.31035213902919595, 0, 0, 0], [903, 1, \n 0.0031990143561470966, 0.15995071780735484, 0, 0, 0], [905, 1, \n 0.021851973686517232, 1.0925986843258617, 0, 0, 0], [906, 1, \n 0.010504226244065093, 0.5252113122032547, 0, 0, 0], [907, 1, \n 0.02142225534016911, 1.0711127670084555, 0, 0, 0], [909, 1, \n 0.005856901905781748, 0.2928450952890874, 0, 0, 0], [913, 1, \n 0.02355493157760051, 1.1777465788800257, 0, 0, 0], [915, 1, \n 0.0038197186342054878, 0.1909859317102744, 0, 0, 0], [917, 1, \n 0.005411268065124442, 0.27056340325622213, 0, 0, 0], [918, 1, \n 0.012254930618075942, 0.612746530903797, 0, 0, 0], [920, 1, \n 0.0020371832715762603, 0.10185916357881303, 0, 0, 0], [921, 1, \n 0.019735212943395024, 0.9867606471697512, 0, 0, 0], [922, 1, \n 0.05220282133414166, 2.6101410667070835, 0, 0, 0], [923, 1, \n 0.023236621691416718, 1.161831084570836, 0, 0, 0], [925, 1, \n 0.008276057040778557, 0.4138028520389279, 0, 0, 0], [928, 1, \n 0.019576058000303126, 0.9788029000151565, 0, 0, 0], [931, 1, \n 0.03455253814525047, 1.7276269072625237, 0, 0, 0], [934, 1, \n 0.09421972631040204, 4.710986315520103, 0, 0, 0], [935, 1, \n 0.007352958370845565, 0.36764791854227824, 0, 0, 0], [936, 1, \n 0.016615776058793875, 0.8307888029396938, 0, 0, 0], [937, 1, \n 0.00477464829275686, 0.238732414637843, 0, 0, 0], [939, 1, \n 1.5915494309189534e-05, 0.0007957747154594768, 0, 0, 0], [940, 1, \n 0.009421972631040205, 0.47109863155201026, 0, 0, 0], [942, 1, \n 0.016520283092938737, 0.8260141546469368, 0, 0, 0], [944, 1, \n 0.004042535554534142, 0.2021267777267071, 0, 0, 0], [945, 1, \n 0.011140846016432674, 0.5570423008216338, 0, 0, 0], [950, 1, \n 0.005092958178940651, 0.25464790894703254, 0, 0, 0], [952, 1, \n 0.005045211696013082, 0.2522605848006541, 0, 0, 0], [958, 1, \n 0.010615634704229418, 0.530781735211471, 0, 0, 0], [959, 1, \n 0.007241549910681238, 0.3620774955340619, 0, 0, 0], [960, 1, \n 0.004217605991935227, 0.21088029959676136, 0, 0, 0], [963, 1, \n 0.2785211504108168, 13.926057520540843, 0, 0, 0], [965, 1, \n 0.11204507993669433, 5.602253996834716, 0, 0, 0], [966, 1, \n 0.021008452488130186, 1.0504226244065094, 0, 0, 0], [967, 1, \n 0.01193662073189215, 0.5968310365946076, 0, 0, 0], [968, 1, \n 0.017188733853924696, 0.8594366926962349, 0, 0, 0], [969, 1, \n 0.018111832523857688, 0.9055916261928845, 0, 0, 0], [971, 1, \n 0.0031830988618379067, 0.15915494309189535, 0, 0, 0], [973, 1, \n 0.4287634166895661, 21.438170834478306, 0, 0, 0], [976, 1, \n 0.008562535938343968, 0.4281267969171984, 0, 0, 0], [977, 1, \n 0.1031324031235482, 5.15662015617741, 0, 0, 0], [978, 1, \n 0.0007321127382227185, 0.03660563691113593, 0, 0, 0], [981, 1, \n 0.03787887645587108, 1.8939438227935543, 0, 0, 0], [982, 1, \n 0.0015756339366097638, 0.07878169683048819, 0, 0, 0], [983, 1, \n 0.01400563499208679, 0.7002817496043395, 0, 0, 0], [984, 1, \n 0.14801409707546268, 7.400704853773133, 0, 0, 0], [985, 1, \n 0.0035014087480216977, 0.17507043740108488, 0, 0, 0], [986, 1, \n 0.0017825353626292277, 0.08912676813146138, 0, 0, 0], [987, 1, \n 0.02618098813861678, 1.3090494069308392, 0, 0, 0], [988, 1, \n 0.0008116902097686662, 0.04058451048843331, 0, 0, 0], [990, 1, \n 0.0954929658551372, 4.7746482927568605, 0, 0, 0], [993, 1, \n 0.06238873769202297, 3.119436884601149, 0, 0, 0], [994, 1, \n 0.010504226244065093, 0.5252113122032547, 0, 0, 0], [995, 1, \n 0.0006684507609859605, 0.033422538049298026, 0, 0, 0], [997, 1, \n 0.005984225860255264, 0.2992112930127632, 0, 0, 0], [999, 1, \n 0.004965634224467135, 0.24828171122335674, 0, 0, 0], [1000, 1, \n 0.015597184423005743, 0.7798592211502873, 0, 0, 0], [1002, 1, \n 0.0031512678732195276, 0.15756339366097638, 0, 0, 0], [1003, 1, \n 0.2864788975654116, 14.32394487827058, 0, 0, 0], [1007, 1, \n 0.007416620348082323, 0.37083101740411617, 0, 0, 0], [1008, 1, \n 0.015597184423005743, 0.7798592211502873, 0, 0, 0], [1010, 1, \n 0.238732414637843, 11.93662073189215, 0, 0, 0], [1011, 1, \n 0.005952394871636886, 0.2976197435818443, 0, 0, 0], [1012, 1, \n 0.9024085273310466, 45.12042636655233, 0, 0, 0], [1018, 1, \n 0.05599070897972878, 2.7995354489864392, 0, 0, 0], [1023, 1, \n 6.366197723675813e-05, 0.003183098861837907, 0, 0, 0], [1026, 1, \n 0.20868396138209316, 10.434198069104658, 0, 0, 0], [1027, 3, \n 0.003074873500535418, 0.15374367502677092, 2.22, 61.69, 0.004502], [\n 1028, 2, 0.025464790894703257, 1.273239544735163, 0, 0, 0], [1029, 2, \n 0.003819718634205488, 0.19098593171027442, 0, 0, 0], [1030, 2, \n 0.06480789282701978, 3.2403946413509894, 0, 0, 0], [1031, 2, \n 0.0921316134570364, 4.60658067285182, 0, 0, 0], [1032, 2, \n 0.007079413776351905, 0.3539706888175953, 0, 0, 0], [1033, 2, \n 0.0016944568259984044, 0.08472284129992022, 0, 0, 0], [1034, 2, \n 0.005364335122251813, 0.26821675611259066, 0, 0, 0], [1035, 3, \n 0.001981955148228083, 0.09909775741140416, 2.22, 61.69, 0.004502], [\n 1036, 2, 0.0022873115124132943, 0.11436557562066473, 0, 0, 0], [1037, 2,\n 0.0060277734620055035, 0.3013886731002752, 0, 0, 0], [1038, 2, \n 0.005462103769994554, 0.2731051884997277, 0, 0, 0], [1039, 2, \n 0.005563341057826885, 0.2781670528913443, 0, 0, 0], [1040, 3, \n 1.6315213950589632e-06, 8.157606975294815e-05, 2.22, 61.69, 0.004502],\n [1041, 2, 0.008814427293793635, 0.44072136468968176, 0, 0, 0], [1042, 2,\n 0.0018607001428599438, 0.09303500714299719, 0, 0, 0], [1044, 3, \n 0.0023022419250361527, 0.11511209625180763, 2.22, 61.69, 0.004502], [\n 1046, 2, 0.00679827557108513, 0.33991377855425653, 0, 0, 0], [1047, 3, \n 0.0008294889076348922, 0.04147444538174461, 2.22, 61.69, 0.004502], [\n 1048, 2, 0.004561818873896339, 0.22809094369481697, 0, 0, 0], [1049, 2,\n 0.018385610936452915, 0.9192805468226458, 0, 0, 0], [1050, 2, \n 0.001537750507570102, 0.07688752537850511, 0, 0, 0], [1051, 2, \n 0.009116741738348545, 0.45583708691742725, 0, 0, 0], [1052, 3, \n 0.001315809692296204, 0.06579048461481019, 2.22, 61.69, 0.004502], [\n 1053, 3, 0.001042024786453249, 0.05210123932266245, 2.22, 61.69, \n 0.004502], [1054, 2, 0.017434200209443074, 0.8717100104721537, 0, 0, 0],\n [1055, 3, 0.00010774097736088163, 0.005387048868044082, 2.22, 61.69, \n 0.004502], [1056, 2, 0.024955622083180834, 1.2477811041590419, 0, 0, 0],\n [1057, 2, 0.019784894623485406, 0.9892447311742705, 0, 0, 0], [1058, 2,\n 0.0501746065091408, 2.5087303254570403, 0, 0, 0], [1059, 2, \n 0.019128255048965058, 0.956412752448253, 0, 0, 0], [1060, 3, \n 0.00037000637396576757, 0.01850031869828838, 2.22, 61.69, 0.004502], [\n 1061, 2, 0.007080526996749377, 0.35402634983746883, 0, 0, 0], [1062, 3,\n 9.707513784221655e-05, 0.004853756892110828, 2.22, 61.69, 0.004502], [\n 1063, 3, 0.00028322305939182586, 0.014161152969591292, 2.22, 61.69, \n 0.004502], [1064, 2, 0.007915553554409737, 0.3957776777204869, 0, 0, 0],\n [1065, 2, 0.012331591192492646, 0.6165795596246323, 0, 0, 0], [1066, 2,\n 0.00430468846466002, 0.21523442323300102, 0, 0, 0], [1067, 3, \n 0.000833991719638428, 0.0416995859819214, 2.22, 61.69, 0.004502], [1072,\n 2, 0.007168748144119091, 0.3584374072059546, 0, 0, 0], [1073, 2, \n 0.004954025493475761, 0.24770127467378808, 0, 0, 0], [1074, 2, \n 0.009778033156939965, 0.48890165784699824, 0, 0, 0], [1075, 3, \n 0.00040004260890517566, 0.020002130445258785, 2.22, 61.69, 0.004502], [\n 1076, 3, 5.826983890127388e-05, 0.0029134919450636942, 2.22, 61.69, \n 0.004502], [1077, 3, 0.000673485067260617, 0.03367425336303085, 2.22, \n 61.69, 0.004502], [1078, 3, 0.0008721888640652444, 0.04360944320326222,\n 2.22, 61.69, 0.004502], [1079, 2, 0.004604543003215469, \n 0.23022715016077344, 0, 0, 0], [1080, 2, 0.0033504365751281366, \n 0.16752182875640684, 0, 0, 0], [1081, 2, 0.01904428060299353, \n 0.9522140301496764, 0, 0, 0], [1082, 2, 0.019142175329409636, \n 0.957108766470482, 0, 0, 0], [1083, 2, 0.02765555111759417, \n 1.3827775558797086, 0, 0, 0], [1084, 2, 0.02251139636942165, \n 1.1255698184710827, 0, 0, 0], [1085, 2, 0.002924465032188045, \n 0.14622325160940225, 0, 0, 0], [1086, 2, 0.006054053089096882, \n 0.3027026544548441, 0, 0, 0], [1087, 2, 0.0038538640246270086, \n 0.19269320123135042, 0, 0, 0], [1088, 3, 0.0012212923154449559, \n 0.06106461577224779, 2.22, 61.69, 0.004502], [1089, 2, \n 0.013632409346171416, 0.6816204673085708, 0, 0, 0], [1090, 2, \n 0.005674885746854652, 0.2837442873427326, 0, 0, 0], [1091, 3, \n 0.002915330196419503, 0.14576650982097517, 2.22, 61.69, 0.004502], [\n 1092, 2, 0.003437876146252996, 0.1718938073126498, 0, 0, 0], [1093, 2, \n 0.009906140914748767, 0.49530704573743833, 0, 0, 0], [1094, 3, \n 0.00014679877069625013, 0.007339938534812507, 2.22, 61.69, 0.004502], [\n 1095, 3, 7.832040393398852e-06, 0.0003916020196699426, 2.22, 61.69, \n 0.004502], [1096, 2, 0.004823456141103677, 0.24117280705518382, 0, 0, 0\n ], [1097, 3, 0.0002929164939619051, 0.014645824698095257, 2.22, 61.69, \n 0.004502], [1098, 2, 0.004521623727146264, 0.22608118635731317, 0, 0, 0\n ], [1099, 2, 0.018521637260932335, 0.9260818630466169, 0, 0, 0], [1101,\n 2, 0.004867852752026397, 0.24339263760131985, 0, 0, 0], [1102, 2, \n 0.019015404138804773, 0.9507702069402387, 0, 0, 0], [1103, 2, \n 0.01562148424141561, 0.7810742120707805, 0, 0, 0], [1104, 3, \n 6.386306370616109e-06, 0.00031931531853080544, 2.22, 61.69, 0.004502],\n [1105, 3, 8.412502229539806e-05, 0.004206251114769903, 2.22, 61.69, \n 0.004502], [1106, 3, 6.584959765284522e-05, 0.0032924798826422614, 2.22,\n 61.69, 0.004502], [1107, 2, 0.0019415493568754525, 0.09707746784377262,\n 0, 0, 0], [1108, 2, 0.008230112689073, 0.41150563445365, 0, 0, 0], [\n 1109, 3, 2.1817288020453202e-05, 0.00109086440102266, 2.22, 61.69, \n 0.004502], [1110, 3, 5.497784342238009e-05, 0.0027488921711190046, 2.22,\n 61.69, 0.004502], [1111, 2, 0.0023845796392517157, 0.1192289819625858, \n 0, 0, 0], [1112, 2, 0.0021164403594842204, 0.10582201797421102, 0, 0, 0\n ], [1113, 3, 0.00010674621831632141, 0.005337310915816071, 2.22, 61.69,\n 0.004502], [1114, 3, 0.00034110954647959777, 0.017055477323979887, 2.22,\n 61.69, 0.004502], [1115, 2, 0.001560581704874582, 0.0780290852437291, 0,\n 0, 0], [1116, 3, 0.0010497237040213306, 0.05248618520106653, 2.22, \n 61.69, 0.004502], [1117, 2, 0.0030482760183426784, 0.15241380091713394,\n 0, 0, 0], [1118, 3, 0.00025020310158992815, 0.012510155079496408, 2.22,\n 61.69, 0.004502], [1119, 3, 0.0013944280021936538, 0.06972140010968268,\n 2.22, 61.69, 0.004502], [1120, 3, 7.008367642348848e-05, \n 0.0035041838211744246, 2.22, 61.69, 0.004502], [1121, 3, \n 1.4685477050834066e-05, 0.0007342738525417034, 2.22, 61.69, 0.004502],\n [1122, 3, 4.191200200044469e-05, 0.0020956001000222344, 2.22, 61.69, \n 0.004502], [1123, 3, 3.903195973291004e-05, 0.0019515979866455023, 2.22,\n 61.69, 0.004502], [1124, 3, 3.566336656293116e-05, 0.001783168328146558,\n 2.22, 61.69, 0.004502], [1125, 3, 0.0006582243839744623, \n 0.03291121919872311, 2.22, 61.69, 0.004502], [1126, 3, \n 0.0007422650376636687, 0.037113251883183436, 2.22, 61.69, 0.004502], [\n 1127, 2, 0.006703391093283916, 0.3351695546641958, 0, 0, 0], [1128, 3, \n 0.00010716349856397227, 0.005358174928198614, 2.22, 61.69, 0.004502], [\n 1129, 3, 0.00016074416246728902, 0.008037208123364451, 2.22, 61.69, \n 0.004502], [1130, 3, 3.210401096978252e-05, 0.0016052005484891263, 2.22,\n 61.69, 0.004502], [1131, 3, 9.806928210800955e-05, 0.004903464105400477,\n 2.22, 61.69, 0.004502], [1132, 3, 1.1067968826227845e-05, \n 0.0005533984413113922, 2.22, 61.69, 0.004502], [1133, 3, \n 1.9548345246098505e-05, 0.0009774172623049253, 2.22, 61.69, 0.004502],\n [1134, 3, 1.381254127932907e-05, 0.0006906270639664534, 2.22, 61.69, \n 0.004502], [1135, 3, 0.00021213477502306707, 0.010606738751153356, 2.22,\n 61.69, 0.004502], [1136, 3, 1.119383227847146e-05, \n 0.0005596916139235731, 2.22, 61.69, 0.004502], [1137, 3, \n 0.00010232333194126452, 0.005116166597063225, 2.22, 61.69, 0.004502], [\n 1138, 3, 3.4362727229175405e-05, 0.0017181363614587703, 2.22, 61.69, \n 0.004502], [1139, 3, 0.0006015433668049999, 0.030077168340249993, 2.22,\n 61.69, 0.004502], [1140, 3, 0.0007645628362529935, 0.03822814181264968,\n 2.22, 61.69, 0.004502], [1141, 2, 0.004790241076682773, \n 0.23951205383413865, 0, 0, 0], [1142, 3, 3.366840739739377e-05, \n 0.0016834203698696886, 2.22, 61.69, 0.004502], [1143, 3, \n 0.0006435333214336843, 0.032176666071684214, 2.22, 61.69, 0.004502], [\n 1144, 2, 0.0015897690045774716, 0.0794884502288736, 0, 0, 0], [1145, 2,\n 0.011197481443497569, 0.5598740721748785, 0, 0, 0], [1146, 3, \n 2.3398271269893032e-05, 0.0011699135634946516, 2.22, 61.69, 0.004502],\n [1147, 3, 0.001386514802641611, 0.06932574013208057, 2.22, 61.69, \n 0.004502], [1148, 3, 0.000881292737319028, 0.0440646368659514, 2.22, \n 61.69, 0.004502], [1149, 3, 0.00022727377904538718, \n 0.011363688952269359, 2.22, 61.69, 0.004502], [1150, 3, \n 9.595428393961811e-05, 0.004797714196980906, 2.22, 61.69, 0.004502], [\n 1151, 3, 0.0005335375770300506, 0.02667687885150254, 2.22, 61.69, \n 0.004502], [1152, 3, 4.444955981844895e-06, 0.00022224779909224476, \n 2.22, 61.69, 0.004502], [1153, 3, 2.126258002048503e-06, \n 0.00010631290010242515, 2.22, 61.69, 0.004502], [1154, 3, \n 4.964927577583119e-06, 0.00024824637887915595, 2.22, 61.69, 0.004502],\n [1155, 3, 2.461238779559723e-05, 0.0012306193897798617, 2.22, 61.69, \n 0.004502], [1156, 3, 0.0005133980246981178, 0.025669901234905892, 2.22,\n 61.69, 0.004502], [1157, 3, 0.0001779783911006972, 0.00889891955503486,\n 2.22, 61.69, 0.004502], [1158, 3, 4.0543920426570716e-05, \n 0.002027196021328536, 2.22, 61.69, 0.004502], [1159, 3, \n 0.00046795147611456816, 0.023397573805728406, 2.22, 61.69, 0.004502], [\n 1160, 2, 0.013180409191210338, 0.6590204595605169, 0, 0, 0], [1161, 3, \n 0.000744916600802104, 0.03724583004010521, 2.22, 61.69, 0.004502], [\n 1162, 2, 0.023357274001077667, 1.1678637000538834, 0, 0, 0], [1163, 2, \n 0.011575125387027681, 0.578756269351384, 0, 0, 0], [1164, 2, \n 0.016316848244546277, 0.8158424122273138, 0, 0, 0], [1165, 2, \n 0.002364483341790854, 0.1182241670895427, 0, 0, 0], [1166, 2, \n 0.005301588846150501, 0.26507944230752506, 0, 0, 0], [1167, 3, \n 0.00019738295259357118, 0.009869147629678561, 2.22, 61.69, 0.004502], [\n 1168, 3, 6.350577083684924e-05, 0.003175288541842462, 2.22, 61.69, \n 0.004502], [1169, 3, 0.00012800233064568244, 0.006400116532284123, 2.22,\n 61.69, 0.004502], [1170, 3, 1.022098369235092e-05, 0.000511049184617546,\n 2.22, 61.69, 0.004502], [1171, 3, 0.00022898354230095963, \n 0.011449177115047983, 2.22, 61.69, 0.004502], [1172, 3, \n 9.083631449844832e-05, 0.004541815724922416, 2.22, 61.69, 0.004502], [\n 1173, 2, 0.013055045276394919, 0.652752263819746, 0, 0, 0], [1174, 3, \n 4.91693177007236e-05, 0.00245846588503618, 2.22, 61.69, 0.004502], [\n 1175, 3, 4.730065004514243e-05, 0.0023650325022571217, 2.22, 61.69, \n 0.004502], [1176, 3, 9.333997693927025e-06, 0.0004666998846963513, 2.22,\n 61.69, 0.004502], [1177, 3, 0.001742934553715349, 0.08714672768576745, \n 2.22, 61.69, 0.004502], [1178, 3, 8.066091568149825e-05, \n 0.004033045784074913, 2.22, 61.69, 0.004502], [1179, 3, \n 3.5057030093592115e-05, 0.0017528515046796058, 2.22, 61.69, 0.004502],\n [1180, 3, 2.657738254979288e-05, 0.0013288691274896437, 2.22, 61.69, \n 0.004502], [1181, 2, 0.00545834972439398, 0.272917486219699, 0, 0, 0],\n [1182, 2, 0.006322880792722177, 0.3161440396361089, 0, 0, 0], [1183, 3,\n 0.0010124317003108218, 0.050621585015541086, 2.22, 61.69, 0.004502], [\n 1184, 3, 0.00010984001607269411, 0.005492000803634705, 2.22, 61.69, \n 0.004502], [1185, 3, 0.00034479411181407286, 0.017239705590703643, 2.22,\n 61.69, 0.004502], [1186, 3, 0.0018022878554343042, 0.09011439277171521,\n 2.22, 61.69, 0.004502], [1187, 3, 0.000323966403725451, \n 0.01619832018627255, 2.22, 61.69, 0.004502], [1188, 2, \n 0.011440868435801076, 0.5720434217900537, 0, 0, 0], [1189, 3, \n 0.000686637320455041, 0.03433186602275206, 2.22, 61.69, 0.004502], [\n 1190, 2, 0.005589527545129696, 0.27947637725648483, 0, 0, 0], [1191, 2,\n 0.0018545594990491579, 0.09272797495245791, 0, 0, 0], [1192, 3, \n 0.0005449212158790416, 0.027246060793952084, 2.22, 61.69, 0.004502], [\n 1196, 2, 0.010230349597894291, 0.5115174798947145, 0, 0, 0], [1197, 2, \n 0.005767282789943071, 0.2883641394971536, 0, 0, 0], [1198, 3, \n 0.002327128412977244, 0.11635642064886222, 2.22, 61.69, 0.004502], [\n 1199, 2, 0.012822920004466005, 0.6411460002233003, 0, 0, 0], [1200, 2, \n 0.0035658606694853635, 0.1782930334742682, 0, 0, 0], [1204, 3, \n 0.0015394883687458898, 0.0769744184372945, 2.22, 61.69, 0.004502], [\n 1206, 3, 9.668464549827337e-05, 0.004834232274913669, 2.22, 61.69, \n 0.004502], [1208, 3, 5.682927795940036e-05, 0.002841463897970018, 2.22,\n 61.69, 0.004502], [1211, 3, 0.0004565707402447971, 0.022828537012239854,\n 2.22, 61.69, 0.004502], [1212, 2, 0.0023120295635335325, \n 0.11560147817667664, 0, 0, 0], [1213, 2, 0.0015200944705644054, \n 0.07600472352822027, 0, 0, 0], [1214, 3, 0.00011915282035718338, \n 0.005957641017859169, 2.22, 61.69, 0.004502], [1215, 3, \n 6.371566290142337e-05, 0.003185783145071168, 2.22, 61.69, 0.004502], [\n 1216, 2, 0.001836389847798722, 0.0918194923899361, 0, 0, 0], [1217, 3, \n 0.0009103520173904468, 0.04551760086952234, 2.22, 61.69, 0.004502], [\n 1218, 3, 2.5222712787837326e-05, 0.0012611356393918663, 2.22, 61.69, \n 0.004502], [1219, 3, 0.00031413998637732304, 0.015706999318866155, 2.22,\n 61.69, 0.004502], [1220, 3, 0.0007785293992636844, 0.038926469963184225,\n 2.22, 61.69, 0.004502], [1221, 2, 0.015036249105864135, \n 0.7518124552932068, 0, 0, 0], [1222, 2, 0.005413370061286074, \n 0.27066850306430373, 0, 0, 0], [1224, 2, 0.004069349627228925, \n 0.2034674813614463, 0, 0, 0], [1225, 3, 0.0013077719364552604, \n 0.06538859682276303, 2.22, 61.69, 0.004502], [1226, 3, \n 0.00013530487691860895, 0.006765243845930448, 2.22, 61.69, 0.004502], [\n 1227, 3, 0.0004430994008741681, 0.022154970043708404, 2.22, 61.69, \n 0.004502], [1229, 2, 0.00326230849376, 0.16311542468800003, 0, 0, 0], [\n 1230, 3, 4.3038853117921796e-05, 0.0021519426558960896, 2.22, 61.69, \n 0.004502], [1231, 3, 0.0010547456602471713, 0.05273728301235856, 2.22, \n 61.69, 0.004502], [1232, 2, 0.0024697583587563036, 0.12348791793781519,\n 0, 0, 0], [1233, 2, 0.03662908231521014, 1.831454115760507, 0, 0, 0], [\n 1235, 3, 0.0005753349157073776, 0.028766745785368877, 2.22, 61.69, \n 0.004502], [1236, 2, 0.005234608320670995, 0.26173041603354974, 0, 0, 0\n ], [1237, 3, 0.00037060663037607794, 0.018530331518803896, 2.22, 61.69,\n 0.004502], [1238, 2, 0.004788556177677227, 0.23942780888386136, 0, 0, 0\n ], [1239, 3, 0.0001443666373276477, 0.007218331866382386, 2.22, 61.69, \n 0.004502], [1240, 2, 0.013596413154038011, 0.6798206577019006, 0, 0, 0],\n [1241, 2, 0.012753479474826955, 0.6376739737413477, 0, 0, 0], [1242, 3,\n 0.0009127997308274422, 0.045639986541372114, 2.22, 61.69, 0.004502], [\n 1243, 2, 0.0026735986239002922, 0.13367993119501462, 0, 0, 0], [1244, 2,\n 0.020592901244747865, 1.0296450622373932, 0, 0, 0], [1245, 3, \n 0.0002568848190566446, 0.012844240952832231, 2.22, 61.69, 0.004502], [\n 1246, 2, 0.003636870278584459, 0.18184351392922293, 0, 0, 0], [1247, 3,\n 0.0005563890761219527, 0.027819453806097634, 2.22, 61.69, 0.004502], [\n 1248, 2, 0.005854245631350222, 0.2927122815675111, 0, 0, 0], [1249, 2, \n 0.0024370198788740546, 0.12185099394370273, 0, 0, 0], [1250, 3, \n 0.0010097431326340025, 0.05048715663170012, 2.22, 61.69, 0.004502], [\n 1251, 3, 0.0006748055611425185, 0.03374027805712593, 2.22, 61.69, \n 0.004502], [1252, 3, 0.0004341481959299224, 0.02170740979649612, 2.22, \n 61.69, 0.004502], [1253, 2, 0.002710855118359899, 0.13554275591799494, \n 0, 0, 0], [1254, 2, 0.005238024431161238, 0.2619012215580619, 0, 0, 0],\n [1255, 3, 0.00013510691092519703, 0.006755345546259851, 2.22, 61.69, \n 0.004502], [1256, 3, 0.0005423076626973951, 0.027115383134869754, 2.22,\n 61.69, 0.004502], [1257, 2, 0.0032728775519959264, 0.16364387759979634,\n 0, 0, 0], [1258, 2, 0.014991588973313675, 0.7495794486656838, 0, 0, 0],\n [1259, 2, 0.0042027025391020625, 0.21013512695510314, 0, 0, 0], [1260, \n 3, 0.0006420511659731998, 0.032102558298659996, 2.22, 61.69, 0.004502],\n [1261, 2, 0.005206399037785701, 0.2603199518892851, 0, 0, 0], [1264, 2,\n 0.002079289414632396, 0.10396447073161982, 0, 0, 0], [1266, 2, \n 0.00304107275514185, 0.15205363775709252, 0, 0, 0], [1267, 3, \n 0.00139598557878363, 0.0697992789391815, 2.22, 61.69, 0.004502], [1268,\n 3, 8.704864155159875e-05, 0.004352432077579938, 2.22, 61.69, 0.004502],\n [1269, 3, 0.00012953822905644634, 0.006476911452822317, 2.22, 61.69, \n 0.004502], [1270, 3, 0.0010095965444446113, 0.05047982722223056, 2.22, \n 61.69, 0.004502], [1274, 2, 0.0017215032391093314, 0.08607516195546658,\n 0, 0, 0], [1275, 2, 0.003247530339258952, 0.1623765169629476, 0, 0, 0],\n [1276, 3, 0.0008580192206659016, 0.042900961033295076, 2.22, 61.69, \n 0.004502], [1277, 2, 0.0019557910943416635, 0.09778955471708319, 0, 0, \n 0], [1278, 2, 0.004985816994970686, 0.24929084974853433, 0, 0, 0], [\n 1280, 3, 1.588070968042346e-05, 0.0007940354840211731, 2.22, 61.69, \n 0.004502], [1281, 3, 6.372411239553697e-05, 0.0031862056197768484, 2.22,\n 61.69, 0.004502], [1282, 3, 0.00011135812120966316, \n 0.0055679060604831585, 2.22, 61.69, 0.004502], [1283, 2, \n 0.08261824948992594, 4.130912474496298, 0, 0, 0], [1285, 3, \n 7.4466680391949e-05, 0.00372333401959745, 2.22, 61.69, 0.004502], [1286,\n 3, 0.00045325649560483503, 0.02266282478024175, 2.22, 61.69, 0.004502],\n [1287, 2, 0.0038337444765644993, 0.19168722382822495, 0, 0, 0], [1288, \n 2, 0.0052226286911288946, 0.2611314345564448, 0, 0, 0], [1289, 2, \n 0.006545413287237602, 0.32727066436188007, 0, 0, 0], [1290, 3, \n 0.00012471330228118902, 0.006235665114059451, 2.22, 61.69, 0.004502], [\n 1291, 2, 0.003056328898967611, 0.15281644494838056, 0, 0, 0], [1292, 3,\n 0.0011946875690752071, 0.05973437845376036, 2.22, 61.69, 0.004502], [\n 1293, 3, 9.550400068461457e-05, 0.004775200034230728, 2.22, 61.69, \n 0.004502], [1294, 3, 0.00018502224269128183, 0.009251112134564091, 2.22,\n 61.69, 0.004502], [1295, 3, 0.00020469650591691907, \n 0.010234825295845953, 2.22, 61.69, 0.004502], [1296, 3, \n 0.0007174113605388258, 0.035870568026941295, 2.22, 61.69, 0.004502], [\n 1297, 2, 0.0045112352431387875, 0.22556176215693938, 0, 0, 0], [1298, 3,\n 0.0001131075724370497, 0.005655378621852487, 2.22, 61.69, 0.004502], [\n 1299, 3, 5.492571691566938e-05, 0.0027462858457834695, 2.22, 61.69, \n 0.004502], [1300, 3, 0.0007153342650551412, 0.035766713252757064, 2.22,\n 61.69, 0.004502], [1301, 2, 0.001806752808775971, 0.09033764043879855, \n 0, 0, 0], [1302, 3, 0.00012661267721650885, 0.006330633860825443, 2.22,\n 61.69, 0.004502], [1303, 3, 0.00010995877904399887, \n 0.005497938952199944, 2.22, 61.69, 0.004502], [1306, 3, \n 4.8654966891256905e-05, 0.0024327483445628455, 2.22, 61.69, 0.004502],\n [1307, 3, 8.126951836258918e-06, 0.00040634759181294586, 2.22, 61.69, \n 0.004502], [1308, 3, 0.00013144637498283085, 0.006572318749141544, 2.22,\n 61.69, 0.004502], [1312, 2, 0.016696303623916272, 0.8348151811958137, 0,\n 0, 0], [1316, 3, 7.04275314577295e-05, 0.0035213765728864753, 2.22, \n 61.69, 0.004502], [1317, 3, 0.0012212829758454192, 0.06106414879227096,\n 2.22, 61.69, 0.004502], [1319, 3, 0.0008998454349854617, \n 0.04499227174927309, 2.22, 61.69, 0.004502], [1323, 2, \n 0.011180599116346964, 0.5590299558173483, 0, 0, 0], [1326, 2, \n 0.0019278797396950565, 0.09639398698475282, 0, 0, 0], [1327, 2, \n 0.0020073517772337163, 0.1003675888616858, 0, 0, 0], [1328, 3, \n 0.0007715140121389826, 0.038575700606949134, 2.22, 61.69, 0.004502], [\n 1329, 2, 0.00554315071182015, 0.27715753559100753, 0, 0, 0], [1331, 3, \n 8.904899263903175e-06, 0.00044524496319515874, 2.22, 61.69, 0.004502],\n [1333, 3, 0.0011571874049730807, 0.057859370248654035, 2.22, 61.69, \n 0.004502], [1336, 3, 0.0007735478972752508, 0.038677394863762544, 2.22,\n 61.69, 0.004502], [1337, 2, 0.007722987880773172, 0.3861493940386586, 0,\n 0, 0], [1339, 3, 0.0003752794590235899, 0.0187639729511795, 2.22, 61.69,\n 0.004502], [1340, 2, 0.004462598113304154, 0.22312990566520774, 0, 0, 0\n ], [1345, 3, 0.00010074256287345797, 0.005037128143672898, 2.22, 61.69,\n 0.004502], [1346, 2, 0.0054678046188682185, 0.2733902309434109, 0, 0, 0\n ], [1348, 3, 0.0014456315404578254, 0.07228157702289127, 2.22, 61.69, \n 0.004502], [1349, 3, 0.0026962338610516797, 0.13481169305258398, 2.22, \n 61.69, 0.004502], [1356, 2, 0.002636881548268083, 0.13184407741340415, \n 0, 0, 0], [1357, 2, 0.0019363899944042477, 0.09681949972021239, 0, 0, 0\n ], [1359, 2, 0.0023553935641064364, 0.11776967820532185, 0, 0, 0], [\n 1360, 3, 0.000565091809154255, 0.028254590457712756, 2.22, 61.69, \n 0.004502], [1361, 2, 0.0025724975441016222, 0.12862487720508112, 0, 0, \n 0], [1362, 2, 0.0026756494821448132, 0.13378247410724067, 0, 0, 0], [\n 1366, 3, 4.2343831004378955e-05, 0.0021171915502189477, 2.22, 61.69, \n 0.004502], [1367, 3, 0.0011124687101064913, 0.055623435505324566, 2.22,\n 61.69, 0.004502], [1372, 2, 0.00613035230614738, 0.30651761530736904, 0,\n 0, 0], [1373, 3, 0.0010501376534794331, 0.052506882673971654, 2.22, \n 61.69, 0.004502], [1374, 2, 0.006889508467327262, 0.3444754233663631, 0,\n 0, 0], [1375, 2, 0.003897629175102736, 0.1948814587551368, 0, 0, 0], [\n 1376, 2, 0.011218109707548912, 0.5609054853774457, 0, 0, 0], [1377, 2, \n 0.012875261783839766, 0.6437630891919884, 0, 0, 0], [1378, 2, \n 0.013216346692985385, 0.6608173346492693, 0, 0, 0], [1379, 3, \n 2.0994119942294153e-05, 0.0010497059971147078, 2.22, 61.69, 0.004502],\n [1380, 3, 3.735608140112999e-05, 0.0018678040700564997, 2.22, 61.69, \n 0.004502], [1381, 3, 2.6478613103564872e-05, 0.0013239306551782435, \n 2.22, 61.69, 0.004502], [1382, 2, 0.004268628511686155, \n 0.2134314255843078, 0, 0, 0], [1383, 2, 0.0035099682052807594, \n 0.17549841026403798, 0, 0, 0], [1384, 3, 0.00014191591891127354, \n 0.007095795945563678, 2.22, 61.69, 0.004502], [1385, 3, \n 3.853419006725922e-06, 0.00019267095033629616, 2.22, 61.69, 0.004502],\n [1386, 3, 2.604729428376948e-05, 0.0013023647141884739, 2.22, 61.69, \n 0.004502], [1387, 3, 0.0001185059054709369, 0.0059252952735468455, 2.22,\n 61.69, 0.004502], [1388, 3, 2.8576481980220802e-05, 0.00142882409901104,\n 2.22, 61.69, 0.004502], [1389, 3, 6.57422386039361e-06, \n 0.0003287111930196805, 2.22, 61.69, 0.004502], [1390, 3, \n 0.0001266217424999237, 0.006331087124996186, 2.22, 61.69, 0.004502], [\n 1391, 3, 1.5251376647900077e-05, 0.0007625688323950039, 2.22, 61.69, \n 0.004502], [1392, 3, 0.0007869172972473572, 0.03934586486236786, 2.22, \n 61.69, 0.004502], [1393, 3, 3.6579516767363706e-05, \n 0.0018289758383681852, 2.22, 61.69, 0.004502], [1394, 3, \n 2.87602853624818e-05, 0.00143801426812409, 2.22, 61.69, 0.004502], [\n 1395, 3, 2.0205635904803567e-06, 0.00010102817952401784, 2.22, 61.69, \n 0.004502], [1396, 3, 6.76107779311172e-07, 3.38053889655586e-05, 2.22, \n 61.69, 0.004502], [1397, 3, 0.0013130028586282839, 0.06565014293141419,\n 2.22, 61.69, 0.004502], [1398, 3, 0.00014978670641580512, \n 0.007489335320790255, 2.22, 61.69, 0.004502], [1399, 3, \n 0.00048061967833614875, 0.024030983916807438, 2.22, 61.69, 0.004502], [\n 1400, 3, 3.446200374165619e-05, 0.0017231001870828095, 2.22, 61.69, \n 0.004502], [1401, 2, 0.003257860214767805, 0.16289301073839027, 0, 0, 0\n ], [1402, 3, 0.0009310354825063851, 0.04655177412531926, 2.22, 61.69, \n 0.004502], [1403, 2, 0.007617262031172502, 0.38086310155862513, 0, 0, 0\n ], [1404, 2, 0.008581667499251882, 0.42908337496259413, 0, 0, 0], [1405,\n 3, 0.0012645628517994104, 0.06322814258997052, 2.22, 61.69, 0.004502],\n [1406, 3, 0.0006411216112914482, 0.0320560805645724, 2.22, 61.69, \n 0.004502], [1407, 3, 5.391959754466621e-06, 0.0002695979877233311, 2.22,\n 61.69, 0.004502], [1408, 3, 0.0013913490802911078, 0.0695674540145554, \n 2.22, 61.69, 0.004502], [1409, 3, 0.000385302007428299, \n 0.01926510037141495, 2.22, 61.69, 0.004502], [1410, 3, \n 0.0012221772966867837, 0.06110886483433919, 2.22, 61.69, 0.004502], [\n 1411, 3, 0.0013752497337206917, 0.0687624866860346, 2.22, 61.69, \n 0.004502], [1418, 2, 0.002590388417024481, 0.12951942085122406, 0, 0, 0\n ], [1419, 3, 0.0009263341436855428, 0.046316707184277134, 2.22, 61.69, \n 0.004502], [1421, 3, 0.00019338216325404301, 0.009669108162702151, 2.22,\n 61.69, 0.004502], [1422, 3, 0.00012711670050993612, \n 0.006355835025496807, 2.22, 61.69, 0.004502], [1423, 3, \n 5.332053829989614e-05, 0.002666026914994807, 2.22, 61.69, 0.004502], [\n 1424, 2, 0.01394783725195249, 0.6973918625976245, 0, 0, 0], [1425, 3, \n 0.0013602274146640447, 0.06801137073320224, 2.22, 61.69, 0.004502], [\n 1426, 2, 0.0026606709519511967, 0.13303354759755984, 0, 0, 0], [1427, 2,\n 0.01962784005101204, 0.981392002550602, 0, 0, 0], [1428, 2, \n 0.010783782576601515, 0.5391891288300759, 0, 0, 0], [1429, 3, \n 0.0003437800286247544, 0.017189001431237718, 2.22, 61.69, 0.004502], [\n 1431, 2, 0.012601262227763347, 0.6300631113881674, 0, 0, 0], [1432, 3, \n 0.0007676953741931287, 0.03838476870965644, 2.22, 61.69, 0.004502], [\n 1433, 2, 0.08207564315805406, 4.103782157902703, 0, 0, 0], [1434, 2, \n 0.006330547929406013, 0.3165273964703006, 0, 0, 0], [1435, 2, \n 0.005520334862536408, 0.2760167431268204, 0, 0, 0], [1436, 2, \n 0.006266510483771511, 0.31332552418857557, 0, 0, 0], [1437, 2, \n 0.006965405094300177, 0.3482702547150089, 0, 0, 0], [1438, 2, \n 0.016649246120510355, 0.8324623060255177, 0, 0, 0], [1439, 2, \n 0.005163549230743521, 0.2581774615371761, 0, 0, 0], [1440, 3, \n 2.809528726617519e-05, 0.0014047643633087593, 2.22, 61.69, 0.004502], [\n 1443, 2, 0.006557506818224797, 0.3278753409112398, 0, 0, 0], [1444, 3, \n 0.00024027790782441553, 0.012013895391220778, 2.22, 61.69, 0.004502], [\n 1445, 3, 0.0006346891569050976, 0.03173445784525488, 2.22, 61.69, \n 0.004502], [1446, 2, 0.027080541200081264, 1.3540270600040631, 0, 0, 0],\n [1447, 2, 0.0025668513053097495, 0.12834256526548746, 0, 0, 0], [1448, \n 3, 0.00047896583949883246, 0.023948291974941624, 2.22, 61.69, 0.004502],\n [1449, 2, 0.005622586466236279, 0.281129323311814, 0, 0, 0], [1450, 2, \n 0.0037724056227270084, 0.18862028113635043, 0, 0, 0], [1451, 2, \n 0.0043416728967246255, 0.21708364483623127, 0, 0, 0], [1452, 3, \n 0.0015322750739690742, 0.0766137536984537, 2.22, 61.69, 0.004502], [\n 1453, 2, 0.00164580537351267, 0.08229026867563351, 0, 0, 0], [1454, 2, \n 0.004358757471622235, 0.21793787358111177, 0, 0, 0], [1455, 3, \n 2.6431954760254552e-05, 0.0013215977380127274, 2.22, 61.69, 0.004502],\n [1456, 2, 0.0031865889687578697, 0.15932944843789354, 0, 0, 0], [1457, \n 3, 6.16570766178442e-05, 0.0030828538308922105, 2.22, 61.69, 0.004502],\n [1458, 3, 7.579836510008574e-06, 0.0003789918255004287, 2.22, 61.69, \n 0.004502], [1459, 3, 0.00014103992116575747, 0.007051996058287875, 2.22,\n 61.69, 0.004502], [1460, 2, 0.0029359105708128426, 0.14679552854064215,\n 0, 0, 0], [1461, 3, 0.0005444349786754551, 0.027221748933772758, 2.22, \n 61.69, 0.004502], [1462, 3, 7.302838886117809e-05, \n 0.0036514194430589046, 2.22, 61.69, 0.004502], [1463, 3, \n 1.9345067546824242e-05, 0.0009672533773412123, 2.22, 61.69, 0.004502],\n [1464, 2, 0.00555113722863836, 0.27755686143191804, 0, 0, 0], [1465, 3,\n 0.00019422903183873174, 0.009711451591936586, 2.22, 61.69, 0.004502], [\n 1466, 3, 0.00023267440889044382, 0.011633720444522192, 2.22, 61.69, \n 0.004502], [1467, 3, 6.230968547665832e-05, 0.0031154842738329164, 2.22,\n 61.69, 0.004502], [1468, 3, 0.000682028770294799, 0.03410143851473995, \n 2.22, 61.69, 0.004502], [1469, 2, 0.0019110220949797936, \n 0.09555110474898967, 0, 0, 0], [1470, 2, 0.005027084884666319, \n 0.2513542442333159, 0, 0, 0], [1471, 2, 0.010132763321185349, \n 0.5066381660592674, 0, 0, 0], [1472, 3, 0.0003059667942057653, \n 0.015298339710288265, 2.22, 61.69, 0.004502], [1473, 3, \n 0.00032734317531874445, 0.016367158765937223, 2.22, 61.69, 0.004502], [\n 1474, 3, 5.961088920363028e-05, 0.0029805444601815143, 2.22, 61.69, \n 0.004502], [1475, 3, 2.1612940035331083e-05, 0.0010806470017665543, \n 2.22, 61.69, 0.004502], [1476, 2, 0.015946059282369706, \n 0.7973029641184852, 0, 0, 0], [1477, 3, 0.00043810500622394204, \n 0.021905250311197104, 2.22, 61.69, 0.004502], [1483, 3, \n 9.660389626148084e-05, 0.004830194813074042, 2.22, 61.69, 0.004502], [\n 1484, 3, 7.614403753328752e-07, 3.807201876664376e-05, 2.22, 61.69, \n 0.004502], [1485, 3, 1.4346798697423479e-05, 0.000717339934871174, 2.22,\n 61.69, 0.004502], [1486, 3, 7.381146075564043e-05, \n 0.0036905730377820214, 2.22, 61.69, 0.004502], [1489, 3, \n 3.2310278483629793e-06, 0.00016155139241814899, 2.22, 61.69, 0.004502],\n [1490, 2, 0.04981318633597547, 2.4906593167987734, 0, 0, 0], [1491, 2, \n 0.0026699853794402576, 0.1334992689720129, 0, 0, 0], [1492, 2, \n 0.0076418065269222854, 0.3820903263461143, 0, 0, 0], [1493, 2, \n 0.0028869080227441985, 0.14434540113720992, 0, 0, 0], [1494, 2, \n 0.016943493863839063, 0.8471746931919532, 0, 0, 0], [1495, 2, \n 0.0018696204410900048, 0.09348102205450025, 0, 0, 0], [1497, 2, \n 0.002258841518401283, 0.11294207592006414, 0, 0, 0], [1498, 2, \n 0.0026849613830667303, 0.13424806915333654, 0, 0, 0], [1501, 3, \n 0.00020733725832667443, 0.010366862916333723, 2.22, 61.69, 0.004502], [\n 1503, 3, 0.0011656166063189967, 0.058280830315949834, 2.22, 61.69, \n 0.004502], [1504, 2, 0.0050671737326107545, 0.25335868663053773, 0, 0, \n 0], [1505, 3, 0.0006784268178891655, 0.03392134089445827, 2.22, 61.69, \n 0.004502], [1506, 2, 0.0016890886912840956, 0.08445443456420476, 0, 0, \n 0], [1507, 3, 0.00045016028763325084, 0.02250801438166254, 2.22, 61.69,\n 0.004502], [1510, 2, 0.0027126824885318744, 0.13563412442659373, 0, 0, \n 0], [1511, 2, 0.003936868172270002, 0.19684340861350008, 0, 0, 0], [\n 1512, 2, 0.0016255674254345136, 0.08127837127172569, 0, 0, 0], [1513, 3,\n 0.0005878505520583088, 0.029392527602915438, 2.22, 61.69, 0.004502], [\n 1518, 3, 1.7457278618548527e-05, 0.0008728639309274264, 2.22, 61.69, \n 0.004502], [1519, 3, 1.211636389709449e-06, 6.058181948547245e-05, 2.22,\n 61.69, 0.004502], [1520, 2, 0.0025232453159792223, 0.12616226579896114,\n 0, 0, 0], [1521, 3, 0.0010296395408443792, 0.051481977042218956, 2.22, \n 61.69, 0.004502], [1522, 3, 0.00128741358711326, 0.064370679355663, \n 2.22, 61.69, 0.004502], [1523, 3, 0.0006382714465370155, \n 0.03191357232685078, 2.22, 61.69, 0.004502], [1524, 3, \n 0.0009325526713721043, 0.04662763356860522, 2.22, 61.69, 0.004502], [\n 1525, 2, 0.002242041892516081, 0.11210209462580406, 0, 0, 0], [1526, 3,\n 0.001438489342064215, 0.07192446710321075, 2.22, 61.69, 0.004502], [\n 1527, 2, 0.004089463387653119, 0.20447316938265592, 0, 0, 0], [1528, 3,\n 0.0026347607821089578, 0.13173803910544787, 2.22, 61.69, 0.004502], [\n 1529, 2, 0.0034390643554320474, 0.17195321777160236, 0, 0, 0], [1530, 2,\n 0.0023438942580544264, 0.11719471290272133, 0, 0, 0], [1531, 2, \n 0.01170243432457441, 0.5851217162287206, 0, 0, 0], [1532, 3, \n 0.0012309345041419243, 0.061546725207096226, 2.22, 61.69, 0.004502], [\n 1534, 3, 0.0009336557350387817, 0.046682786751939084, 2.22, 61.69, \n 0.004502], [1535, 3, 0.0003089506133703436, 0.01544753066851718, 2.22, \n 61.69, 0.004502], [1536, 3, 0.0013087025779557654, 0.06543512889778827,\n 2.22, 61.69, 0.004502], [1537, 2, 0.0031190581433044803, \n 0.155952907165224, 0, 0, 0], [1538, 2, 0.008325357011487053, \n 0.41626785057435267, 0, 0, 0], [1539, 2, 0.012844883798569344, \n 0.6422441899284673, 0, 0, 0], [1540, 3, 0.00026484588609069294, \n 0.013242294304534647, 2.22, 61.69, 0.004502], [1541, 3, \n 0.000218355306613717, 0.01091776533068585, 2.22, 61.69, 0.004502], [\n 1542, 2, 0.003201430108581241, 0.16007150542906207, 0, 0, 0], [1543, 3,\n 0.0004469209788720139, 0.022346048943600698, 2.22, 61.69, 0.004502], [\n 1544, 2, 0.0075587095096954215, 0.37793547548477113, 0, 0, 0], [1545, 2,\n 0.011812169709970757, 0.5906084854985378, 0, 0, 0], [1546, 2, \n 0.01626203379888308, 0.8131016899441541, 0, 0, 0], [1547, 2, \n 0.021689594680942077, 1.084479734047104, 0, 0, 0], [1548, 3, \n 0.0006302765790138034, 0.031513828950690166, 2.22, 61.69, 0.004502], [\n 1549, 2, 0.002377591145547329, 0.11887955727736645, 0, 0, 0], [1550, 3,\n 0.00015265669894834095, 0.0076328349474170465, 2.22, 61.69, 0.004502],\n [1551, 3, 0.0002810478650703147, 0.014052393253515734, 2.22, 61.69, \n 0.004502], [1552, 2, 0.0034400049196165183, 0.17200024598082594, 0, 0, \n 0], [1553, 2, 0.005887477616203734, 0.2943738808101867, 0, 0, 0], [1554,\n 2, 0.00988883221505536, 0.494441610752768, 0, 0, 0], [1555, 2, \n 0.006612300563621196, 0.3306150281810598, 0, 0, 0], [1556, 3, \n 0.0025704380368004303, 0.12852190184002152, 2.22, 61.69, 0.004502], [\n 1557, 3, 0.0016545902148645411, 0.08272951074322706, 2.22, 61.69, \n 0.004502], [1558, 3, 0.000997857734318084, 0.0498928867159042, 2.22, \n 61.69, 0.004502], [1559, 2, 0.0071689247750388796, 0.35844623875194404,\n 0, 0, 0], [1560, 2, 0.005500136478539206, 0.27500682392696024, 0, 0, 0],\n [1561, 3, 0.0012176867577369578, 0.060884337886847884, 2.22, 61.69, \n 0.004502], [1562, 2, 0.0021267851829981613, 0.10633925914990806, 0, 0, \n 0], [1563, 2, 0.006763060552462782, 0.3381530276231391, 0, 0, 0], [1564,\n 2, 0.0037097629455119584, 0.18548814727559793, 0, 0, 0], [1565, 3, \n 0.0008173802970750437, 0.04086901485375219, 2.22, 61.69, 0.004502], [\n 1566, 2, 0.022834045665096173, 1.1417022832548087, 0, 0, 0], [1567, 3, \n 0.0010192593449462031, 0.050962967247310156, 2.22, 61.69, 0.004502], [\n 1568, 2, 0.0033119271961263392, 0.16559635980631698, 0, 0, 0], [1569, 2,\n 0.020926874196333774, 1.0463437098166888, 0, 0, 0], [1570, 2, \n 0.015485260884033174, 0.7742630442016587, 0, 0, 0], [1571, 2, \n 0.012951609260387848, 0.6475804630193925, 0, 0, 0], [1572, 2, \n 0.014777724673041566, 0.7388862336520783, 0, 0, 0], [1573, 2, \n 0.005118663088374955, 0.25593315441874775, 0, 0, 0], [1574, 2, \n 0.009212904923280738, 0.4606452461640369, 0, 0, 0], [1575, 2, \n 0.009778885596990375, 0.4889442798495187, 0, 0, 0], [1576, 3, \n 0.002181187748580322, 0.10905938742901611, 2.22, 61.69, 0.004502], [\n 1577, 2, 0.008005977279501149, 0.4002988639750575, 0, 0, 0], [1578, 3, \n 0.0010407601676569642, 0.0520380083828482, 2.22, 61.69, 0.004502], [\n 1579, 3, 0.0011276860415660923, 0.05638430207830462, 2.22, 61.69, \n 0.004502], [1580, 3, 0.0006804077392659486, 0.034020386963297435, 2.22,\n 61.69, 0.004502], [1581, 2, 0.009948964197406459, 0.4974482098703229, 0,\n 0, 0], [1582, 3, 0.0005189146316653127, 0.025945731583265637, 2.22, \n 61.69, 0.004502], [1583, 3, 0.00011408020039723344, \n 0.005704010019861674, 2.22, 61.69, 0.004502], [1584, 2, \n 0.005172531192053713, 0.2586265596026857, 0, 0, 0], [1585, 3, \n 0.00023460599404312107, 0.011730299702156053, 2.22, 61.69, 0.004502], [\n 1586, 2, 0.003903465353398814, 0.19517326766994073, 0, 0, 0], [1587, 2,\n 0.012199881855085491, 0.6099940927542746, 0, 0, 0], [1588, 2, \n 0.00378307114622246, 0.18915355731112304, 0, 0, 0], [1589, 3, \n 0.0030729449735528206, 0.15364724867764104, 2.22, 61.69, 0.004502], [\n 1590, 2, 0.007580710655338087, 0.3790355327669044, 0, 0, 0], [1591, 2, \n 0.009093776015663656, 0.45468880078318286, 0, 0, 0], [1592, 3, \n 0.0006265841402928839, 0.03132920701464419, 2.22, 61.69, 0.004502], [\n 1593, 3, 0.0004572956041415501, 0.02286478020707751, 2.22, 61.69, \n 0.004502], [1594, 3, 0.0006086651424190906, 0.03043325712095453, 2.22, \n 61.69, 0.004502], [1595, 2, 0.0034880403567784826, 0.17440201783892412,\n 0, 0, 0], [1596, 2, 0.008831829223465862, 0.4415914611732931, 0, 0, 0],\n [1597, 3, 0.000182008742594501, 0.009100437129725051, 2.22, 61.69, \n 0.004502], [1598, 3, 0.00030529061271902005, 0.015264530635951002, 2.22,\n 61.69, 0.004502], [1599, 2, 0.005519720787392772, 0.2759860393696386, 0,\n 0, 0], [1600, 3, 0.001614244976205045, 0.08071224881025225, 2.22, 61.69,\n 0.004502], [1601, 3, 0.00048661007202100836, 0.02433050360105042, 2.22,\n 61.69, 0.004502], [1602, 3, 0.0029066893044028437, 0.1453344652201422, \n 2.22, 61.69, 0.004502], [1603, 3, 0.0016685325799989743, \n 0.08342662899994871, 2.22, 61.69, 0.004502], [1604, 3, \n 0.001041702939552173, 0.052085146977608666, 2.22, 61.69, 0.004502], [\n 1605, 3, 0.0027678430872774087, 0.13839215436387042, 2.22, 61.69, \n 0.004502], [1606, 3, 0.0026753886791452443, 0.13376943395726223, 2.22, \n 61.69, 0.004502], [1607, 3, 0.0012347390947160326, 0.06173695473580163,\n 2.22, 61.69, 0.004502], [1608, 3, 0.0012408514763572547, \n 0.06204257381786274, 2.22, 61.69, 0.004502], [1609, 3, \n 0.0003852995894705999, 0.019264979473529995, 2.22, 61.69, 0.004502], [\n 1610, 3, 0.0011823083612115522, 0.05911541806057761, 2.22, 61.69, \n 0.004502], [1611, 3, 0.00040874514628008496, 0.02043725731400425, 2.22,\n 61.69, 0.004502], [1612, 3, 0.0006882625555892105, 0.03441312777946053,\n 2.22, 61.69, 0.004502], [1613, 3, 0.0017810213186252846, \n 0.08905106593126422, 2.22, 61.69, 0.004502], [1614, 3, \n 0.0017942381771421118, 0.0897119088571056, 2.22, 61.69, 0.004502], [\n 1615, 2, 0.012301707924494735, 0.6150853962247368, 0, 0, 0], [1616, 3, \n 0.0004370767889493836, 0.02185383944746918, 2.22, 61.69, 0.004502], [\n 1617, 3, 0.0006767949224067756, 0.033839746120338784, 2.22, 61.69, \n 0.004502], [1618, 3, 0.00031324035822134105, 0.015662017911067052, 2.22,\n 61.69, 0.004502], [1619, 3, 0.0004258755004431256, 0.02129377502215628,\n 2.22, 61.69, 0.004502], [1620, 3, 0.00012172325385948389, \n 0.0060861626929741945, 2.22, 61.69, 0.004502], [1621, 3, \n 0.0005128855788661356, 0.025644278943306776, 2.22, 61.69, 0.004502], [\n 1622, 3, 0.00036246565086750607, 0.018123282543375304, 2.22, 61.69, \n 0.004502], [1623, 3, 0.0013188922580034204, 0.06594461290017102, 2.22, \n 61.69, 0.004502], [1624, 3, 0.000569039657188931, 0.028451982859446553,\n 2.22, 61.69, 0.004502], [1625, 2, 0.0041496446244753075, \n 0.20748223122376538, 0, 0, 0], [1626, 3, 0.0007562318471572959, \n 0.0378115923578648, 2.22, 61.69, 0.004502], [1627, 3, \n 0.0006491290852077085, 0.03245645426038543, 2.22, 61.69, 0.004502], [\n 1628, 2, 0.00424077848658593, 0.21203892432929652, 0, 0, 0], [1629, 2, \n 0.007745819403923712, 0.38729097019618564, 0, 0, 0], [1630, 3, \n 0.0007927560978709857, 0.03963780489354929, 2.22, 61.69, 0.004502], [\n 1631, 3, 0.002068138835159234, 0.10340694175796171, 2.22, 61.69, \n 0.004502], [1632, 3, 0.0016472468553829615, 0.08236234276914807, 2.22, \n 61.69, 0.004502], [1633, 2, 0.004292939055943245, 0.21464695279716228, \n 0, 0, 0], [1634, 3, 0.0006138952301916811, 0.030694761509584053, 2.22, \n 61.69, 0.004502], [1635, 3, 0.001220154041250351, 0.061007702062517544,\n 2.22, 61.69, 0.004502], [1636, 3, 0.0016030980766412253, \n 0.08015490383206127, 2.22, 61.69, 0.004502], [1637, 3, \n 0.00185350752292672, 0.09267537614633603, 2.22, 61.69, 0.004502], [1638,\n 3, 0.0007742689385781872, 0.03871344692890937, 2.22, 61.69, 0.004502],\n [1639, 3, 0.0018578852217172642, 0.09289426108586321, 2.22, 61.69, \n 0.004502], [1640, 3, 0.0001424533438422139, 0.007122667192110696, 2.22,\n 61.69, 0.004502], [1641, 3, 0.00031981897985402917, \n 0.015990948992701457, 2.22, 61.69, 0.004502], [1642, 3, \n 0.0007467946370447365, 0.037339731852236824, 2.22, 61.69, 0.004502], [\n 1643, 3, 0.00021757652186159314, 0.010878826093079658, 2.22, 61.69, \n 0.004502], [1644, 3, 0.0007490442792419589, 0.03745221396209795, 2.22, \n 61.69, 0.004502], [1645, 3, 0.0007095052493304704, 0.035475262466523515,\n 2.22, 61.69, 0.004502], [1646, 3, 0.00023763168602681552, \n 0.011881584301340778, 2.22, 61.69, 0.004502], [1647, 3, \n 0.0011099355850146776, 0.055496779250733874, 2.22, 61.69, 0.004502], [\n 1648, 2, 0.006961158588339223, 0.34805792941696123, 0, 0, 0], [1649, 3,\n 0.00149488226606135, 0.0747441133030675, 2.22, 61.69, 0.004502], [1650,\n 2, 0.006044926603618354, 0.30224633018091773, 0, 0, 0], [1651, 2, \n 0.004929423627853539, 0.246471181392677, 0, 0, 0], [1652, 2, \n 0.005050176694499043, 0.2525088347249521, 0, 0, 0], [1653, 3, \n 0.0005789625471684006, 0.028948127358420027, 2.22, 61.69, 0.004502], [\n 1654, 3, 0.0015904792253358113, 0.07952396126679057, 2.22, 61.69, \n 0.004502], [1655, 3, 0.0006869579648379821, 0.0343478982418991, 2.22, \n 61.69, 0.004502], [1656, 3, 0.00017062079994473715, \n 0.008531039997236858, 2.22, 61.69, 0.004502], [1657, 3, \n 0.00035849972013432747, 0.017924986006716374, 2.22, 61.69, 0.004502], [\n 1658, 3, 0.00011964508429840477, 0.00598225421492024, 2.22, 61.69, \n 0.004502], [1659, 2, 0.00584268430348727, 0.2921342151743635, 0, 0, 0],\n [1660, 2, 0.011901108257073838, 0.5950554128536919, 0, 0, 0], [1661, 2,\n 0.008823810212990009, 0.4411905106495005, 0, 0, 0], [1662, 3, \n 0.00019355309720347875, 0.00967765486017394, 2.22, 61.69, 0.004502], [\n 1663, 3, 0.0001019004903319335, 0.005095024516596675, 2.22, 61.69, \n 0.004502], [1664, 3, 0.00010047175653957785, 0.005023587826978892, 2.22,\n 61.69, 0.004502], [1665, 3, 0.0030977737905388955, 0.1548886895269448, \n 2.22, 61.69, 0.004502], [1666, 3, 0.0001832113676826654, \n 0.00916056838413327, 2.22, 61.69, 0.004502], [1667, 3, \n 0.00033277909185437904, 0.01663895459271895, 2.22, 61.69, 0.004502], [\n 1668, 3, 0.00025000334897604874, 0.01250016744880244, 2.22, 61.69, \n 0.004502], [1669, 2, 0.004626821026153938, 0.2313410513076969, 0, 0, 0],\n [1670, 2, 0.007069218502539776, 0.35346092512698885, 0, 0, 0], [1671, 2,\n 0.003972823813169535, 0.19864119065847674, 0, 0, 0], [1672, 3, \n 0.0006735389632841594, 0.033676948164207965, 2.22, 61.69, 0.004502], [\n 1673, 3, 0.00026044328652445207, 0.013022164326222602, 2.22, 61.69, \n 0.004502], [1674, 3, 0.00305388930052315, 0.1526944650261575, 2.22, \n 61.69, 0.004502], [1675, 3, 0.0019883967212815028, 0.09941983606407513,\n 2.22, 61.69, 0.004502], [1676, 2, 0.002739550936466594, \n 0.1369775468233297, 0, 0, 0], [1677, 3, 0.00045107957795936066, \n 0.022553978897968036, 2.22, 61.69, 0.004502], [1678, 2, \n 0.0118255326080453, 0.591276630402265, 0, 0, 0], [1679, 2, \n 0.004235017338470039, 0.21175086692350195, 0, 0, 0], [1680, 2, \n 0.0033198512979085376, 0.1659925648954269, 0, 0, 0], [1681, 3, \n 0.001101391669580788, 0.0550695834790394, 2.22, 61.69, 0.004502], [1682,\n 3, 0.0025396334158164146, 0.12698167079082073, 2.22, 61.69, 0.004502],\n [1683, 3, 0.0005850385990722994, 0.02925192995361497, 2.22, 61.69, \n 0.004502], [1684, 3, 0.0014692548587692284, 0.07346274293846142, 2.22, \n 61.69, 0.004502], [1685, 2, 0.0023379729437724324, 0.11689864718862161,\n 0, 0, 0], [1686, 2, 0.0027140500311261455, 0.13570250155630728, 0, 0, 0\n ], [1687, 2, 0.00713129246574986, 0.35656462328749305, 0, 0, 0], [1688,\n 3, 0.0011560206217410538, 0.057801031087052694, 2.22, 61.69, 0.004502],\n [1689, 2, 0.0050663820052153806, 0.25331910026076904, 0, 0, 0], [1690, \n 2, 0.006797488746056826, 0.3398744373028413, 0, 0, 0], [1691, 2, \n 0.008600361654412853, 0.43001808272064274, 0, 0, 0], [1692, 3, \n 0.001111987887564283, 0.055599394378214144, 2.22, 61.69, 0.004502], [\n 1693, 2, 0.005489990852267899, 0.27449954261339493, 0, 0, 0], [1694, 2,\n 0.003415900039070191, 0.17079500195350955, 0, 0, 0], [1695, 3, \n 0.0014726781149470127, 0.07363390574735064, 2.22, 61.69, 0.004502], [\n 1696, 2, 0.003395862907499976, 0.1697931453749988, 0, 0, 0], [1697, 2, \n 0.008710326279612261, 0.43551631398061313, 0, 0, 0], [1698, 3, \n 0.0016301483386422185, 0.08150741693211093, 2.22, 61.69, 0.004502], [\n 1699, 3, 0.00034098029406261546, 0.017049014703130774, 2.22, 61.69, \n 0.004502], [1700, 2, 0.0035539817740921757, 0.1776990887046088, 0, 0, 0\n ], [1701, 3, 0.00237441322043975, 0.11872066102198749, 2.22, 61.69, \n 0.004502], [1702, 3, 0.000946061560194626, 0.047303078009731304, 2.22, \n 61.69, 0.004502], [1703, 3, 0.0017751784315469096, 0.08875892157734548,\n 2.22, 61.69, 0.004502], [1704, 2, 0.004669473718911862, \n 0.23347368594559312, 0, 0, 0], [1705, 2, 0.002101765751674278, \n 0.10508828758371391, 0, 0, 0], [1706, 3, 0.00025866463966033455, \n 0.012933231983016729, 2.22, 61.69, 0.004502], [1707, 3, \n 0.0007453417235058713, 0.03726708617529356, 2.22, 61.69, 0.004502], [\n 1708, 3, 0.0016735901012157506, 0.08367950506078754, 2.22, 61.69, \n 0.004502], [1709, 2, 0.008110566237537491, 0.4055283118768746, 0, 0, 0],\n [1710, 2, 0.011690372819987969, 0.5845186409993984, 0, 0, 0], [1711, 3,\n 0.0004592482403533105, 0.022962412017665527, 2.22, 61.69, 0.004502], [\n 1712, 2, 0.0029171136548494614, 0.14585568274247307, 0, 0, 0], [1713, 2,\n 0.0057789206449012, 0.28894603224506005, 0, 0, 0], [1714, 3, \n 0.002693699836091154, 0.1346849918045577, 2.22, 61.69, 0.004502], [1715,\n 2, 0.009885393456059138, 0.4942696728029569, 0, 0, 0], [1716, 2, \n 0.009993594261663767, 0.4996797130831883, 0, 0, 0], [1717, 2, \n 0.003782973104907569, 0.18914865524537847, 0, 0, 0], [1718, 2, \n 0.01920136583254073, 0.9600682916270364, 0, 0, 0], [1719, 3, \n 0.0011567708515348696, 0.05783854257674348, 2.22, 61.69, 0.004502], [\n 1720, 2, 0.0021213818228688203, 0.10606909114344103, 0, 0, 0], [1721, 2,\n 0.005229955374101585, 0.26149776870507924, 0, 0, 0], [1722, 3, \n 0.0013578823440987752, 0.06789411720493876, 2.22, 61.69, 0.004502], [\n 1723, 3, 7.851471383507073e-05, 0.003925735691753536, 2.22, 61.69, \n 0.004502], [1724, 3, 0.0010018248025824054, 0.05009124012912028, 2.22, \n 61.69, 0.004502], [1725, 2, 0.0035492089814250986, 0.1774604490712549, \n 0, 0, 0], [1726, 2, 0.004856804743814979, 0.242840237190749, 0, 0, 0],\n [1727, 3, 2.9058085077735173e-05, 0.0014529042538867585, 2.22, 61.69, \n 0.004502], [1728, 2, 0.0041560648360189495, 0.2078032418009475, 0, 0, 0\n ], [1729, 2, 0.01405393337667418, 0.7026966688337091, 0, 0, 0], [1730, \n 2, 0.0020014537525731364, 0.10007268762865684, 0, 0, 0], [1731, 2, \n 0.009670389941702119, 0.483519497085106, 0, 0, 0], [1732, 2, \n 0.024437189395982176, 1.221859469799109, 0, 0, 0], [1733, 2, \n 0.003861458761299993, 0.19307293806499964, 0, 0, 0], [1734, 2, \n 0.004925863110940614, 0.24629315554703074, 0, 0, 0], [1735, 2, \n 0.00979677930651881, 0.48983896532594057, 0, 0, 0], [1736, 2, \n 0.005693890678315697, 0.28469453391578486, 0, 0, 0], [1737, 2, \n 0.012380561624103732, 0.6190280812051866, 0, 0, 0], [1738, 2, \n 0.007387942256829133, 0.3693971128414567, 0, 0, 0], [1739, 3, \n 0.0021343280894861407, 0.10671640447430704, 2.22, 61.69, 0.004502], [\n 1740, 2, 0.004242367600347797, 0.21211838001738986, 0, 0, 0], [1741, 3,\n 0.0012849231541345082, 0.06424615770672543, 2.22, 61.69, 0.004502], [\n 1742, 3, 0.0008340627998606473, 0.041703139993032365, 2.22, 61.69, \n 0.004502], [1743, 3, 5.13936026299759e-05, 0.002569680131498795, 2.22, \n 61.69, 0.004502], [1744, 3, 0.00012396026948393012, \n 0.006198013474196506, 2.22, 61.69, 0.004502], [1745, 3, \n 0.0010773886636756553, 0.05386943318378276, 2.22, 61.69, 0.004502], [\n 1746, 2, 0.008864688760929952, 0.44323443804649765, 0, 0, 0], [1747, 3,\n 0.0008635336374536576, 0.04317668187268288, 2.22, 61.69, 0.004502], [\n 1748, 2, 0.004279314394263734, 0.2139657197131867, 0, 0, 0], [1749, 2, \n 0.013923101334801936, 0.6961550667400968, 0, 0, 0], [1750, 3, \n 0.0014127769401448094, 0.07063884700724048, 2.22, 61.69, 0.004502], [\n 1751, 3, 0.0011724169956124854, 0.05862084978062426, 2.22, 61.69, \n 0.004502], [1752, 2, 0.00867015679256696, 0.43350783962834794, 0, 0, 0],\n [1753, 2, 0.005046485287334805, 0.25232426436674027, 0, 0, 0], [1754, 2,\n 0.025997910300901962, 1.2998955150450984, 0, 0, 0], [1755, 3, \n 0.002946085388035321, 0.14730426940176608, 2.22, 61.69, 0.004502], [\n 1756, 2, 0.005971989172727978, 0.29859945863639886, 0, 0, 0], [1757, 2,\n 0.012546975461748345, 0.6273487730874172, 0, 0, 0], [1758, 2, \n 0.019829004030811562, 0.9914502015405783, 0, 0, 0], [1759, 2, \n 0.009966033571801232, 0.4983016785900616, 0, 0, 0], [1760, 2, \n 0.0073012273284985265, 0.36506136642492637, 0, 0, 0], [1761, 3, \n 0.0030840374161649965, 0.15420187080824985, 2.22, 61.69, 0.004502], [\n 1762, 2, 0.0068167731133854026, 0.34083865566927013, 0, 0, 0], [1763, 2,\n 0.005738278867752243, 0.28691394338761217, 0, 0, 0], [1764, 3, \n 0.0014002305130149393, 0.07001152565074696, 2.22, 61.69, 0.004502], [\n 1765, 2, 0.007146048220397755, 0.35730241101988774, 0, 0, 0], [1766, 2,\n 0.006354178845284036, 0.31770894226420177, 0, 0, 0], [1767, 2, \n 0.006085505697192886, 0.30427528485964433, 0, 0, 0], [1768, 2, \n 0.010174366269247585, 0.5087183134623792, 0, 0, 0], [1769, 2, \n 0.01499759455891321, 0.7498797279456606, 0, 0, 0], [1770, 2, \n 0.030509885187144117, 1.525494259357206, 0, 0, 0], [1771, 2, \n 0.007633743816642715, 0.38168719083213576, 0, 0, 0], [1772, 2, \n 0.01732976708969246, 0.866488354484623, 0, 0, 0], [1773, 2, \n 0.03398423777684978, 1.6992118888424892, 0, 0, 0], [1774, 2, \n 0.0056389958408761785, 0.28194979204380893, 0, 0, 0], [1775, 2, \n 0.012591536776481504, 0.6295768388240752, 0, 0, 0], [1776, 2, \n 0.007079444590369237, 0.35397222951846186, 0, 0, 0], [1777, 2, \n 0.012697889587441325, 0.6348944793720663, 0, 0, 0], [1778, 2, \n 0.005097454405191964, 0.2548727202595982, 0, 0, 0], [1779, 2, \n 0.004996513096064047, 0.24982565480320235, 0, 0, 0], [1780, 2, \n 0.006230787068824076, 0.3115393534412038, 0, 0, 0], [1781, 3, \n 0.00021502447244349144, 0.010751223622174573, 2.22, 61.69, 0.004502], [\n 1782, 3, 0.0002923350461609784, 0.014616752308048923, 2.22, 61.69, \n 0.004502], [1783, 3, 0.000315606657620068, 0.015780332881003403, 2.22, \n 61.69, 0.004502], [1784, 2, 0.015337461016832239, 0.766873050841612, 0,\n 0, 0], [1785, 2, 0.016202255111263022, 0.8101127555631511, 0, 0, 0], [\n 1786, 2, 0.01246935769334627, 0.6234678846673135, 0, 0, 0], [1787, 2, \n 0.007834284018991623, 0.39171420094958115, 0, 0, 0], [1788, 3, \n 0.0006039154901225237, 0.03019577450612619, 2.22, 61.69, 0.004502], [\n 1789, 3, 0.0015315823649962818, 0.0765791182498141, 2.22, 61.69, \n 0.004502], [1790, 3, 8.990133662468075e-05, 0.004495066831234037, 2.22,\n 61.69, 0.004502], [1791, 3, 7.455032871317029e-05, \n 0.0037275164356585146, 2.22, 61.69, 0.004502], [1792, 3, \n 0.0005675023214651282, 0.028375116073256407, 2.22, 61.69, 0.004502], [\n 1793, 3, 0.002656157006665058, 0.1328078503332529, 2.22, 61.69, \n 0.004502], [1794, 3, 0.0004212921062352398, 0.02106460531176199, 2.22, \n 61.69, 0.004502], [1795, 3, 0.0002123674254215119, 0.010618371271075596,\n 2.22, 61.69, 0.004502], [1796, 3, 0.00031775046703264725, \n 0.015887523351632366, 2.22, 61.69, 0.004502], [1797, 2, \n 0.00403691835051508, 0.201845917525754, 0, 0, 0], [1798, 3, \n 0.000944473672940868, 0.04722368364704341, 2.22, 61.69, 0.004502], [\n 1799, 2, 0.003253270301259914, 0.1626635150629957, 0, 0, 0], [1800, 2, \n 0.0026467966673667637, 0.1323398333683382, 0, 0, 0], [1801, 3, \n 0.0013373311645223187, 0.06686655822611594, 2.22, 61.69, 0.004502], [\n 1802, 3, 0.0007197108874813503, 0.035985544374067514, 2.22, 61.69, \n 0.004502], [1803, 3, 0.0009665525104250152, 0.048327625521250764, 2.22,\n 61.69, 0.004502], [1804, 2, 0.025409608772093598, 1.27048043860468, 0, \n 0, 0], [1805, 3, 0.001477270474113474, 0.0738635237056737, 2.22, 61.69,\n 0.004502], [1806, 3, 0.0013667817016994666, 0.06833908508497333, 2.22, \n 61.69, 0.004502], [1807, 3, 0.0009076502282063987, 0.045382511410319945,\n 2.22, 61.69, 0.004502], [1808, 2, 0.007528838066696213, \n 0.37644190333481065, 0, 0, 0], [1809, 3, 0.002102833294320084, \n 0.10514166471600422, 2.22, 61.69, 0.004502], [1810, 2, \n 0.004719861321134895, 0.23599306605674475, 0, 0, 0], [1811, 2, \n 0.001672050348954162, 0.0836025174477081, 0, 0, 0], [1812, 3, \n 0.0030140928414828165, 0.15070464207414083, 2.22, 61.69, 0.004502], [\n 1813, 2, 0.011516130642990736, 0.5758065321495368, 0, 0, 0], [1814, 2, \n 0.002392750221002072, 0.11963751105010362, 0, 0, 0], [1815, 2, \n 0.0020324845593476418, 0.10162422796738207, 0, 0, 0], [1816, 3, \n 0.000983018960981752, 0.0491509480490876, 2.22, 61.69, 0.004502], [1817,\n 2, 0.017864499165755984, 0.8932249582877992, 0, 0, 0], [1818, 2, \n 0.011046350969132132, 0.5523175484566066, 0, 0, 0], [1819, 3, \n 9.793425792119684e-05, 0.004896712896059842, 2.22, 61.69, 0.004502], [\n 1820, 2, 0.005074724090318581, 0.253736204515929, 0, 0, 0], [1821, 2, \n 0.012520998202122803, 0.6260499101061401, 0, 0, 0], [1822, 2, \n 0.010875476397094096, 0.5437738198547047, 0, 0, 0], [1823, 2, \n 0.008368758642072162, 0.41843793210360813, 0, 0, 0], [1824, 2, \n 0.0021616183697018014, 0.10808091848509005, 0, 0, 0], [1825, 2, \n 0.0025970025810079836, 0.12985012905039917, 0, 0, 0], [1826, 2, \n 0.004717432235769138, 0.23587161178845692, 0, 0, 0], [1827, 3, \n 0.0010473607763716022, 0.05236803881858012, 2.22, 61.69, 0.004502], [\n 1828, 3, 0.001360469510306804, 0.0680234755153402, 2.22, 61.69, \n 0.004502], [1830, 3, 0.001765013532013441, 0.08825067660067205, 2.22, \n 61.69, 0.004502], [1831, 2, 0.004449336207686825, 0.2224668103843413, 0,\n 0, 0], [1832, 3, 0.001690901876552968, 0.08454509382764841, 2.22, 61.69,\n 0.004502], [1833, 2, 0.005179663380052178, 0.2589831690026089, 0, 0, 0],\n [1834, 2, 0.006527235089427834, 0.32636175447139176, 0, 0, 0], [1836, 3,\n 0.00021912289073146074, 0.010956144536573037, 2.22, 61.69, 0.004502], [\n 1837, 3, 0.0004122879579140169, 0.020614397895700843, 2.22, 61.69, \n 0.004502], [1838, 3, 0.001628531485618897, 0.08142657428094485, 2.22, \n 61.69, 0.004502], [1839, 2, 0.011697833115635535, 0.5848916557817768, 0,\n 0, 0], [1840, 2, 0.008465463985539544, 0.42327319927697715, 0, 0, 0], [\n 1841, 3, 0.0014631197849879433, 0.07315598924939716, 2.22, 61.69, \n 0.004502], [1842, 3, 0.0004754679394685904, 0.023773396973429523, 2.22,\n 61.69, 0.004502], [1843, 3, 0.0012264279861417988, 0.06132139930708994,\n 2.22, 61.69, 0.004502], [1844, 3, 0.002061648212488373, \n 0.10308241062441864, 2.22, 61.69, 0.004502], [1845, 3, \n 0.0020012780505250503, 0.10006390252625251, 2.22, 61.69, 0.004502], [\n 1846, 3, 0.0002387222436177512, 0.01193611218088756, 2.22, 61.69, \n 0.004502], [1847, 2, 0.007653161133263645, 0.38265805666318226, 0, 0, 0\n ], [1848, 3, 0.0006057243836929574, 0.030286219184647873, 2.22, 61.69, \n 0.004502], [1849, 3, 0.002394906091011762, 0.1197453045505881, 2.22, \n 61.69, 0.004502], [1850, 3, 0.0030901892998593753, 0.1545094649929688, \n 2.22, 61.69, 0.004502], [1851, 3, 0.0005065229873089011, \n 0.025326149365445055, 2.22, 61.69, 0.004502], [1852, 3, \n 0.0023941306142429277, 0.11970653071214639, 2.22, 61.69, 0.004502], [\n 1853, 3, 0.001917289339589373, 0.09586446697946867, 2.22, 61.69, \n 0.004502], [1854, 3, 6.576971194700433e-05, 0.0032884855973502164, 2.22,\n 61.69, 0.004502], [1855, 2, 0.00774686590726215, 0.3873432953631076, 0,\n 0, 0], [1856, 2, 0.004052362315850483, 0.20261811579252417, 0, 0, 0], [\n 1857, 3, 0.0021783820758427335, 0.10891910379213668, 2.22, 61.69, \n 0.004502], [1858, 3, 0.0011079593636130858, 0.05539796818065428, 2.22, \n 61.69, 0.004502], [1860, 2, 0.005358021415770059, 0.26790107078850295, \n 0, 0, 0], [1861, 3, 0.0017100335257855066, 0.08550167628927534, 2.22, \n 61.69, 0.004502], [1862, 3, 0.0020698307768289865, 0.10349153884144933,\n 2.22, 61.69, 0.004502], [1863, 3, 0.00191391644363232, \n 0.095695822181616, 2.22, 61.69, 0.004502], [1864, 2, \n 0.008800397207769248, 0.44001986038846247, 0, 0, 0], [1865, 2, \n 0.0043352387888536065, 0.21676193944268035, 0, 0, 0], [1866, 2, \n 0.006257281052932708, 0.31286405264663536, 0, 0, 0], [1867, 3, \n 0.00012995244000252472, 0.006497622000126237, 2.22, 61.69, 0.004502], [\n 1868, 3, 0.00041083453079481484, 0.020541726539740745, 2.22, 61.69, \n 0.004502], [1869, 3, 0.00017567193669280263, 0.00878359683464013, 2.22,\n 61.69, 0.004502], [1870, 2, 0.003473694483557617, 0.1736847241778809, 0,\n 0, 0], [1871, 2, 0.0033517040413269606, 0.16758520206634805, 0, 0, 0],\n [1872, 3, 0.00010719744643252312, 0.005359872321626155, 2.22, 61.69, \n 0.004502], [1873, 3, 0.000574567390652452, 0.028728369532622606, 2.22, \n 61.69, 0.004502], [1874, 3, 0.00022628109654053896, \n 0.011314054827026949, 2.22, 61.69, 0.004502], [1875, 3, \n 0.0004989555693169999, 0.02494777846585, 2.22, 61.69, 0.004502], [1876,\n 3, 0.0003142782948794478, 0.015713914743972393, 2.22, 61.69, 0.004502],\n [1877, 3, 7.230196727588184e-05, 0.0036150983637940923, 2.22, 61.69, \n 0.004502], [1878, 3, 0.0005331263734578022, 0.026656318672890113, 2.22,\n 61.69, 0.004502], [1879, 3, 0.00011159186867635697, \n 0.005579593433817849, 2.22, 61.69, 0.004502], [1880, 3, \n 0.00244891520347455, 0.1224457601737275, 2.22, 61.69, 0.004502], [1881,\n 3, 0.0002887579564064166, 0.014437897820320829, 2.22, 61.69, 0.004502],\n [1882, 3, 0.00032599010771041975, 0.01629950538552099, 2.22, 61.69, \n 0.004502], [1883, 3, 0.00044187502678609845, 0.022093751339304926, 2.22,\n 61.69, 0.004502], [1884, 3, 0.00037340729038742344, \n 0.018670364519371176, 2.22, 61.69, 0.004502], [1885, 3, \n 0.0030245916943440585, 0.15122958471720294, 2.22, 61.69, 0.004502], [\n 1886, 3, 0.0003345690401481447, 0.016728452007407236, 2.22, 61.69, \n 0.004502], [1887, 3, 0.0010782856336352766, 0.053914281681763834, 2.22,\n 61.69, 0.004502], [1888, 3, 0.0002636376916630472, 0.01318188458315236,\n 2.22, 61.69, 0.004502], [1889, 2, 0.005814578382053085, \n 0.29072891910265425, 0, 0, 0], [1890, 3, 0.0015815352363784706, \n 0.07907676181892354, 2.22, 61.69, 0.004502], [1891, 3, \n 0.000992315529797541, 0.049615776489877056, 2.22, 61.69, 0.004502], [\n 1892, 3, 0.001259940613113676, 0.0629970306556838, 2.22, 61.69, \n 0.004502], [1893, 3, 0.001665887236274936, 0.0832943618137468, 2.22, \n 61.69, 0.004502], [1894, 3, 0.001079038206318279, 0.05395191031591395, \n 2.22, 61.69, 0.004502], [1895, 3, 8.952647871728964e-06, \n 0.00044763239358644815, 2.22, 61.69, 0.004502], [1896, 3, \n 0.0028811650323339066, 0.14405825161669536, 2.22, 61.69, 0.004502], [\n 1897, 3, 0.0009437630096352837, 0.04718815048176419, 2.22, 61.69, \n 0.004502], [1898, 3, 0.0006406905245851681, 0.03203452622925841, 2.22, \n 61.69, 0.004502], [1899, 3, 0.0007639753017939761, 0.0381987650896988, \n 2.22, 61.69, 0.004502], [1900, 2, 0.004972924117850934, \n 0.2486462058925467, 0, 0, 0], [1901, 2, 0.00850139874298526, \n 0.42506993714926306, 0, 0, 0], [1902, 2, 0.017941196935571776, \n 0.8970598467785887, 0, 0, 0], [1903, 2, 0.008625713146876468, \n 0.4312856573438233, 0, 0, 0], [1904, 2, 0.005041037225995458, \n 0.2520518612997729, 0, 0, 0], [1905, 3, 0.0005831823676327024, \n 0.02915911838163512, 2.22, 61.69, 0.004502], [1906, 2, \n 0.004606359297257753, 0.2303179648628877, 0, 0, 0], [1907, 3, \n 0.0018394260494774333, 0.09197130247387167, 2.22, 61.69, 0.004502], [\n 1908, 2, 0.0032135207686216495, 0.1606760384310825, 0, 0, 0], [1909, 3,\n 0.0012414089664561352, 0.062070448322806775, 2.22, 61.69, 0.004502], [\n 1910, 3, 0.0007671015575814698, 0.03835507787907349, 2.22, 61.69, \n 0.004502], [1911, 3, 0.0003087108567584627, 0.015435542837923134, 2.22,\n 61.69, 0.004502], [1912, 2, 0.0029895860721330676, 0.1494793036066534, \n 0, 0, 0], [1913, 3, 0.00021992506558906862, 0.010996253279453432, 2.22,\n 61.69, 0.004502], [1914, 3, 0.0005075021454898337, 0.025375107274491684,\n 2.22, 61.69, 0.004502], [1915, 2, 0.006010235457498342, \n 0.3005117728749171, 0, 0, 0], [1916, 2, 0.008326107867695528, \n 0.4163053933847764, 0, 0, 0], [1917, 2, 0.01186578896955475, \n 0.5932894484777375, 0, 0, 0], [1918, 2, 0.007670383184040397, \n 0.3835191592020199, 0, 0, 0], [1919, 2, 0.0038936492873901407, \n 0.19468246436950706, 0, 0, 0], [1920, 3, 0.000332549912725998, \n 0.0166274956362999, 2.22, 61.69, 0.004502], [1921, 2, \n 0.007214669119559851, 0.3607334559779926, 0, 0, 0], [1922, 2, \n 0.0021114418882092873, 0.10557209441046439, 0, 0, 0], [1923, 3, \n 0.0006974532752472191, 0.03487266376236096, 2.22, 61.69, 0.004502], [\n 1924, 3, 0.00125215478705234, 0.06260773935261701, 2.22, 61.69, \n 0.004502], [1925, 2, 0.008615016374090978, 0.430750818704549, 0, 0, 0],\n [1926, 2, 0.0061503949380010674, 0.3075197469000534, 0, 0, 0], [1927, 2,\n 0.0041806062493278656, 0.20903031246639325, 0, 0, 0], [1928, 3, \n 4.419749409205862e-05, 0.0022098747046029312, 2.22, 61.69, 0.004502], [\n 1929, 3, 0.00020680114039434865, 0.010340057019717434, 2.22, 61.69, \n 0.004502], [1930, 3, 0.0007005983174314458, 0.03502991587157229, 2.22, \n 61.69, 0.004502], [1931, 3, 0.0024239654405412703, 0.12119827202706351,\n 2.22, 61.69, 0.004502], [1932, 3, 0.002974438998844226, \n 0.1487219499422113, 2.22, 61.69, 0.004502], [1933, 3, \n 0.0028163541927531156, 0.1408177096376558, 2.22, 61.69, 0.004502], [\n 1934, 2, 0.02440916060463032, 1.220458030231516, 0, 0, 0], [1935, 2, \n 0.0039684102931149354, 0.19842051465574678, 0, 0, 0], [1936, 3, \n 0.000382479275998745, 0.01912396379993725, 2.22, 61.69, 0.004502], [\n 1937, 2, 0.008569267103180329, 0.42846335515901646, 0, 0, 0], [1938, 2,\n 0.00390989736605716, 0.19549486830285803, 0, 0, 0], [1939, 2, \n 0.006557418126204308, 0.3278709063102154, 0, 0, 0], [1940, 3, \n 0.001208357077306712, 0.0604178538653356, 2.22, 61.69, 0.004502], [1941,\n 2, 0.006652364482492468, 0.3326182241246234, 0, 0, 0], [1942, 2, \n 0.0045043949262709645, 0.22521974631354824, 0, 0, 0], [1943, 3, \n 0.00023252908320092636, 0.011626454160046318, 2.22, 61.69, 0.004502], [\n 1944, 2, 0.005929079599901607, 0.29645397999508033, 0, 0, 0], [1945, 3,\n 0.0006780918980905403, 0.03390459490452701, 2.22, 61.69, 0.004502], [\n 1946, 3, 8.336148919521743e-05, 0.004168074459760872, 2.22, 61.69, \n 0.004502], [1947, 3, 0.0011456765961899158, 0.05728382980949579, 2.22, \n 61.69, 0.004502], [1948, 2, 0.00528874503695904, 0.264437251847952, 0, \n 0, 0], [1949, 3, 0.0006489211057679636, 0.03244605528839819, 2.22, \n 61.69, 0.004502], [1950, 3, 5.516264040749443e-05, \n 0.0027581320203747214, 2.22, 61.69, 0.004502], [1951, 3, \n 0.0005040498585424706, 0.025202492927123534, 2.22, 61.69, 0.004502], [\n 1952, 2, 0.004311440642752593, 0.21557203213762965, 0, 0, 0], [1953, 3,\n 0.00056840953078036, 0.028420476539017997, 2.22, 61.69, 0.004502], [\n 1954, 3, 0.000810219119251976, 0.0405109559625988, 2.22, 61.69, \n 0.004502], [1955, 3, 0.00042177682050851135, 0.02108884102542557, 2.22,\n 61.69, 0.004502], [1956, 3, 0.002465302961964236, 0.12326514809821179, \n 2.22, 61.69, 0.004502], [1957, 2, 0.008383156986347735, \n 0.4191578493173868, 0, 0, 0], [1958, 2, 0.0038064615860352196, \n 0.190323079301761, 0, 0, 0], [1959, 3, 0.001895272146447572, \n 0.09476360732237861, 2.22, 61.69, 0.004502], [1960, 3, \n 0.0008645229684302137, 0.043226148421510686, 2.22, 61.69, 0.004502], [\n 1961, 3, 0.0011358239614237152, 0.05679119807118577, 2.22, 61.69, \n 0.004502], [1962, 3, 0.00020054662262724584, 0.010027331131362293, 2.22,\n 61.69, 0.004502], [1963, 3, 4.6561076539460124e-05, \n 0.002328053826973006, 2.22, 61.69, 0.004502], [1964, 2, \n 0.0022125463299369165, 0.11062731649684583, 0, 0, 0], [1965, 3, \n 0.0006342156106012513, 0.031710780530062564, 2.22, 61.69, 0.004502], [\n 1966, 3, 0.00017024481693603925, 0.008512240846801963, 2.22, 61.69, \n 0.004502], [1967, 2, 0.006307261687354099, 0.315363084367705, 0, 0, 0],\n [1968, 2, 0.01284277839703282, 0.6421389198516411, 0, 0, 0], [1969, 3, \n 0.0009579929272501334, 0.04789964636250667, 2.22, 61.69, 0.004502], [\n 1970, 2, 0.015079725927314894, 0.7539862963657448, 0, 0, 0], [1971, 3, \n 0.0009170131292254306, 0.04585065646127153, 2.22, 61.69, 0.004502], [\n 1972, 3, 1.8066254100367179e-06, 9.03312705018359e-05, 2.22, 61.69, \n 0.004502], [1973, 3, 3.403981706132528e-05, 0.001701990853066264, 2.22,\n 61.69, 0.004502], [1974, 3, 0.00017512817138826898, \n 0.008756408569413449, 2.22, 61.69, 0.004502], [1975, 2, \n 0.005215773570935892, 0.2607886785467946, 0, 0, 0], [1976, 3, \n 0.00013846418760463496, 0.006923209380231748, 2.22, 61.69, 0.004502], [\n 1977, 2, 0.01441202991758457, 0.7206014958792286, 0, 0, 0], [1978, 3, \n 8.477175778714879e-05, 0.0042385878893574395, 2.22, 61.69, 0.004502], [\n 1979, 2, 0.0057457235400009896, 0.2872861770000495, 0, 0, 0], [1980, 2,\n 0.006405630588486738, 0.32028152942433696, 0, 0, 0], [1981, 2, \n 0.009210787821818714, 0.46053939109093567, 0, 0, 0], [1982, 2, \n 0.008590405853146561, 0.4295202926573281, 0, 0, 0], [1983, 2, \n 0.009930641216311431, 0.49653206081557155, 0, 0, 0], [1984, 2, \n 0.0060141858887817045, 0.30070929443908523, 0, 0, 0], [1985, 3, \n 0.0026722646447263376, 0.13361323223631688, 2.22, 61.69, 0.004502], [\n 1986, 2, 0.018993358604279195, 0.9496679302139596, 0, 0, 0], [1987, 2, \n 0.02507734833641704, 1.2538674168208521, 0, 0, 0], [1988, 2, \n 0.01603931294702456, 0.801965647351228, 0, 0, 0], [1989, 3, \n 0.0006607023412943799, 0.033035117064719, 2.22, 61.69, 0.004502], [1990,\n 2, 0.0032054713137850705, 0.16027356568925352, 0, 0, 0], [1991, 2, \n 0.05408574806630115, 2.7042874033150572, 0, 0, 0], [1992, 2, \n 0.014863670563732221, 0.743183528186611, 0, 0, 0], [1993, 2, \n 0.015450675484657526, 0.7725337742328763, 0, 0, 0], [1994, 2, \n 0.01457937125804357, 0.7289685629021785, 0, 0, 0], [1995, 2, \n 0.016707875705152985, 0.8353937852576492, 0, 0, 0], [1996, 2, \n 0.005812773436471257, 0.2906386718235629, 0, 0, 0], [1997, 3, \n 0.0016929350309317515, 0.08464675154658759, 2.22, 61.69, 0.004502], [\n 1998, 3, 0.0007719976652252124, 0.038599883261260626, 2.22, 61.69, \n 0.004502], [1999, 2, 0.012680481108039163, 0.6340240554019583, 0, 0, 0],\n [2000, 2, 0.03691344580491312, 1.845672290245656, 0, 0, 0], [2001, 2, \n 0.007786859497473928, 0.3893429748736964, 0, 0, 0], [2002, 3, \n 0.001170905360798366, 0.05854526803991831, 2.22, 61.69, 0.004502], [\n 2003, 3, 0.0015052919810963758, 0.07526459905481879, 2.22, 61.69, \n 0.004502], [2004, 3, 0.0011289420570764744, 0.05644710285382372, 2.22, \n 61.69, 0.004502], [2005, 2, 0.004588211407678609, 0.22941057038393042, \n 0, 0, 0], [2006, 2, 0.003798130062159873, 0.18990650310799362, 0, 0, 0],\n [2007, 3, 0.00010704803006198773, 0.005352401503099387, 2.22, 61.69, \n 0.004502], [2008, 3, 7.429754173230803e-06, 0.00037148770866154025, \n 2.22, 61.69, 0.004502]])\n', (427911, 510708), False, 'from numpy import array\n'), ((511760, 542753), 'numpy.array', 'array', (['[[586, 1, 0], [589, 108, 0], [590, 108, 0], [593, 112, 0], [594, 114, 0], [\n 595, 115, 0], [598, 118, 0], [599, 119, 0], [601, 119, 0], [602, 121, 0\n ], [603, 526, 0], [607, 127, 0], [608, 127, 0], [609, 529, 0], [612, \n 493, 0], [613, 130, 0], [614, 130, 0], [616, 132, 0], [617, 133, 0], [\n 618, 133, 0], [619, 134, 0], [621, 136, 0], [623, 139, 0], [624, 14, 0],\n [628, 142, 0], [629, 145, 0], [632, 145, 0], [637, 148, 0], [638, 149, \n 0], [640, 153, 0], [641, 155, 0], [642, 533, 0], [643, 534, 0], [646, \n 536, 0], [647, 536, 0], [650, 166, 0], [652, 167, 0], [655, 170, 0], [\n 661, 177, 0], [663, 178, 0], [666, 180, 0], [668, 183, 0], [670, 183, 0\n ], [672, 185, 0], [676, 19, 0], [681, 197, 0], [683, 200, 0], [687, 202,\n 0], [689, 204, 0], [691, 209, 0], [693, 21, 0], [694, 21, 0], [695, 210,\n 0], [696, 211, 0], [697, 211, 0], [698, 212, 0], [702, 215, 0], [704, \n 217, 0], [705, 217, 0], [707, 219, 0], [708, 221, 0], [711, 224, 0], [\n 713, 225, 0], [714, 225, 0], [716, 226, 0], [717, 227, 0], [719, 229, 0\n ], [722, 545, 0], [724, 238, 0], [727, 243, 0], [728, 244, 0], [730, \n 547, 0], [731, 548, 0], [732, 247, 0], [735, 253, 0], [737, 256, 0], [\n 738, 258, 0], [741, 264, 0], [742, 264, 0], [743, 500, 0], [746, 273, 0\n ], [747, 273, 0], [748, 274, 0], [749, 274, 0], [750, 557, 0], [753, 28,\n 0], [758, 286, 0], [760, 287, 0], [762, 289, 0], [763, 560, 0], [765, \n 560, 0], [767, 292, 0], [769, 293, 0], [771, 297, 0], [772, 3, 0], [774,\n 300, 0], [776, 300, 0], [777, 300, 0], [778, 300, 0], [781, 303, 0], [\n 784, 563, 0], [785, 501, 0], [787, 308, 0], [788, 311, 0], [789, 565, 0\n ], [791, 314, 0], [792, 316, 0], [795, 319, 0], [801, 327, 0], [802, \n 327, 0], [805, 328, 0], [806, 328, 0], [808, 329, 0], [809, 329, 0], [\n 811, 568, 0], [814, 570, 0], [816, 335, 0], [817, 571, 0], [821, 338, 0\n ], [822, 339, 0], [826, 339, 0], [829, 345, 0], [830, 345, 0], [835, \n 572, 0], [836, 572, 0], [837, 350, 0], [839, 350, 0], [841, 573, 0], [\n 843, 352, 0], [844, 352, 0], [845, 356, 0], [849, 574, 0], [850, 574, 0\n ], [851, 575, 0], [853, 362, 0], [854, 363, 0], [855, 363, 0], [856, \n 363, 0], [857, 365, 0], [858, 368, 0], [859, 368, 0], [860, 371, 0], [\n 862, 372, 0], [863, 374, 0], [864, 374, 0], [865, 375, 0], [867, 376, 0\n ], [869, 503, 0], [870, 503, 0], [872, 378, 0], [873, 576, 0], [874, \n 576, 0], [875, 381, 0], [877, 578, 0], [882, 388, 0], [883, 388, 0], [\n 886, 394, 0], [889, 397, 0], [890, 40, 0], [895, 580, 0], [896, 581, 0],\n [898, 403, 0], [900, 405, 0], [902, 405, 0], [903, 406, 0], [905, 413, \n 0], [906, 414, 0], [907, 583, 0], [909, 417, 0], [913, 422, 0], [915, \n 423, 0], [917, 43, 0], [918, 424, 0], [920, 428, 0], [921, 428, 0], [\n 922, 429, 0], [923, 432, 0], [925, 44, 0], [928, 435, 0], [931, 439, 0],\n [934, 45, 0], [935, 45, 0], [936, 445, 0], [937, 447, 0], [939, 450, 0],\n [940, 451, 0], [942, 458, 0], [944, 458, 0], [945, 459, 0], [950, 462, \n 0], [952, 47, 0], [958, 478, 0], [959, 478, 0], [960, 479, 0], [963, \n 481, 0], [965, 49, 0], [966, 49, 0], [967, 49, 0], [968, 486, 0], [969,\n 486, 0], [971, 51, 0], [973, 506, 0], [976, 58, 0], [977, 59, 0], [978,\n 491, 0], [981, 62, 0], [982, 62, 0], [983, 62, 0], [984, 63, 0], [985, \n 63, 0], [986, 64, 0], [987, 65, 0], [988, 66, 0], [990, 67, 0], [993, \n 67, 0], [994, 67, 0], [995, 509, 0], [997, 510, 0], [999, 70, 0], [1000,\n 71, 0], [1002, 71, 0], [1003, 72, 0], [1007, 511, 0], [1008, 75, 0], [\n 1010, 79, 0], [1011, 79, 0], [1012, 81, 0], [1018, 514, 0], [1023, 515,\n 0], [1026, 518, 0], [1027, 218, 0], [1028, 221, 0], [1029, 268, 0], [\n 1030, 269, 0], [1031, 498, 0], [1032, 1, 0], [1033, 3, 0], [1034, 4, 0],\n [1035, 6, 0], [1036, 7, 0], [1037, 8, 0], [1038, 9, 0], [1039, 11, 0],\n [1040, 14, 0], [1041, 16, 0], [1042, 17, 0], [1044, 21, 0], [1046, 25, \n 0], [1047, 27, 0], [1048, 28, 0], [1049, 29, 0], [1050, 31, 0], [1051, \n 33, 0], [1052, 34, 0], [1053, 35, 0], [1054, 36, 0], [1055, 38, 0], [\n 1056, 39, 0], [1057, 40, 0], [1058, 41, 0], [1059, 43, 0], [1060, 44, 0\n ], [1061, 45, 0], [1062, 47, 0], [1063, 48, 0], [1064, 49, 0], [1065, \n 50, 0], [1066, 51, 0], [1067, 53, 0], [1072, 59, 0], [1073, 60, 0], [\n 1074, 62, 0], [1075, 63, 0], [1076, 64, 0], [1077, 65, 0], [1078, 66, 0\n ], [1079, 67, 0], [1080, 70, 0], [1081, 71, 0], [1082, 72, 0], [1083, \n 73, 0], [1084, 75, 0], [1085, 76, 0], [1086, 77, 0], [1087, 79, 0], [\n 1088, 80, 0], [1089, 81, 0], [1090, 82, 0], [1091, 83, 0], [1092, 84, 0\n ], [1093, 85, 0], [1094, 88, 0], [1095, 89, 0], [1096, 90, 0], [1097, \n 91, 0], [1098, 92, 0], [1099, 93, 0], [1101, 98, 0], [1102, 101, 0], [\n 1103, 102, 0], [1104, 103, 0], [1105, 108, 0], [1106, 109, 0], [1107, \n 110, 0], [1108, 111, 0], [1109, 112, 0], [1110, 113, 0], [1111, 114, 0],\n [1112, 115, 0], [1113, 116, 0], [1114, 118, 0], [1115, 119, 0], [1116, \n 121, 0], [1117, 122, 0], [1118, 126, 0], [1119, 127, 0], [1120, 130, 0],\n [1121, 131, 0], [1122, 132, 0], [1123, 133, 0], [1124, 134, 0], [1125, \n 135, 0], [1126, 136, 0], [1127, 137, 0], [1128, 139, 0], [1129, 140, 0],\n [1130, 141, 0], [1131, 142, 0], [1132, 144, 0], [1133, 145, 0], [1134, \n 146, 0], [1135, 147, 0], [1136, 148, 0], [1137, 149, 0], [1138, 150, 0],\n [1139, 151, 0], [1140, 152, 0], [1141, 153, 0], [1142, 154, 0], [1143, \n 155, 0], [1144, 158, 0], [1145, 161, 0], [1146, 162, 0], [1147, 163, 0],\n [1148, 164, 0], [1149, 166, 0], [1150, 167, 0], [1151, 168, 0], [1152, \n 169, 0], [1153, 170, 0], [1154, 171, 0], [1155, 172, 0], [1156, 173, 0],\n [1157, 174, 0], [1158, 175, 0], [1159, 176, 0], [1160, 177, 0], [1161, \n 178, 0], [1162, 179, 0], [1163, 180, 0], [1164, 181, 0], [1165, 182, 0],\n [1166, 183, 0], [1167, 185, 0], [1168, 186, 0], [1169, 187, 0], [1170, \n 188, 0], [1171, 189, 0], [1172, 190, 0], [1173, 192, 0], [1174, 193, 0],\n [1175, 194, 0], [1176, 196, 0], [1177, 197, 0], [1178, 198, 0], [1179, \n 199, 0], [1180, 200, 0], [1181, 202, 0], [1182, 203, 0], [1183, 204, 0],\n [1184, 205, 0], [1185, 206, 0], [1186, 207, 0], [1187, 208, 0], [1188, \n 209, 0], [1189, 210, 0], [1190, 211, 0], [1191, 212, 0], [1192, 213, 0],\n [1196, 217, 0], [1197, 218, 0], [1198, 219, 0], [1199, 221, 0], [1200, \n 222, 0], [1204, 226, 0], [1206, 228, 0], [1208, 230, 0], [1211, 237, 0],\n [1212, 238, 0], [1213, 239, 0], [1214, 240, 0], [1215, 241, 0], [1216, \n 242, 0], [1217, 243, 0], [1218, 244, 0], [1219, 247, 0], [1220, 251, 0],\n [1221, 252, 0], [1222, 253, 0], [1224, 255, 0], [1225, 256, 0], [1226, \n 257, 0], [1227, 258, 0], [1229, 263, 0], [1230, 264, 0], [1231, 266, 0],\n [1232, 267, 0], [1233, 268, 0], [1235, 271, 0], [1236, 272, 0], [1237, \n 273, 0], [1238, 274, 0], [1239, 275, 0], [1240, 276, 0], [1241, 278, 0],\n [1242, 281, 0], [1243, 282, 0], [1244, 283, 0], [1245, 284, 0], [1246, \n 285, 0], [1247, 286, 0], [1248, 287, 0], [1249, 288, 0], [1250, 289, 0],\n [1251, 291, 0], [1252, 292, 0], [1253, 293, 0], [1254, 294, 0], [1255, \n 295, 0], [1256, 296, 0], [1257, 297, 0], [1258, 298, 0], [1259, 299, 0],\n [1260, 300, 0], [1261, 302, 0], [1264, 307, 0], [1266, 309, 0], [1267, \n 311, 0], [1268, 312, 0], [1269, 314, 0], [1270, 316, 0], [1274, 321, 0],\n [1275, 322, 0], [1276, 323, 0], [1277, 324, 0], [1278, 325, 0], [1280, \n 327, 0], [1281, 328, 0], [1282, 329, 0], [1283, 331, 0], [1285, 335, 0],\n [1286, 337, 0], [1287, 338, 0], [1288, 339, 0], [1289, 340, 0], [1290, \n 341, 0], [1291, 342, 0], [1292, 343, 0], [1293, 344, 0], [1294, 345, 0],\n [1295, 346, 0], [1296, 347, 0], [1297, 348, 0], [1298, 350, 0], [1299, \n 352, 0], [1300, 353, 0], [1301, 354, 0], [1302, 355, 0], [1303, 356, 0],\n [1306, 361, 0], [1307, 362, 0], [1308, 363, 0], [1312, 367, 0], [1316, \n 371, 0], [1317, 372, 0], [1319, 374, 0], [1323, 378, 0], [1326, 384, 0],\n [1327, 385, 0], [1328, 386, 0], [1329, 387, 0], [1331, 390, 0], [1333, \n 392, 0], [1336, 395, 0], [1337, 396, 0], [1339, 398, 0], [1340, 399, 0],\n [1345, 406, 0], [1346, 407, 0], [1348, 410, 0], [1349, 411, 0], [1356, \n 419, 0], [1357, 420, 0], [1359, 422, 0], [1360, 423, 0], [1361, 424, 0],\n [1362, 425, 0], [1366, 429, 0], [1367, 430, 0], [1372, 435, 0], [1373, \n 436, 0], [1374, 437, 0], [1375, 438, 0], [1376, 439, 0], [1377, 440, 0],\n [1378, 441, 0], [1379, 442, 0], [1380, 443, 0], [1381, 445, 0], [1382, \n 446, 0], [1383, 447, 0], [1384, 448, 0], [1385, 449, 0], [1386, 450, 0],\n [1387, 451, 0], [1388, 453, 0], [1389, 454, 0], [1390, 455, 0], [1391, \n 456, 0], [1392, 457, 0], [1393, 458, 0], [1394, 459, 0], [1395, 460, 0],\n [1396, 461, 0], [1397, 462, 0], [1398, 463, 0], [1399, 464, 0], [1400, \n 465, 0], [1401, 466, 0], [1402, 467, 0], [1403, 468, 0], [1404, 469, 0],\n [1405, 470, 0], [1406, 471, 0], [1407, 472, 0], [1408, 473, 0], [1409, \n 474, 0], [1410, 475, 0], [1411, 476, 0], [1418, 483, 0], [1419, 484, 0],\n [1421, 486, 0], [1422, 487, 0], [1423, 488, 0], [1424, 489, 0], [1425, \n 490, 0], [1426, 491, 0], [1427, 492, 0], [1428, 493, 0], [1429, 494, 0],\n [1431, 496, 0], [1432, 497, 0], [1433, 498, 0], [1434, 499, 0], [1435, \n 500, 0], [1436, 501, 0], [1437, 502, 0], [1438, 503, 0], [1439, 504, 0],\n [1440, 505, 0], [1443, 508, 0], [1444, 509, 0], [1445, 510, 0], [1446, \n 511, 0], [1447, 512, 0], [1448, 513, 0], [1449, 514, 0], [1450, 515, 0],\n [1451, 516, 0], [1452, 517, 0], [1453, 518, 0], [1454, 519, 0], [1455, \n 520, 0], [1456, 521, 0], [1457, 522, 0], [1458, 523, 0], [1459, 524, 0],\n [1460, 525, 0], [1461, 526, 0], [1462, 527, 0], [1463, 528, 0], [1464, \n 529, 0], [1465, 530, 0], [1466, 531, 0], [1467, 532, 0], [1468, 533, 0],\n [1469, 534, 0], [1470, 535, 0], [1471, 536, 0], [1472, 537, 0], [1473, \n 538, 0], [1474, 539, 0], [1475, 540, 0], [1476, 541, 0], [1477, 542, 0],\n [1483, 548, 0], [1484, 549, 0], [1485, 550, 0], [1486, 551, 0], [1489, \n 555, 0], [1490, 556, 0], [1491, 557, 0], [1492, 558, 0], [1493, 559, 0],\n [1494, 560, 0], [1495, 561, 0], [1497, 563, 0], [1498, 564, 0], [1501, \n 567, 0], [1503, 569, 0], [1504, 570, 0], [1505, 571, 0], [1506, 572, 0],\n [1507, 573, 0], [1510, 576, 0], [1511, 577, 0], [1512, 578, 0], [1513, \n 579, 0], [1518, 584, 0], [1519, 585, 0], [1520, 1, 0], [1521, 3, 0], [\n 1522, 4, 0], [1523, 6, 0], [1524, 7, 0], [1525, 8, 0], [1526, 9, 0], [\n 1527, 11, 0], [1528, 14, 0], [1529, 16, 0], [1530, 17, 0], [1531, 19, 0\n ], [1532, 21, 0], [1534, 25, 0], [1535, 27, 0], [1536, 28, 0], [1537, \n 29, 0], [1538, 31, 0], [1539, 33, 0], [1540, 34, 0], [1541, 35, 0], [\n 1542, 36, 0], [1543, 38, 0], [1544, 39, 0], [1545, 40, 0], [1546, 41, 0\n ], [1547, 43, 0], [1548, 44, 0], [1549, 45, 0], [1550, 47, 0], [1551, \n 48, 0], [1552, 49, 0], [1553, 50, 0], [1554, 51, 0], [1555, 53, 0], [\n 1556, 54, 0], [1557, 55, 0], [1558, 57, 0], [1559, 58, 0], [1560, 59, 0\n ], [1561, 60, 0], [1562, 62, 0], [1563, 63, 0], [1564, 64, 0], [1565, \n 65, 0], [1566, 66, 0], [1567, 67, 0], [1568, 70, 0], [1569, 71, 0], [\n 1570, 72, 0], [1571, 73, 0], [1572, 75, 0], [1573, 76, 0], [1574, 77, 0\n ], [1575, 79, 0], [1576, 80, 0], [1577, 81, 0], [1578, 82, 0], [1579, \n 83, 0], [1580, 84, 0], [1581, 85, 0], [1582, 88, 0], [1583, 89, 0], [\n 1584, 90, 0], [1585, 91, 0], [1586, 92, 0], [1587, 93, 0], [1588, 97, 0\n ], [1589, 98, 0], [1590, 101, 0], [1591, 102, 0], [1592, 103, 0], [1593,\n 108, 0], [1594, 109, 0], [1595, 110, 0], [1596, 111, 0], [1597, 112, 0],\n [1598, 113, 0], [1599, 114, 0], [1600, 115, 0], [1601, 116, 0], [1602, \n 118, 0], [1603, 119, 0], [1604, 121, 0], [1605, 122, 0], [1606, 126, 0],\n [1607, 127, 0], [1608, 130, 0], [1609, 131, 0], [1610, 132, 0], [1611, \n 133, 0], [1612, 134, 0], [1613, 135, 0], [1614, 136, 0], [1615, 137, 0],\n [1616, 139, 0], [1617, 140, 0], [1618, 141, 0], [1619, 142, 0], [1620, \n 144, 0], [1621, 145, 0], [1622, 146, 0], [1623, 147, 0], [1624, 148, 0],\n [1625, 149, 0], [1626, 150, 0], [1627, 151, 0], [1628, 152, 0], [1629, \n 153, 0], [1630, 154, 0], [1631, 155, 0], [1632, 158, 0], [1633, 161, 0],\n [1634, 162, 0], [1635, 163, 0], [1636, 164, 0], [1637, 166, 0], [1638, \n 167, 0], [1639, 168, 0], [1640, 169, 0], [1641, 170, 0], [1642, 171, 0],\n [1643, 172, 0], [1644, 173, 0], [1645, 174, 0], [1646, 175, 0], [1647, \n 176, 0], [1648, 177, 0], [1649, 178, 0], [1650, 179, 0], [1651, 180, 0],\n [1652, 181, 0], [1653, 182, 0], [1654, 183, 0], [1655, 185, 0], [1656, \n 186, 0], [1657, 187, 0], [1658, 188, 0], [1659, 189, 0], [1660, 190, 0],\n [1661, 192, 0], [1662, 193, 0], [1663, 194, 0], [1664, 196, 0], [1665, \n 197, 0], [1666, 198, 0], [1667, 199, 0], [1668, 200, 0], [1669, 202, 0],\n [1670, 203, 0], [1671, 204, 0], [1672, 205, 0], [1673, 206, 0], [1674, \n 207, 0], [1675, 208, 0], [1676, 209, 0], [1677, 210, 0], [1678, 211, 0],\n [1679, 212, 0], [1680, 213, 0], [1681, 214, 0], [1682, 215, 0], [1683, \n 216, 0], [1684, 217, 0], [1685, 218, 0], [1686, 219, 0], [1687, 221, 0],\n [1688, 222, 0], [1689, 223, 0], [1690, 224, 0], [1691, 225, 0], [1692, \n 226, 0], [1693, 227, 0], [1694, 228, 0], [1695, 229, 0], [1696, 230, 0],\n [1697, 234, 0], [1698, 235, 0], [1699, 237, 0], [1700, 238, 0], [1701, \n 239, 0], [1702, 240, 0], [1703, 241, 0], [1704, 242, 0], [1705, 243, 0],\n [1706, 244, 0], [1707, 247, 0], [1708, 251, 0], [1709, 252, 0], [1710, \n 253, 0], [1711, 254, 0], [1712, 255, 0], [1713, 256, 0], [1714, 257, 0],\n [1715, 258, 0], [1716, 260, 0], [1717, 263, 0], [1718, 264, 0], [1719, \n 266, 0], [1720, 267, 0], [1721, 268, 0], [1722, 269, 0], [1723, 271, 0],\n [1724, 272, 0], [1725, 273, 0], [1726, 274, 0], [1727, 275, 0], [1728, \n 276, 0], [1729, 278, 0], [1730, 281, 0], [1731, 282, 0], [1732, 283, 0],\n [1733, 284, 0], [1734, 285, 0], [1735, 286, 0], [1736, 287, 0], [1737, \n 288, 0], [1738, 289, 0], [1739, 291, 0], [1740, 292, 0], [1741, 293, 0],\n [1742, 294, 0], [1743, 295, 0], [1744, 296, 0], [1745, 297, 0], [1746, \n 298, 0], [1747, 299, 0], [1748, 300, 0], [1749, 302, 0], [1750, 303, 0],\n [1751, 304, 0], [1752, 307, 0], [1753, 308, 0], [1754, 309, 0], [1755, \n 311, 0], [1756, 312, 0], [1757, 314, 0], [1758, 316, 0], [1759, 317, 0],\n [1760, 318, 0], [1761, 319, 0], [1762, 321, 0], [1763, 322, 0], [1764, \n 323, 0], [1765, 324, 0], [1766, 325, 0], [1767, 326, 0], [1768, 327, 0],\n [1769, 328, 0], [1770, 329, 0], [1771, 331, 0], [1772, 333, 0], [1773, \n 335, 0], [1774, 337, 0], [1775, 338, 0], [1776, 339, 0], [1777, 340, 0],\n [1778, 341, 0], [1779, 342, 0], [1780, 343, 0], [1781, 344, 0], [1782, \n 345, 0], [1783, 346, 0], [1784, 347, 0], [1785, 348, 0], [1786, 350, 0],\n [1787, 352, 0], [1788, 353, 0], [1789, 354, 0], [1790, 355, 0], [1791, \n 356, 0], [1792, 357, 0], [1793, 359, 0], [1794, 361, 0], [1795, 362, 0],\n [1796, 363, 0], [1797, 364, 0], [1798, 365, 0], [1799, 366, 0], [1800, \n 367, 0], [1801, 368, 0], [1802, 369, 0], [1803, 370, 0], [1804, 371, 0],\n [1805, 372, 0], [1806, 373, 0], [1807, 374, 0], [1808, 375, 0], [1809, \n 376, 0], [1810, 377, 0], [1811, 378, 0], [1812, 379, 0], [1813, 381, 0],\n [1814, 384, 0], [1815, 385, 0], [1816, 386, 0], [1817, 387, 0], [1818, \n 388, 0], [1819, 390, 0], [1820, 391, 0], [1821, 392, 0], [1822, 393, 0],\n [1823, 394, 0], [1824, 395, 0], [1825, 396, 0], [1826, 397, 0], [1827, \n 398, 0], [1828, 399, 0], [1830, 403, 0], [1831, 404, 0], [1832, 405, 0],\n [1833, 406, 0], [1834, 407, 0], [1836, 410, 0], [1837, 411, 0], [1838, \n 412, 0], [1839, 413, 0], [1840, 414, 0], [1841, 416, 0], [1842, 417, 0],\n [1843, 418, 0], [1844, 419, 0], [1845, 420, 0], [1846, 421, 0], [1847, \n 422, 0], [1848, 423, 0], [1849, 424, 0], [1850, 425, 0], [1851, 426, 0],\n [1852, 427, 0], [1853, 428, 0], [1854, 429, 0], [1855, 430, 0], [1856, \n 431, 0], [1857, 432, 0], [1858, 433, 0], [1860, 435, 0], [1861, 436, 0],\n [1862, 437, 0], [1863, 438, 0], [1864, 439, 0], [1865, 440, 0], [1866, \n 441, 0], [1867, 442, 0], [1868, 443, 0], [1869, 445, 0], [1870, 446, 0],\n [1871, 447, 0], [1872, 448, 0], [1873, 449, 0], [1874, 450, 0], [1875, \n 451, 0], [1876, 453, 0], [1877, 454, 0], [1878, 455, 0], [1879, 456, 0],\n [1880, 457, 0], [1881, 458, 0], [1882, 459, 0], [1883, 460, 0], [1884, \n 461, 0], [1885, 462, 0], [1886, 463, 0], [1887, 464, 0], [1888, 465, 0],\n [1889, 466, 0], [1890, 467, 0], [1891, 468, 0], [1892, 469, 0], [1893, \n 470, 0], [1894, 471, 0], [1895, 472, 0], [1896, 473, 0], [1897, 474, 0],\n [1898, 475, 0], [1899, 476, 0], [1900, 477, 0], [1901, 478, 0], [1902, \n 479, 0], [1903, 480, 0], [1904, 481, 0], [1905, 482, 0], [1906, 483, 0],\n [1907, 484, 0], [1908, 485, 0], [1909, 486, 0], [1910, 487, 0], [1911, \n 488, 0], [1912, 489, 0], [1913, 490, 0], [1914, 491, 0], [1915, 492, 0],\n [1916, 493, 0], [1917, 494, 0], [1918, 495, 0], [1919, 496, 0], [1920, \n 497, 0], [1921, 498, 0], [1922, 499, 0], [1923, 500, 0], [1924, 501, 0],\n [1925, 502, 0], [1926, 503, 0], [1927, 504, 0], [1928, 505, 0], [1929, \n 506, 0], [1930, 507, 0], [1931, 508, 0], [1932, 509, 0], [1933, 510, 0],\n [1934, 511, 0], [1935, 512, 0], [1936, 513, 0], [1937, 514, 0], [1938, \n 515, 0], [1939, 516, 0], [1940, 517, 0], [1941, 518, 0], [1942, 519, 0],\n [1943, 520, 0], [1944, 521, 0], [1945, 522, 0], [1946, 523, 0], [1947, \n 524, 0], [1948, 525, 0], [1949, 526, 0], [1950, 527, 0], [1951, 528, 0],\n [1952, 529, 0], [1953, 530, 0], [1954, 531, 0], [1955, 532, 0], [1956, \n 533, 0], [1957, 534, 0], [1958, 535, 0], [1959, 536, 0], [1960, 537, 0],\n [1961, 538, 0], [1962, 539, 0], [1963, 540, 0], [1964, 541, 0], [1965, \n 542, 0], [1966, 543, 0], [1967, 544, 0], [1968, 545, 0], [1969, 546, 0],\n [1970, 547, 0], [1971, 548, 0], [1972, 549, 0], [1973, 550, 0], [1974, \n 551, 0], [1975, 552, 0], [1976, 553, 0], [1977, 554, 0], [1978, 555, 0],\n [1979, 556, 0], [1980, 557, 0], [1981, 558, 0], [1982, 559, 0], [1983, \n 560, 0], [1984, 561, 0], [1985, 562, 0], [1986, 563, 0], [1987, 564, 0],\n [1988, 565, 0], [1989, 566, 0], [1990, 567, 0], [1991, 568, 0], [1992, \n 569, 0], [1993, 570, 0], [1994, 571, 0], [1995, 572, 0], [1996, 573, 0],\n [1997, 574, 0], [1998, 575, 0], [1999, 576, 0], [2000, 577, 0], [2001, \n 578, 0], [2002, 579, 0], [2003, 580, 0], [2004, 581, 0], [2005, 582, 0],\n [2006, 583, 0], [2007, 584, 0], [2008, 585, 0], [1, 490, 0], [3, 4, 1],\n [491, 6, 0], [7, 5, 0], [8, 9, 0], [492, 11, 0], [11, 493, 0], [492, \n 493, 1], [494, 14, 0], [13, 15, 0], [16, 5, 0], [17, 18, 1], [17, 12, 0\n ], [14, 495, 0], [494, 19, 0], [20, 21, 0], [20, 22, 1], [497, 23, 0],\n [23, 499, 1], [25, 26, 0], [25, 22, 0], [23, 27, 0], [28, 23, 0], [8, \n 21, 0], [9, 29, 0], [30, 25, 1], [31, 32, 1], [32, 33, 1], [34, 35, 0],\n [35, 36, 0], [490, 6, 1], [37, 10, 1], [10, 38, 0], [37, 38, 1], [39, \n 40, 1], [39, 41, 1], [42, 41, 1], [18, 42, 1], [492, 43, 1], [44, 45, 0\n ], [44, 505, 0], [46, 12, 0], [47, 48, 0], [49, 50, 0], [31, 33, 1], [\n 31, 51, 0], [52, 53, 1], [52, 54, 0], [506, 55, 0], [506, 507, 1], [57,\n 506, 0], [57, 58, 0], [58, 506, 0], [59, 60, 1], [508, 62, 0], [30, 61,\n 1], [63, 506, 0], [13, 64, 0], [65, 66, 1], [59, 67, 0], [61, 67, 0], [\n 68, 69, 1], [70, 69, 1], [71, 72, 1], [73, 74, 1], [37, 75, 1], [72, 75,\n 0], [37, 72, 1], [76, 77, 1], [77, 51, 0], [73, 72, 1], [18, 40, 1], [\n 492, 45, 1], [10, 74, 1], [45, 511, 1], [78, 32, 1], [79, 80, 0], [81, \n 79, 1], [34, 82, 0], [83, 84, 0], [83, 499, 0], [85, 86, 0], [87, 86, 1\n ], [88, 89, 0], [90, 86, 1], [91, 86, 0], [86, 92, 0], [86, 93, 0], [94,\n 86, 1], [86, 95, 1], [513, 517, 0], [97, 66, 1], [42, 98, 0], [99, 100,\n 1], [42, 101, 0], [102, 42, 1], [103, 87, 0], [104, 103, 0], [105, 87, \n 0], [106, 107, 0], [108, 107, 0], [109, 106, 0], [110, 111, 1], [87, \n 112, 0], [113, 87, 0], [87, 85, 1], [110, 114, 1], [115, 116, 0], [117,\n 118, 0], [117, 119, 0], [117, 120, 1], [121, 122, 0], [123, 124, 0], [\n 125, 126, 0], [127, 119, 0], [118, 128, 0], [121, 119, 0], [530, 527, 0\n ], [125, 130, 0], [125, 123, 0], [131, 132, 0], [133, 123, 0], [524, \n 134, 0], [135, 136, 0], [123, 131, 0], [117, 128, 1], [137, 521, 0], [\n 531, 514, 0], [139, 521, 0], [140, 514, 0], [522, 141, 0], [142, 523, 0\n ], [530, 526, 0], [140, 532, 0], [142, 144, 0], [140, 522, 0], [145, \n 146, 0], [147, 523, 0], [144, 523, 0], [139, 523, 0], [140, 141, 0], [\n 528, 526, 0], [528, 148, 0], [149, 150, 0], [145, 528, 0], [530, 151, 0\n ], [524, 152, 0], [149, 525, 1], [139, 514, 0], [126, 120, 1], [530, \n 153, 0], [528, 147, 1], [528, 154, 0], [130, 120, 1], [528, 155, 1], [\n 524, 533, 0], [524, 149, 0], [154, 150, 0], [157, 110, 1], [119, 158, 0\n ], [159, 60, 0], [536, 161, 0], [115, 151, 0], [162, 134, 0], [115, 526,\n 0], [138, 87, 0], [123, 163, 0], [112, 164, 0], [112, 165, 0], [166, \n 165, 0], [167, 537, 0], [168, 104, 0], [531, 520, 0], [139, 520, 0], [\n 520, 169, 0], [168, 105, 0], [520, 170, 0], [171, 89, 0], [521, 172, 0],\n [123, 173, 0], [521, 174, 0], [37, 39, 0], [530, 175, 0], [530, 176, 0],\n [88, 530, 0], [177, 496, 1], [178, 525, 0], [179, 493, 1], [180, 181, 1\n ], [182, 180, 0], [179, 181, 0], [180, 493, 1], [183, 30, 0], [183, 21,\n 0], [538, 185, 0], [538, 89, 0], [184, 186, 0], [184, 187, 0], [520, \n 172, 0], [89, 175, 0], [185, 89, 0], [89, 188, 0], [189, 190, 0], [539,\n 172, 0], [504, 192, 0], [105, 186, 0], [105, 187, 0], [539, 193, 0], [\n 187, 194, 0], [539, 540, 0], [539, 196, 0], [197, 540, 0], [110, 198, 0\n ], [197, 539, 0], [199, 537, 0], [134, 526, 0], [200, 193, 0], [4, 201,\n 1], [202, 86, 0], [85, 203, 0], [147, 204, 0], [147, 205, 0], [123, 206,\n 0], [537, 207, 0], [165, 208, 0], [4, 94, 1], [4, 2, 0], [209, 4, 0], [\n 119, 163, 0], [210, 3, 0], [99, 211, 0], [99, 69, 1], [212, 99, 0], [\n 213, 214, 0], [510, 215, 0], [128, 69, 1], [216, 69, 1], [217, 98, 0],\n [504, 218, 0], [177, 504, 1], [219, 209, 0], [219, 220, 0], [94, 95, 1],\n [159, 221, 1], [34, 161, 0], [222, 221, 0], [211, 52, 1], [215, 223, 1],\n [224, 215, 0], [225, 224, 1], [224, 223, 0], [226, 6, 0], [7, 3, 1], [\n 216, 227, 1], [228, 229, 0], [227, 230, 0], [231, 53, 1], [544, 545, 0],\n [234, 235, 1], [546, 214, 1], [233, 227, 0], [237, 238, 0], [212, 100, \n 0], [519, 239, 0], [238, 519, 0], [213, 240, 0], [241, 242, 1], [70, \n 241, 0], [509, 213, 0], [68, 243, 0], [243, 244, 0], [68, 244, 0], [544,\n 547, 1], [245, 227, 1], [246, 208, 0], [112, 208, 0], [165, 247, 0], [\n 537, 549, 0], [537, 550, 0], [537, 551, 0], [110, 251, 0], [510, 252, 1\n ], [529, 253, 1], [237, 239, 1], [254, 238, 1], [69, 255, 0], [510, 225,\n 1], [256, 257, 0], [258, 190, 0], [258, 259, 0], [260, 261, 1], [554, \n 553, 1], [515, 263, 0], [14, 264, 1], [116, 555, 0], [151, 116, 0], [\n 111, 114, 1], [77, 111, 0], [266, 525, 0], [267, 120, 1], [268, 269, 0],\n [556, 271, 0], [556, 272, 0], [529, 273, 0], [128, 274, 0], [34, 275, 0\n ], [503, 276, 0], [503, 504, 1], [177, 218, 1], [277, 278, 1], [557, \n 558, 1], [557, 559, 1], [559, 558, 1], [277, 78, 1], [277, 279, 1], [78,\n 279, 0], [281, 282, 0], [283, 161, 1], [268, 161, 1], [256, 284, 0], [\n 515, 516, 1], [263, 516, 0], [516, 285, 0], [63, 286, 0], [287, 516, 0],\n [8, 102, 1], [8, 101, 1], [80, 288, 0], [80, 289, 0], [276, 560, 0], [\n 37, 290, 0], [290, 74, 1], [512, 291, 0], [78, 292, 1], [199, 548, 0],\n [491, 293, 0], [4, 294, 0], [490, 541, 1], [491, 295, 0], [491, 296, 0],\n [295, 297, 0], [508, 161, 0], [117, 123, 0], [133, 117, 0], [71, 74, 1],\n [74, 278, 1], [298, 515, 0], [5, 299, 0], [32, 292, 1], [5, 29, 1], [\n 503, 560, 0], [300, 301, 1], [51, 300, 0], [244, 302, 1], [31, 302, 1],\n [51, 282, 1], [303, 304, 0], [305, 304, 0], [305, 259, 0], [306, 307, 1\n ], [305, 308, 0], [305, 309, 0], [310, 309, 1], [306, 309, 1], [311, \n 280, 0], [280, 278, 1], [311, 32, 1], [13, 312, 1], [313, 314, 0], [312,\n 313, 1], [547, 566, 1], [245, 315, 1], [312, 316, 0], [312, 314, 0], [\n 554, 546, 1], [262, 216, 1], [317, 233, 0], [318, 317, 0], [231, 52, 1],\n [319, 567, 0], [557, 321, 0], [277, 65, 1], [322, 288, 1], [322, 323, 0\n ], [277, 324, 1], [324, 325, 0], [277, 325, 0], [326, 327, 0], [328, \n 326, 1], [328, 327, 1], [326, 329, 0], [568, 329, 1], [568, 326, 0], [\n 332, 78, 1], [333, 306, 0], [332, 333, 0], [332, 334, 0], [66, 334, 1],\n [330, 335, 1], [336, 66, 0], [330, 336, 1], [68, 70, 0], [509, 337, 1],\n [324, 288, 0], [338, 559, 0], [339, 559, 0], [339, 340, 1], [559, 340, \n 1], [341, 292, 0], [557, 342, 0], [558, 343, 0], [502, 340, 1], [72, 32,\n 1], [344, 345, 0], [346, 47, 0], [46, 47, 0], [346, 345, 0], [347, 328,\n 0], [347, 348, 1], [571, 348, 1], [347, 572, 0], [571, 570, 1], [14, \n 350, 0], [350, 573, 0], [15, 351, 1], [352, 15, 0], [15, 335, 1], [232,\n 227, 0], [565, 544, 1], [235, 567, 1], [567, 286, 0], [353, 519, 0], [\n 354, 353, 0], [355, 354, 0], [354, 356, 0], [357, 358, 0], [574, 359, 0\n ], [235, 575, 0], [167, 361, 0], [528, 362, 0], [363, 344, 0], [259, \n 364, 1], [54, 56, 0], [365, 364, 0], [231, 366, 0], [30, 367, 0], [61, \n 367, 1], [254, 368, 0], [254, 369, 0], [254, 370, 0], [99, 358, 0], [\n 354, 519, 0], [571, 371, 0], [207, 372, 0], [57, 373, 0], [209, 374, 0],\n [375, 376, 0], [376, 377, 0], [16, 49, 0], [318, 377, 0], [378, 297, 0],\n [562, 379, 0], [576, 563, 0], [576, 381, 0], [577, 576, 1], [244, 383, \n 0], [244, 306, 1], [383, 306, 1], [380, 306, 0], [252, 225, 0], [220, \n 76, 0], [542, 384, 0], [385, 384, 0], [542, 385, 0], [386, 385, 0], [\n 387, 578, 0], [332, 388, 1], [382, 332, 1], [382, 388, 0], [579, 578, 0\n ], [577, 387, 1], [144, 390, 0], [37, 49, 0], [391, 233, 0], [392, 310,\n 0], [260, 393, 0], [394, 230, 0], [395, 282, 1], [395, 244, 0], [25, \n 396, 1], [81, 74, 0], [278, 80, 1], [81, 278, 1], [569, 570, 0], [397, \n 552, 0], [542, 398, 0], [398, 385, 0], [399, 499, 0], [83, 399, 0], [\n 498, 400, 0], [518, 239, 1], [575, 543, 0], [401, 360, 0], [580, 581, 0\n ], [401, 402, 0], [403, 231, 0], [189, 360, 1], [234, 404, 0], [235, \n 404, 1], [235, 580, 0], [216, 259, 0], [405, 259, 0], [405, 318, 0], [\n 406, 230, 0], [542, 407, 0], [23, 408, 0], [577, 348, 0], [562, 564, 1],\n [582, 507, 0], [27, 410, 0], [501, 27, 0], [27, 411, 0], [411, 410, 0],\n [403, 360, 0], [412, 360, 0], [326, 413, 0], [414, 413, 0], [6, 297, 0],\n [554, 580, 1], [262, 401, 1], [499, 556, 1], [224, 229, 0], [583, 507, \n 0], [415, 307, 0], [416, 507, 0], [284, 561, 0], [543, 417, 0], [418, \n 506, 0], [220, 157, 0], [295, 419, 0], [295, 420, 0], [541, 62, 0], [52,\n 421, 0], [60, 160, 0], [535, 161, 0], [267, 282, 0], [52, 365, 0], [28,\n 27, 0], [30, 201, 1], [422, 81, 0], [119, 425, 0], [423, 425, 0], [424,\n 425, 0], [426, 428, 0], [427, 428, 0], [19, 428, 1], [45, 429, 0], [44,\n 429, 0], [505, 429, 0], [231, 431, 1], [190, 431, 1], [430, 431, 0], [\n 286, 433, 0], [432, 433, 0], [506, 433, 0], [23, 434, 0], [400, 434, 0],\n [500, 434, 0], [32, 436, 0], [435, 436, 0], [78, 436, 1], [86, 438, 1],\n [437, 438, 0], [221, 438, 0], [207, 439, 0], [516, 439, 0], [513, 439, \n 0], [181, 441, 1], [440, 441, 0], [504, 441, 1], [135, 442, 0], [109, \n 442, 0], [112, 442, 0], [113, 443, 0], [132, 443, 0], [107, 443, 0], [\n 444, 445, 0], [112, 445, 0], [109, 445, 0], [119, 447, 1], [100, 447, 1\n ], [446, 447, 0], [124, 448, 0], [125, 448, 0], [131, 448, 0], [449, \n 450, 0], [173, 450, 0], [184, 450, 0], [144, 451, 0], [140, 451, 0], [\n 514, 451, 0], [537, 585, 1], [141, 585, 0], [584, 585, 0], [522, 454, 0\n ], [144, 454, 0], [453, 454, 0], [199, 456, 0], [140, 456, 0], [455, \n 456, 0], [537, 456, 0], [538, 457, 0], [153, 457, 0], [176, 457, 0], [\n 524, 459, 0], [458, 459, 0], [134, 459, 0], [460, 461, 0], [150, 461, 0\n ], [149, 461, 0], [521, 463, 0], [462, 463, 0], [538, 463, 0], [110, \n 464, 0], [90, 464, 0], [165, 464, 0], [458, 465, 0], [134, 465, 0], [\n 524, 465, 0], [466, 467, 0], [110, 467, 0], [165, 467, 0], [468, 469, 0\n ], [541, 469, 0], [490, 469, 0], [263, 471, 0], [470, 471, 0], [534, \n 471, 0], [136, 472, 0], [110, 472, 0], [251, 472, 0], [226, 474, 0], [\n 473, 474, 0], [257, 474, 0], [6, 474, 1], [299, 475, 1], [3, 475, 0], [\n 210, 475, 0], [297, 476, 0], [296, 476, 0], [295, 476, 0], [313, 478, 1\n ], [477, 478, 0], [245, 478, 0], [479, 481, 0], [565, 481, 0], [480, \n 481, 0], [415, 482, 0], [56, 482, 0], [409, 482, 0], [483, 484, 0], [3,\n 484, 0], [301, 484, 0], [233, 485, 0], [392, 485, 0], [391, 485, 0], [\n 579, 488, 0], [486, 488, 0], [487, 488, 0], [270, 489, 0], [331, 489, 0\n ], [396, 489, 1], [519, 253, 0], [382, 349, 1], [349, 351, 0], [459, \n 465, 0], [549, 550, 0], [550, 551, 0], [194, 195, 0], [247, 248, 0], [2,\n 294, 0], [549, 551, 0], [54, 365, 0], [131, 265, 0], [91, 92, 0], [247,\n 249, 0], [186, 191, 0], [129, 173, 0], [96, 202, 0], [53, 320, 0], [24,\n 396, 0], [133, 156, 0], [442, 452, 0], [445, 452, 0], [247, 250, 0], [\n 187, 195, 0], [216, 236, 0], [244, 389, 0], [394, 406, 0], [442, 445, 0\n ], [442, 444, 0], [198, 472, 0], [464, 467, 0], [198, 251, 0], [112, \n 143, 0], [2, 490, 0], [5, 491, 0], [10, 492, 0], [12, 493, 0], [13, 494,\n 0], [15, 495, 0], [18, 496, 0], [20, 497, 0], [22, 498, 0], [24, 499, 0\n ], [26, 500, 0], [30, 501, 0], [32, 502, 0], [37, 503, 0], [42, 504, 0],\n [46, 505, 0], [52, 506, 0], [56, 507, 0], [61, 508, 0], [68, 509, 0], [\n 69, 510, 0], [74, 511, 0], [78, 512, 0], [86, 513, 0], [87, 514, 0], [\n 94, 515, 0], [95, 516, 0], [96, 517, 0], [99, 518, 0], [100, 519, 0], [\n 104, 520, 0], [105, 521, 0], [106, 522, 0], [107, 523, 0], [117, 524, 0\n ], [120, 525, 0], [123, 526, 0], [124, 527, 0], [125, 528, 0], [128, \n 529, 0], [129, 530, 0], [138, 531, 0], [143, 532, 0], [156, 533, 0], [\n 157, 534, 0], [159, 535, 0], [160, 536, 0], [165, 537, 0], [184, 538, 0\n ], [191, 539, 0], [195, 540, 0], [201, 541, 0], [220, 542, 0], [231, \n 543, 0], [232, 544, 0], [233, 545, 0], [236, 546, 0], [245, 547, 0], [\n 246, 548, 0], [248, 549, 0], [249, 550, 0], [250, 551, 0], [259, 552, 0\n ], [261, 553, 0], [262, 554, 0], [265, 555, 0], [270, 556, 0], [277, \n 557, 0], [279, 558, 0], [280, 559, 0], [290, 560, 0], [301, 561, 0], [\n 305, 562, 0], [306, 563, 0], [310, 564, 0], [313, 565, 0], [315, 566, 0\n ], [320, 567, 0], [330, 568, 0], [332, 569, 0], [334, 570, 0], [336, \n 571, 0], [349, 572, 0], [351, 573, 0], [358, 574, 0], [360, 575, 0], [\n 380, 576, 0], [382, 577, 0], [383, 578, 0], [389, 579, 0], [401, 580, 0\n ], [402, 581, 0], [409, 582, 0], [415, 583, 0], [444, 584, 0], [452, \n 585, 0]]'], {}), '([[586, 1, 0], [589, 108, 0], [590, 108, 0], [593, 112, 0], [594, 114,\n 0], [595, 115, 0], [598, 118, 0], [599, 119, 0], [601, 119, 0], [602, \n 121, 0], [603, 526, 0], [607, 127, 0], [608, 127, 0], [609, 529, 0], [\n 612, 493, 0], [613, 130, 0], [614, 130, 0], [616, 132, 0], [617, 133, 0\n ], [618, 133, 0], [619, 134, 0], [621, 136, 0], [623, 139, 0], [624, 14,\n 0], [628, 142, 0], [629, 145, 0], [632, 145, 0], [637, 148, 0], [638, \n 149, 0], [640, 153, 0], [641, 155, 0], [642, 533, 0], [643, 534, 0], [\n 646, 536, 0], [647, 536, 0], [650, 166, 0], [652, 167, 0], [655, 170, 0\n ], [661, 177, 0], [663, 178, 0], [666, 180, 0], [668, 183, 0], [670, \n 183, 0], [672, 185, 0], [676, 19, 0], [681, 197, 0], [683, 200, 0], [\n 687, 202, 0], [689, 204, 0], [691, 209, 0], [693, 21, 0], [694, 21, 0],\n [695, 210, 0], [696, 211, 0], [697, 211, 0], [698, 212, 0], [702, 215, \n 0], [704, 217, 0], [705, 217, 0], [707, 219, 0], [708, 221, 0], [711, \n 224, 0], [713, 225, 0], [714, 225, 0], [716, 226, 0], [717, 227, 0], [\n 719, 229, 0], [722, 545, 0], [724, 238, 0], [727, 243, 0], [728, 244, 0\n ], [730, 547, 0], [731, 548, 0], [732, 247, 0], [735, 253, 0], [737, \n 256, 0], [738, 258, 0], [741, 264, 0], [742, 264, 0], [743, 500, 0], [\n 746, 273, 0], [747, 273, 0], [748, 274, 0], [749, 274, 0], [750, 557, 0\n ], [753, 28, 0], [758, 286, 0], [760, 287, 0], [762, 289, 0], [763, 560,\n 0], [765, 560, 0], [767, 292, 0], [769, 293, 0], [771, 297, 0], [772, 3,\n 0], [774, 300, 0], [776, 300, 0], [777, 300, 0], [778, 300, 0], [781, \n 303, 0], [784, 563, 0], [785, 501, 0], [787, 308, 0], [788, 311, 0], [\n 789, 565, 0], [791, 314, 0], [792, 316, 0], [795, 319, 0], [801, 327, 0\n ], [802, 327, 0], [805, 328, 0], [806, 328, 0], [808, 329, 0], [809, \n 329, 0], [811, 568, 0], [814, 570, 0], [816, 335, 0], [817, 571, 0], [\n 821, 338, 0], [822, 339, 0], [826, 339, 0], [829, 345, 0], [830, 345, 0\n ], [835, 572, 0], [836, 572, 0], [837, 350, 0], [839, 350, 0], [841, \n 573, 0], [843, 352, 0], [844, 352, 0], [845, 356, 0], [849, 574, 0], [\n 850, 574, 0], [851, 575, 0], [853, 362, 0], [854, 363, 0], [855, 363, 0\n ], [856, 363, 0], [857, 365, 0], [858, 368, 0], [859, 368, 0], [860, \n 371, 0], [862, 372, 0], [863, 374, 0], [864, 374, 0], [865, 375, 0], [\n 867, 376, 0], [869, 503, 0], [870, 503, 0], [872, 378, 0], [873, 576, 0\n ], [874, 576, 0], [875, 381, 0], [877, 578, 0], [882, 388, 0], [883, \n 388, 0], [886, 394, 0], [889, 397, 0], [890, 40, 0], [895, 580, 0], [\n 896, 581, 0], [898, 403, 0], [900, 405, 0], [902, 405, 0], [903, 406, 0\n ], [905, 413, 0], [906, 414, 0], [907, 583, 0], [909, 417, 0], [913, \n 422, 0], [915, 423, 0], [917, 43, 0], [918, 424, 0], [920, 428, 0], [\n 921, 428, 0], [922, 429, 0], [923, 432, 0], [925, 44, 0], [928, 435, 0],\n [931, 439, 0], [934, 45, 0], [935, 45, 0], [936, 445, 0], [937, 447, 0],\n [939, 450, 0], [940, 451, 0], [942, 458, 0], [944, 458, 0], [945, 459, \n 0], [950, 462, 0], [952, 47, 0], [958, 478, 0], [959, 478, 0], [960, \n 479, 0], [963, 481, 0], [965, 49, 0], [966, 49, 0], [967, 49, 0], [968,\n 486, 0], [969, 486, 0], [971, 51, 0], [973, 506, 0], [976, 58, 0], [977,\n 59, 0], [978, 491, 0], [981, 62, 0], [982, 62, 0], [983, 62, 0], [984, \n 63, 0], [985, 63, 0], [986, 64, 0], [987, 65, 0], [988, 66, 0], [990, \n 67, 0], [993, 67, 0], [994, 67, 0], [995, 509, 0], [997, 510, 0], [999,\n 70, 0], [1000, 71, 0], [1002, 71, 0], [1003, 72, 0], [1007, 511, 0], [\n 1008, 75, 0], [1010, 79, 0], [1011, 79, 0], [1012, 81, 0], [1018, 514, \n 0], [1023, 515, 0], [1026, 518, 0], [1027, 218, 0], [1028, 221, 0], [\n 1029, 268, 0], [1030, 269, 0], [1031, 498, 0], [1032, 1, 0], [1033, 3, \n 0], [1034, 4, 0], [1035, 6, 0], [1036, 7, 0], [1037, 8, 0], [1038, 9, 0\n ], [1039, 11, 0], [1040, 14, 0], [1041, 16, 0], [1042, 17, 0], [1044, \n 21, 0], [1046, 25, 0], [1047, 27, 0], [1048, 28, 0], [1049, 29, 0], [\n 1050, 31, 0], [1051, 33, 0], [1052, 34, 0], [1053, 35, 0], [1054, 36, 0\n ], [1055, 38, 0], [1056, 39, 0], [1057, 40, 0], [1058, 41, 0], [1059, \n 43, 0], [1060, 44, 0], [1061, 45, 0], [1062, 47, 0], [1063, 48, 0], [\n 1064, 49, 0], [1065, 50, 0], [1066, 51, 0], [1067, 53, 0], [1072, 59, 0\n ], [1073, 60, 0], [1074, 62, 0], [1075, 63, 0], [1076, 64, 0], [1077, \n 65, 0], [1078, 66, 0], [1079, 67, 0], [1080, 70, 0], [1081, 71, 0], [\n 1082, 72, 0], [1083, 73, 0], [1084, 75, 0], [1085, 76, 0], [1086, 77, 0\n ], [1087, 79, 0], [1088, 80, 0], [1089, 81, 0], [1090, 82, 0], [1091, \n 83, 0], [1092, 84, 0], [1093, 85, 0], [1094, 88, 0], [1095, 89, 0], [\n 1096, 90, 0], [1097, 91, 0], [1098, 92, 0], [1099, 93, 0], [1101, 98, 0\n ], [1102, 101, 0], [1103, 102, 0], [1104, 103, 0], [1105, 108, 0], [\n 1106, 109, 0], [1107, 110, 0], [1108, 111, 0], [1109, 112, 0], [1110, \n 113, 0], [1111, 114, 0], [1112, 115, 0], [1113, 116, 0], [1114, 118, 0],\n [1115, 119, 0], [1116, 121, 0], [1117, 122, 0], [1118, 126, 0], [1119, \n 127, 0], [1120, 130, 0], [1121, 131, 0], [1122, 132, 0], [1123, 133, 0],\n [1124, 134, 0], [1125, 135, 0], [1126, 136, 0], [1127, 137, 0], [1128, \n 139, 0], [1129, 140, 0], [1130, 141, 0], [1131, 142, 0], [1132, 144, 0],\n [1133, 145, 0], [1134, 146, 0], [1135, 147, 0], [1136, 148, 0], [1137, \n 149, 0], [1138, 150, 0], [1139, 151, 0], [1140, 152, 0], [1141, 153, 0],\n [1142, 154, 0], [1143, 155, 0], [1144, 158, 0], [1145, 161, 0], [1146, \n 162, 0], [1147, 163, 0], [1148, 164, 0], [1149, 166, 0], [1150, 167, 0],\n [1151, 168, 0], [1152, 169, 0], [1153, 170, 0], [1154, 171, 0], [1155, \n 172, 0], [1156, 173, 0], [1157, 174, 0], [1158, 175, 0], [1159, 176, 0],\n [1160, 177, 0], [1161, 178, 0], [1162, 179, 0], [1163, 180, 0], [1164, \n 181, 0], [1165, 182, 0], [1166, 183, 0], [1167, 185, 0], [1168, 186, 0],\n [1169, 187, 0], [1170, 188, 0], [1171, 189, 0], [1172, 190, 0], [1173, \n 192, 0], [1174, 193, 0], [1175, 194, 0], [1176, 196, 0], [1177, 197, 0],\n [1178, 198, 0], [1179, 199, 0], [1180, 200, 0], [1181, 202, 0], [1182, \n 203, 0], [1183, 204, 0], [1184, 205, 0], [1185, 206, 0], [1186, 207, 0],\n [1187, 208, 0], [1188, 209, 0], [1189, 210, 0], [1190, 211, 0], [1191, \n 212, 0], [1192, 213, 0], [1196, 217, 0], [1197, 218, 0], [1198, 219, 0],\n [1199, 221, 0], [1200, 222, 0], [1204, 226, 0], [1206, 228, 0], [1208, \n 230, 0], [1211, 237, 0], [1212, 238, 0], [1213, 239, 0], [1214, 240, 0],\n [1215, 241, 0], [1216, 242, 0], [1217, 243, 0], [1218, 244, 0], [1219, \n 247, 0], [1220, 251, 0], [1221, 252, 0], [1222, 253, 0], [1224, 255, 0],\n [1225, 256, 0], [1226, 257, 0], [1227, 258, 0], [1229, 263, 0], [1230, \n 264, 0], [1231, 266, 0], [1232, 267, 0], [1233, 268, 0], [1235, 271, 0],\n [1236, 272, 0], [1237, 273, 0], [1238, 274, 0], [1239, 275, 0], [1240, \n 276, 0], [1241, 278, 0], [1242, 281, 0], [1243, 282, 0], [1244, 283, 0],\n [1245, 284, 0], [1246, 285, 0], [1247, 286, 0], [1248, 287, 0], [1249, \n 288, 0], [1250, 289, 0], [1251, 291, 0], [1252, 292, 0], [1253, 293, 0],\n [1254, 294, 0], [1255, 295, 0], [1256, 296, 0], [1257, 297, 0], [1258, \n 298, 0], [1259, 299, 0], [1260, 300, 0], [1261, 302, 0], [1264, 307, 0],\n [1266, 309, 0], [1267, 311, 0], [1268, 312, 0], [1269, 314, 0], [1270, \n 316, 0], [1274, 321, 0], [1275, 322, 0], [1276, 323, 0], [1277, 324, 0],\n [1278, 325, 0], [1280, 327, 0], [1281, 328, 0], [1282, 329, 0], [1283, \n 331, 0], [1285, 335, 0], [1286, 337, 0], [1287, 338, 0], [1288, 339, 0],\n [1289, 340, 0], [1290, 341, 0], [1291, 342, 0], [1292, 343, 0], [1293, \n 344, 0], [1294, 345, 0], [1295, 346, 0], [1296, 347, 0], [1297, 348, 0],\n [1298, 350, 0], [1299, 352, 0], [1300, 353, 0], [1301, 354, 0], [1302, \n 355, 0], [1303, 356, 0], [1306, 361, 0], [1307, 362, 0], [1308, 363, 0],\n [1312, 367, 0], [1316, 371, 0], [1317, 372, 0], [1319, 374, 0], [1323, \n 378, 0], [1326, 384, 0], [1327, 385, 0], [1328, 386, 0], [1329, 387, 0],\n [1331, 390, 0], [1333, 392, 0], [1336, 395, 0], [1337, 396, 0], [1339, \n 398, 0], [1340, 399, 0], [1345, 406, 0], [1346, 407, 0], [1348, 410, 0],\n [1349, 411, 0], [1356, 419, 0], [1357, 420, 0], [1359, 422, 0], [1360, \n 423, 0], [1361, 424, 0], [1362, 425, 0], [1366, 429, 0], [1367, 430, 0],\n [1372, 435, 0], [1373, 436, 0], [1374, 437, 0], [1375, 438, 0], [1376, \n 439, 0], [1377, 440, 0], [1378, 441, 0], [1379, 442, 0], [1380, 443, 0],\n [1381, 445, 0], [1382, 446, 0], [1383, 447, 0], [1384, 448, 0], [1385, \n 449, 0], [1386, 450, 0], [1387, 451, 0], [1388, 453, 0], [1389, 454, 0],\n [1390, 455, 0], [1391, 456, 0], [1392, 457, 0], [1393, 458, 0], [1394, \n 459, 0], [1395, 460, 0], [1396, 461, 0], [1397, 462, 0], [1398, 463, 0],\n [1399, 464, 0], [1400, 465, 0], [1401, 466, 0], [1402, 467, 0], [1403, \n 468, 0], [1404, 469, 0], [1405, 470, 0], [1406, 471, 0], [1407, 472, 0],\n [1408, 473, 0], [1409, 474, 0], [1410, 475, 0], [1411, 476, 0], [1418, \n 483, 0], [1419, 484, 0], [1421, 486, 0], [1422, 487, 0], [1423, 488, 0],\n [1424, 489, 0], [1425, 490, 0], [1426, 491, 0], [1427, 492, 0], [1428, \n 493, 0], [1429, 494, 0], [1431, 496, 0], [1432, 497, 0], [1433, 498, 0],\n [1434, 499, 0], [1435, 500, 0], [1436, 501, 0], [1437, 502, 0], [1438, \n 503, 0], [1439, 504, 0], [1440, 505, 0], [1443, 508, 0], [1444, 509, 0],\n [1445, 510, 0], [1446, 511, 0], [1447, 512, 0], [1448, 513, 0], [1449, \n 514, 0], [1450, 515, 0], [1451, 516, 0], [1452, 517, 0], [1453, 518, 0],\n [1454, 519, 0], [1455, 520, 0], [1456, 521, 0], [1457, 522, 0], [1458, \n 523, 0], [1459, 524, 0], [1460, 525, 0], [1461, 526, 0], [1462, 527, 0],\n [1463, 528, 0], [1464, 529, 0], [1465, 530, 0], [1466, 531, 0], [1467, \n 532, 0], [1468, 533, 0], [1469, 534, 0], [1470, 535, 0], [1471, 536, 0],\n [1472, 537, 0], [1473, 538, 0], [1474, 539, 0], [1475, 540, 0], [1476, \n 541, 0], [1477, 542, 0], [1483, 548, 0], [1484, 549, 0], [1485, 550, 0],\n [1486, 551, 0], [1489, 555, 0], [1490, 556, 0], [1491, 557, 0], [1492, \n 558, 0], [1493, 559, 0], [1494, 560, 0], [1495, 561, 0], [1497, 563, 0],\n [1498, 564, 0], [1501, 567, 0], [1503, 569, 0], [1504, 570, 0], [1505, \n 571, 0], [1506, 572, 0], [1507, 573, 0], [1510, 576, 0], [1511, 577, 0],\n [1512, 578, 0], [1513, 579, 0], [1518, 584, 0], [1519, 585, 0], [1520, \n 1, 0], [1521, 3, 0], [1522, 4, 0], [1523, 6, 0], [1524, 7, 0], [1525, 8,\n 0], [1526, 9, 0], [1527, 11, 0], [1528, 14, 0], [1529, 16, 0], [1530, \n 17, 0], [1531, 19, 0], [1532, 21, 0], [1534, 25, 0], [1535, 27, 0], [\n 1536, 28, 0], [1537, 29, 0], [1538, 31, 0], [1539, 33, 0], [1540, 34, 0\n ], [1541, 35, 0], [1542, 36, 0], [1543, 38, 0], [1544, 39, 0], [1545, \n 40, 0], [1546, 41, 0], [1547, 43, 0], [1548, 44, 0], [1549, 45, 0], [\n 1550, 47, 0], [1551, 48, 0], [1552, 49, 0], [1553, 50, 0], [1554, 51, 0\n ], [1555, 53, 0], [1556, 54, 0], [1557, 55, 0], [1558, 57, 0], [1559, \n 58, 0], [1560, 59, 0], [1561, 60, 0], [1562, 62, 0], [1563, 63, 0], [\n 1564, 64, 0], [1565, 65, 0], [1566, 66, 0], [1567, 67, 0], [1568, 70, 0\n ], [1569, 71, 0], [1570, 72, 0], [1571, 73, 0], [1572, 75, 0], [1573, \n 76, 0], [1574, 77, 0], [1575, 79, 0], [1576, 80, 0], [1577, 81, 0], [\n 1578, 82, 0], [1579, 83, 0], [1580, 84, 0], [1581, 85, 0], [1582, 88, 0\n ], [1583, 89, 0], [1584, 90, 0], [1585, 91, 0], [1586, 92, 0], [1587, \n 93, 0], [1588, 97, 0], [1589, 98, 0], [1590, 101, 0], [1591, 102, 0], [\n 1592, 103, 0], [1593, 108, 0], [1594, 109, 0], [1595, 110, 0], [1596, \n 111, 0], [1597, 112, 0], [1598, 113, 0], [1599, 114, 0], [1600, 115, 0],\n [1601, 116, 0], [1602, 118, 0], [1603, 119, 0], [1604, 121, 0], [1605, \n 122, 0], [1606, 126, 0], [1607, 127, 0], [1608, 130, 0], [1609, 131, 0],\n [1610, 132, 0], [1611, 133, 0], [1612, 134, 0], [1613, 135, 0], [1614, \n 136, 0], [1615, 137, 0], [1616, 139, 0], [1617, 140, 0], [1618, 141, 0],\n [1619, 142, 0], [1620, 144, 0], [1621, 145, 0], [1622, 146, 0], [1623, \n 147, 0], [1624, 148, 0], [1625, 149, 0], [1626, 150, 0], [1627, 151, 0],\n [1628, 152, 0], [1629, 153, 0], [1630, 154, 0], [1631, 155, 0], [1632, \n 158, 0], [1633, 161, 0], [1634, 162, 0], [1635, 163, 0], [1636, 164, 0],\n [1637, 166, 0], [1638, 167, 0], [1639, 168, 0], [1640, 169, 0], [1641, \n 170, 0], [1642, 171, 0], [1643, 172, 0], [1644, 173, 0], [1645, 174, 0],\n [1646, 175, 0], [1647, 176, 0], [1648, 177, 0], [1649, 178, 0], [1650, \n 179, 0], [1651, 180, 0], [1652, 181, 0], [1653, 182, 0], [1654, 183, 0],\n [1655, 185, 0], [1656, 186, 0], [1657, 187, 0], [1658, 188, 0], [1659, \n 189, 0], [1660, 190, 0], [1661, 192, 0], [1662, 193, 0], [1663, 194, 0],\n [1664, 196, 0], [1665, 197, 0], [1666, 198, 0], [1667, 199, 0], [1668, \n 200, 0], [1669, 202, 0], [1670, 203, 0], [1671, 204, 0], [1672, 205, 0],\n [1673, 206, 0], [1674, 207, 0], [1675, 208, 0], [1676, 209, 0], [1677, \n 210, 0], [1678, 211, 0], [1679, 212, 0], [1680, 213, 0], [1681, 214, 0],\n [1682, 215, 0], [1683, 216, 0], [1684, 217, 0], [1685, 218, 0], [1686, \n 219, 0], [1687, 221, 0], [1688, 222, 0], [1689, 223, 0], [1690, 224, 0],\n [1691, 225, 0], [1692, 226, 0], [1693, 227, 0], [1694, 228, 0], [1695, \n 229, 0], [1696, 230, 0], [1697, 234, 0], [1698, 235, 0], [1699, 237, 0],\n [1700, 238, 0], [1701, 239, 0], [1702, 240, 0], [1703, 241, 0], [1704, \n 242, 0], [1705, 243, 0], [1706, 244, 0], [1707, 247, 0], [1708, 251, 0],\n [1709, 252, 0], [1710, 253, 0], [1711, 254, 0], [1712, 255, 0], [1713, \n 256, 0], [1714, 257, 0], [1715, 258, 0], [1716, 260, 0], [1717, 263, 0],\n [1718, 264, 0], [1719, 266, 0], [1720, 267, 0], [1721, 268, 0], [1722, \n 269, 0], [1723, 271, 0], [1724, 272, 0], [1725, 273, 0], [1726, 274, 0],\n [1727, 275, 0], [1728, 276, 0], [1729, 278, 0], [1730, 281, 0], [1731, \n 282, 0], [1732, 283, 0], [1733, 284, 0], [1734, 285, 0], [1735, 286, 0],\n [1736, 287, 0], [1737, 288, 0], [1738, 289, 0], [1739, 291, 0], [1740, \n 292, 0], [1741, 293, 0], [1742, 294, 0], [1743, 295, 0], [1744, 296, 0],\n [1745, 297, 0], [1746, 298, 0], [1747, 299, 0], [1748, 300, 0], [1749, \n 302, 0], [1750, 303, 0], [1751, 304, 0], [1752, 307, 0], [1753, 308, 0],\n [1754, 309, 0], [1755, 311, 0], [1756, 312, 0], [1757, 314, 0], [1758, \n 316, 0], [1759, 317, 0], [1760, 318, 0], [1761, 319, 0], [1762, 321, 0],\n [1763, 322, 0], [1764, 323, 0], [1765, 324, 0], [1766, 325, 0], [1767, \n 326, 0], [1768, 327, 0], [1769, 328, 0], [1770, 329, 0], [1771, 331, 0],\n [1772, 333, 0], [1773, 335, 0], [1774, 337, 0], [1775, 338, 0], [1776, \n 339, 0], [1777, 340, 0], [1778, 341, 0], [1779, 342, 0], [1780, 343, 0],\n [1781, 344, 0], [1782, 345, 0], [1783, 346, 0], [1784, 347, 0], [1785, \n 348, 0], [1786, 350, 0], [1787, 352, 0], [1788, 353, 0], [1789, 354, 0],\n [1790, 355, 0], [1791, 356, 0], [1792, 357, 0], [1793, 359, 0], [1794, \n 361, 0], [1795, 362, 0], [1796, 363, 0], [1797, 364, 0], [1798, 365, 0],\n [1799, 366, 0], [1800, 367, 0], [1801, 368, 0], [1802, 369, 0], [1803, \n 370, 0], [1804, 371, 0], [1805, 372, 0], [1806, 373, 0], [1807, 374, 0],\n [1808, 375, 0], [1809, 376, 0], [1810, 377, 0], [1811, 378, 0], [1812, \n 379, 0], [1813, 381, 0], [1814, 384, 0], [1815, 385, 0], [1816, 386, 0],\n [1817, 387, 0], [1818, 388, 0], [1819, 390, 0], [1820, 391, 0], [1821, \n 392, 0], [1822, 393, 0], [1823, 394, 0], [1824, 395, 0], [1825, 396, 0],\n [1826, 397, 0], [1827, 398, 0], [1828, 399, 0], [1830, 403, 0], [1831, \n 404, 0], [1832, 405, 0], [1833, 406, 0], [1834, 407, 0], [1836, 410, 0],\n [1837, 411, 0], [1838, 412, 0], [1839, 413, 0], [1840, 414, 0], [1841, \n 416, 0], [1842, 417, 0], [1843, 418, 0], [1844, 419, 0], [1845, 420, 0],\n [1846, 421, 0], [1847, 422, 0], [1848, 423, 0], [1849, 424, 0], [1850, \n 425, 0], [1851, 426, 0], [1852, 427, 0], [1853, 428, 0], [1854, 429, 0],\n [1855, 430, 0], [1856, 431, 0], [1857, 432, 0], [1858, 433, 0], [1860, \n 435, 0], [1861, 436, 0], [1862, 437, 0], [1863, 438, 0], [1864, 439, 0],\n [1865, 440, 0], [1866, 441, 0], [1867, 442, 0], [1868, 443, 0], [1869, \n 445, 0], [1870, 446, 0], [1871, 447, 0], [1872, 448, 0], [1873, 449, 0],\n [1874, 450, 0], [1875, 451, 0], [1876, 453, 0], [1877, 454, 0], [1878, \n 455, 0], [1879, 456, 0], [1880, 457, 0], [1881, 458, 0], [1882, 459, 0],\n [1883, 460, 0], [1884, 461, 0], [1885, 462, 0], [1886, 463, 0], [1887, \n 464, 0], [1888, 465, 0], [1889, 466, 0], [1890, 467, 0], [1891, 468, 0],\n [1892, 469, 0], [1893, 470, 0], [1894, 471, 0], [1895, 472, 0], [1896, \n 473, 0], [1897, 474, 0], [1898, 475, 0], [1899, 476, 0], [1900, 477, 0],\n [1901, 478, 0], [1902, 479, 0], [1903, 480, 0], [1904, 481, 0], [1905, \n 482, 0], [1906, 483, 0], [1907, 484, 0], [1908, 485, 0], [1909, 486, 0],\n [1910, 487, 0], [1911, 488, 0], [1912, 489, 0], [1913, 490, 0], [1914, \n 491, 0], [1915, 492, 0], [1916, 493, 0], [1917, 494, 0], [1918, 495, 0],\n [1919, 496, 0], [1920, 497, 0], [1921, 498, 0], [1922, 499, 0], [1923, \n 500, 0], [1924, 501, 0], [1925, 502, 0], [1926, 503, 0], [1927, 504, 0],\n [1928, 505, 0], [1929, 506, 0], [1930, 507, 0], [1931, 508, 0], [1932, \n 509, 0], [1933, 510, 0], [1934, 511, 0], [1935, 512, 0], [1936, 513, 0],\n [1937, 514, 0], [1938, 515, 0], [1939, 516, 0], [1940, 517, 0], [1941, \n 518, 0], [1942, 519, 0], [1943, 520, 0], [1944, 521, 0], [1945, 522, 0],\n [1946, 523, 0], [1947, 524, 0], [1948, 525, 0], [1949, 526, 0], [1950, \n 527, 0], [1951, 528, 0], [1952, 529, 0], [1953, 530, 0], [1954, 531, 0],\n [1955, 532, 0], [1956, 533, 0], [1957, 534, 0], [1958, 535, 0], [1959, \n 536, 0], [1960, 537, 0], [1961, 538, 0], [1962, 539, 0], [1963, 540, 0],\n [1964, 541, 0], [1965, 542, 0], [1966, 543, 0], [1967, 544, 0], [1968, \n 545, 0], [1969, 546, 0], [1970, 547, 0], [1971, 548, 0], [1972, 549, 0],\n [1973, 550, 0], [1974, 551, 0], [1975, 552, 0], [1976, 553, 0], [1977, \n 554, 0], [1978, 555, 0], [1979, 556, 0], [1980, 557, 0], [1981, 558, 0],\n [1982, 559, 0], [1983, 560, 0], [1984, 561, 0], [1985, 562, 0], [1986, \n 563, 0], [1987, 564, 0], [1988, 565, 0], [1989, 566, 0], [1990, 567, 0],\n [1991, 568, 0], [1992, 569, 0], [1993, 570, 0], [1994, 571, 0], [1995, \n 572, 0], [1996, 573, 0], [1997, 574, 0], [1998, 575, 0], [1999, 576, 0],\n [2000, 577, 0], [2001, 578, 0], [2002, 579, 0], [2003, 580, 0], [2004, \n 581, 0], [2005, 582, 0], [2006, 583, 0], [2007, 584, 0], [2008, 585, 0],\n [1, 490, 0], [3, 4, 1], [491, 6, 0], [7, 5, 0], [8, 9, 0], [492, 11, 0],\n [11, 493, 0], [492, 493, 1], [494, 14, 0], [13, 15, 0], [16, 5, 0], [17,\n 18, 1], [17, 12, 0], [14, 495, 0], [494, 19, 0], [20, 21, 0], [20, 22, \n 1], [497, 23, 0], [23, 499, 1], [25, 26, 0], [25, 22, 0], [23, 27, 0],\n [28, 23, 0], [8, 21, 0], [9, 29, 0], [30, 25, 1], [31, 32, 1], [32, 33,\n 1], [34, 35, 0], [35, 36, 0], [490, 6, 1], [37, 10, 1], [10, 38, 0], [\n 37, 38, 1], [39, 40, 1], [39, 41, 1], [42, 41, 1], [18, 42, 1], [492, \n 43, 1], [44, 45, 0], [44, 505, 0], [46, 12, 0], [47, 48, 0], [49, 50, 0\n ], [31, 33, 1], [31, 51, 0], [52, 53, 1], [52, 54, 0], [506, 55, 0], [\n 506, 507, 1], [57, 506, 0], [57, 58, 0], [58, 506, 0], [59, 60, 1], [\n 508, 62, 0], [30, 61, 1], [63, 506, 0], [13, 64, 0], [65, 66, 1], [59, \n 67, 0], [61, 67, 0], [68, 69, 1], [70, 69, 1], [71, 72, 1], [73, 74, 1],\n [37, 75, 1], [72, 75, 0], [37, 72, 1], [76, 77, 1], [77, 51, 0], [73, \n 72, 1], [18, 40, 1], [492, 45, 1], [10, 74, 1], [45, 511, 1], [78, 32, \n 1], [79, 80, 0], [81, 79, 1], [34, 82, 0], [83, 84, 0], [83, 499, 0], [\n 85, 86, 0], [87, 86, 1], [88, 89, 0], [90, 86, 1], [91, 86, 0], [86, 92,\n 0], [86, 93, 0], [94, 86, 1], [86, 95, 1], [513, 517, 0], [97, 66, 1],\n [42, 98, 0], [99, 100, 1], [42, 101, 0], [102, 42, 1], [103, 87, 0], [\n 104, 103, 0], [105, 87, 0], [106, 107, 0], [108, 107, 0], [109, 106, 0],\n [110, 111, 1], [87, 112, 0], [113, 87, 0], [87, 85, 1], [110, 114, 1],\n [115, 116, 0], [117, 118, 0], [117, 119, 0], [117, 120, 1], [121, 122, \n 0], [123, 124, 0], [125, 126, 0], [127, 119, 0], [118, 128, 0], [121, \n 119, 0], [530, 527, 0], [125, 130, 0], [125, 123, 0], [131, 132, 0], [\n 133, 123, 0], [524, 134, 0], [135, 136, 0], [123, 131, 0], [117, 128, 1\n ], [137, 521, 0], [531, 514, 0], [139, 521, 0], [140, 514, 0], [522, \n 141, 0], [142, 523, 0], [530, 526, 0], [140, 532, 0], [142, 144, 0], [\n 140, 522, 0], [145, 146, 0], [147, 523, 0], [144, 523, 0], [139, 523, 0\n ], [140, 141, 0], [528, 526, 0], [528, 148, 0], [149, 150, 0], [145, \n 528, 0], [530, 151, 0], [524, 152, 0], [149, 525, 1], [139, 514, 0], [\n 126, 120, 1], [530, 153, 0], [528, 147, 1], [528, 154, 0], [130, 120, 1\n ], [528, 155, 1], [524, 533, 0], [524, 149, 0], [154, 150, 0], [157, \n 110, 1], [119, 158, 0], [159, 60, 0], [536, 161, 0], [115, 151, 0], [\n 162, 134, 0], [115, 526, 0], [138, 87, 0], [123, 163, 0], [112, 164, 0],\n [112, 165, 0], [166, 165, 0], [167, 537, 0], [168, 104, 0], [531, 520, \n 0], [139, 520, 0], [520, 169, 0], [168, 105, 0], [520, 170, 0], [171, \n 89, 0], [521, 172, 0], [123, 173, 0], [521, 174, 0], [37, 39, 0], [530,\n 175, 0], [530, 176, 0], [88, 530, 0], [177, 496, 1], [178, 525, 0], [\n 179, 493, 1], [180, 181, 1], [182, 180, 0], [179, 181, 0], [180, 493, 1\n ], [183, 30, 0], [183, 21, 0], [538, 185, 0], [538, 89, 0], [184, 186, \n 0], [184, 187, 0], [520, 172, 0], [89, 175, 0], [185, 89, 0], [89, 188,\n 0], [189, 190, 0], [539, 172, 0], [504, 192, 0], [105, 186, 0], [105, \n 187, 0], [539, 193, 0], [187, 194, 0], [539, 540, 0], [539, 196, 0], [\n 197, 540, 0], [110, 198, 0], [197, 539, 0], [199, 537, 0], [134, 526, 0\n ], [200, 193, 0], [4, 201, 1], [202, 86, 0], [85, 203, 0], [147, 204, 0\n ], [147, 205, 0], [123, 206, 0], [537, 207, 0], [165, 208, 0], [4, 94, \n 1], [4, 2, 0], [209, 4, 0], [119, 163, 0], [210, 3, 0], [99, 211, 0], [\n 99, 69, 1], [212, 99, 0], [213, 214, 0], [510, 215, 0], [128, 69, 1], [\n 216, 69, 1], [217, 98, 0], [504, 218, 0], [177, 504, 1], [219, 209, 0],\n [219, 220, 0], [94, 95, 1], [159, 221, 1], [34, 161, 0], [222, 221, 0],\n [211, 52, 1], [215, 223, 1], [224, 215, 0], [225, 224, 1], [224, 223, 0\n ], [226, 6, 0], [7, 3, 1], [216, 227, 1], [228, 229, 0], [227, 230, 0],\n [231, 53, 1], [544, 545, 0], [234, 235, 1], [546, 214, 1], [233, 227, 0\n ], [237, 238, 0], [212, 100, 0], [519, 239, 0], [238, 519, 0], [213, \n 240, 0], [241, 242, 1], [70, 241, 0], [509, 213, 0], [68, 243, 0], [243,\n 244, 0], [68, 244, 0], [544, 547, 1], [245, 227, 1], [246, 208, 0], [\n 112, 208, 0], [165, 247, 0], [537, 549, 0], [537, 550, 0], [537, 551, 0\n ], [110, 251, 0], [510, 252, 1], [529, 253, 1], [237, 239, 1], [254, \n 238, 1], [69, 255, 0], [510, 225, 1], [256, 257, 0], [258, 190, 0], [\n 258, 259, 0], [260, 261, 1], [554, 553, 1], [515, 263, 0], [14, 264, 1],\n [116, 555, 0], [151, 116, 0], [111, 114, 1], [77, 111, 0], [266, 525, 0\n ], [267, 120, 1], [268, 269, 0], [556, 271, 0], [556, 272, 0], [529, \n 273, 0], [128, 274, 0], [34, 275, 0], [503, 276, 0], [503, 504, 1], [\n 177, 218, 1], [277, 278, 1], [557, 558, 1], [557, 559, 1], [559, 558, 1\n ], [277, 78, 1], [277, 279, 1], [78, 279, 0], [281, 282, 0], [283, 161,\n 1], [268, 161, 1], [256, 284, 0], [515, 516, 1], [263, 516, 0], [516, \n 285, 0], [63, 286, 0], [287, 516, 0], [8, 102, 1], [8, 101, 1], [80, \n 288, 0], [80, 289, 0], [276, 560, 0], [37, 290, 0], [290, 74, 1], [512,\n 291, 0], [78, 292, 1], [199, 548, 0], [491, 293, 0], [4, 294, 0], [490,\n 541, 1], [491, 295, 0], [491, 296, 0], [295, 297, 0], [508, 161, 0], [\n 117, 123, 0], [133, 117, 0], [71, 74, 1], [74, 278, 1], [298, 515, 0],\n [5, 299, 0], [32, 292, 1], [5, 29, 1], [503, 560, 0], [300, 301, 1], [\n 51, 300, 0], [244, 302, 1], [31, 302, 1], [51, 282, 1], [303, 304, 0],\n [305, 304, 0], [305, 259, 0], [306, 307, 1], [305, 308, 0], [305, 309, \n 0], [310, 309, 1], [306, 309, 1], [311, 280, 0], [280, 278, 1], [311, \n 32, 1], [13, 312, 1], [313, 314, 0], [312, 313, 1], [547, 566, 1], [245,\n 315, 1], [312, 316, 0], [312, 314, 0], [554, 546, 1], [262, 216, 1], [\n 317, 233, 0], [318, 317, 0], [231, 52, 1], [319, 567, 0], [557, 321, 0],\n [277, 65, 1], [322, 288, 1], [322, 323, 0], [277, 324, 1], [324, 325, 0\n ], [277, 325, 0], [326, 327, 0], [328, 326, 1], [328, 327, 1], [326, \n 329, 0], [568, 329, 1], [568, 326, 0], [332, 78, 1], [333, 306, 0], [\n 332, 333, 0], [332, 334, 0], [66, 334, 1], [330, 335, 1], [336, 66, 0],\n [330, 336, 1], [68, 70, 0], [509, 337, 1], [324, 288, 0], [338, 559, 0],\n [339, 559, 0], [339, 340, 1], [559, 340, 1], [341, 292, 0], [557, 342, \n 0], [558, 343, 0], [502, 340, 1], [72, 32, 1], [344, 345, 0], [346, 47,\n 0], [46, 47, 0], [346, 345, 0], [347, 328, 0], [347, 348, 1], [571, 348,\n 1], [347, 572, 0], [571, 570, 1], [14, 350, 0], [350, 573, 0], [15, 351,\n 1], [352, 15, 0], [15, 335, 1], [232, 227, 0], [565, 544, 1], [235, 567,\n 1], [567, 286, 0], [353, 519, 0], [354, 353, 0], [355, 354, 0], [354, \n 356, 0], [357, 358, 0], [574, 359, 0], [235, 575, 0], [167, 361, 0], [\n 528, 362, 0], [363, 344, 0], [259, 364, 1], [54, 56, 0], [365, 364, 0],\n [231, 366, 0], [30, 367, 0], [61, 367, 1], [254, 368, 0], [254, 369, 0],\n [254, 370, 0], [99, 358, 0], [354, 519, 0], [571, 371, 0], [207, 372, 0\n ], [57, 373, 0], [209, 374, 0], [375, 376, 0], [376, 377, 0], [16, 49, \n 0], [318, 377, 0], [378, 297, 0], [562, 379, 0], [576, 563, 0], [576, \n 381, 0], [577, 576, 1], [244, 383, 0], [244, 306, 1], [383, 306, 1], [\n 380, 306, 0], [252, 225, 0], [220, 76, 0], [542, 384, 0], [385, 384, 0],\n [542, 385, 0], [386, 385, 0], [387, 578, 0], [332, 388, 1], [382, 332, \n 1], [382, 388, 0], [579, 578, 0], [577, 387, 1], [144, 390, 0], [37, 49,\n 0], [391, 233, 0], [392, 310, 0], [260, 393, 0], [394, 230, 0], [395, \n 282, 1], [395, 244, 0], [25, 396, 1], [81, 74, 0], [278, 80, 1], [81, \n 278, 1], [569, 570, 0], [397, 552, 0], [542, 398, 0], [398, 385, 0], [\n 399, 499, 0], [83, 399, 0], [498, 400, 0], [518, 239, 1], [575, 543, 0],\n [401, 360, 0], [580, 581, 0], [401, 402, 0], [403, 231, 0], [189, 360, \n 1], [234, 404, 0], [235, 404, 1], [235, 580, 0], [216, 259, 0], [405, \n 259, 0], [405, 318, 0], [406, 230, 0], [542, 407, 0], [23, 408, 0], [\n 577, 348, 0], [562, 564, 1], [582, 507, 0], [27, 410, 0], [501, 27, 0],\n [27, 411, 0], [411, 410, 0], [403, 360, 0], [412, 360, 0], [326, 413, 0\n ], [414, 413, 0], [6, 297, 0], [554, 580, 1], [262, 401, 1], [499, 556,\n 1], [224, 229, 0], [583, 507, 0], [415, 307, 0], [416, 507, 0], [284, \n 561, 0], [543, 417, 0], [418, 506, 0], [220, 157, 0], [295, 419, 0], [\n 295, 420, 0], [541, 62, 0], [52, 421, 0], [60, 160, 0], [535, 161, 0],\n [267, 282, 0], [52, 365, 0], [28, 27, 0], [30, 201, 1], [422, 81, 0], [\n 119, 425, 0], [423, 425, 0], [424, 425, 0], [426, 428, 0], [427, 428, 0\n ], [19, 428, 1], [45, 429, 0], [44, 429, 0], [505, 429, 0], [231, 431, \n 1], [190, 431, 1], [430, 431, 0], [286, 433, 0], [432, 433, 0], [506, \n 433, 0], [23, 434, 0], [400, 434, 0], [500, 434, 0], [32, 436, 0], [435,\n 436, 0], [78, 436, 1], [86, 438, 1], [437, 438, 0], [221, 438, 0], [207,\n 439, 0], [516, 439, 0], [513, 439, 0], [181, 441, 1], [440, 441, 0], [\n 504, 441, 1], [135, 442, 0], [109, 442, 0], [112, 442, 0], [113, 443, 0\n ], [132, 443, 0], [107, 443, 0], [444, 445, 0], [112, 445, 0], [109, \n 445, 0], [119, 447, 1], [100, 447, 1], [446, 447, 0], [124, 448, 0], [\n 125, 448, 0], [131, 448, 0], [449, 450, 0], [173, 450, 0], [184, 450, 0\n ], [144, 451, 0], [140, 451, 0], [514, 451, 0], [537, 585, 1], [141, \n 585, 0], [584, 585, 0], [522, 454, 0], [144, 454, 0], [453, 454, 0], [\n 199, 456, 0], [140, 456, 0], [455, 456, 0], [537, 456, 0], [538, 457, 0\n ], [153, 457, 0], [176, 457, 0], [524, 459, 0], [458, 459, 0], [134, \n 459, 0], [460, 461, 0], [150, 461, 0], [149, 461, 0], [521, 463, 0], [\n 462, 463, 0], [538, 463, 0], [110, 464, 0], [90, 464, 0], [165, 464, 0],\n [458, 465, 0], [134, 465, 0], [524, 465, 0], [466, 467, 0], [110, 467, \n 0], [165, 467, 0], [468, 469, 0], [541, 469, 0], [490, 469, 0], [263, \n 471, 0], [470, 471, 0], [534, 471, 0], [136, 472, 0], [110, 472, 0], [\n 251, 472, 0], [226, 474, 0], [473, 474, 0], [257, 474, 0], [6, 474, 1],\n [299, 475, 1], [3, 475, 0], [210, 475, 0], [297, 476, 0], [296, 476, 0],\n [295, 476, 0], [313, 478, 1], [477, 478, 0], [245, 478, 0], [479, 481, \n 0], [565, 481, 0], [480, 481, 0], [415, 482, 0], [56, 482, 0], [409, \n 482, 0], [483, 484, 0], [3, 484, 0], [301, 484, 0], [233, 485, 0], [392,\n 485, 0], [391, 485, 0], [579, 488, 0], [486, 488, 0], [487, 488, 0], [\n 270, 489, 0], [331, 489, 0], [396, 489, 1], [519, 253, 0], [382, 349, 1\n ], [349, 351, 0], [459, 465, 0], [549, 550, 0], [550, 551, 0], [194, \n 195, 0], [247, 248, 0], [2, 294, 0], [549, 551, 0], [54, 365, 0], [131,\n 265, 0], [91, 92, 0], [247, 249, 0], [186, 191, 0], [129, 173, 0], [96,\n 202, 0], [53, 320, 0], [24, 396, 0], [133, 156, 0], [442, 452, 0], [445,\n 452, 0], [247, 250, 0], [187, 195, 0], [216, 236, 0], [244, 389, 0], [\n 394, 406, 0], [442, 445, 0], [442, 444, 0], [198, 472, 0], [464, 467, 0\n ], [198, 251, 0], [112, 143, 0], [2, 490, 0], [5, 491, 0], [10, 492, 0],\n [12, 493, 0], [13, 494, 0], [15, 495, 0], [18, 496, 0], [20, 497, 0], [\n 22, 498, 0], [24, 499, 0], [26, 500, 0], [30, 501, 0], [32, 502, 0], [\n 37, 503, 0], [42, 504, 0], [46, 505, 0], [52, 506, 0], [56, 507, 0], [\n 61, 508, 0], [68, 509, 0], [69, 510, 0], [74, 511, 0], [78, 512, 0], [\n 86, 513, 0], [87, 514, 0], [94, 515, 0], [95, 516, 0], [96, 517, 0], [\n 99, 518, 0], [100, 519, 0], [104, 520, 0], [105, 521, 0], [106, 522, 0],\n [107, 523, 0], [117, 524, 0], [120, 525, 0], [123, 526, 0], [124, 527, \n 0], [125, 528, 0], [128, 529, 0], [129, 530, 0], [138, 531, 0], [143, \n 532, 0], [156, 533, 0], [157, 534, 0], [159, 535, 0], [160, 536, 0], [\n 165, 537, 0], [184, 538, 0], [191, 539, 0], [195, 540, 0], [201, 541, 0\n ], [220, 542, 0], [231, 543, 0], [232, 544, 0], [233, 545, 0], [236, \n 546, 0], [245, 547, 0], [246, 548, 0], [248, 549, 0], [249, 550, 0], [\n 250, 551, 0], [259, 552, 0], [261, 553, 0], [262, 554, 0], [265, 555, 0\n ], [270, 556, 0], [277, 557, 0], [279, 558, 0], [280, 559, 0], [290, \n 560, 0], [301, 561, 0], [305, 562, 0], [306, 563, 0], [310, 564, 0], [\n 313, 565, 0], [315, 566, 0], [320, 567, 0], [330, 568, 0], [332, 569, 0\n ], [334, 570, 0], [336, 571, 0], [349, 572, 0], [351, 573, 0], [358, \n 574, 0], [360, 575, 0], [380, 576, 0], [382, 577, 0], [383, 578, 0], [\n 389, 579, 0], [401, 580, 0], [402, 581, 0], [409, 582, 0], [415, 583, 0\n ], [444, 584, 0], [452, 585, 0]])\n', (511765, 542753), False, 'from numpy import array\n')] |
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Created on 18/10/11 16:32:52
@author: <NAME>
"""
from collections import Counter
from typing import List
import numpy as np
from antNRE.lib.k_means import KMeans
class DataLoader:
def __init__(self,
datasets: List,
n_bkts: int) -> None:
len_counter = Counter()
for instance in datasets:
len_counter[len(instance['tokens'])] += 1
self._bucket_sizes = KMeans(n_bkts, len_counter).splits
self._buckets = [[] for i in range(n_bkts)]
len2bkt = {}
prev_size = -1
for bkt_idx, size in enumerate(self._bucket_sizes):
len2bkt.update(zip(range(prev_size+1, size+1), [bkt_idx] * (size - prev_size)))
prev_size = size
self._record = []
for instance in datasets:
bkt_idx = len2bkt[len(instance['tokens'])]
self._buckets[bkt_idx].append(instance)
idx = len(self._buckets[bkt_idx]) - 1
self._record.append((bkt_idx, idx))
def get_batches(self, batch_size: int, shuffle: bool = True) -> List:
batches = []
for bkt_idx, bucket in enumerate(self._buckets):
bucket_len = len(bucket)
print(bucket_len, self._bucket_sizes[bkt_idx])
n_tokens = bucket_len * self._bucket_sizes[bkt_idx]
n_splits = max(n_tokens // batch_size, 1)
range_func = np.random.permutation if shuffle else np.arange
for bkt_batch in np.array_split(range_func(bucket_len), n_splits):
batches.append((bkt_idx, bkt_batch))
if shuffle:
np.random.shuffle(batches)
return batches
def get_batch_instance(self, batch) -> List:
bkt_idx, bkt_instance_idxes = batch
return [self._buckets[bkt_idx][bkt_instance_idx]
for bkt_instance_idx in bkt_instance_idxes]
def get_datasets(self) -> List:
return [self._buckets[bkt_idx][bkt_instance_idx] for bkt_idx, bkt_instance_idx in self._record]
| [
"collections.Counter",
"antNRE.lib.k_means.KMeans",
"numpy.random.shuffle"
] | [((318, 327), 'collections.Counter', 'Counter', ([], {}), '()\n', (325, 327), False, 'from collections import Counter\n'), ((443, 470), 'antNRE.lib.k_means.KMeans', 'KMeans', (['n_bkts', 'len_counter'], {}), '(n_bkts, len_counter)\n', (449, 470), False, 'from antNRE.lib.k_means import KMeans\n'), ((1603, 1629), 'numpy.random.shuffle', 'np.random.shuffle', (['batches'], {}), '(batches)\n', (1620, 1629), True, 'import numpy as np\n')] |
#!/usr/bin/env python
# coding: utf-8
# In[3]:
from sklearn import svm, datasets
from sklearn.model_selection import train_test_split
import numpy as np
import pandas as pd
url = "C:/Users/USUARIO/Desktop/Tesis/centroides-Apriori4.csv"
datos = pd.read_csv(url, sep=",")
# In[5]:
iris = datos
# Add noisy features
random_state = np.random.RandomState(0)
n_samples, n_features = X.shape
X = np.c_[X, random_state.randn(n_samples, 200 * n_features)]
# Limit to the two first classes, and split into training and test
X_train, X_test, y_train, y_test = train_test_split(X[y < 2], y[y < 2],
test_size=.5,
random_state=random_state)
# Create a simple classifier
classifier = svm.LinearSVC(random_state=random_state)
classifier.fit(X_train, y_train)
y_score = classifier.decision_function(X_test)
print(y)
print(X)
# In[6]:
from sklearn.metrics import average_precision_score
average_precision = average_precision_score(y_test, y_score)
print('Average precision-recall score: {0:0.2f}'.format(
average_precision))
# In[7]:
from sklearn.metrics import precision_recall_curve
from sklearn.metrics import plot_precision_recall_curve
import matplotlib.pyplot as plt
disp = plot_precision_recall_curve(classifier, X_test, y_test)
disp.ax_.set_title('2-class Precision-Recall curve: '
'AP={0:0.2f}'.format(average_precision))
# In[8]:
from sklearn.preprocessing import label_binarize
# Use label_binarize to be multi-label like settings
Y = label_binarize(y, classes=[0, 1, 2])
n_classes = Y.shape[1]
# Split into training and test
X_train, X_test, Y_train, Y_test = train_test_split(X, Y, test_size=.5,
random_state=random_state)
# We use OneVsRestClassifier for multi-label prediction
from sklearn.multiclass import OneVsRestClassifier
# Run classifier
classifier = OneVsRestClassifier(svm.LinearSVC(random_state=random_state))
classifier.fit(X_train, Y_train)
y_score = classifier.decision_function(X_test)
# In[9]:
from sklearn.metrics import precision_recall_curve
from sklearn.metrics import average_precision_score
# For each class
precision = dict()
recall = dict()
average_precision = dict()
for i in range(n_classes):
precision[i], recall[i], _ = precision_recall_curve(Y_test[:, i],
y_score[:, i])
average_precision[i] = average_precision_score(Y_test[:, i], y_score[:, i])
# A "micro-average": quantifying score on all classes jointly
precision["micro"], recall["micro"], _ = precision_recall_curve(Y_test.ravel(),
y_score.ravel())
average_precision["micro"] = average_precision_score(Y_test, y_score,
average="micro")
print('Average precision score, micro-averaged over all classes: {0:0.2f}'
.format(average_precision["micro"]))
# In[10]:
plt.figure()
plt.step(recall['micro'], precision['micro'], where='post')
plt.xlabel('Recall')
plt.ylabel('Precision')
plt.ylim([0.0, 1.05])
plt.xlim([0.0, 1.0])
plt.title(
'Average precision score, micro-averaged over all classes: AP={0:0.2f}'
.format(average_precision["micro"]))
# In[11]:
from itertools import cycle
# setup plot details
colors = cycle(['navy', 'turquoise', 'darkorange', 'cornflowerblue', 'teal'])
plt.figure(figsize=(7, 8))
f_scores = np.linspace(0.2, 0.8, num=4)
lines = []
labels = []
for f_score in f_scores:
x = np.linspace(0.01, 1)
y = f_score * x / (2 * x - f_score)
l, = plt.plot(x[y >= 0], y[y >= 0], color='gray', alpha=0.2)
plt.annotate('f1={0:0.1f}'.format(f_score), xy=(0.9, y[45] + 0.02))
lines.append(l)
labels.append('iso-f1 curves')
l, = plt.plot(recall["micro"], precision["micro"], color='gold', lw=2)
lines.append(l)
labels.append('micro-average Precision-recall (area = {0:0.2f})'
''.format(average_precision["micro"]))
for i, color in zip(range(n_classes), colors):
l, = plt.plot(recall[i], precision[i], color=color, lw=2)
lines.append(l)
labels.append('Precision-recall for class {0} (area = {1:0.2f})'
''.format(i, average_precision[i]))
fig = plt.gcf()
fig.subplots_adjust(bottom=0.25)
plt.xlim([0.0, 1.0])
plt.ylim([0.0, 1.05])
plt.xlabel('Recall')
plt.ylabel('Precision')
plt.title('Extension of Precision-Recall curve to multi-class')
plt.legend(lines, labels, loc=(0, -.38), prop=dict(size=14))
plt.show()
# In[ ]:
| [
"sklearn.preprocessing.label_binarize",
"pandas.read_csv",
"matplotlib.pyplot.ylabel",
"numpy.random.RandomState",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"numpy.linspace",
"matplotlib.pyplot.ylim",
"itertools.cycle",
"sklearn.model_selection.train_test_split",
"sklearn.metrics.ave... | [((248, 273), 'pandas.read_csv', 'pd.read_csv', (['url'], {'sep': '""","""'}), "(url, sep=',')\n", (259, 273), True, 'import pandas as pd\n'), ((338, 362), 'numpy.random.RandomState', 'np.random.RandomState', (['(0)'], {}), '(0)\n', (359, 362), True, 'import numpy as np\n'), ((560, 638), 'sklearn.model_selection.train_test_split', 'train_test_split', (['X[y < 2]', 'y[y < 2]'], {'test_size': '(0.5)', 'random_state': 'random_state'}), '(X[y < 2], y[y < 2], test_size=0.5, random_state=random_state)\n', (576, 638), False, 'from sklearn.model_selection import train_test_split\n'), ((785, 825), 'sklearn.svm.LinearSVC', 'svm.LinearSVC', ([], {'random_state': 'random_state'}), '(random_state=random_state)\n', (798, 825), False, 'from sklearn import svm, datasets\n'), ((1009, 1049), 'sklearn.metrics.average_precision_score', 'average_precision_score', (['y_test', 'y_score'], {}), '(y_test, y_score)\n', (1032, 1049), False, 'from sklearn.metrics import average_precision_score\n'), ((1294, 1349), 'sklearn.metrics.plot_precision_recall_curve', 'plot_precision_recall_curve', (['classifier', 'X_test', 'y_test'], {}), '(classifier, X_test, y_test)\n', (1321, 1349), False, 'from sklearn.metrics import plot_precision_recall_curve\n'), ((1584, 1620), 'sklearn.preprocessing.label_binarize', 'label_binarize', (['y'], {'classes': '[0, 1, 2]'}), '(y, classes=[0, 1, 2])\n', (1598, 1620), False, 'from sklearn.preprocessing import label_binarize\n'), ((1711, 1775), 'sklearn.model_selection.train_test_split', 'train_test_split', (['X', 'Y'], {'test_size': '(0.5)', 'random_state': 'random_state'}), '(X, Y, test_size=0.5, random_state=random_state)\n', (1727, 1775), False, 'from sklearn.model_selection import train_test_split\n'), ((2745, 2802), 'sklearn.metrics.average_precision_score', 'average_precision_score', (['Y_test', 'y_score'], {'average': '"""micro"""'}), "(Y_test, y_score, average='micro')\n", (2768, 2802), False, 'from sklearn.metrics import average_precision_score\n'), ((2988, 3000), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (2998, 3000), True, 'import matplotlib.pyplot as plt\n'), ((3001, 3060), 'matplotlib.pyplot.step', 'plt.step', (["recall['micro']", "precision['micro']"], {'where': '"""post"""'}), "(recall['micro'], precision['micro'], where='post')\n", (3009, 3060), True, 'import matplotlib.pyplot as plt\n'), ((3062, 3082), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Recall"""'], {}), "('Recall')\n", (3072, 3082), True, 'import matplotlib.pyplot as plt\n'), ((3083, 3106), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Precision"""'], {}), "('Precision')\n", (3093, 3106), True, 'import matplotlib.pyplot as plt\n'), ((3107, 3128), 'matplotlib.pyplot.ylim', 'plt.ylim', (['[0.0, 1.05]'], {}), '([0.0, 1.05])\n', (3115, 3128), True, 'import matplotlib.pyplot as plt\n'), ((3129, 3149), 'matplotlib.pyplot.xlim', 'plt.xlim', (['[0.0, 1.0]'], {}), '([0.0, 1.0])\n', (3137, 3149), True, 'import matplotlib.pyplot as plt\n'), ((3350, 3418), 'itertools.cycle', 'cycle', (["['navy', 'turquoise', 'darkorange', 'cornflowerblue', 'teal']"], {}), "(['navy', 'turquoise', 'darkorange', 'cornflowerblue', 'teal'])\n", (3355, 3418), False, 'from itertools import cycle\n'), ((3420, 3446), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(7, 8)'}), '(figsize=(7, 8))\n', (3430, 3446), True, 'import matplotlib.pyplot as plt\n'), ((3458, 3486), 'numpy.linspace', 'np.linspace', (['(0.2)', '(0.8)'], {'num': '(4)'}), '(0.2, 0.8, num=4)\n', (3469, 3486), True, 'import numpy as np\n'), ((3794, 3859), 'matplotlib.pyplot.plot', 'plt.plot', (["recall['micro']", "precision['micro']"], {'color': '"""gold"""', 'lw': '(2)'}), "(recall['micro'], precision['micro'], color='gold', lw=2)\n", (3802, 3859), True, 'import matplotlib.pyplot as plt\n'), ((4254, 4263), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (4261, 4263), True, 'import matplotlib.pyplot as plt\n'), ((4297, 4317), 'matplotlib.pyplot.xlim', 'plt.xlim', (['[0.0, 1.0]'], {}), '([0.0, 1.0])\n', (4305, 4317), True, 'import matplotlib.pyplot as plt\n'), ((4318, 4339), 'matplotlib.pyplot.ylim', 'plt.ylim', (['[0.0, 1.05]'], {}), '([0.0, 1.05])\n', (4326, 4339), True, 'import matplotlib.pyplot as plt\n'), ((4340, 4360), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Recall"""'], {}), "('Recall')\n", (4350, 4360), True, 'import matplotlib.pyplot as plt\n'), ((4361, 4384), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Precision"""'], {}), "('Precision')\n", (4371, 4384), True, 'import matplotlib.pyplot as plt\n'), ((4385, 4448), 'matplotlib.pyplot.title', 'plt.title', (['"""Extension of Precision-Recall curve to multi-class"""'], {}), "('Extension of Precision-Recall curve to multi-class')\n", (4394, 4448), True, 'import matplotlib.pyplot as plt\n'), ((4512, 4522), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (4520, 4522), True, 'import matplotlib.pyplot as plt\n'), ((1986, 2026), 'sklearn.svm.LinearSVC', 'svm.LinearSVC', ([], {'random_state': 'random_state'}), '(random_state=random_state)\n', (1999, 2026), False, 'from sklearn import svm, datasets\n'), ((2364, 2415), 'sklearn.metrics.precision_recall_curve', 'precision_recall_curve', (['Y_test[:, i]', 'y_score[:, i]'], {}), '(Y_test[:, i], y_score[:, i])\n', (2386, 2415), False, 'from sklearn.metrics import precision_recall_curve\n'), ((2499, 2551), 'sklearn.metrics.average_precision_score', 'average_precision_score', (['Y_test[:, i]', 'y_score[:, i]'], {}), '(Y_test[:, i], y_score[:, i])\n', (2522, 2551), False, 'from sklearn.metrics import average_precision_score\n'), ((3543, 3563), 'numpy.linspace', 'np.linspace', (['(0.01)', '(1)'], {}), '(0.01, 1)\n', (3554, 3563), True, 'import numpy as np\n'), ((3613, 3668), 'matplotlib.pyplot.plot', 'plt.plot', (['x[y >= 0]', 'y[y >= 0]'], {'color': '"""gray"""', 'alpha': '(0.2)'}), "(x[y >= 0], y[y >= 0], color='gray', alpha=0.2)\n", (3621, 3668), True, 'import matplotlib.pyplot as plt\n'), ((4051, 4103), 'matplotlib.pyplot.plot', 'plt.plot', (['recall[i]', 'precision[i]'], {'color': 'color', 'lw': '(2)'}), '(recall[i], precision[i], color=color, lw=2)\n', (4059, 4103), True, 'import matplotlib.pyplot as plt\n')] |
# Hacktoberfest 2021
# Problem: House Prices
#
# You are given an array that represents house prices.
# Calculate and output the percentage of houses that are within one standard deviation from the mean.
# To calculate the percentage, divide the number of houses that satisfy the condition by the total number of houses, and multiply the result by 100.
import numpy as np
data = np.array([150000, 125000, 320000, 540000, 200000, 120000, 160000, 230000, 280000, 290000, 300000, 500000, 420000, 100000, 150000, 280000])
m = np.mean(data)
d = np.std(data)
y1 = m-d
y2 = m+d
s = len(data [(data > y1) & (data < y2)])
r = (s/len(data))*100
print(r) | [
"numpy.array",
"numpy.mean",
"numpy.std"
] | [((391, 534), 'numpy.array', 'np.array', (['[150000, 125000, 320000, 540000, 200000, 120000, 160000, 230000, 280000, \n 290000, 300000, 500000, 420000, 100000, 150000, 280000]'], {}), '([150000, 125000, 320000, 540000, 200000, 120000, 160000, 230000, \n 280000, 290000, 300000, 500000, 420000, 100000, 150000, 280000])\n', (399, 534), True, 'import numpy as np\n'), ((537, 550), 'numpy.mean', 'np.mean', (['data'], {}), '(data)\n', (544, 550), True, 'import numpy as np\n'), ((556, 568), 'numpy.std', 'np.std', (['data'], {}), '(data)\n', (562, 568), True, 'import numpy as np\n')] |
#xyz Sep 2017
'''
Data preparation for datsets: stanford_indoor, scannet, ETH_semantic3D
Core idea: store all the information in hdf5 file itself
# The workflow to use this tool:
Raw_H5f -> Sorted_H5f -> merge block to get new block size -> randomnly select n points
-> Normed_H5f -> Net_Provider
## Raw_H5f store the raw data of dataset, which contains several datasets: xyz, label, color.... Each dataset
stores the whole data for one dtype data.
(.rh5)
## Sorted_H5f contains lots of lots of dataset. Each dataset stores all types of data within a spacial block.
The point number of each block/dataset can be fix or not.
(.sh5) Use class Sort_RawH5f to generate sorted file with unfixed point num in each block, and a small stride / step size.
Then merge .sh5 file with small stride/step size to get larger size block.
(.rsh5) Randomly sampling .sh5 file to get Sorted_H5f file with fixed point number in each block.
## Normed_H5f includes 4 datasets: data, label, raw_xyz, pred_logit
(.sph5) This file is directly used to feed data for deep learning models.
.sph5 file is generated by Sorted_H5f.file_normalize_to_NormedH5F()
## For all three files, show_h5f_summary_info() can use to show the info summary.
## scannet_block_sample.py is the basic usage for these classes.
'''
from __future__ import print_function
import os
import sys
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
ROOT_DIR = os.path.dirname(BASE_DIR)
sys.path.append(BASE_DIR)
sys.path.append(os.path.join(ROOT_DIR,'utils'))
#from plyfile import (PlyData, PlyElement, make2d, PlyParseError, PlyProperty)
import math
import numpy as np
import h5py
import glob
import time
import multiprocessing as mp
import itertools
import ply_util
#from global_para import GLOBAL_PARA
sys.path.append(BASE_DIR+'/MATTERPORT_util')
sys.path.append(BASE_DIR+'/KITTI_util')
from MATTERPORT_util import get_cat40_from_rawcat
sys.path.append(BASE_DIR+'/all_datasets_meta')
from datasets_meta import DatasetsMeta
import csv,pickle
from configs import get_gsbb_config, NETCONFIG
import magic
''' Def key words list
Search with "name:" to find the definition.
rootb_split_idxmap
bxmh5
flatten_bidxmap
sg_bidxmap
baseb_exact_flat_num
global_step
'''
''' Important functions
get_blockids_of_dif_stride_step
get_bidxmap
get_all_bidxmaps
gsbb naming: get_pyramid_flag
file_saveas_pyramid_feed
'''
''' step, stride Configuration
(1) set_whole_scene_stride_step: limit stride, step of every cascade by whole scene scope. By calling update_align_scope_by_stridetoalign_
(2) IsLimitStrideStepCascades_Inbxmap : Always limit step and stride larger than last cascade in bxmh5
'''
SHOW_ONLY_ERR = False
DEBUGTMP = False
ENABLECHECK = False
START_T = time.time()
g_h5_num_row_1M = 5*1000
ROOT_DIR = os.path.dirname(BASE_DIR)
UPER_DIR = os.path.dirname(ROOT_DIR)
DATA_DIR = os.path.join(ROOT_DIR,'data')
DATA_SOURCE_NAME_LIST = ['ETH','STANFORD_INDOOR3D','SCANNET','MATTERPORT','KITTI', 'MODELNET40']
FLOAT_BIAS = 1e-8
def isin_sorted( a,v ):
i = np.searchsorted(a,v)
if i>=a.size: return False
r = a[i] == v
return r
def get_stride_step_name(block_stride,block_step):
if not block_step[0] == block_step[1]:
import pdb; pdb.set_trace() # XXX BREAKPOINT
pass
assert block_stride[0] == block_stride[1]
#assert (block_step[0] == block_step[2] and block_stride[0] == block_stride[2]) or (block_step[2]<0 and block_stride[2]<0)
def get_str(v):
return str(v).replace('.','d')
#assert (v*100) % 1 < 1e-8, "v=%s"%(str(v))
#if v%1!=0:
# if (v*10)%1 < 1e-8: return '%dd%d'%(v,v%1*10)
# else: return '%dd%d%d'%(v,v%1*10, v*10%1*10)
#else: return str(int(v))
if block_stride[2] == -1:
return 'stride-%s-step-%s'%(get_str(block_stride[0]),get_str(block_step[0]))
else:
return 'stride_%s_step_%s'%(get_str(block_stride[0]),get_str(block_step[0]))
def rm_file_name_midpart(fn,rm_part):
base_name = os.path.basename(fn)
parts = base_name.split(rm_part)
if len(parts)>1:
new_bn = parts[0] + parts[1]
else:
new_bn = parts[0]
new_fn = os.path.join(os.path.dirname(fn),new_bn)
return new_fn
def copy_h5f_attrs(h5f_attrs):
attrs = {}
for e in h5f_attrs:
attrs[e] = h5f_attrs[e]
return attrs
def get_mean_sg_sample_rate(sum_sg_bidxmap_sample_num):
global_block_num = sum_sg_bidxmap_sample_num[0,4]
subblock_num = sum_sg_bidxmap_sample_num[:,-1]
mean_sg_bidxmap_sample_num = np.copy(sum_sg_bidxmap_sample_num)
for i in range(sum_sg_bidxmap_sample_num.shape[0]):
mean_sg_bidxmap_sample_num[i,0:5] /= mean_sg_bidxmap_sample_num[i,4]
mean_sg_bidxmap_sample_num[i,5:8] /= mean_sg_bidxmap_sample_num[i,7]
return mean_sg_bidxmap_sample_num,global_block_num,subblock_num
def get_mean_flatten_sample_rate(sum_flatten_bmap_sample_num):
global_block_num = sum_flatten_bmap_sample_num[0,2]
mean_flatten_bmap_sample_num = np.copy(sum_flatten_bmap_sample_num)
for i in range(sum_flatten_bmap_sample_num.shape[0]):
mean_flatten_bmap_sample_num[i,0:3] /= mean_flatten_bmap_sample_num[i,2]
return mean_flatten_bmap_sample_num,global_block_num
def get_attrs_str(attrs):
attrs_str = ''
for a in attrs:
elenames = ''
if type(attrs[a])==str:
a_str = attrs[a]
else:
a_val = attrs[a]
if a == "sum_sg_bidxmap_sample_num":
a_val,global_block_num,subblock_num = get_mean_sg_sample_rate(a_val)
elenames = str(GlobalSubBaseBLOCK.get_sg_bidxmap_sample_num_elename()) + '\n' + 'global_block_num: %d'%(global_block_num) + '\tsubblock_num: %s'%(subblock_num) + '\n'
if a == "sum_flatten_bmap_sample_num":
a_val,global_block_num = get_mean_flatten_sample_rate(a_val)
elenames = str(GlobalSubBaseBLOCK.get_flatten_bidxmaps_sample_num_elename()) +'\n' + 'global_block_num: %d'%(global_block_num) + '\n'
a_str = np.array2string(a_val,precision=2,separator=',',suppress_small=True)
attrs_str += ( a+':\n'+elenames+a_str+'\n' )
return attrs_str
def show_h5f_summary_info(h5f):
root_attrs = [attr for attr in h5f.attrs]
summary_str = ''
summary_str += '--------------------------------------------------------------------------\n'
summary_str += 'The root_attr: %s'%(root_attrs) + '\n'
summary_str += get_attrs_str(h5f.attrs) + '\n'
summary_str += '\n--------------------------------------------------------------------------\n'
summary_str += 'The elements in h5f\n'
def show_dset(dset_name,id):
dset_str = ''
if id>10: return dset_str
dset = h5f[dset_name]
dset_str += '# dataset %d: %s shape=%s\n'%(id,dset_name,dset.shape)
if id>6: return dset_str
dset_str += get_attrs_str(dset.attrs) + '\n'
if len(dset.shape)==2:
dset_str += str( dset[0:min(10,dset.shape[0]),:]) + '\n'
if len(dset.shape)==3:
dset_str += str( dset[0:min(2,dset.shape[0]),:] ) + '\n'
elif len(dset.shape)==4:
var = dset[0:min(1,dset.shape[0]),0,0:min(2,dset.shape[2]),:]
dset_str += np.array2string(var,formatter={'float_kind':lambda var:"%0.2f"%var}) + '\n'
dset_str += '\n'
return dset_str
def show_root_ele(ele_name,id):
root_ele_str = ''
ele = h5f[ele_name]
if type(ele) == h5py._hl.group.Group:
root_ele_str += 'The group: %s'%(ele_name) + '\n'
root_ele_str += get_attrs_str(ele.attrs) + '\n'
for dset_name in ele:
root_ele_str += show_dset(ele_name+'/'+dset_name,id)
else:
root_ele_str += show_dset(ele_name,id)
return root_ele_str
k = -1
for k, ele_name in enumerate(h5f):
if ele_name == 'xyz':
summary_str += show_dset(ele_name,k)
continue
summary_str += show_root_ele(ele_name,k)
summary_str += '%d datasets totally'%(k+1)+'\n'
print( summary_str )
return summary_str
def get_sample_choice(org_N,sample_N,random_sampl_pro=None):
'''
all replace with random_choice laer
'''
sample_method='random'
if sample_method == 'random':
if org_N == sample_N:
sample_choice = np.arange(sample_N)
elif org_N > sample_N:
sample_choice = np.random.choice(org_N,sample_N,replace=False,p=random_sampl_pro)
else:
#sample_choice = np.arange(org_N)
new_samp = np.random.choice(org_N,sample_N-org_N)
sample_choice = np.concatenate( (np.arange(org_N),new_samp) )
reduced_num = org_N - sample_N
#str = '%d -> %d %d%%'%(org_N,sample_N,100.0*sample_N/org_N)
#print(str)
return sample_choice,reduced_num
def random_choice(org_vector,sample_N,random_sampl_pro=None, keeporder=True, only_tile_last_one=False):
assert org_vector.ndim == 1
org_N = org_vector.size
if org_N == sample_N:
sampled_vector = org_vector
elif org_N > sample_N:
sampled_vector = np.random.choice(org_vector,sample_N,replace=False,p=random_sampl_pro)
if keeporder:
sampled_vector = np.sort(sampled_vector)
else:
if only_tile_last_one:
new_vector = np.array( [ org_vector[-1] ]*(sample_N-org_N) ).astype(org_vector.dtype)
else:
new_vector = np.random.choice(org_vector,sample_N-org_N,replace=True)
sampled_vector = np.concatenate( [org_vector,new_vector] )
#str = '%d -> %d %d%%'%(org_N,sample_N,100.0*sample_N/org_N)
#print(str)
return sampled_vector
def index_in_sorted(sorted_vector,values):
if values.ndim==0:
values = np.array([values])
assert values.ndim<=1 and sorted_vector.ndim==1
#values_valid = values[np.isin(values,sorted_vector)]
indexs = np.searchsorted(sorted_vector,values)
indexs_valid = []
for j,index in enumerate(indexs):
if index<sorted_vector.size and sorted_vector[index] == values[j]:
indexs_valid.append( index )
indexs_valid = np.array(indexs_valid)
assert indexs_valid.size <= values.size
#assert indexs.size==0 or np.max(indexs) < sorted_vector.size, 'err in index_in_sorted'
return indexs_valid
def check_h5fs_intact(file_name):
if not os.path.exists(file_name):
return False,"file not exist: %s"%(file_name)
f_format = os.path.splitext(file_name)[-1]
if f_format == '.rh5':
return Raw_H5f.check_rh5_intact(file_name)
elif f_format == '.sh5' or f_format == '.rsh5':
return Sorted_H5f.check_sh5_intact(file_name)
elif f_format == '.sph5' or f_format == '.prh5':
return Normed_H5f.check_sph5_intact(file_name)
elif f_format == '.bmh5':
return GlobalSubBaseBLOCK.check_bmh5_intact(file_name)
else:
return False, "file format not recognized %s"%(f_format)
def float_exact_division( A, B ):
C = A / B
r = np.isclose( C, np.rint(C) )
R = r.all()
return R
def my_fix(orgvar):
# why do not use np.fix() directly: np.fix(2.999999) = 2.0
assert orgvar.ndim == 1
rint_var = np.rint(orgvar)
zero_gap = rint_var - orgvar
fix_var = np.copy(orgvar).astype(np.int64)
for i in range(orgvar.size):
if np.isclose(zero_gap[i],0):
fix_var[i] = rint_var[i].astype(np.int64)
else:
fix_var[i] = np.fix(orgvar[i]).astype(np.int64)
return fix_var
def my_ceil(orgvar):
# why do not use np.ceil: np.ceil(12.0000000000000001)=13
assert orgvar.ndim == 1
rint_var = np.rint(orgvar)
zero_gap = rint_var - orgvar
ceil_var = np.copy(orgvar).astype(np.int64)
for i in range(orgvar.size):
if np.isclose(zero_gap[i],0):
ceil_var[i] = rint_var[i].astype(np.int64)
else:
try:
ceil_var[i] = np.ceil(orgvar[i]).astype(np.int64)
except:
import pdb; pdb.set_trace() # XXX BREAKPOINT
pass
return ceil_var
class Raw_H5f():
'''
* raw data:unsorted points,all the time in one dataset
* Each data type as a hdf5 dataset: xyz, intensity, label, color
* class "Sorted_H5f" will sort data to blocks based on this class
'''
file_flag = 'RAW_H5F'
h5_num_row_1M = 50*1000
dtypes = { 'xyz':np.float32, 'nxnynz':np.float32, 'intensity':np.int32, \
'color':np.uint8,'label_category':np.uint32,'label_instance':np.int32,\
'label_material':np.int32, 'label_mesh':np.int32, 'label_raw_category':np.int32 }
num_channels = {'xyz':3,'nxnynz':3,'intensity':1,'color':3,'label_category':1,\
'label_instance':1,'label_material':1,'label_mesh':1, 'label_raw_category':1}
def __init__(self,raw_h5_f,file_name,datasource_name=None):
self.h5f = raw_h5_f
if datasource_name == None:
assert 'datasource_name' in self.h5f.attrs
else:
self.h5f.attrs['datasource_name'] = datasource_name
assert self.h5f.attrs['datasource_name'] in DATA_SOURCE_NAME_LIST
self.datasource_name = self.h5f.attrs['datasource_name']
self.dataset_meta = DatasetsMeta(self.datasource_name)
self.get_summary_info()
self.file_name = file_name
self.num_default_row = 0
def show_h5f_summary_info(self):
print('\n\nsummary of file: ',self.file_name)
return show_h5f_summary_info(self.h5f)
def set_num_default_row(self,N):
self.num_default_row = N
def get_dataset(self,data_name):
if data_name in self.h5f:
return self.h5f[data_name]
assert(data_name in self.dtypes)
nc = self.num_channels[data_name]
dset = self.h5f.create_dataset(data_name,shape=(self.num_default_row,nc),\
maxshape=(None,nc),dtype=self.dtypes[data_name],\
chunks = (self.h5_num_row_1M,nc),\
compression = "gzip")
dset.attrs['valid_num'] = 0
setattr(self,data_name+'_dset',dset)
if 'element_names' not in self.h5f.attrs:
self.h5f.attrs['element_names'] = [data_name]
else:
self.h5f.attrs['element_names'] = [data_name]+[e for e in self.h5f.attrs['element_names']]
return dset
def get_total_num_channels_name_list(self):
total_num_channels = 0
data_name_list = [str(dn) for dn in self.h5f]
for dn in data_name_list:
total_num_channels += self.num_channels[dn]
return total_num_channels,data_name_list
def append_to_dset(self,dset_name,new_data):
self.add_to_dset(dset_name,new_data,None,None)
def get_all_dsets(self,start_idx,end_idx):
out_dset_order = ['xyz','color','label','intensity']
data_list = []
for dset_name in out_dset_order:
if dset_name in self.h5f:
data_k = self.h5f[dset_name][start_idx:end_idx,:]
data_list.append(data_k)
data = np.concatenate(data_list,1)
return data
def add_to_dset(self,dset_name,new_data,start,end):
dset = self.get_dataset(dset_name)
assert dset.ndim == new_data.ndim
valid_n = dset.attrs['valid_num']
if start == None:
start = valid_n
end = start + new_data.shape[0]
if dset.shape[0] < end:
dset.resize((end,)+dset.shape[1:])
if valid_n < end:
dset.attrs['valid_num'] = end
if new_data.ndim==1 and dset.ndim==2 and dset.shape[1]==1:
new_data = np.expand_dims(new_data,1)
dset[start:end,:] = new_data
def rm_invalid(self):
for dset_name in self.h5f:
dset = self.h5f[dset_name]
if 'valid_num' in dset.attrs:
valid_num = dset.attrs['valid_num']
if valid_num < dset.shape[0]:
dset.resize( (valid_num,)+dset.shape[1:] )
def get_summary_info(self):
for dset_name in self.h5f:
setattr(self,dset_name+'_dset',self.h5f[dset_name])
if 'xyz' in self.h5f:
self.total_row_N = self.xyz_dset.shape[0]
self.xyz_max = self.xyz_dset.attrs['max']
self.xyz_min = self.xyz_dset.attrs['min']
self.xyz_scope = self.xyz_max - self.xyz_min
def generate_objfile(self,obj_file_name=None,IsLabelColor=False,xyz_cut_rate=None):
if obj_file_name==None:
base_fn = os.path.basename(self.file_name)
base_fn = os.path.splitext(base_fn)[0]
folder_path = os.path.dirname(self.file_name)
obj_folder = os.path.join(folder_path,'obj/'+base_fn)
print('obj_folder:',obj_folder)
obj_file_name_nocolor = os.path.join(obj_folder,base_fn+'_xyz.obj')
if IsLabelColor:
base_fn = base_fn + '_TrueLabel'
obj_file_name = os.path.join(obj_folder,base_fn+'.obj')
if not os.path.exists(obj_folder):
os.makedirs(obj_folder)
print('automatic obj file name: %s'%(obj_file_name))
with open(obj_file_name,'w') as out_obj_file:
with open(obj_file_name_nocolor,'w') as xyz_obj_file:
xyz_dset = self.xyz_dset
if 'color' in self.h5f:
color_dset = self.color_dset
else:
if 'label_category' in self.h5f:
IsLabelColor = True
if IsLabelColor:
label_category_dset = self.label_category_dset
if xyz_cut_rate != None:
# when rate < 0.5: cut small
# when rate >0.5: cut big
xyz_max = np.array([ np.max(xyz_dset[:,i]) for i in range(3) ])
xyz_min = np.array([ np.min(xyz_dset[:,i]) for i in range(3) ])
xyz_scope = xyz_max - xyz_min
xyz_thres = xyz_scope * xyz_cut_rate + xyz_min
print('xyz_thres = ',str(xyz_thres))
cut_num = 0
row_step = self.h5_num_row_1M * 10
row_N = xyz_dset.shape[0]
for k in range(0,row_N,row_step):
end = min(k+row_step,row_N)
xyz_buf_k = xyz_dset[k:end,:]
if 'color' in self.h5f:
color_buf_k = color_dset[k:end,:]
buf_k = np.hstack((xyz_buf_k,color_buf_k))
else:
buf_k = xyz_buf_k
if IsLabelColor:
label_k = label_category_dset[k:end,0]
for j in range(0,buf_k.shape[0]):
is_cut_this_point = False
if xyz_cut_rate!=None:
# cut by position
for xyz_j in range(3):
if (xyz_cut_rate[xyz_j] >0.5 and buf_k[j,xyz_j] > xyz_thres[xyz_j]) or \
(xyz_cut_rate[xyz_j]<=0.5 and buf_k[j,xyz_j] < xyz_thres[xyz_j]):
is_cut_this_point = True
if is_cut_this_point:
cut_num += 1
continue
if not IsLabelColor:
str_j = 'v ' + '\t'.join( ['%0.5f'%(d) for d in buf_k[j,0:3]]) + ' \t'\
+ '\t'.join( ['%d'%(d) for d in buf_k[j,3:6]]) + '\n'
else:
label = label_k[j]
label_color = self.dataset_meta.label2color[label]
str_j = 'v ' + '\t'.join( ['%0.5f'%(d) for d in buf_k[j,0:3]]) + ' \t'\
+ '\t'.join( ['%d'%(d) for d in label_color ]) + '\n'
nocolor_str_j = 'v ' + '\t'.join( ['%0.5f'%(d) for d in buf_k[j,0:3]]) + ' \n'
out_obj_file.write(str_j)
xyz_obj_file.write(nocolor_str_j)
print('gen raw obj: %s'%(obj_file_name,))
def rh5_create_done(self):
self.rm_invalid()
self.add_geometric_scope()
self.write_raw_summary()
#self.show_h5f_summary_info()
def write_raw_summary(self):
summary_fn = os.path.splitext( self.file_name )[0]+'.txt'
with open(summary_fn,'w') as summary_f:
summary_f.write( self.show_h5f_summary_info() )
def add_geometric_scope(self,line_num_limit=None):
''' calculate the geometric scope of raw h5 data, and add the result to attrs of dset'''
#begin = time.time()
max_xyz = -np.ones((3))*1e10
min_xyz = np.ones((3))*1e10
xyz_dset = self.xyz_dset
row_step = self.h5_num_row_1M
print('File: %s %d lines'\
%(os.path.basename(self.file_name),xyz_dset.shape[0]) )
#print('read row step = %d'%(row_step))
for k in range(0,xyz_dset.shape[0],row_step):
end = min(k+row_step,xyz_dset.shape[0])
xyz_buf = xyz_dset[k:end,:]
xyz_buf_max = xyz_buf.max(axis=0)
xyz_buf_min = xyz_buf.min(axis=0)
max_xyz = np.maximum(max_xyz,xyz_buf_max)
min_xyz = np.minimum(min_xyz,xyz_buf_min)
if line_num_limit!=None and k > line_num_limit:
print('break at k = ',line_num_limit)
break
xyz_dset.attrs['max'] = max_xyz
xyz_dset.attrs['min'] = min_xyz
self.h5f.attrs['xyz_max'] = max_xyz
self.h5f.attrs['xyz_min'] = min_xyz
max_str = ' '.join([ str(e) for e in max_xyz ])
min_str = ' '.join([ str(e) for e in min_xyz ])
print('max_str=%s\tmin_str=%s'%(max_str,min_str) )
#print('T=',time.time()-begin)
@staticmethod
def check_rh5_intact( file_name ):
f_format = os.path.splitext(file_name)[-1]
assert f_format == '.rh5'
if not os.path.exists(file_name):
return False, "%s not exist"%(file_name)
#if os.path.getsize( file_name ) / 1000.0 < 100:
# return False,"file too small < 20 K"
file_type = magic.from_file(file_name)
if "Hierarchical Data Format" not in file_type:
return False,"File signature err"
with h5py.File(file_name,'r') as h5f:
attrs_to_check = ['xyz_max','xyz_min']
for attrs in attrs_to_check:
if attrs not in h5f.attrs:
return False, "%s not in %s"%(attrs,file_name)
return True,""
def Write_all_file_accuracies(normed_h5f_file_list=None,out_path=None,pre_out_fn=''):
if normed_h5f_file_list == None:
normed_h5f_file_list = glob.glob( GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096 +
'/Area_2_office_1*' )
if out_path == None: out_path = os.path.join(GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096,
'pred_accuracy')
if not os.path.exists(out_path):
os.makedirs(out_path)
all_acc_fn = os.path.join(out_path,pre_out_fn+'accuracies.txt')
all_ave_acc_fn = os.path.join(out_path,pre_out_fn+'average_accuracies.txt')
class_TP = class_FN = class_FP = np.zeros(shape=(len(Normed_H5f.g_class2label)))
total_num = 0
average_class_accu_ls = []
with open(all_acc_fn,'w') as all_acc_f,open(all_ave_acc_fn,'w') as all_ave_acc_f:
for i,fn in enumerate(normed_h5f_file_list):
h5f = h5py.File(fn,'r')
norm_h5f = Normed_H5f(h5f,fn)
class_TP_i,class_FN_i,class_FP_i,total_num_i,acc_str_i,ave_acc_str_i = norm_h5f.Get_file_accuracies(
IsWrite=False, out_path = out_path)
class_TP = class_TP_i + class_TP
class_FN = class_FN_i + class_FN
class_FP = class_FP_i + class_FP
total_num = total_num_i + total_num
if acc_str_i != '':
all_acc_f.write('File: '+os.path.basename(fn)+'\n')
all_acc_f.write(acc_str_i+'\n')
all_ave_acc_f.write(ave_acc_str_i+'\t: '+os.path.basename(fn)+'\n')
acc_str,ave_acc_str = Normed_H5f.cal_accuracy(class_TP,class_FN,class_FP,total_num)
ave_str = 'Throughout All %d files.\n'%(i+1) + acc_str
all_acc_f.write('\n'+ave_str)
all_ave_acc_f.write('\n'+ave_str)
print('accuracy file: '+all_acc_fn)
print('average accuracy file: '+all_ave_acc_fn)
return ave_str,out_path,class_TP,class_FN,class_FP,total_num
def Write_Area_accuracies():
ave_str_areas = ''
class_TP = class_FN = class_FP = np.zeros(shape=(len(Normed_H5f.g_class2label)))
total_num = 0
for i in range(6):
glob_i = 'Area_%d'%(i+1)
normed_h5f_file_list = glob.glob( os.path.join(GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096,
glob_i+'*') )
ave_str,out_path,class_TP_i,class_FN_i,class_FP_i,total_num_i = Write_all_file_accuracies(normed_h5f_file_list,pre_out_fn=glob_i+'_')
class_TP = class_TP_i + class_TP
class_FN = class_FN_i + class_FN
class_FP = class_FP_i + class_FP
total_num = total_num_i + total_num
ave_str_areas += '\nArea%d\n'%i
ave_str_areas += ave_str
acc_str,ave_acc_str = Normed_H5f.cal_accuracy(class_TP,class_FN,class_FP,total_num)
all_area_str = '\nThrough %d areas.\n'%(i+1)+acc_str
with open(os.path.join(out_path,'areas_accuracies.txt'),'w' ) as area_acc_f:
area_acc_f.write(ave_str_areas)
area_acc_f.write(all_area_str)
#-------------------------------------------------------------------------------
# Test above codes
#-------------------------------------------------------------------------------
def main(file_list):
outdoor_prep = MAIN_DATA_PREP()
actions = ['merge','sample_merged','obj_sampled_merged','norm_sampled_merged']
actions = ['merge','sample_merged','norm_sampled_merged']
outdoor_prep.main(file_list,actions,sample_num=4096,sample_method='random',\
stride=[8,8,-1],step=[8,8,-1])
#outdoor_prep.Do_sort_to_blocks()
#Do_extract_part_area()
#outdoor_prep.test_sub_block_ks()
#outdoor_prep.DO_add_geometric_scope_file()
#outdoor_prep.DO_gen_rawETH_to_h5()
def show_h5f_file():
fn = '/home/y/Research/dynamic_pointnet/data/Matterport3D_H5F/v1/scans/17DRP5sb8fy/stride_0d1_step_0d1/region2.sh5'
fn = '/home/y/DS/Matterport3D/Matterport3D_H5F/v1/scans/17DRP5sb8fy/stride_0d1_step_0d1_pyramid-1_2-512_128_64_16-0d2_0d4_0d8_16/region2.prh5'
with h5py.File(fn,'r') as h5f:
show_h5f_summary_info(h5f)
if __name__ == '__main__':
START_T = time.time()
Do_extract_part_area()
T = time.time() - START_T
print('exit main, T = ',T)
| [
"datasets_meta.DatasetsMeta",
"numpy.hstack",
"numpy.array2string",
"numpy.array",
"sys.path.append",
"numpy.arange",
"os.path.exists",
"numpy.searchsorted",
"numpy.sort",
"numpy.fix",
"numpy.max",
"numpy.rint",
"numpy.concatenate",
"numpy.min",
"numpy.maximum",
"glob.glob",
"numpy.c... | [((1444, 1469), 'os.path.dirname', 'os.path.dirname', (['BASE_DIR'], {}), '(BASE_DIR)\n', (1459, 1469), False, 'import os\n'), ((1470, 1495), 'sys.path.append', 'sys.path.append', (['BASE_DIR'], {}), '(BASE_DIR)\n', (1485, 1495), False, 'import sys\n'), ((1789, 1835), 'sys.path.append', 'sys.path.append', (["(BASE_DIR + '/MATTERPORT_util')"], {}), "(BASE_DIR + '/MATTERPORT_util')\n", (1804, 1835), False, 'import sys\n'), ((1834, 1875), 'sys.path.append', 'sys.path.append', (["(BASE_DIR + '/KITTI_util')"], {}), "(BASE_DIR + '/KITTI_util')\n", (1849, 1875), False, 'import sys\n'), ((1924, 1972), 'sys.path.append', 'sys.path.append', (["(BASE_DIR + '/all_datasets_meta')"], {}), "(BASE_DIR + '/all_datasets_meta')\n", (1939, 1972), False, 'import sys\n'), ((2820, 2831), 'time.time', 'time.time', ([], {}), '()\n', (2829, 2831), False, 'import time\n'), ((2869, 2894), 'os.path.dirname', 'os.path.dirname', (['BASE_DIR'], {}), '(BASE_DIR)\n', (2884, 2894), False, 'import os\n'), ((2906, 2931), 'os.path.dirname', 'os.path.dirname', (['ROOT_DIR'], {}), '(ROOT_DIR)\n', (2921, 2931), False, 'import os\n'), ((2943, 2973), 'os.path.join', 'os.path.join', (['ROOT_DIR', '"""data"""'], {}), "(ROOT_DIR, 'data')\n", (2955, 2973), False, 'import os\n'), ((1406, 1431), 'os.path.abspath', 'os.path.abspath', (['__file__'], {}), '(__file__)\n', (1421, 1431), False, 'import os\n'), ((1512, 1543), 'os.path.join', 'os.path.join', (['ROOT_DIR', '"""utils"""'], {}), "(ROOT_DIR, 'utils')\n", (1524, 1543), False, 'import os\n'), ((3122, 3143), 'numpy.searchsorted', 'np.searchsorted', (['a', 'v'], {}), '(a, v)\n', (3137, 3143), True, 'import numpy as np\n'), ((4088, 4108), 'os.path.basename', 'os.path.basename', (['fn'], {}), '(fn)\n', (4104, 4108), False, 'import os\n'), ((4627, 4661), 'numpy.copy', 'np.copy', (['sum_sg_bidxmap_sample_num'], {}), '(sum_sg_bidxmap_sample_num)\n', (4634, 4661), True, 'import numpy as np\n'), ((5094, 5130), 'numpy.copy', 'np.copy', (['sum_flatten_bmap_sample_num'], {}), '(sum_flatten_bmap_sample_num)\n', (5101, 5130), True, 'import numpy as np\n'), ((10026, 10064), 'numpy.searchsorted', 'np.searchsorted', (['sorted_vector', 'values'], {}), '(sorted_vector, values)\n', (10041, 10064), True, 'import numpy as np\n'), ((10260, 10282), 'numpy.array', 'np.array', (['indexs_valid'], {}), '(indexs_valid)\n', (10268, 10282), True, 'import numpy as np\n'), ((11318, 11333), 'numpy.rint', 'np.rint', (['orgvar'], {}), '(orgvar)\n', (11325, 11333), True, 'import numpy as np\n'), ((11759, 11774), 'numpy.rint', 'np.rint', (['orgvar'], {}), '(orgvar)\n', (11766, 11774), True, 'import numpy as np\n'), ((23188, 23241), 'os.path.join', 'os.path.join', (['out_path', "(pre_out_fn + 'accuracies.txt')"], {}), "(out_path, pre_out_fn + 'accuracies.txt')\n", (23200, 23241), False, 'import os\n'), ((23260, 23321), 'os.path.join', 'os.path.join', (['out_path', "(pre_out_fn + 'average_accuracies.txt')"], {}), "(out_path, pre_out_fn + 'average_accuracies.txt')\n", (23272, 23321), False, 'import os\n'), ((26833, 26844), 'time.time', 'time.time', ([], {}), '()\n', (26842, 26844), False, 'import time\n'), ((3320, 3335), 'pdb.set_trace', 'pdb.set_trace', ([], {}), '()\n', (3333, 3335), False, 'import pdb\n'), ((4266, 4285), 'os.path.dirname', 'os.path.dirname', (['fn'], {}), '(fn)\n', (4281, 4285), False, 'import os\n'), ((9884, 9902), 'numpy.array', 'np.array', (['[values]'], {}), '([values])\n', (9892, 9902), True, 'import numpy as np\n'), ((10489, 10514), 'os.path.exists', 'os.path.exists', (['file_name'], {}), '(file_name)\n', (10503, 10514), False, 'import os\n'), ((10585, 10612), 'os.path.splitext', 'os.path.splitext', (['file_name'], {}), '(file_name)\n', (10601, 10612), False, 'import os\n'), ((11149, 11159), 'numpy.rint', 'np.rint', (['C'], {}), '(C)\n', (11156, 11159), True, 'import numpy as np\n'), ((11458, 11484), 'numpy.isclose', 'np.isclose', (['zero_gap[i]', '(0)'], {}), '(zero_gap[i], 0)\n', (11468, 11484), True, 'import numpy as np\n'), ((11900, 11926), 'numpy.isclose', 'np.isclose', (['zero_gap[i]', '(0)'], {}), '(zero_gap[i], 0)\n', (11910, 11926), True, 'import numpy as np\n'), ((13360, 13394), 'datasets_meta.DatasetsMeta', 'DatasetsMeta', (['self.datasource_name'], {}), '(self.datasource_name)\n', (13372, 13394), False, 'from datasets_meta import DatasetsMeta\n'), ((15233, 15261), 'numpy.concatenate', 'np.concatenate', (['data_list', '(1)'], {}), '(data_list, 1)\n', (15247, 15261), True, 'import numpy as np\n'), ((22245, 22271), 'magic.from_file', 'magic.from_file', (['file_name'], {}), '(file_name)\n', (22260, 22271), False, 'import magic\n'), ((22802, 22911), 'glob.glob', 'glob.glob', (["(GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096 +\n '/Area_2_office_1*')"], {}), "(GLOBAL_PARA.\n stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096 +\n '/Area_2_office_1*')\n", (22811, 22911), False, 'import glob\n'), ((22969, 23072), 'os.path.join', 'os.path.join', (['GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096', '"""pred_accuracy"""'], {}), "(GLOBAL_PARA.\n stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096, 'pred_accuracy')\n", (22981, 23072), False, 'import os\n'), ((23115, 23139), 'os.path.exists', 'os.path.exists', (['out_path'], {}), '(out_path)\n', (23129, 23139), False, 'import os\n'), ((23149, 23170), 'os.makedirs', 'os.makedirs', (['out_path'], {}), '(out_path)\n', (23160, 23170), False, 'import os\n'), ((26730, 26748), 'h5py.File', 'h5py.File', (['fn', '"""r"""'], {}), "(fn, 'r')\n", (26739, 26748), False, 'import h5py\n'), ((26880, 26891), 'time.time', 'time.time', ([], {}), '()\n', (26889, 26891), False, 'import time\n'), ((6136, 6207), 'numpy.array2string', 'np.array2string', (['a_val'], {'precision': '(2)', 'separator': '""","""', 'suppress_small': '(True)'}), "(a_val, precision=2, separator=',', suppress_small=True)\n", (6151, 6207), True, 'import numpy as np\n'), ((8459, 8478), 'numpy.arange', 'np.arange', (['sample_N'], {}), '(sample_N)\n', (8468, 8478), True, 'import numpy as np\n'), ((9244, 9317), 'numpy.random.choice', 'np.random.choice', (['org_vector', 'sample_N'], {'replace': '(False)', 'p': 'random_sampl_pro'}), '(org_vector, sample_N, replace=False, p=random_sampl_pro)\n', (9260, 9317), True, 'import numpy as np\n'), ((9650, 9690), 'numpy.concatenate', 'np.concatenate', (['[org_vector, new_vector]'], {}), '([org_vector, new_vector])\n', (9664, 9690), True, 'import numpy as np\n'), ((11381, 11396), 'numpy.copy', 'np.copy', (['orgvar'], {}), '(orgvar)\n', (11388, 11396), True, 'import numpy as np\n'), ((11823, 11838), 'numpy.copy', 'np.copy', (['orgvar'], {}), '(orgvar)\n', (11830, 11838), True, 'import numpy as np\n'), ((15801, 15828), 'numpy.expand_dims', 'np.expand_dims', (['new_data', '(1)'], {}), '(new_data, 1)\n', (15815, 15828), True, 'import numpy as np\n'), ((16694, 16726), 'os.path.basename', 'os.path.basename', (['self.file_name'], {}), '(self.file_name)\n', (16710, 16726), False, 'import os\n'), ((16804, 16835), 'os.path.dirname', 'os.path.dirname', (['self.file_name'], {}), '(self.file_name)\n', (16819, 16835), False, 'import os\n'), ((16861, 16904), 'os.path.join', 'os.path.join', (['folder_path', "('obj/' + base_fn)"], {}), "(folder_path, 'obj/' + base_fn)\n", (16873, 16904), False, 'import os\n'), ((16982, 17028), 'os.path.join', 'os.path.join', (['obj_folder', "(base_fn + '_xyz.obj')"], {}), "(obj_folder, base_fn + '_xyz.obj')\n", (16994, 17028), False, 'import os\n'), ((17130, 17172), 'os.path.join', 'os.path.join', (['obj_folder', "(base_fn + '.obj')"], {}), "(obj_folder, base_fn + '.obj')\n", (17142, 17172), False, 'import os\n'), ((20771, 20781), 'numpy.ones', 'np.ones', (['(3)'], {}), '(3)\n', (20778, 20781), True, 'import numpy as np\n'), ((21277, 21309), 'numpy.maximum', 'np.maximum', (['max_xyz', 'xyz_buf_max'], {}), '(max_xyz, xyz_buf_max)\n', (21287, 21309), True, 'import numpy as np\n'), ((21331, 21363), 'numpy.minimum', 'np.minimum', (['min_xyz', 'xyz_buf_min'], {}), '(min_xyz, xyz_buf_min)\n', (21341, 21363), True, 'import numpy as np\n'), ((21957, 21984), 'os.path.splitext', 'os.path.splitext', (['file_name'], {}), '(file_name)\n', (21973, 21984), False, 'import os\n'), ((22038, 22063), 'os.path.exists', 'os.path.exists', (['file_name'], {}), '(file_name)\n', (22052, 22063), False, 'import os\n'), ((22387, 22412), 'h5py.File', 'h5py.File', (['file_name', '"""r"""'], {}), "(file_name, 'r')\n", (22396, 22412), False, 'import h5py\n'), ((23610, 23628), 'h5py.File', 'h5py.File', (['fn', '"""r"""'], {}), "(fn, 'r')\n", (23619, 23628), False, 'import h5py\n'), ((24900, 25000), 'os.path.join', 'os.path.join', (['GLOBAL_PARA.stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096', "(glob_i + '*')"], {}), "(GLOBAL_PARA.\n stanford_indoor3d_globalnormedh5_stride_0d5_step_1_4096, glob_i + '*')\n", (24912, 25000), False, 'import os\n'), ((25570, 25616), 'os.path.join', 'os.path.join', (['out_path', '"""areas_accuracies.txt"""'], {}), "(out_path, 'areas_accuracies.txt')\n", (25582, 25616), False, 'import os\n'), ((8538, 8606), 'numpy.random.choice', 'np.random.choice', (['org_N', 'sample_N'], {'replace': '(False)', 'p': 'random_sampl_pro'}), '(org_N, sample_N, replace=False, p=random_sampl_pro)\n', (8554, 8606), True, 'import numpy as np\n'), ((8687, 8728), 'numpy.random.choice', 'np.random.choice', (['org_N', '(sample_N - org_N)'], {}), '(org_N, sample_N - org_N)\n', (8703, 8728), True, 'import numpy as np\n'), ((9366, 9389), 'numpy.sort', 'np.sort', (['sampled_vector'], {}), '(sampled_vector)\n', (9373, 9389), True, 'import numpy as np\n'), ((9568, 9628), 'numpy.random.choice', 'np.random.choice', (['org_vector', '(sample_N - org_N)'], {'replace': '(True)'}), '(org_vector, sample_N - org_N, replace=True)\n', (9584, 9628), True, 'import numpy as np\n'), ((16749, 16774), 'os.path.splitext', 'os.path.splitext', (['base_fn'], {}), '(base_fn)\n', (16765, 16774), False, 'import os\n'), ((17189, 17215), 'os.path.exists', 'os.path.exists', (['obj_folder'], {}), '(obj_folder)\n', (17203, 17215), False, 'import os\n'), ((17233, 17256), 'os.makedirs', 'os.makedirs', (['obj_folder'], {}), '(obj_folder)\n', (17244, 17256), False, 'import os\n'), ((20381, 20413), 'os.path.splitext', 'os.path.splitext', (['self.file_name'], {}), '(self.file_name)\n', (20397, 20413), False, 'import os\n'), ((20735, 20745), 'numpy.ones', 'np.ones', (['(3)'], {}), '(3)\n', (20742, 20745), True, 'import numpy as np\n'), ((7342, 7415), 'numpy.array2string', 'np.array2string', (['var'], {'formatter': "{'float_kind': lambda var: '%0.2f' % var}"}), "(var, formatter={'float_kind': lambda var: '%0.2f' % var})\n", (7357, 7415), True, 'import numpy as np\n'), ((11578, 11595), 'numpy.fix', 'np.fix', (['orgvar[i]'], {}), '(orgvar[i])\n', (11584, 11595), True, 'import numpy as np\n'), ((12127, 12142), 'pdb.set_trace', 'pdb.set_trace', ([], {}), '()\n', (12140, 12142), False, 'import pdb\n'), ((20914, 20946), 'os.path.basename', 'os.path.basename', (['self.file_name'], {}), '(self.file_name)\n', (20930, 20946), False, 'import os\n'), ((8771, 8787), 'numpy.arange', 'np.arange', (['org_N'], {}), '(org_N)\n', (8780, 8787), True, 'import numpy as np\n'), ((9456, 9503), 'numpy.array', 'np.array', (['([org_vector[-1]] * (sample_N - org_N))'], {}), '([org_vector[-1]] * (sample_N - org_N))\n', (9464, 9503), True, 'import numpy as np\n'), ((12043, 12061), 'numpy.ceil', 'np.ceil', (['orgvar[i]'], {}), '(orgvar[i])\n', (12050, 12061), True, 'import numpy as np\n'), ((18575, 18610), 'numpy.hstack', 'np.hstack', (['(xyz_buf_k, color_buf_k)'], {}), '((xyz_buf_k, color_buf_k))\n', (18584, 18610), True, 'import numpy as np\n'), ((17921, 17943), 'numpy.max', 'np.max', (['xyz_dset[:, i]'], {}), '(xyz_dset[:, i])\n', (17927, 17943), True, 'import numpy as np\n'), ((18001, 18023), 'numpy.min', 'np.min', (['xyz_dset[:, i]'], {}), '(xyz_dset[:, i])\n', (18007, 18023), True, 'import numpy as np\n'), ((24093, 24113), 'os.path.basename', 'os.path.basename', (['fn'], {}), '(fn)\n', (24109, 24113), False, 'import os\n'), ((24225, 24245), 'os.path.basename', 'os.path.basename', (['fn'], {}), '(fn)\n', (24241, 24245), False, 'import os\n')] |
# -*- coding: utf-8 -*-
"""Supports Kp index values. Downloads data from ftp.gfz-potsdam.de or SWPC.
Parameters
----------
platform
'sw'
name
'kp'
tag
- '' : Standard Kp data
- 'forecast' : Grab forecast data from SWPC (next 3 days)
- 'recent' : Grab last 30 days of Kp data from SWPC
Note
----
Standard Kp files are stored by the first day of each month. When downloading
use kp.download(start, stop, freq='MS') to only download days that could
possibly have data. 'MS' gives a monthly start frequency.
The forecast data is stored by generation date, where each file contains the
forecast for the next three days. Forecast data downloads are only supported
for the current day. When loading forecast data, the date specified with the
load command is the date the forecast was generated. The data loaded will span
three days. To always ensure you are loading the most recent data, load
the data with tomorrow's date.
::
kp = pysat.Instrument('sw', 'kp', tag='recent')
kp.download()
kp.load(date=kp.tomorrow())
Recent data is also stored by the generation date from the SWPC. Each file
contains 30 days of Kp measurements. The load date issued to pysat corresponds
to the generation date.
The recent and forecast data should not be used with the data padding option
available from pysat.Instrument objects.
Warnings
--------
The 'forecast' Kp data loads three days at a time. The data padding feature
and multi_file_day feature available from the pyast.Instrument object
is not appropriate for Kp 'forecast' data.
This material is based upon work supported by the
National Science Foundation under Grant Number 1259508.
Any opinions, findings, and conclusions or recommendations expressed in this
material are those of the author(s) and do not necessarily reflect the views
of the National Science Foundation.
Custom Functions
----------------
filter_geoquiet
Filters pysat.Instrument data for given time after Kp drops below gate.
"""
import functools
import numpy as np
import os
import pandas as pds
import pysat
import logging
logger = logging.getLogger(__name__)
platform = 'sw'
name = 'kp'
tags = {'': '',
'forecast': 'SWPC Forecast data next (3 days)',
'recent': 'SWPC provided Kp for past 30 days'}
sat_ids = {'': ['', 'forecast', 'recent']}
# generate todays date to support loading forecast data
now = pysat.datetime.now()
today = pysat.datetime(now.year, now.month, now.day)
# set test dates
_test_dates = {'': {'': pysat.datetime(2009, 1, 1),
'forecast': today + pds.DateOffset(days=1)}}
def load(fnames, tag=None, sat_id=None):
"""Load Kp index files
Parameters
------------
fnames : pandas.Series
Series of filenames
tag : str or NoneType
tag or None (default=None)
sat_id : str or NoneType
satellite id or None (default=None)
Returns
---------
data : pandas.DataFrame
Object containing satellite data
meta : pysat.Meta
Object containing metadata such as column names and units
Notes
-----
Called by pysat. Not intended for direct use by user.
"""
from pysat.utils.time import parse_date
meta = pysat.Meta()
if tag == '':
# Kp data stored monthly, need to return data daily
# the daily date is attached to filename
# parse off the last date, load month of data, downselect to desired
# day
data = pds.DataFrame()
# set up fixed width format for these files
colspec = [(0, 2), (2, 4), (4, 6), (7, 10), (10, 13), (13, 16),
(16, 19), (19, 23), (23, 26), (26, 29), (29, 32), (32, 50)]
for filename in fnames:
# the daily date is attached to filename
# parse off the last date, load month of data, downselect to the
# desired day
fname = filename[0:-11]
date = pysat.datetime.strptime(filename[-10:], '%Y-%m-%d')
temp = pds.read_fwf(fname, colspecs=colspec, skipfooter=4,
header=None, parse_dates=[[0, 1, 2]],
date_parser=parse_date, index_col='0_1_2')
idx, = np.where((temp.index >= date) &
(temp.index < date + pds.DateOffset(days=1)))
temp = temp.iloc[idx, :]
data = pds.concat([data, temp], axis=0)
# drop last column as it has data I don't care about
data = data.iloc[:, 0:-1]
# each column increments UT by three hours
# produce a single data series that has Kp value monotonically
# increasing in time with appropriate datetime indices
s = pds.Series()
for i in np.arange(8):
temp = pds.Series(data.iloc[:, i].values,
index=data.index+pds.DateOffset(hours=int(3*i)))
s = s.append(temp)
s = s.sort_index()
s.index.name = 'time'
# now, Kp comes in non-user friendly values
# 2-, 2o, and 2+ relate to 1.6, 2.0, 2.3
# will convert for user friendliness
first = np.array([float(x[0]) for x in s])
flag = np.array([x[1] for x in s])
ind, = np.where(flag == '+')
first[ind] += 1.0 / 3.0
ind, = np.where(flag == '-')
first[ind] -= 1.0 / 3.0
result = pds.DataFrame(first, columns=['Kp'], index=s.index)
fill_val = np.nan
elif tag == 'forecast':
# load forecast data
result = pds.read_csv(fnames[0], index_col=0, parse_dates=True)
fill_val = -1
elif tag == 'recent':
# load recent Kp data
result = pds.read_csv(fnames[0], index_col=0, parse_dates=True)
fill_val = -1
# Initalize the meta data
for kk in result.keys():
initialize_kp_metadata(meta, kk, fill_val)
return result, meta
def list_files(tag=None, sat_id=None, data_path=None, format_str=None):
"""Return a Pandas Series of every file for chosen satellite data
Parameters
-----------
tag : string or NoneType
Denotes type of file to load.
(default=None)
sat_id : string or NoneType
Specifies the satellite ID for a constellation. Not used.
(default=None)
data_path : string or NoneType
Path to data directory. If None is specified, the value previously
set in Instrument.files.data_path is used. (default=None)
format_str : string or NoneType
User specified file format. If None is specified, the default
formats associated with the supplied tags are used. (default=None)
Returns
--------
pysat.Files.from_os : pysat._files.Files
A class containing the verified available files
Notes
-----
Called by pysat. Not intended for direct use by user.
"""
if data_path is not None:
if tag == '':
# files are by month, going to add date to monthly filename for
# each day of the month. The load routine will load a month of
# data and use the appended date to select out appropriate data.
if format_str is None:
format_str = 'kp{year:2d}{month:02d}.tab'
out = pysat.Files.from_os(data_path=data_path,
format_str=format_str,
two_digit_year_break=94)
if not out.empty:
out.loc[out.index[-1] + pds.DateOffset(months=1)
- pds.DateOffset(days=1)] = out.iloc[-1]
out = out.asfreq('D', 'pad')
out = out + '_' + out.index.strftime('%Y-%m-%d')
return out
elif tag == 'forecast':
format_str = 'kp_forecast_{year:04d}-{month:02d}-{day:02d}.txt'
files = pysat.Files.from_os(data_path=data_path,
format_str=format_str)
# pad list of files data to include most recent file under tomorrow
if not files.empty:
pds_offset = pds.DateOffset(days=1)
files.loc[files.index[-1] + pds_offset] = files.values[-1]
files.loc[files.index[-1] + pds_offset] = files.values[-1]
return files
elif tag == 'recent':
format_str = 'kp_recent_{year:04d}-{month:02d}-{day:02d}.txt'
files = pysat.Files.from_os(data_path=data_path,
format_str=format_str)
# pad list of files data to include most recent file under tomorrow
if not files.empty:
pds_offset = pds.DateOffset(days=1)
files.loc[files.index[-1] + pds_offset] = files.values[-1]
files.loc[files.index[-1] + pds_offset] = files.values[-1]
return files
else:
raise ValueError('Unrecognized tag name for Space Weather Index ' +
'Kp')
else:
raise ValueError('A data_path must be passed to the loading routine ' +
'for Kp')
def download(date_array, tag, sat_id, data_path, user=None, password=None):
"""Routine to download Kp index data
Parameters
-----------
tag : string or NoneType
Denotes type of file to load. Accepted types are '' and 'forecast'.
(default=None)
sat_id : string or NoneType
Specifies the satellite ID for a constellation. Not used.
(default=None)
data_path : string or NoneType
Path to data directory. If None is specified, the value previously
set in Instrument.files.data_path is used. (default=None)
Note
----
Called by pysat. Not intended for direct use by user.
Warnings
--------
Only able to download current forecast data, not archived forecasts.
"""
# download standard Kp data
if tag == '':
import ftplib
from ftplib import FTP
import sys
ftp = FTP('ftp.gfz-potsdam.de') # connect to host, default port
ftp.login() # user anonymous, passwd anonymous@
ftp.cwd('/pub/home/obs/kp-ap/tab')
dnames = list()
for date in date_array:
fname = 'kp{year:02d}{month:02d}.tab'
fname = fname.format(year=(date.year - date.year//100*100),
month=date.month)
local_fname = fname
saved_fname = os.path.join(data_path, local_fname)
if not fname in dnames:
try:
logger.info('Downloading file for '+date.strftime('%b %Y'))
sys.stdout.flush()
ftp.retrbinary('RETR '+fname, open(saved_fname, 'wb').write)
dnames.append(fname)
except ftplib.error_perm as exception:
if str(exception.args[0]).split(" ", 1)[0] != '550':
# leaving a bare raise below so that ftp errors
# are properly reported as coming from ftp
# and gives the correct line number.
# We aren't expecting any 'normal' ftp errors
# here, other than a 550 'no file' error, thus
# accurately raising FTP issues is the way to go
raise
else:
# file isn't actually there, just let people know
# then continue on
os.remove(saved_fname)
logger.info('File not available for '+date.strftime('%x'))
ftp.close()
elif tag == 'forecast':
import requests
logger.info('This routine can only download the current forecast, ' +
'not archived forecasts')
# download webpage
furl = 'https://services.swpc.noaa.gov/text/3-day-geomag-forecast.txt'
r = requests.get(furl)
# parse text to get the date the prediction was generated
date_str = r.text.split(':Issued: ')[-1].split(' UTC')[0]
date = pysat.datetime.strptime(date_str, '%Y %b %d %H%M')
# data is the forecast value for the next three days
raw_data = r.text.split('NOAA Kp index forecast ')[-1]
# get date of the forecasts
date_str = raw_data[0:6] + ' ' + str(date.year)
forecast_date = pysat.datetime.strptime(date_str, '%d %b %Y')
# strings we will use to parse the downloaded text
lines = ['00-03UT', '03-06UT', '06-09UT', '09-12UT', '12-15UT',
'15-18UT', '18-21UT', '21-00UT']
# storage for daily forecasts
# get values for each day, then combine together
day1 = []
day2 = []
day3 = []
for line in lines:
raw = raw_data.split(line)[-1].split('\n')[0]
day1.append(int(raw[0:10]))
day2.append(int(raw[10:20]))
day3.append(int(raw[20:]))
times = pds.date_range(forecast_date, periods=24, freq='3H')
day = []
for dd in [day1, day2, day3]:
day.extend(dd)
# put data into nicer DataFrame
data = pds.DataFrame(day, index=times, columns=['Kp'])
# write out as a file
data.to_csv(os.path.join(data_path, 'kp_forecast_' +
date.strftime('%Y-%m-%d') + '.txt'),
header=True)
elif tag == 'recent':
import requests
logger.info('This routine can only download the current webpage, not ' +
'archived forecasts')
# download webpage
rurl = 'https://services.swpc.noaa.gov/text/' + \
'daily-geomagnetic-indices.txt'
r = requests.get(rurl)
# parse text to get the date the prediction was generated
date_str = r.text.split(':Issued: ')[-1].split('\n')[0]
date = pysat.datetime.strptime(date_str, '%H%M UT %d %b %Y')
# data is the forecast value for the next three days
raw_data = r.text.split('# Date ')[-1]
# keep only the middle bits that matter
raw_data = raw_data.split('\n')[1:-1]
# hold times from the file
kp_time = []
# holds Kp value for each station
sub_kps = [[], [], []]
# iterate through file lines and parse out the info we want
for line in raw_data:
kp_time.append(pysat.datetime.strptime(line[0:10], '%Y %m %d'))
# pick out Kp values for each of the three columns
sub_lines = [line[17:33], line[40:56], line[63:]]
for sub_line, sub_kp in zip(sub_lines, sub_kps):
for i in np.arange(8):
sub_kp.append(int(sub_line[i*2:(i+1)*2]))
# create times on 3 hour cadence
times = pds.date_range(kp_time[0], periods=8*30, freq='3H')
# put into DataFrame
data = pds.DataFrame({'mid_lat_Kp': sub_kps[0],
'high_lat_Kp': sub_kps[1],
'Kp': sub_kps[2]}, index=times)
# write out as a file
data.to_csv(os.path.join(data_path, 'kp_recent_' +
date.strftime('%Y-%m-%d') + '.txt'),
header=True)
return
def filter_geoquiet(sat, maxKp=None, filterTime=None, kpData=None,
kp_inst=None):
"""Filters pysat.Instrument data for given time after Kp drops below gate.
Parameters
----------
sat : pysat.Instrument
Instrument to be filtered
maxKp : float
Maximum Kp value allowed. Kp values above this trigger
sat.data filtering.
filterTime : int
Number of hours to filter data after Kp drops below maxKp
kpData : pysat.Instrument (optional)
Kp pysat.Instrument object with data already loaded
kp_inst : pysat.Instrument (optional)
Kp pysat.Instrument object ready to load Kp data.Overrides kpData.
Notes
-----
Loads Kp data for the same timeframe covered by sat and sets sat.data to
NaN for times when Kp > maxKp and for filterTime after Kp drops below
maxKp.
This routine is written for standard Kp data, not the forecast or recent
data.
"""
if kp_inst is not None:
kp_inst.load(date=sat.date, verifyPad=True)
kpData = kp_inst
elif kpData is None:
kp = pysat.Instrument('sw', 'Kp', pad=pds.DateOffset(days=1))
kp.load(date=sat.date, verifyPad=True)
kpData = kp
if maxKp is None:
maxKp = 3 + 1./3.
if filterTime is None:
filterTime = 24
# now the defaults are ensured, let's do some filtering
# date of satellite data
date = sat.date
selData = kpData[date-pds.DateOffset(days=1):date+pds.DateOffset(days=1)]
ind, = np.where(selData['Kp'] >= maxKp)
for lind in ind:
sind = selData.index[lind]
eind = sind + pds.DateOffset(hours=filterTime)
sat.data[sind:eind] = np.NaN
sat.data = sat.data.dropna(axis=0, how='all')
return
def initialize_kp_metadata(meta, data_key, fill_val=-1):
""" Initialize the Kp meta data using our knowledge of the index
Parameters
----------
meta : pysat._meta.Meta
Pysat Metadata
data_key : str
String denoting the data key
fill_val : int or float
File-specific fill value (default=-1)
"""
data_label = data_key.replace("_", " ")
format_label = data_label[0].upper() + data_label[1:]
meta[data_key] = {meta.units_label: '', meta.name_label: data_key,
meta.desc_label: "Planetary K-index",
meta.plot_label: format_label,
meta.axis_label: format_label,
meta.scale_label: 'linear', meta.min_label: 0,
meta.max_label: 9, meta.fill_label: fill_val}
return
def convert_3hr_kp_to_ap(kp_inst):
""" Calculate 3 hour ap from 3 hour Kp index
Parameters
----------
kp_inst : pysat.Instrument
Pysat instrument containing Kp data
Returns
-------
Void : Updates kp_inst with '3hr_ap'
Notes
-----
Conversion between ap and Kp indices is described at:
https://www.ngdc.noaa.gov/stp/GEOMAG/kp_ap.html
"""
# Kp are keys, where n.3 = n+ and n.6 = (n+1)-. E.g., 0.6 = 1-
kp_to_ap = {0: 0, 0.3: 2, 0.6: 3, 1: 4, 1.3: 5, 1.6: 6, 2: 7, 2.3: 9,
2.6: 12, 3: 15, 3.3: 18, 3.6: 22, 4: 27, 4.3: 32, 4.6: 39,
5: 48, 5.3: 56, 5.6: 67, 6: 80, 6.3: 94, 6.6: 111, 7: 132,
7.3: 154, 7.6: 179, 8: 207, 8.3: 236, 8.6: 300, 9: 400}
def ap(kk): return kp_to_ap[np.floor(kk*10.0) / 10.0] \
if np.isfinite(kk) else np.nan
# Test the input
if 'Kp' not in kp_inst.data.columns:
raise ValueError('unable to locate Kp data')
# Convert from Kp to ap
fill_val = kp_inst.meta['Kp'][kp_inst.meta.fill_label]
ap_data = np.array([ap(kp) if kp != fill_val else fill_val
for kp in kp_inst['Kp']])
# Append the output to the pysat instrument
kp_inst['3hr_ap'] = pds.Series(ap_data, index=kp_inst.index)
# Add metadata
meta_dict = {kp_inst.meta.units_label: '',
kp_inst.meta.name_label: 'ap',
kp_inst.meta.desc_label: "3-hour ap (equivalent range) index",
kp_inst.meta.plot_label: "ap",
kp_inst.meta.axis_label: "ap",
kp_inst.meta.scale_label: 'linear',
kp_inst.meta.min_label: 0,
kp_inst.meta.max_label: 400,
kp_inst.meta.fill_label: fill_val,
kp_inst.meta.notes_label: 'ap converted from Kp as described '
'at: https://www.ngdc.noaa.gov/stp/GEOMAG/kp_ap.html'}
kp_inst.meta.__setitem__('3hr_ap', meta_dict)
| [
"logging.getLogger",
"pandas.read_csv",
"pysat.Files.from_os",
"numpy.array",
"numpy.isfinite",
"pysat.datetime.now",
"pandas.date_range",
"numpy.arange",
"os.remove",
"ftplib.FTP",
"pysat.datetime.strptime",
"numpy.where",
"pandas.DataFrame",
"sys.stdout.flush",
"pandas.read_fwf",
"py... | [((2093, 2120), 'logging.getLogger', 'logging.getLogger', (['__name__'], {}), '(__name__)\n', (2110, 2120), False, 'import logging\n'), ((2384, 2404), 'pysat.datetime.now', 'pysat.datetime.now', ([], {}), '()\n', (2402, 2404), False, 'import pysat\n'), ((2413, 2457), 'pysat.datetime', 'pysat.datetime', (['now.year', 'now.month', 'now.day'], {}), '(now.year, now.month, now.day)\n', (2427, 2457), False, 'import pysat\n'), ((3213, 3225), 'pysat.Meta', 'pysat.Meta', ([], {}), '()\n', (3223, 3225), False, 'import pysat\n'), ((16798, 16830), 'numpy.where', 'np.where', (["(selData['Kp'] >= maxKp)"], {}), "(selData['Kp'] >= maxKp)\n", (16806, 16830), True, 'import numpy as np\n'), ((19136, 19176), 'pandas.Series', 'pds.Series', (['ap_data'], {'index': 'kp_inst.index'}), '(ap_data, index=kp_inst.index)\n', (19146, 19176), True, 'import pandas as pds\n'), ((2499, 2525), 'pysat.datetime', 'pysat.datetime', (['(2009)', '(1)', '(1)'], {}), '(2009, 1, 1)\n', (2513, 2525), False, 'import pysat\n'), ((3459, 3474), 'pandas.DataFrame', 'pds.DataFrame', ([], {}), '()\n', (3472, 3474), True, 'import pandas as pds\n'), ((4698, 4710), 'pandas.Series', 'pds.Series', ([], {}), '()\n', (4708, 4710), True, 'import pandas as pds\n'), ((4728, 4740), 'numpy.arange', 'np.arange', (['(8)'], {}), '(8)\n', (4737, 4740), True, 'import numpy as np\n'), ((5176, 5203), 'numpy.array', 'np.array', (['[x[1] for x in s]'], {}), '([x[1] for x in s])\n', (5184, 5203), True, 'import numpy as np\n'), ((5220, 5241), 'numpy.where', 'np.where', (["(flag == '+')"], {}), "(flag == '+')\n", (5228, 5241), True, 'import numpy as np\n'), ((5289, 5310), 'numpy.where', 'np.where', (["(flag == '-')"], {}), "(flag == '-')\n", (5297, 5310), True, 'import numpy as np\n'), ((5361, 5412), 'pandas.DataFrame', 'pds.DataFrame', (['first'], {'columns': "['Kp']", 'index': 's.index'}), "(first, columns=['Kp'], index=s.index)\n", (5374, 5412), True, 'import pandas as pds\n'), ((9986, 10011), 'ftplib.FTP', 'FTP', (['"""ftp.gfz-potsdam.de"""'], {}), "('ftp.gfz-potsdam.de')\n", (9989, 10011), False, 'from ftplib import FTP\n'), ((2567, 2589), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (2581, 2589), True, 'import pandas as pds\n'), ((3921, 3972), 'pysat.datetime.strptime', 'pysat.datetime.strptime', (['filename[-10:]', '"""%Y-%m-%d"""'], {}), "(filename[-10:], '%Y-%m-%d')\n", (3944, 3972), False, 'import pysat\n'), ((3993, 4129), 'pandas.read_fwf', 'pds.read_fwf', (['fname'], {'colspecs': 'colspec', 'skipfooter': '(4)', 'header': 'None', 'parse_dates': '[[0, 1, 2]]', 'date_parser': 'parse_date', 'index_col': '"""0_1_2"""'}), "(fname, colspecs=colspec, skipfooter=4, header=None,\n parse_dates=[[0, 1, 2]], date_parser=parse_date, index_col='0_1_2')\n", (4005, 4129), True, 'import pandas as pds\n'), ((4371, 4403), 'pandas.concat', 'pds.concat', (['[data, temp]'], {'axis': '(0)'}), '([data, temp], axis=0)\n', (4381, 4403), True, 'import pandas as pds\n'), ((5513, 5567), 'pandas.read_csv', 'pds.read_csv', (['fnames[0]'], {'index_col': '(0)', 'parse_dates': '(True)'}), '(fnames[0], index_col=0, parse_dates=True)\n', (5525, 5567), True, 'import pandas as pds\n'), ((7232, 7324), 'pysat.Files.from_os', 'pysat.Files.from_os', ([], {'data_path': 'data_path', 'format_str': 'format_str', 'two_digit_year_break': '(94)'}), '(data_path=data_path, format_str=format_str,\n two_digit_year_break=94)\n', (7251, 7324), False, 'import pysat\n'), ((10447, 10483), 'os.path.join', 'os.path.join', (['data_path', 'local_fname'], {}), '(data_path, local_fname)\n', (10459, 10483), False, 'import os\n'), ((11938, 11956), 'requests.get', 'requests.get', (['furl'], {}), '(furl)\n', (11950, 11956), False, 'import requests\n'), ((12104, 12154), 'pysat.datetime.strptime', 'pysat.datetime.strptime', (['date_str', '"""%Y %b %d %H%M"""'], {}), "(date_str, '%Y %b %d %H%M')\n", (12127, 12154), False, 'import pysat\n'), ((12395, 12440), 'pysat.datetime.strptime', 'pysat.datetime.strptime', (['date_str', '"""%d %b %Y"""'], {}), "(date_str, '%d %b %Y')\n", (12418, 12440), False, 'import pysat\n'), ((12992, 13044), 'pandas.date_range', 'pds.date_range', (['forecast_date'], {'periods': '(24)', 'freq': '"""3H"""'}), "(forecast_date, periods=24, freq='3H')\n", (13006, 13044), True, 'import pandas as pds\n'), ((13182, 13229), 'pandas.DataFrame', 'pds.DataFrame', (['day'], {'index': 'times', 'columns': "['Kp']"}), "(day, index=times, columns=['Kp'])\n", (13195, 13229), True, 'import pandas as pds\n'), ((16909, 16941), 'pandas.DateOffset', 'pds.DateOffset', ([], {'hours': 'filterTime'}), '(hours=filterTime)\n', (16923, 16941), True, 'import pandas as pds\n'), ((18718, 18733), 'numpy.isfinite', 'np.isfinite', (['kk'], {}), '(kk)\n', (18729, 18733), True, 'import numpy as np\n'), ((5663, 5717), 'pandas.read_csv', 'pds.read_csv', (['fnames[0]'], {'index_col': '(0)', 'parse_dates': '(True)'}), '(fnames[0], index_col=0, parse_dates=True)\n', (5675, 5717), True, 'import pandas as pds\n'), ((7818, 7881), 'pysat.Files.from_os', 'pysat.Files.from_os', ([], {'data_path': 'data_path', 'format_str': 'format_str'}), '(data_path=data_path, format_str=format_str)\n', (7837, 7881), False, 'import pysat\n'), ((13733, 13751), 'requests.get', 'requests.get', (['rurl'], {}), '(rurl)\n', (13745, 13751), False, 'import requests\n'), ((13897, 13950), 'pysat.datetime.strptime', 'pysat.datetime.strptime', (['date_str', '"""%H%M UT %d %b %Y"""'], {}), "(date_str, '%H%M UT %d %b %Y')\n", (13920, 13950), False, 'import pysat\n'), ((14802, 14855), 'pandas.date_range', 'pds.date_range', (['kp_time[0]'], {'periods': '(8 * 30)', 'freq': '"""3H"""'}), "(kp_time[0], periods=8 * 30, freq='3H')\n", (14816, 14855), True, 'import pandas as pds\n'), ((14898, 15001), 'pandas.DataFrame', 'pds.DataFrame', (["{'mid_lat_Kp': sub_kps[0], 'high_lat_Kp': sub_kps[1], 'Kp': sub_kps[2]}"], {'index': 'times'}), "({'mid_lat_Kp': sub_kps[0], 'high_lat_Kp': sub_kps[1], 'Kp':\n sub_kps[2]}, index=times)\n", (14911, 15001), True, 'import pandas as pds\n'), ((16735, 16757), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (16749, 16757), True, 'import pandas as pds\n'), ((16763, 16785), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (16777, 16785), True, 'import pandas as pds\n'), ((8063, 8085), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (8077, 8085), True, 'import pandas as pds\n'), ((8385, 8448), 'pysat.Files.from_os', 'pysat.Files.from_os', ([], {'data_path': 'data_path', 'format_str': 'format_str'}), '(data_path=data_path, format_str=format_str)\n', (8404, 8448), False, 'import pysat\n'), ((10641, 10659), 'sys.stdout.flush', 'sys.stdout.flush', ([], {}), '()\n', (10657, 10659), False, 'import sys\n'), ((16407, 16429), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (16421, 16429), True, 'import pandas as pds\n'), ((18679, 18698), 'numpy.floor', 'np.floor', (['(kk * 10.0)'], {}), '(kk * 10.0)\n', (18687, 18698), True, 'import numpy as np\n'), ((7518, 7540), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (7532, 7540), True, 'import pandas as pds\n'), ((8630, 8652), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (8644, 8652), True, 'import pandas as pds\n'), ((14409, 14456), 'pysat.datetime.strptime', 'pysat.datetime.strptime', (['line[0:10]', '"""%Y %m %d"""'], {}), "(line[0:10], '%Y %m %d')\n", (14432, 14456), False, 'import pysat\n'), ((14669, 14681), 'numpy.arange', 'np.arange', (['(8)'], {}), '(8)\n', (14678, 14681), True, 'import numpy as np\n'), ((4290, 4312), 'pandas.DateOffset', 'pds.DateOffset', ([], {'days': '(1)'}), '(days=1)\n', (4304, 4312), True, 'import pandas as pds\n'), ((7467, 7491), 'pandas.DateOffset', 'pds.DateOffset', ([], {'months': '(1)'}), '(months=1)\n', (7481, 7491), True, 'import pandas as pds\n'), ((11522, 11544), 'os.remove', 'os.remove', (['saved_fname'], {}), '(saved_fname)\n', (11531, 11544), False, 'import os\n')] |
from sklearn.preprocessing import MinMaxScaler, StandardScaler
import numpy as np
import pandas as pd
import torch
from torch import nn
import matplotlib.pyplot as plt
import pickle
from IPython import display
from .useful import ts as src
from .useful import iterators
from .models import lstm as models
from . import generate_residuals
from . import stastics
class AnomalyDetection():
"""
Pipeline Time Series Anomaly Detection based on
SOTA deep learning forecasting algorithms.
Данный пайплайн избавит вас от проблем написания кода для: \n
1) формирование выборок для подачи в sequence модели \n
2) обучения моделей \n
3) поиска аномалий в невязках \n
Данный пайплайн позволяет: \n
1) пронгозировать временные ряды, в том числе многомерные. \n
2) вычислять невязку между прогнозом и настоящими значениями \n
3) анализировать невязку, и возращать разметку аномалиями \n
Parameters
----------
preproc : object, default = sklearn.preprocessing.MinMaxScaler()
Объект предобратки значений временного ряда.
Требования к классу по методами атрибутам одинаковы с default.
generate_res_func : func, default = generate_residuals.abs
Функция генерация невязки. На вход y_pred, y_true. В default это
абсолютная разница значений. Требования к функциям описаны в
generate_residuals.py.
res_analys_alg : object, default=stastics.Hotelling().
Объект поиска аномалий в остатках. В default это
статистика Хоттелинга.Требования к классам описаны в
generate_residuals.py.
Attributes
----------
Return
----------
object : object Объект этого класса DL_AD
References
----------
Links to the papers
Examples
--------
https://github.com/waico/tsad/tree/main/examples
"""
def _get_Train_Test_sets(self, dfs, len_seq,
points_ahead,
gap,
shag,
intersection,
test_size,
train_size,
random_state,
shuffle,
stratify,
):
"""
Вспомогательная функция, избавляющая от дубляжа
"""
if (type(dfs) == pd.core.series.Series) | (type(dfs) == pd.core.frame.DataFrame):
df = dfs.copy() if type(dfs) == pd.core.frame.DataFrame else pd.DataFrame(dfs)
self.columns = df.columns
self.index = df.index
if self._init_preproc:
new_df = pd.DataFrame(self.preproc.fit_transform(df), index=df.index, columns=df.columns)
self._init_preproc = False
else:
new_df = pd.DataFrame(self.preproc.transform(df), index=df.index, columns=df.columns)
assert len_seq + points_ahead + gap - 1 <= len(df)
X_train, X_test, y_train, y_test = src.ts_train_test_split(df=new_df,
len_seq=len_seq,
points_ahead=points_ahead,
gap=gap,
shag=shag,
intersection=intersection,
test_size=test_size,
train_size=train_size,
random_state=random_state,
shuffle=False,
# потому что потом нужно в основном итераторе
stratify=stratify)
elif type(dfs) == type(list()):
# уже все pd.DataFrame
_df = pd.concat(dfs, ignore_index=True)
if self._init_preproc:
self.preproc.fit(_df)
self._init_preproc = False
self.columns = _df.columns
self.index = _df.index
X_train, X_test, y_train, y_test = [], [], [], []
_k = 0
for df in dfs:
if ((type(df) == pd.core.series.Series) | (type(df) == pd.core.frame.DataFrame)) == False:
raise NameError('Type of dfs is unsupported')
if not (len_seq + points_ahead + gap + 1 <= len(df)):
_k += 1
continue
new_df = pd.DataFrame(self.preproc.transform(df), index=df.index, columns=df.columns)
_X_train, _X_test, _y_train, _y_test = src.ts_train_test_split(new_df, len_seq,
points_ahead=points_ahead,
gap=gap,
shag=shag,
intersection=intersection,
test_size=test_size,
train_size=train_size,
random_state=random_state,
shuffle=False,
stratify=stratify)
X_train += _X_train
X_test += _X_test
y_train += _y_train
y_test += _y_test
print(
f'Пропущено {_k} датастов, из-за того что saples слишком малов в датасете. (len_seq + points_ahead + gap -1 <= len(df))')
else:
raise NameError('Type of dfs is unsupported')
return X_train, X_test, y_train, y_test
def _get_anomaly_timestamps(self,
dfs,
Loader,
len_seq,
points_ahead,
gap,
shag,
intersection,
test_size,
random_state,
shuffle,
stratify,
device,
point_ahead_for_residuals=0):
"""
Вспомогательная функция для генерации всего
"""
X, _, y_true, _ = self._get_Train_Test_sets(dfs=dfs,
len_seq=len_seq,
points_ahead=points_ahead,
# 1 это default, так с остатками лучше не шутить до сих пор
gap=gap,
shag=shag,
intersection=intersection,
test_size=test_size,
train_size=None,
random_state=random_state,
shuffle=shuffle,
stratify=stratify)
all_data_iterator = Loader(X, y_true, self.batch_size, shuffle=False)
y_pred = self.model.run_epoch(all_data_iterator, None, None, phase='forecast', points_ahead=points_ahead,
device=device)
residuals = self.generate_res_func(y_pred, np.array(y_true))
point_ahead_for_residuals = 0 # мы иногда прогнозим на 10 точек вперед, ну интересует все равно на одну точку впреред
res_indices = [y_true[i].index[point_ahead_for_residuals] for i in range(len(y_true))]
df_residuals = pd.DataFrame(residuals[:, point_ahead_for_residuals, :], columns=self.columns,
index=res_indices).sort_index()
return df_residuals
# -----------------------------------------------------------------------------------------
# Формирование сутевой части класса
# -----------------------------------------------------------------------------------------
def __init__(self,
preproc=None,
generate_res_func=None,
res_analys_alg=None,
):
self.preproc = MinMaxScaler() if preproc is None else preproc
self.generate_res_func = generate_residuals.abs if generate_res_func is None else generate_res_func
self.res_analys_alg = stastics.Hotelling() if res_analys_alg is None else res_analys_alg
def fit(self,
dfs,
targets=None, # for RUL task.
model=None,
encod_decode_model=False,
# ужас, нужно это править, особенность encod_decode модели. Попытаться вообще еубрать эту переменную
criterion=None,
optimiser=None,
batch_size=64,
len_seq=10,
points_ahead=5,
n_epochs=100,
gap=0,
shag=1,
intersection=True,
test_size=0.2,
train_size=None,
random_state=None,
shuffle=False,
show_progress=True,
show_figures=True,
best_model_file='./best_model.pt',
stratify=None,
Loader=None,
):
"""
Обучение модели как для задачи прогнозирования так и для задачи anomaly
detection на имеющихся данных. fit = fit_predict_anmaloy
Parameters
----------
dfs : {{df*,ts*}, list of {df*,ts*}}
df*,ts* are pd.core.series.Seriesor or pd.core.frame.DataFrame data type.
Исходные данные. Данные не долнжны содержать np.nan вовсе, иметь постоянную
и одинковую частоту of df.index и при этом не иметь пропусков. Проблему с
пропуском решают дробление одно df на list of df.
model : object of torch.nn.Module class, default=models.SimpleLSTM()
Используемая модель нейронной сети.
criterion : object of torch.nn class, default=nn.MSELoss()
Критерий подсчета ошибки для оптмизации.
optimiser : tuple = (torch.optim class ,default = torch.optim.Adam,
dict (dict of arguments without params models) , default=default)
Example of optimiser : optimiser=(torch.optim.Adam,{'lr':0.001})
Метод оптимизации нейронной сети и его параметры, указанные в
документации к torch.
batch_size : int, default=64
Размер батча (Число сэмплов по которым усредняется градиент)
len_seq : int, default=10
Размер окна (количество последовательных точек ряда), на котором
модель реально работает. По сути аналог порядка в авторегрессии.
points_ahead : int, default=5
Горизонт прогнозирования.
n_epochs : int, default=100
Количество эпох.
>>> train_test_split vars
gap : int, default=0
Сколько точек между трейном и тестом. Условно говоря,
если крайняя точка train а это t, то первая точка теста t + gap +1.
Параметр создан, чтобы можно было прогнозировать одну точку через большой
дополнительный интервал времени.
shag : int, default=1.
Шаг генерации выборки. Если первая точка была t у 1-ого сэмпла трейна,
то у 2-ого сэмла трейна она будет t + shag, если intersection=True, иначе
тоже самое но без пересечений значений ряда.
intersection : bool, default=True
Наличие значений ряда (одного момента времени) в различных сэмплах выборки.
test_size : float or int, default=None
If float, should be between 0.0 and 1.0 and represent the proportion
of the dataset to include in the test split. If int, represents the
absolute number of test samples. If None, the value is set to the
complement of the train size. If ``train_size`` is also None, it will
be set to 0.25. *
*https://github.com/scikit-learn/scikit-learn/blob/95119c13a/sklearn/model_selection/_split.py#L2076
Может быть 0, тогда вернет значения X,y
train_size : float or int, default=None
If float, should be between 0.0 and 1.0 and represent the
proportion of the dataset to include in the train split. If
int, represents the absolute number of train samples. If None,
the value is automatically set to the complement of the test size. *
*https://github.com/scikit-learn/scikit-learn/blob/95119c13a/sklearn/model_selection/_split.py#L2076
random_state : int, RandomState instance or None, default=None
Controls the shuffling applied to the data before applying the split.
Pass an int for reproducible output across multiple function calls.
See :term:`Glossary <random_state>`.*
*https://github.com/scikit-learn/scikit-learn/blob/95119c13a/sklearn/model_selection/_split.py#L2076
shuffle : bool, default=True
Whether or not to shuffle the data before splitting. If shuffle=False
then stratify must be None. *
show_progress : bool, default=True
Показывать или нет прогресс обучения с детализацией по эпохам.
show_figures : bool, default=True
Показывать или нет результаты решения задачии anomaly detection
и кривую трейна и валидации по эпохам.
best_model_file : string, './best_model.pt'
Путь до файла, где будет хранится лучшие веса модели
Loader : class, default=ufesul.iterators.Loader.
Тип загрузчика, которую будет использовать как итератор в будущем,
благодаря которому, есть возможность бить на бачи.
Attributes
----------
Return
----------
list of pd.datetime anomalies on initial dataset
"""
self._init_preproc = True # это кастыль для _get_Train_Test_sets
self.points_ahead = points_ahead
self.len_seq = len_seq
self.batch_size = batch_size
dfs = dfs.copy()
self.best_model_file = best_model_file
self.encod_decode_model = encod_decode_model
if show_progress:
show_progress_text = ""
# -----------------------------------------------------------------------------------------
# Формирование train_iterator и val_iteraror
# -----------------------------------------------------------------------------------------
if Loader is None:
Loader = iterators.Loader
X_train, X_test, y_train, y_test = self._get_Train_Test_sets(dfs=dfs,
len_seq=len_seq,
points_ahead=points_ahead,
gap=gap,
shag=shag,
intersection=intersection,
test_size=test_size,
train_size=train_size,
random_state=random_state,
shuffle=shuffle,
stratify=stratify)
train_iterator = Loader(X_train, y_train, batch_size, shuffle=shuffle)
val_iterator = Loader(X_test, y_test, batch_size, shuffle=shuffle)
# -----------------------------------------------------------------------------------------
# Обучение моделей
# -----------------------------------------------------------------------------------------
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
if criterion is None:
criterion = nn.MSELoss()
if model is None:
model = models.SimpleLSTM(len(self.columns), len(self.columns), seed=random_state)
self.model = model
if optimiser is None:
optimiser = torch.optim.Adam
optimiser = optimiser(self.model.parameters())
else:
args = optimiser[1]
args['params'] = self.model.parameters()
optimiser = optimiser[0](**args)
history_train = []
history_val = []
best_val_loss = float('+inf')
for epoch in range(n_epochs):
train_loss = self.model.run_epoch(train_iterator, optimiser, criterion, phase='train',
points_ahead=points_ahead, encod_decode_model=self.encod_decode_model,
device=device) # , writer=writer)
val_loss = self.model.run_epoch(val_iterator, None, criterion, phase='val', points_ahead=points_ahead,
encod_decode_model=self.encod_decode_model,
device=device) # , writer=writer)
history_train.append(train_loss)
history_val.append(val_loss)
if val_loss < best_val_loss:
best_val_loss = val_loss
torch.save(self.model.state_dict(), self.best_model_file)
if show_figures:
display.clear_output(wait=True)
plt.figure()
plt.plot(history_train, label='Train')
plt.plot(history_val, label='Val')
plt.xlabel('Epoch')
plt.ylabel('MSE')
plt.legend()
plt.show()
if show_progress:
show_progress_text = f'Epoch: {epoch + 1:02} \n' + \
f'\tTrain Loss: {train_loss:.3f} \n' + \
f'\t Val. Loss: {val_loss:.3f} \n\n' + \
show_progress_text
print(show_progress_text)
self.model.load_state_dict(torch.load(self.best_model_file))
if show_progress:
print("After choosing the best model:")
try:
test_iterator = Loader(X_test, y_test, len(X_test), shuffle=False)
test_loss = self.model.run_epoch(test_iterator, None, criterion, phase='val',
encod_decode_model=self.encod_decode_model, device=device)
print(f'Test Loss: {test_loss:.3f}')
except:
print('Весь X_test не помещается в память, тестим усреднением по батчам')
test_iterator = Loader(X_test, y_test, batch_size, shuffle=False)
test_loss = []
for epoch in range(n_epochs):
test_loss.append(self.model.run_epoch(test_iterator, None, criterion, phase='val',
encod_decode_model=self.encod_decode_model, device=device))
print(f'Test Loss: {np.mean(test_loss):.3f}')
# -----------------------------------------------------------------------------------------
# Генерация остатков
# -----------------------------------------------------------------------------------------
df_residuals = self._get_anomaly_timestamps(dfs=dfs,
Loader=Loader,
len_seq=len_seq,
points_ahead=1,
gap=gap,
shag=shag,
intersection=intersection,
test_size=0,
random_state=None,
shuffle=False,
stratify=stratify,
device=device,
point_ahead_for_residuals=0)
self.anomaly_timestamps = self.res_analys_alg.fit_predict(df_residuals, show_figure=show_figures)
self.statistic = self.res_analys_alg.statistic
self.ucl = self.res_analys_alg.ucl
self.lcl = self.res_analys_alg.lcl
return self.anomaly_timestamps
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# накосячил тут с прогнозом на одну точку вперед. Могут быть проблемы если ahead !=1
def predict_anomaly(self,
dfs,
Loader=None,
gap=0,
shag=1,
intersection=True,
train_size=None,
random_state=None,
shuffle=False,
stratify=None,
show_progress=True,
show_figures=True
):
"""
Поиск аномалий в новом наборе данных
Parameters
----------
см self.fit() dockstring
Return
----------
anomaly_timestamps : list of df.index.dtype
Возвращает список временных меток аномалий
Attributes
----------
"""
len_seq = self.len_seq
if Loader is None:
Loader = iterators.Loader
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
# -----------------------------------------------------------------------------------------
# Генерация остатков
# -----------------------------------------------------------------------------------------
df_residuals = self._get_anomaly_timestamps(dfs=dfs,
Loader=Loader,
len_seq=len_seq,
points_ahead=1,
gap=gap,
shag=shag,
intersection=intersection,
test_size=0,
random_state=None,
shuffle=False,
stratify=stratify,
device=device,
point_ahead_for_residuals=0)
self.anomaly_timestamps = self.res_analys_alg.predict(df_residuals, show_figure=show_figures)
self.statistic = self.res_analys_alg.statistic
return self.anomaly_timestamps
def forecast(self, df, points_ahead=None, Loader=None, show_figures=True):
"""
Прогнозирование временного ряда, в том числе векторного.
Parameters
----------
df : pd.core.series.Series or pd.core.frame.DataFrame data type
Исходные данные. Данные не долнжны содержать np.nan вовсе, иметь постоянную
и одинковую частоту of df.index и при этом не иметь пропусков.
points_ahead : int, default=5
Горизонт прогнозирования.
show_figures : bool, default=True
Показывать или нет результаты решения задачии anomaly detection
и кривую трейна и валидации по эпохам.
Loader : class, default=iterators.Loader.
Тип загрузчика, которую будет использовать как итератор в будущем,
благодаря которому, есть возможность бить на бачи.
Attributes
----------
"""
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
if Loader is None:
Loader = iterators.Loader
df = df.copy()
points_ahead = points_ahead if points_ahead is not None else self.points_ahead
len_seq = self.len_seq
batch_size = self.batch_size
assert (type(df) == pd.core.series.Series) | (type(df) == pd.core.frame.DataFrame)
df = df.copy() if type(df) == pd.core.frame.DataFrame else pd.DataFrame(df)
df = df[-len_seq:]
assert not self._init_preproc
preproc_values = self.preproc.transform(df)
iterator = Loader(np.expand_dims(preproc_values, 0), np.expand_dims(preproc_values, 0),
# ничего страшного, 'y' все равно не используется
batch_size, shuffle=False)
y_pred = self.model.run_epoch(iterator, None, None, phase='forecast', points_ahead=points_ahead, device=device)[
0]
y_pred = self.preproc.inverse_transform(y_pred)
t_last = np.datetime64(df.index[-1])
delta_dime = np.timedelta64(df.index[-1] - df.index[-2])
new_index = pd.to_datetime(t_last + np.arange(1, points_ahead + 1) * delta_dime)
y_pred = pd.DataFrame(y_pred, index=new_index, columns=df.columns)
if show_figures:
pd.concat([df, y_pred])[-3 * points_ahead:].plot()
plt.axvspan(t_last, y_pred.index[-1], alpha=0.2, color='green', label='forecast')
plt.xlabel('Datetime')
plt.ylabel('Value')
plt.legend()
plt.show()
return y_pred
def save(self, path='./pipeline.pcl'):
"""
Method for saving pipeline.
It may be required for example after training.
CPU.
Parameters
----------
path : str
Путь до файла, для сохранения пайплайна.
Пайлайн сохраняется в формате pickle
"""
self.model.run_epoch(iterators.Loader(torch.zeros((1, self.len_seq, self.model.in_features), dtype=float),
torch.zeros((1, self.len_seq, self.model.in_features), dtype=float),
batch_size=1),
None, None, phase='forecast', points_ahead=1, device=torch.device("cpu"))
with open(path, 'wb') as f:
pickle.dump(self, f)
def load(self, path='./pipeline.pcl'):
"""
Method for loading pipeline.
It may be required for example after training.
Parameters
----------
path : str
Путь до сохраненного файла пайплайна.
Пайлайн должен быть в формате pickle
"""
with open(path, 'rb') as f:
pipeline = pickle.load(f)
self.__dict__.update(pipeline.__dict__)
| [
"matplotlib.pyplot.ylabel",
"numpy.array",
"torch.nn.MSELoss",
"torch.cuda.is_available",
"numpy.arange",
"numpy.mean",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"numpy.datetime64",
"pandas.DataFrame",
"sklearn.preprocessing.MinMaxScaler",
"matplotlib.pyplot.axvspan",
"pickle.loa... | [((27389, 27416), 'numpy.datetime64', 'np.datetime64', (['df.index[-1]'], {}), '(df.index[-1])\n', (27402, 27416), True, 'import numpy as np\n'), ((27439, 27482), 'numpy.timedelta64', 'np.timedelta64', (['(df.index[-1] - df.index[-2])'], {}), '(df.index[-1] - df.index[-2])\n', (27453, 27482), True, 'import numpy as np\n'), ((27591, 27648), 'pandas.DataFrame', 'pd.DataFrame', (['y_pred'], {'index': 'new_index', 'columns': 'df.columns'}), '(y_pred, index=new_index, columns=df.columns)\n', (27603, 27648), True, 'import pandas as pd\n'), ((8424, 8440), 'numpy.array', 'np.array', (['y_true'], {}), '(y_true)\n', (8432, 8440), True, 'import numpy as np\n'), ((9296, 9310), 'sklearn.preprocessing.MinMaxScaler', 'MinMaxScaler', ([], {}), '()\n', (9308, 9310), False, 'from sklearn.preprocessing import MinMaxScaler, StandardScaler\n'), ((17788, 17800), 'torch.nn.MSELoss', 'nn.MSELoss', ([], {}), '()\n', (17798, 17800), False, 'from torch import nn\n'), ((19962, 19994), 'torch.load', 'torch.load', (['self.best_model_file'], {}), '(self.best_model_file)\n', (19972, 19994), False, 'import torch\n'), ((26805, 26821), 'pandas.DataFrame', 'pd.DataFrame', (['df'], {}), '(df)\n', (26817, 26821), True, 'import pandas as pd\n'), ((26971, 27004), 'numpy.expand_dims', 'np.expand_dims', (['preproc_values', '(0)'], {}), '(preproc_values, 0)\n', (26985, 27004), True, 'import numpy as np\n'), ((27006, 27039), 'numpy.expand_dims', 'np.expand_dims', (['preproc_values', '(0)'], {}), '(preproc_values, 0)\n', (27020, 27039), True, 'import numpy as np\n'), ((27754, 27840), 'matplotlib.pyplot.axvspan', 'plt.axvspan', (['t_last', 'y_pred.index[-1]'], {'alpha': '(0.2)', 'color': '"""green"""', 'label': '"""forecast"""'}), "(t_last, y_pred.index[-1], alpha=0.2, color='green', label=\n 'forecast')\n", (27765, 27840), True, 'import matplotlib.pyplot as plt\n'), ((27849, 27871), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Datetime"""'], {}), "('Datetime')\n", (27859, 27871), True, 'import matplotlib.pyplot as plt\n'), ((27885, 27904), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Value"""'], {}), "('Value')\n", (27895, 27904), True, 'import matplotlib.pyplot as plt\n'), ((27918, 27930), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (27928, 27930), True, 'import matplotlib.pyplot as plt\n'), ((27944, 27954), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (27952, 27954), True, 'import matplotlib.pyplot as plt\n'), ((28768, 28788), 'pickle.dump', 'pickle.dump', (['self', 'f'], {}), '(self, f)\n', (28779, 28788), False, 'import pickle\n'), ((29184, 29198), 'pickle.load', 'pickle.load', (['f'], {}), '(f)\n', (29195, 29198), False, 'import pickle\n'), ((2672, 2689), 'pandas.DataFrame', 'pd.DataFrame', (['dfs'], {}), '(dfs)\n', (2684, 2689), True, 'import pandas as pd\n'), ((4352, 4385), 'pandas.concat', 'pd.concat', (['dfs'], {'ignore_index': '(True)'}), '(dfs, ignore_index=True)\n', (4361, 4385), True, 'import pandas as pd\n'), ((8690, 8792), 'pandas.DataFrame', 'pd.DataFrame', (['residuals[:, point_ahead_for_residuals, :]'], {'columns': 'self.columns', 'index': 'res_indices'}), '(residuals[:, point_ahead_for_residuals, :], columns=self.\n columns, index=res_indices)\n', (8702, 8792), True, 'import pandas as pd\n'), ((17692, 17717), 'torch.cuda.is_available', 'torch.cuda.is_available', ([], {}), '()\n', (17715, 17717), False, 'import torch\n'), ((19256, 19287), 'IPython.display.clear_output', 'display.clear_output', ([], {'wait': '(True)'}), '(wait=True)\n', (19276, 19287), False, 'from IPython import display\n'), ((19305, 19317), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (19315, 19317), True, 'import matplotlib.pyplot as plt\n'), ((19335, 19373), 'matplotlib.pyplot.plot', 'plt.plot', (['history_train'], {'label': '"""Train"""'}), "(history_train, label='Train')\n", (19343, 19373), True, 'import matplotlib.pyplot as plt\n'), ((19391, 19425), 'matplotlib.pyplot.plot', 'plt.plot', (['history_val'], {'label': '"""Val"""'}), "(history_val, label='Val')\n", (19399, 19425), True, 'import matplotlib.pyplot as plt\n'), ((19443, 19462), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""Epoch"""'], {}), "('Epoch')\n", (19453, 19462), True, 'import matplotlib.pyplot as plt\n'), ((19480, 19497), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""MSE"""'], {}), "('MSE')\n", (19490, 19497), True, 'import matplotlib.pyplot as plt\n'), ((19515, 19527), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (19525, 19527), True, 'import matplotlib.pyplot as plt\n'), ((19545, 19555), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (19553, 19555), True, 'import matplotlib.pyplot as plt\n'), ((23855, 23880), 'torch.cuda.is_available', 'torch.cuda.is_available', ([], {}), '()\n', (23878, 23880), False, 'import torch\n'), ((26352, 26377), 'torch.cuda.is_available', 'torch.cuda.is_available', ([], {}), '()\n', (26375, 26377), False, 'import torch\n'), ((28379, 28446), 'torch.zeros', 'torch.zeros', (['(1, self.len_seq, self.model.in_features)'], {'dtype': 'float'}), '((1, self.len_seq, self.model.in_features), dtype=float)\n', (28390, 28446), False, 'import torch\n'), ((28489, 28556), 'torch.zeros', 'torch.zeros', (['(1, self.len_seq, self.model.in_features)'], {'dtype': 'float'}), '((1, self.len_seq, self.model.in_features), dtype=float)\n', (28500, 28556), False, 'import torch\n'), ((28697, 28716), 'torch.device', 'torch.device', (['"""cpu"""'], {}), "('cpu')\n", (28709, 28716), False, 'import torch\n'), ((27528, 27558), 'numpy.arange', 'np.arange', (['(1)', '(points_ahead + 1)'], {}), '(1, points_ahead + 1)\n', (27537, 27558), True, 'import numpy as np\n'), ((27690, 27713), 'pandas.concat', 'pd.concat', (['[df, y_pred]'], {}), '([df, y_pred])\n', (27699, 27713), True, 'import pandas as pd\n'), ((20972, 20990), 'numpy.mean', 'np.mean', (['test_loss'], {}), '(test_loss)\n', (20979, 20990), True, 'import numpy as np\n')] |
## Linear Regression Channel
## Ref https://medium.com/coinmonks/trading-bitcoin-with-linear-regression-channels-b84e7e43d984
from google.protobuf import symbol_database
from st_stock.stocky import get_assets
from typing import List
from datetime import datetime
import seaborn as sns
from matplotlib import pyplot as plt
import numpy as np
import streamlit as st
from st_stock.misc import load_cypto_symbols, load_config
def std_line_plot(x, y, ax, sigma=1, color='r', **kwargs):
'''
plot strand dev lines for X sigma
'''
sns.lineplot(
x = x, y = (y + (sigma * np.std(y,))), color=color, ax=ax, **kwargs)
sns.lineplot(
x = x, y = (y - (sigma * np.std(y))), color=color, ax=ax, **kwargs)
return ax
def plot_linear_regression_channel(symbol: str, period: str='ytd', interval: str='1d', y: str='Close',):
'''
Plot linear regression channel for a given asset
'''
df = get_assets(symbol, period, interval=interval)
df = df.reset_index()
df.loc[:,'idx'] = range(len(df))
df['pct'] = df.Close.pct_change(fill_method='ffill')
df['log'] = np.log(df.Close)
if 'Date' in df:
df = df.rename(columns={'Date': 'Datetime'})
# # df['epoch'] = (df.Datetime - datetime(1970,1,1)).dt.total_seconds()
# df['']
# else:
# df['epoch'] = (df.Date - datetime(1970,1,1)).dt.total_seconds()
sns.set(font_scale=1.5)
fig, ax = plt.subplots(figsize=(15, 8))
## using build in the regression plot
reg_plot = sns.regplot(
'idx',
y,
data=df,
ci=95, marker='.',
ax=ax,
)
## extract the regression list
y_mean = reg_plot.get_lines()[0].get_ydata()
x_mean = reg_plot.get_lines()[0].get_xdata()
## plot the channel
std_line_plot(x_mean,y_mean, ax=ax, sigma=1, color='r', label='1 std ' )
std_line_plot(x_mean,y_mean, ax=ax, sigma=2, color='r', linestyle='--', label='2 std' )
# ax.set_xticklabels([datetime.fromtimestamp(x) for x in ax.get_xticks()], rotation =90)
# print([x for x in ax.get_xticks()])
# ax.set_xticklabels([df.loc[int(x), 'Datetime'] if x >=0 else df.loc[0,'Datetime'] for x in ax.get_xticks() ], rotation =90)
ax.set(xlabel='')
ax.legend()
return (fig, ax, df)
def st_linear_regression_channel():
config = load_config()
symbol = st.sidebar.selectbox('symbols', load_cypto_symbols())
period = st.sidebar.selectbox('Period', config['cypto']['periods'], index=config['cypto']['periods'].index('ytd') )
interval = st.sidebar.selectbox('Interval', config['cypto']['intervals'], index=config['cypto']['intervals'].index('1d'))
y = st.sidebar.selectbox('Y axis', ['Close', 'pct', 'log'], index=0)
st.header('Linear Regression Channels for cypto')
fig, ax, data = plot_linear_regression_channel(symbol, period, interval, y=y)
st.write(fig)
st.dataframe(data)
| [
"seaborn.set",
"seaborn.regplot",
"numpy.log",
"streamlit.write",
"st_stock.misc.load_config",
"st_stock.misc.load_cypto_symbols",
"streamlit.dataframe",
"st_stock.stocky.get_assets",
"streamlit.sidebar.selectbox",
"numpy.std",
"streamlit.header",
"matplotlib.pyplot.subplots"
] | [((931, 976), 'st_stock.stocky.get_assets', 'get_assets', (['symbol', 'period'], {'interval': 'interval'}), '(symbol, period, interval=interval)\n', (941, 976), False, 'from st_stock.stocky import get_assets\n'), ((1113, 1129), 'numpy.log', 'np.log', (['df.Close'], {}), '(df.Close)\n', (1119, 1129), True, 'import numpy as np\n'), ((1393, 1416), 'seaborn.set', 'sns.set', ([], {'font_scale': '(1.5)'}), '(font_scale=1.5)\n', (1400, 1416), True, 'import seaborn as sns\n'), ((1432, 1461), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(15, 8)'}), '(figsize=(15, 8))\n', (1444, 1461), True, 'from matplotlib import pyplot as plt\n'), ((1519, 1575), 'seaborn.regplot', 'sns.regplot', (['"""idx"""', 'y'], {'data': 'df', 'ci': '(95)', 'marker': '"""."""', 'ax': 'ax'}), "('idx', y, data=df, ci=95, marker='.', ax=ax)\n", (1530, 1575), True, 'import seaborn as sns\n'), ((2335, 2348), 'st_stock.misc.load_config', 'load_config', ([], {}), '()\n', (2346, 2348), False, 'from st_stock.misc import load_cypto_symbols, load_config\n'), ((2672, 2736), 'streamlit.sidebar.selectbox', 'st.sidebar.selectbox', (['"""Y axis"""', "['Close', 'pct', 'log']"], {'index': '(0)'}), "('Y axis', ['Close', 'pct', 'log'], index=0)\n", (2692, 2736), True, 'import streamlit as st\n'), ((2742, 2791), 'streamlit.header', 'st.header', (['"""Linear Regression Channels for cypto"""'], {}), "('Linear Regression Channels for cypto')\n", (2751, 2791), True, 'import streamlit as st\n'), ((2878, 2891), 'streamlit.write', 'st.write', (['fig'], {}), '(fig)\n', (2886, 2891), True, 'import streamlit as st\n'), ((2896, 2914), 'streamlit.dataframe', 'st.dataframe', (['data'], {}), '(data)\n', (2908, 2914), True, 'import streamlit as st\n'), ((2395, 2415), 'st_stock.misc.load_cypto_symbols', 'load_cypto_symbols', ([], {}), '()\n', (2413, 2415), False, 'from st_stock.misc import load_cypto_symbols, load_config\n'), ((592, 601), 'numpy.std', 'np.std', (['y'], {}), '(y)\n', (598, 601), True, 'import numpy as np\n'), ((687, 696), 'numpy.std', 'np.std', (['y'], {}), '(y)\n', (693, 696), True, 'import numpy as np\n')] |
'''
Author <NAME>
Date 5/21/2021
utility functions for train and predict data generators
'''
import cv2
import numpy as np
import re
from joblib import Parallel, delayed
def sort_frame_crop_filenames(filenames):
def find_frame_crop_number(filename):
filename = filename.split('/')[-1]
regex = re.compile(r'.*_c')
frame_id = regex.findall(filename)[0]
regex = re.compile(r'_c\d+_')
crop_id = regex.findall(filename)[0] # example: '_c40_'
crop_id = int(crop_id.replace('_c', '').replace('_', ''))
return frame_id, crop_id
# For instance, parse ../crop/generated/crop_even_input256_FNA_valid_fold0/mask_repeat0/pk2777-third-0620_c9_even_input256.png
filenames.sort(key=find_frame_crop_number)
assert_crop_increment_filenames(filenames)
return filenames
def assert_crop_increment_filenames(filenames):
prev_crop_id = 0
prev_max_crop_id = 0
for filename in filenames:
filename = filename.split('/')[-1]
regex = re.compile(r'_c\d+_')
crop_id = regex.findall(filename)[0] # example: '_c40_'
crop_id = int(crop_id.replace('_c', '').replace('_', ''))
if crop_id >= prev_crop_id: # assume crop id increment one by one
prev_crop_id = crop_id
elif prev_max_crop_id == 0:
prev_max_crop_id = crop_id # first time setting prev_max_crop_id
prev_crop_id = 0
elif prev_max_crop_id == crop_id: # check the next time crop id reaches the prev_max_crop_id
prev_crop_id = 0
else:
raise ValueError('crop id is not incrementing correctly')
def assert_same_two_filenames(first_filenames, second_filenames):
for first_filename, second_filename in zip(first_filenames, second_filenames):
assert first_filename.split('/')[-1] == second_filename.split('/')[-1]
def threshold_mask_area_list(image_height, image_width, mask_area_list, threshold_percentage):
min_mask_area_threshold = image_height * image_width * threshold_percentage * 0.01
return [mask_area > min_mask_area_threshold for mask_area in mask_area_list]
def convert_masks_to_areas(mask_list):
mask_area_list = np.zeros(mask_list.shape[0])
for i, mask in enumerate(mask_list):
mask_area_list[i] = np.sum(mask > 0)
return mask_area_list
def convert_masks_to_classes(image_height, image_width, mask_list):
min_mask_area_threshold = image_height * image_width * 0.01
mask_class_list = np.zeros(mask_list.shape[0])
for i, mask in enumerate(mask_list):
mask_class_list[i] = np.sum(mask > 0) > min_mask_area_threshold
return mask_class_list
def read_images(image_path_list):
# https://stackoverflow.com/questions/33778155/python-parallelized-image-reading-and-preprocessing-using-multiprocessing
images = Parallel(n_jobs=4, verbose=1)(
delayed(cv2.imread)(image_path, cv2.IMREAD_GRAYSCALE) for image_path in image_path_list
)
return images
def read_color_images(image_path_list):
images = Parallel(n_jobs=4, verbose=1)(
delayed(cv2.imread)(image_path, cv2.IMREAD_COLOR) for image_path in image_path_list
)
return images
def unison_shuffle_lists(a, b):
assert len(a) == len(b)
p = np.random.permutation(len(a))
a = [a[i] for i in p]
b = [b[i] for i in p]
return a, b
def unison_shuffle_ndarrays(a, b):
assert len(a) == len(b)
shuffler = np.random.permutation(len(a))
a_shuffled = a[shuffler]
b_shuffled = b[shuffler]
return a_shuffled, b_shuffled
# def unison_shuffle_multiple_ndarrays(*args):
# assert len(args[0]) == len(args[0])
# assert len(args[0]) == len(args[-1])
#
# shuffler = np.random.permutation(len(args[0]))
# shuffled_args = []
# for i in range(len(args)):
# shuffled_args.append(args[i][shuffler])
def unison_shuffle_multiple_ndarrays(a,b,c,d):
assert len(a) == len(b)
assert len(a) == len(c)
shuffler = np.random.permutation(len(a))
a_shuffled = a[shuffler]
b_shuffled = b[shuffler]
c_shuffled = c[shuffler]
d_shuffled = d[shuffler]
return a_shuffled, b_shuffled, c_shuffled, d_shuffled
def regex_find_crop_id(filename):
regex = re.compile(r'_c\d+_')
crop_id = regex.findall(filename)[0] # example: '/_c40'
return crop_id
def regex_find_frame_id(filename):
regex = re.compile(r'/f\d+_c')
frame_id = regex.findall(filename)[0] # example: '/f040_c'
return frame_id
def regex_find_prev_filenames(cur_filename, max_prev_frame_num):
# For the given current frame, get n previous frames
# cur_frame_id_string: '/f040_c', crop_id_string: 'c0'
cur_frame_id_string = regex_find_frame_id(cur_filename)
crop_id_string = regex_find_crop_id(cur_filename)
cur_frame_id = int(cur_frame_id_string.replace('/f', '').replace('_c', ''))
if cur_frame_id - max_prev_frame_num < 0:
return None
else:
prev_filenames = []
for prev_counter in range(1, max_prev_frame_num+1):
prev_frame_id = f"/f{(cur_frame_id - prev_counter):03d}{crop_id_string}"
prev_filenames.append(cur_filename.replace(f"{cur_frame_id_string.replace('_c', '')}{crop_id_string}", prev_frame_id))
return prev_filenames | [
"re.compile",
"joblib.Parallel",
"numpy.sum",
"numpy.zeros",
"joblib.delayed"
] | [((2277, 2305), 'numpy.zeros', 'np.zeros', (['mask_list.shape[0]'], {}), '(mask_list.shape[0])\n', (2285, 2305), True, 'import numpy as np\n'), ((2582, 2610), 'numpy.zeros', 'np.zeros', (['mask_list.shape[0]'], {}), '(mask_list.shape[0])\n', (2590, 2610), True, 'import numpy as np\n'), ((4390, 4411), 're.compile', 're.compile', (['"""_c\\\\d+_"""'], {}), "('_c\\\\d+_')\n", (4400, 4411), False, 'import re\n'), ((4549, 4571), 're.compile', 're.compile', (['"""/f\\\\d+_c"""'], {}), "('/f\\\\d+_c')\n", (4559, 4571), False, 'import re\n'), ((337, 355), 're.compile', 're.compile', (['""".*_c"""'], {}), "('.*_c')\n", (347, 355), False, 'import re\n'), ((423, 444), 're.compile', 're.compile', (['"""_c\\\\d+_"""'], {}), "('_c\\\\d+_')\n", (433, 444), False, 'import re\n'), ((1064, 1085), 're.compile', 're.compile', (['"""_c\\\\d+_"""'], {}), "('_c\\\\d+_')\n", (1074, 1085), False, 'import re\n'), ((2377, 2393), 'numpy.sum', 'np.sum', (['(mask > 0)'], {}), '(mask > 0)\n', (2383, 2393), True, 'import numpy as np\n'), ((2933, 2962), 'joblib.Parallel', 'Parallel', ([], {'n_jobs': '(4)', 'verbose': '(1)'}), '(n_jobs=4, verbose=1)\n', (2941, 2962), False, 'from joblib import Parallel, delayed\n'), ((3146, 3175), 'joblib.Parallel', 'Parallel', ([], {'n_jobs': '(4)', 'verbose': '(1)'}), '(n_jobs=4, verbose=1)\n', (3154, 3175), False, 'from joblib import Parallel, delayed\n'), ((2683, 2699), 'numpy.sum', 'np.sum', (['(mask > 0)'], {}), '(mask > 0)\n', (2689, 2699), True, 'import numpy as np\n'), ((2973, 2992), 'joblib.delayed', 'delayed', (['cv2.imread'], {}), '(cv2.imread)\n', (2980, 2992), False, 'from joblib import Parallel, delayed\n'), ((3186, 3205), 'joblib.delayed', 'delayed', (['cv2.imread'], {}), '(cv2.imread)\n', (3193, 3205), False, 'from joblib import Parallel, delayed\n')] |
import glob, os, pickle, datetime, time, re, pprint
import matplotlib.pyplot as plt
import numpy as np
from src import plotter, graphs
from src.mltoolbox.metrics import METRICS
from src.utils import *
from shutil import copyfile, rmtree
from src.plotter import Plotter
def main():
# SETUP BEGIN
test_folder_path = './test_log/test_rslo100_sloreg_100n_exp[1]_mtrT0all_sgC1e-05alpha_52000samp_INFtime_400iter'
target_x0 = 100
target_x = 300
logs, setup = load_test_logs(test_folder_path, return_setup=True)
objfunc = METRICS[setup['obj_function']]
degrees = {}
for graph in setup['graphs']:
degrees[graph] = degree_from_adjacency_matrix(setup['graphs'][graph])
graph_filter = [
'*'
]
pred_ratios = []
real_slopes = []
# equal to None so that if it will not be reassigned then it will raise exception
clique_slope = None
clique_spectral_gap = None
for graph, graph_objfunc_log in dict(logs['metrics'][objfunc.id]).items():
if graph not in graph_filter and '*' not in graph_filter:
del logs['metrics'][objfunc.id][graph]
continue
y0 = logs['metrics'][objfunc.id][graph][target_x0]
y = logs['metrics'][objfunc.id][graph][target_x]
"""if degrees[graph] == 2:
y0 = logs['metrics'][objfunc.id][graph][3000]
y = logs['metrics'][objfunc.id][graph][3600]"""
slope = y - y0
print(slope)
real_slopes.append(slope)
pred_ratios.append(1 / math.sqrt(uniform_weighted_Pn_spectral_gap_from_adjacency_matrix(setup['graphs'][graph])))
if 'clique' in graph:
clique_slope = slope
clique_spectral_gap = uniform_weighted_Pn_spectral_gap_from_adjacency_matrix(setup['graphs'][graph])
real_ratios = clique_slope / np.array(real_slopes)
pred_ratios = np.array(pred_ratios)
print(real_ratios)
plt.figure(1, figsize=(12, 6))
plt.suptitle(test_folder_path)
plt.subplot(1, 2, 1)
plt.title("Ratio comparison", loc='left')
plt.title("({})".format(setup['time_distr_class'].name), loc='right')
plt.xlabel("prediction")
plt.ylabel("simulation")
plt.yscale('linear')
plt.plot(
pred_ratios,
real_ratios,
color='blue',
markersize=5,
marker='o',
)
for i in range(len(pred_ratios)):
plt.text(
pred_ratios[i],
real_ratios[i],
'd={}'.format(degrees[list(logs['metrics'][objfunc.id].keys())[i]]),
size='xx-small'
)
colors = Plotter.generate_rainbow_color_dict_from_graph_keys(
list(setup['graphs'].keys()), setup['n']
)
# objfunc - AVG ITER SUBPLOT
plt.subplot(1, 2, 2)
plt.title("{} over iteration".format(objfunc.fullname), loc='left')
plt.title("({})".format(setup['time_distr_class'].name), loc='right')
plt.xlabel('iter')
plt.ylabel(objfunc.fullname)
plt.yscale('linear')
for graph, graph_objfunc_log in dict(logs['metrics'][objfunc.id]).items():
plt.plot(
list(range(len(graph_objfunc_log))),
graph_objfunc_log,
label=graph,
color=colors[graph]
)
plt.legend()
plt.subplots_adjust(
top=0.88,
bottom=0.08,
left=0.06,
right=0.96,
hspace=0.2,
wspace=0.17
)
plt.show()
plt.close()
if __name__ == '__main__':
main() | [
"matplotlib.pyplot.subplots_adjust",
"matplotlib.pyplot.ylabel",
"matplotlib.pyplot.xlabel",
"matplotlib.pyplot.plot",
"matplotlib.pyplot.close",
"numpy.array",
"matplotlib.pyplot.figure",
"matplotlib.pyplot.title",
"matplotlib.pyplot.yscale",
"matplotlib.pyplot.subplot",
"matplotlib.pyplot.supt... | [((1867, 1888), 'numpy.array', 'np.array', (['pred_ratios'], {}), '(pred_ratios)\n', (1875, 1888), True, 'import numpy as np\n'), ((1917, 1947), 'matplotlib.pyplot.figure', 'plt.figure', (['(1)'], {'figsize': '(12, 6)'}), '(1, figsize=(12, 6))\n', (1927, 1947), True, 'import matplotlib.pyplot as plt\n'), ((1952, 1982), 'matplotlib.pyplot.suptitle', 'plt.suptitle', (['test_folder_path'], {}), '(test_folder_path)\n', (1964, 1982), True, 'import matplotlib.pyplot as plt\n'), ((1987, 2007), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(1)', '(2)', '(1)'], {}), '(1, 2, 1)\n', (1998, 2007), True, 'import matplotlib.pyplot as plt\n'), ((2012, 2053), 'matplotlib.pyplot.title', 'plt.title', (['"""Ratio comparison"""'], {'loc': '"""left"""'}), "('Ratio comparison', loc='left')\n", (2021, 2053), True, 'import matplotlib.pyplot as plt\n'), ((2132, 2156), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""prediction"""'], {}), "('prediction')\n", (2142, 2156), True, 'import matplotlib.pyplot as plt\n'), ((2161, 2185), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""simulation"""'], {}), "('simulation')\n", (2171, 2185), True, 'import matplotlib.pyplot as plt\n'), ((2190, 2210), 'matplotlib.pyplot.yscale', 'plt.yscale', (['"""linear"""'], {}), "('linear')\n", (2200, 2210), True, 'import matplotlib.pyplot as plt\n'), ((2215, 2289), 'matplotlib.pyplot.plot', 'plt.plot', (['pred_ratios', 'real_ratios'], {'color': '"""blue"""', 'markersize': '(5)', 'marker': '"""o"""'}), "(pred_ratios, real_ratios, color='blue', markersize=5, marker='o')\n", (2223, 2289), True, 'import matplotlib.pyplot as plt\n'), ((2729, 2749), 'matplotlib.pyplot.subplot', 'plt.subplot', (['(1)', '(2)', '(2)'], {}), '(1, 2, 2)\n', (2740, 2749), True, 'import matplotlib.pyplot as plt\n'), ((2900, 2918), 'matplotlib.pyplot.xlabel', 'plt.xlabel', (['"""iter"""'], {}), "('iter')\n", (2910, 2918), True, 'import matplotlib.pyplot as plt\n'), ((2923, 2951), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['objfunc.fullname'], {}), '(objfunc.fullname)\n', (2933, 2951), True, 'import matplotlib.pyplot as plt\n'), ((2956, 2976), 'matplotlib.pyplot.yscale', 'plt.yscale', (['"""linear"""'], {}), "('linear')\n", (2966, 2976), True, 'import matplotlib.pyplot as plt\n'), ((3225, 3237), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (3235, 3237), True, 'import matplotlib.pyplot as plt\n'), ((3242, 3337), 'matplotlib.pyplot.subplots_adjust', 'plt.subplots_adjust', ([], {'top': '(0.88)', 'bottom': '(0.08)', 'left': '(0.06)', 'right': '(0.96)', 'hspace': '(0.2)', 'wspace': '(0.17)'}), '(top=0.88, bottom=0.08, left=0.06, right=0.96, hspace=\n 0.2, wspace=0.17)\n', (3261, 3337), True, 'import matplotlib.pyplot as plt\n'), ((3391, 3401), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (3399, 3401), True, 'import matplotlib.pyplot as plt\n'), ((3406, 3417), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (3415, 3417), True, 'import matplotlib.pyplot as plt\n'), ((1827, 1848), 'numpy.array', 'np.array', (['real_slopes'], {}), '(real_slopes)\n', (1835, 1848), True, 'import numpy as np\n')] |
import matplotlib.pyplot as plt
import numpy as np
from rich.prompt import Confirm
from loguru import logger
from fcutils.progress import track
from slam import Environment, Agent
# create env
env = Environment()
# create agent
agent = Agent(env, x=20, y=10, angle=np.random.uniform(10, 80))
agent.update_map_every = 1000
# check intial conditions
f, ax = plt.subplots(figsize=(10, 10))
env.draw(ax)
agent.draw(ax)
print("Is the starting configuration OK?")
plt.show()
if Confirm.ask("Continue?"):
# run simulation
for i in track(range(500)):
# move/update agent
agent.update()
# check termination conditions
if env.out_of_bounds(agent.COM):
logger.warning("Agent out of bounds")
break
elif env.is_point_in_obstacle(agent.COM):
logger.warning("Agent is in an obstacle")
break
agent.slam()
# draw environment
f, axes = plt.subplots(figsize=(20, 10), ncols=2)
env.draw(axes[0])
# draw agent and map
agent.draw(axes[0])
agent.map.draw(axes[1])
agent.planner.draw(axes[1])
axes[0].axis("equal")
axes[1].axis("equal")
axes[1].legend()
axes[0].set(title="world view")
axes[1].set(title="agent view")
f.tight_layout()
plt.show()
| [
"rich.prompt.Confirm.ask",
"slam.Environment",
"loguru.logger.warning",
"numpy.random.uniform",
"matplotlib.pyplot.subplots",
"matplotlib.pyplot.show"
] | [((203, 216), 'slam.Environment', 'Environment', ([], {}), '()\n', (214, 216), False, 'from slam import Environment, Agent\n'), ((362, 392), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(10, 10)'}), '(figsize=(10, 10))\n', (374, 392), True, 'import matplotlib.pyplot as plt\n'), ((464, 474), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (472, 474), True, 'import matplotlib.pyplot as plt\n'), ((479, 503), 'rich.prompt.Confirm.ask', 'Confirm.ask', (['"""Continue?"""'], {}), "('Continue?')\n", (490, 503), False, 'from rich.prompt import Confirm\n'), ((937, 976), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 10)', 'ncols': '(2)'}), '(figsize=(20, 10), ncols=2)\n', (949, 976), True, 'import matplotlib.pyplot as plt\n'), ((1282, 1292), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1290, 1292), True, 'import matplotlib.pyplot as plt\n'), ((270, 295), 'numpy.random.uniform', 'np.random.uniform', (['(10)', '(80)'], {}), '(10, 80)\n', (287, 295), True, 'import numpy as np\n'), ((703, 740), 'loguru.logger.warning', 'logger.warning', (['"""Agent out of bounds"""'], {}), "('Agent out of bounds')\n", (717, 740), False, 'from loguru import logger\n'), ((821, 862), 'loguru.logger.warning', 'logger.warning', (['"""Agent is in an obstacle"""'], {}), "('Agent is in an obstacle')\n", (835, 862), False, 'from loguru import logger\n')] |
import pandas as pd
import houghtest
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score
from sklearn.metrics import confusion_matrix
import cv2
import numpy as np
import pickle
from multiprocessing import Process
import time
def thread1():
global h, w, trained_model, copy1
newcopy1 = copy1.copy()
for y in range((h/2)-1):
for c in range((w/2)-1):
b = newcopy1.item(y, c, 0)
g = newcopy1.item(y, c, 1)
r = newcopy1.item(y, c, 2)
bl = newcopy1.item(y, c - 1, 0)
gl = newcopy1.item(y, c - 1, 1)
rl = newcopy1.item(y, c - 1, 2)
br = newcopy1.item(y, c + 1, 0)
gr = newcopy1.item(y, c + 1, 1)
rr = newcopy1.item(y, c + 1, 2)
bu = newcopy1.item(y - 1, c, 0)
gu = newcopy1.item(y - 1, c, 1)
ru = newcopy1.item(y - 1, c, 2)
bul = newcopy1.item(y - 1, c - 1, 0)
gul = newcopy1.item(y - 1, c - 1, 1)
rul = newcopy1.item(y - 1, c - 1, 2)
bur = newcopy1.item(y - 1, c + 1, 0)
gur = newcopy1.item(y - 1, c + 1, 1)
rur = newcopy1.item(y - 1, c + 1, 2)
bdl = newcopy1.item(y + 1, c - 1, 0)
gdl = newcopy1.item(y + 1, c - 1, 1)
rdl = newcopy1.item(y + 1, c - 1, 2)
bdr = newcopy1.item(y + 1, c + 1, 0)
gdr = newcopy1.item(y + 1, c + 1, 1)
rdr = newcopy1.item(y + 1, c + 1, 2)
bd = newcopy1.item(y + 1, c, 0)
gd = newcopy1.item(y + 1, c, 1)
rd = newcopy1.item(y + 1, c, 2)
new_prediction = trained_model.predict(np.array([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]))
if new_prediction > 0.5:
copy1[y, c] = (255, 255, 0)
cv2.imwrite("copy1.png",copy1)
def thread2():
global h, w, trained_model, copy2
newcopy2 = copy2.copy()
for y in range((h/2)-1):
for c in range((w/2)-1):
b = newcopy2.item(y, c, 0)
g = newcopy2.item(y, c, 1)
r = newcopy2.item(y, c, 2)
bl = newcopy2.item(y, c - 1, 0)
gl = newcopy2.item(y, c - 1, 1)
rl = newcopy2.item(y, c - 1, 2)
br = newcopy2.item(y, c + 1, 0)
gr = newcopy2.item(y, c + 1, 1)
rr = newcopy2.item(y, c + 1, 2)
bu = newcopy2.item(y - 1, c, 0)
gu = newcopy2.item(y - 1, c, 1)
ru = newcopy2.item(y - 1, c, 2)
bul = newcopy2.item(y - 1, c - 1, 0)
gul = newcopy2.item(y - 1, c - 1, 1)
rul = newcopy2.item(y - 1, c - 1, 2)
bur = newcopy2.item(y - 1, c + 1, 0)
gur = newcopy2.item(y - 1, c + 1, 1)
rur = newcopy2.item(y - 1, c + 1, 2)
bdl = newcopy2.item(y + 1, c - 1, 0)
gdl = newcopy2.item(y + 1, c - 1, 1)
rdl = newcopy2.item(y + 1, c - 1, 2)
bdr = newcopy2.item(y + 1, c + 1, 0)
gdr = newcopy2.item(y + 1, c + 1, 1)
rdr = newcopy2.item(y + 1, c + 1, 2)
bd = newcopy2.item(y + 1, c, 0)
gd = newcopy2.item(y + 1, c, 1)
rd = newcopy2.item(y + 1, c, 2)
new_prediction = trained_model.predict(np.array([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]))
if new_prediction > 0.5:
copy2[y, c-(w/2)] = (255, 255, 0)
cv2.imwrite("copy2.png", copy2)
def thread3():
global h, w, trained_model, copy3
newcopy3 = copy3.copy()
for y in range((h/2)-1):
for c in range((w/2)-1):
b = newcopy3.item(y, c, 0)
g = newcopy3.item(y, c, 1)
r = newcopy3.item(y, c, 2)
bl = newcopy3.item(y, c - 1, 0)
gl = newcopy3.item(y, c - 1, 1)
rl = newcopy3.item(y, c - 1, 2)
br = newcopy3.item(y, c + 1, 0)
gr = newcopy3.item(y, c + 1, 1)
rr = newcopy3.item(y, c + 1, 2)
bu = newcopy3.item(y - 1, c, 0)
gu = newcopy3.item(y - 1, c, 1)
ru = newcopy3.item(y - 1, c, 2)
bul = newcopy3.item(y - 1, c - 1, 0)
gul = newcopy3.item(y - 1, c - 1, 1)
rul = newcopy3.item(y - 1, c - 1, 2)
bur = newcopy3.item(y - 1, c + 1, 0)
gur = newcopy3.item(y - 1, c + 1, 1)
rur = newcopy3.item(y - 1, c + 1, 2)
bdl = newcopy3.item(y + 1, c - 1, 0)
gdl = newcopy3.item(y + 1, c - 1, 1)
rdl = newcopy3.item(y + 1, c - 1, 2)
bdr = newcopy3.item(y + 1, c + 1, 0)
gdr = newcopy3.item(y + 1, c + 1, 1)
rdr = newcopy3.item(y + 1, c + 1, 2)
bd = newcopy3.item(y + 1, c, 0)
gd = newcopy3.item(y + 1, c, 1)
rd = newcopy3.item(y + 1, c, 2)
new_prediction = trained_model.predict(np.array([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]))
if new_prediction > 0.5:
copy3[y-(h/2), c] = (255, 255, 0)
cv2.imwrite("copy3.png", copy3)
def thread4():
global h, w, trained_model, copy4
newcopy4 = copy4.copy()
for y in range((h/2)-1):
for c in range((w/2)-1):
b = newcopy4.item(y, c, 0)
g = newcopy4.item(y, c, 1)
r = newcopy4.item(y, c, 2)
bl = newcopy4.item(y, c - 1, 0)
gl = newcopy4.item(y, c - 1, 1)
rl = newcopy4.item(y, c - 1, 2)
br = newcopy4.item(y, c + 1, 0)
gr = newcopy4.item(y, c + 1, 1)
rr = newcopy4.item(y, c + 1, 2)
bu = newcopy4.item(y - 1, c, 0)
gu = newcopy4.item(y - 1, c, 1)
ru = newcopy4.item(y - 1, c, 2)
bul = newcopy4.item(y - 1, c - 1, 0)
gul = newcopy4.item(y - 1, c - 1, 1)
rul = newcopy4.item(y - 1, c - 1, 2)
bur = newcopy4.item(y - 1, c + 1, 0)
gur = newcopy4.item(y - 1, c + 1, 1)
rur = newcopy4.item(y - 1, c + 1, 2)
bdl = newcopy4.item(y + 1, c - 1, 0)
gdl = newcopy4.item(y + 1, c - 1, 1)
rdl = newcopy4.item(y + 1, c - 1, 2)
bdr = newcopy4.item(y + 1, c + 1, 0)
gdr = newcopy4.item(y + 1, c + 1, 1)
rdr = newcopy4.item(y + 1, c + 1, 2)
bd = newcopy4.item(y + 1, c, 0)
gd = newcopy4.item(y + 1, c, 1)
rd = newcopy4.item(y + 1, c, 2)
new_prediction = trained_model.predict(np.array([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]))
if new_prediction > 0.5:
copy4[y-(h/2), c-(w/2)] = (255, 255, 0)
cv2.imwrite("copy4.png", copy4)
def main(img_path_or):
global trained_model, copy1, copy2, copy3, copy4, h, w
start = time.time()
print('Unpacking model')
trained_model = pickle.load(open("trained_model_25509_wo_verbose.sav",'rb'))
img = cv2.imread(img_path_or)
h, w = img.shape[:2]
copy1 = img[0:(h/2), 0:(w/2)]
copy2 = img[0:(h/2), (w/2):w]
copy3 = img[(h/2):h, 0:(w/2)]
copy4 = img[(h/2):h, (w/2):w]
print('Pocessing')
p1 = Process(target=thread1)
p2 = Process(target=thread2)
p3 = Process(target=thread3)
p4 = Process(target=thread4)
p1.start()
p2.start()
p3.start()
p4.start()
p1.join()
p2.join()
p3.join()
p4.join()
out1 = np.zeros((320, 480, 3))
out1[0:(h/2), 0:(w/2)] = cv2.imread('copy1.png')
out1[0:(h/2), (w/2):w] = cv2.imread('copy2.png')
out1[(h/2):h, 0:(w/2)] = cv2.imread('copy3.png')
out1[(h/2):h, (w/2):w] = cv2.imread('copy4.png')
cv2.imwrite('images/out1.png', out1)
length = houghtest.main("images/out1.png",img_path_or)
print('finished')
end = time.time()
print('Took '+str(round(((end - start)/60), 2))+' mins to process')
return length
if __name__ == '__main__':
main(img_path_or)
| [
"cv2.imwrite",
"multiprocessing.Process",
"houghtest.main",
"numpy.array",
"numpy.zeros",
"time.time",
"cv2.imread"
] | [((7165, 7176), 'time.time', 'time.time', ([], {}), '()\n', (7174, 7176), False, 'import time\n'), ((7299, 7322), 'cv2.imread', 'cv2.imread', (['img_path_or'], {}), '(img_path_or)\n', (7309, 7322), False, 'import cv2\n'), ((7518, 7541), 'multiprocessing.Process', 'Process', ([], {'target': 'thread1'}), '(target=thread1)\n', (7525, 7541), False, 'from multiprocessing import Process\n'), ((7551, 7574), 'multiprocessing.Process', 'Process', ([], {'target': 'thread2'}), '(target=thread2)\n', (7558, 7574), False, 'from multiprocessing import Process\n'), ((7584, 7607), 'multiprocessing.Process', 'Process', ([], {'target': 'thread3'}), '(target=thread3)\n', (7591, 7607), False, 'from multiprocessing import Process\n'), ((7617, 7640), 'multiprocessing.Process', 'Process', ([], {'target': 'thread4'}), '(target=thread4)\n', (7624, 7640), False, 'from multiprocessing import Process\n'), ((7771, 7794), 'numpy.zeros', 'np.zeros', (['(320, 480, 3)'], {}), '((320, 480, 3))\n', (7779, 7794), True, 'import numpy as np\n'), ((7825, 7848), 'cv2.imread', 'cv2.imread', (['"""copy1.png"""'], {}), "('copy1.png')\n", (7835, 7848), False, 'import cv2\n'), ((7878, 7901), 'cv2.imread', 'cv2.imread', (['"""copy2.png"""'], {}), "('copy2.png')\n", (7888, 7901), False, 'import cv2\n'), ((7931, 7954), 'cv2.imread', 'cv2.imread', (['"""copy3.png"""'], {}), "('copy3.png')\n", (7941, 7954), False, 'import cv2\n'), ((7984, 8007), 'cv2.imread', 'cv2.imread', (['"""copy4.png"""'], {}), "('copy4.png')\n", (7994, 8007), False, 'import cv2\n'), ((8013, 8049), 'cv2.imwrite', 'cv2.imwrite', (['"""images/out1.png"""', 'out1'], {}), "('images/out1.png', out1)\n", (8024, 8049), False, 'import cv2\n'), ((8064, 8110), 'houghtest.main', 'houghtest.main', (['"""images/out1.png"""', 'img_path_or'], {}), "('images/out1.png', img_path_or)\n", (8078, 8110), False, 'import houghtest\n'), ((8142, 8153), 'time.time', 'time.time', ([], {}), '()\n', (8151, 8153), False, 'import time\n'), ((1971, 2002), 'cv2.imwrite', 'cv2.imwrite', (['"""copy1.png"""', 'copy1'], {}), "('copy1.png', copy1)\n", (1982, 2002), False, 'import cv2\n'), ((3657, 3688), 'cv2.imwrite', 'cv2.imwrite', (['"""copy2.png"""', 'copy2'], {}), "('copy2.png', copy2)\n", (3668, 3688), False, 'import cv2\n'), ((5344, 5375), 'cv2.imwrite', 'cv2.imwrite', (['"""copy3.png"""', 'copy3'], {}), "('copy3.png', copy3)\n", (5355, 5375), False, 'import cv2\n'), ((7037, 7068), 'cv2.imwrite', 'cv2.imwrite', (['"""copy4.png"""', 'copy4'], {}), "('copy4.png', copy4)\n", (7048, 7068), False, 'import cv2\n'), ((1751, 1884), 'numpy.array', 'np.array', (['[[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur,\n bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]'], {}), '([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur,\n gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]])\n', (1759, 1884), True, 'import numpy as np\n'), ((3431, 3564), 'numpy.array', 'np.array', (['[[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur,\n bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]'], {}), '([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur,\n gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]])\n', (3439, 3564), True, 'import numpy as np\n'), ((5118, 5251), 'numpy.array', 'np.array', (['[[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur,\n bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]'], {}), '([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur,\n gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]])\n', (5126, 5251), True, 'import numpy as np\n'), ((6805, 6938), 'numpy.array', 'np.array', (['[[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur, gur, rur,\n bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]]'], {}), '([[b, g, r, bl, gl, rl, br, gr, rr, bu, gu, ru, bul, gul, rul, bur,\n gur, rur, bdl, gdl, rdl, bdr, gdr, rdr, bd, gd, rd]])\n', (6813, 6938), True, 'import numpy as np\n')] |
import sys, re
import PyQt5
from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem
from PyQt5 import uic
from PyQt5.QtCore import pyqtSlot, QDate, Qt
from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage
import shutil, os
from reportlab.pdfgen import canvas
from reportlab.lib import colors
from reportlab.lib.utils import ImageReader #For logo
import matplotlib.pyplot as plt
import numpy as np
import datetime
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
import urllib.request
import sqlite3
import os.path
now = datetime.datetime.now()
day = now.day
month = now.month
year = now.year
current_datetime = '%s/%s/%s' % (day, month, year)
mesos = ['Gener', 'Febrer', 'Març', 'Abril', 'Maig', 'Juny', 'Juliol', 'Agost', 'Setembre', 'Octubre', 'Novembre', 'Desembre']
mesos_minus = ['gener', 'febrer', 'març', 'abril', 'maig', 'juny', 'juliol', 'agost', 'setembre', 'octubre', 'novembre', 'desembre']
clear = lambda: os.system('cls')
dir_principal = os.getcwd()
carpeta_data = dir_principal + '\Data'
carpeta_factures = dir_principal + '\Factures'
carpeta_abonos = dir_principal + '\Abonos'
carpeta_albaranes = dir_principal + '\Albaranes'
current_month_factures = carpeta_factures + '\%s_%s' % (mesos[int(month)-1], year)
if not os.path.exists(carpeta_data): os.makedirs(carpeta_data)
if not os.path.exists(carpeta_factures): os.makedirs(carpeta_factures)
if not os.path.exists(carpeta_abonos): os.makedirs(carpeta_abonos)
#####################################################################
# #
# FUNCTIONS #
# #
#####################################################################
#DRIVE
def fitxer_drive(name):
count = False
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
for file1 in file_list:
if file1['title'] == name:
file = drive.CreateFile({'id': file1['id']})
count = True
if count == False:
file = drive.CreateFile({'title': name})
file.SetContentFile(name)
file.Upload()
def carpeta_drive(folder_name):
count = False
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
for file1 in file_list:
if file1['title'] == folder_name: #La carpeta ja està creada
Factures_id = file1['id']
count = True
if count == False: #Crear la carpeta
# Create folder.
folder_metadata = {
'title' : folder_name,
# The mimetype defines this new file as a folder, so don't change this.
'mimeType' : 'application/vnd.google-apps.folder'
}
folder = drive.CreateFile(folder_metadata)
folder.Upload()
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
for file1 in file_list:
if file1['title'] == folder_name:
Factures_id = file1['id']
return Factures_id
def file_to_folder(folder_id, filename):
file = drive.CreateFile({"parents": [{"kind": "drive#fileLink", "id": folder_id}]})
file.SetContentFile(filename)
file.Upload()
def delete_file_in_folder(folder_id, filename):
file_list = drive.ListFile({'q': "'%s' in parents and trashed=false" % folder_id}).GetList()
for file1 in file_list:
if file1['title'] == filename: #L'arxiu ja està creat
file1.Delete()
def internet_on():
try:
urllib.request.urlopen('http://172.16.17.32', timeout=1)
return True
except urllib.request.URLError as err:
return False
def upload_to_drive_database(name):
global drive
os.chdir(carpeta_data)
##################################### LOG IN GOOGLE DRIVE #############################################
int_connexion = internet_on()
if int_connexion == True:
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
########################################################################################################
#Pujar base de dades clients
if int_connexion == True:
folder_id = carpeta_drive('Data') #Pujar a google drive la factura
filename = '%s.db' % name
delete_file_in_folder(folder_id,filename)
file_to_folder(folder_id, filename)
def upload_to_drive_factura(dirr, NAME, NAME_2, num_fact, data, NOMCOM, num_client, filename_ventes, filename_facturacio_clients, filename_facturacio_total, filename_factures_emeses):
global drive
mes = mesos[int(data[3:5])-1]
ano = str(data[6:]).zfill(4)
current_month_factures = dirr + '\%s_%s' % (mes, ano)
##################################### LOG IN GOOGLE DRIVE #############################################
int_connexion = internet_on()
if int_connexion == True:
previous_directory = os.getcwd()
os.chdir(carpeta_data)
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
os.chdir(previous_directory)
########################################################################################################
#Guardar la factura al drive
os.chdir(current_month_factures)
if int_connexion == True:
folder_id = carpeta_drive('%s_%s_%s' % (NAME, mes, str(year))) #Pujar a google drive la factura
filename = '%s_%s_%s_%s.pdf' % (NAME_2, str(num_fact).zfill(4), NOMCOM, str(num_client).zfill(4))
delete_file_in_folder(folder_id,filename)
file_to_folder(folder_id, filename)
folder_id = carpeta_drive('Data') #Pujar bases de dades
os.chdir(carpeta_data)
#Ventes
delete_file_in_folder(folder_id,filename_ventes)
file_to_folder(folder_id, filename_ventes)
#Facturació clients
delete_file_in_folder(folder_id,filename_facturacio_clients)
file_to_folder(folder_id, filename_facturacio_clients)
#Facturació total
delete_file_in_folder(folder_id,filename_facturacio_total)
file_to_folder(folder_id, filename_facturacio_total)
#Factures emeses
delete_file_in_folder(folder_id,filename_factures_emeses)
file_to_folder(folder_id, filename_factures_emeses)
#FACTURES
def assignar_numero_factura(table, year):
tablas = [
"""
CREATE TABLE IF NOT EXISTS numero_factura(
any TEXT NOT NULL,
num TEXT NOT NULL
);
"""
]
create_database('CompanyName', tablas)
tablas = [
"""
CREATE TABLE IF NOT EXISTS numero_abono(
any TEXT NOT NULL,
num TEXT NOT NULL
);
"""
]
create_database('CompanyName', tablas)
tablas = [
"""
CREATE TABLE IF NOT EXISTS numero_albaran(
any TEXT NOT NULL,
num TEXT NOT NULL
);
"""
]
create_database('CompanyName', tablas)
database = sqlite3.connect('CompanyName.db')
cursor = database.cursor()
sentencia = "SELECT * FROM %s WHERE any LIKE %s" % (table, year)
cursor.execute(sentencia)
lines = cursor.fetchall()
if len(lines) == 0:
sentencia = "INSERT INTO '%s'(any, num) VALUES (?,?)" % (table)
cursor.execute(sentencia, [year, 1])
database.commit()
return 1
else:
num_fact = int(lines[0][1]) + 1
sentencia = "DELETE FROM '%s' WHERE any LIKE ?;" % table
cursor.execute(sentencia, [ "%{}%".format(year)])
database.commit()
sentencia = "INSERT INTO '%s'(any, num) VALUES (?,?)" % (table)
cursor.execute(sentencia, [year, num_fact])
database.commit()
return num_fact
def factura(dirr, NAME, num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, date, form_pag, dim, array_ref, array_concept, array_U, array_PU, array_BI, SUMA, IVA, TOTAL):
global c
CompanyName = 'COMPANY NAME'
CompanyDirection = 'C/ street, nº fºfª'
PC = 'CP'
CITY = 'CITY'
EMAIL = 'companyemail'
FISCAL_NAME = 'Fiscal Name'
ID = 'ID_number'
FISCAL_DIRECTION = 'Fiscal direction'
FISCAL_CITY = 'Fiscal city'
FISCAL_PC = 'Fiscal P.C.'
mes = mesos[int(date[3:5])-1]
ano = str(date[6:]).zfill(4)
current_month_factures = dirr + '\%s_%s' % (mes, ano)
if not os.path.exists(current_month_factures): os.makedirs(current_month_factures)
os.chdir(current_month_factures)
c = canvas.Canvas("%s_%s_%s_%s.pdf" % (NAME, str(num_fact).zfill(4), NOMCOM, str(num_client).zfill(4)))
x_CompanyName = 40
x_customer = 350
x_doc = 350
y_CompanyName = 690
y_customer = 810
y_doc = 680
y_title = 780
c.setFont('Helvetica', 20)
#Title (may be substituted by a logo)
logo = ImageReader(carpeta_data + '\logo.png')
c.drawImage(logo, x_CompanyName + 50, y_CompanyName + 50, width=50, height=50, mask='auto')
c.setFont('Helvetica', 10)
#CompanyName data
c.drawString(x_CompanyName, y_CompanyName, CompanyName)
c.drawString(x_CompanyName, y_CompanyName - 15, CompanyDirection)
c.drawString(x_CompanyName, y_CompanyName - 15*2, PC + '' + CITY)
c.drawString(x_CompanyName, y_CompanyName - 15*3, 'EMAIL: %s' % EMAIL)
#c.drawString(x_CompanyName, y_CompanyName - 15*4, 'TELF: 640087843-678230059')
#Customer data
c.drawString(x_customer, y_customer, 'CUSTOMER')
c.line(x_customer, y_customer - 5, x_customer + 35, y_customer - 5)
c.drawString(x_customer, y_customer - 5 - 15, str(num_client).zfill(4) + ' ' + NOMCOM)
c.drawString(x_customer, y_customer - 5 - 15*2, NOMFIS)
c.drawString(x_customer, y_customer - 5 - 15*3, DIR)
c.drawString(x_customer, y_customer - 5 - 15*4, POBLACIO)
c.drawString(x_customer, y_customer - 5 - 15*5, 'NIF: ' + NIF)
c.drawString(x_customer, y_customer - 5 -15*6, 'TEL: ' + TEL)
#Document data
c.drawString(x_doc, y_doc, 'DOCUMENT')
c.line(x_doc, y_doc-5, x_doc + 60, y_doc-5)
c.drawString(x_doc, y_doc-5-15*1, '%s: ' % NAME + str(num_fact).zfill(4))
c.drawString(x_doc, y_doc-5-15*2, 'DATE: ' + date)
c.drawString(x_doc, y_doc-5-15*3, 'WAY TO PAY: ' + form_pag)
#Make the table
x_ref = 50
x_concepte = 90
x_U = 400
x_PU = 450
x_BI = 500
y_ref = 580
y_concepte = 580
y_U = 580
y_PU = 580
y_BI = 580
x_final_tabla = 550
y_final_tabla = 200
c.drawString(x_ref, y_ref, 'REF')
c.drawString(x_concepte+5, y_concepte, 'CONCEPT')
c.drawString(x_U+5, y_U, 'Units')
c.drawString(x_PU+10, y_PU, 'U.P.')
c.drawString(x_BI + 5, y_BI, 'T.B.')
c.line(x_ref-10, y_ref-5, x_final_tabla, y_BI-5) #linea sota el encabezado
c.line(x_ref-10, y_ref-5, x_ref-10, y_final_tabla) #linea vertical inicial
c.line(x_concepte-10, y_ref-5, x_concepte-10, y_final_tabla) #linea vertical despres de ref
c.line(x_U-3, y_U-5, x_U-3, y_final_tabla) #linea vertical dsps de concepte
c.line(x_PU-5, y_PU-5, x_PU-5, y_final_tabla) #linea dsps de unitats
c.line(x_BI-7, y_BI-5, x_BI-7, y_final_tabla) #linea vertical dsps de P.U.
c.line(x_final_tabla, y_ref-5, x_final_tabla, y_final_tabla) #ultima linea vertical
#c.line(x_ref-10, y_final_tabla+20, x_final_tabla, y_final_tabla+20) #penultima linea horitzontal
c.line(x_ref-10, y_final_tabla, x_final_tabla, y_final_tabla ) #ultima linea horitzontal
# Taula de resultats finals
x_0 = x_ref-10
y_0 = y_final_tabla - 30
x_f = x_final_tabla
y_f = y_0 - 25
c.line(x_0, y_0, x_f, y_0) #primera linea horitzontal
c.line(x_0, y_f, x_f, y_f) #ultima linea horitzontal
x_1 = (x_f-x_0)/3
x_2 = 2*x_1
c.line(x_0, y_0, x_0, y_f) #linia vertical inicial
c.line(x_1,y_0, x_1, y_f) #primera linea vertical
c.line(x_2,y_0,x_2,y_f) #ultima linea vertical
c.line(x_f,y_0,x_f,y_f) #linea vertical final
#Introduir referencies, conceptes, unitats, preu unitats, base imponible, suma total, iva i suma final
y_new = y_ref-20
sep = 15
for i in range(0, dim):
c.drawString(x_ref, y_new -sep*i, array_ref[i])
c.drawString(x_concepte + 5, y_new -sep*i, array_concept[i])
c.drawString(x_U + 15, y_new -sep*i, str(array_U[i]))
c.drawString(x_PU + 5, y_new -sep*i, str(array_PU[i]))
c.drawString(x_BI + 5, y_new -sep*i, str(array_BI[i]))
#c.drawString(x_BI + 5, y_final_tabla + 7, str(SUMA))
c.drawString(x_0 + 20, y_0-15, 'T.B.: ' + str(SUMA))
c.drawString(x_1 + 50, y_0 - 15, 'V.A.T. 21%: ' + str(IVA))
c.setFont('Helvetica-Bold', 10)
c.drawString(x_2 + 50, y_0 - 15, 'TOTAL: ' + str(TOTAL) + '\u20ac')
x_dades_personals = x_0
y_dades_personals = y_f - 100
c.setFont('Helvetica', 8)
c.drawString(x_dades_personals, y_dades_personals, '%s, %s, %s, %s, %s' % (FISCAL_NAME, ID, FISCAL_DIRECTION, FISCAL_PC, FISCAL_CITY))
c.save()
def factura_de_albaranes(dirr, NAME, num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, date, form_pag, array_num, array_data, array_bi, array_iva, array_total, SUMA, IVA, TOTAL):
global c
CompanyName = 'COMPANY NAME'
CompanyDirection = 'C/ street, nº fºfª'
PC = 'CP'
CITY = 'CITY'
EMAIL = 'companyemail'
FISCAL_NAME = 'Fiscal Name'
ID = 'ID_number'
FISCAL_DIRECTION = 'Fiscal direction'
FISCAL_CITY = 'Fiscal city'
FISCAL_PC = 'Fiscal P.C.'
mes = mesos[int(date[3:5])-1]
ano = str(date[6:]).zfill(4)
current_month_factures = dirr + '\%s_%s' % (mes, ano)
if not os.path.exists(current_month_factures): os.makedirs(current_month_factures)
os.chdir(current_month_factures)
c = canvas.Canvas("%s_%s_%s_%s.pdf" % (NAME, str(num_fact).zfill(4), NOMCOM, str(num_client).zfill(4)))
x_CompanyName = 40
x_customer = 350
x_doc = 350
y_CompanyName = 690
y_customer = 810
y_doc = 680
y_title = 780
c.setFont('Helvetica', 20)
#Title (may be substituted by a logo)
logo = ImageReader(carpeta_data + '\logo.png')
c.drawImage(logo, x_amilcar + 50, y_amilcar + 50, width=50, height=50, mask='auto')
c.setFont('Helvetica', 10)
#CompanyName data
c.drawString(x_CompanyName, y_CompanyName, CompanyName)
c.drawString(x_CompanyName, y_CompanyName - 15, CompanyDirection)
c.drawString(x_CompanyName, y_CompanyName - 15*2, PC + '' + CITY)
c.drawString(x_CompanyName, y_CompanyName - 15*3, 'EMAIL: %s' % EMAIL)
#c.drawString(x_CompanyName, y_CompanyName - 15*4, 'TELF: 640087843-678230059')
#Customer data
c.drawString(x_customer, y_customer, 'CUSTOMER')
c.line(x_customer, y_customer - 5, x_customer + 35, y_customer - 5)
c.drawString(x_customer, y_customer - 5 - 15, str(num_client).zfill(4) + ' ' + NOMCOM)
c.drawString(x_customer, y_customer - 5 - 15*2, NOMFIS)
c.drawString(x_customer, y_customer - 5 - 15*3, DIR)
c.drawString(x_customer, y_customer - 5 - 15*4, POBLACIO)
c.drawString(x_customer, y_customer - 5 - 15*5, 'NIF: ' + NIF)
c.drawString(x_customer, y_customer - 5 -15*6, 'TEL: ' + TEL)
#Document data
c.drawString(x_doc, y_doc, 'DOCUMENT')
c.line(x_doc, y_doc-5, x_doc + 60, y_doc-5)
c.drawString(x_doc, y_doc-5-15*1, '%s: ' % NAME + str(num_fact).zfill(4))
c.drawString(x_doc, y_doc-5-15*2, 'DATE: ' + date)
c.drawString(x_doc, y_doc-5-15*3, 'WAY TO PAY: ' + form_pag)
#Make the table
x_ref = 50
x_concepte = 90
x_U = 400
x_PU = 450
x_BI = 500
y_ref = 580
y_concepte = 580
y_U = 580
y_PU = 580
y_BI = 580
x_final_tabla = 550
y_final_tabla = 200
c.drawString(x_ref, y_ref, 'Nº')
c.drawString(x_concepte+5, y_concepte, 'DATE')
c.drawString(x_U+5, y_U, 'T.B.')
c.drawString(x_PU+10, y_PU, 'V.A.T.')
c.drawString(x_BI + 5, y_BI, 'TOTAL')
c.line(x_ref-10, y_ref-5, x_final_tabla, y_BI-5) #linea sota el encabezado
c.line(x_ref-10, y_ref-5, x_ref-10, y_final_tabla) #linea vertical inicial
c.line(x_concepte-10, y_ref-5, x_concepte-10, y_final_tabla) #linea vertical despres de ref
c.line(x_U-3, y_U-5, x_U-3, y_final_tabla) #linea vertical dsps de concepte
c.line(x_PU-5, y_PU-5, x_PU-5, y_final_tabla) #linea dsps de unitats
c.line(x_BI-7, y_BI-5, x_BI-7, y_final_tabla) #linea vertical dsps de P.U.
c.line(x_final_tabla, y_ref-5, x_final_tabla, y_final_tabla) #ultima linea vertical
#c.line(x_ref-10, y_final_tabla+20, x_final_tabla, y_final_tabla+20) #penultima linea horitzontal
c.line(x_ref-10, y_final_tabla, x_final_tabla, y_final_tabla ) #ultima linea horitzontal
# Taula de resultats finals
x_0 = x_ref-10
y_0 = y_final_tabla - 30
x_f = x_final_tabla
y_f = y_0 - 25
c.line(x_0, y_0, x_f, y_0) #primera linea horitzontal
c.line(x_0, y_f, x_f, y_f) #ultima linea horitzontal
x_1 = (x_f-x_0)/3
x_2 = 2*x_1
c.line(x_0, y_0, x_0, y_f) #linia vertical inicial
c.line(x_1,y_0, x_1, y_f) #primera linea vertical
c.line(x_2,y_0,x_2,y_f) #ultima linea vertical
c.line(x_f,y_0,x_f,y_f) #linea vertical final
#Introduir referencies, conceptes, unitats, preu unitats, base imponible, suma total, iva i suma final
y_new = y_ref-20
sep = 15
for i in range(len(array_bi)):
c.drawString(x_ref, y_new -sep*i, array_num[i])
c.drawString(x_concepte + 5, y_new -sep*i, array_data[i])
c.drawString(x_U + 15, y_new -sep*i, str(array_bi[i]))
c.drawString(x_PU + 5, y_new -sep*i, str(array_iva[i]))
c.drawString(x_BI + 5, y_new -sep*i, str(array_total[i]))
#c.drawString(x_BI + 5, y_final_tabla + 7, str(SUMA))
c.drawString(x_0 + 20, y_0-15, 'TOTAL T.B..: ' + str(SUMA))
c.drawString(x_1 + 50, y_0 - 15, 'TOTAL V.A.T.: ' + str(IVA))
c.setFont('Helvetica-Bold', 10)
c.drawString(x_2 + 50, y_0 - 15, 'FINAL TOTAL: ' + str(TOTAL) + '\u20ac')
x_dades_personals = x_0
y_dades_personals = y_f - 100
c.setFont('Helvetica', 8)
c.drawString(x_dades_personals, y_dades_personals, '%s, %s, %s, %s, %s' % (FISCAL_NAME, ID, FISCAL_DIRECTION, FISCAL_PC, FISCAL_CITY))
c.save()
#BASEES DE DADES
def create_database_client(name):
#Create a database
database = sqlite3.connect("%s.db" % name)
#Create a data table in the database
cursor = database.cursor()
tablas = [
"""
CREATE TABLE IF NOT EXISTS data(
num_client TEXT NOT NULL,
nom_comercial TEXT NOT NULL,
nom_fiscal TEXT NOT NULL,
adreça TEXT NOT NULL,
poblacio TEXT NOT NULL,
nif TEXT NOT NULL,
telf TEXT NOT NULL,
forma_pago TEXT NOT NULL
);
"""
]
for tabla in tablas:
cursor.execute(tabla);
def fill_database(name, numclient, nomcom, nomfis, adreça, poblacio, nif, telf, formapago):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "INSERT INTO data(num_client, nom_comercial, nom_fiscal, adreça, poblacio, nif, telf, forma_pago) VALUES (?,?,?,?,?,?,?,?)"
cursor.execute(sentencia, [numclient, nomcom, nomfis, adreça, poblacio, nif, telf, formapago])
database.commit()
def read_database(name, table, name_2, order):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "SELECT * FROM '%s' ORDER BY %s %s;" % (table, name_2, order)
cursor.execute(sentencia)
lines = cursor.fetchall()
cursor.close()
return lines
def select_from_database(name, busqueda, name_2):
os.chdir(carpeta_data)
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "SELECT * FROM data WHERE nom_comercial LIKE ? ORDER BY %s ASC;" % name_2
cursor.execute(sentencia, [ "%{}%".format(busqueda)])
matches = cursor.fetchall()
if len(matches) != 0:
return matches, True
else:
sentencia = "SELECT * FROM data WHERE num_client LIKE ?;"
cursor.execute(sentencia, [ "%{}%".format(busqueda)])
matches = cursor.fetchall()
if len(matches) != 0:
return matches, True
else:
return matches, False
def select_from_database_general(name, table, busqueda, name_2, order, order_2):
os.chdir(carpeta_data)
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "SELECT * FROM '%s' WHERE %s LIKE ? ORDER BY %s %s;" % (table, name_2, order, order_2)
cursor.execute(sentencia, ["%{}%".format(busqueda)])
matches = cursor.fetchall()
return matches
def delete_from_database(name, name_2, num):
os.chdir(carpeta_data)
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "DELETE FROM data WHERE %s LIKE ?;" % name_2
cursor.execute(sentencia, [ "%{}%".format(num)])
database.commit()
def delete_from_database_general(name, table, name_2, num):
os.chdir(carpeta_data)
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "DELETE FROM '%s' WHERE %s LIKE ?;" % (table, name_2)
cursor.execute(sentencia, [ "%{}%".format(num)])
database.commit()
def create_database_ventes(name, table):
database = sqlite3.connect("%s.db" % name)
cursor = database.cursor()
tablas = [
"""
CREATE TABLE IF NOT EXISTS '%s'(
ref TEXT NOT NULL,
gener REAL NOT NULL,
febrer REAL NOT NULL,
març REAL NOT NULL,
abril REAL NOT NULL,
maig REAL NOT NULL,
juny REAL NOT NULL,
juliol REAL NOT NULL,
agost REAL NOT NULL,
setembre REAL NOT NULL,
octubre REAL NOT NULL,
novembre REAL NOT NULL,
desembre REAL NOT NULL
);
""" % table
]
for tabla in tablas:
cursor.execute(tabla);
def create_database_cataleg(name):
#Create a database
database = sqlite3.connect("%s.db" % name)
#Create a data table in the database
cursor = database.cursor()
tablas = [
"""
CREATE TABLE IF NOT EXISTS data(
ref TEXT NOT NULL,
prod TEXT NOT NULL,
preu REAL NOT NULL
);
"""
]
for tabla in tablas:
cursor.execute(tabla);
def fill_database_cataleg(name, ref, prod, preu):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "INSERT INTO data(ref, prod, preu) VALUES (?,?,?)"
cursor.execute(sentencia, [ref, prod, preu])
database.commit()
def fill_database_ventes(name, tabla, ref, month, ventes, zfill_ref):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
llista = [str(ref).zfill(zfill_ref), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
#Tenir en compte les unitats venudes prèviament
sentencia = "SELECT * FROM '%s' WHERE ref LIKE ?;" % tabla
cursor.execute(sentencia, ["%{}%".format(ref)])
matches = cursor.fetchall()
if len(matches) != 0:
llista = []
for i in range(len(matches[0])):
llista.append(matches[0][i])
nou = llista[month] + ventes
llista[month] = nou
#Eliminar la fila actual
sentencia = "DELETE FROM '%s' WHERE ref LIKE ?;" % tabla
cursor.execute(sentencia, [ "%{}%".format(ref)])
#Escriure les ventes actualitzades
sentencia = "INSERT INTO '%s'(ref, gener, febrer, març, abril, maig, juny, juliol, agost, setembre, octubre, novembre, desembre) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?)" % tabla
cursor.execute(sentencia, llista)
else:
#Escriure les ventes actualitzades
llista[month] = ventes
sentencia = "INSERT INTO '%s'(ref, gener, febrer, març, abril, maig, juny, juliol, agost, setembre, octubre, novembre, desembre) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?)" % tabla
cursor.execute(sentencia, llista)
database.commit()
def create_database_preus(name):
database = sqlite3.connect("%s.db" % name)
cursor = database.cursor()
tablas = [
"""
CREATE TABLE IF NOT EXISTS data(
num_client TEXT NOT NULL,
ref TEXT NOT NULL,
preu REAL NOT NULL
);
"""
]
for tabla in tablas:
cursor.execute(tabla);
def fill_database_preus(name, num, ref, prod, preu):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
lines = select_from_database_preus(name, num, ref)
if len(lines) != 0:
return False
else:
sentencia = "INSERT INTO data(num_client, ref, prod, preu) VALUES (?,?,?,?)"
cursor.execute(sentencia, [num, ref, prod, preu])
database.commit()
return True
def modificar_database_preus(name, num, ref, prod, preu):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
lines = select_from_database_preus(name, num, ref)
if len(lines) == 0:
return False
else:
sentencia = "DELETE FROM data WHERE num_client LIKE ? AND ref LIKE ?;"
cursor.execute(sentencia, [ "%{}%".format(num), "%{}%".format(ref)])
sentencia = "INSERT INTO data(num_client, ref, prod, preu) VALUES (?,?,?,?)"
cursor.execute(sentencia, [num, ref, prod, preu])
database.commit()
return True
def select_from_database_preus(name, num, ref):
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "SELECT * FROM data WHERE num_client LIKE ? AND ref LIKE ?;"
cursor.execute(sentencia, ["%{}%".format(num), "%{}%".format(ref)])
matches = cursor.fetchall()
return matches
def create_database_factures(name):
#Create a database
database = sqlite3.connect("%s.db" % name)
#Create a data table in the database
cursor = database.cursor()
tablas = [
"""
CREATE TABLE IF NOT EXISTS data(
dia TEXT NOT NULL,
mes TEXT NOT NULL,
any TEXT NOT NULL,
nom TEXT NOT NULL,
base_imp REAL NOT NULL,
iva REAL NOT NULL,
total REAL NOT NULL
);
"""
]
for tabla in tablas:
cursor.execute(tabla);
def fill_database_factures(name, dia, mes, any, nom, base, iva, total):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "INSERT INTO data(dia, mes, any, nom, base_imp, iva, total) VALUES (?,?,?,?,?,?,?)"
cursor.execute(sentencia, [dia, mes, any, nom, base, iva, total])
database.commit()
def delete_database_factures(name, dia, mes, any, base, iva, total):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "DELETE FROM data WHERE dia LIKE ? AND mes LIKE ? AND any LIKE ? AND base_imp LIKE ? AND iva LIKE ? AND total LIKE ? ;"
cursor.execute(sentencia, [ "%{}%".format(dia), "%{}%".format(mes), "%{}%".format(any), "%{}%".format(base), "%{}%".format(iva), "%{}%".format(total)])
database.commit()
def read_database_factures(name, order):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "SELECT * FROM data ORDER BY any, mes, dia %s" % order
cursor.execute(sentencia)
lines = cursor.fetchall()
return lines
def select_from_database_factures(name, dia, mes, ano):
database = sqlite3.connect('%s.db' % name)
cursor=database.cursor()
sentencia = "SELECT * FROM data WHERE dia LIKE ? AND mes LIKE ? AND any LIKE ? ;"
cursor.execute(sentencia, ["%{}%".format(dia), "%{}%".format(mes), "%{}%".format(ano)])
matches = cursor.fetchall()
return matches
def check_table_exists(name, table):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "SELECT name FROM sqlite_master WHERE type='table' AND name = '%s' ;" % table
cursor.execute(sentencia)
lines = cursor.fetchall()
if len(lines) == 0:
return False
else:
return True
def create_database(name, tablas):
#Create a database
database = sqlite3.connect("%s.db" % name)
#Create a data table in the database
cursor = database.cursor()
for tabla in tablas:
cursor.execute(tabla);
def fill_table_stock(name, items_list):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "DELETE FROM stock WHERE REF LIKE ?;"
cursor.execute(sentencia, ["%{}%".format(items_list[0])])
sentencia = "INSERT INTO stock(REF, NAME, QUANTITY, UNIT_PRICE, TOTAL_PRICE) VALUES (?,?,?,?,?)"
cursor.execute(sentencia, items_list)
database.commit()
def fill_database_general(name, table, interrogants, values):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "INSERT INTO %s VALUES %s" % (table, interrogants)
cursor.execute(sentencia, values)
database.commit()
#DATE
def change_date_format(date):
return datetime.datetime.strptime(date, "%Y-%m-%d").strftime("%d-%m-%Y")
#####################################################################
# #
# CLASSES #
# #
#####################################################################
#CLIENTS
class Nou_client(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('NouClient.ui', self)
os.chdir(dir_principal)
self.nomcom.textChanged.connect(self.validar_nom_com) #Executa la funció validar_nom_com al clicar sobre el camp
self.nomfis.textChanged.connect(self.validar_nom_fis)
self.direccio.textChanged.connect(self.validar_direccio)
self.poblacio.textChanged.connect(self.validar_poblacio)
self.nif.textChanged.connect(self.validar_nif)
self.telf.textChanged.connect(self.validar_telf)
self.formapago.textChanged.connect(self.validar_forma_pago)
self.accept_botton.clicked.connect(self.validar_dades)
self.pujar_drive.clicked.connect(self.upload_database)
def assignar_numero_client(self, name):
database = sqlite3.connect('%s.db' % name)
cursor = database.cursor()
sentencia = "SELECT * FROM data;"
cursor.execute(sentencia)
clients = cursor.fetchall()
num = len(clients) + 1
return num
def validar_nom_com(self):
nom_com = self.nomcom.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'.-]+$", nom_com, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom_com == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nomcom.setStyleSheet('border: 1px solid yellow;')
return False, nom_com
elif not validar:#Si no es valid bordes vermells
self.nomcom.setStyleSheet('border: 1px solid red;')
return False, nom_com
else:
self.nomcom.setStyleSheet('border: 1px solid green;')
return True, nom_com
def validar_nom_fis(self):
nom_fis = self.nomfis.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'.-]+$", nom_fis, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom_fis == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nomfis.setStyleSheet('border: 1px solid yellow;')
return False, nom_fis
elif not validar:#Si no es valid bordes vermells
self.nomfis.setStyleSheet('border: 1px solid red;')
return False, nom_fis
else:
self.nomfis.setStyleSheet('border: 1px solid green;')
return True, nom_fis
def validar_direccio(self):
direccio = self.direccio.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'/,ªº.-]+$", direccio, re.I) #Permetre lletres a-z, espais, accents, numeros
if direccio == '': #Si esta buit bordes grocs
self.direccio.setStyleSheet('border: 1px solid yellow;')
return False, direccio
elif not validar:#Si no es valid bordes vermells
self.direccio.setStyleSheet('border: 1px solid red;')
return False, direccio
else:
self.direccio.setStyleSheet('border: 1px solid green;')
return True, direccio
def validar_poblacio(self):
poblacio = self.poblacio.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789',.-]+$", poblacio, re.I) #Permetre lletres a-z, espais, accents, numeros
if poblacio == '': #Si esta buit bordes grocs
self.poblacio.setStyleSheet('border: 1px solid yellow;')
return False, poblacio
elif not validar:#Si no es valid bordes vermells
self.poblacio.setStyleSheet('border: 1px solid red;')
return False, poblacio
else:
self.poblacio.setStyleSheet('border: 1px solid green;')
return True, poblacio
def validar_nif(self):
nif = self.nif.text()
validar = re.match('^[a-zñç0123456789]+$', nif, re.I) #Permetre lletres a-z, numeros
if nif == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, nif
elif not validar:#Si no es valid bordes vermells
self.nif.setStyleSheet('border: 1px solid red;')
return False, nif
else:
self.nif.setStyleSheet('border: 1px solid green;')
return True, nif
def validar_telf(self):
telf = self.telf.text()
validar = re.match('^[0123456789]+$', telf, re.I) #Permetre numeros
if telf == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, telf
elif not validar:#Si no es valid bordes vermells
self.telf.setStyleSheet('border: 1px solid red;')
return False, telf
else:
self.telf.setStyleSheet('border: 1px solid green;')
return True, telf
def validar_forma_pago(self):
forma_pago = self.formapago.text()
validar = re.match('^[a-zñç.-]+$', forma_pago, re.I) #Permetre lletres a-z #re.I ignora majuscules i minuscules
if forma_pago == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, forma_pago
elif not validar:#Si no es valid bordes vermells
self.formapago.setStyleSheet('border: 1px solid red;')
return False, forma_pago
else:
self.formapago.setStyleSheet('border: 1px solid green;')
return True, forma_pago
def validar_dades(self):
bool_1, NOMCOM = self.validar_nom_com()
bool_2, NOMFIS = self.validar_nom_fis()
bool_3, DIR = self.validar_direccio()
bool_4, POBLACIO = self.validar_poblacio()
bool_5, NIF = self.validar_nif()
bool_6, TEL = self.validar_telf()
bool_7, forma_pago = self.validar_forma_pago()
if bool_1 and bool_2 and bool_3 and bool_4 and bool_5 and bool_6 and bool_7:
os.chdir(carpeta_data)
create_database_client('clients') #Just if the database doesn't exist
num_client = self.assignar_numero_client('clients')
fill_database('clients', str(num_client).zfill(4), str(NOMCOM), str(NOMFIS), str(DIR), str(POBLACIO), str(NIF), str(TEL), str(forma_pago))
if self.pujar_drive_check.isChecked():
upload_to_drive_database('clients')
QMessageBox.information(self, 'Dades correctes' , 'El client ha estat registrat a la base de dades amb número de client %s' % str(num_client).zfill(4), QMessageBox.Discard)
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Dades incorrectes' , 'Comprova que tots els camps estan omplerts correctament', QMessageBox.Discard)
def upload_database(self):
upload_to_drive_database('clients')
QMessageBox.information(self, 'Information', 'Dades pujades correctament')
def reinit_dialog(self):
self.nomcom.setText('')
self.nomfis.setText('')
self.direccio.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.nomcom.setStyleSheet('')
self.nomfis.setStyleSheet('')
self.direccio.setStyleSheet('')
self.poblacio.setStyleSheet('')
self.nif.setStyleSheet('')
self.telf.setStyleSheet('')
self.formapago.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.pujar_drive_check.setChecked(True)
else:
event.ignore()
class Modificar_client(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('ModClient.ui', self)
self.numclient.textChanged.connect(self.validar_num_client)
self.searchbotton.clicked.connect(self.search)
self.nomcom.textChanged.connect(self.validar_nom_com) #Executa la funció validar_nom_com al clicar sobre el camp
self.nomfis.textChanged.connect(self.validar_nom_fis)
self.direccio.textChanged.connect(self.validar_direccio)
self.poblacio.textChanged.connect(self.validar_poblacio)
self.nif.textChanged.connect(self.validar_nif)
self.telf.textChanged.connect(self.validar_telf)
self.formapago.textChanged.connect(self.validar_forma_pago)
self.accept_botton.clicked.connect(self.validar_dades)
self.pujar_drive.clicked.connect(self.upload_database)
def search(self):
os.chdir(carpeta_data)
control, num = self.validar_num_client()
if control == True:
if os.path.exists('clients.db'):
client = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(client) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
self.reinit_dialog()
else:
self.nomcom.setText(client[0][1])
self.nomfis.setText(client[0][2])
self.direccio.setText(client[0][3])
self.poblacio.setText(client[0][4])
self.nif.setText(client[0][5])
self.telf.setText(client[0][6])
self.formapago.setText(client[0][7])
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
else:
QMessageBox.warning(self, 'Warning', 'Número de client no vàlid!')
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_nom_com(self):
nom_com = self.nomcom.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'.-]+$", nom_com, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom_com == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nomcom.setStyleSheet('border: 1px solid yellow;')
return False, nom_com
elif not validar:#Si no es valid bordes vermells
self.nomcom.setStyleSheet('border: 1px solid red;')
return False, nom_com
else:
self.nomcom.setStyleSheet('border: 1px solid green;')
return True, nom_com
def validar_nom_fis(self):
nom_fis = self.nomfis.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'.-]+$", nom_fis, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom_fis == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nomfis.setStyleSheet('border: 1px solid yellow;')
return False, nom_fis
elif not validar:#Si no es valid bordes vermells
self.nomfis.setStyleSheet('border: 1px solid red;')
return False, nom_fis
else:
self.nomfis.setStyleSheet('border: 1px solid green;')
return True, nom_fis
def validar_direccio(self):
direccio = self.direccio.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789'/,ªº.-]+$", direccio, re.I) #Permetre lletres a-z, espais, accents, numeros
if direccio == '': #Si esta buit bordes grocs
self.direccio.setStyleSheet('border: 1px solid yellow;')
return False, direccio
elif not validar:#Si no es valid bordes vermells
self.direccio.setStyleSheet('border: 1px solid red;')
return False, direccio
else:
self.direccio.setStyleSheet('border: 1px solid green;')
return True, direccio
def validar_poblacio(self):
poblacio = self.poblacio.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789',.-]+$", poblacio, re.I) #Permetre lletres a-z, espais, accents, numeros
if poblacio == '': #Si esta buit bordes grocs
self.poblacio.setStyleSheet('border: 1px solid yellow;')
return False, poblacio
elif not validar:#Si no es valid bordes vermells
self.poblacio.setStyleSheet('border: 1px solid red;')
return False, poblacio
else:
self.poblacio.setStyleSheet('border: 1px solid green;')
return True, poblacio
def validar_nif(self):
nif = self.nif.text()
validar = re.match('^[a-zñç0123456789]+$', nif, re.I) #Permetre lletres a-z, numeros
if nif == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, nif
elif not validar:#Si no es valid bordes vermells
self.nif.setStyleSheet('border: 1px solid red;')
return False, nif
else:
self.nif.setStyleSheet('border: 1px solid green;')
return True, nif
def validar_telf(self):
telf = self.telf.text()
validar = re.match('^[0123456789]+$', telf, re.I) #Permetre numeros
if telf == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, telf
elif not validar:#Si no es valid bordes vermells
self.telf.setStyleSheet('border: 1px solid red;')
return False, telf
else:
self.telf.setStyleSheet('border: 1px solid green;')
return True, telf
def validar_forma_pago(self):
forma_pago = self.formapago.text()
validar = re.match('^[a-zñç.]+$', forma_pago, re.I) #Permetre lletres a-z #re.I ignora majuscules i minuscules
if forma_pago == '': #Si esta buit bordes grocs
self.nif.setStyleSheet('border: 1px solid yellow;')
return False, forma_pago
elif not validar:#Si no es valid bordes vermells
self.formapago.setStyleSheet('border: 1px solid red;')
return False, forma_pago
else:
self.formapago.setStyleSheet('border: 1px solid green;')
return True, forma_pago
def validar_dades(self):
bool_1, NOMCOM = self.validar_nom_com()
bool_2, NOMFIS = self.validar_nom_fis()
bool_3, DIR = self.validar_direccio()
bool_4, POBLACIO = self.validar_poblacio()
bool_5, NIF = self.validar_nif()
bool_6, TEL = self.validar_telf()
bool_7, forma_pago = self.validar_forma_pago()
bool_8, num_client = self.validar_num_client()
if bool_1 and bool_2 and bool_3 and bool_4 and bool_5 and bool_6 and bool_7 and bool_8 :
os.chdir(carpeta_data)
delete_from_database('clients', 'num_client', str(num_client).zfill(4))
fill_database('clients', str(num_client).zfill(4), str(NOMCOM), str(NOMFIS), str(DIR), str(POBLACIO), str(NIF), str(TEL), str(forma_pago))
if self.pujar_drive_check.isChecked():
upload_to_drive_database('clients')
QMessageBox.information(self, 'Information' , 'Client modificat', QMessageBox.Discard)
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Warning!' , 'Dades incorrectes, comprova si el número de client està registrat', QMessageBox.Discard)
def upload_database(self):
upload_to_drive_database('clients')
QMessageBox.information(self, 'Information', 'Dades pujades correctament')
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.numclient.setStyleSheet('')
self.nomcom.setStyleSheet('')
self.nomfis.setStyleSheet('')
self.direccio.setStyleSheet('')
self.poblacio.setStyleSheet('')
self.nif.setStyleSheet('')
self.telf.setStyleSheet('')
self.formapago.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.pujar_drive_check.setChecked(True)
else:
event.ignore()
class Registre_clients(QDialog):
def __init__(self):
QDialog.__init__(self)
uic.loadUi('RegistreClients.ui', self)
self.show_table()
def show_table(self):
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
lines = read_database('clients', 'data', 'num_client', 'ASC')
self.table.setRowCount(len(lines))
self.table.setColumnCount(8)
self.table.setHorizontalHeaderLabels(['Nº CLIENT', 'NOM COMERCIAL', 'NOM FISCAL', 'ADREÇA', 'POBLACIÓ', 'NIF', 'TEL', 'FORMA PAGO'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(8):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
for i in range(len(lines)):
llista.append(lines[i][0])
for j in range(8):
if j == 0:
self.table.setItem(i,j, QTableWidgetItem(lines[i][0])) #num_client
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #nom_com
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2])) #nom_fis
elif j == 3:
self.table.setItem(i,j, QTableWidgetItem(lines[i][3])) #adreça
elif j == 4:
self.table.setItem(i,j, QTableWidgetItem(lines[i][4])) #poblacio
elif j == 5:
self.table.setItem(i,j, QTableWidgetItem(lines[i][5])) #nif
elif j == 6:
self.table.setItem(i,j, QTableWidgetItem(lines[i][6])) #tel
else:
self.table.setItem(i,j, QTableWidgetItem(lines[i][7])) #forma pago
self.table.setVerticalHeaderLabels(llista)
header = self.table.horizontalHeader()
for i in range(8):
header.setSectionResizeMode(i, QHeaderView.ResizeToContents)
for j in range(len(lines)):
self.table.verticalHeaderItem(j).setFont(font)
class Buscar_client(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('BuscarClient.ui', self)
self.buscador.textChanged.connect(self.validar_buscador)
self.accepted.connect(self.accept)
self.rejected.connect(self.reinit_dialog)
def validar_buscador(self):
entrada = self.buscador.text()
validar = re.match("^[a-z\sáéíóúàèìòùäëïöüñç0123456789']+$", entrada, re.I)
if entrada == '': #Si esta buit bordes grocs
self.buscador.setStyleSheet('border: 1px solid yellow;')
return False, entrada
elif not validar:#Si no es valid bordes vermells
self.buscador.setStyleSheet('border: 1px solid red;')
return False, entrada
else:
self.buscador.setStyleSheet('border: 1px solid green;')
return True, entrada
def accept(self):
os.chdir(carpeta_data)
bool1, entrada = self.validar_buscador()
CONTROL = False
if bool1 == True:
if os.path.exists('clients.db'):
matches, CONTROL = select_from_database('clients', entrada, 'num_client')
if CONTROL == True:
self.table.setRowCount(len(matches))
self.table.setColumnCount(8)
self.table.setHorizontalHeaderLabels(['Nº CLIENT', 'NOM COMERCIAL', 'NOM FISCAL', 'ADREÇA', 'POBLACIÓ', 'NIF', 'TEL', 'FORMA PAGO'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(8):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
for i in range(len(matches)):
llista.append('')
for j in range(8):
if j == 0:
self.table.setItem(i,j, QTableWidgetItem(matches[i][0])) #num_client
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(matches[i][1])) #nom_com
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(matches[i][2])) #nom_fis
elif j == 3:
self.table.setItem(i,j, QTableWidgetItem(matches[i][3])) #adreça
elif j == 4:
self.table.setItem(i,j, QTableWidgetItem(matches[i][4])) #poblacio
elif j == 5:
self.table.setItem(i,j, QTableWidgetItem(matches[i][5])) #nif
elif j == 6:
self.table.setItem(i,j, QTableWidgetItem(matches[i][6])) #tel
else:
self.table.setItem(i,j, QTableWidgetItem(matches[i][7])) #forma pago
self.table.setVerticalHeaderLabels(llista)
header = self.table.horizontalHeader()
for i in range(8):
header.setSectionResizeMode(i, QHeaderView.ResizeToContents)
else:
QMessageBox.warning(self, 'Warning!' , 'Cap coincidència', QMessageBox.Discard)
else:
QMessageBox.warning(self, 'Dades incorrectes', 'Encara no has registrat cap client!', QMessageBox.Discard)
else:
QMessageBox.warning(self, 'Dades incorrectes', 'Algun caràcter introduït al marcador no és vàlid', QMessageBox.Discard)
def reinit_dialog(self):
self.buscador.setText('')
self.table.setRowCount(0)
self.table.setColumnCount(0)
self.buscador.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
#PRODUCTES
class Nou_producte(QDialog):
def __init__(self):
QDialog.__init__(self)
uic.loadUi('NouProducte.ui', self)
self.ref_modificar.textChanged.connect(self.validar_ref_mod)
self.ref_eliminar.textChanged.connect(self.validar_ref_elim)
self.nom.textChanged.connect(self.validar_nom_prod)
self.veure_nom_mod.clicked.connect(self.veure_nom_modificar)
self.veure_nom_elim.clicked.connect(self.veure_nom_eliminar)
self.registrar.clicked.connect(self.registrar_producte)
self.modificar.clicked.connect(self.modificar_producte)
self.eliminar.clicked.connect(self.eliminar_producte)
self.pujar_drive.clicked.connect(self.upload_database)
def validar_nom_prod(self):
nom = self.nom.text()
validar = re.match('^[a-z\sáéíóúàèìòùäëïöüñç0123456789.-]+$', nom, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nom.setStyleSheet('border: 1px solid yellow;')
return False, nom
else:
self.nom.setStyleSheet('border: 1px solid green;')
return True, nom
'''
elif not validar:#Si no es valid bordes vermells
self.nom.setStyleSheet('border: 1px solid red;')
return False, nom
'''
def validar_ref_mod(self):
ref = self.ref_modificar.text()
validar = re.match('^[0123456789]+$', ref)
if ref == '': #Si esta buit bordes grocs
self.ref_modificar.setStyleSheet('border: 1px solid yellow;')
return False, ref
elif not validar:#Si no es valid bordes vermells
self.ref_modificar.setStyleSheet('border: 1px solid red;')
return False, ref
else:
self.ref_modificar.setStyleSheet('border: 1px solid green;')
return True, ref
def validar_ref_elim(self):
ref = self.ref_eliminar.text()
validar = re.match('^[0123456789]+$', ref)
if ref == '': #Si esta buit bordes grocs
self.ref_eliminar.setStyleSheet('border: 1px solid yellow;')
return False, ref
elif not validar:#Si no es valid bordes vermells
self.ref_eliminar.setStyleSheet('border: 1px solid red;')
return False, ref
else:
self.ref_eliminar.setStyleSheet('border: 1px solid green;')
return True, ref
def veure_nom_modificar(self):
os.chdir(carpeta_data)
control, ref = self.validar_ref_mod()
if not os.path.exists('cataleg.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Referència no vàlida!')
else:
prod = select_from_database_general('cataleg', 'data', ref, 'ref', 'ref', 'ASC')
if len(prod) != 0:
self.nom_modificar.setText(prod[0][1])
self.preu_mod_prod.setValue(prod[0][2])
else:
QMessageBox.warning(self, 'Warning!', 'Referència no registrada')
def veure_nom_eliminar(self):
os.chdir(carpeta_data)
control, ref = self.validar_ref_elim()
if not os.path.exists('cataleg.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Referència no vàlida!')
else:
prod = select_from_database_general('cataleg', 'data', ref, 'ref', 'ref', 'ASC')
if len(prod) != 0:
self.nom_eliminar.setText(prod[0][1])
self.preu_elim_prod.setValue(prod[0][2])
else:
QMessageBox.warning(self, 'Warning!', 'Referència no registrada')
def eliminar_producte(self):
os.chdir(carpeta_data)
control, ref = self.validar_ref_elim()
if not os.path.exists('cataleg.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Referència no vàlida!')
else:
delete_from_database('cataleg', 'ref', ref)
if self.pujar_drive_check.isChecked():
upload_to_drive_database('cataleg')
QMessageBox.information(self, 'Information', 'Producte eliminat correctament!')
self.reinit_dialog()
def modificar_producte(self):
os.chdir(carpeta_data)
control, ref = self.validar_ref_mod()
prod = self.nom_modificar.text()
preu = self.preu_mod_prod.value()
if self.nom_modificar.text() == '':
os.chdir(carpeta_data)
control, ref = self.validar_ref_mod()
if not os.path.exists('cataleg.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Referència no vàlida!')
else:
prod = select_from_database_general('cataleg', 'data', ref, 'ref', 'ref', 'ASC')
if len(prod) != 0:
prod = prod[0][1]
else:
QMessageBox.warning(self, 'Warning!', 'Referència no registrada')
if not os.path.exists('cataleg.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Referència no vàlida!')
elif preu == 0:
QMessageBox.warning(self, 'Warning!', 'El preu de compra no pot ser 0!')
else:
delete_from_database('cataleg', 'ref', ref)
fill_database_cataleg('cataleg', str(ref).zfill(3), prod, preu)
if self.pujar_drive_check.isChecked():
upload_to_drive_database('cataleg')
QMessageBox.information(self, 'Information', 'Producte modificat correctament!')
self.reinit_dialog()
def registrar_producte(self):
os.chdir(carpeta_data)
create_database_cataleg('cataleg')
lines = read_database('cataleg', 'data', 'ref', 'ASC')
control_nom, prod = self.validar_nom_prod()
ref = int(lines[len(lines)-1][0]) + 1
preu = self.preu_nou_prod.value()
control = True
for i in range(len(lines)):
if lines[i][1] == prod:
control = False
control_ref = lines[i][0]
if control == False:
QMessageBox.warning(self, 'Warning!', 'Aquest producte ja esta registrat amb número de referència %s' % control_ref)
elif preu == 0:
QMessageBox.warning(self, 'Warning!', 'El preu del producte no pot ser 0!')
elif control_nom == False:
QMessageBox.warning(self, 'Warning!', 'El nom del producte no pot estar buit!')
else:
fill_database_cataleg('cataleg', str(ref).zfill(3), prod, preu)
if self.pujar_drive_check.isChecked():
upload_to_drive_database('cataleg')
QMessageBox.information(self, 'Information', 'Producte ja registrat amb número de referència %s' % ref)
self.reinit_dialog()
def upload_database(self):
upload_to_drive_database('cataleg')
QMessageBox.information(self, 'Information', 'Dades pujades correctament')
def reinit_dialog(self):
self.nom.setText('')
self.ref_modificar.setText('')
self.ref_eliminar.setText('')
self.nom_modificar.setText('')
self.nom_eliminar.setText('')
self.preu_mod_prod.setValue(0)
self.preu_nou_prod.setValue(0)
self.preu_elim_prod.setValue(0)
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.ref_modificar.setStyleSheet('')
self.ref_eliminar.setStyleSheet('')
self.pujar_drive_check.setChecked(True)
else:
event.ignore()
class Introduir_preu_producte(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('IntroduirPreu.ui', self)
self.referencia.textChanged.connect(self.validar_ref)
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.validar_dades)
self.guardar.clicked.connect(self.guardar_preu)
self.modificar.clicked.connect(self.modificar_preu)
self.pujar_drive.clicked.connect(self.upload_database)
def validar_ref(self):
ref = self.referencia.text()
validar = re.match('^[0123456789]+$', ref)
if ref == '': #Si esta buit bordes grocs
self.referencia.setStyleSheet('border: 1px solid yellow;')
return False, ref
elif not validar:#Si no es valid bordes vermells
self.referencia.setStyleSheet('border: 1px solid red;')
return False, ref
else:
self.referencia.setStyleSheet('border: 1px solid green;')
return True, ref
def validar_dades(self):
control, ref = self.validar_ref()
os.chdir(carpeta_data)
if os.path.exists('cataleg.db') and control == True:
lines = select_from_database_general('cataleg', 'data', ref, 'ref', 'ref', 'ASC')
if len(lines) != 0:
nom_ref = lines[0][1]
self.nom.setText(nom_ref)
else:
QMessageBox.warning(self, 'Warning!', 'Referència incorrecta o no registrada al catàleg!')
elif control == False:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!')
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap producte!')
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def guardar_preu(self):
control, num_client = self.validar_num_client()
control_2, ref = self.validar_ref()
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
lines = select_from_database_general('clients', 'data', num_client, 'num_client', 'num_client', 'ASC')
if control == True and control_2 == True and len(lines) != 0:
preu_ref = self.preu.value()
prod = self.nom.text()
if preu_ref > 0:
create_database_preus('preus')
control = fill_database_preus('preus', num_client, ref, prod, preu_ref)
if control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per aquest producte i client ja existeix a la base de dades! Si vols modificar-lo, clica el botó \"Modificar preu\"')
else:
if self.pujar_drive_check.isChecked():
upload_to_drive_database('preus')
QMessageBox.information(self, 'Information', 'Dades guardades correctament')
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Warning!', 'Selecciona un preu diferent de 0 per al producte!')
else:
QMessageBox.warning(self, 'Warning!', 'Número de client no registrat!')
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has reistrat cap client!')
def upload_database(self):
upload_to_drive_database('preus')
QMessageBox.Information(self, 'Information', 'Dades pujades correctament')
def modificar_preu(self):
control, num_client = self.validar_num_client()
control_2, ref = self.validar_ref()
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
lines = select_from_database_general('clients', 'data', num_client, 'num_client', 'num_client', 'ASC')
if control == True and control_2 == True and len(lines) != 0:
preu_ref = self.preu.value()
prod = self.nom.text()
if preu_ref > 0:
create_database_preus('preus')
control = modificar_database_preus('preus', num_client, ref, prod, preu_ref)
if control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per aquest producte i client no existeix a la base de dades, per introduir un preu nou clica el botó \"Guardar preu\".')
else:
if self.pujar_drive_check.isChecked():
upload_to_drive_database('preus')
QMessageBox.information(self, 'Information', 'Dades modificades correctament')
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Warning!', 'Selecciona un preu diferent de 0 per al producte!')
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!')
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
def reinit_dialog(self):
self.referencia.setText('')
self.numclient.setText('')
self.nom.setText('')
self.preu.setValue(0.)
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.referencia.setStyleSheet('')
self.numclient.setStyleSheet('')
self.pujar_drive_check.setChecked(True)
else:
event.ignore()
class Cataleg(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Cataleg.ui', self)
self.show.clicked.connect(self.createTable)
def createTable(self):
os.chdir(carpeta_data)
if os.path.exists('cataleg.db'):
if self.order.currentText() == 'Ordre alfabètic':
lines = read_database('cataleg', 'data', 'prod', 'ASC')
elif self.order.currentText() == 'Referència asc':
lines = read_database('cataleg', 'data', 'ref', 'ASC')
else:
lines = read_database('cataleg', 'data', 'ref', 'DESC')
self.table.setRowCount(len(lines))
self.table.setColumnCount(3)
header = self.table.horizontalHeader()
header.setSectionResizeMode(1, QHeaderView.Stretch)
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.ResizeToContents)
self.table.setHorizontalHeaderLabels(['REF', 'PRODUCTE', 'PREU DE COMPRA'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(3):
self.table.horizontalHeaderItem(i).setFont(font)
for i in range(len(lines)):
for j in range(3):
self.table.setItem(i,j, QTableWidgetItem(str(lines[i][j])))
llista = []
for i in range(len(lines)):
llista.append('')
self.table.setVerticalHeaderLabels(llista)
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap producte!')
def reinit_dialog(self):
self.table.clearContents()
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Veure_preus(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('VeurePreus.ui', self)
self.show_table()
self.numclient.textChanged.connect(self.validar_num_client)
self.referencia.textChanged.connect(self.validar_ref)
self.seleccionar.clicked.connect(self.show_price_ref)
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_ref(self):
ref = self.referencia.text()
validar = re.match('^[0123456789]+$', ref)
if ref == '': #Si esta buit bordes grocs
self.referencia.setStyleSheet('border: 1px solid yellow;')
return False, ref
elif not validar:#Si no es valid bordes vermells
self.referencia.setStyleSheet('border: 1px solid red;')
return False, ref
else:
self.referencia.setStyleSheet('border: 1px solid green;')
return True, ref
def show_table(self):
os.chdir(carpeta_data)
if os.path.exists('cataleg.db') and os.path.exists('preus.db'):
referencies = read_database('cataleg', 'data', 'ref', 'ASC')
clients = read_database('clients', 'data', 'num_client', 'ASC')
preus = read_database('preus', 'data', 'ref', 'ASC')
self.table.setRowCount(len(clients))
self.table.setColumnCount(len(referencies) + 1)
horitzontal_labels = ['NUM. CLIENT / REF']
vertical_labels = []
for i in range(len(referencies)): horitzontal_labels.append(str(i+1).zfill(3))
for i in range(len(clients)):
vertical_labels.append(clients[i][0])
for j in range(len(referencies)+1):
if j == 0:
self.table.setItem(i,j, QTableWidgetItem(clients[i][0]))
else:
current_price_customer = select_from_database_preus('preus', str(i+1).zfill(4), str(j).zfill(3))
if len(current_price_customer) == 0:
self.table.setItem(i,j, QTableWidgetItem('NULL'))
else:
self.table.setItem(i,j, QTableWidgetItem(str(current_price_customer[0][3])))
self.table.setHorizontalHeaderLabels(horitzontal_labels)
self.table.setVerticalHeaderLabels(vertical_labels)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(len(referencies)+1):
self.table.horizontalHeaderItem(i).setFont(font)
for i in range(len(clients)):
self.table.verticalHeaderItem(i).setFont(font)
else:
#QMessageBox.warning(self, 'Warning!', 'No existeixen les bases de dades del catàleg o preus! ')
pass
def show_price_ref(self):
control, num_client = self.validar_num_client()
control_ref, ref = self.validar_ref()
os.chdir(carpeta_data)
if os.path.exists('preus.db'):
price_ref_customer = select_from_database_preus('preus', str(num_client).zfill(4), str(ref).zfill(3))
if control == True and control_ref == True and len(price_ref_customer) != 0:
self.preu.setText(str(price_ref_customer[0][3]))
elif control == True and control_ref == True and len(price_ref_customer) == 0:
self.preu.setText('NULL')
else:
QMessageBox.warning(self, 'Warning!', 'Número de client o referència incorrecte')
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap preu!')
def reinit_dialog(self):
self.numclient.setText('')
self.referencia.setText('')
self.preu.setText('')
self.referencia.setStyleSheet('')
self.numclient.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
#FACTURACIÓ
class Factura(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Factura.ui', self)
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def show_table(self, num_client):
os.chdir(carpeta_data)
if not os.path.exists('preus.db'):
QMessageBox.warning(self, 'Warning!', 'No has registrat cap preu!')
else:
if self.comboBox.currentText() == 'Referència ascendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'ASC')
elif self.comboBox.currentText() == 'Referència descendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'DESC')
elif self.comboBox.currentText() == 'Alfabètic':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'prod', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Aquest client no té cap preu registrat!')
else:
self.table.setRowCount(len(lines))
self.table.setColumnCount(4)
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(4):
if j == 0: #UNITS
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #REF
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2]))
elif j == 3:#PRICE
sp = QDoubleSpinBox()
sp.setDecimals(3)
sp.setValue(float(lines[i][3]))
sp.setMaximum(float(lines[i][3]))
sp.setMinimum(float(lines[i][3]))
self.table.setCellWidget(i,j, sp)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.Stretch)
self.table.setHorizontalHeaderLabels(['UNITATS', 'REF', 'PRODUCTE', 'PREU'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(4):
self.table.horizontalHeaderItem(i).setFont(font)
def search(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.show_table(num)
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_client(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def fer_factura(self):
control, num_client = self.validar_client()
if control == True:
data = self.calendar.selectedDate().toString("dd/MM/yyyy")
dia = str(data[0:2]).zfill(2)
mes = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
nom_mes = mesos[int(data[3:5])-1]
ref = []
prod = []
units = []
preu = []
base_imponible = []
create_database_ventes('ventes', str(ano))
create_database_ventes('facturacio_ref', str(ano))
lines = self.table.rowCount()
for i in range(lines):
current_units = self.table.cellWidget(i,0).value()
current_ref = self.table.item(i,1).text()
current_prod = self.table.item(i,2).text().strip('\n')
if current_units != 0 :
ref.append(current_ref)
prod.append(current_prod)
units.append(current_units)
#Obtenir el preu a partir de la base de dades
if os.path.exists('preus.db'):
control_2 = True
lines = select_from_database_preus('preus', num_client, current_ref)
if len(lines) != 0:
current_price = lines[0][3]
preu.append(current_price)
base = round(current_units*current_price, 2)
base_imponible.append(base)
#Guardar les ventes a la base de dades
fill_database_ventes('ventes', str(ano), int(current_ref), int(data[3:5]), current_units, 3)
fill_database_ventes('facturacio_ref', str(ano), int(current_ref), int(data[3:5]), base, 3)
else :
control = False
ref_control = current_ref
break
else:
control_2 = False
if len(prod) == 0:
QMessageBox.warning(self, 'Warning!', 'No has seleccionat cap producte!', QMessageBox.Discard)
elif np.any(np.array(preu) == 0):
QMessageBox.warning(self, 'Warning!', 'No has indicat el preu d\'algun dels productes seleccionats!', QMessageBox.Discard)
elif control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades' % (ref_control, num_client))
elif control_2 == False:
QMessageBox.warning(self, 'Warning', 'No hi ha preus reistrats per cap client!')
else:
#Calcular import total
suma = 0
for i in range(len(base_imponible)):
suma = suma + base_imponible[i]
suma = round(suma, 2)
iva = round(0.21 * suma, 2)
total = round(suma + iva, 2)
#Fer factura i pujar al drive
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
dim = len(prod)
num_fact = assignar_numero_factura('numero_factura', ano)
factura(carpeta_factures, 'FACTURA', num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, dim, ref, prod, units, preu, base_imponible, suma, iva, total) #Plantilla de la factura per al client seleccionat
os.chdir(carpeta_data)
#Factura a la base de dades (nom comercial, B.I., I.V.A., total)
create_database_factures('factures_emeses')
fill_database_factures('factures_emeses', dia, mes, ano, str(num_fact).zfill(4), suma, 21, total)
#Facturació per client base de dades
create_database_ventes('facturacio_clients', ano)
fill_database_ventes('facturacio_clients', ano, int(num_client), int(data[3:5]), suma, 4)
#Facturació total base de dades
create_database_ventes('facturacio_total', 'data')
fill_database_ventes('facturacio_total', 'data', int(data[6:]), int(data[3:5]), suma, 3)
upload_to_drive_factura(carpeta_factures, 'Factures', 'FACTURA', num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Factura realitzada correctament!')
self.reinit_dialog()
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.table.clearContents()
self.numclient.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Substituir_factura(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('SubstituirFactura.ui', self)
self.numclient.textChanged.connect(self.validar_num_client)
self.numfact.textChanged.connect(self.validar_num_factura)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def show_table(self, num_client):
os.chdir(carpeta_data)
if not os.path.exists('preus.db'):
QMessageBox.warning(self, 'Warning!', 'No has registrat cap preu!')
else:
if self.comboBox.currentText() == 'Referència ascendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'ASC')
elif self.comboBox.currentText() == 'Referència descendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'DESC')
elif self.comboBox.currentText() == 'Alfabètic':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'prod', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Aquest client no té cap preu registrat!')
else:
self.table.setRowCount(len(lines))
self.table.setColumnCount(4)
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(4):
if j == 0: #UNITS
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #REF
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2]))
elif j == 3:#PRICE
sp = QDoubleSpinBox()
sp.setDecimals(3)
sp.setValue(float(lines[i][3]))
sp.setMaximum(float(lines[i][3]))
sp.setMinimum(float(lines[i][3]))
self.table.setCellWidget(i,j, sp)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.Stretch)
self.table.setHorizontalHeaderLabels(['UNITATS', 'REF', 'PRODUCTE', 'PREU'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(4):
self.table.horizontalHeaderItem(i).setFont(font)
def search(self):
control_client, num = self.validar_num_client()
control_factura, num_fact = self.validar_num_factura()
if control_client == True and control_factura == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.show_table(num)
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client o no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_num_factura(self):
os.chdir(carpeta_factures)
num_fact = self.numfact.text()
validar = re.match('^[0123456789]+$', num_fact)
if num_fact == '': #Si esta buit bordes grocs
self.numfact.setStyleSheet('border: 1px solid yellow;')
return False, num_fact
elif not validar:#Si no es valid bordes vermells
self.numfact.setStyleSheet('border: 1px solid red;')
return False, num_fact
else:
self.numfact.setStyleSheet('border: 1px solid green;')
return True, num_fact
def validar_client(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def fer_factura(self):
control_client, num_client = self.validar_client()
data = self.calendar.selectedDate().toString("dd/MM/yyyy")
num_fact = self.numfact.text()
dia = str(data[0:2]).zfill(2)
mes_numero = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
name_fact = 'FACTURA_%s' % num_fact
mes = mesos[int(data[3:5])-1]
año = data[6:]
if not os.path.exists(carpeta_factures + '\%s_%s' % (mes, año)):
QMessageBox.warning(self, 'Warning!', 'No has realitzat cap factura pel mes i any de la data seleccionada!')
else:
os.chdir(carpeta_factures + '\%s_%s' % (mes, año))
list_files = os.listdir()
control_factura = False
for file in list_files:
if file[0:12] == name_fact:
control_factura = True
os.remove(file)
break
else:
control_factura = False
if control_factura == False:
QMessageBox.warning(self, 'Warning!', 'Aquest número de factura no existeix!')
elif control_client == True:
ref = []
prod = []
units = []
preu = []
base_imponible = []
lines = self.table.rowCount()
for i in range(lines):
current_units = self.table.cellWidget(i,0).value()
current_ref = self.table.item(i,1).text()
current_prod = self.table.item(i,2).text().strip('\n')
if current_units != 0 :
ref.append(current_ref)
prod.append(current_prod)
units.append(current_units)
#Obtenir el preu a partir de la base de dades
os.chdir(carpeta_data)
lines = select_from_database_preus('preus', num_client, current_ref)
if len(lines) != 0:
current_price = lines[0][3]
preu.append(current_price)
base_imponible.append(round(current_units*current_price, 2))
control = True
else :
control = False
ref_control = current_ref
break
if len(prod)== 0:
QMessageBox.warning(self, 'Warning!', 'No has seleccionat cap producte!', QMessageBox.Discard)
elif np.any(np.array(preu) == 0):
QMessageBox.warning(self, 'Warning!', 'No has indicat el preu d\'algun dels productes seleccionats!', QMessageBox.Discard)
elif control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades' % (ref_control, num_client))
else:
#Calcular import total
suma = 0
for i in range(len(base_imponible)):
suma = suma + base_imponible[i]
suma = round(suma, 2)
iva = round(0.21 * suma, 2)
total = round(suma + iva, 2)
#Fer factura i pujar al drive
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
dim = len(prod)
factura(carpeta_factures, 'FACTURA', num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, dim, ref, prod, units, preu, base_imponible, suma, iva, total) #Plantilla de la factura per al client seleccionat
#Factura a la base de dades (nom comercial, B.I., I.V.A., total)
os.chdir(carpeta_data)
create_database_factures('factures_emeses')
delete_from_database('factures_emeses', 'nom', str(num_fact).zfill(4))
fill_database_factures('factures_emeses', dia, mes_numero, ano, str(num_fact).zfill(4), suma, 21, total)
upload_to_drive_factura(carpeta_factures, 'Factures', 'FACTURA', num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Factura modificada correctament!')
self.reinit_dialog()
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.numfact.setText('')
self.table.clearContents()
self.numclient.setStyleSheet('')
self.numfact.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Abonos(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Abono.ui', self)
self.setWindowTitle('Abonos')
self.facturar.setText('Realitzar abono')
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def show_table(self, num_client):
os.chdir(carpeta_data)
if not os.path.exists('preus.db'):
QMessageBox.warning(self, 'Warning!', 'No has registrat cap preu!')
else:
if self.comboBox.currentText() == 'Referència ascendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'ASC')
elif self.comboBox.currentText() == 'Referència descendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'DESC')
elif self.comboBox.currentText() == 'Alfabètic':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'prod', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Aquest client no té cap preu registrat!')
else:
self.table.setRowCount(len(lines))
self.table.setColumnCount(4)
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(4):
if j == 0: #UNITS
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #REF
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2]))
elif j == 3:#PRICE
sp = QDoubleSpinBox()
sp.setDecimals(3)
sp.setValue(float(lines[i][3]))
sp.setMaximum(float(lines[i][3]))
sp.setMinimum(float(lines[i][3]))
self.table.setCellWidget(i,j, sp)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.Stretch)
self.table.setHorizontalHeaderLabels(['UNITATS', 'REF', 'PRODUCTE', 'PREU'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(4):
self.table.horizontalHeaderItem(i).setFont(font)
def search(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.show_table(num)
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client o encara no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_client(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def fer_factura(self):
control, num_client = self.validar_client()
if control == True:
data = self.calendar.selectedDate().toString("dd/MM/yyyy")
dia = str(data[0:2]).zfill(2)
mes = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
nom_mes = mesos[int(data[3:5])-1]
ref = []
prod = []
units = []
preu = []
base_imponible = []
create_database_ventes('ventes', data[6:])
create_database_ventes('facturacio_ref', data[6:])
lines = self.table.rowCount()
for i in range(lines):
current_units = self.table.cellWidget(i,0).value()
current_ref = self.table.item(i,1).text()
current_prod = self.table.item(i,2).text().strip('\n')
if current_units != 0 :
ref.append(current_ref)
prod.append(current_prod)
units.append(current_units)
#Obtenir el preu a partir de la base de dades
lines = select_from_database_preus('preus', num_client, current_ref)
if len(lines) != 0:
current_price = -lines[0][3]
preu.append(current_price)
base = round(current_units*current_price, 2)
base_imponible.append(base)
#Guardar les ventes a la base de dades
fill_database_ventes('ventes', data[6:], int(current_ref), int(data[3:5]), -current_units, 3)
fill_database_ventes('facturacio_ref', str(ano), int(current_ref), int(data[3:5]), base, 3)
else :
control = False
ref_control = current_ref
break
if len(prod) == 0:
QMessageBox.warning(self, 'Warning!', 'No has seleccionat cap producte!', QMessageBox.Discard)
elif np.any(np.array(preu) == 0):
QMessageBox.warning(self, 'Warning!', 'No has indicat el preu d\'algun dels productes seleccionats!', QMessageBox.Discard)
elif control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades' % (ref_control, num_client))
elif not os.path.exists('factures_emeses.db'):
QMessageBox.warning(self, 'Warning!', 'No pots fer un abono si no has realitzat encara cap factura!')
else:
#Calcular import total
suma = 0
for i in range(len(base_imponible)):
suma = suma + base_imponible[i]
suma = round(suma, 2)
iva = round(0.21 * suma, 2)
total = round(suma + iva, 2)
#Fer factura i pujar al drive
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
dim = len(prod)
num_fact = assignar_numero_factura('numero_abono', ano)
if self.tipo_abono.currentText() == 'Factura':
tipo = 'ABONO_FACTURA'
os.chdir(carpeta_data)
#SUMA JA ÉS NEATIVA!!!
#Factura a la base de dades (nom comercial, B.I., I.V.A., total)
delete_database_factures('factures_emeses', dia, mes, ano, -suma, 21, -total)
#Facturació per client base de dades
fill_database_ventes('facturacio_clients', data[6:], int(num_client), int(data[3:5]), suma, 4)
#Facturació total base de dades
fill_database_ventes('facturacio_total', 'data', int(data[6:]), int(data[3:5]), suma, 3)
else:
tipo = 'ABONO_ALBARAN'
fill_database_general('CompanyName', 'albaranes(num_client, num_albaran, data, base_imp, iva, total)', '(?,?,?,?,?,?)', [str(num_client).zfill(4), str(num_fact).zfill(4), '%s-%s-%s' % (ano, mes, dia), suma, iva, total])
factura(carpeta_abonos, tipo, num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, dim, ref, prod, units, preu, base_imponible, suma, iva, total) #Plantilla de la factura per al client seleccionat
upload_to_drive_factura(carpeta_abonos, 'Abonos', tipo, num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Abono realitzat correctament!')
self.reinit_dialog()
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.table.clearContents()
self.numclient.setStyleSheet('')
self.nomcom.setStyleSheet('')
self.direccio.setStyleSheet('')
self.nomfis.setStyleSheet('')
self.poblacio.setStyleSheet('')
self.nif.setStyleSheet('')
self.telf.setStyleSheet('')
self.formapago.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Albaran(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Factura.ui', self)
self.setWindowTitle('Albaran')
self.facturar.setText('Realitzar albaran')
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def show_table(self, num_client):
os.chdir(carpeta_data)
if not os.path.exists('preus.db'):
QMessageBox.warning(self, 'Warning!', 'No has registrat cap preu!')
else:
if self.comboBox.currentText() == 'Referència ascendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'ASC')
elif self.comboBox.currentText() == 'Referència descendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'DESC')
elif self.comboBox.currentText() == 'Alfabètic':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'prod', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Aquest client no té cap preu registrat!')
else:
self.table.setRowCount(len(lines))
self.table.setColumnCount(4)
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(4):
if j == 0: #UNITS
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #REF
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2]))
elif j == 3:#PRICE
sp = QDoubleSpinBox()
sp.setDecimals(3)
sp.setValue(float(lines[i][3]))
sp.setMaximum(float(lines[i][3]))
sp.setMinimum(float(lines[i][3]))
self.table.setCellWidget(i,j, sp)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.Stretch)
self.table.setHorizontalHeaderLabels(['UNITATS', 'REF', 'PRODUCTE', 'PREU'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(4):
self.table.horizontalHeaderItem(i).setFont(font)
def search(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.show_table(num)
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_client(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def fer_factura(self):
control, num_client = self.validar_client()
if control == True:
data = self.calendar.selectedDate().toString("dd/MM/yyyy")
dia = str(data[0:2]).zfill(2)
mes = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
nom_mes = mesos[int(data[3:5])-1]
ref = []
prod = []
units = []
preu = []
base_imponible = []
create_database_ventes('ventes', str(ano))
create_database_ventes('facturacio_ref', str(ano))
lines = self.table.rowCount()
for i in range(lines):
current_units = self.table.cellWidget(i,0).value()
current_ref = self.table.item(i,1).text()
current_prod = self.table.item(i,2).text().strip('\n')
if current_units != 0 :
ref.append(current_ref)
prod.append(current_prod)
units.append(current_units)
#Obtenir el preu a partir de la base de dades
if os.path.exists('preus.db'):
control_2 = True
lines = select_from_database_preus('preus', num_client, current_ref)
if len(lines) != 0:
current_price = lines[0][3]
preu.append(current_price)
base = round(current_units*current_price, 2)
base_imponible.append(base)
#Guardar les ventes a la base de dades
fill_database_ventes('ventes', str(ano), int(current_ref), int(data[3:5]), current_units, 3)
fill_database_ventes('facturacio_ref', str(ano), int(current_ref), int(data[3:5]), base, 3)
else :
control = False
ref_control = current_ref
break
else:
control_2 = False
if len(prod) == 0:
QMessageBox.warning(self, 'Warning!', 'No has seleccionat cap producte!', QMessageBox.Discard)
elif np.any(np.array(preu) == 0):
QMessageBox.warning(self, 'Warning!', 'No has indicat el preu d\'algun dels productes seleccionats!', QMessageBox.Discard)
elif control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades' % (ref_control, num_client))
elif control_2 == False:
QMessageBox.warning(self, 'Warning', 'No hi ha preus reistrats per cap client!')
else:
#Calcular import total
suma = 0
for i in range(len(base_imponible)):
suma = suma + base_imponible[i]
suma = round(suma, 2)
iva = round(0.21 * suma, 2)
total = round(suma + iva, 2)
#Fer factura i pujar al drive
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
dim = len(prod)
num_fact = assignar_numero_factura('numero_albaran', ano)
factura(carpeta_albaranes, 'ALBARAN', num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, dim, ref, prod, units, preu, base_imponible, suma, iva, total) #Plantilla de la factura per al client seleccionat
#Albaran a la base de dades (nom comercial, B.I., I.V.A., total)
os.chdir(carpeta_data)
tablas = [
"""
CREATE TABLE IF NOT EXISTS albaranes(
num_client TEXT NOT NULL,
num_albaran TEXT NOT NULL,
data TEXT NOT NULL,
base_imp REAL NOT NULL,
iva REAL NOT NULL,
total REAL NOT NULL
);
"""
]
#Albaran a la base de dades
create_database('CompanyName', tablas)
fill_database_general('CompanyName', 'albaranes(num_client, num_albaran, data, base_imp, iva, total)', '(?,?,?,?,?,?)', [str(num_client).zfill(4), str(num_fact).zfill(4), '%s-%s-%s' % (ano, mes, dia), suma, iva, total])
upload_to_drive_factura(carpeta_albaranes, 'Albaranes', 'ALBARAN', num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Albaran realitzat correctament!')
self.reinit_dialog()
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.table.clearContents()
self.numclient.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Substituir_albaran(QDialog): #Creating!
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('SubstituirFactura.ui', self)
self.setWindowTitle('Substituir albaran')
self.facturar.setText('Substituir')
self.label_num_fact.setText('Número albaran')
self.numclient.textChanged.connect(self.validar_num_client)
self.numfact.textChanged.connect(self.validar_num_factura)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def show_table(self, num_client):
os.chdir(carpeta_data)
if not os.path.exists('preus.db'):
QMessageBox.warning(self, 'Warning!', 'No has registrat cap preu!')
else:
if self.comboBox.currentText() == 'Referència ascendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'ASC')
elif self.comboBox.currentText() == 'Referència descendent':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'ref', 'DESC')
elif self.comboBox.currentText() == 'Alfabètic':
lines = select_from_database_general('preus', 'data', str(num_client).zfill(4), 'num_client', 'prod', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Aquest client no té cap preu registrat!')
else:
self.table.setRowCount(len(lines))
self.table.setColumnCount(4)
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(4):
if j == 0: #UNITS
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(lines[i][1])) #REF
elif j == 2:
self.table.setItem(i,j, QTableWidgetItem(lines[i][2]))
elif j == 3:#PRICE
sp = QDoubleSpinBox()
sp.setDecimals(3)
sp.setValue(float(lines[i][3]))
sp.setMaximum(float(lines[i][3]))
sp.setMinimum(float(lines[i][3]))
self.table.setCellWidget(i,j, sp)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.Stretch)
self.table.setHorizontalHeaderLabels(['UNITATS', 'REF', 'PRODUCTE', 'PREU'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(4):
self.table.horizontalHeaderItem(i).setFont(font)
def search(self):
control_client, num = self.validar_num_client()
control_factura, num_fact = self.validar_num_factura()
if control_client == True and control_factura == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.show_table(num)
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client o no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def validar_num_factura(self):
os.chdir(carpeta_albaranes)
num_fact = self.numfact.text()
validar = re.match('^[0123456789]+$', num_fact)
if num_fact == '': #Si esta buit bordes grocs
self.numfact.setStyleSheet('border: 1px solid yellow;')
return False, num_fact
elif not validar:#Si no es valid bordes vermells
self.numfact.setStyleSheet('border: 1px solid red;')
return False, num_fact
else:
self.numfact.setStyleSheet('border: 1px solid green;')
return True, num_fact
def validar_client(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def fer_factura(self):
control_client, num_client = self.validar_client()
data = self.calendar.selectedDate().toString("dd/MM/yyyy")
num_fact = self.numfact.text()
dia = str(data[0:2]).zfill(2)
mes_numero = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
name_fact = 'ALBARAN_%s' % num_fact
mes = mesos[int(data[3:5])-1]
año = data[6:]
if not os.path.exists(carpeta_albaranes + '\%s_%s' % (mes, año)):
QMessageBox.warning(self, 'Warning!', 'No has realitzat cap albaran pel mes i any de la data seleccionada!')
else:
os.chdir(carpeta_albaranes + '\%s_%s' % (mes, año))
list_files = os.listdir()
control_factura = False
for file in list_files:
if file[0:12] == name_fact:
control_factura = True
os.remove(file)
break
else:
control_factura = False
if control_factura == False:
QMessageBox.warning(self, 'Warning!', 'Aquest número d\'albaran no existeix!')
elif control_client == True:
ref = []
prod = []
units = []
preu = []
base_imponible = []
lines = self.table.rowCount()
for i in range(lines):
current_units = self.table.cellWidget(i,0).value()
current_ref = self.table.item(i,1).text()
current_prod = self.table.item(i,2).text().strip('\n')
if current_units != 0 :
ref.append(current_ref)
prod.append(current_prod)
units.append(current_units)
#Obtenir el preu a partir de la base de dades
os.chdir(carpeta_data)
lines = select_from_database_preus('preus', num_client, current_ref)
if len(lines) != 0:
current_price = lines[0][3]
preu.append(current_price)
base_imponible.append(round(current_units*current_price, 2))
control = True
else :
control = False
ref_control = current_ref
break
if len(prod)== 0:
QMessageBox.warning(self, 'Warning!', 'No has seleccionat cap producte!', QMessageBox.Discard)
elif np.any(np.array(preu) == 0):
QMessageBox.warning(self, 'Warning!', 'No has indicat el preu d\'algun dels productes seleccionats!', QMessageBox.Discard)
elif control == False:
QMessageBox.warning(self, 'Warning!', 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades' % (ref_control, num_client))
else:
#Calcular import total
suma = 0
for i in range(len(base_imponible)):
suma = suma + base_imponible[i]
suma = round(suma, 2)
iva = round(0.21 * suma, 2)
total = round(suma + iva, 2)
#Fer factura i pujar al drive
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
dim = len(prod)
factura(carpeta_albaranes, 'ALBARAN', num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, dim, ref, prod, units, preu, base_imponible, suma, iva, total) #Plantilla de la factura per al client seleccionat
#Factura a la base de dades (nom comercial, B.I., I.V.A., total)
os.chdir(carpeta_data)
#Factures emeses
create_database_factures('factures_emeses')
delete_from_database('factures_emeses', 'nom', str(num_fact).zfill(4))
fill_database_factures('factures_emeses', dia, mes_numero, ano, str(num_fact).zfill(4), suma, 21, total)
#Albaranes
delete_from_database_general('CompanyName', 'albaranes', 'num_albaran', str(num_fact).zfill(4))
fill_database_general('CompanyName', 'albaranes(num_client, num_albaran, data, base_imp, iva, total)', '(?,?,?,?,?,?)', [str(num_client).zfill(4), num_fact, '%s-%s-%s' % (ano, mes_numero, dia), suma, iva, total])
upload_to_drive_factura(carpeta_albaranes, 'Albaranes', 'ALBARAN', num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Albaran modificat correctament!')
self.reinit_dialog()
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.numfact.setText('')
self.table.clearContents()
self.numclient.setStyleSheet('')
self.numfact.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Factura_albaranes(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('FacturaAlbaran.ui', self)
current_date = QDate.currentDate()
self.data_factura.setDate(current_date)
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.search)
self.facturar.clicked.connect(self.fer_factura)
def search(self):
control, num = self.validar_num_client()
if control == True:
os.chdir(carpeta_data)
if os.path.exists('clients.db') and os.path.exists('preus.db'):
dades = select_from_database_general('clients', 'data', num, 'num_client', 'num_client', 'ASC')
if len(dades) == 0:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!', QMessageBox.Discard)
return False, 0
else:
self.nomcom.setText(dades[0][1])
self.nomfis.setText(dades[0][2])
self.direccio.setText(dades[0][3])
self.poblacio.setText(dades[0][4])
self.nif.setText(dades[0][5])
self.telf.setText(dades[0][6])
self.formapago.setText(dades[0][7])
return True, num
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client no has registrat cap preu!')
return False, 0
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False, 0
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def fer_factura(self):
control, num_client = self.search()
if control == True:
data_inicial = self.calendar.selectedDate().toString("yyyy-MM-dd")
data_final = self.calendar_2.selectedDate().toString("yyyy-MM-dd")
#eConnect to the database
database = sqlite3.connect('CompanyName.db')
cursor = database.cursor()
#Get the albaranes done between the delected dates
sentencia = "SELECT * FROM albaranes WHERE num_client LIKE '%s' AND data BETWEEN '%s' AND '%s' ORDER BY data ASC" % (num_client, data_inicial, data_final)
cursor.execute(sentencia)
lines = cursor.fetchall()
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'Cap albaran realitzat per aquest client entre aquestes dates!')
else:
array_num_albaran = []
array_data = []
array_bi = []
array_iva = []
array_total = []
for i in range(len(lines)):
array_num_albaran.append(lines[i][1]) #Numero d'albaran
array_data.append(change_date_format(lines[i][2])) #Data
array_bi.append(lines[i][3]) #Base imponible
array_iva.append(lines[i][4]) #IVA
array_total.append(lines[i][5]) #Total
suma_bi = np.sum(array_bi)
suma_iva = np.sum(array_iva)
suma_total = np.sum(array_total)
self.data_inicial.setDate(self.calendar.selectedDate())
self.data_final.setDate(self.calendar_2.selectedDate())
self.num_albaranes.setValue(len(lines))
self.bi.setText(str(suma_bi))
self.iva.setText(str(suma_iva))
self.total.setText(str(suma_total))
NOMCOM = self.nomcom.text()
NOMFIS = self.nomfis.text()
DIR = self.direccio.text()
NIF = self.nif.text()
POBLACIO = self.poblacio.text()
TEL = self.telf.text()
forma_pago = self.formapago.text()
data = self.data_factura.date().toString("dd/MM/yyyy")
dia = str(data[0:2]).zfill(2)
mes = str(data[3:5]).zfill(2)
ano = str(data[6:]).zfill(4)
num_fact = assignar_numero_factura('numero_factura', ano)
factura_de_albaranes(carpeta_factures, 'FACTURA', num_client, NOMCOM, NOMFIS, DIR, NIF, TEL, POBLACIO, num_fact, data, forma_pago, array_num_albaran, array_data, array_bi, array_iva, array_total, suma_bi, suma_iva, suma_total)
os.chdir(carpeta_data)
#Factura a la base de dades (nom comercial, B.I., I.V.A., total)
create_database_factures('factures_emeses')
fill_database_factures('factures_emeses', dia, mes, ano, str(num_fact).zfill(4), suma_bi, 21, suma_total)
#Facturació per client base de dades
create_database_ventes('facturacio_clients', ano)
fill_database_ventes('facturacio_clients', ano, int(num_client), int(data[3:5]), suma_bi, 4)
#Facturació total base de dades
create_database_ventes('facturacio_total', 'data')
fill_database_ventes('facturacio_total', 'data', int(data[6:]), int(data[3:5]), suma_bi, 3)
upload_to_drive_factura(carpeta_factures, 'Factures', 'FACTURA', num_fact, data, NOMCOM, num_client, 'ventes.db', 'facturacio_clients.db', 'facturacio_total.db', 'factures_emeses.db')
QMessageBox.information(self, 'Information', 'Factura realitzada correctament!')
def reinit_dialog(self):
self.numclient.setText('')
self.nomcom.setText('')
self.direccio.setText('')
self.nomfis.setText('')
self.poblacio.setText('')
self.nif.setText('')
self.telf.setText('')
self.formapago.setText('')
self.numclient.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Introduir_factures_rebudes(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('IntroduirFacturesRebudes.ui', self)
self.data.setDate(QDate.currentDate())
self.nom.textChanged.connect(self.validar_nom)
self.introduir.clicked.connect(self.guardar)
self.eliminar.clicked.connect(self.delete)
self.pujar_drive.clicked.connect(self.upload_database)
def validar_nom(self):
nom = self.nom.text()
validar = re.match('^[a-z\sáéíóúàèìòùäëïöüñç0123456789.-]+$', nom, re.I) #Permetre lletres a-z, espais, accents, numeros
if nom == '': #Si esta buit bordes grocs #re.I ignora majuscules i minuscules
self.nom.setStyleSheet('border: 1px solid yellow;')
return False, nom
elif not validar:#Si no es valid bordes vermells
self.nom.setStyleSheet('border: 1px solid red;')
return False, nom
else:
self.nom.setStyleSheet('border: 1px solid green;')
return True, nom
def guardar(self):
control, nom = self.validar_nom()
if control == True:
dia = str(self.data.date().day())
mes = str(self.data.date().month())
ano = str(self.data.date().year())
total = self.importe.value()
IVA = self.iva.value()
if total != 0 and IVA != 0:
base_imponible = round(total/(100+IVA) * 100, 2)
os.chdir(carpeta_data)
create_database_factures('factures_rebudes')
fill_database_factures('factures_rebudes', dia, mes, ano, nom, base_imponible, IVA, total)
if self.pujar_drive_check.isChecked():
upload_to_drive_database('factures_rebudes')
QMessageBox.information(self, 'Information', 'Dades enregistrades correctament')
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Warning!', 'L\' import i l\'I.V.A. no poden ser 0')
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes')
def delete(self):
control, nom = self.validar_nom()
if control == True:
dia = str(self.data.date().day())
mes = str(self.data.date().month())
ano = str(self.data.date().year())
total = self.importe.value()
IVA = self.iva.value()
if total != 0 and IVA != 0:
base_imponible = round(total/(100+IVA) * 100, 2)
os.chdir(carpeta_data)
create_database_factures('factures_rebudes')
delete_database_factures('factures_rebudes', dia, mes, ano, base_imponible, IVA, total)
if self.pujar_drive_check.isChecked():
upload_to_drive_database('factures_rebudes')
QMessageBox.information(self, 'Information', 'Dades enregistrades correctament')
self.reinit_dialog()
else:
QMessageBox.warning(self, 'Warning!', 'L\' import i l\'I.V.A. no poden ser 0')
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes')
def upload_database(self):
upload_to_drive_database('factures_rebudes')
QMessageBox.information(self, 'Information', 'Dades pujades correctament')
def reinit_dialog(self):
self.data.setDate(QDate.currentDate())
self.nom.setText('')
self.iva.setValue(0.)
self.importe.setValue(0.)
self.nom.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.pujar_drive_check.setChecked(True)
else:
event.ignore()
class Factures_rebudes(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('FacturesRebudes.ui', self)
current_date = QDate.currentDate()
day = current_date.day()
self.data_final.setDate(current_date)
self.data_inicial.setDate(current_date.addDays(-day+1))
self.seleccionar.clicked.connect(self.show_table)
def show_table(self):
dia_inicial = int(self.data_inicial.date().day())
mes_inicial = int(self.data_inicial.date().month())
ano_inicial = int(self.data_inicial.date().year())
dia_final = int(self.data_final.date().day())
mes_final = int(self.data_final.date().month())
ano_final = int(self.data_final.date().year())
os.chdir(carpeta_data)
if not os.path.exists('factures_rebudes.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix cap factura rebuda!')
else:
lines = read_database_factures('factures_rebudes', 'ASC')
matches = []
for i in range(len(lines)):
if ano_inicial < ano_final :
if int(lines[i][2]) < ano_final and int(lines[i][2]) > ano_inicial: #Si esta en mig es veuran complets
matches.append(lines[i])
elif int(lines[i][2]) == ano_inicial: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) > mes_inicial :
matches.append(lines[i])
elif int(lines[i][2]) == mes_inicial and int(lines[i][0]) >= dia_inicial: #Comprovar el dia
matches.append(lines[i])
elif int(lines[i][2]) == ano_final: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final: #Comprovar el dia
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial != mes_final:
if int(lines[i][1]) > mes_inicial and int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial == mes_final:
if int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
self.table.setRowCount(len(matches))
self.table.setColumnCount(6)
self.table.setHorizontalHeaderLabels(['DATA', 'ESTABLIMENT', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(6):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
suma_bi = 0
suma_iva = 0
suma_total = 0
#display in the table
for i in range(len(matches)):
llista.append('')
suma_bi += matches[i][4]
suma_total += matches[i][6]
for j in range(6):
if j == 0:
data = str(matches[i][0]).zfill(2) + '/' + str(matches[i][1]).zfill(2) + '/' + str(matches[i][2])
item = QTableWidgetItem(data)
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
elif j == 4:
iva = matches[i][5] / 100
iva_euros = round(iva * matches[i][4], 2)
suma_iva += iva_euros
item = QTableWidgetItem(str(iva_euros))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
elif j == 5:
item = QTableWidgetItem(str(matches[i][6]))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
else:
item = QTableWidgetItem(str(matches[i][j+2]))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
self.table.setVerticalHeaderLabels(llista)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.Stretch)
header.setSectionResizeMode(2, QHeaderView.ResizeToContents)
header.setSectionResizeMode(3, QHeaderView.ResizeToContents)
header.setSectionResizeMode(4, QHeaderView.ResizeToContents)
header.setSectionResizeMode(5, QHeaderView.ResizeToContents)
self.bi_tot.setText(str(round(suma_bi, 2)) + ' \u20ac')
self.iva_tot.setText(str(round(suma_iva, 2)) + ' \u20ac')
self.total_tot.setText(str(round(suma_total, 2)) + ' \u20ac')
self.bi_tot.setStyleSheet('border: 1px solid red;')
self.iva_tot.setStyleSheet('border: 1px solid red;')
self.total_tot.setStyleSheet('border: 1px solid red;')
def reinit_dialog(self):
self.table.clearContents()
self.bi_tot.setText('')
self.iva_tot.setText('')
self.total_tot.setText('')
self.bi_tot.setStyleSheet('')
self.iva_tot.setStyleSheet('')
self.total_tot.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Factures_emeses(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('FacturesRebudes.ui', self)
self.setWindowTitle('Factures emeses')
current_date = QDate.currentDate()
day = current_date.day()
self.data_final.setDate(current_date)
self.data_inicial.setDate(current_date.addDays(-day+1))
self.seleccionar.clicked.connect(self.show_table)
def show_table(self):
dia_inicial = int(self.data_inicial.date().day())
mes_inicial = int(self.data_inicial.date().month())
ano_inicial = int(self.data_inicial.date().year())
dia_final = int(self.data_final.date().day())
mes_final = int(self.data_final.date().month())
ano_final = int(self.data_final.date().year())
os.chdir(carpeta_data)
if not os.path.exists('factures_emeses.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix cap factura emesa')
else:
lines = read_database_factures('factures_emeses', 'ASC')
matches = []
for i in range(len(lines)):
if ano_inicial < ano_final :
if int(lines[i][2]) < ano_final and int(lines[i][2]) > ano_inicial: #Si esta en mig es veuran complets
matches.append(lines[i])
elif int(lines[i][2]) == ano_inicial: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) > mes_inicial :
matches.append(lines[i])
elif int(lines[i][2]) == mes_inicial and int(lines[i][0]) >= dia_inicial: #Comprovar el dia
matches.append(lines[i])
elif int(lines[i][2]) == ano_final: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final: #Comprovar el dia
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial != mes_final:
if int(lines[i][1]) > mes_inicial and int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial == mes_final:
if int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
self.table.setRowCount(len(matches))
self.table.setColumnCount(6)
self.table.setHorizontalHeaderLabels(['DATA', 'NUM FACTURA', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(6):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
suma_bi = 0
suma_iva = 0
suma_total = 0
#display in the table
for i in range(len(matches)):
llista.append('')
suma_bi += matches[i][4]
suma_total += matches[i][6]
for j in range(6):
if j == 0:
data = str(matches[i][0]).zfill(2) + '/' + str(matches[i][1]).zfill(2) + '/' + str(matches[i][2])
item = QTableWidgetItem(data)
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
j = 2
elif j == 4:
iva = matches[i][5] / 100
iva_euros = round(iva * matches[i][4], 2)
suma_iva += iva_euros
item = QTableWidgetItem(str(iva_euros))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
elif j == 5:
item = QTableWidgetItem(str(matches[i][6]))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
else:
item = QTableWidgetItem(str(matches[i][j+2]))
item.setTextAlignment(Qt.AlignHCenter)
self.table.setItem(i,j, item)
self.table.setVerticalHeaderLabels(llista)
header = self.table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.Stretch)
header.setSectionResizeMode(2, QHeaderView.ResizeToContents)
header.setSectionResizeMode(3, QHeaderView.ResizeToContents)
header.setSectionResizeMode(4, QHeaderView.ResizeToContents)
header.setSectionResizeMode(5, QHeaderView.ResizeToContents)
self.bi_tot.setText(str(round(suma_bi, 2)) + ' \u20ac')
self.iva_tot.setText(str(round(suma_iva, 2)) + ' \u20ac')
self.total_tot.setText(str(round(suma_total, 2)) + ' \u20ac')
self.bi_tot.setStyleSheet('border: 1px solid green;')
self.iva_tot.setStyleSheet('border: 1px solid green;')
self.total_tot.setStyleSheet('border: 1px solid green;')
def reinit_dialog(self):
self.table.clearContents()
self.bi_tot.setText('')
self.iva_tot.setText('')
self.total_tot.setText('')
self.bi_tot.setStyleSheet('')
self.iva_tot.setStyleSheet('')
self.total_tot.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Marge(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Marge.ui', self)
current_date = QDate.currentDate()
day = current_date.day()
self.data_final.setDate(current_date)
self.data_inicial.setDate(current_date.addDays(-day+1))
self.dif_bi.textChanged.connect(self.validar_diferencia_bi)
self.dif_iva.textChanged.connect(self.validar_diferencia_iva)
self.dif_tot.textChanged.connect(self.validar_diferencia_tot)
self.beneficis_stock.textChanged.connect(self.validar_beneficis_stock)
self.bi_tot_1.setStyleSheet('border: 1px solid red;')
self.iva_tot_1.setStyleSheet('border: 1px solid red;')
self.total_tot_1.setStyleSheet('border: 1px solid red;')
self.bi_tot_2.setStyleSheet('border: 1px solid green;')
self.iva_tot_2.setStyleSheet('border: 1px solid green;')
self.total_tot_2.setStyleSheet('border: 1px solid green;')
self.stock.setStyleSheet('border: 1px solid green')
self.seleccionar.clicked.connect(self.show_table)
def validar_beneficis_stock(self):
x = self.beneficis_stock.text()
if float(x[0:len(x)-2].replace(',', '.')) < 0: #Si es negatiu son perdues
self.beneficis_stock.setStyleSheet('border: 1px solid red;')
elif float(x[0:len(x)-2].replace(',', '.')) == 0:
self.beneficis_stock.setStyleSheet('border: 1px solid yellow;')
else:
self.beneficis_stock.setStyleSheet('border: 1px solid green;')
def validar_diferencia_bi(self):
x = self.dif_bi.text()
x = float(x[0:len(x)-2].replace(',', '.'))
if x < 0: #Si es negatiu son perdues
self.dif_bi.setStyleSheet('border: 1px solid red;')
elif x == 0:
self.dif_bi.setStyleSheet('border: 1px solid yellow;')
else:
self.dif_bi.setStyleSheet('border: 1px solid green;')
def validar_diferencia_iva(self):
x = self.dif_iva.text()
if float(x[0:len(x)-2].replace(',', '.')) < 0: #Si es negatiu son perdues
self.dif_iva.setStyleSheet('border: 1px solid red;')
elif float(x[0:len(x)-2].replace(',', '.')) == 0:
self.dif_iva.setStyleSheet('border: 1px solid yellow;')
else:
self.dif_iva.setStyleSheet('border: 1px solid green;')
def validar_diferencia_tot(self):
x = self.dif_tot.text()
if float(x[0:len(x)-2].replace(',', '.')) < 0: #Si es negatiu son perdues
self.dif_tot.setStyleSheet('border: 1px solid red;')
elif float(x[0:len(x)-2].replace(',', '.')) == 0:
self.dif_tot.setStyleSheet('border: 1px solid yellow;')
else:
self.dif_tot.setStyleSheet('border: 1px solid green;')
def factures_taula(self, nom, headerlabel_array, table, bi, y, total):
dia_inicial = int(self.data_inicial.date().day())
mes_inicial = int(self.data_inicial.date().month())
ano_inicial = int(self.data_inicial.date().year())
dia_final = int(self.data_final.date().day())
mes_final = int(self.data_final.date().month())
ano_final = int(self.data_final.date().year())
os.chdir(carpeta_data)
lines = read_database_factures('%s' % nom, 'ASC')
matches = []
for i in range(len(lines)):
if ano_inicial < ano_final :
if int(lines[i][2]) < ano_final and int(lines[i][2]) > ano_inicial: #Si esta en mig es veuran complets
matches.append(lines[i])
elif int(lines[i][2]) == ano_inicial: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) > mes_inicial :
matches.append(lines[i])
elif int(lines[i][2]) == mes_inicial and int(lines[i][0]) >= dia_inicial: #Comprovar el dia
matches.append(lines[i])
elif int(lines[i][2]) == ano_final: #Si l'any es el mateix comprovar el mes
if int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final: #Comprovar el dia
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial != mes_final:
if int(lines[i][1]) > mes_inicial and int(lines[i][1]) < mes_final:
matches.append(lines[i])
elif int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial:
matches.append(lines[i])
elif int(lines[i][1]) == mes_final and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
elif ano_inicial == ano_final and mes_inicial == mes_final:
if int(lines[i][1]) == mes_inicial and int(lines[i][0]) >= dia_inicial and int(lines[i][0]) <= dia_final:
matches.append(lines[i])
table.setRowCount(len(matches))
table.setColumnCount(6)
table.setHorizontalHeaderLabels(headerlabel_array)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(6):
table.horizontalHeaderItem(i).setFont(font)
llista = []
suma_bi_reb = 0
suma_iva_reb = 0
suma_total_reb = 0
#display in the table
for i in range(len(matches)):
llista.append('')
suma_bi_reb += matches[i][4]
suma_total_reb += matches[i][6]
for j in range(6):
if j == 0:
data = str(matches[i][0]).zfill(2) + '/' + str(matches[i][1]).zfill(2) + '/' + str(matches[i][2])
item = QTableWidgetItem(data)
item.setTextAlignment(Qt.AlignHCenter)
table.setItem(i,j, item)
j = 2
elif j == 4:
iva = matches[i][5] / 100
iva_euros = round(iva * matches[i][4], 2)
suma_iva_reb += iva_euros
item = QTableWidgetItem(str(iva_euros))
item.setTextAlignment(Qt.AlignHCenter)
table.setItem(i,j, item)
elif j == 5:
item = QTableWidgetItem(str(matches[i][6]))
item.setTextAlignment(Qt.AlignHCenter)
table.setItem(i,j, item)
else:
item = QTableWidgetItem(str(matches[i][j+2]))
item.setTextAlignment(Qt.AlignHCenter)
table.setItem(i,j, item)
table.setVerticalHeaderLabels(llista)
header = table.horizontalHeader()
header.setSectionResizeMode(0, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.ResizeToContents)
header.setSectionResizeMode(2, QHeaderView.ResizeToContents)
header.setSectionResizeMode(3, QHeaderView.ResizeToContents)
header.setSectionResizeMode(4, QHeaderView.ResizeToContents)
header.setSectionResizeMode(5, QHeaderView.ResizeToContents)
bi.setText(str(round(suma_bi_reb, 2)) + ' \u20ac')
y.setText(str(round(suma_iva_reb, 2)) + ' \u20ac')
total.setText(str(round(suma_total_reb, 2)) + ' \u20ac')
return suma_bi_reb, suma_iva_reb, suma_total_reb
def show_table(self):
os.chdir(carpeta_data)
if not os.path.exists('factures_rebudes.db') and not os.path.exists('factures_emeses.db'):
QMessageBox.warning(self, 'Warning!', 'No existeix cap factura emesa o rebuda')
elif os.path.exists('factures_rebudes.db') and not os.path.exists('factures_emeses.db'):
QMessageBox.warning(self, 'Warning!', 'Només existeixen factures rebudes')
self.factures_taula('factures_rebudes', ['DATA', 'ESTABLIMENT', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'], self.table_1, self.bi_tot_1, self.iva_tot_1, self.total_tot_1)
elif os.path.exists('factures_emeses.db') and not os.path.exists('factures_rebudes.db'):
QMessageBox.warning(self, 'Warning!', 'Només existeixen factures emeses')
self.factures_taula('factures_emeses', ['DATA', 'NUM FACTURA', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'], self.table_2, self.bi_tot_2, self.iva_tot_2, self.total_tot_2)
else:
suma_bi_reb, suma_iva_reb, suma_total_reb = self.factures_taula('factures_rebudes', ['DATA', 'ESTABLIMENT', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'], self.table_1, self.bi_tot_1, self.iva_tot_1, self.total_tot_1)
suma_bi_eme, suma_iva_eme, suma_total_eme = self.factures_taula('factures_emeses', ['DATA', 'NUM FACTURA', 'BASE IMPONIBLE', 'IVA %', 'IVA \u20ac', 'TOTAL'], self.table_2, self.bi_tot_2, self.iva_tot_2, self.total_tot_2)
#Calcular diferencies i beneficis
diferencia_bi = suma_bi_eme - suma_bi_reb
diferencia_iva = suma_iva_eme - suma_iva_reb
diferencia_tot = suma_total_eme - suma_total_reb
self.dif_bi.setText(str(round(diferencia_bi, 2)) + ' \u20ac')
self.dif_iva.setText(str(round(diferencia_iva, 2)) + ' \u20ac')
self.dif_tot.setText(str(round(diferencia_tot, 2)) + ' \u20ac')
tableExists = check_table_exists('CompanyName', 'stock')
if os.path.exists('CompanyName.db') and tableExists == True:
lines = read_database('CompanyName', 'stock', 'REF', 'ASC')
total_stock_price = 0
for i in range(len(lines)):
total_stock_price += lines[i][4]
self.stock.setText(str(round(total_stock_price, 2)) + ' \u20ac')
self.beneficis_stock.setText(str(round(diferencia_bi+total_stock_price, 2)) + ' \u20ac')
else:
self.beneficis_stock.setText(str(round(diferencia_bi, 2)) + ' \u20ac')
def reinit_dialog(self):
self.table_1.clearContents()
self.table_2.clearContents()
self.bi_tot_1.setText('0,0' + ' \u20ac')
self.iva_tot_1.setText('0,0' + ' \u20ac')
self.total_tot_1.setText('0,0' + ' \u20ac')
self.bi_tot_2.setText('0,0' + ' \u20ac')
self.iva_tot_2.setText('0,0' + ' \u20ac')
self.total_tot_2.setText('0,0' + ' \u20ac')
self.dif_bi.setText('0,0' + ' \u20ac')
self.dif_iva.setText('0,0' + ' \u20ac')
self.dif_tot.setText('0,0' + ' \u20ac')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
#VENTES
class Facturacio_clients(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Facturacio_clients.ui', self)
self.seleccionar.clicked.connect(self.show_table)
self.numclient.textChanged.connect(self.validar_num_client)
self.result.textChanged.connect(self.change_color_result)
self.total.textChanged.connect(self.change_color_total)
self.percentatge_variacio.textChanged.connect(self.change_color_estadistiques)
self.veure.clicked.connect(self.facturacio_client)
self.veure_total.clicked.connect(self.show_total)
self.estadistica.clicked.connect(self.show_statistics)
def change_color_total(self):
if self.total.text() != '':
self.total.setStyleSheet('border: 1px solid orange;')
def change_color_result(self):
if self.result.text() != '':
self.result.setStyleSheet('border: 1px solid orange;')
def change_color_estadistiques(self):
x = self.percentatge_variacio.text()
if x != '':
if float(x[0:len(x)-1]) < 0:
self.percentatge_variacio.setStyleSheet('border: 1px solid red;')
self.percentatge_fact.setStyleSheet('border: 1px solid red;')
self.posicio.setStyleSheet('border: 1px solid red;')
elif float(x[0:len(x)-1]) > 0:
self.percentatge_variacio.setStyleSheet('border: 1px solid green;')
self.percentatge_fact.setStyleSheet('border: 1px solid green;')
self.posicio.setStyleSheet('border: 1px solid green;')
def show_table(self):
ano = self.any.value()
mess = self.mes.value()
ordre = self.order.currentText()
os.chdir(carpeta_data)
control = check_table_exists('facturacio_clients', str(ano))
if control == True:
if ordre == 'Número client ascendent':
lines = read_database('facturacio_clients', str(ano), 'ref', 'ASC')
elif ordre == 'Número client descendent':
lines = read_database('facturacio_clients', str(ano), 'ref', 'DESC')
elif ordre == 'Facturació mensual ascendent' :
lines = read_database('facturacio_clients', str(ano), mesos_minus[mess-1], 'ASC')
else:
lines = read_database('facturacio_clients', str(ano), mesos_minus[mess-1], 'DESC')
self.table.setRowCount(len(lines))
self.table.setColumnCount(13)
self.table.setHorizontalHeaderLabels(['CLIENT', 'GENER', 'FEBRER', 'MARÇ', 'ABRIL', 'MAIG', 'JUNY', 'JULIOL', 'AGOST', 'SETEMBRE', 'OCTUBRE', 'NOVEMBRE', 'DESEMBRE'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(13):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
for i in range(len(lines)):
llista.append(lines[i][0])
for j in range(13):
fact = float(lines[i][j])
self.table.setItem(i,j, QTableWidgetItem(str(round(fact, 2))))
self.table.setVerticalHeaderLabels(llista)
for i in range(len(lines)):
self.table.verticalHeaderItem(i).setFont(font)
else:
QMessageBox.warning(self, 'Warning!', 'Cap venta realitzada per l\'any seleccionat')
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, num_client
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, num_client
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def facturacio_client(self):
mes = self.mes.value()
ano = self.any.value()
os.chdir(carpeta_data)
control = check_table_exists('facturacio_clients', ano)
if control == True:
control, num_client = self.validar_num_client()
if control == True:
lines = select_from_database_general('facturacio_clients', ano, num_client, 'ref', 'ref', 'ASC')
if len(lines) != 0:
facturacio = round(lines[0][mes], 2)
self.result.setText(str(facturacio) + '\u20ac')
return facturacio
else:
QMessageBox.warning(self, 'Warning', 'Aquest client encara no ha realitzat cap compra!')
return False
else:
QMessageBox.warning(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard)
return False
else:
QMessageBox.warning(self, 'Warning!', 'Cap venta realitzada per l\'any seleccionat')
return False
def show_total(self):
os.chdir(carpeta_data)
if os.path.exists('facturacio_total.db'):
mes = self.mes.value()
ano = self.any.value()
lines = select_from_database_general('facturacio_total', 'data', ano, 'ref', 'ref', 'ASC')
fact_total = round(lines[0][mes], 2)
if len(lines) != 0:
self.total.setText(str(fact_total) + '\u20ac')
return fact_total
else:
QMessageBox.warning(self, 'Warning', 'Cap venta realitzada l\'any seleccionat!')
return False
else:
QMessageBox.warning(self, 'Warning!', 'Cap venta realitzada l\'any seleccionat')
return False
def show_statistics(self):
mes = self.mes.value()
ano = self.any.value()
fact_client = self.facturacio_client()
total = self.show_total()
if fact_client == False or total == False:
pass
else:
#Percentatge de facturació del client respecte el total
percent = round((float(fact_client)/float(total))*100, 2)
self.percentatge_fact.setText(str(percent) + '%')
#Variació respecte el mes anterior
num_client = self.numclient.text()
lines = select_from_database_general('facturacio_clients', ano, num_client, 'ref', 'ref', 'ASC')
if mes != 1: #Si es gener no ho podem comparar amb el mes anterior del mateix any
anterior = float(lines[0][mes-1])
variacio = round((float(fact_client) - anterior)/float(fact_client) * 100, 2)
self.percentatge_variacio.setText(str(variacio) + '%')
else:
self.percentatge_variacio.setText('NULL')
#Posició ranking facturació
lines = read_database('facturacio_clients', ano, mesos_minus[mes-1], 'DESC')
position = 0
for i in range(len(lines)):
if lines[i][0] == num_client:
position = i+1
self.posicio.setText(str(position))
def reinit_dialog(self):
self.numclient.setText('')
self.result.setText('')
self.total.setText('')
self.percentatge_fact.setText('')
self.percentatge_variacio.setText('')
self.posicio.setText('')
self.any.setValue(2018)
self.mes.setValue(1)
self.table.clearContents()
self.percentatge_variacio.setStyleSheet('')
self.percentatge_fact.setStyleSheet('')
self.posicio.setStyleSheet('')
self.result.setStyleSheet('')
self.numclient.setStyleSheet('')
self.total.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Ranking_facturacio(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('RankingFacturacio.ui', self)
self.seleccionar.clicked.connect(self.show_table)
def show_table(self):
ano = self.any.value()
mes = self.mes.value()
os.chdir(carpeta_data)
if os.path.exists('facturacio_clients.db'):
tableExists = check_table_exists('facturacio_clients', ano)
if tableExists == True:
lines = read_database('facturacio_clients', ano, mesos_minus[mes-1], 'DESC')
self.table.setRowCount(len(lines))
self.table.setColumnCount(10)
self.table.setHorizontalHeaderLabels(['POSICIÓ', 'FACTURACIÓ', 'CLIENT', 'NOM COMERCIAL', 'NOM FISCAL', 'ADREÇA', 'POBLACIÓ', 'NIF', 'TEL', 'FORMA PAGO'])
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(10):
self.table.horizontalHeaderItem(i).setFont(font)
llista = []
for i in range(len(lines)):
llista.append('')
dades_client = select_from_database_general('clients', 'data', lines[i][0], 'num_client', 'num_client', 'ASC')
for j in range(10):
if j == 0:
self.table.setItem(i,j, QTableWidgetItem(str(i+1)))
elif j == 1:
self.table.setItem(i,j, QTableWidgetItem(str(lines[i][mes])))
else:
self.table.setItem(i,j, QTableWidgetItem(dades_client[0][j-2]))
self.table.setVerticalHeaderLabels(llista)
header = self.table.horizontalHeader()
for i in range(10):
header.setSectionResizeMode(i, QHeaderView.ResizeToContents)
else:
QMessageBox.warning(self, 'Warning', 'Cap venta realitzada l\'any seleccionat!')
else:
QMessageBox.warning(self, 'Warning', 'Cap venta realitzada!')
def reinit_dialog(self):
self.table.clearContents()
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
class Grafics(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Grafics.ui', self)
self.numclient.textChanged.connect(self.validar_num_client)
self.seleccionar.clicked.connect(self.veure_grafic)
def validar_num_client(self):
num_client = self.numclient.text()
validar = re.match('^[0123456789]+$', num_client)
if num_client == '': #Si esta buit bordes grocs
self.numclient.setStyleSheet('border: 1px solid yellow;')
return False, 0
elif not validar:#Si no es valid bordes vermells
self.numclient.setStyleSheet('border: 1px solid red;')
return False, 0
else:
self.numclient.setStyleSheet('border: 1px solid green;')
return True, num_client
def fer_grafic_facturacio_total(self):
os.chdir(carpeta_data)
if os.path.exists('facturacio_total.db'):
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
y = []
mesos = ['Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ag', 'Set', 'Oct', 'Nov', 'Des']
if self.comboBox.currentText() == 'Tots els anys':
lines = read_database('facturacio_total', 'data', 'ref', 'ASC')
plt.figure()
for i in range(len(lines)):
y.append(lines[i][1:])
#Calcular mitja
mitja = []
for i in range(len(y)):
suma = 0
for j in range(len(y[i])):
suma += y[i][j]
mitja.append(suma/12)
mitja_total = 0
for i in range(len(mitja)):
mitja_total += mitja[i]
mitja_total = mitja_total/len(mitja)
mitja_arr = np.linspace(mitja_total, mitja_total, 12)
for i in range(len(lines)):
plt.plot(x, y[i], '-o', label = lines[i][0])
plt.plot(x, mitja_arr, '--', label = 'Mitjana total= %.2f \u20ac' % mitja_total)
#Customize plot
plt.title('Facturació total')
plt.ylabel('Facturació \u20ac')
plt.xticks(x, mesos)
plt.legend()
#plt.show()
plt.savefig('facturacio_total.png')
if self.refresh.isChecked():
plt.gcf().clear()
else:
year = self.ano.value()
lines = select_from_database_general('facturacio_total', 'data', str(year), 'ref', 'ref', 'ASC')
if len(lines) == 0:
QMessageBox.warning(self, 'Warning!', 'No existeix facturació per l\'any seleccionat')
else:
suma = 0
zeros = 0
for i in range(12):
suma += float(lines[0][i])
if float(lines[0][i]) == 0: zeros += 1
mitja = suma/(12-zeros)
mitja_arr = []
for i in range(12):
mitja_arr.append(mitja)
plt.plot(x, lines[0][1:], '-o', label = lines[0][0])
plt.plot(x, mitja_arr, '--', label='Mitjana %s: %.2f \u20ac' % (year, mitja))
#Customize plot
plt.title('Facturació total')
plt.ylabel('Facturació \u20ac')
plt.xticks(x, mesos)
plt.legend()
#plt.show()
plt.savefig('facturacio_total.png')
if self.refresh.isChecked():
plt.gcf().clear()
else:
QMessageBox.warning(self, 'Warning!', 'No existeix facturació!')
def fer_grafic_facturacio_clients(self):
os.chdir(carpeta_data)
if os.path.exists('facturacio_clients.db'):
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
y = []
mesos = ['Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ag', 'Set', 'Oct', 'Nov', 'Des']
if self.seleccio_clients.currentText() == 'Tots els clients':
year = self.spinBox_any.value()
lines = read_database('facturacio_clients', str(year), 'ref', 'ASC')
plt.figure(figsize=(8, 6))
for i in range(len(lines)):
y.append(lines[i][1:])
#Calcular mitja
mitja = []
mitja_arr = []
for i in range(len(y)):
suma = 0
for j in range(len(y[i])):
suma += y[i][j]
mitja.append(suma/12)
mitja_total = 0
for i in range(len(mitja)):
mitja_total += mitja[i]
for i in range(len(x)):
mitja_arr.append(mitja_total/len(mitja))
for i in range(len(lines)):
plt.plot(x, y[i], '-o', label = lines[i][0])
plt.plot(x, mitja_arr, '--', label = 'Mitjana total')
#Customize plot
plt.title('Facturació total')
plt.ylabel('Facturació \u20ac')
plt.xticks(x, mesos)
plt.legend(loc='upper left')
plt.savefig('facturacio_clients.png')
if self.refresh.isChecked():
plt.gcf().clear()
else:
year = self.spinBox_any.value()
control, num_client = self.validar_num_client()
control_2 = False
if control == True:
if check_table_exists('clients', 'data'):
lines = select_from_database_general('clients', 'data', str(num_client).zfill(4), 'num_client', 'num_client', 'ASC')
if len(lines) != 0:
control_2 = True
else:
QMessageBox.warning(self, 'Warning!', 'Client no registrat!')
control_2 = False
else:
QMessageBox.warning(self, 'Warning!', 'Encara no has registrat cap client!')
else:
QMessageBox.warning(self, 'Warning!', 'Número de client no vàlid!')
if control_2 == True:
lines = select_from_database_general('facturacio_clients', str(year), str(num_client).zfill(4), 'ref', 'ref', 'ASC')
if len(lines) != 0:
suma = 0
for i in range(len(x)):
suma += float(lines[0][i])
mitja = suma/12
mitja_arr = []
for i in range(len(x)):
mitja_arr.append(mitja)
plt.plot(x, lines[0][1:], '-o', label = lines[0][0])
plt.plot(x, mitja_arr, '--', label='Mitjana %s' % num_client)
#Customize plot
plt.title('Facturació total')
plt.ylabel('Facturació \u20ac')
plt.xticks(x, mesos)
plt.legend()
plt.savefig('facturacio_clients.png')
if self.refresh.isChecked():
plt.gcf().clear()
else:
QMessageBox.warning(self, 'Warning!', 'Aquest client no ha facturat res!')
else:
QMessageBox.warning(self, 'Warning!', 'No existeix facturació!')
def veure_grafic(self):
os.chdir(carpeta_data)
self.reinit_dialog()
if self.checkBox.isChecked() and self.check_clients.isChecked():
QMessageBox.warning(self, 'Warning!', 'Només pots seleccionar un dels dos gràfics!')
elif self.checkBox.isChecked():
self.fer_grafic_facturacio_total()
filename = 'facturacio_total.png'
image = QImage(filename)
self.imageLabel.setPixmap(QPixmap.fromImage(image))
elif self.check_clients.isChecked():
self.fer_grafic_facturacio_clients()
filename = 'facturacio_clients.png'
image = QImage(filename)
self.imageLabel.setPixmap(QPixmap.fromImage(image))
else:
QMessageBox.warning(self, 'Warning!', 'Has de marcar alguna de les dues opcions!')
def reinit_dialog(self):
os.chdir(carpeta_data)
if os.path.exists('facturacio_total.png') and os.path.exists('facturacio_clients.png'):
os.remove('facturacio_total.png')
os.remove('facturacio_clients.png')
elif os.path.exists('facturacio_total.png'):
os.remove('facturacio_total.png')
elif os.path.exists('facturacio_clients.png'):
os.remove('facturacio_clients.png')
self.imageLabel.clear()
if self.refresh.isChecked():
plt.gcf().clear()
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
self.numclient.setText('')
self.numclient.setStyleSheet('')
else:
event.ignore()
class Registre_ventes(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('RegistreVentes.ui', self)
self.okbutton.clicked.connect(self.show_table)
self.facturacio.textChanged.connect(self.canviar_color_fact)
self.unitats.textChanged.connect(self.canviar_color_units)
def canviar_color_fact(self):
self.facturacio.setStyleSheet('border: 1px solid green;')
def canviar_color_units(self):
self.unitats.setStyleSheet('border: 1px solid green;')
def show_table(self):
month = self.mes.value()
ano = self.any.value()
os.chdir(carpeta_data)
mes = mesos[int(month)-1]
os.chdir(carpeta_data)
control = check_table_exists('ventes', ano)
control_2 = check_table_exists('facturacio_ref', ano)
if control == False or control_2 == False:
QMessageBox.warning(self, 'Warning!', 'No hi ha ventes realitzades aquest any!', QMessageBox.Discard)
else:
if self.comboBox_unitats.currentText() == 'Unitats ascendent':
sales = read_database('ventes', str(ano), mesos_minus[month-1], 'ASC')
elif self.comboBox_unitats.currentText() == 'Unitats descendent':
sales = read_database('ventes', str(ano), mesos_minus[month-1], 'DESC')
if self.comboBox_facturacio.currentText() == 'Facturació ascendent':
lines = read_database('facturacio_ref', str(ano), mesos_minus[month-1], 'ASC')
elif self.comboBox_facturacio.currentText() == 'Facturació descendent':
lines = read_database('facturacio_ref', str(ano), mesos_minus[month-1], 'DESC')
unitats_totals = 0
facturacio_total = 0
for i in range(len(sales)):
unitats_totals += sales[i][month]
for i in range(len(lines)):
facturacio_total += lines[i][month]
if len(sales) != 0 and len(lines) != 0:
#Display the table
self.table.setRowCount(len(sales))
self.table.setColumnCount(13)
self.table.setHorizontalHeaderLabels(['REF', 'GENER', 'FEBRER', 'MARÇ', 'ABRIL', 'MAIG', 'JUNY', 'JULIOL', 'AGOST', 'SETEMBRE', 'OCTUBRE', 'NOVEMBRE', 'DESEMBRE'])
llista = []
for i in range(len(sales)):
llista.append(sales[i][0])
for j in range(13):
self.table.setItem(i,j, QTableWidgetItem(str(sales[i][j])))
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
for i in range(13):
self.table.horizontalHeaderItem(i).setFont(font)
for i in range(len(sales)):
self.table.verticalHeaderItem(i).setFont(font)
#Display the table 2
self.table_2.setRowCount(len(lines))
self.table_2.setColumnCount(13)
self.table_2.setHorizontalHeaderLabels(['REF', 'GENER', 'FEBRER', 'MARÇ', 'ABRIL', 'MAIG', 'JUNY', 'JULIOL', 'AGOST', 'SETEMBRE', 'OCTUBRE', 'NOVEMBRE', 'DESEMBRE'])
llista = []
for i in range(len(lines)):
llista.append(lines[i][0])
for j in range(13):
self.table_2.setItem(i,j, QTableWidgetItem(str(lines[i][j])))
self.table_2.setVerticalHeaderLabels(llista)
for i in range(13):
self.table_2.horizontalHeaderItem(i).setFont(font)
for i in range(len(lines)):
self.table_2.verticalHeaderItem(i).setFont(font)
#Display facturacio total and unitats totals
self.facturacio.setText(str(facturacio_total) + ' \u20ac')
self.unitats.setText(str(unitats_totals) + ' u.')
else:
QMessageBox.warning(self, 'Warning!', 'No hi ha ventes realitzades aquest mes!', QMessageBox.Discard)
def reinit_dialog(self):
self.table.clearContents()
self.table_2.clearContents()
self.facturacio.setText('')
self.unitats.setText('')
self.facturacio.setStyleSheet('')
self.unitats.setStyleSheet('')
def closeEvent(self, event):
result = QMessageBox.question(self, 'Sortint...','Segur que vols sortir?', QMessageBox.Yes | QMessageBox.No)
if result == QMessageBox.Yes:
event.accept()
self.reinit_dialog()
else:
event.ignore()
#STOCK
class Stock(QDialog):
def __init__(self):
QDialog.__init__(self)
os.chdir(carpeta_data)
uic.loadUi('Stock.ui', self)
self.show_table()
self.guardar.clicked.connect(self.save_stock)
self.visualitzar.clicked.connect(self.show_table)
def show_table(self):
if os.path.exists('cataleg.db'):
if self.order.currentText() == 'Referència ascendent':
lines = read_database('cataleg', 'data', 'ref', 'ASC') #[ref, prod, preu]
elif self.order.currentText() == 'Referència descendent':
lines = read_database('cataleg', 'data', 'ref', 'DESC')
elif self.order.currentText() == 'Alfabètic ascendent':
lines = read_database('cataleg', 'data', 'prod', 'ASC')
elif self.order.currentText() == 'Alfabètic descendent':
lines = read_database('cataleg', 'data', 'prod', 'DESC')
#Comprovar si hi ha o no stock existent
tablas = [
"""
CREATE TABLE IF NOT EXISTS stock(
REF TEXT NOT NULL,
NAME TEXT NOT NULL,
QUANTITY REAL NOT NULL,
UNIT_PRICE REAL NOT NULL,
TOTAL_PRICE REAL NOT NULL
);
"""
]
create_database('CompanyName', tablas)
stock_lines = read_database('CompanyName', 'stock', 'REF', 'ASC')
self.table.setRowCount(len(lines))
self.table.setColumnCount(5)
if len(stock_lines) == 0: #No previous stock
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(5):
if j == 0: #REF
self.table.setItem(i,j, QTableWidgetItem(lines[i][0]))
elif j == 1: #NAME
self.table.setItem(i,j, QTableWidgetItem(lines[i][1]))
elif j == 2: #QUANTITY
sp = QSpinBox()
sp.setMaximum(9999)
self.table.setCellWidget(i,j, sp)
elif j == 3: #UNIT PRICE
self.table.setItem(i,j, QTableWidgetItem(str(lines[i][2])))
elif j == 4: #TOTAL PRICE
total_price = lines[i][2] * self.table.cellWidget(i,2).value()
self.table.setItem(i,j, QTableWidgetItem(str(total_price)))
else:
llista = []
for i in range(len(lines)):
llista.append('')
for j in range(5):
if j == 0: #REF
self.table.setItem(i,j, QTableWidgetItem(lines[i][0]))
elif j == 1: #NAME
self.table.setItem(i,j, QTableWidgetItem(lines[i][1]))
elif j == 2: #QUANTITY
item = select_from_database_general('CompanyName', 'stock', lines[i][0], 'REF', 'REF', 'ASC')
if len(item) != 0:
quantity = item[0][2]
else:
quantity = 0
sp = QSpinBox()
sp.setMaximum(9999)
sp.setValue(quantity)
self.table.setCellWidget(i,j, sp)
elif j == 3: #UNIT PRICE
self.table.setItem(i,j, QTableWidgetItem(str(lines[i][2])))
elif j == 4: #TOTAL PRICE
total_price = lines[i][2] * self.table.cellWidget(i,2).value()
self.table.setItem(i,j, QTableWidgetItem(str(total_price)))
self.table.setHorizontalHeaderLabels(['REF', 'PRODUCTE', 'QUANTITAT', 'PREU UNITAT', 'PREU TOTAL'])
self.table.setVerticalHeaderLabels(llista)
font = QFont()
font.setFamily('Segoe UI Black')
font.setPointSize(9)
header = self.table.horizontalHeader()
for i in range(5):
self.table.horizontalHeaderItem(i).setFont(font)
header.setSectionResizeMode(i, QHeaderView.ResizeToContents)
header.setSectionResizeMode(1, QHeaderView.Stretch)
#Stock total value
tableExists = check_table_exists('CompanyName', 'stock')
lines = read_database('CompanyName', 'stock', 'REF', 'ASC')
total_stock_price = 0
for i in range(len(lines)):
total_stock_price += lines[i][4]
self.stock.setText(str(round(total_stock_price, 2)) + ' \u20ac')
else:
QMessageBox.warning(self, 'Warning!', 'No existeix catàleg!')
def save_stock(self):
lines = self.table.rowCount()
for i in range(lines):
current_quantity = self.table.cellWidget(i,2).value()
if current_quantity != 0:
current_ref = self.table.item(i,0).text()
current_name = self.table.item(i,1).text()
current_unit_price = float(self.table.item(i,3).text())
current_total_price = float(self.table.item(i,4).text())
fill_table_stock('CompanyName', [current_ref, current_name, current_quantity, current_unit_price, current_total_price])
QMessageBox.information(self, 'Information', 'Dades guardades correctament!') | [
"PyQt5.QtWidgets.QSpinBox",
"matplotlib.pyplot.ylabel",
"PyQt5.uic.loadUi",
"PyQt5.QtGui.QPixmap.fromImage",
"PyQt5.QtGui.QImage",
"numpy.array",
"PyQt5.QtWidgets.QMessageBox.question",
"os.remove",
"os.path.exists",
"os.listdir",
"PyQt5.QtCore.QDate.currentDate",
"matplotlib.pyplot.plot",
"... | [((742, 765), 'datetime.datetime.now', 'datetime.datetime.now', ([], {}), '()\n', (763, 765), False, 'import datetime\n'), ((1192, 1203), 'os.getcwd', 'os.getcwd', ([], {}), '()\n', (1201, 1203), False, 'import shutil, os\n'), ((1156, 1172), 'os.system', 'os.system', (['"""cls"""'], {}), "('cls')\n", (1165, 1172), False, 'import shutil, os\n'), ((1480, 1508), 'os.path.exists', 'os.path.exists', (['carpeta_data'], {}), '(carpeta_data)\n', (1494, 1508), False, 'import shutil, os\n'), ((1510, 1535), 'os.makedirs', 'os.makedirs', (['carpeta_data'], {}), '(carpeta_data)\n', (1521, 1535), False, 'import shutil, os\n'), ((1544, 1576), 'os.path.exists', 'os.path.exists', (['carpeta_factures'], {}), '(carpeta_factures)\n', (1558, 1576), False, 'import shutil, os\n'), ((1578, 1607), 'os.makedirs', 'os.makedirs', (['carpeta_factures'], {}), '(carpeta_factures)\n', (1589, 1607), False, 'import shutil, os\n'), ((1616, 1646), 'os.path.exists', 'os.path.exists', (['carpeta_abonos'], {}), '(carpeta_abonos)\n', (1630, 1646), False, 'import shutil, os\n'), ((1648, 1675), 'os.makedirs', 'os.makedirs', (['carpeta_abonos'], {}), '(carpeta_abonos)\n', (1659, 1675), False, 'import shutil, os\n'), ((3756, 3778), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (3764, 3778), False, 'import shutil, os\n'), ((5219, 5251), 'os.chdir', 'os.chdir', (['current_month_factures'], {}), '(current_month_factures)\n', (5227, 5251), False, 'import shutil, os\n'), ((6842, 6875), 'sqlite3.connect', 'sqlite3.connect', (['"""CompanyName.db"""'], {}), "('CompanyName.db')\n", (6857, 6875), False, 'import sqlite3\n'), ((8226, 8258), 'os.chdir', 'os.chdir', (['current_month_factures'], {}), '(current_month_factures)\n', (8234, 8258), False, 'import shutil, os\n'), ((8580, 8620), 'reportlab.lib.utils.ImageReader', 'ImageReader', (["(carpeta_data + '\\\\logo.png')"], {}), "(carpeta_data + '\\\\logo.png')\n", (8591, 8620), False, 'from reportlab.lib.utils import ImageReader\n'), ((13261, 13293), 'os.chdir', 'os.chdir', (['current_month_factures'], {}), '(current_month_factures)\n', (13269, 13293), False, 'import shutil, os\n'), ((13615, 13655), 'reportlab.lib.utils.ImageReader', 'ImageReader', (["(carpeta_data + '\\\\logo.png')"], {}), "(carpeta_data + '\\\\logo.png')\n", (13626, 13655), False, 'from reportlab.lib.utils import ImageReader\n'), ((17707, 17738), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (17722, 17738), False, 'import sqlite3\n'), ((18303, 18334), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (18318, 18334), False, 'import sqlite3\n'), ((18686, 18717), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (18701, 18717), False, 'import sqlite3\n'), ((18977, 18999), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (18985, 18999), False, 'import shutil, os\n'), ((19015, 19046), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (19030, 19046), False, 'import sqlite3\n'), ((19642, 19664), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (19650, 19664), False, 'import shutil, os\n'), ((19680, 19711), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (19695, 19711), False, 'import sqlite3\n'), ((20000, 20022), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (20008, 20022), False, 'import shutil, os\n'), ((20038, 20069), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (20053, 20069), False, 'import sqlite3\n'), ((20298, 20320), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (20306, 20320), False, 'import shutil, os\n'), ((20336, 20367), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (20351, 20367), False, 'import sqlite3\n'), ((20597, 20628), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (20612, 20628), False, 'import sqlite3\n'), ((21227, 21258), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (21242, 21258), False, 'import sqlite3\n'), ((21600, 21631), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (21615, 21631), False, 'import sqlite3\n'), ((21883, 21914), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (21898, 21914), False, 'import sqlite3\n'), ((23145, 23176), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (23160, 23176), False, 'import sqlite3\n'), ((23488, 23519), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (23503, 23519), False, 'import sqlite3\n'), ((23895, 23926), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (23910, 23926), False, 'import sqlite3\n'), ((24444, 24475), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (24459, 24475), False, 'import sqlite3\n'), ((24777, 24808), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (24792, 24808), False, 'import sqlite3\n'), ((25277, 25308), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (25292, 25308), False, 'import sqlite3\n'), ((25613, 25644), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (25628, 25644), False, 'import sqlite3\n'), ((26043, 26074), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (26058, 26074), False, 'import sqlite3\n'), ((26328, 26359), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (26343, 26359), False, 'import sqlite3\n'), ((26668, 26699), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (26683, 26699), False, 'import sqlite3\n'), ((27016, 27047), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (27031, 27047), False, 'import sqlite3\n'), ((27226, 27257), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (27241, 27257), False, 'import sqlite3\n'), ((27642, 27673), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (27657, 27673), False, 'import sqlite3\n'), ((3962, 3974), 'pydrive.auth.GoogleAuth', 'GoogleAuth', ([], {}), '()\n', (3972, 3974), False, 'from pydrive.auth import GoogleAuth\n'), ((4019, 4037), 'pydrive.drive.GoogleDrive', 'GoogleDrive', (['gauth'], {}), '(gauth)\n', (4030, 4037), False, 'from pydrive.drive import GoogleDrive\n'), ((4916, 4927), 'os.getcwd', 'os.getcwd', ([], {}), '()\n', (4925, 4927), False, 'import shutil, os\n'), ((4931, 4953), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (4939, 4953), False, 'import shutil, os\n'), ((4967, 4979), 'pydrive.auth.GoogleAuth', 'GoogleAuth', ([], {}), '()\n', (4977, 4979), False, 'from pydrive.auth import GoogleAuth\n'), ((5024, 5042), 'pydrive.drive.GoogleDrive', 'GoogleDrive', (['gauth'], {}), '(gauth)\n', (5035, 5042), False, 'from pydrive.drive import GoogleDrive\n'), ((5048, 5076), 'os.chdir', 'os.chdir', (['previous_directory'], {}), '(previous_directory)\n', (5056, 5076), False, 'import shutil, os\n'), ((5634, 5656), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (5642, 5656), False, 'import shutil, os\n'), ((8146, 8184), 'os.path.exists', 'os.path.exists', (['current_month_factures'], {}), '(current_month_factures)\n', (8160, 8184), False, 'import shutil, os\n'), ((8186, 8221), 'os.makedirs', 'os.makedirs', (['current_month_factures'], {}), '(current_month_factures)\n', (8197, 8221), False, 'import shutil, os\n'), ((13181, 13219), 'os.path.exists', 'os.path.exists', (['current_month_factures'], {}), '(current_month_factures)\n', (13195, 13219), False, 'import shutil, os\n'), ((13221, 13256), 'os.makedirs', 'os.makedirs', (['current_month_factures'], {}), '(current_month_factures)\n', (13232, 13256), False, 'import shutil, os\n'), ((28222, 28244), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (28238, 28244), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((28248, 28270), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (28256, 28270), False, 'import shutil, os\n'), ((28274, 28306), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""NouClient.ui"""', 'self'], {}), "('NouClient.ui', self)\n", (28284, 28306), False, 'from PyQt5 import uic\n'), ((28310, 28333), 'os.chdir', 'os.chdir', (['dir_principal'], {}), '(dir_principal)\n', (28318, 28333), False, 'import shutil, os\n'), ((28970, 29001), 'sqlite3.connect', 'sqlite3.connect', (["('%s.db' % name)"], {}), "('%s.db' % name)\n", (28985, 29001), False, 'import sqlite3\n'), ((29255, 29323), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$"""', 'nom_com', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$", nom_com, re.I)\n', (29263, 29323), False, 'import sys, re\n'), ((29857, 29925), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$"""', 'nom_fis', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$", nom_fis, re.I)\n', (29865, 29925), False, 'import sys, re\n'), ((30463, 30536), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'/,ªº.-]+$"""', 'direccio', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'/,ªº.-]+$", direccio, re.I)\n', (30471, 30536), False, 'import sys, re\n'), ((31045, 31115), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\',.-]+$"""', 'poblacio', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\',.-]+$", poblacio, re.I)\n', (31053, 31115), False, 'import sys, re\n'), ((31611, 31654), 're.match', 're.match', (['"""^[a-zñç0123456789]+$"""', 'nif', 're.I'], {}), "('^[a-zñç0123456789]+$', nif, re.I)\n", (31619, 31654), False, 'import sys, re\n'), ((32100, 32139), 're.match', 're.match', (['"""^[0123456789]+$"""', 'telf', 're.I'], {}), "('^[0123456789]+$', telf, re.I)\n", (32108, 32139), False, 'import sys, re\n'), ((32598, 32640), 're.match', 're.match', (['"""^[a-zñç.-]+$"""', 'forma_pago', 're.I'], {}), "('^[a-zñç.-]+$', forma_pago, re.I)\n", (32606, 32640), False, 'import sys, re\n'), ((34312, 34386), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades pujades correctament"""'], {}), "(self, 'Information', 'Dades pujades correctament')\n", (34335, 34386), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((34887, 34992), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (34907, 34992), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((35197, 35219), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (35213, 35219), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((35223, 35245), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (35231, 35245), False, 'import shutil, os\n'), ((35249, 35281), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""ModClient.ui"""', 'self'], {}), "('ModClient.ui', self)\n", (35259, 35281), False, 'from PyQt5 import uic\n'), ((36002, 36024), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (36010, 36024), False, 'import shutil, os\n'), ((36948, 36987), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (36956, 36987), False, 'import sys, re\n'), ((37459, 37527), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$"""', 'nom_com', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$", nom_com, re.I)\n', (37467, 37527), False, 'import sys, re\n'), ((38061, 38129), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$"""', 'nom_fis', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'.-]+$", nom_fis, re.I)\n', (38069, 38129), False, 'import sys, re\n'), ((38667, 38740), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'/,ªº.-]+$"""', 'direccio', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\'/,ªº.-]+$", direccio, re.I)\n', (38675, 38740), False, 'import sys, re\n'), ((39249, 39319), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\',.-]+$"""', 'poblacio', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\',.-]+$", poblacio, re.I)\n', (39257, 39319), False, 'import sys, re\n'), ((39815, 39858), 're.match', 're.match', (['"""^[a-zñç0123456789]+$"""', 'nif', 're.I'], {}), "('^[a-zñç0123456789]+$', nif, re.I)\n", (39823, 39858), False, 'import sys, re\n'), ((40304, 40343), 're.match', 're.match', (['"""^[0123456789]+$"""', 'telf', 're.I'], {}), "('^[0123456789]+$', telf, re.I)\n", (40312, 40343), False, 'import sys, re\n'), ((40802, 40843), 're.match', 're.match', (['"""^[a-zñç.]+$"""', 'forma_pago', 're.I'], {}), "('^[a-zñç.]+$', forma_pago, re.I)\n", (40810, 40843), False, 'import sys, re\n'), ((42438, 42512), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades pujades correctament"""'], {}), "(self, 'Information', 'Dades pujades correctament')\n", (42461, 42512), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((43079, 43184), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (43099, 43184), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((43392, 43414), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (43408, 43414), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((43418, 43456), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""RegistreClients.ui"""', 'self'], {}), "('RegistreClients.ui', self)\n", (43428, 43456), False, 'from PyQt5 import uic\n'), ((43511, 43533), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (43519, 43533), False, 'import shutil, os\n'), ((43544, 43572), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (43558, 43572), False, 'import shutil, os\n'), ((45157, 45179), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (45173, 45179), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((45183, 45205), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (45191, 45205), False, 'import shutil, os\n'), ((45209, 45244), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""BuscarClient.ui"""', 'self'], {}), "('BuscarClient.ui', self)\n", (45219, 45244), False, 'from PyQt5 import uic\n'), ((45471, 45537), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\']+$"""', 'entrada', 're.I'], {}), '("^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789\']+$", entrada, re.I)\n', (45479, 45537), False, 'import sys, re\n'), ((45945, 45967), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (45953, 45967), False, 'import shutil, os\n'), ((48206, 48311), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (48226, 48311), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((48482, 48504), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (48498, 48504), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((48508, 48542), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""NouProducte.ui"""', 'self'], {}), "('NouProducte.ui', self)\n", (48518, 48542), False, 'from PyQt5 import uic\n'), ((49165, 49228), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789.-]+$"""', 'nom', 're.I'], {}), "('^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789.-]+$', nom, re.I)\n", (49173, 49228), False, 'import sys, re\n'), ((49754, 49786), 're.match', 're.match', (['"""^[0123456789]+$"""', 'ref'], {}), "('^[0123456789]+$', ref)\n", (49762, 49786), False, 'import sys, re\n'), ((50244, 50276), 're.match', 're.match', (['"""^[0123456789]+$"""', 'ref'], {}), "('^[0123456789]+$', ref)\n", (50252, 50276), False, 'import sys, re\n'), ((50690, 50712), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (50698, 50712), False, 'import shutil, os\n'), ((51284, 51306), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (51292, 51306), False, 'import shutil, os\n'), ((51877, 51899), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (51885, 51899), False, 'import shutil, os\n'), ((52436, 52458), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (52444, 52458), False, 'import shutil, os\n'), ((53779, 53801), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (53787, 53801), False, 'import shutil, os\n'), ((54901, 54975), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades pujades correctament"""'], {}), "(self, 'Information', 'Dades pujades correctament')\n", (54924, 54975), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((55313, 55418), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (55333, 55418), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((55711, 55733), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (55727, 55733), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((55737, 55759), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (55745, 55759), False, 'import shutil, os\n'), ((55763, 55799), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""IntroduirPreu.ui"""', 'self'], {}), "('IntroduirPreu.ui', self)\n", (55773, 55799), False, 'from PyQt5 import uic\n'), ((56220, 56252), 're.match', 're.match', (['"""^[0123456789]+$"""', 'ref'], {}), "('^[0123456789]+$', ref)\n", (56228, 56252), False, 'import sys, re\n'), ((56695, 56717), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (56703, 56717), False, 'import shutil, os\n'), ((57326, 57365), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (57334, 57365), False, 'import sys, re\n'), ((57884, 57906), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (57892, 57906), False, 'import shutil, os\n'), ((57915, 57943), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (57929, 57943), False, 'import shutil, os\n'), ((59102, 59176), 'PyQt5.QtWidgets.QMessageBox.Information', 'QMessageBox.Information', (['self', '"""Information"""', '"""Dades pujades correctament"""'], {}), "(self, 'Information', 'Dades pujades correctament')\n", (59125, 59176), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((59302, 59324), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (59310, 59324), False, 'import shutil, os\n'), ((59333, 59361), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (59347, 59361), False, 'import shutil, os\n'), ((60631, 60736), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (60651, 60736), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((61008, 61030), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (61024, 61030), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((61034, 61056), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (61042, 61056), False, 'import shutil, os\n'), ((61060, 61090), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Cataleg.ui"""', 'self'], {}), "('Cataleg.ui', self)\n", (61070, 61090), False, 'from PyQt5 import uic\n'), ((61171, 61193), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (61179, 61193), False, 'import shutil, os\n'), ((61202, 61230), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (61216, 61230), False, 'import shutil, os\n'), ((62541, 62646), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (62561, 62646), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((62802, 62824), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (62818, 62824), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((62828, 62850), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (62836, 62850), False, 'import shutil, os\n'), ((62854, 62887), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""VeurePreus.ui"""', 'self'], {}), "('VeurePreus.ui', self)\n", (62864, 62887), False, 'from PyQt5 import uic\n'), ((63175, 63214), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (63183, 63214), False, 'import sys, re\n'), ((63682, 63714), 're.match', 're.match', (['"""^[0123456789]+$"""', 'ref'], {}), "('^[0123456789]+$', ref)\n", (63690, 63714), False, 'import sys, re\n'), ((64113, 64135), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (64121, 64135), False, 'import shutil, os\n'), ((65909, 65931), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (65917, 65931), False, 'import shutil, os\n'), ((65940, 65966), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (65954, 65966), False, 'import shutil, os\n'), ((66751, 66856), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (66771, 66856), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((67023, 67045), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (67039, 67045), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((67049, 67071), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (67057, 67071), False, 'import shutil, os\n'), ((67075, 67105), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Factura.ui"""', 'self'], {}), "('Factura.ui', self)\n", (67085, 67105), False, 'from PyQt5 import uic\n'), ((67312, 67334), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (67320, 67334), False, 'import shutil, os\n'), ((70493, 70532), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (70501, 70532), False, 'import sys, re\n'), ((75984, 76089), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (76004, 76089), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((76252, 76274), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (76268, 76274), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((76278, 76300), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (76286, 76300), False, 'import shutil, os\n'), ((76304, 76344), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""SubstituirFactura.ui"""', 'self'], {}), "('SubstituirFactura.ui', self)\n", (76314, 76344), False, 'from PyQt5 import uic\n'), ((76613, 76635), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (76621, 76635), False, 'import shutil, os\n'), ((79903, 79942), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (79911, 79942), False, 'import sys, re\n'), ((80376, 80402), 'os.chdir', 'os.chdir', (['carpeta_factures'], {}), '(carpeta_factures)\n', (80384, 80402), False, 'import shutil, os\n'), ((80452, 80489), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_fact'], {}), "('^[0123456789]+$', num_fact)\n", (80460, 80489), False, 'import sys, re\n'), ((85811, 85916), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (85831, 85916), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((86067, 86089), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (86083, 86089), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((86093, 86115), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (86101, 86115), False, 'import shutil, os\n'), ((86119, 86147), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Abono.ui"""', 'self'], {}), "('Abono.ui', self)\n", (86129, 86147), False, 'from PyQt5 import uic\n'), ((86433, 86455), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (86441, 86455), False, 'import shutil, os\n'), ((89621, 89660), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (89629, 89660), False, 'import sys, re\n'), ((95466, 95571), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (95486, 95571), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((95723, 95745), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (95739, 95745), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((95749, 95771), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (95757, 95771), False, 'import shutil, os\n'), ((95775, 95805), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Factura.ui"""', 'self'], {}), "('Factura.ui', self)\n", (95785, 95805), False, 'from PyQt5 import uic\n'), ((96094, 96116), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (96102, 96116), False, 'import shutil, os\n'), ((99275, 99314), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (99283, 99314), False, 'import sys, re\n'), ((104819, 104924), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (104839, 104924), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((105098, 105120), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (105114, 105120), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((105124, 105146), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (105132, 105146), False, 'import shutil, os\n'), ((105150, 105190), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""SubstituirFactura.ui"""', 'self'], {}), "('SubstituirFactura.ui', self)\n", (105160, 105190), False, 'from PyQt5 import uic\n'), ((105594, 105616), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (105602, 105616), False, 'import shutil, os\n'), ((108882, 108921), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (108890, 108921), False, 'import sys, re\n'), ((109355, 109382), 'os.chdir', 'os.chdir', (['carpeta_albaranes'], {}), '(carpeta_albaranes)\n', (109363, 109382), False, 'import shutil, os\n'), ((109432, 109469), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_fact'], {}), "('^[0123456789]+$', num_fact)\n", (109440, 109469), False, 'import sys, re\n'), ((115158, 115263), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (115178, 115263), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((115425, 115447), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (115441, 115447), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((115451, 115473), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (115459, 115473), False, 'import shutil, os\n'), ((115477, 115514), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""FacturaAlbaran.ui"""', 'self'], {}), "('FacturaAlbaran.ui', self)\n", (115487, 115514), False, 'from PyQt5 import uic\n'), ((115535, 115554), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (115552, 115554), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((116858, 116897), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (116866, 116897), False, 'import sys, re\n'), ((120826, 120931), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (120846, 120931), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((121104, 121126), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (121120, 121126), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((121130, 121152), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (121138, 121152), False, 'import shutil, os\n'), ((121156, 121203), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""IntroduirFacturesRebudes.ui"""', 'self'], {}), "('IntroduirFacturesRebudes.ui', self)\n", (121166, 121203), False, 'from PyQt5 import uic\n'), ((121519, 121582), 're.match', 're.match', (['"""^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789.-]+$"""', 'nom', 're.I'], {}), "('^[a-z\\\\sáéíóúàèìòùäëïöüñç0123456789.-]+$', nom, re.I)\n", (121527, 121582), False, 'import sys, re\n'), ((123919, 123993), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades pujades correctament"""'], {}), "(self, 'Information', 'Dades pujades correctament')\n", (123942, 123993), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((124220, 124325), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (124240, 124325), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((124530, 124552), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (124546, 124552), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((124556, 124578), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (124564, 124578), False, 'import shutil, os\n'), ((124582, 124620), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""FacturesRebudes.ui"""', 'self'], {}), "('FacturesRebudes.ui', self)\n", (124592, 124620), False, 'from PyQt5 import uic\n'), ((124641, 124660), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (124658, 124660), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((125191, 125213), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (125199, 125213), False, 'import shutil, os\n'), ((129408, 129513), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (129428, 129513), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((129673, 129695), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (129689, 129695), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((129699, 129721), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (129707, 129721), False, 'import shutil, os\n'), ((129725, 129763), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""FacturesRebudes.ui"""', 'self'], {}), "('FacturesRebudes.ui', self)\n", (129735, 129763), False, 'from PyQt5 import uic\n'), ((129828, 129847), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (129845, 129847), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((130378, 130400), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (130386, 130400), False, 'import shutil, os\n'), ((134613, 134718), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (134633, 134718), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((134868, 134890), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (134884, 134890), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((134894, 134916), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (134902, 134916), False, 'import shutil, os\n'), ((134920, 134948), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Marge.ui"""', 'self'], {}), "('Marge.ui', self)\n", (134930, 134948), False, 'from PyQt5 import uic\n'), ((134969, 134988), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (134986, 134988), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((137813, 137835), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (137821, 137835), False, 'import shutil, os\n'), ((139416, 139423), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (139421, 139423), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((141350, 141372), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (141358, 141372), False, 'import shutil, os\n'), ((144224, 144329), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (144244, 144329), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((144503, 144525), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (144519, 144525), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((144529, 144551), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (144537, 144551), False, 'import shutil, os\n'), ((144555, 144596), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Facturacio_clients.ui"""', 'self'], {}), "('Facturacio_clients.ui', self)\n", (144565, 144596), False, 'from PyQt5 import uic\n'), ((146032, 146054), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (146040, 146054), False, 'import shutil, os\n'), ((147559, 147598), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (147567, 147598), False, 'import sys, re\n'), ((148086, 148108), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (148094, 148108), False, 'import shutil, os\n'), ((148912, 148934), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (148920, 148934), False, 'import shutil, os\n'), ((148941, 148978), 'os.path.exists', 'os.path.exists', (['"""facturacio_total.db"""'], {}), "('facturacio_total.db')\n", (148955, 148978), False, 'import shutil, os\n'), ((151255, 151360), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (151275, 151360), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((151523, 151545), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (151539, 151545), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((151549, 151571), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (151557, 151571), False, 'import shutil, os\n'), ((151575, 151615), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""RankingFacturacio.ui"""', 'self'], {}), "('RankingFacturacio.ui', self)\n", (151585, 151615), False, 'from PyQt5 import uic\n'), ((151754, 151776), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (151762, 151776), False, 'import shutil, os\n'), ((151783, 151822), 'os.path.exists', 'os.path.exists', (['"""facturacio_clients.db"""'], {}), "('facturacio_clients.db')\n", (151797, 151822), False, 'import shutil, os\n'), ((153360, 153465), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (153380, 153465), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((153617, 153639), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (153633, 153639), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((153643, 153665), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (153651, 153665), False, 'import shutil, os\n'), ((153669, 153699), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Grafics.ui"""', 'self'], {}), "('Grafics.ui', self)\n", (153679, 153699), False, 'from PyQt5 import uic\n'), ((153905, 153944), 're.match', 're.match', (['"""^[0123456789]+$"""', 'num_client'], {}), "('^[0123456789]+$', num_client)\n", (153913, 153944), False, 'import sys, re\n'), ((154370, 154392), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (154378, 154392), False, 'import shutil, os\n'), ((154401, 154438), 'os.path.exists', 'os.path.exists', (['"""facturacio_total.db"""'], {}), "('facturacio_total.db')\n", (154415, 154438), False, 'import shutil, os\n'), ((156674, 156696), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (156682, 156696), False, 'import shutil, os\n'), ((156705, 156744), 'os.path.exists', 'os.path.exists', (['"""facturacio_clients.db"""'], {}), "('facturacio_clients.db')\n", (156719, 156744), False, 'import shutil, os\n'), ((159608, 159630), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (159616, 159630), False, 'import shutil, os\n'), ((160364, 160386), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (160372, 160386), False, 'import shutil, os\n'), ((160870, 160975), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (160890, 160975), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((161203, 161225), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (161219, 161225), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((161229, 161251), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (161237, 161251), False, 'import shutil, os\n'), ((161255, 161292), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""RegistreVentes.ui"""', 'self'], {}), "('RegistreVentes.ui', self)\n", (161265, 161292), False, 'from PyQt5 import uic\n'), ((161742, 161764), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (161750, 161764), False, 'import shutil, os\n'), ((161801, 161823), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (161809, 161823), False, 'import shutil, os\n'), ((164954, 165059), 'PyQt5.QtWidgets.QMessageBox.question', 'QMessageBox.question', (['self', '"""Sortint..."""', '"""Segur que vols sortir?"""', '(QMessageBox.Yes | QMessageBox.No)'], {}), "(self, 'Sortint...', 'Segur que vols sortir?', \n QMessageBox.Yes | QMessageBox.No)\n", (164974, 165059), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((165219, 165241), 'PyQt5.QtWidgets.QDialog.__init__', 'QDialog.__init__', (['self'], {}), '(self)\n', (165235, 165241), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((165245, 165267), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (165253, 165267), False, 'import shutil, os\n'), ((165271, 165299), 'PyQt5.uic.loadUi', 'uic.loadUi', (['"""Stock.ui"""', 'self'], {}), "('Stock.ui', self)\n", (165281, 165299), False, 'from PyQt5 import uic\n'), ((165461, 165489), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (165475, 165489), False, 'import shutil, os\n'), ((169564, 169641), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades guardades correctament!"""'], {}), "(self, 'Information', 'Dades guardades correctament!')\n", (169587, 169641), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((27876, 27920), 'datetime.datetime.strptime', 'datetime.datetime.strptime', (['date', '"""%Y-%m-%d"""'], {}), "(date, '%Y-%m-%d')\n", (27902, 27920), False, 'import datetime\n'), ((33504, 33526), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (33512, 33526), False, 'import shutil, os\n'), ((34111, 34246), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Dades incorrectes"""', '"""Comprova que tots els camps estan omplerts correctament"""', 'QMessageBox.Discard'], {}), "(self, 'Dades incorrectes',\n 'Comprova que tots els camps estan omplerts correctament', QMessageBox.\n Discard)\n", (34130, 34246), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((36103, 36131), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (36117, 36131), False, 'import shutil, os\n'), ((36794, 36860), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""Número de client no vàlid!"""'], {}), "(self, 'Warning', 'Número de client no vàlid!')\n", (36813, 36860), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((41769, 41791), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (41777, 41791), False, 'import shutil, os\n'), ((42107, 42196), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Client modificat"""', 'QMessageBox.Discard'], {}), "(self, 'Information', 'Client modificat',\n QMessageBox.Discard)\n", (42130, 42196), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((42236, 42371), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes, comprova si el número de client està registrat"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!',\n 'Dades incorrectes, comprova si el número de client està registrat',\n QMessageBox.Discard)\n", (42255, 42371), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((43866, 43873), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (43871, 43873), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((46065, 46093), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (46079, 46093), False, 'import shutil, os\n'), ((47885, 48008), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Dades incorrectes"""', '"""Algun caràcter introduït al marcador no és vàlid"""', 'QMessageBox.Discard'], {}), "(self, 'Dades incorrectes',\n 'Algun caràcter introduït al marcador no és vàlid', QMessageBox.Discard)\n", (47904, 48008), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((50768, 50796), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (50782, 50796), False, 'import shutil, os\n'), ((50802, 50863), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (50821, 50863), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((51363, 51391), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (51377, 51391), False, 'import shutil, os\n'), ((51397, 51458), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (51416, 51458), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((51956, 51984), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (51970, 51984), False, 'import shutil, os\n'), ((51990, 52051), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (52009, 52051), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((52620, 52642), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (52628, 52642), False, 'import shutil, os\n'), ((53134, 53162), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (53148, 53162), False, 'import shutil, os\n'), ((53168, 53229), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (53187, 53229), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((54186, 54311), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('Aquest producte ja esta registrat amb número de referència %s' % control_ref)"], {}), "(self, 'Warning!', \n 'Aquest producte ja esta registrat amb número de referència %s' %\n control_ref)\n", (54205, 54311), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((56724, 56752), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (56738, 56752), False, 'import shutil, os\n'), ((58955, 59030), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has reistrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has reistrat cap client!')\n", (58974, 59030), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((60369, 60445), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (60388, 60445), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((61944, 61951), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (61949, 61951), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((62358, 62436), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap producte!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap producte!')\n", (62377, 62436), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((64142, 64170), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (64156, 64170), False, 'import shutil, os\n'), ((64175, 64201), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (64189, 64201), False, 'import shutil, os\n'), ((65409, 65416), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (65414, 65416), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((66441, 66515), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap preu!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap preu!')\n", (66460, 66515), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((67347, 67373), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (67361, 67373), False, 'import shutil, os\n'), ((67379, 67446), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has registrat cap preu!"""'], {}), "(self, 'Warning!', 'No has registrat cap preu!')\n", (67398, 67446), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((69466, 69488), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (69474, 69488), False, 'import shutil, os\n'), ((70305, 70390), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (70324, 70390), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((71033, 71055), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (71041, 71055), False, 'import shutil, os\n'), ((71065, 71093), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (71079, 71093), False, 'import shutil, os\n'), ((71509, 71594), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (71528, 71594), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((76648, 76674), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (76662, 76674), False, 'import shutil, os\n'), ((76680, 76747), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has registrat cap preu!"""'], {}), "(self, 'Warning!', 'No has registrat cap preu!')\n", (76699, 76747), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((78871, 78893), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (78879, 78893), False, 'import shutil, os\n'), ((79715, 79800), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (79734, 79800), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((80976, 80998), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (80984, 80998), False, 'import shutil, os\n'), ((81008, 81036), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (81022, 81036), False, 'import shutil, os\n'), ((81429, 81514), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (81448, 81514), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((81924, 81981), 'os.path.exists', 'os.path.exists', (["(carpeta_factures + '\\\\%s_%s' % (mes, año))"], {}), "(carpeta_factures + '\\\\%s_%s' % (mes, año))\n", (81938, 81981), False, 'import shutil, os\n'), ((81986, 82098), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has realitzat cap factura pel mes i any de la data seleccionada!"""'], {}), "(self, 'Warning!',\n 'No has realitzat cap factura pel mes i any de la data seleccionada!')\n", (82005, 82098), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((82108, 82159), 'os.chdir', 'os.chdir', (["(carpeta_factures + '\\\\%s_%s' % (mes, año))"], {}), "(carpeta_factures + '\\\\%s_%s' % (mes, año))\n", (82116, 82159), False, 'import shutil, os\n'), ((82178, 82190), 'os.listdir', 'os.listdir', ([], {}), '()\n', (82188, 82190), False, 'import shutil, os\n'), ((86468, 86494), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (86482, 86494), False, 'import shutil, os\n'), ((86500, 86567), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has registrat cap preu!"""'], {}), "(self, 'Warning!', 'No has registrat cap preu!')\n", (86519, 86567), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((88585, 88607), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (88593, 88607), False, 'import shutil, os\n'), ((89433, 89518), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (89452, 89518), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((90161, 90183), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (90169, 90183), False, 'import shutil, os\n'), ((90193, 90221), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (90207, 90221), False, 'import shutil, os\n'), ((90637, 90722), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (90656, 90722), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((96129, 96155), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (96143, 96155), False, 'import shutil, os\n'), ((96161, 96228), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has registrat cap preu!"""'], {}), "(self, 'Warning!', 'No has registrat cap preu!')\n", (96180, 96228), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((98248, 98270), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (98256, 98270), False, 'import shutil, os\n'), ((99087, 99172), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (99106, 99172), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((99815, 99837), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (99823, 99837), False, 'import shutil, os\n'), ((99847, 99875), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (99861, 99875), False, 'import shutil, os\n'), ((100291, 100376), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (100310, 100376), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((105629, 105655), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (105643, 105655), False, 'import shutil, os\n'), ((105661, 105728), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has registrat cap preu!"""'], {}), "(self, 'Warning!', 'No has registrat cap preu!')\n", (105680, 105728), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((107850, 107872), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (107858, 107872), False, 'import shutil, os\n'), ((108694, 108779), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (108713, 108779), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((109956, 109978), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (109964, 109978), False, 'import shutil, os\n'), ((109988, 110016), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (110002, 110016), False, 'import shutil, os\n'), ((110409, 110494), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (110428, 110494), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((110904, 110962), 'os.path.exists', 'os.path.exists', (["(carpeta_albaranes + '\\\\%s_%s' % (mes, año))"], {}), "(carpeta_albaranes + '\\\\%s_%s' % (mes, año))\n", (110918, 110962), False, 'import shutil, os\n'), ((110967, 111079), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has realitzat cap albaran pel mes i any de la data seleccionada!"""'], {}), "(self, 'Warning!',\n 'No has realitzat cap albaran pel mes i any de la data seleccionada!')\n", (110986, 111079), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((111089, 111141), 'os.chdir', 'os.chdir', (["(carpeta_albaranes + '\\\\%s_%s' % (mes, año))"], {}), "(carpeta_albaranes + '\\\\%s_%s' % (mes, año))\n", (111097, 111141), False, 'import shutil, os\n'), ((111160, 111172), 'os.listdir', 'os.listdir', ([], {}), '()\n', (111170, 111172), False, 'import shutil, os\n'), ((115860, 115882), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (115868, 115882), False, 'import shutil, os\n'), ((116670, 116755), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (116689, 116755), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((117575, 117608), 'sqlite3.connect', 'sqlite3.connect', (['"""CompanyName.db"""'], {}), "('CompanyName.db')\n", (117590, 117608), False, 'import sqlite3\n'), ((121227, 121246), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (121244, 121246), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((122869, 122927), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes"""'], {}), "(self, 'Warning!', 'Dades incorrectes')\n", (122888, 122927), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((123778, 123836), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes"""'], {}), "(self, 'Warning!', 'Dades incorrectes')\n", (123797, 123836), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((124044, 124063), 'PyQt5.QtCore.QDate.currentDate', 'QDate.currentDate', ([], {}), '()\n', (124061, 124063), False, 'from PyQt5.QtCore import pyqtSlot, QDate, Qt\n'), ((125224, 125261), 'os.path.exists', 'os.path.exists', (['"""factures_rebudes.db"""'], {}), "('factures_rebudes.db')\n", (125238, 125261), False, 'import shutil, os\n'), ((125267, 125339), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix cap factura rebuda!"""'], {}), "(self, 'Warning!', 'No existeix cap factura rebuda!')\n", (125286, 125339), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((127043, 127050), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (127048, 127050), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((130411, 130447), 'os.path.exists', 'os.path.exists', (['"""factures_emeses.db"""'], {}), "('factures_emeses.db')\n", (130425, 130447), False, 'import shutil, os\n'), ((130453, 130523), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix cap factura emesa"""'], {}), "(self, 'Warning!', 'No existeix cap factura emesa')\n", (130472, 130523), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((132226, 132233), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (132231, 132233), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((141471, 141550), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix cap factura emesa o rebuda"""'], {}), "(self, 'Warning!', 'No existeix cap factura emesa o rebuda')\n", (141490, 141550), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((146877, 146884), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (146882, 146884), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((147385, 147472), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Cap venta realitzada per l\'any seleccionat"""'], {}), '(self, \'Warning!\',\n "Cap venta realitzada per l\'any seleccionat")\n', (147404, 147472), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((148781, 148868), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Cap venta realitzada per l\'any seleccionat"""'], {}), '(self, \'Warning!\',\n "Cap venta realitzada per l\'any seleccionat")\n', (148800, 148868), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((149406, 149485), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Cap venta realitzada l\'any seleccionat"""'], {}), '(self, \'Warning!\', "Cap venta realitzada l\'any seleccionat")\n', (149425, 149485), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((153187, 153248), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""Cap venta realitzada!"""'], {}), "(self, 'Warning', 'Cap venta realitzada!')\n", (153206, 153248), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((156561, 156625), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix facturació!"""'], {}), "(self, 'Warning!', 'No existeix facturació!')\n", (156580, 156625), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((159512, 159576), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix facturació!"""'], {}), "(self, 'Warning!', 'No existeix facturació!')\n", (159531, 159576), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((159731, 159819), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Només pots seleccionar un dels dos gràfics!"""'], {}), "(self, 'Warning!',\n 'Només pots seleccionar un dels dos gràfics!')\n", (159750, 159819), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((160395, 160433), 'os.path.exists', 'os.path.exists', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (160409, 160433), False, 'import shutil, os\n'), ((160438, 160478), 'os.path.exists', 'os.path.exists', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (160452, 160478), False, 'import shutil, os\n'), ((160484, 160517), 'os.remove', 'os.remove', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (160493, 160517), False, 'import shutil, os\n'), ((160522, 160557), 'os.remove', 'os.remove', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (160531, 160557), False, 'import shutil, os\n'), ((160568, 160606), 'os.path.exists', 'os.path.exists', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (160582, 160606), False, 'import shutil, os\n'), ((161980, 162085), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No hi ha ventes realitzades aquest any!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!',\n 'No hi ha ventes realitzades aquest any!', QMessageBox.Discard)\n", (161999, 162085), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((168314, 168321), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (168319, 168321), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((168973, 169034), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (168992, 169034), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((36702, 36778), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (36721, 36778), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47765, 47875), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Dades incorrectes"""', '"""Encara no has registrat cap client!"""', 'QMessageBox.Discard'], {}), "(self, 'Dades incorrectes',\n 'Encara no has registrat cap client!', QMessageBox.Discard)\n", (47784, 47875), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((50894, 50956), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no vàlida!"""'], {}), "(self, 'Warning!', 'Referència no vàlida!')\n", (50913, 50956), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((51490, 51552), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no vàlida!"""'], {}), "(self, 'Warning!', 'Referència no vàlida!')\n", (51509, 51552), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((52082, 52144), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no vàlida!"""'], {}), "(self, 'Warning!', 'Referència no vàlida!')\n", (52101, 52144), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((52294, 52373), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Producte eliminat correctament!"""'], {}), "(self, 'Information', 'Producte eliminat correctament!')\n", (52317, 52373), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((52700, 52728), 'os.path.exists', 'os.path.exists', (['"""cataleg.db"""'], {}), "('cataleg.db')\n", (52714, 52728), False, 'import shutil, os\n'), ((52735, 52796), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix catàleg!"""'], {}), "(self, 'Warning!', 'No existeix catàleg!')\n", (52754, 52796), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((53260, 53322), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no vàlida!"""'], {}), "(self, 'Warning!', 'Referència no vàlida!')\n", (53279, 53322), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((54328, 54403), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""El preu del producte no pot ser 0!"""'], {}), "(self, 'Warning!', 'El preu del producte no pot ser 0!')\n", (54347, 54403), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((56963, 57057), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència incorrecta o no registrada al catàleg!"""'], {}), "(self, 'Warning!',\n 'Referència incorrecta o no registrada al catàleg!')\n", (56982, 57057), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((57087, 57146), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""'], {}), "(self, 'Warning!', 'Dades incorrectes!')\n", (57106, 57146), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((57161, 57239), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap producte!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap producte!')\n", (57180, 57239), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((58868, 58939), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Número de client no registrat!"""'], {}), "(self, 'Warning!', 'Número de client no registrat!')\n", (58887, 58939), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((60296, 60355), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""'], {}), "(self, 'Warning!', 'Dades incorrectes!')\n", (60315, 60355), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((68016, 68101), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no té cap preu registrat!"""'], {}), "(self, 'Warning!', 'Aquest client no té cap preu registrat!'\n )\n", (68035, 68101), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((69216, 69223), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (69221, 69223), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((69498, 69526), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (69512, 69526), False, 'import shutil, os\n'), ((69531, 69557), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (69545, 69557), False, 'import shutil, os\n'), ((70166, 70272), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client no has registrat cap preu!')\n", (70185, 70272), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((71396, 71472), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (71415, 71472), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((73269, 73367), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has seleccionat cap producte!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'No has seleccionat cap producte!',\n QMessageBox.Discard)\n", (73288, 73367), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((77317, 77402), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no té cap preu registrat!"""'], {}), "(self, 'Warning!', 'Aquest client no té cap preu registrat!'\n )\n", (77336, 77402), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((78517, 78524), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (78522, 78524), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((78903, 78931), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (78917, 78931), False, 'import shutil, os\n'), ((78936, 78962), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (78950, 78962), False, 'import shutil, os\n'), ((79571, 79679), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client o no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client o no has registrat cap preu!')\n", (79590, 79679), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((81337, 81413), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (81356, 81413), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((82428, 82506), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest número de factura no existeix!"""'], {}), "(self, 'Warning!', 'Aquest número de factura no existeix!')\n", (82447, 82506), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((87137, 87222), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no té cap preu registrat!"""'], {}), "(self, 'Warning!', 'Aquest client no té cap preu registrat!'\n )\n", (87156, 87222), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((88337, 88344), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (88342, 88344), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((88617, 88645), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (88631, 88645), False, 'import shutil, os\n'), ((88650, 88676), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (88664, 88676), False, 'import shutil, os\n'), ((89285, 89400), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client o encara no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client o encara no has registrat cap preu!')\n", (89304, 89400), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((90524, 90600), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (90543, 90600), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((92282, 92380), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has seleccionat cap producte!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'No has seleccionat cap producte!',\n QMessageBox.Discard)\n", (92301, 92380), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((96798, 96883), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no té cap preu registrat!"""'], {}), "(self, 'Warning!', 'Aquest client no té cap preu registrat!'\n )\n", (96817, 96883), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((97998, 98005), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (98003, 98005), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((98280, 98308), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (98294, 98308), False, 'import shutil, os\n'), ((98313, 98339), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (98327, 98339), False, 'import shutil, os\n'), ((98948, 99054), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client no has registrat cap preu!')\n", (98967, 99054), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((100178, 100254), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (100197, 100254), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((102051, 102149), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has seleccionat cap producte!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'No has seleccionat cap producte!',\n QMessageBox.Discard)\n", (102070, 102149), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((106298, 106383), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no té cap preu registrat!"""'], {}), "(self, 'Warning!', 'Aquest client no té cap preu registrat!'\n )\n", (106317, 106383), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((107498, 107505), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (107503, 107505), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((107882, 107910), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (107896, 107910), False, 'import shutil, os\n'), ((107915, 107941), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (107929, 107941), False, 'import shutil, os\n'), ((108550, 108658), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client o no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client o no has registrat cap preu!')\n", (108569, 108658), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((110317, 110393), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (110336, 110393), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((111410, 111487), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest número d\'albaran no existeix!"""'], {}), '(self, \'Warning!\', "Aquest número d\'albaran no existeix!")\n', (111429, 111487), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((115892, 115920), 'os.path.exists', 'os.path.exists', (['"""clients.db"""'], {}), "('clients.db')\n", (115906, 115920), False, 'import shutil, os\n'), ((115925, 115951), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (115939, 115951), False, 'import shutil, os\n'), ((116531, 116637), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client no has registrat cap preu!"""'], {}), "(self, 'Warning!',\n 'Encara no has registrat cap client no has registrat cap preu!')\n", (116550, 116637), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((117947, 118053), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Cap albaran realitzat per aquest client entre aquestes dates!"""'], {}), "(self, 'Warning!',\n 'Cap albaran realitzat per aquest client entre aquestes dates!')\n", (117966, 118053), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((118486, 118502), 'numpy.sum', 'np.sum', (['array_bi'], {}), '(array_bi)\n', (118492, 118502), True, 'import numpy as np\n'), ((118519, 118536), 'numpy.sum', 'np.sum', (['array_iva'], {}), '(array_iva)\n', (118525, 118536), True, 'import numpy as np\n'), ((118555, 118574), 'numpy.sum', 'np.sum', (['array_total'], {}), '(array_total)\n', (118561, 118574), True, 'import numpy as np\n'), ((119565, 119587), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (119573, 119587), False, 'import shutil, os\n'), ((120412, 120497), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Factura realitzada correctament!"""'], {}), "(self, 'Information', 'Factura realitzada correctament!'\n )\n", (120435, 120497), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((122378, 122400), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (122386, 122400), False, 'import shutil, os\n'), ((122651, 122736), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades enregistrades correctament"""'], {}), "(self, 'Information', 'Dades enregistrades correctament'\n )\n", (122674, 122736), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((122775, 122851), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""L\' import i l\'I.V.A. no poden ser 0"""'], {}), '(self, \'Warning!\', "L\' import i l\'I.V.A. no poden ser 0")\n', (122794, 122851), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((123290, 123312), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (123298, 123312), False, 'import shutil, os\n'), ((123560, 123645), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades enregistrades correctament"""'], {}), "(self, 'Information', 'Dades enregistrades correctament'\n )\n", (123583, 123645), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((123684, 123760), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""L\' import i l\'I.V.A. no poden ser 0"""'], {}), '(self, \'Warning!\', "L\' import i l\'I.V.A. no poden ser 0")\n', (123703, 123760), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((141383, 141420), 'os.path.exists', 'os.path.exists', (['"""factures_rebudes.db"""'], {}), "('factures_rebudes.db')\n", (141397, 141420), False, 'import shutil, os\n'), ((141429, 141465), 'os.path.exists', 'os.path.exists', (['"""factures_emeses.db"""'], {}), "('factures_emeses.db')\n", (141443, 141465), False, 'import shutil, os\n'), ((141561, 141598), 'os.path.exists', 'os.path.exists', (['"""factures_rebudes.db"""'], {}), "('factures_rebudes.db')\n", (141575, 141598), False, 'import shutil, os\n'), ((141649, 141723), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Només existeixen factures rebudes"""'], {}), "(self, 'Warning!', 'Només existeixen factures rebudes')\n", (141668, 141723), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((148669, 148754), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Dades incorrectes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Dades incorrectes!', QMessageBox.Discard\n )\n", (148688, 148754), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((149292, 149371), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""Cap venta realitzada l\'any seleccionat!"""'], {}), '(self, \'Warning\', "Cap venta realitzada l\'any seleccionat!")\n', (149311, 149371), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((152253, 152260), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (152258, 152260), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((153091, 153170), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""Cap venta realitzada l\'any seleccionat!"""'], {}), '(self, \'Warning\', "Cap venta realitzada l\'any seleccionat!")\n', (153110, 153170), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((154732, 154744), 'matplotlib.pyplot.figure', 'plt.figure', ([], {}), '()\n', (154742, 154744), True, 'import matplotlib.pyplot as plt\n'), ((155129, 155170), 'numpy.linspace', 'np.linspace', (['mitja_total', 'mitja_total', '(12)'], {}), '(mitja_total, mitja_total, 12)\n', (155140, 155170), True, 'import numpy as np\n'), ((155264, 155337), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'mitja_arr', '"""--"""'], {'label': "('Mitjana total= %.2f €' % mitja_total)"}), "(x, mitja_arr, '--', label='Mitjana total= %.2f €' % mitja_total)\n", (155272, 155337), True, 'import matplotlib.pyplot as plt\n'), ((155373, 155402), 'matplotlib.pyplot.title', 'plt.title', (['"""Facturació total"""'], {}), "('Facturació total')\n", (155382, 155402), True, 'import matplotlib.pyplot as plt\n'), ((155408, 155434), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Facturació €"""'], {}), "('Facturació €')\n", (155418, 155434), True, 'import matplotlib.pyplot as plt\n'), ((155445, 155465), 'matplotlib.pyplot.xticks', 'plt.xticks', (['x', 'mesos'], {}), '(x, mesos)\n', (155455, 155465), True, 'import matplotlib.pyplot as plt\n'), ((155471, 155483), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (155481, 155483), True, 'import matplotlib.pyplot as plt\n'), ((155508, 155543), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (155519, 155543), True, 'import matplotlib.pyplot as plt\n'), ((157093, 157119), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(8, 6)'}), '(figsize=(8, 6))\n', (157103, 157119), True, 'import matplotlib.pyplot as plt\n'), ((157632, 157683), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'mitja_arr', '"""--"""'], {'label': '"""Mitjana total"""'}), "(x, mitja_arr, '--', label='Mitjana total')\n", (157640, 157683), True, 'import matplotlib.pyplot as plt\n'), ((157719, 157748), 'matplotlib.pyplot.title', 'plt.title', (['"""Facturació total"""'], {}), "('Facturació total')\n", (157728, 157748), True, 'import matplotlib.pyplot as plt\n'), ((157754, 157780), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Facturació €"""'], {}), "('Facturació €')\n", (157764, 157780), True, 'import matplotlib.pyplot as plt\n'), ((157791, 157811), 'matplotlib.pyplot.xticks', 'plt.xticks', (['x', 'mesos'], {}), '(x, mesos)\n', (157801, 157811), True, 'import matplotlib.pyplot as plt\n'), ((157817, 157845), 'matplotlib.pyplot.legend', 'plt.legend', ([], {'loc': '"""upper left"""'}), "(loc='upper left')\n", (157827, 157845), True, 'import matplotlib.pyplot as plt\n'), ((157853, 157890), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (157864, 157890), True, 'import matplotlib.pyplot as plt\n'), ((159942, 159958), 'PyQt5.QtGui.QImage', 'QImage', (['filename'], {}), '(filename)\n', (159948, 159958), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((160612, 160645), 'os.remove', 'os.remove', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (160621, 160645), False, 'import shutil, os\n'), ((160656, 160696), 'os.path.exists', 'os.path.exists', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (160670, 160696), False, 'import shutil, os\n'), ((163463, 163470), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (163468, 163470), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((164579, 164684), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No hi ha ventes realitzades aquest mes!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!',\n 'No hi ha ventes realitzades aquest mes!', QMessageBox.Discard)\n", (164598, 164684), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((36275, 36362), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (36294, 36362), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((46437, 46444), 'PyQt5.QtGui.QFont', 'QFont', ([], {}), '()\n', (46442, 46444), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((47668, 47746), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Cap coincidència"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Cap coincidència', QMessageBox.Discard)\n", (47687, 47746), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((51181, 51246), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no registrada"""'], {}), "(self, 'Warning!', 'Referència no registrada')\n", (51200, 51246), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((51775, 51840), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no registrada"""'], {}), "(self, 'Warning!', 'Referència no registrada')\n", (51794, 51840), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((52829, 52891), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no vàlida!"""'], {}), "(self, 'Warning!', 'Referència no vàlida!')\n", (52848, 52891), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((53346, 53418), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""El preu de compra no pot ser 0!"""'], {}), "(self, 'Warning!', 'El preu de compra no pot ser 0!')\n", (53365, 53418), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((53636, 53721), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Producte modificat correctament!"""'], {}), "(self, 'Information', 'Producte modificat correctament!'\n )\n", (53659, 53721), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((54440, 54519), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""El nom del producte no pot estar buit!"""'], {}), "(self, 'Warning!', 'El nom del producte no pot estar buit!')\n", (54459, 54519), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((54694, 54802), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', "('Producte ja registrat amb número de referència %s' % ref)"], {}), "(self, 'Information', \n 'Producte ja registrat amb número de referència %s' % ref)\n", (54717, 54802), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((58762, 58856), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Selecciona un preu diferent de 0 per al producte!"""'], {}), "(self, 'Warning!',\n 'Selecciona un preu diferent de 0 per al producte!')\n", (58781, 58856), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((60190, 60284), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Selecciona un preu diferent de 0 per al producte!"""'], {}), "(self, 'Warning!',\n 'Selecciona un preu diferent de 0 per al producte!')\n", (60209, 60284), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((66344, 66429), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Número de client o referència incorrecte"""'], {}), "(self, 'Warning!',\n 'Número de client o referència incorrecte')\n", (66363, 66429), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((69695, 69782), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (69714, 69782), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((71231, 71318), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (71250, 71318), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((72537, 72563), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (72551, 72563), False, 'import shutil, os\n'), ((73409, 73538), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has indicat el preu d\'algun dels productes seleccionats!"""', 'QMessageBox.Discard'], {}), '(self, \'Warning!\',\n "No has indicat el preu d\'algun dels productes seleccionats!",\n QMessageBox.Discard)\n', (73428, 73538), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((79100, 79187), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (79119, 79187), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((81174, 81261), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (81193, 81261), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((82319, 82334), 'os.remove', 'os.remove', (['file'], {}), '(file)\n', (82328, 82334), False, 'import shutil, os\n'), ((88814, 88901), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (88833, 88901), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((90359, 90446), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (90378, 90446), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((92422, 92551), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has indicat el preu d\'algun dels productes seleccionats!"""', 'QMessageBox.Discard'], {}), '(self, \'Warning!\',\n "No has indicat el preu d\'algun dels productes seleccionats!",\n QMessageBox.Discard)\n', (92441, 92551), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((98477, 98564), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (98496, 98564), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((100013, 100100), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (100032, 100100), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((101319, 101345), 'os.path.exists', 'os.path.exists', (['"""preus.db"""'], {}), "('preus.db')\n", (101333, 101345), False, 'import shutil, os\n'), ((102191, 102320), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has indicat el preu d\'algun dels productes seleccionats!"""', 'QMessageBox.Discard'], {}), '(self, \'Warning!\',\n "No has indicat el preu d\'algun dels productes seleccionats!",\n QMessageBox.Discard)\n', (102210, 102320), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((108079, 108166), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (108098, 108166), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((110154, 110241), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (110173, 110241), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((111301, 111316), 'os.remove', 'os.remove', (['file'], {}), '(file)\n', (111310, 111316), False, 'import shutil, os\n'), ((116089, 116176), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'Client no registrat!', QMessageBox.\n Discard)\n", (116108, 116176), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((139950, 139972), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['data'], {}), '(data)\n', (139966, 139972), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((141607, 141643), 'os.path.exists', 'os.path.exists', (['"""factures_emeses.db"""'], {}), "('factures_emeses.db')\n", (141621, 141643), False, 'import shutil, os\n'), ((141921, 141957), 'os.path.exists', 'os.path.exists', (['"""factures_emeses.db"""'], {}), "('factures_emeses.db')\n", (141935, 141957), False, 'import shutil, os\n'), ((142009, 142082), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Només existeixen factures emeses"""'], {}), "(self, 'Warning!', 'Només existeixen factures emeses')\n", (142028, 142082), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((148544, 148636), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""Aquest client encara no ha realitzat cap compra!"""'], {}), "(self, 'Warning',\n 'Aquest client encara no ha realitzat cap compra!')\n", (148563, 148636), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((155212, 155254), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'y[i]', '"""-o"""'], {'label': 'lines[i][0]'}), "(x, y[i], '-o', label=lines[i][0])\n", (155220, 155254), True, 'import matplotlib.pyplot as plt\n'), ((155784, 155873), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No existeix facturació per l\'any seleccionat"""'], {}), '(self, \'Warning!\',\n "No existeix facturació per l\'any seleccionat")\n', (155803, 155873), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((156141, 156191), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'lines[0][1:]', '"""-o"""'], {'label': 'lines[0][0]'}), "(x, lines[0][1:], '-o', label=lines[0][0])\n", (156149, 156191), True, 'import matplotlib.pyplot as plt\n'), ((156200, 156272), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'mitja_arr', '"""--"""'], {'label': "('Mitjana %s: %.2f €' % (year, mitja))"}), "(x, mitja_arr, '--', label='Mitjana %s: %.2f €' % (year, mitja))\n", (156208, 156272), True, 'import matplotlib.pyplot as plt\n'), ((156308, 156337), 'matplotlib.pyplot.title', 'plt.title', (['"""Facturació total"""'], {}), "('Facturació total')\n", (156317, 156337), True, 'import matplotlib.pyplot as plt\n'), ((156344, 156370), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Facturació €"""'], {}), "('Facturació €')\n", (156354, 156370), True, 'import matplotlib.pyplot as plt\n'), ((156382, 156402), 'matplotlib.pyplot.xticks', 'plt.xticks', (['x', 'mesos'], {}), '(x, mesos)\n', (156392, 156402), True, 'import matplotlib.pyplot as plt\n'), ((156409, 156421), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (156419, 156421), True, 'import matplotlib.pyplot as plt\n'), ((156448, 156483), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""facturacio_total.png"""'], {}), "('facturacio_total.png')\n", (156459, 156483), True, 'import matplotlib.pyplot as plt\n'), ((157580, 157622), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'y[i]', '"""-o"""'], {'label': 'lines[i][0]'}), "(x, y[i], '-o', label=lines[i][0])\n", (157588, 157622), True, 'import matplotlib.pyplot as plt\n'), ((158564, 158631), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Número de client no vàlid!"""'], {}), "(self, 'Warning!', 'Número de client no vàlid!')\n", (158583, 158631), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((159991, 160015), 'PyQt5.QtGui.QPixmap.fromImage', 'QPixmap.fromImage', (['image'], {}), '(image)\n', (160008, 160015), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((160154, 160170), 'PyQt5.QtGui.QImage', 'QImage', (['filename'], {}), '(filename)\n', (160160, 160170), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((160244, 160330), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Has de marcar alguna de les dues opcions!"""'], {}), "(self, 'Warning!',\n 'Has de marcar alguna de les dues opcions!')\n", (160263, 160330), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((160702, 160737), 'os.remove', 'os.remove', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (160711, 160737), False, 'import shutil, os\n'), ((160807, 160816), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (160814, 160816), True, 'import matplotlib.pyplot as plt\n'), ((53056, 53121), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Referència no registrada"""'], {}), "(self, 'Warning!', 'Referència no registrada')\n", (53075, 53121), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((58361, 58532), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""El preu per aquest producte i client ja existeix a la base de dades! Si vols modificar-lo, clica el botó "Modificar preu\\""""'], {}), '(self, \'Warning!\',\n \'El preu per aquest producte i client ja existeix a la base de dades! Si vols modificar-lo, clica el botó "Modificar preu"\'\n )\n', (58380, 58532), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((58638, 58714), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades guardades correctament"""'], {}), "(self, 'Information', 'Dades guardades correctament')\n", (58661, 58714), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((59784, 59958), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""El preu per aquest producte i client no existeix a la base de dades, per introduir un preu nou clica el botó "Guardar preu"."""'], {}), '(self, \'Warning!\',\n \'El preu per aquest producte i client no existeix a la base de dades, per introduir un preu nou clica el botó "Guardar preu".\'\n )\n', (59803, 59958), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((60064, 60142), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Dades modificades correctament"""'], {}), "(self, 'Information', 'Dades modificades correctament')\n", (60087, 60142), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((73382, 73396), 'numpy.array', 'np.array', (['preu'], {}), '(preu)\n', (73390, 73396), True, 'import numpy as np\n'), ((73566, 73736), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))"], {}), "(self, 'Warning!', \n 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))\n", (73585, 73736), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((83475, 83573), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has seleccionat cap producte!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'No has seleccionat cap producte!',\n QMessageBox.Discard)\n", (83494, 83573), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((92395, 92409), 'numpy.array', 'np.array', (['preu'], {}), '(preu)\n', (92403, 92409), True, 'import numpy as np\n'), ((92579, 92749), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))"], {}), "(self, 'Warning!', \n 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))\n", (92598, 92749), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((102164, 102178), 'numpy.array', 'np.array', (['preu'], {}), '(preu)\n', (102172, 102178), True, 'import numpy as np\n'), ((102348, 102518), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))"], {}), "(self, 'Warning!', \n 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))\n", (102367, 102518), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((112457, 112555), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has seleccionat cap producte!"""', 'QMessageBox.Discard'], {}), "(self, 'Warning!', 'No has seleccionat cap producte!',\n QMessageBox.Discard)\n", (112476, 112555), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((127577, 127599), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['data'], {}), '(data)\n', (127593, 127599), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((132762, 132784), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['data'], {}), '(data)\n', (132778, 132784), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((141966, 142003), 'os.path.exists', 'os.path.exists', (['"""factures_rebudes.db"""'], {}), "('factures_rebudes.db')\n", (141980, 142003), False, 'import shutil, os\n'), ((143202, 143234), 'os.path.exists', 'os.path.exists', (['"""CompanyName.db"""'], {}), "('CompanyName.db')\n", (143216, 143234), False, 'import shutil, os\n'), ((158468, 158544), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Encara no has registrat cap client!"""'], {}), "(self, 'Warning!', 'Encara no has registrat cap client!')\n", (158487, 158544), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((159019, 159069), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'lines[0][1:]', '"""-o"""'], {'label': 'lines[0][0]'}), "(x, lines[0][1:], '-o', label=lines[0][0])\n", (159027, 159069), True, 'import matplotlib.pyplot as plt\n'), ((159079, 159140), 'matplotlib.pyplot.plot', 'plt.plot', (['x', 'mitja_arr', '"""--"""'], {'label': "('Mitjana %s' % num_client)"}), "(x, mitja_arr, '--', label='Mitjana %s' % num_client)\n", (159087, 159140), True, 'import matplotlib.pyplot as plt\n'), ((159173, 159202), 'matplotlib.pyplot.title', 'plt.title', (['"""Facturació total"""'], {}), "('Facturació total')\n", (159182, 159202), True, 'import matplotlib.pyplot as plt\n'), ((159210, 159236), 'matplotlib.pyplot.ylabel', 'plt.ylabel', (['"""Facturació €"""'], {}), "('Facturació €')\n", (159220, 159236), True, 'import matplotlib.pyplot as plt\n'), ((159249, 159269), 'matplotlib.pyplot.xticks', 'plt.xticks', (['x', 'mesos'], {}), '(x, mesos)\n', (159259, 159269), True, 'import matplotlib.pyplot as plt\n'), ((159277, 159289), 'matplotlib.pyplot.legend', 'plt.legend', ([], {}), '()\n', (159287, 159289), True, 'import matplotlib.pyplot as plt\n'), ((159299, 159336), 'matplotlib.pyplot.savefig', 'plt.savefig', (['"""facturacio_clients.png"""'], {}), "('facturacio_clients.png')\n", (159310, 159336), True, 'import matplotlib.pyplot as plt\n'), ((159422, 159496), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Aquest client no ha facturat res!"""'], {}), "(self, 'Warning!', 'Aquest client no ha facturat res!')\n", (159441, 159496), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((160203, 160227), 'PyQt5.QtGui.QPixmap.fromImage', 'QPixmap.fromImage', (['image'], {}), '(image)\n', (160220, 160227), False, 'from PyQt5.QtGui import QIcon, QPixmap, QFont, QImage\n'), ((44171, 44200), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][0]'], {}), '(lines[i][0])\n', (44187, 44200), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((64815, 64846), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['clients[i][0]'], {}), '(clients[i][0])\n', (64831, 64846), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((68324, 68334), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (68332, 68334), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((73763, 73848), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""No hi ha preus reistrats per cap client!"""'], {}), "(self, 'Warning', 'No hi ha preus reistrats per cap client!'\n )\n", (73782, 73848), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((74682, 74704), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (74690, 74704), False, 'import shutil, os\n'), ((75510, 75595), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Factura realitzada correctament!"""'], {}), "(self, 'Information', 'Factura realitzada correctament!'\n )\n", (75533, 75595), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((77625, 77635), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (77633, 77635), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((83061, 83083), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (83069, 83083), False, 'import shutil, os\n'), ((83617, 83746), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has indicat el preu d\'algun dels productes seleccionats!"""', 'QMessageBox.Discard'], {}), '(self, \'Warning!\',\n "No has indicat el preu d\'algun dels productes seleccionats!",\n QMessageBox.Discard)\n', (83636, 83746), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((87445, 87455), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (87453, 87455), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((92755, 92791), 'os.path.exists', 'os.path.exists', (['"""factures_emeses.db"""'], {}), "('factures_emeses.db')\n", (92769, 92791), False, 'import shutil, os\n'), ((92798, 92903), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No pots fer un abono si no has realitzat encara cap factura!"""'], {}), "(self, 'Warning!',\n 'No pots fer un abono si no has realitzat encara cap factura!')\n", (92817, 92903), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((94762, 94839), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Abono realitzat correctament!"""'], {}), "(self, 'Information', 'Abono realitzat correctament!')\n", (94785, 94839), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((97106, 97116), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (97114, 97116), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((102545, 102630), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning"""', '"""No hi ha preus reistrats per cap client!"""'], {}), "(self, 'Warning', 'No hi ha preus reistrats per cap client!'\n )\n", (102564, 102630), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((103535, 103557), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (103543, 103557), False, 'import shutil, os\n'), ((104346, 104425), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Albaran realitzat correctament!"""'], {}), "(self, 'Information', 'Albaran realitzat correctament!')\n", (104369, 104425), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((106606, 106616), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (106614, 106616), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((112043, 112065), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (112051, 112065), False, 'import shutil, os\n'), ((112599, 112728), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""No has indicat el preu d\'algun dels productes seleccionats!"""', 'QMessageBox.Discard'], {}), '(self, \'Warning!\',\n "No has indicat el preu d\'algun dels productes seleccionats!",\n QMessageBox.Discard)\n', (112618, 112728), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((155586, 155595), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (155593, 155595), True, 'import matplotlib.pyplot as plt\n'), ((157933, 157942), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (157940, 157942), True, 'import matplotlib.pyplot as plt\n'), ((158358, 158419), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', '"""Client no registrat!"""'], {}), "(self, 'Warning!', 'Client no registrat!')\n", (158377, 158419), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44264, 44293), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (44280, 44293), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((65040, 65064), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['"""NULL"""'], {}), "('NULL')\n", (65056, 65064), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((83589, 83603), 'numpy.array', 'np.array', (['preu'], {}), '(preu)\n', (83597, 83603), True, 'import numpy as np\n'), ((83776, 83946), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))"], {}), "(self, 'Warning!', \n 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))\n", (83795, 83946), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((84807, 84829), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (84815, 84829), False, 'import shutil, os\n'), ((85270, 85355), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Factura modificada correctament!"""'], {}), "(self, 'Information', 'Factura modificada correctament!'\n )\n", (85293, 85355), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((93581, 93603), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (93589, 93603), False, 'import shutil, os\n'), ((112571, 112585), 'numpy.array', 'np.array', (['preu'], {}), '(preu)\n', (112579, 112585), True, 'import numpy as np\n'), ((112758, 112928), 'PyQt5.QtWidgets.QMessageBox.warning', 'QMessageBox.warning', (['self', '"""Warning!"""', "('El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))"], {}), "(self, 'Warning!', \n 'El preu per a la referència %s i pel número de client %s no està guardat a la base de dades'\n % (ref_control, num_client))\n", (112777, 112928), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((113790, 113812), 'os.chdir', 'os.chdir', (['carpeta_data'], {}), '(carpeta_data)\n', (113798, 113812), False, 'import shutil, os\n'), ((114618, 114697), 'PyQt5.QtWidgets.QMessageBox.information', 'QMessageBox.information', (['self', '"""Information"""', '"""Albaran modificat correctament!"""'], {}), "(self, 'Information', 'Albaran modificat correctament!')\n", (114641, 114697), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((156528, 156537), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (156535, 156537), True, 'import matplotlib.pyplot as plt\n'), ((166700, 166729), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][0]'], {}), '(lines[i][0])\n', (166716, 166729), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((167392, 167421), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][0]'], {}), '(lines[i][0])\n', (167408, 167421), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44354, 44383), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (44370, 44383), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((46753, 46784), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][0]'], {}), '(matches[i][0])\n', (46769, 46784), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((68459, 68488), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (68475, 68488), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((77760, 77789), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (77776, 77789), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((87580, 87609), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (87596, 87609), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((97241, 97270), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (97257, 97270), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((106741, 106770), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (106757, 106770), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((152843, 152883), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['dades_client[0][j - 2]'], {}), '(dades_client[0][j - 2])\n', (152859, 152883), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((159383, 159392), 'matplotlib.pyplot.gcf', 'plt.gcf', ([], {}), '()\n', (159390, 159392), True, 'import matplotlib.pyplot as plt\n'), ((166791, 166820), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (166807, 166820), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((166867, 166877), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (166875, 166877), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((167483, 167512), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][1]'], {}), '(lines[i][1])\n', (167499, 167512), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((167761, 167771), 'PyQt5.QtWidgets.QSpinBox', 'QSpinBox', ([], {}), '()\n', (167769, 167771), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44444, 44473), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][3]'], {}), '(lines[i][3])\n', (44460, 44473), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((46852, 46883), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][1]'], {}), '(matches[i][1])\n', (46868, 46883), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((68547, 68576), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (68563, 68576), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((68617, 68633), 'PyQt5.QtWidgets.QDoubleSpinBox', 'QDoubleSpinBox', ([], {}), '()\n', (68631, 68633), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((77848, 77877), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (77864, 77877), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((77918, 77934), 'PyQt5.QtWidgets.QDoubleSpinBox', 'QDoubleSpinBox', ([], {}), '()\n', (77932, 77934), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((87668, 87697), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (87684, 87697), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((87738, 87754), 'PyQt5.QtWidgets.QDoubleSpinBox', 'QDoubleSpinBox', ([], {}), '()\n', (87752, 87754), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((97329, 97358), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (97345, 97358), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((97399, 97415), 'PyQt5.QtWidgets.QDoubleSpinBox', 'QDoubleSpinBox', ([], {}), '()\n', (97413, 97415), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((106829, 106858), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][2]'], {}), '(lines[i][2])\n', (106845, 106858), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((106899, 106915), 'PyQt5.QtWidgets.QDoubleSpinBox', 'QDoubleSpinBox', ([], {}), '()\n', (106913, 106915), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44533, 44562), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][4]'], {}), '(lines[i][4])\n', (44549, 44562), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((46948, 46979), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][2]'], {}), '(matches[i][2])\n', (46964, 46979), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44624, 44653), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][5]'], {}), '(lines[i][5])\n', (44640, 44653), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47044, 47075), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][3]'], {}), '(matches[i][3])\n', (47060, 47075), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44710, 44739), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][6]'], {}), '(lines[i][6])\n', (44726, 44739), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((44789, 44818), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['lines[i][7]'], {}), '(lines[i][7])\n', (44805, 44818), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47139, 47170), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][4]'], {}), '(matches[i][4])\n', (47155, 47170), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47236, 47267), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][5]'], {}), '(matches[i][5])\n', (47252, 47267), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47328, 47359), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][6]'], {}), '(matches[i][6])\n', (47344, 47359), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n'), ((47413, 47444), 'PyQt5.QtWidgets.QTableWidgetItem', 'QTableWidgetItem', (['matches[i][7]'], {}), '(matches[i][7])\n', (47429, 47444), False, 'from PyQt5.QtWidgets import QApplication, QLineEdit, QMainWindow, QMessageBox, QDialog, QPushButton, QLabel, QTableWidget, QTableWidgetItem, QVBoxLayout, QHeaderView, QSpinBox, QDoubleSpinBox, QGraphicsView, QTableWidgetItem\n')] |
import numpy as np
import torch
from mmhuman3d.core.filter.builder import build_filter
# test different data type
def test_data_type_torch():
noisy_input = torch.randn((100, 17, 3))
cfg = dict(type='OneEuroFilter', min_cutoff=0.004, beta=0.7)
oneeuro = build_filter(cfg)
out_g = oneeuro(noisy_input)
cfg = dict(type='Gaus1dFilter', window_size=11, sigma=4)
gaus1d = build_filter(cfg)
out_s = gaus1d(noisy_input)
cfg = dict(type='SGFilter', window_size=11, polyorder=2)
savgol = build_filter(cfg)
out_o = savgol(noisy_input)
# verify the correctness
accel_input = noisy_input[:-2] - 2 * noisy_input[1:-1] + noisy_input[2:]
accel_out_g = out_g[:-2] - 2 * out_g[1:-1] + out_g[2:]
accel_input_abs = torch.mean(torch.abs(accel_input))
assert accel_input_abs >= torch.mean(torch.abs(accel_out_g))
accel_out_s = out_s[:-2] - 2 * out_s[1:-1] + out_s[2:]
assert accel_input_abs >= torch.mean(torch.abs(accel_out_s))
accel_out_o = out_o[:-2] - 2 * out_o[1:-1] + out_o[2:]
assert accel_input_abs >= torch.mean(torch.abs(accel_out_o))
assert out_g.shape == noisy_input.shape == out_s.shape == out_o.shape
def test_data_type_torch_zero():
noisy_input = torch.zeros((50, 20, 3))
cfg = dict(type='OneEuroFilter', min_cutoff=0.004, beta=0.7)
oneeuro = build_filter(cfg)
out_g = oneeuro(noisy_input)
cfg = dict(type='Gaus1dFilter', window_size=11, sigma=4)
gaus1d = build_filter(cfg)
out_s = gaus1d(noisy_input)
cfg = dict(type='SGFilter', window_size=11, polyorder=2)
savgol = build_filter(cfg)
out_o = savgol(noisy_input)
# verify the correctness
accel_input = noisy_input[:-2] - 2 * noisy_input[1:-1] + noisy_input[2:]
accel_out_g = out_g[:-2] - 2 * out_g[1:-1] + out_g[2:]
assert torch.mean(accel_input) >= torch.mean(accel_out_g)
accel_out_s = out_s[:-2] - 2 * out_s[1:-1] + out_s[2:]
assert torch.mean(accel_input) >= torch.mean(accel_out_s)
accel_out_o = out_o[:-2] - 2 * out_o[1:-1] + out_o[2:]
assert torch.mean(accel_input) >= torch.mean(accel_out_o)
assert out_g.shape == noisy_input.shape == out_s.shape == out_o.shape
def test_data_type_torch_cuda():
if not torch.cuda.is_available():
return
noisy_input = torch.randn((3, 24, 4)).cuda()
cfg = dict(type='OneEuroFilter', min_cutoff=0.0004, beta=0.7)
oneeuro = build_filter(cfg)
out_g = oneeuro(noisy_input)
cfg = dict(type='Gaus1dFilter', window_size=6, sigma=1)
gaus1d = build_filter(cfg)
out_s = gaus1d(noisy_input)
cfg = dict(type='SGFilter', window_size=7, polyorder=2)
savgol = build_filter(cfg)
out_o = savgol(noisy_input)
assert out_g.shape == noisy_input.shape == out_s.shape == out_o.shape
def test_data_type_np():
noisy_input = np.random.rand(100, 24, 6)
cfg = dict(type='OneEuroFilter', min_cutoff=0.004, beta=0.1)
oneeuro = build_filter(cfg)
out_g = oneeuro(noisy_input)
cfg = dict(type='Gaus1dFilter', window_size=5, sigma=2)
gaus1d = build_filter(cfg)
out_s = gaus1d(noisy_input)
cfg = dict(type='SGFilter', window_size=5, polyorder=2)
savgol = build_filter(cfg)
out_o = savgol(noisy_input)
assert out_g.shape == noisy_input.shape == out_s.shape == out_o.shape
| [
"torch.abs",
"numpy.random.rand",
"torch.mean",
"torch.cuda.is_available",
"mmhuman3d.core.filter.builder.build_filter",
"torch.zeros",
"torch.randn"
] | [((164, 189), 'torch.randn', 'torch.randn', (['(100, 17, 3)'], {}), '((100, 17, 3))\n', (175, 189), False, 'import torch\n'), ((269, 286), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (281, 286), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((394, 411), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (406, 411), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((518, 535), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (530, 535), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((1230, 1254), 'torch.zeros', 'torch.zeros', (['(50, 20, 3)'], {}), '((50, 20, 3))\n', (1241, 1254), False, 'import torch\n'), ((1334, 1351), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (1346, 1351), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((1459, 1476), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (1471, 1476), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((1583, 1600), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (1595, 1600), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((2393, 2410), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (2405, 2410), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((2517, 2534), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (2529, 2534), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((2640, 2657), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (2652, 2657), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((2809, 2835), 'numpy.random.rand', 'np.random.rand', (['(100)', '(24)', '(6)'], {}), '(100, 24, 6)\n', (2823, 2835), True, 'import numpy as np\n'), ((2915, 2932), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (2927, 2932), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((3039, 3056), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (3051, 3056), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((3162, 3179), 'mmhuman3d.core.filter.builder.build_filter', 'build_filter', (['cfg'], {}), '(cfg)\n', (3174, 3179), False, 'from mmhuman3d.core.filter.builder import build_filter\n'), ((766, 788), 'torch.abs', 'torch.abs', (['accel_input'], {}), '(accel_input)\n', (775, 788), False, 'import torch\n'), ((1809, 1832), 'torch.mean', 'torch.mean', (['accel_input'], {}), '(accel_input)\n', (1819, 1832), False, 'import torch\n'), ((1836, 1859), 'torch.mean', 'torch.mean', (['accel_out_g'], {}), '(accel_out_g)\n', (1846, 1859), False, 'import torch\n'), ((1930, 1953), 'torch.mean', 'torch.mean', (['accel_input'], {}), '(accel_input)\n', (1940, 1953), False, 'import torch\n'), ((1957, 1980), 'torch.mean', 'torch.mean', (['accel_out_s'], {}), '(accel_out_s)\n', (1967, 1980), False, 'import torch\n'), ((2051, 2074), 'torch.mean', 'torch.mean', (['accel_input'], {}), '(accel_input)\n', (2061, 2074), False, 'import torch\n'), ((2078, 2101), 'torch.mean', 'torch.mean', (['accel_out_o'], {}), '(accel_out_o)\n', (2088, 2101), False, 'import torch\n'), ((2222, 2247), 'torch.cuda.is_available', 'torch.cuda.is_available', ([], {}), '()\n', (2245, 2247), False, 'import torch\n'), ((831, 853), 'torch.abs', 'torch.abs', (['accel_out_g'], {}), '(accel_out_g)\n', (840, 853), False, 'import torch\n'), ((955, 977), 'torch.abs', 'torch.abs', (['accel_out_s'], {}), '(accel_out_s)\n', (964, 977), False, 'import torch\n'), ((1079, 1101), 'torch.abs', 'torch.abs', (['accel_out_o'], {}), '(accel_out_o)\n', (1088, 1101), False, 'import torch\n'), ((2282, 2305), 'torch.randn', 'torch.randn', (['(3, 24, 4)'], {}), '((3, 24, 4))\n', (2293, 2305), False, 'import torch\n')] |
import numpy as np
from matplotlib import pyplot as plt
import pandas as pd
df = pd.read_csv("C:/Users/Elton/Downloads/temperature.csv")
print(df.head())
#Extração de X e Y
x,y = df[['temperatura']].values, df[['classification']].values
print('x:\n',x)
print('y:\n',y)
#Prós processamento
from sklearn.preprocessing import LabelEncoder #Codifica uma entrada como um valor numerico
#print((LabelEncoder))
#Conversao de y em valores numericos
le = LabelEncoder()
y = le.fit_transform(y.ravel())
print('y:\n',y)
#Modelo
from sklearn.linear_model import LogisticRegression
#Classificador
clf = LogisticRegression()
clf.fit(x,y)
#Gerando 100 valores de temperatura linearmente espaçados entre 0 e 45
x_test = np.linspace(start = 0,stop = 45, num = 100).reshape(-1,1)
#Predição desses valores
y_pred=clf.predict(x_test)
#print(y_pred)
#Conversao de y pred para valores originais
y_pred = le.inverse_transform(y_pred)
#print(y_pred)
#print(x_test)
#output
output = {'new_temp': x_test.ravel(),
'new_class': y_pred.ravel()}
output = pd.DataFrame(output)
#print(output.head())
#print(output.tail())
#Estatisticas
print(output.info)
print(output.describe())
#Contagem de valores gerados
output['new_class'].value_counts().plot.bar(figsize=(10,5),
rot=0,
title='#de novos valores gerados');
#Distribuição do output produzido
#Conseguimos inferir a classificação novas temperaturas
#a partir de um dataset com 6 exemplos
output.boxplot(by='new_class', figsize=(10, 5))
print(80*'=')
plt.show()
#Sistema automatico
def classify_temp():
'''Classificaça o input do usuario'''
ask = True
while ask:
#input de temperatura
temp = input("Insira a temparatura(graus celsius): ")
#Transformar para numpy array
temp = np.array(float(temp)).reshape(-1,1)
#Realizar classificação
class_temp = clf.predict(temp)
#Transformação inversa para retorna string original
class_temp = le.inverse_transform(class_temp)
#Classificação
print(f'A classificação da temperatura {temp.ravel()[0]} é:', class_temp[0])
#Perguntar
ask = input('Nova classificação(y/n): ') == 'y'
classify_temp()
| [
"sklearn.preprocessing.LabelEncoder",
"pandas.read_csv",
"sklearn.linear_model.LogisticRegression",
"numpy.linspace",
"pandas.DataFrame",
"matplotlib.pyplot.show"
] | [((83, 138), 'pandas.read_csv', 'pd.read_csv', (['"""C:/Users/Elton/Downloads/temperature.csv"""'], {}), "('C:/Users/Elton/Downloads/temperature.csv')\n", (94, 138), True, 'import pandas as pd\n'), ((451, 465), 'sklearn.preprocessing.LabelEncoder', 'LabelEncoder', ([], {}), '()\n', (463, 465), False, 'from sklearn.preprocessing import LabelEncoder\n'), ((597, 617), 'sklearn.linear_model.LogisticRegression', 'LogisticRegression', ([], {}), '()\n', (615, 617), False, 'from sklearn.linear_model import LogisticRegression\n'), ((1045, 1065), 'pandas.DataFrame', 'pd.DataFrame', (['output'], {}), '(output)\n', (1057, 1065), True, 'import pandas as pd\n'), ((1585, 1595), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (1593, 1595), True, 'from matplotlib import pyplot as plt\n'), ((712, 750), 'numpy.linspace', 'np.linspace', ([], {'start': '(0)', 'stop': '(45)', 'num': '(100)'}), '(start=0, stop=45, num=100)\n', (723, 750), True, 'import numpy as np\n')] |
import cv2
import os
import json
import numpy as np
import editdistance
from spellchecker import SpellChecker
from linesegm2.LineSegmentation import LineSegmentation
from Model import Model
from SamplePreprocessor import preprocess
from DataLoader import Batch
from WordSegmentation import wordSegmentation, prepareImg
def infer(model, fnImg):
"recognize text in image provided by file path"
img = preprocess(cv2.imread(fnImg, cv2.IMREAD_GRAYSCALE), Model.imgSize)
batch = Batch(None, [img])
(recognized, probability) = model.inferBatch(batch, True)
spell = SpellChecker()
# find those words that may be misspelled
#misspelled = spell.unknown([recognized])
recognized[0] = spell.correction(recognized[0])
#print('Recognized:', '"' + recognized[0] + '"')
#print('Probability:', probability[0])
return (recognized[0], probability[0])
def line_segment(filepath, filenames, model):
out_dict={}
out_path='../data/out/'
truth_path='../data/true_text/'
compare=False
if os.path.exists(truth_path+'truth.json'):
numCharErr = 0
numCharTotal = 0
numWordOK = 0
numWordTotal = 0
compare = True
with open(truth_path+'truth.json', 'r') as truth:
truth_file = json.load(truth)
for filename in filenames:
fullpath=os.path.join(filepath,filename)
f=filename.split('.')[0]
ext=filename.split('.')[1]
if ext=='pdf':
continue
out_dict[f] = []
print('Reading image "' + filename + '"..')
im = cv2.imread(fullpath)
output_path = out_path+f
if not os.path.exists(output_path):
os.mkdir(output_path)
line_segmentation = LineSegmentation(img=im, output_path=output_path)
lines = line_segmentation.segment()
if(len(lines)==0):
im = cv2.imread(fullpath, 0)
_ , imbw = cv2.threshold(im, 0, 255, cv2.THRESH_BINARY|cv2.THRESH_OTSU)
lines = [imbw]
n_line=1
n_word=0
for line in lines:
img = prepareImg(line, 50)
# execute segmentation with given parameters
# -kernelSize: size of filter kernel (odd integer)
# -sigma: standard deviation of Gaussian function used for filter kernel
# -theta: approximated width/height ratio of words, filter function is distorted by this factor
# - minArea: ignore word candidates smaller than specified area
res = wordSegmentation(img, kernelSize=25, sigma=11, theta=7, minArea=100, increase_dim=10)
# iterate over all segmented words
#print('Segmented into %d words'%len(res))
for (j, w) in enumerate(res):
(wordBox, wordImg) = w
(x, y, w, h) = wordBox
imgloc=output_path+'/%d.png'%j
# increase contrast
# preprocess so that it is similar to IAM dataset
kernel = np.ones((2, 2), np.uint8)
wordImg = cv2.erode(wordImg, kernel, iterations = 1)
cv2.imwrite(imgloc, wordImg) # save word
#FilePaths.fnInfer = 'out/%s/%d.png'%(f,j)
#result, prob = infer(model, imgloc)
try:
result, prob = infer(model, imgloc)
except:
print("Couldn't infer: image%d"%j)
result=""
#compare with ground truth
if compare:
numWordOK += 1 if truth_file[f][n_word] == result else 0
numWordTotal += 1
dist = editdistance.eval(result, truth_file[f][n_word])
numCharErr += dist
numCharTotal += len(truth_file[f][n_word])
print('[OK]' if dist==0 else '[ERR:%d]' % dist,'"' + truth_file[f][n_word] + '"', '->', '"' + result + '"')
#updating output dictionary
out_dict[f].append(result)
n_word+=1
#deleting intermediate file
os.remove(imgloc)
cv2.rectangle(img,(x,y),(x+w,y+h),0,1) # draw bounding box in summary image
# output summary image with bounding boxes around words
cv2.imwrite(output_path+'/summary%d.png'%n_line, img)
n_line+=1
if compare:
charErrorRate = numCharErr / numCharTotal
wordAccuracy = numWordOK / numWordTotal
print('Character error rate: %f%%. Word accuracy: %f%%.' % (charErrorRate*100.0, wordAccuracy*100.0))
return out_dict | [
"cv2.rectangle",
"os.path.exists",
"WordSegmentation.prepareImg",
"cv2.imwrite",
"numpy.ones",
"cv2.threshold",
"cv2.erode",
"spellchecker.SpellChecker",
"os.path.join",
"WordSegmentation.wordSegmentation",
"os.mkdir",
"linesegm2.LineSegmentation.LineSegmentation",
"json.load",
"DataLoader... | [((477, 495), 'DataLoader.Batch', 'Batch', (['None', '[img]'], {}), '(None, [img])\n', (482, 495), False, 'from DataLoader import Batch\n'), ((564, 578), 'spellchecker.SpellChecker', 'SpellChecker', ([], {}), '()\n', (576, 578), False, 'from spellchecker import SpellChecker\n'), ((988, 1029), 'os.path.exists', 'os.path.exists', (["(truth_path + 'truth.json')"], {}), "(truth_path + 'truth.json')\n", (1002, 1029), False, 'import os\n'), ((412, 451), 'cv2.imread', 'cv2.imread', (['fnImg', 'cv2.IMREAD_GRAYSCALE'], {}), '(fnImg, cv2.IMREAD_GRAYSCALE)\n', (422, 451), False, 'import cv2\n'), ((1242, 1274), 'os.path.join', 'os.path.join', (['filepath', 'filename'], {}), '(filepath, filename)\n', (1254, 1274), False, 'import os\n'), ((1431, 1451), 'cv2.imread', 'cv2.imread', (['fullpath'], {}), '(fullpath)\n', (1441, 1451), False, 'import cv2\n'), ((1565, 1614), 'linesegm2.LineSegmentation.LineSegmentation', 'LineSegmentation', ([], {'img': 'im', 'output_path': 'output_path'}), '(img=im, output_path=output_path)\n', (1581, 1614), False, 'from linesegm2.LineSegmentation import LineSegmentation\n'), ((1185, 1201), 'json.load', 'json.load', (['truth'], {}), '(truth)\n', (1194, 1201), False, 'import json\n'), ((1489, 1516), 'os.path.exists', 'os.path.exists', (['output_path'], {}), '(output_path)\n', (1503, 1516), False, 'import os\n'), ((1521, 1542), 'os.mkdir', 'os.mkdir', (['output_path'], {}), '(output_path)\n', (1529, 1542), False, 'import os\n'), ((1683, 1706), 'cv2.imread', 'cv2.imread', (['fullpath', '(0)'], {}), '(fullpath, 0)\n', (1693, 1706), False, 'import cv2\n'), ((1721, 1783), 'cv2.threshold', 'cv2.threshold', (['im', '(0)', '(255)', '(cv2.THRESH_BINARY | cv2.THRESH_OTSU)'], {}), '(im, 0, 255, cv2.THRESH_BINARY | cv2.THRESH_OTSU)\n', (1734, 1783), False, 'import cv2\n'), ((1853, 1873), 'WordSegmentation.prepareImg', 'prepareImg', (['line', '(50)'], {}), '(line, 50)\n', (1863, 1873), False, 'from WordSegmentation import wordSegmentation, prepareImg\n'), ((2227, 2316), 'WordSegmentation.wordSegmentation', 'wordSegmentation', (['img'], {'kernelSize': '(25)', 'sigma': '(11)', 'theta': '(7)', 'minArea': '(100)', 'increase_dim': '(10)'}), '(img, kernelSize=25, sigma=11, theta=7, minArea=100,\n increase_dim=10)\n', (2243, 2316), False, 'from WordSegmentation import wordSegmentation, prepareImg\n'), ((3602, 3659), 'cv2.imwrite', 'cv2.imwrite', (["(output_path + '/summary%d.png' % n_line)", 'img'], {}), "(output_path + '/summary%d.png' % n_line, img)\n", (3613, 3659), False, 'import cv2\n'), ((2614, 2639), 'numpy.ones', 'np.ones', (['(2, 2)', 'np.uint8'], {}), '((2, 2), np.uint8)\n', (2621, 2639), True, 'import numpy as np\n'), ((2654, 2694), 'cv2.erode', 'cv2.erode', (['wordImg', 'kernel'], {'iterations': '(1)'}), '(wordImg, kernel, iterations=1)\n', (2663, 2694), False, 'import cv2\n'), ((2701, 2729), 'cv2.imwrite', 'cv2.imwrite', (['imgloc', 'wordImg'], {}), '(imgloc, wordImg)\n', (2712, 2729), False, 'import cv2\n'), ((3438, 3455), 'os.remove', 'os.remove', (['imgloc'], {}), '(imgloc)\n', (3447, 3455), False, 'import os\n'), ((3460, 3508), 'cv2.rectangle', 'cv2.rectangle', (['img', '(x, y)', '(x + w, y + h)', '(0)', '(1)'], {}), '(img, (x, y), (x + w, y + h), 0, 1)\n', (3473, 3508), False, 'import cv2\n'), ((3091, 3139), 'editdistance.eval', 'editdistance.eval', (['result', 'truth_file[f][n_word]'], {}), '(result, truth_file[f][n_word])\n', (3108, 3139), False, 'import editdistance\n')] |
import os
import traceback
import cv2
import numpy as np
from keras.models import load_model
from flask import flash, request, redirect, url_for, render_template
from werkzeug.utils import secure_filename
from app import app
ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif', 'jfif'}
model = load_model('model' + os.sep + 'inception_v3')
def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/')
def index():
return render_template('index.html')
def predict(image_path):
img = cv2.imread(image_path)
resized_img = cv2.resize(img, (128, 128), interpolation=cv2.INTER_NEAREST)
img = np.reshape(resized_img, (1, 128, 128, 3))
prediction = model.predict(img)
max_index = np.argmax(prediction)
print(prediction)
if max_index == 1:
return "No Disease"
else:
return "Has Disease"
@app.route('/', methods=['POST'])
def upload_image():
file = request.files['file']
try:
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
image_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
file.save(image_path)
prediction = predict(image_path)
return render_template('index.html', filename=filename, prediction=prediction)
else:
flash('Allowed image types are -> png, jpg, jpeg, gif')
return redirect(request.url)
except:
traceback.print_exc()
@app.route('/display/<filename>')
def display_image(filename):
# print('display_image filename: ' + filename)
return redirect(url_for('static', filename='uploads/' + filename), code=301)
if __name__ == "__main__":
app.run()
| [
"flask.render_template",
"app.app.run",
"keras.models.load_model",
"numpy.reshape",
"flask.flash",
"os.path.join",
"numpy.argmax",
"flask.url_for",
"flask.redirect",
"app.app.route",
"werkzeug.utils.secure_filename",
"cv2.resize",
"traceback.print_exc",
"cv2.imread"
] | [((309, 354), 'keras.models.load_model', 'load_model', (["('model' + os.sep + 'inception_v3')"], {}), "('model' + os.sep + 'inception_v3')\n", (319, 354), False, 'from keras.models import load_model\n'), ((483, 497), 'app.app.route', 'app.route', (['"""/"""'], {}), "('/')\n", (492, 497), False, 'from app import app\n'), ((952, 984), 'app.app.route', 'app.route', (['"""/"""'], {'methods': "['POST']"}), "('/', methods=['POST'])\n", (961, 984), False, 'from app import app\n'), ((1584, 1616), 'app.app.route', 'app.route', (['"""/display/<filename>"""'], {}), "('/display/<filename>')\n", (1593, 1616), False, 'from app import app\n'), ((524, 553), 'flask.render_template', 'render_template', (['"""index.html"""'], {}), "('index.html')\n", (539, 553), False, 'from flask import flash, request, redirect, url_for, render_template\n'), ((595, 617), 'cv2.imread', 'cv2.imread', (['image_path'], {}), '(image_path)\n', (605, 617), False, 'import cv2\n'), ((637, 697), 'cv2.resize', 'cv2.resize', (['img', '(128, 128)'], {'interpolation': 'cv2.INTER_NEAREST'}), '(img, (128, 128), interpolation=cv2.INTER_NEAREST)\n', (647, 697), False, 'import cv2\n'), ((709, 750), 'numpy.reshape', 'np.reshape', (['resized_img', '(1, 128, 128, 3)'], {}), '(resized_img, (1, 128, 128, 3))\n', (719, 750), True, 'import numpy as np\n'), ((805, 826), 'numpy.argmax', 'np.argmax', (['prediction'], {}), '(prediction)\n', (814, 826), True, 'import numpy as np\n'), ((1818, 1827), 'app.app.run', 'app.run', ([], {}), '()\n', (1825, 1827), False, 'from app import app\n'), ((1720, 1769), 'flask.url_for', 'url_for', (['"""static"""'], {'filename': "('uploads/' + filename)"}), "('static', filename='uploads/' + filename)\n", (1727, 1769), False, 'from flask import flash, request, redirect, url_for, render_template\n'), ((1126, 1156), 'werkzeug.utils.secure_filename', 'secure_filename', (['file.filename'], {}), '(file.filename)\n', (1141, 1156), False, 'from werkzeug.utils import secure_filename\n'), ((1183, 1234), 'os.path.join', 'os.path.join', (["app.config['UPLOAD_FOLDER']", 'filename'], {}), "(app.config['UPLOAD_FOLDER'], filename)\n", (1195, 1234), False, 'import os\n'), ((1336, 1407), 'flask.render_template', 'render_template', (['"""index.html"""'], {'filename': 'filename', 'prediction': 'prediction'}), "('index.html', filename=filename, prediction=prediction)\n", (1351, 1407), False, 'from flask import flash, request, redirect, url_for, render_template\n'), ((1436, 1491), 'flask.flash', 'flash', (['"""Allowed image types are -> png, jpg, jpeg, gif"""'], {}), "('Allowed image types are -> png, jpg, jpeg, gif')\n", (1441, 1491), False, 'from flask import flash, request, redirect, url_for, render_template\n'), ((1512, 1533), 'flask.redirect', 'redirect', (['request.url'], {}), '(request.url)\n', (1520, 1533), False, 'from flask import flash, request, redirect, url_for, render_template\n'), ((1556, 1577), 'traceback.print_exc', 'traceback.print_exc', ([], {}), '()\n', (1575, 1577), False, 'import traceback\n')] |
import numpy as np
import re
from utils import get_input
class Board:
def __init__(self, grid):
self.array = np.array(grid).astype('int')
self.drawn = np.zeros((5,5))
self.bingo = False
def update(self, draw):
hits = self.array == draw
self.drawn[hits] = 1
if (self.drawn.sum(axis=0) == 5).any() or (self.drawn.sum(axis=1) == 5).any():
self.bingo = True
def score(self):
return (self.array[self.drawn == 0]).sum().item()
def reset(self):
self.drawn == 0
def parse_input(input):
lines = [line.lstrip() for line in input.splitlines()]
nums = [int(o) for o in lines[0].split(',')]
boards = [
[
re.split('\D+', row) for row in lines[i:i+5]]
for i in range(2, len(lines), 6)
]
boards = np.stack([np.array(board, dtype=np.uint8) for board in boards])
return nums, boards
def win_bingo(nums, grids):
boards = [Board(grid) for grid in grids]
bingo = False
for num in nums:
for board in boards:
board.update(num)
if board.bingo:
bingo = board.bingo
break
if bingo: break
return num * board.score()
def lose_bingo(nums, grids):
boards = [Board(grid) for grid in grids]
bingos = 0
game_over = False
for num in nums:
for board in boards:
if not board.bingo:
board.update(num)
if board.bingo: bingos += 1
if bingos == len(boards):
game_over = True
break
if game_over: break
print(board.array, board.drawn, num)
return num * board.score()
if __name__ == '__main__':
example = """7,4,9,5,11,17,23,2,0,14,21,24,10,16,13,6,15,25,12,22,18,20,8,19,3,26,1
22 13 17 11 0
8 2 23 4 24
21 9 14 16 7
6 10 3 18 5
1 12 20 15 19
3 15 0 2 22
9 18 13 17 5
19 8 7 25 23
20 11 10 24 4
14 21 16 12 6
14 21 17 24 4
10 16 15 9 19
18 8 23 26 20
22 11 13 6 5
2 0 12 3 7"""
nums, grids = parse_input(example)
print(win_bingo(nums, grids))
print(lose_bingo(nums, grids))
input = get_input('day04.txt')
nums, grids = parse_input(input)
print(win_bingo(nums, grids))
print(lose_bingo(nums, grids)) | [
"numpy.array",
"re.split",
"numpy.zeros",
"utils.get_input"
] | [((2241, 2263), 'utils.get_input', 'get_input', (['"""day04.txt"""'], {}), "('day04.txt')\n", (2250, 2263), False, 'from utils import get_input\n'), ((173, 189), 'numpy.zeros', 'np.zeros', (['(5, 5)'], {}), '((5, 5))\n', (181, 189), True, 'import numpy as np\n'), ((725, 746), 're.split', 're.split', (['"""\\\\D+"""', 'row'], {}), "('\\\\D+', row)\n", (733, 746), False, 'import re\n'), ((849, 880), 'numpy.array', 'np.array', (['board'], {'dtype': 'np.uint8'}), '(board, dtype=np.uint8)\n', (857, 880), True, 'import numpy as np\n'), ((123, 137), 'numpy.array', 'np.array', (['grid'], {}), '(grid)\n', (131, 137), True, 'import numpy as np\n')] |
#!/usr/bin/env python3
# encoding: utf-8
from collections import defaultdict
from copy import deepcopy
from typing import Dict, List
import numpy as np
from mlagents_envs.environment import UnityEnvironment
from mlagents_envs.side_channel.engine_configuration_channel import \
EngineConfigurationChannel
from mlagents_envs.side_channel.environment_parameters_channel import \
EnvironmentParametersChannel
from rls.common.data import Data
from rls.common.specs import EnvAgentSpec, SensorSpec
from rls.common.yaml_ops import load_config
from rls.envs.unity.wrappers.core import ObservationWrapper
from rls.utils.np_utils import get_discrete_action_list
class BasicUnityEnvironment(object):
def __init__(self,
worker_id=0,
file_name=None,
port=5005,
render=False,
seed=42,
timeout_wait=60,
env_copies=12,
env_name='3DBall',
real_done=True,
initialize_config={},
engine_config={
'width': 84,
'height': 84,
'quality_level': 5,
'time_scale': 20,
'target_frame_rate': -1,
'capture_frame_rate': 60
},
**kwargs):
self._n_copies = env_copies
self._real_done = real_done
self._side_channels = self.initialize_all_side_channels(
initialize_config, engine_config)
env_kwargs = dict(seed=seed,
worker_id=worker_id,
timeout_wait=timeout_wait,
side_channels=list(self._side_channels.values())) # 注册所有初始化后的通讯频道
if file_name is not None:
env_dict = load_config('rls/configs/unity/env_dict.yaml')
env_kwargs.update(file_name=file_name,
base_port=port,
no_graphics=not render,
additional_args=[
'--scene', str(env_dict.get(env_name, 'None'))
])
self.env = UnityEnvironment(**env_kwargs)
self.env.reset()
self.initialize_environment()
def initialize_all_side_channels(self, initialize_config, engine_config):
"""
初始化所有的通讯频道
"""
engine_configuration_channel = EngineConfigurationChannel()
engine_configuration_channel.set_configuration_parameters(**engine_config)
float_properties_channel = EnvironmentParametersChannel()
float_properties_channel.set_float_parameter('env_copies', self._n_copies)
for k, v in initialize_config.items():
float_properties_channel.set_float_parameter(k, v)
return dict(engine_configuration_channel=engine_configuration_channel,
float_properties_channel=float_properties_channel)
def initialize_environment(self):
"""
初始化环境,获取必要的信息,如状态、动作维度等等
"""
self.behavior_names = list(self.env.behavior_specs.keys())
self._vector_idxs = defaultdict(list)
self._vector_dims = defaultdict(list)
self._visual_idxs = defaultdict(list)
self._visual_dims = defaultdict(list)
self._a_dim = defaultdict(int)
self._discrete_action_lists = {}
self._is_continuous = {}
self._actiontuples = {}
self.env.reset()
for bn, spec in self.env.behavior_specs.items():
for i, obs_spec in enumerate(spec.observation_specs): # TODO: optimize
if len(obs_spec.shape) == 1:
self._vector_idxs[bn].append(i)
self._vector_dims[bn].append(obs_spec.shape[0])
elif len(obs_spec.shape) == 3:
self._visual_idxs[bn].append(i)
self._visual_dims[bn].append(list(obs_spec.shape))
else:
raise ValueError(
"shape of observation cannot be understood.")
action_spec = spec.action_spec
if action_spec.is_continuous():
self._a_dim[bn] = action_spec.continuous_size
self._discrete_action_lists[bn] = None
self._is_continuous[bn] = True
elif action_spec.is_discrete():
self._a_dim[bn] = int(np.asarray(
action_spec.discrete_branches).prod())
self._discrete_action_lists[bn] = get_discrete_action_list(
action_spec.discrete_branches)
self._is_continuous[bn] = False
else:
raise NotImplementedError(
"doesn't support continuous and discrete actions simultaneously for now.")
self._actiontuples[bn] = action_spec.empty_action(
n_agents=self._n_copies)
def reset(self, reset_config):
for k, v in reset_config.items():
self._side_channels['float_properties_channel'].set_float_parameter(
k, v)
self.env.reset()
return self.get_obs(only_obs=True)
def step(self, actions, step_config):
"""
params: actions, type of dict or np.ndarray, if the type of actions is
not dict, then set those actions for the first behavior controller.
"""
for k, v in step_config.items():
self._side_channels['float_properties_channel'].set_float_parameter(
k, v)
actions = deepcopy(actions)
# TODO: fix this
for bn in self.behavior_names:
if self._is_continuous[bn]:
self._actiontuples[bn].add_continuous(actions[bn])
else:
self._actiontuples[bn].add_discrete(
self._discrete_action_lists[bn][actions[bn]].reshape(self._n_copies, -1))
self.env.set_actions(bn, self._actiontuples[bn])
self.env.step()
return self.get_obs()
@property
def AgentSpecs(self):
ret = {}
for bn in self.behavior_names:
ret[bn] = EnvAgentSpec(
obs_spec=SensorSpec(
vector_dims=self._vector_dims[bn],
visual_dims=self._visual_dims[bn]),
a_dim=self._a_dim[bn],
is_continuous=self._is_continuous[bn]
)
return ret
@property
def StateSpec(self) -> SensorSpec:
return SensorSpec()
@property
def agent_ids(self) -> List[str]:
return self.behavior_names
def get_obs(self, behavior_names=None, only_obs=False):
"""
解析环境反馈的信息,将反馈信息分为四部分:向量、图像、奖励、done信号
"""
behavior_names = behavior_names or self.behavior_names
whole_done = np.full(self._n_copies, False)
whole_info_max_step = np.full(self._n_copies, False)
all_obs_fa, all_obs_fs = {}, {}
all_reward = {}
for bn in behavior_names:
ps = []
# TODO: optimize
while True:
ds, ts = self.env.get_steps(bn)
if len(ts):
ps.append(ts)
if len(ds) == self._n_copies:
break
elif len(ds) == 0:
self.env.step() # some of environments done, but some of not
else:
raise ValueError(
f'agents number error. Expected 0 or {self._n_copies}, received {len(ds)}')
obs_fs, reward = ds.obs, ds.reward
obs_fa = deepcopy(obs_fs)
done = np.full(self._n_copies, False)
begin_mask = np.full(self._n_copies, False)
info_max_step = np.full(self._n_copies, False)
info_real_done = np.full(self._n_copies, False)
for ts in ps: # TODO: 有待优化
_ids = ts.agent_id
reward[_ids] = ts.reward
info_max_step[_ids] = ts.interrupted # 因为达到episode最大步数而终止的
# 去掉因为max_step而done的,只记录因为失败/成功而done的
info_real_done[_ids[~ts.interrupted]] = True
done[_ids] = True
begin_mask[_ids] = True
# zip: vector, visual, ...
for _obs, _tobs in zip(obs_fa, ts.obs):
_obs[_ids] = _tobs
if self._real_done:
done = np.array(info_real_done)
_obs_fa = Data()
_obs_fs = Data()
if len(self._vector_idxs[bn]) > 0:
_obs_fa.update(vector={f'vector_{i}': obs_fa[vi] for i, vi in enumerate(self._vector_idxs[bn])})
_obs_fs.update(vector={f'vector_{i}': obs_fs[vi] for i, vi in enumerate(self._vector_idxs[bn])})
if len(self._visual_idxs[bn]) > 0:
_obs_fa.update(visual={f'visual_{i}': obs_fa[vi] for i, vi in enumerate(self._visual_idxs[bn])})
_obs_fs.update(visual={f'visual_{i}': obs_fs[vi] for i, vi in enumerate(self._visual_idxs[bn])})
all_obs_fa[bn] = _obs_fa
all_obs_fs[bn] = _obs_fs
all_reward[bn] = reward
whole_done = np.logical_or(whole_done, done)
whole_info_max_step = np.logical_or(whole_info_max_step, info_max_step)
if only_obs:
all_obs_fa.update(
{'global': Data(begin_mask=np.full((self._n_copies, 1), True))})
return all_obs_fa
else:
rets = {}
for bn in self.behavior_names:
rets[bn] = Data(obs_fa=all_obs_fa[bn],
obs_fs=all_obs_fs[bn],
reward=all_reward[bn],
done=whole_done,
info=dict(max_step=whole_info_max_step))
rets.update(
{'global': Data(begin_mask=begin_mask[:, np.newaxis])}) # [B, 1]
return rets
def __getattr__(self, name):
"""
不允许获取BasicUnityEnvironment中以'_'开头的属性
"""
if name.startswith('_'):
raise AttributeError(
"attempted to get missing private attribute '{}'".format(name))
return getattr(self.env, name)
class ScaleVisualWrapper(ObservationWrapper):
def observation(self, observation: Dict[str, Data]):
def func(x): return np.asarray(x * 255).astype(np.uint8)
for k in observation.keys():
observation[k].obs.visual.convert_(func)
observation[k].obs_.visual.convert_(func)
return observation
| [
"rls.utils.np_utils.get_discrete_action_list",
"mlagents_envs.side_channel.engine_configuration_channel.EngineConfigurationChannel",
"mlagents_envs.side_channel.environment_parameters_channel.EnvironmentParametersChannel",
"numpy.asarray",
"numpy.logical_or",
"rls.common.specs.SensorSpec",
"numpy.array"... | [((2280, 2310), 'mlagents_envs.environment.UnityEnvironment', 'UnityEnvironment', ([], {}), '(**env_kwargs)\n', (2296, 2310), False, 'from mlagents_envs.environment import UnityEnvironment\n'), ((2543, 2571), 'mlagents_envs.side_channel.engine_configuration_channel.EngineConfigurationChannel', 'EngineConfigurationChannel', ([], {}), '()\n', (2569, 2571), False, 'from mlagents_envs.side_channel.engine_configuration_channel import EngineConfigurationChannel\n'), ((2692, 2722), 'mlagents_envs.side_channel.environment_parameters_channel.EnvironmentParametersChannel', 'EnvironmentParametersChannel', ([], {}), '()\n', (2720, 2722), False, 'from mlagents_envs.side_channel.environment_parameters_channel import EnvironmentParametersChannel\n'), ((3273, 3290), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (3284, 3290), False, 'from collections import defaultdict\n'), ((3320, 3337), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (3331, 3337), False, 'from collections import defaultdict\n'), ((3367, 3384), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (3378, 3384), False, 'from collections import defaultdict\n'), ((3414, 3431), 'collections.defaultdict', 'defaultdict', (['list'], {}), '(list)\n', (3425, 3431), False, 'from collections import defaultdict\n'), ((3455, 3471), 'collections.defaultdict', 'defaultdict', (['int'], {}), '(int)\n', (3466, 3471), False, 'from collections import defaultdict\n'), ((5745, 5762), 'copy.deepcopy', 'deepcopy', (['actions'], {}), '(actions)\n', (5753, 5762), False, 'from copy import deepcopy\n'), ((6721, 6733), 'rls.common.specs.SensorSpec', 'SensorSpec', ([], {}), '()\n', (6731, 6733), False, 'from rls.common.specs import EnvAgentSpec, SensorSpec\n'), ((7049, 7079), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (7056, 7079), True, 'import numpy as np\n'), ((7111, 7141), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (7118, 7141), True, 'import numpy as np\n'), ((9481, 9512), 'numpy.logical_or', 'np.logical_or', (['whole_done', 'done'], {}), '(whole_done, done)\n', (9494, 9512), True, 'import numpy as np\n'), ((9544, 9593), 'numpy.logical_or', 'np.logical_or', (['whole_info_max_step', 'info_max_step'], {}), '(whole_info_max_step, info_max_step)\n', (9557, 9593), True, 'import numpy as np\n'), ((1894, 1940), 'rls.common.yaml_ops.load_config', 'load_config', (['"""rls/configs/unity/env_dict.yaml"""'], {}), "('rls/configs/unity/env_dict.yaml')\n", (1905, 1940), False, 'from rls.common.yaml_ops import load_config\n'), ((7864, 7880), 'copy.deepcopy', 'deepcopy', (['obs_fs'], {}), '(obs_fs)\n', (7872, 7880), False, 'from copy import deepcopy\n'), ((7901, 7931), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (7908, 7931), True, 'import numpy as np\n'), ((7958, 7988), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (7965, 7988), True, 'import numpy as np\n'), ((8018, 8048), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (8025, 8048), True, 'import numpy as np\n'), ((8079, 8109), 'numpy.full', 'np.full', (['self._n_copies', '(False)'], {}), '(self._n_copies, False)\n', (8086, 8109), True, 'import numpy as np\n'), ((8751, 8757), 'rls.common.data.Data', 'Data', ([], {}), '()\n', (8755, 8757), False, 'from rls.common.data import Data\n'), ((8781, 8787), 'rls.common.data.Data', 'Data', ([], {}), '()\n', (8785, 8787), False, 'from rls.common.data import Data\n'), ((8701, 8725), 'numpy.array', 'np.array', (['info_real_done'], {}), '(info_real_done)\n', (8709, 8725), True, 'import numpy as np\n'), ((4691, 4746), 'rls.utils.np_utils.get_discrete_action_list', 'get_discrete_action_list', (['action_spec.discrete_branches'], {}), '(action_spec.discrete_branches)\n', (4715, 4746), False, 'from rls.utils.np_utils import get_discrete_action_list\n'), ((6393, 6478), 'rls.common.specs.SensorSpec', 'SensorSpec', ([], {'vector_dims': 'self._vector_dims[bn]', 'visual_dims': 'self._visual_dims[bn]'}), '(vector_dims=self._vector_dims[bn], visual_dims=self._visual_dims[bn]\n )\n', (6403, 6478), False, 'from rls.common.specs import EnvAgentSpec, SensorSpec\n'), ((10191, 10233), 'rls.common.data.Data', 'Data', ([], {'begin_mask': 'begin_mask[:, np.newaxis]'}), '(begin_mask=begin_mask[:, np.newaxis])\n', (10195, 10233), False, 'from rls.common.data import Data\n'), ((10709, 10728), 'numpy.asarray', 'np.asarray', (['(x * 255)'], {}), '(x * 255)\n', (10719, 10728), True, 'import numpy as np\n'), ((9694, 9728), 'numpy.full', 'np.full', (['(self._n_copies, 1)', '(True)'], {}), '((self._n_copies, 1), True)\n', (9701, 9728), True, 'import numpy as np\n'), ((4568, 4609), 'numpy.asarray', 'np.asarray', (['action_spec.discrete_branches'], {}), '(action_spec.discrete_branches)\n', (4578, 4609), True, 'import numpy as np\n')] |
"""
`myplotlib.tests`
commands to help preview the custom styles (function names are self-descriptive). available functions are:
* testColormaps
* testColors
* testScatter
* testPlot
* testErrorbar
* testPlot2d
* testVectorPlot2d
* testAll
"""
import myplotlib.plots as myplt
import myplotlib
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
def __getAx(ax):
if ax is None:
fig, ax = plt.subplots()
return ax
def testColormaps(ax=None):
ax = __getAx(ax)
zz = [np.linspace(0, 1, 256)]
pad = 0.3
dy = (1 - pad) / (len(myplotlib.CUSTOM_CMAPS))
pady = pad / (len(myplotlib.CUSTOM_CMAPS))
for i, cm in enumerate(myplotlib.CUSTOM_CMAPS):
y1, y2 = (pady * (i + 0.5) + dy * i, pady * (i + 0.5) + dy * (i + 1))
ax.imshow(zz, extent=(0, 1, y1, y2), cmap=cm);
if matplotlib.rcParams['text.usetex']:
name = r"$\texttt{{'{}'}}$".format(cm)
else:
name = f"\'{cm}\'"
ax.text(1.04, 0.5 * (y1 + y2), name, va='center', ha='left')
ax.set_ylim(0, 1);
ax.axis('off');
ax.set_title("extra colormaps")
def testColors(ax=None):
ax = __getAx(ax)
prop_cycle = plt.rcParams['axes.prop_cycle']
colors = prop_cycle.by_key()['color']
title = 'default color cycle'
ax.set_title(title)
for j, c in enumerate(colors):
v_offset = -(j / len(colors))
th = np.linspace(0, 2*np.pi, 512)
ax.plot(th, .1*np.sin(th) + v_offset, color=c, lw=2)
if matplotlib.rcParams['text.usetex']:
name = r"$\texttt{{'C{}'}}$".format(j)
else:
name = f"\'C{j}\'"
ax.annotate(name,
(0, v_offset),
xytext=(-1.5, 0),
ha='right',
va='center',
color=c,
textcoords='offset points')
if matplotlib.rcParams['text.usetex']:
name = r"$\texttt{{{}}}$".format(c.replace('#', '\#'))
else:
name = f"{c}"
ax.annotate(name,
(2*np.pi, v_offset),
xytext=(1.5, 0),
ha='left',
va='center',
color=c,
textcoords='offset points')
ax.axis('off')
def testScatter(ax=None):
ax = __getAx(ax)
myplt.scatter(ax,
np.random.random(100), np.random.random(100),
xlog=True, ylog=True,
s=(0.1 + np.random.random(100)) * 20,
c='C0', label='drunk points', marker='*')
myplt.scatter(ax,
10**(np.random.random(100)*2 - 2), 10**(np.random.random(100)*2 - 2),
xlog=True, ylog=True,
s=(0.1 + np.random.random(100)) * 20,
c='C1', label='sober points', pady=0.5, padx=0.2,
ylim=(1e-2, None), xlim=(1e-2, None))
plt.legend(loc = 'lower left')
ax.set_xlabel(r'some funny number $x^2/y$ [units]');
ax.set_ylabel(r'other number $z_{\nu}$ [units]');
def testPlot(ax=None):
ax = __getAx(ax)
myplt.plot(ax, np.arange(100), 20 * (2 + np.sin(np.linspace(0, 20, 100)) + np.random.random(100)**5),
padx=0.2, pady=1, c='C4', ls=':');
myplt.plot(ax, np.arange(100), 20 * (2 + np.sin(np.linspace(0, 20, 100)) + np.random.random(100)**5),
padx=0.2, pady=1, c='C2');
ax.set_ylabel(r'probability [$\%$]')
ax.set_xlabel('age [yr]')
def testErrorbar(ax=None):
ax = __getAx(ax)
x = np.linspace(0, 1000, 10)
y = np.sin(x / 100)
dy = np.random.random(len(x)) * (y + 1.5) / 3
myplt.dataPlot(ax.errorbar, ax, x, y, yerr=dy, padx=0.1, pady=1,
marker='o', markeredgecolor=ax.get_facecolor(), markerfacecolor='C11', markeredgewidth=1.5)
ax.set_xlabel('time [s]')
ax.set_ylabel('my very accurately measured variable [ly]')
def testPlot2d(ax=None):
ax = __getAx(ax)
x = np.linspace(-3, 3, 240)
y = np.linspace(-3, 3, 200)
xx, yy = np.meshgrid(x, y)
zz = (xx**2 - np.sin(xx * yy**3)) + 6 * np.exp(-(xx**2 + yy**2) / 0.2)
myplt.plot2d(ax, x, y, zz, cmap='bipolar', centering='edge', padx=0.1, pady=0.1)
ax.set_xlabel('landscape in $x$')
ax.set_ylabel('landscape in $y$')
def testVectorPlot2d(ax=None):
ax = __getAx(ax)
vortex_spacing = 0.5
extra_factor = 2.
a = np.array([1, 0]) * vortex_spacing
b = np.array([np.cos(np.pi / 3),np.sin(np.pi / 3)]) * vortex_spacing
rnv = int(2 * extra_factor / vortex_spacing)
vortices = [n * a + m * b for n in range(-rnv, rnv) for m in range(-rnv, rnv)]
vortices = [(x, y) for (x, y) in vortices if -extra_factor < x < extra_factor and -extra_factor < y < extra_factor]
sx, sy = (1000, 1000)
xs = np.linspace(-1, 1, sx).astype(np.float64)[None,:]
ys = np.linspace(-1, 1, sy).astype(np.float64)[:,None]
vectors = np.zeros((sx,sy,2),dtype=np.float64)
for (x,y) in vortices:
rsq = (xs-x)**2 + (ys-y)**2
vectors[...,0] += (ys-y)/rsq
vectors[...,1] += -(xs-x)/rsq
myplt.plotVectorField(ax, xs, ys, vectors[:,:,0], vectors[:,:,1],
norm=matplotlib.colors.LogNorm(1, 1e2), cmap='turbo', lic_contrast=1)
def testAll():
fig = plt.figure(figsize=(12, 16))
axshape = (4, 2)
axi = 1
ax = plt.subplot(*axshape, axi)
testColors(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testColormaps(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testScatter(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testPlot(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testErrorbar(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testPlot2d(ax)
axi += 1
ax = plt.subplot(*axshape, axi)
testVectorPlot2d(ax)
axi += 1
# ax = plt.subplot(*axshape, axi)
# axi += 1
plt.tight_layout()
| [
"myplotlib.plots.plot2d",
"numpy.arange",
"numpy.random.random",
"numpy.exp",
"numpy.array",
"numpy.linspace",
"numpy.zeros",
"matplotlib.pyplot.figure",
"numpy.cos",
"matplotlib.pyplot.tight_layout",
"numpy.sin",
"numpy.meshgrid",
"matplotlib.pyplot.subplot",
"matplotlib.pyplot.subplots",... | [((2689, 2717), 'matplotlib.pyplot.legend', 'plt.legend', ([], {'loc': '"""lower left"""'}), "(loc='lower left')\n", (2699, 2717), True, 'import matplotlib.pyplot as plt\n'), ((3286, 3310), 'numpy.linspace', 'np.linspace', (['(0)', '(1000)', '(10)'], {}), '(0, 1000, 10)\n', (3297, 3310), True, 'import numpy as np\n'), ((3317, 3332), 'numpy.sin', 'np.sin', (['(x / 100)'], {}), '(x / 100)\n', (3323, 3332), True, 'import numpy as np\n'), ((3694, 3717), 'numpy.linspace', 'np.linspace', (['(-3)', '(3)', '(240)'], {}), '(-3, 3, 240)\n', (3705, 3717), True, 'import numpy as np\n'), ((3724, 3747), 'numpy.linspace', 'np.linspace', (['(-3)', '(3)', '(200)'], {}), '(-3, 3, 200)\n', (3735, 3747), True, 'import numpy as np\n'), ((3759, 3776), 'numpy.meshgrid', 'np.meshgrid', (['x', 'y'], {}), '(x, y)\n', (3770, 3776), True, 'import numpy as np\n'), ((3852, 3937), 'myplotlib.plots.plot2d', 'myplt.plot2d', (['ax', 'x', 'y', 'zz'], {'cmap': '"""bipolar"""', 'centering': '"""edge"""', 'padx': '(0.1)', 'pady': '(0.1)'}), "(ax, x, y, zz, cmap='bipolar', centering='edge', padx=0.1, pady=0.1\n )\n", (3864, 3937), True, 'import myplotlib.plots as myplt\n'), ((4606, 4645), 'numpy.zeros', 'np.zeros', (['(sx, sy, 2)'], {'dtype': 'np.float64'}), '((sx, sy, 2), dtype=np.float64)\n', (4614, 4645), True, 'import numpy as np\n'), ((4954, 4982), 'matplotlib.pyplot.figure', 'plt.figure', ([], {'figsize': '(12, 16)'}), '(figsize=(12, 16))\n', (4964, 4982), True, 'import matplotlib.pyplot as plt\n'), ((5020, 5046), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5031, 5046), True, 'import matplotlib.pyplot as plt\n'), ((5083, 5109), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5094, 5109), True, 'import matplotlib.pyplot as plt\n'), ((5149, 5175), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5160, 5175), True, 'import matplotlib.pyplot as plt\n'), ((5213, 5239), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5224, 5239), True, 'import matplotlib.pyplot as plt\n'), ((5274, 5300), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5285, 5300), True, 'import matplotlib.pyplot as plt\n'), ((5339, 5365), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5350, 5365), True, 'import matplotlib.pyplot as plt\n'), ((5402, 5428), 'matplotlib.pyplot.subplot', 'plt.subplot', (['*axshape', 'axi'], {}), '(*axshape, axi)\n', (5413, 5428), True, 'import matplotlib.pyplot as plt\n'), ((5516, 5534), 'matplotlib.pyplot.tight_layout', 'plt.tight_layout', ([], {}), '()\n', (5532, 5534), True, 'import matplotlib.pyplot as plt\n'), ((415, 429), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {}), '()\n', (427, 429), True, 'import matplotlib.pyplot as plt\n'), ((498, 520), 'numpy.linspace', 'np.linspace', (['(0)', '(1)', '(256)'], {}), '(0, 1, 256)\n', (509, 520), True, 'import numpy as np\n'), ((1326, 1356), 'numpy.linspace', 'np.linspace', (['(0)', '(2 * np.pi)', '(512)'], {}), '(0, 2 * np.pi, 512)\n', (1337, 1356), True, 'import numpy as np\n'), ((2197, 2218), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2213, 2218), True, 'import numpy as np\n'), ((2220, 2241), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2236, 2241), True, 'import numpy as np\n'), ((2887, 2901), 'numpy.arange', 'np.arange', (['(100)'], {}), '(100)\n', (2896, 2901), True, 'import numpy as np\n'), ((3039, 3053), 'numpy.arange', 'np.arange', (['(100)'], {}), '(100)\n', (3048, 3053), True, 'import numpy as np\n'), ((4105, 4121), 'numpy.array', 'np.array', (['[1, 0]'], {}), '([1, 0])\n', (4113, 4121), True, 'import numpy as np\n'), ((3793, 3813), 'numpy.sin', 'np.sin', (['(xx * yy ** 3)'], {}), '(xx * yy ** 3)\n', (3799, 3813), True, 'import numpy as np\n'), ((3819, 3853), 'numpy.exp', 'np.exp', (['(-(xx ** 2 + yy ** 2) / 0.2)'], {}), '(-(xx ** 2 + yy ** 2) / 0.2)\n', (3825, 3853), True, 'import numpy as np\n'), ((4865, 4900), 'matplotlib.colors.LogNorm', 'matplotlib.colors.LogNorm', (['(1)', '(100.0)'], {}), '(1, 100.0)\n', (4890, 4900), False, 'import matplotlib\n'), ((4155, 4172), 'numpy.cos', 'np.cos', (['(np.pi / 3)'], {}), '(np.pi / 3)\n', (4161, 4172), True, 'import numpy as np\n'), ((4173, 4190), 'numpy.sin', 'np.sin', (['(np.pi / 3)'], {}), '(np.pi / 3)\n', (4179, 4190), True, 'import numpy as np\n'), ((4487, 4509), 'numpy.linspace', 'np.linspace', (['(-1)', '(1)', 'sx'], {}), '(-1, 1, sx)\n', (4498, 4509), True, 'import numpy as np\n'), ((4544, 4566), 'numpy.linspace', 'np.linspace', (['(-1)', '(1)', 'sy'], {}), '(-1, 1, sy)\n', (4555, 4566), True, 'import numpy as np\n'), ((1374, 1384), 'numpy.sin', 'np.sin', (['th'], {}), '(th)\n', (1380, 1384), True, 'import numpy as np\n'), ((2300, 2321), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2316, 2321), True, 'import numpy as np\n'), ((2422, 2443), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2438, 2443), True, 'import numpy as np\n'), ((2457, 2478), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2473, 2478), True, 'import numpy as np\n'), ((2544, 2565), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2560, 2565), True, 'import numpy as np\n'), ((2947, 2968), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (2963, 2968), True, 'import numpy as np\n'), ((3099, 3120), 'numpy.random.random', 'np.random.random', (['(100)'], {}), '(100)\n', (3115, 3120), True, 'import numpy as np\n'), ((2920, 2943), 'numpy.linspace', 'np.linspace', (['(0)', '(20)', '(100)'], {}), '(0, 20, 100)\n', (2931, 2943), True, 'import numpy as np\n'), ((3072, 3095), 'numpy.linspace', 'np.linspace', (['(0)', '(20)', '(100)'], {}), '(0, 20, 100)\n', (3083, 3095), True, 'import numpy as np\n')] |
# Code adapted from https://github.com/google-research/google-research/tree/master/flax_models/cifar
# Original copyright statement:
# Copyright 2020 The Google Research Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Wide Resnet Model.
Reference:
Wide Residual Networks, <NAME>, <NAME>
https://arxiv.org/abs/1605.07146
Initially forked from
github.com/google/flax/blob/master/examples/cifar10/models/wideresnet.py
This implementation mimics the one from
github.com/tensorflow/models/blob/master/research/autoaugment/wrn.py
that is widely used as a benchmark.
It uses identity + zero padding skip connections, with kaiming normal
initialization for convolutional kernels (mode = fan_out, gain=2.0).
The final dense layer uses a uniform distribution U[-scale, scale] where
scale = 1 / sqrt(num_classes) as per the autoaugment implementation.
Using the default initialization instead gives error rates approximately 0.5%
greater on cifar100, most likely because the parameters used in the literature
were finetuned for this particular initialization.
Finally, the autoaugment implementation adds more residual connections between
the groups (instead of just between the blocks as per the original paper and
most implementations). It is possible to safely remove those connections without
degrading the performance, which we do by default to match the original
wideresnet paper. Setting `use_additional_skip_connections` to True will add
them back and then reproduces exactly the model used in autoaugment.
"""
import numpy as np
import flax
from flax import linen as nn
import jax
import jax.numpy as jnp
from typing import Any, Tuple, Optional
_BATCHNORM_MOMENTUM = 0.9
_BATCHNORM_EPSILON = 1e-5
# Kaiming initialization with fan out mode. Should be used to initialize
# convolutional kernels.
conv_kernel_init_fn = jax.nn.initializers.variance_scaling(
2.0, 'fan_out', 'normal')
def dense_layer_init_fn(key,
shape,
dtype=jnp.float32):
"""Initializer for the final dense layer.
Args:
key: PRNG key to use to sample the weights.
shape: Shape of the tensor to initialize.
dtype: Data type of the tensor to initialize.
Returns:
The initialized tensor.
"""
num_units_out = shape[1]
unif_init_range = 1.0 / (num_units_out) ** (0.5)
return jax.random.uniform(key, shape, dtype, -1) * unif_init_range
def shake_shake_train(xa,
xb,
rng=None):
"""Shake-shake regularization in training mode.
Shake-shake regularization interpolates between inputs A and B
with *different* random uniform (per-sample) interpolation factors
for the forward and backward/gradient passes.
Args:
xa: Input, branch A.
xb: Input, branch B.
rng: PRNG key.
Returns:
Mix of input branches.
"""
if rng is None:
rng = flax.nn.make_rng()
gate_forward_key, gate_backward_key = jax.random.split(rng, num=2)
gate_shape = (len(xa), 1, 1, 1)
# Draw different interpolation factors (gate) for forward and backward pass.
gate_forward = jax.random.uniform(
gate_forward_key, gate_shape, dtype=jnp.float32, minval=0.0, maxval=1.0)
gate_backward = jax.random.uniform(
gate_backward_key, gate_shape, dtype=jnp.float32, minval=0.0, maxval=1.0)
# Compute interpolated x for forward and backward.
x_forward = xa * gate_forward + xb * (1.0 - gate_forward)
x_backward = xa * gate_backward + xb * (1.0 - gate_backward)
# Combine using stop_gradient.
return x_backward + jax.lax.stop_gradient(x_forward - x_backward)
def shake_shake_eval(xa, xb):
"""Shake-shake regularization in testing mode.
Args:
xa: Input, branch A.
xb: Input, branch B.
Returns:
Mix of input branches.
"""
# Blend between inputs A and B 50%-50%.
return (xa + xb) * 0.5
def shake_drop_train(x,
mask_prob,
alpha_min,
alpha_max,
beta_min,
beta_max,
rng=None):
"""ShakeDrop training pass.
See https://arxiv.org/abs/1802.02375
Args:
x: Input to apply ShakeDrop to.
mask_prob: Mask probability.
alpha_min: Alpha range lower.
alpha_max: Alpha range upper.
beta_min: Beta range lower.
beta_max: Beta range upper.
rng: PRNG key (if `None`, uses `flax.nn.make_rng`).
Returns:
The regularized tensor.
"""
if rng is None:
rng = flax.nn.make_rng()
bern_key, alpha_key, beta_key = jax.random.split(rng, num=3)
rnd_shape = (len(x), 1, 1, 1)
# Bernoulli variable b_l in Eqn 6, https://arxiv.org/abs/1802.02375.
mask = jax.random.bernoulli(bern_key, mask_prob, rnd_shape)
mask = mask.astype(jnp.float32)
alpha_values = jax.random.uniform(
alpha_key,
rnd_shape,
dtype=jnp.float32,
minval=alpha_min,
maxval=alpha_max)
beta_values = jax.random.uniform(
beta_key, rnd_shape, dtype=jnp.float32, minval=beta_min, maxval=beta_max)
# See Eqn 6 in https://arxiv.org/abs/1802.02375.
rand_forward = mask + alpha_values - mask * alpha_values
rand_backward = mask + beta_values - mask * beta_values
return x * rand_backward + jax.lax.stop_gradient(
x * rand_forward - x * rand_backward)
def shake_drop_eval(x,
mask_prob,
alpha_min,
alpha_max):
"""ShakeDrop eval pass.
See https://arxiv.org/abs/1802.02375
Args:
x: Input to apply ShakeDrop to.
mask_prob: Mask probability.
alpha_min: Alpha range lower.
alpha_max: Alpha range upper.
Returns:
The regularized tensor.
"""
expected_alpha = (alpha_max + alpha_min) / 2
# See Eqn 6 in https://arxiv.org/abs/1802.02375.
return (mask_prob + expected_alpha - mask_prob * expected_alpha) * x
def activation(x,
train,
apply_relu=True,
name=''):
x = nn.GroupNorm(name=name, epsilon=1e-5, num_groups=min(x.shape[-1] // 4, 32))(x)
if apply_relu:
x = jax.nn.relu(x)
return x
def _output_add(block_x, orig_x):
"""Add two tensors, padding them with zeros or pooling them if necessary.
Args:
block_x: Output of a resnet block.
orig_x: Residual branch to add to the output of the resnet block.
Returns:
The sum of blocks_x and orig_x. If necessary, orig_x will be average pooled
or zero padded so that its shape matches orig_x.
"""
stride = orig_x.shape[-2] // block_x.shape[-2]
strides = (stride, stride)
if block_x.shape[-1] != orig_x.shape[-1]:
orig_x = nn.avg_pool(orig_x, strides, strides)
channels_to_add = block_x.shape[-1] - orig_x.shape[-1]
orig_x = jnp.pad(orig_x, [(0, 0), (0, 0), (0, 0), (0, channels_to_add)])
return block_x + orig_x
class GaussianFourierProjection(nn.Module):
"""Gaussian Fourier embeddings for noise levels."""
embedding_size: int = 256
scale: float = 1.0
@nn.compact
def __call__(self, x):
W = self.param('W', jax.nn.initializers.normal(stddev=self.scale), (self.embedding_size,))
W = jax.lax.stop_gradient(W)
x_proj = x[:, None] * W[None, :] * 2 * jnp.pi
return jnp.concatenate([jnp.sin(x_proj), jnp.cos(x_proj)], axis=-1)
class WideResnetBlock(nn.Module):
"""Defines a single WideResnetBlock."""
channels: int
strides: Tuple[int] = (1, 1)
activate_before_residual: bool = False
@nn.compact
def __call__(self, x, temb=None, train=True):
if self.activate_before_residual:
x = activation(x, train, name='init_bn')
orig_x = x
else:
orig_x = x
block_x = x
if not self.activate_before_residual:
block_x = activation(block_x, train, name='init_bn')
block_x = nn.Conv(
self.channels, (3, 3),
self.strides,
padding='SAME',
use_bias=False,
kernel_init=conv_kernel_init_fn,
name='conv1')(block_x)
if temb is not None:
block_x += nn.Dense(self.channels)(nn.swish(temb))[:, None, None, :]
block_x = activation(block_x, train=train, name='bn_2')
block_x = nn.Conv(
self.channels, (3, 3),
padding='SAME',
use_bias=False,
kernel_init=conv_kernel_init_fn,
name='conv2')(block_x)
return _output_add(block_x, orig_x)
class WideResnetGroup(nn.Module):
"""Defines a WideResnetGroup."""
blocks_per_group: int
channels: int
strides: Tuple[int] = (1, 1)
activate_before_residual: bool = False
@nn.compact
def __call__(self, x, temb=None, train=True):
for i in range(self.blocks_per_group):
x = WideResnetBlock(self.channels, self.strides if i == 0 else (1, 1),
activate_before_residual=self.activate_before_residual and not i,
)(x, temb, train)
return x
class WideResnet(nn.Module):
"""Defines the WideResnet Model."""
blocks_per_group: int
channel_multiplier: int
num_outputs: int
@nn.compact
def __call__(self, x, sigmas, train=True):
# per image standardization
N = np.prod(x.shape[1:])
x = (x - jnp.mean(x, axis=(1, 2, 3), keepdims=True)) / jnp.maximum(jnp.std(x, axis=(1, 2, 3), keepdims=True),
1. / np.sqrt(N))
temb = GaussianFourierProjection(embedding_size=128, scale=16)(jnp.log(sigmas))
temb = nn.Dense(128 * 4)(temb)
temb = nn.Dense(128 * 4)(nn.swish(temb))
x = nn.Conv(16, (3, 3), padding='SAME', name='init_conv', kernel_init=conv_kernel_init_fn, use_bias=False)(x)
x = WideResnetGroup(self.blocks_per_group, 16 * self.channel_multiplier,
activate_before_residual=True)(x, temb, train)
x = WideResnetGroup(self.blocks_per_group, 32 * self.channel_multiplier, (2, 2))(x, temb, train)
x = WideResnetGroup(self.blocks_per_group, 64 * self.channel_multiplier, (2, 2))(x, temb, train)
x = activation(x, train=train, name='pre-pool-bn')
x = nn.avg_pool(x, x.shape[1:3])
x = x.reshape((x.shape[0], -1))
x = nn.Dense(self.num_outputs, kernel_init=dense_layer_init_fn)(x)
return x
| [
"numpy.prod",
"numpy.sqrt",
"jax.numpy.pad",
"flax.linen.Dense",
"jax.numpy.log",
"jax.nn.initializers.variance_scaling",
"flax.linen.Conv",
"flax.linen.swish",
"jax.nn.relu",
"jax.numpy.mean",
"jax.random.split",
"jax.nn.initializers.normal",
"jax.random.bernoulli",
"jax.numpy.sin",
"ja... | [((2337, 2399), 'jax.nn.initializers.variance_scaling', 'jax.nn.initializers.variance_scaling', (['(2.0)', '"""fan_out"""', '"""normal"""'], {}), "(2.0, 'fan_out', 'normal')\n", (2373, 2399), False, 'import jax\n'), ((3429, 3457), 'jax.random.split', 'jax.random.split', (['rng'], {'num': '(2)'}), '(rng, num=2)\n', (3445, 3457), False, 'import jax\n'), ((3589, 3685), 'jax.random.uniform', 'jax.random.uniform', (['gate_forward_key', 'gate_shape'], {'dtype': 'jnp.float32', 'minval': '(0.0)', 'maxval': '(1.0)'}), '(gate_forward_key, gate_shape, dtype=jnp.float32, minval=\n 0.0, maxval=1.0)\n', (3607, 3685), False, 'import jax\n'), ((3704, 3801), 'jax.random.uniform', 'jax.random.uniform', (['gate_backward_key', 'gate_shape'], {'dtype': 'jnp.float32', 'minval': '(0.0)', 'maxval': '(1.0)'}), '(gate_backward_key, gate_shape, dtype=jnp.float32, minval\n =0.0, maxval=1.0)\n', (3722, 3801), False, 'import jax\n'), ((5010, 5038), 'jax.random.split', 'jax.random.split', (['rng'], {'num': '(3)'}), '(rng, num=3)\n', (5026, 5038), False, 'import jax\n'), ((5151, 5203), 'jax.random.bernoulli', 'jax.random.bernoulli', (['bern_key', 'mask_prob', 'rnd_shape'], {}), '(bern_key, mask_prob, rnd_shape)\n', (5171, 5203), False, 'import jax\n'), ((5256, 5356), 'jax.random.uniform', 'jax.random.uniform', (['alpha_key', 'rnd_shape'], {'dtype': 'jnp.float32', 'minval': 'alpha_min', 'maxval': 'alpha_max'}), '(alpha_key, rnd_shape, dtype=jnp.float32, minval=\n alpha_min, maxval=alpha_max)\n', (5274, 5356), False, 'import jax\n'), ((5389, 5485), 'jax.random.uniform', 'jax.random.uniform', (['beta_key', 'rnd_shape'], {'dtype': 'jnp.float32', 'minval': 'beta_min', 'maxval': 'beta_max'}), '(beta_key, rnd_shape, dtype=jnp.float32, minval=beta_min,\n maxval=beta_max)\n', (5407, 5485), False, 'import jax\n'), ((2839, 2880), 'jax.random.uniform', 'jax.random.uniform', (['key', 'shape', 'dtype', '(-1)'], {}), '(key, shape, dtype, -1)\n', (2857, 2880), False, 'import jax\n'), ((3370, 3388), 'flax.nn.make_rng', 'flax.nn.make_rng', ([], {}), '()\n', (3386, 3388), False, 'import flax\n'), ((4033, 4078), 'jax.lax.stop_gradient', 'jax.lax.stop_gradient', (['(x_forward - x_backward)'], {}), '(x_forward - x_backward)\n', (4054, 4078), False, 'import jax\n'), ((4957, 4975), 'flax.nn.make_rng', 'flax.nn.make_rng', ([], {}), '()\n', (4973, 4975), False, 'import flax\n'), ((5684, 5743), 'jax.lax.stop_gradient', 'jax.lax.stop_gradient', (['(x * rand_forward - x * rand_backward)'], {}), '(x * rand_forward - x * rand_backward)\n', (5705, 5743), False, 'import jax\n'), ((6504, 6518), 'jax.nn.relu', 'jax.nn.relu', (['x'], {}), '(x)\n', (6515, 6518), False, 'import jax\n'), ((7048, 7085), 'flax.linen.avg_pool', 'nn.avg_pool', (['orig_x', 'strides', 'strides'], {}), '(orig_x, strides, strides)\n', (7059, 7085), True, 'from flax import linen as nn\n'), ((7158, 7221), 'jax.numpy.pad', 'jnp.pad', (['orig_x', '[(0, 0), (0, 0), (0, 0), (0, channels_to_add)]'], {}), '(orig_x, [(0, 0), (0, 0), (0, 0), (0, channels_to_add)])\n', (7165, 7221), True, 'import jax.numpy as jnp\n'), ((7540, 7564), 'jax.lax.stop_gradient', 'jax.lax.stop_gradient', (['W'], {}), '(W)\n', (7561, 7564), False, 'import jax\n'), ((9467, 9487), 'numpy.prod', 'np.prod', (['x.shape[1:]'], {}), '(x.shape[1:])\n', (9474, 9487), True, 'import numpy as np\n'), ((10382, 10410), 'flax.linen.avg_pool', 'nn.avg_pool', (['x', 'x.shape[1:3]'], {}), '(x, x.shape[1:3])\n', (10393, 10410), True, 'from flax import linen as nn\n'), ((7461, 7506), 'jax.nn.initializers.normal', 'jax.nn.initializers.normal', ([], {'stddev': 'self.scale'}), '(stddev=self.scale)\n', (7487, 7506), False, 'import jax\n'), ((8178, 8305), 'flax.linen.Conv', 'nn.Conv', (['self.channels', '(3, 3)', 'self.strides'], {'padding': '"""SAME"""', 'use_bias': '(False)', 'kernel_init': 'conv_kernel_init_fn', 'name': '"""conv1"""'}), "(self.channels, (3, 3), self.strides, padding='SAME', use_bias=False,\n kernel_init=conv_kernel_init_fn, name='conv1')\n", (8185, 8305), True, 'from flax import linen as nn\n'), ((8523, 8637), 'flax.linen.Conv', 'nn.Conv', (['self.channels', '(3, 3)'], {'padding': '"""SAME"""', 'use_bias': '(False)', 'kernel_init': 'conv_kernel_init_fn', 'name': '"""conv2"""'}), "(self.channels, (3, 3), padding='SAME', use_bias=False, kernel_init=\n conv_kernel_init_fn, name='conv2')\n", (8530, 8637), True, 'from flax import linen as nn\n'), ((9757, 9772), 'jax.numpy.log', 'jnp.log', (['sigmas'], {}), '(sigmas)\n', (9764, 9772), True, 'import jax.numpy as jnp\n'), ((9785, 9802), 'flax.linen.Dense', 'nn.Dense', (['(128 * 4)'], {}), '(128 * 4)\n', (9793, 9802), True, 'from flax import linen as nn\n'), ((9820, 9837), 'flax.linen.Dense', 'nn.Dense', (['(128 * 4)'], {}), '(128 * 4)\n', (9828, 9837), True, 'from flax import linen as nn\n'), ((9838, 9852), 'flax.linen.swish', 'nn.swish', (['temb'], {}), '(temb)\n', (9846, 9852), True, 'from flax import linen as nn\n'), ((9863, 9970), 'flax.linen.Conv', 'nn.Conv', (['(16)', '(3, 3)'], {'padding': '"""SAME"""', 'name': '"""init_conv"""', 'kernel_init': 'conv_kernel_init_fn', 'use_bias': '(False)'}), "(16, (3, 3), padding='SAME', name='init_conv', kernel_init=\n conv_kernel_init_fn, use_bias=False)\n", (9870, 9970), True, 'from flax import linen as nn\n'), ((10455, 10514), 'flax.linen.Dense', 'nn.Dense', (['self.num_outputs'], {'kernel_init': 'dense_layer_init_fn'}), '(self.num_outputs, kernel_init=dense_layer_init_fn)\n', (10463, 10514), True, 'from flax import linen as nn\n'), ((7643, 7658), 'jax.numpy.sin', 'jnp.sin', (['x_proj'], {}), '(x_proj)\n', (7650, 7658), True, 'import jax.numpy as jnp\n'), ((7660, 7675), 'jax.numpy.cos', 'jnp.cos', (['x_proj'], {}), '(x_proj)\n', (7667, 7675), True, 'import jax.numpy as jnp\n'), ((9501, 9543), 'jax.numpy.mean', 'jnp.mean', (['x'], {'axis': '(1, 2, 3)', 'keepdims': '(True)'}), '(x, axis=(1, 2, 3), keepdims=True)\n', (9509, 9543), True, 'import jax.numpy as jnp\n'), ((9559, 9600), 'jax.numpy.std', 'jnp.std', (['x'], {'axis': '(1, 2, 3)', 'keepdims': '(True)'}), '(x, axis=(1, 2, 3), keepdims=True)\n', (9566, 9600), True, 'import jax.numpy as jnp\n'), ((8391, 8414), 'flax.linen.Dense', 'nn.Dense', (['self.channels'], {}), '(self.channels)\n', (8399, 8414), True, 'from flax import linen as nn\n'), ((8415, 8429), 'flax.linen.swish', 'nn.swish', (['temb'], {}), '(temb)\n', (8423, 8429), True, 'from flax import linen as nn\n'), ((9678, 9688), 'numpy.sqrt', 'np.sqrt', (['N'], {}), '(N)\n', (9685, 9688), True, 'import numpy as np\n')] |
# -*- coding: utf-8 -*-
"""
Created on Mon Apr 30 10:05:09 2018
@author: Administrator
"""
from sklearn.datasets import load_files
from keras.utils import np_utils
import numpy as np
from glob import glob
from keras.preprocessing import image
import keras
from sklearn.model_selection import train_test_split
from sklearn.ensemble import GradientBoostingClassifier, RandomForestClassifier
from keras.layers import Conv2D, MaxPooling2D, GlobalAveragePooling2D
from keras.models import Sequential, load_model, Model
from keras.layers import Input, BatchNormalization
from keras.layers import Dense, LSTM, GlobalAveragePooling1D, GlobalAveragePooling2D
from keras.layers import Activation, Flatten, Dropout, BatchNormalization
from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
def load_dataset(path):
data = load_files(path)
dog_files = np.array(data['filenames'])
dog_targets = np_utils.to_categorical(np.array(data['target']), 133)
return dog_files, dog_targets
train_files, train_targets = load_dataset('data/training_images')
valid_files, valid_targets = load_dataset('data/validation_images')
test_files, test_targets = load_dataset('data/testing_images')
def path_to_tensors(image_path):
img = image.load_img(image_path, target_size= (331, 331))
x = image.img_to_array(img)
return np.expand_dims(x, axis = 0)
# pre-process the data for Keras
train_tensors = paths_to_tensor(train_files).astype('float32')/255
valid_tensors = paths_to_tensor(valid_files).astype('float32')/255
test_tensors = paths_to_tensor(test_files).astype('float32')/255
#using NASNet pretrained model
model = keras.applications.nasnet.NASNetLarge(input_shape=(331,331,3), include_top=True, weights='imagenet',
input_tensor=None, pooling=None)
def multi_model():
model_input = Input(shape=(331, 331, 3))
x = BatchNormalization()(model_input)
# Define a model architecture
x = Conv2D(32, (5, 5), activation='relu', padding='same')(model_input)
x = MaxPooling2D(pool_size=(2, 2))(x)
x = Dropout(0.25)(x)
x = Conv2D(128, (5, 5), activation='relu', padding='same')(x)
x = MaxPooling2D(pool_size=(2, 2))(x)
x = Dropout(0.25)(x)
x = GlobalMaxPooling2D()(x)
x = Dense(512, activation='relu')(x)
x = Dropout(0.25)(x)
y1 = Dense(228, activation='softmax')(x)
model = Model(inputs=model_input, outputs=y1)
# Compile the model
model.compile(loss='categorical_crossentropy', optimizer='nadam', metrics=['accuracy'])
return model
multi_model = multi_model()
| [
"keras.preprocessing.image.img_to_array",
"keras.layers.Conv2D",
"keras.layers.GlobalMaxPooling2D",
"keras.layers.MaxPooling2D",
"sklearn.datasets.load_files",
"numpy.array",
"keras.layers.Input",
"keras.applications.nasnet.NASNetLarge",
"keras.models.Model",
"numpy.expand_dims",
"keras.layers.D... | [((1811, 1950), 'keras.applications.nasnet.NASNetLarge', 'keras.applications.nasnet.NASNetLarge', ([], {'input_shape': '(331, 331, 3)', 'include_top': '(True)', 'weights': '"""imagenet"""', 'input_tensor': 'None', 'pooling': 'None'}), "(input_shape=(331, 331, 3),\n include_top=True, weights='imagenet', input_tensor=None, pooling=None)\n", (1848, 1950), False, 'import keras\n'), ((977, 993), 'sklearn.datasets.load_files', 'load_files', (['path'], {}), '(path)\n', (987, 993), False, 'from sklearn.datasets import load_files\n'), ((1011, 1038), 'numpy.array', 'np.array', (["data['filenames']"], {}), "(data['filenames'])\n", (1019, 1038), True, 'import numpy as np\n'), ((1403, 1453), 'keras.preprocessing.image.load_img', 'image.load_img', (['image_path'], {'target_size': '(331, 331)'}), '(image_path, target_size=(331, 331))\n', (1417, 1453), False, 'from keras.preprocessing import image\n'), ((1464, 1487), 'keras.preprocessing.image.img_to_array', 'image.img_to_array', (['img'], {}), '(img)\n', (1482, 1487), False, 'from keras.preprocessing import image\n'), ((1500, 1525), 'numpy.expand_dims', 'np.expand_dims', (['x'], {'axis': '(0)'}), '(x, axis=0)\n', (1514, 1525), True, 'import numpy as np\n'), ((2046, 2072), 'keras.layers.Input', 'Input', ([], {'shape': '(331, 331, 3)'}), '(shape=(331, 331, 3))\n', (2051, 2072), False, 'from keras.layers import Input, BatchNormalization\n'), ((2662, 2699), 'keras.models.Model', 'Model', ([], {'inputs': 'model_input', 'outputs': 'y1'}), '(inputs=model_input, outputs=y1)\n', (2667, 2699), False, 'from keras.models import Sequential, load_model, Model\n'), ((1082, 1106), 'numpy.array', 'np.array', (["data['target']"], {}), "(data['target'])\n", (1090, 1106), True, 'import numpy as np\n'), ((2082, 2102), 'keras.layers.BatchNormalization', 'BatchNormalization', ([], {}), '()\n', (2100, 2102), False, 'from keras.layers import Activation, Flatten, Dropout, BatchNormalization\n'), ((2166, 2219), 'keras.layers.Conv2D', 'Conv2D', (['(32)', '(5, 5)'], {'activation': '"""relu"""', 'padding': '"""same"""'}), "(32, (5, 5), activation='relu', padding='same')\n", (2172, 2219), False, 'from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D\n'), ((2242, 2272), 'keras.layers.MaxPooling2D', 'MaxPooling2D', ([], {'pool_size': '(2, 2)'}), '(pool_size=(2, 2))\n', (2254, 2272), False, 'from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D\n'), ((2289, 2302), 'keras.layers.Dropout', 'Dropout', (['(0.25)'], {}), '(0.25)\n', (2296, 2302), False, 'from keras.layers import Activation, Flatten, Dropout, BatchNormalization\n'), ((2321, 2375), 'keras.layers.Conv2D', 'Conv2D', (['(128)', '(5, 5)'], {'activation': '"""relu"""', 'padding': '"""same"""'}), "(128, (5, 5), activation='relu', padding='same')\n", (2327, 2375), False, 'from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D\n'), ((2395, 2425), 'keras.layers.MaxPooling2D', 'MaxPooling2D', ([], {'pool_size': '(2, 2)'}), '(pool_size=(2, 2))\n', (2407, 2425), False, 'from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D\n'), ((2442, 2455), 'keras.layers.Dropout', 'Dropout', (['(0.25)'], {}), '(0.25)\n', (2449, 2455), False, 'from keras.layers import Activation, Flatten, Dropout, BatchNormalization\n'), ((2484, 2504), 'keras.layers.GlobalMaxPooling2D', 'GlobalMaxPooling2D', ([], {}), '()\n', (2502, 2504), False, 'from keras.layers import Conv2D, MaxPooling2D, GlobalMaxPooling2D\n'), ((2523, 2552), 'keras.layers.Dense', 'Dense', (['(512)'], {'activation': '"""relu"""'}), "(512, activation='relu')\n", (2528, 2552), False, 'from keras.layers import Dense, LSTM, GlobalAveragePooling1D, GlobalAveragePooling2D\n'), ((2569, 2582), 'keras.layers.Dropout', 'Dropout', (['(0.25)'], {}), '(0.25)\n', (2576, 2582), False, 'from keras.layers import Activation, Flatten, Dropout, BatchNormalization\n'), ((2602, 2634), 'keras.layers.Dense', 'Dense', (['(228)'], {'activation': '"""softmax"""'}), "(228, activation='softmax')\n", (2607, 2634), False, 'from keras.layers import Dense, LSTM, GlobalAveragePooling1D, GlobalAveragePooling2D\n')] |
import os
import re
import numpy as np
from parsefchk import parse_fchk
LAST_UPDATE = '201706021601'
def gen_fchk(mfn, data, ofn='', title=None, suffix='_rlo', overwrite=False):
# text: info, energy, coeff, rest
# data: energy, coeff, dim
if not ofn:
t, ext = os.path.splitext(mfn)
ofn = t + suffix + ext
if not overwrite and os.path.exists(ofn):
overwriteflag = input('Overwrite file %s? Y/N ' % ofn)
if overwriteflag.lower() != 'y':
print(ofn, 'skipped.')
return False
title = title or os.path.splitext(ofn)[0]
fchk = parse_fchk(mfn)
text = fchk['text']
dim_mo, dim_bs = fchk['data']['dim']
dim_nmo, dim_nbs = data.get('dim', (dim_mo, dim_bs))
assert dim_bs == dim_nbs
if dim_nmo == dim_mo:
for e in data['energy']:
assert e.shape == (dim_nmo,)
for c in data['coeff']:
assert c.shape == (dim_nmo, dim_bs)
elif dim_nmo < dim_mo:
# for spin, e in enumerate(data['energy']):
# data['energy'][spin] = np.append(e, np.zeros(dim_mo - dim_nmo), axis = 0)
# assert data['energy'][spin].shape == (dim_mo,)
data['energy'] = [np.append(e, np.zeros(dim_mo - dim_nmo), axis=0) for spin, e in enumerate(data['energy'])]
# for spin, c in enumerate(data['coeff']):
# data['coeff'][spin] = np.append(c, np.zeros((dim_mo - dim_nmo, dim_bs)), axis = 0)
# assert data['coeff'][spin].shape == (dim_mo, dim_bs)
data['coeff'] = [np.append(c, np.zeros((dim_mo - dim_nmo, dim_bs)), axis=0) for spin, c in enumerate(data['coeff'])]
dim_nmo = dim_mo
else:
# raise AssertionError('Number of new orbitals exceeds number of original orbitals')
for lid, line in enumerate(text['info']):
text['info'][lid] = line.replace(str(dim_mo), str(dim_nmo))
text['energy'][0] = text['energy'][0].replace(str(dim_mo), str(dim_nmo))
text['coeff'][0] = text['coeff'][0].replace(str(dim_mo*dim_bs), str(dim_nmo*dim_bs))
if len(data['energy']) != len(text['energy']):
print('Warning: Spin symmetry not match!')
amoeline = text['energy'][0]
bmoeline = amoeline.replace('Alpha Orbital Energies', 'Beta Orbital Energies ')
text['energy'] = [amoeline, bmoeline]
amocline = text['coeff'][0]
bmocline = amocline.replace('Alpha MO coefficients', 'Beta MO coefficients ')
text['coeff'] = [amocline, bmocline]
# print('%s generated.' % ofn)
f = open(ofn, 'w')
write = f.write
writes = lambda s: write(s + '\n')
writel = lambda l: write('\n'.join(l) + '\n')
writes(title)
writel(text['info'][1:])
for spin, energy in enumerate(data['energy']):
writes(text['energy'][spin])
for i, e in enumerate(['%16.8E' % e for e in energy]):
write(e)
if (i + 1) % 5 == 0:
write('\n')
if (i + 1) % 5 != 0:
write('\n')
for spin, coeff in enumerate(data['coeff']):
writes(text['coeff'][spin])
# print(coeff)
for i, e in enumerate(['%16.8E' % e for e in coeff.reshape(1,-1)[0]]):
write(e)
if (i + 1) % 5 == 0:
write('\n')
if (i + 1) % 5 != 0:
write('\n')
writel(text['rest'])
f.close()
return ofn
def quicksave(mfn, xoao, fmxo, suffix='_rlo', overwrite=False):
if xoao.ndim == 2:
if fmxo.ndim == 2:
energies = np.diag(fmxo)
elif fmxo.ndim == 1:
energies = fmxo
else:
raise UserWarning('Invalid shape of fock matrix')
assert energies.shape[0] == xoao.shape[0]
data = {'energy': [energies],
'coeff': [xoao],
'dim': xoao.shape}
elif xoao.ndim == 3:
if fmxo.ndim == 3:
energies = np.diagonal(fmxo, axis1=1, axis2=2)
elif fmxo.ndim == 2:
energies = fmxo
else:
raise UserWarning('Invalid shape of fock matrix')
assert energies.shape[1] == xoao.shape[1]
assert energies.shape[0] == xoao.shape[0]
data = {'energy': energies,
'coeff': xoao,
'dim': xoao.shape[1:]}
else:
raise UserWarning('Unrecognized data shape: %s' % xoao.shape)
return gen_fchk(mfn, data, suffix=suffix, overwrite=overwrite)
if __name__ == '__main__':
import sys
mfn = sys.argv[1]
gen_fchk(mfn, parse_fchk(mfn)['data'])
| [
"os.path.exists",
"numpy.diagonal",
"parsefchk.parse_fchk",
"os.path.splitext",
"numpy.diag",
"numpy.zeros"
] | [((612, 627), 'parsefchk.parse_fchk', 'parse_fchk', (['mfn'], {}), '(mfn)\n', (622, 627), False, 'from parsefchk import parse_fchk\n'), ((287, 308), 'os.path.splitext', 'os.path.splitext', (['mfn'], {}), '(mfn)\n', (303, 308), False, 'import os\n'), ((365, 384), 'os.path.exists', 'os.path.exists', (['ofn'], {}), '(ofn)\n', (379, 384), False, 'import os\n'), ((571, 592), 'os.path.splitext', 'os.path.splitext', (['ofn'], {}), '(ofn)\n', (587, 592), False, 'import os\n'), ((3523, 3536), 'numpy.diag', 'np.diag', (['fmxo'], {}), '(fmxo)\n', (3530, 3536), True, 'import numpy as np\n'), ((4515, 4530), 'parsefchk.parse_fchk', 'parse_fchk', (['mfn'], {}), '(mfn)\n', (4525, 4530), False, 'from parsefchk import parse_fchk\n'), ((3903, 3938), 'numpy.diagonal', 'np.diagonal', (['fmxo'], {'axis1': '(1)', 'axis2': '(2)'}), '(fmxo, axis1=1, axis2=2)\n', (3914, 3938), True, 'import numpy as np\n'), ((1231, 1257), 'numpy.zeros', 'np.zeros', (['(dim_mo - dim_nmo)'], {}), '(dim_mo - dim_nmo)\n', (1239, 1257), True, 'import numpy as np\n'), ((1562, 1598), 'numpy.zeros', 'np.zeros', (['(dim_mo - dim_nmo, dim_bs)'], {}), '((dim_mo - dim_nmo, dim_bs))\n', (1570, 1598), True, 'import numpy as np\n')] |
from pickle import load
from numpy import array
from numpy import argmax
from keras.preprocessing.text import Tokenizer
from keras.preprocessing.sequence import pad_sequences
from keras.models import load_model
from nltk.translate.bleu_score import corpus_bleu
import sys
import pika
import os
import urllib.parse
# Parse CLODUAMQP_URL (fallback to localhost)
url_str = os.environ.get('CLOUDAMQP_URL', 'amqp://guest:guest@localhost//')
url = urllib.parse.urlparse(url_str)
params = pika.ConnectionParameters(host=url.hostname, virtual_host=url.path[1:],
credentials=pika.PlainCredentials(url.username, url.password))
connection = pika.BlockingConnection(params) # Connect to CloudAMQP
#connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
#connection = pika.BlockingConnection(pika.ConnectionParameters('127.0.0.1'))
channel = connection.channel()
channel.queue_declare(queue='rpc_queue')
# load a clean dataset
def load_clean_sentences(filename):
return load(open(filename, 'rb'))
# fit a tokenizer
def create_tokenizer(lines):
tokenizer = Tokenizer(char_level=False)
tokenizer.fit_on_texts(lines)
return tokenizer
# max sentence length
def max_length(lines):
return max(len(line.split()) for line in lines)
# map an integer to a word
def word_for_id(integer, tokenizer):
for word, index in tokenizer.word_index.items():
if index == integer:
return word
return None
# generate target given source sequence
def predict_sequence(model, tokenizer, source):
prediction = model.predict(source, verbose=0)[0]
integers = [argmax(vector) for vector in prediction]
target = list()
for i in integers:
word = word_for_id(i, tokenizer)
if word is None:
break
target.append(word)
return ' '.join(target)
# translate
def translate(model, tokenizer, sources):
predicted = list()
for i, source in enumerate(sources):
# translate encoded source text
source = source.reshape((1, source.shape[0]))
translation = predict_sequence(model, all_tokenizer, source)
return{'ANSWER':translation}
#print('ANSWER: %s' % (translation))
predicted.append(translation.split())
# load datasets
dataset = load_clean_sentences('both.pkl')
dataset1=dataset.reshape(-1,1)
# prepare tokenizer
all_tokenizer = create_tokenizer(dataset1[:,0])
all_vocab_size = len(all_tokenizer.word_index) + 1
all_length = max_length(dataset1[:, 0])
# load model
model = load_model('model1.h5')
# Setting up the chat
#question = str(sys.argv[1])
#print('arg: %s' % (q))
#question = question.strip().split('\n')
#we tokenize
#X = all_tokenizer.texts_to_sequences(question)
#X = pad_sequences(X, maxlen=all_length, padding='post')
# find reply and print it out
#translate(model, all_tokenizer, X)
def on_request(ch, method, props, body):
question = body.decode("utf-8")
print(" [.] question(%s)" % question)
question = (question.strip().split('\n'))
X = all_tokenizer.texts_to_sequences(question)
X = pad_sequences(X, maxlen=all_length, padding='post')
#response = fib(n)
response = translate(model, all_tokenizer, X)
ch.basic_publish(exchange='',
routing_key=props.reply_to,
properties=pika.BasicProperties(correlation_id = \
props.correlation_id),
body=str(response))
ch.basic_ack(delivery_tag = method.delivery_tag)
channel.basic_qos(prefetch_count=1)
channel.basic_consume(on_request, queue='rpc_queue')
print(" [x] Awaiting RPC requests")
channel.start_consuming() | [
"keras.preprocessing.text.Tokenizer",
"keras.models.load_model",
"pika.BlockingConnection",
"os.environ.get",
"pika.PlainCredentials",
"numpy.argmax",
"pika.BasicProperties",
"keras.preprocessing.sequence.pad_sequences"
] | [((372, 437), 'os.environ.get', 'os.environ.get', (['"""CLOUDAMQP_URL"""', '"""amqp://guest:guest@localhost//"""'], {}), "('CLOUDAMQP_URL', 'amqp://guest:guest@localhost//')\n", (386, 437), False, 'import os\n'), ((637, 668), 'pika.BlockingConnection', 'pika.BlockingConnection', (['params'], {}), '(params)\n', (660, 668), False, 'import pika\n'), ((2404, 2427), 'keras.models.load_model', 'load_model', (['"""model1.h5"""'], {}), "('model1.h5')\n", (2414, 2427), False, 'from keras.models import load_model\n'), ((1084, 1111), 'keras.preprocessing.text.Tokenizer', 'Tokenizer', ([], {'char_level': '(False)'}), '(char_level=False)\n', (1093, 1111), False, 'from keras.preprocessing.text import Tokenizer\n'), ((2977, 3028), 'keras.preprocessing.sequence.pad_sequences', 'pad_sequences', (['X'], {'maxlen': 'all_length', 'padding': '"""post"""'}), "(X, maxlen=all_length, padding='post')\n", (2990, 3028), False, 'from keras.preprocessing.sequence import pad_sequences\n'), ((572, 621), 'pika.PlainCredentials', 'pika.PlainCredentials', (['url.username', 'url.password'], {}), '(url.username, url.password)\n', (593, 621), False, 'import pika\n'), ((1574, 1588), 'numpy.argmax', 'argmax', (['vector'], {}), '(vector)\n', (1580, 1588), False, 'from numpy import argmax\n'), ((3221, 3278), 'pika.BasicProperties', 'pika.BasicProperties', ([], {'correlation_id': 'props.correlation_id'}), '(correlation_id=props.correlation_id)\n', (3241, 3278), False, 'import pika\n')] |
from selfdrive.mapd.lib.geo import DIRECTION, distance_and_bearing, absoule_delta_with_direction, bearing_delta, bearing
from common.numpy_fast import interp
from selfdrive.config import Conversions as CV
import numpy as np
import re
_ACCEPTABLE_BEARING_DELTA_V = [40., 20., 10., 5.]
_ACCEPTABLE_BEARING_DELTA_BP = [30., 100., 200., 300.]
_COUNTRY_LIMITS_KPH = {
'DE': {
'urban': 50.,
'rural': 100.,
'motorway': 0.,
'living_street': 7.,
'bicycle_road': 30.
}
}
class WayRelation():
"""A class that represent the relationship of an OSM way and a given `location` and `bearing` of a driving vehicle.
"""
def __init__(self, way, location=None, bearing=None):
self.way = way
self.reset_location_variables()
self.direction = DIRECTION.NONE
self._speed_limit = None
# Create a numpy array with nodes data to support calculations.
self._nodes_np = np.radians(np.array([[nd.lat, nd.lon] for nd in way.nodes], dtype=float))
# Define bounding box to ease the process of locating a node in a way.
# [[min_lat, min_lon], [max_lat, max_lon]]
self.bbox = np.row_stack((np.amin(self._nodes_np, 0), np.amax(self._nodes_np, 0)))
if location is not None and bearing is not None:
self.update(location, bearing)
def __repr__(self):
return f'(id: {self.id}, name: {self.name}, ref: {self.ref}, ahead: {self.ahead_idx}, \
behind: {self.behind_idx}, {self.direction}, active: {self.active})'
def reset_location_variables(self):
self.location = None
self.bearing = None
self.active = False
self.ahead_idx = None
self.behind_idx = None
self._active_way_bearing = None
@property
def id(self):
return self.way.id
def update(self, location, bearing):
"""Will update and validate the associated way with a given `location` and `bearing`.
Specifically it will find the nodes behind and ahead of the current location and bearing.
If no proper fit to the way geometry, the way relation is marked as invalid.
"""
self.reset_location_variables()
# Ignore if location not in way boundingn box
if not self.is_location_in_bbox(location):
return
# TODO: Do this with numpy. Calculate distance and bearing to all nodes and then process array to find
# best match if any.
for idx, node in enumerate(self.way.nodes):
distance_to_node, bearing_to_node = distance_and_bearing(location, (node.lat, node.lon))
delta, direction = absoule_delta_with_direction(bearing_delta(bearing, bearing_to_node))
if abs(delta) > interp(distance_to_node, _ACCEPTABLE_BEARING_DELTA_BP, _ACCEPTABLE_BEARING_DELTA_V):
continue
if direction == DIRECTION.AHEAD:
self.ahead_idx = idx
self.distance_to_node_ahead = distance_to_node
if self.behind_idx is not None:
break
elif direction == DIRECTION.BEHIND:
self.behind_idx = idx
if self.ahead_idx is not None:
break
# Validate
if self.ahead_idx is None or self.behind_idx is None or abs(self.ahead_idx - self.behind_idx) > 1:
self.reset_location_variables()
return
self.active = True
self.location = location
self.bearing = bearing
self._speed_limit = None
self.direction = DIRECTION.FORWARD if self.ahead_idx - self.behind_idx > 0 else DIRECTION.BACKWARD
def update_direction_from_starting_node(self, start_node_id):
self._speed_limit = None
if self.way.nodes[0].id == start_node_id:
self.direction = DIRECTION.FORWARD
elif self.way.nodes[-1].id == start_node_id:
self.direction = DIRECTION.BACKWARD
else:
self.direction = DIRECTION.NONE
def is_location_in_bbox(self, location):
"""Indicates if a given location is contained in the bounding box surrounding the way.
self.bbox = [[min_lat, min_lon], [max_lat, max_lon]]
"""
radians = np.radians(np.array(location, dtype=float))
is_g = np.greater_equal(radians, self.bbox[0, :])
is_l = np.less_equal(radians, self.bbox[1, :])
return np.all(np.concatenate((is_g, is_l)))
@property
def speed_limit(self):
if self._speed_limit is not None:
return self._speed_limit
# Get string from corresponding tag
limit_string = self.way.tags.get("maxspeed")
if limit_string is None:
if self.direction == DIRECTION.FORWARD:
limit_string = self.way.tags.get("maxspeed:forward")
elif self.direction == DIRECTION.BACKWARD:
limit_string = self.way.tags.get("maxspeed:backward")
# When limit is set to 0. is considered not existing. Use 0. as default value.
limit = 0.
# https://wiki.openstreetmap.org/wiki/Key:maxspeed
if limit_string is not None:
# Look for matches of speed by default in kph, or in mph when explicitly noted.
v = re.match(r'^\s*([0-9]{1,3})\s*?(mph)?\s*$', limit_string)
if v is not None:
conv = CV.MPH_TO_MS if v[2] is not None and v[2] == "mph" else CV.KPH_TO_MS
limit = conv * float(v[1])
else:
# Look for matches of speed with country implicit values.
v = re.match(r'^\s*([A-Z]{2}):([a-z_]+):?([0-9]{1,3})?(\s+)?(mph)?\s*', limit_string)
if v is not None:
if v[2] == "zone" and v[3] is not None:
conv = CV.MPH_TO_MS if v[5] is not None and v[5] == "mph" else CV.KPH_TO_MS
limit = conv * float(v[3])
elif v[1] in _COUNTRY_LIMITS_KPH and v[2] in _COUNTRY_LIMITS_KPH[v[1]]:
limit = _COUNTRY_LIMITS_KPH[v[1]][v[2]] * CV.KPH_TO_MS
self._speed_limit = limit
return self._speed_limit
@property
def ref(self):
return self.way.tags.get("ref", None)
@property
def name(self):
return self.way.tags.get("name", None)
@property
def active_bearing(self):
"""Returns the exact bearing of the portion of way we are currentluy located at.
"""
if self._active_way_bearing is not None:
return self._active_way_bearing
if not self.active:
return None
ahead_node = self.way.nodes[self.ahead_idx]
behind_node = self.way.nodes[self.behind_idx]
self._active_way_bearing = bearing((behind_node.lat, behind_node.lon), (ahead_node.lat, ahead_node.lon))
return self._active_way_bearing
def active_bearing_delta(self, bearing):
"""Returns the delta between the given bearing and the exact
bearing of the portion of way we are currentluy located at.
"""
if self.active_bearing is None:
return None
return bearing_delta(bearing, self.active_bearing)
@property
def node_behind(self):
return self.way.nodes[self.behind_idx] if self.behind_idx is not None else None
@property
def node_ahead(self):
return self.way.nodes[self.ahead_idx] if self.ahead_idx is not None else None
@property
def last_node(self):
"""Returns the last node on the way considering the traveling direction
"""
if self.direction == DIRECTION.FORWARD:
return self.way.nodes[-1]
if self.direction == DIRECTION.BACKWARD:
return self.way.nodes[0]
return None
def edge_on_node(self, node_id):
"""Indicates if the associated way starts or ends in the node with `node_id`
"""
return self.way.nodes[0].id == node_id or self.way.nodes[-1].id == node_id
def next_wr(self, way_relations):
"""Returns a tuple with the next way relation (if any) based on `location` and `bearing` and
the `way_relations` list excluding the found next way relation. (to help with recursion)
"""
if self.direction not in [DIRECTION.FORWARD, DIRECTION.BACKWARD]:
return None, way_relations
possible_next_wr = list(filter(lambda wr: wr.id != self.id and wr.edge_on_node(self.last_node.id), way_relations))
possibles = len(possible_next_wr)
if possibles == 0:
return None, way_relations
if possibles == 1 or (self.ref is None and self.name is None):
next_wr = possible_next_wr[0]
else:
next_wr = next((wr for wr in possible_next_wr if wr.has_name_or_ref(self.name, self.ref)), possible_next_wr[0])
next_wr.update_direction_from_starting_node(self.last_node.id)
updated_way_relations = list(filter(lambda wr: wr.id != next_wr.id, way_relations))
return next_wr, updated_way_relations
def has_name_or_ref(self, name, ref):
if ref is not None and self.ref is not None and self.ref == ref:
return True
if name is not None and self.name is not None and self.name == name:
return True
return False
| [
"selfdrive.mapd.lib.geo.distance_and_bearing",
"numpy.amin",
"selfdrive.mapd.lib.geo.bearing",
"numpy.less_equal",
"re.match",
"common.numpy_fast.interp",
"numpy.array",
"selfdrive.mapd.lib.geo.bearing_delta",
"numpy.concatenate",
"numpy.amax",
"numpy.greater_equal"
] | [((3987, 4029), 'numpy.greater_equal', 'np.greater_equal', (['radians', 'self.bbox[0, :]'], {}), '(radians, self.bbox[0, :])\n', (4003, 4029), True, 'import numpy as np\n'), ((4041, 4080), 'numpy.less_equal', 'np.less_equal', (['radians', 'self.bbox[1, :]'], {}), '(radians, self.bbox[1, :])\n', (4054, 4080), True, 'import numpy as np\n'), ((6179, 6256), 'selfdrive.mapd.lib.geo.bearing', 'bearing', (['(behind_node.lat, behind_node.lon)', '(ahead_node.lat, ahead_node.lon)'], {}), '((behind_node.lat, behind_node.lon), (ahead_node.lat, ahead_node.lon))\n', (6186, 6256), False, 'from selfdrive.mapd.lib.geo import DIRECTION, distance_and_bearing, absoule_delta_with_direction, bearing_delta, bearing\n'), ((6542, 6585), 'selfdrive.mapd.lib.geo.bearing_delta', 'bearing_delta', (['bearing', 'self.active_bearing'], {}), '(bearing, self.active_bearing)\n', (6555, 6585), False, 'from selfdrive.mapd.lib.geo import DIRECTION, distance_and_bearing, absoule_delta_with_direction, bearing_delta, bearing\n'), ((936, 997), 'numpy.array', 'np.array', (['[[nd.lat, nd.lon] for nd in way.nodes]'], {'dtype': 'float'}), '([[nd.lat, nd.lon] for nd in way.nodes], dtype=float)\n', (944, 997), True, 'import numpy as np\n'), ((2437, 2489), 'selfdrive.mapd.lib.geo.distance_and_bearing', 'distance_and_bearing', (['location', '(node.lat, node.lon)'], {}), '(location, (node.lat, node.lon))\n', (2457, 2489), False, 'from selfdrive.mapd.lib.geo import DIRECTION, distance_and_bearing, absoule_delta_with_direction, bearing_delta, bearing\n'), ((3943, 3974), 'numpy.array', 'np.array', (['location'], {'dtype': 'float'}), '(location, dtype=float)\n', (3951, 3974), True, 'import numpy as np\n'), ((4100, 4128), 'numpy.concatenate', 'np.concatenate', (['(is_g, is_l)'], {}), '((is_g, is_l))\n', (4114, 4128), True, 'import numpy as np\n'), ((4858, 4917), 're.match', 're.match', (['"""^\\\\s*([0-9]{1,3})\\\\s*?(mph)?\\\\s*$"""', 'limit_string'], {}), "('^\\\\s*([0-9]{1,3})\\\\s*?(mph)?\\\\s*$', limit_string)\n", (4866, 4917), False, 'import re\n'), ((1152, 1178), 'numpy.amin', 'np.amin', (['self._nodes_np', '(0)'], {}), '(self._nodes_np, 0)\n', (1159, 1178), True, 'import numpy as np\n'), ((1180, 1206), 'numpy.amax', 'np.amax', (['self._nodes_np', '(0)'], {}), '(self._nodes_np, 0)\n', (1187, 1206), True, 'import numpy as np\n'), ((2544, 2583), 'selfdrive.mapd.lib.geo.bearing_delta', 'bearing_delta', (['bearing', 'bearing_to_node'], {}), '(bearing, bearing_to_node)\n', (2557, 2583), False, 'from selfdrive.mapd.lib.geo import DIRECTION, distance_and_bearing, absoule_delta_with_direction, bearing_delta, bearing\n'), ((2607, 2694), 'common.numpy_fast.interp', 'interp', (['distance_to_node', '_ACCEPTABLE_BEARING_DELTA_BP', '_ACCEPTABLE_BEARING_DELTA_V'], {}), '(distance_to_node, _ACCEPTABLE_BEARING_DELTA_BP,\n _ACCEPTABLE_BEARING_DELTA_V)\n', (2613, 2694), False, 'from common.numpy_fast import interp\n'), ((5150, 5237), 're.match', 're.match', (['"""^\\\\s*([A-Z]{2}):([a-z_]+):?([0-9]{1,3})?(\\\\s+)?(mph)?\\\\s*"""', 'limit_string'], {}), "('^\\\\s*([A-Z]{2}):([a-z_]+):?([0-9]{1,3})?(\\\\s+)?(mph)?\\\\s*',\n limit_string)\n", (5158, 5237), False, 'import re\n')] |
from . import tools
import os
from datetime import datetime
import logging
import matplotlib.cm as mplcm
import matplotlib.pyplot as plt
import numpy as np
from ipywidgets import Layout
import ipywidgets as widgets
from IPython.display import display
import cv2
DEFAULT_EXTENSIONS = ['jpg', 'png', 'tif', 'iff', 'peg', 'ppm']
class OutputWidgetHandler(logging.Handler):
""" Custom logging handler sending logs to an output widget """
def __init__(self, *args, **kwargs):
super(OutputWidgetHandler, self).__init__(*args, **kwargs)
layout = {
'width': '100%',
'height': '160px',
'border': '1px solid black'
}
self.out = widgets.Output(layout=layout)
def emit(self, record):
""" Overload of logging.Handler method """
formatted_record = self.format(record)
new_output = {
'name': 'stdout',
'output_type': 'stream',
'text': formatted_record + '\n'
}
self.out.outputs = (new_output,) + self.out.outputs
def show_logs(self):
""" Show the logs """
display(self.out)
def clear_logs(self):
""" Clear the current logs """
self.out.clear_output()
def create_logger():
logger = logging.getLogger(__name__)
handler = OutputWidgetHandler()
handler.setFormatter(logging.Formatter('%(asctime)s - [%(levelname)s] %(message)s'))
logger.addHandler(handler)
logger.setLevel(logging.INFO)
return handler, logger
# Global variables set in tools module:
# tools.set_binary_thresholds()
# global original_shape
# global target_binary
# global target_overlay
# global target_grey
# tools.adjust_contour_filters()
# global filtered_contours
def set_binary_thresholds(target_fn, cropx=None, cropy=None, thresholds=(100, 255), invert=False, gamma=1.0,
brightness=0, contrast=0, clahe=False, clahe_window=50,
figwidth=32, figheight=16, displayplot=True):
# set global variables to be available to the widgets:
global original_shape
global target_binary
global target_overlay
global target_grey
# print(target_fn, thresholds, figwidth, figheight)
# get initial images:
if cropx and cropy:
x0, x1 = cropx
y0, y1 = cropy
crop = (y0, y1, x0, x1)
else:
crop = None
target_original, target_overlay, target_grey = tools.get_base_images(target_fn, crop=crop)
# invert
if invert:
target_grey = cv2.bitwise_not(target_grey)
# apply contrast limited adaptive histogram equalization (CLAHE)
if clahe:
clahe_model = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(clahe_window, clahe_window))
target_grey = clahe_model.apply(target_grey)
# apply brightness/contrast
target_bc = tools.apply_contrast(target_grey, contrast, brightness)
# apply gamma transformation
target_gamma = tools.apply_gamma(target_bc, gamma)
# convert to binary image
target_binary = tools.get_binary(target_gamma, thresh=thresholds[0], maxval=thresholds[1])
# display output
if displayplot:
tools.display_three_plots(target_original, target_bc, target_binary, figsize=(figwidth, figheight,))
original_shape = target_original.shape
# return target_binary, target_overlay
def adjust_contour_filters(figwidth=32, figheight=16, target_fn=None,
area=(20, 50000), contour_ratio=0.67, minwidth=20, ):
global filtered_contours
target_savedir = tools.get_savedir(target_fn)
minarea = area[0]
maxarea = area[1]
# calculate contours of images
(contours, hierarchy) = cv2.findContours(target_binary, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# annotate contours
filtered_ids, filtered_contours = tools.collect_contours(contours, hierarchy, minarea=minarea, maxarea=maxarea,
skip_first=False,
contour_ratio=contour_ratio, minwidth=minwidth
)
# draw contours
target_contours = tools.draw_contours(target_overlay, filtered_contours, target_savedir=target_savedir,
color=(255, 0, 0), figwidth=figwidth / 2, figheight=figheight,
)
def widget_find_discontinuities(ksize=(3, 13), edge_thresholds=(15, 100), min_length=30, target_fn=None):
min_edge_threshold, max_edge_threshold = edge_thresholds
target_savedir = tools.get_savedir(target_fn)
tools.find_discontinuities(target_grey, ksize=(3, 13), min_edge_threshold=15, max_edge_threshold=100, min_length=30,
target_savedir=target_savedir)
def widget_map_color(cmap, ):
"Displays greyscale image and an LUT-converted image"
if target_grey.shape[0] / target_grey.shape[1] < 1:
tools.display_two_plots_v(target_grey, tools.apply_cmap(target_grey, cmap=cmap), figsize=(16,32))
else:
tools.display_two_plots(target_grey, tools.apply_cmap(target_grey, cmap=cmap), figsize=(32, 16))
def widget_contour_similarity(target_fn=None, figsize=(30, 60), nrows=0, ncols=0, equalize=True,
cmap=mplcm.gist_ncar):
target_savedir = tools.get_savedir(target_fn)
df_matchDist, Z, band_images, sorted_idx = tools.get_similar_bands(filtered_contours,
target_savedir,
target_grey,
)
idx_filtered = tools.plot_colored_bands(sorted_idx, band_images, target_savedir, figsize=figsize, nrows=nrows,
ncols=ncols,
equalize=equalize, cmap=cmap
)
def widget_similarity_listener(b):
widget_contour_similarity(wfilepath.value)
def widget_plot_dendrogram():
return None
def widget_equalize(rows, columns, saveas, savetype, show_images):
if show_images:
splitsave = saveas
else:
splitsave = None
splits = tools.split_image(target_grey, rows, columns, splitsave, savetype, show_images)
equalized_cols = [np.vstack([cv2.equalizeHist(img) for img in col]) for col in splits if len(col) > 0]
res = np.hstack(equalized_cols) # stacking images side-by-side
plt.close()
fig, ax = plt.subplots(figsize=(20, 10))
plt.imshow(res)
plt.tight_layout()
# plt.savefig(f"{saveas}_equalized.{savetype}")
cv2.imwrite(f"{saveas}_equalized.{savetype}", res)
def widget_noise_calculator(filepath, gaussian_k, median_k, bilateral_k, bilateral_r, figwidth, figheight):
img = cv2.imread(filepath)
tools.calculate_noise(target_grey, gaussian_k, median_k, bilateral_k, bilateral_r, show=True,
figsize=(figwidth, figheight))
def load_binary_widgets(DIRECTORY, ext_list=DEFAULT_EXTENSIONS):
"""
Loads the widgets necessary for image cropping and exposure adjustment.
Parameters
----------
DIRECTORY: str
The location containing the image(s) to crop
ext_list: list
List of file extensions (as strings) to display
Returns
-------
wdirectory, wfilepath, wcropx, wcropy, winvert, wclahe, wbrange, wgamma, wbright, wcontrast, wfigwidth, wfigheight
widget objects
"""
global wfilepath # globalize to make available to observe & update functions
# define styling of widgets:
items_layout = Layout(width='auto')
# define all widgets for binary thresholding and output figsize
wdirectory = widgets.Text(value=DIRECTORY, description="Directory of images:")
wfilepath = widgets.Dropdown(
options=[os.path.join(DIRECTORY, f) for f in os.listdir(DIRECTORY) if
f[-3:].upper() in [ext.upper() for ext in ext_list]],
description='File:', layout=items_layout)
def update_image_options(change):
wfilepath.options = [os.path.join(change.new, f) for f in os.listdir(change.new) if
f[-3:].lower() in ['jpg', 'png', 'tif', 'iff', 'peg', 'ppm']]
wdirectory.observe(update_image_options, 'value')
wcropx = widgets.IntRangeSlider(value=[0, 1000], min=0, max=1000, step=10, description='Crop X axis:',
continuous_update=False, layout=items_layout)
wcropy = widgets.IntRangeSlider(value=[0, 1000], min=0, max=1000, step=10, description='Crop Y axis:',
continuous_update=False, layout=items_layout)
winvert = widgets.Checkbox(value=False, description="Invert image", layout=items_layout)
wclahe = widgets.Checkbox(value=False, description="CLAH equalization:", layout=items_layout)
wclahewin = widgets.IntSlider(value=50, min=1, max=200, step=1, description='CLAHE window:', layout=items_layout)
wbrange = widgets.IntRangeSlider(value=[100, 255], min=0, max=255, step=1, description='Thresholds:',
layout=items_layout)
wgamma = widgets.FloatSlider(value=0.8, min=0, max=2.0, step=0.05, description="Gamma:", layout=items_layout)
wbright = widgets.IntSlider(value=0.0, min=-100, max=100, step=1, description="Brightness:", layout=items_layout)
wcontrast = widgets.FloatSlider(value=0.8, min=0, max=3.0, step=0.05, description="Contrast:", layout=items_layout)
wfigwidth = widgets.IntSlider(value=32, min=1, max=32, step=1, description='Fig width:', layout=items_layout)
wfigheight = widgets.IntSlider(value=16, min=1, max=48, step=1, description='Fig height:', layout=items_layout)
return wdirectory, wfilepath, wcropx, wcropy, winvert, wclahe, wclahewin, wbrange, wgamma, wbright, wcontrast, wfigwidth, wfigheight
def load_evaluation_widget(DIRECTORY, ext_list=DEFAULT_EXTENSIONS):
"""
Load the main widget for analyzing images from the specified directory
Parameters
----------
DIRECTORY : str
directory path of all images to concatenate
ext_list : list
list of all file extensions to include
Returns
-------
widget_tab
widget object
"""
# define styling of widgets:
items_layout = Layout(width='auto')
# define all widgets for binary thresholding and output figsize
wdirectory, wfilepath, wcropx, wcropy, winvert, wclahe, wclahewin, wbrange, wgamma, wbright, wcontrast, wfigwidth, wfigheight = load_binary_widgets(
DIRECTORY, ext_list)
# set widgets for contour extraction
warange = widgets.IntRangeSlider(value=[20, 10000], min=10, max=10000, step=10, description='Area:',
continuous_update=False, layout=items_layout)
wratio = widgets.FloatSlider(value=0.67, min=0.1, max=2.0, step=0.02, description='ht/wdth ratio:',
continuous_update=False, layout=items_layout)
wminwidth = widgets.IntSlider(value=30, min=1, max=250, step=1, description='Min width:', continuous_update=False,
layout=items_layout)
# ### set widgets for edge discontinuity detection
wksize = widgets.IntRangeSlider(value=[3, 13], min=1, max=21, step=2, description='k size:',
continuous_update=False,
layout=items_layout)
wedgethresholds = widgets.IntRangeSlider(value=[15, 100], min=1, max=100, step=1, description='Edge thresholds:',
continuous_update=False, layout=items_layout)
wminedgelen = widgets.IntSlider(value=30, min=1, max=250, step=1, description='Min edge length:',
continuous_update=False, layout=items_layout)
### set widgets for color mapping
cmap_list = ['Spectral', 'coolwarm', 'gist_rainbow', 'viridis', 'jet', 'inferno', 'hsv', 'nipy_spectral',
'gist_ncar',
'gist_stern', 'RdYlGn', ]
wcmaps = widgets.Dropdown(options=[(x, getattr(mplcm, x)) for x in cmap_list], description='CMAP:',
layout=items_layout)
wsavecmap = widgets.Button(description="FUTURE: Save Me")
### set widgets for band similarity detection
wcalcsimilar = widgets.Button(description="Show similarities")
wdummy = widgets.IntSlider(value=30, min=1, max=250, step=1, description='Dummy slider:', continuous_update=False,
layout=items_layout)
wsavebands = widgets.Button(description="FUTURE: Save Me")
wbandfigsize = widgets.IntRangeSlider(value=[30, 30], min=5, max=120, step=1, description='Figsize (w,h):',
continuous_update=False, layout=items_layout)
wbandnrows = widgets.IntSlider(value=0, min=0, max=40, step=1, description='Num. rows:', continuous_update=False,
layout=items_layout)
wbandncols = widgets.IntSlider(value=0, min=0, max=40, step=1, description='Num. cols:', continuous_update=False,
layout=items_layout)
wequalize = widgets.Checkbox(value=True, description="Equalize bands", layout=items_layout)
wcalcsimilar.on_click(widget_contour_similarity)
### set widgets for noise detection
wgaussian = widgets.IntSlider(value=5, min=1, max=15, step=2, description='Gaussian kernal size:',
continuous_update=False,
layout=items_layout)
wmedian = widgets.IntSlider(value=5, min=1, max=15, step=2, description='Median kernal size:',
continuous_update=False,
layout=items_layout)
wbilateralk = widgets.IntSlider(value=9, min=1, max=15, step=2, description='Bilateral kernal size:',
continuous_update=False,
layout=items_layout)
wbilateralr = widgets.IntSlider(value=25, min=1, max=95, step=2, description='Bilateral radiius:',
continuous_update=False,
layout=items_layout)
wnfigwidth = widgets.BoundedIntText(value=20, min=1, max=100, step=1, description="Figure width:",
layout=items_layout)
wnfigheight = widgets.BoundedIntText(value=30, min=1, max=100, step=1, description="Figure height:",
layout=items_layout)
# set reporting of widget values
widgetlist = [wdirectory, wfilepath, wcropx, wcropy, winvert, wclahe, wclahewin, wbrange, wgamma, wbright, wcontrast,
wfigwidth, wfigheight, warange, wratio, wminwidth, wksize, wedgethresholds, wminedgelen, wcmaps,
wsavecmap,
wbandfigsize, wbandnrows, wbandncols, wequalize, wgaussian, wmedian, wbilateralk, wbilateralr,
wnfigwidth, wnfigheight,
]
widgetnames = ["wdirectory", "wfilepath", "wcropx", "wcropy", "winvert", "wclahe", "wclahewin", "wbrange", "wgamma",
"wbright", "wcontrast",
"wfigwidth", "wfigheight", "warange", "wratio", "wminwidth", "wksize", "wedgethresholds",
"wminedgelen", "wcmaps",
"wsavecmap",
"wbandfigsize", "wbandnrows", "wbandncols", "wequalize", "wgaussian", "wmedian", "wbilateralk",
"wbilateralr",
"wnfigwidth", "wnfigheight",
]
def get_widget_value_string():
valuelog = {"TIME": datetime.now()}
for i, w in enumerate(widgetlist):
try:
valuelog[widgetnames[i]] = w.value
except AttributeError:
pass
logstring = "\n".join([f"{w:<15s}: {v}" for w, v in valuelog.items()])
return logstring
def get_log_file():
savedir = os.path.join(wdirectory.value, 'log_files')
if os.path.exists(savedir):
pass
else:
os.mkdir(savedir)
analysis_file = os.path.basename(wfilepath.value)
logfile = os.path.join(savedir, f"{analysis_file}.log")
return logfile
wviewvalues = widgets.Button(description="Show widget values")
wsavelog = widgets.Button(description=f"Save to {get_log_file()}", layout={'width': 'auto'})
outlog = widgets.Output(layout={'border': '1px solid black'})
@outlog.capture(clear_output=True)
def report_widget_values(click):
logstring = get_widget_value_string()
print(logstring)
def save_value_log(click):
logfile = get_log_file()
logstring = get_widget_value_string()
with open(logfile, 'a') as handle:
handle.write(logstring)
def update_save_button(change):
wsavelog.description = f"Save to {get_log_file()}"
wviewvalues.on_click(report_widget_values)
wsavelog.on_click(save_value_log)
wfilepath.observe(update_save_button, 'value')
##########################
# customize binary display
outbin = widgets.interactive_output(set_binary_thresholds, {'target_fn': wfilepath,
'cropx': wcropx,
'cropy': wcropy,
'thresholds': wbrange,
'invert': winvert,
'gamma': wgamma,
'brightness': wbright,
'contrast': wcontrast,
'clahe': wclahe,
'clahe_window':wclahewin,
'figwidth': wfigwidth,
'figheight': wfigheight
})
# customize contour extraction display
outcont = widgets.interactive_output(adjust_contour_filters, {
'figwidth': wfigwidth,
'figheight': wfigheight,
'target_fn': wfilepath,
'area': warange, 'contour_ratio': wratio, 'minwidth': wminwidth,
})
# customize discontinuity finder display
outedge = widgets.interactive_output(widget_find_discontinuities, {'ksize': wksize,
'edge_thresholds': wedgethresholds,
'min_length': wminedgelen,
'target_fn': wfilepath,
})
# LUT color mapping display
outcmap = widgets.interactive_output(widget_map_color, {'cmap': wcmaps})
# customize noise display
outnoise = widgets.interactive_output(widget_noise_calculator,
{'filepath': wfilepath,
'gaussian_k': wgaussian,
'median_k': wmedian,
'bilateral_k': wbilateralk,
'bilateral_r': wbilateralr,
'figwidth': wnfigwidth,
'figheight': wnfigheight,
}, )
# customize band similarity display
outsimilar = widgets.interactive_output(widget_contour_similarity,
{'target_fn': wfilepath, 'figsize': wbandfigsize, 'nrows': wbandnrows,
'ncols': wbandncols,
'equalize': wequalize, 'cmap': wcmaps,
}, )
# update crop sliders with dimensions of original image
def update_xylim(change):
wcropx.max = original_shape[1]
wcropy.max = original_shape[0]
outbin.observe(update_xylim, )
# create tab views
box_layout = Layout(display='flex',
flex_flow='column',
align_items='stretch',
# border='dashed',
width='50%',
margin='10px',
padding='10px',
)
binarytab = widgets.VBox([widgets.VBox([wdirectory, wfilepath, wcropx, wcropy,
widgets.HBox([winvert, wclahe], ),
wclahewin, wbrange, wgamma, wbright, wcontrast, wfigwidth,
wfigheight],
layout=box_layout), outbin],
layout=Layout(border='solid', margin='3'))
contourtab = widgets.VBox([widgets.VBox([warange, wratio, wminwidth],
layout=box_layout), outcont],
layout=Layout(border='solid'))
edgetab = widgets.VBox([widgets.VBox([wksize, wedgethresholds, wminedgelen],
layout=box_layout), outedge],
layout=Layout(border='solid'))
noisetab = widgets.VBox([widgets.VBox([wgaussian, wmedian, wbilateralk, wbilateralr, wnfigwidth, wnfigheight],
layout=box_layout), outnoise, ],
layout=Layout(border='solid'))
cmaptab = widgets.VBox([widgets.VBox([wcmaps, wsavecmap],
layout=box_layout), outcmap, ],
layout=Layout(border='solid'))
bandstab = widgets.VBox([widgets.VBox([wcalcsimilar, wbandfigsize, wbandnrows, wbandncols, wcmaps, wequalize],
layout=box_layout), outsimilar, ],
layout=Layout(border='solid'))
reporttab = widgets.VBox([widgets.VBox([wviewvalues, wsavelog, ],
layout=box_layout), outlog, ],
layout=Layout(border='solid'))
# add layouts to tabs for condensed viewing and handling:
tab = widgets.Tab()
tab.children = [binarytab, contourtab, edgetab, noisetab, cmaptab, bandstab, reporttab, ]
tab.set_title(0, "Create Mask")
tab.set_title(1, "Create Contours")
tab.set_title(2, "Find Discontinuities")
tab.set_title(3, "View Noise")
tab.set_title(4, "View False Color")
tab.set_title(5, "View similarities")
tab.set_title(6, "View widget values")
return tab
def crop_and_equalize(DIRECTORY, ext_list=DEFAULT_EXTENSIONS):
# This interactive widget is for dividing the image up into columns and performing histogram equalization on each one.
# define styling of widgets:
items_layout = Layout(width='auto')
box_layout = Layout(display='flex',
flex_flow='column',
align_items='stretch',
# border='dashed',
width='75%',
margin='10px',
padding='10px',
)
wdirectory, wfilepath, wcropx, wcropy, winvert, wclahe, wbrange, wgamma, wbright, wcontrast, wfigwidth, wfigheight = load_binary_widgets(
DIRECTORY, ext_list)
def update_xylim(change):
wcropx.max = original_shape[1]
wcropy.max = original_shape[0]
# customize display
outbin = widgets.interactive_output(set_binary_thresholds, {'target_fn': wfilepath,
'cropx': wcropx,
'cropy': wcropy,
'thresholds': wbrange,
'invert': winvert,
'gamma': wgamma,
'brightness': wbright,
'contrast': wcontrast,
'clahe': wclahe,
'figwidth': wfigwidth,
'figheight': wfigheight
})
outbin.observe(update_xylim, )
# define all widgets for image splitting and output split images
# wdirectory = widgets.Text(value=DIRECTORY, description="Directory of images:")
# wfilepath = widgets.Dropdown(options=[os.path.join(DIRECTORY, f) for f in os.listdir(DIRECTORY) if f[-3:] in ['jpg', 'png', 'peg', 'ppm']],description='File:', layout=items_layout)
# wdirectory.observe(update_image_options, 'value')
wrowfloat = widgets.FloatSlider(value=2, min=1, max=15.0, step=0.05, description="# rows:",
layout=Layout(width='80%'),
continuous_update=False)
wcolfloat = widgets.FloatSlider(value=2, min=1, max=15.0, step=0.05, description="# columns:",
layout=Layout(width='80%'), continuous_update=False)
wrowtext = widgets.FloatText(value=2, description='# rows:', disabled=False, layout=items_layout)
wcoltext = widgets.FloatText(value=2, description='# columns:', disabled=False, layout=items_layout)
wsavesplits = widgets.Text(value=f"{DIRECTORY}split_image", description="Save new images as:",
continuous_update=False)
wfiletype = widgets.Dropdown(options=['jpg', 'png', 'svg', 'tif'], description='File type:', layout=items_layout)
wshowsplit = widgets.Checkbox(value=False, description="Show splits:", layout=items_layout)
# customize display
outsplit = widgets.interactive_output(widget_equalize, {'rows': wrowfloat,
'columns': wcolfloat,
'saveas': wsavesplits,
'savetype': wfiletype,
'show_images': wshowsplit,
})
# In[157]:
croppingtab = widgets.VBox([widgets.VBox([wdirectory, wfilepath, wcropx, wcropy, winvert, wbrange, wgamma,
wbright, wcontrast, wsavesplits, wfiletype],
layout=box_layout), outbin],
layout=Layout(border='solid', margin='3'))
splittingtab = widgets.VBox([widgets.VBox([widgets.HBox([wrowfloat, wrowtext]),
widgets.HBox([wcolfloat, wcoltext]),
wsavesplits,
wfiletype,
wshowsplit, ],
layout=box_layout), outsplit],
layout=Layout(border='solid', margin='3'))
# synchronise the slider and text box values
def update_col_val(*args):
wcolfloat.value = wcoltext.value
def update_row_val(*args):
wrowfloat.value = wrowtext.value
wcoltext.observe(update_col_val, 'value')
wrowtext.observe(update_row_val, 'value')
# add layouts to tabs for condensed viewing and handling:
tab = widgets.Tab()
tab.children = [croppingtab, splittingtab, ]
tab.set_title(0, "Crop image")
tab.set_title(1, "Split & Equalize")
return tab
| [
"logging.getLogger",
"IPython.display.display",
"ipywidgets.FloatText",
"ipywidgets.VBox",
"numpy.hstack",
"ipywidgets.Tab",
"ipywidgets.Dropdown",
"ipywidgets.BoundedIntText",
"ipywidgets.FloatSlider",
"matplotlib.pyplot.imshow",
"os.path.exists",
"ipywidgets.HBox",
"os.listdir",
"ipywidg... | [((1281, 1308), 'logging.getLogger', 'logging.getLogger', (['__name__'], {}), '(__name__)\n', (1298, 1308), False, 'import logging\n'), ((3710, 3781), 'cv2.findContours', 'cv2.findContours', (['target_binary', 'cv2.RETR_TREE', 'cv2.CHAIN_APPROX_SIMPLE'], {}), '(target_binary, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)\n', (3726, 3781), False, 'import cv2\n'), ((6494, 6519), 'numpy.hstack', 'np.hstack', (['equalized_cols'], {}), '(equalized_cols)\n', (6503, 6519), True, 'import numpy as np\n'), ((6556, 6567), 'matplotlib.pyplot.close', 'plt.close', ([], {}), '()\n', (6565, 6567), True, 'import matplotlib.pyplot as plt\n'), ((6582, 6612), 'matplotlib.pyplot.subplots', 'plt.subplots', ([], {'figsize': '(20, 10)'}), '(figsize=(20, 10))\n', (6594, 6612), True, 'import matplotlib.pyplot as plt\n'), ((6617, 6632), 'matplotlib.pyplot.imshow', 'plt.imshow', (['res'], {}), '(res)\n', (6627, 6632), True, 'import matplotlib.pyplot as plt\n'), ((6637, 6655), 'matplotlib.pyplot.tight_layout', 'plt.tight_layout', ([], {}), '()\n', (6653, 6655), True, 'import matplotlib.pyplot as plt\n'), ((6712, 6762), 'cv2.imwrite', 'cv2.imwrite', (['f"""{saveas}_equalized.{savetype}"""', 'res'], {}), "(f'{saveas}_equalized.{savetype}', res)\n", (6723, 6762), False, 'import cv2\n'), ((6883, 6903), 'cv2.imread', 'cv2.imread', (['filepath'], {}), '(filepath)\n', (6893, 6903), False, 'import cv2\n'), ((7689, 7709), 'ipywidgets.Layout', 'Layout', ([], {'width': '"""auto"""'}), "(width='auto')\n", (7695, 7709), False, 'from ipywidgets import Layout\n'), ((7796, 7861), 'ipywidgets.Text', 'widgets.Text', ([], {'value': 'DIRECTORY', 'description': '"""Directory of images:"""'}), "(value=DIRECTORY, description='Directory of images:')\n", (7808, 7861), True, 'import ipywidgets as widgets\n'), ((8386, 8529), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[0, 1000]', 'min': '(0)', 'max': '(1000)', 'step': '(10)', 'description': '"""Crop X axis:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[0, 1000], min=0, max=1000, step=10,\n description='Crop X axis:', continuous_update=False, layout=items_layout)\n", (8408, 8529), True, 'import ipywidgets as widgets\n'), ((8575, 8718), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[0, 1000]', 'min': '(0)', 'max': '(1000)', 'step': '(10)', 'description': '"""Crop Y axis:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[0, 1000], min=0, max=1000, step=10,\n description='Crop Y axis:', continuous_update=False, layout=items_layout)\n", (8597, 8718), True, 'import ipywidgets as widgets\n'), ((8766, 8844), 'ipywidgets.Checkbox', 'widgets.Checkbox', ([], {'value': '(False)', 'description': '"""Invert image"""', 'layout': 'items_layout'}), "(value=False, description='Invert image', layout=items_layout)\n", (8782, 8844), True, 'import ipywidgets as widgets\n'), ((8858, 8947), 'ipywidgets.Checkbox', 'widgets.Checkbox', ([], {'value': '(False)', 'description': '"""CLAH equalization:"""', 'layout': 'items_layout'}), "(value=False, description='CLAH equalization:', layout=\n items_layout)\n", (8874, 8947), True, 'import ipywidgets as widgets\n'), ((8959, 9065), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(50)', 'min': '(1)', 'max': '(200)', 'step': '(1)', 'description': '"""CLAHE window:"""', 'layout': 'items_layout'}), "(value=50, min=1, max=200, step=1, description=\n 'CLAHE window:', layout=items_layout)\n", (8976, 9065), True, 'import ipywidgets as widgets\n'), ((9075, 9191), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[100, 255]', 'min': '(0)', 'max': '(255)', 'step': '(1)', 'description': '"""Thresholds:"""', 'layout': 'items_layout'}), "(value=[100, 255], min=0, max=255, step=1,\n description='Thresholds:', layout=items_layout)\n", (9097, 9191), True, 'import ipywidgets as widgets\n'), ((9238, 9343), 'ipywidgets.FloatSlider', 'widgets.FloatSlider', ([], {'value': '(0.8)', 'min': '(0)', 'max': '(2.0)', 'step': '(0.05)', 'description': '"""Gamma:"""', 'layout': 'items_layout'}), "(value=0.8, min=0, max=2.0, step=0.05, description=\n 'Gamma:', layout=items_layout)\n", (9257, 9343), True, 'import ipywidgets as widgets\n'), ((9353, 9461), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(0.0)', 'min': '(-100)', 'max': '(100)', 'step': '(1)', 'description': '"""Brightness:"""', 'layout': 'items_layout'}), "(value=0.0, min=-100, max=100, step=1, description=\n 'Brightness:', layout=items_layout)\n", (9370, 9461), True, 'import ipywidgets as widgets\n'), ((9473, 9581), 'ipywidgets.FloatSlider', 'widgets.FloatSlider', ([], {'value': '(0.8)', 'min': '(0)', 'max': '(3.0)', 'step': '(0.05)', 'description': '"""Contrast:"""', 'layout': 'items_layout'}), "(value=0.8, min=0, max=3.0, step=0.05, description=\n 'Contrast:', layout=items_layout)\n", (9492, 9581), True, 'import ipywidgets as widgets\n'), ((9593, 9694), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(32)', 'min': '(1)', 'max': '(32)', 'step': '(1)', 'description': '"""Fig width:"""', 'layout': 'items_layout'}), "(value=32, min=1, max=32, step=1, description='Fig width:',\n layout=items_layout)\n", (9610, 9694), True, 'import ipywidgets as widgets\n'), ((9708, 9811), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(16)', 'min': '(1)', 'max': '(48)', 'step': '(1)', 'description': '"""Fig height:"""', 'layout': 'items_layout'}), "(value=16, min=1, max=48, step=1, description=\n 'Fig height:', layout=items_layout)\n", (9725, 9811), True, 'import ipywidgets as widgets\n'), ((10382, 10402), 'ipywidgets.Layout', 'Layout', ([], {'width': '"""auto"""'}), "(width='auto')\n", (10388, 10402), False, 'from ipywidgets import Layout\n'), ((10710, 10850), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[20, 10000]', 'min': '(10)', 'max': '(10000)', 'step': '(10)', 'description': '"""Area:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[20, 10000], min=10, max=10000, step=10,\n description='Area:', continuous_update=False, layout=items_layout)\n", (10732, 10850), True, 'import ipywidgets as widgets\n'), ((10897, 11038), 'ipywidgets.FloatSlider', 'widgets.FloatSlider', ([], {'value': '(0.67)', 'min': '(0.1)', 'max': '(2.0)', 'step': '(0.02)', 'description': '"""ht/wdth ratio:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=0.67, min=0.1, max=2.0, step=0.02, description=\n 'ht/wdth ratio:', continuous_update=False, layout=items_layout)\n", (10916, 11038), True, 'import ipywidgets as widgets\n'), ((11083, 11211), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(30)', 'min': '(1)', 'max': '(250)', 'step': '(1)', 'description': '"""Min width:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=30, min=1, max=250, step=1, description=\n 'Min width:', continuous_update=False, layout=items_layout)\n", (11100, 11211), True, 'import ipywidgets as widgets\n'), ((11310, 11444), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[3, 13]', 'min': '(1)', 'max': '(21)', 'step': '(2)', 'description': '"""k size:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[3, 13], min=1, max=21, step=2, description=\n 'k size:', continuous_update=False, layout=items_layout)\n", (11332, 11444), True, 'import ipywidgets as widgets\n'), ((11534, 11680), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[15, 100]', 'min': '(1)', 'max': '(100)', 'step': '(1)', 'description': '"""Edge thresholds:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[15, 100], min=1, max=100, step=1, description\n ='Edge thresholds:', continuous_update=False, layout=items_layout)\n", (11556, 11680), True, 'import ipywidgets as widgets\n'), ((11739, 11873), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(30)', 'min': '(1)', 'max': '(250)', 'step': '(1)', 'description': '"""Min edge length:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=30, min=1, max=250, step=1, description=\n 'Min edge length:', continuous_update=False, layout=items_layout)\n", (11756, 11873), True, 'import ipywidgets as widgets\n'), ((12298, 12343), 'ipywidgets.Button', 'widgets.Button', ([], {'description': '"""FUTURE: Save Me"""'}), "(description='FUTURE: Save Me')\n", (12312, 12343), True, 'import ipywidgets as widgets\n'), ((12414, 12461), 'ipywidgets.Button', 'widgets.Button', ([], {'description': '"""Show similarities"""'}), "(description='Show similarities')\n", (12428, 12461), True, 'import ipywidgets as widgets\n'), ((12475, 12606), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(30)', 'min': '(1)', 'max': '(250)', 'step': '(1)', 'description': '"""Dummy slider:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=30, min=1, max=250, step=1, description=\n 'Dummy slider:', continuous_update=False, layout=items_layout)\n", (12492, 12606), True, 'import ipywidgets as widgets\n'), ((12650, 12695), 'ipywidgets.Button', 'widgets.Button', ([], {'description': '"""FUTURE: Save Me"""'}), "(description='FUTURE: Save Me')\n", (12664, 12695), True, 'import ipywidgets as widgets\n'), ((12716, 12859), 'ipywidgets.IntRangeSlider', 'widgets.IntRangeSlider', ([], {'value': '[30, 30]', 'min': '(5)', 'max': '(120)', 'step': '(1)', 'description': '"""Figsize (w,h):"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=[30, 30], min=5, max=120, step=1, description=\n 'Figsize (w,h):', continuous_update=False, layout=items_layout)\n", (12738, 12859), True, 'import ipywidgets as widgets\n'), ((12914, 13039), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(0)', 'min': '(0)', 'max': '(40)', 'step': '(1)', 'description': '"""Num. rows:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=0, min=0, max=40, step=1, description='Num. rows:',\n continuous_update=False, layout=items_layout)\n", (12931, 13039), True, 'import ipywidgets as widgets\n'), ((13088, 13213), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(0)', 'min': '(0)', 'max': '(40)', 'step': '(1)', 'description': '"""Num. cols:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=0, min=0, max=40, step=1, description='Num. cols:',\n continuous_update=False, layout=items_layout)\n", (13105, 13213), True, 'import ipywidgets as widgets\n'), ((13261, 13340), 'ipywidgets.Checkbox', 'widgets.Checkbox', ([], {'value': '(True)', 'description': '"""Equalize bands"""', 'layout': 'items_layout'}), "(value=True, description='Equalize bands', layout=items_layout)\n", (13277, 13340), True, 'import ipywidgets as widgets\n'), ((13452, 13589), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(5)', 'min': '(1)', 'max': '(15)', 'step': '(2)', 'description': '"""Gaussian kernal size:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=5, min=1, max=15, step=2, description=\n 'Gaussian kernal size:', continuous_update=False, layout=items_layout)\n", (13469, 13589), True, 'import ipywidgets as widgets\n'), ((13667, 13802), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(5)', 'min': '(1)', 'max': '(15)', 'step': '(2)', 'description': '"""Median kernal size:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=5, min=1, max=15, step=2, description=\n 'Median kernal size:', continuous_update=False, layout=items_layout)\n", (13684, 13802), True, 'import ipywidgets as widgets\n'), ((13880, 14018), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(9)', 'min': '(1)', 'max': '(15)', 'step': '(2)', 'description': '"""Bilateral kernal size:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=9, min=1, max=15, step=2, description=\n 'Bilateral kernal size:', continuous_update=False, layout=items_layout)\n", (13897, 14018), True, 'import ipywidgets as widgets\n'), ((14104, 14239), 'ipywidgets.IntSlider', 'widgets.IntSlider', ([], {'value': '(25)', 'min': '(1)', 'max': '(95)', 'step': '(2)', 'description': '"""Bilateral radiius:"""', 'continuous_update': '(False)', 'layout': 'items_layout'}), "(value=25, min=1, max=95, step=2, description=\n 'Bilateral radiius:', continuous_update=False, layout=items_layout)\n", (14121, 14239), True, 'import ipywidgets as widgets\n'), ((14324, 14435), 'ipywidgets.BoundedIntText', 'widgets.BoundedIntText', ([], {'value': '(20)', 'min': '(1)', 'max': '(100)', 'step': '(1)', 'description': '"""Figure width:"""', 'layout': 'items_layout'}), "(value=20, min=1, max=100, step=1, description=\n 'Figure width:', layout=items_layout)\n", (14346, 14435), True, 'import ipywidgets as widgets\n'), ((14489, 14601), 'ipywidgets.BoundedIntText', 'widgets.BoundedIntText', ([], {'value': '(30)', 'min': '(1)', 'max': '(100)', 'step': '(1)', 'description': '"""Figure height:"""', 'layout': 'items_layout'}), "(value=30, min=1, max=100, step=1, description=\n 'Figure height:', layout=items_layout)\n", (14511, 14601), True, 'import ipywidgets as widgets\n'), ((16385, 16433), 'ipywidgets.Button', 'widgets.Button', ([], {'description': '"""Show widget values"""'}), "(description='Show widget values')\n", (16399, 16433), True, 'import ipywidgets as widgets\n'), ((16545, 16597), 'ipywidgets.Output', 'widgets.Output', ([], {'layout': "{'border': '1px solid black'}"}), "(layout={'border': '1px solid black'})\n", (16559, 16597), True, 'import ipywidgets as widgets\n'), ((17247, 17569), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['set_binary_thresholds', "{'target_fn': wfilepath, 'cropx': wcropx, 'cropy': wcropy, 'thresholds':\n wbrange, 'invert': winvert, 'gamma': wgamma, 'brightness': wbright,\n 'contrast': wcontrast, 'clahe': wclahe, 'clahe_window': wclahewin,\n 'figwidth': wfigwidth, 'figheight': wfigheight}"], {}), "(set_binary_thresholds, {'target_fn': wfilepath,\n 'cropx': wcropx, 'cropy': wcropy, 'thresholds': wbrange, 'invert':\n winvert, 'gamma': wgamma, 'brightness': wbright, 'contrast': wcontrast,\n 'clahe': wclahe, 'clahe_window': wclahewin, 'figwidth': wfigwidth,\n 'figheight': wfigheight})\n", (17273, 17569), True, 'import ipywidgets as widgets\n'), ((18380, 18577), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['adjust_contour_filters', "{'figwidth': wfigwidth, 'figheight': wfigheight, 'target_fn': wfilepath,\n 'area': warange, 'contour_ratio': wratio, 'minwidth': wminwidth}"], {}), "(adjust_contour_filters, {'figwidth': wfigwidth,\n 'figheight': wfigheight, 'target_fn': wfilepath, 'area': warange,\n 'contour_ratio': wratio, 'minwidth': wminwidth})\n", (18406, 18577), True, 'import ipywidgets as widgets\n'), ((18669, 18838), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['widget_find_discontinuities', "{'ksize': wksize, 'edge_thresholds': wedgethresholds, 'min_length':\n wminedgelen, 'target_fn': wfilepath}"], {}), "(widget_find_discontinuities, {'ksize': wksize,\n 'edge_thresholds': wedgethresholds, 'min_length': wminedgelen,\n 'target_fn': wfilepath})\n", (18695, 18838), True, 'import ipywidgets as widgets\n'), ((19164, 19226), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['widget_map_color', "{'cmap': wcmaps}"], {}), "(widget_map_color, {'cmap': wcmaps})\n", (19190, 19226), True, 'import ipywidgets as widgets\n'), ((19273, 19513), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['widget_noise_calculator', "{'filepath': wfilepath, 'gaussian_k': wgaussian, 'median_k': wmedian,\n 'bilateral_k': wbilateralk, 'bilateral_r': wbilateralr, 'figwidth':\n wnfigwidth, 'figheight': wnfigheight}"], {}), "(widget_noise_calculator, {'filepath': wfilepath,\n 'gaussian_k': wgaussian, 'median_k': wmedian, 'bilateral_k':\n wbilateralk, 'bilateral_r': wbilateralr, 'figwidth': wnfigwidth,\n 'figheight': wnfigheight})\n", (19299, 19513), True, 'import ipywidgets as widgets\n'), ((19907, 20100), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['widget_contour_similarity', "{'target_fn': wfilepath, 'figsize': wbandfigsize, 'nrows': wbandnrows,\n 'ncols': wbandncols, 'equalize': wequalize, 'cmap': wcmaps}"], {}), "(widget_contour_similarity, {'target_fn':\n wfilepath, 'figsize': wbandfigsize, 'nrows': wbandnrows, 'ncols':\n wbandncols, 'equalize': wequalize, 'cmap': wcmaps})\n", (19933, 20100), True, 'import ipywidgets as widgets\n'), ((20522, 20636), 'ipywidgets.Layout', 'Layout', ([], {'display': '"""flex"""', 'flex_flow': '"""column"""', 'align_items': '"""stretch"""', 'width': '"""50%"""', 'margin': '"""10px"""', 'padding': '"""10px"""'}), "(display='flex', flex_flow='column', align_items='stretch', width=\n '50%', margin='10px', padding='10px')\n", (20528, 20636), False, 'from ipywidgets import Layout\n'), ((22677, 22690), 'ipywidgets.Tab', 'widgets.Tab', ([], {}), '()\n', (22688, 22690), True, 'import ipywidgets as widgets\n'), ((23324, 23344), 'ipywidgets.Layout', 'Layout', ([], {'width': '"""auto"""'}), "(width='auto')\n", (23330, 23344), False, 'from ipywidgets import Layout\n'), ((23363, 23477), 'ipywidgets.Layout', 'Layout', ([], {'display': '"""flex"""', 'flex_flow': '"""column"""', 'align_items': '"""stretch"""', 'width': '"""75%"""', 'margin': '"""10px"""', 'padding': '"""10px"""'}), "(display='flex', flex_flow='column', align_items='stretch', width=\n '75%', margin='10px', padding='10px')\n", (23369, 23477), False, 'from ipywidgets import Layout\n'), ((23986, 24277), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['set_binary_thresholds', "{'target_fn': wfilepath, 'cropx': wcropx, 'cropy': wcropy, 'thresholds':\n wbrange, 'invert': winvert, 'gamma': wgamma, 'brightness': wbright,\n 'contrast': wcontrast, 'clahe': wclahe, 'figwidth': wfigwidth,\n 'figheight': wfigheight}"], {}), "(set_binary_thresholds, {'target_fn': wfilepath,\n 'cropx': wcropx, 'cropy': wcropy, 'thresholds': wbrange, 'invert':\n winvert, 'gamma': wgamma, 'brightness': wbright, 'contrast': wcontrast,\n 'clahe': wclahe, 'figwidth': wfigwidth, 'figheight': wfigheight})\n", (24012, 24277), True, 'import ipywidgets as widgets\n'), ((25831, 25922), 'ipywidgets.FloatText', 'widgets.FloatText', ([], {'value': '(2)', 'description': '"""# rows:"""', 'disabled': '(False)', 'layout': 'items_layout'}), "(value=2, description='# rows:', disabled=False, layout=\n items_layout)\n", (25848, 25922), True, 'import ipywidgets as widgets\n'), ((25933, 26027), 'ipywidgets.FloatText', 'widgets.FloatText', ([], {'value': '(2)', 'description': '"""# columns:"""', 'disabled': '(False)', 'layout': 'items_layout'}), "(value=2, description='# columns:', disabled=False, layout\n =items_layout)\n", (25950, 26027), True, 'import ipywidgets as widgets\n'), ((26041, 26151), 'ipywidgets.Text', 'widgets.Text', ([], {'value': 'f"""{DIRECTORY}split_image"""', 'description': '"""Save new images as:"""', 'continuous_update': '(False)'}), "(value=f'{DIRECTORY}split_image', description=\n 'Save new images as:', continuous_update=False)\n", (26053, 26151), True, 'import ipywidgets as widgets\n'), ((26194, 26300), 'ipywidgets.Dropdown', 'widgets.Dropdown', ([], {'options': "['jpg', 'png', 'svg', 'tif']", 'description': '"""File type:"""', 'layout': 'items_layout'}), "(options=['jpg', 'png', 'svg', 'tif'], description=\n 'File type:', layout=items_layout)\n", (26210, 26300), True, 'import ipywidgets as widgets\n'), ((26313, 26391), 'ipywidgets.Checkbox', 'widgets.Checkbox', ([], {'value': '(False)', 'description': '"""Show splits:"""', 'layout': 'items_layout'}), "(value=False, description='Show splits:', layout=items_layout)\n", (26329, 26391), True, 'import ipywidgets as widgets\n'), ((26432, 26599), 'ipywidgets.interactive_output', 'widgets.interactive_output', (['widget_equalize', "{'rows': wrowfloat, 'columns': wcolfloat, 'saveas': wsavesplits, 'savetype':\n wfiletype, 'show_images': wshowsplit}"], {}), "(widget_equalize, {'rows': wrowfloat, 'columns':\n wcolfloat, 'saveas': wsavesplits, 'savetype': wfiletype, 'show_images':\n wshowsplit})\n", (26458, 26599), True, 'import ipywidgets as widgets\n'), ((28123, 28136), 'ipywidgets.Tab', 'widgets.Tab', ([], {}), '()\n', (28134, 28136), True, 'import ipywidgets as widgets\n'), ((704, 733), 'ipywidgets.Output', 'widgets.Output', ([], {'layout': 'layout'}), '(layout=layout)\n', (718, 733), True, 'import ipywidgets as widgets\n'), ((1129, 1146), 'IPython.display.display', 'display', (['self.out'], {}), '(self.out)\n', (1136, 1146), False, 'from IPython.display import display\n'), ((1370, 1433), 'logging.Formatter', 'logging.Formatter', (['"""%(asctime)s - [%(levelname)s] %(message)s"""'], {}), "('%(asctime)s - [%(levelname)s] %(message)s')\n", (1387, 1433), False, 'import logging\n'), ((2548, 2576), 'cv2.bitwise_not', 'cv2.bitwise_not', (['target_grey'], {}), '(target_grey)\n', (2563, 2576), False, 'import cv2\n'), ((2683, 2756), 'cv2.createCLAHE', 'cv2.createCLAHE', ([], {'clipLimit': '(2.0)', 'tileGridSize': '(clahe_window, clahe_window)'}), '(clipLimit=2.0, tileGridSize=(clahe_window, clahe_window))\n', (2698, 2756), False, 'import cv2\n'), ((16080, 16123), 'os.path.join', 'os.path.join', (['wdirectory.value', '"""log_files"""'], {}), "(wdirectory.value, 'log_files')\n", (16092, 16123), False, 'import os\n'), ((16135, 16158), 'os.path.exists', 'os.path.exists', (['savedir'], {}), '(savedir)\n', (16149, 16158), False, 'import os\n'), ((16245, 16278), 'os.path.basename', 'os.path.basename', (['wfilepath.value'], {}), '(wfilepath.value)\n', (16261, 16278), False, 'import os\n'), ((16297, 16342), 'os.path.join', 'os.path.join', (['savedir', 'f"""{analysis_file}.log"""'], {}), "(savedir, f'{analysis_file}.log')\n", (16309, 16342), False, 'import os\n'), ((8163, 8190), 'os.path.join', 'os.path.join', (['change.new', 'f'], {}), '(change.new, f)\n', (8175, 8190), False, 'import os\n'), ((15749, 15763), 'datetime.datetime.now', 'datetime.now', ([], {}), '()\n', (15761, 15763), False, 'from datetime import datetime\n'), ((16203, 16220), 'os.mkdir', 'os.mkdir', (['savedir'], {}), '(savedir)\n', (16211, 16220), False, 'import os\n'), ((21252, 21286), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""', 'margin': '"""3"""'}), "(border='solid', margin='3')\n", (21258, 21286), False, 'from ipywidgets import Layout\n'), ((21319, 21380), 'ipywidgets.VBox', 'widgets.VBox', (['[warange, wratio, wminwidth]'], {'layout': 'box_layout'}), '([warange, wratio, wminwidth], layout=box_layout)\n', (21331, 21380), True, 'import ipywidgets as widgets\n'), ((21473, 21495), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (21479, 21495), False, 'from ipywidgets import Layout\n'), ((21525, 21596), 'ipywidgets.VBox', 'widgets.VBox', (['[wksize, wedgethresholds, wminedgelen]'], {'layout': 'box_layout'}), '([wksize, wedgethresholds, wminedgelen], layout=box_layout)\n', (21537, 21596), True, 'import ipywidgets as widgets\n'), ((21683, 21705), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (21689, 21705), False, 'from ipywidgets import Layout\n'), ((21736, 21844), 'ipywidgets.VBox', 'widgets.VBox', (['[wgaussian, wmedian, wbilateralk, wbilateralr, wnfigwidth, wnfigheight]'], {'layout': 'box_layout'}), '([wgaussian, wmedian, wbilateralk, wbilateralr, wnfigwidth,\n wnfigheight], layout=box_layout)\n', (21748, 21844), True, 'import ipywidgets as widgets\n'), ((21932, 21954), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (21938, 21954), False, 'from ipywidgets import Layout\n'), ((21984, 22036), 'ipywidgets.VBox', 'widgets.VBox', (['[wcmaps, wsavecmap]'], {'layout': 'box_layout'}), '([wcmaps, wsavecmap], layout=box_layout)\n', (21996, 22036), True, 'import ipywidgets as widgets\n'), ((22125, 22147), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (22131, 22147), False, 'from ipywidgets import Layout\n'), ((22178, 22286), 'ipywidgets.VBox', 'widgets.VBox', (['[wcalcsimilar, wbandfigsize, wbandnrows, wbandncols, wcmaps, wequalize]'], {'layout': 'box_layout'}), '([wcalcsimilar, wbandfigsize, wbandnrows, wbandncols, wcmaps,\n wequalize], layout=box_layout)\n', (22190, 22286), True, 'import ipywidgets as widgets\n'), ((22376, 22398), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (22382, 22398), False, 'from ipywidgets import Layout\n'), ((22430, 22486), 'ipywidgets.VBox', 'widgets.VBox', (['[wviewvalues, wsavelog]'], {'layout': 'box_layout'}), '([wviewvalues, wsavelog], layout=box_layout)\n', (22442, 22486), True, 'import ipywidgets as widgets\n'), ((22580, 22602), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""'}), "(border='solid')\n", (22586, 22602), False, 'from ipywidgets import Layout\n'), ((25546, 25565), 'ipywidgets.Layout', 'Layout', ([], {'width': '"""80%"""'}), "(width='80%')\n", (25552, 25565), False, 'from ipywidgets import Layout\n'), ((25770, 25789), 'ipywidgets.Layout', 'Layout', ([], {'width': '"""80%"""'}), "(width='80%')\n", (25776, 25789), False, 'from ipywidgets import Layout\n'), ((26943, 27089), 'ipywidgets.VBox', 'widgets.VBox', (['[wdirectory, wfilepath, wcropx, wcropy, winvert, wbrange, wgamma, wbright,\n wcontrast, wsavesplits, wfiletype]'], {'layout': 'box_layout'}), '([wdirectory, wfilepath, wcropx, wcropy, winvert, wbrange,\n wgamma, wbright, wcontrast, wsavesplits, wfiletype], layout=box_layout)\n', (26955, 27089), True, 'import ipywidgets as widgets\n'), ((27225, 27259), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""', 'margin': '"""3"""'}), "(border='solid', margin='3')\n", (27231, 27259), False, 'from ipywidgets import Layout\n'), ((27726, 27760), 'ipywidgets.Layout', 'Layout', ([], {'border': '"""solid"""', 'margin': '"""3"""'}), "(border='solid', margin='3')\n", (27732, 27760), False, 'from ipywidgets import Layout\n'), ((6410, 6431), 'cv2.equalizeHist', 'cv2.equalizeHist', (['img'], {}), '(img)\n', (6426, 6431), False, 'import cv2\n'), ((7913, 7939), 'os.path.join', 'os.path.join', (['DIRECTORY', 'f'], {}), '(DIRECTORY, f)\n', (7925, 7939), False, 'import os\n'), ((8200, 8222), 'os.listdir', 'os.listdir', (['change.new'], {}), '(change.new)\n', (8210, 8222), False, 'import os\n'), ((7949, 7970), 'os.listdir', 'os.listdir', (['DIRECTORY'], {}), '(DIRECTORY)\n', (7959, 7970), False, 'import os\n'), ((20949, 20980), 'ipywidgets.HBox', 'widgets.HBox', (['[winvert, wclahe]'], {}), '([winvert, wclahe])\n', (20961, 20980), True, 'import ipywidgets as widgets\n'), ((27309, 27344), 'ipywidgets.HBox', 'widgets.HBox', (['[wrowfloat, wrowtext]'], {}), '([wrowfloat, wrowtext])\n', (27321, 27344), True, 'import ipywidgets as widgets\n'), ((27393, 27428), 'ipywidgets.HBox', 'widgets.HBox', (['[wcolfloat, wcoltext]'], {}), '([wcolfloat, wcoltext])\n', (27405, 27428), True, 'import ipywidgets as widgets\n')] |
import os
import caffe
import numpy as np
import skimage
import tensorflow as tf
from Preprocessor import Preprocessor
from datasets.ImageNet import ImageNet
from models.AlexNetConverter import AlexNetConverter
from models.SDNet import SDNet
from train.SDNetTrainer import SDNetTrainer
im_s = 227
def preprocess(img):
out = np.copy(img)
out = out[:, :, [2, 1, 0]] # swap channel from RGB to BGR
out = out.transpose((2, 0, 1)) # h, w, c -> c, h, w
return out
def load_image(path):
# load image
img = np.float32(skimage.io.imread(path))
img /= 127.5
img -= 1.0
# we crop image from center
short_edge = min(img.shape[:2])
yy = int((img.shape[0] - short_edge) / 2)
xx = int((img.shape[1] - short_edge) / 2)
crop_img = img[yy: yy + short_edge, xx: xx + short_edge]
# resize to 224, 224
resized_img = skimage.transform.resize(crop_img, (im_s, im_s))
return resized_img
model = SDNet(num_layers=5, target_shape=[im_s, im_s, 3], batch_size=16, disc_pad='VALID')
data = ImageNet()
preprocessor = Preprocessor(target_shape=[im_s, im_s, 3])
trainer = SDNetTrainer(model=model, dataset=data, pre_processor=preprocessor, num_epochs=80, tag='refactored',
lr_policy='const', optimizer='adam')
model_dir = '../test_converter'
proto_path = 'deploy.prototxt'
ckpt = '../test_converter/model.ckpt-800722'
save_path = os.path.join(model_dir, 'alexnet_v2.caffemodel')
np.random.seed(42)
img = load_image('cat.jpg')
converter = AlexNetConverter(model_dir, model, trainer.sess, ckpt=ckpt, remove_bn=True, scale=1.0, bgr=True,
im_size=(im_s, im_s), with_fc=False, use_classifier=False)
with converter.sess:
converter.extract_and_store()
net, encoded = model.discriminator.encode(tf.constant(img, shape=[1, im_s, im_s, 3], dtype=tf.float32),
with_fc=converter.with_fc, reuse=True, training=False)
result_tf = encoded.eval()
converter.load_and_set_caffe_weights(proto_path=proto_path, save_path=save_path)
# Testing
net_caffe = caffe.Net(proto_path, save_path, caffe.TEST)
net_caffe.blobs['data'].data[0] = preprocess(img)
assert net_caffe.blobs['data'].data[0].shape == (3, im_s, im_s)
net_caffe.forward()
result_caffe = net_caffe.blobs['Convolution5'].data[0]
result_caffe = result_caffe.transpose((1, 2, 0)) # h, w, c -> c, h, w
print(np.linalg.norm(result_tf - result_caffe))
| [
"datasets.ImageNet.ImageNet",
"numpy.copy",
"Preprocessor.Preprocessor",
"os.path.join",
"numpy.linalg.norm",
"skimage.io.imread",
"models.AlexNetConverter.AlexNetConverter",
"train.SDNetTrainer.SDNetTrainer",
"numpy.random.seed",
"models.SDNet.SDNet",
"caffe.Net",
"tensorflow.constant",
"sk... | [((946, 1033), 'models.SDNet.SDNet', 'SDNet', ([], {'num_layers': '(5)', 'target_shape': '[im_s, im_s, 3]', 'batch_size': '(16)', 'disc_pad': '"""VALID"""'}), "(num_layers=5, target_shape=[im_s, im_s, 3], batch_size=16, disc_pad=\n 'VALID')\n", (951, 1033), False, 'from models.SDNet import SDNet\n'), ((1036, 1046), 'datasets.ImageNet.ImageNet', 'ImageNet', ([], {}), '()\n', (1044, 1046), False, 'from datasets.ImageNet import ImageNet\n'), ((1062, 1104), 'Preprocessor.Preprocessor', 'Preprocessor', ([], {'target_shape': '[im_s, im_s, 3]'}), '(target_shape=[im_s, im_s, 3])\n', (1074, 1104), False, 'from Preprocessor import Preprocessor\n'), ((1115, 1256), 'train.SDNetTrainer.SDNetTrainer', 'SDNetTrainer', ([], {'model': 'model', 'dataset': 'data', 'pre_processor': 'preprocessor', 'num_epochs': '(80)', 'tag': '"""refactored"""', 'lr_policy': '"""const"""', 'optimizer': '"""adam"""'}), "(model=model, dataset=data, pre_processor=preprocessor,\n num_epochs=80, tag='refactored', lr_policy='const', optimizer='adam')\n", (1127, 1256), False, 'from train.SDNetTrainer import SDNetTrainer\n'), ((1397, 1445), 'os.path.join', 'os.path.join', (['model_dir', '"""alexnet_v2.caffemodel"""'], {}), "(model_dir, 'alexnet_v2.caffemodel')\n", (1409, 1445), False, 'import os\n'), ((1447, 1465), 'numpy.random.seed', 'np.random.seed', (['(42)'], {}), '(42)\n', (1461, 1465), True, 'import numpy as np\n'), ((1507, 1670), 'models.AlexNetConverter.AlexNetConverter', 'AlexNetConverter', (['model_dir', 'model', 'trainer.sess'], {'ckpt': 'ckpt', 'remove_bn': '(True)', 'scale': '(1.0)', 'bgr': '(True)', 'im_size': '(im_s, im_s)', 'with_fc': '(False)', 'use_classifier': '(False)'}), '(model_dir, model, trainer.sess, ckpt=ckpt, remove_bn=True,\n scale=1.0, bgr=True, im_size=(im_s, im_s), with_fc=False,\n use_classifier=False)\n', (1523, 1670), False, 'from models.AlexNetConverter import AlexNetConverter\n'), ((2092, 2136), 'caffe.Net', 'caffe.Net', (['proto_path', 'save_path', 'caffe.TEST'], {}), '(proto_path, save_path, caffe.TEST)\n', (2101, 2136), False, 'import caffe\n'), ((333, 345), 'numpy.copy', 'np.copy', (['img'], {}), '(img)\n', (340, 345), True, 'import numpy as np\n'), ((864, 912), 'skimage.transform.resize', 'skimage.transform.resize', (['crop_img', '(im_s, im_s)'], {}), '(crop_img, (im_s, im_s))\n', (888, 912), False, 'import skimage\n'), ((2403, 2443), 'numpy.linalg.norm', 'np.linalg.norm', (['(result_tf - result_caffe)'], {}), '(result_tf - result_caffe)\n', (2417, 2443), True, 'import numpy as np\n'), ((543, 566), 'skimage.io.imread', 'skimage.io.imread', (['path'], {}), '(path)\n', (560, 566), False, 'import skimage\n'), ((1793, 1853), 'tensorflow.constant', 'tf.constant', (['img'], {'shape': '[1, im_s, im_s, 3]', 'dtype': 'tf.float32'}), '(img, shape=[1, im_s, im_s, 3], dtype=tf.float32)\n', (1804, 1853), True, 'import tensorflow as tf\n')] |
'''
间接平差
main.py
'''
import pandas as pd
import numpy as np
import sys
np.set_printoptions(threshold=sys.maxsize) #print显示完整array
from gnssnet import *
import math
def Save2Excel(mats,name):
data = pd.DataFrame(mats)
writer = pd.ExcelWriter("C:\\Users\\sheld\\Desktop\\111\\"+ "间接平差的" +name + ".xlsx")
data.to_excel(writer, "page_1", float_format = '%.6f')#浮点数,精确到6位小数
writer.save()
writer.close()
def init_GNSSNet(G):
#读入所有的基线坐标信息
with open("data.csv",'r') as f:
for line in f.readlines():
b= Baseline()
b.init_baseline(line.split(','))
G.insert_Baseline(b)
f.close()
#已经手算过近似坐标了
with open("zhandian.csv",'r',encoding='UTF-8-sig') as f:
i = 1
for line in f.readlines():
p = station()
p.init_station2(line)
if not p.cat_match():
p.beizhu(i)
i = i + 1
G.insert_Station(p)
f.close()
n = 63
t = 24
r = n - t
global G
G = GNSSNet()
init_GNSSNet(G)
P = np.zeros([n,n], dtype = float)
L = np.zeros([n,1], dtype = float)
l = np.zeros([n,1], dtype = float)
'''
L^ = BX^ + d
l = L - (BX0 + d)
V = Bx^ - l
'''
B = np.zeros([n,t], dtype = float)
d = np.zeros([n,1], dtype = float)
X0 = np.zeros([t,1], dtype = float)
x = np.zeros([t,1], dtype = float)
#写入B,d矩阵
for baseline in G.BaselineSet:
bl_inf = baseline.baseline_inf()
num = bl_inf[0]
origin = bl_inf[1]
target = bl_inf[2]
#起点
found,ifknow,stat_inf = G.Station_Cat_Match(origin)
if ifknow:
d[3 * num - 3][0] = d[3 * num - 3][0] - stat_inf[2]
d[3 * num - 2][0] = d[3 * num - 2][0] - stat_inf[3]
d[3 * num - 1][0] = d[3 * num - 1][0] - stat_inf[4]
## print(num,bl_inf,"起点是已知点",stat_inf)
elif not ifknow:
B[3 * num - 3][3 * stat_inf[6] - 3] = -1
B[3 * num - 2][3 * stat_inf[6] - 2] = -1
B[3 * num - 1][3 * stat_inf[6] - 1] = -1
## print(num,bl_inf,"起点是未知点",stat_inf)
else:
print("有错误的站点名")
#末尾
found,ifknow,stat_inf = G.Station_Cat_Match(target)
if ifknow:
d[3 * num - 3][0] = d[3 * num - 3][0] + stat_inf[2]
d[3 * num - 2][0] = d[3 * num - 2][0] + stat_inf[3]
d[3 * num - 1][0] = d[3 * num - 1][0] + stat_inf[4]
## print(num,bl_inf,"终点是已知点",stat_inf)
elif not ifknow:
B[3 * num - 3][3 * stat_inf[6] - 3] = 1
B[3 * num - 2][3 * stat_inf[6] - 2] = 1
B[3 * num - 1][3 * stat_inf[6] - 1] = 1
## print(num,bl_inf,"终点是未知点",stat_inf)
else:
print("有错误的站点名")
## print(B[3 * num - 3])
## print(B[3 * num - 2])
## print(B[3 * num - 1])
## print(d[3 * num - 3])
## print(d[3 * num - 2])
## print(d[3 * num - 1])
#定权
P = G.init_P(P)
L = G.init_L(L)
x0 = G.init_X0(X0)
P = np.matrix(P)
L = np.matrix(L)
X0 = np.matrix(X0)
d = np.matrix(d)
B = np.matrix(B)
Q = P.I
print("X0:\n",X0)
print("L:\n",L)
print("d:\n",d)
print("B:\n",B)
l = L - np.dot(B,X0) - d
print("l:\n",l)
#化成毫米单位
l = np.matrix(np.dot(l, 1000))
#Nbbx^ - W = 0
Nbb = np.dot(np.dot(B.T, P), B)
W = np.dot(np.dot(B.T, P), l)
#矩阵的秩
print(np.linalg.matrix_rank(B, tol=None, hermitian=False))
print(np.linalg.matrix_rank(l, tol=None, hermitian=False))
#x^
x = np.dot(Nbb.I,W)
V = np.dot(B,x) - l
print('x',x,'\n')
print('V',V,'\n')
time = 1
V_total = V
x_total = x
##
##while abs(V.max()) > 0.00001 and time < 10000:
## L = L + V/1000
## X0 = X0 + x/1000
##
## l = L - np.dot(B,X0) - d
##
## l = np.matrix(np.dot(l, 1000))
## x = np.dot(Nbb.I,W)
## V = np.dot(B,x) - l
##
## V_total = V_total + V
## x_total = x_total + x
## time = time + 1
##
##
L = L + V/1000
X0 = X0 + x/1000
print('L^',L)
print("time:",time,'\n')
print('V_total',V_total,'\n')
print('x_total',x_total,'\n')
sigema02 = np.dot(np.dot(V_total.T,P),V_total)/r
sigema0 = math.sqrt(sigema02)
print(sigema0)
Save2Excel(B,"B")
Save2Excel(d,"d")
Save2Excel(L,"L^")
Save2Excel(l,"l")
Save2Excel(X0,"X^")
Save2Excel(V_total,"V_total")
Save2Excel(x_total,"x_total")
Save2Excel(Nbb,"Nbb")
| [
"numpy.linalg.matrix_rank",
"pandas.ExcelWriter",
"math.sqrt",
"numpy.dot",
"numpy.zeros",
"pandas.DataFrame",
"numpy.matrix",
"numpy.set_printoptions"
] | [((72, 114), 'numpy.set_printoptions', 'np.set_printoptions', ([], {'threshold': 'sys.maxsize'}), '(threshold=sys.maxsize)\n', (91, 114), True, 'import numpy as np\n'), ((1115, 1144), 'numpy.zeros', 'np.zeros', (['[n, n]'], {'dtype': 'float'}), '([n, n], dtype=float)\n', (1123, 1144), True, 'import numpy as np\n'), ((1150, 1179), 'numpy.zeros', 'np.zeros', (['[n, 1]'], {'dtype': 'float'}), '([n, 1], dtype=float)\n', (1158, 1179), True, 'import numpy as np\n'), ((1185, 1214), 'numpy.zeros', 'np.zeros', (['[n, 1]'], {'dtype': 'float'}), '([n, 1], dtype=float)\n', (1193, 1214), True, 'import numpy as np\n'), ((1274, 1303), 'numpy.zeros', 'np.zeros', (['[n, t]'], {'dtype': 'float'}), '([n, t], dtype=float)\n', (1282, 1303), True, 'import numpy as np\n'), ((1309, 1338), 'numpy.zeros', 'np.zeros', (['[n, 1]'], {'dtype': 'float'}), '([n, 1], dtype=float)\n', (1317, 1338), True, 'import numpy as np\n'), ((1346, 1375), 'numpy.zeros', 'np.zeros', (['[t, 1]'], {'dtype': 'float'}), '([t, 1], dtype=float)\n', (1354, 1375), True, 'import numpy as np\n'), ((1381, 1410), 'numpy.zeros', 'np.zeros', (['[t, 1]'], {'dtype': 'float'}), '([t, 1], dtype=float)\n', (1389, 1410), True, 'import numpy as np\n'), ((3182, 3194), 'numpy.matrix', 'np.matrix', (['P'], {}), '(P)\n', (3191, 3194), True, 'import numpy as np\n'), ((3199, 3211), 'numpy.matrix', 'np.matrix', (['L'], {}), '(L)\n', (3208, 3211), True, 'import numpy as np\n'), ((3217, 3230), 'numpy.matrix', 'np.matrix', (['X0'], {}), '(X0)\n', (3226, 3230), True, 'import numpy as np\n'), ((3235, 3247), 'numpy.matrix', 'np.matrix', (['d'], {}), '(d)\n', (3244, 3247), True, 'import numpy as np\n'), ((3252, 3264), 'numpy.matrix', 'np.matrix', (['B'], {}), '(B)\n', (3261, 3264), True, 'import numpy as np\n'), ((3640, 3656), 'numpy.dot', 'np.dot', (['Nbb.I', 'W'], {}), '(Nbb.I, W)\n', (3646, 3656), True, 'import numpy as np\n'), ((4305, 4324), 'math.sqrt', 'math.sqrt', (['sigema02'], {}), '(sigema02)\n', (4314, 4324), False, 'import math\n'), ((208, 226), 'pandas.DataFrame', 'pd.DataFrame', (['mats'], {}), '(mats)\n', (220, 226), True, 'import pandas as pd\n'), ((244, 321), 'pandas.ExcelWriter', 'pd.ExcelWriter', (["('C:\\\\Users\\\\sheld\\\\Desktop\\\\111\\\\' + '间接平差的' + name + '.xlsx')"], {}), "('C:\\\\Users\\\\sheld\\\\Desktop\\\\111\\\\' + '间接平差的' + name + '.xlsx')\n", (258, 321), True, 'import pandas as pd\n'), ((3409, 3424), 'numpy.dot', 'np.dot', (['l', '(1000)'], {}), '(l, 1000)\n', (3415, 3424), True, 'import numpy as np\n'), ((3455, 3469), 'numpy.dot', 'np.dot', (['B.T', 'P'], {}), '(B.T, P)\n', (3461, 3469), True, 'import numpy as np\n'), ((3485, 3499), 'numpy.dot', 'np.dot', (['B.T', 'P'], {}), '(B.T, P)\n', (3491, 3499), True, 'import numpy as np\n'), ((3518, 3569), 'numpy.linalg.matrix_rank', 'np.linalg.matrix_rank', (['B'], {'tol': 'None', 'hermitian': '(False)'}), '(B, tol=None, hermitian=False)\n', (3539, 3569), True, 'import numpy as np\n'), ((3577, 3628), 'numpy.linalg.matrix_rank', 'np.linalg.matrix_rank', (['l'], {'tol': 'None', 'hermitian': '(False)'}), '(l, tol=None, hermitian=False)\n', (3598, 3628), True, 'import numpy as np\n'), ((3661, 3673), 'numpy.dot', 'np.dot', (['B', 'x'], {}), '(B, x)\n', (3667, 3673), True, 'import numpy as np\n'), ((3352, 3365), 'numpy.dot', 'np.dot', (['B', 'X0'], {}), '(B, X0)\n', (3358, 3365), True, 'import numpy as np\n'), ((4263, 4283), 'numpy.dot', 'np.dot', (['V_total.T', 'P'], {}), '(V_total.T, P)\n', (4269, 4283), True, 'import numpy as np\n')] |
import argparse
import json
import time
import sys,os, copy
import tensorflow as tf
import numpy as np
# sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
from competitor.common.paths import RESULTS_DIR
from competitor.models.loader import load_model, load_env
from competitor.heuristics.loader import load_heuristics
from competitor.recourse.utils import get_instance_info
from competitor.recourse.search import SequenceSearch, ParamsSearch
from competitor.recourse.utils import relu_cost_fn
from competitor.recourse.config import base_config
class ModelConfig(object):
def __init__(self, name, ckpt, data):
self.name = name
self.ckpt = ckpt
self.data = data
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('--target-model', dest='model_name', type=str)
parser.add_argument('--ckpt', default='model.h5',dest='model_ckpt', type=str)
parser.add_argument('--target-data', default='data.npy',dest='data_filename', type=str)
parser.add_argument('--mode', dest='mode', default='vanilla', type=str)
parser.add_argument('--l', dest='length', default=4, type=int)
parser.add_argument('--actions', dest='action_names', type=str, nargs='+')
parser.add_argument('--exp-name', default='test', type=str)
parser.add_argument('--instance-id', default=0, type=int)
options = parser.parse_args()
if options.model_name == 'quickdraw' and options.data_filename == 'data.npy':
options.data_filename = 'data.npz'
return options
def pick_instance(model, target_env, idx=None, false_only=True):
dataset, actions, features, desired_label = target_env
if idx is not None:
if false_only and not is_false(model, dataset, desired_label, idx):
return None, None, None
else:
return dataset.data[idx], dataset.labels[idx], idx
else:
idx = -1
labels = dataset.labels
instances = dataset.data
target_instance = target_label = None
if false_only:
found = False
while not found:
idx = np.random.randint(0, labels.shape[0])
if is_false(model, dataset, desired_label, idx):
found = True
target_label = labels[idx]
target_instance = instances[idx]
print(idx, target_label, target_instance, model.predict(instances[idx:idx + 1]))
return target_instance, target_label, idx
def is_false(model, dataset, desired_label, idx):
labels = dataset.labels
instances = dataset.data
labeled_false = np.argmax(labels[idx]) != np.argmax(desired_label)
predicted_false = np.argmax(desired_label) != np.argmax(
model.predict(instances[idx:idx + 1])[0])
return labeled_false and predicted_false
def run_on_instance(options, instance_id, sav_dir=None):
print(options)
sav_dir = os.path.join(sav_dir, str(instance_id))
if not os.path.exists(sav_dir):
os.makedirs(sav_dir)
with tf.Session() as session:
env = load_env(options.model_name, options.data_filename, used_actions=options.action_names)
model = load_model(options.model_name, options.model_ckpt)
instance, label, instance_id = pick_instance(model, env, idx=instance_id)
if instance_id is None:
print('Target label satisfied by original instance, stopping...')
run_info = start_recording(instance_id, options)
data, actions, features, target_label = env
for name, feature in features.items():
feature.initialize_tf_variables()
if options.model_name == 'quickdraw':
actions = [action.set_p_selector(i, len(actions)) for i, action in enumerate(actions)]
heuristics = load_heuristics(options.mode, actions, model, options.length)
search = SequenceSearch(model, actions, heuristics, sav_dir=sav_dir, config=base_config)
if options.model_name == 'quickdraw':
result = search.find_correction(instance.reshape((1, instance.shape[0], instance.shape[1])),
np.array([target_label]), session)
else:
result = search.find_correction(instance.reshape((1, instance.shape[0])),
np.array([target_label]), session)
out = dict(info=get_instance_info(instance, features),
output=result.summary() if result.best_result is not None else 'Not Found')
return end_recording(run_info, out)
# return dict(instance=instance)
def run_on_instance(options, instance_id, sav_dir=None):
if sav_dir is not None:
sav_dir = os.path.join(sav_dir, str(instance_id))
if not os.path.exists(sav_dir):
os.makedirs(sav_dir)
with tf.Session() as session:
env = load_env(options.model_name, options.data_filename, used_actions=options.action_names)
model = load_model(options.model_name, options.model_ckpt)
instance, label, instance_id = pick_instance(model, env, idx=instance_id)
run_info = start_recording(instance_id, options)
data, actions, features, target_label = env
for name, feature in features.items():
feature.initialize_tf_variables()
if options.model_name == 'quickdraw':
actions = [action.set_p_selector(i, len(actions)) for i, action in enumerate(actions)]
heuristics = load_heuristics(options.mode, actions, model, options.length)
search = SequenceSearch(model, actions, heuristics, sav_dir=sav_dir, config=base_config)
if options.model_name == 'quickdraw':
result = search.find_correction(instance.reshape((1, instance.shape[0], instance.shape[1])),
np.array([target_label]), session)
else:
result = search.find_correction(instance.reshape((1, instance.shape[0])),
np.array([target_label]), session)
out = dict(info=get_instance_info(instance, features),
output=result.summary() if result.best_result is not None else 'Not Found')
return end_recording(run_info, out)
def start_recording(target_idx, options):
info = create_run_info(target_idx, options)
print(
"\n\n______________________________________________________________________________________________________")
print(target_idx, info['start'])
print('Starting %s run on item %d at %d' % (options.mode, target_idx, info['start']))
return info
def create_run_info(target_idx, options):
return dict(idx=target_idx,
mode=options.mode,
model=options.model_name,
start=time.time(),
end=0,
time_taken=0,
success=False)
def end_recording(record, result):
record['end'] = time.time()
record['time_taken'] = record['end'] - record['start']
print('Finished %s run on item %d at %d, time taken: %d' % (
record['mode'], record['idx'], record['end'], record['time_taken']))
if result['output'] != 'Not Found':
result['success'] = True
print('Run Successful for item %d' % (record['idx']))
else:
print('No solution found for item %d' % (record['idx']))
sys.stdout.flush()
return {**record, **result}
if __name__ == '__main__':
FLAGS = parse_args()
sav_dir = os.path.join('results',FLAGS.exp_name,FLAGS.model_name)
if not os.path.exists(sav_dir):
os.makedirs(sav_dir)
json.dump(vars(base_config), open(os.path.join(sav_dir, 'config.json'), 'w'), indent=4)
for i in range(100):
# Pass a sav_dir below to save separate output files for each sequence searched
# This is useful for running it in a distributed manner
a = time.time()
output = run_on_instance(FLAGS, i, sav_dir=None)
tf.reset_default_graph()
print('Time taken for instance', time.time()-a)
if FLAGS.model_name != 'quickdraw' or output['success']:
save_filename = os.path.join(sav_dir, ('run_%s.json' % (output['idx'])))
json.dump(output, open(save_filename, 'w+'), indent=4) | [
"os.path.exists",
"competitor.heuristics.loader.load_heuristics",
"tensorflow.reset_default_graph",
"argparse.ArgumentParser",
"os.makedirs",
"competitor.models.loader.load_env",
"competitor.recourse.search.SequenceSearch",
"tensorflow.Session",
"os.path.join",
"numpy.argmax",
"numpy.array",
"... | [((760, 785), 'argparse.ArgumentParser', 'argparse.ArgumentParser', ([], {}), '()\n', (783, 785), False, 'import argparse\n'), ((6955, 6966), 'time.time', 'time.time', ([], {}), '()\n', (6964, 6966), False, 'import time\n'), ((7382, 7400), 'sys.stdout.flush', 'sys.stdout.flush', ([], {}), '()\n', (7398, 7400), False, 'import sys, os, copy\n'), ((7511, 7568), 'os.path.join', 'os.path.join', (['"""results"""', 'FLAGS.exp_name', 'FLAGS.model_name'], {}), "('results', FLAGS.exp_name, FLAGS.model_name)\n", (7523, 7568), False, 'import sys, os, copy\n'), ((2653, 2675), 'numpy.argmax', 'np.argmax', (['labels[idx]'], {}), '(labels[idx])\n', (2662, 2675), True, 'import numpy as np\n'), ((2679, 2703), 'numpy.argmax', 'np.argmax', (['desired_label'], {}), '(desired_label)\n', (2688, 2703), True, 'import numpy as np\n'), ((2726, 2750), 'numpy.argmax', 'np.argmax', (['desired_label'], {}), '(desired_label)\n', (2735, 2750), True, 'import numpy as np\n'), ((3004, 3027), 'os.path.exists', 'os.path.exists', (['sav_dir'], {}), '(sav_dir)\n', (3018, 3027), False, 'import sys, os, copy\n'), ((3037, 3057), 'os.makedirs', 'os.makedirs', (['sav_dir'], {}), '(sav_dir)\n', (3048, 3057), False, 'import sys, os, copy\n'), ((3069, 3081), 'tensorflow.Session', 'tf.Session', ([], {}), '()\n', (3079, 3081), True, 'import tensorflow as tf\n'), ((3108, 3199), 'competitor.models.loader.load_env', 'load_env', (['options.model_name', 'options.data_filename'], {'used_actions': 'options.action_names'}), '(options.model_name, options.data_filename, used_actions=options.\n action_names)\n', (3116, 3199), False, 'from competitor.models.loader import load_model, load_env\n'), ((3211, 3261), 'competitor.models.loader.load_model', 'load_model', (['options.model_name', 'options.model_ckpt'], {}), '(options.model_name, options.model_ckpt)\n', (3221, 3261), False, 'from competitor.models.loader import load_model, load_env\n'), ((3821, 3882), 'competitor.heuristics.loader.load_heuristics', 'load_heuristics', (['options.mode', 'actions', 'model', 'options.length'], {}), '(options.mode, actions, model, options.length)\n', (3836, 3882), False, 'from competitor.heuristics.loader import load_heuristics\n'), ((3900, 3979), 'competitor.recourse.search.SequenceSearch', 'SequenceSearch', (['model', 'actions', 'heuristics'], {'sav_dir': 'sav_dir', 'config': 'base_config'}), '(model, actions, heuristics, sav_dir=sav_dir, config=base_config)\n', (3914, 3979), False, 'from competitor.recourse.search import SequenceSearch, ParamsSearch\n'), ((4850, 4862), 'tensorflow.Session', 'tf.Session', ([], {}), '()\n', (4860, 4862), True, 'import tensorflow as tf\n'), ((4889, 4980), 'competitor.models.loader.load_env', 'load_env', (['options.model_name', 'options.data_filename'], {'used_actions': 'options.action_names'}), '(options.model_name, options.data_filename, used_actions=options.\n action_names)\n', (4897, 4980), False, 'from competitor.models.loader import load_model, load_env\n'), ((4992, 5042), 'competitor.models.loader.load_model', 'load_model', (['options.model_name', 'options.model_ckpt'], {}), '(options.model_name, options.model_ckpt)\n', (5002, 5042), False, 'from competitor.models.loader import load_model, load_env\n'), ((5494, 5555), 'competitor.heuristics.loader.load_heuristics', 'load_heuristics', (['options.mode', 'actions', 'model', 'options.length'], {}), '(options.mode, actions, model, options.length)\n', (5509, 5555), False, 'from competitor.heuristics.loader import load_heuristics\n'), ((5573, 5652), 'competitor.recourse.search.SequenceSearch', 'SequenceSearch', (['model', 'actions', 'heuristics'], {'sav_dir': 'sav_dir', 'config': 'base_config'}), '(model, actions, heuristics, sav_dir=sav_dir, config=base_config)\n', (5587, 5652), False, 'from competitor.recourse.search import SequenceSearch, ParamsSearch\n'), ((7579, 7602), 'os.path.exists', 'os.path.exists', (['sav_dir'], {}), '(sav_dir)\n', (7593, 7602), False, 'import sys, os, copy\n'), ((7612, 7632), 'os.makedirs', 'os.makedirs', (['sav_dir'], {}), '(sav_dir)\n', (7623, 7632), False, 'import sys, os, copy\n'), ((7911, 7922), 'time.time', 'time.time', ([], {}), '()\n', (7920, 7922), False, 'import time\n'), ((7988, 8012), 'tensorflow.reset_default_graph', 'tf.reset_default_graph', ([], {}), '()\n', (8010, 8012), True, 'import tensorflow as tf\n'), ((4784, 4807), 'os.path.exists', 'os.path.exists', (['sav_dir'], {}), '(sav_dir)\n', (4798, 4807), False, 'import sys, os, copy\n'), ((4818, 4838), 'os.makedirs', 'os.makedirs', (['sav_dir'], {}), '(sav_dir)\n', (4829, 4838), False, 'import sys, os, copy\n'), ((6801, 6812), 'time.time', 'time.time', ([], {}), '()\n', (6810, 6812), False, 'import time\n'), ((7673, 7709), 'os.path.join', 'os.path.join', (['sav_dir', '"""config.json"""'], {}), "(sav_dir, 'config.json')\n", (7685, 7709), False, 'import sys, os, copy\n'), ((8163, 8215), 'os.path.join', 'os.path.join', (['sav_dir', "('run_%s.json' % output['idx'])"], {}), "(sav_dir, 'run_%s.json' % output['idx'])\n", (8175, 8215), False, 'import sys, os, copy\n'), ((2137, 2174), 'numpy.random.randint', 'np.random.randint', (['(0)', 'labels.shape[0]'], {}), '(0, labels.shape[0])\n', (2154, 2174), True, 'import numpy as np\n'), ((4172, 4196), 'numpy.array', 'np.array', (['[target_label]'], {}), '([target_label])\n', (4180, 4196), True, 'import numpy as np\n'), ((4351, 4375), 'numpy.array', 'np.array', (['[target_label]'], {}), '([target_label])\n', (4359, 4375), True, 'import numpy as np\n'), ((4411, 4448), 'competitor.recourse.utils.get_instance_info', 'get_instance_info', (['instance', 'features'], {}), '(instance, features)\n', (4428, 4448), False, 'from competitor.recourse.utils import get_instance_info\n'), ((5845, 5869), 'numpy.array', 'np.array', (['[target_label]'], {}), '([target_label])\n', (5853, 5869), True, 'import numpy as np\n'), ((6024, 6048), 'numpy.array', 'np.array', (['[target_label]'], {}), '([target_label])\n', (6032, 6048), True, 'import numpy as np\n'), ((6084, 6121), 'competitor.recourse.utils.get_instance_info', 'get_instance_info', (['instance', 'features'], {}), '(instance, features)\n', (6101, 6121), False, 'from competitor.recourse.utils import get_instance_info\n'), ((8054, 8065), 'time.time', 'time.time', ([], {}), '()\n', (8063, 8065), False, 'import time\n')] |
# Copyright 2019 United Kingdom Research and Innovation
# Author: <NAME> (<EMAIL>)
"""Architecture-aware wrap for a dense matrix.
"""
import numpy
class AMatrix:
def __init__(self, a, arch='cpu', copy_data=False):
self.__arch = arch
self.__gpu = None
if arch[:3] == 'gpu':
try:
from . import cuda_wrap as cuda
from .dense_cublas import Matrix, Vectors
self.__op = Matrix(a)
self.__gpu = cuda
except:
if len(arch) > 3 and arch[3] == '!':
raise RuntimeError('cannot use GPU')
if self.__gpu is None:
from .dense_cpu import Matrix, Vectors
if copy_data:
self.__op = Matrix(a.copy())
else:
self.__op = Matrix(a)
self.__gpu = None
self.__Vectors = Vectors
self.__vectors = None
vmin = numpy.amin(a)
vmax = numpy.amax(a)
self.__scale = max(abs(vmin), abs(vmax))
def as_operator(self):
return self.__op
def as_vectors(self):
if self.__vectors is None:
self.__vectors = self.__Vectors(self.__op, shallow=True)
return self.__vectors
def arch(self):
return self.__arch
def gpu(self):
return self.__gpu
def dots(self):
return self.__op.dots()
def data_type(self):
return self.__op.data_type()
def shape(self):
return self.__op.shape()
def order(self):
return self.__op.order()
def scale(self):
return self.__scale
| [
"numpy.amax",
"numpy.amin"
] | [((949, 962), 'numpy.amin', 'numpy.amin', (['a'], {}), '(a)\n', (959, 962), False, 'import numpy\n'), ((978, 991), 'numpy.amax', 'numpy.amax', (['a'], {}), '(a)\n', (988, 991), False, 'import numpy\n')] |
import numpy as np
import tensorflow as tf
from keras.preprocessing.image import load_img
import matplotlib.pyplot as plt
IMG_SIZE = 64
SAVE_PATH = "C:\\Users\\schaefer\\Desktop\\ML\\vehicle-detection\\save\\model"
IMG_PATH = "data/vehicles/1.png"
img = load_img(IMG_PATH, target_size=(IMG_SIZE, IMG_SIZE))
img = np.asarray(img)
plt.imshow(img)
plt.show()
print("\n\n", img.shape, "\n\n")
model = tf.keras.models.load_model(SAVE_PATH)
output = model.predict(img)
print(f"Predicted: {output}")
| [
"matplotlib.pyplot.imshow",
"numpy.asarray",
"keras.preprocessing.image.load_img",
"tensorflow.keras.models.load_model",
"matplotlib.pyplot.show"
] | [((257, 309), 'keras.preprocessing.image.load_img', 'load_img', (['IMG_PATH'], {'target_size': '(IMG_SIZE, IMG_SIZE)'}), '(IMG_PATH, target_size=(IMG_SIZE, IMG_SIZE))\n', (265, 309), False, 'from keras.preprocessing.image import load_img\n'), ((317, 332), 'numpy.asarray', 'np.asarray', (['img'], {}), '(img)\n', (327, 332), True, 'import numpy as np\n'), ((334, 349), 'matplotlib.pyplot.imshow', 'plt.imshow', (['img'], {}), '(img)\n', (344, 349), True, 'import matplotlib.pyplot as plt\n'), ((350, 360), 'matplotlib.pyplot.show', 'plt.show', ([], {}), '()\n', (358, 360), True, 'import matplotlib.pyplot as plt\n'), ((404, 441), 'tensorflow.keras.models.load_model', 'tf.keras.models.load_model', (['SAVE_PATH'], {}), '(SAVE_PATH)\n', (430, 441), True, 'import tensorflow as tf\n')] |
import cv2 as cv
import numpy as np
import time
from timeit import repeat
from multiprocessing import Pool
import threading
backSub = cv.createBackgroundSubtractorMOG2()
# list to store clicked coordinates
coords = []
# cut the given frame and rect with np array of coords
def cut_image(frame, rect, pts):
x,y,w,h = rect
croped = frame[y:y+h, x:x+w].copy()
## (2) make mask
pts = pts - pts.min(axis=0)
mask = np.zeros(croped.shape[:2], np.uint8)
cv.drawContours(mask, [pts], -1, (255, 255, 255), -1, cv.LINE_AA)
## (3) do bit-op
dst = cv.bitwise_and(croped, croped, mask=mask)
return dst
def process(frames):
filee = open(r"labels.txt", "a")
for frame in frames:
blurred = cv.GaussianBlur(frame, (5, 5), 0)
fg = backSub.apply(blurred)
output = cv.connectedComponentsWithStats(fg, 4, cv.CV_32S)
(numLabels, labels, stats, centroids) = output
for i in range(0, numLabels):
x = stats[i, cv.CC_STAT_LEFT]
y = stats[i, cv.CC_STAT_TOP]
w = stats[i, cv.CC_STAT_WIDTH]
h = stats[i, cv.CC_STAT_HEIGHT]
area = stats[i, cv.CC_STAT_AREA]
label_text = "person" ' ' + str(x) + ' ' + str(y) + ' ' + str(w) + ' ' + str(h) + '\n'
if area > 400 and area < 1000:
filee.write(label_text)
if __name__=="__main__":
capture = cv.VideoCapture(cv.samples.findFileOrKeep("right_sample2.mov"))
coords = [(931,318),( 0,366), (223,974), (1905,577)]
points = np.asarray(coords)
shape = cv.boundingRect(points)
if not capture.isOpened():
print('Unable to open: ')
exit(0)
# store all frames in a list
frames = []
print('reading frames...')
start_read = time.time()
while True:
ret, frame = capture.read()
if frame is None:
break
image = cut_image(frame, shape, points)
frames.append(image)
end_read = time.time()
print('processing frames...')
# make 5 chunks
chunks = [frames[i::5] for i in range(5)]
tasks = []
start_process = time.time()
for chunk in chunks:
tasks.append(threading.Thread(target=process, args=(chunk,)))
tasks[-1].start()
for task in tasks:
task.join()
end_process = time.time()
print('read time: ', end_read-start_read)
print('process time: ', end_process-start_process)
| [
"cv2.createBackgroundSubtractorMOG2",
"cv2.drawContours",
"cv2.bitwise_and",
"numpy.asarray",
"numpy.zeros",
"cv2.connectedComponentsWithStats",
"threading.Thread",
"cv2.samples.findFileOrKeep",
"cv2.GaussianBlur",
"time.time",
"cv2.boundingRect"
] | [((138, 173), 'cv2.createBackgroundSubtractorMOG2', 'cv.createBackgroundSubtractorMOG2', ([], {}), '()\n', (171, 173), True, 'import cv2 as cv\n'), ((448, 484), 'numpy.zeros', 'np.zeros', (['croped.shape[:2]', 'np.uint8'], {}), '(croped.shape[:2], np.uint8)\n', (456, 484), True, 'import numpy as np\n'), ((489, 554), 'cv2.drawContours', 'cv.drawContours', (['mask', '[pts]', '(-1)', '(255, 255, 255)', '(-1)', 'cv.LINE_AA'], {}), '(mask, [pts], -1, (255, 255, 255), -1, cv.LINE_AA)\n', (504, 554), True, 'import cv2 as cv\n'), ((595, 636), 'cv2.bitwise_and', 'cv.bitwise_and', (['croped', 'croped'], {'mask': 'mask'}), '(croped, croped, mask=mask)\n', (609, 636), True, 'import cv2 as cv\n'), ((1590, 1608), 'numpy.asarray', 'np.asarray', (['coords'], {}), '(coords)\n', (1600, 1608), True, 'import numpy as np\n'), ((1621, 1644), 'cv2.boundingRect', 'cv.boundingRect', (['points'], {}), '(points)\n', (1636, 1644), True, 'import cv2 as cv\n'), ((1829, 1840), 'time.time', 'time.time', ([], {}), '()\n', (1838, 1840), False, 'import time\n'), ((2029, 2040), 'time.time', 'time.time', ([], {}), '()\n', (2038, 2040), False, 'import time\n'), ((2178, 2189), 'time.time', 'time.time', ([], {}), '()\n', (2187, 2189), False, 'import time\n'), ((2374, 2385), 'time.time', 'time.time', ([], {}), '()\n', (2383, 2385), False, 'import time\n'), ((760, 793), 'cv2.GaussianBlur', 'cv.GaussianBlur', (['frame', '(5, 5)', '(0)'], {}), '(frame, (5, 5), 0)\n', (775, 793), True, 'import cv2 as cv\n'), ((847, 896), 'cv2.connectedComponentsWithStats', 'cv.connectedComponentsWithStats', (['fg', '(4)', 'cv.CV_32S'], {}), '(fg, 4, cv.CV_32S)\n', (878, 896), True, 'import cv2 as cv\n'), ((1472, 1518), 'cv2.samples.findFileOrKeep', 'cv.samples.findFileOrKeep', (['"""right_sample2.mov"""'], {}), "('right_sample2.mov')\n", (1497, 1518), True, 'import cv2 as cv\n'), ((2236, 2283), 'threading.Thread', 'threading.Thread', ([], {'target': 'process', 'args': '(chunk,)'}), '(target=process, args=(chunk,))\n', (2252, 2283), False, 'import threading\n')] |
import numpy as np
import random
from BoxProposing_utils import *
import scipy.spatial.distance as ssd
class BoxProposalModule(object):
def __init__(self, *args, **kwargs):
self.MinimapRatio = kwargs.get('MinimapRatio', 2) # we down-sample the normal boundary map to save computation cost
self.min_box_size = kwargs.get('min_box_size', 64) // self.MinimapRatio
self.min_aspect_ratio = kwargs.get('min_aspect_ratio', 0.3)
self.max_aspect_ratio = kwargs.get('max_aspect_ratio', 10.)
self.anchor_x_step = kwargs.get('anchor_x_step', 12) // self.MinimapRatio
self.anchor_y_step = kwargs.get('anchor_y_step', 12) // self.MinimapRatio
self.SafeGap = kwargs.get('SafeGap', 2) // self.MinimapRatio # shrink the proposals so that they wont get too close to the boundaries
self.overlap_threshold = kwargs.get('overlap_threshold', 1) # threshold for overlap with boundaries in normal maps
def BoxFitting(self, normal_boundary_map, box_x, box_y):
"""
Given the center point and normal boundary map
:param normal_boundary_map: ndarray, HxW, 0/1
:param box_x: int
:param box_y: int
:return: UL_x, UL_y, BR_x, BR_y
"""
h, w = normal_boundary_map.shape
x_left_min = 0
x_left_max = box_x - self.min_box_size // 2
x_right_min = box_x + self.min_box_size // 2
x_right_max = w
y_down_min = 0
y_down_max = box_y - self.min_box_size // 4
y_up_min = box_y + self.min_box_size // 4
y_up_max = h
# if already crossing boundary or outside
if (x_left_max < 0) or \
(x_right_min >= w) or \
(y_down_max < 0) or \
(y_up_min >= h) or \
(np.sum(normal_boundary_map[y_down_max:y_up_min, x_left_max:x_right_min]) > self.overlap_threshold):
return -1
enlargeable_flag = True
enlargement_count = 0
direction = [1, 2, 3, 4] # right, left, down, up
while enlargeable_flag:
random.shuffle(direction)
enlargeable_flag = False
for d in direction:
if d == 4: # up
if y_up_max-y_up_min < 2: continue
mid = (y_up_min+y_up_max) // 2
if np.sum(normal_boundary_map[y_down_max:mid,
x_left_max:x_right_min]) > self.overlap_threshold:
y_up_max = mid
else:
y_up_min = mid
enlargeable_flag = True
break
elif d == 3: # down
if y_down_max-y_down_min < 2: continue
mid = (y_down_max+y_down_min) // 2
if np.sum(normal_boundary_map[mid:y_up_min,
x_left_max:x_right_min]) > self.overlap_threshold:
y_down_min = mid
else:
y_down_max = mid
enlargeable_flag = True
break
elif d == 2: # left
if x_left_max-x_left_min < 2: continue
mid = (x_left_max+x_left_min) // 2
if np.sum(normal_boundary_map[y_down_max:y_up_min,
mid:x_right_min]) > self.overlap_threshold:
x_left_min = mid
else:
x_left_max = mid
enlargeable_flag = True
break
elif d == 1: # right
if x_right_max-x_right_min < 2: continue
mid = (x_right_max+x_right_min) // 2
if np.sum(normal_boundary_map[y_down_max:y_up_min,
x_left_max:mid]) > self.overlap_threshold:
x_right_max = mid
else:
x_right_min = mid
enlargeable_flag = True
break
if enlargeable_flag:
enlargement_count += 1
if enlargement_count >= 15:
if random.random() < 0.2: break
return x_left_max+self.SafeGap, y_down_max+self.SafeGap, x_right_min-self.SafeGap, y_up_min-self.SafeGap
def BoxProposing(self, normal_boundary_map, proposalnumber):
"""
normal_boundary_map: ndarray, HxW 0/1, binary maps
proposalnumber: how many proposals to return
"""
H, W = normal_boundary_map.shape
Proposals = []
hs = [h for h in range(random.randint(0, self.anchor_y_step // self.MinimapRatio), H, self.anchor_y_step // self.MinimapRatio)]
random.shuffle(hs)
ws = [w for w in range(random.randint(0, self.anchor_x_step // self.MinimapRatio), W, self.anchor_x_step // self.MinimapRatio)]
random.shuffle(ws)
# random visits
for h in hs[:]:
for w in ws[:]:
result = self.BoxFitting(normal_boundary_map, w, h)
# filter out failed proposals
if result == -1:
continue
UL_x, UL_y, BR_x, BR_y = result
normal_boundary_map[UL_y:BR_y, UL_x: BR_x] = 1
center_x = (UL_x + BR_x) / 2
center_y = (UL_y + BR_y) / 2
result = [center_x - self.min_box_size / 2,
center_y - self.min_box_size / 2,
center_x + self.min_box_size / 2,
center_y + self.min_box_size / 2]
Proposals.append(np.array(result, dtype=np.int)*self.MinimapRatio)
#if len(Proposals) >= proposalnumber * 4:
#random.shuffle(Proposals)
#return Proposals[:proposalnumber]
random.shuffle(Proposals)
return Proposals#[:proposalnumber]
def BoxRefining(self, depth_map, proposalnumber, Proposals):
idxes = len(Proposals)
labels = np.zeros_like(Proposals, dtype=bool)
if(len(labels.shape) == 2):
labels = labels[:,0]
xyz = depth2xyz(depth_map)
for idx in range(idxes):
UL_x, UL_y, BR_x, BR_y = Proposals[idx]
masks = np.zeros((depth_map.shape[0],depth_map.shape[1]), dtype='uint8')
masks[UL_y:BR_y,UL_x:BR_x] += 1
pt = xyz[masks==1]
if pt.shape[0] == 0:
continue
pt_sample = sample_grid_neighbours(masks,100)
labels[idx] = isplanar(pt,pt_sample,0.01,0.80,0.10)
print(labels)
Proposals = np.array(Proposals)[labels]
return Proposals[:proposalnumber]
def ValidBox(self, depth_map, mask):
xyz = depth2xyz(depth_map)
pt = xyz[mask==1]
if pt.shape[0] == 0:
return False
pt_sample = sample_grid_neighbours(mask,100)
if pt_sample is None:
return False
return isplanar(pt,pt_sample,0.01,0.95,0.10)
#print(labels)
#Proposals = np.array(Proposals)[labels]
#return Proposals[:proposalnumber]
def SynthTextBox(self,light_map_, depth_map_,seg,Proposals,proposalnumber):
itext = []
ibb = []
res = []
idict = {'img':[], 'charBB':None, 'wordBB':None, 'txt':None}
min_char_height = 15
min_asp_ratio = 0.4
text_renderer = RenderFont('data')
for i in range(len(Proposals)):
try:
UL_x, UL_y, BR_x, BR_y = Proposals[i]
depth_map = depth_map_#[UL_y:BR_y,UL_x:BR_x]
light_map = light_map_#[UL_y:BR_y,UL_x:BR_x]
xyz = depth2xyz(depth_map)
seg = np.ones(depth_map.shape)
masks = seg == 1
pt_sample = sample_grid_neighbours(masks,1000)
try:
coeffs, inliers = isplanar(xyz[masks],pt_sample,0.10,999,0.1, returnCoeffs= True)
except: continue
coeffs = np.array([coeffs])
inliers = np.array([inliers])
labels = np.array([1])
try:
place_masks, Hs, Hinvs = filter_for_placement(xyz,seg,coeffs,labels)
except:
continue
n_regions = len(place_masks)
if n_regions < 1: return []
m = get_num_text_regions(n_regions)
reg_idx = np.arange(min(2*m,n_regions))
np.random.shuffle(reg_idx)
reg_idx = reg_idx[:m]
placed = False
img = light_map.copy()
# process regions:
num_txt_regions = len(reg_idx)
NUM_REP = 5 # re-use each region three times:
reg_range = np.arange(NUM_REP * num_txt_regions) % num_txt_regions
for idx in reg_range:
ireg = reg_idx[idx]
txt_render_res = place_text(img,place_masks[ireg],
Hs[ireg],
Hinvs[ireg])
if txt_render_res is not None:
placed = True
img,text,bb,collision_mask = txt_render_res
# update the region collision mask:
place_masks[ireg] = collision_mask
# store the result:
itext.append(text)
print("Placed")
bw = char2wordBB(bb.copy(), ' '.join(itext))
#import matplotlib.pyplot as plt
#plt.imshow(light_map_)
#plt.scatter(bw[0,:,:]+UL_x,bw[1,:,:]+UL_y)
#plt.show()
print(bw)
res.append(bw.copy())
break
except: continue
try:
res = np.concatenate(res, axis=2)
except:
pass
random.shuffle(res)
return res[:proposalnumber]
| [
"random.shuffle",
"numpy.ones",
"numpy.array",
"numpy.zeros",
"numpy.sum",
"numpy.concatenate",
"random.random",
"numpy.zeros_like",
"random.randint",
"numpy.arange",
"numpy.random.shuffle"
] | [((4774, 4792), 'random.shuffle', 'random.shuffle', (['hs'], {}), '(hs)\n', (4788, 4792), False, 'import random\n'), ((4937, 4955), 'random.shuffle', 'random.shuffle', (['ws'], {}), '(ws)\n', (4951, 4955), False, 'import random\n'), ((5903, 5928), 'random.shuffle', 'random.shuffle', (['Proposals'], {}), '(Proposals)\n', (5917, 5928), False, 'import random\n'), ((6095, 6131), 'numpy.zeros_like', 'np.zeros_like', (['Proposals'], {'dtype': 'bool'}), '(Proposals, dtype=bool)\n', (6108, 6131), True, 'import numpy as np\n'), ((10440, 10459), 'random.shuffle', 'random.shuffle', (['res'], {}), '(res)\n', (10454, 10459), False, 'import random\n'), ((2063, 2088), 'random.shuffle', 'random.shuffle', (['direction'], {}), '(direction)\n', (2077, 2088), False, 'import random\n'), ((6366, 6431), 'numpy.zeros', 'np.zeros', (['(depth_map.shape[0], depth_map.shape[1])'], {'dtype': '"""uint8"""'}), "((depth_map.shape[0], depth_map.shape[1]), dtype='uint8')\n", (6374, 6431), True, 'import numpy as np\n'), ((6749, 6768), 'numpy.array', 'np.array', (['Proposals'], {}), '(Proposals)\n', (6757, 6768), True, 'import numpy as np\n'), ((10371, 10398), 'numpy.concatenate', 'np.concatenate', (['res'], {'axis': '(2)'}), '(res, axis=2)\n', (10385, 10398), True, 'import numpy as np\n'), ((1774, 1846), 'numpy.sum', 'np.sum', (['normal_boundary_map[y_down_max:y_up_min, x_left_max:x_right_min]'], {}), '(normal_boundary_map[y_down_max:y_up_min, x_left_max:x_right_min])\n', (1780, 1846), True, 'import numpy as np\n'), ((7951, 7975), 'numpy.ones', 'np.ones', (['depth_map.shape'], {}), '(depth_map.shape)\n', (7958, 7975), True, 'import numpy as np\n'), ((8264, 8282), 'numpy.array', 'np.array', (['[coeffs]'], {}), '([coeffs])\n', (8272, 8282), True, 'import numpy as np\n'), ((8309, 8328), 'numpy.array', 'np.array', (['[inliers]'], {}), '([inliers])\n', (8317, 8328), True, 'import numpy as np\n'), ((8354, 8367), 'numpy.array', 'np.array', (['[1]'], {}), '([1])\n', (8362, 8367), True, 'import numpy as np\n'), ((8744, 8770), 'numpy.random.shuffle', 'np.random.shuffle', (['reg_idx'], {}), '(reg_idx)\n', (8761, 8770), True, 'import numpy as np\n'), ((4221, 4236), 'random.random', 'random.random', ([], {}), '()\n', (4234, 4236), False, 'import random\n'), ((4661, 4719), 'random.randint', 'random.randint', (['(0)', '(self.anchor_y_step // self.MinimapRatio)'], {}), '(0, self.anchor_y_step // self.MinimapRatio)\n', (4675, 4719), False, 'import random\n'), ((4824, 4882), 'random.randint', 'random.randint', (['(0)', '(self.anchor_x_step // self.MinimapRatio)'], {}), '(0, self.anchor_x_step // self.MinimapRatio)\n', (4838, 4882), False, 'import random\n'), ((9075, 9111), 'numpy.arange', 'np.arange', (['(NUM_REP * num_txt_regions)'], {}), '(NUM_REP * num_txt_regions)\n', (9084, 9111), True, 'import numpy as np\n'), ((2320, 2387), 'numpy.sum', 'np.sum', (['normal_boundary_map[y_down_max:mid, x_left_max:x_right_min]'], {}), '(normal_boundary_map[y_down_max:mid, x_left_max:x_right_min])\n', (2326, 2387), True, 'import numpy as np\n'), ((5685, 5715), 'numpy.array', 'np.array', (['result'], {'dtype': 'np.int'}), '(result, dtype=np.int)\n', (5693, 5715), True, 'import numpy as np\n'), ((2803, 2868), 'numpy.sum', 'np.sum', (['normal_boundary_map[mid:y_up_min, x_left_max:x_right_min]'], {}), '(normal_boundary_map[mid:y_up_min, x_left_max:x_right_min])\n', (2809, 2868), True, 'import numpy as np\n'), ((3288, 3353), 'numpy.sum', 'np.sum', (['normal_boundary_map[y_down_max:y_up_min, mid:x_right_min]'], {}), '(normal_boundary_map[y_down_max:y_up_min, mid:x_right_min])\n', (3294, 3353), True, 'import numpy as np\n'), ((3778, 3842), 'numpy.sum', 'np.sum', (['normal_boundary_map[y_down_max:y_up_min, x_left_max:mid]'], {}), '(normal_boundary_map[y_down_max:y_up_min, x_left_max:mid])\n', (3784, 3842), True, 'import numpy as np\n')] |
# -*- coding: utf-8 -*-
# Copyright 2018 The Blueoil Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================================================================
"""Test file for GraphRunner."""
import unittest
from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED
from core.graph import Graph, GraphRunner
from core.optimizer import Optimizer
from core.operators import Add, AveragePool, BatchNormalization, Constant, Conv, Identity, Input, \
MaxPool, Operator, Output, Transpose, QTZ_binary_mean_scaling, QTZ_linear_mid_tread_half, Reshape, Softmax
import numpy as np
from typing import Any, Dict, List, Tuple
class TestOptimizer(unittest.TestCase):
"""Test class for GraphRunner."""
def test_precompute1(self) -> None:
"""Test code for precompute optimizer."""
data1 = np.random.rand(3, 2, 2, 3)
data2 = np.random.rand(3, 2, 2, 3)
data3 = np.random.rand(3, 2, 2, 3)
graph1 = self.create_sample_graph(data1, data2, data3)
graph2 = self.create_precompute_graph(data1, data2, data3)
optim = Optimizer()
optim.precompute(graph1)
# for debug
# from frontend import TensorFlowIO
# from core.model import Model
# import os
# io = TensorFlowIO()
# tmp_dir = os.path.join('tmp')
# if not os.path.exists(tmp_dir):
# os.mkdir(tmp_dir)
# path = os.path.join('tmp', 'test_precompute.pb')
# model = Model()
# model.graph = graph1
# io.write(model, path)
self.assertEqual(graph1, graph2, 'precompute failed.')
print("Precompute test #1 passed!")
def test_precompute2(self) -> None:
"""Test code for precompute optimizer."""
data1 = np.random.rand(3, 2, 2, 3)
data2 = np.random.rand(3, 2, 2, 3)
data3 = np.random.rand(3, 2, 2, 3)
graph1 = self.create_sample_graph(data1, data2, data3)
graph2, scaling1, scaling2 = self.create_quantized_graph(data1, data2, data3)
optim = Optimizer()
optim.precompute(graph1, hard_quantized=True)
self.assertEqual(graph1, graph2, 'precompute failed.')
self.assertAlmostEqual(graph1.get_op('conv2').quantizer.scaling_factor, scaling2) # type: ignore
print("Precompute test #2 passed!")
def test_precompute3(self) -> None:
"""Test code for precompute optimizer."""
data1 = np.random.rand(3, 2, 2, 3)
data2 = np.random.rand(3, 2, 2, 3)
data3 = np.random.rand(3, 2, 2, 3)
graph1 = self.create_sample_graph3(data1, data2, data3)
graph2, scaling2, scaling3 = self.create_quantized_graph2(data1, data2, data3)
optim = Optimizer()
optim.precompute(graph1, hard_quantized=True)
self.assertEqual(graph1, graph2, 'precompute failed.')
self.assertAlmostEqual(graph1.get_op('conv2').quantizer.scaling_factor, scaling2) # type: ignore
self.assertAlmostEqual(graph1.get_op('conv3').quantizer.scaling_factor, scaling3) # type: ignore
print("Precompute test #3 passed!")
def test_transpose_NHWC(self) -> None:
"""Test code for transpose_NHWC optimizer."""
data = np.random.rand(3, 2, 2, 1)
graph1 = self.create_sample_graph2(data)
graph2 = self.create_transposed_graph(data)
optim = Optimizer()
optim.transpose_NHWC(graph1)
self.assertEqual(graph1, graph2, 'transpose to NHWC failed.')
print("Transpose_NHWC test #1 passed!")
def create_sample_graph(self, data1: np.ndarray, data2: np.ndarray, data3: np.ndarray) -> Graph:
graph = Graph()
# input
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
)
# constant and internal nodes
w = Constant(
'weight',
Float32(),
data1
)
i = Identity(
'identity1',
[3, 2, 2, 3],
Float32(),
{'input': w}
)
t = Transpose(
'transpose1',
[3, 2, 2, 3],
Float32(),
{'data': i},
perm=[3, 2, 1, 0]
)
q = QTZ_binary_mean_scaling(
'qtz1',
[3, 2, 2, 3],
Float32(),
{'input': t}
)
# Conv
conv1 = Conv(
'conv1',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': q},
kernel_shape=[2, 2]
)
i2 = Identity(
'identity2',
[1, 4, 4, 3],
Float32(),
{'input': conv1}
)
s1 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s2 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq = QTZ_linear_mid_tread_half(
'aqtz1',
[1, 4, 4, 3],
Float32(),
{'X': i2, 'Y': s1, 'Z': s2}
)
dummy = Transpose(
'dummy',
[1, 4, 4, 3],
Float32(),
{'data': aq},
perm=[0, 1, 2, 3]
)
w2 = Constant(
'weight2',
Float32(),
data2
)
q2 = QTZ_binary_mean_scaling(
'qtz2',
[3, 2, 2, 3],
Float32(),
{'input': w2}
)
conv2 = Conv(
'conv2',
[1, 3, 3, 3],
Float32(),
{'X': dummy, 'W': q2},
kernel_shape=[2, 2]
)
s3 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s4 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq2 = QTZ_linear_mid_tread_half(
'aqtz2',
[1, 3, 3, 3],
Float32(),
{'X': conv2, 'Y': s3, 'Z': s4}
)
w3 = Constant(
'weight3',
Float32(),
data3
)
i3 = Identity(
'identity3',
[1, 3, 3, 3],
Float32(),
{'input': aq2}
)
conv3 = Conv(
'conv3',
[1, 2, 2, 3],
Float32(),
{'X': i3, 'W': w3},
kernel_shape=[2, 2]
)
# One output
y = Output(
'output',
[1, 2, 2, 3],
Float32(),
{'input': conv3}
)
# add ops to the graph
graph.add_op_and_inputs(y)
return graph
def binary_mean_scaling(self, data: np.ndarray) -> Tuple[np.float32, np.ndarray]:
return np.mean(np.abs(data)), np.sign(data).astype(np.float32)
def create_precompute_graph(self, data1: np.ndarray, data2: np.ndarray, data3: np.ndarray) -> Graph:
graph = Graph()
# two inputs
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
)
scaling1, qdata = self.binary_mean_scaling(data1.transpose([3, 2, 1, 0]))
w = Constant(
'weight',
Float32(),
qdata * scaling1
)
# Conv
conv1 = Conv(
'conv1',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': w},
kernel_shape=[2, 2]
)
s1 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s2 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq = QTZ_linear_mid_tread_half(
'aqtz1',
[1, 4, 4, 3],
Float32(),
{'X': conv1, 'Y': s1, 'Z': s2}
)
dummy = Transpose(
'dummy',
[1, 4, 4, 3],
Float32(),
{'data': aq},
perm=[0, 1, 2, 3]
)
scaling2, qdata2 = self.binary_mean_scaling(data2)
w2 = Constant(
'weight2',
Float32(),
qdata2 * scaling2
)
conv2 = Conv(
'conv2',
[1, 3, 3, 3],
Float32(),
{'X': dummy, 'W': w2},
kernel_shape=[2, 2]
)
s3 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s4 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq2 = QTZ_linear_mid_tread_half(
'aqtz2',
[1, 3, 3, 3],
Float32(),
{'X': conv2, 'Y': s3, 'Z': s4}
)
w3 = Constant(
'weight3',
Float32(),
data3
)
conv3 = Conv(
'conv3',
[1, 2, 2, 3],
Float32(),
{'X': aq2, 'W': w3},
kernel_shape=[2, 2]
)
# One output
y = Output(
'output',
[1, 2, 2, 3],
Float32(),
{'input': conv3}
)
# add ops to the graph
graph.add_op_and_inputs(y)
return graph
def create_quantized_graph(self, data: np.ndarray, data2: np.ndarray, data3: np.ndarray) \
-> Tuple[Graph, np.float32, np.float32]:
graph = Graph()
# two inputs
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
)
from modules.packer import Packer
packer = Packer(1, 32)
data = data.transpose([3, 2, 1, 0])
scaling, qdata = self.binary_mean_scaling(data)
shape = list(data.shape)
w = Constant(
'weight',
Float32(),
qdata * scaling,
)
q = QTZ_binary_mean_scaling(
'qtz1',
shape,
Float32(),
{'input': w}
)
q.scaling_factor = scaling
# Conv
conv1 = Conv(
'conv1',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': w},
kernel_shape=[2, 2],
)
s1 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s2 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq = QTZ_linear_mid_tread_half(
'aqtz1',
[1, 4, 4, 3],
QUANTIZED_NOT_PACKED(),
{'X': conv1, 'Y': s1, 'Z': s2}
)
dummy = Transpose(
'dummy',
[1, 4, 4, 3],
QUANTIZED_NOT_PACKED(),
{'data': aq},
perm=[0, 1, 2, 3]
)
scaling2, qdata2 = self.binary_mean_scaling(data2)
w2 = Constant(
'weight2',
Uint32(),
packer.run(qdata2),
packed=True,
actual_shape=[3, 2, 2, 3]
)
# quantizer connected to conv2 as 'conv2.quantizer'
q2 = QTZ_binary_mean_scaling(
'qtz2',
[3, 2, 2, 3],
Uint32(),
{'input': w2}
)
q2.scaling_factor = scaling2
conv2 = Conv(
'conv2',
[1, 3, 3, 3],
Float32(),
{'X': dummy, 'W': w2},
kernel_shape=[2, 2],
quantized=True
)
conv2.quantizer = q2
s3 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s4 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq2 = QTZ_linear_mid_tread_half(
'aqtz2',
[1, 3, 3, 3],
Float32(),
{'X': conv2, 'Y': s3, 'Z': s4}
)
w3 = Constant(
'weight3',
Float32(),
data3
)
conv3 = Conv(
'conv3',
[1, 2, 2, 3],
Float32(),
{'X': aq2, 'W': w3},
kernel_shape=[2, 2]
)
# One output
y = Output(
'output',
[1, 2, 2, 3],
Float32(),
{'input': conv3}
)
# add ops to the graph
graph.add_op_and_inputs(y)
return graph, scaling, scaling2
def create_sample_graph2(self, data: np.ndarray) -> Graph:
graph = Graph()
# input
x = Input(
'placeholder',
[3, 5, 5, 1],
Float32(),
dimension_format='CWHN'
)
# constant and internal nodes
w = Constant(
'weight',
Float32(),
data,
dimension_format='CWHN'
)
i = Identity(
'identity1',
[3, 2, 2, 1],
Float32(),
{'input': w},
dimension_format='CWHN'
)
q = QTZ_binary_mean_scaling(
'qtz1',
[3, 2, 2, 1],
Float32(),
{'input': i},
dimension_format='CWHN'
)
# Conv
conv = Conv(
'conv',
[3, 4, 4, 1],
Float32(),
{'X': x, 'W': q},
kernel_shape=[2, 2],
dimension_format='CWHN'
)
rs = Reshape(
'reshape',
[1, 48],
Float32(),
{'data': conv}
)
# One output
y = Output(
'output',
[1, 48],
Float32(),
{'input': rs},
)
# add ops to the graph
graph.add_op_and_inputs(y)
return graph
def create_transposed_graph(self, data: np.ndarray) -> Graph:
graph = Graph()
data = data.transpose([3, 2, 1, 0])
# input
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
dimension_format='NHWC'
)
# constant and internal nodes
w = Constant(
'weight',
Float32(),
data,
dimension_format='NHWC'
)
i = Identity(
'identity1',
[1, 2, 2, 3],
Float32(),
{'input': w},
dimension_format='NHWC'
)
q = QTZ_binary_mean_scaling(
'qtz1',
[1, 2, 2, 3],
Float32(),
{'input': i},
dimension_format='NHWC'
)
# Conv
conv = Conv(
'conv',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': q},
kernel_shape=[2, 2],
dimension_format='NHWC'
)
rs = Reshape(
'reshape',
[1, 48],
Float32(),
{'data': conv}
)
# One output
y = Output(
'output',
[1, 48],
Float32(),
{'input': rs},
)
# add ops to the graph
graph.add_op_and_inputs(y)
return graph
def create_sample_graph3(self, data1: np.ndarray, data2: np.ndarray, data3: np.ndarray) -> Graph:
graph = Graph()
# input
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
)
# constant and internal nodes
w = Constant(
'weight',
Float32(),
data1
)
q = QTZ_binary_mean_scaling(
'qtz1',
[3, 2, 2, 3],
Float32(),
{'input': w}
)
# Conv
conv1 = Conv(
'conv1',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': q},
kernel_shape=[2, 2]
)
i2 = Identity(
'identity2',
[1, 4, 4, 3],
Float32(),
{'input': conv1}
)
s1 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s2 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq = QTZ_linear_mid_tread_half(
'aqtz1',
[1, 4, 4, 3],
Float32(),
{'X': i2, 'Y': s1, 'Z': s2}
)
w2 = Constant(
'weight2',
Float32(),
data2
)
q2 = QTZ_binary_mean_scaling(
'qtz2',
[3, 2, 2, 3],
Float32(),
{'input': w2}
)
conv2 = Conv(
'conv2',
[1, 3, 3, 3],
Float32(),
{'X': aq, 'W': q2},
kernel_shape=[2, 2]
)
w3 = Constant(
'weight3',
Float32(),
data3
)
q3 = QTZ_binary_mean_scaling(
'qtz3',
[3, 2, 2, 3],
Float32(),
{'input': w3}
)
conv3 = Conv(
'conv3',
[1, 3, 3, 3],
Float32(),
{'X': aq, 'W': q3},
kernel_shape=[2, 2]
)
y1 = Output(
'output1',
[1, 3, 3, 3],
Float32(),
{'input': conv2}
)
y2 = Output(
'output2',
[1, 3, 3, 3],
Float32(),
{'input': conv3}
)
# add ops to the graph
graph.add_op_and_inputs(y1)
graph.add_op_and_inputs(y2)
return graph
def create_quantized_graph2(self, data1: np.ndarray, data2: np.ndarray, data3: np.ndarray) -> Graph:
graph = Graph()
# input
x = Input(
'placeholder',
[1, 5, 5, 3],
Float32(),
)
# constant and internal nodes
scaling1, qdata1 = self.binary_mean_scaling(data1)
w = Constant(
'weight',
Float32(),
qdata1 * scaling1
)
q = QTZ_binary_mean_scaling(
'qtz1',
[3, 2, 2, 3],
Float32(),
{'input': w}
)
# Conv
conv1 = Conv(
'conv1',
[1, 4, 4, 3],
Float32(),
{'X': x, 'W': w},
kernel_shape=[2, 2]
)
s1 = Constant(
'aq_const1',
Float32(),
np.array(1)
)
s2 = Constant(
'aq_const2',
Float32(),
np.array(2)
)
aq = QTZ_linear_mid_tread_half(
'aqtz1',
[1, 4, 4, 3],
QUANTIZED_NOT_PACKED(),
{'X': conv1, 'Y': s1, 'Z': s2}
)
from modules.packer import Packer
packer = Packer(1, 32)
scaling2, qdata2 = self.binary_mean_scaling(data2)
w2 = Constant(
'weight2',
Uint32(),
packer.run(qdata2),
packed=True,
actual_shape=[3, 2, 2, 3]
)
q2 = QTZ_binary_mean_scaling(
'qtz2',
[3, 2, 2, 3],
Float32(),
{'input': w2}
)
q2.scaling_factor = scaling2
conv2 = Conv(
'conv2',
[1, 3, 3, 3],
Float32(),
{'X': aq, 'W': w2},
kernel_shape=[2, 2],
quantized=True,
)
conv2.quantizer = q2
scaling3, qdata3 = self.binary_mean_scaling(data3)
w3 = Constant(
'weight2',
Uint32(),
packer.run(qdata3),
packed=True,
actual_shape=[3, 2, 2, 3]
)
q3 = QTZ_binary_mean_scaling(
'qtz3',
[3, 2, 2, 3],
Float32(),
{'input': w3}
)
q3.scaling_factor = scaling3
conv3 = Conv(
'conv3',
[1, 3, 3, 3],
Float32(),
{'X': aq, 'W': w3},
kernel_shape=[2, 2],
quantized=True
)
conv3.quantizer = q3
y1 = Output(
'output1',
[1, 3, 3, 3],
Float32(),
{'input': conv2}
)
y2 = Output(
'output2',
[1, 3, 3, 3],
Float32(),
{'input': conv3}
)
# add ops to the graph
graph.add_op_and_inputs(y1)
graph.add_op_and_inputs(y2)
return graph, scaling2, scaling3
if __name__ == '__main__':
unittest.main()
| [
"core.optimizer.Optimizer",
"numpy.abs",
"modules.packer.Packer",
"numpy.random.rand",
"core.data_types.Uint32",
"core.data_types.QUANTIZED_NOT_PACKED",
"core.data_types.Float32",
"numpy.array",
"core.graph.Graph",
"numpy.sign",
"unittest.main"
] | [((20968, 20983), 'unittest.main', 'unittest.main', ([], {}), '()\n', (20981, 20983), False, 'import unittest\n'), ((1370, 1396), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (1384, 1396), True, 'import numpy as np\n'), ((1413, 1439), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (1427, 1439), True, 'import numpy as np\n'), ((1456, 1482), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (1470, 1482), True, 'import numpy as np\n'), ((1630, 1641), 'core.optimizer.Optimizer', 'Optimizer', ([], {}), '()\n', (1639, 1641), False, 'from core.optimizer import Optimizer\n'), ((2307, 2333), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (2321, 2333), True, 'import numpy as np\n'), ((2350, 2376), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (2364, 2376), True, 'import numpy as np\n'), ((2393, 2419), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (2407, 2419), True, 'import numpy as np\n'), ((2586, 2597), 'core.optimizer.Optimizer', 'Optimizer', ([], {}), '()\n', (2595, 2597), False, 'from core.optimizer import Optimizer\n'), ((2974, 3000), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (2988, 3000), True, 'import numpy as np\n'), ((3017, 3043), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (3031, 3043), True, 'import numpy as np\n'), ((3060, 3086), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(3)'], {}), '(3, 2, 2, 3)\n', (3074, 3086), True, 'import numpy as np\n'), ((3255, 3266), 'core.optimizer.Optimizer', 'Optimizer', ([], {}), '()\n', (3264, 3266), False, 'from core.optimizer import Optimizer\n'), ((3755, 3781), 'numpy.random.rand', 'np.random.rand', (['(3)', '(2)', '(2)', '(1)'], {}), '(3, 2, 2, 1)\n', (3769, 3781), True, 'import numpy as np\n'), ((3900, 3911), 'core.optimizer.Optimizer', 'Optimizer', ([], {}), '()\n', (3909, 3911), False, 'from core.optimizer import Optimizer\n'), ((4187, 4194), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (4192, 4194), False, 'from core.graph import Graph, GraphRunner\n'), ((7453, 7460), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (7458, 7460), False, 'from core.graph import Graph, GraphRunner\n'), ((9885, 9892), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (9890, 9892), False, 'from core.graph import Graph, GraphRunner\n'), ((10080, 10093), 'modules.packer.Packer', 'Packer', (['(1)', '(32)'], {}), '(1, 32)\n', (10086, 10093), False, 'from modules.packer import Packer\n'), ((12933, 12940), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (12938, 12940), False, 'from core.graph import Graph, GraphRunner\n'), ((14276, 14283), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (14281, 14283), False, 'from core.graph import Graph, GraphRunner\n'), ((15699, 15706), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (15704, 15706), False, 'from core.graph import Graph, GraphRunner\n'), ((18127, 18134), 'core.graph.Graph', 'Graph', ([], {}), '()\n', (18132, 18134), False, 'from core.graph import Graph, GraphRunner\n'), ((19233, 19246), 'modules.packer.Packer', 'Packer', (['(1)', '(32)'], {}), '(1, 32)\n', (19239, 19246), False, 'from modules.packer import Packer\n'), ((4296, 4305), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4303, 4305), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((4412, 4421), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4419, 4421), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((4537, 4546), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4544, 4546), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((4671, 4680), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4678, 4680), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((4843, 4852), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4850, 4852), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((4986, 4995), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (4993, 4995), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5156, 5165), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5163, 5165), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5267, 5276), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5274, 5276), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5290, 5301), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (5298, 5301), True, 'import numpy as np\n'), ((5373, 5382), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5380, 5382), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5396, 5407), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (5404, 5407), True, 'import numpy as np\n'), ((5518, 5527), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5525, 5527), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5666, 5675), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5673, 5675), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5802, 5811), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5809, 5811), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((5938, 5947), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (5945, 5947), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6067, 6076), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6074, 6076), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6216, 6225), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6223, 6225), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6239, 6250), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (6247, 6250), True, 'import numpy as np\n'), ((6322, 6331), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6329, 6331), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6345, 6356), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (6353, 6356), True, 'import numpy as np\n'), ((6468, 6477), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6475, 6477), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6591, 6600), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6598, 6600), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6717, 6726), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6724, 6726), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((6847, 6856), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (6854, 6856), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((7034, 7043), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (7041, 7043), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((7567, 7576), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (7574, 7576), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((7727, 7736), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (7734, 7736), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((7874, 7883), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (7881, 7883), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8018, 8027), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8025, 8027), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8041, 8052), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (8049, 8052), True, 'import numpy as np\n'), ((8124, 8133), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8131, 8133), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8147, 8158), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (8155, 8158), True, 'import numpy as np\n'), ((8269, 8278), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8276, 8278), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8420, 8429), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8427, 8429), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8615, 8624), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8622, 8624), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8748, 8757), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8755, 8757), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8897, 8906), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (8904, 8906), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((8920, 8931), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (8928, 8931), True, 'import numpy as np\n'), ((9003, 9012), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (9010, 9012), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((9026, 9037), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (9034, 9037), True, 'import numpy as np\n'), ((9149, 9158), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (9156, 9158), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((9272, 9281), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (9279, 9281), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((9393, 9402), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (9400, 9402), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((9581, 9590), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (9588, 9590), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((9999, 10008), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10006, 10008), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10283, 10292), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10290, 10292), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10422, 10431), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10429, 10431), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10600, 10609), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10607, 10609), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10745, 10754), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10752, 10754), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10768, 10779), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (10776, 10779), True, 'import numpy as np\n'), ((10851, 10860), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (10858, 10860), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((10874, 10885), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (10882, 10885), True, 'import numpy as np\n'), ((10996, 11018), 'core.data_types.QUANTIZED_NOT_PACKED', 'QUANTIZED_NOT_PACKED', ([], {}), '()\n', (11016, 11018), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((11160, 11182), 'core.data_types.QUANTIZED_NOT_PACKED', 'QUANTIZED_NOT_PACKED', ([], {}), '()\n', (11180, 11182), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((11368, 11376), 'core.data_types.Uint32', 'Uint32', ([], {}), '()\n', (11374, 11376), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((11640, 11648), 'core.data_types.Uint32', 'Uint32', ([], {}), '()\n', (11646, 11648), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((11805, 11814), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (11812, 11814), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12011, 12020), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12018, 12020), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12034, 12045), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (12042, 12045), True, 'import numpy as np\n'), ((12117, 12126), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12124, 12126), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12140, 12151), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (12148, 12151), True, 'import numpy as np\n'), ((12263, 12272), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12270, 12272), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12386, 12395), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12393, 12395), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12507, 12516), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12514, 12516), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((12695, 12704), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (12702, 12704), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13042, 13051), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13049, 13051), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13194, 13203), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13201, 13203), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13355, 13364), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13362, 13364), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13534, 13543), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13541, 13543), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13712, 13721), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13719, 13721), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((13911, 13920), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (13918, 13920), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((14056, 14065), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (14063, 14065), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((14429, 14438), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (14436, 14438), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((14581, 14590), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (14588, 14590), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((14742, 14751), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (14749, 14751), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((14921, 14930), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (14928, 14930), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((15099, 15108), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (15106, 15108), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((15298, 15307), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (15305, 15307), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((15443, 15452), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (15450, 15452), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((15808, 15817), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (15815, 15817), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((15924, 15933), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (15931, 15933), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16059, 16068), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16066, 16068), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16202, 16211), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16209, 16211), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16372, 16381), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16379, 16381), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16483, 16492), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16490, 16492), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16506, 16517), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (16514, 16517), True, 'import numpy as np\n'), ((16589, 16598), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16596, 16598), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16612, 16623), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (16620, 16623), True, 'import numpy as np\n'), ((16734, 16743), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16741, 16743), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16854, 16863), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16861, 16863), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((16990, 16999), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (16997, 16999), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17119, 17128), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17126, 17128), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17263, 17272), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17270, 17272), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17399, 17408), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17406, 17408), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17528, 17537), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17535, 17537), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17696, 17705), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17703, 17705), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((17829, 17838), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (17836, 17838), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18236, 18245), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18243, 18245), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18411, 18420), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18418, 18420), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18558, 18567), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18565, 18567), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18701, 18710), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18708, 18710), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18845, 18854), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18852, 18854), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18868, 18879), 'numpy.array', 'np.array', (['(1)'], {}), '(1)\n', (18876, 18879), True, 'import numpy as np\n'), ((18951, 18960), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (18958, 18960), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((18974, 18985), 'numpy.array', 'np.array', (['(2)'], {}), '(2)\n', (18982, 18985), True, 'import numpy as np\n'), ((19096, 19118), 'core.data_types.QUANTIZED_NOT_PACKED', 'QUANTIZED_NOT_PACKED', ([], {}), '()\n', (19116, 19118), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((19364, 19372), 'core.data_types.Uint32', 'Uint32', ([], {}), '()\n', (19370, 19372), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((19576, 19585), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (19583, 19585), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((19742, 19751), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (19749, 19751), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((20003, 20011), 'core.data_types.Uint32', 'Uint32', ([], {}), '()\n', (20009, 20011), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((20215, 20224), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (20222, 20224), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((20381, 20390), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (20388, 20390), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((20606, 20615), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (20613, 20615), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((20739, 20748), 'core.data_types.Float32', 'Float32', ([], {}), '()\n', (20746, 20748), False, 'from core.data_types import Float32, Uint32, Int32, QUANTIZED_NOT_PACKED\n'), ((7283, 7295), 'numpy.abs', 'np.abs', (['data'], {}), '(data)\n', (7289, 7295), True, 'import numpy as np\n'), ((7298, 7311), 'numpy.sign', 'np.sign', (['data'], {}), '(data)\n', (7305, 7311), True, 'import numpy as np\n')] |
import chainer
import chainer.functions as F
import chainer.links as L
from chainer import optimizers, cuda, serializers, Variable, initializers, Chain
from chainer.functions.connection import convolution_2d
from chainer.links.connection.convolution_2d import Convolution2D
from chainer.functions.connection import deconvolution_2d
from chainer.links.connection.deconvolution_2d import Deconvolution2D
from chainer.functions.connection import linear
from chainer.links.connection.linear import Linear
import numpy as np
xp = cuda.cupy
def _l2normalize(v, eps=1e-12):
return v / (((v**2).sum())**0.5 + eps)
def max_singular_value(W, u=None, Ip=1):
if u is None:
u = xp.random.normal(size=(1, W.shape[0])).astype(xp.float32)
_u = u
for _ in range(Ip):
_v = _l2normalize(xp.dot(_u, W.data), eps=1e-12)
_u = _l2normalize(xp.dot(_v, W.data.transpose()), eps=1e-12)
sigma = F.math.sum.sum(F.connection.linear.linear(_u, F.array.transpose.transpose(W))* _v)
return sigma, _u, _v
class SNConvolution2D(Convolution2D):
def __init__(self,
in_channels,
out_channels,
ksize,
stride=1,
pad=0,
nobias=True,
initialW=None,
initial_bias=None,
use_gamma=False,
Ip=1):
self.Ip = Ip
self.u = None
self.use_gamma = use_gamma
super(SNConvolution2D, self).__init__(in_channels,
out_channels,
ksize,
stride,
pad,
nobias,
initialW,
initial_bias)
@property
def W_bar(self):
W_mat = self.W.reshape(self.W.shape[0], -1)
sigma, _u, _ = max_singular_value(W_mat, self.u, self.Ip)
sigma = F.array.broadcast.broadcast_to(sigma.reshape((1, 1, 1, 1)), self.W.shape)
self.u = _u
return self.W / sigma
def _initialize_params(self, in_size):
super(SNConvolution2D, self)._initialize_params(in_size)
if self.use_gamma:
W_mat = self.W.data.reshape(self.W.shape[0], -1)
_, s, _ = np.linalg.svd(W_mat)
with self.init_scope():
self.gamma = chainer.Parameter(s[0], (1, 1, 1, 1))
def __call__(self, x):
if self.W.data is None:
self._initialize_params(x.shape[1])
return convolution_2d.convolution_2d(x, self.W_bar, self.b, self.stride, self.pad)
class SNDeconvolution2D(Deconvolution2D):
def __init__(self,
in_channels,
out_channels,
ksize,
stride=1,
pad=0,
nobias=True,
initialW=None,
initial_bias=None,
use_gamma=False,
Ip=1):
self.Ip = Ip
self.u = None
self.use_gamma = use_gamma
super(SNDeconvolution2D, self).__init__(in_channels,
out_channels,
ksize,
stride,
pad,
nobias,
initialW,
initial_bias)
@property
def W_bar(self):
W_mat = self.W.reshape(self.W.shape[0], -1)
sigma, _u, _ = max_singular_value(W_mat, self.u, self.Ip)
sigma = F.array.broadcast.broadcast_to(sigma.reshape((1, 1, 1, 1)), self.W.shape)
self.u = _u
return self.W / sigma
def _initialize_params(self, in_size):
super(SNDeconvolution2D, self)._initialize_params(in_size)
if self.use_gamma:
W_mat = self.W.data.reshape(self.W.shape[0], -1)
_, s, _ = np.linalg.svd(W_mat)
with self.init_scope():
self.gamma = chainer.Parameter(s[0], (1, 1, 1, 1))
def __call__(self, x):
if self.W.data is None:
self._initialize_params(x.shape[1])
return deconvolution_2d.deconvolution_2d(x, self.W_bar, self.b, self.stride, self.pad)
class SNLinear(Linear):
def __init__(self,
in_size,
out_size,
use_gamma=False,
nobias=False,
initialW=None,
initial_bias=None,
Ip=1):
self.Ip = Ip
self.u = None
self.use_gamma = use_gamma
super(SNLinear, self).__init__(in_size,
out_size,
nobias,
initialW,
initial_bias)
@property
def W_bar(self):
sigma, _u, _ = max_singular_value(self.W, self.u, self.Ip)
sigma = F.array.broadcast.broadcast_to(sigma.reshape((1, 1)), self.W.shape)
self.u = _u
return self.W / sigma
def _initialize_params(self, in_size):
super(SNLinear, self)._initialize_params(in_size)
if self.use_gamma:
_, s, _ = np.linalg.svd(self.W.data)
with self.init_scope():
self.gamma = chainer.Parameter(s[0], (1, 1))
def __call__(self, x):
if self.W.data is None:
self._initialize_params(x.size // x.shape[0])
return linear.linear(x, self.W_bar, self.b)
| [
"chainer.functions.connection.linear.linear",
"chainer.functions.connection.deconvolution_2d.deconvolution_2d",
"numpy.linalg.svd",
"chainer.functions.connection.convolution_2d.convolution_2d",
"chainer.Parameter",
"chainer.functions.array.transpose.transpose"
] | [((2679, 2754), 'chainer.functions.connection.convolution_2d.convolution_2d', 'convolution_2d.convolution_2d', (['x', 'self.W_bar', 'self.b', 'self.stride', 'self.pad'], {}), '(x, self.W_bar, self.b, self.stride, self.pad)\n', (2708, 2754), False, 'from chainer.functions.connection import convolution_2d\n'), ((4429, 4508), 'chainer.functions.connection.deconvolution_2d.deconvolution_2d', 'deconvolution_2d.deconvolution_2d', (['x', 'self.W_bar', 'self.b', 'self.stride', 'self.pad'], {}), '(x, self.W_bar, self.b, self.stride, self.pad)\n', (4462, 4508), False, 'from chainer.functions.connection import deconvolution_2d\n'), ((5738, 5774), 'chainer.functions.connection.linear.linear', 'linear.linear', (['x', 'self.W_bar', 'self.b'], {}), '(x, self.W_bar, self.b)\n', (5751, 5774), False, 'from chainer.functions.connection import linear\n'), ((2432, 2452), 'numpy.linalg.svd', 'np.linalg.svd', (['W_mat'], {}), '(W_mat)\n', (2445, 2452), True, 'import numpy as np\n'), ((4182, 4202), 'numpy.linalg.svd', 'np.linalg.svd', (['W_mat'], {}), '(W_mat)\n', (4195, 4202), True, 'import numpy as np\n'), ((5481, 5507), 'numpy.linalg.svd', 'np.linalg.svd', (['self.W.data'], {}), '(self.W.data)\n', (5494, 5507), True, 'import numpy as np\n'), ((965, 995), 'chainer.functions.array.transpose.transpose', 'F.array.transpose.transpose', (['W'], {}), '(W)\n', (992, 995), True, 'import chainer.functions as F\n'), ((2518, 2555), 'chainer.Parameter', 'chainer.Parameter', (['s[0]', '(1, 1, 1, 1)'], {}), '(s[0], (1, 1, 1, 1))\n', (2535, 2555), False, 'import chainer\n'), ((4268, 4305), 'chainer.Parameter', 'chainer.Parameter', (['s[0]', '(1, 1, 1, 1)'], {}), '(s[0], (1, 1, 1, 1))\n', (4285, 4305), False, 'import chainer\n'), ((5573, 5604), 'chainer.Parameter', 'chainer.Parameter', (['s[0]', '(1, 1)'], {}), '(s[0], (1, 1))\n', (5590, 5604), False, 'import chainer\n')] |
from ppadb.client import Client
from PIL import Image
from algo import minimax
import math
import numpy as np
from time import sleep
from tabulate import tabulate
# red is 1
# yellow is 2
YELLOW = (255, 243, 0)
RED = (222, 0, 0)
X0, Y0 = (84, 633)
DELTA = 94
ROWS, COLS = (6, 7)
EMPTY = 0
PLAYER_PIECE = 1
AI_PIECE = 2
class AI:
def __init__(self):
self.device = None
self.board = None
self.image = None
def set_device(self, dev):
""" Set android device """
self.device = dev
def show_board(self):
""" Prints board to stdout, meant for debugging"""
sleep(1)
self.update_board()
board = self.board.copy()
board: list = np.flip(board, 0).tolist()
for r in range(ROWS):
for c in range(COLS):
if board[r][c] == 1:
board[r][c] = "R"
elif board[r][c] == 2:
board[r][c] = "Y"
else:
board[r][c] = " "
print(tabulate(board, tablefmt="grid"))
def put_piece(self, col_index):
""" Tap on a column given index """
self.device.shell(f"input tap {X0 + col_index * DELTA} {Y0}")
def is_my_turn(self):
"""If rgb value of (165, 216) is white, not our turn"""
# left 216, 165
# right 211, 554
return not all(map(lambda x: x == 255, self.image[216][165][:3]))
def update_image(self):
""" Take screenshot and save """
scn_image = self.device.screencap()
with open("screenshot.png", "wb") as fp:
fp.write(scn_image)
img = Image.open("screenshot.png")
self.image = np.array(img, dtype=np.uint8)
def update_board(self):
""" Figure out board configuration from screenshot """
self.update_image()
# Initialise board to 0
self.board = [[0 for _ in range(COLS)] for __ in range(ROWS)]
for i in range(ROWS):
for j in range(COLS):
# find pieces from red component of pixel
r = self.image[Y0 + i * DELTA][X0 + j * DELTA][0]
if r == 255:
self.board[i][j] = 2
elif r == 222:
self.board[i][j] = 1
self.board = np.flip(self.board, 0)
def play_one_move(self):
""" Wait till turn and play best move """
print("checking if my turn...", end=" ")
while True:
self.update_image()
if self.is_my_turn():
print("yes")
break
else:
sleep(2)
print("thinking...")
self.update_board()
# load minimax here
col, minimax_score = minimax(self.board, 6, -math.inf, math.inf, True)
print("selected column ", col)
self.put_piece(col_index=col)
self.show_board()
def start(self):
while True:
self.play_one_move()
def main():
adb = Client(host='127.0.0.1', port=5037)
devices = adb.devices()
if len(devices) == 0:
print("No devices found.")
quit(0)
device = devices[0]
player = AI()
player.set_device(device)
player.start()
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print("\n------Exiting-------")
| [
"numpy.flip",
"tabulate.tabulate",
"PIL.Image.open",
"time.sleep",
"algo.minimax",
"numpy.array",
"ppadb.client.Client"
] | [((2996, 3031), 'ppadb.client.Client', 'Client', ([], {'host': '"""127.0.0.1"""', 'port': '(5037)'}), "(host='127.0.0.1', port=5037)\n", (3002, 3031), False, 'from ppadb.client import Client\n'), ((624, 632), 'time.sleep', 'sleep', (['(1)'], {}), '(1)\n', (629, 632), False, 'from time import sleep\n'), ((1643, 1671), 'PIL.Image.open', 'Image.open', (['"""screenshot.png"""'], {}), "('screenshot.png')\n", (1653, 1671), False, 'from PIL import Image\n'), ((1693, 1722), 'numpy.array', 'np.array', (['img'], {'dtype': 'np.uint8'}), '(img, dtype=np.uint8)\n', (1701, 1722), True, 'import numpy as np\n'), ((2296, 2318), 'numpy.flip', 'np.flip', (['self.board', '(0)'], {}), '(self.board, 0)\n', (2303, 2318), True, 'import numpy as np\n'), ((2743, 2792), 'algo.minimax', 'minimax', (['self.board', '(6)', '(-math.inf)', 'math.inf', '(True)'], {}), '(self.board, 6, -math.inf, math.inf, True)\n', (2750, 2792), False, 'from algo import minimax\n'), ((1035, 1067), 'tabulate.tabulate', 'tabulate', (['board'], {'tablefmt': '"""grid"""'}), "(board, tablefmt='grid')\n", (1043, 1067), False, 'from tabulate import tabulate\n'), ((717, 734), 'numpy.flip', 'np.flip', (['board', '(0)'], {}), '(board, 0)\n', (724, 734), True, 'import numpy as np\n'), ((2619, 2627), 'time.sleep', 'sleep', (['(2)'], {}), '(2)\n', (2624, 2627), False, 'from time import sleep\n')] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.