script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index Matrix Index ToA ToT FToA Overflow
0 4574 832 29 6 0
1 4831 832 35 7 0
2 4575 832 100 8 0
3 31031 1745 22 11 0
.
.
.
.t3pa_cls file example:
% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow
# 1, Nunmasked = 3, Nmasked = 0, Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, Tlast = 2.0790625000000000e+04 ns, dT = 3.125000 ns, Etot = 64.428148 keV
2 4575 [ 17, 223 ] 832 8 ( 2.0787500000000000e+04 ns ) 100 ( 37.867914 keV ) 0
1 4831 [ 18, 223 ] 832 7 ( 2.0789062500000000e+04 ns ) 35 ( 14.733453 keV ) 0
0 4574 [ 17, 222 ] 832 6 ( 2.0790625000000000e+04 ns ) 29 ( 11.826781 keV ) 0
# 2, Nunmasked = 3, Nmasked = 0, Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, Tlast = 4.3607812500000000e+04 ns, dT = 6.250000 ns, Etot = 63.577435 keV
5 30775 [ 120, 55 ] 1745 15 ( 4.3601562500000000e+04 ns ) 99 ( 37.617059 keV ) 0
4 30776 [ 120, 56 ] 1745 13 ( 4.3604687500000000e+04 ns ) 44 ( 14.715446 keV ) 0
3 31031 [ 121, 55 ] 1745 11 ( 4.3607812500000000e+04 ns ) 2 2 ( 11.244929 keV ) 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 46441
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3142937.846743745, 3184977.70653431, 3287524.907586071, 3299296.7150028055, 3309189.814690914, 3402246.593474914, 3448609.6997304037, 3518344.055639219, 3534552.2507350896, 3576229.5633282736, 3584581.663617451, 3603506.0889923833, 3612892.436358626, 3630051.8567199474, 3695124.837659661, 3733619.477150076, 3769092.4395625186, 3785046.4198665135, 3808222.8298167395, 3841328.463219151, 3883917.174834772, 3933650.6464064596, 3936181.2614590786, 3959232.6477904506, 4000538.857695529, 4038034.3768452257, 4192623.6434383835, 4228053.584098839, 4264034.483123377, 4264104.718559394, 4592333.777535574, 4608244.114666206, 4659830.3616708135, 4699730.078668667, 4828825.997866293, 4957493.778451598, 4957551.232276807, 4960619.732270991, 4985390.267734114, 5010815.021946095, 5019586.828768512, 5022611.8043459775, 5023450.908469683, 5030686.856464089, 5042372.768544831, 5042964.430012111, 5062805.654442905, 5063098.174111363, 5063460.642707304, 5064502.653361073, 5064572.740356697, 5066543.32677548, 5066608.196794897, 5080624.317087903, 5092567.4394757, 5096488.586549023, 5108480.99055624, 5109674.657570635, 5129376.63865272, 5129409.640794375, 5131267.904604976, 5131863.997283049, 5140551.621574642, 5144939.680034213, 5159997.342114474, 5162854.032088927, 5165581.564485306, 5166730.954451361, 5168365.884521766, 5171425.865778303, 5185070.422525894, 5188106.881894356, 5195116.80700895, 5196993.999019268, 5197427.192798729, 5197597.411987143, 5202045.231752582, 5208893.633068789, 5216896.879152193, 5217329.38505753, 5220562.988088475, 5228663.608592753, 5228783.159033618, 5238165.614976551, 5240344.453538038, 5242760.168487935, 5246132.707557129, 5246499.027802918, 5246873.34996907, 5260569.988297395, 5262997.647847476, 5264835.235978874, 5265046.603535494, 5267031.307004983, 5270695.588615444, 5271611.782276398, 5273570.621485573, 5274611.777511624, 5275904.539066194, 5276519.404225819, 5276848.064949115, 5277210.379788473, 5277240.041990714, 5277427.198560319, 5277675.248916501, 5277770.214848336, 5277789.478863407, 5277880.668988609, 5278043.675209101, 5278506.389866163, 5278689.523180769, 5278829.000114598, 5279250.397056696, 5279841.057413813, 5281014.769708213, 5281129.294779697, 5281230.36007732, 5281863.852035072, 5282266.993332358, 5282359.247628187, 5282477.083796505, 5282723.190544402, 5282933.499912972, 5283378.0256895255, 5286710.872828906, 5287509.938347872, 5293039.163685578, 5299295.145261569, 5299964.190065997, 5300137.950950013, 5300658.024984231, 5301763.173010661, 5302731.794477528, 5305289.987312293, 5306967.080915313, 5322764.991362239, 5331410.454814306, 5332150.12837342, 5332172.124699351, 5332500.7256913865, 5332901.79842834, 5333217.204704779, 5334152.24111619, 5337591.951349649, 5338733.688464886, 5339439.692484105, 5341958.945884859, 5345716.214972408, 5346123.394612255, 5346517.5498241335, 5347698.909578909, 5348718.37306011, 5349935.450405395, 5349949.261162895, 5350159.168666254, 5350480.552641341, 5350614.993915621, 5350632.245912839, 5351193.490139289, 5352335.264146391, 5367037.78609918, 5368333.087935077, 5372315.4742008615, 5381533.5997632975, 5384539.939131328, 5390101.351579018, 5390669.089014348, 5391182.668680674, 5391698.089915878, 5391884.250560861, 5391919.882873412, 5393371.8607168915, 5393457.430216692, 5393529.853168239, 5393548.681461589, 5393578.642102353, 5393665.67259349, 5393705.287373377, 5394026.5038981205, 5394189.196086384, 5394324.422401388, 5394326.971795039, 5394391.298006086, 5394490.11163971, 5394631.135779453, 5394800.298099119, 5394922.19614485, 5394933.043172165, 5395026.256925667, 5395142.684110338, 5395169.907215729, 5395193.3848056635, 5395269.676289099, 5395280.137863714, 5395281.829752076, 5395318.923310653, 5395331.324612976, 5395431.820576797, 5395465.426324681, 5395471.068462505, 5395532.310485847, 5395533.32458179, 5395573.854465092, 5395574.497307448, 5395607.2539401045, 5395619.924180672, 5395645.364844889, 5395714.797231226, 5395734.063548833, 5395764.086351104, 5395764.947459811, 5395766.700807793, 5395803.476666171, 5395827.263923241, 5395827.709908551, 5395833.752840843, 5395838.509952489, 5395839.72395165, 5395846.165821814, 5395871.633796462, 5395888.500476062, 5395915.893386997, 5395933.815223377, 5396019.395372362, 5396022.636106996, 5396042.492284781, 5396099.815114072, 5396194.2533449745, 5396215.8677936895, 5396217.03246246, 5396226.843486123, 5396280.70750771, 5396317.851986989, 5396338.871844826, 5396351.155319066, 5396401.490175571, 5396423.890544055, 5396440.380663819, 5396450.437501054, 5396485.913194767, 5396493.808200655, 5396504.768469315, 5396523.068203347, 5396527.15689901, 5396530.977573774, 5396612.568604105, 5396657.641555972, 5396795.699647949, 5396982.988377695, 5397111.328824284, 5397184.120716953, 5397249.867860872, 5397264.217421255, 5397273.656313577, 5397289.852147081, 5397303.818821235, 5397305.577245845, 5397334.116366389, 5397335.582864319, 5397355.423733758, 5397377.258637368, 5397386.36839331, 5397395.934206914, 5397399.440189438, 5397411.295781409, 5397444.419982096, 5397460.287857142, 5397494.244769983, 5397507.326847011, 5397513.193420923, 5397516.33139213, 5397538.76857425, 5397547.525407908, 5397549.098812232, 5397584.716302393, 5397650.604678701, 5397663.37213253, 5397699.505306316, 5397708.555906143, 5397718.492555178, 5397723.382542015, 5397740.994484431, 5397742.770614229, 5397756.91173636, 5397767.651597509, 5397804.035309088, 5397814.611179449, 5397818.017594977, 5397825.697649083, 5397829.9654899, 5397855.578145275, 5397867.999865947, 5397901.939636175, 5397915.614417822, 5397930.245568181, 5397934.018234601, 5397964.610247574, 5398001.129693659, 5398028.327364306, 5398110.43553762, 5398152.109713985, 5398180.091138358, 5398193.256779648, 5398257.732727508, 5398263.065355595, 5398286.084802362, 5398304.029686328, 5398327.192771159, 5398349.799856656, 5398390.360169255, 5398423.046876654, 5398445.991292871, 5398497.714755727, 5398501.464959476, 5398515.449207247, 5398539.371399424, 5398544.698697073, 5398599.052629198, 5398601.526424828, 5398616.748245994, 5398628.372400354, 5398659.367201727, 5398673.608332822, 5398814.499527963, 5398848.66410504, 5398861.409774336, 5398909.709817036, 5398928.47000592, 5398955.314298439, 5399025.1064509405, 5399041.12076974, 5399047.617192258, 5399061.71316735, 5399075.9867732255, 5399086.024621343, 5399103.428098687, 5399103.449994099, 5399106.889877506, 5399142.487616308, 5399152.050520348, 5399215.216278123, 5399283.042365684, 5399305.1731362855, 5399313.5159442555, 5399436.564188446, 5399456.440580242, 5399514.492326463, 5399543.268490048, 5399562.3018868305, 5399581.610430834, 5399812.814826663, 5400618.693185774, 5400682.701343903, 5400705.381352777, 5400718.397612744, 5400862.517627725, 5401011.893590786, 5402029.61034313, 5402269.398303497, 5402486.257469283, 5402618.858023664, 5402913.8972968925, 5403011.801159233, 5403119.926708806, 5403241.088840039, 5404545.969198318, 5404596.49281362, 5404621.337648204, 5404771.626228625, 5405079.903107747, 5405257.550927245, 5405371.410955878, 5405549.832075128, 5405817.463654047, 5405822.129024025, 5405952.965535845, 5405996.873269895, 5406125.067508109, 5406165.060630885, 5406193.993498593, 5406331.634816262, 5406509.709990786, 5406617.666733136, 5406755.438402068, 5406854.011656751, 5406863.13057239, 5406874.291380265, 5407004.559217285, 5407103.222085656, 5407212.720021991, 5407382.683390084, 5407439.870467282, 5407506.498612282, 5407605.707567143, 5407844.0821823375, 5408389.735590527, 5408529.012316327, 5408734.964741689, 5408751.229451915, 5409004.1450922415, 5409842.462969669, 5410075.748273324, 5410488.014371542, 5411346.118723471, 5411923.729753822, 5412504.7832398, 5413397.98868572, 5414286.806293554, 5414661.757142232, 5414679.899922138, 5414802.997160165, 5415318.62156854, 5415624.45082578, 5415721.202077419, 5416169.454260013, 5416234.189411702, 5416500.53421933, 5418528.997061787, 5419358.981372363, 5419493.643354116, 5420792.159328679, 5421452.526527094, 5434977.304726187, 5439668.172696244, 5458076.474674105, 5458654.743831946, 5460383.879396699, 5465266.035248763, 5466439.341485158, 5466562.382204946, 5467137.382381519, 5467326.834963991, 5467544.813823206, 5467659.5777915865, 5467730.946444415, 5467776.427663925, 5468126.0667617805, 5468144.357319447, 5468196.491609229, 5468298.630442111, 5468389.45563451, 5468408.058853655, 5468607.5066337325, 5468831.415806554, 5468880.344656901, 5468913.59054413, 5469038.081581884, 5469084.810246184, 5469332.246052346, 5470006.120827589, 5470489.96507708, 5470905.16378232, 5472520.228926283, 5473029.065682511, 5473245.998680837, 5473251.201760702, 5473404.325918521, 5474343.960695754, 5474742.449995955, 5475651.451146621, 5475820.703789879, 5476400.478273221, 5480955.917140409, 5481072.036140555, 5484350.9518695, 5485927.86581894, 5486769.431046761, 5486843.970741981, 5494144.832774992, 5494451.321031917, 5494688.349295733, 5494825.643520863, 5495101.09913302, 5495212.691751026, 5495438.021137681, 5495545.724017218, 5495580.656815991, 5495607.255521399, 5495911.053555921, 5496288.112080355, 5496507.951375319, 5496639.559544848, 5496682.703325842, 5496728.92352056, 5497071.355916476, 5497808.020067328, 5498674.289148815, 5498739.937588148, 5498796.378054661, 5499206.501251022, 5501724.519809152, 5502561.457286339, 5504677.083810754, 5506030.571571935, 5506136.046952512, 5506161.80454907, 5506278.928846648, 5506442.727396496, 5507238.568477463, 5507545.966328122, 5508109.295091835, 5508166.947618859, 5511557.4713476235, 5516986.331950685, 5517293.603407486, 5517739.272163776, 5518799.561146068, 5532936.401302688, 5538531.797865936, 5539112.097787666, 5540220.51999954, 5540425.0, 5542076.889474477, 5542710.25261953, 5562150.717920542, 5563301.089971486, 5565260.809475797, 5565432.077306939, 5565506.544911146, 5565832.739325565, 5565890.103176878, 5565959.1486342335, 5565959.519339569, 5566199.390250203, 5566244.654675783, 5566664.218350076, 5566972.094453058, 5567712.219156845, 5568843.363726091, 5569692.47540556, 5570051.778663393, 5570424.100633768, 5570903.780418194, 5571964.205157709, 5572770.122153106, 5572837.143048669, 5573271.8735354375, 5573351.869556639, 5573747.78750851, 5573790.671254822, 5573962.394062189, 5573989.430893218, 5574067.259434031, 5574096.558821222, 5574297.733223607, 5574612.91254351, 5575070.776039598, 5575093.339627786, 5575603.599549697, 5575840.055103442, 5575857.864978033, 5576160.219802285, 5576307.051787351, 5576544.728672996, 5576777.072543431, 5577019.021725218, 5577050.497895744, 5577275.056384317, 5577456.32660137, 5577642.3740351815, 5577874.595599369, 5578013.39075761, 5578087.872564001, 5578194.629325106, 5578239.2677682, 5578463.349626943, 5578570.884168064, 5578901.134932447, 5579115.621137598, 5579178.240798487, 5579302.490480723, 5579633.989828444, 5579762.692261237, 5580024.755461862, 5580424.173584384, 5580550.8558202945, 5580556.595466096, 5580570.869131012, 5580655.966845292, 5580910.9375, 5581209.0750076445, 5581505.27454009, 5581652.808765381, 5581683.343053421, 5581897.557897947, 5581899.704475543, 5581912.368913514, 5582077.527779296, 5582185.344298574, 5582423.702880473, 5582445.984192872, 5582456.726289427, 5582493.099204469, 5582503.111245815, 5582733.509044989, 5582933.563786207, 5583024.820752806, 5583112.671722909, 5583692.987178117, 5583893.530334887, 5583984.631214174, 5583995.064440386, 5584051.612308143, 5584077.92068162, 5584426.0148768965, 5584494.868409735, 5584611.070582867, 5584979.78505038, 5585172.727260426, 5585195.158616306, 5585258.578249947, 5585268.018525344, 5585324.927237359, 5585375.87503366, 5585397.025259551, 5585403.709056904, 5585556.474005861, 5585604.994931011, 5585615.159713478, 5585634.003136179, 5585845.86142209, 5585930.967133638, 5586211.301507959, 5586272.126397167, 5586399.731206673, 5586406.372384124, 5586415.917202629, 5586528.206568482, 5586642.029683863, 5586645.676024523, 5586660.8073019935, 5586728.227363406, 5586787.681667851, 5586947.382486991, 5587058.85174566, 5587205.3675212115, 5587220.021863585, 5587351.559181859, 5587357.095126557, 5587379.510074845, 5587386.046016621, 5587421.94486332, 5587439.5610918095, 5587443.724309415, 5587479.088851302, 5587486.093454941, 5587515.548222183, 5587525.4056232525, 5587664.195051745, 5587687.434005662, 5587706.687892086, 5587706.819241255, 5587719.434181196, 5587719.517958592, 5587739.168421731, 5587764.2055442035, 5587793.644895297, 5587858.585146359, 5587886.560082504, 5587961.399897933, 5587966.014477641, 5587968.079446918, 5587980.719644997, 5587981.895982069, 5588003.651846586, 5588017.091899284, 5588018.795976781, 5588027.528432352, 5588042.401094363, 5588048.619023388, 5588070.889670528, 5588082.141919813, 5588104.361899554, 5588108.917948384, 5588114.706885003, 5588123.2123725945, 5588129.897292904, 5588140.901795025, 5588192.828716538, 5588195.000492705, 5588246.652235479, 5588247.066909823, 5588248.063055255, 5588249.168415702, 5588273.060646118, 5588279.13382438, 5588280.312168368, 5588281.35295185, 5588283.72418217, 5588285.529816402, 5588306.282387532, 5588331.312111725, 5588333.197283144, 5588338.197003696, 5588344.27808319, 5588362.458196568, 5588365.557438822, 5588371.206673299, 5588374.12287698, 5588380.119304767, 5588382.532747107, 5588414.5753258495, 5588421.312949385, 5588427.434287205, 5588434.933470765, 5588447.608585549, 5588453.6719724145, 5588459.177665796, 5588490.446952989, 5588494.390431824, 5588506.262304901, 5588506.532512251, 5588527.117211151, 5588539.022170018, 5588559.610480711, 5588574.1847245535, 5588581.275783619, 5588587.564182692, 5588609.430383441, 5588628.205849631, 5588635.171258952, 5588643.650883961, 5588648.738823113, 5588651.92458179, 5588661.983097267, 5588671.179852014, 5588675.309856274, 5588684.020496945, 5588690.901557169, 5588695.28342604, 5588706.917602627, 5588717.016185066, 5588718.409557757, 5588726.193798308, 5588730.963485355, 5588743.887649483, 5588745.486391096, 5588762.9539260585, 5588774.047435425, 5588793.969010388, 5588803.716832602, 5588818.117575669, 5588832.8606662005, 5588833.069176043, 5588833.281934826, 5588847.1228811685, 5588848.920890229, 5588860.720632337, 5588862.458663369, 5588865.654282126, 5588869.610530003, 5588877.592772202, 5588877.965287805, 5588885.198003876, 5588886.965674971, 5588887.512108756, 5588893.143362192, 5588902.203734288, 5588909.551267115, 5588915.410158017, 5588919.862753887, 5588941.109942849, 5588978.227306467, 5588983.866079171, 5588989.808651944, 5589001.9785435125, 5589009.38465894, 5589009.652869312, 5589015.709021776, 5589020.74598691, 5589021.862575587, 5589034.077337857, 5589044.540699929, 5589052.504116365, 5589065.783983848, 5589082.486000568, 5589086.528015874, 5589091.169463475, 5589097.799174428, 5589110.196882767, 5589117.33747117, 5589117.48389785, 5589130.985654325, 5589135.030886125, 5589140.239528402, 5589140.926149271, 5589154.764372565, 5589155.703540628, 5589157.334471296, 5589162.426426533, 5589163.750488959, 5589173.9439247, 5589178.714136902, 5589184.362315737, 5589189.443596044, 5589190.3395735845, 5589194.980715528, 5589195.530231033, 5589198.4447395075, 5589205.149623071, 5589209.033847902, 5589215.549177925, 5589216.762965097, 5589219.737645631, 5589229.254749879, 5589232.12028013, 5589235.019086262, 5589246.115655807, 5589251.195146454, 5589254.527167962, 5589257.0577778425, 5589259.70373712, 5589264.0956147285, 5589273.775815217, 5589278.329570752, 5589278.372094067, 5589279.236600699, 5589282.908879506, 5589288.886241569, 5589289.38729604, 5589289.966325042, 5589303.942339412, 5589305.214515053, 5589305.830989672, 5589309.988411031, 5589310.14976444, 5589318.629703416, 5589329.055138263, 5589336.45133511, 5589345.384207982, 5589347.777519787, 5589384.604366386, 5589388.160538276, 5589388.763622954, 5589407.433482862, 5589412.59007196, 5589415.892142928, 5589416.091800295, 5589416.376619304, 5589444.877057829, 5589445.883371119, 5589448.068943639, 5589453.404355591, 5589461.627108442, 5589464.205388414, 5589465.726585325, 5589466.448578902, 5589468.952929663, 5589470.4919503415, 5589471.2097438155, 5589471.794729383, 5589479.443386753, 5589480.461731552, 5589506.673553725, 5589514.135212977, 5589514.466834456, 5589518.025535, 5589518.633630609, 5589526.47237667, 5589541.031139679, 5589545.2679886175, 5589546.494709245, 5589574.085201922, 5589585.236290234, 5589590.738644531, 5589592.744801332, 5589598.686292421, 5589600.388376213, 5589615.040216522, 5589620.261201636, 5589637.6063841125, 5589643.4340300765, 5589650.369593333, 5589652.795111316, 5589657.512712992, 5589667.935631947, 5589672.950527865, 5589674.86745221, 5589690.957345308, 5589694.885806797, 5589700.518297161, 5589706.406452762, 5589722.105654987, 5589724.776878601, 5589729.330410371, 5589738.107438256, 5589753.687507761, 5589776.86087096, 5589779.493277463, 5589783.576338895, 5589797.358451983, 5589802.593735169, 5589809.529992458, 5589823.303347008, 5589827.247892593, 5589829.818644603, 5589833.534574081, 5589841.466427682, 5589853.494520235, 5589853.938085493, 5589859.38425283, 5589864.840226143, 5589870.978328135, 5589872.302072748, 5589884.299363593, 5589889.035429072, 5589895.087588768, 5589904.220028221, 5589913.526042631, 5589919.839825818, 5589940.2556449445, 5589943.943842132, 5589944.351767911, 5589952.757311451, 5589968.9766047895, 5589974.354653637, 5589996.840429594, 5589999.295680292, 5590003.449432555, 5590011.099293069, 5590016.979694578, 5590021.266863301, 5590022.231490116, 5590022.4563402245, 5590024.681201733, 5590037.914882228, 5590039.105284765, 5590050.225820422, 5590050.606059067, 5590074.284246286, 5590075.549030905, 5590084.117007351, 5590100.161831375, 5590108.173360969, 5590112.657441301, 5590127.76524102, 5590148.571355787, 5590171.84414481, 5590180.112212039, 5590191.498165161, 5590201.144800275, 5590238.758758525, 5590243.853098574, 5590257.8125, 5590260.108455558, 5590289.820965872, 5590318.098581056, 5590420.2796110865, 5590429.639127612, 5590434.0702532325, 5590438.137938327, 5590476.707896283, 5590487.58271279, 5590498.927023751, 5590507.297894011, 5590509.993360071, 5590533.388236898, 5590535.826193196, 5590547.2908484675, 5590608.84287333, 5590676.417740462, 5590678.940003433, 5590757.198325226, 5590765.642479542, 5590792.484802592, 5590833.044013559, 5590850.029580853, 5590864.284946561, 5590886.607921507, 5590941.081354797, 5590947.144463713, 5591000.836715948, 5591017.63805855, 5591059.388173341, 5591082.393324373, 5591135.82554871, 5591155.5310844835, 5591160.9843034865, 5591183.953081736, 5591204.8226081375, 5591381.646425761, 5591402.089448743, 5591542.773768511, 5591591.837616248, 5591859.501057884, 5591929.703137357, 5592022.1982739195, 5592357.790190355, 5592618.092341482, 5592661.625285976, 5593160.525892383, 5593161.173730784, 5593328.1059660725, 5593340.594076203, 5593702.575014885, 5593742.634557653, 5593751.452606569, 5593846.665803071, 5594061.7504441, 5594103.126577775, ...], [5.550149137513182, 6.682743077797609, 10.986266276259265, 9.199684036285849, 16.56011505300236, 10.714442329465026, 6.122532106450931, 7.71765380439396, 7.314936339367837, 8.221986927947304, 26.097462967233575, 14.36139329923641, 43.913631413517024, 5.8360755589398225, 8.202555069577928, 18.6936544115318, 5.628142718150126, 19.573731144420137, 10.294405864482727, 5.30165019978566, 11.107967775838059, 6.352474106650795, 17.390782647788107, 5.286026464978492, 14.214410728771192, 5.614146230745947, 15.789191431161562, 23.543256231848147, 5.948877196374771, 5.166085568666729, 6.028096393050188, 6.126860412963523, 60.432804967804344, 8.504864716187797, 22.573433142885378, 8.30168053193691, 10.648005386304504, 6.652945061856341, 10.611706354074261, 8.86871999892865, 12.88033466929828, 8.805159033704758, 6.389231266506328, 12.949405178016425, 6.956047241028592, 6.839164617890256, 6.028281403662832, 7.053894272797931, 9.093986962124676, 8.05197902729966, 6.182961993694188, 7.014472220495685, 6.549068815073792, 10.20525831261177, 20.60457742290554, 10.457212724434944, 7.05488192162819, 7.483910669862003, 5.401393280286751, 5.473291560920018, 5.493410949460295, 6.258993689540411, 11.221317026654662, 7.842980209433457, 6.328075656628671, 7.967942209436032, 16.746987099261055, 5.449222654813081, 5.545809930959789, 14.139903560440814, 7.150677624169281, 6.1563717428986715, 8.095119531128782, 7.695857186419973, 9.928012662718455, 5.360665259107392, 6.257050134264597, 15.103449333133604, 5.461944783750965, 13.90176027438668, 6.865025371109604, 6.67614908334122, 5.9701627904860395, 7.59961639136751, 5.753045413000343, 6.93298157208349, 9.244216893138882, 5.487686551230572, 6.079043825218957, 7.0387590431645455, 6.928273864620671, 5.880555659610752, 9.111949278199358, 5.099579839289863, 8.438196200553854, 8.790272613859196, 5.475186693195547, 8.787071676867264, 7.55041969438299, 5.749699383720006, 22.86622658567412, 20.93608783973751, 6.0294995462582275, 8.6542434173233, 5.961379824526768, 9.250175904655737, 13.799185002189526, 20.721321446946206, 6.748666440819901, 15.502830517305197, 6.859100249293516, 10.20004132262981, 6.551188327591914, 7.2399566965589415, 8.699670268968179, 6.687556427896809, 5.05306325741216, 6.454597470742152, 42.58021738529299, 8.220350246683806, 6.144040677497334, 8.160162381611299, 5.312803964087623, 6.743840648588441, 7.1045547327430745, 6.579182260811612, 11.289637483287569, 5.392118920821305, 12.08048622910652, 6.325904949667477, 8.4022323995357, 7.310365948925728, 8.597143200154163, 5.667341203601744, 9.242877050732867, 7.977699840653778, 14.613887538904915, 6.789408835258402, 15.987079038433452, 5.222313163219994, 5.721939457065788, 7.609472233791173, 5.652723359003832, 9.139400138876926, 12.842641763193319, 7.297524833967, 10.51726186717284, 12.194762469986603, 14.780522877985824, 7.220068140698886, 5.737475828234791, 5.593525808824911, 5.441241199584197, 7.931034270972629, 5.284756019680021, 12.81618348430253, 8.849289804579003, 8.008080438521597, 8.153778423032051, 7.959940543387883, 7.710099710853094, 16.106682462848504, 6.248332147717151, 5.4294480657805595, 7.372678102339308, 8.178101725390135, 9.635511171040346, 10.910110575925604, 5.062629718355612, 5.698883875138219, 11.790452037427118, 7.117702117275626, 5.062010008954187, 6.28835874157497, 7.187093224729613, 28.08531867091996, 5.943560997645266, 9.895958554301705, 5.396238453540686, 5.951124076690314, 6.400205433945439, 9.703248684413241, 6.1609984799771915, 6.204446925562883, 5.200521657678214, 6.305610304377398, 7.723672328886112, 5.349888599201587, 7.043377258710288, 5.483493115371229, 8.083285967627573, 34.952189678363084, 5.667429868363072, 8.540017230674414, 6.581982186766837, 21.798398085130206, 5.945929718356207, 6.883027205764518, 9.16887798106159, 5.756620039350859, 10.424299205271973, 6.570476821522324, 16.81093568578746, 8.037506556828992, 6.199116693342141, 5.328789181203383, 6.093559592331691, 5.65602685468489, 5.448555631706024, 15.033204688368247, 5.76549316428536, 27.742201650094017, 5.633799978636925, 5.313256853638134, 10.535471803961297, 5.321045179809725, 6.199823958328553, 12.347259321497004, 6.181572298110977, 6.23719754818636, 5.323025092445191, 7.193836059070235, 6.981687784765436, 11.636608217949028, 6.00854612787603, 5.966394903604451, 5.603897039960844, 8.571986351262712, 19.148712697456528, 10.893722382447365, 6.117814982572648, 6.405285466780651, 8.672279477805409, 9.175233689347426, 5.784454385935963, 6.258103738641302, 5.48155358913141, 16.715707460821843, 11.888117472010338, 14.39730539447673, 5.204907233576751, 7.632787799621514, 9.0375143149754, 5.4216941324065, 5.599148575673212, 6.777280572268444, 6.729852132435468, 5.048129016173596, 15.65710660945039, 16.677163108502494, 6.062049257504863, 5.9279800731582, 9.465925696499857, 8.405781419898856, 12.636117504813031, 7.316616831058425, 5.18661443127448, 9.121886789474663, 6.223408867981343, 8.718478337063628, 6.910926316454124, 11.875368335693755, 6.155228867808452, 5.892092739998767, 11.738053213984111, 18.30510243910463, 7.384038576484181, 12.00044670797862, 5.676531502877878, 8.69079277930964, 12.446205029958186, 5.792547728981837, 12.323312709103666, 5.365104886598385, 9.637689482676313, 7.837631284355826, 6.384054758032389, 5.67598145697133, 6.610302817972092, 24.309983342448433, 17.247410489380044, 5.730683530149389, 5.1431631131458735, 6.903221920618165, 5.4165174504519085, 6.9599519710261255, 17.546521342676574, 5.225098953530798, 8.693511403536482, 7.7069746003363315, 5.226722652394833, 5.6606246490006145, 5.075819160662257, 9.322471345526727, 5.743219959974325, 5.122949964107952, 5.361047996905965, 5.902580008100408, 6.519288506892398, 6.995469765533074, 8.598827434784122, 15.267914503484425, 6.206831795366331, 7.1006386044682674, 5.1787408513444495, 8.366040245081098, 7.381468777260931, 8.650588704869659, 8.183499973235064, 5.794641517652266, 10.56750219393205, 7.868694865717634, 7.361200512244479, 8.235661123212566, 14.31128764183168, 6.826783711345732, 7.986634502404028, 8.641058733291601, 8.267591860749757, 8.067193003918781, 7.695238095175726, 9.324817987467029, 5.826729496866627, 5.35712342852395, 6.111985474774007, 6.861603207107975, 16.392249627966535, 9.641219188177875, 6.895444332030595, 5.402559203473732, 8.567385662416793, 18.79950973827813, 6.37043835024973, 8.887824396210034, 9.406171866279859, 8.453639716945338, 6.830171213999461, 7.300467655079292, 6.305875438500547, 5.983062726001503, 5.591825873962978, 7.183216395984594, 8.561246887000637, 5.323535660654198, 6.15578754012044, 9.49792164060235, 7.7664661798408385, 8.954944448647085, 5.799465580829691, 5.730087294924301, 5.3009121093183005, 7.1065965844996715, 5.805801192128353, 6.0021972947876145, 8.108623907541338, 7.609625797510124, 10.295938959498878, 9.267003813402248, 5.080878234928531, 5.838040767110247, 9.424444655848271, 25.438745247962935, 5.66368003040292, 8.09258354674679, 5.640230819572267, 9.956126499598819, 7.024484360359399, 13.224899256973783, 9.129553234617415, 16.818451832577438, 24.254328713096683, 8.967605207037403, 13.206247817815253, 5.299694365714511, 5.833018037797404, 10.887278195966717, 5.613948433885296, 5.711067915695346, 20.874149165180427, 6.298460769274011, 5.552052984451596, 16.39310552516085, 17.148198678206498, 5.656981912921494, 12.868940762605977, 7.8484218570076445, 6.946854693009528, 6.738163337678132, 5.6194378253727, 5.25134526874677, 5.393561113904208, 7.351375724250576, 9.550854505478688, 6.985807234234863, 11.689911834072701, 5.31234141711882, 7.959126387843249, 6.344698681517675, 5.7897417947400465, 8.019160859778331, 16.106844879141963, 5.314774364181019, 6.143274137841987, 7.923413615847166, 7.200455575568737, 5.465890857548111, 10.491862238634933, 5.663986642363669, 19.370227350952348, 5.135068148731241, 10.933596254475738, 5.804538161391374, 17.84633368216928, 7.960132351226732, 18.535511994647372, 5.335602216930991, 12.079787916468321, 10.19648630364892, 13.627132218725716, 6.077078754943028, 7.11406591210774, 7.400231175833868, 6.168841924789452, 20.755123993931377, 5.931793436722584, 15.160657271092555, 6.668438716742928, 8.516130897485302, 6.303101552713251, 9.233748082486425, 10.948707181713026, 5.408993234834623, 13.329671447510373, 5.957262567053254, 6.704380363859683, 9.219935906674962, 6.668413850288249, 5.746531235922244, 6.049117186010898, 5.1346472450836345, 21.01249680259867, 7.694837946993972, 6.440189625289126, 8.37624901560376, 7.305621516150079, 5.677365711789984, 5.421182728016246, 23.969692832968335, 8.008144177890163, 6.737989419322612, 19.455426080799455, 6.564437716155062, 5.529038146424199, 5.3752229390077195, 12.401404941479376, 13.724346921617796, 5.908523457875741, 7.177960936947916, 5.47314709290738, 5.929766512822519, 5.213506748668253, 5.176651959809324, 5.789755288020722, 6.287774269455121, 6.395448307379799, 5.52063251098431, 7.869648180682384, 5.170534601413486, 10.45242472318186, 7.518176783271395, 7.9422942293071594, 5.565149596401006, 5.900043591709909, 6.802401641012439, 8.582831896610491, 7.2339984615806845, 6.02851164854308, 5.892325055720715, 7.64575948612899, 6.8921820066215425, 9.45165711737527, 5.078047749872097, 16.677926918035574, 5.659802331767965, 13.274082865588834, 6.80566557026089, 6.946339454763305, 6.633614578728021, 16.82082331000192, 11.544532024376315, 8.04798214333654, 5.41872382860393, 6.335388304090153, 7.9576839276752525, 6.099555755268384, 6.949899495948081, 8.762925509160896, 8.594326643214616, 5.89750753763082, 7.304627260145182, 5.529214873523959, 7.518721345825532, 5.910236524172311, 9.688797619168243, 14.410731966588518, 8.400652893484882, 5.381957952809213, 9.756988234190503, 7.273322240746639, 9.01298958742082, 6.805651562922195, 32.62384721328776, 9.624078156497545, 6.019660273590737, 18.629467655857514, 8.051562862505588, 6.467207854401845, 10.14485945442311, 17.75905554349758, 5.5295396631867595, 13.266672391283802, 9.147061942384793, 5.824737914016837, 7.98846564539477, 6.18751688616084, 6.104457601575328, 7.180359352871606, 20.139461398810898, 6.688764736810344, 7.199247291619757, 16.855349459215276, 8.67141747565923, 12.334158959035092, 25.41076300190582, 10.84266969419826, 5.329837260995061, 6.267013348116653, 6.536326961654747, 5.666602966190744, 5.343509168038023, 10.966060488606992, 7.742144660541803, 6.0956118042752445, 6.438643923613411, 12.79935904756822, 5.553443270866258, 5.980816159605653, 9.006949373460753, 17.122198764340908, 6.979290034694569, 8.314524926428698, 6.016514913989056, 6.0124099177923735, 5.087136156339798, 9.80342835329593, 7.194760080641023, 7.25878725072111, 18.82507496827843, 6.778896406000544, 18.471908143902496, 9.01136820462255, 32.825954438530715, 16.581090805412853, 6.385077322728147, 7.679206132332459, 21.612394701232205, 12.156640430968338, 5.6800762874911594, 7.120436719096804, 12.895393372782797, 7.977303773874361, 6.048940168767285, 15.728714754155735, 5.389207137647246, 10.042396865223202, 7.945171602052251, 6.834493365791316, 9.85102852267198, 5.09292369513851, 36.182894700491076, 10.689084173328496, 5.992212613153683, 16.272544032298445, 14.871371947319442, 7.8704315508619, 5.387295321905582, 9.222968352773163, 8.87278451478087, 5.27310874164516, 8.432084342495262, 12.36959447480118, 7.252547008289239, 20.110093559802568, 5.1302083468342, 6.602120685858338, 5.8717420726390195, 10.858632521797553, 14.356375066297247, 6.012209145497325, 6.2398385298156605, 5.472872057714562, 16.069133857063207, 20.01961175470288, 10.82268759482781, 5.893093013412736, 5.679066047622204, 8.358230333723732, 5.4022164311698795, 8.795309630287223, 11.716263793260337, 5.223379974236849, 5.3174663163932685, 5.933093865930629, 6.633604833825921, 5.952598728539254, 8.621633859667188, 9.528278206508212, 16.258847951287006, 5.899884551174695, 7.474059175707672, 9.843094897572822, 13.962849302051536, 16.537769817941236, 6.527235522914915, 6.711004852314778, 5.043612378620336, 5.253397709502056, 11.25764293814953, 9.201432890456314, 6.5456278782161945, 15.1358265100542, 7.640685169864897, 5.296732028866968, 5.177351570394752, 21.26422046063994, 9.981200108101175, 5.51913936289748, 14.928877287291451, 7.362866789926945, 10.861260339772844, 6.099457159166862, 5.819167701870775, 5.216313392319877, 6.085431690357069, 8.871788829377023, 6.287105295986879, 11.009781973556263, 6.847281189889739, 15.472007352202176, 6.081263168676195, 5.978469086820001, 6.580187359579814, 5.181607996297241, 7.339100666470949, 11.297406301366815, 11.358905731371674, 5.528001129847571, 6.172310254573145, 5.564079130979073, 6.3274417885617185, 8.503869149165963, 7.961187145166481, 19.74652260274402, 6.8997089871239226, 7.805592166128011, 25.925315706222598, 9.370584080108049, 7.994433865241221, 5.720487917925156, 18.49100847547181, 9.872278758372367, 5.501396834460287, 7.489571029923415, 8.97269346533811, 5.863249040286317, 8.17100918830846, 5.625756783926463, 5.5466667929496385, 7.300866403770182, 23.5985672960016, 24.76480118133184, 7.674154960775825, 6.429953160408058, 5.182741008973189, 7.02579083660848, 10.360094395002092, 11.13357134916731, 7.148780121121538, 5.666553414423433, 10.545134368543362, 5.292088735172087, 8.319698444470879, 8.501107822228247, 6.163710073923589, 7.267550714663209, 5.704102680849777, 8.251170086675751, 7.962178788651746, 13.37978237793791, 6.556980010389988, 8.143979715464022, 8.577758514813134, 13.159257013970334, 12.832409833597287, 9.852925280910961, 5.427278895801989, 6.877849778871718, 5.603219628990793, 6.728473923747976, 5.489942805478705, 10.38051396249909, 16.140004419444168, 6.147748579060878, 5.811002206698798, 5.471965228334871, 5.222886300014522, 6.090784596527341, 9.386269375171823, 11.215392395401851, 25.229003121634815, 6.175011488045744, 6.7438788401957295, 9.599883492042627, 5.550915411164448, 14.048157968158932, 6.383375679075864, 6.12092536801069, 6.43291949901103, 18.04693152503588, 7.113829912659861, 18.289385344706407, 5.924623959226579, 5.03585314447986, 7.47511455931017, 5.51933480393796, 9.450570327391453, 5.541579966235572, 11.919995854488452, 17.91900500343518, 5.958707928685184, 16.991780258690007, 5.435261482805461, 7.620751972733574, 8.427141910809485, 6.138315745009598, 5.298806038398123, 6.330266100038255, 14.174680572017946, 6.4806308166721855, 8.30212314284512, 5.880519387512853, 5.673702660356056, 5.454953015905078, 15.128354644201039, 21.15738980777842, 8.292991034978593, 13.043179927630243, 7.8528843027007165, 7.668259390585395, 9.156117030437388, 5.511643941659166, 7.255043049776661, 6.503249150971436, 5.586496462747694, 7.3324521658587445, 5.845418904918575, 6.488606420799223, 5.963974947707726, 6.500343537509597, 6.557261152518024, 6.265629907524807, 5.792279279332754, 6.174374831872933, 6.025828031916878, 5.207491354410503, 8.121149617185816, 17.79866521132181, 7.812792605197716, 5.768212572540712, 6.624138282704676, 9.46151543412965, 8.449793734570587, 6.446436050798025, 11.644378144414503, 13.651052448263322, 7.715915018398579, 7.631279838340698, 13.200580612481653, 10.454575845769568, 8.24804991722201, 8.12819613365141, 7.797282498580402, 17.79020098015199, 5.6133428016265325, 8.49894161581674, 5.387673412920006, 13.811634201377135, 7.683932479178882, 7.6058581896316575, 7.248469987552442, 10.63328522489382, 7.101661964882181, 8.996502640722014, 6.400601638422638, 6.214029104626402, 7.370695076535367, 7.301721336350794, 5.660077518597924, 7.475564728253191, 8.203572661484394, 7.351317366067503, 6.539888712051317, 5.816434542393435, 11.701167941580216, 11.463263097812693, 6.298929972845325, 6.6767072798891975, 6.2794525036234345, 5.335918011359204, 6.539240399207769, 6.958440327547107, 6.013891763135036, 5.2601387188553135, 10.530372297743392, 7.292608195543725, 7.34118170732892, 5.699144547158944, 12.977589868730716, 5.985438371653933, 14.643755449522017, 6.9581362404519, 15.894289381193872, 6.595873672981108, 16.46561687290631, 7.471674321221658, 15.296307156758797, 5.299411060457479, 6.328033420770425, 6.007647554403485, 6.21370751256512, 7.823642191066021, 5.593974989324161, 6.82058940930317, 5.181739416576356, 5.951946459169159, 5.345414731806327, 18.773558229850718, 5.297397040713437, 5.624049506541796, 5.226899955472484, 9.264439749606213, 14.086112643203515, 6.172491348995687, 5.73425497492564, 6.778110495677651, 24.0842280013812, 7.360667051652696, 8.225983212445163, 11.167838282402316, 8.513699474102005, 14.774524238880275, 8.09521543456862, 8.661611570041135, 8.80140219775558, 6.505054801181458, 6.57815197674906, 6.814213731697756, 8.503220954397042, 5.890047123563718, 14.749523699842559, 5.948723950069979, 23.548869156390083, 9.664772330526512, 5.157749241361892, 18.09612753332693, 17.648480019113563, 5.509903972392378, 26.1545504198129, 27.78613945441422, 22.425313250712584, 5.6433758465628445, 7.660821403127465, 5.721596454615107, 7.5244838883046175, 6.2231127792204886, 5.310226756833943, 8.608265020542069, 7.714839979455932, 6.457070135844833, 5.571337173986046, 5.176775895755063, 13.24122692963204, 17.486192456839408, 6.074258712771156, 7.871487765291256, 15.466097125674347, 6.362951430948234, 5.1854323396100135, 5.477853475329145, 6.6225789461389, 6.08906195853608, 5.873857253428434, 6.904135891143647, 5.9774809882248245, 14.660848372117501, 8.27231345928339, 5.238893791602448, 8.965115070301172, 6.987229491147365, 13.401513283556406, 5.593932182306512, 6.802832676887676, 5.421988370516734, 22.92297900383669, 5.721333126947631, 6.961549551364739, 7.112393704660175, 5.880329541426029, 5.968165973459539, 5.953620383194743, 5.3905888076680535, 8.86518429355188, 5.354287518061396, 7.827962193972241, 5.91211529304367, 16.79996089192216, 15.504995648467158, 9.529936381340063, 5.860226977442199, 5.662671021980284, 5.217638918147351, 8.154701204275066, 6.105091502492421, 18.69061220826338, 7.661191697504246, 18.459243016160244, 15.477490153699275, 6.4822652630976005, 16.851925228781617, 7.952843175064723, 7.0158157667047485, 6.057072245939989, 19.3578265243621, 28.769829378434878, 5.266147625663308, 5.872315866230614, 6.640069840788849, 5.612227234154631, 6.083083318138607, 7.043582790442291, 17.60392193961488, 5.952168320573083, 7.6334299694420205, 7.7904355453990135, 29.077773471639155, 7.843324391692121, 5.48703260251678, 8.228580622454489, 9.709653343324044, 6.40679020139214, 10.408911266225147, 12.695737457644306, 10.286606674858517, 5.815274735583755, 16.2102556003459, 6.296898360531229, 5.245973954923219, 6.522536363264969, 5.145093612184888, 5.023383391900099, 6.818522310564329, 6.015741685570286, 5.175989324708988, 8.293555915426701, 5.155712882305035, 7.09233077590494, 5.762635094298539, 14.905684734925831, 6.682099083919506, 7.652846042267189, 5.843906450859128, 6.336152116764144, 15.608192558200656, 23.133794551165213, 6.283257334373973, 11.152237282783684, 8.465262950420051, 7.595188546399067, 6.638948186492028, 5.312816016193637, 7.017298838884958, 6.297513016587004, 6.484111629755781, 6.2632992586288845, 8.015681281765993, 5.41584413165152, 6.741763736357403, 7.529287468955791, 5.497775459734548, 5.461834262691043, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3142937.846743745, 3184977.70653431, 3287524.907586071, 3299296.7150028055, 3309189.814690914, 3402246.593474914, 3448609.6997304037, 3518344.055639219, 3534552.2507350896, 3576229.5633282736, 3584581.663617451, 3603506.0889923833, 3612892.436358626, 3630051.8567199474, 3695124.837659661, 3733619.477150076, 3769092.4395625186, 3785046.4198665135, 3808222.8298167395, 3841328.463219151, 3883917.174834772, 3933650.6464064596, 3936181.2614590786, 3959232.6477904506, 4000538.857695529, 4038034.3768452257, 4192623.6434383835, 4228053.584098839, 4264034.483123377, 4264104.718559394, 4592333.777535574, 4608244.114666206, 4659830.3616708135, 4699730.078668667, 4828825.997866293, 4957493.778451598, 4957551.232276807, 4960619.732270991, 4985390.267734114, 5010815.021946095, 5019586.828768512, 5022611.8043459775, 5023450.908469683, 5030686.856464089, 5042372.768544831, 5042964.430012111, 5062805.654442905, 5063098.174111363, 5063460.642707304, 5064502.653361073, 5064572.740356697, 5066543.32677548, 5066608.196794897, 5080624.317087903, 5092567.4394757, 5096488.586549023, 5108480.99055624, 5109674.657570635, 5129376.63865272, 5129409.640794375, 5131267.904604976, 5131863.997283049, 5140551.621574642, 5144939.680034213, 5159997.342114474, 5162854.032088927, 5165581.564485306, 5166730.954451361, 5168365.884521766, 5171425.865778303, 5185070.422525894, 5188106.881894356, 5195116.80700895, 5196993.999019268, 5197427.192798729, 5197597.411987143, 5202045.231752582, 5208893.633068789, 5216896.879152193, 5217329.38505753, 5220562.988088475, 5228663.608592753, 5228783.159033618, 5238165.614976551, 5240344.453538038, 5242760.168487935, 5246132.707557129, 5246499.027802918, 5246873.34996907, 5260569.988297395, 5262997.647847476, 5264835.235978874, 5265046.603535494, 5267031.307004983, 5270695.588615444, 5271611.782276398, 5273570.621485573, 5274611.777511624, 5275904.539066194, 5276519.404225819, 5276848.064949115, 5277210.379788473, 5277240.041990714, 5277427.198560319, 5277675.248916501, 5277770.214848336, 5277789.478863407, 5277880.668988609, 5278043.675209101, 5278506.389866163, 5278689.523180769, 5278829.000114598, 5279250.397056696, 5279841.057413813, 5281014.769708213, 5281129.294779697, 5281230.36007732, 5281863.852035072, 5282266.993332358, 5282359.247628187, 5282477.083796505, 5282723.190544402, 5282933.499912972, 5283378.0256895255, 5286710.872828906, 5287509.938347872, 5293039.163685578, 5299295.145261569, 5299964.190065997, 5300137.950950013, 5300658.024984231, 5301763.173010661, 5302731.794477528, 5305289.987312293, 5306967.080915313, 5322764.991362239, 5331410.454814306, 5332150.12837342, 5332172.124699351, 5332500.7256913865, 5332901.79842834, 5333217.204704779, 5334152.24111619, 5337591.951349649, 5338733.688464886, 5339439.692484105, 5341958.945884859, 5345716.214972408, 5346123.394612255, 5346517.5498241335, 5347698.909578909, 5348718.37306011, 5349935.450405395, 5349949.261162895, 5350159.168666254, 5350480.552641341, 5350614.993915621, 5350632.245912839, 5351193.490139289, 5352335.264146391, 5367037.78609918, 5368333.087935077, 5372315.4742008615, 5381533.5997632975, 5384539.939131328, 5390101.351579018, 5390669.089014348, 5391182.668680674, 5391698.089915878, 5391884.250560861, 5391919.882873412, 5393371.8607168915, 5393457.430216692, 5393529.853168239, 5393548.681461589, 5393578.642102353, 5393665.67259349, 5393705.287373377, 5394026.5038981205, 5394189.196086384, 5394324.422401388, 5394326.971795039, 5394391.298006086, 5394490.11163971, 5394631.135779453, 5394800.298099119, 5394922.19614485, 5394933.043172165, 5395026.256925667, 5395142.684110338, 5395169.907215729, 5395193.3848056635, 5395269.676289099, 5395280.137863714, 5395281.829752076, 5395318.923310653, 5395331.324612976, 5395431.820576797, 5395465.426324681, 5395471.068462505, 5395532.310485847, 5395533.32458179, 5395573.854465092, 5395574.497307448, 5395607.2539401045, 5395619.924180672, 5395645.364844889, 5395714.797231226, 5395734.063548833, 5395764.086351104, 5395764.947459811, 5395766.700807793, 5395803.476666171, 5395827.263923241, 5395827.709908551, 5395833.752840843, 5395838.509952489, 5395839.72395165, 5395846.165821814, 5395871.633796462, 5395888.500476062, 5395915.893386997, 5395933.815223377, 5396019.395372362, 5396022.636106996, 5396042.492284781, 5396099.815114072, 5396194.2533449745, 5396215.8677936895, 5396217.03246246, 5396226.843486123, 5396280.70750771, 5396317.851986989, 5396338.871844826, 5396351.155319066, 5396401.490175571, 5396423.890544055, 5396440.380663819, 5396450.437501054, 5396485.913194767, 5396493.808200655, 5396504.768469315, 5396523.068203347, 5396527.15689901, 5396530.977573774, 5396612.568604105, 5396657.641555972, 5396795.699647949, 5396982.988377695, 5397111.328824284, 5397184.120716953, 5397249.867860872, 5397264.217421255, 5397273.656313577, 5397289.852147081, 5397303.818821235, 5397305.577245845, 5397334.116366389, 5397335.582864319, 5397355.423733758, 5397377.258637368, 5397386.36839331, 5397395.934206914, 5397399.440189438, 5397411.295781409, 5397444.419982096, 5397460.287857142, 5397494.244769983, 5397507.326847011, 5397513.193420923, 5397516.33139213, 5397538.76857425, 5397547.525407908, 5397549.098812232, 5397584.716302393, 5397650.604678701, 5397663.37213253, 5397699.505306316, 5397708.555906143, 5397718.492555178, 5397723.382542015, 5397740.994484431, 5397742.770614229, 5397756.91173636, 5397767.651597509, 5397804.035309088, 5397814.611179449, 5397818.017594977, 5397825.697649083, 5397829.9654899, 5397855.578145275, 5397867.999865947, 5397901.939636175, 5397915.614417822, 5397930.245568181, 5397934.018234601, 5397964.610247574, 5398001.129693659, 5398028.327364306, 5398110.43553762, 5398152.109713985, 5398180.091138358, 5398193.256779648, 5398257.732727508, 5398263.065355595, 5398286.084802362, 5398304.029686328, 5398327.192771159, 5398349.799856656, 5398390.360169255, 5398423.046876654, 5398445.991292871, 5398497.714755727, 5398501.464959476, 5398515.449207247, 5398539.371399424, 5398544.698697073, 5398599.052629198, 5398601.526424828, 5398616.748245994, 5398628.372400354, 5398659.367201727, 5398673.608332822, 5398814.499527963, 5398848.66410504, 5398861.409774336, 5398909.709817036, 5398928.47000592, 5398955.314298439, 5399025.1064509405, 5399041.12076974, 5399047.617192258, 5399061.71316735, 5399075.9867732255, 5399086.024621343, 5399103.428098687, 5399103.449994099, 5399106.889877506, 5399142.487616308, 5399152.050520348, 5399215.216278123, 5399283.042365684, 5399305.1731362855, 5399313.5159442555, 5399436.564188446, 5399456.440580242, 5399514.492326463, 5399543.268490048, 5399562.3018868305, 5399581.610430834, 5399812.814826663, 5400618.693185774, 5400682.701343903, 5400705.381352777, 5400718.397612744, 5400862.517627725, 5401011.893590786, 5402029.61034313, 5402269.398303497, 5402486.257469283, 5402618.858023664, 5402913.8972968925, 5403011.801159233, 5403119.926708806, 5403241.088840039, 5404545.969198318, 5404596.49281362, 5404621.337648204, 5404771.626228625, 5405079.903107747, 5405257.550927245, 5405371.410955878, 5405549.832075128, 5405817.463654047, 5405822.129024025, 5405952.965535845, 5405996.873269895, 5406125.067508109, 5406165.060630885, 5406193.993498593, 5406331.634816262, 5406509.709990786, 5406617.666733136, 5406755.438402068, 5406854.011656751, 5406863.13057239, 5406874.291380265, 5407004.559217285, 5407103.222085656, 5407212.720021991, 5407382.683390084, 5407439.870467282, 5407506.498612282, 5407605.707567143, 5407844.0821823375, 5408389.735590527, 5408529.012316327, 5408734.964741689, 5408751.229451915, 5409004.1450922415, 5409842.462969669, 5410075.748273324, 5410488.014371542, 5411346.118723471, 5411923.729753822, 5412504.7832398, 5413397.98868572, 5414286.806293554, 5414661.757142232, 5414679.899922138, 5414802.997160165, 5415318.62156854, 5415624.45082578, 5415721.202077419, 5416169.454260013, 5416234.189411702, 5416500.53421933, 5418528.997061787, 5419358.981372363, 5419493.643354116, 5420792.159328679, 5421452.526527094, 5434977.304726187, 5439668.172696244, 5458076.474674105, 5458654.743831946, 5460383.879396699, 5465266.035248763, 5466439.341485158, 5466562.382204946, 5467137.382381519, 5467326.834963991, 5467544.813823206, 5467659.5777915865, 5467730.946444415, 5467776.427663925, 5468126.0667617805, 5468144.357319447, 5468196.491609229, 5468298.630442111, 5468389.45563451, 5468408.058853655, 5468607.5066337325, 5468831.415806554, 5468880.344656901, 5468913.59054413, 5469038.081581884, 5469084.810246184, 5469332.246052346, 5470006.120827589, 5470489.96507708, 5470905.16378232, 5472520.228926283, 5473029.065682511, 5473245.998680837, 5473251.201760702, 5473404.325918521, 5474343.960695754, 5474742.449995955, 5475651.451146621, 5475820.703789879, 5476400.478273221, 5480955.917140409, 5481072.036140555, 5484350.9518695, 5485927.86581894, 5486769.431046761, 5486843.970741981, 5494144.832774992, 5494451.321031917, 5494688.349295733, 5494825.643520863, 5495101.09913302, 5495212.691751026, 5495438.021137681, 5495545.724017218, 5495580.656815991, 5495607.255521399, 5495911.053555921, 5496288.112080355, 5496507.951375319, 5496639.559544848, 5496682.703325842, 5496728.92352056, 5497071.355916476, 5497808.020067328, 5498674.289148815, 5498739.937588148, 5498796.378054661, 5499206.501251022, 5501724.519809152, 5502561.457286339, 5504677.083810754, 5506030.571571935, 5506136.046952512, 5506161.80454907, 5506278.928846648, 5506442.727396496, 5507238.568477463, 5507545.966328122, 5508109.295091835, 5508166.947618859, 5511557.4713476235, 5516986.331950685, 5517293.603407486, 5517739.272163776, 5518799.561146068, 5532936.401302688, 5538531.797865936, 5539112.097787666, 5540220.51999954, 5540425.0, 5542076.889474477, 5542710.25261953, 5562150.717920542, 5563301.089971486, 5565260.809475797, 5565432.077306939, 5565506.544911146, 5565832.739325565, 5565890.103176878, 5565959.1486342335, 5565959.519339569, 5566199.390250203, 5566244.654675783, 5566664.218350076, 5566972.094453058, 5567712.219156845, 5568843.363726091, 5569692.47540556, 5570051.778663393, 5570424.100633768, 5570903.780418194, 5571964.205157709, 5572770.122153106, 5572837.143048669, 5573271.8735354375, 5573351.869556639, 5573747.78750851, 5573790.671254822, 5573962.394062189, 5573989.430893218, 5574067.259434031, 5574096.558821222, 5574297.733223607, 5574612.91254351, 5575070.776039598, 5575093.339627786, 5575603.599549697, 5575840.055103442, 5575857.864978033, 5576160.219802285, 5576307.051787351, 5576544.728672996, 5576777.072543431, 5577019.021725218, 5577050.497895744, 5577275.056384317, 5577456.32660137, 5577642.3740351815, 5577874.595599369, 5578013.39075761, 5578087.872564001, 5578194.629325106, 5578239.2677682, 5578463.349626943, 5578570.884168064, 5578901.134932447, 5579115.621137598, 5579178.240798487, 5579302.490480723, 5579633.989828444, 5579762.692261237, 5580024.755461862, 5580424.173584384, 5580550.8558202945, 5580556.595466096, 5580570.869131012, 5580655.966845292, 5580910.9375, 5581209.0750076445, 5581505.27454009, 5581652.808765381, 5581683.343053421, 5581897.557897947, 5581899.704475543, 5581912.368913514, 5582077.527779296, 5582185.344298574, 5582423.702880473, 5582445.984192872, 5582456.726289427, 5582493.099204469, 5582503.111245815, 5582733.509044989, 5582933.563786207, 5583024.820752806, 5583112.671722909, 5583692.987178117, 5583893.530334887, 5583984.631214174, 5583995.064440386, 5584051.612308143, 5584077.92068162, 5584426.0148768965, 5584494.868409735, 5584611.070582867, 5584979.78505038, 5585172.727260426, 5585195.158616306, 5585258.578249947, 5585268.018525344, 5585324.927237359, 5585375.87503366, 5585397.025259551, 5585403.709056904, 5585556.474005861, 5585604.994931011, 5585615.159713478, 5585634.003136179, 5585845.86142209, 5585930.967133638, 5586211.301507959, 5586272.126397167, 5586399.731206673, 5586406.372384124, 5586415.917202629, 5586528.206568482, 5586642.029683863, 5586645.676024523, 5586660.8073019935, 5586728.227363406, 5586787.681667851, 5586947.382486991, 5587058.85174566, 5587205.3675212115, 5587220.021863585, 5587351.559181859, 5587357.095126557, 5587379.510074845, 5587386.046016621, 5587421.94486332, 5587439.5610918095, 5587443.724309415, 5587479.088851302, 5587486.093454941, 5587515.548222183, 5587525.4056232525, 5587664.195051745, 5587687.434005662, 5587706.687892086, 5587706.819241255, 5587719.434181196, 5587719.517958592, 5587739.168421731, 5587764.2055442035, 5587793.644895297, 5587858.585146359, 5587886.560082504, 5587961.399897933, 5587966.014477641, 5587968.079446918, 5587980.719644997, 5587981.895982069, 5588003.651846586, 5588017.091899284, 5588018.795976781, 5588027.528432352, 5588042.401094363, 5588048.619023388, 5588070.889670528, 5588082.141919813, 5588104.361899554, 5588108.917948384, 5588114.706885003, 5588123.2123725945, 5588129.897292904, 5588140.901795025, 5588192.828716538, 5588195.000492705, 5588246.652235479, 5588247.066909823, 5588248.063055255, 5588249.168415702, 5588273.060646118, 5588279.13382438, 5588280.312168368, 5588281.35295185, 5588283.72418217, 5588285.529816402, 5588306.282387532, 5588331.312111725, 5588333.197283144, 5588338.197003696, 5588344.27808319, 5588362.458196568, 5588365.557438822, 5588371.206673299, 5588374.12287698, 5588380.119304767, 5588382.532747107, 5588414.5753258495, 5588421.312949385, 5588427.434287205, 5588434.933470765, 5588447.608585549, 5588453.6719724145, 5588459.177665796, 5588490.446952989, 5588494.390431824, 5588506.262304901, 5588506.532512251, 5588527.117211151, 5588539.022170018, 5588559.610480711, 5588574.1847245535, 5588581.275783619, 5588587.564182692, 5588609.430383441, 5588628.205849631, 5588635.171258952, 5588643.650883961, 5588648.738823113, 5588651.92458179, 5588661.983097267, 5588671.179852014, 5588675.309856274, 5588684.020496945, 5588690.901557169, 5588695.28342604, 5588706.917602627, 5588717.016185066, 5588718.409557757, 5588726.193798308, 5588730.963485355, 5588743.887649483, 5588745.486391096, 5588762.9539260585, 5588774.047435425, 5588793.969010388, 5588803.716832602, 5588818.117575669, 5588832.8606662005, 5588833.069176043, 5588833.281934826, 5588847.1228811685, 5588848.920890229, 5588860.720632337, 5588862.458663369, 5588865.654282126, 5588869.610530003, 5588877.592772202, 5588877.965287805, 5588885.198003876, 5588886.965674971, 5588887.512108756, 5588893.143362192, 5588902.203734288, 5588909.551267115, 5588915.410158017, 5588919.862753887, 5588941.109942849, 5588978.227306467, 5588983.866079171, 5588989.808651944, 5589001.9785435125, 5589009.38465894, 5589009.652869312, 5589015.709021776, 5589020.74598691, 5589021.862575587, 5589034.077337857, 5589044.540699929, 5589052.504116365, 5589065.783983848, 5589082.486000568, 5589086.528015874, 5589091.169463475, 5589097.799174428, 5589110.196882767, 5589117.33747117, 5589117.48389785, 5589130.985654325, 5589135.030886125, 5589140.239528402, 5589140.926149271, 5589154.764372565, 5589155.703540628, 5589157.334471296, 5589162.426426533, 5589163.750488959, 5589173.9439247, 5589178.714136902, 5589184.362315737, 5589189.443596044, 5589190.3395735845, 5589194.980715528, 5589195.530231033, 5589198.4447395075, 5589205.149623071, 5589209.033847902, 5589215.549177925, 5589216.762965097, 5589219.737645631, 5589229.254749879, 5589232.12028013, 5589235.019086262, 5589246.115655807, 5589251.195146454, 5589254.527167962, 5589257.0577778425, 5589259.70373712, 5589264.0956147285, 5589273.775815217, 5589278.329570752, 5589278.372094067, 5589279.236600699, 5589282.908879506, 5589288.886241569, 5589289.38729604, 5589289.966325042, 5589303.942339412, 5589305.214515053, 5589305.830989672, 5589309.988411031, 5589310.14976444, 5589318.629703416, 5589329.055138263, 5589336.45133511, 5589345.384207982, 5589347.777519787, 5589384.604366386, 5589388.160538276, 5589388.763622954, 5589407.433482862, 5589412.59007196, 5589415.892142928, 5589416.091800295, 5589416.376619304, 5589444.877057829, 5589445.883371119, 5589448.068943639, 5589453.404355591, 5589461.627108442, 5589464.205388414, 5589465.726585325, 5589466.448578902, 5589468.952929663, 5589470.4919503415, 5589471.2097438155, 5589471.794729383, 5589479.443386753, 5589480.461731552, 5589506.673553725, 5589514.135212977, 5589514.466834456, 5589518.025535, 5589518.633630609, 5589526.47237667, 5589541.031139679, 5589545.2679886175, 5589546.494709245, 5589574.085201922, 5589585.236290234, 5589590.738644531, 5589592.744801332, 5589598.686292421, 5589600.388376213, 5589615.040216522, 5589620.261201636, 5589637.6063841125, 5589643.4340300765, 5589650.369593333, 5589652.795111316, 5589657.512712992, 5589667.935631947, 5589672.950527865, 5589674.86745221, 5589690.957345308, 5589694.885806797, 5589700.518297161, 5589706.406452762, 5589722.105654987, 5589724.776878601, 5589729.330410371, 5589738.107438256, 5589753.687507761, 5589776.86087096, 5589779.493277463, 5589783.576338895, 5589797.358451983, 5589802.593735169, 5589809.529992458, 5589823.303347008, 5589827.247892593, 5589829.818644603, 5589833.534574081, 5589841.466427682, 5589853.494520235, 5589853.938085493, 5589859.38425283, 5589864.840226143, 5589870.978328135, 5589872.302072748, 5589884.299363593, 5589889.035429072, 5589895.087588768, 5589904.220028221, 5589913.526042631, 5589919.839825818, 5589940.2556449445, 5589943.943842132, 5589944.351767911, 5589952.757311451, 5589968.9766047895, 5589974.354653637, 5589996.840429594, 5589999.295680292, 5590003.449432555, 5590011.099293069, 5590016.979694578, 5590021.266863301, 5590022.231490116, 5590022.4563402245, 5590024.681201733, 5590037.914882228, 5590039.105284765, 5590050.225820422, 5590050.606059067, 5590074.284246286, 5590075.549030905, 5590084.117007351, 5590100.161831375, 5590108.173360969, 5590112.657441301, 5590127.76524102, 5590148.571355787, 5590171.84414481, 5590180.112212039, 5590191.498165161, 5590201.144800275, 5590238.758758525, 5590243.853098574, 5590257.8125, 5590260.108455558, 5590289.820965872, 5590318.098581056, 5590420.2796110865, 5590429.639127612, 5590434.0702532325, 5590438.137938327, 5590476.707896283, 5590487.58271279, 5590498.927023751, 5590507.297894011, 5590509.993360071, 5590533.388236898, 5590535.826193196, 5590547.2908484675, 5590608.84287333, 5590676.417740462, 5590678.940003433, 5590757.198325226, 5590765.642479542, 5590792.484802592, 5590833.044013559, 5590850.029580853, 5590864.284946561, 5590886.607921507, 5590941.081354797, 5590947.144463713, 5591000.836715948, 5591017.63805855, 5591059.388173341, 5591082.393324373, 5591135.82554871, 5591155.5310844835, 5591160.9843034865, 5591183.953081736, 5591204.8226081375, 5591381.646425761, 5591402.089448743, 5591542.773768511, 5591591.837616248, 5591859.501057884, 5591929.703137357, 5592022.1982739195, 5592357.790190355, 5592618.092341482, 5592661.625285976, 5593160.525892383, 5593161.173730784, 5593328.1059660725, 5593340.594076203, 5593702.575014885, 5593742.634557653, 5593751.452606569, 5593846.665803071, 5594061.7504441, 5594103.126577775, ...], [5.550149137513182, 6.682743077797609, 10.986266276259265, 9.199684036285849, 16.56011505300236, 10.714442329465026, 6.122532106450931, 7.71765380439396, 7.314936339367837, 8.221986927947304, 26.097462967233575, 14.36139329923641, 43.913631413517024, 5.8360755589398225, 8.202555069577928, 18.6936544115318, 5.628142718150126, 19.573731144420137, 10.294405864482727, 5.30165019978566, 11.107967775838059, 6.352474106650795, 17.390782647788107, 5.286026464978492, 14.214410728771192, 5.614146230745947, 15.789191431161562, 23.543256231848147, 5.948877196374771, 5.166085568666729, 6.028096393050188, 6.126860412963523, 60.432804967804344, 8.504864716187797, 22.573433142885378, 8.30168053193691, 10.648005386304504, 6.652945061856341, 10.611706354074261, 8.86871999892865, 12.88033466929828, 8.805159033704758, 6.389231266506328, 12.949405178016425, 6.956047241028592, 6.839164617890256, 6.028281403662832, 7.053894272797931, 9.093986962124676, 8.05197902729966, 6.182961993694188, 7.014472220495685, 6.549068815073792, 10.20525831261177, 20.60457742290554, 10.457212724434944, 7.05488192162819, 7.483910669862003, 5.401393280286751, 5.473291560920018, 5.493410949460295, 6.258993689540411, 11.221317026654662, 7.842980209433457, 6.328075656628671, 7.967942209436032, 16.746987099261055, 5.449222654813081, 5.545809930959789, 14.139903560440814, 7.150677624169281, 6.1563717428986715, 8.095119531128782, 7.695857186419973, 9.928012662718455, 5.360665259107392, 6.257050134264597, 15.103449333133604, 5.461944783750965, 13.90176027438668, 6.865025371109604, 6.67614908334122, 5.9701627904860395, 7.59961639136751, 5.753045413000343, 6.93298157208349, 9.244216893138882, 5.487686551230572, 6.079043825218957, 7.0387590431645455, 6.928273864620671, 5.880555659610752, 9.111949278199358, 5.099579839289863, 8.438196200553854, 8.790272613859196, 5.475186693195547, 8.787071676867264, 7.55041969438299, 5.749699383720006, 22.86622658567412, 20.93608783973751, 6.0294995462582275, 8.6542434173233, 5.961379824526768, 9.250175904655737, 13.799185002189526, 20.721321446946206, 6.748666440819901, 15.502830517305197, 6.859100249293516, 10.20004132262981, 6.551188327591914, 7.2399566965589415, 8.699670268968179, 6.687556427896809, 5.05306325741216, 6.454597470742152, 42.58021738529299, 8.220350246683806, 6.144040677497334, 8.160162381611299, 5.312803964087623, 6.743840648588441, 7.1045547327430745, 6.579182260811612, 11.289637483287569, 5.392118920821305, 12.08048622910652, 6.325904949667477, 8.4022323995357, 7.310365948925728, 8.597143200154163, 5.667341203601744, 9.242877050732867, 7.977699840653778, 14.613887538904915, 6.789408835258402, 15.987079038433452, 5.222313163219994, 5.721939457065788, 7.609472233791173, 5.652723359003832, 9.139400138876926, 12.842641763193319, 7.297524833967, 10.51726186717284, 12.194762469986603, 14.780522877985824, 7.220068140698886, 5.737475828234791, 5.593525808824911, 5.441241199584197, 7.931034270972629, 5.284756019680021, 12.81618348430253, 8.849289804579003, 8.008080438521597, 8.153778423032051, 7.959940543387883, 7.710099710853094, 16.106682462848504, 6.248332147717151, 5.4294480657805595, 7.372678102339308, 8.178101725390135, 9.635511171040346, 10.910110575925604, 5.062629718355612, 5.698883875138219, 11.790452037427118, 7.117702117275626, 5.062010008954187, 6.28835874157497, 7.187093224729613, 28.08531867091996, 5.943560997645266, 9.895958554301705, 5.396238453540686, 5.951124076690314, 6.400205433945439, 9.703248684413241, 6.1609984799771915, 6.204446925562883, 5.200521657678214, 6.305610304377398, 7.723672328886112, 5.349888599201587, 7.043377258710288, 5.483493115371229, 8.083285967627573, 34.952189678363084, 5.667429868363072, 8.540017230674414, 6.581982186766837, 21.798398085130206, 5.945929718356207, 6.883027205764518, 9.16887798106159, 5.756620039350859, 10.424299205271973, 6.570476821522324, 16.81093568578746, 8.037506556828992, 6.199116693342141, 5.328789181203383, 6.093559592331691, 5.65602685468489, 5.448555631706024, 15.033204688368247, 5.76549316428536, 27.742201650094017, 5.633799978636925, 5.313256853638134, 10.535471803961297, 5.321045179809725, 6.199823958328553, 12.347259321497004, 6.181572298110977, 6.23719754818636, 5.323025092445191, 7.193836059070235, 6.981687784765436, 11.636608217949028, 6.00854612787603, 5.966394903604451, 5.603897039960844, 8.571986351262712, 19.148712697456528, 10.893722382447365, 6.117814982572648, 6.405285466780651, 8.672279477805409, 9.175233689347426, 5.784454385935963, 6.258103738641302, 5.48155358913141, 16.715707460821843, 11.888117472010338, 14.39730539447673, 5.204907233576751, 7.632787799621514, 9.0375143149754, 5.4216941324065, 5.599148575673212, 6.777280572268444, 6.729852132435468, 5.048129016173596, 15.65710660945039, 16.677163108502494, 6.062049257504863, 5.9279800731582, 9.465925696499857, 8.405781419898856, 12.636117504813031, 7.316616831058425, 5.18661443127448, 9.121886789474663, 6.223408867981343, 8.718478337063628, 6.910926316454124, 11.875368335693755, 6.155228867808452, 5.892092739998767, 11.738053213984111, 18.30510243910463, 7.384038576484181, 12.00044670797862, 5.676531502877878, 8.69079277930964, 12.446205029958186, 5.792547728981837, 12.323312709103666, 5.365104886598385, 9.637689482676313, 7.837631284355826, 6.384054758032389, 5.67598145697133, 6.610302817972092, 24.309983342448433, 17.247410489380044, 5.730683530149389, 5.1431631131458735, 6.903221920618165, 5.4165174504519085, 6.9599519710261255, 17.546521342676574, 5.225098953530798, 8.693511403536482, 7.7069746003363315, 5.226722652394833, 5.6606246490006145, 5.075819160662257, 9.322471345526727, 5.743219959974325, 5.122949964107952, 5.361047996905965, 5.902580008100408, 6.519288506892398, 6.995469765533074, 8.598827434784122, 15.267914503484425, 6.206831795366331, 7.1006386044682674, 5.1787408513444495, 8.366040245081098, 7.381468777260931, 8.650588704869659, 8.183499973235064, 5.794641517652266, 10.56750219393205, 7.868694865717634, 7.361200512244479, 8.235661123212566, 14.31128764183168, 6.826783711345732, 7.986634502404028, 8.641058733291601, 8.267591860749757, 8.067193003918781, 7.695238095175726, 9.324817987467029, 5.826729496866627, 5.35712342852395, 6.111985474774007, 6.861603207107975, 16.392249627966535, 9.641219188177875, 6.895444332030595, 5.402559203473732, 8.567385662416793, 18.79950973827813, 6.37043835024973, 8.887824396210034, 9.406171866279859, 8.453639716945338, 6.830171213999461, 7.300467655079292, 6.305875438500547, 5.983062726001503, 5.591825873962978, 7.183216395984594, 8.561246887000637, 5.323535660654198, 6.15578754012044, 9.49792164060235, 7.7664661798408385, 8.954944448647085, 5.799465580829691, 5.730087294924301, 5.3009121093183005, 7.1065965844996715, 5.805801192128353, 6.0021972947876145, 8.108623907541338, 7.609625797510124, 10.295938959498878, 9.267003813402248, 5.080878234928531, 5.838040767110247, 9.424444655848271, 25.438745247962935, 5.66368003040292, 8.09258354674679, 5.640230819572267, 9.956126499598819, 7.024484360359399, 13.224899256973783, 9.129553234617415, 16.818451832577438, 24.254328713096683, 8.967605207037403, 13.206247817815253, 5.299694365714511, 5.833018037797404, 10.887278195966717, 5.613948433885296, 5.711067915695346, 20.874149165180427, 6.298460769274011, 5.552052984451596, 16.39310552516085, 17.148198678206498, 5.656981912921494, 12.868940762605977, 7.8484218570076445, 6.946854693009528, 6.738163337678132, 5.6194378253727, 5.25134526874677, 5.393561113904208, 7.351375724250576, 9.550854505478688, 6.985807234234863, 11.689911834072701, 5.31234141711882, 7.959126387843249, 6.344698681517675, 5.7897417947400465, 8.019160859778331, 16.106844879141963, 5.314774364181019, 6.143274137841987, 7.923413615847166, 7.200455575568737, 5.465890857548111, 10.491862238634933, 5.663986642363669, 19.370227350952348, 5.135068148731241, 10.933596254475738, 5.804538161391374, 17.84633368216928, 7.960132351226732, 18.535511994647372, 5.335602216930991, 12.079787916468321, 10.19648630364892, 13.627132218725716, 6.077078754943028, 7.11406591210774, 7.400231175833868, 6.168841924789452, 20.755123993931377, 5.931793436722584, 15.160657271092555, 6.668438716742928, 8.516130897485302, 6.303101552713251, 9.233748082486425, 10.948707181713026, 5.408993234834623, 13.329671447510373, 5.957262567053254, 6.704380363859683, 9.219935906674962, 6.668413850288249, 5.746531235922244, 6.049117186010898, 5.1346472450836345, 21.01249680259867, 7.694837946993972, 6.440189625289126, 8.37624901560376, 7.305621516150079, 5.677365711789984, 5.421182728016246, 23.969692832968335, 8.008144177890163, 6.737989419322612, 19.455426080799455, 6.564437716155062, 5.529038146424199, 5.3752229390077195, 12.401404941479376, 13.724346921617796, 5.908523457875741, 7.177960936947916, 5.47314709290738, 5.929766512822519, 5.213506748668253, 5.176651959809324, 5.789755288020722, 6.287774269455121, 6.395448307379799, 5.52063251098431, 7.869648180682384, 5.170534601413486, 10.45242472318186, 7.518176783271395, 7.9422942293071594, 5.565149596401006, 5.900043591709909, 6.802401641012439, 8.582831896610491, 7.2339984615806845, 6.02851164854308, 5.892325055720715, 7.64575948612899, 6.8921820066215425, 9.45165711737527, 5.078047749872097, 16.677926918035574, 5.659802331767965, 13.274082865588834, 6.80566557026089, 6.946339454763305, 6.633614578728021, 16.82082331000192, 11.544532024376315, 8.04798214333654, 5.41872382860393, 6.335388304090153, 7.9576839276752525, 6.099555755268384, 6.949899495948081, 8.762925509160896, 8.594326643214616, 5.89750753763082, 7.304627260145182, 5.529214873523959, 7.518721345825532, 5.910236524172311, 9.688797619168243, 14.410731966588518, 8.400652893484882, 5.381957952809213, 9.756988234190503, 7.273322240746639, 9.01298958742082, 6.805651562922195, 32.62384721328776, 9.624078156497545, 6.019660273590737, 18.629467655857514, 8.051562862505588, 6.467207854401845, 10.14485945442311, 17.75905554349758, 5.5295396631867595, 13.266672391283802, 9.147061942384793, 5.824737914016837, 7.98846564539477, 6.18751688616084, 6.104457601575328, 7.180359352871606, 20.139461398810898, 6.688764736810344, 7.199247291619757, 16.855349459215276, 8.67141747565923, 12.334158959035092, 25.41076300190582, 10.84266969419826, 5.329837260995061, 6.267013348116653, 6.536326961654747, 5.666602966190744, 5.343509168038023, 10.966060488606992, 7.742144660541803, 6.0956118042752445, 6.438643923613411, 12.79935904756822, 5.553443270866258, 5.980816159605653, 9.006949373460753, 17.122198764340908, 6.979290034694569, 8.314524926428698, 6.016514913989056, 6.0124099177923735, 5.087136156339798, 9.80342835329593, 7.194760080641023, 7.25878725072111, 18.82507496827843, 6.778896406000544, 18.471908143902496, 9.01136820462255, 32.825954438530715, 16.581090805412853, 6.385077322728147, 7.679206132332459, 21.612394701232205, 12.156640430968338, 5.6800762874911594, 7.120436719096804, 12.895393372782797, 7.977303773874361, 6.048940168767285, 15.728714754155735, 5.389207137647246, 10.042396865223202, 7.945171602052251, 6.834493365791316, 9.85102852267198, 5.09292369513851, 36.182894700491076, 10.689084173328496, 5.992212613153683, 16.272544032298445, 14.871371947319442, 7.8704315508619, 5.387295321905582, 9.222968352773163, 8.87278451478087, 5.27310874164516, 8.432084342495262, 12.36959447480118, 7.252547008289239, 20.110093559802568, 5.1302083468342, 6.602120685858338, 5.8717420726390195, 10.858632521797553, 14.356375066297247, 6.012209145497325, 6.2398385298156605, 5.472872057714562, 16.069133857063207, 20.01961175470288, 10.82268759482781, 5.893093013412736, 5.679066047622204, 8.358230333723732, 5.4022164311698795, 8.795309630287223, 11.716263793260337, 5.223379974236849, 5.3174663163932685, 5.933093865930629, 6.633604833825921, 5.952598728539254, 8.621633859667188, 9.528278206508212, 16.258847951287006, 5.899884551174695, 7.474059175707672, 9.843094897572822, 13.962849302051536, 16.537769817941236, 6.527235522914915, 6.711004852314778, 5.043612378620336, 5.253397709502056, 11.25764293814953, 9.201432890456314, 6.5456278782161945, 15.1358265100542, 7.640685169864897, 5.296732028866968, 5.177351570394752, 21.26422046063994, 9.981200108101175, 5.51913936289748, 14.928877287291451, 7.362866789926945, 10.861260339772844, 6.099457159166862, 5.819167701870775, 5.216313392319877, 6.085431690357069, 8.871788829377023, 6.287105295986879, 11.009781973556263, 6.847281189889739, 15.472007352202176, 6.081263168676195, 5.978469086820001, 6.580187359579814, 5.181607996297241, 7.339100666470949, 11.297406301366815, 11.358905731371674, 5.528001129847571, 6.172310254573145, 5.564079130979073, 6.3274417885617185, 8.503869149165963, 7.961187145166481, 19.74652260274402, 6.8997089871239226, 7.805592166128011, 25.925315706222598, 9.370584080108049, 7.994433865241221, 5.720487917925156, 18.49100847547181, 9.872278758372367, 5.501396834460287, 7.489571029923415, 8.97269346533811, 5.863249040286317, 8.17100918830846, 5.625756783926463, 5.5466667929496385, 7.300866403770182, 23.5985672960016, 24.76480118133184, 7.674154960775825, 6.429953160408058, 5.182741008973189, 7.02579083660848, 10.360094395002092, 11.13357134916731, 7.148780121121538, 5.666553414423433, 10.545134368543362, 5.292088735172087, 8.319698444470879, 8.501107822228247, 6.163710073923589, 7.267550714663209, 5.704102680849777, 8.251170086675751, 7.962178788651746, 13.37978237793791, 6.556980010389988, 8.143979715464022, 8.577758514813134, 13.159257013970334, 12.832409833597287, 9.852925280910961, 5.427278895801989, 6.877849778871718, 5.603219628990793, 6.728473923747976, 5.489942805478705, 10.38051396249909, 16.140004419444168, 6.147748579060878, 5.811002206698798, 5.471965228334871, 5.222886300014522, 6.090784596527341, 9.386269375171823, 11.215392395401851, 25.229003121634815, 6.175011488045744, 6.7438788401957295, 9.599883492042627, 5.550915411164448, 14.048157968158932, 6.383375679075864, 6.12092536801069, 6.43291949901103, 18.04693152503588, 7.113829912659861, 18.289385344706407, 5.924623959226579, 5.03585314447986, 7.47511455931017, 5.51933480393796, 9.450570327391453, 5.541579966235572, 11.919995854488452, 17.91900500343518, 5.958707928685184, 16.991780258690007, 5.435261482805461, 7.620751972733574, 8.427141910809485, 6.138315745009598, 5.298806038398123, 6.330266100038255, 14.174680572017946, 6.4806308166721855, 8.30212314284512, 5.880519387512853, 5.673702660356056, 5.454953015905078, 15.128354644201039, 21.15738980777842, 8.292991034978593, 13.043179927630243, 7.8528843027007165, 7.668259390585395, 9.156117030437388, 5.511643941659166, 7.255043049776661, 6.503249150971436, 5.586496462747694, 7.3324521658587445, 5.845418904918575, 6.488606420799223, 5.963974947707726, 6.500343537509597, 6.557261152518024, 6.265629907524807, 5.792279279332754, 6.174374831872933, 6.025828031916878, 5.207491354410503, 8.121149617185816, 17.79866521132181, 7.812792605197716, 5.768212572540712, 6.624138282704676, 9.46151543412965, 8.449793734570587, 6.446436050798025, 11.644378144414503, 13.651052448263322, 7.715915018398579, 7.631279838340698, 13.200580612481653, 10.454575845769568, 8.24804991722201, 8.12819613365141, 7.797282498580402, 17.79020098015199, 5.6133428016265325, 8.49894161581674, 5.387673412920006, 13.811634201377135, 7.683932479178882, 7.6058581896316575, 7.248469987552442, 10.63328522489382, 7.101661964882181, 8.996502640722014, 6.400601638422638, 6.214029104626402, 7.370695076535367, 7.301721336350794, 5.660077518597924, 7.475564728253191, 8.203572661484394, 7.351317366067503, 6.539888712051317, 5.816434542393435, 11.701167941580216, 11.463263097812693, 6.298929972845325, 6.6767072798891975, 6.2794525036234345, 5.335918011359204, 6.539240399207769, 6.958440327547107, 6.013891763135036, 5.2601387188553135, 10.530372297743392, 7.292608195543725, 7.34118170732892, 5.699144547158944, 12.977589868730716, 5.985438371653933, 14.643755449522017, 6.9581362404519, 15.894289381193872, 6.595873672981108, 16.46561687290631, 7.471674321221658, 15.296307156758797, 5.299411060457479, 6.328033420770425, 6.007647554403485, 6.21370751256512, 7.823642191066021, 5.593974989324161, 6.82058940930317, 5.181739416576356, 5.951946459169159, 5.345414731806327, 18.773558229850718, 5.297397040713437, 5.624049506541796, 5.226899955472484, 9.264439749606213, 14.086112643203515, 6.172491348995687, 5.73425497492564, 6.778110495677651, 24.0842280013812, 7.360667051652696, 8.225983212445163, 11.167838282402316, 8.513699474102005, 14.774524238880275, 8.09521543456862, 8.661611570041135, 8.80140219775558, 6.505054801181458, 6.57815197674906, 6.814213731697756, 8.503220954397042, 5.890047123563718, 14.749523699842559, 5.948723950069979, 23.548869156390083, 9.664772330526512, 5.157749241361892, 18.09612753332693, 17.648480019113563, 5.509903972392378, 26.1545504198129, 27.78613945441422, 22.425313250712584, 5.6433758465628445, 7.660821403127465, 5.721596454615107, 7.5244838883046175, 6.2231127792204886, 5.310226756833943, 8.608265020542069, 7.714839979455932, 6.457070135844833, 5.571337173986046, 5.176775895755063, 13.24122692963204, 17.486192456839408, 6.074258712771156, 7.871487765291256, 15.466097125674347, 6.362951430948234, 5.1854323396100135, 5.477853475329145, 6.6225789461389, 6.08906195853608, 5.873857253428434, 6.904135891143647, 5.9774809882248245, 14.660848372117501, 8.27231345928339, 5.238893791602448, 8.965115070301172, 6.987229491147365, 13.401513283556406, 5.593932182306512, 6.802832676887676, 5.421988370516734, 22.92297900383669, 5.721333126947631, 6.961549551364739, 7.112393704660175, 5.880329541426029, 5.968165973459539, 5.953620383194743, 5.3905888076680535, 8.86518429355188, 5.354287518061396, 7.827962193972241, 5.91211529304367, 16.79996089192216, 15.504995648467158, 9.529936381340063, 5.860226977442199, 5.662671021980284, 5.217638918147351, 8.154701204275066, 6.105091502492421, 18.69061220826338, 7.661191697504246, 18.459243016160244, 15.477490153699275, 6.4822652630976005, 16.851925228781617, 7.952843175064723, 7.0158157667047485, 6.057072245939989, 19.3578265243621, 28.769829378434878, 5.266147625663308, 5.872315866230614, 6.640069840788849, 5.612227234154631, 6.083083318138607, 7.043582790442291, 17.60392193961488, 5.952168320573083, 7.6334299694420205, 7.7904355453990135, 29.077773471639155, 7.843324391692121, 5.48703260251678, 8.228580622454489, 9.709653343324044, 6.40679020139214, 10.408911266225147, 12.695737457644306, 10.286606674858517, 5.815274735583755, 16.2102556003459, 6.296898360531229, 5.245973954923219, 6.522536363264969, 5.145093612184888, 5.023383391900099, 6.818522310564329, 6.015741685570286, 5.175989324708988, 8.293555915426701, 5.155712882305035, 7.09233077590494, 5.762635094298539, 14.905684734925831, 6.682099083919506, 7.652846042267189, 5.843906450859128, 6.336152116764144, 15.608192558200656, 23.133794551165213, 6.283257334373973, 11.152237282783684, 8.465262950420051, 7.595188546399067, 6.638948186492028, 5.312816016193637, 7.017298838884958, 6.297513016587004, 6.484111629755781, 6.2632992586288845, 8.015681281765993, 5.41584413165152, 6.741763736357403, 7.529287468955791, 5.497775459734548, 5.461834262691043, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([3142937.846743745, 3184977.70653431, 3287524.907586071, 3299296.7150028055, 3309189.814690914, 3402246.593474914, 3448609.6997304037, 3518344.055639219, 3534552.2507350896, 3576229.5633282736, 3584581.663617451, 3603506.0889923833, 3612892.436358626, 3630051.8567199474, 3695124.837659661, 3733619.477150076, 3769092.4395625186, 3785046.4198665135, 3808222.8298167395, 3841328.463219151, 3883917.174834772, 3933650.6464064596, 3936181.2614590786, 3959232.6477904506, 4000538.857695529, 4038034.3768452257, 4192623.6434383835, 4228053.584098839, 4264034.483123377, 4264104.718559394, 4592333.777535574, 4608244.114666206, 4659830.3616708135, 4699730.078668667, 4828825.997866293, 4957493.778451598, 4957551.232276807, 4960619.732270991, 4985390.267734114, 5010815.021946095, 5019586.828768512, 5022611.8043459775, 5023450.908469683, 5030686.856464089, 5042372.768544831, 5042964.430012111, 5062805.654442905, 5063098.174111363, 5063460.642707304, 5064502.653361073, 5064572.740356697, 5066543.32677548, 5066608.196794897, 5080624.317087903, 5092567.4394757, 5096488.586549023, 5108480.99055624, 5109674.657570635, 5129376.63865272, 5129409.640794375, 5131267.904604976, 5131863.997283049, 5140551.621574642, 5144939.680034213, 5159997.342114474, 5162854.032088927, 5165581.564485306, 5166730.954451361, 5168365.884521766, 5171425.865778303, 5185070.422525894, 5188106.881894356, 5195116.80700895, 5196993.999019268, 5197427.192798729, 5197597.411987143, 5202045.231752582, 5208893.633068789, 5216896.879152193, 5217329.38505753, 5220562.988088475, 5228663.608592753, 5228783.159033618, 5238165.614976551, 5240344.453538038, 5242760.168487935, 5246132.707557129, 5246499.027802918, 5246873.34996907, 5260569.988297395, 5262997.647847476, 5264835.235978874, 5265046.603535494, 5267031.307004983, 5270695.588615444, 5271611.782276398, 5273570.621485573, 5274611.777511624, 5275904.539066194, 5276519.404225819, 5276848.064949115, 5277210.379788473, 5277240.041990714, 5277427.198560319, 5277675.248916501, 5277770.214848336, 5277789.478863407, 5277880.668988609, 5278043.675209101, 5278506.389866163, 5278689.523180769, 5278829.000114598, 5279250.397056696, 5279841.057413813, 5281014.769708213, 5281129.294779697, 5281230.36007732, 5281863.852035072, 5282266.993332358, 5282359.247628187, 5282477.083796505, 5282723.190544402, 5282933.499912972, 5283378.0256895255, 5286710.872828906, 5287509.938347872, 5293039.163685578, 5299295.145261569, 5299964.190065997, 5300137.950950013, 5300658.024984231, 5301763.173010661, 5302731.794477528, 5305289.987312293, 5306967.080915313, 5322764.991362239, 5331410.454814306, 5332150.12837342, 5332172.124699351, 5332500.7256913865, 5332901.79842834, 5333217.204704779, 5334152.24111619, 5337591.951349649, 5338733.688464886, 5339439.692484105, 5341958.945884859, 5345716.214972408, 5346123.394612255, 5346517.5498241335, 5347698.909578909, 5348718.37306011, 5349935.450405395, 5349949.261162895, 5350159.168666254, 5350480.552641341, 5350614.993915621, 5350632.245912839, 5351193.490139289, 5352335.264146391, 5367037.78609918, 5368333.087935077, 5372315.4742008615, 5381533.5997632975, 5384539.939131328, 5390101.351579018, 5390669.089014348, 5391182.668680674, 5391698.089915878, 5391884.250560861, 5391919.882873412, 5393371.8607168915, 5393457.430216692, 5393529.853168239, 5393548.681461589, 5393578.642102353, 5393665.67259349, 5393705.287373377, 5394026.5038981205, 5394189.196086384, 5394324.422401388, 5394326.971795039, 5394391.298006086, 5394490.11163971, 5394631.135779453, 5394800.298099119, 5394922.19614485, 5394933.043172165, 5395026.256925667, 5395142.684110338, 5395169.907215729, 5395193.3848056635, 5395269.676289099, 5395280.137863714, 5395281.829752076, 5395318.923310653, 5395331.324612976, 5395431.820576797, 5395465.426324681, 5395471.068462505, 5395532.310485847, 5395533.32458179, 5395573.854465092, 5395574.497307448, 5395607.2539401045, 5395619.924180672, 5395645.364844889, 5395714.797231226, 5395734.063548833, 5395764.086351104, 5395764.947459811, 5395766.700807793, 5395803.476666171, 5395827.263923241, 5395827.709908551, 5395833.752840843, 5395838.509952489, 5395839.72395165, 5395846.165821814, 5395871.633796462, 5395888.500476062, 5395915.893386997, 5395933.815223377, 5396019.395372362, 5396022.636106996, 5396042.492284781, 5396099.815114072, 5396194.2533449745, 5396215.8677936895, 5396217.03246246, 5396226.843486123, 5396280.70750771, 5396317.851986989, 5396338.871844826, 5396351.155319066, 5396401.490175571, 5396423.890544055, 5396440.380663819, 5396450.437501054, 5396485.913194767, 5396493.808200655, 5396504.768469315, 5396523.068203347, 5396527.15689901, 5396530.977573774, 5396612.568604105, 5396657.641555972, 5396795.699647949, 5396982.988377695, 5397111.328824284, 5397184.120716953, 5397249.867860872, 5397264.217421255, 5397273.656313577, 5397289.852147081, 5397303.818821235, 5397305.577245845, 5397334.116366389, 5397335.582864319, 5397355.423733758, 5397377.258637368, 5397386.36839331, 5397395.934206914, 5397399.440189438, 5397411.295781409, 5397444.419982096, 5397460.287857142, 5397494.244769983, 5397507.326847011, 5397513.193420923, 5397516.33139213, 5397538.76857425, 5397547.525407908, 5397549.098812232, 5397584.716302393, 5397650.604678701, 5397663.37213253, 5397699.505306316, 5397708.555906143, 5397718.492555178, 5397723.382542015, 5397740.994484431, 5397742.770614229, 5397756.91173636, 5397767.651597509, 5397804.035309088, 5397814.611179449, 5397818.017594977, 5397825.697649083, 5397829.9654899, 5397855.578145275, 5397867.999865947, 5397901.939636175, 5397915.614417822, 5397930.245568181, 5397934.018234601, 5397964.610247574, 5398001.129693659, 5398028.327364306, 5398110.43553762, 5398152.109713985, 5398180.091138358, 5398193.256779648, 5398257.732727508, 5398263.065355595, 5398286.084802362, 5398304.029686328, 5398327.192771159, 5398349.799856656, 5398390.360169255, 5398423.046876654, 5398445.991292871, 5398497.714755727, 5398501.464959476, 5398515.449207247, 5398539.371399424, 5398544.698697073, 5398599.052629198, 5398601.526424828, 5398616.748245994, 5398628.372400354, 5398659.367201727, 5398673.608332822, 5398814.499527963, 5398848.66410504, 5398861.409774336, 5398909.709817036, 5398928.47000592, 5398955.314298439, 5399025.1064509405, 5399041.12076974, 5399047.617192258, 5399061.71316735, 5399075.9867732255, 5399086.024621343, 5399103.428098687, 5399103.449994099, 5399106.889877506, 5399142.487616308, 5399152.050520348, 5399215.216278123, 5399283.042365684, 5399305.1731362855, 5399313.5159442555, 5399436.564188446, 5399456.440580242, 5399514.492326463, 5399543.268490048, 5399562.3018868305, 5399581.610430834, 5399812.814826663, 5400618.693185774, 5400682.701343903, 5400705.381352777, 5400718.397612744, 5400862.517627725, 5401011.893590786, 5402029.61034313, 5402269.398303497, 5402486.257469283, 5402618.858023664, 5402913.8972968925, 5403011.801159233, 5403119.926708806, 5403241.088840039, 5404545.969198318, 5404596.49281362, 5404621.337648204, 5404771.626228625, 5405079.903107747, 5405257.550927245, 5405371.410955878, 5405549.832075128, 5405817.463654047, 5405822.129024025, 5405952.965535845, 5405996.873269895, 5406125.067508109, 5406165.060630885, 5406193.993498593, 5406331.634816262, 5406509.709990786, 5406617.666733136, 5406755.438402068, 5406854.011656751, 5406863.13057239, 5406874.291380265, 5407004.559217285, 5407103.222085656, 5407212.720021991, 5407382.683390084, 5407439.870467282, 5407506.498612282, 5407605.707567143, 5407844.0821823375, 5408389.735590527, 5408529.012316327, 5408734.964741689, 5408751.229451915, 5409004.1450922415, 5409842.462969669, 5410075.748273324, 5410488.014371542, 5411346.118723471, 5411923.729753822, 5412504.7832398, 5413397.98868572, 5414286.806293554, 5414661.757142232, 5414679.899922138, 5414802.997160165, 5415318.62156854, 5415624.45082578, 5415721.202077419, 5416169.454260013, 5416234.189411702, 5416500.53421933, 5418528.997061787, 5419358.981372363, 5419493.643354116, 5420792.159328679, 5421452.526527094, 5434977.304726187, 5439668.172696244, 5458076.474674105, 5458654.743831946, 5460383.879396699, 5465266.035248763, 5466439.341485158, 5466562.382204946, 5467137.382381519, 5467326.834963991, 5467544.813823206, 5467659.5777915865, 5467730.946444415, 5467776.427663925, 5468126.0667617805, 5468144.357319447, 5468196.491609229, 5468298.630442111, 5468389.45563451, 5468408.058853655, 5468607.5066337325, 5468831.415806554, 5468880.344656901, 5468913.59054413, 5469038.081581884, 5469084.810246184, 5469332.246052346, 5470006.120827589, 5470489.96507708, 5470905.16378232, 5472520.228926283, 5473029.065682511, 5473245.998680837, 5473251.201760702, 5473404.325918521, 5474343.960695754, 5474742.449995955, 5475651.451146621, 5475820.703789879, 5476400.478273221, 5480955.917140409, 5481072.036140555, 5484350.9518695, 5485927.86581894, 5486769.431046761, 5486843.970741981, 5494144.832774992, 5494451.321031917, 5494688.349295733, 5494825.643520863, 5495101.09913302, 5495212.691751026, 5495438.021137681, 5495545.724017218, 5495580.656815991, 5495607.255521399, 5495911.053555921, 5496288.112080355, 5496507.951375319, 5496639.559544848, 5496682.703325842, 5496728.92352056, 5497071.355916476, 5497808.020067328, 5498674.289148815, 5498739.937588148, 5498796.378054661, 5499206.501251022, 5501724.519809152, 5502561.457286339, 5504677.083810754, 5506030.571571935, 5506136.046952512, 5506161.80454907, 5506278.928846648, 5506442.727396496, 5507238.568477463, 5507545.966328122, 5508109.295091835, 5508166.947618859, 5511557.4713476235, 5516986.331950685, 5517293.603407486, 5517739.272163776, 5518799.561146068, 5532936.401302688, 5538531.797865936, 5539112.097787666, 5540220.51999954, 5540425.0, 5542076.889474477, 5542710.25261953, 5562150.717920542, 5563301.089971486, 5565260.809475797, 5565432.077306939, 5565506.544911146, 5565832.739325565, 5565890.103176878, 5565959.1486342335, 5565959.519339569, 5566199.390250203, 5566244.654675783, 5566664.218350076, 5566972.094453058, 5567712.219156845, 5568843.363726091, 5569692.47540556, 5570051.778663393, 5570424.100633768, 5570903.780418194, 5571964.205157709, 5572770.122153106, 5572837.143048669, 5573271.8735354375, 5573351.869556639, 5573747.78750851, 5573790.671254822, 5573962.394062189, 5573989.430893218, 5574067.259434031, 5574096.558821222, 5574297.733223607, 5574612.91254351, 5575070.776039598, 5575093.339627786, 5575603.599549697, 5575840.055103442, 5575857.864978033, 5576160.219802285, 5576307.051787351, 5576544.728672996, 5576777.072543431, 5577019.021725218, 5577050.497895744, 5577275.056384317, 5577456.32660137, 5577642.3740351815, 5577874.595599369, 5578013.39075761, 5578087.872564001, 5578194.629325106, 5578239.2677682, 5578463.349626943, 5578570.884168064, 5578901.134932447, 5579115.621137598, 5579178.240798487, 5579302.490480723, 5579633.989828444, 5579762.692261237, 5580024.755461862, 5580424.173584384, 5580550.8558202945, 5580556.595466096, 5580570.869131012, 5580655.966845292, 5580910.9375, 5581209.0750076445, 5581505.27454009, 5581652.808765381, 5581683.343053421, 5581897.557897947, 5581899.704475543, 5581912.368913514, 5582077.527779296, 5582185.344298574, 5582423.702880473, 5582445.984192872, 5582456.726289427, 5582493.099204469, 5582503.111245815, 5582733.509044989, 5582933.563786207, 5583024.820752806, 5583112.671722909, 5583692.987178117, 5583893.530334887, 5583984.631214174, 5583995.064440386, 5584051.612308143, 5584077.92068162, 5584426.0148768965, 5584494.868409735, 5584611.070582867, 5584979.78505038, 5585172.727260426, 5585195.158616306, 5585258.578249947, 5585268.018525344, 5585324.927237359, 5585375.87503366, 5585397.025259551, 5585403.709056904, 5585556.474005861, 5585604.994931011, 5585615.159713478, 5585634.003136179, 5585845.86142209, 5585930.967133638, 5586211.301507959, 5586272.126397167, 5586399.731206673, 5586406.372384124, 5586415.917202629, 5586528.206568482, 5586642.029683863, 5586645.676024523, 5586660.8073019935, 5586728.227363406, 5586787.681667851, 5586947.382486991, 5587058.85174566, 5587205.3675212115, 5587220.021863585, 5587351.559181859, 5587357.095126557, 5587379.510074845, 5587386.046016621, 5587421.94486332, 5587439.5610918095, 5587443.724309415, 5587479.088851302, 5587486.093454941, 5587515.548222183, 5587525.4056232525, 5587664.195051745, 5587687.434005662, 5587706.687892086, 5587706.819241255, 5587719.434181196, 5587719.517958592, 5587739.168421731, 5587764.2055442035, 5587793.644895297, 5587858.585146359, 5587886.560082504, 5587961.399897933, 5587966.014477641, 5587968.079446918, 5587980.719644997, 5587981.895982069, 5588003.651846586, 5588017.091899284, 5588018.795976781, 5588027.528432352, 5588042.401094363, 5588048.619023388, 5588070.889670528, 5588082.141919813, 5588104.361899554, 5588108.917948384, 5588114.706885003, 5588123.2123725945, 5588129.897292904, 5588140.901795025, 5588192.828716538, 5588195.000492705, 5588246.652235479, 5588247.066909823, 5588248.063055255, 5588249.168415702, 5588273.060646118, 5588279.13382438, 5588280.312168368, 5588281.35295185, 5588283.72418217, 5588285.529816402, 5588306.282387532, 5588331.312111725, 5588333.197283144, 5588338.197003696, 5588344.27808319, 5588362.458196568, 5588365.557438822, 5588371.206673299, 5588374.12287698, 5588380.119304767, 5588382.532747107, 5588414.5753258495, 5588421.312949385, 5588427.434287205, 5588434.933470765, 5588447.608585549, 5588453.6719724145, 5588459.177665796, 5588490.446952989, 5588494.390431824, 5588506.262304901, 5588506.532512251, 5588527.117211151, 5588539.022170018, 5588559.610480711, 5588574.1847245535, 5588581.275783619, 5588587.564182692, 5588609.430383441, 5588628.205849631, 5588635.171258952, 5588643.650883961, 5588648.738823113, 5588651.92458179, 5588661.983097267, 5588671.179852014, 5588675.309856274, 5588684.020496945, 5588690.901557169, 5588695.28342604, 5588706.917602627, 5588717.016185066, 5588718.409557757, 5588726.193798308, 5588730.963485355, 5588743.887649483, 5588745.486391096, 5588762.9539260585, 5588774.047435425, 5588793.969010388, 5588803.716832602, 5588818.117575669, 5588832.8606662005, 5588833.069176043, 5588833.281934826, 5588847.1228811685, 5588848.920890229, 5588860.720632337, 5588862.458663369, 5588865.654282126, 5588869.610530003, 5588877.592772202, 5588877.965287805, 5588885.198003876, 5588886.965674971, 5588887.512108756, 5588893.143362192, 5588902.203734288, 5588909.551267115, 5588915.410158017, 5588919.862753887, 5588941.109942849, 5588978.227306467, 5588983.866079171, 5588989.808651944, 5589001.9785435125, 5589009.38465894, 5589009.652869312, 5589015.709021776, 5589020.74598691, 5589021.862575587, 5589034.077337857, 5589044.540699929, 5589052.504116365, 5589065.783983848, 5589082.486000568, 5589086.528015874, 5589091.169463475, 5589097.799174428, 5589110.196882767, 5589117.33747117, 5589117.48389785, 5589130.985654325, 5589135.030886125, 5589140.239528402, 5589140.926149271, 5589154.764372565, 5589155.703540628, 5589157.334471296, 5589162.426426533, 5589163.750488959, 5589173.9439247, 5589178.714136902, 5589184.362315737, 5589189.443596044, 5589190.3395735845, 5589194.980715528, 5589195.530231033, 5589198.4447395075, 5589205.149623071, 5589209.033847902, 5589215.549177925, 5589216.762965097, 5589219.737645631, 5589229.254749879, 5589232.12028013, 5589235.019086262, 5589246.115655807, 5589251.195146454, 5589254.527167962, 5589257.0577778425, 5589259.70373712, 5589264.0956147285, 5589273.775815217, 5589278.329570752, 5589278.372094067, 5589279.236600699, 5589282.908879506, 5589288.886241569, 5589289.38729604, 5589289.966325042, 5589303.942339412, 5589305.214515053, 5589305.830989672, 5589309.988411031, 5589310.14976444, 5589318.629703416, 5589329.055138263, 5589336.45133511, 5589345.384207982, 5589347.777519787, 5589384.604366386, 5589388.160538276, 5589388.763622954, 5589407.433482862, 5589412.59007196, 5589415.892142928, 5589416.091800295, 5589416.376619304, 5589444.877057829, 5589445.883371119, 5589448.068943639, 5589453.404355591, 5589461.627108442, 5589464.205388414, 5589465.726585325, 5589466.448578902, 5589468.952929663, 5589470.4919503415, 5589471.2097438155, 5589471.794729383, 5589479.443386753, 5589480.461731552, 5589506.673553725, 5589514.135212977, 5589514.466834456, 5589518.025535, 5589518.633630609, 5589526.47237667, 5589541.031139679, 5589545.2679886175, 5589546.494709245, 5589574.085201922, 5589585.236290234, 5589590.738644531, 5589592.744801332, 5589598.686292421, 5589600.388376213, 5589615.040216522, 5589620.261201636, 5589637.6063841125, 5589643.4340300765, 5589650.369593333, 5589652.795111316, 5589657.512712992, 5589667.935631947, 5589672.950527865, 5589674.86745221, 5589690.957345308, 5589694.885806797, 5589700.518297161, 5589706.406452762, 5589722.105654987, 5589724.776878601, 5589729.330410371, 5589738.107438256, 5589753.687507761, 5589776.86087096, 5589779.493277463, 5589783.576338895, 5589797.358451983, 5589802.593735169, 5589809.529992458, 5589823.303347008, 5589827.247892593, 5589829.818644603, 5589833.534574081, 5589841.466427682, 5589853.494520235, 5589853.938085493, 5589859.38425283, 5589864.840226143, 5589870.978328135, 5589872.302072748, 5589884.299363593, 5589889.035429072, 5589895.087588768, 5589904.220028221, 5589913.526042631, 5589919.839825818, 5589940.2556449445, 5589943.943842132, 5589944.351767911, 5589952.757311451, 5589968.9766047895, 5589974.354653637, 5589996.840429594, 5589999.295680292, 5590003.449432555, 5590011.099293069, 5590016.979694578, 5590021.266863301, 5590022.231490116, 5590022.4563402245, 5590024.681201733, 5590037.914882228, 5590039.105284765, 5590050.225820422, 5590050.606059067, 5590074.284246286, 5590075.549030905, 5590084.117007351, 5590100.161831375, 5590108.173360969, 5590112.657441301, 5590127.76524102, 5590148.571355787, 5590171.84414481, 5590180.112212039, 5590191.498165161, 5590201.144800275, 5590238.758758525, 5590243.853098574, 5590257.8125, 5590260.108455558, 5590289.820965872, 5590318.098581056, 5590420.2796110865, 5590429.639127612, 5590434.0702532325, 5590438.137938327, 5590476.707896283, 5590487.58271279, 5590498.927023751, 5590507.297894011, 5590509.993360071, 5590533.388236898, 5590535.826193196, 5590547.2908484675, 5590608.84287333, 5590676.417740462, 5590678.940003433, 5590757.198325226, 5590765.642479542, 5590792.484802592, 5590833.044013559, 5590850.029580853, 5590864.284946561, 5590886.607921507, 5590941.081354797, 5590947.144463713, 5591000.836715948, 5591017.63805855, 5591059.388173341, 5591082.393324373, 5591135.82554871, 5591155.5310844835, 5591160.9843034865, 5591183.953081736, 5591204.8226081375, 5591381.646425761, 5591402.089448743, 5591542.773768511, 5591591.837616248, 5591859.501057884, 5591929.703137357, 5592022.1982739195, 5592357.790190355, 5592618.092341482, 5592661.625285976, 5593160.525892383, 5593161.173730784, 5593328.1059660725, 5593340.594076203, 5593702.575014885, 5593742.634557653, 5593751.452606569, 5593846.665803071, 5594061.7504441, 5594103.126577775, ...], [5.550149137513182, 6.682743077797609, 10.986266276259265, 9.199684036285849, 16.56011505300236, 10.714442329465026, 6.122532106450931, 7.71765380439396, 7.314936339367837, 8.221986927947304, 26.097462967233575, 14.36139329923641, 43.913631413517024, 5.8360755589398225, 8.202555069577928, 18.6936544115318, 5.628142718150126, 19.573731144420137, 10.294405864482727, 5.30165019978566, 11.107967775838059, 6.352474106650795, 17.390782647788107, 5.286026464978492, 14.214410728771192, 5.614146230745947, 15.789191431161562, 23.543256231848147, 5.948877196374771, 5.166085568666729, 6.028096393050188, 6.126860412963523, 60.432804967804344, 8.504864716187797, 22.573433142885378, 8.30168053193691, 10.648005386304504, 6.652945061856341, 10.611706354074261, 8.86871999892865, 12.88033466929828, 8.805159033704758, 6.389231266506328, 12.949405178016425, 6.956047241028592, 6.839164617890256, 6.028281403662832, 7.053894272797931, 9.093986962124676, 8.05197902729966, 6.182961993694188, 7.014472220495685, 6.549068815073792, 10.20525831261177, 20.60457742290554, 10.457212724434944, 7.05488192162819, 7.483910669862003, 5.401393280286751, 5.473291560920018, 5.493410949460295, 6.258993689540411, 11.221317026654662, 7.842980209433457, 6.328075656628671, 7.967942209436032, 16.746987099261055, 5.449222654813081, 5.545809930959789, 14.139903560440814, 7.150677624169281, 6.1563717428986715, 8.095119531128782, 7.695857186419973, 9.928012662718455, 5.360665259107392, 6.257050134264597, 15.103449333133604, 5.461944783750965, 13.90176027438668, 6.865025371109604, 6.67614908334122, 5.9701627904860395, 7.59961639136751, 5.753045413000343, 6.93298157208349, 9.244216893138882, 5.487686551230572, 6.079043825218957, 7.0387590431645455, 6.928273864620671, 5.880555659610752, 9.111949278199358, 5.099579839289863, 8.438196200553854, 8.790272613859196, 5.475186693195547, 8.787071676867264, 7.55041969438299, 5.749699383720006, 22.86622658567412, 20.93608783973751, 6.0294995462582275, 8.6542434173233, 5.961379824526768, 9.250175904655737, 13.799185002189526, 20.721321446946206, 6.748666440819901, 15.502830517305197, 6.859100249293516, 10.20004132262981, 6.551188327591914, 7.2399566965589415, 8.699670268968179, 6.687556427896809, 5.05306325741216, 6.454597470742152, 42.58021738529299, 8.220350246683806, 6.144040677497334, 8.160162381611299, 5.312803964087623, 6.743840648588441, 7.1045547327430745, 6.579182260811612, 11.289637483287569, 5.392118920821305, 12.08048622910652, 6.325904949667477, 8.4022323995357, 7.310365948925728, 8.597143200154163, 5.667341203601744, 9.242877050732867, 7.977699840653778, 14.613887538904915, 6.789408835258402, 15.987079038433452, 5.222313163219994, 5.721939457065788, 7.609472233791173, 5.652723359003832, 9.139400138876926, 12.842641763193319, 7.297524833967, 10.51726186717284, 12.194762469986603, 14.780522877985824, 7.220068140698886, 5.737475828234791, 5.593525808824911, 5.441241199584197, 7.931034270972629, 5.284756019680021, 12.81618348430253, 8.849289804579003, 8.008080438521597, 8.153778423032051, 7.959940543387883, 7.710099710853094, 16.106682462848504, 6.248332147717151, 5.4294480657805595, 7.372678102339308, 8.178101725390135, 9.635511171040346, 10.910110575925604, 5.062629718355612, 5.698883875138219, 11.790452037427118, 7.117702117275626, 5.062010008954187, 6.28835874157497, 7.187093224729613, 28.08531867091996, 5.943560997645266, 9.895958554301705, 5.396238453540686, 5.951124076690314, 6.400205433945439, 9.703248684413241, 6.1609984799771915, 6.204446925562883, 5.200521657678214, 6.305610304377398, 7.723672328886112, 5.349888599201587, 7.043377258710288, 5.483493115371229, 8.083285967627573, 34.952189678363084, 5.667429868363072, 8.540017230674414, 6.581982186766837, 21.798398085130206, 5.945929718356207, 6.883027205764518, 9.16887798106159, 5.756620039350859, 10.424299205271973, 6.570476821522324, 16.81093568578746, 8.037506556828992, 6.199116693342141, 5.328789181203383, 6.093559592331691, 5.65602685468489, 5.448555631706024, 15.033204688368247, 5.76549316428536, 27.742201650094017, 5.633799978636925, 5.313256853638134, 10.535471803961297, 5.321045179809725, 6.199823958328553, 12.347259321497004, 6.181572298110977, 6.23719754818636, 5.323025092445191, 7.193836059070235, 6.981687784765436, 11.636608217949028, 6.00854612787603, 5.966394903604451, 5.603897039960844, 8.571986351262712, 19.148712697456528, 10.893722382447365, 6.117814982572648, 6.405285466780651, 8.672279477805409, 9.175233689347426, 5.784454385935963, 6.258103738641302, 5.48155358913141, 16.715707460821843, 11.888117472010338, 14.39730539447673, 5.204907233576751, 7.632787799621514, 9.0375143149754, 5.4216941324065, 5.599148575673212, 6.777280572268444, 6.729852132435468, 5.048129016173596, 15.65710660945039, 16.677163108502494, 6.062049257504863, 5.9279800731582, 9.465925696499857, 8.405781419898856, 12.636117504813031, 7.316616831058425, 5.18661443127448, 9.121886789474663, 6.223408867981343, 8.718478337063628, 6.910926316454124, 11.875368335693755, 6.155228867808452, 5.892092739998767, 11.738053213984111, 18.30510243910463, 7.384038576484181, 12.00044670797862, 5.676531502877878, 8.69079277930964, 12.446205029958186, 5.792547728981837, 12.323312709103666, 5.365104886598385, 9.637689482676313, 7.837631284355826, 6.384054758032389, 5.67598145697133, 6.610302817972092, 24.309983342448433, 17.247410489380044, 5.730683530149389, 5.1431631131458735, 6.903221920618165, 5.4165174504519085, 6.9599519710261255, 17.546521342676574, 5.225098953530798, 8.693511403536482, 7.7069746003363315, 5.226722652394833, 5.6606246490006145, 5.075819160662257, 9.322471345526727, 5.743219959974325, 5.122949964107952, 5.361047996905965, 5.902580008100408, 6.519288506892398, 6.995469765533074, 8.598827434784122, 15.267914503484425, 6.206831795366331, 7.1006386044682674, 5.1787408513444495, 8.366040245081098, 7.381468777260931, 8.650588704869659, 8.183499973235064, 5.794641517652266, 10.56750219393205, 7.868694865717634, 7.361200512244479, 8.235661123212566, 14.31128764183168, 6.826783711345732, 7.986634502404028, 8.641058733291601, 8.267591860749757, 8.067193003918781, 7.695238095175726, 9.324817987467029, 5.826729496866627, 5.35712342852395, 6.111985474774007, 6.861603207107975, 16.392249627966535, 9.641219188177875, 6.895444332030595, 5.402559203473732, 8.567385662416793, 18.79950973827813, 6.37043835024973, 8.887824396210034, 9.406171866279859, 8.453639716945338, 6.830171213999461, 7.300467655079292, 6.305875438500547, 5.983062726001503, 5.591825873962978, 7.183216395984594, 8.561246887000637, 5.323535660654198, 6.15578754012044, 9.49792164060235, 7.7664661798408385, 8.954944448647085, 5.799465580829691, 5.730087294924301, 5.3009121093183005, 7.1065965844996715, 5.805801192128353, 6.0021972947876145, 8.108623907541338, 7.609625797510124, 10.295938959498878, 9.267003813402248, 5.080878234928531, 5.838040767110247, 9.424444655848271, 25.438745247962935, 5.66368003040292, 8.09258354674679, 5.640230819572267, 9.956126499598819, 7.024484360359399, 13.224899256973783, 9.129553234617415, 16.818451832577438, 24.254328713096683, 8.967605207037403, 13.206247817815253, 5.299694365714511, 5.833018037797404, 10.887278195966717, 5.613948433885296, 5.711067915695346, 20.874149165180427, 6.298460769274011, 5.552052984451596, 16.39310552516085, 17.148198678206498, 5.656981912921494, 12.868940762605977, 7.8484218570076445, 6.946854693009528, 6.738163337678132, 5.6194378253727, 5.25134526874677, 5.393561113904208, 7.351375724250576, 9.550854505478688, 6.985807234234863, 11.689911834072701, 5.31234141711882, 7.959126387843249, 6.344698681517675, 5.7897417947400465, 8.019160859778331, 16.106844879141963, 5.314774364181019, 6.143274137841987, 7.923413615847166, 7.200455575568737, 5.465890857548111, 10.491862238634933, 5.663986642363669, 19.370227350952348, 5.135068148731241, 10.933596254475738, 5.804538161391374, 17.84633368216928, 7.960132351226732, 18.535511994647372, 5.335602216930991, 12.079787916468321, 10.19648630364892, 13.627132218725716, 6.077078754943028, 7.11406591210774, 7.400231175833868, 6.168841924789452, 20.755123993931377, 5.931793436722584, 15.160657271092555, 6.668438716742928, 8.516130897485302, 6.303101552713251, 9.233748082486425, 10.948707181713026, 5.408993234834623, 13.329671447510373, 5.957262567053254, 6.704380363859683, 9.219935906674962, 6.668413850288249, 5.746531235922244, 6.049117186010898, 5.1346472450836345, 21.01249680259867, 7.694837946993972, 6.440189625289126, 8.37624901560376, 7.305621516150079, 5.677365711789984, 5.421182728016246, 23.969692832968335, 8.008144177890163, 6.737989419322612, 19.455426080799455, 6.564437716155062, 5.529038146424199, 5.3752229390077195, 12.401404941479376, 13.724346921617796, 5.908523457875741, 7.177960936947916, 5.47314709290738, 5.929766512822519, 5.213506748668253, 5.176651959809324, 5.789755288020722, 6.287774269455121, 6.395448307379799, 5.52063251098431, 7.869648180682384, 5.170534601413486, 10.45242472318186, 7.518176783271395, 7.9422942293071594, 5.565149596401006, 5.900043591709909, 6.802401641012439, 8.582831896610491, 7.2339984615806845, 6.02851164854308, 5.892325055720715, 7.64575948612899, 6.8921820066215425, 9.45165711737527, 5.078047749872097, 16.677926918035574, 5.659802331767965, 13.274082865588834, 6.80566557026089, 6.946339454763305, 6.633614578728021, 16.82082331000192, 11.544532024376315, 8.04798214333654, 5.41872382860393, 6.335388304090153, 7.9576839276752525, 6.099555755268384, 6.949899495948081, 8.762925509160896, 8.594326643214616, 5.89750753763082, 7.304627260145182, 5.529214873523959, 7.518721345825532, 5.910236524172311, 9.688797619168243, 14.410731966588518, 8.400652893484882, 5.381957952809213, 9.756988234190503, 7.273322240746639, 9.01298958742082, 6.805651562922195, 32.62384721328776, 9.624078156497545, 6.019660273590737, 18.629467655857514, 8.051562862505588, 6.467207854401845, 10.14485945442311, 17.75905554349758, 5.5295396631867595, 13.266672391283802, 9.147061942384793, 5.824737914016837, 7.98846564539477, 6.18751688616084, 6.104457601575328, 7.180359352871606, 20.139461398810898, 6.688764736810344, 7.199247291619757, 16.855349459215276, 8.67141747565923, 12.334158959035092, 25.41076300190582, 10.84266969419826, 5.329837260995061, 6.267013348116653, 6.536326961654747, 5.666602966190744, 5.343509168038023, 10.966060488606992, 7.742144660541803, 6.0956118042752445, 6.438643923613411, 12.79935904756822, 5.553443270866258, 5.980816159605653, 9.006949373460753, 17.122198764340908, 6.979290034694569, 8.314524926428698, 6.016514913989056, 6.0124099177923735, 5.087136156339798, 9.80342835329593, 7.194760080641023, 7.25878725072111, 18.82507496827843, 6.778896406000544, 18.471908143902496, 9.01136820462255, 32.825954438530715, 16.581090805412853, 6.385077322728147, 7.679206132332459, 21.612394701232205, 12.156640430968338, 5.6800762874911594, 7.120436719096804, 12.895393372782797, 7.977303773874361, 6.048940168767285, 15.728714754155735, 5.389207137647246, 10.042396865223202, 7.945171602052251, 6.834493365791316, 9.85102852267198, 5.09292369513851, 36.182894700491076, 10.689084173328496, 5.992212613153683, 16.272544032298445, 14.871371947319442, 7.8704315508619, 5.387295321905582, 9.222968352773163, 8.87278451478087, 5.27310874164516, 8.432084342495262, 12.36959447480118, 7.252547008289239, 20.110093559802568, 5.1302083468342, 6.602120685858338, 5.8717420726390195, 10.858632521797553, 14.356375066297247, 6.012209145497325, 6.2398385298156605, 5.472872057714562, 16.069133857063207, 20.01961175470288, 10.82268759482781, 5.893093013412736, 5.679066047622204, 8.358230333723732, 5.4022164311698795, 8.795309630287223, 11.716263793260337, 5.223379974236849, 5.3174663163932685, 5.933093865930629, 6.633604833825921, 5.952598728539254, 8.621633859667188, 9.528278206508212, 16.258847951287006, 5.899884551174695, 7.474059175707672, 9.843094897572822, 13.962849302051536, 16.537769817941236, 6.527235522914915, 6.711004852314778, 5.043612378620336, 5.253397709502056, 11.25764293814953, 9.201432890456314, 6.5456278782161945, 15.1358265100542, 7.640685169864897, 5.296732028866968, 5.177351570394752, 21.26422046063994, 9.981200108101175, 5.51913936289748, 14.928877287291451, 7.362866789926945, 10.861260339772844, 6.099457159166862, 5.819167701870775, 5.216313392319877, 6.085431690357069, 8.871788829377023, 6.287105295986879, 11.009781973556263, 6.847281189889739, 15.472007352202176, 6.081263168676195, 5.978469086820001, 6.580187359579814, 5.181607996297241, 7.339100666470949, 11.297406301366815, 11.358905731371674, 5.528001129847571, 6.172310254573145, 5.564079130979073, 6.3274417885617185, 8.503869149165963, 7.961187145166481, 19.74652260274402, 6.8997089871239226, 7.805592166128011, 25.925315706222598, 9.370584080108049, 7.994433865241221, 5.720487917925156, 18.49100847547181, 9.872278758372367, 5.501396834460287, 7.489571029923415, 8.97269346533811, 5.863249040286317, 8.17100918830846, 5.625756783926463, 5.5466667929496385, 7.300866403770182, 23.5985672960016, 24.76480118133184, 7.674154960775825, 6.429953160408058, 5.182741008973189, 7.02579083660848, 10.360094395002092, 11.13357134916731, 7.148780121121538, 5.666553414423433, 10.545134368543362, 5.292088735172087, 8.319698444470879, 8.501107822228247, 6.163710073923589, 7.267550714663209, 5.704102680849777, 8.251170086675751, 7.962178788651746, 13.37978237793791, 6.556980010389988, 8.143979715464022, 8.577758514813134, 13.159257013970334, 12.832409833597287, 9.852925280910961, 5.427278895801989, 6.877849778871718, 5.603219628990793, 6.728473923747976, 5.489942805478705, 10.38051396249909, 16.140004419444168, 6.147748579060878, 5.811002206698798, 5.471965228334871, 5.222886300014522, 6.090784596527341, 9.386269375171823, 11.215392395401851, 25.229003121634815, 6.175011488045744, 6.7438788401957295, 9.599883492042627, 5.550915411164448, 14.048157968158932, 6.383375679075864, 6.12092536801069, 6.43291949901103, 18.04693152503588, 7.113829912659861, 18.289385344706407, 5.924623959226579, 5.03585314447986, 7.47511455931017, 5.51933480393796, 9.450570327391453, 5.541579966235572, 11.919995854488452, 17.91900500343518, 5.958707928685184, 16.991780258690007, 5.435261482805461, 7.620751972733574, 8.427141910809485, 6.138315745009598, 5.298806038398123, 6.330266100038255, 14.174680572017946, 6.4806308166721855, 8.30212314284512, 5.880519387512853, 5.673702660356056, 5.454953015905078, 15.128354644201039, 21.15738980777842, 8.292991034978593, 13.043179927630243, 7.8528843027007165, 7.668259390585395, 9.156117030437388, 5.511643941659166, 7.255043049776661, 6.503249150971436, 5.586496462747694, 7.3324521658587445, 5.845418904918575, 6.488606420799223, 5.963974947707726, 6.500343537509597, 6.557261152518024, 6.265629907524807, 5.792279279332754, 6.174374831872933, 6.025828031916878, 5.207491354410503, 8.121149617185816, 17.79866521132181, 7.812792605197716, 5.768212572540712, 6.624138282704676, 9.46151543412965, 8.449793734570587, 6.446436050798025, 11.644378144414503, 13.651052448263322, 7.715915018398579, 7.631279838340698, 13.200580612481653, 10.454575845769568, 8.24804991722201, 8.12819613365141, 7.797282498580402, 17.79020098015199, 5.6133428016265325, 8.49894161581674, 5.387673412920006, 13.811634201377135, 7.683932479178882, 7.6058581896316575, 7.248469987552442, 10.63328522489382, 7.101661964882181, 8.996502640722014, 6.400601638422638, 6.214029104626402, 7.370695076535367, 7.301721336350794, 5.660077518597924, 7.475564728253191, 8.203572661484394, 7.351317366067503, 6.539888712051317, 5.816434542393435, 11.701167941580216, 11.463263097812693, 6.298929972845325, 6.6767072798891975, 6.2794525036234345, 5.335918011359204, 6.539240399207769, 6.958440327547107, 6.013891763135036, 5.2601387188553135, 10.530372297743392, 7.292608195543725, 7.34118170732892, 5.699144547158944, 12.977589868730716, 5.985438371653933, 14.643755449522017, 6.9581362404519, 15.894289381193872, 6.595873672981108, 16.46561687290631, 7.471674321221658, 15.296307156758797, 5.299411060457479, 6.328033420770425, 6.007647554403485, 6.21370751256512, 7.823642191066021, 5.593974989324161, 6.82058940930317, 5.181739416576356, 5.951946459169159, 5.345414731806327, 18.773558229850718, 5.297397040713437, 5.624049506541796, 5.226899955472484, 9.264439749606213, 14.086112643203515, 6.172491348995687, 5.73425497492564, 6.778110495677651, 24.0842280013812, 7.360667051652696, 8.225983212445163, 11.167838282402316, 8.513699474102005, 14.774524238880275, 8.09521543456862, 8.661611570041135, 8.80140219775558, 6.505054801181458, 6.57815197674906, 6.814213731697756, 8.503220954397042, 5.890047123563718, 14.749523699842559, 5.948723950069979, 23.548869156390083, 9.664772330526512, 5.157749241361892, 18.09612753332693, 17.648480019113563, 5.509903972392378, 26.1545504198129, 27.78613945441422, 22.425313250712584, 5.6433758465628445, 7.660821403127465, 5.721596454615107, 7.5244838883046175, 6.2231127792204886, 5.310226756833943, 8.608265020542069, 7.714839979455932, 6.457070135844833, 5.571337173986046, 5.176775895755063, 13.24122692963204, 17.486192456839408, 6.074258712771156, 7.871487765291256, 15.466097125674347, 6.362951430948234, 5.1854323396100135, 5.477853475329145, 6.6225789461389, 6.08906195853608, 5.873857253428434, 6.904135891143647, 5.9774809882248245, 14.660848372117501, 8.27231345928339, 5.238893791602448, 8.965115070301172, 6.987229491147365, 13.401513283556406, 5.593932182306512, 6.802832676887676, 5.421988370516734, 22.92297900383669, 5.721333126947631, 6.961549551364739, 7.112393704660175, 5.880329541426029, 5.968165973459539, 5.953620383194743, 5.3905888076680535, 8.86518429355188, 5.354287518061396, 7.827962193972241, 5.91211529304367, 16.79996089192216, 15.504995648467158, 9.529936381340063, 5.860226977442199, 5.662671021980284, 5.217638918147351, 8.154701204275066, 6.105091502492421, 18.69061220826338, 7.661191697504246, 18.459243016160244, 15.477490153699275, 6.4822652630976005, 16.851925228781617, 7.952843175064723, 7.0158157667047485, 6.057072245939989, 19.3578265243621, 28.769829378434878, 5.266147625663308, 5.872315866230614, 6.640069840788849, 5.612227234154631, 6.083083318138607, 7.043582790442291, 17.60392193961488, 5.952168320573083, 7.6334299694420205, 7.7904355453990135, 29.077773471639155, 7.843324391692121, 5.48703260251678, 8.228580622454489, 9.709653343324044, 6.40679020139214, 10.408911266225147, 12.695737457644306, 10.286606674858517, 5.815274735583755, 16.2102556003459, 6.296898360531229, 5.245973954923219, 6.522536363264969, 5.145093612184888, 5.023383391900099, 6.818522310564329, 6.015741685570286, 5.175989324708988, 8.293555915426701, 5.155712882305035, 7.09233077590494, 5.762635094298539, 14.905684734925831, 6.682099083919506, 7.652846042267189, 5.843906450859128, 6.336152116764144, 15.608192558200656, 23.133794551165213, 6.283257334373973, 11.152237282783684, 8.465262950420051, 7.595188546399067, 6.638948186492028, 5.312816016193637, 7.017298838884958, 6.297513016587004, 6.484111629755781, 6.2632992586288845, 8.015681281765993, 5.41584413165152, 6.741763736357403, 7.529287468955791, 5.497775459734548, 5.461834262691043, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)