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 = 44913
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);
([6997615.462497702, 7027559.285944097, 7062505.488793055, 7064542.893405898, 7068160.594038151, 7069369.320957712, 7070252.418922727, 7071175.891012362, 7073345.257646664, 7080925.350855271, 7083020.84640241, 7086492.10110016, 7086930.273610364, 7087940.625, 7088303.757160484, 7088584.628284451, 7088697.896864681, 7089424.553616087, 7089603.125, 7090012.625042971, 7091451.121244779, 7094275.0, 7095697.9369013, 7097120.717410033, 7097942.149421295, 7100041.75374401, 7100491.770039414, 7114012.765406765, 7114125.101182887, 7121139.0625, 7130461.292206025, 7131989.964305537, 7133860.27673063, 7142464.704052138, 7150145.4528878275, 7150652.421671034, 7156191.02722421, 7167573.311498437, 7177203.8691511145, 7177594.655726234, 7182777.502006012, 7193390.293938677, 7197649.248163416, 7201191.886959752, 7204448.853968319, 7206003.836701655, 7208228.125, 7210329.963271027, 7213805.784219726, 7214455.180426225, 7216210.9375, 7219519.904858821, 7222553.357892215, 7222564.6140338285, 7223419.382235434, 7224395.313803568, 7225262.5, 7225696.20190855, 7228264.302588593, 7235057.8125, 7240852.149536151, 7241997.979666214, 7242292.032788874, 7243505.15797935, 7244960.759228016, 7245143.75, 7251688.747936187, 7252796.22988253, 7253711.9749296745, 7255249.751071177, 7255588.55173559, 7258228.125, 7258319.959670978, 7259956.59815223, 7260662.195315078, 7265430.753199892, 7265847.207046248, 7270714.4215158215, 7273776.673043235, 7274969.167835948, 7276228.125, 7280431.056689926, 7280505.746537081, 7283865.114582828, 7285417.900681893, 7286664.0625, 7286683.57219759, 7287847.552806585, 7291681.361175387, 7291999.443606611, 7293370.3650125265, 7294529.473084369, 7296062.604583942, 7300625.872903271, 7304598.979382032, 7309396.875, 7311323.870577065, 7312055.0932696955, 7313638.220418535, 7313848.008045221, 7315912.049273905, 7317193.75, 7317544.909102006, 7322006.086070052, 7326981.25, 7337121.640783509, 7346639.048379152, 7349326.057937325, 7357761.7887897035, 7362428.874012975, 7367357.384641249, 7370773.2911523525, 7371500.464337523, 7371867.605644857, 7383925.0, 7384366.748136603, 7398549.831985643, 7409235.9375, 7421831.596143208, 7423372.819383044, 7423961.823694819, 7429656.842138763, 7430430.276936123, 7430710.9375, 7432121.875, 7436132.213191347, 7444289.264234758, 7454876.056189387, 7455925.964103534, 7464146.875, 7464222.558726425, 7464511.481547654, 7468115.1647029985, 7469926.531387161, 7473527.7817609925, 7474361.940888607, 7481201.639810627, 7481818.925476153, 7482065.625, 7484145.773598143, 7484234.375, 7484728.125, 7486472.881531339, 7486771.262300863, 7486905.667565716, 7491084.945355682, 7491362.82792783, 7492889.907358742, 7492934.375, 7493551.5625, 7504622.772003551, 7504777.238370754, 7513420.3125, 7529846.567337367, 7530277.874248278, 7530769.605959423, 7533112.394724262, 7539242.463974748, 7540964.4937773915, 7541825.912318897, 7557583.805038771, 7559229.567606964, 7559241.121817793, 7559478.252221741, 7583768.8740532575, 7591069.90085029, 7592318.582589782, 7595586.384160963, 7609859.375, 7629104.750426012, 7631433.314696041, 7633329.730523483, 7638720.619847834, 7643591.088265913, 7648602.731657728, 7652502.087749154, 7656126.790431851, 7656236.386866311, 7667091.8593739625, 7667573.891432217, 7668199.868030287, 7672354.855168216, 7676616.187993902, 7676658.909647924, 7684030.335424081, 7687422.561229413, 7696828.125, 7702507.80798366, 7703297.016934975, 7706660.331947317, 7707553.125, 7716904.570484029, 7727779.008644232, 7730068.47445109, 7742243.478320756, 7758310.814081985, 7759061.740066863, 7764653.777849491, 7783864.0625, 7785986.527303167, 7786424.791819283, 7790870.263317843, 7796811.4338423, 7798926.619262754, 7802398.4375, 7802476.5625, 7802666.59681451, 7813407.3881881125, 7824548.678554026, 7825523.3675892595, 7825620.015742594, 7828784.375, 7838153.435416506, 7843450.0, 7850472.620179109, 7869450.931677041, 7885399.282975081, 7895265.625, 7895288.889225913, 7899100.450563196, 7899462.5, 7910980.747579983, 7917624.852572821, 7919680.455607118, 7921170.190269895, 7922418.104072705, 7926203.326035273, 7935000.61059154, 7936892.476516399, 7946487.226835079, 7950319.5156307025, 7952378.613048455, 7952437.133435512, 7955311.523961819, 7956888.921718347, 7959695.077056176, 7959971.963424566, 7962841.922691642, 7963840.3193522105, 7966448.330783599, 7967259.792631016, 7969038.680583683, 7973234.7894842, 7973236.395172049, 7974296.945894621, 7979757.979846364, 7981409.02305448, 7982508.780236875, 7984461.800632915, 7985152.29163196, 7985631.435159934, 7985841.358607002, 7986816.3822245775, 7987615.625, 7990243.973851605, 7991019.901535249, 7991933.907121504, 7992724.31825125, 7993591.319750503, 7996278.503695204, 7998030.951540112, 7998637.820469666, 7999373.712020637, 7999965.056237115, 8002603.200372765, 8024740.625, 8025639.010187318, 8026534.28126669, 8032173.4375, 8032200.0, 8033804.673403652, 8036948.294864476, 8038017.165588874, 8038370.081080467, 8040193.886822639, 8041564.49259293, 8042996.606007819, 8043274.28584279, 8044665.754585605, 8045646.879962063, 8046000.52996822, 8046014.441673297, 8048665.254329121, 8048996.317660943, 8051272.314707016, 8058357.8125, 8061362.7940958915, 8062050.0, 8063817.1875, 8065284.375, 8066073.15303221, 8067421.8450179575, 8068931.25, 8069358.497014208, 8070381.092144569, 8072646.775018313, 8073035.925944099, 8073202.109096828, 8073361.463393645, 8073753.274689015, 8073839.944353736, 8074795.3125, 8075419.276410736, 8075906.402292, 8075948.817240361, 8076107.650826524, 8077457.8125, 8078129.727756834, 8084801.5625, 8084845.118257002, 8085355.286370073, 8085540.625, 8085637.302492402, 8085699.898884436, 8086405.715546658, 8086425.0, 8086458.890832251, 8086513.067135981, 8087916.966224581, 8089191.979401839, 8089494.641677999, 8089573.4375, 8089605.377133091, 8089898.4375, 8090037.380665287, 8090094.838234359, 8090236.117873761, 8091106.2383715585, 8093631.25, 8093693.75, 8093833.998626424, 8094082.8125, 8094089.965806751, 8094143.191593216, 8095769.675293543, 8095775.0, 8095829.977904515, 8096022.680363172, 8096198.4375, 8098745.016838265, 8099149.192942869, 8102114.466954935, 8103193.919287345, 8108015.7725185035, 8108944.515132379, 8114525.667381134, 8125424.934701231, 8135100.3523634365, 8135864.0625, 8139537.955052064, 8139937.5, 8141620.291265984, 8142613.785092706, 8143093.3330241395, 8143257.8125, 8145188.940633814, 8147293.372307144, 8154064.679371879, 8174304.292605485, 8176498.429049672, 8177649.516054624, 8179020.941123152, 8182212.899971619, 8183167.1875, 8186595.646158968, 8188342.1875, 8190146.628126343, 8190204.6875, 8190642.1875, 8190913.709377683, 8191252.531092064, 8192153.125, 8193748.10905362, 8197112.278585347, 8198084.485572273, 8198881.25, 8198884.375, 8199253.6136246845, 8203494.44520451, 8207297.159572916, 8209034.375, 8213281.25, 8213896.875, 8213987.478494882, 8214669.407004908, 8215546.1060477225, 8215590.548391647, 8216373.941795942, 8216431.1239717845, 8218991.230789579, 8219864.0625, 8221887.919443964, 8223618.243539787, 8226333.178468515, 8228378.276032677, 8232086.583402102, 8232534.373384773, 8233190.515461657, 8233427.591644032, 8238107.089723722, 8238144.824545699, 8241756.338112278, 8243709.562776145, 8246757.299588218, 8246780.946161248, 8249212.5, 8249373.056276078, 8257203.125, 8257930.645387834, 8269605.874055012, 8271579.6875, 8274560.220172138, 8274904.6661962615, 8275067.1875, 8275778.125, 8276009.91884402, 8284519.91727265, 8291173.197295951, 8294420.3125, 8297139.891195959, 8300274.380667988, 8300639.0625, 8305863.410004031, 8311927.460713986, 8316139.967317603, 8316507.8125, 8316607.434141787, 8317969.728159329, 8318460.9375, 8327582.889960168, 8332546.684789152, 8334307.262376226, 8340028.0200019125, 8342134.375, 8343143.75, 8344206.444760887, 8345284.375, 8345298.4375, 8345640.128902325, 8345654.300445596, 8345685.9375, 8345725.986867466, 8346023.4375, 8346906.786063555, 8347417.929749416, 8347855.335876728, 8351479.928142557, 8353812.295291171, 8354934.375, 8371357.8125, 8371450.0, 8375467.1875, 8377904.916409082, 8378303.125, 8379108.192390599, 8390008.650050953, 8390018.505277801, 8398026.5625, 8404910.9375, 8414150.0, 8414653.692038659, 8418870.435433306, 8419024.769719232, 8419931.25, 8421184.80771771, 8422490.483683338, 8422594.141305039, 8423741.912144449, 8425885.9375, 8430134.560171317, 8430994.679086784, 8432298.276992492, 8432857.11447169, 8433124.010672268, 8437200.793560019, 8446498.960461155, 8447066.362961084, 8447177.892945798, 8457422.747128623, 8458486.555574156, 8467568.124834651, 8469085.467298333, 8469386.936853264, 8471179.6875, 8471681.772111181, 8497589.59544029, 8498010.695819663, 8498601.697053084, 8504802.803820916, 8520007.8125, 8521031.167434372, 8528665.625, 8533368.36388651, 8534959.971697435, 8535384.90903114, 8537521.875, 8540454.751540182, 8541228.985592153, 8541339.049228791, 8541768.098575637, 8544794.809265835, 8547541.930968104, 8582135.732504692, 8585736.824369324, 8589309.43568753, 8594585.676333154, 8596861.017554231, 8612865.625, 8621329.946856612, 8624051.349757183, 8627129.6875, 8638763.054455118, 8667091.514785135, 8668277.061667288, 8675292.1875, 8685417.754422002, 8685947.265733488, 8686507.535393583, 8688795.68856487, 8689869.49562694, 8697614.942622228, 8701480.575180633, 8704175.88848805, 8706088.414621877, 8709295.573218575, 8710396.701999523, 8714161.92430599, 8715410.01299033, 8717043.103896623, 8717760.9375, 8719932.428329425, 8737549.305078963, 8752065.87816013, 8764423.775271293, 8770971.136344202, 8773904.2642074, 8780038.36614497, 8780804.73867725, 8782030.58329997, 8782400.746122167, 8782453.532774273, 8784089.20379226, 8784101.5625, 8785925.439690702, 8837803.877016112, 8858364.644648379, 8860918.75, 8861518.695982423, 8866331.61645373, 8866367.304356704, 8866766.301772006, 8868491.500371784, 8872789.89855011, 8894591.795219243, 8896145.809238657, 8897471.524895528, 8898682.449420495, 8899428.100791788, 8902110.037444945, 8915935.233214071, 8929725.212341383, 8929862.5, 8946991.356294062, 8965995.292314272, 8988935.914845003, 8989027.47700183, 9003080.854548762, 9015306.511631781, 9028448.178675152, 9039153.334397033, 9072264.000403479, 9080296.535660086, 9082684.560589511, 9092113.776170798, 9100228.003290338, 9126598.425091077, 9127587.5, 9130840.434396144, 9131834.375, 9186954.062380228, 9249529.619344203, 9250993.300721042, 9251357.468118085, 9334606.537937846, 9336641.864266086, 9340258.26663187, 9346556.132052466, 9346566.779305523, 9352002.30359554, 9355521.622740174, 9356646.281911768, 9367627.002991932, 9378629.528793266, 9408777.429831969, 9408835.58553913, 9436502.006147556, 9477140.157526968, 9481193.417880807, 9525877.659227178, 9535613.109229354, 9550873.612824203, 9555794.344552163, 9557744.370349787, 9558664.0625, 9589429.142619066, 9589462.964855138, 9591873.169585193, 9607337.616429849, 9620940.625, 9624591.26546264, 9627526.167389069, 9627712.074147027, 9628765.682311174, 9629381.144249378, 9633141.727270968, 9633876.065116495, 9662962.5, 9685586.656103507, 9690390.625, 9693399.388881829, 9693546.556794113, 9694368.701133063, 9695267.158124175, 9700623.4375, 9701045.62714725, 9710009.680565272, 9718979.4899164, 9732039.0625, 9733388.043193644, 9742055.364313338, 9752789.0625, 9752962.612090947, 9754534.427414365, 9754996.703358011, 9762181.25, 9768213.932085397, 9780951.306653738, 9785645.3125, 9786566.656168202, 9789173.349348517, 9798864.540469732, 9799154.72668759, 9799180.387305574, 9813625.128092092, 9832986.802729897, 9844648.878532698, 9846521.547077948, 9848342.1875, 9850929.10999889, 9858978.00470353, 9861879.6875, 9862532.789771274, 9862536.778500691, 9863164.0625, 9863195.3125, 9863781.25, 9873889.784072053, 9877761.492653258, 9877781.26083872, 9877785.9375, 9877789.68215227, 9880021.875, 9880054.6875, 9880326.5625, 9887477.34102211, 9887774.421520976, 9891298.422288546, 9892151.444231283, 9892189.04004841, 9904345.11536287, 9908849.25862552, 9911684.690082636, 9912169.281825142, 9922884.568061076, 9924919.799113225, 9926811.724052332, 9928693.75, 9928864.417757312, 9928998.032497132, 9929164.511287756, 9930212.373835692, 9931755.869437415, 9937618.623125972, 9938336.069534888, 9938407.951423604, 9942305.02121405, 9950795.106911559, 9952050.279718356, 9954098.479268622, 9960206.907456301, 9963368.749763127, 9968478.727917355, 9968641.959031416, 9969277.801665198, 9969880.581790099, 9971017.1875, 9972974.566172346, 9976425.453019755, 9977240.403732285, 9978771.756957976, 9979419.019335845, 9980040.63232509, 9991991.591936953, 9997880.403718561, 9998650.0, 9999645.418445058, 10000927.076536797, 10005678.219345687, 10022519.600922206, 10024993.136316247, 10027288.832348831, 10029211.263896327, 10029463.201695211, 10030439.0625, 10031699.209575323, 10033094.839381441, 10033105.44041181, 10039499.04244441, 10041876.284562204, 10041928.125, 10041974.574313631, 10042010.9375, 10045392.1875, 10055252.42175253, 10055253.503280908, 10065787.5, 10073724.393059012, 10077020.3125, 10080945.735834075, 10081935.201273145, 10082232.66653154, 10082650.48518148, 10082734.375, 10084199.916251842, 10086389.831738008, 10087311.323062522, 10087389.881400647, 10088316.362593025, 10090219.531589227, 10090880.295879077, 10092206.25, 10095118.635265775, 10096576.083392143, 10101624.076077964, 10121735.308647353, 10127614.0625, 10130204.6875, 10131636.171659252, 10133384.973284822, 10138294.82002988, 10138939.608833194, 10141721.875, 10141925.768514298, 10145441.829098523, 10157183.470989276, 10160834.620932996, 10163014.879672471, 10165704.139609631, 10168942.335076407, 10169206.25, 10172092.72085666, 10191676.48939448, 10192374.763266824, 10195681.484143097, 10195733.685292587, 10204102.090227593, 10215017.256636383, 10217202.393212834, 10236653.009818457, 10239934.890396379, 10245163.257999152, 10254188.480096832, 10264907.739514615, 10273820.228437709, 10277844.619594743, 10281995.446052957, 10297964.356968677, 10325438.143492846, 10326622.800090063, 10326673.563986633, 10330565.411860727, 10342192.682792274, 10351261.697461301, 10356776.500797272, 10357440.895198807, 10357868.390995923, 10381711.856993772, 10385604.962750802, 10387371.718191976, 10390215.391226636, 10390242.313680721, 10397513.046887591, 10399942.1875, 10401475.0, 10404146.939697284, 10415108.829110045, 10417023.091565246, 10421347.86229915, 10421519.76028317, 10422563.880339999, 10422635.24305213, 10423250.636647286, 10427378.009839468, 10436081.369884785, 10446307.763964787, 10456672.815012878, 10477981.25, 10478546.875, 10479451.903841447, 10481547.98642094, 10481859.597263642, 10482061.843475256, 10496809.375, 10499811.130701073, 10500639.134883694, 10508020.3125, 10510955.827015003, 10513450.494542927, 10531475.41014531, 10550114.0625, 10552879.6875, 10555579.993801687, 10571003.125, 10572330.080681061, 10573959.149652444, 10575966.998126563, 10587100.539607435, 10588074.997369166, 10589654.478985537, 10590571.197491225, 10593711.223726885, 10595520.377961732, 10595621.703969205, 10598335.9375, 10604738.342362417, 10605617.1875, 10611184.375, 10622496.368600864, 10623035.9375, 10625282.8125, 10632706.438925793, 10653254.70546693, 10662235.414055081, 10665645.141833525, 10672818.001385432, 10678445.3125, 10683400.342287691, 10698410.069060955, 10712865.428299703, 10720474.979403172, 10721608.95690347, 10722403.29985382, 10722417.594941605, 10722828.068602886, 10724756.680013772, 10741354.833270062, 10753040.625, 10754291.415930528, 10755722.072913501, 10756612.331013886, 10756813.24679106, 10757007.405298723, 10760376.838121304, 10779058.7930938, 10782930.039359242, 10790359.46092573, 10791918.022340108, 10798496.875, 10813014.169301106, 10813975.715340607, 10827649.943713328, 10827662.5, 10855963.957073092, 10866387.442359658, 10866394.692718117, 10894065.625, 10894719.604340427, 10903717.1875, 10903867.155961359, 10906113.991595067, 10910718.887289444, 10914179.047504831, 10921904.041645259, 10933223.4375, 10933778.467167763, 10940643.75, 10948131.25, 10952047.361607254, 10953711.731600486, 10983065.906108953, 10997146.099286774, 11064173.4375, 11079109.375, 11081176.912657438, 11081442.000796914, 11093832.025380246, 11094987.5, 11095439.049378632, 11099887.5, 11124926.21733392, 11134812.412065968, 11140814.0625, 11141454.6875, 11143630.32897686, 11151768.266356476, 11157258.166287348, 11176909.375, 11177126.859401071, 11192273.80283519, 11199949.369259646, 11228485.753424808, 11232653.00132046, 11288145.3125, 11289559.375, 11293937.5, 11324590.073768819, 11336661.927933581, 11401369.49373836, 11402374.749301946, 11435984.704060553, 11454907.8125, 11504795.33108825, 11508789.0625, 11510298.425935471, 11529481.491803844, 11529546.571982868, 11542725.691525701, 11577941.650266917, 11654347.817654615, 11664689.335272407, 11693022.593064416, 11728878.100790454, 11729262.286034713, 11761876.5625, 11765842.1875, 11849839.894941116, 11863363.470702058, 11933834.375, 12159356.25, 12336873.393781368, 12393749.036805253, 12564480.058333626, 13569118.13721107, 13774424.258881712, 13779131.11023929, 13794331.355246589, 13800501.5625, 13810679.396177758, 13824770.141386127, 13843690.306245424, 13859135.34488855, 13866511.15183809, 13871116.59387907, 13965718.623466592, 14092970.3125, 14183006.443979286, 14258941.89191574, 14314791.41164278, 14323459.003385667, 14339679.092355413, 14346377.337930778, 14350776.5625, 14351069.067224994, 14376501.209088312, 14380111.664582163, 14382368.77537072, 14383757.442813648, 14383764.090563538, 14385973.408831276, 14386251.5625, 14387325.0, 14387435.946722394, 14391079.186013043, 14391906.915514702, 14391967.623671398, 14391988.051018676, 14392096.03106613, 14394329.74041407, 14395892.316439051, 14398534.26215201, 14398578.125, 14402906.234311294, 14403328.492314734, 14404531.25, 14405066.636422498, 14405395.126085741, 14405462.618957514, 14406018.081019467, 14406935.9375, 14408692.1875, 14408915.625, 14409221.393483244, 14409655.175036317, 14409984.09426888, 14410114.504065398, 14411856.25, 14412574.14933045, 14413112.798319882, 14413353.981442887, 14414165.96554265, ...], [25.68177775314591, 26.87950065097089, 55.92055364884136, 57.746054124404864, 73.30237363827469, 12.155168450066004, 98.52238879053675, 17.80008643051711, 46.86280140945271, 23.0786971495751, 17.459704037379737, 26.92533766451151, 9.881579175112352, 74.81864185729187, 7.849085821800065, 90.30980200335357, 10.37617274840461, 6.042877578703592, 98.9687435259236, 19.723951385227977, 5.590090506092653, 47.27823942263107, 7.431687450941697, 5.975460640211403, 25.690649567219246, 13.511209699197497, 22.35798176494778, 5.723859998871313, 5.043253181847251, 69.79345747868786, 12.829469619991606, 28.85038366330086, 12.906295744820648, 24.631529149547255, 5.249091521816958, 19.679226524848094, 35.66781296360792, 42.49122992017405, 6.006940925808279, 10.235928706064017, 26.358212675387524, 5.789884028717971, 8.76745678326083, 84.57589917156118, 24.637678082587637, 41.26633785335211, 129.03189911822884, 27.955088236331097, 44.50314782562143, 7.2573496122327565, 41.08812321823621, 63.432397523497464, 11.51234976015048, 6.878848645919671, 6.5909873779933426, 31.36233410824793, 43.889500294685874, 23.969324433414705, 69.13583018161499, 76.56988386429336, 87.42655959110235, 54.79680779327288, 14.382884766262325, 6.563461871750707, 34.254707900142066, 42.9157544015208, 15.522802487507786, 5.187292036696115, 21.246603498621308, 104.69742747407216, 13.891280632979242, 34.253449027415904, 55.48132159303138, 92.19595273962452, 21.124392776318196, 26.692892612411008, 51.83153473689268, 47.319549730483814, 11.305003809747475, 11.850301312549371, 96.56492873752205, 21.31162909631306, 21.45862518191124, 47.40616185291427, 5.366968541757669, 69.91922809792203, 6.925283510289228, 77.08907625520524, 15.382894316523775, 43.36015238034692, 23.22490460958883, 156.5119124652569, 6.784567114392404, 22.79240536322282, 17.506443271795227, 102.39128039530176, 13.552508098641173, 24.7184078763564, 45.34201642832231, 31.17659826204944, 21.353558337298143, 79.63919927967902, 16.76709353568089, 47.216308981591396, 48.602800678697584, 7.520666704291413, 28.248438116633938, 21.4477055455485, 23.272588389124714, 31.02115960668084, 22.244255252831795, 6.073011431965575, 38.25419582704218, 7.235885547119015, 64.63138029541973, 139.97052144209454, 31.25816105794128, 43.0335827540446, 103.92339154529176, 6.394373183381727, 7.958627633949787, 17.808640266332485, 6.58363837726866, 40.99398776079527, 28.773689905144256, 5.376046820416823, 8.396219067483285, 21.430378642276985, 12.1134563363047, 45.25245820863265, 5.053257381637902, 61.119791699507346, 22.6615999664548, 6.263275471265735, 87.18993136362266, 14.185117774248843, 15.244603020565906, 279.6967662705448, 125.1805417333085, 11.934000330770571, 33.02081409263034, 40.39239708765217, 45.17572176939505, 20.438003881455078, 83.75129541065283, 5.646396566072761, 7.726311890243409, 78.10214066884095, 72.98531426845152, 32.340583570431384, 6.3875950033028355, 5.865740726627514, 114.22896663328746, 23.92526886087458, 18.650824879516797, 15.54306128637527, 26.603574081253214, 11.589221880815192, 84.28249104064552, 77.94075546149209, 10.34013446950311, 5.200378128879291, 17.246770234602344, 27.670116471034543, 9.438547197734962, 15.55650868378295, 8.199988578226668, 83.17607010640864, 136.10235014572262, 65.18501089092464, 17.277221848851877, 5.292418075307008, 28.69533421191138, 11.938243383167407, 9.019573247129776, 7.266725754826902, 28.45996487488022, 5.049198790502237, 23.39799816254989, 142.53219143598722, 16.050471962444973, 80.26910741009699, 6.341049203159801, 21.84583784477828, 18.160746080427998, 9.987912073056522, 55.81187170985854, 71.58100613038945, 32.198152735073734, 33.65230173324547, 50.42746988758914, 26.408030033835576, 78.4730773491089, 59.7153788456454, 24.119368921498577, 5.162497190328549, 5.370196000072673, 40.007041988668234, 53.63323441132413, 17.794289230301782, 80.84447221292533, 9.29016025474013, 13.815983698343363, 15.162368147315101, 48.496801976603614, 88.94470133260808, 13.084357200151498, 22.28288625757783, 24.49640720517673, 67.97278186151459, 10.693511637477402, 87.52934743577711, 48.23127815334064, 67.25409961323385, 23.949845815287233, 12.44649903229547, 56.47485288760326, 30.68871630219458, 14.319787779069555, 8.540136693837528, 41.26094515698338, 13.205279373803242, 14.407861908876397, 26.83296354461273, 58.11453978360021, 8.83906828724871, 5.348857944366991, 56.40174587545607, 22.938870141308367, 46.74591520250754, 12.580427158132766, 63.05088537720446, 64.68906590740414, 5.07971839224917, 6.735722343454659, 110.3865948098586, 5.820552026429214, 6.711766618671606, 6.2293391605653845, 100.16867238946205, 5.35643897680334, 19.824547247945294, 8.518640051198355, 54.76396214044378, 18.80660418211021, 5.826467104139402, 13.750686141723595, 8.87449911435552, 86.48891164315151, 23.81237718983441, 9.493032428010807, 10.03966462552082, 40.6323928756594, 35.348196366635776, 8.408610798879975, 48.12103535988129, 21.819627792959214, 174.94220986143887, 18.470832517081167, 101.602893150972, 9.091175568112687, 11.91240897449789, 64.32977274876947, 20.83352441874132, 11.247599111022332, 31.976293970186585, 5.810119688133458, 6.744936614730582, 35.646808188441696, 60.06521602172833, 28.248912895874184, 7.084455188617361, 14.858647010712225, 37.634905604885546, 26.930975660975868, 21.30253174438215, 59.58773213795559, 27.883244084738607, 44.77180549662627, 50.71862394538588, 17.436782094197355, 8.497812878029603, 22.88812857380271, 15.829519520835285, 7.770410371432953, 55.80949052791588, 104.9478905554565, 41.43448702267472, 38.17065418064701, 52.489655838097946, 23.95119260573161, 5.129861935237577, 39.19621901796885, 12.5170281034511, 77.72730456375935, 10.974944274065626, 41.82343762069435, 8.598447470982512, 6.572815540172493, 6.79376335837877, 40.56282407924484, 36.21425500652957, 46.95523356690751, 49.83073190735557, 9.67455360211408, 75.95841624638477, 48.6127442061317, 68.18179427999826, 45.093146554740805, 103.46157369021839, 8.630872412970636, 36.36878231375637, 32.00646281480724, 26.67369953075703, 8.022820673934072, 36.08482814902215, 21.65250275203199, 5.64620933646496, 9.151057606187946, 69.24134414750112, 6.1860086825873015, 38.46078721151348, 12.40902207725552, 37.72418742844841, 41.6136120730517, 33.890320664340734, 15.676667949216895, 28.296832901355934, 30.180298486328113, 36.49624131518077, 72.51516087489361, 44.04528336887527, 179.48840543776097, 5.438298888142502, 6.024250613926244, 54.87882342075126, 29.473426640109793, 12.672969831395127, 44.49834289144251, 7.4996913182587805, 12.557028231226548, 48.656203305152516, 15.62855517133938, 11.36639159805418, 12.579279535296578, 7.863875995197612, 67.15691352868049, 27.498858413700084, 55.666711945503664, 26.12744378227691, 53.594861164183776, 11.094678086043194, 24.043686754132843, 27.55792263628095, 60.98385159798082, 26.32824425496649, 119.69782187377297, 16.448245364684375, 22.609829158412207, 40.75734856233123, 6.207932140135819, 8.649549444721737, 39.726707366688444, 64.16257765794298, 16.386548073906127, 44.58134192901483, 33.83142709508436, 40.52037802701787, 64.63631988246475, 44.90104081278581, 6.194969370533377, 132.7120385597923, 118.33322278855255, 14.15978785881455, 37.28243210082863, 64.35286502028406, 28.571521400655183, 17.20065536813458, 62.81786959282503, 22.07726037890892, 110.71291933331673, 91.09762917253465, 29.374297319506784, 28.10619934069754, 26.919649353673016, 12.64523360667416, 29.04354470695823, 7.260640858574734, 5.200222946479317, 111.63261997515806, 52.744655008608525, 16.82402230145782, 13.30838778699746, 80.40569286225339, 21.70363934793378, 31.792296449199796, 16.188905424549574, 41.49751497385311, 68.69065094470591, 8.786878413827202, 20.137261917761183, 7.635420336986433, 7.171702911089154, 25.48115895783171, 23.70183045357882, 88.36641085460991, 10.57989484666762, 60.929192167139895, 20.509373534047725, 144.64837851449266, 154.308897400408, 10.165358343498381, 112.30636377338287, 44.824601282934566, 58.598485784437784, 127.96632684754744, 41.86512720908625, 14.09872225976688, 82.45908329432697, 10.146448073167267, 13.750218766247073, 41.32430166901385, 90.00749695457607, 12.897551835414685, 6.0222760036892184, 41.00463219117854, 44.642539030353205, 15.41757373541225, 114.5590954435441, 11.250979726269595, 65.01023266939768, 13.190833587965956, 21.9405414152812, 54.116794301906445, 34.64709094745225, 80.17242159139835, 29.297888664970593, 84.88491871442861, 31.86160783536014, 10.572201859961623, 61.833247707384956, 20.770406187790634, 41.33332523166507, 17.472329772978416, 27.956987053367705, 45.22555989407572, 95.67845630030843, 63.175147950778594, 136.50423245889755, 69.7867442825645, 58.27422030387742, 62.29071539186497, 86.05028572542336, 67.55452922035937, 69.8496691896093, 26.770841359915323, 24.483488911581265, 52.56121420409508, 64.61813125856867, 101.58707906174212, 50.89229047650461, 109.69228834463593, 5.037684509860427, 28.983015256107546, 16.894567671430995, 113.39548868026563, 9.685745301864118, 36.33412725582411, 54.52567982856932, 5.296841544419218, 111.37034805101861, 41.11525263134148, 43.661383624743195, 39.92372330650174, 6.619125595381229, 9.81654431259957, 119.6197838022172, 61.900360374935275, 14.358971841228431, 12.254018115536818, 66.89161502236152, 20.097221869596233, 6.0314313947589735, 44.21036268692747, 9.81567936046329, 5.741536537862963, 80.42147285968798, 82.64224545210344, 8.123734155175026, 53.95885374433976, 7.099915496181632, 59.78330988375823, 40.597111057766696, 31.118163347972605, 55.44688170751985, 75.18164063380615, 91.0406553678701, 13.274675411486246, 14.891165914078286, 20.104792969895843, 10.422767201545277, 9.123518508341833, 10.821722565203642, 57.05418607195509, 11.22390903095969, 24.259787591851953, 85.07807586718262, 184.56500963602642, 7.191339434081088, 88.40593469653565, 64.71130206433658, 18.034023495969972, 6.185789248178628, 55.93980706154886, 50.54639215322615, 45.25664792428459, 11.798799489759741, 28.740169182859084, 42.20583053340248, 5.755913869191848, 18.13022396243852, 32.06413731511638, 10.21566576662718, 20.1347318437279, 7.70033792890465, 25.520896891366903, 63.76637627299054, 239.19273230212914, 18.117998118475217, 74.6189272666269, 37.975859602084256, 12.822127906129172, 35.14780401252915, 16.406818890296996, 19.402481952216977, 107.39748107589854, 10.18960839066442, 9.375054591767169, 33.54845614213799, 8.724922944378244, 33.79722185497617, 58.802196323513606, 37.11899238306486, 16.931946997246968, 49.27277264162629, 58.90648470201907, 32.61361814638345, 47.87892880508553, 24.47265875118716, 57.78733706499889, 44.27351229927946, 26.57585431211245, 130.494060366854, 59.9527245529238, 17.246323240735773, 66.71213843727664, 99.40339217727458, 11.090077468088971, 61.767692192047264, 36.21709791099105, 157.12347877782238, 77.83585902358843, 8.715266055495011, 43.33512140662303, 28.084202055820956, 5.085912394720661, 9.018006222578428, 24.471513182020313, 27.18135249700599, 11.471580466531288, 27.353572224074657, 126.10490689974375, 11.430739019961973, 13.951986447334304, 17.85174919688331, 13.205570758373018, 50.53929272614195, 25.25650601147603, 56.55083615059643, 33.70849326241215, 20.370976317860443, 65.81125163295518, 23.199909007130685, 47.31730041427752, 23.4584290782593, 49.64300982599096, 99.14475075741066, 22.46055086056282, 10.047931546235583, 14.059939198463915, 65.57390636170338, 78.68249526829467, 25.740546520896263, 12.821525201865759, 48.65967353825759, 99.54319476958062, 6.040798801073969, 80.94169241040814, 65.5112426933963, 54.32988209742656, 9.48418404190638, 67.54114289053173, 17.98443164474944, 62.86411162838101, 41.39673885059851, 17.068713746447965, 28.986216667074604, 5.345927199644707, 38.54494025908006, 54.648106063528196, 72.57374353207993, 69.36834496781026, 6.274466476781631, 5.394446616216508, 28.868136937905824, 39.863627138685764, 28.68368025223753, 43.861482368946625, 59.14348689082663, 30.920774425629006, 25.07174890954294, 67.98075784102681, 90.43195611118168, 49.24926488092024, 24.17385588313646, 28.59675348138201, 80.68920608025118, 66.8424525433246, 15.979531296652262, 12.380808499536053, 40.90676628937147, 26.369588218791904, 43.34842958694166, 149.36513134332765, 97.24202775812603, 91.73468442829272, 52.021344006162344, 128.1267229274039, 21.186140853005845, 60.724272040448966, 6.862834617373932, 28.083180954246693, 26.87010603613922, 18.022851904066247, 19.72771527364906, 11.894949204956298, 5.68620123897269, 51.95135926658386, 13.11868479859495, 58.85087120690744, 63.56630475139718, 28.08279300825269, 28.871981224947767, 87.27722778876023, 44.73855508076699, 52.56212519686714, 61.95022228744593, 13.72437430991694, 6.089227073904853, 42.79752911824567, 6.348795462006056, 39.52838573483144, 41.77388203675068, 59.85431862765655, 57.74582564217228, 70.27899551968079, 28.22732340173158, 14.509104403765818, 34.55773421333727, 14.239830361215738, 26.880470279291984, 8.46053593292674, 24.53369374372497, 8.39137989895918, 31.054468774837737, 26.41888009114472, 81.457161490242, 41.549018551292505, 27.687867786651328, 16.98104835347881, 48.32901658350447, 100.52253596122894, 34.17773253865251, 37.787464102470864, 7.158455655357423, 16.386819137422737, 89.26434257014044, 6.531852106919745, 11.193627561183655, 16.96512922705643, 28.520538641864977, 17.723669717897078, 29.522993279534568, 5.517591195671832, 7.962230827345874, 36.62431703851536, 7.453520578254842, 17.004021282148948, 5.452348955548412, 26.391103274251773, 13.063479082330051, 14.608256749430888, 20.589988207230704, 18.61769386599401, 29.36928132076586, 44.41260310036231, 17.344773064029386, 11.27844841435591, 19.172763155477618, 21.16132022353095, 65.02942782587095, 58.485471167453156, 18.518009120569268, 118.62408319109129, 25.970182674543842, 47.80914339509541, 6.170058742702921, 5.648411325427125, 47.40404104597275, 62.50973735748317, 38.70095094839595, 43.9853576867566, 104.20995216465542, 12.801857233581776, 6.316204464260841, 30.37901587003376, 20.488756276072415, 43.035734507131295, 8.523892621205505, 7.357025670334292, 8.210866232154778, 6.56593588712024, 38.11429072441532, 34.99368861724344, 18.993816041007964, 75.20775323523623, 61.035960825953325, 5.427440544429721, 30.54965543587652, 120.55995852761853, 75.24643549865053, 10.952983704504547, 85.61234546654396, 89.33246470503366, 34.61611284143447, 47.59468168631137, 37.54421525800071, 83.66670780950656, 6.889131711468085, 39.46033312114135, 33.80598514345432, 65.01649347650303, 34.07064403360059, 35.91769979513571, 12.340821799388081, 6.298778430467196, 19.351333677053503, 27.269037219539438, 18.330916021339263, 96.34719907887838, 9.827145136737741, 5.933064241282865, 31.35874673564378, 13.438652208548175, 5.372745882567719, 17.42376318685772, 15.211739594035357, 35.98087965569916, 26.438357377844845, 17.352574618969523, 50.77783702208138, 38.699329228935206, 6.258021019894094, 173.13090859318407, 8.807020109160485, 19.089530383936946, 16.19673037616085, 74.69914375197015, 75.37605365697418, 6.50710361583173, 59.759418837320666, 92.68126310403741, 12.567389539664235, 6.751250302313637, 31.089870981493895, 27.60505993911896, 20.176048338294905, 21.808030033926883, 60.636923700972176, 81.73237290430102, 21.24311579107051, 49.94094388408957, 40.674106434419016, 35.62996683702202, 5.945059627541044, 21.04722045820471, 13.768774857564713, 57.403656925752536, 120.27380871399096, 20.557746332213473, 24.95279180178335, 5.996834888022277, 77.92287885338342, 15.419029022838433, 86.89699506362884, 13.002650646017491, 50.82465985512344, 66.28373323998098, 16.42447256798255, 6.211841707998763, 9.526687134501485, 19.838249050644265, 46.109936277017496, 23.6523248911901, 18.26550463246279, 65.57875789196767, 80.78171473482084, 26.8096417616522, 17.558928775705645, 98.44632036291537, 28.69993140882286, 16.25341018837203, 40.68157173501207, 5.2562845094014845, 54.18923882383914, 54.96150178446737, 45.259242445765, 37.62962042367076, 35.788918525205276, 27.555719989555563, 16.157569903366518, 96.35027580474407, 25.55089647630043, 34.669915624591894, 41.658105592870655, 113.45879160001212, 28.717375509801933, 22.981714940475896, 60.204698810201, 105.22948627323754, 23.922141252073565, 9.346641574853912, 21.26236992220199, 25.556454648021937, 38.90628440344787, 42.05487734498461, 31.30191523014078, 51.68674483688973, 56.08779462329409, 8.275715329365337, 5.783679096057817, 15.65266139442859, 6.5529160789328404, 14.730820571031723, 8.527865895693862, 25.365289562721863, 54.3657004189835, 41.06316552635258, 7.174467436785147, 20.461665608003884, 25.663779652152915, 145.0729879286351, 21.995054648109782, 26.66908722817151, 41.88576975004771, 17.114267108056907, 7.359677069111085, 46.88182526413937, 60.39452728740727, 10.01959959099486, 27.45835979952498, 50.80575081784013, 91.06707065872227, 60.40271255167685, 23.68741740492839, 35.83455964665602, 37.14981015387248, 40.7131949627249, 6.7572264152882315, 27.196501201762562, 13.607265020751601, 20.20169208561933, 62.01574959726642, 56.20553102804675, 16.428565897348008, 53.34662120300405, 55.355451919252026, 5.306358647329396, 19.177100229899075, 112.45912569107125, 7.914958179879935, 50.75922508977208, 52.12017918121791, 9.646136748036007, 14.274633377304742, 66.61577172152857, 54.97634961074516, 14.891731659682081, 62.35276145007127, 13.14847753043033, 26.89883863513178, 58.1398021187065, 84.43879638036522, 6.898706171134538, 13.37106691264435, 9.649607283182204, 76.47076808909617, 16.208337419008522, 43.20660379757115, 50.04768081362772, 33.94801793977828, 26.298562645614286, 29.851924172906177, 44.496352583082036, 38.81277608194527, 66.19317472803641, 29.59506716093744, 18.81047855849251, 24.401618911059522, 16.757874781016422, 77.75762355048214, 89.47153805553809, 45.619483648981955, 38.39819439830765, 11.52793552290534, 30.164133668836847, 42.15127254462193, 10.380381747874607, 94.85451047756263, 64.80804663646356, 7.323931984641233, 14.356689042656015, 43.480336073827786, 31.827057665225844, 83.58854457781507, 19.468905554722248, 20.62376712221655, 70.8658202166939, 30.768514881950807, 27.688336271392497, 9.895363511817367, 8.49292419526128, 20.43721497369158, 7.355513899623753, 38.97079660958392, 39.794022500866696, 30.39127143690976, 43.08336080668562, 10.870379121548172, 23.157576073273326, 5.582079658028811, 5.471041992537034, 34.82080332053333, 72.67367081712769, 35.865023889648604, 41.32844038286608, 7.4997175918610575, 82.94839340586637, 22.877130906137115, 8.87423289211776, 161.44608826322323, 97.55926478999099, 9.614856173297472, 23.091643388754225, 8.712530777884004, 5.815859870164837, 139.83536380101668, 11.171857083030046, 37.04244841158446, 94.20688801485035, 42.5423760779627, 20.815526605234393, 21.16416563402493, 15.037012888496475, 16.913053691259893, 5.988872322685675, 8.707010750223612, 59.42196018814101, 18.954680275654027, 79.7004295395814, 32.53387025156215, 9.31817262513835, 11.754862921232027, 51.642151514091246, 13.188300262514044, 25.318830724425638, 9.434055587776028, 7.377963693008776, 71.43281131555028, 67.99118129316152, 33.46304800702908, 13.376953952419123, 17.1945542711414, 68.25142546668819, 5.735448767978743, 47.47584281089682, 12.458344647825372, 11.628375953066586, 8.798129540476417, 5.839614646915809, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6997615.462497702, 7027559.285944097, 7062505.488793055, 7064542.893405898, 7068160.594038151, 7069369.320957712, 7070252.418922727, 7071175.891012362, 7073345.257646664, 7080925.350855271, 7083020.84640241, 7086492.10110016, 7086930.273610364, 7087940.625, 7088303.757160484, 7088584.628284451, 7088697.896864681, 7089424.553616087, 7089603.125, 7090012.625042971, 7091451.121244779, 7094275.0, 7095697.9369013, 7097120.717410033, 7097942.149421295, 7100041.75374401, 7100491.770039414, 7114012.765406765, 7114125.101182887, 7121139.0625, 7130461.292206025, 7131989.964305537, 7133860.27673063, 7142464.704052138, 7150145.4528878275, 7150652.421671034, 7156191.02722421, 7167573.311498437, 7177203.8691511145, 7177594.655726234, 7182777.502006012, 7193390.293938677, 7197649.248163416, 7201191.886959752, 7204448.853968319, 7206003.836701655, 7208228.125, 7210329.963271027, 7213805.784219726, 7214455.180426225, 7216210.9375, 7219519.904858821, 7222553.357892215, 7222564.6140338285, 7223419.382235434, 7224395.313803568, 7225262.5, 7225696.20190855, 7228264.302588593, 7235057.8125, 7240852.149536151, 7241997.979666214, 7242292.032788874, 7243505.15797935, 7244960.759228016, 7245143.75, 7251688.747936187, 7252796.22988253, 7253711.9749296745, 7255249.751071177, 7255588.55173559, 7258228.125, 7258319.959670978, 7259956.59815223, 7260662.195315078, 7265430.753199892, 7265847.207046248, 7270714.4215158215, 7273776.673043235, 7274969.167835948, 7276228.125, 7280431.056689926, 7280505.746537081, 7283865.114582828, 7285417.900681893, 7286664.0625, 7286683.57219759, 7287847.552806585, 7291681.361175387, 7291999.443606611, 7293370.3650125265, 7294529.473084369, 7296062.604583942, 7300625.872903271, 7304598.979382032, 7309396.875, 7311323.870577065, 7312055.0932696955, 7313638.220418535, 7313848.008045221, 7315912.049273905, 7317193.75, 7317544.909102006, 7322006.086070052, 7326981.25, 7337121.640783509, 7346639.048379152, 7349326.057937325, 7357761.7887897035, 7362428.874012975, 7367357.384641249, 7370773.2911523525, 7371500.464337523, 7371867.605644857, 7383925.0, 7384366.748136603, 7398549.831985643, 7409235.9375, 7421831.596143208, 7423372.819383044, 7423961.823694819, 7429656.842138763, 7430430.276936123, 7430710.9375, 7432121.875, 7436132.213191347, 7444289.264234758, 7454876.056189387, 7455925.964103534, 7464146.875, 7464222.558726425, 7464511.481547654, 7468115.1647029985, 7469926.531387161, 7473527.7817609925, 7474361.940888607, 7481201.639810627, 7481818.925476153, 7482065.625, 7484145.773598143, 7484234.375, 7484728.125, 7486472.881531339, 7486771.262300863, 7486905.667565716, 7491084.945355682, 7491362.82792783, 7492889.907358742, 7492934.375, 7493551.5625, 7504622.772003551, 7504777.238370754, 7513420.3125, 7529846.567337367, 7530277.874248278, 7530769.605959423, 7533112.394724262, 7539242.463974748, 7540964.4937773915, 7541825.912318897, 7557583.805038771, 7559229.567606964, 7559241.121817793, 7559478.252221741, 7583768.8740532575, 7591069.90085029, 7592318.582589782, 7595586.384160963, 7609859.375, 7629104.750426012, 7631433.314696041, 7633329.730523483, 7638720.619847834, 7643591.088265913, 7648602.731657728, 7652502.087749154, 7656126.790431851, 7656236.386866311, 7667091.8593739625, 7667573.891432217, 7668199.868030287, 7672354.855168216, 7676616.187993902, 7676658.909647924, 7684030.335424081, 7687422.561229413, 7696828.125, 7702507.80798366, 7703297.016934975, 7706660.331947317, 7707553.125, 7716904.570484029, 7727779.008644232, 7730068.47445109, 7742243.478320756, 7758310.814081985, 7759061.740066863, 7764653.777849491, 7783864.0625, 7785986.527303167, 7786424.791819283, 7790870.263317843, 7796811.4338423, 7798926.619262754, 7802398.4375, 7802476.5625, 7802666.59681451, 7813407.3881881125, 7824548.678554026, 7825523.3675892595, 7825620.015742594, 7828784.375, 7838153.435416506, 7843450.0, 7850472.620179109, 7869450.931677041, 7885399.282975081, 7895265.625, 7895288.889225913, 7899100.450563196, 7899462.5, 7910980.747579983, 7917624.852572821, 7919680.455607118, 7921170.190269895, 7922418.104072705, 7926203.326035273, 7935000.61059154, 7936892.476516399, 7946487.226835079, 7950319.5156307025, 7952378.613048455, 7952437.133435512, 7955311.523961819, 7956888.921718347, 7959695.077056176, 7959971.963424566, 7962841.922691642, 7963840.3193522105, 7966448.330783599, 7967259.792631016, 7969038.680583683, 7973234.7894842, 7973236.395172049, 7974296.945894621, 7979757.979846364, 7981409.02305448, 7982508.780236875, 7984461.800632915, 7985152.29163196, 7985631.435159934, 7985841.358607002, 7986816.3822245775, 7987615.625, 7990243.973851605, 7991019.901535249, 7991933.907121504, 7992724.31825125, 7993591.319750503, 7996278.503695204, 7998030.951540112, 7998637.820469666, 7999373.712020637, 7999965.056237115, 8002603.200372765, 8024740.625, 8025639.010187318, 8026534.28126669, 8032173.4375, 8032200.0, 8033804.673403652, 8036948.294864476, 8038017.165588874, 8038370.081080467, 8040193.886822639, 8041564.49259293, 8042996.606007819, 8043274.28584279, 8044665.754585605, 8045646.879962063, 8046000.52996822, 8046014.441673297, 8048665.254329121, 8048996.317660943, 8051272.314707016, 8058357.8125, 8061362.7940958915, 8062050.0, 8063817.1875, 8065284.375, 8066073.15303221, 8067421.8450179575, 8068931.25, 8069358.497014208, 8070381.092144569, 8072646.775018313, 8073035.925944099, 8073202.109096828, 8073361.463393645, 8073753.274689015, 8073839.944353736, 8074795.3125, 8075419.276410736, 8075906.402292, 8075948.817240361, 8076107.650826524, 8077457.8125, 8078129.727756834, 8084801.5625, 8084845.118257002, 8085355.286370073, 8085540.625, 8085637.302492402, 8085699.898884436, 8086405.715546658, 8086425.0, 8086458.890832251, 8086513.067135981, 8087916.966224581, 8089191.979401839, 8089494.641677999, 8089573.4375, 8089605.377133091, 8089898.4375, 8090037.380665287, 8090094.838234359, 8090236.117873761, 8091106.2383715585, 8093631.25, 8093693.75, 8093833.998626424, 8094082.8125, 8094089.965806751, 8094143.191593216, 8095769.675293543, 8095775.0, 8095829.977904515, 8096022.680363172, 8096198.4375, 8098745.016838265, 8099149.192942869, 8102114.466954935, 8103193.919287345, 8108015.7725185035, 8108944.515132379, 8114525.667381134, 8125424.934701231, 8135100.3523634365, 8135864.0625, 8139537.955052064, 8139937.5, 8141620.291265984, 8142613.785092706, 8143093.3330241395, 8143257.8125, 8145188.940633814, 8147293.372307144, 8154064.679371879, 8174304.292605485, 8176498.429049672, 8177649.516054624, 8179020.941123152, 8182212.899971619, 8183167.1875, 8186595.646158968, 8188342.1875, 8190146.628126343, 8190204.6875, 8190642.1875, 8190913.709377683, 8191252.531092064, 8192153.125, 8193748.10905362, 8197112.278585347, 8198084.485572273, 8198881.25, 8198884.375, 8199253.6136246845, 8203494.44520451, 8207297.159572916, 8209034.375, 8213281.25, 8213896.875, 8213987.478494882, 8214669.407004908, 8215546.1060477225, 8215590.548391647, 8216373.941795942, 8216431.1239717845, 8218991.230789579, 8219864.0625, 8221887.919443964, 8223618.243539787, 8226333.178468515, 8228378.276032677, 8232086.583402102, 8232534.373384773, 8233190.515461657, 8233427.591644032, 8238107.089723722, 8238144.824545699, 8241756.338112278, 8243709.562776145, 8246757.299588218, 8246780.946161248, 8249212.5, 8249373.056276078, 8257203.125, 8257930.645387834, 8269605.874055012, 8271579.6875, 8274560.220172138, 8274904.6661962615, 8275067.1875, 8275778.125, 8276009.91884402, 8284519.91727265, 8291173.197295951, 8294420.3125, 8297139.891195959, 8300274.380667988, 8300639.0625, 8305863.410004031, 8311927.460713986, 8316139.967317603, 8316507.8125, 8316607.434141787, 8317969.728159329, 8318460.9375, 8327582.889960168, 8332546.684789152, 8334307.262376226, 8340028.0200019125, 8342134.375, 8343143.75, 8344206.444760887, 8345284.375, 8345298.4375, 8345640.128902325, 8345654.300445596, 8345685.9375, 8345725.986867466, 8346023.4375, 8346906.786063555, 8347417.929749416, 8347855.335876728, 8351479.928142557, 8353812.295291171, 8354934.375, 8371357.8125, 8371450.0, 8375467.1875, 8377904.916409082, 8378303.125, 8379108.192390599, 8390008.650050953, 8390018.505277801, 8398026.5625, 8404910.9375, 8414150.0, 8414653.692038659, 8418870.435433306, 8419024.769719232, 8419931.25, 8421184.80771771, 8422490.483683338, 8422594.141305039, 8423741.912144449, 8425885.9375, 8430134.560171317, 8430994.679086784, 8432298.276992492, 8432857.11447169, 8433124.010672268, 8437200.793560019, 8446498.960461155, 8447066.362961084, 8447177.892945798, 8457422.747128623, 8458486.555574156, 8467568.124834651, 8469085.467298333, 8469386.936853264, 8471179.6875, 8471681.772111181, 8497589.59544029, 8498010.695819663, 8498601.697053084, 8504802.803820916, 8520007.8125, 8521031.167434372, 8528665.625, 8533368.36388651, 8534959.971697435, 8535384.90903114, 8537521.875, 8540454.751540182, 8541228.985592153, 8541339.049228791, 8541768.098575637, 8544794.809265835, 8547541.930968104, 8582135.732504692, 8585736.824369324, 8589309.43568753, 8594585.676333154, 8596861.017554231, 8612865.625, 8621329.946856612, 8624051.349757183, 8627129.6875, 8638763.054455118, 8667091.514785135, 8668277.061667288, 8675292.1875, 8685417.754422002, 8685947.265733488, 8686507.535393583, 8688795.68856487, 8689869.49562694, 8697614.942622228, 8701480.575180633, 8704175.88848805, 8706088.414621877, 8709295.573218575, 8710396.701999523, 8714161.92430599, 8715410.01299033, 8717043.103896623, 8717760.9375, 8719932.428329425, 8737549.305078963, 8752065.87816013, 8764423.775271293, 8770971.136344202, 8773904.2642074, 8780038.36614497, 8780804.73867725, 8782030.58329997, 8782400.746122167, 8782453.532774273, 8784089.20379226, 8784101.5625, 8785925.439690702, 8837803.877016112, 8858364.644648379, 8860918.75, 8861518.695982423, 8866331.61645373, 8866367.304356704, 8866766.301772006, 8868491.500371784, 8872789.89855011, 8894591.795219243, 8896145.809238657, 8897471.524895528, 8898682.449420495, 8899428.100791788, 8902110.037444945, 8915935.233214071, 8929725.212341383, 8929862.5, 8946991.356294062, 8965995.292314272, 8988935.914845003, 8989027.47700183, 9003080.854548762, 9015306.511631781, 9028448.178675152, 9039153.334397033, 9072264.000403479, 9080296.535660086, 9082684.560589511, 9092113.776170798, 9100228.003290338, 9126598.425091077, 9127587.5, 9130840.434396144, 9131834.375, 9186954.062380228, 9249529.619344203, 9250993.300721042, 9251357.468118085, 9334606.537937846, 9336641.864266086, 9340258.26663187, 9346556.132052466, 9346566.779305523, 9352002.30359554, 9355521.622740174, 9356646.281911768, 9367627.002991932, 9378629.528793266, 9408777.429831969, 9408835.58553913, 9436502.006147556, 9477140.157526968, 9481193.417880807, 9525877.659227178, 9535613.109229354, 9550873.612824203, 9555794.344552163, 9557744.370349787, 9558664.0625, 9589429.142619066, 9589462.964855138, 9591873.169585193, 9607337.616429849, 9620940.625, 9624591.26546264, 9627526.167389069, 9627712.074147027, 9628765.682311174, 9629381.144249378, 9633141.727270968, 9633876.065116495, 9662962.5, 9685586.656103507, 9690390.625, 9693399.388881829, 9693546.556794113, 9694368.701133063, 9695267.158124175, 9700623.4375, 9701045.62714725, 9710009.680565272, 9718979.4899164, 9732039.0625, 9733388.043193644, 9742055.364313338, 9752789.0625, 9752962.612090947, 9754534.427414365, 9754996.703358011, 9762181.25, 9768213.932085397, 9780951.306653738, 9785645.3125, 9786566.656168202, 9789173.349348517, 9798864.540469732, 9799154.72668759, 9799180.387305574, 9813625.128092092, 9832986.802729897, 9844648.878532698, 9846521.547077948, 9848342.1875, 9850929.10999889, 9858978.00470353, 9861879.6875, 9862532.789771274, 9862536.778500691, 9863164.0625, 9863195.3125, 9863781.25, 9873889.784072053, 9877761.492653258, 9877781.26083872, 9877785.9375, 9877789.68215227, 9880021.875, 9880054.6875, 9880326.5625, 9887477.34102211, 9887774.421520976, 9891298.422288546, 9892151.444231283, 9892189.04004841, 9904345.11536287, 9908849.25862552, 9911684.690082636, 9912169.281825142, 9922884.568061076, 9924919.799113225, 9926811.724052332, 9928693.75, 9928864.417757312, 9928998.032497132, 9929164.511287756, 9930212.373835692, 9931755.869437415, 9937618.623125972, 9938336.069534888, 9938407.951423604, 9942305.02121405, 9950795.106911559, 9952050.279718356, 9954098.479268622, 9960206.907456301, 9963368.749763127, 9968478.727917355, 9968641.959031416, 9969277.801665198, 9969880.581790099, 9971017.1875, 9972974.566172346, 9976425.453019755, 9977240.403732285, 9978771.756957976, 9979419.019335845, 9980040.63232509, 9991991.591936953, 9997880.403718561, 9998650.0, 9999645.418445058, 10000927.076536797, 10005678.219345687, 10022519.600922206, 10024993.136316247, 10027288.832348831, 10029211.263896327, 10029463.201695211, 10030439.0625, 10031699.209575323, 10033094.839381441, 10033105.44041181, 10039499.04244441, 10041876.284562204, 10041928.125, 10041974.574313631, 10042010.9375, 10045392.1875, 10055252.42175253, 10055253.503280908, 10065787.5, 10073724.393059012, 10077020.3125, 10080945.735834075, 10081935.201273145, 10082232.66653154, 10082650.48518148, 10082734.375, 10084199.916251842, 10086389.831738008, 10087311.323062522, 10087389.881400647, 10088316.362593025, 10090219.531589227, 10090880.295879077, 10092206.25, 10095118.635265775, 10096576.083392143, 10101624.076077964, 10121735.308647353, 10127614.0625, 10130204.6875, 10131636.171659252, 10133384.973284822, 10138294.82002988, 10138939.608833194, 10141721.875, 10141925.768514298, 10145441.829098523, 10157183.470989276, 10160834.620932996, 10163014.879672471, 10165704.139609631, 10168942.335076407, 10169206.25, 10172092.72085666, 10191676.48939448, 10192374.763266824, 10195681.484143097, 10195733.685292587, 10204102.090227593, 10215017.256636383, 10217202.393212834, 10236653.009818457, 10239934.890396379, 10245163.257999152, 10254188.480096832, 10264907.739514615, 10273820.228437709, 10277844.619594743, 10281995.446052957, 10297964.356968677, 10325438.143492846, 10326622.800090063, 10326673.563986633, 10330565.411860727, 10342192.682792274, 10351261.697461301, 10356776.500797272, 10357440.895198807, 10357868.390995923, 10381711.856993772, 10385604.962750802, 10387371.718191976, 10390215.391226636, 10390242.313680721, 10397513.046887591, 10399942.1875, 10401475.0, 10404146.939697284, 10415108.829110045, 10417023.091565246, 10421347.86229915, 10421519.76028317, 10422563.880339999, 10422635.24305213, 10423250.636647286, 10427378.009839468, 10436081.369884785, 10446307.763964787, 10456672.815012878, 10477981.25, 10478546.875, 10479451.903841447, 10481547.98642094, 10481859.597263642, 10482061.843475256, 10496809.375, 10499811.130701073, 10500639.134883694, 10508020.3125, 10510955.827015003, 10513450.494542927, 10531475.41014531, 10550114.0625, 10552879.6875, 10555579.993801687, 10571003.125, 10572330.080681061, 10573959.149652444, 10575966.998126563, 10587100.539607435, 10588074.997369166, 10589654.478985537, 10590571.197491225, 10593711.223726885, 10595520.377961732, 10595621.703969205, 10598335.9375, 10604738.342362417, 10605617.1875, 10611184.375, 10622496.368600864, 10623035.9375, 10625282.8125, 10632706.438925793, 10653254.70546693, 10662235.414055081, 10665645.141833525, 10672818.001385432, 10678445.3125, 10683400.342287691, 10698410.069060955, 10712865.428299703, 10720474.979403172, 10721608.95690347, 10722403.29985382, 10722417.594941605, 10722828.068602886, 10724756.680013772, 10741354.833270062, 10753040.625, 10754291.415930528, 10755722.072913501, 10756612.331013886, 10756813.24679106, 10757007.405298723, 10760376.838121304, 10779058.7930938, 10782930.039359242, 10790359.46092573, 10791918.022340108, 10798496.875, 10813014.169301106, 10813975.715340607, 10827649.943713328, 10827662.5, 10855963.957073092, 10866387.442359658, 10866394.692718117, 10894065.625, 10894719.604340427, 10903717.1875, 10903867.155961359, 10906113.991595067, 10910718.887289444, 10914179.047504831, 10921904.041645259, 10933223.4375, 10933778.467167763, 10940643.75, 10948131.25, 10952047.361607254, 10953711.731600486, 10983065.906108953, 10997146.099286774, 11064173.4375, 11079109.375, 11081176.912657438, 11081442.000796914, 11093832.025380246, 11094987.5, 11095439.049378632, 11099887.5, 11124926.21733392, 11134812.412065968, 11140814.0625, 11141454.6875, 11143630.32897686, 11151768.266356476, 11157258.166287348, 11176909.375, 11177126.859401071, 11192273.80283519, 11199949.369259646, 11228485.753424808, 11232653.00132046, 11288145.3125, 11289559.375, 11293937.5, 11324590.073768819, 11336661.927933581, 11401369.49373836, 11402374.749301946, 11435984.704060553, 11454907.8125, 11504795.33108825, 11508789.0625, 11510298.425935471, 11529481.491803844, 11529546.571982868, 11542725.691525701, 11577941.650266917, 11654347.817654615, 11664689.335272407, 11693022.593064416, 11728878.100790454, 11729262.286034713, 11761876.5625, 11765842.1875, 11849839.894941116, 11863363.470702058, 11933834.375, 12159356.25, 12336873.393781368, 12393749.036805253, 12564480.058333626, 13569118.13721107, 13774424.258881712, 13779131.11023929, 13794331.355246589, 13800501.5625, 13810679.396177758, 13824770.141386127, 13843690.306245424, 13859135.34488855, 13866511.15183809, 13871116.59387907, 13965718.623466592, 14092970.3125, 14183006.443979286, 14258941.89191574, 14314791.41164278, 14323459.003385667, 14339679.092355413, 14346377.337930778, 14350776.5625, 14351069.067224994, 14376501.209088312, 14380111.664582163, 14382368.77537072, 14383757.442813648, 14383764.090563538, 14385973.408831276, 14386251.5625, 14387325.0, 14387435.946722394, 14391079.186013043, 14391906.915514702, 14391967.623671398, 14391988.051018676, 14392096.03106613, 14394329.74041407, 14395892.316439051, 14398534.26215201, 14398578.125, 14402906.234311294, 14403328.492314734, 14404531.25, 14405066.636422498, 14405395.126085741, 14405462.618957514, 14406018.081019467, 14406935.9375, 14408692.1875, 14408915.625, 14409221.393483244, 14409655.175036317, 14409984.09426888, 14410114.504065398, 14411856.25, 14412574.14933045, 14413112.798319882, 14413353.981442887, 14414165.96554265, ...], [25.68177775314591, 26.87950065097089, 55.92055364884136, 57.746054124404864, 73.30237363827469, 12.155168450066004, 98.52238879053675, 17.80008643051711, 46.86280140945271, 23.0786971495751, 17.459704037379737, 26.92533766451151, 9.881579175112352, 74.81864185729187, 7.849085821800065, 90.30980200335357, 10.37617274840461, 6.042877578703592, 98.9687435259236, 19.723951385227977, 5.590090506092653, 47.27823942263107, 7.431687450941697, 5.975460640211403, 25.690649567219246, 13.511209699197497, 22.35798176494778, 5.723859998871313, 5.043253181847251, 69.79345747868786, 12.829469619991606, 28.85038366330086, 12.906295744820648, 24.631529149547255, 5.249091521816958, 19.679226524848094, 35.66781296360792, 42.49122992017405, 6.006940925808279, 10.235928706064017, 26.358212675387524, 5.789884028717971, 8.76745678326083, 84.57589917156118, 24.637678082587637, 41.26633785335211, 129.03189911822884, 27.955088236331097, 44.50314782562143, 7.2573496122327565, 41.08812321823621, 63.432397523497464, 11.51234976015048, 6.878848645919671, 6.5909873779933426, 31.36233410824793, 43.889500294685874, 23.969324433414705, 69.13583018161499, 76.56988386429336, 87.42655959110235, 54.79680779327288, 14.382884766262325, 6.563461871750707, 34.254707900142066, 42.9157544015208, 15.522802487507786, 5.187292036696115, 21.246603498621308, 104.69742747407216, 13.891280632979242, 34.253449027415904, 55.48132159303138, 92.19595273962452, 21.124392776318196, 26.692892612411008, 51.83153473689268, 47.319549730483814, 11.305003809747475, 11.850301312549371, 96.56492873752205, 21.31162909631306, 21.45862518191124, 47.40616185291427, 5.366968541757669, 69.91922809792203, 6.925283510289228, 77.08907625520524, 15.382894316523775, 43.36015238034692, 23.22490460958883, 156.5119124652569, 6.784567114392404, 22.79240536322282, 17.506443271795227, 102.39128039530176, 13.552508098641173, 24.7184078763564, 45.34201642832231, 31.17659826204944, 21.353558337298143, 79.63919927967902, 16.76709353568089, 47.216308981591396, 48.602800678697584, 7.520666704291413, 28.248438116633938, 21.4477055455485, 23.272588389124714, 31.02115960668084, 22.244255252831795, 6.073011431965575, 38.25419582704218, 7.235885547119015, 64.63138029541973, 139.97052144209454, 31.25816105794128, 43.0335827540446, 103.92339154529176, 6.394373183381727, 7.958627633949787, 17.808640266332485, 6.58363837726866, 40.99398776079527, 28.773689905144256, 5.376046820416823, 8.396219067483285, 21.430378642276985, 12.1134563363047, 45.25245820863265, 5.053257381637902, 61.119791699507346, 22.6615999664548, 6.263275471265735, 87.18993136362266, 14.185117774248843, 15.244603020565906, 279.6967662705448, 125.1805417333085, 11.934000330770571, 33.02081409263034, 40.39239708765217, 45.17572176939505, 20.438003881455078, 83.75129541065283, 5.646396566072761, 7.726311890243409, 78.10214066884095, 72.98531426845152, 32.340583570431384, 6.3875950033028355, 5.865740726627514, 114.22896663328746, 23.92526886087458, 18.650824879516797, 15.54306128637527, 26.603574081253214, 11.589221880815192, 84.28249104064552, 77.94075546149209, 10.34013446950311, 5.200378128879291, 17.246770234602344, 27.670116471034543, 9.438547197734962, 15.55650868378295, 8.199988578226668, 83.17607010640864, 136.10235014572262, 65.18501089092464, 17.277221848851877, 5.292418075307008, 28.69533421191138, 11.938243383167407, 9.019573247129776, 7.266725754826902, 28.45996487488022, 5.049198790502237, 23.39799816254989, 142.53219143598722, 16.050471962444973, 80.26910741009699, 6.341049203159801, 21.84583784477828, 18.160746080427998, 9.987912073056522, 55.81187170985854, 71.58100613038945, 32.198152735073734, 33.65230173324547, 50.42746988758914, 26.408030033835576, 78.4730773491089, 59.7153788456454, 24.119368921498577, 5.162497190328549, 5.370196000072673, 40.007041988668234, 53.63323441132413, 17.794289230301782, 80.84447221292533, 9.29016025474013, 13.815983698343363, 15.162368147315101, 48.496801976603614, 88.94470133260808, 13.084357200151498, 22.28288625757783, 24.49640720517673, 67.97278186151459, 10.693511637477402, 87.52934743577711, 48.23127815334064, 67.25409961323385, 23.949845815287233, 12.44649903229547, 56.47485288760326, 30.68871630219458, 14.319787779069555, 8.540136693837528, 41.26094515698338, 13.205279373803242, 14.407861908876397, 26.83296354461273, 58.11453978360021, 8.83906828724871, 5.348857944366991, 56.40174587545607, 22.938870141308367, 46.74591520250754, 12.580427158132766, 63.05088537720446, 64.68906590740414, 5.07971839224917, 6.735722343454659, 110.3865948098586, 5.820552026429214, 6.711766618671606, 6.2293391605653845, 100.16867238946205, 5.35643897680334, 19.824547247945294, 8.518640051198355, 54.76396214044378, 18.80660418211021, 5.826467104139402, 13.750686141723595, 8.87449911435552, 86.48891164315151, 23.81237718983441, 9.493032428010807, 10.03966462552082, 40.6323928756594, 35.348196366635776, 8.408610798879975, 48.12103535988129, 21.819627792959214, 174.94220986143887, 18.470832517081167, 101.602893150972, 9.091175568112687, 11.91240897449789, 64.32977274876947, 20.83352441874132, 11.247599111022332, 31.976293970186585, 5.810119688133458, 6.744936614730582, 35.646808188441696, 60.06521602172833, 28.248912895874184, 7.084455188617361, 14.858647010712225, 37.634905604885546, 26.930975660975868, 21.30253174438215, 59.58773213795559, 27.883244084738607, 44.77180549662627, 50.71862394538588, 17.436782094197355, 8.497812878029603, 22.88812857380271, 15.829519520835285, 7.770410371432953, 55.80949052791588, 104.9478905554565, 41.43448702267472, 38.17065418064701, 52.489655838097946, 23.95119260573161, 5.129861935237577, 39.19621901796885, 12.5170281034511, 77.72730456375935, 10.974944274065626, 41.82343762069435, 8.598447470982512, 6.572815540172493, 6.79376335837877, 40.56282407924484, 36.21425500652957, 46.95523356690751, 49.83073190735557, 9.67455360211408, 75.95841624638477, 48.6127442061317, 68.18179427999826, 45.093146554740805, 103.46157369021839, 8.630872412970636, 36.36878231375637, 32.00646281480724, 26.67369953075703, 8.022820673934072, 36.08482814902215, 21.65250275203199, 5.64620933646496, 9.151057606187946, 69.24134414750112, 6.1860086825873015, 38.46078721151348, 12.40902207725552, 37.72418742844841, 41.6136120730517, 33.890320664340734, 15.676667949216895, 28.296832901355934, 30.180298486328113, 36.49624131518077, 72.51516087489361, 44.04528336887527, 179.48840543776097, 5.438298888142502, 6.024250613926244, 54.87882342075126, 29.473426640109793, 12.672969831395127, 44.49834289144251, 7.4996913182587805, 12.557028231226548, 48.656203305152516, 15.62855517133938, 11.36639159805418, 12.579279535296578, 7.863875995197612, 67.15691352868049, 27.498858413700084, 55.666711945503664, 26.12744378227691, 53.594861164183776, 11.094678086043194, 24.043686754132843, 27.55792263628095, 60.98385159798082, 26.32824425496649, 119.69782187377297, 16.448245364684375, 22.609829158412207, 40.75734856233123, 6.207932140135819, 8.649549444721737, 39.726707366688444, 64.16257765794298, 16.386548073906127, 44.58134192901483, 33.83142709508436, 40.52037802701787, 64.63631988246475, 44.90104081278581, 6.194969370533377, 132.7120385597923, 118.33322278855255, 14.15978785881455, 37.28243210082863, 64.35286502028406, 28.571521400655183, 17.20065536813458, 62.81786959282503, 22.07726037890892, 110.71291933331673, 91.09762917253465, 29.374297319506784, 28.10619934069754, 26.919649353673016, 12.64523360667416, 29.04354470695823, 7.260640858574734, 5.200222946479317, 111.63261997515806, 52.744655008608525, 16.82402230145782, 13.30838778699746, 80.40569286225339, 21.70363934793378, 31.792296449199796, 16.188905424549574, 41.49751497385311, 68.69065094470591, 8.786878413827202, 20.137261917761183, 7.635420336986433, 7.171702911089154, 25.48115895783171, 23.70183045357882, 88.36641085460991, 10.57989484666762, 60.929192167139895, 20.509373534047725, 144.64837851449266, 154.308897400408, 10.165358343498381, 112.30636377338287, 44.824601282934566, 58.598485784437784, 127.96632684754744, 41.86512720908625, 14.09872225976688, 82.45908329432697, 10.146448073167267, 13.750218766247073, 41.32430166901385, 90.00749695457607, 12.897551835414685, 6.0222760036892184, 41.00463219117854, 44.642539030353205, 15.41757373541225, 114.5590954435441, 11.250979726269595, 65.01023266939768, 13.190833587965956, 21.9405414152812, 54.116794301906445, 34.64709094745225, 80.17242159139835, 29.297888664970593, 84.88491871442861, 31.86160783536014, 10.572201859961623, 61.833247707384956, 20.770406187790634, 41.33332523166507, 17.472329772978416, 27.956987053367705, 45.22555989407572, 95.67845630030843, 63.175147950778594, 136.50423245889755, 69.7867442825645, 58.27422030387742, 62.29071539186497, 86.05028572542336, 67.55452922035937, 69.8496691896093, 26.770841359915323, 24.483488911581265, 52.56121420409508, 64.61813125856867, 101.58707906174212, 50.89229047650461, 109.69228834463593, 5.037684509860427, 28.983015256107546, 16.894567671430995, 113.39548868026563, 9.685745301864118, 36.33412725582411, 54.52567982856932, 5.296841544419218, 111.37034805101861, 41.11525263134148, 43.661383624743195, 39.92372330650174, 6.619125595381229, 9.81654431259957, 119.6197838022172, 61.900360374935275, 14.358971841228431, 12.254018115536818, 66.89161502236152, 20.097221869596233, 6.0314313947589735, 44.21036268692747, 9.81567936046329, 5.741536537862963, 80.42147285968798, 82.64224545210344, 8.123734155175026, 53.95885374433976, 7.099915496181632, 59.78330988375823, 40.597111057766696, 31.118163347972605, 55.44688170751985, 75.18164063380615, 91.0406553678701, 13.274675411486246, 14.891165914078286, 20.104792969895843, 10.422767201545277, 9.123518508341833, 10.821722565203642, 57.05418607195509, 11.22390903095969, 24.259787591851953, 85.07807586718262, 184.56500963602642, 7.191339434081088, 88.40593469653565, 64.71130206433658, 18.034023495969972, 6.185789248178628, 55.93980706154886, 50.54639215322615, 45.25664792428459, 11.798799489759741, 28.740169182859084, 42.20583053340248, 5.755913869191848, 18.13022396243852, 32.06413731511638, 10.21566576662718, 20.1347318437279, 7.70033792890465, 25.520896891366903, 63.76637627299054, 239.19273230212914, 18.117998118475217, 74.6189272666269, 37.975859602084256, 12.822127906129172, 35.14780401252915, 16.406818890296996, 19.402481952216977, 107.39748107589854, 10.18960839066442, 9.375054591767169, 33.54845614213799, 8.724922944378244, 33.79722185497617, 58.802196323513606, 37.11899238306486, 16.931946997246968, 49.27277264162629, 58.90648470201907, 32.61361814638345, 47.87892880508553, 24.47265875118716, 57.78733706499889, 44.27351229927946, 26.57585431211245, 130.494060366854, 59.9527245529238, 17.246323240735773, 66.71213843727664, 99.40339217727458, 11.090077468088971, 61.767692192047264, 36.21709791099105, 157.12347877782238, 77.83585902358843, 8.715266055495011, 43.33512140662303, 28.084202055820956, 5.085912394720661, 9.018006222578428, 24.471513182020313, 27.18135249700599, 11.471580466531288, 27.353572224074657, 126.10490689974375, 11.430739019961973, 13.951986447334304, 17.85174919688331, 13.205570758373018, 50.53929272614195, 25.25650601147603, 56.55083615059643, 33.70849326241215, 20.370976317860443, 65.81125163295518, 23.199909007130685, 47.31730041427752, 23.4584290782593, 49.64300982599096, 99.14475075741066, 22.46055086056282, 10.047931546235583, 14.059939198463915, 65.57390636170338, 78.68249526829467, 25.740546520896263, 12.821525201865759, 48.65967353825759, 99.54319476958062, 6.040798801073969, 80.94169241040814, 65.5112426933963, 54.32988209742656, 9.48418404190638, 67.54114289053173, 17.98443164474944, 62.86411162838101, 41.39673885059851, 17.068713746447965, 28.986216667074604, 5.345927199644707, 38.54494025908006, 54.648106063528196, 72.57374353207993, 69.36834496781026, 6.274466476781631, 5.394446616216508, 28.868136937905824, 39.863627138685764, 28.68368025223753, 43.861482368946625, 59.14348689082663, 30.920774425629006, 25.07174890954294, 67.98075784102681, 90.43195611118168, 49.24926488092024, 24.17385588313646, 28.59675348138201, 80.68920608025118, 66.8424525433246, 15.979531296652262, 12.380808499536053, 40.90676628937147, 26.369588218791904, 43.34842958694166, 149.36513134332765, 97.24202775812603, 91.73468442829272, 52.021344006162344, 128.1267229274039, 21.186140853005845, 60.724272040448966, 6.862834617373932, 28.083180954246693, 26.87010603613922, 18.022851904066247, 19.72771527364906, 11.894949204956298, 5.68620123897269, 51.95135926658386, 13.11868479859495, 58.85087120690744, 63.56630475139718, 28.08279300825269, 28.871981224947767, 87.27722778876023, 44.73855508076699, 52.56212519686714, 61.95022228744593, 13.72437430991694, 6.089227073904853, 42.79752911824567, 6.348795462006056, 39.52838573483144, 41.77388203675068, 59.85431862765655, 57.74582564217228, 70.27899551968079, 28.22732340173158, 14.509104403765818, 34.55773421333727, 14.239830361215738, 26.880470279291984, 8.46053593292674, 24.53369374372497, 8.39137989895918, 31.054468774837737, 26.41888009114472, 81.457161490242, 41.549018551292505, 27.687867786651328, 16.98104835347881, 48.32901658350447, 100.52253596122894, 34.17773253865251, 37.787464102470864, 7.158455655357423, 16.386819137422737, 89.26434257014044, 6.531852106919745, 11.193627561183655, 16.96512922705643, 28.520538641864977, 17.723669717897078, 29.522993279534568, 5.517591195671832, 7.962230827345874, 36.62431703851536, 7.453520578254842, 17.004021282148948, 5.452348955548412, 26.391103274251773, 13.063479082330051, 14.608256749430888, 20.589988207230704, 18.61769386599401, 29.36928132076586, 44.41260310036231, 17.344773064029386, 11.27844841435591, 19.172763155477618, 21.16132022353095, 65.02942782587095, 58.485471167453156, 18.518009120569268, 118.62408319109129, 25.970182674543842, 47.80914339509541, 6.170058742702921, 5.648411325427125, 47.40404104597275, 62.50973735748317, 38.70095094839595, 43.9853576867566, 104.20995216465542, 12.801857233581776, 6.316204464260841, 30.37901587003376, 20.488756276072415, 43.035734507131295, 8.523892621205505, 7.357025670334292, 8.210866232154778, 6.56593588712024, 38.11429072441532, 34.99368861724344, 18.993816041007964, 75.20775323523623, 61.035960825953325, 5.427440544429721, 30.54965543587652, 120.55995852761853, 75.24643549865053, 10.952983704504547, 85.61234546654396, 89.33246470503366, 34.61611284143447, 47.59468168631137, 37.54421525800071, 83.66670780950656, 6.889131711468085, 39.46033312114135, 33.80598514345432, 65.01649347650303, 34.07064403360059, 35.91769979513571, 12.340821799388081, 6.298778430467196, 19.351333677053503, 27.269037219539438, 18.330916021339263, 96.34719907887838, 9.827145136737741, 5.933064241282865, 31.35874673564378, 13.438652208548175, 5.372745882567719, 17.42376318685772, 15.211739594035357, 35.98087965569916, 26.438357377844845, 17.352574618969523, 50.77783702208138, 38.699329228935206, 6.258021019894094, 173.13090859318407, 8.807020109160485, 19.089530383936946, 16.19673037616085, 74.69914375197015, 75.37605365697418, 6.50710361583173, 59.759418837320666, 92.68126310403741, 12.567389539664235, 6.751250302313637, 31.089870981493895, 27.60505993911896, 20.176048338294905, 21.808030033926883, 60.636923700972176, 81.73237290430102, 21.24311579107051, 49.94094388408957, 40.674106434419016, 35.62996683702202, 5.945059627541044, 21.04722045820471, 13.768774857564713, 57.403656925752536, 120.27380871399096, 20.557746332213473, 24.95279180178335, 5.996834888022277, 77.92287885338342, 15.419029022838433, 86.89699506362884, 13.002650646017491, 50.82465985512344, 66.28373323998098, 16.42447256798255, 6.211841707998763, 9.526687134501485, 19.838249050644265, 46.109936277017496, 23.6523248911901, 18.26550463246279, 65.57875789196767, 80.78171473482084, 26.8096417616522, 17.558928775705645, 98.44632036291537, 28.69993140882286, 16.25341018837203, 40.68157173501207, 5.2562845094014845, 54.18923882383914, 54.96150178446737, 45.259242445765, 37.62962042367076, 35.788918525205276, 27.555719989555563, 16.157569903366518, 96.35027580474407, 25.55089647630043, 34.669915624591894, 41.658105592870655, 113.45879160001212, 28.717375509801933, 22.981714940475896, 60.204698810201, 105.22948627323754, 23.922141252073565, 9.346641574853912, 21.26236992220199, 25.556454648021937, 38.90628440344787, 42.05487734498461, 31.30191523014078, 51.68674483688973, 56.08779462329409, 8.275715329365337, 5.783679096057817, 15.65266139442859, 6.5529160789328404, 14.730820571031723, 8.527865895693862, 25.365289562721863, 54.3657004189835, 41.06316552635258, 7.174467436785147, 20.461665608003884, 25.663779652152915, 145.0729879286351, 21.995054648109782, 26.66908722817151, 41.88576975004771, 17.114267108056907, 7.359677069111085, 46.88182526413937, 60.39452728740727, 10.01959959099486, 27.45835979952498, 50.80575081784013, 91.06707065872227, 60.40271255167685, 23.68741740492839, 35.83455964665602, 37.14981015387248, 40.7131949627249, 6.7572264152882315, 27.196501201762562, 13.607265020751601, 20.20169208561933, 62.01574959726642, 56.20553102804675, 16.428565897348008, 53.34662120300405, 55.355451919252026, 5.306358647329396, 19.177100229899075, 112.45912569107125, 7.914958179879935, 50.75922508977208, 52.12017918121791, 9.646136748036007, 14.274633377304742, 66.61577172152857, 54.97634961074516, 14.891731659682081, 62.35276145007127, 13.14847753043033, 26.89883863513178, 58.1398021187065, 84.43879638036522, 6.898706171134538, 13.37106691264435, 9.649607283182204, 76.47076808909617, 16.208337419008522, 43.20660379757115, 50.04768081362772, 33.94801793977828, 26.298562645614286, 29.851924172906177, 44.496352583082036, 38.81277608194527, 66.19317472803641, 29.59506716093744, 18.81047855849251, 24.401618911059522, 16.757874781016422, 77.75762355048214, 89.47153805553809, 45.619483648981955, 38.39819439830765, 11.52793552290534, 30.164133668836847, 42.15127254462193, 10.380381747874607, 94.85451047756263, 64.80804663646356, 7.323931984641233, 14.356689042656015, 43.480336073827786, 31.827057665225844, 83.58854457781507, 19.468905554722248, 20.62376712221655, 70.8658202166939, 30.768514881950807, 27.688336271392497, 9.895363511817367, 8.49292419526128, 20.43721497369158, 7.355513899623753, 38.97079660958392, 39.794022500866696, 30.39127143690976, 43.08336080668562, 10.870379121548172, 23.157576073273326, 5.582079658028811, 5.471041992537034, 34.82080332053333, 72.67367081712769, 35.865023889648604, 41.32844038286608, 7.4997175918610575, 82.94839340586637, 22.877130906137115, 8.87423289211776, 161.44608826322323, 97.55926478999099, 9.614856173297472, 23.091643388754225, 8.712530777884004, 5.815859870164837, 139.83536380101668, 11.171857083030046, 37.04244841158446, 94.20688801485035, 42.5423760779627, 20.815526605234393, 21.16416563402493, 15.037012888496475, 16.913053691259893, 5.988872322685675, 8.707010750223612, 59.42196018814101, 18.954680275654027, 79.7004295395814, 32.53387025156215, 9.31817262513835, 11.754862921232027, 51.642151514091246, 13.188300262514044, 25.318830724425638, 9.434055587776028, 7.377963693008776, 71.43281131555028, 67.99118129316152, 33.46304800702908, 13.376953952419123, 17.1945542711414, 68.25142546668819, 5.735448767978743, 47.47584281089682, 12.458344647825372, 11.628375953066586, 8.798129540476417, 5.839614646915809, ...])
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);
([6997615.462497702, 7027559.285944097, 7062505.488793055, 7064542.893405898, 7068160.594038151, 7069369.320957712, 7070252.418922727, 7071175.891012362, 7073345.257646664, 7080925.350855271, 7083020.84640241, 7086492.10110016, 7086930.273610364, 7087940.625, 7088303.757160484, 7088584.628284451, 7088697.896864681, 7089424.553616087, 7089603.125, 7090012.625042971, 7091451.121244779, 7094275.0, 7095697.9369013, 7097120.717410033, 7097942.149421295, 7100041.75374401, 7100491.770039414, 7114012.765406765, 7114125.101182887, 7121139.0625, 7130461.292206025, 7131989.964305537, 7133860.27673063, 7142464.704052138, 7150145.4528878275, 7150652.421671034, 7156191.02722421, 7167573.311498437, 7177203.8691511145, 7177594.655726234, 7182777.502006012, 7193390.293938677, 7197649.248163416, 7201191.886959752, 7204448.853968319, 7206003.836701655, 7208228.125, 7210329.963271027, 7213805.784219726, 7214455.180426225, 7216210.9375, 7219519.904858821, 7222553.357892215, 7222564.6140338285, 7223419.382235434, 7224395.313803568, 7225262.5, 7225696.20190855, 7228264.302588593, 7235057.8125, 7240852.149536151, 7241997.979666214, 7242292.032788874, 7243505.15797935, 7244960.759228016, 7245143.75, 7251688.747936187, 7252796.22988253, 7253711.9749296745, 7255249.751071177, 7255588.55173559, 7258228.125, 7258319.959670978, 7259956.59815223, 7260662.195315078, 7265430.753199892, 7265847.207046248, 7270714.4215158215, 7273776.673043235, 7274969.167835948, 7276228.125, 7280431.056689926, 7280505.746537081, 7283865.114582828, 7285417.900681893, 7286664.0625, 7286683.57219759, 7287847.552806585, 7291681.361175387, 7291999.443606611, 7293370.3650125265, 7294529.473084369, 7296062.604583942, 7300625.872903271, 7304598.979382032, 7309396.875, 7311323.870577065, 7312055.0932696955, 7313638.220418535, 7313848.008045221, 7315912.049273905, 7317193.75, 7317544.909102006, 7322006.086070052, 7326981.25, 7337121.640783509, 7346639.048379152, 7349326.057937325, 7357761.7887897035, 7362428.874012975, 7367357.384641249, 7370773.2911523525, 7371500.464337523, 7371867.605644857, 7383925.0, 7384366.748136603, 7398549.831985643, 7409235.9375, 7421831.596143208, 7423372.819383044, 7423961.823694819, 7429656.842138763, 7430430.276936123, 7430710.9375, 7432121.875, 7436132.213191347, 7444289.264234758, 7454876.056189387, 7455925.964103534, 7464146.875, 7464222.558726425, 7464511.481547654, 7468115.1647029985, 7469926.531387161, 7473527.7817609925, 7474361.940888607, 7481201.639810627, 7481818.925476153, 7482065.625, 7484145.773598143, 7484234.375, 7484728.125, 7486472.881531339, 7486771.262300863, 7486905.667565716, 7491084.945355682, 7491362.82792783, 7492889.907358742, 7492934.375, 7493551.5625, 7504622.772003551, 7504777.238370754, 7513420.3125, 7529846.567337367, 7530277.874248278, 7530769.605959423, 7533112.394724262, 7539242.463974748, 7540964.4937773915, 7541825.912318897, 7557583.805038771, 7559229.567606964, 7559241.121817793, 7559478.252221741, 7583768.8740532575, 7591069.90085029, 7592318.582589782, 7595586.384160963, 7609859.375, 7629104.750426012, 7631433.314696041, 7633329.730523483, 7638720.619847834, 7643591.088265913, 7648602.731657728, 7652502.087749154, 7656126.790431851, 7656236.386866311, 7667091.8593739625, 7667573.891432217, 7668199.868030287, 7672354.855168216, 7676616.187993902, 7676658.909647924, 7684030.335424081, 7687422.561229413, 7696828.125, 7702507.80798366, 7703297.016934975, 7706660.331947317, 7707553.125, 7716904.570484029, 7727779.008644232, 7730068.47445109, 7742243.478320756, 7758310.814081985, 7759061.740066863, 7764653.777849491, 7783864.0625, 7785986.527303167, 7786424.791819283, 7790870.263317843, 7796811.4338423, 7798926.619262754, 7802398.4375, 7802476.5625, 7802666.59681451, 7813407.3881881125, 7824548.678554026, 7825523.3675892595, 7825620.015742594, 7828784.375, 7838153.435416506, 7843450.0, 7850472.620179109, 7869450.931677041, 7885399.282975081, 7895265.625, 7895288.889225913, 7899100.450563196, 7899462.5, 7910980.747579983, 7917624.852572821, 7919680.455607118, 7921170.190269895, 7922418.104072705, 7926203.326035273, 7935000.61059154, 7936892.476516399, 7946487.226835079, 7950319.5156307025, 7952378.613048455, 7952437.133435512, 7955311.523961819, 7956888.921718347, 7959695.077056176, 7959971.963424566, 7962841.922691642, 7963840.3193522105, 7966448.330783599, 7967259.792631016, 7969038.680583683, 7973234.7894842, 7973236.395172049, 7974296.945894621, 7979757.979846364, 7981409.02305448, 7982508.780236875, 7984461.800632915, 7985152.29163196, 7985631.435159934, 7985841.358607002, 7986816.3822245775, 7987615.625, 7990243.973851605, 7991019.901535249, 7991933.907121504, 7992724.31825125, 7993591.319750503, 7996278.503695204, 7998030.951540112, 7998637.820469666, 7999373.712020637, 7999965.056237115, 8002603.200372765, 8024740.625, 8025639.010187318, 8026534.28126669, 8032173.4375, 8032200.0, 8033804.673403652, 8036948.294864476, 8038017.165588874, 8038370.081080467, 8040193.886822639, 8041564.49259293, 8042996.606007819, 8043274.28584279, 8044665.754585605, 8045646.879962063, 8046000.52996822, 8046014.441673297, 8048665.254329121, 8048996.317660943, 8051272.314707016, 8058357.8125, 8061362.7940958915, 8062050.0, 8063817.1875, 8065284.375, 8066073.15303221, 8067421.8450179575, 8068931.25, 8069358.497014208, 8070381.092144569, 8072646.775018313, 8073035.925944099, 8073202.109096828, 8073361.463393645, 8073753.274689015, 8073839.944353736, 8074795.3125, 8075419.276410736, 8075906.402292, 8075948.817240361, 8076107.650826524, 8077457.8125, 8078129.727756834, 8084801.5625, 8084845.118257002, 8085355.286370073, 8085540.625, 8085637.302492402, 8085699.898884436, 8086405.715546658, 8086425.0, 8086458.890832251, 8086513.067135981, 8087916.966224581, 8089191.979401839, 8089494.641677999, 8089573.4375, 8089605.377133091, 8089898.4375, 8090037.380665287, 8090094.838234359, 8090236.117873761, 8091106.2383715585, 8093631.25, 8093693.75, 8093833.998626424, 8094082.8125, 8094089.965806751, 8094143.191593216, 8095769.675293543, 8095775.0, 8095829.977904515, 8096022.680363172, 8096198.4375, 8098745.016838265, 8099149.192942869, 8102114.466954935, 8103193.919287345, 8108015.7725185035, 8108944.515132379, 8114525.667381134, 8125424.934701231, 8135100.3523634365, 8135864.0625, 8139537.955052064, 8139937.5, 8141620.291265984, 8142613.785092706, 8143093.3330241395, 8143257.8125, 8145188.940633814, 8147293.372307144, 8154064.679371879, 8174304.292605485, 8176498.429049672, 8177649.516054624, 8179020.941123152, 8182212.899971619, 8183167.1875, 8186595.646158968, 8188342.1875, 8190146.628126343, 8190204.6875, 8190642.1875, 8190913.709377683, 8191252.531092064, 8192153.125, 8193748.10905362, 8197112.278585347, 8198084.485572273, 8198881.25, 8198884.375, 8199253.6136246845, 8203494.44520451, 8207297.159572916, 8209034.375, 8213281.25, 8213896.875, 8213987.478494882, 8214669.407004908, 8215546.1060477225, 8215590.548391647, 8216373.941795942, 8216431.1239717845, 8218991.230789579, 8219864.0625, 8221887.919443964, 8223618.243539787, 8226333.178468515, 8228378.276032677, 8232086.583402102, 8232534.373384773, 8233190.515461657, 8233427.591644032, 8238107.089723722, 8238144.824545699, 8241756.338112278, 8243709.562776145, 8246757.299588218, 8246780.946161248, 8249212.5, 8249373.056276078, 8257203.125, 8257930.645387834, 8269605.874055012, 8271579.6875, 8274560.220172138, 8274904.6661962615, 8275067.1875, 8275778.125, 8276009.91884402, 8284519.91727265, 8291173.197295951, 8294420.3125, 8297139.891195959, 8300274.380667988, 8300639.0625, 8305863.410004031, 8311927.460713986, 8316139.967317603, 8316507.8125, 8316607.434141787, 8317969.728159329, 8318460.9375, 8327582.889960168, 8332546.684789152, 8334307.262376226, 8340028.0200019125, 8342134.375, 8343143.75, 8344206.444760887, 8345284.375, 8345298.4375, 8345640.128902325, 8345654.300445596, 8345685.9375, 8345725.986867466, 8346023.4375, 8346906.786063555, 8347417.929749416, 8347855.335876728, 8351479.928142557, 8353812.295291171, 8354934.375, 8371357.8125, 8371450.0, 8375467.1875, 8377904.916409082, 8378303.125, 8379108.192390599, 8390008.650050953, 8390018.505277801, 8398026.5625, 8404910.9375, 8414150.0, 8414653.692038659, 8418870.435433306, 8419024.769719232, 8419931.25, 8421184.80771771, 8422490.483683338, 8422594.141305039, 8423741.912144449, 8425885.9375, 8430134.560171317, 8430994.679086784, 8432298.276992492, 8432857.11447169, 8433124.010672268, 8437200.793560019, 8446498.960461155, 8447066.362961084, 8447177.892945798, 8457422.747128623, 8458486.555574156, 8467568.124834651, 8469085.467298333, 8469386.936853264, 8471179.6875, 8471681.772111181, 8497589.59544029, 8498010.695819663, 8498601.697053084, 8504802.803820916, 8520007.8125, 8521031.167434372, 8528665.625, 8533368.36388651, 8534959.971697435, 8535384.90903114, 8537521.875, 8540454.751540182, 8541228.985592153, 8541339.049228791, 8541768.098575637, 8544794.809265835, 8547541.930968104, 8582135.732504692, 8585736.824369324, 8589309.43568753, 8594585.676333154, 8596861.017554231, 8612865.625, 8621329.946856612, 8624051.349757183, 8627129.6875, 8638763.054455118, 8667091.514785135, 8668277.061667288, 8675292.1875, 8685417.754422002, 8685947.265733488, 8686507.535393583, 8688795.68856487, 8689869.49562694, 8697614.942622228, 8701480.575180633, 8704175.88848805, 8706088.414621877, 8709295.573218575, 8710396.701999523, 8714161.92430599, 8715410.01299033, 8717043.103896623, 8717760.9375, 8719932.428329425, 8737549.305078963, 8752065.87816013, 8764423.775271293, 8770971.136344202, 8773904.2642074, 8780038.36614497, 8780804.73867725, 8782030.58329997, 8782400.746122167, 8782453.532774273, 8784089.20379226, 8784101.5625, 8785925.439690702, 8837803.877016112, 8858364.644648379, 8860918.75, 8861518.695982423, 8866331.61645373, 8866367.304356704, 8866766.301772006, 8868491.500371784, 8872789.89855011, 8894591.795219243, 8896145.809238657, 8897471.524895528, 8898682.449420495, 8899428.100791788, 8902110.037444945, 8915935.233214071, 8929725.212341383, 8929862.5, 8946991.356294062, 8965995.292314272, 8988935.914845003, 8989027.47700183, 9003080.854548762, 9015306.511631781, 9028448.178675152, 9039153.334397033, 9072264.000403479, 9080296.535660086, 9082684.560589511, 9092113.776170798, 9100228.003290338, 9126598.425091077, 9127587.5, 9130840.434396144, 9131834.375, 9186954.062380228, 9249529.619344203, 9250993.300721042, 9251357.468118085, 9334606.537937846, 9336641.864266086, 9340258.26663187, 9346556.132052466, 9346566.779305523, 9352002.30359554, 9355521.622740174, 9356646.281911768, 9367627.002991932, 9378629.528793266, 9408777.429831969, 9408835.58553913, 9436502.006147556, 9477140.157526968, 9481193.417880807, 9525877.659227178, 9535613.109229354, 9550873.612824203, 9555794.344552163, 9557744.370349787, 9558664.0625, 9589429.142619066, 9589462.964855138, 9591873.169585193, 9607337.616429849, 9620940.625, 9624591.26546264, 9627526.167389069, 9627712.074147027, 9628765.682311174, 9629381.144249378, 9633141.727270968, 9633876.065116495, 9662962.5, 9685586.656103507, 9690390.625, 9693399.388881829, 9693546.556794113, 9694368.701133063, 9695267.158124175, 9700623.4375, 9701045.62714725, 9710009.680565272, 9718979.4899164, 9732039.0625, 9733388.043193644, 9742055.364313338, 9752789.0625, 9752962.612090947, 9754534.427414365, 9754996.703358011, 9762181.25, 9768213.932085397, 9780951.306653738, 9785645.3125, 9786566.656168202, 9789173.349348517, 9798864.540469732, 9799154.72668759, 9799180.387305574, 9813625.128092092, 9832986.802729897, 9844648.878532698, 9846521.547077948, 9848342.1875, 9850929.10999889, 9858978.00470353, 9861879.6875, 9862532.789771274, 9862536.778500691, 9863164.0625, 9863195.3125, 9863781.25, 9873889.784072053, 9877761.492653258, 9877781.26083872, 9877785.9375, 9877789.68215227, 9880021.875, 9880054.6875, 9880326.5625, 9887477.34102211, 9887774.421520976, 9891298.422288546, 9892151.444231283, 9892189.04004841, 9904345.11536287, 9908849.25862552, 9911684.690082636, 9912169.281825142, 9922884.568061076, 9924919.799113225, 9926811.724052332, 9928693.75, 9928864.417757312, 9928998.032497132, 9929164.511287756, 9930212.373835692, 9931755.869437415, 9937618.623125972, 9938336.069534888, 9938407.951423604, 9942305.02121405, 9950795.106911559, 9952050.279718356, 9954098.479268622, 9960206.907456301, 9963368.749763127, 9968478.727917355, 9968641.959031416, 9969277.801665198, 9969880.581790099, 9971017.1875, 9972974.566172346, 9976425.453019755, 9977240.403732285, 9978771.756957976, 9979419.019335845, 9980040.63232509, 9991991.591936953, 9997880.403718561, 9998650.0, 9999645.418445058, 10000927.076536797, 10005678.219345687, 10022519.600922206, 10024993.136316247, 10027288.832348831, 10029211.263896327, 10029463.201695211, 10030439.0625, 10031699.209575323, 10033094.839381441, 10033105.44041181, 10039499.04244441, 10041876.284562204, 10041928.125, 10041974.574313631, 10042010.9375, 10045392.1875, 10055252.42175253, 10055253.503280908, 10065787.5, 10073724.393059012, 10077020.3125, 10080945.735834075, 10081935.201273145, 10082232.66653154, 10082650.48518148, 10082734.375, 10084199.916251842, 10086389.831738008, 10087311.323062522, 10087389.881400647, 10088316.362593025, 10090219.531589227, 10090880.295879077, 10092206.25, 10095118.635265775, 10096576.083392143, 10101624.076077964, 10121735.308647353, 10127614.0625, 10130204.6875, 10131636.171659252, 10133384.973284822, 10138294.82002988, 10138939.608833194, 10141721.875, 10141925.768514298, 10145441.829098523, 10157183.470989276, 10160834.620932996, 10163014.879672471, 10165704.139609631, 10168942.335076407, 10169206.25, 10172092.72085666, 10191676.48939448, 10192374.763266824, 10195681.484143097, 10195733.685292587, 10204102.090227593, 10215017.256636383, 10217202.393212834, 10236653.009818457, 10239934.890396379, 10245163.257999152, 10254188.480096832, 10264907.739514615, 10273820.228437709, 10277844.619594743, 10281995.446052957, 10297964.356968677, 10325438.143492846, 10326622.800090063, 10326673.563986633, 10330565.411860727, 10342192.682792274, 10351261.697461301, 10356776.500797272, 10357440.895198807, 10357868.390995923, 10381711.856993772, 10385604.962750802, 10387371.718191976, 10390215.391226636, 10390242.313680721, 10397513.046887591, 10399942.1875, 10401475.0, 10404146.939697284, 10415108.829110045, 10417023.091565246, 10421347.86229915, 10421519.76028317, 10422563.880339999, 10422635.24305213, 10423250.636647286, 10427378.009839468, 10436081.369884785, 10446307.763964787, 10456672.815012878, 10477981.25, 10478546.875, 10479451.903841447, 10481547.98642094, 10481859.597263642, 10482061.843475256, 10496809.375, 10499811.130701073, 10500639.134883694, 10508020.3125, 10510955.827015003, 10513450.494542927, 10531475.41014531, 10550114.0625, 10552879.6875, 10555579.993801687, 10571003.125, 10572330.080681061, 10573959.149652444, 10575966.998126563, 10587100.539607435, 10588074.997369166, 10589654.478985537, 10590571.197491225, 10593711.223726885, 10595520.377961732, 10595621.703969205, 10598335.9375, 10604738.342362417, 10605617.1875, 10611184.375, 10622496.368600864, 10623035.9375, 10625282.8125, 10632706.438925793, 10653254.70546693, 10662235.414055081, 10665645.141833525, 10672818.001385432, 10678445.3125, 10683400.342287691, 10698410.069060955, 10712865.428299703, 10720474.979403172, 10721608.95690347, 10722403.29985382, 10722417.594941605, 10722828.068602886, 10724756.680013772, 10741354.833270062, 10753040.625, 10754291.415930528, 10755722.072913501, 10756612.331013886, 10756813.24679106, 10757007.405298723, 10760376.838121304, 10779058.7930938, 10782930.039359242, 10790359.46092573, 10791918.022340108, 10798496.875, 10813014.169301106, 10813975.715340607, 10827649.943713328, 10827662.5, 10855963.957073092, 10866387.442359658, 10866394.692718117, 10894065.625, 10894719.604340427, 10903717.1875, 10903867.155961359, 10906113.991595067, 10910718.887289444, 10914179.047504831, 10921904.041645259, 10933223.4375, 10933778.467167763, 10940643.75, 10948131.25, 10952047.361607254, 10953711.731600486, 10983065.906108953, 10997146.099286774, 11064173.4375, 11079109.375, 11081176.912657438, 11081442.000796914, 11093832.025380246, 11094987.5, 11095439.049378632, 11099887.5, 11124926.21733392, 11134812.412065968, 11140814.0625, 11141454.6875, 11143630.32897686, 11151768.266356476, 11157258.166287348, 11176909.375, 11177126.859401071, 11192273.80283519, 11199949.369259646, 11228485.753424808, 11232653.00132046, 11288145.3125, 11289559.375, 11293937.5, 11324590.073768819, 11336661.927933581, 11401369.49373836, 11402374.749301946, 11435984.704060553, 11454907.8125, 11504795.33108825, 11508789.0625, 11510298.425935471, 11529481.491803844, 11529546.571982868, 11542725.691525701, 11577941.650266917, 11654347.817654615, 11664689.335272407, 11693022.593064416, 11728878.100790454, 11729262.286034713, 11761876.5625, 11765842.1875, 11849839.894941116, 11863363.470702058, 11933834.375, 12159356.25, 12336873.393781368, 12393749.036805253, 12564480.058333626, 13569118.13721107, 13774424.258881712, 13779131.11023929, 13794331.355246589, 13800501.5625, 13810679.396177758, 13824770.141386127, 13843690.306245424, 13859135.34488855, 13866511.15183809, 13871116.59387907, 13965718.623466592, 14092970.3125, 14183006.443979286, 14258941.89191574, 14314791.41164278, 14323459.003385667, 14339679.092355413, 14346377.337930778, 14350776.5625, 14351069.067224994, 14376501.209088312, 14380111.664582163, 14382368.77537072, 14383757.442813648, 14383764.090563538, 14385973.408831276, 14386251.5625, 14387325.0, 14387435.946722394, 14391079.186013043, 14391906.915514702, 14391967.623671398, 14391988.051018676, 14392096.03106613, 14394329.74041407, 14395892.316439051, 14398534.26215201, 14398578.125, 14402906.234311294, 14403328.492314734, 14404531.25, 14405066.636422498, 14405395.126085741, 14405462.618957514, 14406018.081019467, 14406935.9375, 14408692.1875, 14408915.625, 14409221.393483244, 14409655.175036317, 14409984.09426888, 14410114.504065398, 14411856.25, 14412574.14933045, 14413112.798319882, 14413353.981442887, 14414165.96554265, ...], [25.68177775314591, 26.87950065097089, 55.92055364884136, 57.746054124404864, 73.30237363827469, 12.155168450066004, 98.52238879053675, 17.80008643051711, 46.86280140945271, 23.0786971495751, 17.459704037379737, 26.92533766451151, 9.881579175112352, 74.81864185729187, 7.849085821800065, 90.30980200335357, 10.37617274840461, 6.042877578703592, 98.9687435259236, 19.723951385227977, 5.590090506092653, 47.27823942263107, 7.431687450941697, 5.975460640211403, 25.690649567219246, 13.511209699197497, 22.35798176494778, 5.723859998871313, 5.043253181847251, 69.79345747868786, 12.829469619991606, 28.85038366330086, 12.906295744820648, 24.631529149547255, 5.249091521816958, 19.679226524848094, 35.66781296360792, 42.49122992017405, 6.006940925808279, 10.235928706064017, 26.358212675387524, 5.789884028717971, 8.76745678326083, 84.57589917156118, 24.637678082587637, 41.26633785335211, 129.03189911822884, 27.955088236331097, 44.50314782562143, 7.2573496122327565, 41.08812321823621, 63.432397523497464, 11.51234976015048, 6.878848645919671, 6.5909873779933426, 31.36233410824793, 43.889500294685874, 23.969324433414705, 69.13583018161499, 76.56988386429336, 87.42655959110235, 54.79680779327288, 14.382884766262325, 6.563461871750707, 34.254707900142066, 42.9157544015208, 15.522802487507786, 5.187292036696115, 21.246603498621308, 104.69742747407216, 13.891280632979242, 34.253449027415904, 55.48132159303138, 92.19595273962452, 21.124392776318196, 26.692892612411008, 51.83153473689268, 47.319549730483814, 11.305003809747475, 11.850301312549371, 96.56492873752205, 21.31162909631306, 21.45862518191124, 47.40616185291427, 5.366968541757669, 69.91922809792203, 6.925283510289228, 77.08907625520524, 15.382894316523775, 43.36015238034692, 23.22490460958883, 156.5119124652569, 6.784567114392404, 22.79240536322282, 17.506443271795227, 102.39128039530176, 13.552508098641173, 24.7184078763564, 45.34201642832231, 31.17659826204944, 21.353558337298143, 79.63919927967902, 16.76709353568089, 47.216308981591396, 48.602800678697584, 7.520666704291413, 28.248438116633938, 21.4477055455485, 23.272588389124714, 31.02115960668084, 22.244255252831795, 6.073011431965575, 38.25419582704218, 7.235885547119015, 64.63138029541973, 139.97052144209454, 31.25816105794128, 43.0335827540446, 103.92339154529176, 6.394373183381727, 7.958627633949787, 17.808640266332485, 6.58363837726866, 40.99398776079527, 28.773689905144256, 5.376046820416823, 8.396219067483285, 21.430378642276985, 12.1134563363047, 45.25245820863265, 5.053257381637902, 61.119791699507346, 22.6615999664548, 6.263275471265735, 87.18993136362266, 14.185117774248843, 15.244603020565906, 279.6967662705448, 125.1805417333085, 11.934000330770571, 33.02081409263034, 40.39239708765217, 45.17572176939505, 20.438003881455078, 83.75129541065283, 5.646396566072761, 7.726311890243409, 78.10214066884095, 72.98531426845152, 32.340583570431384, 6.3875950033028355, 5.865740726627514, 114.22896663328746, 23.92526886087458, 18.650824879516797, 15.54306128637527, 26.603574081253214, 11.589221880815192, 84.28249104064552, 77.94075546149209, 10.34013446950311, 5.200378128879291, 17.246770234602344, 27.670116471034543, 9.438547197734962, 15.55650868378295, 8.199988578226668, 83.17607010640864, 136.10235014572262, 65.18501089092464, 17.277221848851877, 5.292418075307008, 28.69533421191138, 11.938243383167407, 9.019573247129776, 7.266725754826902, 28.45996487488022, 5.049198790502237, 23.39799816254989, 142.53219143598722, 16.050471962444973, 80.26910741009699, 6.341049203159801, 21.84583784477828, 18.160746080427998, 9.987912073056522, 55.81187170985854, 71.58100613038945, 32.198152735073734, 33.65230173324547, 50.42746988758914, 26.408030033835576, 78.4730773491089, 59.7153788456454, 24.119368921498577, 5.162497190328549, 5.370196000072673, 40.007041988668234, 53.63323441132413, 17.794289230301782, 80.84447221292533, 9.29016025474013, 13.815983698343363, 15.162368147315101, 48.496801976603614, 88.94470133260808, 13.084357200151498, 22.28288625757783, 24.49640720517673, 67.97278186151459, 10.693511637477402, 87.52934743577711, 48.23127815334064, 67.25409961323385, 23.949845815287233, 12.44649903229547, 56.47485288760326, 30.68871630219458, 14.319787779069555, 8.540136693837528, 41.26094515698338, 13.205279373803242, 14.407861908876397, 26.83296354461273, 58.11453978360021, 8.83906828724871, 5.348857944366991, 56.40174587545607, 22.938870141308367, 46.74591520250754, 12.580427158132766, 63.05088537720446, 64.68906590740414, 5.07971839224917, 6.735722343454659, 110.3865948098586, 5.820552026429214, 6.711766618671606, 6.2293391605653845, 100.16867238946205, 5.35643897680334, 19.824547247945294, 8.518640051198355, 54.76396214044378, 18.80660418211021, 5.826467104139402, 13.750686141723595, 8.87449911435552, 86.48891164315151, 23.81237718983441, 9.493032428010807, 10.03966462552082, 40.6323928756594, 35.348196366635776, 8.408610798879975, 48.12103535988129, 21.819627792959214, 174.94220986143887, 18.470832517081167, 101.602893150972, 9.091175568112687, 11.91240897449789, 64.32977274876947, 20.83352441874132, 11.247599111022332, 31.976293970186585, 5.810119688133458, 6.744936614730582, 35.646808188441696, 60.06521602172833, 28.248912895874184, 7.084455188617361, 14.858647010712225, 37.634905604885546, 26.930975660975868, 21.30253174438215, 59.58773213795559, 27.883244084738607, 44.77180549662627, 50.71862394538588, 17.436782094197355, 8.497812878029603, 22.88812857380271, 15.829519520835285, 7.770410371432953, 55.80949052791588, 104.9478905554565, 41.43448702267472, 38.17065418064701, 52.489655838097946, 23.95119260573161, 5.129861935237577, 39.19621901796885, 12.5170281034511, 77.72730456375935, 10.974944274065626, 41.82343762069435, 8.598447470982512, 6.572815540172493, 6.79376335837877, 40.56282407924484, 36.21425500652957, 46.95523356690751, 49.83073190735557, 9.67455360211408, 75.95841624638477, 48.6127442061317, 68.18179427999826, 45.093146554740805, 103.46157369021839, 8.630872412970636, 36.36878231375637, 32.00646281480724, 26.67369953075703, 8.022820673934072, 36.08482814902215, 21.65250275203199, 5.64620933646496, 9.151057606187946, 69.24134414750112, 6.1860086825873015, 38.46078721151348, 12.40902207725552, 37.72418742844841, 41.6136120730517, 33.890320664340734, 15.676667949216895, 28.296832901355934, 30.180298486328113, 36.49624131518077, 72.51516087489361, 44.04528336887527, 179.48840543776097, 5.438298888142502, 6.024250613926244, 54.87882342075126, 29.473426640109793, 12.672969831395127, 44.49834289144251, 7.4996913182587805, 12.557028231226548, 48.656203305152516, 15.62855517133938, 11.36639159805418, 12.579279535296578, 7.863875995197612, 67.15691352868049, 27.498858413700084, 55.666711945503664, 26.12744378227691, 53.594861164183776, 11.094678086043194, 24.043686754132843, 27.55792263628095, 60.98385159798082, 26.32824425496649, 119.69782187377297, 16.448245364684375, 22.609829158412207, 40.75734856233123, 6.207932140135819, 8.649549444721737, 39.726707366688444, 64.16257765794298, 16.386548073906127, 44.58134192901483, 33.83142709508436, 40.52037802701787, 64.63631988246475, 44.90104081278581, 6.194969370533377, 132.7120385597923, 118.33322278855255, 14.15978785881455, 37.28243210082863, 64.35286502028406, 28.571521400655183, 17.20065536813458, 62.81786959282503, 22.07726037890892, 110.71291933331673, 91.09762917253465, 29.374297319506784, 28.10619934069754, 26.919649353673016, 12.64523360667416, 29.04354470695823, 7.260640858574734, 5.200222946479317, 111.63261997515806, 52.744655008608525, 16.82402230145782, 13.30838778699746, 80.40569286225339, 21.70363934793378, 31.792296449199796, 16.188905424549574, 41.49751497385311, 68.69065094470591, 8.786878413827202, 20.137261917761183, 7.635420336986433, 7.171702911089154, 25.48115895783171, 23.70183045357882, 88.36641085460991, 10.57989484666762, 60.929192167139895, 20.509373534047725, 144.64837851449266, 154.308897400408, 10.165358343498381, 112.30636377338287, 44.824601282934566, 58.598485784437784, 127.96632684754744, 41.86512720908625, 14.09872225976688, 82.45908329432697, 10.146448073167267, 13.750218766247073, 41.32430166901385, 90.00749695457607, 12.897551835414685, 6.0222760036892184, 41.00463219117854, 44.642539030353205, 15.41757373541225, 114.5590954435441, 11.250979726269595, 65.01023266939768, 13.190833587965956, 21.9405414152812, 54.116794301906445, 34.64709094745225, 80.17242159139835, 29.297888664970593, 84.88491871442861, 31.86160783536014, 10.572201859961623, 61.833247707384956, 20.770406187790634, 41.33332523166507, 17.472329772978416, 27.956987053367705, 45.22555989407572, 95.67845630030843, 63.175147950778594, 136.50423245889755, 69.7867442825645, 58.27422030387742, 62.29071539186497, 86.05028572542336, 67.55452922035937, 69.8496691896093, 26.770841359915323, 24.483488911581265, 52.56121420409508, 64.61813125856867, 101.58707906174212, 50.89229047650461, 109.69228834463593, 5.037684509860427, 28.983015256107546, 16.894567671430995, 113.39548868026563, 9.685745301864118, 36.33412725582411, 54.52567982856932, 5.296841544419218, 111.37034805101861, 41.11525263134148, 43.661383624743195, 39.92372330650174, 6.619125595381229, 9.81654431259957, 119.6197838022172, 61.900360374935275, 14.358971841228431, 12.254018115536818, 66.89161502236152, 20.097221869596233, 6.0314313947589735, 44.21036268692747, 9.81567936046329, 5.741536537862963, 80.42147285968798, 82.64224545210344, 8.123734155175026, 53.95885374433976, 7.099915496181632, 59.78330988375823, 40.597111057766696, 31.118163347972605, 55.44688170751985, 75.18164063380615, 91.0406553678701, 13.274675411486246, 14.891165914078286, 20.104792969895843, 10.422767201545277, 9.123518508341833, 10.821722565203642, 57.05418607195509, 11.22390903095969, 24.259787591851953, 85.07807586718262, 184.56500963602642, 7.191339434081088, 88.40593469653565, 64.71130206433658, 18.034023495969972, 6.185789248178628, 55.93980706154886, 50.54639215322615, 45.25664792428459, 11.798799489759741, 28.740169182859084, 42.20583053340248, 5.755913869191848, 18.13022396243852, 32.06413731511638, 10.21566576662718, 20.1347318437279, 7.70033792890465, 25.520896891366903, 63.76637627299054, 239.19273230212914, 18.117998118475217, 74.6189272666269, 37.975859602084256, 12.822127906129172, 35.14780401252915, 16.406818890296996, 19.402481952216977, 107.39748107589854, 10.18960839066442, 9.375054591767169, 33.54845614213799, 8.724922944378244, 33.79722185497617, 58.802196323513606, 37.11899238306486, 16.931946997246968, 49.27277264162629, 58.90648470201907, 32.61361814638345, 47.87892880508553, 24.47265875118716, 57.78733706499889, 44.27351229927946, 26.57585431211245, 130.494060366854, 59.9527245529238, 17.246323240735773, 66.71213843727664, 99.40339217727458, 11.090077468088971, 61.767692192047264, 36.21709791099105, 157.12347877782238, 77.83585902358843, 8.715266055495011, 43.33512140662303, 28.084202055820956, 5.085912394720661, 9.018006222578428, 24.471513182020313, 27.18135249700599, 11.471580466531288, 27.353572224074657, 126.10490689974375, 11.430739019961973, 13.951986447334304, 17.85174919688331, 13.205570758373018, 50.53929272614195, 25.25650601147603, 56.55083615059643, 33.70849326241215, 20.370976317860443, 65.81125163295518, 23.199909007130685, 47.31730041427752, 23.4584290782593, 49.64300982599096, 99.14475075741066, 22.46055086056282, 10.047931546235583, 14.059939198463915, 65.57390636170338, 78.68249526829467, 25.740546520896263, 12.821525201865759, 48.65967353825759, 99.54319476958062, 6.040798801073969, 80.94169241040814, 65.5112426933963, 54.32988209742656, 9.48418404190638, 67.54114289053173, 17.98443164474944, 62.86411162838101, 41.39673885059851, 17.068713746447965, 28.986216667074604, 5.345927199644707, 38.54494025908006, 54.648106063528196, 72.57374353207993, 69.36834496781026, 6.274466476781631, 5.394446616216508, 28.868136937905824, 39.863627138685764, 28.68368025223753, 43.861482368946625, 59.14348689082663, 30.920774425629006, 25.07174890954294, 67.98075784102681, 90.43195611118168, 49.24926488092024, 24.17385588313646, 28.59675348138201, 80.68920608025118, 66.8424525433246, 15.979531296652262, 12.380808499536053, 40.90676628937147, 26.369588218791904, 43.34842958694166, 149.36513134332765, 97.24202775812603, 91.73468442829272, 52.021344006162344, 128.1267229274039, 21.186140853005845, 60.724272040448966, 6.862834617373932, 28.083180954246693, 26.87010603613922, 18.022851904066247, 19.72771527364906, 11.894949204956298, 5.68620123897269, 51.95135926658386, 13.11868479859495, 58.85087120690744, 63.56630475139718, 28.08279300825269, 28.871981224947767, 87.27722778876023, 44.73855508076699, 52.56212519686714, 61.95022228744593, 13.72437430991694, 6.089227073904853, 42.79752911824567, 6.348795462006056, 39.52838573483144, 41.77388203675068, 59.85431862765655, 57.74582564217228, 70.27899551968079, 28.22732340173158, 14.509104403765818, 34.55773421333727, 14.239830361215738, 26.880470279291984, 8.46053593292674, 24.53369374372497, 8.39137989895918, 31.054468774837737, 26.41888009114472, 81.457161490242, 41.549018551292505, 27.687867786651328, 16.98104835347881, 48.32901658350447, 100.52253596122894, 34.17773253865251, 37.787464102470864, 7.158455655357423, 16.386819137422737, 89.26434257014044, 6.531852106919745, 11.193627561183655, 16.96512922705643, 28.520538641864977, 17.723669717897078, 29.522993279534568, 5.517591195671832, 7.962230827345874, 36.62431703851536, 7.453520578254842, 17.004021282148948, 5.452348955548412, 26.391103274251773, 13.063479082330051, 14.608256749430888, 20.589988207230704, 18.61769386599401, 29.36928132076586, 44.41260310036231, 17.344773064029386, 11.27844841435591, 19.172763155477618, 21.16132022353095, 65.02942782587095, 58.485471167453156, 18.518009120569268, 118.62408319109129, 25.970182674543842, 47.80914339509541, 6.170058742702921, 5.648411325427125, 47.40404104597275, 62.50973735748317, 38.70095094839595, 43.9853576867566, 104.20995216465542, 12.801857233581776, 6.316204464260841, 30.37901587003376, 20.488756276072415, 43.035734507131295, 8.523892621205505, 7.357025670334292, 8.210866232154778, 6.56593588712024, 38.11429072441532, 34.99368861724344, 18.993816041007964, 75.20775323523623, 61.035960825953325, 5.427440544429721, 30.54965543587652, 120.55995852761853, 75.24643549865053, 10.952983704504547, 85.61234546654396, 89.33246470503366, 34.61611284143447, 47.59468168631137, 37.54421525800071, 83.66670780950656, 6.889131711468085, 39.46033312114135, 33.80598514345432, 65.01649347650303, 34.07064403360059, 35.91769979513571, 12.340821799388081, 6.298778430467196, 19.351333677053503, 27.269037219539438, 18.330916021339263, 96.34719907887838, 9.827145136737741, 5.933064241282865, 31.35874673564378, 13.438652208548175, 5.372745882567719, 17.42376318685772, 15.211739594035357, 35.98087965569916, 26.438357377844845, 17.352574618969523, 50.77783702208138, 38.699329228935206, 6.258021019894094, 173.13090859318407, 8.807020109160485, 19.089530383936946, 16.19673037616085, 74.69914375197015, 75.37605365697418, 6.50710361583173, 59.759418837320666, 92.68126310403741, 12.567389539664235, 6.751250302313637, 31.089870981493895, 27.60505993911896, 20.176048338294905, 21.808030033926883, 60.636923700972176, 81.73237290430102, 21.24311579107051, 49.94094388408957, 40.674106434419016, 35.62996683702202, 5.945059627541044, 21.04722045820471, 13.768774857564713, 57.403656925752536, 120.27380871399096, 20.557746332213473, 24.95279180178335, 5.996834888022277, 77.92287885338342, 15.419029022838433, 86.89699506362884, 13.002650646017491, 50.82465985512344, 66.28373323998098, 16.42447256798255, 6.211841707998763, 9.526687134501485, 19.838249050644265, 46.109936277017496, 23.6523248911901, 18.26550463246279, 65.57875789196767, 80.78171473482084, 26.8096417616522, 17.558928775705645, 98.44632036291537, 28.69993140882286, 16.25341018837203, 40.68157173501207, 5.2562845094014845, 54.18923882383914, 54.96150178446737, 45.259242445765, 37.62962042367076, 35.788918525205276, 27.555719989555563, 16.157569903366518, 96.35027580474407, 25.55089647630043, 34.669915624591894, 41.658105592870655, 113.45879160001212, 28.717375509801933, 22.981714940475896, 60.204698810201, 105.22948627323754, 23.922141252073565, 9.346641574853912, 21.26236992220199, 25.556454648021937, 38.90628440344787, 42.05487734498461, 31.30191523014078, 51.68674483688973, 56.08779462329409, 8.275715329365337, 5.783679096057817, 15.65266139442859, 6.5529160789328404, 14.730820571031723, 8.527865895693862, 25.365289562721863, 54.3657004189835, 41.06316552635258, 7.174467436785147, 20.461665608003884, 25.663779652152915, 145.0729879286351, 21.995054648109782, 26.66908722817151, 41.88576975004771, 17.114267108056907, 7.359677069111085, 46.88182526413937, 60.39452728740727, 10.01959959099486, 27.45835979952498, 50.80575081784013, 91.06707065872227, 60.40271255167685, 23.68741740492839, 35.83455964665602, 37.14981015387248, 40.7131949627249, 6.7572264152882315, 27.196501201762562, 13.607265020751601, 20.20169208561933, 62.01574959726642, 56.20553102804675, 16.428565897348008, 53.34662120300405, 55.355451919252026, 5.306358647329396, 19.177100229899075, 112.45912569107125, 7.914958179879935, 50.75922508977208, 52.12017918121791, 9.646136748036007, 14.274633377304742, 66.61577172152857, 54.97634961074516, 14.891731659682081, 62.35276145007127, 13.14847753043033, 26.89883863513178, 58.1398021187065, 84.43879638036522, 6.898706171134538, 13.37106691264435, 9.649607283182204, 76.47076808909617, 16.208337419008522, 43.20660379757115, 50.04768081362772, 33.94801793977828, 26.298562645614286, 29.851924172906177, 44.496352583082036, 38.81277608194527, 66.19317472803641, 29.59506716093744, 18.81047855849251, 24.401618911059522, 16.757874781016422, 77.75762355048214, 89.47153805553809, 45.619483648981955, 38.39819439830765, 11.52793552290534, 30.164133668836847, 42.15127254462193, 10.380381747874607, 94.85451047756263, 64.80804663646356, 7.323931984641233, 14.356689042656015, 43.480336073827786, 31.827057665225844, 83.58854457781507, 19.468905554722248, 20.62376712221655, 70.8658202166939, 30.768514881950807, 27.688336271392497, 9.895363511817367, 8.49292419526128, 20.43721497369158, 7.355513899623753, 38.97079660958392, 39.794022500866696, 30.39127143690976, 43.08336080668562, 10.870379121548172, 23.157576073273326, 5.582079658028811, 5.471041992537034, 34.82080332053333, 72.67367081712769, 35.865023889648604, 41.32844038286608, 7.4997175918610575, 82.94839340586637, 22.877130906137115, 8.87423289211776, 161.44608826322323, 97.55926478999099, 9.614856173297472, 23.091643388754225, 8.712530777884004, 5.815859870164837, 139.83536380101668, 11.171857083030046, 37.04244841158446, 94.20688801485035, 42.5423760779627, 20.815526605234393, 21.16416563402493, 15.037012888496475, 16.913053691259893, 5.988872322685675, 8.707010750223612, 59.42196018814101, 18.954680275654027, 79.7004295395814, 32.53387025156215, 9.31817262513835, 11.754862921232027, 51.642151514091246, 13.188300262514044, 25.318830724425638, 9.434055587776028, 7.377963693008776, 71.43281131555028, 67.99118129316152, 33.46304800702908, 13.376953952419123, 17.1945542711414, 68.25142546668819, 5.735448767978743, 47.47584281089682, 12.458344647825372, 11.628375953066586, 8.798129540476417, 5.839614646915809, ...])
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)