script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 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 = 47567
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);
([2999120.5066195736, 3007226.5393081685, 3009010.4516255595, 3118793.15847956, 3148478.094815871, 3332022.5295066433, 3348472.113270632, 3355092.105834784, 3382692.1535764467, 3395026.093868487, 3450174.55596719, 3459048.263364382, 3462452.325966056, 3498994.802831735, 3513443.4249098673, 3517456.1689247014, 3519404.0477118692, 3521249.15521999, 3547328.6216979763, 3565335.169296615, 3585629.6875, 3586564.8434407148, 3592085.3209111528, 3592950.012103772, 3594530.5495587327, 3594996.6723272866, 3608084.1986941714, 3637782.8125, 3637835.377266433, 3657651.95293308, 3667196.0078760157, 3715144.396421421, 3716735.184048161, 3730819.602821433, 3773029.989326365, 3789934.10246, 3802318.159405706, 3859342.173625341, 3865368.5914629716, 3900250.609595099, 3907041.906461001, 3922345.0432279543, 3966994.8318617805, 3968471.4134102496, 3991639.7293706266, 4039956.1929157786, 4040281.25, 4058338.4574161214, 4084821.7741477517, 4089711.7010539654, 4233236.424484294, 4235067.1875, 4246732.5232623555, 4248446.021336682, 4264491.421041003, 4359571.765405879, 4365178.125, 4365196.875, 4400448.4375, 4499057.121682501, 4506830.741833037, 4506875.981330845, 4507037.199522545, 4508679.312982955, 4517655.337766381, 4522062.508670381, 4545595.410534514, 4559463.332943824, 4572082.882302993, 4575501.5625, 4579944.164765382, 4581093.855300255, 4608495.817255218, 4624111.626798236, 4624818.74197985, 4627150.648415884, 4637141.537327446, 4656673.4375, 4742283.819136299, 4781596.058048615, 4781646.038533392, 4808272.628465842, 4861969.07867776, 4868343.476536133, 4871728.59150479, 4886205.9072794225, 4888531.284066473, 4899982.740782553, 4907594.178612663, 4916335.9375, 4926961.338168395, 4945005.907262361, 4947950.566180694, 4964260.9375, 5059645.806941269, 5171823.1222626325, 5171831.8715561675, 5261794.329374655, 5355625.4102526, 5363279.3286749255, 5394326.148918046, 5406740.038399716, 5414884.785297668, 5426920.197807561, 5455834.101427632, 5514816.522982009, 5549446.628980708, 5549520.3125, 5599890.394640615, 5608998.0246294895, 5664176.233014457, 5686125.736644243, 5686531.032507008, 5708053.7856167955, 5710447.299877088, 5712420.3125, 5714501.5625, 5739293.75, 5739428.62489567, 5766664.251472763, 5772945.010447085, 5784909.926232305, 5793122.572139317, 5804079.5191131495, 5805464.855788381, 5809735.230108968, 5851057.262951868, 5876191.990506234, 5892150.326983314, 5892643.75, 5901671.245521029, 5934691.015159789, 5944185.068190093, 5981595.095800038, 5984223.364858636, 6025540.060537614, 6030873.634902517, 6034127.618211747, 6065893.405165148, 6066571.10266583, 6072953.125, 6076299.614052056, 6076755.8821619125, 6076830.800968387, 6083169.872631579, 6087315.516586859, 6087318.5027030045, 6088499.9364231955, 6115553.750705822, 6134574.479021852, 6143688.753714475, 6160257.8125, 6161818.358010007, 6166830.4277822925, 6176964.172053673, 6177058.267380207, 6183020.9929367835, 6191436.719128076, 6251125.973027204, 6331004.232146244, 6332088.421818889, 6343780.2625229545, 6381654.6875, 6405109.375, 6513339.0625, 6570269.390990043, 6576092.262701657, 6597753.181151352, 6601798.8946768865, 6613976.5625, 6683284.503765811, 6719642.110158558, 6738420.217931248, 6840140.093697084, 6856697.377591442, 6875826.200713292, 6935238.37273306, 6936101.690594527, 6936401.608438594, 6939392.128088662, 6942347.808959207, 6945136.737419749, 6947454.8125338815, 7076329.292499507, 7089845.302157767, 7111320.950340243, 7114087.297006993, 7136687.964484949, 7172840.42893601, 7176206.547127463, 7190606.062091905, 7234740.187808234, 7268690.625, 7282998.824471274, 7283693.396827792, 7285156.137408132, 7352689.851911997, 7363604.3145593535, 7367886.257022945, 7377159.3364707, 7399028.705365114, 7410868.8947551185, 7412230.820099515, 7413079.300977122, 7414004.780482342, 7414593.057187275, 7418894.163144848, 7437425.60714447, 7462465.899208884, 7462731.160649036, 7464248.1655169185, 7464351.937700407, 7465550.693933882, 7467495.767641387, 7467922.918036836, 7468608.343809392, 7469687.734081457, 7469848.109436955, 7470280.147673573, 7470300.482517126, 7470535.727074905, 7471114.637426873, 7473147.193430096, 7475725.019660501, 7476228.484212713, 7477082.896335226, 7484461.1584317675, 7484914.610846977, 7486106.315761665, 7491471.520079308, 7492005.643573888, 7493464.005824401, 7495221.464607337, 7497274.081344772, 7497814.68019632, 7498495.814044479, 7502079.867701426, 7503949.568611313, 7508387.269582474, 7515084.9893001905, 7519256.462604582, 7522235.935219601, 7529077.045065362, 7534543.227223391, 7535022.092349385, 7537145.558956698, 7537313.00069389, 7538004.473438003, 7544580.061274921, 7545256.530388674, 7547201.773639284, 7547681.188888674, 7548314.2825934775, 7550018.3304203935, 7550675.408797483, 7553831.299530611, 7553905.180914005, 7554336.569491811, 7556206.427110612, 7556432.100350255, 7557498.328191174, 7557946.131080555, 7559434.744980762, 7559875.214777834, 7559923.870082201, 7560800.867529636, 7561432.436641344, 7561777.322903156, 7563911.3816029625, 7565487.974161196, 7568731.136690275, 7569267.096441958, 7572827.569824855, 7572893.9730719095, 7576138.634853833, 7577104.0216463385, 7582072.0575357415, 7586292.518782251, 7616504.6875, 7619042.1875, 7625847.984298014, 7628896.875, 7639678.830706001, 7641128.628302571, 7642174.932065611, 7643488.255158045, 7651338.8600303605, 7658124.237246421, 7665183.170601854, 7665671.742093308, 7666112.054697332, 7666944.043338285, 7667689.979578461, 7667935.46461238, 7668857.193783007, 7669696.882989872, 7670332.209947855, 7671328.897381085, 7671708.887764126, 7693822.878723412, 7743126.604373648, 7758380.639585136, 7833129.254531858, 7841559.122333286, 7841722.283405161, 7843390.802900661, 7920873.767529015, 7923342.22256778, 7923882.091460235, 7941762.993460103, 7980446.357043176, 8003475.065969717, 8006848.6561710145, 8010970.006122388, 8016707.621505695, 8018818.736501763, 8018863.419459373, 8022953.802485064, 8029344.33493605, 8038635.738724151, 8041341.945587088, 8044357.468574723, 8048675.388119315, 8049824.173469752, 8050065.921357829, 8062249.758850876, 8064753.312745533, 8067835.8924415205, 8069120.003517235, 8070827.169826759, 8088731.157468162, 8102698.997690026, 8121785.104880312, 8122631.66889204, 8123202.536854881, 8130005.875942558, 8137203.033926938, 8150128.896620666, 8154484.9770551585, 8156910.4684956735, 8160235.181391508, 8166455.954651546, 8176325.591845265, 8184442.1871085055, 8189216.188220747, 8189692.398609511, 8190044.418860744, 8190411.184258957, 8190497.942640251, 8190912.989444207, 8191057.476449995, 8191917.882160694, 8195386.739539469, 8195932.097091106, 8196573.4375, 8202901.860502886, 8206071.286255365, 8206122.107512215, 8206220.009429487, 8207394.08991844, 8207745.149444273, 8208758.295231033, 8208811.70086939, 8209765.611760294, 8209772.177668738, 8210113.43379543, 8210408.538707702, 8210845.42146483, 8210850.359820749, 8211438.213089151, 8211604.774682761, 8212370.653346821, 8213013.302088876, 8213476.860306518, 8214121.1552276425, 8214997.811669669, 8215507.4903176455, 8215941.078901069, 8216001.410118459, 8218427.3563765045, 8218754.797651577, 8226830.449274458, 8227259.152760785, 8231740.234009136, 8234694.807480408, 8236542.32321697, 8240195.9102147315, 8240899.840985414, 8241620.312971448, 8245016.658239368, 8245633.076919411, 8248286.9171455195, 8249055.104824915, 8249236.041494273, 8249565.913010425, 8249694.685871085, 8250115.644690765, 8250345.1681996565, 8250455.436505505, 8250709.048020136, 8250842.788253574, 8250889.304337993, 8251303.11953004, 8251750.775718822, 8251912.090074916, 8252114.626534998, 8252123.572924776, 8252318.246295563, 8253001.585937851, 8253156.115616824, 8253218.849410139, 8253471.536909858, 8262412.898982583, 8268524.9503039345, 8276776.241502951, 8277820.649257364, 8289012.657124432, 8290254.573883141, 8294869.708367521, 8297958.965875839, 8302894.945945606, 8305644.100949001, 8305861.442008353, 8309320.740932197, 8310079.806357177, 8312742.964693181, 8313299.948364516, 8313905.094298987, 8314647.114999196, 8316700.965938833, 8320300.024416225, 8321582.231497202, 8321785.118179045, 8321880.045744797, 8322736.8304574825, 8322761.1001041895, 8323076.5625, 8323530.527563821, 8323831.52403803, 8324409.943658855, 8324508.347179077, 8324620.801621666, 8324825.557050572, 8325115.990143984, 8325325.310311107, 8326589.435532703, 8326955.579071785, 8327471.781332839, 8327786.472177367, 8328757.239199389, 8351722.44185622, 8353221.64823724, 8354621.631890473, 8354776.11243854, 8355579.968305229, 8357697.055856826, 8367414.802251668, 8368109.122033268, 8371613.237266458, 8373536.211119812, 8379941.585345541, 8388152.595449787, 8388166.468544007, 8389801.97194398, 8389952.466566414, 8390326.963587407, 8390337.161580414, 8393074.0031831, 8393223.556053773, 8393242.683014676, 8393244.9882195, 8406384.788796771, 8409525.837311625, 8411107.12238299, 8411896.609581508, 8411962.90961772, 8424384.788161071, 8426159.018008772, 8439190.982481645, 8439943.386581542, 8440554.838345973, 8441722.647295725, 8442479.681835404, 8443648.14585902, 8445949.867714904, 8448336.762906553, 8448402.070646657, 8449568.41300501, 8450605.313241538, 8451064.569415286, 8453597.221115716, 8454146.793567892, 8455858.649142573, 8456868.975557009, 8457124.648919798, 8457163.69701359, 8457227.698691417, 8458197.956595888, 8459968.608508367, 8460099.81561594, 8460521.650469694, 8461406.053921698, 8461816.407379301, 8462051.209713403, 8462324.92723297, 8462498.185656441, 8463106.792415455, 8463271.428604333, 8463699.323679743, 8465366.78484386, 8465462.29542981, 8468474.91333677, 8472066.360866146, 8472252.583720623, 8472989.525953708, 8476134.980635185, 8476485.801269673, 8477067.775534568, 8477516.01679071, 8478532.05933847, 8479049.621478146, 8480047.229863599, 8480862.14122763, 8481011.151347926, 8498874.488618506, 8499664.252043845, 8500468.461582484, 8500632.180759732, 8501535.368989974, 8503270.417802833, 8504244.283934662, 8504496.171758806, 8504530.211066343, 8511578.479530908, 8521430.903140614, 8534497.26888754, 8534922.896919876, 8535197.534181325, 8535290.993305136, 8536647.850568946, 8537143.701015012, 8537626.171961924, 8538564.821884982, 8538972.051132942, 8540393.522994136, 8541078.275998106, 8541448.162214018, 8541827.50221049, 8542173.302287681, 8542855.82633419, 8543268.135701912, 8543572.754227396, 8544028.147467325, 8544252.58760534, 8547793.987787308, 8548254.134570511, 8548950.535931943, 8549047.959018324, 8549369.815868268, 8549545.89006796, 8549961.45566662, 8550267.446161069, 8550395.073445, 8550715.052042296, 8550736.983306812, 8550857.74355781, 8551234.853589114, 8551588.170097457, 8551878.174756428, 8551928.716040503, 8552197.21816437, 8552564.07524717, 8552657.409131197, 8553035.730521271, 8553191.254706612, 8554586.60484138, 8554684.857823161, 8554721.010284597, 8554873.144081492, 8555067.98270741, 8555096.590069877, 8555727.957055412, 8556724.067632059, 8558559.397416554, 8571489.06618001, 8579132.609862322, 8579546.875, 8580296.409611449, 8580541.491845889, 8580740.522209745, 8580778.871258952, 8580804.164104637, 8581101.869952025, 8581176.717932383, 8582422.253642956, 8583096.914101634, 8583290.92644396, 8583385.391758183, 8583484.114054121, 8583540.002649566, 8583837.906910578, 8584243.388537126, 8584271.483714435, 8584853.638691569, 8584897.67420133, 8584960.227180034, 8585077.648528086, 8585406.846102009, 8585680.070249747, 8586222.579850323, 8586519.255464653, 8586522.045685556, 8587183.284818072, 8587986.79123095, 8588045.648910074, 8588096.59759266, 8588221.957603287, 8588348.444843248, 8588435.774917783, 8588696.122819645, 8589096.476202315, 8589166.431537125, 8589300.284119388, 8589326.085095074, 8589858.906385193, 8590132.27773584, 8590666.435291985, 8590747.821745766, 8590854.348704772, 8591858.610849714, 8591950.880159834, 8592154.51447049, 8593524.645504856, 8595481.128370298, 8598470.683751887, 8599444.372720256, 8599539.056419818, 8602259.375, 8620091.337282272, 8621230.037743038, 8621368.683746813, 8621759.56652267, 8621790.319616819, 8621862.680106744, 8621953.893672979, 8623120.192750571, 8623233.093369754, 8623332.287743714, 8623417.176639894, 8623445.659563866, 8623704.567160014, 8624410.009064132, 8624550.238858633, 8625088.48291464, 8625562.860967781, 8625754.613105522, 8625870.779031632, 8626149.016180227, 8626230.741497666, 8626238.00897274, 8626370.788604608, 8626491.777213857, 8626949.77091219, 8627235.239385001, 8627316.768498491, 8627333.494237449, 8627498.110383807, 8627551.529798746, 8627556.993288077, 8627630.353505036, 8627660.077425659, 8628096.505058615, 8628441.868798759, 8628914.680309854, 8629022.721440593, 8629043.41969905, 8629545.762304658, 8629636.0502505, 8630749.714511815, 8630876.719916383, 8637529.518268446, 8638640.624627322, 8640502.109021548, 8656487.735800683, 8657448.634086376, 8657579.194073396, 8658167.275252927, 8658500.443108054, 8658823.64452995, 8659181.321677146, 8659331.751947317, 8659585.774464702, 8659972.99398875, 8660033.08734369, 8660620.165382052, 8660628.282715287, 8660674.678352473, 8660826.49987787, 8660836.754440008, 8660900.923747793, 8660912.47954959, 8660915.899567913, 8661006.345329141, 8661224.98082005, 8661286.913730891, 8661371.148572313, 8661609.891749665, 8661740.107880233, 8662169.67426449, 8662251.33054777, 8662259.137521183, 8662262.553616263, 8662328.48741021, 8662576.23691848, 8662625.421814727, 8662634.591838615, 8662858.514653707, 8662896.045837617, 8662928.125, 8662987.955116237, 8663025.867932152, 8663088.29819734, 8663213.731789138, 8663402.547476409, 8663444.238024134, 8663446.04280475, 8663499.51467074, 8663612.252646616, 8663763.02439436, 8663940.32622123, 8663971.95320215, 8664087.324346686, 8664706.25, 8664741.652037285, 8664878.704240413, 8665041.107219249, 8665119.311641635, 8665123.195217649, 8665273.597092865, 8665340.001463694, 8665340.381484518, 8665733.243894218, 8665773.53002181, 8665800.761955585, 8665908.510483017, 8665969.250236705, 8666034.589994866, 8666489.198908096, 8666499.63132924, 8666544.046363547, 8666720.636364419, 8666985.747393353, 8667145.517086735, 8667439.939642252, 8667495.294107292, 8667748.02717072, 8667755.268478956, 8667800.121565614, 8667860.9375, 8667911.018438946, 8667990.058071073, 8668953.043487482, 8669054.600780321, 8670042.46553337, 8670167.710139222, 8670639.14446406, 8670735.6741827, 8671580.386214763, 8671620.783318033, 8672627.20024599, 8673091.762534432, 8673188.724050801, 8673198.570155926, 8673575.851025084, 8677142.103503112, 8678426.200469082, 8679106.898448573, 8679158.516564356, 8679869.912794352, 8680466.305214575, 8681792.440910513, 8682856.136690274, 8686135.784622673, 8690302.733115112, 8697562.028343849, 8698672.269567573, 8699257.498099457, 8700887.063821618, 8700898.02676869, 8700898.186379796, 8701001.854388507, 8701040.17951548, 8701248.4375, 8701550.218765305, 8701669.245876355, 8701741.427634142, 8701914.776327232, 8701979.62288966, 8702010.085288838, 8702113.008047739, 8702235.034871938, 8702245.934770552, 8702290.163042678, 8702401.104454873, 8702465.888789827, 8702928.68201284, 8702982.24322034, 8703306.578196852, 8703452.769616093, 8703785.9375, 8703881.79946348, 8703905.709039142, 8704031.24849265, 8704096.051298441, 8704362.522447765, 8704453.775691712, 8704738.60957994, 8704873.225965358, 8705016.11707015, 8705061.929036103, 8705351.226811053, 8705852.516719164, 8706382.096124526, 8706615.51505898, 8706782.026996555, 8706864.870778585, 8706975.81660246, 8707136.499184746, 8707270.843928851, 8707393.321143365, 8709676.049264653, 8711074.284755433, 8711947.485687768, 8712856.314499494, 8712919.855819512, 8714875.75587279, 8717132.499309462, 8720994.763897862, 8722396.198499545, 8723423.935504891, 8726015.158949735, 8729508.238431808, 8729706.97097107, 8730008.110308774, 8730460.275885504, 8730618.167709462, 8731024.4287256, 8731193.495481925, 8731384.570946237, 8731532.536109896, 8731948.181029076, 8732058.420514725, 8732499.41291669, 8733276.81118754, 8733282.03264359, 8733678.491441196, 8743637.655854164, 8746584.436355531, 8752961.03019563, 8753997.400808897, 8754938.672490902, 8755244.506652825, 8756735.952970786, 8757485.40612404, 8758043.978324952, 8758254.56005433, 8758549.556215972, 8758608.563215025, 8758801.391502732, 8758867.654698605, 8759214.42310916, 8759317.358127, 8759546.424234224, 8759595.388242878, 8759600.946484113, 8759684.795555761, 8759797.672198633, 8759829.584914392, 8759981.858263308, 8760107.317133129, 8760111.649609063, 8760299.778158195, 8760341.208182972, 8760532.116803927, 8760925.049787346, 8760946.51954106, 8761018.639629181, 8761296.086245846, 8761353.631114133, 8761588.918262748, 8761734.023053072, 8761840.957913054, 8761864.0868182, 8761864.894909617, 8762009.013219194, 8762074.669390133, 8762164.660040963, 8762259.595830278, 8762267.809345597, 8762278.193620296, 8762328.177681547, 8762437.599126194, 8762567.67194331, 8762576.919938004, 8762797.711498745, 8763045.275828348, 8763154.87011376, 8763176.975188127, 8763316.62962618, 8763565.307007132, 8764042.668976227, 8764304.368957123, 8764363.917302655, 8764490.574929887, 8764564.862464145, 8764916.11449419, 8764968.855560921, 8765042.847501414, 8765436.370780207, 8766424.87808355, 8767127.66404394, 8767322.951616468, 8769631.080489513, 8797821.43659571, 8799666.969730768, 8811736.838725055, 8818335.677114066, 8820033.813284824, 8820137.26323693, 8822279.73918974, 8823394.205903208, 8824642.394098869, 8829671.34993174, 8830587.143248146, 8832902.3518196, 8832961.638564931, 8833186.564846866, 8833710.999146322, 8840342.43039937, 8847354.050160976, 8850644.714843944, 8909766.749153206, 8910603.856729144, 8914412.612067433, 8915421.33436587, 8926972.54698199, 8929123.593480263, 8931330.047565885, 8931723.18602986, 8932021.696937433, 8932263.197609274, 8935562.477454638, 8944331.872423964, 8945455.614215622, 8948037.673630854, 8948792.99790782, 8952662.648992522, 8952731.599902363, 8974802.732414851, 8976162.77256247, 8977134.619109597, 8977274.448494708, 8977714.028409898, 8980122.4086597, 8981323.842342487, 8981736.464694604, 8982867.52083964, 8983728.661745155, 8986109.36156938, 8989100.815868707, 8989383.32239604, 8989852.835180746, 8990857.769362405, 8991006.725231178, 8991019.514491094, 9001231.335342653, 9001685.351523424, 9002498.812648537, 9002538.49678812, 9002599.96235172, 9002809.570866192, 9002860.629236368, 9002988.461776534, 9003627.000318343, 9004283.306033166, 9004412.759509725, 9004482.08010822, 9005387.371292308, 9005596.834470602, 9005756.464206422, 9005833.034829173, 9006460.904304808, 9006593.470258107, 9006888.904553939, 9007407.593675578, 9007684.558222817, 9008162.930511512, 9008167.894241048, 9008516.901733154, 9009222.030655954, ...], [15.736894298466575, 13.639624246979345, 8.045330574076345, 14.145856767984654, 9.30601053518572, 18.203511662790905, 6.297778928877866, 20.088365255415532, 11.075092902328137, 10.466520110907217, 6.677982520628088, 25.50364643310979, 18.95191132956307, 8.934677968379539, 10.654942894592619, 18.59231449644294, 14.231525455399785, 12.471532548490929, 55.83151792708065, 12.646986117399134, 66.14012086644803, 6.616899241146007, 101.726792257154, 5.707528756965826, 5.185936670700261, 5.390782158978889, 8.195493636690443, 53.70377322072285, 10.352040921303049, 11.798232592508596, 26.380084761278425, 5.749171272571169, 8.766382244855505, 19.628737797250146, 7.203119166661498, 67.90536430208407, 8.877410583621279, 14.88888812227519, 25.74318171040004, 15.861162305772663, 13.968591593543636, 24.15134790853291, 8.95557471510123, 8.056686693282167, 12.359062109986278, 59.62309420215291, 67.22417958562272, 52.36676789755334, 26.67815293435611, 25.2835805159722, 17.19146198710806, 41.98960772712061, 7.501871347662012, 5.2654269366770885, 19.191598595614753, 20.144995568647026, 32.01913971931434, 111.11956435057633, 53.82746692781056, 51.368472691542635, 104.87395948138813, 20.719886198065314, 7.49805906135463, 17.465909314323284, 5.651060684656877, 62.080733708012914, 9.41569574566076, 10.15131174366269, 69.84729391678066, 58.504137523276064, 16.79934579410256, 15.358651583152206, 7.796604945817772, 30.119567828511506, 97.59995180029708, 6.593778233158697, 51.45925738533097, 52.841923298410535, 13.175608841482518, 25.16191079096003, 7.888784130726655, 8.72972134397121, 20.0765663449532, 44.02620870373006, 17.07778328320392, 5.516675251574549, 15.072964349054867, 108.78254695216907, 47.73348274688918, 44.942506622903274, 9.694841113091792, 28.890991447828068, 17.650841348844335, 47.278109116906116, 6.331756132972859, 5.5968392935900955, 8.645098559943538, 9.874568888475679, 16.775636001091872, 17.774646287429423, 135.8515854867297, 5.771815424340594, 12.689640672716873, 29.373442528296174, 71.31167288884895, 19.995227090330456, 28.030730404802128, 83.00367982487569, 18.784912824583923, 20.441668699544792, 35.7409998631639, 5.3678137539094415, 83.88921893864125, 18.24344556559019, 11.863797877094616, 48.07664061147808, 43.310755147379496, 109.82744363290868, 87.34751039639181, 15.714269125233322, 23.724553884339254, 17.561636250945806, 18.477125748484355, 9.192968596212955, 12.644626883137091, 19.646888748057005, 62.792888183856725, 25.162159050428947, 70.18010580688599, 35.4806630482018, 20.291908629262913, 36.77945483968017, 12.416885395906116, 8.175213414729587, 58.26840229626629, 8.009051462506767, 35.38846720146205, 10.418308619167588, 87.21522613816322, 12.637328708863418, 55.86771986584772, 7.023563530314463, 10.597628700751578, 5.034057251278601, 10.503370905704607, 89.91161888252653, 14.075867094599852, 20.27260043578385, 55.347030854464606, 5.324381076454653, 10.677080645104734, 52.86082832266264, 22.642757145414503, 12.52245300947912, 5.538421256426412, 23.05368707508333, 160.71493800302983, 44.444082716514856, 20.644697576338505, 28.58041660509643, 10.254971576641532, 17.704176598760736, 31.427934480909446, 133.2144502497859, 96.82827660357277, 105.7439590582275, 15.236105197828367, 6.495929619252651, 91.1444653162094, 127.7937439754797, 91.1187765233576, 6.257476037570201, 14.87013879334522, 8.91922720391816, 5.3068685776150115, 7.029489207877154, 6.183814794562949, 15.453307814049653, 9.370551282752894, 11.036095740174918, 12.987269828685875, 12.660168677436566, 72.7754440320089, 14.750414779425032, 28.321883764106428, 6.59195333167814, 5.6029119272302985, 39.60135419322394, 14.24339859779885, 16.209418881293526, 8.189646717938045, 22.14339392015904, 61.1249438963218, 56.65547604403875, 15.700204725543966, 14.52905244924446, 19.14218719724034, 6.050156708762368, 7.723041782157742, 11.068012385211953, 7.28285322760033, 15.523528029396356, 7.454814297641188, 5.785923918788213, 5.465771647867068, 13.017135512854207, 7.759827612164408, 7.290753382434129, 5.963646395390409, 8.239885547363127, 10.727624331807325, 5.213087447168191, 6.3590423014950535, 17.015569763837764, 10.402461072877287, 17.44458722578999, 7.690153443624695, 6.22662103382564, 17.043045378422086, 5.850566408413383, 13.173832386625925, 5.362016012312178, 15.517569185294505, 11.15857711791337, 6.313674727957045, 15.27097714821031, 16.684280663578477, 7.273462865545255, 7.138846366318298, 8.107402568246853, 6.648190422430183, 14.729800970908396, 9.006934255449348, 7.853978627062392, 6.348527049497128, 7.795302625963867, 5.405407936380128, 10.514319711988811, 5.284022490622842, 9.911111736999333, 5.958136758294244, 6.763051389769024, 17.16676185513221, 5.032842876673671, 10.74344897921012, 9.548868921736668, 8.570375122947237, 6.06611798759421, 16.587246799105106, 6.117750729691748, 7.681430991120545, 14.713587668662166, 5.54385857882715, 8.076496747175888, 5.356127575806958, 15.133718528700578, 5.8514135798966525, 13.166256368080404, 9.485788867583954, 14.032589429748572, 5.039706671925433, 6.177572353903323, 5.302654166620368, 9.51986184846401, 9.726076767797712, 12.82200753715491, 11.770569390171538, 8.734263871748945, 5.735617118716779, 19.921953992752076, 10.955097869512265, 6.2557619834227145, 13.177432422537821, 15.86586334147659, 5.443706054032554, 8.825418655487296, 15.68609831670922, 16.37486357748011, 90.43526075722833, 82.98436877001501, 51.06676661524972, 99.52378153971881, 26.471463131542002, 5.5580163919037195, 14.688746782158773, 7.335194411154878, 25.08198233211236, 5.8756233171287535, 17.10659111542377, 15.698410260984158, 20.161825623806024, 9.592397232326567, 20.15553812498139, 13.400918907476756, 30.125036350703308, 12.413526829509085, 10.300585093803981, 17.647797299327102, 65.78797745775965, 8.899755414592102, 15.103550809041923, 10.291121506752113, 13.51345778184506, 17.756853719105795, 5.106580054272702, 5.296614297318226, 9.626974062302228, 21.028613231468825, 12.758864881690279, 6.866189897560953, 13.277134102122476, 7.138901743199458, 8.40570141380147, 9.085116890655742, 14.260290337883893, 7.598362886241405, 6.962088169662539, 5.566889978417814, 6.886187121807894, 8.18418600137958, 8.162662725272472, 8.112709068091071, 16.66064367663727, 18.220725978612357, 11.624841999572483, 8.163041723948064, 7.17169457131758, 27.66360142250252, 13.881523110905992, 8.636164492124786, 214.8345309040183, 23.743582487862298, 6.918528397054541, 16.821106177258134, 19.260464642603864, 8.098202454244692, 19.418107241926684, 19.011184433387413, 6.153028291611607, 13.411745149453346, 19.269412316056076, 10.695441906249805, 21.64947734946466, 7.603096092486434, 7.8204920725914615, 5.958003508884891, 6.160530894736211, 6.813790698700943, 5.088839411645244, 9.782642401367626, 13.798673511626742, 28.177709688831598, 10.116111991685463, 12.77242370980468, 29.877396268982157, 7.202054677055773, 13.08939366618125, 6.297028453698975, 8.132557520216679, 14.543435517501095, 5.4548112581706825, 11.976556557230214, 7.3376990414876575, 11.107075159690439, 8.45339272963841, 20.29859264239194, 5.655524006763233, 7.643129651093421, 5.971365628205955, 12.461159544478585, 7.144559502079486, 8.475440551211017, 7.349565886029941, 7.714621657766463, 5.5754281102537755, 6.6446812197771425, 23.47146874434351, 17.008815904106182, 5.3926804075342805, 19.17542859734579, 15.378662069111117, 18.939675591896506, 10.797236090895357, 6.2190318083488405, 13.312319546165472, 9.448857954536802, 13.079137367720918, 131.03636400593226, 9.331801841817077, 13.246616127674763, 5.962768364561128, 13.1047140259107, 16.812833583644966, 6.503517753022352, 9.58741387613201, 12.992121519033535, 6.767444054259723, 14.418622177898184, 18.847971482375332, 6.226752203384665, 17.861839557548667, 6.298244139361498, 7.601260489145198, 16.973744647596277, 17.32807055773373, 12.14085227753875, 19.936765638712465, 15.62787732340119, 11.164540364106411, 10.923958992016267, 7.639592756690783, 5.789380954448244, 9.69320118812573, 19.320314700069773, 7.491122917540311, 6.541209231671206, 15.576238077395097, 5.929571782544816, 14.441751608940933, 6.046562733487725, 5.6838199926616, 20.11572520380203, 17.290358347531225, 17.055118075052548, 5.949823594439703, 10.088119857425362, 6.753241542897771, 7.232656537395134, 11.524773866480448, 8.873244532190322, 11.166086609904703, 8.001506016707763, 7.331548056276464, 48.94091154436916, 5.665431570969714, 15.599748371705656, 37.5890838893965, 12.75550913195587, 43.831049922408255, 29.327256059214292, 9.82849661319646, 17.203443239297883, 8.604892670055348, 12.326519224975936, 11.650048643007487, 16.58347282781899, 16.08079595645074, 26.80036216497912, 9.828494865829724, 20.79177764442302, 5.486634264505981, 10.790843208429907, 10.767846294112807, 22.006161070544803, 7.197276459984535, 22.449060561492736, 8.72076890678613, 6.235758270082944, 20.235014404717006, 9.574000881116296, 7.99190205599759, 8.02508022141483, 12.763877406122363, 16.62090027005426, 12.912113398966255, 24.25012696199355, 22.189301665807974, 27.617992294228443, 15.835885835070972, 17.23941354849822, 13.834521170857197, 5.41453226504676, 6.1797268037612385, 12.833867514906013, 14.017958382248692, 8.515757314065702, 16.790906525405532, 7.479029202604475, 9.653144040438768, 10.603506068095285, 11.3719690786209, 19.016112760787788, 20.00245542427332, 23.85810704025856, 9.221998577942445, 12.720446662220697, 15.209723736264607, 6.69804275013705, 5.995816506018559, 9.800261639588092, 8.478501892294267, 11.8508135024537, 12.747298760860982, 26.838253366382595, 29.661260858648518, 26.648097760013577, 22.26111857323113, 5.3804023394940135, 5.803584750566361, 14.28240179730489, 9.148501921234967, 10.834457725888985, 5.496379968165392, 6.695061618714765, 7.57712942434515, 10.755626147361584, 7.271729820604418, 5.781672984934128, 5.149904222817318, 11.060929635273844, 6.455494191180237, 19.926877042502618, 12.512436174660493, 5.893614177526865, 17.251696331191276, 5.860193620484549, 12.662428102121922, 12.985727148773726, 22.181286220642583, 29.436241572010616, 13.671532232484251, 11.731713011103645, 23.027955542491, 9.519015244967237, 7.4281902909829824, 8.389420872668177, 6.707260609421241, 10.265604737507836, 6.401518195766751, 11.296390122752904, 17.4598922834005, 7.3672600449817836, 5.64368095948943, 6.8364119641906065, 23.170080271550994, 11.804756691784082, 10.376240986516384, 9.958785291913651, 7.221754662793803, 5.273295240034919, 14.758031791683798, 5.2343448381781625, 5.657483471261195, 11.414645862767905, 5.692461471445191, 6.286466264901757, 9.108997522387208, 5.7692928132459755, 26.11164917773977, 16.04890962626285, 7.395204989259675, 5.882031718268644, 6.270041130760165, 10.380181722596976, 11.520902536488725, 8.014330976869793, 12.083269575470425, 10.454001273536733, 13.335280403606232, 17.719606985979983, 6.14369414296182, 5.96225233352085, 17.197156935564024, 8.88976924486275, 6.664558129040014, 14.685087734585718, 5.850261259712972, 12.366106835316044, 8.313065794033403, 9.886721548597869, 11.710092359439027, 5.614749733787914, 5.51381887991353, 25.016423085677737, 12.278808770011823, 18.287661887597977, 6.863884932962329, 12.427064979137107, 13.929823760718785, 10.108387785903442, 13.956372373677372, 14.337821915163468, 22.88212440607358, 15.027644790727322, 11.13346376928855, 14.221581086370406, 77.65109286525487, 21.845458871283807, 5.318636170664286, 10.970752223223585, 7.89745517954389, 5.059500679284759, 24.404685214904863, 14.914845970677504, 6.128380195304061, 21.92602812262886, 5.7262150946511685, 21.048622520605992, 7.511508084791642, 5.3210388948330785, 16.758135349470994, 10.60611018870884, 9.021102454241026, 8.578286368003754, 19.215271372716394, 11.668831810830783, 6.208819703181662, 6.1523627166372625, 16.63306610929513, 5.053625471929882, 6.14228916940804, 7.666160798332893, 6.328775450001649, 14.656289998436389, 15.515640189505397, 24.043686138285686, 11.259323298183817, 14.969572506764488, 14.35603316783574, 5.8764727501751395, 5.592356199017763, 10.121208257253596, 6.118152026669968, 13.388357559760355, 13.412832518899197, 13.231833009807497, 19.298947475736686, 6.968479075179194, 10.636453887245684, 27.01196909547625, 12.852940815393845, 14.320613960606495, 23.078736378832822, 34.563300989427056, 5.841970076512969, 19.983055113695823, 28.405269386359535, 36.57340594572364, 12.085974925238492, 16.468714833433594, 7.104143940705584, 15.72546718279527, 19.377402351379832, 15.675504333052151, 12.587440362559407, 6.468481885650926, 5.964244359884706, 6.407861462099453, 5.398059022950218, 15.39254447366229, 26.353287912014558, 7.849882048010934, 11.522777089992967, 13.113240210799212, 16.522450499811377, 16.445897769479124, 14.165159102734385, 9.873847159589046, 5.2756342181929785, 6.8695589437584506, 17.130819079451296, 30.68517407540836, 10.78756226308445, 12.81434075169153, 10.530383764669683, 18.383272457409856, 9.06932057590648, 9.30390464073695, 21.11847593643948, 18.2788526302028, 7.878716343266846, 14.839113876851858, 23.514762784609513, 9.914810608353106, 10.16681929684706, 23.371254601474337, 6.856756690976671, 7.151409140976914, 23.937896960593392, 7.163455722619457, 5.3361559866676815, 14.940089136776173, 12.104867459066297, 15.923492099572888, 11.449545719999275, 10.435104701850067, 5.465545640354929, 9.736458966739372, 9.51281648929044, 19.571064427432198, 12.014760663373808, 7.5453160884684465, 22.075742295661115, 11.586315323243541, 10.905283267193559, 15.578768356185591, 6.437825155856656, 14.708076981639055, 5.6608965401169336, 5.435002587067189, 5.2029012155870005, 8.437314003673999, 8.337640627615858, 9.315237930132993, 20.67362472277587, 6.626657898987066, 12.04445088935489, 19.15280561626605, 14.141538406402024, 14.125446950544347, 6.237653738804825, 5.71017880710711, 7.220092398483901, 9.070485914089971, 6.322004332408997, 11.484443027624991, 7.319127032848562, 7.891910702832389, 29.975832823176514, 11.922316266262326, 6.632335473008568, 12.656126318278375, 19.27999753128135, 8.00309059368616, 11.987041840051978, 7.89061181643737, 10.445328581791303, 13.612967823220313, 9.818003390269944, 5.913801659003861, 11.252182186582486, 7.5409187970911935, 43.907358562754894, 6.201836657578518, 9.87442935473229, 7.254256978911922, 5.74345968828044, 7.51789743784273, 18.695338934591824, 29.592482915198445, 14.08803869672878, 6.852799561243982, 15.306289162557652, 12.571970984153522, 7.876828104392724, 8.570097386597944, 7.68289368323107, 5.824142714653313, 9.037983146172092, 5.8362389637714065, 16.338541071092198, 41.06401426085578, 8.397812749276243, 18.558912590335954, 9.315899373515244, 21.507717235513034, 27.37951878899188, 8.351926756909764, 30.270190302092285, 15.259253912044741, 21.56287835930433, 27.010169480544022, 17.22012851345676, 6.820312906353952, 17.394293671975127, 5.9465753755976785, 6.234493634201754, 5.867553628360138, 17.101558019338043, 5.219980041580065, 21.77375379918226, 7.035237727752008, 5.621425381675107, 19.614514413176824, 26.348839706080305, 5.1942955511635045, 18.16414392066237, 18.534175259387695, 13.609386216998768, 12.388274670284234, 5.832971467256793, 10.955097869512265, 5.605642216820459, 13.63223306966166, 6.415612275097656, 5.213592216615111, 6.228276851337896, 5.1924500355646055, 5.51347306595241, 14.58678983675773, 9.591040262786898, 5.442965285076308, 33.147080459147375, 15.846495022773164, 17.24145455325983, 6.374226540191803, 18.54705275809353, 11.028196452849471, 12.454899711689821, 5.216561587819653, 5.750081693699852, 17.996567468146218, 10.475031679433005, 22.465538488042952, 16.052259904277317, 6.148004549103289, 19.17199586512657, 7.726416663889694, 23.068161943729773, 30.442868921481967, 6.576817875194569, 13.215246558586749, 21.611537390356215, 18.7754905249246, 7.127365020857987, 5.9981482037324145, 8.975705145477388, 6.066374293726583, 17.22000794978708, 6.654631316817622, 14.629465901079627, 6.027047970051487, 10.1664551954988, 7.092848318707092, 10.087899415955665, 6.621727808489568, 7.9279451141568495, 17.33414610208451, 6.874451906652546, 19.28093993844722, 13.289943109914702, 24.692559972381883, 17.923710458767633, 6.776452072708509, 8.058990840149232, 12.558012968608748, 5.68711148797053, 6.984340452152677, 12.867319530268375, 8.56874210297155, 13.419998112594554, 16.858403655882103, 18.650618947195877, 16.21267466836219, 5.88378723249514, 13.10618366295392, 6.4011187309472914, 7.056116136389273, 15.74494589069667, 6.709554005590183, 14.046464743219406, 7.839017769813882, 10.319291498343727, 15.982426412146143, 15.218422390827628, 11.7532340590766, 25.16626866686716, 11.224983116034423, 12.220153504605644, 5.4189629811496305, 7.46801675304868, 6.92459209784773, 14.914379059885935, 6.661864081556732, 15.889576556630134, 26.237172557759695, 13.482691140919188, 10.058586142859857, 6.245833156424734, 23.272242880927422, 7.739087537946793, 15.63434730472632, 32.73894917317593, 15.238284717763571, 8.859714243315311, 52.20724608305405, 10.110636895868911, 14.564404873268796, 12.233229593894103, 21.53944301508607, 5.568669251483278, 24.803227277442232, 9.878530270647088, 20.01134649545596, 11.206429699898335, 13.740144999765988, 14.53687836663793, 5.495986399190895, 12.023095213619264, 5.455609584565123, 15.88819010057994, 16.38287854478816, 15.035016264560365, 10.150699646033338, 10.605686673778976, 13.815209441421832, 9.893516439878757, 8.406913536242762, 12.996470130538647, 9.390107417059758, 9.376349220242904, 6.502743214651491, 21.562640162713528, 16.504712288658837, 40.604526125704055, 14.803552526825605, 15.686438919669813, 18.697239967094557, 20.934572422903813, 9.076256731449753, 13.825739348176882, 23.51673699361175, 9.211575857520684, 27.57154467076515, 10.113763482834086, 5.738635387635355, 6.50376713316027, 6.354348542327714, 14.79951720880305, 20.616380363616138, 13.43426546482341, 6.413529878962224, 7.0775941946064735, 13.497968401263476, 7.526328536257715, 7.380381479917006, 24.270298177036654, 19.230877456021943, 14.26095945404635, 15.14225587670124, 8.543337176852848, 20.58756763204858, 8.923669132343678, 13.736271874683085, 18.629909260421556, 14.676513091803539, 18.028744876995997, 7.62568732488495, 21.439561087884286, 12.730511135376137, 10.306493249828037, 7.4520331744866395, 6.918946225270647, 5.538544361097069, 6.4055550474616485, 8.677060009416552, 18.215459349575227, 16.151479785789153, 14.062470162893037, 6.728470907067514, 8.693485790894611, 36.7519610538053, 6.589298423006463, 20.237692952428365, 7.667267861799039, 5.3704800812563995, 15.541529355162165, 5.047490155505607, 13.63018280412368, 6.302259994277479, 7.187133987749015, 6.199946614008154, 11.074836605167496, 6.874939019058542, 7.232100448828546, 6.873527860833796, 16.384976865303244, 17.476316830588587, 11.414246224873779, 5.184808373984718, 12.030675545444772, 10.703028271972489, 5.8107953329131545, 8.554962055103255, 18.959335662756978, 15.277088714215298, 13.09658674429356, 17.963787520781402, 8.008480380714248, 6.262453468159342, 15.744592828106095, 10.677791815331844, 7.399515375354222, 11.888730740604442, 11.997985479756263, 16.03238367093602, 26.227196549064654, 14.469920653470831, 13.424284305522058, 11.479888060218952, 5.072961691512476, 7.112752905220712, 24.01300659678877, 25.7523633587283, 14.168266085131545, 6.107362302368972, 5.638313473922166, 10.010202058030856, 5.158759265549524, 20.18144939674929, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2999120.5066195736, 3007226.5393081685, 3009010.4516255595, 3118793.15847956, 3148478.094815871, 3332022.5295066433, 3348472.113270632, 3355092.105834784, 3382692.1535764467, 3395026.093868487, 3450174.55596719, 3459048.263364382, 3462452.325966056, 3498994.802831735, 3513443.4249098673, 3517456.1689247014, 3519404.0477118692, 3521249.15521999, 3547328.6216979763, 3565335.169296615, 3585629.6875, 3586564.8434407148, 3592085.3209111528, 3592950.012103772, 3594530.5495587327, 3594996.6723272866, 3608084.1986941714, 3637782.8125, 3637835.377266433, 3657651.95293308, 3667196.0078760157, 3715144.396421421, 3716735.184048161, 3730819.602821433, 3773029.989326365, 3789934.10246, 3802318.159405706, 3859342.173625341, 3865368.5914629716, 3900250.609595099, 3907041.906461001, 3922345.0432279543, 3966994.8318617805, 3968471.4134102496, 3991639.7293706266, 4039956.1929157786, 4040281.25, 4058338.4574161214, 4084821.7741477517, 4089711.7010539654, 4233236.424484294, 4235067.1875, 4246732.5232623555, 4248446.021336682, 4264491.421041003, 4359571.765405879, 4365178.125, 4365196.875, 4400448.4375, 4499057.121682501, 4506830.741833037, 4506875.981330845, 4507037.199522545, 4508679.312982955, 4517655.337766381, 4522062.508670381, 4545595.410534514, 4559463.332943824, 4572082.882302993, 4575501.5625, 4579944.164765382, 4581093.855300255, 4608495.817255218, 4624111.626798236, 4624818.74197985, 4627150.648415884, 4637141.537327446, 4656673.4375, 4742283.819136299, 4781596.058048615, 4781646.038533392, 4808272.628465842, 4861969.07867776, 4868343.476536133, 4871728.59150479, 4886205.9072794225, 4888531.284066473, 4899982.740782553, 4907594.178612663, 4916335.9375, 4926961.338168395, 4945005.907262361, 4947950.566180694, 4964260.9375, 5059645.806941269, 5171823.1222626325, 5171831.8715561675, 5261794.329374655, 5355625.4102526, 5363279.3286749255, 5394326.148918046, 5406740.038399716, 5414884.785297668, 5426920.197807561, 5455834.101427632, 5514816.522982009, 5549446.628980708, 5549520.3125, 5599890.394640615, 5608998.0246294895, 5664176.233014457, 5686125.736644243, 5686531.032507008, 5708053.7856167955, 5710447.299877088, 5712420.3125, 5714501.5625, 5739293.75, 5739428.62489567, 5766664.251472763, 5772945.010447085, 5784909.926232305, 5793122.572139317, 5804079.5191131495, 5805464.855788381, 5809735.230108968, 5851057.262951868, 5876191.990506234, 5892150.326983314, 5892643.75, 5901671.245521029, 5934691.015159789, 5944185.068190093, 5981595.095800038, 5984223.364858636, 6025540.060537614, 6030873.634902517, 6034127.618211747, 6065893.405165148, 6066571.10266583, 6072953.125, 6076299.614052056, 6076755.8821619125, 6076830.800968387, 6083169.872631579, 6087315.516586859, 6087318.5027030045, 6088499.9364231955, 6115553.750705822, 6134574.479021852, 6143688.753714475, 6160257.8125, 6161818.358010007, 6166830.4277822925, 6176964.172053673, 6177058.267380207, 6183020.9929367835, 6191436.719128076, 6251125.973027204, 6331004.232146244, 6332088.421818889, 6343780.2625229545, 6381654.6875, 6405109.375, 6513339.0625, 6570269.390990043, 6576092.262701657, 6597753.181151352, 6601798.8946768865, 6613976.5625, 6683284.503765811, 6719642.110158558, 6738420.217931248, 6840140.093697084, 6856697.377591442, 6875826.200713292, 6935238.37273306, 6936101.690594527, 6936401.608438594, 6939392.128088662, 6942347.808959207, 6945136.737419749, 6947454.8125338815, 7076329.292499507, 7089845.302157767, 7111320.950340243, 7114087.297006993, 7136687.964484949, 7172840.42893601, 7176206.547127463, 7190606.062091905, 7234740.187808234, 7268690.625, 7282998.824471274, 7283693.396827792, 7285156.137408132, 7352689.851911997, 7363604.3145593535, 7367886.257022945, 7377159.3364707, 7399028.705365114, 7410868.8947551185, 7412230.820099515, 7413079.300977122, 7414004.780482342, 7414593.057187275, 7418894.163144848, 7437425.60714447, 7462465.899208884, 7462731.160649036, 7464248.1655169185, 7464351.937700407, 7465550.693933882, 7467495.767641387, 7467922.918036836, 7468608.343809392, 7469687.734081457, 7469848.109436955, 7470280.147673573, 7470300.482517126, 7470535.727074905, 7471114.637426873, 7473147.193430096, 7475725.019660501, 7476228.484212713, 7477082.896335226, 7484461.1584317675, 7484914.610846977, 7486106.315761665, 7491471.520079308, 7492005.643573888, 7493464.005824401, 7495221.464607337, 7497274.081344772, 7497814.68019632, 7498495.814044479, 7502079.867701426, 7503949.568611313, 7508387.269582474, 7515084.9893001905, 7519256.462604582, 7522235.935219601, 7529077.045065362, 7534543.227223391, 7535022.092349385, 7537145.558956698, 7537313.00069389, 7538004.473438003, 7544580.061274921, 7545256.530388674, 7547201.773639284, 7547681.188888674, 7548314.2825934775, 7550018.3304203935, 7550675.408797483, 7553831.299530611, 7553905.180914005, 7554336.569491811, 7556206.427110612, 7556432.100350255, 7557498.328191174, 7557946.131080555, 7559434.744980762, 7559875.214777834, 7559923.870082201, 7560800.867529636, 7561432.436641344, 7561777.322903156, 7563911.3816029625, 7565487.974161196, 7568731.136690275, 7569267.096441958, 7572827.569824855, 7572893.9730719095, 7576138.634853833, 7577104.0216463385, 7582072.0575357415, 7586292.518782251, 7616504.6875, 7619042.1875, 7625847.984298014, 7628896.875, 7639678.830706001, 7641128.628302571, 7642174.932065611, 7643488.255158045, 7651338.8600303605, 7658124.237246421, 7665183.170601854, 7665671.742093308, 7666112.054697332, 7666944.043338285, 7667689.979578461, 7667935.46461238, 7668857.193783007, 7669696.882989872, 7670332.209947855, 7671328.897381085, 7671708.887764126, 7693822.878723412, 7743126.604373648, 7758380.639585136, 7833129.254531858, 7841559.122333286, 7841722.283405161, 7843390.802900661, 7920873.767529015, 7923342.22256778, 7923882.091460235, 7941762.993460103, 7980446.357043176, 8003475.065969717, 8006848.6561710145, 8010970.006122388, 8016707.621505695, 8018818.736501763, 8018863.419459373, 8022953.802485064, 8029344.33493605, 8038635.738724151, 8041341.945587088, 8044357.468574723, 8048675.388119315, 8049824.173469752, 8050065.921357829, 8062249.758850876, 8064753.312745533, 8067835.8924415205, 8069120.003517235, 8070827.169826759, 8088731.157468162, 8102698.997690026, 8121785.104880312, 8122631.66889204, 8123202.536854881, 8130005.875942558, 8137203.033926938, 8150128.896620666, 8154484.9770551585, 8156910.4684956735, 8160235.181391508, 8166455.954651546, 8176325.591845265, 8184442.1871085055, 8189216.188220747, 8189692.398609511, 8190044.418860744, 8190411.184258957, 8190497.942640251, 8190912.989444207, 8191057.476449995, 8191917.882160694, 8195386.739539469, 8195932.097091106, 8196573.4375, 8202901.860502886, 8206071.286255365, 8206122.107512215, 8206220.009429487, 8207394.08991844, 8207745.149444273, 8208758.295231033, 8208811.70086939, 8209765.611760294, 8209772.177668738, 8210113.43379543, 8210408.538707702, 8210845.42146483, 8210850.359820749, 8211438.213089151, 8211604.774682761, 8212370.653346821, 8213013.302088876, 8213476.860306518, 8214121.1552276425, 8214997.811669669, 8215507.4903176455, 8215941.078901069, 8216001.410118459, 8218427.3563765045, 8218754.797651577, 8226830.449274458, 8227259.152760785, 8231740.234009136, 8234694.807480408, 8236542.32321697, 8240195.9102147315, 8240899.840985414, 8241620.312971448, 8245016.658239368, 8245633.076919411, 8248286.9171455195, 8249055.104824915, 8249236.041494273, 8249565.913010425, 8249694.685871085, 8250115.644690765, 8250345.1681996565, 8250455.436505505, 8250709.048020136, 8250842.788253574, 8250889.304337993, 8251303.11953004, 8251750.775718822, 8251912.090074916, 8252114.626534998, 8252123.572924776, 8252318.246295563, 8253001.585937851, 8253156.115616824, 8253218.849410139, 8253471.536909858, 8262412.898982583, 8268524.9503039345, 8276776.241502951, 8277820.649257364, 8289012.657124432, 8290254.573883141, 8294869.708367521, 8297958.965875839, 8302894.945945606, 8305644.100949001, 8305861.442008353, 8309320.740932197, 8310079.806357177, 8312742.964693181, 8313299.948364516, 8313905.094298987, 8314647.114999196, 8316700.965938833, 8320300.024416225, 8321582.231497202, 8321785.118179045, 8321880.045744797, 8322736.8304574825, 8322761.1001041895, 8323076.5625, 8323530.527563821, 8323831.52403803, 8324409.943658855, 8324508.347179077, 8324620.801621666, 8324825.557050572, 8325115.990143984, 8325325.310311107, 8326589.435532703, 8326955.579071785, 8327471.781332839, 8327786.472177367, 8328757.239199389, 8351722.44185622, 8353221.64823724, 8354621.631890473, 8354776.11243854, 8355579.968305229, 8357697.055856826, 8367414.802251668, 8368109.122033268, 8371613.237266458, 8373536.211119812, 8379941.585345541, 8388152.595449787, 8388166.468544007, 8389801.97194398, 8389952.466566414, 8390326.963587407, 8390337.161580414, 8393074.0031831, 8393223.556053773, 8393242.683014676, 8393244.9882195, 8406384.788796771, 8409525.837311625, 8411107.12238299, 8411896.609581508, 8411962.90961772, 8424384.788161071, 8426159.018008772, 8439190.982481645, 8439943.386581542, 8440554.838345973, 8441722.647295725, 8442479.681835404, 8443648.14585902, 8445949.867714904, 8448336.762906553, 8448402.070646657, 8449568.41300501, 8450605.313241538, 8451064.569415286, 8453597.221115716, 8454146.793567892, 8455858.649142573, 8456868.975557009, 8457124.648919798, 8457163.69701359, 8457227.698691417, 8458197.956595888, 8459968.608508367, 8460099.81561594, 8460521.650469694, 8461406.053921698, 8461816.407379301, 8462051.209713403, 8462324.92723297, 8462498.185656441, 8463106.792415455, 8463271.428604333, 8463699.323679743, 8465366.78484386, 8465462.29542981, 8468474.91333677, 8472066.360866146, 8472252.583720623, 8472989.525953708, 8476134.980635185, 8476485.801269673, 8477067.775534568, 8477516.01679071, 8478532.05933847, 8479049.621478146, 8480047.229863599, 8480862.14122763, 8481011.151347926, 8498874.488618506, 8499664.252043845, 8500468.461582484, 8500632.180759732, 8501535.368989974, 8503270.417802833, 8504244.283934662, 8504496.171758806, 8504530.211066343, 8511578.479530908, 8521430.903140614, 8534497.26888754, 8534922.896919876, 8535197.534181325, 8535290.993305136, 8536647.850568946, 8537143.701015012, 8537626.171961924, 8538564.821884982, 8538972.051132942, 8540393.522994136, 8541078.275998106, 8541448.162214018, 8541827.50221049, 8542173.302287681, 8542855.82633419, 8543268.135701912, 8543572.754227396, 8544028.147467325, 8544252.58760534, 8547793.987787308, 8548254.134570511, 8548950.535931943, 8549047.959018324, 8549369.815868268, 8549545.89006796, 8549961.45566662, 8550267.446161069, 8550395.073445, 8550715.052042296, 8550736.983306812, 8550857.74355781, 8551234.853589114, 8551588.170097457, 8551878.174756428, 8551928.716040503, 8552197.21816437, 8552564.07524717, 8552657.409131197, 8553035.730521271, 8553191.254706612, 8554586.60484138, 8554684.857823161, 8554721.010284597, 8554873.144081492, 8555067.98270741, 8555096.590069877, 8555727.957055412, 8556724.067632059, 8558559.397416554, 8571489.06618001, 8579132.609862322, 8579546.875, 8580296.409611449, 8580541.491845889, 8580740.522209745, 8580778.871258952, 8580804.164104637, 8581101.869952025, 8581176.717932383, 8582422.253642956, 8583096.914101634, 8583290.92644396, 8583385.391758183, 8583484.114054121, 8583540.002649566, 8583837.906910578, 8584243.388537126, 8584271.483714435, 8584853.638691569, 8584897.67420133, 8584960.227180034, 8585077.648528086, 8585406.846102009, 8585680.070249747, 8586222.579850323, 8586519.255464653, 8586522.045685556, 8587183.284818072, 8587986.79123095, 8588045.648910074, 8588096.59759266, 8588221.957603287, 8588348.444843248, 8588435.774917783, 8588696.122819645, 8589096.476202315, 8589166.431537125, 8589300.284119388, 8589326.085095074, 8589858.906385193, 8590132.27773584, 8590666.435291985, 8590747.821745766, 8590854.348704772, 8591858.610849714, 8591950.880159834, 8592154.51447049, 8593524.645504856, 8595481.128370298, 8598470.683751887, 8599444.372720256, 8599539.056419818, 8602259.375, 8620091.337282272, 8621230.037743038, 8621368.683746813, 8621759.56652267, 8621790.319616819, 8621862.680106744, 8621953.893672979, 8623120.192750571, 8623233.093369754, 8623332.287743714, 8623417.176639894, 8623445.659563866, 8623704.567160014, 8624410.009064132, 8624550.238858633, 8625088.48291464, 8625562.860967781, 8625754.613105522, 8625870.779031632, 8626149.016180227, 8626230.741497666, 8626238.00897274, 8626370.788604608, 8626491.777213857, 8626949.77091219, 8627235.239385001, 8627316.768498491, 8627333.494237449, 8627498.110383807, 8627551.529798746, 8627556.993288077, 8627630.353505036, 8627660.077425659, 8628096.505058615, 8628441.868798759, 8628914.680309854, 8629022.721440593, 8629043.41969905, 8629545.762304658, 8629636.0502505, 8630749.714511815, 8630876.719916383, 8637529.518268446, 8638640.624627322, 8640502.109021548, 8656487.735800683, 8657448.634086376, 8657579.194073396, 8658167.275252927, 8658500.443108054, 8658823.64452995, 8659181.321677146, 8659331.751947317, 8659585.774464702, 8659972.99398875, 8660033.08734369, 8660620.165382052, 8660628.282715287, 8660674.678352473, 8660826.49987787, 8660836.754440008, 8660900.923747793, 8660912.47954959, 8660915.899567913, 8661006.345329141, 8661224.98082005, 8661286.913730891, 8661371.148572313, 8661609.891749665, 8661740.107880233, 8662169.67426449, 8662251.33054777, 8662259.137521183, 8662262.553616263, 8662328.48741021, 8662576.23691848, 8662625.421814727, 8662634.591838615, 8662858.514653707, 8662896.045837617, 8662928.125, 8662987.955116237, 8663025.867932152, 8663088.29819734, 8663213.731789138, 8663402.547476409, 8663444.238024134, 8663446.04280475, 8663499.51467074, 8663612.252646616, 8663763.02439436, 8663940.32622123, 8663971.95320215, 8664087.324346686, 8664706.25, 8664741.652037285, 8664878.704240413, 8665041.107219249, 8665119.311641635, 8665123.195217649, 8665273.597092865, 8665340.001463694, 8665340.381484518, 8665733.243894218, 8665773.53002181, 8665800.761955585, 8665908.510483017, 8665969.250236705, 8666034.589994866, 8666489.198908096, 8666499.63132924, 8666544.046363547, 8666720.636364419, 8666985.747393353, 8667145.517086735, 8667439.939642252, 8667495.294107292, 8667748.02717072, 8667755.268478956, 8667800.121565614, 8667860.9375, 8667911.018438946, 8667990.058071073, 8668953.043487482, 8669054.600780321, 8670042.46553337, 8670167.710139222, 8670639.14446406, 8670735.6741827, 8671580.386214763, 8671620.783318033, 8672627.20024599, 8673091.762534432, 8673188.724050801, 8673198.570155926, 8673575.851025084, 8677142.103503112, 8678426.200469082, 8679106.898448573, 8679158.516564356, 8679869.912794352, 8680466.305214575, 8681792.440910513, 8682856.136690274, 8686135.784622673, 8690302.733115112, 8697562.028343849, 8698672.269567573, 8699257.498099457, 8700887.063821618, 8700898.02676869, 8700898.186379796, 8701001.854388507, 8701040.17951548, 8701248.4375, 8701550.218765305, 8701669.245876355, 8701741.427634142, 8701914.776327232, 8701979.62288966, 8702010.085288838, 8702113.008047739, 8702235.034871938, 8702245.934770552, 8702290.163042678, 8702401.104454873, 8702465.888789827, 8702928.68201284, 8702982.24322034, 8703306.578196852, 8703452.769616093, 8703785.9375, 8703881.79946348, 8703905.709039142, 8704031.24849265, 8704096.051298441, 8704362.522447765, 8704453.775691712, 8704738.60957994, 8704873.225965358, 8705016.11707015, 8705061.929036103, 8705351.226811053, 8705852.516719164, 8706382.096124526, 8706615.51505898, 8706782.026996555, 8706864.870778585, 8706975.81660246, 8707136.499184746, 8707270.843928851, 8707393.321143365, 8709676.049264653, 8711074.284755433, 8711947.485687768, 8712856.314499494, 8712919.855819512, 8714875.75587279, 8717132.499309462, 8720994.763897862, 8722396.198499545, 8723423.935504891, 8726015.158949735, 8729508.238431808, 8729706.97097107, 8730008.110308774, 8730460.275885504, 8730618.167709462, 8731024.4287256, 8731193.495481925, 8731384.570946237, 8731532.536109896, 8731948.181029076, 8732058.420514725, 8732499.41291669, 8733276.81118754, 8733282.03264359, 8733678.491441196, 8743637.655854164, 8746584.436355531, 8752961.03019563, 8753997.400808897, 8754938.672490902, 8755244.506652825, 8756735.952970786, 8757485.40612404, 8758043.978324952, 8758254.56005433, 8758549.556215972, 8758608.563215025, 8758801.391502732, 8758867.654698605, 8759214.42310916, 8759317.358127, 8759546.424234224, 8759595.388242878, 8759600.946484113, 8759684.795555761, 8759797.672198633, 8759829.584914392, 8759981.858263308, 8760107.317133129, 8760111.649609063, 8760299.778158195, 8760341.208182972, 8760532.116803927, 8760925.049787346, 8760946.51954106, 8761018.639629181, 8761296.086245846, 8761353.631114133, 8761588.918262748, 8761734.023053072, 8761840.957913054, 8761864.0868182, 8761864.894909617, 8762009.013219194, 8762074.669390133, 8762164.660040963, 8762259.595830278, 8762267.809345597, 8762278.193620296, 8762328.177681547, 8762437.599126194, 8762567.67194331, 8762576.919938004, 8762797.711498745, 8763045.275828348, 8763154.87011376, 8763176.975188127, 8763316.62962618, 8763565.307007132, 8764042.668976227, 8764304.368957123, 8764363.917302655, 8764490.574929887, 8764564.862464145, 8764916.11449419, 8764968.855560921, 8765042.847501414, 8765436.370780207, 8766424.87808355, 8767127.66404394, 8767322.951616468, 8769631.080489513, 8797821.43659571, 8799666.969730768, 8811736.838725055, 8818335.677114066, 8820033.813284824, 8820137.26323693, 8822279.73918974, 8823394.205903208, 8824642.394098869, 8829671.34993174, 8830587.143248146, 8832902.3518196, 8832961.638564931, 8833186.564846866, 8833710.999146322, 8840342.43039937, 8847354.050160976, 8850644.714843944, 8909766.749153206, 8910603.856729144, 8914412.612067433, 8915421.33436587, 8926972.54698199, 8929123.593480263, 8931330.047565885, 8931723.18602986, 8932021.696937433, 8932263.197609274, 8935562.477454638, 8944331.872423964, 8945455.614215622, 8948037.673630854, 8948792.99790782, 8952662.648992522, 8952731.599902363, 8974802.732414851, 8976162.77256247, 8977134.619109597, 8977274.448494708, 8977714.028409898, 8980122.4086597, 8981323.842342487, 8981736.464694604, 8982867.52083964, 8983728.661745155, 8986109.36156938, 8989100.815868707, 8989383.32239604, 8989852.835180746, 8990857.769362405, 8991006.725231178, 8991019.514491094, 9001231.335342653, 9001685.351523424, 9002498.812648537, 9002538.49678812, 9002599.96235172, 9002809.570866192, 9002860.629236368, 9002988.461776534, 9003627.000318343, 9004283.306033166, 9004412.759509725, 9004482.08010822, 9005387.371292308, 9005596.834470602, 9005756.464206422, 9005833.034829173, 9006460.904304808, 9006593.470258107, 9006888.904553939, 9007407.593675578, 9007684.558222817, 9008162.930511512, 9008167.894241048, 9008516.901733154, 9009222.030655954, ...], [15.736894298466575, 13.639624246979345, 8.045330574076345, 14.145856767984654, 9.30601053518572, 18.203511662790905, 6.297778928877866, 20.088365255415532, 11.075092902328137, 10.466520110907217, 6.677982520628088, 25.50364643310979, 18.95191132956307, 8.934677968379539, 10.654942894592619, 18.59231449644294, 14.231525455399785, 12.471532548490929, 55.83151792708065, 12.646986117399134, 66.14012086644803, 6.616899241146007, 101.726792257154, 5.707528756965826, 5.185936670700261, 5.390782158978889, 8.195493636690443, 53.70377322072285, 10.352040921303049, 11.798232592508596, 26.380084761278425, 5.749171272571169, 8.766382244855505, 19.628737797250146, 7.203119166661498, 67.90536430208407, 8.877410583621279, 14.88888812227519, 25.74318171040004, 15.861162305772663, 13.968591593543636, 24.15134790853291, 8.95557471510123, 8.056686693282167, 12.359062109986278, 59.62309420215291, 67.22417958562272, 52.36676789755334, 26.67815293435611, 25.2835805159722, 17.19146198710806, 41.98960772712061, 7.501871347662012, 5.2654269366770885, 19.191598595614753, 20.144995568647026, 32.01913971931434, 111.11956435057633, 53.82746692781056, 51.368472691542635, 104.87395948138813, 20.719886198065314, 7.49805906135463, 17.465909314323284, 5.651060684656877, 62.080733708012914, 9.41569574566076, 10.15131174366269, 69.84729391678066, 58.504137523276064, 16.79934579410256, 15.358651583152206, 7.796604945817772, 30.119567828511506, 97.59995180029708, 6.593778233158697, 51.45925738533097, 52.841923298410535, 13.175608841482518, 25.16191079096003, 7.888784130726655, 8.72972134397121, 20.0765663449532, 44.02620870373006, 17.07778328320392, 5.516675251574549, 15.072964349054867, 108.78254695216907, 47.73348274688918, 44.942506622903274, 9.694841113091792, 28.890991447828068, 17.650841348844335, 47.278109116906116, 6.331756132972859, 5.5968392935900955, 8.645098559943538, 9.874568888475679, 16.775636001091872, 17.774646287429423, 135.8515854867297, 5.771815424340594, 12.689640672716873, 29.373442528296174, 71.31167288884895, 19.995227090330456, 28.030730404802128, 83.00367982487569, 18.784912824583923, 20.441668699544792, 35.7409998631639, 5.3678137539094415, 83.88921893864125, 18.24344556559019, 11.863797877094616, 48.07664061147808, 43.310755147379496, 109.82744363290868, 87.34751039639181, 15.714269125233322, 23.724553884339254, 17.561636250945806, 18.477125748484355, 9.192968596212955, 12.644626883137091, 19.646888748057005, 62.792888183856725, 25.162159050428947, 70.18010580688599, 35.4806630482018, 20.291908629262913, 36.77945483968017, 12.416885395906116, 8.175213414729587, 58.26840229626629, 8.009051462506767, 35.38846720146205, 10.418308619167588, 87.21522613816322, 12.637328708863418, 55.86771986584772, 7.023563530314463, 10.597628700751578, 5.034057251278601, 10.503370905704607, 89.91161888252653, 14.075867094599852, 20.27260043578385, 55.347030854464606, 5.324381076454653, 10.677080645104734, 52.86082832266264, 22.642757145414503, 12.52245300947912, 5.538421256426412, 23.05368707508333, 160.71493800302983, 44.444082716514856, 20.644697576338505, 28.58041660509643, 10.254971576641532, 17.704176598760736, 31.427934480909446, 133.2144502497859, 96.82827660357277, 105.7439590582275, 15.236105197828367, 6.495929619252651, 91.1444653162094, 127.7937439754797, 91.1187765233576, 6.257476037570201, 14.87013879334522, 8.91922720391816, 5.3068685776150115, 7.029489207877154, 6.183814794562949, 15.453307814049653, 9.370551282752894, 11.036095740174918, 12.987269828685875, 12.660168677436566, 72.7754440320089, 14.750414779425032, 28.321883764106428, 6.59195333167814, 5.6029119272302985, 39.60135419322394, 14.24339859779885, 16.209418881293526, 8.189646717938045, 22.14339392015904, 61.1249438963218, 56.65547604403875, 15.700204725543966, 14.52905244924446, 19.14218719724034, 6.050156708762368, 7.723041782157742, 11.068012385211953, 7.28285322760033, 15.523528029396356, 7.454814297641188, 5.785923918788213, 5.465771647867068, 13.017135512854207, 7.759827612164408, 7.290753382434129, 5.963646395390409, 8.239885547363127, 10.727624331807325, 5.213087447168191, 6.3590423014950535, 17.015569763837764, 10.402461072877287, 17.44458722578999, 7.690153443624695, 6.22662103382564, 17.043045378422086, 5.850566408413383, 13.173832386625925, 5.362016012312178, 15.517569185294505, 11.15857711791337, 6.313674727957045, 15.27097714821031, 16.684280663578477, 7.273462865545255, 7.138846366318298, 8.107402568246853, 6.648190422430183, 14.729800970908396, 9.006934255449348, 7.853978627062392, 6.348527049497128, 7.795302625963867, 5.405407936380128, 10.514319711988811, 5.284022490622842, 9.911111736999333, 5.958136758294244, 6.763051389769024, 17.16676185513221, 5.032842876673671, 10.74344897921012, 9.548868921736668, 8.570375122947237, 6.06611798759421, 16.587246799105106, 6.117750729691748, 7.681430991120545, 14.713587668662166, 5.54385857882715, 8.076496747175888, 5.356127575806958, 15.133718528700578, 5.8514135798966525, 13.166256368080404, 9.485788867583954, 14.032589429748572, 5.039706671925433, 6.177572353903323, 5.302654166620368, 9.51986184846401, 9.726076767797712, 12.82200753715491, 11.770569390171538, 8.734263871748945, 5.735617118716779, 19.921953992752076, 10.955097869512265, 6.2557619834227145, 13.177432422537821, 15.86586334147659, 5.443706054032554, 8.825418655487296, 15.68609831670922, 16.37486357748011, 90.43526075722833, 82.98436877001501, 51.06676661524972, 99.52378153971881, 26.471463131542002, 5.5580163919037195, 14.688746782158773, 7.335194411154878, 25.08198233211236, 5.8756233171287535, 17.10659111542377, 15.698410260984158, 20.161825623806024, 9.592397232326567, 20.15553812498139, 13.400918907476756, 30.125036350703308, 12.413526829509085, 10.300585093803981, 17.647797299327102, 65.78797745775965, 8.899755414592102, 15.103550809041923, 10.291121506752113, 13.51345778184506, 17.756853719105795, 5.106580054272702, 5.296614297318226, 9.626974062302228, 21.028613231468825, 12.758864881690279, 6.866189897560953, 13.277134102122476, 7.138901743199458, 8.40570141380147, 9.085116890655742, 14.260290337883893, 7.598362886241405, 6.962088169662539, 5.566889978417814, 6.886187121807894, 8.18418600137958, 8.162662725272472, 8.112709068091071, 16.66064367663727, 18.220725978612357, 11.624841999572483, 8.163041723948064, 7.17169457131758, 27.66360142250252, 13.881523110905992, 8.636164492124786, 214.8345309040183, 23.743582487862298, 6.918528397054541, 16.821106177258134, 19.260464642603864, 8.098202454244692, 19.418107241926684, 19.011184433387413, 6.153028291611607, 13.411745149453346, 19.269412316056076, 10.695441906249805, 21.64947734946466, 7.603096092486434, 7.8204920725914615, 5.958003508884891, 6.160530894736211, 6.813790698700943, 5.088839411645244, 9.782642401367626, 13.798673511626742, 28.177709688831598, 10.116111991685463, 12.77242370980468, 29.877396268982157, 7.202054677055773, 13.08939366618125, 6.297028453698975, 8.132557520216679, 14.543435517501095, 5.4548112581706825, 11.976556557230214, 7.3376990414876575, 11.107075159690439, 8.45339272963841, 20.29859264239194, 5.655524006763233, 7.643129651093421, 5.971365628205955, 12.461159544478585, 7.144559502079486, 8.475440551211017, 7.349565886029941, 7.714621657766463, 5.5754281102537755, 6.6446812197771425, 23.47146874434351, 17.008815904106182, 5.3926804075342805, 19.17542859734579, 15.378662069111117, 18.939675591896506, 10.797236090895357, 6.2190318083488405, 13.312319546165472, 9.448857954536802, 13.079137367720918, 131.03636400593226, 9.331801841817077, 13.246616127674763, 5.962768364561128, 13.1047140259107, 16.812833583644966, 6.503517753022352, 9.58741387613201, 12.992121519033535, 6.767444054259723, 14.418622177898184, 18.847971482375332, 6.226752203384665, 17.861839557548667, 6.298244139361498, 7.601260489145198, 16.973744647596277, 17.32807055773373, 12.14085227753875, 19.936765638712465, 15.62787732340119, 11.164540364106411, 10.923958992016267, 7.639592756690783, 5.789380954448244, 9.69320118812573, 19.320314700069773, 7.491122917540311, 6.541209231671206, 15.576238077395097, 5.929571782544816, 14.441751608940933, 6.046562733487725, 5.6838199926616, 20.11572520380203, 17.290358347531225, 17.055118075052548, 5.949823594439703, 10.088119857425362, 6.753241542897771, 7.232656537395134, 11.524773866480448, 8.873244532190322, 11.166086609904703, 8.001506016707763, 7.331548056276464, 48.94091154436916, 5.665431570969714, 15.599748371705656, 37.5890838893965, 12.75550913195587, 43.831049922408255, 29.327256059214292, 9.82849661319646, 17.203443239297883, 8.604892670055348, 12.326519224975936, 11.650048643007487, 16.58347282781899, 16.08079595645074, 26.80036216497912, 9.828494865829724, 20.79177764442302, 5.486634264505981, 10.790843208429907, 10.767846294112807, 22.006161070544803, 7.197276459984535, 22.449060561492736, 8.72076890678613, 6.235758270082944, 20.235014404717006, 9.574000881116296, 7.99190205599759, 8.02508022141483, 12.763877406122363, 16.62090027005426, 12.912113398966255, 24.25012696199355, 22.189301665807974, 27.617992294228443, 15.835885835070972, 17.23941354849822, 13.834521170857197, 5.41453226504676, 6.1797268037612385, 12.833867514906013, 14.017958382248692, 8.515757314065702, 16.790906525405532, 7.479029202604475, 9.653144040438768, 10.603506068095285, 11.3719690786209, 19.016112760787788, 20.00245542427332, 23.85810704025856, 9.221998577942445, 12.720446662220697, 15.209723736264607, 6.69804275013705, 5.995816506018559, 9.800261639588092, 8.478501892294267, 11.8508135024537, 12.747298760860982, 26.838253366382595, 29.661260858648518, 26.648097760013577, 22.26111857323113, 5.3804023394940135, 5.803584750566361, 14.28240179730489, 9.148501921234967, 10.834457725888985, 5.496379968165392, 6.695061618714765, 7.57712942434515, 10.755626147361584, 7.271729820604418, 5.781672984934128, 5.149904222817318, 11.060929635273844, 6.455494191180237, 19.926877042502618, 12.512436174660493, 5.893614177526865, 17.251696331191276, 5.860193620484549, 12.662428102121922, 12.985727148773726, 22.181286220642583, 29.436241572010616, 13.671532232484251, 11.731713011103645, 23.027955542491, 9.519015244967237, 7.4281902909829824, 8.389420872668177, 6.707260609421241, 10.265604737507836, 6.401518195766751, 11.296390122752904, 17.4598922834005, 7.3672600449817836, 5.64368095948943, 6.8364119641906065, 23.170080271550994, 11.804756691784082, 10.376240986516384, 9.958785291913651, 7.221754662793803, 5.273295240034919, 14.758031791683798, 5.2343448381781625, 5.657483471261195, 11.414645862767905, 5.692461471445191, 6.286466264901757, 9.108997522387208, 5.7692928132459755, 26.11164917773977, 16.04890962626285, 7.395204989259675, 5.882031718268644, 6.270041130760165, 10.380181722596976, 11.520902536488725, 8.014330976869793, 12.083269575470425, 10.454001273536733, 13.335280403606232, 17.719606985979983, 6.14369414296182, 5.96225233352085, 17.197156935564024, 8.88976924486275, 6.664558129040014, 14.685087734585718, 5.850261259712972, 12.366106835316044, 8.313065794033403, 9.886721548597869, 11.710092359439027, 5.614749733787914, 5.51381887991353, 25.016423085677737, 12.278808770011823, 18.287661887597977, 6.863884932962329, 12.427064979137107, 13.929823760718785, 10.108387785903442, 13.956372373677372, 14.337821915163468, 22.88212440607358, 15.027644790727322, 11.13346376928855, 14.221581086370406, 77.65109286525487, 21.845458871283807, 5.318636170664286, 10.970752223223585, 7.89745517954389, 5.059500679284759, 24.404685214904863, 14.914845970677504, 6.128380195304061, 21.92602812262886, 5.7262150946511685, 21.048622520605992, 7.511508084791642, 5.3210388948330785, 16.758135349470994, 10.60611018870884, 9.021102454241026, 8.578286368003754, 19.215271372716394, 11.668831810830783, 6.208819703181662, 6.1523627166372625, 16.63306610929513, 5.053625471929882, 6.14228916940804, 7.666160798332893, 6.328775450001649, 14.656289998436389, 15.515640189505397, 24.043686138285686, 11.259323298183817, 14.969572506764488, 14.35603316783574, 5.8764727501751395, 5.592356199017763, 10.121208257253596, 6.118152026669968, 13.388357559760355, 13.412832518899197, 13.231833009807497, 19.298947475736686, 6.968479075179194, 10.636453887245684, 27.01196909547625, 12.852940815393845, 14.320613960606495, 23.078736378832822, 34.563300989427056, 5.841970076512969, 19.983055113695823, 28.405269386359535, 36.57340594572364, 12.085974925238492, 16.468714833433594, 7.104143940705584, 15.72546718279527, 19.377402351379832, 15.675504333052151, 12.587440362559407, 6.468481885650926, 5.964244359884706, 6.407861462099453, 5.398059022950218, 15.39254447366229, 26.353287912014558, 7.849882048010934, 11.522777089992967, 13.113240210799212, 16.522450499811377, 16.445897769479124, 14.165159102734385, 9.873847159589046, 5.2756342181929785, 6.8695589437584506, 17.130819079451296, 30.68517407540836, 10.78756226308445, 12.81434075169153, 10.530383764669683, 18.383272457409856, 9.06932057590648, 9.30390464073695, 21.11847593643948, 18.2788526302028, 7.878716343266846, 14.839113876851858, 23.514762784609513, 9.914810608353106, 10.16681929684706, 23.371254601474337, 6.856756690976671, 7.151409140976914, 23.937896960593392, 7.163455722619457, 5.3361559866676815, 14.940089136776173, 12.104867459066297, 15.923492099572888, 11.449545719999275, 10.435104701850067, 5.465545640354929, 9.736458966739372, 9.51281648929044, 19.571064427432198, 12.014760663373808, 7.5453160884684465, 22.075742295661115, 11.586315323243541, 10.905283267193559, 15.578768356185591, 6.437825155856656, 14.708076981639055, 5.6608965401169336, 5.435002587067189, 5.2029012155870005, 8.437314003673999, 8.337640627615858, 9.315237930132993, 20.67362472277587, 6.626657898987066, 12.04445088935489, 19.15280561626605, 14.141538406402024, 14.125446950544347, 6.237653738804825, 5.71017880710711, 7.220092398483901, 9.070485914089971, 6.322004332408997, 11.484443027624991, 7.319127032848562, 7.891910702832389, 29.975832823176514, 11.922316266262326, 6.632335473008568, 12.656126318278375, 19.27999753128135, 8.00309059368616, 11.987041840051978, 7.89061181643737, 10.445328581791303, 13.612967823220313, 9.818003390269944, 5.913801659003861, 11.252182186582486, 7.5409187970911935, 43.907358562754894, 6.201836657578518, 9.87442935473229, 7.254256978911922, 5.74345968828044, 7.51789743784273, 18.695338934591824, 29.592482915198445, 14.08803869672878, 6.852799561243982, 15.306289162557652, 12.571970984153522, 7.876828104392724, 8.570097386597944, 7.68289368323107, 5.824142714653313, 9.037983146172092, 5.8362389637714065, 16.338541071092198, 41.06401426085578, 8.397812749276243, 18.558912590335954, 9.315899373515244, 21.507717235513034, 27.37951878899188, 8.351926756909764, 30.270190302092285, 15.259253912044741, 21.56287835930433, 27.010169480544022, 17.22012851345676, 6.820312906353952, 17.394293671975127, 5.9465753755976785, 6.234493634201754, 5.867553628360138, 17.101558019338043, 5.219980041580065, 21.77375379918226, 7.035237727752008, 5.621425381675107, 19.614514413176824, 26.348839706080305, 5.1942955511635045, 18.16414392066237, 18.534175259387695, 13.609386216998768, 12.388274670284234, 5.832971467256793, 10.955097869512265, 5.605642216820459, 13.63223306966166, 6.415612275097656, 5.213592216615111, 6.228276851337896, 5.1924500355646055, 5.51347306595241, 14.58678983675773, 9.591040262786898, 5.442965285076308, 33.147080459147375, 15.846495022773164, 17.24145455325983, 6.374226540191803, 18.54705275809353, 11.028196452849471, 12.454899711689821, 5.216561587819653, 5.750081693699852, 17.996567468146218, 10.475031679433005, 22.465538488042952, 16.052259904277317, 6.148004549103289, 19.17199586512657, 7.726416663889694, 23.068161943729773, 30.442868921481967, 6.576817875194569, 13.215246558586749, 21.611537390356215, 18.7754905249246, 7.127365020857987, 5.9981482037324145, 8.975705145477388, 6.066374293726583, 17.22000794978708, 6.654631316817622, 14.629465901079627, 6.027047970051487, 10.1664551954988, 7.092848318707092, 10.087899415955665, 6.621727808489568, 7.9279451141568495, 17.33414610208451, 6.874451906652546, 19.28093993844722, 13.289943109914702, 24.692559972381883, 17.923710458767633, 6.776452072708509, 8.058990840149232, 12.558012968608748, 5.68711148797053, 6.984340452152677, 12.867319530268375, 8.56874210297155, 13.419998112594554, 16.858403655882103, 18.650618947195877, 16.21267466836219, 5.88378723249514, 13.10618366295392, 6.4011187309472914, 7.056116136389273, 15.74494589069667, 6.709554005590183, 14.046464743219406, 7.839017769813882, 10.319291498343727, 15.982426412146143, 15.218422390827628, 11.7532340590766, 25.16626866686716, 11.224983116034423, 12.220153504605644, 5.4189629811496305, 7.46801675304868, 6.92459209784773, 14.914379059885935, 6.661864081556732, 15.889576556630134, 26.237172557759695, 13.482691140919188, 10.058586142859857, 6.245833156424734, 23.272242880927422, 7.739087537946793, 15.63434730472632, 32.73894917317593, 15.238284717763571, 8.859714243315311, 52.20724608305405, 10.110636895868911, 14.564404873268796, 12.233229593894103, 21.53944301508607, 5.568669251483278, 24.803227277442232, 9.878530270647088, 20.01134649545596, 11.206429699898335, 13.740144999765988, 14.53687836663793, 5.495986399190895, 12.023095213619264, 5.455609584565123, 15.88819010057994, 16.38287854478816, 15.035016264560365, 10.150699646033338, 10.605686673778976, 13.815209441421832, 9.893516439878757, 8.406913536242762, 12.996470130538647, 9.390107417059758, 9.376349220242904, 6.502743214651491, 21.562640162713528, 16.504712288658837, 40.604526125704055, 14.803552526825605, 15.686438919669813, 18.697239967094557, 20.934572422903813, 9.076256731449753, 13.825739348176882, 23.51673699361175, 9.211575857520684, 27.57154467076515, 10.113763482834086, 5.738635387635355, 6.50376713316027, 6.354348542327714, 14.79951720880305, 20.616380363616138, 13.43426546482341, 6.413529878962224, 7.0775941946064735, 13.497968401263476, 7.526328536257715, 7.380381479917006, 24.270298177036654, 19.230877456021943, 14.26095945404635, 15.14225587670124, 8.543337176852848, 20.58756763204858, 8.923669132343678, 13.736271874683085, 18.629909260421556, 14.676513091803539, 18.028744876995997, 7.62568732488495, 21.439561087884286, 12.730511135376137, 10.306493249828037, 7.4520331744866395, 6.918946225270647, 5.538544361097069, 6.4055550474616485, 8.677060009416552, 18.215459349575227, 16.151479785789153, 14.062470162893037, 6.728470907067514, 8.693485790894611, 36.7519610538053, 6.589298423006463, 20.237692952428365, 7.667267861799039, 5.3704800812563995, 15.541529355162165, 5.047490155505607, 13.63018280412368, 6.302259994277479, 7.187133987749015, 6.199946614008154, 11.074836605167496, 6.874939019058542, 7.232100448828546, 6.873527860833796, 16.384976865303244, 17.476316830588587, 11.414246224873779, 5.184808373984718, 12.030675545444772, 10.703028271972489, 5.8107953329131545, 8.554962055103255, 18.959335662756978, 15.277088714215298, 13.09658674429356, 17.963787520781402, 8.008480380714248, 6.262453468159342, 15.744592828106095, 10.677791815331844, 7.399515375354222, 11.888730740604442, 11.997985479756263, 16.03238367093602, 26.227196549064654, 14.469920653470831, 13.424284305522058, 11.479888060218952, 5.072961691512476, 7.112752905220712, 24.01300659678877, 25.7523633587283, 14.168266085131545, 6.107362302368972, 5.638313473922166, 10.010202058030856, 5.158759265549524, 20.18144939674929, ...])
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);
([2999120.5066195736, 3007226.5393081685, 3009010.4516255595, 3118793.15847956, 3148478.094815871, 3332022.5295066433, 3348472.113270632, 3355092.105834784, 3382692.1535764467, 3395026.093868487, 3450174.55596719, 3459048.263364382, 3462452.325966056, 3498994.802831735, 3513443.4249098673, 3517456.1689247014, 3519404.0477118692, 3521249.15521999, 3547328.6216979763, 3565335.169296615, 3585629.6875, 3586564.8434407148, 3592085.3209111528, 3592950.012103772, 3594530.5495587327, 3594996.6723272866, 3608084.1986941714, 3637782.8125, 3637835.377266433, 3657651.95293308, 3667196.0078760157, 3715144.396421421, 3716735.184048161, 3730819.602821433, 3773029.989326365, 3789934.10246, 3802318.159405706, 3859342.173625341, 3865368.5914629716, 3900250.609595099, 3907041.906461001, 3922345.0432279543, 3966994.8318617805, 3968471.4134102496, 3991639.7293706266, 4039956.1929157786, 4040281.25, 4058338.4574161214, 4084821.7741477517, 4089711.7010539654, 4233236.424484294, 4235067.1875, 4246732.5232623555, 4248446.021336682, 4264491.421041003, 4359571.765405879, 4365178.125, 4365196.875, 4400448.4375, 4499057.121682501, 4506830.741833037, 4506875.981330845, 4507037.199522545, 4508679.312982955, 4517655.337766381, 4522062.508670381, 4545595.410534514, 4559463.332943824, 4572082.882302993, 4575501.5625, 4579944.164765382, 4581093.855300255, 4608495.817255218, 4624111.626798236, 4624818.74197985, 4627150.648415884, 4637141.537327446, 4656673.4375, 4742283.819136299, 4781596.058048615, 4781646.038533392, 4808272.628465842, 4861969.07867776, 4868343.476536133, 4871728.59150479, 4886205.9072794225, 4888531.284066473, 4899982.740782553, 4907594.178612663, 4916335.9375, 4926961.338168395, 4945005.907262361, 4947950.566180694, 4964260.9375, 5059645.806941269, 5171823.1222626325, 5171831.8715561675, 5261794.329374655, 5355625.4102526, 5363279.3286749255, 5394326.148918046, 5406740.038399716, 5414884.785297668, 5426920.197807561, 5455834.101427632, 5514816.522982009, 5549446.628980708, 5549520.3125, 5599890.394640615, 5608998.0246294895, 5664176.233014457, 5686125.736644243, 5686531.032507008, 5708053.7856167955, 5710447.299877088, 5712420.3125, 5714501.5625, 5739293.75, 5739428.62489567, 5766664.251472763, 5772945.010447085, 5784909.926232305, 5793122.572139317, 5804079.5191131495, 5805464.855788381, 5809735.230108968, 5851057.262951868, 5876191.990506234, 5892150.326983314, 5892643.75, 5901671.245521029, 5934691.015159789, 5944185.068190093, 5981595.095800038, 5984223.364858636, 6025540.060537614, 6030873.634902517, 6034127.618211747, 6065893.405165148, 6066571.10266583, 6072953.125, 6076299.614052056, 6076755.8821619125, 6076830.800968387, 6083169.872631579, 6087315.516586859, 6087318.5027030045, 6088499.9364231955, 6115553.750705822, 6134574.479021852, 6143688.753714475, 6160257.8125, 6161818.358010007, 6166830.4277822925, 6176964.172053673, 6177058.267380207, 6183020.9929367835, 6191436.719128076, 6251125.973027204, 6331004.232146244, 6332088.421818889, 6343780.2625229545, 6381654.6875, 6405109.375, 6513339.0625, 6570269.390990043, 6576092.262701657, 6597753.181151352, 6601798.8946768865, 6613976.5625, 6683284.503765811, 6719642.110158558, 6738420.217931248, 6840140.093697084, 6856697.377591442, 6875826.200713292, 6935238.37273306, 6936101.690594527, 6936401.608438594, 6939392.128088662, 6942347.808959207, 6945136.737419749, 6947454.8125338815, 7076329.292499507, 7089845.302157767, 7111320.950340243, 7114087.297006993, 7136687.964484949, 7172840.42893601, 7176206.547127463, 7190606.062091905, 7234740.187808234, 7268690.625, 7282998.824471274, 7283693.396827792, 7285156.137408132, 7352689.851911997, 7363604.3145593535, 7367886.257022945, 7377159.3364707, 7399028.705365114, 7410868.8947551185, 7412230.820099515, 7413079.300977122, 7414004.780482342, 7414593.057187275, 7418894.163144848, 7437425.60714447, 7462465.899208884, 7462731.160649036, 7464248.1655169185, 7464351.937700407, 7465550.693933882, 7467495.767641387, 7467922.918036836, 7468608.343809392, 7469687.734081457, 7469848.109436955, 7470280.147673573, 7470300.482517126, 7470535.727074905, 7471114.637426873, 7473147.193430096, 7475725.019660501, 7476228.484212713, 7477082.896335226, 7484461.1584317675, 7484914.610846977, 7486106.315761665, 7491471.520079308, 7492005.643573888, 7493464.005824401, 7495221.464607337, 7497274.081344772, 7497814.68019632, 7498495.814044479, 7502079.867701426, 7503949.568611313, 7508387.269582474, 7515084.9893001905, 7519256.462604582, 7522235.935219601, 7529077.045065362, 7534543.227223391, 7535022.092349385, 7537145.558956698, 7537313.00069389, 7538004.473438003, 7544580.061274921, 7545256.530388674, 7547201.773639284, 7547681.188888674, 7548314.2825934775, 7550018.3304203935, 7550675.408797483, 7553831.299530611, 7553905.180914005, 7554336.569491811, 7556206.427110612, 7556432.100350255, 7557498.328191174, 7557946.131080555, 7559434.744980762, 7559875.214777834, 7559923.870082201, 7560800.867529636, 7561432.436641344, 7561777.322903156, 7563911.3816029625, 7565487.974161196, 7568731.136690275, 7569267.096441958, 7572827.569824855, 7572893.9730719095, 7576138.634853833, 7577104.0216463385, 7582072.0575357415, 7586292.518782251, 7616504.6875, 7619042.1875, 7625847.984298014, 7628896.875, 7639678.830706001, 7641128.628302571, 7642174.932065611, 7643488.255158045, 7651338.8600303605, 7658124.237246421, 7665183.170601854, 7665671.742093308, 7666112.054697332, 7666944.043338285, 7667689.979578461, 7667935.46461238, 7668857.193783007, 7669696.882989872, 7670332.209947855, 7671328.897381085, 7671708.887764126, 7693822.878723412, 7743126.604373648, 7758380.639585136, 7833129.254531858, 7841559.122333286, 7841722.283405161, 7843390.802900661, 7920873.767529015, 7923342.22256778, 7923882.091460235, 7941762.993460103, 7980446.357043176, 8003475.065969717, 8006848.6561710145, 8010970.006122388, 8016707.621505695, 8018818.736501763, 8018863.419459373, 8022953.802485064, 8029344.33493605, 8038635.738724151, 8041341.945587088, 8044357.468574723, 8048675.388119315, 8049824.173469752, 8050065.921357829, 8062249.758850876, 8064753.312745533, 8067835.8924415205, 8069120.003517235, 8070827.169826759, 8088731.157468162, 8102698.997690026, 8121785.104880312, 8122631.66889204, 8123202.536854881, 8130005.875942558, 8137203.033926938, 8150128.896620666, 8154484.9770551585, 8156910.4684956735, 8160235.181391508, 8166455.954651546, 8176325.591845265, 8184442.1871085055, 8189216.188220747, 8189692.398609511, 8190044.418860744, 8190411.184258957, 8190497.942640251, 8190912.989444207, 8191057.476449995, 8191917.882160694, 8195386.739539469, 8195932.097091106, 8196573.4375, 8202901.860502886, 8206071.286255365, 8206122.107512215, 8206220.009429487, 8207394.08991844, 8207745.149444273, 8208758.295231033, 8208811.70086939, 8209765.611760294, 8209772.177668738, 8210113.43379543, 8210408.538707702, 8210845.42146483, 8210850.359820749, 8211438.213089151, 8211604.774682761, 8212370.653346821, 8213013.302088876, 8213476.860306518, 8214121.1552276425, 8214997.811669669, 8215507.4903176455, 8215941.078901069, 8216001.410118459, 8218427.3563765045, 8218754.797651577, 8226830.449274458, 8227259.152760785, 8231740.234009136, 8234694.807480408, 8236542.32321697, 8240195.9102147315, 8240899.840985414, 8241620.312971448, 8245016.658239368, 8245633.076919411, 8248286.9171455195, 8249055.104824915, 8249236.041494273, 8249565.913010425, 8249694.685871085, 8250115.644690765, 8250345.1681996565, 8250455.436505505, 8250709.048020136, 8250842.788253574, 8250889.304337993, 8251303.11953004, 8251750.775718822, 8251912.090074916, 8252114.626534998, 8252123.572924776, 8252318.246295563, 8253001.585937851, 8253156.115616824, 8253218.849410139, 8253471.536909858, 8262412.898982583, 8268524.9503039345, 8276776.241502951, 8277820.649257364, 8289012.657124432, 8290254.573883141, 8294869.708367521, 8297958.965875839, 8302894.945945606, 8305644.100949001, 8305861.442008353, 8309320.740932197, 8310079.806357177, 8312742.964693181, 8313299.948364516, 8313905.094298987, 8314647.114999196, 8316700.965938833, 8320300.024416225, 8321582.231497202, 8321785.118179045, 8321880.045744797, 8322736.8304574825, 8322761.1001041895, 8323076.5625, 8323530.527563821, 8323831.52403803, 8324409.943658855, 8324508.347179077, 8324620.801621666, 8324825.557050572, 8325115.990143984, 8325325.310311107, 8326589.435532703, 8326955.579071785, 8327471.781332839, 8327786.472177367, 8328757.239199389, 8351722.44185622, 8353221.64823724, 8354621.631890473, 8354776.11243854, 8355579.968305229, 8357697.055856826, 8367414.802251668, 8368109.122033268, 8371613.237266458, 8373536.211119812, 8379941.585345541, 8388152.595449787, 8388166.468544007, 8389801.97194398, 8389952.466566414, 8390326.963587407, 8390337.161580414, 8393074.0031831, 8393223.556053773, 8393242.683014676, 8393244.9882195, 8406384.788796771, 8409525.837311625, 8411107.12238299, 8411896.609581508, 8411962.90961772, 8424384.788161071, 8426159.018008772, 8439190.982481645, 8439943.386581542, 8440554.838345973, 8441722.647295725, 8442479.681835404, 8443648.14585902, 8445949.867714904, 8448336.762906553, 8448402.070646657, 8449568.41300501, 8450605.313241538, 8451064.569415286, 8453597.221115716, 8454146.793567892, 8455858.649142573, 8456868.975557009, 8457124.648919798, 8457163.69701359, 8457227.698691417, 8458197.956595888, 8459968.608508367, 8460099.81561594, 8460521.650469694, 8461406.053921698, 8461816.407379301, 8462051.209713403, 8462324.92723297, 8462498.185656441, 8463106.792415455, 8463271.428604333, 8463699.323679743, 8465366.78484386, 8465462.29542981, 8468474.91333677, 8472066.360866146, 8472252.583720623, 8472989.525953708, 8476134.980635185, 8476485.801269673, 8477067.775534568, 8477516.01679071, 8478532.05933847, 8479049.621478146, 8480047.229863599, 8480862.14122763, 8481011.151347926, 8498874.488618506, 8499664.252043845, 8500468.461582484, 8500632.180759732, 8501535.368989974, 8503270.417802833, 8504244.283934662, 8504496.171758806, 8504530.211066343, 8511578.479530908, 8521430.903140614, 8534497.26888754, 8534922.896919876, 8535197.534181325, 8535290.993305136, 8536647.850568946, 8537143.701015012, 8537626.171961924, 8538564.821884982, 8538972.051132942, 8540393.522994136, 8541078.275998106, 8541448.162214018, 8541827.50221049, 8542173.302287681, 8542855.82633419, 8543268.135701912, 8543572.754227396, 8544028.147467325, 8544252.58760534, 8547793.987787308, 8548254.134570511, 8548950.535931943, 8549047.959018324, 8549369.815868268, 8549545.89006796, 8549961.45566662, 8550267.446161069, 8550395.073445, 8550715.052042296, 8550736.983306812, 8550857.74355781, 8551234.853589114, 8551588.170097457, 8551878.174756428, 8551928.716040503, 8552197.21816437, 8552564.07524717, 8552657.409131197, 8553035.730521271, 8553191.254706612, 8554586.60484138, 8554684.857823161, 8554721.010284597, 8554873.144081492, 8555067.98270741, 8555096.590069877, 8555727.957055412, 8556724.067632059, 8558559.397416554, 8571489.06618001, 8579132.609862322, 8579546.875, 8580296.409611449, 8580541.491845889, 8580740.522209745, 8580778.871258952, 8580804.164104637, 8581101.869952025, 8581176.717932383, 8582422.253642956, 8583096.914101634, 8583290.92644396, 8583385.391758183, 8583484.114054121, 8583540.002649566, 8583837.906910578, 8584243.388537126, 8584271.483714435, 8584853.638691569, 8584897.67420133, 8584960.227180034, 8585077.648528086, 8585406.846102009, 8585680.070249747, 8586222.579850323, 8586519.255464653, 8586522.045685556, 8587183.284818072, 8587986.79123095, 8588045.648910074, 8588096.59759266, 8588221.957603287, 8588348.444843248, 8588435.774917783, 8588696.122819645, 8589096.476202315, 8589166.431537125, 8589300.284119388, 8589326.085095074, 8589858.906385193, 8590132.27773584, 8590666.435291985, 8590747.821745766, 8590854.348704772, 8591858.610849714, 8591950.880159834, 8592154.51447049, 8593524.645504856, 8595481.128370298, 8598470.683751887, 8599444.372720256, 8599539.056419818, 8602259.375, 8620091.337282272, 8621230.037743038, 8621368.683746813, 8621759.56652267, 8621790.319616819, 8621862.680106744, 8621953.893672979, 8623120.192750571, 8623233.093369754, 8623332.287743714, 8623417.176639894, 8623445.659563866, 8623704.567160014, 8624410.009064132, 8624550.238858633, 8625088.48291464, 8625562.860967781, 8625754.613105522, 8625870.779031632, 8626149.016180227, 8626230.741497666, 8626238.00897274, 8626370.788604608, 8626491.777213857, 8626949.77091219, 8627235.239385001, 8627316.768498491, 8627333.494237449, 8627498.110383807, 8627551.529798746, 8627556.993288077, 8627630.353505036, 8627660.077425659, 8628096.505058615, 8628441.868798759, 8628914.680309854, 8629022.721440593, 8629043.41969905, 8629545.762304658, 8629636.0502505, 8630749.714511815, 8630876.719916383, 8637529.518268446, 8638640.624627322, 8640502.109021548, 8656487.735800683, 8657448.634086376, 8657579.194073396, 8658167.275252927, 8658500.443108054, 8658823.64452995, 8659181.321677146, 8659331.751947317, 8659585.774464702, 8659972.99398875, 8660033.08734369, 8660620.165382052, 8660628.282715287, 8660674.678352473, 8660826.49987787, 8660836.754440008, 8660900.923747793, 8660912.47954959, 8660915.899567913, 8661006.345329141, 8661224.98082005, 8661286.913730891, 8661371.148572313, 8661609.891749665, 8661740.107880233, 8662169.67426449, 8662251.33054777, 8662259.137521183, 8662262.553616263, 8662328.48741021, 8662576.23691848, 8662625.421814727, 8662634.591838615, 8662858.514653707, 8662896.045837617, 8662928.125, 8662987.955116237, 8663025.867932152, 8663088.29819734, 8663213.731789138, 8663402.547476409, 8663444.238024134, 8663446.04280475, 8663499.51467074, 8663612.252646616, 8663763.02439436, 8663940.32622123, 8663971.95320215, 8664087.324346686, 8664706.25, 8664741.652037285, 8664878.704240413, 8665041.107219249, 8665119.311641635, 8665123.195217649, 8665273.597092865, 8665340.001463694, 8665340.381484518, 8665733.243894218, 8665773.53002181, 8665800.761955585, 8665908.510483017, 8665969.250236705, 8666034.589994866, 8666489.198908096, 8666499.63132924, 8666544.046363547, 8666720.636364419, 8666985.747393353, 8667145.517086735, 8667439.939642252, 8667495.294107292, 8667748.02717072, 8667755.268478956, 8667800.121565614, 8667860.9375, 8667911.018438946, 8667990.058071073, 8668953.043487482, 8669054.600780321, 8670042.46553337, 8670167.710139222, 8670639.14446406, 8670735.6741827, 8671580.386214763, 8671620.783318033, 8672627.20024599, 8673091.762534432, 8673188.724050801, 8673198.570155926, 8673575.851025084, 8677142.103503112, 8678426.200469082, 8679106.898448573, 8679158.516564356, 8679869.912794352, 8680466.305214575, 8681792.440910513, 8682856.136690274, 8686135.784622673, 8690302.733115112, 8697562.028343849, 8698672.269567573, 8699257.498099457, 8700887.063821618, 8700898.02676869, 8700898.186379796, 8701001.854388507, 8701040.17951548, 8701248.4375, 8701550.218765305, 8701669.245876355, 8701741.427634142, 8701914.776327232, 8701979.62288966, 8702010.085288838, 8702113.008047739, 8702235.034871938, 8702245.934770552, 8702290.163042678, 8702401.104454873, 8702465.888789827, 8702928.68201284, 8702982.24322034, 8703306.578196852, 8703452.769616093, 8703785.9375, 8703881.79946348, 8703905.709039142, 8704031.24849265, 8704096.051298441, 8704362.522447765, 8704453.775691712, 8704738.60957994, 8704873.225965358, 8705016.11707015, 8705061.929036103, 8705351.226811053, 8705852.516719164, 8706382.096124526, 8706615.51505898, 8706782.026996555, 8706864.870778585, 8706975.81660246, 8707136.499184746, 8707270.843928851, 8707393.321143365, 8709676.049264653, 8711074.284755433, 8711947.485687768, 8712856.314499494, 8712919.855819512, 8714875.75587279, 8717132.499309462, 8720994.763897862, 8722396.198499545, 8723423.935504891, 8726015.158949735, 8729508.238431808, 8729706.97097107, 8730008.110308774, 8730460.275885504, 8730618.167709462, 8731024.4287256, 8731193.495481925, 8731384.570946237, 8731532.536109896, 8731948.181029076, 8732058.420514725, 8732499.41291669, 8733276.81118754, 8733282.03264359, 8733678.491441196, 8743637.655854164, 8746584.436355531, 8752961.03019563, 8753997.400808897, 8754938.672490902, 8755244.506652825, 8756735.952970786, 8757485.40612404, 8758043.978324952, 8758254.56005433, 8758549.556215972, 8758608.563215025, 8758801.391502732, 8758867.654698605, 8759214.42310916, 8759317.358127, 8759546.424234224, 8759595.388242878, 8759600.946484113, 8759684.795555761, 8759797.672198633, 8759829.584914392, 8759981.858263308, 8760107.317133129, 8760111.649609063, 8760299.778158195, 8760341.208182972, 8760532.116803927, 8760925.049787346, 8760946.51954106, 8761018.639629181, 8761296.086245846, 8761353.631114133, 8761588.918262748, 8761734.023053072, 8761840.957913054, 8761864.0868182, 8761864.894909617, 8762009.013219194, 8762074.669390133, 8762164.660040963, 8762259.595830278, 8762267.809345597, 8762278.193620296, 8762328.177681547, 8762437.599126194, 8762567.67194331, 8762576.919938004, 8762797.711498745, 8763045.275828348, 8763154.87011376, 8763176.975188127, 8763316.62962618, 8763565.307007132, 8764042.668976227, 8764304.368957123, 8764363.917302655, 8764490.574929887, 8764564.862464145, 8764916.11449419, 8764968.855560921, 8765042.847501414, 8765436.370780207, 8766424.87808355, 8767127.66404394, 8767322.951616468, 8769631.080489513, 8797821.43659571, 8799666.969730768, 8811736.838725055, 8818335.677114066, 8820033.813284824, 8820137.26323693, 8822279.73918974, 8823394.205903208, 8824642.394098869, 8829671.34993174, 8830587.143248146, 8832902.3518196, 8832961.638564931, 8833186.564846866, 8833710.999146322, 8840342.43039937, 8847354.050160976, 8850644.714843944, 8909766.749153206, 8910603.856729144, 8914412.612067433, 8915421.33436587, 8926972.54698199, 8929123.593480263, 8931330.047565885, 8931723.18602986, 8932021.696937433, 8932263.197609274, 8935562.477454638, 8944331.872423964, 8945455.614215622, 8948037.673630854, 8948792.99790782, 8952662.648992522, 8952731.599902363, 8974802.732414851, 8976162.77256247, 8977134.619109597, 8977274.448494708, 8977714.028409898, 8980122.4086597, 8981323.842342487, 8981736.464694604, 8982867.52083964, 8983728.661745155, 8986109.36156938, 8989100.815868707, 8989383.32239604, 8989852.835180746, 8990857.769362405, 8991006.725231178, 8991019.514491094, 9001231.335342653, 9001685.351523424, 9002498.812648537, 9002538.49678812, 9002599.96235172, 9002809.570866192, 9002860.629236368, 9002988.461776534, 9003627.000318343, 9004283.306033166, 9004412.759509725, 9004482.08010822, 9005387.371292308, 9005596.834470602, 9005756.464206422, 9005833.034829173, 9006460.904304808, 9006593.470258107, 9006888.904553939, 9007407.593675578, 9007684.558222817, 9008162.930511512, 9008167.894241048, 9008516.901733154, 9009222.030655954, ...], [15.736894298466575, 13.639624246979345, 8.045330574076345, 14.145856767984654, 9.30601053518572, 18.203511662790905, 6.297778928877866, 20.088365255415532, 11.075092902328137, 10.466520110907217, 6.677982520628088, 25.50364643310979, 18.95191132956307, 8.934677968379539, 10.654942894592619, 18.59231449644294, 14.231525455399785, 12.471532548490929, 55.83151792708065, 12.646986117399134, 66.14012086644803, 6.616899241146007, 101.726792257154, 5.707528756965826, 5.185936670700261, 5.390782158978889, 8.195493636690443, 53.70377322072285, 10.352040921303049, 11.798232592508596, 26.380084761278425, 5.749171272571169, 8.766382244855505, 19.628737797250146, 7.203119166661498, 67.90536430208407, 8.877410583621279, 14.88888812227519, 25.74318171040004, 15.861162305772663, 13.968591593543636, 24.15134790853291, 8.95557471510123, 8.056686693282167, 12.359062109986278, 59.62309420215291, 67.22417958562272, 52.36676789755334, 26.67815293435611, 25.2835805159722, 17.19146198710806, 41.98960772712061, 7.501871347662012, 5.2654269366770885, 19.191598595614753, 20.144995568647026, 32.01913971931434, 111.11956435057633, 53.82746692781056, 51.368472691542635, 104.87395948138813, 20.719886198065314, 7.49805906135463, 17.465909314323284, 5.651060684656877, 62.080733708012914, 9.41569574566076, 10.15131174366269, 69.84729391678066, 58.504137523276064, 16.79934579410256, 15.358651583152206, 7.796604945817772, 30.119567828511506, 97.59995180029708, 6.593778233158697, 51.45925738533097, 52.841923298410535, 13.175608841482518, 25.16191079096003, 7.888784130726655, 8.72972134397121, 20.0765663449532, 44.02620870373006, 17.07778328320392, 5.516675251574549, 15.072964349054867, 108.78254695216907, 47.73348274688918, 44.942506622903274, 9.694841113091792, 28.890991447828068, 17.650841348844335, 47.278109116906116, 6.331756132972859, 5.5968392935900955, 8.645098559943538, 9.874568888475679, 16.775636001091872, 17.774646287429423, 135.8515854867297, 5.771815424340594, 12.689640672716873, 29.373442528296174, 71.31167288884895, 19.995227090330456, 28.030730404802128, 83.00367982487569, 18.784912824583923, 20.441668699544792, 35.7409998631639, 5.3678137539094415, 83.88921893864125, 18.24344556559019, 11.863797877094616, 48.07664061147808, 43.310755147379496, 109.82744363290868, 87.34751039639181, 15.714269125233322, 23.724553884339254, 17.561636250945806, 18.477125748484355, 9.192968596212955, 12.644626883137091, 19.646888748057005, 62.792888183856725, 25.162159050428947, 70.18010580688599, 35.4806630482018, 20.291908629262913, 36.77945483968017, 12.416885395906116, 8.175213414729587, 58.26840229626629, 8.009051462506767, 35.38846720146205, 10.418308619167588, 87.21522613816322, 12.637328708863418, 55.86771986584772, 7.023563530314463, 10.597628700751578, 5.034057251278601, 10.503370905704607, 89.91161888252653, 14.075867094599852, 20.27260043578385, 55.347030854464606, 5.324381076454653, 10.677080645104734, 52.86082832266264, 22.642757145414503, 12.52245300947912, 5.538421256426412, 23.05368707508333, 160.71493800302983, 44.444082716514856, 20.644697576338505, 28.58041660509643, 10.254971576641532, 17.704176598760736, 31.427934480909446, 133.2144502497859, 96.82827660357277, 105.7439590582275, 15.236105197828367, 6.495929619252651, 91.1444653162094, 127.7937439754797, 91.1187765233576, 6.257476037570201, 14.87013879334522, 8.91922720391816, 5.3068685776150115, 7.029489207877154, 6.183814794562949, 15.453307814049653, 9.370551282752894, 11.036095740174918, 12.987269828685875, 12.660168677436566, 72.7754440320089, 14.750414779425032, 28.321883764106428, 6.59195333167814, 5.6029119272302985, 39.60135419322394, 14.24339859779885, 16.209418881293526, 8.189646717938045, 22.14339392015904, 61.1249438963218, 56.65547604403875, 15.700204725543966, 14.52905244924446, 19.14218719724034, 6.050156708762368, 7.723041782157742, 11.068012385211953, 7.28285322760033, 15.523528029396356, 7.454814297641188, 5.785923918788213, 5.465771647867068, 13.017135512854207, 7.759827612164408, 7.290753382434129, 5.963646395390409, 8.239885547363127, 10.727624331807325, 5.213087447168191, 6.3590423014950535, 17.015569763837764, 10.402461072877287, 17.44458722578999, 7.690153443624695, 6.22662103382564, 17.043045378422086, 5.850566408413383, 13.173832386625925, 5.362016012312178, 15.517569185294505, 11.15857711791337, 6.313674727957045, 15.27097714821031, 16.684280663578477, 7.273462865545255, 7.138846366318298, 8.107402568246853, 6.648190422430183, 14.729800970908396, 9.006934255449348, 7.853978627062392, 6.348527049497128, 7.795302625963867, 5.405407936380128, 10.514319711988811, 5.284022490622842, 9.911111736999333, 5.958136758294244, 6.763051389769024, 17.16676185513221, 5.032842876673671, 10.74344897921012, 9.548868921736668, 8.570375122947237, 6.06611798759421, 16.587246799105106, 6.117750729691748, 7.681430991120545, 14.713587668662166, 5.54385857882715, 8.076496747175888, 5.356127575806958, 15.133718528700578, 5.8514135798966525, 13.166256368080404, 9.485788867583954, 14.032589429748572, 5.039706671925433, 6.177572353903323, 5.302654166620368, 9.51986184846401, 9.726076767797712, 12.82200753715491, 11.770569390171538, 8.734263871748945, 5.735617118716779, 19.921953992752076, 10.955097869512265, 6.2557619834227145, 13.177432422537821, 15.86586334147659, 5.443706054032554, 8.825418655487296, 15.68609831670922, 16.37486357748011, 90.43526075722833, 82.98436877001501, 51.06676661524972, 99.52378153971881, 26.471463131542002, 5.5580163919037195, 14.688746782158773, 7.335194411154878, 25.08198233211236, 5.8756233171287535, 17.10659111542377, 15.698410260984158, 20.161825623806024, 9.592397232326567, 20.15553812498139, 13.400918907476756, 30.125036350703308, 12.413526829509085, 10.300585093803981, 17.647797299327102, 65.78797745775965, 8.899755414592102, 15.103550809041923, 10.291121506752113, 13.51345778184506, 17.756853719105795, 5.106580054272702, 5.296614297318226, 9.626974062302228, 21.028613231468825, 12.758864881690279, 6.866189897560953, 13.277134102122476, 7.138901743199458, 8.40570141380147, 9.085116890655742, 14.260290337883893, 7.598362886241405, 6.962088169662539, 5.566889978417814, 6.886187121807894, 8.18418600137958, 8.162662725272472, 8.112709068091071, 16.66064367663727, 18.220725978612357, 11.624841999572483, 8.163041723948064, 7.17169457131758, 27.66360142250252, 13.881523110905992, 8.636164492124786, 214.8345309040183, 23.743582487862298, 6.918528397054541, 16.821106177258134, 19.260464642603864, 8.098202454244692, 19.418107241926684, 19.011184433387413, 6.153028291611607, 13.411745149453346, 19.269412316056076, 10.695441906249805, 21.64947734946466, 7.603096092486434, 7.8204920725914615, 5.958003508884891, 6.160530894736211, 6.813790698700943, 5.088839411645244, 9.782642401367626, 13.798673511626742, 28.177709688831598, 10.116111991685463, 12.77242370980468, 29.877396268982157, 7.202054677055773, 13.08939366618125, 6.297028453698975, 8.132557520216679, 14.543435517501095, 5.4548112581706825, 11.976556557230214, 7.3376990414876575, 11.107075159690439, 8.45339272963841, 20.29859264239194, 5.655524006763233, 7.643129651093421, 5.971365628205955, 12.461159544478585, 7.144559502079486, 8.475440551211017, 7.349565886029941, 7.714621657766463, 5.5754281102537755, 6.6446812197771425, 23.47146874434351, 17.008815904106182, 5.3926804075342805, 19.17542859734579, 15.378662069111117, 18.939675591896506, 10.797236090895357, 6.2190318083488405, 13.312319546165472, 9.448857954536802, 13.079137367720918, 131.03636400593226, 9.331801841817077, 13.246616127674763, 5.962768364561128, 13.1047140259107, 16.812833583644966, 6.503517753022352, 9.58741387613201, 12.992121519033535, 6.767444054259723, 14.418622177898184, 18.847971482375332, 6.226752203384665, 17.861839557548667, 6.298244139361498, 7.601260489145198, 16.973744647596277, 17.32807055773373, 12.14085227753875, 19.936765638712465, 15.62787732340119, 11.164540364106411, 10.923958992016267, 7.639592756690783, 5.789380954448244, 9.69320118812573, 19.320314700069773, 7.491122917540311, 6.541209231671206, 15.576238077395097, 5.929571782544816, 14.441751608940933, 6.046562733487725, 5.6838199926616, 20.11572520380203, 17.290358347531225, 17.055118075052548, 5.949823594439703, 10.088119857425362, 6.753241542897771, 7.232656537395134, 11.524773866480448, 8.873244532190322, 11.166086609904703, 8.001506016707763, 7.331548056276464, 48.94091154436916, 5.665431570969714, 15.599748371705656, 37.5890838893965, 12.75550913195587, 43.831049922408255, 29.327256059214292, 9.82849661319646, 17.203443239297883, 8.604892670055348, 12.326519224975936, 11.650048643007487, 16.58347282781899, 16.08079595645074, 26.80036216497912, 9.828494865829724, 20.79177764442302, 5.486634264505981, 10.790843208429907, 10.767846294112807, 22.006161070544803, 7.197276459984535, 22.449060561492736, 8.72076890678613, 6.235758270082944, 20.235014404717006, 9.574000881116296, 7.99190205599759, 8.02508022141483, 12.763877406122363, 16.62090027005426, 12.912113398966255, 24.25012696199355, 22.189301665807974, 27.617992294228443, 15.835885835070972, 17.23941354849822, 13.834521170857197, 5.41453226504676, 6.1797268037612385, 12.833867514906013, 14.017958382248692, 8.515757314065702, 16.790906525405532, 7.479029202604475, 9.653144040438768, 10.603506068095285, 11.3719690786209, 19.016112760787788, 20.00245542427332, 23.85810704025856, 9.221998577942445, 12.720446662220697, 15.209723736264607, 6.69804275013705, 5.995816506018559, 9.800261639588092, 8.478501892294267, 11.8508135024537, 12.747298760860982, 26.838253366382595, 29.661260858648518, 26.648097760013577, 22.26111857323113, 5.3804023394940135, 5.803584750566361, 14.28240179730489, 9.148501921234967, 10.834457725888985, 5.496379968165392, 6.695061618714765, 7.57712942434515, 10.755626147361584, 7.271729820604418, 5.781672984934128, 5.149904222817318, 11.060929635273844, 6.455494191180237, 19.926877042502618, 12.512436174660493, 5.893614177526865, 17.251696331191276, 5.860193620484549, 12.662428102121922, 12.985727148773726, 22.181286220642583, 29.436241572010616, 13.671532232484251, 11.731713011103645, 23.027955542491, 9.519015244967237, 7.4281902909829824, 8.389420872668177, 6.707260609421241, 10.265604737507836, 6.401518195766751, 11.296390122752904, 17.4598922834005, 7.3672600449817836, 5.64368095948943, 6.8364119641906065, 23.170080271550994, 11.804756691784082, 10.376240986516384, 9.958785291913651, 7.221754662793803, 5.273295240034919, 14.758031791683798, 5.2343448381781625, 5.657483471261195, 11.414645862767905, 5.692461471445191, 6.286466264901757, 9.108997522387208, 5.7692928132459755, 26.11164917773977, 16.04890962626285, 7.395204989259675, 5.882031718268644, 6.270041130760165, 10.380181722596976, 11.520902536488725, 8.014330976869793, 12.083269575470425, 10.454001273536733, 13.335280403606232, 17.719606985979983, 6.14369414296182, 5.96225233352085, 17.197156935564024, 8.88976924486275, 6.664558129040014, 14.685087734585718, 5.850261259712972, 12.366106835316044, 8.313065794033403, 9.886721548597869, 11.710092359439027, 5.614749733787914, 5.51381887991353, 25.016423085677737, 12.278808770011823, 18.287661887597977, 6.863884932962329, 12.427064979137107, 13.929823760718785, 10.108387785903442, 13.956372373677372, 14.337821915163468, 22.88212440607358, 15.027644790727322, 11.13346376928855, 14.221581086370406, 77.65109286525487, 21.845458871283807, 5.318636170664286, 10.970752223223585, 7.89745517954389, 5.059500679284759, 24.404685214904863, 14.914845970677504, 6.128380195304061, 21.92602812262886, 5.7262150946511685, 21.048622520605992, 7.511508084791642, 5.3210388948330785, 16.758135349470994, 10.60611018870884, 9.021102454241026, 8.578286368003754, 19.215271372716394, 11.668831810830783, 6.208819703181662, 6.1523627166372625, 16.63306610929513, 5.053625471929882, 6.14228916940804, 7.666160798332893, 6.328775450001649, 14.656289998436389, 15.515640189505397, 24.043686138285686, 11.259323298183817, 14.969572506764488, 14.35603316783574, 5.8764727501751395, 5.592356199017763, 10.121208257253596, 6.118152026669968, 13.388357559760355, 13.412832518899197, 13.231833009807497, 19.298947475736686, 6.968479075179194, 10.636453887245684, 27.01196909547625, 12.852940815393845, 14.320613960606495, 23.078736378832822, 34.563300989427056, 5.841970076512969, 19.983055113695823, 28.405269386359535, 36.57340594572364, 12.085974925238492, 16.468714833433594, 7.104143940705584, 15.72546718279527, 19.377402351379832, 15.675504333052151, 12.587440362559407, 6.468481885650926, 5.964244359884706, 6.407861462099453, 5.398059022950218, 15.39254447366229, 26.353287912014558, 7.849882048010934, 11.522777089992967, 13.113240210799212, 16.522450499811377, 16.445897769479124, 14.165159102734385, 9.873847159589046, 5.2756342181929785, 6.8695589437584506, 17.130819079451296, 30.68517407540836, 10.78756226308445, 12.81434075169153, 10.530383764669683, 18.383272457409856, 9.06932057590648, 9.30390464073695, 21.11847593643948, 18.2788526302028, 7.878716343266846, 14.839113876851858, 23.514762784609513, 9.914810608353106, 10.16681929684706, 23.371254601474337, 6.856756690976671, 7.151409140976914, 23.937896960593392, 7.163455722619457, 5.3361559866676815, 14.940089136776173, 12.104867459066297, 15.923492099572888, 11.449545719999275, 10.435104701850067, 5.465545640354929, 9.736458966739372, 9.51281648929044, 19.571064427432198, 12.014760663373808, 7.5453160884684465, 22.075742295661115, 11.586315323243541, 10.905283267193559, 15.578768356185591, 6.437825155856656, 14.708076981639055, 5.6608965401169336, 5.435002587067189, 5.2029012155870005, 8.437314003673999, 8.337640627615858, 9.315237930132993, 20.67362472277587, 6.626657898987066, 12.04445088935489, 19.15280561626605, 14.141538406402024, 14.125446950544347, 6.237653738804825, 5.71017880710711, 7.220092398483901, 9.070485914089971, 6.322004332408997, 11.484443027624991, 7.319127032848562, 7.891910702832389, 29.975832823176514, 11.922316266262326, 6.632335473008568, 12.656126318278375, 19.27999753128135, 8.00309059368616, 11.987041840051978, 7.89061181643737, 10.445328581791303, 13.612967823220313, 9.818003390269944, 5.913801659003861, 11.252182186582486, 7.5409187970911935, 43.907358562754894, 6.201836657578518, 9.87442935473229, 7.254256978911922, 5.74345968828044, 7.51789743784273, 18.695338934591824, 29.592482915198445, 14.08803869672878, 6.852799561243982, 15.306289162557652, 12.571970984153522, 7.876828104392724, 8.570097386597944, 7.68289368323107, 5.824142714653313, 9.037983146172092, 5.8362389637714065, 16.338541071092198, 41.06401426085578, 8.397812749276243, 18.558912590335954, 9.315899373515244, 21.507717235513034, 27.37951878899188, 8.351926756909764, 30.270190302092285, 15.259253912044741, 21.56287835930433, 27.010169480544022, 17.22012851345676, 6.820312906353952, 17.394293671975127, 5.9465753755976785, 6.234493634201754, 5.867553628360138, 17.101558019338043, 5.219980041580065, 21.77375379918226, 7.035237727752008, 5.621425381675107, 19.614514413176824, 26.348839706080305, 5.1942955511635045, 18.16414392066237, 18.534175259387695, 13.609386216998768, 12.388274670284234, 5.832971467256793, 10.955097869512265, 5.605642216820459, 13.63223306966166, 6.415612275097656, 5.213592216615111, 6.228276851337896, 5.1924500355646055, 5.51347306595241, 14.58678983675773, 9.591040262786898, 5.442965285076308, 33.147080459147375, 15.846495022773164, 17.24145455325983, 6.374226540191803, 18.54705275809353, 11.028196452849471, 12.454899711689821, 5.216561587819653, 5.750081693699852, 17.996567468146218, 10.475031679433005, 22.465538488042952, 16.052259904277317, 6.148004549103289, 19.17199586512657, 7.726416663889694, 23.068161943729773, 30.442868921481967, 6.576817875194569, 13.215246558586749, 21.611537390356215, 18.7754905249246, 7.127365020857987, 5.9981482037324145, 8.975705145477388, 6.066374293726583, 17.22000794978708, 6.654631316817622, 14.629465901079627, 6.027047970051487, 10.1664551954988, 7.092848318707092, 10.087899415955665, 6.621727808489568, 7.9279451141568495, 17.33414610208451, 6.874451906652546, 19.28093993844722, 13.289943109914702, 24.692559972381883, 17.923710458767633, 6.776452072708509, 8.058990840149232, 12.558012968608748, 5.68711148797053, 6.984340452152677, 12.867319530268375, 8.56874210297155, 13.419998112594554, 16.858403655882103, 18.650618947195877, 16.21267466836219, 5.88378723249514, 13.10618366295392, 6.4011187309472914, 7.056116136389273, 15.74494589069667, 6.709554005590183, 14.046464743219406, 7.839017769813882, 10.319291498343727, 15.982426412146143, 15.218422390827628, 11.7532340590766, 25.16626866686716, 11.224983116034423, 12.220153504605644, 5.4189629811496305, 7.46801675304868, 6.92459209784773, 14.914379059885935, 6.661864081556732, 15.889576556630134, 26.237172557759695, 13.482691140919188, 10.058586142859857, 6.245833156424734, 23.272242880927422, 7.739087537946793, 15.63434730472632, 32.73894917317593, 15.238284717763571, 8.859714243315311, 52.20724608305405, 10.110636895868911, 14.564404873268796, 12.233229593894103, 21.53944301508607, 5.568669251483278, 24.803227277442232, 9.878530270647088, 20.01134649545596, 11.206429699898335, 13.740144999765988, 14.53687836663793, 5.495986399190895, 12.023095213619264, 5.455609584565123, 15.88819010057994, 16.38287854478816, 15.035016264560365, 10.150699646033338, 10.605686673778976, 13.815209441421832, 9.893516439878757, 8.406913536242762, 12.996470130538647, 9.390107417059758, 9.376349220242904, 6.502743214651491, 21.562640162713528, 16.504712288658837, 40.604526125704055, 14.803552526825605, 15.686438919669813, 18.697239967094557, 20.934572422903813, 9.076256731449753, 13.825739348176882, 23.51673699361175, 9.211575857520684, 27.57154467076515, 10.113763482834086, 5.738635387635355, 6.50376713316027, 6.354348542327714, 14.79951720880305, 20.616380363616138, 13.43426546482341, 6.413529878962224, 7.0775941946064735, 13.497968401263476, 7.526328536257715, 7.380381479917006, 24.270298177036654, 19.230877456021943, 14.26095945404635, 15.14225587670124, 8.543337176852848, 20.58756763204858, 8.923669132343678, 13.736271874683085, 18.629909260421556, 14.676513091803539, 18.028744876995997, 7.62568732488495, 21.439561087884286, 12.730511135376137, 10.306493249828037, 7.4520331744866395, 6.918946225270647, 5.538544361097069, 6.4055550474616485, 8.677060009416552, 18.215459349575227, 16.151479785789153, 14.062470162893037, 6.728470907067514, 8.693485790894611, 36.7519610538053, 6.589298423006463, 20.237692952428365, 7.667267861799039, 5.3704800812563995, 15.541529355162165, 5.047490155505607, 13.63018280412368, 6.302259994277479, 7.187133987749015, 6.199946614008154, 11.074836605167496, 6.874939019058542, 7.232100448828546, 6.873527860833796, 16.384976865303244, 17.476316830588587, 11.414246224873779, 5.184808373984718, 12.030675545444772, 10.703028271972489, 5.8107953329131545, 8.554962055103255, 18.959335662756978, 15.277088714215298, 13.09658674429356, 17.963787520781402, 8.008480380714248, 6.262453468159342, 15.744592828106095, 10.677791815331844, 7.399515375354222, 11.888730740604442, 11.997985479756263, 16.03238367093602, 26.227196549064654, 14.469920653470831, 13.424284305522058, 11.479888060218952, 5.072961691512476, 7.112752905220712, 24.01300659678877, 25.7523633587283, 14.168266085131545, 6.107362302368972, 5.638313473922166, 10.010202058030856, 5.158759265549524, 20.18144939674929, ...])
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)