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 = 45905
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);
([3309920.3125, 3372724.6346594165, 3420219.3518054117, 3554163.5180832343, 3781717.577860765, 4069707.22681065, 4077751.495456301, 4096316.6422606716, 4098352.662885833, 4128160.9375, 4252549.796116693, 5551183.48769471, 6770005.8686979115, 6797920.3125, 6819392.1875, 6821000.0, 6826176.5625, 6842890.149092574, 7072349.543478235, 7092967.883798547, 7093388.166081856, 7094013.881173971, 7094574.270429122, 7097094.896846675, 7098471.489220438, 7098659.866715108, 7099070.683139712, 7099245.3125, 7099918.75, 7101768.75, 7105701.63345473, 7106946.93791486, 7107296.892929416, 7108701.172348597, 7108987.12906347, 7108996.875, 7109435.079570806, 7109505.281918818, 7109575.740778485, 7109750.0, 7109797.448254894, 7109833.922500708, 7109972.489764635, 7110087.091613333, 7111767.133033473, 7112109.6054225415, 7113007.602681633, 7113074.275575155, 7113101.5625, 7113232.63493214, 7113337.751005038, 7113762.885536812, 7113901.1874431595, 7113918.75, 7113931.0576597545, 7113948.4375, 7113981.492197023, 7114018.75, 7114249.119222171, 7114328.125, 7114337.974928368, 7115150.0880648205, 7115231.25, 7115326.5625, 7115535.752031545, 7115568.75, 7115681.415433209, 7115869.510468356, 7115967.097706067, 7116094.996591577, 7116568.75, 7117129.958036486, 7117401.355737437, 7117747.303707728, 7117928.125, 7118964.0625, 7119061.491966062, 7119300.169738036, 7120481.25, 7120898.4375, 7121656.238833913, 7121723.17168817, 7123005.070615582, 7123493.75, 7125625.147649081, 7125880.393102888, 7127823.321614124, 7132221.056499585, 7319021.464119916, 7344897.868792987, 7355935.758358797, 7565699.35080635, 7565754.05973311, 7565917.4189258, 7565921.815152386, 7566048.4375, 7566384.375, 7566470.262072588, 7566603.939110471, 7566659.1587229, 7566671.875, 7566765.870332517, 7566825.716771683, 7566845.646790567, 7566920.450359216, 7566928.7743433695, 7566931.608062933, 7566954.424039165, 7566979.941902866, 7566988.742531939, 7566996.871746886, 7567013.867868481, 7567032.406063328, 7567167.1875, 7567176.5625, 7567267.980847951, 7567284.808013401, 7567320.154210686, 7567325.531090669, 7567348.952502885, 7567395.3125, 7567467.1875, 7567530.58644256, 7567542.138381934, 7567593.75, 7567603.125, 7567628.93736772, 7567635.663207935, 7567653.510377006, 7567668.4912966415, 7567679.489509869, 7567805.563889641, 7567825.423858855, 7567835.311637602, 7567859.375, 7567868.660141505, 7567940.625, 7567948.4375, 7568024.516182828, 7568057.700439778, 7568116.399372756, 7568190.630612857, 7568193.75, 7568215.907934697, 7568216.270703764, 7568265.250554001, 7568276.608035123, 7568292.4020339, 7568298.69812991, 7568361.889969387, 7568421.273038247, 7568432.6659628255, 7568447.51291034, 7568500.0, 7568556.25, 7568600.0, 7568683.238864792, 7568886.165167443, 7569028.345847654, 7569096.669374269, 7569254.708529825, 7569299.688859456, 7569332.738668495, 7569555.925917846, 7569634.3944097245, 7569824.549225593, 7570048.820865497, 7571794.248476748, 7571986.71616953, 7572452.186963557, 7574056.801327343, 7574135.816683594, 7575517.1875, 7576575.559663148, 7578567.811002557, 7579575.0, 7581557.401471579, 7584615.7771144165, 7586900.0, 7593732.514323474, 7594933.11244067, 7595762.531690239, 7595960.821077849, 7596334.375, 7596664.598988154, 7596962.837745562, 7598127.51402295, 7598840.625, 7599103.125, 7599127.083589019, 7599232.834053401, 7599624.334942719, 7599870.3125, 7600130.992567782, 7600277.5422045635, 7600480.522405413, 7725883.530269509, 7729819.24088379, 7759895.3125, 7797432.8125, 7806451.5625, 7807955.575198649, 7832641.679974198, 7862685.699085924, 7864093.75, 7870560.025104809, 7877789.544255616, 7900273.4375, 7901030.2549992455, 7911210.923912107, 7915176.013287663, 7922420.976685431, 7928852.674576274, 7934738.420344971, 7935730.858580211, 7939200.0, 7947351.5625, 7948819.8539859075, 7949747.414243105, 7950057.67648605, 7950357.8125, 7950777.428468461, 7951129.507853485, 7951692.579083125, 7954476.8080105055, 7954938.218702069, 7955590.602032265, 7956026.4090216635, 7956100.335922198, 7957743.370365057, 7957895.815768922, 7958253.924023754, 7959840.048238499, 7959849.224567661, 7960640.625, 7968686.353351993, 7973949.1034895945, 7975843.75, 7980431.474974041, 7980875.0, 7982214.868117045, 7983386.967442377, 7984062.5, 7989592.795129849, 7990878.125, 7991210.594888117, 8005592.814819296, 8006054.6875, 8006742.1875, 8006923.167612722, 8007362.099668538, 8008550.121733686, 8008802.405536521, 8008991.990172686, 8019793.75, 8027380.052578925, 8050376.5625, 8052583.683945711, 8057368.773333557, 8058144.665226307, 8058382.296938462, 8058471.537138731, 8058827.253890199, 8059532.846148433, 8059853.893923047, 8060029.6875, 8060300.741232371, 8060354.6875, 8060554.5372950295, 8061984.218898109, 8062010.642732618, 8062723.4375, 8065276.115608408, 8071609.6764722355, 8073470.728281741, 8073804.726176743, 8073922.33582798, 8074263.78969775, 8074281.797503515, 8074515.672524997, 8074532.8125, 8074550.378175841, 8074762.423267048, 8074902.054433037, 8075235.9375, 8075296.2228046125, 8075434.375, 8075484.285664428, 8075570.502171083, 8075587.055300534, 8075781.25, 8075869.733459517, 8075990.718125578, 8076067.1875, 8076074.627536218, 8076085.9375, 8076118.162950694, 8076270.301501726, 8076279.6875, 8076296.265230848, 8076325.0, 8076353.251204149, 8076396.062994461, 8076400.0, 8076521.950026943, 8076577.786953624, 8076693.75, 8076754.877348145, 8076776.5625, 8076822.919718051, 8077018.548215673, 8077217.547617273, 8077235.9375, 8077238.8633834515, 8077271.8018019665, 8077289.634458738, 8077295.3125, 8077307.2311666785, 8077470.295754352, 8077482.664463611, 8077502.919125066, 8077564.011468972, 8077576.363179545, 8077918.75, 8078063.465775987, 8078110.7687754175, 8078144.351733367, 8078307.8125, 8078309.375, 8078325.66909299, 8078330.115580055, 8078689.109810979, 8078745.121842261, 8078858.740766673, 8078894.127169492, 8079020.3125, 8079073.778664119, 8079296.383258302, 8079395.139831659, 8079568.950494606, 8079581.985359326, 8079582.8125, 8079689.905723253, 8079765.115609957, 8079779.6875, 8079798.3316272115, 8079857.230635856, 8079907.8125, 8079929.196680709, 8080034.506452601, 8080360.9375, 8080426.5625, 8080478.183752884, 8080773.874404891, 8080807.8125, 8080970.990625634, 8081236.244640592, 8081444.9844692405, 8081709.212268899, 8081882.47904007, 8082090.051461231, 8082751.5625, 8082802.490121116, 8082990.625, 8083109.375, 8083134.161782663, 8083142.219669182, 8083329.563187321, 8083343.722089686, 8083357.8125, 8083378.719144707, 8083398.050237819, 8083587.298509956, 8083752.269386339, 8083757.821502314, 8083797.813305367, 8083810.395990434, 8083848.4375, 8084028.282283978, 8084066.4298983505, 8084113.691509336, 8084140.243702979, 8084145.3125, 8084279.85472364, 8084300.610623347, 8084439.515762488, 8084478.060584585, 8084655.602421372, 8084676.544056713, 8084839.0625, 8084980.987588576, 8085885.935096552, 8086054.6875, 8086371.277171242, 8086587.759650384, 8087578.614577629, 8087954.021861727, 8088323.70614128, 8088870.3125, 8090950.555270844, 8093660.231248005, 8093916.520021406, 8094062.412752604, 8094294.62580835, 8094939.348209626, 8095023.316023884, 8095239.0625, 8095265.625, 8095276.248065158, 8095310.925569405, 8095399.820196838, 8095445.293741232, 8095445.892825125, 8095459.546261083, 8095621.613393096, 8095739.968595857, 8095751.615183381, 8095854.807353725, 8095917.302018268, 8095944.72296125, 8095961.87494184, 8096014.0625, 8096142.1875, 8096154.6875, 8096225.0, 8096262.331875627, 8096354.534387788, 8096433.536247761, 8096767.975545489, 8097276.5625, 8097314.0625, 8097361.989208572, 8097364.310311072, 8097539.0625, 8097596.875, 8097910.770693462, 8098207.8125, 8098379.6875, 8098998.6859081555, 8100220.3125, 8100706.2316525895, 8100921.543283727, 8101357.261114161, 8101431.145910391, 8103859.915958233, 8105382.645884117, 8105639.0625, 8105985.577900475, 8106609.911745155, 8108178.848493139, 8112270.249889061, 8114092.1875, 8115667.082446006, 8116564.196993655, 8116629.496321755, 8117232.8125, 8120537.5, 8121344.304264376, 8122014.062428151, 8123513.194676723, 8123868.75, 8125596.875, 8127257.8125, 8127774.180636047, 8128403.0670942515, 8129384.260146284, 8129855.186417663, 8130287.5, 8130342.8537682155, 8130393.0177454455, 8130624.666094477, 8130892.1875, 8130942.1345551, 8130962.748488433, 8131061.934694218, 8131169.757512286, 8131170.3078558585, 8131265.625, 8131489.674255474, 8131494.766681473, 8131521.875, 8131572.222034925, 8131618.974897354, 8131650.0, 8131700.0, 8131726.441071912, 8131759.746360047, 8131782.660739441, 8131784.375, 8131817.1875, 8131827.608835494, 8131852.958828321, 8131856.506781809, 8131865.481423561, 8131885.2213771595, 8131885.314301746, 8131886.770170496, 8131903.125, 8131917.0892320955, 8131959.375, 8132048.4375, 8132100.737750744, 8132110.917005938, 8132181.891468396, 8132193.108298808, 8132231.757941481, 8132241.408756248, 8132331.817889283, 8132365.17959839, 8132433.971847756, 8132475.0, 8132573.448481856, 8132977.983968263, 8133048.4375, 8133049.688512218, 8133296.886394975, 8133369.215096317, 8133410.64473635, 8133751.46178499, 8133852.196447615, 8134171.875, 8134274.259732562, 8134304.6875, 8134393.2079351535, 8134471.875, 8134473.4375, 8134886.119230438, 8135060.9375, 8135171.463527068, 8135375.0, 8135393.112111672, 8135440.514880972, 8135937.325827371, 8136177.438885175, 8136263.981366837, 8136691.557827916, 8137082.851758771, 8137454.396214224, 8137460.794813518, 8137468.75, 8137992.1875, 8138414.18331809, 8139525.75392274, 8140184.526111301, 8140294.19957143, 8140796.401246158, 8143663.015921684, 8145098.4375, 8145384.851212011, 8145578.087455003, 8145593.75, 8145747.700991931, 8145915.901467658, 8146075.808994644, 8146204.544646697, 8146594.931073424, 8147380.350557415, 8147380.617304335, 8147515.491708399, 8147798.4375, 8147868.75, 8147945.746237504, 8147968.828252613, 8148059.05966572, 8148271.715723654, 8148295.013081743, 8148578.676804275, 8149033.925199291, 8149213.6797249075, 8149421.875, 8150762.5, 8151042.1875, 8151594.442683635, 8153093.012299275, 8153164.0625, 8156685.737800934, 8162408.554326811, 8165397.904950291, 8166783.01887365, 8167251.142942128, 8167322.029288928, 8167512.698847243, 8167628.823135337, 8172605.929223802, 8177806.143192328, 8178396.177512147, 8179181.774975285, 8181329.2337760115, 8182490.617143305, 8183775.217418446, 8186504.677397045, 8194020.3125, 8195178.125, 8195630.063379621, 8196924.171507233, 8204843.75, 8210492.486043738, 8223815.1395677505, 8231292.1875, 8239453.449920666, 8239692.745995735, 8239732.8125, 8240251.743531624, 8240409.705884363, 8240441.741760989, 8240664.545540961, 8240697.411867867, 8240704.6875, 8240876.5625, 8240885.811422971, 8240906.25, 8240941.663058032, 8240948.087088459, 8240960.237297271, 8240993.75, 8240997.1314847525, 8240998.782161827, 8241009.375, 8241021.216309178, 8241060.954260761, 8241080.129702899, 8241106.871963511, 8241134.223365975, 8241173.4375, 8241206.25, 8241238.5976804, 8241251.682948858, 8241267.1875, 8241279.156432526, 8241392.0333332885, 8241412.5, 8241446.875, 8241503.933071133, 8241556.25, 8241604.636502193, 8241609.375, 8241647.632165277, 8241726.4644817645, 8241740.047672687, 8241745.10972233, 8241804.6875, 8241841.987609544, 8241854.6875, 8241904.6875, 8241912.5, 8241940.625, 8241980.679461736, 8241985.604410232, 8242011.305167581, 8242105.861626297, 8242208.772790886, 8242268.508037335, 8242302.251982592, 8242335.9375, 8242370.3125, 8242407.189246658, 8242517.202758229, 8242552.634033692, 8242563.829868536, 8242595.3125, 8242654.741906761, 8242755.693083803, 8242778.125, 8242905.62382038, 8242950.0, 8242988.256494264, 8243125.564749934, 8243135.935965895, 8243168.521669852, 8243182.491607192, 8243219.261597998, 8243451.213038958, 8243477.00284422, 8243940.29187248, 8244332.187743148, 8244715.834885187, 8248735.707138077, 8250656.449676433, 8253664.397643628, 8254351.5625, 8254356.0694270665, 8254810.175586403, 8254820.070018278, 8254853.125, 8254935.535486284, 8255191.451228685, 8255294.78088597, 8255448.07894925, 8255454.854944738, 8255496.962362258, 8255543.401981348, 8255551.667778594, 8255604.6875, 8255727.931138309, 8255847.278612465, 8255926.818352537, 8255930.459231884, 8256028.537769068, 8256293.75, 8256346.440457524, 8256512.420743214, 8256565.625, 8256714.287634273, 8256771.6641473975, 8256832.364508033, 8257174.774156324, 8257204.6875, 8257634.375, 8257737.5, 8258016.050959533, 8258591.601170044, 8258803.782292483, 8258843.560931569, 8259336.357486422, 8259927.026108186, 8260109.186399965, 8260375.701598569, 8260426.06818219, 8265518.264846699, 8265723.4375, 8266306.049460849, 8266662.5, 8266691.958509952, 8266696.356822901, 8267464.044526057, 8269869.989130124, 8270189.0625, 8270215.625, 8270393.711097852, 8270545.702750562, 8270771.875, 8270921.141694256, 8271581.25, 8271910.323262852, 8272130.138997762, 8272274.883417315, 8272434.347537557, 8274804.6875, 8275927.853899923, 8276451.631960382, 8276659.245500291, 8277910.9375, 8278553.125, 8278822.3879187, 8278890.116411309, 8279894.146016202, 8279947.744101522, 8280925.654803941, 8281614.75238392, 8281660.50766942, 8281904.073022351, 8282031.886376302, 8282262.697826592, 8282620.072104359, 8282642.1875, 8282710.545510288, 8284141.096871579, 8284451.214325408, 8286094.936194303, 8286203.04742628, 8286284.355811424, 8286509.8761810195, 8286525.493610373, 8286835.9375, 8287050.0, 8287132.502398378, 8287218.124368033, 8287240.263169975, 8287543.692202881, 8287823.4375, 8288116.343359421, 8288801.795411982, 8291628.125, 8292441.235409788, 8292545.481833768, 8292792.1705377195, 8292912.241448845, 8293024.4481826, 8293027.053249935, 8293345.3125, 8293496.846243319, 8293639.419475956, 8294055.6666754605, 8294128.6994605, 8294535.9375, 8294569.772325713, 8294603.125, 8295018.413587167, 8295075.581027079, 8295092.0337753445, 8295138.35972587, 8295284.442636018, 8295292.356211875, 8295847.487950739, 8295879.430700374, 8295901.5625, 8295913.6070437655, 8295965.5967465, 8295976.5625, 8296194.60183178, 8296315.176145941, 8296706.801584667, 8296725.0, 8296941.489509208, 8297431.218866624, 8297621.981776455, 8297674.123610418, 8297843.591538896, 8298009.209286582, 8298293.794025272, 8298670.937671401, 8299445.08404431, 8299543.508552646, 8299660.9375, 8299971.875, 8300042.332020626, 8300296.03006735, 8300481.2655180525, 8301837.984682911, 8302778.082320805, 8303847.071470804, 8304402.002628367, 8304734.090900684, 8304875.185161013, 8306216.951358606, 8306901.77059189, 8308283.592684909, 8309293.964614827, 8309541.997154512, 8310249.924641636, 8310488.538892394, 8310901.792134435, 8312064.654668149, 8313498.4375, 8313554.079811919, 8313984.640558996, 8314705.058576481, 8315312.440339766, 8315534.656444989, 8315665.306343706, 8315693.559523596, 8316179.6875, 8316215.321473827, 8316385.92565976, 8316440.625, 8316442.65003802, 8316473.4375, 8316481.686570524, 8316736.480678115, 8316938.899895036, 8317359.375, 8317592.1875, 8317786.6456454415, 8317819.330469278, 8317846.875, 8317927.241120337, 8318061.399190824, 8318185.118400808, 8318332.420167493, 8318423.4375, 8318704.666425838, 8318814.313042328, 8318847.5037834225, 8318860.0078505045, 8318890.244065498, 8318973.163024952, 8319051.175498979, 8319053.125, 8319127.846466261, 8319253.4068819815, 8319298.233716542, 8319301.634255342, 8319381.25, 8319443.75, 8319922.536355083, 8319956.412449858, 8319998.4375, 8320281.008229528, 8321062.738266039, 8321176.539606068, 8321571.5110476045, 8322037.504367938, 8324153.3665384995, 8324531.25, 8325382.695607715, 8325635.249648017, 8327412.5, 8328751.5625, 8329140.625, 8329572.811229608, 8331965.650535562, 8332556.238683979, 8333151.56892633, 8334134.8942794725, 8336029.6875, 8336605.424062983, 8336984.623308714, 8337551.5625, 8337706.699397762, 8337970.049890744, 8337978.799622902, 8338178.125, 8339640.49720009, 8340490.336937756, 8340845.3125, 8343264.832601754, 8343514.0625, 8343634.977688086, 8343640.598805934, 8343834.375, 8344151.117365433, 8344290.002775916, 8344389.0625, 8344406.25, 8344429.6875, 8344700.6717238575, 8344702.789421704, 8344862.5, 8344933.814802697, 8345041.976387224, 8345073.154615288, 8345075.32919074, 8345086.195372983, 8345145.3125, 8345256.387548797, 8345308.2927432405, 8345316.821183883, 8345418.809188571, 8345435.9375, 8345499.622269853, 8345584.375, 8345703.125, 8345718.75, 8345764.0625, 8346010.9375, 8346014.544576717, 8346087.5, 8346152.535904946, 8346157.670809799, 8346175.168573146, 8346214.013109852, 8346665.628368711, 8346842.072160229, 8348108.658426799, 8348749.688895012, 8349265.722254981, 8349511.223570022, 8352285.9375, 8353227.303962297, 8358512.5, 8359445.080569873, 8364443.75, 8364586.784694852, 8364996.875, 8366251.544868992, 8367017.2289966475, 8370906.25, 8372578.475841098, 8372726.5625, 8374807.547646056, 8375255.455043017, 8376900.911046354, 8377072.562058481, 8377389.0625, 8377919.833411311, 8377969.409400469, 8378014.00981067, 8378217.1875, 8378226.5302666705, 8378336.154087739, 8378438.655626325, 8378556.387929951, 8378976.394393502, 8379050.0, 8379074.857328157, 8379108.735914288, 8379215.625, 8379971.132775262, 8380872.068036244, 8380899.330708507, 8380946.451010357, 8381184.027529569, 8381221.875, 8381614.845844105, 8381716.617399653, 8381967.1875, 8382535.104812674, 8385438.694383353, 8385693.1591008715, 8386663.894586179, 8387032.9121720595, 8391832.725141596, 8395043.75, 8396059.333521804, 8396151.192284653, 8396651.5625, 8398517.773020381, 8398757.296534797, 8400801.5625, 8401327.55443998, ...], [63.083427404596414, 13.710623747503881, 12.219605221439696, 27.403537459279637, 16.672192175406785, 63.579836271106714, 33.89098418283093, 6.659326097759181, 13.43101801840537, 51.15037023945475, 10.82330798672303, 12.377260256771928, 46.11242014360417, 75.11385022661392, 63.70194756589293, 65.20535181504673, 45.404032093435866, 51.05107572822445, 82.25140697909428, 9.998832269810292, 65.3154160300676, 18.668426638965617, 19.472693685088394, 13.669044143675507, 11.643518575420167, 17.2180110532971, 96.61040471272028, 54.921568484538604, 68.7698861889007, 101.37487236701858, 20.42958105111839, 14.348271976698669, 8.296081512921203, 52.86791778801016, 73.8940631632242, 31.84534879231735, 18.53763586231065, 17.569100700731283, 10.047581051308551, 57.86817286098167, 5.857649800224326, 10.487134027754328, 69.80096450501668, 10.544216013964164, 6.2603413533570444, 88.44340387470984, 23.34203538739917, 21.342176655978484, 29.216417754574408, 77.48167136321423, 140.86304720335875, 11.78900499389291, 22.837112604382774, 47.477801949677435, 107.68524208535463, 48.84169842870589, 6.298290971707511, 113.91964967130961, 118.19778655395034, 52.906311968093846, 21.209817812300038, 11.268205497472124, 66.50739929374657, 96.19505149175095, 54.814937470789516, 58.17556249307301, 5.717368135022626, 8.734306608918743, 26.86679711923323, 21.53418743985641, 64.08101216916722, 11.578651031442346, 97.4326115788501, 5.356829723501929, 108.24029361436001, 36.07813475014953, 6.339888448292902, 11.403804353597428, 51.198256173869716, 79.14752645391832, 78.79970045285721, 12.63016635624583, 16.63494108386376, 72.45726050389038, 12.704522729586708, 16.90979356868191, 23.82432979354002, 6.921722722941119, 22.43070318481538, 20.834039770259754, 14.3000094909987, 161.2619578782614, 30.113633602788127, 15.903620212223947, 5.702959703025647, 30.771281520421677, 58.0433477280106, 18.8886111414017, 14.17723931504931, 70.30256154149984, 56.281726183977966, 21.268818185806943, 7.88482755487269, 29.872196091017376, 12.026960386348147, 47.73565524573788, 133.89008193829054, 62.47743090854509, 118.60280202229498, 23.498984900905846, 9.328653996210896, 38.81207921226387, 6.684989564290682, 47.21094405616387, 81.55874742996563, 26.712397241073187, 9.726501298375336, 25.747029405807805, 7.2684266704941995, 34.364774546930704, 38.50916841156602, 72.91288308851782, 10.227938065995954, 9.290213556214153, 51.38791538930597, 32.11596637345449, 28.488915371055946, 24.084774914466472, 40.5782264216016, 24.292982263349657, 149.11808452169714, 21.520489915460345, 16.84739778635065, 47.18817891761406, 97.23776856283092, 26.86568650741947, 76.07159512208369, 73.87063536488246, 63.503133998455844, 26.49015201128677, 74.15320730801095, 14.962946246759117, 64.00616512245628, 16.141999419143936, 18.14638054990631, 13.683585076437161, 15.117955620764455, 8.403381021310741, 24.645718430060143, 20.461484578937373, 111.3477739347356, 14.410922311640407, 12.296385802121705, 40.607306557313365, 117.12374759932639, 92.20317468467543, 29.960846814402636, 5.831019970816857, 39.763068423715374, 60.10305968731882, 6.269858995137975, 6.702939841272273, 25.406729913522263, 13.835127623937206, 89.75020326447273, 23.119224959669634, 55.029009233201315, 24.973670314736083, 12.610569154372264, 5.262965464908886, 6.878803412342939, 26.34546413311828, 41.355786178498136, 22.855526671053013, 13.875620327138645, 49.85482844084776, 45.81403531036614, 24.206711907083502, 33.710020415644806, 13.915006378829318, 7.715447278261804, 9.358343581982545, 26.417838126104566, 58.22479513798874, 20.373473131479656, 48.32948907604153, 13.032046141152026, 67.87930659863633, 42.92433151185423, 5.5589166367989025, 48.46502638450759, 10.226174291402799, 33.5098875791492, 14.043394081657505, 17.79525715286648, 6.378778470607485, 10.022259518782631, 13.73586257957424, 78.331235046626, 42.29571139355435, 36.166519703221006, 19.910238892858352, 51.63722326027394, 9.137631007821286, 69.24052129054098, 40.64376755105328, 28.79588762086572, 103.13439982921668, 135.37167265183612, 6.265483160147214, 20.34016470828813, 5.7503739084126, 22.00232873629998, 12.952878225970313, 56.225176707034656, 85.787262332344, 75.73302339309582, 37.3868458587755, 6.5750806208398584, 10.921561511971591, 59.884815888784004, 45.85218252660843, 32.088575347444106, 16.678499195814087, 99.47512332548939, 8.707098754397583, 14.854683891874839, 25.9057450159319, 8.472583327695801, 34.39426920281585, 12.017402206535934, 118.07547517677196, 16.00818415786472, 7.915080088783294, 43.5514435620239, 13.6639453704233, 12.357140812318143, 94.43329631929788, 6.296046896198239, 68.19859821517528, 24.703110743944418, 18.342236584690248, 67.79132079501733, 17.90460528588013, 110.01778032381387, 10.6313242337346, 8.648727566372559, 58.52740559522957, 101.1824059947127, 65.61561025000267, 22.1054886964322, 120.29427531556088, 8.78910324487924, 25.1572575942599, 83.72427167107739, 50.49880272973155, 30.963017194137727, 10.195769400806016, 15.031198157324713, 19.909850774987646, 8.930458869419384, 30.192935305034183, 12.412904529510401, 11.18071195935733, 27.910476272677364, 49.813260870643845, 18.792708182657766, 29.269322382614067, 25.873365395396988, 8.205717801056561, 16.389114935031166, 44.970019863664575, 13.47388954637162, 81.80516515795384, 11.84637289357616, 15.09100513168782, 9.754027695522673, 24.10448536387281, 6.576484512194464, 11.202812951657462, 80.34165378912323, 27.033222687266537, 32.790530673537965, 11.994803612668655, 66.79675609806898, 51.480728783784826, 61.38379917947702, 119.75553087829967, 9.497100916465374, 10.497150524849111, 109.79497524659325, 55.261657621973484, 6.501789244728242, 78.76571207619885, 9.035143380718742, 80.28185582467384, 20.66657061820091, 6.08695623938276, 41.748985560517006, 99.84354515199615, 56.74390294478858, 9.440445463476648, 16.217780734263158, 75.471877709749, 104.9237921127243, 13.792619771752232, 114.41203718909819, 57.59275864286282, 57.05242359853145, 5.1904280951609705, 25.091982742249474, 11.741463319155072, 35.28223601960255, 40.12829942790185, 9.270267633703027, 26.00960440741195, 54.849560854998714, 72.80933152315667, 58.38710202713837, 9.209290152742648, 25.032433231749945, 42.17532264493277, 58.59668981183147, 60.02926918925289, 20.579600751447263, 6.460963490356874, 75.20773279126513, 80.93078640209525, 37.642610115744326, 9.969423768722447, 16.86982972746269, 6.093032999171583, 90.53339643354013, 20.48460208848641, 26.073130586682996, 60.87704739680604, 104.73036800222144, 21.57587867313125, 6.070325419733749, 11.45625356251046, 29.679795410151193, 39.5946636054686, 10.163115126382309, 21.39993818430834, 99.83728448425158, 5.162903187763379, 6.976460118177006, 132.68774272389578, 118.38372034409636, 15.467390232674404, 62.28128188855695, 49.37559246015246, 47.3566882371964, 27.108791341374925, 37.40405962813881, 17.53195064154532, 9.605351172220747, 45.69653851582504, 7.545422248239474, 120.96791756527334, 61.34928179213841, 61.589112802836794, 12.971224770122115, 52.57642324696464, 135.20565239882973, 49.117118095188026, 7.129933710624879, 253.5537747833692, 40.64526099362568, 59.42846603491679, 6.888217721183923, 25.330632235977035, 73.63180492176916, 18.553479549978505, 58.12311299826398, 38.96404247290623, 21.08877854222931, 56.003323782803456, 26.26251102143248, 7.350430593299526, 10.593443032701579, 34.80326994949807, 28.812449765512266, 5.6233628270670435, 9.90724193133503, 11.918702752148496, 14.421561217050133, 20.13726552083701, 14.871675150023952, 47.49940412269479, 50.826595624714024, 28.47767066118537, 43.61006080548912, 13.06587042865905, 21.76778989409904, 90.543884054211, 91.59406934372079, 11.57528380920072, 46.115166919436014, 8.603794012283188, 12.794566487206703, 34.73018991505432, 46.58950247327893, 77.69933403012229, 65.1092028918948, 7.559884895258178, 49.90109637083049, 36.12437454610962, 10.669392685205263, 34.718045656985055, 97.68095130907697, 5.244620576351201, 107.56680803968494, 28.20377583406816, 57.625526525809946, 6.6391735909468865, 17.71689766116583, 189.84939491086155, 63.940255919654, 73.79817459486347, 20.330141005823723, 38.41521201834329, 80.68145752665633, 75.0139097567733, 38.28045995074378, 66.58740527640313, 67.03675503038187, 25.930738355516294, 10.100312780077356, 53.58630659677793, 52.62807782620151, 21.386121227001237, 15.978399148652572, 49.92758899223157, 39.50691178281154, 9.194232128587409, 81.4113882705915, 93.22014508262454, 18.542969818703984, 91.38838975369191, 50.242159643198846, 10.645990296922676, 75.81588633392234, 5.067008358597418, 45.52411907560902, 27.781013727858856, 90.2660152453834, 44.158823299451775, 17.476316830588587, 12.48450146039738, 152.8240155238934, 117.2971962885125, 65.48823632820253, 8.359003841419858, 79.98519918537838, 117.320232988753, 46.67983977266572, 34.12556372431855, 34.67733568260381, 6.910598252714383, 50.195667648979025, 54.70519632588103, 64.17361890684019, 18.806203469055827, 38.62363465770367, 9.23614002110389, 12.008712022682191, 54.21937112335446, 7.8634067431167, 85.7055538891392, 50.79316272059639, 39.36028546924568, 9.287032942488137, 36.8499332267141, 20.86547199153329, 68.16460140723186, 47.155079900772506, 93.96713225355118, 76.43997708715305, 21.047896456980205, 74.03423081024668, 24.913432483578436, 7.686656257830218, 81.10758620923932, 40.93540549387494, 168.00741795106657, 22.22320991557182, 14.392987517814502, 81.25968183660298, 87.99830720317706, 21.33335208006308, 48.52703034179725, 11.554283929920453, 25.978068853994404, 19.577834912466187, 20.346280795502658, 37.38414536874005, 39.185827733682466, 51.06235822599055, 53.37915256568437, 107.96770595038049, 18.76809172765818, 23.508555368956543, 12.304033385661485, 24.08313817595323, 12.026756025239806, 10.095487503868686, 12.148816463540786, 43.49655792671304, 45.12760117739531, 54.11407741612345, 36.97108298963472, 26.01853555759505, 31.11643168721659, 17.750141029626114, 8.292612384873424, 17.070038905004463, 74.19517289737749, 33.34025978626835, 44.16384593898624, 78.91677373554245, 94.27717495863817, 94.14386871561027, 6.985894782211716, 41.89621094648539, 99.65880949636437, 11.424162833386001, 121.53389505035487, 13.575221181919057, 70.82356269595348, 5.271781775414067, 93.27428024647146, 39.82643646657293, 34.47347354882793, 63.592442946900995, 6.392715962815601, 18.013103917758862, 13.93648038495798, 10.911770051203645, 56.910960443692126, 35.8966579342064, 105.93839521590533, 6.367393993622679, 15.550552086179968, 8.539542824588805, 10.460003617935664, 28.04325358770599, 99.62413341940419, 7.785061703756653, 14.80031078656692, 51.868977069817284, 122.44967581537729, 16.111532505546982, 8.766346652180728, 23.341483815118885, 88.69790982472088, 18.25946099413543, 27.390933928367303, 16.50085065754348, 59.398648831283644, 31.184543790957804, 8.530084152196551, 6.779230303089891, 14.266226540330196, 10.887551348544918, 10.689869454913053, 43.04998819708938, 29.126188542276346, 58.87369590588763, 42.88017679908366, 89.04609281716829, 71.75600961960573, 62.16638516627578, 5.5744960202600105, 65.77833119726478, 14.23132220251021, 10.04874011285505, 21.17443053655622, 9.512220577316015, 100.06351213388152, 21.36884483312756, 5.542809686208719, 5.053508420282355, 13.84524713913312, 118.82915410578907, 19.725967324415617, 24.15905574276973, 6.211526479857429, 14.911647702618843, 45.8492558435039, 11.11195186993235, 74.51099987651574, 116.33580737298016, 33.38084617198625, 26.891128775856906, 71.27259706586057, 6.824608975259033, 8.95211073764149, 91.95075220990898, 75.46944654926654, 89.83257837485925, 63.08226093046414, 26.197358474553234, 5.72814501997664, 49.92519765676114, 130.74876955389615, 6.5746772648493765, 29.426791263003516, 41.69062544163746, 56.73962483590194, 73.08371789959719, 55.12280603626803, 9.05170166065724, 81.8469051918496, 29.823497598645915, 16.018376720728124, 66.57989640864099, 65.41997230365185, 124.98524857041383, 110.34305884112872, 5.175789752920393, 17.994626064183024, 30.124088886418992, 45.88994890173584, 52.15958760998285, 233.0753102140324, 5.0710931763959355, 29.69672754127381, 13.241757324553276, 99.06231133777617, 34.140870302060605, 38.20590159995624, 32.84765468429802, 54.26608069780949, 79.17087188860808, 56.83288942129094, 19.813272376925983, 17.216590841038943, 71.37855286761692, 25.077490550291145, 61.37456202542051, 87.61771250612081, 29.70744163938823, 37.660179510409286, 139.2953563127536, 55.9701450173992, 6.654708841192773, 140.336601660103, 5.302580977779114, 22.683920529392548, 30.990193007050344, 23.74990099518427, 12.408689713262897, 40.17366836508734, 84.13355782733603, 20.345802290854166, 14.999987332858682, 21.583691970702823, 9.142152786178814, 66.4778209633003, 16.24190503805829, 7.413508852294498, 57.16913092607069, 95.67496115747426, 58.801004102281695, 63.92011690609432, 7.821121275826607, 28.494853250174174, 32.81286600402858, 23.487483814264117, 17.330802178870478, 23.13885772628916, 9.733728981763145, 27.148849785202792, 10.273936581201736, 9.515410604201255, 101.11199433924882, 27.877985938086525, 75.82009106341995, 34.41388248694391, 25.406349073748537, 17.216459569893537, 24.323887032830655, 62.40064590443241, 27.191049926704814, 8.77783825833603, 23.41657833142118, 75.54415537180887, 84.41005377659648, 8.333322646387376, 22.06690479136053, 42.71127637656144, 38.76196961581508, 9.172690621824264, 89.9296954452323, 11.552643590118366, 165.2114072811518, 5.733541154846844, 71.9117063178649, 31.407994288139022, 11.006042677185064, 61.82993905075828, 53.02277658640062, 15.580860825475012, 81.48993832946687, 6.064924176567689, 34.50340047544782, 39.28010870930895, 53.49740979621076, 16.01539680691877, 67.10123210794418, 6.353974764268522, 18.74555753515552, 22.800091072299526, 17.061866751144326, 25.28626871513406, 18.51735045829459, 5.276058490588016, 75.95624567129892, 222.66651159811568, 14.228535471787287, 35.41102581635133, 7.522463683857556, 13.276537408353775, 36.10399023107077, 43.391909065068226, 45.30442858631563, 43.28915881914257, 27.777687979363154, 16.67162387324382, 38.26172083290207, 157.8244262737082, 80.89364540312658, 41.755636262934075, 16.99574971207549, 84.25386096381021, 7.593335094386147, 33.79705497921517, 24.1270535701609, 6.498035159668323, 44.93915962499438, 73.63484169877745, 30.76143554519681, 6.1431134019929585, 6.993882877700749, 39.047797681422274, 12.825845075296893, 12.332827641285412, 70.52253519118337, 22.222850727215814, 31.258872259260876, 28.90244177957695, 52.979600261175776, 24.543181496751483, 102.0635005200526, 22.642760343801424, 17.10737868021374, 23.154283507483726, 66.30602535363708, 74.39661575510634, 28.15063900906431, 110.84296358799594, 19.012408669741944, 29.153697325039317, 53.109587277548556, 13.878069686903899, 12.994653589297847, 19.653931226993677, 14.725696849327083, 94.77682847021347, 17.554345682983296, 15.910363194697442, 33.95459866753288, 8.63809705517326, 7.6656529414494745, 70.88363003276902, 12.216179287414743, 26.3847962858224, 17.212585652537342, 74.66845507088082, 64.8019490104272, 16.50239418294334, 85.65008832916489, 39.38466206290474, 46.8841291371805, 13.217348511000857, 80.4883229129918, 18.190729636567358, 6.582200101527687, 143.11863337647077, 19.683654134172798, 67.30855415998033, 11.402067758950182, 21.416730003898213, 24.318710280893747, 87.05259728304932, 78.34208607768257, 31.491767921132805, 66.98731770417226, 55.38218673388879, 92.277707291773, 5.30843491325586, 30.759773653272312, 29.199468275419438, 30.975955373280108, 15.364732858917405, 7.314297667436944, 10.8887373093398, 105.60872742413954, 11.19722554467945, 5.747735316022721, 10.788453935565038, 7.518183895400774, 68.03095283858869, 39.86080958703809, 8.364510020235315, 60.72513551540356, 15.000988701913409, 100.93556094135717, 104.17696137753082, 15.747260180044124, 11.893198660827538, 13.958978737591643, 15.697570622040168, 8.16552846588904, 15.798772218754507, 19.073954836026566, 27.0886034557762, 9.175479441133454, 11.011924975426032, 21.26079052873776, 7.183152883057852, 28.676273038168056, 41.51970207260739, 25.888130580445164, 27.631186978026676, 81.39162867886253, 83.97932261519463, 27.957148407663922, 82.28679563479548, 64.97951496081475, 106.40135549179826, 23.705803942851247, 28.292712806903506, 89.35867949651337, 6.859500880878052, 90.06746357087849, 11.886319476400299, 57.902717235720814, 14.355955772790939, 46.49063228807177, 35.327688524812864, 70.75647257632461, 86.3290127319519, 89.58793881878755, 89.29314833550644, 17.051352903209843, 12.529541318715884, 56.20529004350746, 90.00586862029799, 99.98085750314328, 15.990958144517217, 5.649803535713687, 6.591093341131761, 50.756842629250315, 29.123856243993288, 5.122316515606186, 60.574462008442005, 14.39526732263655, 5.724935692858563, 25.062837382775353, 166.5552500131183, 51.41048519809522, 77.860139840096, 21.837884857299795, 39.18383884772975, 58.74631436231568, 10.769723935951923, 54.484290875625774, 61.84677790450136, 76.67238534096546, 14.958184132661941, 15.949658511288758, 72.43269234708283, 16.805609644972286, 10.199497706415581, 114.0654209807423, 114.2259616481765, 41.21052925432862, 6.966012343292901, 15.039740549432553, 5.706038204040138, 9.336842916289976, 11.421714597116118, 79.29062088700212, 90.77233879685312, 30.22262663100026, 74.06414290542168, 42.736078250622825, 37.66607557170909, 17.416459157587866, 39.70297678610556, 26.231415901185855, 53.30307495889091, 59.12557238351267, 10.080180235870053, 66.07094802400806, 6.153099083039083, 14.842601061539668, 49.080191279278196, 8.064421148653812, 20.35474739792126, 37.747605824107886, 30.57050243581673, 65.69927556292623, 20.854840252295055, 74.11332765152486, 33.792068564609906, 7.412456331483113, 61.57781695704593, 157.74403648477573, 25.30677340440311, 5.21004190083453, 97.70398919988804, 11.349733258208223, 7.253686938620133, 22.939060760698965, 15.172011930890578, 100.5149634392201, 65.00223147640885, 93.24391232791797, 42.45754454935823, 52.158027407121, 67.13764386361598, 45.68173713390865, 5.306214210850424, 41.25098432285721, 49.55044995763583, 26.008049947743157, 7.665367249633795, 113.1844568760798, 30.978438433680395, 152.30565320095897, 75.47836190871489, 10.673921911146188, 80.84847733380376, 7.1987375429631335, 45.59880511332582, 73.54502223840937, 67.11831781571657, 97.2751685688799, 99.51957019969446, 73.5935370527898, 82.8068128519605, 39.11952467252898, 22.61892483078676, 71.47923650893668, 16.471698906757766, 71.76334689140543, 24.210311024136363, 19.047989754010324, 130.5932669627884, 33.764588580716286, 63.391363035408155, 10.453231476105264, 44.10029820475265, 98.84394117177118, 125.7334797552491, 5.936603360066899, 91.29862215639389, 10.546192632770008, 15.494654671384225, 32.70698130842558, 41.3652409651206, 53.30476939902139, 58.58409744934957, 84.18219287978259, 25.96289609626713, 15.732124551153595, 50.334313408198035, 47.69796332946538, 13.764146807253901, 56.5211402579658, 58.18709510117371, 26.298492595865184, 74.14599677590284, 18.712278722346433, 13.70236362320152, 29.398795757508474, 5.524986274437671, 15.335527374287025, 47.98231529443885, 138.82360267154615, 27.729814229751117, 96.5269863587012, 54.97451680398765, 12.18545617189755, 116.43651871686306, 34.42178405595891, 8.891454593884346, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3309920.3125, 3372724.6346594165, 3420219.3518054117, 3554163.5180832343, 3781717.577860765, 4069707.22681065, 4077751.495456301, 4096316.6422606716, 4098352.662885833, 4128160.9375, 4252549.796116693, 5551183.48769471, 6770005.8686979115, 6797920.3125, 6819392.1875, 6821000.0, 6826176.5625, 6842890.149092574, 7072349.543478235, 7092967.883798547, 7093388.166081856, 7094013.881173971, 7094574.270429122, 7097094.896846675, 7098471.489220438, 7098659.866715108, 7099070.683139712, 7099245.3125, 7099918.75, 7101768.75, 7105701.63345473, 7106946.93791486, 7107296.892929416, 7108701.172348597, 7108987.12906347, 7108996.875, 7109435.079570806, 7109505.281918818, 7109575.740778485, 7109750.0, 7109797.448254894, 7109833.922500708, 7109972.489764635, 7110087.091613333, 7111767.133033473, 7112109.6054225415, 7113007.602681633, 7113074.275575155, 7113101.5625, 7113232.63493214, 7113337.751005038, 7113762.885536812, 7113901.1874431595, 7113918.75, 7113931.0576597545, 7113948.4375, 7113981.492197023, 7114018.75, 7114249.119222171, 7114328.125, 7114337.974928368, 7115150.0880648205, 7115231.25, 7115326.5625, 7115535.752031545, 7115568.75, 7115681.415433209, 7115869.510468356, 7115967.097706067, 7116094.996591577, 7116568.75, 7117129.958036486, 7117401.355737437, 7117747.303707728, 7117928.125, 7118964.0625, 7119061.491966062, 7119300.169738036, 7120481.25, 7120898.4375, 7121656.238833913, 7121723.17168817, 7123005.070615582, 7123493.75, 7125625.147649081, 7125880.393102888, 7127823.321614124, 7132221.056499585, 7319021.464119916, 7344897.868792987, 7355935.758358797, 7565699.35080635, 7565754.05973311, 7565917.4189258, 7565921.815152386, 7566048.4375, 7566384.375, 7566470.262072588, 7566603.939110471, 7566659.1587229, 7566671.875, 7566765.870332517, 7566825.716771683, 7566845.646790567, 7566920.450359216, 7566928.7743433695, 7566931.608062933, 7566954.424039165, 7566979.941902866, 7566988.742531939, 7566996.871746886, 7567013.867868481, 7567032.406063328, 7567167.1875, 7567176.5625, 7567267.980847951, 7567284.808013401, 7567320.154210686, 7567325.531090669, 7567348.952502885, 7567395.3125, 7567467.1875, 7567530.58644256, 7567542.138381934, 7567593.75, 7567603.125, 7567628.93736772, 7567635.663207935, 7567653.510377006, 7567668.4912966415, 7567679.489509869, 7567805.563889641, 7567825.423858855, 7567835.311637602, 7567859.375, 7567868.660141505, 7567940.625, 7567948.4375, 7568024.516182828, 7568057.700439778, 7568116.399372756, 7568190.630612857, 7568193.75, 7568215.907934697, 7568216.270703764, 7568265.250554001, 7568276.608035123, 7568292.4020339, 7568298.69812991, 7568361.889969387, 7568421.273038247, 7568432.6659628255, 7568447.51291034, 7568500.0, 7568556.25, 7568600.0, 7568683.238864792, 7568886.165167443, 7569028.345847654, 7569096.669374269, 7569254.708529825, 7569299.688859456, 7569332.738668495, 7569555.925917846, 7569634.3944097245, 7569824.549225593, 7570048.820865497, 7571794.248476748, 7571986.71616953, 7572452.186963557, 7574056.801327343, 7574135.816683594, 7575517.1875, 7576575.559663148, 7578567.811002557, 7579575.0, 7581557.401471579, 7584615.7771144165, 7586900.0, 7593732.514323474, 7594933.11244067, 7595762.531690239, 7595960.821077849, 7596334.375, 7596664.598988154, 7596962.837745562, 7598127.51402295, 7598840.625, 7599103.125, 7599127.083589019, 7599232.834053401, 7599624.334942719, 7599870.3125, 7600130.992567782, 7600277.5422045635, 7600480.522405413, 7725883.530269509, 7729819.24088379, 7759895.3125, 7797432.8125, 7806451.5625, 7807955.575198649, 7832641.679974198, 7862685.699085924, 7864093.75, 7870560.025104809, 7877789.544255616, 7900273.4375, 7901030.2549992455, 7911210.923912107, 7915176.013287663, 7922420.976685431, 7928852.674576274, 7934738.420344971, 7935730.858580211, 7939200.0, 7947351.5625, 7948819.8539859075, 7949747.414243105, 7950057.67648605, 7950357.8125, 7950777.428468461, 7951129.507853485, 7951692.579083125, 7954476.8080105055, 7954938.218702069, 7955590.602032265, 7956026.4090216635, 7956100.335922198, 7957743.370365057, 7957895.815768922, 7958253.924023754, 7959840.048238499, 7959849.224567661, 7960640.625, 7968686.353351993, 7973949.1034895945, 7975843.75, 7980431.474974041, 7980875.0, 7982214.868117045, 7983386.967442377, 7984062.5, 7989592.795129849, 7990878.125, 7991210.594888117, 8005592.814819296, 8006054.6875, 8006742.1875, 8006923.167612722, 8007362.099668538, 8008550.121733686, 8008802.405536521, 8008991.990172686, 8019793.75, 8027380.052578925, 8050376.5625, 8052583.683945711, 8057368.773333557, 8058144.665226307, 8058382.296938462, 8058471.537138731, 8058827.253890199, 8059532.846148433, 8059853.893923047, 8060029.6875, 8060300.741232371, 8060354.6875, 8060554.5372950295, 8061984.218898109, 8062010.642732618, 8062723.4375, 8065276.115608408, 8071609.6764722355, 8073470.728281741, 8073804.726176743, 8073922.33582798, 8074263.78969775, 8074281.797503515, 8074515.672524997, 8074532.8125, 8074550.378175841, 8074762.423267048, 8074902.054433037, 8075235.9375, 8075296.2228046125, 8075434.375, 8075484.285664428, 8075570.502171083, 8075587.055300534, 8075781.25, 8075869.733459517, 8075990.718125578, 8076067.1875, 8076074.627536218, 8076085.9375, 8076118.162950694, 8076270.301501726, 8076279.6875, 8076296.265230848, 8076325.0, 8076353.251204149, 8076396.062994461, 8076400.0, 8076521.950026943, 8076577.786953624, 8076693.75, 8076754.877348145, 8076776.5625, 8076822.919718051, 8077018.548215673, 8077217.547617273, 8077235.9375, 8077238.8633834515, 8077271.8018019665, 8077289.634458738, 8077295.3125, 8077307.2311666785, 8077470.295754352, 8077482.664463611, 8077502.919125066, 8077564.011468972, 8077576.363179545, 8077918.75, 8078063.465775987, 8078110.7687754175, 8078144.351733367, 8078307.8125, 8078309.375, 8078325.66909299, 8078330.115580055, 8078689.109810979, 8078745.121842261, 8078858.740766673, 8078894.127169492, 8079020.3125, 8079073.778664119, 8079296.383258302, 8079395.139831659, 8079568.950494606, 8079581.985359326, 8079582.8125, 8079689.905723253, 8079765.115609957, 8079779.6875, 8079798.3316272115, 8079857.230635856, 8079907.8125, 8079929.196680709, 8080034.506452601, 8080360.9375, 8080426.5625, 8080478.183752884, 8080773.874404891, 8080807.8125, 8080970.990625634, 8081236.244640592, 8081444.9844692405, 8081709.212268899, 8081882.47904007, 8082090.051461231, 8082751.5625, 8082802.490121116, 8082990.625, 8083109.375, 8083134.161782663, 8083142.219669182, 8083329.563187321, 8083343.722089686, 8083357.8125, 8083378.719144707, 8083398.050237819, 8083587.298509956, 8083752.269386339, 8083757.821502314, 8083797.813305367, 8083810.395990434, 8083848.4375, 8084028.282283978, 8084066.4298983505, 8084113.691509336, 8084140.243702979, 8084145.3125, 8084279.85472364, 8084300.610623347, 8084439.515762488, 8084478.060584585, 8084655.602421372, 8084676.544056713, 8084839.0625, 8084980.987588576, 8085885.935096552, 8086054.6875, 8086371.277171242, 8086587.759650384, 8087578.614577629, 8087954.021861727, 8088323.70614128, 8088870.3125, 8090950.555270844, 8093660.231248005, 8093916.520021406, 8094062.412752604, 8094294.62580835, 8094939.348209626, 8095023.316023884, 8095239.0625, 8095265.625, 8095276.248065158, 8095310.925569405, 8095399.820196838, 8095445.293741232, 8095445.892825125, 8095459.546261083, 8095621.613393096, 8095739.968595857, 8095751.615183381, 8095854.807353725, 8095917.302018268, 8095944.72296125, 8095961.87494184, 8096014.0625, 8096142.1875, 8096154.6875, 8096225.0, 8096262.331875627, 8096354.534387788, 8096433.536247761, 8096767.975545489, 8097276.5625, 8097314.0625, 8097361.989208572, 8097364.310311072, 8097539.0625, 8097596.875, 8097910.770693462, 8098207.8125, 8098379.6875, 8098998.6859081555, 8100220.3125, 8100706.2316525895, 8100921.543283727, 8101357.261114161, 8101431.145910391, 8103859.915958233, 8105382.645884117, 8105639.0625, 8105985.577900475, 8106609.911745155, 8108178.848493139, 8112270.249889061, 8114092.1875, 8115667.082446006, 8116564.196993655, 8116629.496321755, 8117232.8125, 8120537.5, 8121344.304264376, 8122014.062428151, 8123513.194676723, 8123868.75, 8125596.875, 8127257.8125, 8127774.180636047, 8128403.0670942515, 8129384.260146284, 8129855.186417663, 8130287.5, 8130342.8537682155, 8130393.0177454455, 8130624.666094477, 8130892.1875, 8130942.1345551, 8130962.748488433, 8131061.934694218, 8131169.757512286, 8131170.3078558585, 8131265.625, 8131489.674255474, 8131494.766681473, 8131521.875, 8131572.222034925, 8131618.974897354, 8131650.0, 8131700.0, 8131726.441071912, 8131759.746360047, 8131782.660739441, 8131784.375, 8131817.1875, 8131827.608835494, 8131852.958828321, 8131856.506781809, 8131865.481423561, 8131885.2213771595, 8131885.314301746, 8131886.770170496, 8131903.125, 8131917.0892320955, 8131959.375, 8132048.4375, 8132100.737750744, 8132110.917005938, 8132181.891468396, 8132193.108298808, 8132231.757941481, 8132241.408756248, 8132331.817889283, 8132365.17959839, 8132433.971847756, 8132475.0, 8132573.448481856, 8132977.983968263, 8133048.4375, 8133049.688512218, 8133296.886394975, 8133369.215096317, 8133410.64473635, 8133751.46178499, 8133852.196447615, 8134171.875, 8134274.259732562, 8134304.6875, 8134393.2079351535, 8134471.875, 8134473.4375, 8134886.119230438, 8135060.9375, 8135171.463527068, 8135375.0, 8135393.112111672, 8135440.514880972, 8135937.325827371, 8136177.438885175, 8136263.981366837, 8136691.557827916, 8137082.851758771, 8137454.396214224, 8137460.794813518, 8137468.75, 8137992.1875, 8138414.18331809, 8139525.75392274, 8140184.526111301, 8140294.19957143, 8140796.401246158, 8143663.015921684, 8145098.4375, 8145384.851212011, 8145578.087455003, 8145593.75, 8145747.700991931, 8145915.901467658, 8146075.808994644, 8146204.544646697, 8146594.931073424, 8147380.350557415, 8147380.617304335, 8147515.491708399, 8147798.4375, 8147868.75, 8147945.746237504, 8147968.828252613, 8148059.05966572, 8148271.715723654, 8148295.013081743, 8148578.676804275, 8149033.925199291, 8149213.6797249075, 8149421.875, 8150762.5, 8151042.1875, 8151594.442683635, 8153093.012299275, 8153164.0625, 8156685.737800934, 8162408.554326811, 8165397.904950291, 8166783.01887365, 8167251.142942128, 8167322.029288928, 8167512.698847243, 8167628.823135337, 8172605.929223802, 8177806.143192328, 8178396.177512147, 8179181.774975285, 8181329.2337760115, 8182490.617143305, 8183775.217418446, 8186504.677397045, 8194020.3125, 8195178.125, 8195630.063379621, 8196924.171507233, 8204843.75, 8210492.486043738, 8223815.1395677505, 8231292.1875, 8239453.449920666, 8239692.745995735, 8239732.8125, 8240251.743531624, 8240409.705884363, 8240441.741760989, 8240664.545540961, 8240697.411867867, 8240704.6875, 8240876.5625, 8240885.811422971, 8240906.25, 8240941.663058032, 8240948.087088459, 8240960.237297271, 8240993.75, 8240997.1314847525, 8240998.782161827, 8241009.375, 8241021.216309178, 8241060.954260761, 8241080.129702899, 8241106.871963511, 8241134.223365975, 8241173.4375, 8241206.25, 8241238.5976804, 8241251.682948858, 8241267.1875, 8241279.156432526, 8241392.0333332885, 8241412.5, 8241446.875, 8241503.933071133, 8241556.25, 8241604.636502193, 8241609.375, 8241647.632165277, 8241726.4644817645, 8241740.047672687, 8241745.10972233, 8241804.6875, 8241841.987609544, 8241854.6875, 8241904.6875, 8241912.5, 8241940.625, 8241980.679461736, 8241985.604410232, 8242011.305167581, 8242105.861626297, 8242208.772790886, 8242268.508037335, 8242302.251982592, 8242335.9375, 8242370.3125, 8242407.189246658, 8242517.202758229, 8242552.634033692, 8242563.829868536, 8242595.3125, 8242654.741906761, 8242755.693083803, 8242778.125, 8242905.62382038, 8242950.0, 8242988.256494264, 8243125.564749934, 8243135.935965895, 8243168.521669852, 8243182.491607192, 8243219.261597998, 8243451.213038958, 8243477.00284422, 8243940.29187248, 8244332.187743148, 8244715.834885187, 8248735.707138077, 8250656.449676433, 8253664.397643628, 8254351.5625, 8254356.0694270665, 8254810.175586403, 8254820.070018278, 8254853.125, 8254935.535486284, 8255191.451228685, 8255294.78088597, 8255448.07894925, 8255454.854944738, 8255496.962362258, 8255543.401981348, 8255551.667778594, 8255604.6875, 8255727.931138309, 8255847.278612465, 8255926.818352537, 8255930.459231884, 8256028.537769068, 8256293.75, 8256346.440457524, 8256512.420743214, 8256565.625, 8256714.287634273, 8256771.6641473975, 8256832.364508033, 8257174.774156324, 8257204.6875, 8257634.375, 8257737.5, 8258016.050959533, 8258591.601170044, 8258803.782292483, 8258843.560931569, 8259336.357486422, 8259927.026108186, 8260109.186399965, 8260375.701598569, 8260426.06818219, 8265518.264846699, 8265723.4375, 8266306.049460849, 8266662.5, 8266691.958509952, 8266696.356822901, 8267464.044526057, 8269869.989130124, 8270189.0625, 8270215.625, 8270393.711097852, 8270545.702750562, 8270771.875, 8270921.141694256, 8271581.25, 8271910.323262852, 8272130.138997762, 8272274.883417315, 8272434.347537557, 8274804.6875, 8275927.853899923, 8276451.631960382, 8276659.245500291, 8277910.9375, 8278553.125, 8278822.3879187, 8278890.116411309, 8279894.146016202, 8279947.744101522, 8280925.654803941, 8281614.75238392, 8281660.50766942, 8281904.073022351, 8282031.886376302, 8282262.697826592, 8282620.072104359, 8282642.1875, 8282710.545510288, 8284141.096871579, 8284451.214325408, 8286094.936194303, 8286203.04742628, 8286284.355811424, 8286509.8761810195, 8286525.493610373, 8286835.9375, 8287050.0, 8287132.502398378, 8287218.124368033, 8287240.263169975, 8287543.692202881, 8287823.4375, 8288116.343359421, 8288801.795411982, 8291628.125, 8292441.235409788, 8292545.481833768, 8292792.1705377195, 8292912.241448845, 8293024.4481826, 8293027.053249935, 8293345.3125, 8293496.846243319, 8293639.419475956, 8294055.6666754605, 8294128.6994605, 8294535.9375, 8294569.772325713, 8294603.125, 8295018.413587167, 8295075.581027079, 8295092.0337753445, 8295138.35972587, 8295284.442636018, 8295292.356211875, 8295847.487950739, 8295879.430700374, 8295901.5625, 8295913.6070437655, 8295965.5967465, 8295976.5625, 8296194.60183178, 8296315.176145941, 8296706.801584667, 8296725.0, 8296941.489509208, 8297431.218866624, 8297621.981776455, 8297674.123610418, 8297843.591538896, 8298009.209286582, 8298293.794025272, 8298670.937671401, 8299445.08404431, 8299543.508552646, 8299660.9375, 8299971.875, 8300042.332020626, 8300296.03006735, 8300481.2655180525, 8301837.984682911, 8302778.082320805, 8303847.071470804, 8304402.002628367, 8304734.090900684, 8304875.185161013, 8306216.951358606, 8306901.77059189, 8308283.592684909, 8309293.964614827, 8309541.997154512, 8310249.924641636, 8310488.538892394, 8310901.792134435, 8312064.654668149, 8313498.4375, 8313554.079811919, 8313984.640558996, 8314705.058576481, 8315312.440339766, 8315534.656444989, 8315665.306343706, 8315693.559523596, 8316179.6875, 8316215.321473827, 8316385.92565976, 8316440.625, 8316442.65003802, 8316473.4375, 8316481.686570524, 8316736.480678115, 8316938.899895036, 8317359.375, 8317592.1875, 8317786.6456454415, 8317819.330469278, 8317846.875, 8317927.241120337, 8318061.399190824, 8318185.118400808, 8318332.420167493, 8318423.4375, 8318704.666425838, 8318814.313042328, 8318847.5037834225, 8318860.0078505045, 8318890.244065498, 8318973.163024952, 8319051.175498979, 8319053.125, 8319127.846466261, 8319253.4068819815, 8319298.233716542, 8319301.634255342, 8319381.25, 8319443.75, 8319922.536355083, 8319956.412449858, 8319998.4375, 8320281.008229528, 8321062.738266039, 8321176.539606068, 8321571.5110476045, 8322037.504367938, 8324153.3665384995, 8324531.25, 8325382.695607715, 8325635.249648017, 8327412.5, 8328751.5625, 8329140.625, 8329572.811229608, 8331965.650535562, 8332556.238683979, 8333151.56892633, 8334134.8942794725, 8336029.6875, 8336605.424062983, 8336984.623308714, 8337551.5625, 8337706.699397762, 8337970.049890744, 8337978.799622902, 8338178.125, 8339640.49720009, 8340490.336937756, 8340845.3125, 8343264.832601754, 8343514.0625, 8343634.977688086, 8343640.598805934, 8343834.375, 8344151.117365433, 8344290.002775916, 8344389.0625, 8344406.25, 8344429.6875, 8344700.6717238575, 8344702.789421704, 8344862.5, 8344933.814802697, 8345041.976387224, 8345073.154615288, 8345075.32919074, 8345086.195372983, 8345145.3125, 8345256.387548797, 8345308.2927432405, 8345316.821183883, 8345418.809188571, 8345435.9375, 8345499.622269853, 8345584.375, 8345703.125, 8345718.75, 8345764.0625, 8346010.9375, 8346014.544576717, 8346087.5, 8346152.535904946, 8346157.670809799, 8346175.168573146, 8346214.013109852, 8346665.628368711, 8346842.072160229, 8348108.658426799, 8348749.688895012, 8349265.722254981, 8349511.223570022, 8352285.9375, 8353227.303962297, 8358512.5, 8359445.080569873, 8364443.75, 8364586.784694852, 8364996.875, 8366251.544868992, 8367017.2289966475, 8370906.25, 8372578.475841098, 8372726.5625, 8374807.547646056, 8375255.455043017, 8376900.911046354, 8377072.562058481, 8377389.0625, 8377919.833411311, 8377969.409400469, 8378014.00981067, 8378217.1875, 8378226.5302666705, 8378336.154087739, 8378438.655626325, 8378556.387929951, 8378976.394393502, 8379050.0, 8379074.857328157, 8379108.735914288, 8379215.625, 8379971.132775262, 8380872.068036244, 8380899.330708507, 8380946.451010357, 8381184.027529569, 8381221.875, 8381614.845844105, 8381716.617399653, 8381967.1875, 8382535.104812674, 8385438.694383353, 8385693.1591008715, 8386663.894586179, 8387032.9121720595, 8391832.725141596, 8395043.75, 8396059.333521804, 8396151.192284653, 8396651.5625, 8398517.773020381, 8398757.296534797, 8400801.5625, 8401327.55443998, ...], [63.083427404596414, 13.710623747503881, 12.219605221439696, 27.403537459279637, 16.672192175406785, 63.579836271106714, 33.89098418283093, 6.659326097759181, 13.43101801840537, 51.15037023945475, 10.82330798672303, 12.377260256771928, 46.11242014360417, 75.11385022661392, 63.70194756589293, 65.20535181504673, 45.404032093435866, 51.05107572822445, 82.25140697909428, 9.998832269810292, 65.3154160300676, 18.668426638965617, 19.472693685088394, 13.669044143675507, 11.643518575420167, 17.2180110532971, 96.61040471272028, 54.921568484538604, 68.7698861889007, 101.37487236701858, 20.42958105111839, 14.348271976698669, 8.296081512921203, 52.86791778801016, 73.8940631632242, 31.84534879231735, 18.53763586231065, 17.569100700731283, 10.047581051308551, 57.86817286098167, 5.857649800224326, 10.487134027754328, 69.80096450501668, 10.544216013964164, 6.2603413533570444, 88.44340387470984, 23.34203538739917, 21.342176655978484, 29.216417754574408, 77.48167136321423, 140.86304720335875, 11.78900499389291, 22.837112604382774, 47.477801949677435, 107.68524208535463, 48.84169842870589, 6.298290971707511, 113.91964967130961, 118.19778655395034, 52.906311968093846, 21.209817812300038, 11.268205497472124, 66.50739929374657, 96.19505149175095, 54.814937470789516, 58.17556249307301, 5.717368135022626, 8.734306608918743, 26.86679711923323, 21.53418743985641, 64.08101216916722, 11.578651031442346, 97.4326115788501, 5.356829723501929, 108.24029361436001, 36.07813475014953, 6.339888448292902, 11.403804353597428, 51.198256173869716, 79.14752645391832, 78.79970045285721, 12.63016635624583, 16.63494108386376, 72.45726050389038, 12.704522729586708, 16.90979356868191, 23.82432979354002, 6.921722722941119, 22.43070318481538, 20.834039770259754, 14.3000094909987, 161.2619578782614, 30.113633602788127, 15.903620212223947, 5.702959703025647, 30.771281520421677, 58.0433477280106, 18.8886111414017, 14.17723931504931, 70.30256154149984, 56.281726183977966, 21.268818185806943, 7.88482755487269, 29.872196091017376, 12.026960386348147, 47.73565524573788, 133.89008193829054, 62.47743090854509, 118.60280202229498, 23.498984900905846, 9.328653996210896, 38.81207921226387, 6.684989564290682, 47.21094405616387, 81.55874742996563, 26.712397241073187, 9.726501298375336, 25.747029405807805, 7.2684266704941995, 34.364774546930704, 38.50916841156602, 72.91288308851782, 10.227938065995954, 9.290213556214153, 51.38791538930597, 32.11596637345449, 28.488915371055946, 24.084774914466472, 40.5782264216016, 24.292982263349657, 149.11808452169714, 21.520489915460345, 16.84739778635065, 47.18817891761406, 97.23776856283092, 26.86568650741947, 76.07159512208369, 73.87063536488246, 63.503133998455844, 26.49015201128677, 74.15320730801095, 14.962946246759117, 64.00616512245628, 16.141999419143936, 18.14638054990631, 13.683585076437161, 15.117955620764455, 8.403381021310741, 24.645718430060143, 20.461484578937373, 111.3477739347356, 14.410922311640407, 12.296385802121705, 40.607306557313365, 117.12374759932639, 92.20317468467543, 29.960846814402636, 5.831019970816857, 39.763068423715374, 60.10305968731882, 6.269858995137975, 6.702939841272273, 25.406729913522263, 13.835127623937206, 89.75020326447273, 23.119224959669634, 55.029009233201315, 24.973670314736083, 12.610569154372264, 5.262965464908886, 6.878803412342939, 26.34546413311828, 41.355786178498136, 22.855526671053013, 13.875620327138645, 49.85482844084776, 45.81403531036614, 24.206711907083502, 33.710020415644806, 13.915006378829318, 7.715447278261804, 9.358343581982545, 26.417838126104566, 58.22479513798874, 20.373473131479656, 48.32948907604153, 13.032046141152026, 67.87930659863633, 42.92433151185423, 5.5589166367989025, 48.46502638450759, 10.226174291402799, 33.5098875791492, 14.043394081657505, 17.79525715286648, 6.378778470607485, 10.022259518782631, 13.73586257957424, 78.331235046626, 42.29571139355435, 36.166519703221006, 19.910238892858352, 51.63722326027394, 9.137631007821286, 69.24052129054098, 40.64376755105328, 28.79588762086572, 103.13439982921668, 135.37167265183612, 6.265483160147214, 20.34016470828813, 5.7503739084126, 22.00232873629998, 12.952878225970313, 56.225176707034656, 85.787262332344, 75.73302339309582, 37.3868458587755, 6.5750806208398584, 10.921561511971591, 59.884815888784004, 45.85218252660843, 32.088575347444106, 16.678499195814087, 99.47512332548939, 8.707098754397583, 14.854683891874839, 25.9057450159319, 8.472583327695801, 34.39426920281585, 12.017402206535934, 118.07547517677196, 16.00818415786472, 7.915080088783294, 43.5514435620239, 13.6639453704233, 12.357140812318143, 94.43329631929788, 6.296046896198239, 68.19859821517528, 24.703110743944418, 18.342236584690248, 67.79132079501733, 17.90460528588013, 110.01778032381387, 10.6313242337346, 8.648727566372559, 58.52740559522957, 101.1824059947127, 65.61561025000267, 22.1054886964322, 120.29427531556088, 8.78910324487924, 25.1572575942599, 83.72427167107739, 50.49880272973155, 30.963017194137727, 10.195769400806016, 15.031198157324713, 19.909850774987646, 8.930458869419384, 30.192935305034183, 12.412904529510401, 11.18071195935733, 27.910476272677364, 49.813260870643845, 18.792708182657766, 29.269322382614067, 25.873365395396988, 8.205717801056561, 16.389114935031166, 44.970019863664575, 13.47388954637162, 81.80516515795384, 11.84637289357616, 15.09100513168782, 9.754027695522673, 24.10448536387281, 6.576484512194464, 11.202812951657462, 80.34165378912323, 27.033222687266537, 32.790530673537965, 11.994803612668655, 66.79675609806898, 51.480728783784826, 61.38379917947702, 119.75553087829967, 9.497100916465374, 10.497150524849111, 109.79497524659325, 55.261657621973484, 6.501789244728242, 78.76571207619885, 9.035143380718742, 80.28185582467384, 20.66657061820091, 6.08695623938276, 41.748985560517006, 99.84354515199615, 56.74390294478858, 9.440445463476648, 16.217780734263158, 75.471877709749, 104.9237921127243, 13.792619771752232, 114.41203718909819, 57.59275864286282, 57.05242359853145, 5.1904280951609705, 25.091982742249474, 11.741463319155072, 35.28223601960255, 40.12829942790185, 9.270267633703027, 26.00960440741195, 54.849560854998714, 72.80933152315667, 58.38710202713837, 9.209290152742648, 25.032433231749945, 42.17532264493277, 58.59668981183147, 60.02926918925289, 20.579600751447263, 6.460963490356874, 75.20773279126513, 80.93078640209525, 37.642610115744326, 9.969423768722447, 16.86982972746269, 6.093032999171583, 90.53339643354013, 20.48460208848641, 26.073130586682996, 60.87704739680604, 104.73036800222144, 21.57587867313125, 6.070325419733749, 11.45625356251046, 29.679795410151193, 39.5946636054686, 10.163115126382309, 21.39993818430834, 99.83728448425158, 5.162903187763379, 6.976460118177006, 132.68774272389578, 118.38372034409636, 15.467390232674404, 62.28128188855695, 49.37559246015246, 47.3566882371964, 27.108791341374925, 37.40405962813881, 17.53195064154532, 9.605351172220747, 45.69653851582504, 7.545422248239474, 120.96791756527334, 61.34928179213841, 61.589112802836794, 12.971224770122115, 52.57642324696464, 135.20565239882973, 49.117118095188026, 7.129933710624879, 253.5537747833692, 40.64526099362568, 59.42846603491679, 6.888217721183923, 25.330632235977035, 73.63180492176916, 18.553479549978505, 58.12311299826398, 38.96404247290623, 21.08877854222931, 56.003323782803456, 26.26251102143248, 7.350430593299526, 10.593443032701579, 34.80326994949807, 28.812449765512266, 5.6233628270670435, 9.90724193133503, 11.918702752148496, 14.421561217050133, 20.13726552083701, 14.871675150023952, 47.49940412269479, 50.826595624714024, 28.47767066118537, 43.61006080548912, 13.06587042865905, 21.76778989409904, 90.543884054211, 91.59406934372079, 11.57528380920072, 46.115166919436014, 8.603794012283188, 12.794566487206703, 34.73018991505432, 46.58950247327893, 77.69933403012229, 65.1092028918948, 7.559884895258178, 49.90109637083049, 36.12437454610962, 10.669392685205263, 34.718045656985055, 97.68095130907697, 5.244620576351201, 107.56680803968494, 28.20377583406816, 57.625526525809946, 6.6391735909468865, 17.71689766116583, 189.84939491086155, 63.940255919654, 73.79817459486347, 20.330141005823723, 38.41521201834329, 80.68145752665633, 75.0139097567733, 38.28045995074378, 66.58740527640313, 67.03675503038187, 25.930738355516294, 10.100312780077356, 53.58630659677793, 52.62807782620151, 21.386121227001237, 15.978399148652572, 49.92758899223157, 39.50691178281154, 9.194232128587409, 81.4113882705915, 93.22014508262454, 18.542969818703984, 91.38838975369191, 50.242159643198846, 10.645990296922676, 75.81588633392234, 5.067008358597418, 45.52411907560902, 27.781013727858856, 90.2660152453834, 44.158823299451775, 17.476316830588587, 12.48450146039738, 152.8240155238934, 117.2971962885125, 65.48823632820253, 8.359003841419858, 79.98519918537838, 117.320232988753, 46.67983977266572, 34.12556372431855, 34.67733568260381, 6.910598252714383, 50.195667648979025, 54.70519632588103, 64.17361890684019, 18.806203469055827, 38.62363465770367, 9.23614002110389, 12.008712022682191, 54.21937112335446, 7.8634067431167, 85.7055538891392, 50.79316272059639, 39.36028546924568, 9.287032942488137, 36.8499332267141, 20.86547199153329, 68.16460140723186, 47.155079900772506, 93.96713225355118, 76.43997708715305, 21.047896456980205, 74.03423081024668, 24.913432483578436, 7.686656257830218, 81.10758620923932, 40.93540549387494, 168.00741795106657, 22.22320991557182, 14.392987517814502, 81.25968183660298, 87.99830720317706, 21.33335208006308, 48.52703034179725, 11.554283929920453, 25.978068853994404, 19.577834912466187, 20.346280795502658, 37.38414536874005, 39.185827733682466, 51.06235822599055, 53.37915256568437, 107.96770595038049, 18.76809172765818, 23.508555368956543, 12.304033385661485, 24.08313817595323, 12.026756025239806, 10.095487503868686, 12.148816463540786, 43.49655792671304, 45.12760117739531, 54.11407741612345, 36.97108298963472, 26.01853555759505, 31.11643168721659, 17.750141029626114, 8.292612384873424, 17.070038905004463, 74.19517289737749, 33.34025978626835, 44.16384593898624, 78.91677373554245, 94.27717495863817, 94.14386871561027, 6.985894782211716, 41.89621094648539, 99.65880949636437, 11.424162833386001, 121.53389505035487, 13.575221181919057, 70.82356269595348, 5.271781775414067, 93.27428024647146, 39.82643646657293, 34.47347354882793, 63.592442946900995, 6.392715962815601, 18.013103917758862, 13.93648038495798, 10.911770051203645, 56.910960443692126, 35.8966579342064, 105.93839521590533, 6.367393993622679, 15.550552086179968, 8.539542824588805, 10.460003617935664, 28.04325358770599, 99.62413341940419, 7.785061703756653, 14.80031078656692, 51.868977069817284, 122.44967581537729, 16.111532505546982, 8.766346652180728, 23.341483815118885, 88.69790982472088, 18.25946099413543, 27.390933928367303, 16.50085065754348, 59.398648831283644, 31.184543790957804, 8.530084152196551, 6.779230303089891, 14.266226540330196, 10.887551348544918, 10.689869454913053, 43.04998819708938, 29.126188542276346, 58.87369590588763, 42.88017679908366, 89.04609281716829, 71.75600961960573, 62.16638516627578, 5.5744960202600105, 65.77833119726478, 14.23132220251021, 10.04874011285505, 21.17443053655622, 9.512220577316015, 100.06351213388152, 21.36884483312756, 5.542809686208719, 5.053508420282355, 13.84524713913312, 118.82915410578907, 19.725967324415617, 24.15905574276973, 6.211526479857429, 14.911647702618843, 45.8492558435039, 11.11195186993235, 74.51099987651574, 116.33580737298016, 33.38084617198625, 26.891128775856906, 71.27259706586057, 6.824608975259033, 8.95211073764149, 91.95075220990898, 75.46944654926654, 89.83257837485925, 63.08226093046414, 26.197358474553234, 5.72814501997664, 49.92519765676114, 130.74876955389615, 6.5746772648493765, 29.426791263003516, 41.69062544163746, 56.73962483590194, 73.08371789959719, 55.12280603626803, 9.05170166065724, 81.8469051918496, 29.823497598645915, 16.018376720728124, 66.57989640864099, 65.41997230365185, 124.98524857041383, 110.34305884112872, 5.175789752920393, 17.994626064183024, 30.124088886418992, 45.88994890173584, 52.15958760998285, 233.0753102140324, 5.0710931763959355, 29.69672754127381, 13.241757324553276, 99.06231133777617, 34.140870302060605, 38.20590159995624, 32.84765468429802, 54.26608069780949, 79.17087188860808, 56.83288942129094, 19.813272376925983, 17.216590841038943, 71.37855286761692, 25.077490550291145, 61.37456202542051, 87.61771250612081, 29.70744163938823, 37.660179510409286, 139.2953563127536, 55.9701450173992, 6.654708841192773, 140.336601660103, 5.302580977779114, 22.683920529392548, 30.990193007050344, 23.74990099518427, 12.408689713262897, 40.17366836508734, 84.13355782733603, 20.345802290854166, 14.999987332858682, 21.583691970702823, 9.142152786178814, 66.4778209633003, 16.24190503805829, 7.413508852294498, 57.16913092607069, 95.67496115747426, 58.801004102281695, 63.92011690609432, 7.821121275826607, 28.494853250174174, 32.81286600402858, 23.487483814264117, 17.330802178870478, 23.13885772628916, 9.733728981763145, 27.148849785202792, 10.273936581201736, 9.515410604201255, 101.11199433924882, 27.877985938086525, 75.82009106341995, 34.41388248694391, 25.406349073748537, 17.216459569893537, 24.323887032830655, 62.40064590443241, 27.191049926704814, 8.77783825833603, 23.41657833142118, 75.54415537180887, 84.41005377659648, 8.333322646387376, 22.06690479136053, 42.71127637656144, 38.76196961581508, 9.172690621824264, 89.9296954452323, 11.552643590118366, 165.2114072811518, 5.733541154846844, 71.9117063178649, 31.407994288139022, 11.006042677185064, 61.82993905075828, 53.02277658640062, 15.580860825475012, 81.48993832946687, 6.064924176567689, 34.50340047544782, 39.28010870930895, 53.49740979621076, 16.01539680691877, 67.10123210794418, 6.353974764268522, 18.74555753515552, 22.800091072299526, 17.061866751144326, 25.28626871513406, 18.51735045829459, 5.276058490588016, 75.95624567129892, 222.66651159811568, 14.228535471787287, 35.41102581635133, 7.522463683857556, 13.276537408353775, 36.10399023107077, 43.391909065068226, 45.30442858631563, 43.28915881914257, 27.777687979363154, 16.67162387324382, 38.26172083290207, 157.8244262737082, 80.89364540312658, 41.755636262934075, 16.99574971207549, 84.25386096381021, 7.593335094386147, 33.79705497921517, 24.1270535701609, 6.498035159668323, 44.93915962499438, 73.63484169877745, 30.76143554519681, 6.1431134019929585, 6.993882877700749, 39.047797681422274, 12.825845075296893, 12.332827641285412, 70.52253519118337, 22.222850727215814, 31.258872259260876, 28.90244177957695, 52.979600261175776, 24.543181496751483, 102.0635005200526, 22.642760343801424, 17.10737868021374, 23.154283507483726, 66.30602535363708, 74.39661575510634, 28.15063900906431, 110.84296358799594, 19.012408669741944, 29.153697325039317, 53.109587277548556, 13.878069686903899, 12.994653589297847, 19.653931226993677, 14.725696849327083, 94.77682847021347, 17.554345682983296, 15.910363194697442, 33.95459866753288, 8.63809705517326, 7.6656529414494745, 70.88363003276902, 12.216179287414743, 26.3847962858224, 17.212585652537342, 74.66845507088082, 64.8019490104272, 16.50239418294334, 85.65008832916489, 39.38466206290474, 46.8841291371805, 13.217348511000857, 80.4883229129918, 18.190729636567358, 6.582200101527687, 143.11863337647077, 19.683654134172798, 67.30855415998033, 11.402067758950182, 21.416730003898213, 24.318710280893747, 87.05259728304932, 78.34208607768257, 31.491767921132805, 66.98731770417226, 55.38218673388879, 92.277707291773, 5.30843491325586, 30.759773653272312, 29.199468275419438, 30.975955373280108, 15.364732858917405, 7.314297667436944, 10.8887373093398, 105.60872742413954, 11.19722554467945, 5.747735316022721, 10.788453935565038, 7.518183895400774, 68.03095283858869, 39.86080958703809, 8.364510020235315, 60.72513551540356, 15.000988701913409, 100.93556094135717, 104.17696137753082, 15.747260180044124, 11.893198660827538, 13.958978737591643, 15.697570622040168, 8.16552846588904, 15.798772218754507, 19.073954836026566, 27.0886034557762, 9.175479441133454, 11.011924975426032, 21.26079052873776, 7.183152883057852, 28.676273038168056, 41.51970207260739, 25.888130580445164, 27.631186978026676, 81.39162867886253, 83.97932261519463, 27.957148407663922, 82.28679563479548, 64.97951496081475, 106.40135549179826, 23.705803942851247, 28.292712806903506, 89.35867949651337, 6.859500880878052, 90.06746357087849, 11.886319476400299, 57.902717235720814, 14.355955772790939, 46.49063228807177, 35.327688524812864, 70.75647257632461, 86.3290127319519, 89.58793881878755, 89.29314833550644, 17.051352903209843, 12.529541318715884, 56.20529004350746, 90.00586862029799, 99.98085750314328, 15.990958144517217, 5.649803535713687, 6.591093341131761, 50.756842629250315, 29.123856243993288, 5.122316515606186, 60.574462008442005, 14.39526732263655, 5.724935692858563, 25.062837382775353, 166.5552500131183, 51.41048519809522, 77.860139840096, 21.837884857299795, 39.18383884772975, 58.74631436231568, 10.769723935951923, 54.484290875625774, 61.84677790450136, 76.67238534096546, 14.958184132661941, 15.949658511288758, 72.43269234708283, 16.805609644972286, 10.199497706415581, 114.0654209807423, 114.2259616481765, 41.21052925432862, 6.966012343292901, 15.039740549432553, 5.706038204040138, 9.336842916289976, 11.421714597116118, 79.29062088700212, 90.77233879685312, 30.22262663100026, 74.06414290542168, 42.736078250622825, 37.66607557170909, 17.416459157587866, 39.70297678610556, 26.231415901185855, 53.30307495889091, 59.12557238351267, 10.080180235870053, 66.07094802400806, 6.153099083039083, 14.842601061539668, 49.080191279278196, 8.064421148653812, 20.35474739792126, 37.747605824107886, 30.57050243581673, 65.69927556292623, 20.854840252295055, 74.11332765152486, 33.792068564609906, 7.412456331483113, 61.57781695704593, 157.74403648477573, 25.30677340440311, 5.21004190083453, 97.70398919988804, 11.349733258208223, 7.253686938620133, 22.939060760698965, 15.172011930890578, 100.5149634392201, 65.00223147640885, 93.24391232791797, 42.45754454935823, 52.158027407121, 67.13764386361598, 45.68173713390865, 5.306214210850424, 41.25098432285721, 49.55044995763583, 26.008049947743157, 7.665367249633795, 113.1844568760798, 30.978438433680395, 152.30565320095897, 75.47836190871489, 10.673921911146188, 80.84847733380376, 7.1987375429631335, 45.59880511332582, 73.54502223840937, 67.11831781571657, 97.2751685688799, 99.51957019969446, 73.5935370527898, 82.8068128519605, 39.11952467252898, 22.61892483078676, 71.47923650893668, 16.471698906757766, 71.76334689140543, 24.210311024136363, 19.047989754010324, 130.5932669627884, 33.764588580716286, 63.391363035408155, 10.453231476105264, 44.10029820475265, 98.84394117177118, 125.7334797552491, 5.936603360066899, 91.29862215639389, 10.546192632770008, 15.494654671384225, 32.70698130842558, 41.3652409651206, 53.30476939902139, 58.58409744934957, 84.18219287978259, 25.96289609626713, 15.732124551153595, 50.334313408198035, 47.69796332946538, 13.764146807253901, 56.5211402579658, 58.18709510117371, 26.298492595865184, 74.14599677590284, 18.712278722346433, 13.70236362320152, 29.398795757508474, 5.524986274437671, 15.335527374287025, 47.98231529443885, 138.82360267154615, 27.729814229751117, 96.5269863587012, 54.97451680398765, 12.18545617189755, 116.43651871686306, 34.42178405595891, 8.891454593884346, ...])
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);
([3309920.3125, 3372724.6346594165, 3420219.3518054117, 3554163.5180832343, 3781717.577860765, 4069707.22681065, 4077751.495456301, 4096316.6422606716, 4098352.662885833, 4128160.9375, 4252549.796116693, 5551183.48769471, 6770005.8686979115, 6797920.3125, 6819392.1875, 6821000.0, 6826176.5625, 6842890.149092574, 7072349.543478235, 7092967.883798547, 7093388.166081856, 7094013.881173971, 7094574.270429122, 7097094.896846675, 7098471.489220438, 7098659.866715108, 7099070.683139712, 7099245.3125, 7099918.75, 7101768.75, 7105701.63345473, 7106946.93791486, 7107296.892929416, 7108701.172348597, 7108987.12906347, 7108996.875, 7109435.079570806, 7109505.281918818, 7109575.740778485, 7109750.0, 7109797.448254894, 7109833.922500708, 7109972.489764635, 7110087.091613333, 7111767.133033473, 7112109.6054225415, 7113007.602681633, 7113074.275575155, 7113101.5625, 7113232.63493214, 7113337.751005038, 7113762.885536812, 7113901.1874431595, 7113918.75, 7113931.0576597545, 7113948.4375, 7113981.492197023, 7114018.75, 7114249.119222171, 7114328.125, 7114337.974928368, 7115150.0880648205, 7115231.25, 7115326.5625, 7115535.752031545, 7115568.75, 7115681.415433209, 7115869.510468356, 7115967.097706067, 7116094.996591577, 7116568.75, 7117129.958036486, 7117401.355737437, 7117747.303707728, 7117928.125, 7118964.0625, 7119061.491966062, 7119300.169738036, 7120481.25, 7120898.4375, 7121656.238833913, 7121723.17168817, 7123005.070615582, 7123493.75, 7125625.147649081, 7125880.393102888, 7127823.321614124, 7132221.056499585, 7319021.464119916, 7344897.868792987, 7355935.758358797, 7565699.35080635, 7565754.05973311, 7565917.4189258, 7565921.815152386, 7566048.4375, 7566384.375, 7566470.262072588, 7566603.939110471, 7566659.1587229, 7566671.875, 7566765.870332517, 7566825.716771683, 7566845.646790567, 7566920.450359216, 7566928.7743433695, 7566931.608062933, 7566954.424039165, 7566979.941902866, 7566988.742531939, 7566996.871746886, 7567013.867868481, 7567032.406063328, 7567167.1875, 7567176.5625, 7567267.980847951, 7567284.808013401, 7567320.154210686, 7567325.531090669, 7567348.952502885, 7567395.3125, 7567467.1875, 7567530.58644256, 7567542.138381934, 7567593.75, 7567603.125, 7567628.93736772, 7567635.663207935, 7567653.510377006, 7567668.4912966415, 7567679.489509869, 7567805.563889641, 7567825.423858855, 7567835.311637602, 7567859.375, 7567868.660141505, 7567940.625, 7567948.4375, 7568024.516182828, 7568057.700439778, 7568116.399372756, 7568190.630612857, 7568193.75, 7568215.907934697, 7568216.270703764, 7568265.250554001, 7568276.608035123, 7568292.4020339, 7568298.69812991, 7568361.889969387, 7568421.273038247, 7568432.6659628255, 7568447.51291034, 7568500.0, 7568556.25, 7568600.0, 7568683.238864792, 7568886.165167443, 7569028.345847654, 7569096.669374269, 7569254.708529825, 7569299.688859456, 7569332.738668495, 7569555.925917846, 7569634.3944097245, 7569824.549225593, 7570048.820865497, 7571794.248476748, 7571986.71616953, 7572452.186963557, 7574056.801327343, 7574135.816683594, 7575517.1875, 7576575.559663148, 7578567.811002557, 7579575.0, 7581557.401471579, 7584615.7771144165, 7586900.0, 7593732.514323474, 7594933.11244067, 7595762.531690239, 7595960.821077849, 7596334.375, 7596664.598988154, 7596962.837745562, 7598127.51402295, 7598840.625, 7599103.125, 7599127.083589019, 7599232.834053401, 7599624.334942719, 7599870.3125, 7600130.992567782, 7600277.5422045635, 7600480.522405413, 7725883.530269509, 7729819.24088379, 7759895.3125, 7797432.8125, 7806451.5625, 7807955.575198649, 7832641.679974198, 7862685.699085924, 7864093.75, 7870560.025104809, 7877789.544255616, 7900273.4375, 7901030.2549992455, 7911210.923912107, 7915176.013287663, 7922420.976685431, 7928852.674576274, 7934738.420344971, 7935730.858580211, 7939200.0, 7947351.5625, 7948819.8539859075, 7949747.414243105, 7950057.67648605, 7950357.8125, 7950777.428468461, 7951129.507853485, 7951692.579083125, 7954476.8080105055, 7954938.218702069, 7955590.602032265, 7956026.4090216635, 7956100.335922198, 7957743.370365057, 7957895.815768922, 7958253.924023754, 7959840.048238499, 7959849.224567661, 7960640.625, 7968686.353351993, 7973949.1034895945, 7975843.75, 7980431.474974041, 7980875.0, 7982214.868117045, 7983386.967442377, 7984062.5, 7989592.795129849, 7990878.125, 7991210.594888117, 8005592.814819296, 8006054.6875, 8006742.1875, 8006923.167612722, 8007362.099668538, 8008550.121733686, 8008802.405536521, 8008991.990172686, 8019793.75, 8027380.052578925, 8050376.5625, 8052583.683945711, 8057368.773333557, 8058144.665226307, 8058382.296938462, 8058471.537138731, 8058827.253890199, 8059532.846148433, 8059853.893923047, 8060029.6875, 8060300.741232371, 8060354.6875, 8060554.5372950295, 8061984.218898109, 8062010.642732618, 8062723.4375, 8065276.115608408, 8071609.6764722355, 8073470.728281741, 8073804.726176743, 8073922.33582798, 8074263.78969775, 8074281.797503515, 8074515.672524997, 8074532.8125, 8074550.378175841, 8074762.423267048, 8074902.054433037, 8075235.9375, 8075296.2228046125, 8075434.375, 8075484.285664428, 8075570.502171083, 8075587.055300534, 8075781.25, 8075869.733459517, 8075990.718125578, 8076067.1875, 8076074.627536218, 8076085.9375, 8076118.162950694, 8076270.301501726, 8076279.6875, 8076296.265230848, 8076325.0, 8076353.251204149, 8076396.062994461, 8076400.0, 8076521.950026943, 8076577.786953624, 8076693.75, 8076754.877348145, 8076776.5625, 8076822.919718051, 8077018.548215673, 8077217.547617273, 8077235.9375, 8077238.8633834515, 8077271.8018019665, 8077289.634458738, 8077295.3125, 8077307.2311666785, 8077470.295754352, 8077482.664463611, 8077502.919125066, 8077564.011468972, 8077576.363179545, 8077918.75, 8078063.465775987, 8078110.7687754175, 8078144.351733367, 8078307.8125, 8078309.375, 8078325.66909299, 8078330.115580055, 8078689.109810979, 8078745.121842261, 8078858.740766673, 8078894.127169492, 8079020.3125, 8079073.778664119, 8079296.383258302, 8079395.139831659, 8079568.950494606, 8079581.985359326, 8079582.8125, 8079689.905723253, 8079765.115609957, 8079779.6875, 8079798.3316272115, 8079857.230635856, 8079907.8125, 8079929.196680709, 8080034.506452601, 8080360.9375, 8080426.5625, 8080478.183752884, 8080773.874404891, 8080807.8125, 8080970.990625634, 8081236.244640592, 8081444.9844692405, 8081709.212268899, 8081882.47904007, 8082090.051461231, 8082751.5625, 8082802.490121116, 8082990.625, 8083109.375, 8083134.161782663, 8083142.219669182, 8083329.563187321, 8083343.722089686, 8083357.8125, 8083378.719144707, 8083398.050237819, 8083587.298509956, 8083752.269386339, 8083757.821502314, 8083797.813305367, 8083810.395990434, 8083848.4375, 8084028.282283978, 8084066.4298983505, 8084113.691509336, 8084140.243702979, 8084145.3125, 8084279.85472364, 8084300.610623347, 8084439.515762488, 8084478.060584585, 8084655.602421372, 8084676.544056713, 8084839.0625, 8084980.987588576, 8085885.935096552, 8086054.6875, 8086371.277171242, 8086587.759650384, 8087578.614577629, 8087954.021861727, 8088323.70614128, 8088870.3125, 8090950.555270844, 8093660.231248005, 8093916.520021406, 8094062.412752604, 8094294.62580835, 8094939.348209626, 8095023.316023884, 8095239.0625, 8095265.625, 8095276.248065158, 8095310.925569405, 8095399.820196838, 8095445.293741232, 8095445.892825125, 8095459.546261083, 8095621.613393096, 8095739.968595857, 8095751.615183381, 8095854.807353725, 8095917.302018268, 8095944.72296125, 8095961.87494184, 8096014.0625, 8096142.1875, 8096154.6875, 8096225.0, 8096262.331875627, 8096354.534387788, 8096433.536247761, 8096767.975545489, 8097276.5625, 8097314.0625, 8097361.989208572, 8097364.310311072, 8097539.0625, 8097596.875, 8097910.770693462, 8098207.8125, 8098379.6875, 8098998.6859081555, 8100220.3125, 8100706.2316525895, 8100921.543283727, 8101357.261114161, 8101431.145910391, 8103859.915958233, 8105382.645884117, 8105639.0625, 8105985.577900475, 8106609.911745155, 8108178.848493139, 8112270.249889061, 8114092.1875, 8115667.082446006, 8116564.196993655, 8116629.496321755, 8117232.8125, 8120537.5, 8121344.304264376, 8122014.062428151, 8123513.194676723, 8123868.75, 8125596.875, 8127257.8125, 8127774.180636047, 8128403.0670942515, 8129384.260146284, 8129855.186417663, 8130287.5, 8130342.8537682155, 8130393.0177454455, 8130624.666094477, 8130892.1875, 8130942.1345551, 8130962.748488433, 8131061.934694218, 8131169.757512286, 8131170.3078558585, 8131265.625, 8131489.674255474, 8131494.766681473, 8131521.875, 8131572.222034925, 8131618.974897354, 8131650.0, 8131700.0, 8131726.441071912, 8131759.746360047, 8131782.660739441, 8131784.375, 8131817.1875, 8131827.608835494, 8131852.958828321, 8131856.506781809, 8131865.481423561, 8131885.2213771595, 8131885.314301746, 8131886.770170496, 8131903.125, 8131917.0892320955, 8131959.375, 8132048.4375, 8132100.737750744, 8132110.917005938, 8132181.891468396, 8132193.108298808, 8132231.757941481, 8132241.408756248, 8132331.817889283, 8132365.17959839, 8132433.971847756, 8132475.0, 8132573.448481856, 8132977.983968263, 8133048.4375, 8133049.688512218, 8133296.886394975, 8133369.215096317, 8133410.64473635, 8133751.46178499, 8133852.196447615, 8134171.875, 8134274.259732562, 8134304.6875, 8134393.2079351535, 8134471.875, 8134473.4375, 8134886.119230438, 8135060.9375, 8135171.463527068, 8135375.0, 8135393.112111672, 8135440.514880972, 8135937.325827371, 8136177.438885175, 8136263.981366837, 8136691.557827916, 8137082.851758771, 8137454.396214224, 8137460.794813518, 8137468.75, 8137992.1875, 8138414.18331809, 8139525.75392274, 8140184.526111301, 8140294.19957143, 8140796.401246158, 8143663.015921684, 8145098.4375, 8145384.851212011, 8145578.087455003, 8145593.75, 8145747.700991931, 8145915.901467658, 8146075.808994644, 8146204.544646697, 8146594.931073424, 8147380.350557415, 8147380.617304335, 8147515.491708399, 8147798.4375, 8147868.75, 8147945.746237504, 8147968.828252613, 8148059.05966572, 8148271.715723654, 8148295.013081743, 8148578.676804275, 8149033.925199291, 8149213.6797249075, 8149421.875, 8150762.5, 8151042.1875, 8151594.442683635, 8153093.012299275, 8153164.0625, 8156685.737800934, 8162408.554326811, 8165397.904950291, 8166783.01887365, 8167251.142942128, 8167322.029288928, 8167512.698847243, 8167628.823135337, 8172605.929223802, 8177806.143192328, 8178396.177512147, 8179181.774975285, 8181329.2337760115, 8182490.617143305, 8183775.217418446, 8186504.677397045, 8194020.3125, 8195178.125, 8195630.063379621, 8196924.171507233, 8204843.75, 8210492.486043738, 8223815.1395677505, 8231292.1875, 8239453.449920666, 8239692.745995735, 8239732.8125, 8240251.743531624, 8240409.705884363, 8240441.741760989, 8240664.545540961, 8240697.411867867, 8240704.6875, 8240876.5625, 8240885.811422971, 8240906.25, 8240941.663058032, 8240948.087088459, 8240960.237297271, 8240993.75, 8240997.1314847525, 8240998.782161827, 8241009.375, 8241021.216309178, 8241060.954260761, 8241080.129702899, 8241106.871963511, 8241134.223365975, 8241173.4375, 8241206.25, 8241238.5976804, 8241251.682948858, 8241267.1875, 8241279.156432526, 8241392.0333332885, 8241412.5, 8241446.875, 8241503.933071133, 8241556.25, 8241604.636502193, 8241609.375, 8241647.632165277, 8241726.4644817645, 8241740.047672687, 8241745.10972233, 8241804.6875, 8241841.987609544, 8241854.6875, 8241904.6875, 8241912.5, 8241940.625, 8241980.679461736, 8241985.604410232, 8242011.305167581, 8242105.861626297, 8242208.772790886, 8242268.508037335, 8242302.251982592, 8242335.9375, 8242370.3125, 8242407.189246658, 8242517.202758229, 8242552.634033692, 8242563.829868536, 8242595.3125, 8242654.741906761, 8242755.693083803, 8242778.125, 8242905.62382038, 8242950.0, 8242988.256494264, 8243125.564749934, 8243135.935965895, 8243168.521669852, 8243182.491607192, 8243219.261597998, 8243451.213038958, 8243477.00284422, 8243940.29187248, 8244332.187743148, 8244715.834885187, 8248735.707138077, 8250656.449676433, 8253664.397643628, 8254351.5625, 8254356.0694270665, 8254810.175586403, 8254820.070018278, 8254853.125, 8254935.535486284, 8255191.451228685, 8255294.78088597, 8255448.07894925, 8255454.854944738, 8255496.962362258, 8255543.401981348, 8255551.667778594, 8255604.6875, 8255727.931138309, 8255847.278612465, 8255926.818352537, 8255930.459231884, 8256028.537769068, 8256293.75, 8256346.440457524, 8256512.420743214, 8256565.625, 8256714.287634273, 8256771.6641473975, 8256832.364508033, 8257174.774156324, 8257204.6875, 8257634.375, 8257737.5, 8258016.050959533, 8258591.601170044, 8258803.782292483, 8258843.560931569, 8259336.357486422, 8259927.026108186, 8260109.186399965, 8260375.701598569, 8260426.06818219, 8265518.264846699, 8265723.4375, 8266306.049460849, 8266662.5, 8266691.958509952, 8266696.356822901, 8267464.044526057, 8269869.989130124, 8270189.0625, 8270215.625, 8270393.711097852, 8270545.702750562, 8270771.875, 8270921.141694256, 8271581.25, 8271910.323262852, 8272130.138997762, 8272274.883417315, 8272434.347537557, 8274804.6875, 8275927.853899923, 8276451.631960382, 8276659.245500291, 8277910.9375, 8278553.125, 8278822.3879187, 8278890.116411309, 8279894.146016202, 8279947.744101522, 8280925.654803941, 8281614.75238392, 8281660.50766942, 8281904.073022351, 8282031.886376302, 8282262.697826592, 8282620.072104359, 8282642.1875, 8282710.545510288, 8284141.096871579, 8284451.214325408, 8286094.936194303, 8286203.04742628, 8286284.355811424, 8286509.8761810195, 8286525.493610373, 8286835.9375, 8287050.0, 8287132.502398378, 8287218.124368033, 8287240.263169975, 8287543.692202881, 8287823.4375, 8288116.343359421, 8288801.795411982, 8291628.125, 8292441.235409788, 8292545.481833768, 8292792.1705377195, 8292912.241448845, 8293024.4481826, 8293027.053249935, 8293345.3125, 8293496.846243319, 8293639.419475956, 8294055.6666754605, 8294128.6994605, 8294535.9375, 8294569.772325713, 8294603.125, 8295018.413587167, 8295075.581027079, 8295092.0337753445, 8295138.35972587, 8295284.442636018, 8295292.356211875, 8295847.487950739, 8295879.430700374, 8295901.5625, 8295913.6070437655, 8295965.5967465, 8295976.5625, 8296194.60183178, 8296315.176145941, 8296706.801584667, 8296725.0, 8296941.489509208, 8297431.218866624, 8297621.981776455, 8297674.123610418, 8297843.591538896, 8298009.209286582, 8298293.794025272, 8298670.937671401, 8299445.08404431, 8299543.508552646, 8299660.9375, 8299971.875, 8300042.332020626, 8300296.03006735, 8300481.2655180525, 8301837.984682911, 8302778.082320805, 8303847.071470804, 8304402.002628367, 8304734.090900684, 8304875.185161013, 8306216.951358606, 8306901.77059189, 8308283.592684909, 8309293.964614827, 8309541.997154512, 8310249.924641636, 8310488.538892394, 8310901.792134435, 8312064.654668149, 8313498.4375, 8313554.079811919, 8313984.640558996, 8314705.058576481, 8315312.440339766, 8315534.656444989, 8315665.306343706, 8315693.559523596, 8316179.6875, 8316215.321473827, 8316385.92565976, 8316440.625, 8316442.65003802, 8316473.4375, 8316481.686570524, 8316736.480678115, 8316938.899895036, 8317359.375, 8317592.1875, 8317786.6456454415, 8317819.330469278, 8317846.875, 8317927.241120337, 8318061.399190824, 8318185.118400808, 8318332.420167493, 8318423.4375, 8318704.666425838, 8318814.313042328, 8318847.5037834225, 8318860.0078505045, 8318890.244065498, 8318973.163024952, 8319051.175498979, 8319053.125, 8319127.846466261, 8319253.4068819815, 8319298.233716542, 8319301.634255342, 8319381.25, 8319443.75, 8319922.536355083, 8319956.412449858, 8319998.4375, 8320281.008229528, 8321062.738266039, 8321176.539606068, 8321571.5110476045, 8322037.504367938, 8324153.3665384995, 8324531.25, 8325382.695607715, 8325635.249648017, 8327412.5, 8328751.5625, 8329140.625, 8329572.811229608, 8331965.650535562, 8332556.238683979, 8333151.56892633, 8334134.8942794725, 8336029.6875, 8336605.424062983, 8336984.623308714, 8337551.5625, 8337706.699397762, 8337970.049890744, 8337978.799622902, 8338178.125, 8339640.49720009, 8340490.336937756, 8340845.3125, 8343264.832601754, 8343514.0625, 8343634.977688086, 8343640.598805934, 8343834.375, 8344151.117365433, 8344290.002775916, 8344389.0625, 8344406.25, 8344429.6875, 8344700.6717238575, 8344702.789421704, 8344862.5, 8344933.814802697, 8345041.976387224, 8345073.154615288, 8345075.32919074, 8345086.195372983, 8345145.3125, 8345256.387548797, 8345308.2927432405, 8345316.821183883, 8345418.809188571, 8345435.9375, 8345499.622269853, 8345584.375, 8345703.125, 8345718.75, 8345764.0625, 8346010.9375, 8346014.544576717, 8346087.5, 8346152.535904946, 8346157.670809799, 8346175.168573146, 8346214.013109852, 8346665.628368711, 8346842.072160229, 8348108.658426799, 8348749.688895012, 8349265.722254981, 8349511.223570022, 8352285.9375, 8353227.303962297, 8358512.5, 8359445.080569873, 8364443.75, 8364586.784694852, 8364996.875, 8366251.544868992, 8367017.2289966475, 8370906.25, 8372578.475841098, 8372726.5625, 8374807.547646056, 8375255.455043017, 8376900.911046354, 8377072.562058481, 8377389.0625, 8377919.833411311, 8377969.409400469, 8378014.00981067, 8378217.1875, 8378226.5302666705, 8378336.154087739, 8378438.655626325, 8378556.387929951, 8378976.394393502, 8379050.0, 8379074.857328157, 8379108.735914288, 8379215.625, 8379971.132775262, 8380872.068036244, 8380899.330708507, 8380946.451010357, 8381184.027529569, 8381221.875, 8381614.845844105, 8381716.617399653, 8381967.1875, 8382535.104812674, 8385438.694383353, 8385693.1591008715, 8386663.894586179, 8387032.9121720595, 8391832.725141596, 8395043.75, 8396059.333521804, 8396151.192284653, 8396651.5625, 8398517.773020381, 8398757.296534797, 8400801.5625, 8401327.55443998, ...], [63.083427404596414, 13.710623747503881, 12.219605221439696, 27.403537459279637, 16.672192175406785, 63.579836271106714, 33.89098418283093, 6.659326097759181, 13.43101801840537, 51.15037023945475, 10.82330798672303, 12.377260256771928, 46.11242014360417, 75.11385022661392, 63.70194756589293, 65.20535181504673, 45.404032093435866, 51.05107572822445, 82.25140697909428, 9.998832269810292, 65.3154160300676, 18.668426638965617, 19.472693685088394, 13.669044143675507, 11.643518575420167, 17.2180110532971, 96.61040471272028, 54.921568484538604, 68.7698861889007, 101.37487236701858, 20.42958105111839, 14.348271976698669, 8.296081512921203, 52.86791778801016, 73.8940631632242, 31.84534879231735, 18.53763586231065, 17.569100700731283, 10.047581051308551, 57.86817286098167, 5.857649800224326, 10.487134027754328, 69.80096450501668, 10.544216013964164, 6.2603413533570444, 88.44340387470984, 23.34203538739917, 21.342176655978484, 29.216417754574408, 77.48167136321423, 140.86304720335875, 11.78900499389291, 22.837112604382774, 47.477801949677435, 107.68524208535463, 48.84169842870589, 6.298290971707511, 113.91964967130961, 118.19778655395034, 52.906311968093846, 21.209817812300038, 11.268205497472124, 66.50739929374657, 96.19505149175095, 54.814937470789516, 58.17556249307301, 5.717368135022626, 8.734306608918743, 26.86679711923323, 21.53418743985641, 64.08101216916722, 11.578651031442346, 97.4326115788501, 5.356829723501929, 108.24029361436001, 36.07813475014953, 6.339888448292902, 11.403804353597428, 51.198256173869716, 79.14752645391832, 78.79970045285721, 12.63016635624583, 16.63494108386376, 72.45726050389038, 12.704522729586708, 16.90979356868191, 23.82432979354002, 6.921722722941119, 22.43070318481538, 20.834039770259754, 14.3000094909987, 161.2619578782614, 30.113633602788127, 15.903620212223947, 5.702959703025647, 30.771281520421677, 58.0433477280106, 18.8886111414017, 14.17723931504931, 70.30256154149984, 56.281726183977966, 21.268818185806943, 7.88482755487269, 29.872196091017376, 12.026960386348147, 47.73565524573788, 133.89008193829054, 62.47743090854509, 118.60280202229498, 23.498984900905846, 9.328653996210896, 38.81207921226387, 6.684989564290682, 47.21094405616387, 81.55874742996563, 26.712397241073187, 9.726501298375336, 25.747029405807805, 7.2684266704941995, 34.364774546930704, 38.50916841156602, 72.91288308851782, 10.227938065995954, 9.290213556214153, 51.38791538930597, 32.11596637345449, 28.488915371055946, 24.084774914466472, 40.5782264216016, 24.292982263349657, 149.11808452169714, 21.520489915460345, 16.84739778635065, 47.18817891761406, 97.23776856283092, 26.86568650741947, 76.07159512208369, 73.87063536488246, 63.503133998455844, 26.49015201128677, 74.15320730801095, 14.962946246759117, 64.00616512245628, 16.141999419143936, 18.14638054990631, 13.683585076437161, 15.117955620764455, 8.403381021310741, 24.645718430060143, 20.461484578937373, 111.3477739347356, 14.410922311640407, 12.296385802121705, 40.607306557313365, 117.12374759932639, 92.20317468467543, 29.960846814402636, 5.831019970816857, 39.763068423715374, 60.10305968731882, 6.269858995137975, 6.702939841272273, 25.406729913522263, 13.835127623937206, 89.75020326447273, 23.119224959669634, 55.029009233201315, 24.973670314736083, 12.610569154372264, 5.262965464908886, 6.878803412342939, 26.34546413311828, 41.355786178498136, 22.855526671053013, 13.875620327138645, 49.85482844084776, 45.81403531036614, 24.206711907083502, 33.710020415644806, 13.915006378829318, 7.715447278261804, 9.358343581982545, 26.417838126104566, 58.22479513798874, 20.373473131479656, 48.32948907604153, 13.032046141152026, 67.87930659863633, 42.92433151185423, 5.5589166367989025, 48.46502638450759, 10.226174291402799, 33.5098875791492, 14.043394081657505, 17.79525715286648, 6.378778470607485, 10.022259518782631, 13.73586257957424, 78.331235046626, 42.29571139355435, 36.166519703221006, 19.910238892858352, 51.63722326027394, 9.137631007821286, 69.24052129054098, 40.64376755105328, 28.79588762086572, 103.13439982921668, 135.37167265183612, 6.265483160147214, 20.34016470828813, 5.7503739084126, 22.00232873629998, 12.952878225970313, 56.225176707034656, 85.787262332344, 75.73302339309582, 37.3868458587755, 6.5750806208398584, 10.921561511971591, 59.884815888784004, 45.85218252660843, 32.088575347444106, 16.678499195814087, 99.47512332548939, 8.707098754397583, 14.854683891874839, 25.9057450159319, 8.472583327695801, 34.39426920281585, 12.017402206535934, 118.07547517677196, 16.00818415786472, 7.915080088783294, 43.5514435620239, 13.6639453704233, 12.357140812318143, 94.43329631929788, 6.296046896198239, 68.19859821517528, 24.703110743944418, 18.342236584690248, 67.79132079501733, 17.90460528588013, 110.01778032381387, 10.6313242337346, 8.648727566372559, 58.52740559522957, 101.1824059947127, 65.61561025000267, 22.1054886964322, 120.29427531556088, 8.78910324487924, 25.1572575942599, 83.72427167107739, 50.49880272973155, 30.963017194137727, 10.195769400806016, 15.031198157324713, 19.909850774987646, 8.930458869419384, 30.192935305034183, 12.412904529510401, 11.18071195935733, 27.910476272677364, 49.813260870643845, 18.792708182657766, 29.269322382614067, 25.873365395396988, 8.205717801056561, 16.389114935031166, 44.970019863664575, 13.47388954637162, 81.80516515795384, 11.84637289357616, 15.09100513168782, 9.754027695522673, 24.10448536387281, 6.576484512194464, 11.202812951657462, 80.34165378912323, 27.033222687266537, 32.790530673537965, 11.994803612668655, 66.79675609806898, 51.480728783784826, 61.38379917947702, 119.75553087829967, 9.497100916465374, 10.497150524849111, 109.79497524659325, 55.261657621973484, 6.501789244728242, 78.76571207619885, 9.035143380718742, 80.28185582467384, 20.66657061820091, 6.08695623938276, 41.748985560517006, 99.84354515199615, 56.74390294478858, 9.440445463476648, 16.217780734263158, 75.471877709749, 104.9237921127243, 13.792619771752232, 114.41203718909819, 57.59275864286282, 57.05242359853145, 5.1904280951609705, 25.091982742249474, 11.741463319155072, 35.28223601960255, 40.12829942790185, 9.270267633703027, 26.00960440741195, 54.849560854998714, 72.80933152315667, 58.38710202713837, 9.209290152742648, 25.032433231749945, 42.17532264493277, 58.59668981183147, 60.02926918925289, 20.579600751447263, 6.460963490356874, 75.20773279126513, 80.93078640209525, 37.642610115744326, 9.969423768722447, 16.86982972746269, 6.093032999171583, 90.53339643354013, 20.48460208848641, 26.073130586682996, 60.87704739680604, 104.73036800222144, 21.57587867313125, 6.070325419733749, 11.45625356251046, 29.679795410151193, 39.5946636054686, 10.163115126382309, 21.39993818430834, 99.83728448425158, 5.162903187763379, 6.976460118177006, 132.68774272389578, 118.38372034409636, 15.467390232674404, 62.28128188855695, 49.37559246015246, 47.3566882371964, 27.108791341374925, 37.40405962813881, 17.53195064154532, 9.605351172220747, 45.69653851582504, 7.545422248239474, 120.96791756527334, 61.34928179213841, 61.589112802836794, 12.971224770122115, 52.57642324696464, 135.20565239882973, 49.117118095188026, 7.129933710624879, 253.5537747833692, 40.64526099362568, 59.42846603491679, 6.888217721183923, 25.330632235977035, 73.63180492176916, 18.553479549978505, 58.12311299826398, 38.96404247290623, 21.08877854222931, 56.003323782803456, 26.26251102143248, 7.350430593299526, 10.593443032701579, 34.80326994949807, 28.812449765512266, 5.6233628270670435, 9.90724193133503, 11.918702752148496, 14.421561217050133, 20.13726552083701, 14.871675150023952, 47.49940412269479, 50.826595624714024, 28.47767066118537, 43.61006080548912, 13.06587042865905, 21.76778989409904, 90.543884054211, 91.59406934372079, 11.57528380920072, 46.115166919436014, 8.603794012283188, 12.794566487206703, 34.73018991505432, 46.58950247327893, 77.69933403012229, 65.1092028918948, 7.559884895258178, 49.90109637083049, 36.12437454610962, 10.669392685205263, 34.718045656985055, 97.68095130907697, 5.244620576351201, 107.56680803968494, 28.20377583406816, 57.625526525809946, 6.6391735909468865, 17.71689766116583, 189.84939491086155, 63.940255919654, 73.79817459486347, 20.330141005823723, 38.41521201834329, 80.68145752665633, 75.0139097567733, 38.28045995074378, 66.58740527640313, 67.03675503038187, 25.930738355516294, 10.100312780077356, 53.58630659677793, 52.62807782620151, 21.386121227001237, 15.978399148652572, 49.92758899223157, 39.50691178281154, 9.194232128587409, 81.4113882705915, 93.22014508262454, 18.542969818703984, 91.38838975369191, 50.242159643198846, 10.645990296922676, 75.81588633392234, 5.067008358597418, 45.52411907560902, 27.781013727858856, 90.2660152453834, 44.158823299451775, 17.476316830588587, 12.48450146039738, 152.8240155238934, 117.2971962885125, 65.48823632820253, 8.359003841419858, 79.98519918537838, 117.320232988753, 46.67983977266572, 34.12556372431855, 34.67733568260381, 6.910598252714383, 50.195667648979025, 54.70519632588103, 64.17361890684019, 18.806203469055827, 38.62363465770367, 9.23614002110389, 12.008712022682191, 54.21937112335446, 7.8634067431167, 85.7055538891392, 50.79316272059639, 39.36028546924568, 9.287032942488137, 36.8499332267141, 20.86547199153329, 68.16460140723186, 47.155079900772506, 93.96713225355118, 76.43997708715305, 21.047896456980205, 74.03423081024668, 24.913432483578436, 7.686656257830218, 81.10758620923932, 40.93540549387494, 168.00741795106657, 22.22320991557182, 14.392987517814502, 81.25968183660298, 87.99830720317706, 21.33335208006308, 48.52703034179725, 11.554283929920453, 25.978068853994404, 19.577834912466187, 20.346280795502658, 37.38414536874005, 39.185827733682466, 51.06235822599055, 53.37915256568437, 107.96770595038049, 18.76809172765818, 23.508555368956543, 12.304033385661485, 24.08313817595323, 12.026756025239806, 10.095487503868686, 12.148816463540786, 43.49655792671304, 45.12760117739531, 54.11407741612345, 36.97108298963472, 26.01853555759505, 31.11643168721659, 17.750141029626114, 8.292612384873424, 17.070038905004463, 74.19517289737749, 33.34025978626835, 44.16384593898624, 78.91677373554245, 94.27717495863817, 94.14386871561027, 6.985894782211716, 41.89621094648539, 99.65880949636437, 11.424162833386001, 121.53389505035487, 13.575221181919057, 70.82356269595348, 5.271781775414067, 93.27428024647146, 39.82643646657293, 34.47347354882793, 63.592442946900995, 6.392715962815601, 18.013103917758862, 13.93648038495798, 10.911770051203645, 56.910960443692126, 35.8966579342064, 105.93839521590533, 6.367393993622679, 15.550552086179968, 8.539542824588805, 10.460003617935664, 28.04325358770599, 99.62413341940419, 7.785061703756653, 14.80031078656692, 51.868977069817284, 122.44967581537729, 16.111532505546982, 8.766346652180728, 23.341483815118885, 88.69790982472088, 18.25946099413543, 27.390933928367303, 16.50085065754348, 59.398648831283644, 31.184543790957804, 8.530084152196551, 6.779230303089891, 14.266226540330196, 10.887551348544918, 10.689869454913053, 43.04998819708938, 29.126188542276346, 58.87369590588763, 42.88017679908366, 89.04609281716829, 71.75600961960573, 62.16638516627578, 5.5744960202600105, 65.77833119726478, 14.23132220251021, 10.04874011285505, 21.17443053655622, 9.512220577316015, 100.06351213388152, 21.36884483312756, 5.542809686208719, 5.053508420282355, 13.84524713913312, 118.82915410578907, 19.725967324415617, 24.15905574276973, 6.211526479857429, 14.911647702618843, 45.8492558435039, 11.11195186993235, 74.51099987651574, 116.33580737298016, 33.38084617198625, 26.891128775856906, 71.27259706586057, 6.824608975259033, 8.95211073764149, 91.95075220990898, 75.46944654926654, 89.83257837485925, 63.08226093046414, 26.197358474553234, 5.72814501997664, 49.92519765676114, 130.74876955389615, 6.5746772648493765, 29.426791263003516, 41.69062544163746, 56.73962483590194, 73.08371789959719, 55.12280603626803, 9.05170166065724, 81.8469051918496, 29.823497598645915, 16.018376720728124, 66.57989640864099, 65.41997230365185, 124.98524857041383, 110.34305884112872, 5.175789752920393, 17.994626064183024, 30.124088886418992, 45.88994890173584, 52.15958760998285, 233.0753102140324, 5.0710931763959355, 29.69672754127381, 13.241757324553276, 99.06231133777617, 34.140870302060605, 38.20590159995624, 32.84765468429802, 54.26608069780949, 79.17087188860808, 56.83288942129094, 19.813272376925983, 17.216590841038943, 71.37855286761692, 25.077490550291145, 61.37456202542051, 87.61771250612081, 29.70744163938823, 37.660179510409286, 139.2953563127536, 55.9701450173992, 6.654708841192773, 140.336601660103, 5.302580977779114, 22.683920529392548, 30.990193007050344, 23.74990099518427, 12.408689713262897, 40.17366836508734, 84.13355782733603, 20.345802290854166, 14.999987332858682, 21.583691970702823, 9.142152786178814, 66.4778209633003, 16.24190503805829, 7.413508852294498, 57.16913092607069, 95.67496115747426, 58.801004102281695, 63.92011690609432, 7.821121275826607, 28.494853250174174, 32.81286600402858, 23.487483814264117, 17.330802178870478, 23.13885772628916, 9.733728981763145, 27.148849785202792, 10.273936581201736, 9.515410604201255, 101.11199433924882, 27.877985938086525, 75.82009106341995, 34.41388248694391, 25.406349073748537, 17.216459569893537, 24.323887032830655, 62.40064590443241, 27.191049926704814, 8.77783825833603, 23.41657833142118, 75.54415537180887, 84.41005377659648, 8.333322646387376, 22.06690479136053, 42.71127637656144, 38.76196961581508, 9.172690621824264, 89.9296954452323, 11.552643590118366, 165.2114072811518, 5.733541154846844, 71.9117063178649, 31.407994288139022, 11.006042677185064, 61.82993905075828, 53.02277658640062, 15.580860825475012, 81.48993832946687, 6.064924176567689, 34.50340047544782, 39.28010870930895, 53.49740979621076, 16.01539680691877, 67.10123210794418, 6.353974764268522, 18.74555753515552, 22.800091072299526, 17.061866751144326, 25.28626871513406, 18.51735045829459, 5.276058490588016, 75.95624567129892, 222.66651159811568, 14.228535471787287, 35.41102581635133, 7.522463683857556, 13.276537408353775, 36.10399023107077, 43.391909065068226, 45.30442858631563, 43.28915881914257, 27.777687979363154, 16.67162387324382, 38.26172083290207, 157.8244262737082, 80.89364540312658, 41.755636262934075, 16.99574971207549, 84.25386096381021, 7.593335094386147, 33.79705497921517, 24.1270535701609, 6.498035159668323, 44.93915962499438, 73.63484169877745, 30.76143554519681, 6.1431134019929585, 6.993882877700749, 39.047797681422274, 12.825845075296893, 12.332827641285412, 70.52253519118337, 22.222850727215814, 31.258872259260876, 28.90244177957695, 52.979600261175776, 24.543181496751483, 102.0635005200526, 22.642760343801424, 17.10737868021374, 23.154283507483726, 66.30602535363708, 74.39661575510634, 28.15063900906431, 110.84296358799594, 19.012408669741944, 29.153697325039317, 53.109587277548556, 13.878069686903899, 12.994653589297847, 19.653931226993677, 14.725696849327083, 94.77682847021347, 17.554345682983296, 15.910363194697442, 33.95459866753288, 8.63809705517326, 7.6656529414494745, 70.88363003276902, 12.216179287414743, 26.3847962858224, 17.212585652537342, 74.66845507088082, 64.8019490104272, 16.50239418294334, 85.65008832916489, 39.38466206290474, 46.8841291371805, 13.217348511000857, 80.4883229129918, 18.190729636567358, 6.582200101527687, 143.11863337647077, 19.683654134172798, 67.30855415998033, 11.402067758950182, 21.416730003898213, 24.318710280893747, 87.05259728304932, 78.34208607768257, 31.491767921132805, 66.98731770417226, 55.38218673388879, 92.277707291773, 5.30843491325586, 30.759773653272312, 29.199468275419438, 30.975955373280108, 15.364732858917405, 7.314297667436944, 10.8887373093398, 105.60872742413954, 11.19722554467945, 5.747735316022721, 10.788453935565038, 7.518183895400774, 68.03095283858869, 39.86080958703809, 8.364510020235315, 60.72513551540356, 15.000988701913409, 100.93556094135717, 104.17696137753082, 15.747260180044124, 11.893198660827538, 13.958978737591643, 15.697570622040168, 8.16552846588904, 15.798772218754507, 19.073954836026566, 27.0886034557762, 9.175479441133454, 11.011924975426032, 21.26079052873776, 7.183152883057852, 28.676273038168056, 41.51970207260739, 25.888130580445164, 27.631186978026676, 81.39162867886253, 83.97932261519463, 27.957148407663922, 82.28679563479548, 64.97951496081475, 106.40135549179826, 23.705803942851247, 28.292712806903506, 89.35867949651337, 6.859500880878052, 90.06746357087849, 11.886319476400299, 57.902717235720814, 14.355955772790939, 46.49063228807177, 35.327688524812864, 70.75647257632461, 86.3290127319519, 89.58793881878755, 89.29314833550644, 17.051352903209843, 12.529541318715884, 56.20529004350746, 90.00586862029799, 99.98085750314328, 15.990958144517217, 5.649803535713687, 6.591093341131761, 50.756842629250315, 29.123856243993288, 5.122316515606186, 60.574462008442005, 14.39526732263655, 5.724935692858563, 25.062837382775353, 166.5552500131183, 51.41048519809522, 77.860139840096, 21.837884857299795, 39.18383884772975, 58.74631436231568, 10.769723935951923, 54.484290875625774, 61.84677790450136, 76.67238534096546, 14.958184132661941, 15.949658511288758, 72.43269234708283, 16.805609644972286, 10.199497706415581, 114.0654209807423, 114.2259616481765, 41.21052925432862, 6.966012343292901, 15.039740549432553, 5.706038204040138, 9.336842916289976, 11.421714597116118, 79.29062088700212, 90.77233879685312, 30.22262663100026, 74.06414290542168, 42.736078250622825, 37.66607557170909, 17.416459157587866, 39.70297678610556, 26.231415901185855, 53.30307495889091, 59.12557238351267, 10.080180235870053, 66.07094802400806, 6.153099083039083, 14.842601061539668, 49.080191279278196, 8.064421148653812, 20.35474739792126, 37.747605824107886, 30.57050243581673, 65.69927556292623, 20.854840252295055, 74.11332765152486, 33.792068564609906, 7.412456331483113, 61.57781695704593, 157.74403648477573, 25.30677340440311, 5.21004190083453, 97.70398919988804, 11.349733258208223, 7.253686938620133, 22.939060760698965, 15.172011930890578, 100.5149634392201, 65.00223147640885, 93.24391232791797, 42.45754454935823, 52.158027407121, 67.13764386361598, 45.68173713390865, 5.306214210850424, 41.25098432285721, 49.55044995763583, 26.008049947743157, 7.665367249633795, 113.1844568760798, 30.978438433680395, 152.30565320095897, 75.47836190871489, 10.673921911146188, 80.84847733380376, 7.1987375429631335, 45.59880511332582, 73.54502223840937, 67.11831781571657, 97.2751685688799, 99.51957019969446, 73.5935370527898, 82.8068128519605, 39.11952467252898, 22.61892483078676, 71.47923650893668, 16.471698906757766, 71.76334689140543, 24.210311024136363, 19.047989754010324, 130.5932669627884, 33.764588580716286, 63.391363035408155, 10.453231476105264, 44.10029820475265, 98.84394117177118, 125.7334797552491, 5.936603360066899, 91.29862215639389, 10.546192632770008, 15.494654671384225, 32.70698130842558, 41.3652409651206, 53.30476939902139, 58.58409744934957, 84.18219287978259, 25.96289609626713, 15.732124551153595, 50.334313408198035, 47.69796332946538, 13.764146807253901, 56.5211402579658, 58.18709510117371, 26.298492595865184, 74.14599677590284, 18.712278722346433, 13.70236362320152, 29.398795757508474, 5.524986274437671, 15.335527374287025, 47.98231529443885, 138.82360267154615, 27.729814229751117, 96.5269863587012, 54.97451680398765, 12.18545617189755, 116.43651871686306, 34.42178405595891, 8.891454593884346, ...])
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)