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 = 45881
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);
([2602535.7554752277, 2982395.7262802343, 3165521.192819703, 3214351.5625, 3323510.9375, 3347641.230082587, 3347648.4813863253, 3408007.8125, 3541525.0, 3547788.416376268, 6032476.396131112, 6037675.667023654, 6068991.938067779, 6091304.45738548, 6096546.4337086035, 6097138.775661306, 6129344.880234453, 6133043.75, 6147862.638744842, 6152812.5, 6153209.639429963, 6153869.08085318, 6155531.15042241, 6156293.981198225, 6158530.991944814, 6158540.625, 6159026.913690035, 6159076.5625, 6159107.150734168, 6162798.993079327, 7643798.4375, 7646856.113242724, 7771833.764250814, 7797706.25, 7815087.5, 7938101.5625, 8005623.579872918, 8021722.031978209, 8022982.704675984, 8038777.060818015, 8047012.23221215, 8065532.900862186, 8065539.325511583, 8065987.5, 8066039.652731644, 8066422.802732012, 8067048.4375, 8067926.303282587, 8068182.379254662, 8068512.13471536, 8069012.247802286, 8069227.307932788, 8069352.601200257, 8069355.855195964, 8069582.426345659, 8069673.234886107, 8069912.5, 8069935.348875577, 8071417.063890163, 8071697.1021572575, 8072143.942159393, 8072168.75, 8072426.5625, 8072506.48852151, 8072569.629813372, 8072667.245858642, 8072847.730714742, 8073126.424746222, 8073635.9375, 8073852.214663633, 8073930.392704686, 8073945.3125, 8074014.427686927, 8074018.293158237, 8074165.940966236, 8074179.341595906, 8074184.736241638, 8074240.161903533, 8074663.625331882, 8074897.496053262, 8075198.4375, 8075452.892239287, 8075608.268489946, 8076194.589854469, 8076351.543440277, 8076492.3768046275, 8076596.844436356, 8076776.375672277, 8077238.561867223, 8077259.872606447, 8078743.75, 8078943.75, 8080127.6089077, 8080969.611827414, 8081392.1875, 8082121.35564078, 8083016.4838660965, 8083415.163853294, 8083418.625919221, 8084297.414136566, 8085623.155745764, 8086030.023608287, 8086062.5, 8086128.125, 8086368.75, 8086644.796677325, 8086918.350012673, 8087061.791841414, 8087418.8586459, 8087931.136337799, 8088008.882722322, 8088130.64998628, 8088157.8125, 8089176.801372881, 8092634.6095753675, 8093853.268692177, 8094162.988042447, 8094250.332308266, 8095259.375, 8097242.545939701, 8097863.838698663, 8098670.280565922, 8099544.678813265, 8099624.829567734, 8100498.4375, 8101268.158251954, 8104518.049117573, 8104531.096408929, 8106914.052719621, 8107067.1875, 8112287.050827991, 8112960.753709551, 8113717.1875, 8113890.060887958, 8114254.233134516, 8115750.223427685, 8116505.486181683, 8117721.235890085, 8119082.8125, 8120399.719209241, 8120852.080882536, 8121923.043561728, 8122878.125, 8125284.244898775, 8127998.4375, 8128034.790858529, 8129350.0, 8129591.92517314, 8129778.125, 8130660.9375, 8131998.786922509, 8135801.9533626335, 8142568.814920243, 8144670.2740424285, 8145673.4375, 8147460.9375, 8155926.97795146, 8171839.0625, 8172414.96984684, 8173598.4375, 8173834.375, 8174032.157357697, 8174722.842303613, 8175145.421637851, 8175164.0625, 8175165.902984525, 8175253.981963218, 8175270.445285028, 8176206.9087035, 8178490.022348152, 8178879.468698225, 8179467.077319798, 8180459.268850795, 8180464.0625, 8180967.538015254, 8185001.5625, 8187192.218603419, 8188573.4375, 8188584.188070158, 8189175.483504593, 8189219.671931526, 8189302.264388071, 8189350.0, 8189352.087275749, 8189776.439630868, 8189829.786129912, 8190185.9375, 8190541.76441634, 8190550.0, 8190578.125, 8190777.68958577, 8190853.125, 8190917.635568625, 8191026.5625, 8191358.898214717, 8191495.69758567, 8191642.1875, 8191659.35806655, 8191710.9375, 8191968.75, 8192028.435610207, 8192451.597748996, 8192584.92163068, 8193438.08657457, 8193573.4375, 8193763.785092773, 8193790.239197506, 8193854.6875, 8193989.0625, 8194114.603874918, 8194118.505980205, 8194620.307304636, 8195273.348881049, 8195737.470816114, 8201910.61211523, 8202224.7919406565, 8202291.739684937, 8202536.063457854, 8202952.01028451, 8203167.1875, 8203502.311721234, 8203596.875, 8203987.5, 8204459.437963551, 8204492.033424705, 8205109.98986127, 8206117.4963125, 8206846.802446538, 8207613.712079914, 8211133.260516046, 8214110.108475212, 8219069.14506506, 8219076.90726925, 8219655.369266251, 8220274.483264209, 8220709.799441451, 8221701.5625, 8221806.894091889, 8221890.7738866275, 8222123.323755485, 8222401.5625, 8223409.821073013, 8224319.933589078, 8224712.937128821, 8224779.6875, 8224802.471562721, 8224812.5, 8225178.968974746, 8225213.94138317, 8225467.1875, 8225506.3824845385, 8225640.305815144, 8225695.3125, 8225841.919950274, 8225872.874076886, 8226026.5625, 8226064.4042935595, 8226290.625, 8226316.838759043, 8226439.789782202, 8226490.03489575, 8226866.233579786, 8227012.5, 8227382.239707825, 8227456.189918499, 8227536.947965232, 8227723.30446966, 8227829.042479576, 8228207.8125, 8228538.191649867, 8229047.0118074, 8229429.269299732, 8230152.840950867, 8230434.4534300165, 8230560.740479448, 8230573.47723944, 8230808.701633928, 8230809.354049151, 8230889.0625, 8230890.421312227, 8230907.8125, 8230913.348848198, 8230914.671188547, 8230916.754764371, 8231022.75166835, 8231059.375, 8231171.875, 8231330.215812025, 8231331.25, 8231562.5, 8231596.520546242, 8232112.682062199, 8233196.875, 8233850.653358966, 8233987.767540493, 8234167.662584728, 8234621.875, 8234876.5625, 8234933.663751199, 8235308.960152931, 8235536.925872559, 8235707.962397251, 8235946.875, 8236110.9375, 8236115.461232477, 8236121.396779577, 8236728.125, 8236801.455142244, 8236846.175442794, 8237008.9144753115, 8237060.9375, 8237092.087669923, 8237192.428959318, 8237195.2596533755, 8237420.2059987215, 8237707.8125, 8237912.932844885, 8238254.808496166, 8238665.720943122, 8238840.625, 8238867.106008016, 8239158.372047507, 8239873.4375, 8240110.9375, 8240245.3125, 8240403.125, 8240627.118719898, 8240634.740165734, 8241038.953787909, 8241081.362887705, 8241285.9375, 8241288.2453900045, 8242060.613182029, 8242079.213606718, 8242476.596221381, 8242950.0, 8243306.722268165, 8243333.315652226, 8243938.345313848, 8243977.972522778, 8244212.2013820745, 8244590.688086528, 8244815.203189469, 8244909.855639167, 8245839.0625, 8245922.9749434125, 8246057.8125, 8246183.660767538, 8251199.857942418, 8251374.304932861, 8251772.861611501, 8251830.942796629, 8251899.2947004065, 8252101.070027673, 8252257.8125, 8252365.844890518, 8252427.800317257, 8252448.9688751055, 8252507.199970724, 8252589.72132138, 8252599.45513262, 8252619.7487731315, 8252925.564653814, 8252930.597134, 8252934.608572942, 8253093.75, 8253270.248738466, 8253317.1875, 8253410.919332447, 8253423.4375, 8253441.144379838, 8253465.547036453, 8253578.356366092, 8253598.78779325, 8253828.125, 8253890.408932103, 8253956.024737045, 8253983.084323285, 8254039.0625, 8254098.020207761, 8254163.093962202, 8254205.211459151, 8254210.833669342, 8254344.861345756, 8254496.213431446, 8254959.544408196, 8254981.0544081805, 8255031.429299929, 8255033.615925693, 8255122.340489172, 8255366.997175625, 8255475.0, 8255537.5, 8255581.25, 8255694.443151581, 8255854.171640661, 8256125.0, 8256181.911863411, 8256621.109313952, 8256696.875, 8256719.337434483, 8256730.4513938995, 8256784.3962581875, 8256961.061157036, 8257159.375, 8257367.522462204, 8257378.125, 8257481.25, 8257518.59759899, 8257568.047307351, 8257710.9375, 8257749.873877831, 8257985.9375, 8258060.82819138, 8258134.651939036, 8258541.061644216, 8258817.1875, 8258866.83184951, 8258968.75, 8259436.6827118965, 8259500.542963246, 8260170.778535077, 8260448.4375, 8260561.089080888, 8260773.4375, 8260897.751942293, 8261236.933518071, 8261271.875, 8261823.775688666, 8262421.18817694, 8262685.160438297, 8263201.194566842, 8263272.981797672, 8263287.174848892, 8263407.8125, 8263458.577597838, 8264782.61683526, 8264815.999756516, 8264885.9375, 8264921.875, 8265582.8368020225, 8265615.161102911, 8266246.20005969, 8266305.583349248, 8266775.0, 8266882.404979137, 8266932.6303202165, 8267138.013299586, 8267166.89226121, 8268200.805193691, 8268243.593578225, 8269223.4375, 8270041.423859517, 8272779.359397702, 8273183.366080705, 8273194.9559425125, 8273693.75, 8274179.2995294975, 8274623.053806578, 8275971.867352073, 8278895.3125, 8278904.451361137, 8279392.1875, 8281505.015764622, 8285965.625, 8294828.125, 8294920.46553935, 8295442.644574709, 8295611.129341163, 8296455.036530135, 8297348.663314684, 8304082.577368267, 8304104.652985202, 8304737.361814854, 8305837.026171937, 8306051.392458615, 8308074.72787737, 8308498.4375, 8309136.12303994, 8309578.665492892, 8310093.75, 8311196.812473296, 8312010.669835899, 8312627.621007995, 8313477.41563855, 8314959.9530218905, 8315998.209809604, 8316982.8125, 8318243.270757691, 8319303.125, 8319528.023919308, 8320571.842486143, 8321029.421004715, 8321393.75, 8321490.26564515, 8321629.395572566, 8322352.417810922, 8324690.448002168, 8325694.531209026, 8327135.142171993, 8327394.9893811485, 8335447.161615316, 8339506.25, 8339515.815485631, 8339954.6875, 8351564.7494991785, 8355098.275231024, 8377271.875, 8386057.06446038, 8388080.4067448815, 8390007.361886464, 8390634.223496301, 8391316.466985729, 8397337.48639042, 8402326.838800544, 8402873.4375, 8404535.9375, 8406343.065713776, 8408421.287178114, 8416332.038612003, 8417220.148288248, 8418142.360639172, 8420628.357850723, 8421012.96621717, 8421249.562722672, 8421405.552286316, 8421708.852091385, 8422264.0625, 8422508.08760584, 8424516.587246245, 8424812.365425894, 8425450.58422831, 8426289.0625, 8427343.120996764, 8427522.970243512, 8428711.873462526, 8428742.253420115, 8429309.073848404, 8429318.838643277, 8431127.545761846, 8431760.868619943, 8431803.94872921, 8432237.5, 8433826.083893694, 8439670.241510212, 8440306.549305663, 8442026.5625, 8442236.462915186, 8442243.038761694, 8442253.933557596, 8442781.2698012, 8443939.283465024, 8444576.5625, 8444717.139429547, 8444905.64982341, 8444923.133721974, 8444976.547245055, 8444976.5625, 8445289.868257951, 8445567.1875, 8445585.117600933, 8445707.8125, 8445966.312308284, 8446119.212728035, 8446122.7543524, 8446350.0, 8446388.47597692, 8446390.625, 8446610.754970515, 8446780.870537946, 8446792.45904676, 8446876.185275855, 8447157.618866965, 8447438.684273085, 8447689.505960226, 8447774.779806385, 8447793.75, 8447829.929540848, 8447968.552800134, 8447975.210236968, 8448057.4026458, 8448128.125, 8448165.625, 8448221.156417217, 8448435.9375, 8448442.1875, 8448532.273975665, 8448609.714932628, 8448618.682280334, 8448659.440599881, 8448740.95249875, 8448778.125, 8448809.047101036, 8448883.05832671, 8449108.751912076, 8449159.305468904, 8449159.831867702, 8449215.401873337, 8449217.1875, 8449234.36070986, 8449248.4375, 8449403.213044448, 8449409.365553964, 8449412.5, 8449467.370912328, 8449468.75, 8449530.840401733, 8449586.888280574, 8449632.203094687, 8449660.600068135, 8449733.20805593, 8449740.343732761, 8449795.19332133, 8449882.8125, 8449903.125, 8450067.323478363, 8450125.848478848, 8450233.217319792, 8450244.369257215, 8450289.648064382, 8450610.9375, 8450623.719207225, 8450879.042728545, 8450995.180798162, 8451010.304258974, 8451060.240885353, 8451301.742799452, 8451308.856973028, 8452675.274880381, 8453125.944133287, 8453760.9375, 8453822.28707135, 8454186.546324447, 8454304.6875, 8454519.246127544, 8454527.53095637, 8455248.361485472, 8455443.566955358, 8455610.697345104, 8456675.0, 8457145.310842874, 8457149.729353918, 8457562.845679786, 8459278.838181635, 8459415.474548558, 8461180.384468397, 8461221.875, 8461616.087259997, 8461625.186819814, 8461919.956774576, 8462159.375, 8462269.032614058, 8462271.875, 8462276.038772596, 8462284.559724173, 8462304.6875, 8462312.5, 8462439.641037798, 8462478.034603877, 8462526.513361197, 8462545.498472957, 8462593.75, 8462631.167962959, 8462701.246369686, 8462702.525557885, 8462706.758033928, 8462740.854143154, 8462751.422523405, 8462763.090785524, 8462816.238266427, 8462936.899167191, 8463059.375, 8463108.56175093, 8463177.705968782, 8463247.182474297, 8463259.672551071, 8463282.048195325, 8463406.293586185, 8463532.8125, 8463542.1875, 8463559.081891585, 8463707.092964826, 8463721.875, 8463743.842636405, 8463817.41802625, 8463827.955096953, 8463864.931224488, 8463882.73236678, 8463998.371453948, 8464506.25, 8465489.0625, 8465513.80640072, 8465534.375, 8465751.5625, 8465757.8125, 8465888.240491675, 8466391.990331167, 8466964.0625, 8467043.880160283, 8467085.513772849, 8467115.18185224, 8467164.0625, 8467212.010075402, 8467289.956363747, 8467319.532138012, 8467517.103412477, 8467604.6875, 8467662.064154996, 8468000.817247042, 8468005.40078152, 8468329.1282689, 8468520.155691294, 8468623.706907123, 8468623.794073997, 8468981.25, 8469233.291835848, 8469375.0, 8469400.860637031, 8469405.134154925, 8469484.375, 8469662.537535818, 8469712.184067069, 8469884.678022994, 8469908.347739303, 8469937.866503153, 8469947.43544289, 8469964.965609513, 8470003.016539836, 8470026.019961322, 8470083.30647099, 8470148.4375, 8470207.365949316, 8470274.497963684, 8470277.39528097, 8470424.997434601, 8470431.440752082, 8470456.312924102, 8470532.8125, 8470564.023374474, 8470595.256012125, 8470659.375, 8470682.611009955, 8470849.500659477, 8470878.498582415, 8470948.39885904, 8471024.744117877, 8471132.696246551, 8471203.83037954, 8471294.590702444, 8471301.57042824, 8471339.0625, 8471457.988355527, 8471482.8125, 8471507.8125, 8471545.90047903, 8471611.150583137, 8471645.481108798, 8471695.301901212, 8471722.836853774, 8471737.195911169, 8471797.827492857, 8471825.0, 8471906.86220536, 8471941.195060538, 8471986.676930487, 8472115.27488377, 8472251.5625, 8472254.174629247, 8472272.762398243, 8472329.602656394, 8472339.0625, 8472405.504768344, 8472406.25, 8472407.784222651, 8472422.187033677, 8472426.5625, 8472469.810734387, 8472509.273430614, 8472521.203644779, 8472546.04399449, 8472583.150780637, 8472621.475133514, 8472646.875, 8472714.578692246, 8472745.986978749, 8472808.616550284, 8472810.9375, 8472960.035004308, 8472961.376547642, 8473055.910760827, 8473135.307529842, 8473192.598847255, 8473222.48194501, 8473235.003445202, 8473243.707714783, 8473349.18564006, 8473374.263461024, 8473445.3125, 8473478.352773387, 8473710.007226761, 8473737.320588348, 8473848.027755199, 8473859.730466612, 8473874.936396083, 8473907.8125, 8473918.639396226, 8473984.375, 8474020.3125, 8474026.304154051, 8474054.052750366, 8474074.17150988, 8474245.3125, 8474353.125, 8474355.453904497, 8474374.204383813, 8474425.0, 8474440.665774394, 8474478.125, 8474576.37291565, 8474585.570212383, 8474600.0, 8474640.496855484, 8474662.482144492, 8474823.734293772, 8474827.228353994, 8474870.3125, 8474946.117693398, 8474953.125, 8474969.619172962, 8475187.981372068, 8475232.796342682, 8475449.36437273, 8475646.446536077, 8475660.638656292, 8475878.125, 8476059.02682436, 8476206.919578157, 8476215.11943275, 8476289.0625, 8476960.769870576, 8477012.5, 8478187.320842776, 8478204.6875, 8478226.973385857, 8478320.3125, 8478341.545038806, 8478432.790966716, 8478450.039120432, 8478525.53507076, 8478537.26228588, 8478805.584613342, 8479360.480356958, 8479482.8125, 8479488.402474135, 8479605.611552084, 8479771.570301048, 8479837.5, 8479890.625, 8480003.125, 8480797.447742086, 8481306.25, 8481875.483062934, 8481963.948616687, 8482166.124551777, 8482663.23025771, 8482902.810776068, 8483465.442619937, 8483514.474462118, 8483878.659108102, 8483898.25128835, 8484218.141155185, 8484402.369371818, 8484488.689828005, 8484707.00888727, 8484951.54431616, 8485477.712172588, 8485629.6875, 8486514.0625, 8487669.137028296, 8487815.153181927, 8487947.52387926, 8487990.541421274, 8488037.522451082, 8488096.225964526, 8488120.3125, 8488248.167175135, 8488928.477457916, 8489309.375, 8489823.844825238, 8490117.843505835, 8490581.25, 8490838.106024979, 8490853.979971997, 8491145.3125, 8491448.180833677, 8491700.0, 8492306.25, 8492316.995602043, 8492983.79668432, 8493092.1875, 8493092.324899383, 8493565.625, 8494044.417781822, 8494767.520624073, 8494814.936163802, 8497025.026683532, 8497375.68156583, 8497443.75, 8497856.410117371, 8498476.646492252, 8499105.893302726, 8499940.915734502, 8500529.462029444, 8500837.610737639, 8501646.875, 8501756.25, 8501818.898909278, 8502221.990506077, 8502477.732768057, 8502783.570549294, 8502856.262653962, 8502999.237775207, 8503026.5625, 8503885.088355305, 8504035.601572873, 8504184.375, 8504404.17450523, 8504912.051300833, 8504912.406118335, 8505207.475037549, 8505372.97124402, 8506703.302094493, 8507079.299931405, 8507292.1875, 8509365.090032533, 8509407.654760892, 8509901.207015324, 8510104.13677153, 8510111.014040891, 8510136.307657978, 8510139.03880436, 8512563.800184, 8512913.36672146, 8513316.85475347, 8514198.15666305, 8514206.271813506, 8515324.673981018, 8515385.326428808, 8518704.72988736, 8533979.6875, 8536437.50440414, 8541500.937456567, 8542600.964309292, 8542835.908440992, 8544274.498358032, 8549954.633345272, 8556237.5, 8558073.245834796, 8559764.0625, 8559988.568255037, 8560241.843499394, 8560242.03599028, 8560475.925918868, 8560590.573252572, 8560607.990648443, 8560646.229404474, 8560807.776248435, 8561132.8125, 8561158.657476444, 8561245.3125, 8561529.552977625, 8562293.631369784, 8562508.810395585, 8568348.330549357, 8568874.221935896, 8577346.072963737, 8581412.5, 8586032.082068784, 8589474.339049244, 8596458.040407995, 8602152.664162902, 8602829.717390783, 8603274.2463725, 8603277.714291813, 8603642.908499476, 8605140.625, 8605312.466168325, 8605779.275591932, 8606418.438565569, 8616501.034977412, 8624864.98495118, 8630748.4375, 8637605.879429964, 8639835.44273332, 8643445.539667448, 8644379.367797522, 8644712.911758661, 8646176.23283725, 8647187.55807122, 8648032.067836585, ...], [89.86886791784178, 7.7600799979325945, 19.71114990059022, 38.0580198336311, 59.140257745811205, 17.888731563541526, 26.61207523033, 73.15879703319725, 36.73630703209435, 16.83145614489966, 75.24187194381028, 15.322096038931345, 32.992644859809744, 38.73419028605576, 51.42285613744378, 13.950390255777837, 54.8165696041688, 65.55821871865342, 11.351727555728413, 67.89081646774122, 9.56547113271457, 115.42395237396185, 59.29690440677685, 11.095432081991886, 24.301734563132243, 55.8384403586164, 61.667734051442004, 52.48600917831639, 20.018130246101293, 6.5778587335254, 49.75402446202752, 9.218383609866274, 5.321420234557802, 43.853238569241334, 78.53440097764278, 44.49350996815492, 9.454760529556024, 5.825687336763312, 63.77536797114984, 67.99282915950731, 24.171116622022154, 5.9471377546186, 11.565299942224428, 33.307171130206186, 6.5837745379078365, 7.388728018058607, 39.98601194485804, 29.478294266821738, 22.18590376243031, 143.88917789971424, 9.126886975337777, 6.922047410623791, 10.39705795827564, 29.308750510269384, 22.709274808001684, 25.079878552431573, 43.72240237884423, 76.30055515335272, 26.299702077062086, 11.50235543062775, 15.728266819884706, 38.993127201630536, 34.090502034043375, 7.6918467762390605, 19.84569229553207, 5.818310961989052, 117.62956389952234, 10.919005630648488, 61.327125477932334, 9.951277263597866, 116.95083861368857, 62.63584604825431, 7.22087514469328, 15.72183691081441, 8.46104531956437, 6.696359968238003, 7.219763109376915, 5.033825315611351, 31.696125757541104, 9.918233233526147, 107.01842770442033, 24.6493863270419, 5.639778705898386, 19.18132438690545, 9.315338932553674, 24.524849684591278, 27.934004838588727, 50.86864921466213, 5.586935572979908, 7.79370664339263, 135.31634050921835, 50.19989159238277, 21.334059049452186, 18.264922557901095, 158.63378074065758, 75.29647563380883, 6.382171351311343, 53.41217558053119, 76.96516027541888, 5.559831454136989, 18.42481145266906, 5.047253841418837, 80.16396536322327, 60.75269651704859, 78.25843390436545, 8.031421150577838, 18.333168146835003, 22.76395002065741, 15.372443759913244, 5.699562226399009, 13.347245531905866, 16.24497433458189, 78.37560925892171, 15.937487690801227, 38.2834758384931, 111.97158251648905, 11.987078167692127, 5.476212669661989, 60.81925056636668, 123.19542143777777, 10.795026997168055, 47.86743136279519, 61.296724540088476, 10.87136545941468, 92.59779592980775, 181.23516338785936, 12.807605069071004, 25.820268977571548, 28.332843173429296, 52.702021261072595, 22.015577439012176, 19.392918154060844, 32.25186373500792, 13.153822154674467, 51.02822409570688, 8.408372572191308, 10.112313157007051, 10.256837404773197, 59.762581336044235, 13.969372188928366, 8.581148865198498, 5.27907192572608, 71.88468599280633, 14.467775780459606, 57.7477930576598, 23.68356731073143, 49.49631845759162, 24.24419503017732, 124.9586390276263, 31.82810941860779, 60.23894542467629, 25.756483382086838, 15.194866467994563, 64.45177331147444, 52.59066351185284, 123.07744978910391, 7.760744013245813, 84.85216719120089, 75.8471210338257, 35.251912016304466, 82.23596163847293, 58.398036498075285, 38.15062096670715, 21.897483018975063, 49.81574582543863, 9.578061834761185, 73.16868273863909, 5.823870988030479, 97.16643863594193, 13.05343240064556, 7.065099099941546, 9.239945400101954, 68.87845962430231, 48.3658601204818, 8.481061590499479, 47.71777966960347, 29.13213540367712, 55.885125589075464, 72.98408125120984, 11.978087135769933, 6.39115566063436, 28.244118835460416, 31.557419881699808, 17.40665127759623, 58.20275129278885, 15.3312562132226, 57.0502539862225, 22.29630249873507, 57.09581188513374, 76.36311356700074, 31.886518086215126, 54.883894933446165, 5.481332505324148, 50.21104215088221, 13.390078552099625, 16.64504799785621, 28.66864185887117, 33.5061007315928, 43.858373933962774, 45.70252003953057, 8.457959553775549, 5.7090050258286364, 41.105748102184776, 9.882062959500784, 37.05470701680418, 73.73532183461948, 10.57385208405526, 29.034555965748545, 105.08582792523492, 17.50346303531914, 18.45274833972848, 28.42265326250186, 60.4226747455731, 27.960071567916756, 78.72539644465853, 25.000773162683746, 7.008508482357763, 6.788916337114379, 16.975614560994178, 63.53879264169907, 59.698132004974774, 50.18285400084669, 51.3234487854782, 23.700076321271183, 7.548445922495069, 17.949872516296477, 112.17283373119152, 27.167342560898845, 7.032285984260569, 57.5828162756046, 26.5546451188543, 51.95711199799776, 24.582456251484352, 5.866208182453743, 7.426456677810213, 16.850488995821017, 66.35608992750619, 60.83135127835594, 77.59726122693033, 30.189069953246076, 74.79949857790668, 60.90367243604051, 34.995665620286594, 16.91818798298006, 42.32947509552504, 74.77731050088053, 55.82532585105229, 18.163923367655176, 43.34246167607548, 29.269209618866466, 77.85878665282999, 77.45641744912164, 68.81186818987874, 24.17429199634901, 81.5278180498766, 56.339640952279446, 74.98321114253642, 43.10341879601834, 23.14748913266759, 12.49303578307134, 108.16591219963313, 63.043304600430425, 54.55759890333339, 25.47283507878433, 43.53998324873522, 20.83120104472171, 16.077525295540724, 20.15894061098512, 116.50512125640103, 5.653489176890805, 7.653479564757811, 10.531425713699337, 27.781994211225808, 69.06835210190349, 25.161765355574605, 52.941487059439865, 12.875057145787444, 9.313750655069688, 57.313292688734556, 10.823586846435546, 90.27678238721167, 5.879576010833627, 5.143727645767909, 42.89341061800043, 19.820097065668993, 56.4737968216961, 37.33192967649994, 8.587220747513056, 51.22329036973544, 42.35965209916303, 5.594731316230592, 9.490242375127776, 68.27364981995345, 12.329697586856652, 64.66771707552238, 77.87169233407435, 72.67801998361482, 165.62824949037554, 12.782469061471714, 7.4597832782988815, 20.784193603885072, 41.793399070198376, 128.22019543418966, 30.5755086222981, 21.370436092252632, 60.29358213782663, 64.893116321483, 10.963946095312238, 31.399001148568303, 49.99326398425938, 50.472786739116906, 8.234481737126135, 24.534989721286784, 14.743837288798405, 37.833800401514765, 70.04930905194665, 20.43622026546672, 11.322249204460128, 24.611236401786506, 37.43003243694203, 22.842851093088633, 27.276794135286693, 67.6939815216482, 38.55977135921148, 38.72816413431057, 74.15659651664474, 80.30148540582745, 5.212826140338077, 5.457119760718802, 15.389979986040053, 57.44803147973026, 12.534069127170223, 13.834406610872175, 10.459826419487209, 51.707138804849066, 28.819983767901128, 84.51776802352659, 41.58203314275397, 5.662585634658394, 61.64270920168639, 10.690964511968216, 15.187544211015815, 31.24321830102332, 5.7380455551016265, 31.329318128003248, 13.429778038492149, 47.950394765652874, 33.25889500286236, 14.426354284670332, 29.6944830866205, 10.33290269951192, 50.442646013140454, 27.295063376722418, 6.669015926245653, 115.04291075191769, 21.028842251314035, 23.440492230261267, 6.573745056666032, 5.668853284575329, 22.473117250689615, 21.05690348066777, 30.47116261040985, 8.609592666041435, 103.62088629268538, 24.4450146990105, 107.29836615063674, 5.289121763403963, 43.17298742007751, 27.113754893317967, 62.82870099071326, 9.812901736138015, 9.266339286065268, 96.15862480224916, 43.32234301547922, 28.80420810369813, 22.088647002907795, 14.1472187345041, 76.02167011434207, 40.127717857161755, 84.76649864542487, 8.627807103671485, 35.57670488801051, 10.96920066914963, 99.15650536643483, 83.64305351188021, 9.478876513384753, 36.62067798217692, 15.671989814191626, 59.08741744272949, 22.96695746293056, 10.842702000026474, 73.4136872187097, 64.14217664985235, 77.83370477320825, 8.690619712011298, 140.03199579285348, 44.970458567854145, 14.084351145029753, 8.758260405177717, 38.01413293685004, 9.88295935955298, 78.87551365423998, 15.023159506512766, 85.52503226093721, 96.18607486889863, 20.91614957802183, 60.22415790464678, 58.89410855829926, 47.912124335486865, 57.62225881160629, 38.980952783750865, 14.4816363155611, 69.84265193844075, 26.53601333626134, 219.04473869044358, 23.31271321600353, 56.1812976644816, 23.064992476504866, 56.03828121629218, 27.582505915040166, 9.836977986820777, 39.72388500945945, 57.14481934718302, 9.462948774208325, 42.350392169192546, 7.954518113452389, 19.64474780884996, 33.111168578544955, 30.24188647887994, 8.81114362655024, 41.77277377531535, 10.597502394292677, 21.946675541330627, 10.65486039481493, 37.95829529325524, 42.750335596095915, 14.244726776847399, 16.592241515795124, 62.670016363955256, 76.14532980814124, 5.708306400411169, 8.9677120846108, 5.1865608764273015, 8.824874367558085, 30.183105226346214, 8.082222126346847, 14.289797084881394, 9.806728555570585, 61.738890826048454, 19.26036559820304, 26.839405118545262, 64.72308987695882, 77.9548908411534, 50.280298009381056, 17.577715407654445, 27.314028095886435, 47.009354908985124, 18.836293700214295, 9.026756032766702, 14.912439012044427, 76.9735523273481, 72.30632297708502, 43.35744137264317, 11.68273936531918, 64.55450889585514, 42.67142384637977, 5.071689863613262, 109.7527569695601, 27.798756496679243, 40.82679500562847, 24.39781686214591, 33.58528584789221, 20.3526558920208, 9.217230555066234, 17.2208723006841, 25.56599795524172, 24.113489909040304, 81.9342842089057, 5.348319911518483, 17.49828271175258, 61.849868939487564, 36.45496135372484, 169.57333559074607, 48.566988861537794, 10.174545883721166, 25.74494543319708, 10.789533793915695, 98.2095694878626, 45.772077772535475, 87.64550624795699, 26.67428920384464, 44.66901174638664, 72.05853062098146, 80.1038542421121, 20.72439237331499, 23.854408124933965, 10.17705627378145, 10.861876949408236, 10.092625773438842, 12.583978726727873, 7.49040743022869, 5.074145616762375, 33.949013260334944, 15.720910308456759, 78.34506049718213, 118.16616934653646, 107.7865698156319, 34.1564207616154, 10.130207941674616, 12.474954081348477, 24.823743912917536, 14.393867968220643, 54.13175997460539, 11.106500579336545, 5.073955398563342, 71.04147378320667, 39.25561254386982, 43.876355632473945, 6.195682119293065, 33.98008824260965, 109.20084151698053, 11.409566281225604, 9.536370793771084, 36.70568746375607, 66.27910720025001, 123.85964997601448, 5.674267729157487, 43.07899859926359, 68.37745745279224, 5.669592320192875, 26.121909579614886, 27.66648299275461, 73.52399967990223, 101.29620043857733, 8.054030571109712, 20.317327114861197, 15.198863250349826, 7.497830700461034, 63.277655654542684, 20.737470680103893, 60.60890118323938, 12.71645281033483, 88.77026905494095, 26.84722692870636, 5.163711568671354, 7.202417292423553, 45.97692927242075, 5.85390698172147, 5.662940256281647, 19.285799935936005, 42.275334394994374, 49.45376493422212, 37.919035731757916, 101.15561662156094, 23.618530068268633, 60.3464693182659, 65.18909587067168, 94.2621294803526, 19.264625906985344, 44.257663402055755, 47.641445534377205, 88.62915070730988, 8.686868462997957, 12.794098315529155, 12.850956538284594, 64.92184926146395, 28.241976323857823, 49.43237954375772, 59.03390752336527, 22.78615434083897, 57.36467726975293, 84.14610792968267, 53.31600369954582, 8.096203906309707, 5.554997236544454, 14.163782684996958, 92.43134787063524, 9.544806047378644, 51.20705242834451, 5.829701511546663, 82.98274553290291, 71.54540680638559, 59.4429401095157, 19.558493242418365, 51.50692704330535, 82.16538029873549, 40.738515537315024, 57.62043865772209, 27.253052622100004, 7.13880330605202, 8.467705249739904, 32.89897897731639, 23.912468319556705, 80.87754542895712, 29.96009856539885, 14.682950776690175, 276.9760618786853, 44.57139552799733, 44.7254725619912, 28.245158123078784, 50.3455083779029, 9.406976073558576, 65.26735809155427, 56.16343706856145, 11.427027416840582, 29.57491646751665, 22.44493694682587, 20.446616548176067, 7.396757206526222, 16.756520518180814, 6.845132028978014, 5.332375184986495, 92.09670093628365, 87.58111744427241, 39.34307155320606, 6.28453248596116, 6.945607864185624, 16.74721187448972, 16.381676658867924, 13.725817950092544, 47.39162464426322, 7.70840644423008, 6.390554449955222, 10.927904753103814, 10.263817249834856, 52.054932977654914, 9.48865605970724, 21.315136907771286, 7.195633981724372, 8.858084763726223, 93.86645210593477, 21.97144745954651, 6.891461444007093, 162.8521973807852, 26.812078656379498, 55.416084332812254, 27.106365784619094, 5.335688294007478, 24.546513399063734, 34.6712026998535, 19.367763001991523, 18.782923969444106, 70.56757004503638, 13.693417630306069, 25.86949170476084, 18.48586490082291, 58.14553901233465, 17.054472148611545, 38.26368274760351, 9.047700981850701, 94.28115249088478, 16.140485138868378, 31.4318030366277, 8.924625561463417, 76.27724382266662, 47.113172936510594, 49.153117181409854, 12.17090443069443, 34.81054236276813, 72.77787965723928, 15.701123475593, 57.787044190986194, 5.201336887996049, 23.546862979790756, 48.86304386839204, 27.186388430584174, 11.505813105210642, 22.827171808123204, 16.063262147955378, 14.858708551868233, 5.151600856564135, 109.05131660744388, 36.926307008800165, 9.000556732836607, 9.605665155723685, 7.71452286212061, 37.92426208339258, 87.7300962794736, 93.73741220246863, 78.10539936638256, 33.68419531489835, 8.789055071684462, 72.43771591539027, 90.11714318074641, 52.20020220984199, 5.038692325800253, 6.950287384072091, 112.94216382107325, 27.282878325357515, 32.62660484842296, 39.22329011418862, 76.59988403692012, 28.74595423994417, 59.133807178148615, 49.256545741888665, 18.13416060985266, 59.55145577536557, 119.05089674593715, 9.443940633926418, 38.112534249915264, 6.419797508015763, 41.062640394743376, 21.594199994362455, 26.63242933083817, 5.758411608923807, 14.630409065897453, 47.11694111872161, 73.91974771048957, 108.89305978771267, 18.40397354408082, 20.921909700786163, 10.891142428555025, 5.210340362081327, 21.59738455162661, 73.68979755535823, 6.5649515496707, 30.23876842225457, 8.800960912437548, 102.20919419468856, 59.08813657144577, 5.942681050180254, 6.438680746284377, 8.453596231741757, 8.591467075781441, 6.838950451796818, 62.140325355447835, 10.953579792359484, 30.42667307545788, 62.7213046573772, 11.998856555644855, 58.59727621386394, 13.474854275286289, 6.037402790535056, 6.179205225099645, 40.43000979302368, 5.2505156010307, 27.604134329714988, 57.64235003024072, 23.282099752642218, 73.56315879641234, 50.3490777179449, 14.963503033211495, 18.692554419295796, 90.48584037472907, 41.778069507023986, 30.32076644155605, 10.950730442323815, 12.44394869470384, 28.4922262487328, 5.940096261891057, 75.17620088019031, 6.515016051477914, 89.75092188092133, 33.3608932168219, 5.051593680778314, 15.821039648494857, 59.95452900003767, 9.322457351156377, 49.03974738441765, 23.698652629006876, 20.461691405303554, 131.01417027680822, 40.485171719100485, 37.330398912146165, 18.77995768072714, 23.131011105208156, 33.41452426569142, 20.200824710253062, 7.959162822539369, 9.26067888126821, 45.97196605411582, 13.12703772309403, 82.62133270751016, 14.834813763182105, 9.609958846179133, 29.25779791056295, 36.129245314677206, 23.016058697756012, 19.938616914866635, 7.327999862244405, 64.27876596105149, 26.42560983909668, 82.49803699181103, 236.58781356048917, 6.5982881950633745, 74.60440268893, 39.903130924209435, 9.959667094065507, 9.732449234459938, 25.56549551151977, 5.5801180975411615, 16.781378936807254, 9.903375926655063, 18.035726906187573, 48.60502807408742, 26.063536132734612, 23.58462464025464, 109.28259018650743, 32.08680110372124, 26.68656781495948, 9.184172021105388, 25.318015411310512, 6.836610177094266, 7.58039409082327, 71.00650650028162, 120.03785668942531, 45.81338301959137, 40.05816385529695, 21.977958124115613, 38.26013029649576, 80.39720064284772, 68.55407873966305, 46.11684819209867, 164.3668525890495, 42.763179174966396, 72.27657967181082, 11.192043569381202, 98.55311994376623, 38.55091678762869, 5.908045640269222, 54.495507934356226, 5.8045591225797795, 17.576970170944136, 45.837017433483794, 56.43948230112197, 46.83317139754551, 7.922964506814521, 38.57182285796153, 47.54393875318716, 75.41897499427644, 28.209041089885396, 12.9693341365839, 22.237680573119945, 99.82445788932839, 71.03361364436364, 13.76202304832188, 18.302431807955024, 65.74441488489164, 32.38750274406163, 25.602902204922227, 95.9794260492001, 5.923953825283902, 31.890219322503306, 100.94476041948158, 63.8841968827902, 25.438687648818604, 54.257469149462864, 233.49454246783813, 183.11936388508846, 24.580355735958072, 19.988012018052178, 14.183148265670543, 50.06197350984654, 39.246870955935265, 20.21490162919611, 13.992376436408815, 73.94919359901401, 77.98681499250236, 55.32449928821482, 83.06603080250693, 60.10694247924085, 15.862881659597853, 62.15676427461807, 12.009977229204477, 55.557466762249874, 111.21237751382286, 5.923678593333042, 36.76419875640131, 28.318922747636442, 78.76352970770603, 13.037513545552418, 6.012894092459728, 10.591213020194827, 16.545019957607693, 28.16996518479655, 22.409122110527903, 125.88660892112414, 62.74530449589151, 32.26685222410397, 10.46246462282201, 20.834563945147693, 9.261718556280547, 5.2039942802662935, 10.245070315305336, 31.42470656898626, 118.72612462844872, 68.95480561694315, 105.19015541382464, 8.51440070079797, 9.955385440476082, 48.83469304278856, 17.894599921210993, 6.181762724930139, 38.8964941481633, 121.18235301966445, 81.97765226038477, 87.71077853285615, 10.840445281728632, 10.329946356262363, 51.43375476702447, 15.492416385041526, 100.9319554481104, 28.268744314437154, 8.470961636650014, 102.91614769609882, 8.300738609049139, 7.312932492694328, 108.07602347767792, 9.47056333216247, 6.096877441694431, 23.052557437629716, 55.15146622044371, 83.70762665142597, 5.713842077938539, 73.81654513341292, 104.00003830987283, 9.460570332222469, 5.2946685430940725, 13.631216828669974, 37.225308303397405, 63.80593333109509, 19.223332549073884, 75.78737972902671, 5.568733389883459, 43.298856532975705, 49.023251074049014, 27.181436134268417, 38.977234378103375, 22.504927058501323, 5.789425866127941, 101.88534345675706, 48.396991035042575, 137.9252600731215, 80.99909662089509, 10.383187856559267, 14.372538027555098, 13.740067873085092, 10.363720663405191, 60.3930705214627, 5.174072912971867, 60.22799925465959, 23.57111376831576, 113.0091061086112, 10.644600592620588, 7.5047266797226975, 11.161974757018925, 23.423979093619348, 6.969579047303097, 15.105569514531126, 102.95158672975654, 175.4788361511767, 33.81363896403319, 6.649683001206173, 16.27351429328325, 96.76315941596593, 35.267247079508785, 91.31702342312225, 25.240776054507663, 52.49256135759646, 10.434073328170362, 91.4338439531017, 6.072483989340689, 86.24823098336506, 27.540896784073002, 52.46969570446743, 27.468984673912864, 35.44526477928352, 39.555251918782204, 6.1806098664875995, 83.16088373038502, 10.923754280841914, 10.947208377803893, 20.871968517455414, 34.618833320018226, 5.874394957588014, 18.93020890256617, 53.677507143006856, 8.781745956350418, 12.905844304994039, 28.000169631138753, 7.005361101772067, 15.056676314608517, 38.5687060619716, 22.432610685913282, 18.650816193772243, 51.93194817195511, 79.3819121362505, 130.17171744262203, 56.49844328827787, 161.2867252963895, 22.32443989528935, 42.01638409455521, 29.72752690006557, 78.9109167790254, 96.34260489265344, 23.502290520953697, 57.518546623986225, 21.674210211701634, 26.793911428569118, 19.35640947480763, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2602535.7554752277, 2982395.7262802343, 3165521.192819703, 3214351.5625, 3323510.9375, 3347641.230082587, 3347648.4813863253, 3408007.8125, 3541525.0, 3547788.416376268, 6032476.396131112, 6037675.667023654, 6068991.938067779, 6091304.45738548, 6096546.4337086035, 6097138.775661306, 6129344.880234453, 6133043.75, 6147862.638744842, 6152812.5, 6153209.639429963, 6153869.08085318, 6155531.15042241, 6156293.981198225, 6158530.991944814, 6158540.625, 6159026.913690035, 6159076.5625, 6159107.150734168, 6162798.993079327, 7643798.4375, 7646856.113242724, 7771833.764250814, 7797706.25, 7815087.5, 7938101.5625, 8005623.579872918, 8021722.031978209, 8022982.704675984, 8038777.060818015, 8047012.23221215, 8065532.900862186, 8065539.325511583, 8065987.5, 8066039.652731644, 8066422.802732012, 8067048.4375, 8067926.303282587, 8068182.379254662, 8068512.13471536, 8069012.247802286, 8069227.307932788, 8069352.601200257, 8069355.855195964, 8069582.426345659, 8069673.234886107, 8069912.5, 8069935.348875577, 8071417.063890163, 8071697.1021572575, 8072143.942159393, 8072168.75, 8072426.5625, 8072506.48852151, 8072569.629813372, 8072667.245858642, 8072847.730714742, 8073126.424746222, 8073635.9375, 8073852.214663633, 8073930.392704686, 8073945.3125, 8074014.427686927, 8074018.293158237, 8074165.940966236, 8074179.341595906, 8074184.736241638, 8074240.161903533, 8074663.625331882, 8074897.496053262, 8075198.4375, 8075452.892239287, 8075608.268489946, 8076194.589854469, 8076351.543440277, 8076492.3768046275, 8076596.844436356, 8076776.375672277, 8077238.561867223, 8077259.872606447, 8078743.75, 8078943.75, 8080127.6089077, 8080969.611827414, 8081392.1875, 8082121.35564078, 8083016.4838660965, 8083415.163853294, 8083418.625919221, 8084297.414136566, 8085623.155745764, 8086030.023608287, 8086062.5, 8086128.125, 8086368.75, 8086644.796677325, 8086918.350012673, 8087061.791841414, 8087418.8586459, 8087931.136337799, 8088008.882722322, 8088130.64998628, 8088157.8125, 8089176.801372881, 8092634.6095753675, 8093853.268692177, 8094162.988042447, 8094250.332308266, 8095259.375, 8097242.545939701, 8097863.838698663, 8098670.280565922, 8099544.678813265, 8099624.829567734, 8100498.4375, 8101268.158251954, 8104518.049117573, 8104531.096408929, 8106914.052719621, 8107067.1875, 8112287.050827991, 8112960.753709551, 8113717.1875, 8113890.060887958, 8114254.233134516, 8115750.223427685, 8116505.486181683, 8117721.235890085, 8119082.8125, 8120399.719209241, 8120852.080882536, 8121923.043561728, 8122878.125, 8125284.244898775, 8127998.4375, 8128034.790858529, 8129350.0, 8129591.92517314, 8129778.125, 8130660.9375, 8131998.786922509, 8135801.9533626335, 8142568.814920243, 8144670.2740424285, 8145673.4375, 8147460.9375, 8155926.97795146, 8171839.0625, 8172414.96984684, 8173598.4375, 8173834.375, 8174032.157357697, 8174722.842303613, 8175145.421637851, 8175164.0625, 8175165.902984525, 8175253.981963218, 8175270.445285028, 8176206.9087035, 8178490.022348152, 8178879.468698225, 8179467.077319798, 8180459.268850795, 8180464.0625, 8180967.538015254, 8185001.5625, 8187192.218603419, 8188573.4375, 8188584.188070158, 8189175.483504593, 8189219.671931526, 8189302.264388071, 8189350.0, 8189352.087275749, 8189776.439630868, 8189829.786129912, 8190185.9375, 8190541.76441634, 8190550.0, 8190578.125, 8190777.68958577, 8190853.125, 8190917.635568625, 8191026.5625, 8191358.898214717, 8191495.69758567, 8191642.1875, 8191659.35806655, 8191710.9375, 8191968.75, 8192028.435610207, 8192451.597748996, 8192584.92163068, 8193438.08657457, 8193573.4375, 8193763.785092773, 8193790.239197506, 8193854.6875, 8193989.0625, 8194114.603874918, 8194118.505980205, 8194620.307304636, 8195273.348881049, 8195737.470816114, 8201910.61211523, 8202224.7919406565, 8202291.739684937, 8202536.063457854, 8202952.01028451, 8203167.1875, 8203502.311721234, 8203596.875, 8203987.5, 8204459.437963551, 8204492.033424705, 8205109.98986127, 8206117.4963125, 8206846.802446538, 8207613.712079914, 8211133.260516046, 8214110.108475212, 8219069.14506506, 8219076.90726925, 8219655.369266251, 8220274.483264209, 8220709.799441451, 8221701.5625, 8221806.894091889, 8221890.7738866275, 8222123.323755485, 8222401.5625, 8223409.821073013, 8224319.933589078, 8224712.937128821, 8224779.6875, 8224802.471562721, 8224812.5, 8225178.968974746, 8225213.94138317, 8225467.1875, 8225506.3824845385, 8225640.305815144, 8225695.3125, 8225841.919950274, 8225872.874076886, 8226026.5625, 8226064.4042935595, 8226290.625, 8226316.838759043, 8226439.789782202, 8226490.03489575, 8226866.233579786, 8227012.5, 8227382.239707825, 8227456.189918499, 8227536.947965232, 8227723.30446966, 8227829.042479576, 8228207.8125, 8228538.191649867, 8229047.0118074, 8229429.269299732, 8230152.840950867, 8230434.4534300165, 8230560.740479448, 8230573.47723944, 8230808.701633928, 8230809.354049151, 8230889.0625, 8230890.421312227, 8230907.8125, 8230913.348848198, 8230914.671188547, 8230916.754764371, 8231022.75166835, 8231059.375, 8231171.875, 8231330.215812025, 8231331.25, 8231562.5, 8231596.520546242, 8232112.682062199, 8233196.875, 8233850.653358966, 8233987.767540493, 8234167.662584728, 8234621.875, 8234876.5625, 8234933.663751199, 8235308.960152931, 8235536.925872559, 8235707.962397251, 8235946.875, 8236110.9375, 8236115.461232477, 8236121.396779577, 8236728.125, 8236801.455142244, 8236846.175442794, 8237008.9144753115, 8237060.9375, 8237092.087669923, 8237192.428959318, 8237195.2596533755, 8237420.2059987215, 8237707.8125, 8237912.932844885, 8238254.808496166, 8238665.720943122, 8238840.625, 8238867.106008016, 8239158.372047507, 8239873.4375, 8240110.9375, 8240245.3125, 8240403.125, 8240627.118719898, 8240634.740165734, 8241038.953787909, 8241081.362887705, 8241285.9375, 8241288.2453900045, 8242060.613182029, 8242079.213606718, 8242476.596221381, 8242950.0, 8243306.722268165, 8243333.315652226, 8243938.345313848, 8243977.972522778, 8244212.2013820745, 8244590.688086528, 8244815.203189469, 8244909.855639167, 8245839.0625, 8245922.9749434125, 8246057.8125, 8246183.660767538, 8251199.857942418, 8251374.304932861, 8251772.861611501, 8251830.942796629, 8251899.2947004065, 8252101.070027673, 8252257.8125, 8252365.844890518, 8252427.800317257, 8252448.9688751055, 8252507.199970724, 8252589.72132138, 8252599.45513262, 8252619.7487731315, 8252925.564653814, 8252930.597134, 8252934.608572942, 8253093.75, 8253270.248738466, 8253317.1875, 8253410.919332447, 8253423.4375, 8253441.144379838, 8253465.547036453, 8253578.356366092, 8253598.78779325, 8253828.125, 8253890.408932103, 8253956.024737045, 8253983.084323285, 8254039.0625, 8254098.020207761, 8254163.093962202, 8254205.211459151, 8254210.833669342, 8254344.861345756, 8254496.213431446, 8254959.544408196, 8254981.0544081805, 8255031.429299929, 8255033.615925693, 8255122.340489172, 8255366.997175625, 8255475.0, 8255537.5, 8255581.25, 8255694.443151581, 8255854.171640661, 8256125.0, 8256181.911863411, 8256621.109313952, 8256696.875, 8256719.337434483, 8256730.4513938995, 8256784.3962581875, 8256961.061157036, 8257159.375, 8257367.522462204, 8257378.125, 8257481.25, 8257518.59759899, 8257568.047307351, 8257710.9375, 8257749.873877831, 8257985.9375, 8258060.82819138, 8258134.651939036, 8258541.061644216, 8258817.1875, 8258866.83184951, 8258968.75, 8259436.6827118965, 8259500.542963246, 8260170.778535077, 8260448.4375, 8260561.089080888, 8260773.4375, 8260897.751942293, 8261236.933518071, 8261271.875, 8261823.775688666, 8262421.18817694, 8262685.160438297, 8263201.194566842, 8263272.981797672, 8263287.174848892, 8263407.8125, 8263458.577597838, 8264782.61683526, 8264815.999756516, 8264885.9375, 8264921.875, 8265582.8368020225, 8265615.161102911, 8266246.20005969, 8266305.583349248, 8266775.0, 8266882.404979137, 8266932.6303202165, 8267138.013299586, 8267166.89226121, 8268200.805193691, 8268243.593578225, 8269223.4375, 8270041.423859517, 8272779.359397702, 8273183.366080705, 8273194.9559425125, 8273693.75, 8274179.2995294975, 8274623.053806578, 8275971.867352073, 8278895.3125, 8278904.451361137, 8279392.1875, 8281505.015764622, 8285965.625, 8294828.125, 8294920.46553935, 8295442.644574709, 8295611.129341163, 8296455.036530135, 8297348.663314684, 8304082.577368267, 8304104.652985202, 8304737.361814854, 8305837.026171937, 8306051.392458615, 8308074.72787737, 8308498.4375, 8309136.12303994, 8309578.665492892, 8310093.75, 8311196.812473296, 8312010.669835899, 8312627.621007995, 8313477.41563855, 8314959.9530218905, 8315998.209809604, 8316982.8125, 8318243.270757691, 8319303.125, 8319528.023919308, 8320571.842486143, 8321029.421004715, 8321393.75, 8321490.26564515, 8321629.395572566, 8322352.417810922, 8324690.448002168, 8325694.531209026, 8327135.142171993, 8327394.9893811485, 8335447.161615316, 8339506.25, 8339515.815485631, 8339954.6875, 8351564.7494991785, 8355098.275231024, 8377271.875, 8386057.06446038, 8388080.4067448815, 8390007.361886464, 8390634.223496301, 8391316.466985729, 8397337.48639042, 8402326.838800544, 8402873.4375, 8404535.9375, 8406343.065713776, 8408421.287178114, 8416332.038612003, 8417220.148288248, 8418142.360639172, 8420628.357850723, 8421012.96621717, 8421249.562722672, 8421405.552286316, 8421708.852091385, 8422264.0625, 8422508.08760584, 8424516.587246245, 8424812.365425894, 8425450.58422831, 8426289.0625, 8427343.120996764, 8427522.970243512, 8428711.873462526, 8428742.253420115, 8429309.073848404, 8429318.838643277, 8431127.545761846, 8431760.868619943, 8431803.94872921, 8432237.5, 8433826.083893694, 8439670.241510212, 8440306.549305663, 8442026.5625, 8442236.462915186, 8442243.038761694, 8442253.933557596, 8442781.2698012, 8443939.283465024, 8444576.5625, 8444717.139429547, 8444905.64982341, 8444923.133721974, 8444976.547245055, 8444976.5625, 8445289.868257951, 8445567.1875, 8445585.117600933, 8445707.8125, 8445966.312308284, 8446119.212728035, 8446122.7543524, 8446350.0, 8446388.47597692, 8446390.625, 8446610.754970515, 8446780.870537946, 8446792.45904676, 8446876.185275855, 8447157.618866965, 8447438.684273085, 8447689.505960226, 8447774.779806385, 8447793.75, 8447829.929540848, 8447968.552800134, 8447975.210236968, 8448057.4026458, 8448128.125, 8448165.625, 8448221.156417217, 8448435.9375, 8448442.1875, 8448532.273975665, 8448609.714932628, 8448618.682280334, 8448659.440599881, 8448740.95249875, 8448778.125, 8448809.047101036, 8448883.05832671, 8449108.751912076, 8449159.305468904, 8449159.831867702, 8449215.401873337, 8449217.1875, 8449234.36070986, 8449248.4375, 8449403.213044448, 8449409.365553964, 8449412.5, 8449467.370912328, 8449468.75, 8449530.840401733, 8449586.888280574, 8449632.203094687, 8449660.600068135, 8449733.20805593, 8449740.343732761, 8449795.19332133, 8449882.8125, 8449903.125, 8450067.323478363, 8450125.848478848, 8450233.217319792, 8450244.369257215, 8450289.648064382, 8450610.9375, 8450623.719207225, 8450879.042728545, 8450995.180798162, 8451010.304258974, 8451060.240885353, 8451301.742799452, 8451308.856973028, 8452675.274880381, 8453125.944133287, 8453760.9375, 8453822.28707135, 8454186.546324447, 8454304.6875, 8454519.246127544, 8454527.53095637, 8455248.361485472, 8455443.566955358, 8455610.697345104, 8456675.0, 8457145.310842874, 8457149.729353918, 8457562.845679786, 8459278.838181635, 8459415.474548558, 8461180.384468397, 8461221.875, 8461616.087259997, 8461625.186819814, 8461919.956774576, 8462159.375, 8462269.032614058, 8462271.875, 8462276.038772596, 8462284.559724173, 8462304.6875, 8462312.5, 8462439.641037798, 8462478.034603877, 8462526.513361197, 8462545.498472957, 8462593.75, 8462631.167962959, 8462701.246369686, 8462702.525557885, 8462706.758033928, 8462740.854143154, 8462751.422523405, 8462763.090785524, 8462816.238266427, 8462936.899167191, 8463059.375, 8463108.56175093, 8463177.705968782, 8463247.182474297, 8463259.672551071, 8463282.048195325, 8463406.293586185, 8463532.8125, 8463542.1875, 8463559.081891585, 8463707.092964826, 8463721.875, 8463743.842636405, 8463817.41802625, 8463827.955096953, 8463864.931224488, 8463882.73236678, 8463998.371453948, 8464506.25, 8465489.0625, 8465513.80640072, 8465534.375, 8465751.5625, 8465757.8125, 8465888.240491675, 8466391.990331167, 8466964.0625, 8467043.880160283, 8467085.513772849, 8467115.18185224, 8467164.0625, 8467212.010075402, 8467289.956363747, 8467319.532138012, 8467517.103412477, 8467604.6875, 8467662.064154996, 8468000.817247042, 8468005.40078152, 8468329.1282689, 8468520.155691294, 8468623.706907123, 8468623.794073997, 8468981.25, 8469233.291835848, 8469375.0, 8469400.860637031, 8469405.134154925, 8469484.375, 8469662.537535818, 8469712.184067069, 8469884.678022994, 8469908.347739303, 8469937.866503153, 8469947.43544289, 8469964.965609513, 8470003.016539836, 8470026.019961322, 8470083.30647099, 8470148.4375, 8470207.365949316, 8470274.497963684, 8470277.39528097, 8470424.997434601, 8470431.440752082, 8470456.312924102, 8470532.8125, 8470564.023374474, 8470595.256012125, 8470659.375, 8470682.611009955, 8470849.500659477, 8470878.498582415, 8470948.39885904, 8471024.744117877, 8471132.696246551, 8471203.83037954, 8471294.590702444, 8471301.57042824, 8471339.0625, 8471457.988355527, 8471482.8125, 8471507.8125, 8471545.90047903, 8471611.150583137, 8471645.481108798, 8471695.301901212, 8471722.836853774, 8471737.195911169, 8471797.827492857, 8471825.0, 8471906.86220536, 8471941.195060538, 8471986.676930487, 8472115.27488377, 8472251.5625, 8472254.174629247, 8472272.762398243, 8472329.602656394, 8472339.0625, 8472405.504768344, 8472406.25, 8472407.784222651, 8472422.187033677, 8472426.5625, 8472469.810734387, 8472509.273430614, 8472521.203644779, 8472546.04399449, 8472583.150780637, 8472621.475133514, 8472646.875, 8472714.578692246, 8472745.986978749, 8472808.616550284, 8472810.9375, 8472960.035004308, 8472961.376547642, 8473055.910760827, 8473135.307529842, 8473192.598847255, 8473222.48194501, 8473235.003445202, 8473243.707714783, 8473349.18564006, 8473374.263461024, 8473445.3125, 8473478.352773387, 8473710.007226761, 8473737.320588348, 8473848.027755199, 8473859.730466612, 8473874.936396083, 8473907.8125, 8473918.639396226, 8473984.375, 8474020.3125, 8474026.304154051, 8474054.052750366, 8474074.17150988, 8474245.3125, 8474353.125, 8474355.453904497, 8474374.204383813, 8474425.0, 8474440.665774394, 8474478.125, 8474576.37291565, 8474585.570212383, 8474600.0, 8474640.496855484, 8474662.482144492, 8474823.734293772, 8474827.228353994, 8474870.3125, 8474946.117693398, 8474953.125, 8474969.619172962, 8475187.981372068, 8475232.796342682, 8475449.36437273, 8475646.446536077, 8475660.638656292, 8475878.125, 8476059.02682436, 8476206.919578157, 8476215.11943275, 8476289.0625, 8476960.769870576, 8477012.5, 8478187.320842776, 8478204.6875, 8478226.973385857, 8478320.3125, 8478341.545038806, 8478432.790966716, 8478450.039120432, 8478525.53507076, 8478537.26228588, 8478805.584613342, 8479360.480356958, 8479482.8125, 8479488.402474135, 8479605.611552084, 8479771.570301048, 8479837.5, 8479890.625, 8480003.125, 8480797.447742086, 8481306.25, 8481875.483062934, 8481963.948616687, 8482166.124551777, 8482663.23025771, 8482902.810776068, 8483465.442619937, 8483514.474462118, 8483878.659108102, 8483898.25128835, 8484218.141155185, 8484402.369371818, 8484488.689828005, 8484707.00888727, 8484951.54431616, 8485477.712172588, 8485629.6875, 8486514.0625, 8487669.137028296, 8487815.153181927, 8487947.52387926, 8487990.541421274, 8488037.522451082, 8488096.225964526, 8488120.3125, 8488248.167175135, 8488928.477457916, 8489309.375, 8489823.844825238, 8490117.843505835, 8490581.25, 8490838.106024979, 8490853.979971997, 8491145.3125, 8491448.180833677, 8491700.0, 8492306.25, 8492316.995602043, 8492983.79668432, 8493092.1875, 8493092.324899383, 8493565.625, 8494044.417781822, 8494767.520624073, 8494814.936163802, 8497025.026683532, 8497375.68156583, 8497443.75, 8497856.410117371, 8498476.646492252, 8499105.893302726, 8499940.915734502, 8500529.462029444, 8500837.610737639, 8501646.875, 8501756.25, 8501818.898909278, 8502221.990506077, 8502477.732768057, 8502783.570549294, 8502856.262653962, 8502999.237775207, 8503026.5625, 8503885.088355305, 8504035.601572873, 8504184.375, 8504404.17450523, 8504912.051300833, 8504912.406118335, 8505207.475037549, 8505372.97124402, 8506703.302094493, 8507079.299931405, 8507292.1875, 8509365.090032533, 8509407.654760892, 8509901.207015324, 8510104.13677153, 8510111.014040891, 8510136.307657978, 8510139.03880436, 8512563.800184, 8512913.36672146, 8513316.85475347, 8514198.15666305, 8514206.271813506, 8515324.673981018, 8515385.326428808, 8518704.72988736, 8533979.6875, 8536437.50440414, 8541500.937456567, 8542600.964309292, 8542835.908440992, 8544274.498358032, 8549954.633345272, 8556237.5, 8558073.245834796, 8559764.0625, 8559988.568255037, 8560241.843499394, 8560242.03599028, 8560475.925918868, 8560590.573252572, 8560607.990648443, 8560646.229404474, 8560807.776248435, 8561132.8125, 8561158.657476444, 8561245.3125, 8561529.552977625, 8562293.631369784, 8562508.810395585, 8568348.330549357, 8568874.221935896, 8577346.072963737, 8581412.5, 8586032.082068784, 8589474.339049244, 8596458.040407995, 8602152.664162902, 8602829.717390783, 8603274.2463725, 8603277.714291813, 8603642.908499476, 8605140.625, 8605312.466168325, 8605779.275591932, 8606418.438565569, 8616501.034977412, 8624864.98495118, 8630748.4375, 8637605.879429964, 8639835.44273332, 8643445.539667448, 8644379.367797522, 8644712.911758661, 8646176.23283725, 8647187.55807122, 8648032.067836585, ...], [89.86886791784178, 7.7600799979325945, 19.71114990059022, 38.0580198336311, 59.140257745811205, 17.888731563541526, 26.61207523033, 73.15879703319725, 36.73630703209435, 16.83145614489966, 75.24187194381028, 15.322096038931345, 32.992644859809744, 38.73419028605576, 51.42285613744378, 13.950390255777837, 54.8165696041688, 65.55821871865342, 11.351727555728413, 67.89081646774122, 9.56547113271457, 115.42395237396185, 59.29690440677685, 11.095432081991886, 24.301734563132243, 55.8384403586164, 61.667734051442004, 52.48600917831639, 20.018130246101293, 6.5778587335254, 49.75402446202752, 9.218383609866274, 5.321420234557802, 43.853238569241334, 78.53440097764278, 44.49350996815492, 9.454760529556024, 5.825687336763312, 63.77536797114984, 67.99282915950731, 24.171116622022154, 5.9471377546186, 11.565299942224428, 33.307171130206186, 6.5837745379078365, 7.388728018058607, 39.98601194485804, 29.478294266821738, 22.18590376243031, 143.88917789971424, 9.126886975337777, 6.922047410623791, 10.39705795827564, 29.308750510269384, 22.709274808001684, 25.079878552431573, 43.72240237884423, 76.30055515335272, 26.299702077062086, 11.50235543062775, 15.728266819884706, 38.993127201630536, 34.090502034043375, 7.6918467762390605, 19.84569229553207, 5.818310961989052, 117.62956389952234, 10.919005630648488, 61.327125477932334, 9.951277263597866, 116.95083861368857, 62.63584604825431, 7.22087514469328, 15.72183691081441, 8.46104531956437, 6.696359968238003, 7.219763109376915, 5.033825315611351, 31.696125757541104, 9.918233233526147, 107.01842770442033, 24.6493863270419, 5.639778705898386, 19.18132438690545, 9.315338932553674, 24.524849684591278, 27.934004838588727, 50.86864921466213, 5.586935572979908, 7.79370664339263, 135.31634050921835, 50.19989159238277, 21.334059049452186, 18.264922557901095, 158.63378074065758, 75.29647563380883, 6.382171351311343, 53.41217558053119, 76.96516027541888, 5.559831454136989, 18.42481145266906, 5.047253841418837, 80.16396536322327, 60.75269651704859, 78.25843390436545, 8.031421150577838, 18.333168146835003, 22.76395002065741, 15.372443759913244, 5.699562226399009, 13.347245531905866, 16.24497433458189, 78.37560925892171, 15.937487690801227, 38.2834758384931, 111.97158251648905, 11.987078167692127, 5.476212669661989, 60.81925056636668, 123.19542143777777, 10.795026997168055, 47.86743136279519, 61.296724540088476, 10.87136545941468, 92.59779592980775, 181.23516338785936, 12.807605069071004, 25.820268977571548, 28.332843173429296, 52.702021261072595, 22.015577439012176, 19.392918154060844, 32.25186373500792, 13.153822154674467, 51.02822409570688, 8.408372572191308, 10.112313157007051, 10.256837404773197, 59.762581336044235, 13.969372188928366, 8.581148865198498, 5.27907192572608, 71.88468599280633, 14.467775780459606, 57.7477930576598, 23.68356731073143, 49.49631845759162, 24.24419503017732, 124.9586390276263, 31.82810941860779, 60.23894542467629, 25.756483382086838, 15.194866467994563, 64.45177331147444, 52.59066351185284, 123.07744978910391, 7.760744013245813, 84.85216719120089, 75.8471210338257, 35.251912016304466, 82.23596163847293, 58.398036498075285, 38.15062096670715, 21.897483018975063, 49.81574582543863, 9.578061834761185, 73.16868273863909, 5.823870988030479, 97.16643863594193, 13.05343240064556, 7.065099099941546, 9.239945400101954, 68.87845962430231, 48.3658601204818, 8.481061590499479, 47.71777966960347, 29.13213540367712, 55.885125589075464, 72.98408125120984, 11.978087135769933, 6.39115566063436, 28.244118835460416, 31.557419881699808, 17.40665127759623, 58.20275129278885, 15.3312562132226, 57.0502539862225, 22.29630249873507, 57.09581188513374, 76.36311356700074, 31.886518086215126, 54.883894933446165, 5.481332505324148, 50.21104215088221, 13.390078552099625, 16.64504799785621, 28.66864185887117, 33.5061007315928, 43.858373933962774, 45.70252003953057, 8.457959553775549, 5.7090050258286364, 41.105748102184776, 9.882062959500784, 37.05470701680418, 73.73532183461948, 10.57385208405526, 29.034555965748545, 105.08582792523492, 17.50346303531914, 18.45274833972848, 28.42265326250186, 60.4226747455731, 27.960071567916756, 78.72539644465853, 25.000773162683746, 7.008508482357763, 6.788916337114379, 16.975614560994178, 63.53879264169907, 59.698132004974774, 50.18285400084669, 51.3234487854782, 23.700076321271183, 7.548445922495069, 17.949872516296477, 112.17283373119152, 27.167342560898845, 7.032285984260569, 57.5828162756046, 26.5546451188543, 51.95711199799776, 24.582456251484352, 5.866208182453743, 7.426456677810213, 16.850488995821017, 66.35608992750619, 60.83135127835594, 77.59726122693033, 30.189069953246076, 74.79949857790668, 60.90367243604051, 34.995665620286594, 16.91818798298006, 42.32947509552504, 74.77731050088053, 55.82532585105229, 18.163923367655176, 43.34246167607548, 29.269209618866466, 77.85878665282999, 77.45641744912164, 68.81186818987874, 24.17429199634901, 81.5278180498766, 56.339640952279446, 74.98321114253642, 43.10341879601834, 23.14748913266759, 12.49303578307134, 108.16591219963313, 63.043304600430425, 54.55759890333339, 25.47283507878433, 43.53998324873522, 20.83120104472171, 16.077525295540724, 20.15894061098512, 116.50512125640103, 5.653489176890805, 7.653479564757811, 10.531425713699337, 27.781994211225808, 69.06835210190349, 25.161765355574605, 52.941487059439865, 12.875057145787444, 9.313750655069688, 57.313292688734556, 10.823586846435546, 90.27678238721167, 5.879576010833627, 5.143727645767909, 42.89341061800043, 19.820097065668993, 56.4737968216961, 37.33192967649994, 8.587220747513056, 51.22329036973544, 42.35965209916303, 5.594731316230592, 9.490242375127776, 68.27364981995345, 12.329697586856652, 64.66771707552238, 77.87169233407435, 72.67801998361482, 165.62824949037554, 12.782469061471714, 7.4597832782988815, 20.784193603885072, 41.793399070198376, 128.22019543418966, 30.5755086222981, 21.370436092252632, 60.29358213782663, 64.893116321483, 10.963946095312238, 31.399001148568303, 49.99326398425938, 50.472786739116906, 8.234481737126135, 24.534989721286784, 14.743837288798405, 37.833800401514765, 70.04930905194665, 20.43622026546672, 11.322249204460128, 24.611236401786506, 37.43003243694203, 22.842851093088633, 27.276794135286693, 67.6939815216482, 38.55977135921148, 38.72816413431057, 74.15659651664474, 80.30148540582745, 5.212826140338077, 5.457119760718802, 15.389979986040053, 57.44803147973026, 12.534069127170223, 13.834406610872175, 10.459826419487209, 51.707138804849066, 28.819983767901128, 84.51776802352659, 41.58203314275397, 5.662585634658394, 61.64270920168639, 10.690964511968216, 15.187544211015815, 31.24321830102332, 5.7380455551016265, 31.329318128003248, 13.429778038492149, 47.950394765652874, 33.25889500286236, 14.426354284670332, 29.6944830866205, 10.33290269951192, 50.442646013140454, 27.295063376722418, 6.669015926245653, 115.04291075191769, 21.028842251314035, 23.440492230261267, 6.573745056666032, 5.668853284575329, 22.473117250689615, 21.05690348066777, 30.47116261040985, 8.609592666041435, 103.62088629268538, 24.4450146990105, 107.29836615063674, 5.289121763403963, 43.17298742007751, 27.113754893317967, 62.82870099071326, 9.812901736138015, 9.266339286065268, 96.15862480224916, 43.32234301547922, 28.80420810369813, 22.088647002907795, 14.1472187345041, 76.02167011434207, 40.127717857161755, 84.76649864542487, 8.627807103671485, 35.57670488801051, 10.96920066914963, 99.15650536643483, 83.64305351188021, 9.478876513384753, 36.62067798217692, 15.671989814191626, 59.08741744272949, 22.96695746293056, 10.842702000026474, 73.4136872187097, 64.14217664985235, 77.83370477320825, 8.690619712011298, 140.03199579285348, 44.970458567854145, 14.084351145029753, 8.758260405177717, 38.01413293685004, 9.88295935955298, 78.87551365423998, 15.023159506512766, 85.52503226093721, 96.18607486889863, 20.91614957802183, 60.22415790464678, 58.89410855829926, 47.912124335486865, 57.62225881160629, 38.980952783750865, 14.4816363155611, 69.84265193844075, 26.53601333626134, 219.04473869044358, 23.31271321600353, 56.1812976644816, 23.064992476504866, 56.03828121629218, 27.582505915040166, 9.836977986820777, 39.72388500945945, 57.14481934718302, 9.462948774208325, 42.350392169192546, 7.954518113452389, 19.64474780884996, 33.111168578544955, 30.24188647887994, 8.81114362655024, 41.77277377531535, 10.597502394292677, 21.946675541330627, 10.65486039481493, 37.95829529325524, 42.750335596095915, 14.244726776847399, 16.592241515795124, 62.670016363955256, 76.14532980814124, 5.708306400411169, 8.9677120846108, 5.1865608764273015, 8.824874367558085, 30.183105226346214, 8.082222126346847, 14.289797084881394, 9.806728555570585, 61.738890826048454, 19.26036559820304, 26.839405118545262, 64.72308987695882, 77.9548908411534, 50.280298009381056, 17.577715407654445, 27.314028095886435, 47.009354908985124, 18.836293700214295, 9.026756032766702, 14.912439012044427, 76.9735523273481, 72.30632297708502, 43.35744137264317, 11.68273936531918, 64.55450889585514, 42.67142384637977, 5.071689863613262, 109.7527569695601, 27.798756496679243, 40.82679500562847, 24.39781686214591, 33.58528584789221, 20.3526558920208, 9.217230555066234, 17.2208723006841, 25.56599795524172, 24.113489909040304, 81.9342842089057, 5.348319911518483, 17.49828271175258, 61.849868939487564, 36.45496135372484, 169.57333559074607, 48.566988861537794, 10.174545883721166, 25.74494543319708, 10.789533793915695, 98.2095694878626, 45.772077772535475, 87.64550624795699, 26.67428920384464, 44.66901174638664, 72.05853062098146, 80.1038542421121, 20.72439237331499, 23.854408124933965, 10.17705627378145, 10.861876949408236, 10.092625773438842, 12.583978726727873, 7.49040743022869, 5.074145616762375, 33.949013260334944, 15.720910308456759, 78.34506049718213, 118.16616934653646, 107.7865698156319, 34.1564207616154, 10.130207941674616, 12.474954081348477, 24.823743912917536, 14.393867968220643, 54.13175997460539, 11.106500579336545, 5.073955398563342, 71.04147378320667, 39.25561254386982, 43.876355632473945, 6.195682119293065, 33.98008824260965, 109.20084151698053, 11.409566281225604, 9.536370793771084, 36.70568746375607, 66.27910720025001, 123.85964997601448, 5.674267729157487, 43.07899859926359, 68.37745745279224, 5.669592320192875, 26.121909579614886, 27.66648299275461, 73.52399967990223, 101.29620043857733, 8.054030571109712, 20.317327114861197, 15.198863250349826, 7.497830700461034, 63.277655654542684, 20.737470680103893, 60.60890118323938, 12.71645281033483, 88.77026905494095, 26.84722692870636, 5.163711568671354, 7.202417292423553, 45.97692927242075, 5.85390698172147, 5.662940256281647, 19.285799935936005, 42.275334394994374, 49.45376493422212, 37.919035731757916, 101.15561662156094, 23.618530068268633, 60.3464693182659, 65.18909587067168, 94.2621294803526, 19.264625906985344, 44.257663402055755, 47.641445534377205, 88.62915070730988, 8.686868462997957, 12.794098315529155, 12.850956538284594, 64.92184926146395, 28.241976323857823, 49.43237954375772, 59.03390752336527, 22.78615434083897, 57.36467726975293, 84.14610792968267, 53.31600369954582, 8.096203906309707, 5.554997236544454, 14.163782684996958, 92.43134787063524, 9.544806047378644, 51.20705242834451, 5.829701511546663, 82.98274553290291, 71.54540680638559, 59.4429401095157, 19.558493242418365, 51.50692704330535, 82.16538029873549, 40.738515537315024, 57.62043865772209, 27.253052622100004, 7.13880330605202, 8.467705249739904, 32.89897897731639, 23.912468319556705, 80.87754542895712, 29.96009856539885, 14.682950776690175, 276.9760618786853, 44.57139552799733, 44.7254725619912, 28.245158123078784, 50.3455083779029, 9.406976073558576, 65.26735809155427, 56.16343706856145, 11.427027416840582, 29.57491646751665, 22.44493694682587, 20.446616548176067, 7.396757206526222, 16.756520518180814, 6.845132028978014, 5.332375184986495, 92.09670093628365, 87.58111744427241, 39.34307155320606, 6.28453248596116, 6.945607864185624, 16.74721187448972, 16.381676658867924, 13.725817950092544, 47.39162464426322, 7.70840644423008, 6.390554449955222, 10.927904753103814, 10.263817249834856, 52.054932977654914, 9.48865605970724, 21.315136907771286, 7.195633981724372, 8.858084763726223, 93.86645210593477, 21.97144745954651, 6.891461444007093, 162.8521973807852, 26.812078656379498, 55.416084332812254, 27.106365784619094, 5.335688294007478, 24.546513399063734, 34.6712026998535, 19.367763001991523, 18.782923969444106, 70.56757004503638, 13.693417630306069, 25.86949170476084, 18.48586490082291, 58.14553901233465, 17.054472148611545, 38.26368274760351, 9.047700981850701, 94.28115249088478, 16.140485138868378, 31.4318030366277, 8.924625561463417, 76.27724382266662, 47.113172936510594, 49.153117181409854, 12.17090443069443, 34.81054236276813, 72.77787965723928, 15.701123475593, 57.787044190986194, 5.201336887996049, 23.546862979790756, 48.86304386839204, 27.186388430584174, 11.505813105210642, 22.827171808123204, 16.063262147955378, 14.858708551868233, 5.151600856564135, 109.05131660744388, 36.926307008800165, 9.000556732836607, 9.605665155723685, 7.71452286212061, 37.92426208339258, 87.7300962794736, 93.73741220246863, 78.10539936638256, 33.68419531489835, 8.789055071684462, 72.43771591539027, 90.11714318074641, 52.20020220984199, 5.038692325800253, 6.950287384072091, 112.94216382107325, 27.282878325357515, 32.62660484842296, 39.22329011418862, 76.59988403692012, 28.74595423994417, 59.133807178148615, 49.256545741888665, 18.13416060985266, 59.55145577536557, 119.05089674593715, 9.443940633926418, 38.112534249915264, 6.419797508015763, 41.062640394743376, 21.594199994362455, 26.63242933083817, 5.758411608923807, 14.630409065897453, 47.11694111872161, 73.91974771048957, 108.89305978771267, 18.40397354408082, 20.921909700786163, 10.891142428555025, 5.210340362081327, 21.59738455162661, 73.68979755535823, 6.5649515496707, 30.23876842225457, 8.800960912437548, 102.20919419468856, 59.08813657144577, 5.942681050180254, 6.438680746284377, 8.453596231741757, 8.591467075781441, 6.838950451796818, 62.140325355447835, 10.953579792359484, 30.42667307545788, 62.7213046573772, 11.998856555644855, 58.59727621386394, 13.474854275286289, 6.037402790535056, 6.179205225099645, 40.43000979302368, 5.2505156010307, 27.604134329714988, 57.64235003024072, 23.282099752642218, 73.56315879641234, 50.3490777179449, 14.963503033211495, 18.692554419295796, 90.48584037472907, 41.778069507023986, 30.32076644155605, 10.950730442323815, 12.44394869470384, 28.4922262487328, 5.940096261891057, 75.17620088019031, 6.515016051477914, 89.75092188092133, 33.3608932168219, 5.051593680778314, 15.821039648494857, 59.95452900003767, 9.322457351156377, 49.03974738441765, 23.698652629006876, 20.461691405303554, 131.01417027680822, 40.485171719100485, 37.330398912146165, 18.77995768072714, 23.131011105208156, 33.41452426569142, 20.200824710253062, 7.959162822539369, 9.26067888126821, 45.97196605411582, 13.12703772309403, 82.62133270751016, 14.834813763182105, 9.609958846179133, 29.25779791056295, 36.129245314677206, 23.016058697756012, 19.938616914866635, 7.327999862244405, 64.27876596105149, 26.42560983909668, 82.49803699181103, 236.58781356048917, 6.5982881950633745, 74.60440268893, 39.903130924209435, 9.959667094065507, 9.732449234459938, 25.56549551151977, 5.5801180975411615, 16.781378936807254, 9.903375926655063, 18.035726906187573, 48.60502807408742, 26.063536132734612, 23.58462464025464, 109.28259018650743, 32.08680110372124, 26.68656781495948, 9.184172021105388, 25.318015411310512, 6.836610177094266, 7.58039409082327, 71.00650650028162, 120.03785668942531, 45.81338301959137, 40.05816385529695, 21.977958124115613, 38.26013029649576, 80.39720064284772, 68.55407873966305, 46.11684819209867, 164.3668525890495, 42.763179174966396, 72.27657967181082, 11.192043569381202, 98.55311994376623, 38.55091678762869, 5.908045640269222, 54.495507934356226, 5.8045591225797795, 17.576970170944136, 45.837017433483794, 56.43948230112197, 46.83317139754551, 7.922964506814521, 38.57182285796153, 47.54393875318716, 75.41897499427644, 28.209041089885396, 12.9693341365839, 22.237680573119945, 99.82445788932839, 71.03361364436364, 13.76202304832188, 18.302431807955024, 65.74441488489164, 32.38750274406163, 25.602902204922227, 95.9794260492001, 5.923953825283902, 31.890219322503306, 100.94476041948158, 63.8841968827902, 25.438687648818604, 54.257469149462864, 233.49454246783813, 183.11936388508846, 24.580355735958072, 19.988012018052178, 14.183148265670543, 50.06197350984654, 39.246870955935265, 20.21490162919611, 13.992376436408815, 73.94919359901401, 77.98681499250236, 55.32449928821482, 83.06603080250693, 60.10694247924085, 15.862881659597853, 62.15676427461807, 12.009977229204477, 55.557466762249874, 111.21237751382286, 5.923678593333042, 36.76419875640131, 28.318922747636442, 78.76352970770603, 13.037513545552418, 6.012894092459728, 10.591213020194827, 16.545019957607693, 28.16996518479655, 22.409122110527903, 125.88660892112414, 62.74530449589151, 32.26685222410397, 10.46246462282201, 20.834563945147693, 9.261718556280547, 5.2039942802662935, 10.245070315305336, 31.42470656898626, 118.72612462844872, 68.95480561694315, 105.19015541382464, 8.51440070079797, 9.955385440476082, 48.83469304278856, 17.894599921210993, 6.181762724930139, 38.8964941481633, 121.18235301966445, 81.97765226038477, 87.71077853285615, 10.840445281728632, 10.329946356262363, 51.43375476702447, 15.492416385041526, 100.9319554481104, 28.268744314437154, 8.470961636650014, 102.91614769609882, 8.300738609049139, 7.312932492694328, 108.07602347767792, 9.47056333216247, 6.096877441694431, 23.052557437629716, 55.15146622044371, 83.70762665142597, 5.713842077938539, 73.81654513341292, 104.00003830987283, 9.460570332222469, 5.2946685430940725, 13.631216828669974, 37.225308303397405, 63.80593333109509, 19.223332549073884, 75.78737972902671, 5.568733389883459, 43.298856532975705, 49.023251074049014, 27.181436134268417, 38.977234378103375, 22.504927058501323, 5.789425866127941, 101.88534345675706, 48.396991035042575, 137.9252600731215, 80.99909662089509, 10.383187856559267, 14.372538027555098, 13.740067873085092, 10.363720663405191, 60.3930705214627, 5.174072912971867, 60.22799925465959, 23.57111376831576, 113.0091061086112, 10.644600592620588, 7.5047266797226975, 11.161974757018925, 23.423979093619348, 6.969579047303097, 15.105569514531126, 102.95158672975654, 175.4788361511767, 33.81363896403319, 6.649683001206173, 16.27351429328325, 96.76315941596593, 35.267247079508785, 91.31702342312225, 25.240776054507663, 52.49256135759646, 10.434073328170362, 91.4338439531017, 6.072483989340689, 86.24823098336506, 27.540896784073002, 52.46969570446743, 27.468984673912864, 35.44526477928352, 39.555251918782204, 6.1806098664875995, 83.16088373038502, 10.923754280841914, 10.947208377803893, 20.871968517455414, 34.618833320018226, 5.874394957588014, 18.93020890256617, 53.677507143006856, 8.781745956350418, 12.905844304994039, 28.000169631138753, 7.005361101772067, 15.056676314608517, 38.5687060619716, 22.432610685913282, 18.650816193772243, 51.93194817195511, 79.3819121362505, 130.17171744262203, 56.49844328827787, 161.2867252963895, 22.32443989528935, 42.01638409455521, 29.72752690006557, 78.9109167790254, 96.34260489265344, 23.502290520953697, 57.518546623986225, 21.674210211701634, 26.793911428569118, 19.35640947480763, ...])
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);
([2602535.7554752277, 2982395.7262802343, 3165521.192819703, 3214351.5625, 3323510.9375, 3347641.230082587, 3347648.4813863253, 3408007.8125, 3541525.0, 3547788.416376268, 6032476.396131112, 6037675.667023654, 6068991.938067779, 6091304.45738548, 6096546.4337086035, 6097138.775661306, 6129344.880234453, 6133043.75, 6147862.638744842, 6152812.5, 6153209.639429963, 6153869.08085318, 6155531.15042241, 6156293.981198225, 6158530.991944814, 6158540.625, 6159026.913690035, 6159076.5625, 6159107.150734168, 6162798.993079327, 7643798.4375, 7646856.113242724, 7771833.764250814, 7797706.25, 7815087.5, 7938101.5625, 8005623.579872918, 8021722.031978209, 8022982.704675984, 8038777.060818015, 8047012.23221215, 8065532.900862186, 8065539.325511583, 8065987.5, 8066039.652731644, 8066422.802732012, 8067048.4375, 8067926.303282587, 8068182.379254662, 8068512.13471536, 8069012.247802286, 8069227.307932788, 8069352.601200257, 8069355.855195964, 8069582.426345659, 8069673.234886107, 8069912.5, 8069935.348875577, 8071417.063890163, 8071697.1021572575, 8072143.942159393, 8072168.75, 8072426.5625, 8072506.48852151, 8072569.629813372, 8072667.245858642, 8072847.730714742, 8073126.424746222, 8073635.9375, 8073852.214663633, 8073930.392704686, 8073945.3125, 8074014.427686927, 8074018.293158237, 8074165.940966236, 8074179.341595906, 8074184.736241638, 8074240.161903533, 8074663.625331882, 8074897.496053262, 8075198.4375, 8075452.892239287, 8075608.268489946, 8076194.589854469, 8076351.543440277, 8076492.3768046275, 8076596.844436356, 8076776.375672277, 8077238.561867223, 8077259.872606447, 8078743.75, 8078943.75, 8080127.6089077, 8080969.611827414, 8081392.1875, 8082121.35564078, 8083016.4838660965, 8083415.163853294, 8083418.625919221, 8084297.414136566, 8085623.155745764, 8086030.023608287, 8086062.5, 8086128.125, 8086368.75, 8086644.796677325, 8086918.350012673, 8087061.791841414, 8087418.8586459, 8087931.136337799, 8088008.882722322, 8088130.64998628, 8088157.8125, 8089176.801372881, 8092634.6095753675, 8093853.268692177, 8094162.988042447, 8094250.332308266, 8095259.375, 8097242.545939701, 8097863.838698663, 8098670.280565922, 8099544.678813265, 8099624.829567734, 8100498.4375, 8101268.158251954, 8104518.049117573, 8104531.096408929, 8106914.052719621, 8107067.1875, 8112287.050827991, 8112960.753709551, 8113717.1875, 8113890.060887958, 8114254.233134516, 8115750.223427685, 8116505.486181683, 8117721.235890085, 8119082.8125, 8120399.719209241, 8120852.080882536, 8121923.043561728, 8122878.125, 8125284.244898775, 8127998.4375, 8128034.790858529, 8129350.0, 8129591.92517314, 8129778.125, 8130660.9375, 8131998.786922509, 8135801.9533626335, 8142568.814920243, 8144670.2740424285, 8145673.4375, 8147460.9375, 8155926.97795146, 8171839.0625, 8172414.96984684, 8173598.4375, 8173834.375, 8174032.157357697, 8174722.842303613, 8175145.421637851, 8175164.0625, 8175165.902984525, 8175253.981963218, 8175270.445285028, 8176206.9087035, 8178490.022348152, 8178879.468698225, 8179467.077319798, 8180459.268850795, 8180464.0625, 8180967.538015254, 8185001.5625, 8187192.218603419, 8188573.4375, 8188584.188070158, 8189175.483504593, 8189219.671931526, 8189302.264388071, 8189350.0, 8189352.087275749, 8189776.439630868, 8189829.786129912, 8190185.9375, 8190541.76441634, 8190550.0, 8190578.125, 8190777.68958577, 8190853.125, 8190917.635568625, 8191026.5625, 8191358.898214717, 8191495.69758567, 8191642.1875, 8191659.35806655, 8191710.9375, 8191968.75, 8192028.435610207, 8192451.597748996, 8192584.92163068, 8193438.08657457, 8193573.4375, 8193763.785092773, 8193790.239197506, 8193854.6875, 8193989.0625, 8194114.603874918, 8194118.505980205, 8194620.307304636, 8195273.348881049, 8195737.470816114, 8201910.61211523, 8202224.7919406565, 8202291.739684937, 8202536.063457854, 8202952.01028451, 8203167.1875, 8203502.311721234, 8203596.875, 8203987.5, 8204459.437963551, 8204492.033424705, 8205109.98986127, 8206117.4963125, 8206846.802446538, 8207613.712079914, 8211133.260516046, 8214110.108475212, 8219069.14506506, 8219076.90726925, 8219655.369266251, 8220274.483264209, 8220709.799441451, 8221701.5625, 8221806.894091889, 8221890.7738866275, 8222123.323755485, 8222401.5625, 8223409.821073013, 8224319.933589078, 8224712.937128821, 8224779.6875, 8224802.471562721, 8224812.5, 8225178.968974746, 8225213.94138317, 8225467.1875, 8225506.3824845385, 8225640.305815144, 8225695.3125, 8225841.919950274, 8225872.874076886, 8226026.5625, 8226064.4042935595, 8226290.625, 8226316.838759043, 8226439.789782202, 8226490.03489575, 8226866.233579786, 8227012.5, 8227382.239707825, 8227456.189918499, 8227536.947965232, 8227723.30446966, 8227829.042479576, 8228207.8125, 8228538.191649867, 8229047.0118074, 8229429.269299732, 8230152.840950867, 8230434.4534300165, 8230560.740479448, 8230573.47723944, 8230808.701633928, 8230809.354049151, 8230889.0625, 8230890.421312227, 8230907.8125, 8230913.348848198, 8230914.671188547, 8230916.754764371, 8231022.75166835, 8231059.375, 8231171.875, 8231330.215812025, 8231331.25, 8231562.5, 8231596.520546242, 8232112.682062199, 8233196.875, 8233850.653358966, 8233987.767540493, 8234167.662584728, 8234621.875, 8234876.5625, 8234933.663751199, 8235308.960152931, 8235536.925872559, 8235707.962397251, 8235946.875, 8236110.9375, 8236115.461232477, 8236121.396779577, 8236728.125, 8236801.455142244, 8236846.175442794, 8237008.9144753115, 8237060.9375, 8237092.087669923, 8237192.428959318, 8237195.2596533755, 8237420.2059987215, 8237707.8125, 8237912.932844885, 8238254.808496166, 8238665.720943122, 8238840.625, 8238867.106008016, 8239158.372047507, 8239873.4375, 8240110.9375, 8240245.3125, 8240403.125, 8240627.118719898, 8240634.740165734, 8241038.953787909, 8241081.362887705, 8241285.9375, 8241288.2453900045, 8242060.613182029, 8242079.213606718, 8242476.596221381, 8242950.0, 8243306.722268165, 8243333.315652226, 8243938.345313848, 8243977.972522778, 8244212.2013820745, 8244590.688086528, 8244815.203189469, 8244909.855639167, 8245839.0625, 8245922.9749434125, 8246057.8125, 8246183.660767538, 8251199.857942418, 8251374.304932861, 8251772.861611501, 8251830.942796629, 8251899.2947004065, 8252101.070027673, 8252257.8125, 8252365.844890518, 8252427.800317257, 8252448.9688751055, 8252507.199970724, 8252589.72132138, 8252599.45513262, 8252619.7487731315, 8252925.564653814, 8252930.597134, 8252934.608572942, 8253093.75, 8253270.248738466, 8253317.1875, 8253410.919332447, 8253423.4375, 8253441.144379838, 8253465.547036453, 8253578.356366092, 8253598.78779325, 8253828.125, 8253890.408932103, 8253956.024737045, 8253983.084323285, 8254039.0625, 8254098.020207761, 8254163.093962202, 8254205.211459151, 8254210.833669342, 8254344.861345756, 8254496.213431446, 8254959.544408196, 8254981.0544081805, 8255031.429299929, 8255033.615925693, 8255122.340489172, 8255366.997175625, 8255475.0, 8255537.5, 8255581.25, 8255694.443151581, 8255854.171640661, 8256125.0, 8256181.911863411, 8256621.109313952, 8256696.875, 8256719.337434483, 8256730.4513938995, 8256784.3962581875, 8256961.061157036, 8257159.375, 8257367.522462204, 8257378.125, 8257481.25, 8257518.59759899, 8257568.047307351, 8257710.9375, 8257749.873877831, 8257985.9375, 8258060.82819138, 8258134.651939036, 8258541.061644216, 8258817.1875, 8258866.83184951, 8258968.75, 8259436.6827118965, 8259500.542963246, 8260170.778535077, 8260448.4375, 8260561.089080888, 8260773.4375, 8260897.751942293, 8261236.933518071, 8261271.875, 8261823.775688666, 8262421.18817694, 8262685.160438297, 8263201.194566842, 8263272.981797672, 8263287.174848892, 8263407.8125, 8263458.577597838, 8264782.61683526, 8264815.999756516, 8264885.9375, 8264921.875, 8265582.8368020225, 8265615.161102911, 8266246.20005969, 8266305.583349248, 8266775.0, 8266882.404979137, 8266932.6303202165, 8267138.013299586, 8267166.89226121, 8268200.805193691, 8268243.593578225, 8269223.4375, 8270041.423859517, 8272779.359397702, 8273183.366080705, 8273194.9559425125, 8273693.75, 8274179.2995294975, 8274623.053806578, 8275971.867352073, 8278895.3125, 8278904.451361137, 8279392.1875, 8281505.015764622, 8285965.625, 8294828.125, 8294920.46553935, 8295442.644574709, 8295611.129341163, 8296455.036530135, 8297348.663314684, 8304082.577368267, 8304104.652985202, 8304737.361814854, 8305837.026171937, 8306051.392458615, 8308074.72787737, 8308498.4375, 8309136.12303994, 8309578.665492892, 8310093.75, 8311196.812473296, 8312010.669835899, 8312627.621007995, 8313477.41563855, 8314959.9530218905, 8315998.209809604, 8316982.8125, 8318243.270757691, 8319303.125, 8319528.023919308, 8320571.842486143, 8321029.421004715, 8321393.75, 8321490.26564515, 8321629.395572566, 8322352.417810922, 8324690.448002168, 8325694.531209026, 8327135.142171993, 8327394.9893811485, 8335447.161615316, 8339506.25, 8339515.815485631, 8339954.6875, 8351564.7494991785, 8355098.275231024, 8377271.875, 8386057.06446038, 8388080.4067448815, 8390007.361886464, 8390634.223496301, 8391316.466985729, 8397337.48639042, 8402326.838800544, 8402873.4375, 8404535.9375, 8406343.065713776, 8408421.287178114, 8416332.038612003, 8417220.148288248, 8418142.360639172, 8420628.357850723, 8421012.96621717, 8421249.562722672, 8421405.552286316, 8421708.852091385, 8422264.0625, 8422508.08760584, 8424516.587246245, 8424812.365425894, 8425450.58422831, 8426289.0625, 8427343.120996764, 8427522.970243512, 8428711.873462526, 8428742.253420115, 8429309.073848404, 8429318.838643277, 8431127.545761846, 8431760.868619943, 8431803.94872921, 8432237.5, 8433826.083893694, 8439670.241510212, 8440306.549305663, 8442026.5625, 8442236.462915186, 8442243.038761694, 8442253.933557596, 8442781.2698012, 8443939.283465024, 8444576.5625, 8444717.139429547, 8444905.64982341, 8444923.133721974, 8444976.547245055, 8444976.5625, 8445289.868257951, 8445567.1875, 8445585.117600933, 8445707.8125, 8445966.312308284, 8446119.212728035, 8446122.7543524, 8446350.0, 8446388.47597692, 8446390.625, 8446610.754970515, 8446780.870537946, 8446792.45904676, 8446876.185275855, 8447157.618866965, 8447438.684273085, 8447689.505960226, 8447774.779806385, 8447793.75, 8447829.929540848, 8447968.552800134, 8447975.210236968, 8448057.4026458, 8448128.125, 8448165.625, 8448221.156417217, 8448435.9375, 8448442.1875, 8448532.273975665, 8448609.714932628, 8448618.682280334, 8448659.440599881, 8448740.95249875, 8448778.125, 8448809.047101036, 8448883.05832671, 8449108.751912076, 8449159.305468904, 8449159.831867702, 8449215.401873337, 8449217.1875, 8449234.36070986, 8449248.4375, 8449403.213044448, 8449409.365553964, 8449412.5, 8449467.370912328, 8449468.75, 8449530.840401733, 8449586.888280574, 8449632.203094687, 8449660.600068135, 8449733.20805593, 8449740.343732761, 8449795.19332133, 8449882.8125, 8449903.125, 8450067.323478363, 8450125.848478848, 8450233.217319792, 8450244.369257215, 8450289.648064382, 8450610.9375, 8450623.719207225, 8450879.042728545, 8450995.180798162, 8451010.304258974, 8451060.240885353, 8451301.742799452, 8451308.856973028, 8452675.274880381, 8453125.944133287, 8453760.9375, 8453822.28707135, 8454186.546324447, 8454304.6875, 8454519.246127544, 8454527.53095637, 8455248.361485472, 8455443.566955358, 8455610.697345104, 8456675.0, 8457145.310842874, 8457149.729353918, 8457562.845679786, 8459278.838181635, 8459415.474548558, 8461180.384468397, 8461221.875, 8461616.087259997, 8461625.186819814, 8461919.956774576, 8462159.375, 8462269.032614058, 8462271.875, 8462276.038772596, 8462284.559724173, 8462304.6875, 8462312.5, 8462439.641037798, 8462478.034603877, 8462526.513361197, 8462545.498472957, 8462593.75, 8462631.167962959, 8462701.246369686, 8462702.525557885, 8462706.758033928, 8462740.854143154, 8462751.422523405, 8462763.090785524, 8462816.238266427, 8462936.899167191, 8463059.375, 8463108.56175093, 8463177.705968782, 8463247.182474297, 8463259.672551071, 8463282.048195325, 8463406.293586185, 8463532.8125, 8463542.1875, 8463559.081891585, 8463707.092964826, 8463721.875, 8463743.842636405, 8463817.41802625, 8463827.955096953, 8463864.931224488, 8463882.73236678, 8463998.371453948, 8464506.25, 8465489.0625, 8465513.80640072, 8465534.375, 8465751.5625, 8465757.8125, 8465888.240491675, 8466391.990331167, 8466964.0625, 8467043.880160283, 8467085.513772849, 8467115.18185224, 8467164.0625, 8467212.010075402, 8467289.956363747, 8467319.532138012, 8467517.103412477, 8467604.6875, 8467662.064154996, 8468000.817247042, 8468005.40078152, 8468329.1282689, 8468520.155691294, 8468623.706907123, 8468623.794073997, 8468981.25, 8469233.291835848, 8469375.0, 8469400.860637031, 8469405.134154925, 8469484.375, 8469662.537535818, 8469712.184067069, 8469884.678022994, 8469908.347739303, 8469937.866503153, 8469947.43544289, 8469964.965609513, 8470003.016539836, 8470026.019961322, 8470083.30647099, 8470148.4375, 8470207.365949316, 8470274.497963684, 8470277.39528097, 8470424.997434601, 8470431.440752082, 8470456.312924102, 8470532.8125, 8470564.023374474, 8470595.256012125, 8470659.375, 8470682.611009955, 8470849.500659477, 8470878.498582415, 8470948.39885904, 8471024.744117877, 8471132.696246551, 8471203.83037954, 8471294.590702444, 8471301.57042824, 8471339.0625, 8471457.988355527, 8471482.8125, 8471507.8125, 8471545.90047903, 8471611.150583137, 8471645.481108798, 8471695.301901212, 8471722.836853774, 8471737.195911169, 8471797.827492857, 8471825.0, 8471906.86220536, 8471941.195060538, 8471986.676930487, 8472115.27488377, 8472251.5625, 8472254.174629247, 8472272.762398243, 8472329.602656394, 8472339.0625, 8472405.504768344, 8472406.25, 8472407.784222651, 8472422.187033677, 8472426.5625, 8472469.810734387, 8472509.273430614, 8472521.203644779, 8472546.04399449, 8472583.150780637, 8472621.475133514, 8472646.875, 8472714.578692246, 8472745.986978749, 8472808.616550284, 8472810.9375, 8472960.035004308, 8472961.376547642, 8473055.910760827, 8473135.307529842, 8473192.598847255, 8473222.48194501, 8473235.003445202, 8473243.707714783, 8473349.18564006, 8473374.263461024, 8473445.3125, 8473478.352773387, 8473710.007226761, 8473737.320588348, 8473848.027755199, 8473859.730466612, 8473874.936396083, 8473907.8125, 8473918.639396226, 8473984.375, 8474020.3125, 8474026.304154051, 8474054.052750366, 8474074.17150988, 8474245.3125, 8474353.125, 8474355.453904497, 8474374.204383813, 8474425.0, 8474440.665774394, 8474478.125, 8474576.37291565, 8474585.570212383, 8474600.0, 8474640.496855484, 8474662.482144492, 8474823.734293772, 8474827.228353994, 8474870.3125, 8474946.117693398, 8474953.125, 8474969.619172962, 8475187.981372068, 8475232.796342682, 8475449.36437273, 8475646.446536077, 8475660.638656292, 8475878.125, 8476059.02682436, 8476206.919578157, 8476215.11943275, 8476289.0625, 8476960.769870576, 8477012.5, 8478187.320842776, 8478204.6875, 8478226.973385857, 8478320.3125, 8478341.545038806, 8478432.790966716, 8478450.039120432, 8478525.53507076, 8478537.26228588, 8478805.584613342, 8479360.480356958, 8479482.8125, 8479488.402474135, 8479605.611552084, 8479771.570301048, 8479837.5, 8479890.625, 8480003.125, 8480797.447742086, 8481306.25, 8481875.483062934, 8481963.948616687, 8482166.124551777, 8482663.23025771, 8482902.810776068, 8483465.442619937, 8483514.474462118, 8483878.659108102, 8483898.25128835, 8484218.141155185, 8484402.369371818, 8484488.689828005, 8484707.00888727, 8484951.54431616, 8485477.712172588, 8485629.6875, 8486514.0625, 8487669.137028296, 8487815.153181927, 8487947.52387926, 8487990.541421274, 8488037.522451082, 8488096.225964526, 8488120.3125, 8488248.167175135, 8488928.477457916, 8489309.375, 8489823.844825238, 8490117.843505835, 8490581.25, 8490838.106024979, 8490853.979971997, 8491145.3125, 8491448.180833677, 8491700.0, 8492306.25, 8492316.995602043, 8492983.79668432, 8493092.1875, 8493092.324899383, 8493565.625, 8494044.417781822, 8494767.520624073, 8494814.936163802, 8497025.026683532, 8497375.68156583, 8497443.75, 8497856.410117371, 8498476.646492252, 8499105.893302726, 8499940.915734502, 8500529.462029444, 8500837.610737639, 8501646.875, 8501756.25, 8501818.898909278, 8502221.990506077, 8502477.732768057, 8502783.570549294, 8502856.262653962, 8502999.237775207, 8503026.5625, 8503885.088355305, 8504035.601572873, 8504184.375, 8504404.17450523, 8504912.051300833, 8504912.406118335, 8505207.475037549, 8505372.97124402, 8506703.302094493, 8507079.299931405, 8507292.1875, 8509365.090032533, 8509407.654760892, 8509901.207015324, 8510104.13677153, 8510111.014040891, 8510136.307657978, 8510139.03880436, 8512563.800184, 8512913.36672146, 8513316.85475347, 8514198.15666305, 8514206.271813506, 8515324.673981018, 8515385.326428808, 8518704.72988736, 8533979.6875, 8536437.50440414, 8541500.937456567, 8542600.964309292, 8542835.908440992, 8544274.498358032, 8549954.633345272, 8556237.5, 8558073.245834796, 8559764.0625, 8559988.568255037, 8560241.843499394, 8560242.03599028, 8560475.925918868, 8560590.573252572, 8560607.990648443, 8560646.229404474, 8560807.776248435, 8561132.8125, 8561158.657476444, 8561245.3125, 8561529.552977625, 8562293.631369784, 8562508.810395585, 8568348.330549357, 8568874.221935896, 8577346.072963737, 8581412.5, 8586032.082068784, 8589474.339049244, 8596458.040407995, 8602152.664162902, 8602829.717390783, 8603274.2463725, 8603277.714291813, 8603642.908499476, 8605140.625, 8605312.466168325, 8605779.275591932, 8606418.438565569, 8616501.034977412, 8624864.98495118, 8630748.4375, 8637605.879429964, 8639835.44273332, 8643445.539667448, 8644379.367797522, 8644712.911758661, 8646176.23283725, 8647187.55807122, 8648032.067836585, ...], [89.86886791784178, 7.7600799979325945, 19.71114990059022, 38.0580198336311, 59.140257745811205, 17.888731563541526, 26.61207523033, 73.15879703319725, 36.73630703209435, 16.83145614489966, 75.24187194381028, 15.322096038931345, 32.992644859809744, 38.73419028605576, 51.42285613744378, 13.950390255777837, 54.8165696041688, 65.55821871865342, 11.351727555728413, 67.89081646774122, 9.56547113271457, 115.42395237396185, 59.29690440677685, 11.095432081991886, 24.301734563132243, 55.8384403586164, 61.667734051442004, 52.48600917831639, 20.018130246101293, 6.5778587335254, 49.75402446202752, 9.218383609866274, 5.321420234557802, 43.853238569241334, 78.53440097764278, 44.49350996815492, 9.454760529556024, 5.825687336763312, 63.77536797114984, 67.99282915950731, 24.171116622022154, 5.9471377546186, 11.565299942224428, 33.307171130206186, 6.5837745379078365, 7.388728018058607, 39.98601194485804, 29.478294266821738, 22.18590376243031, 143.88917789971424, 9.126886975337777, 6.922047410623791, 10.39705795827564, 29.308750510269384, 22.709274808001684, 25.079878552431573, 43.72240237884423, 76.30055515335272, 26.299702077062086, 11.50235543062775, 15.728266819884706, 38.993127201630536, 34.090502034043375, 7.6918467762390605, 19.84569229553207, 5.818310961989052, 117.62956389952234, 10.919005630648488, 61.327125477932334, 9.951277263597866, 116.95083861368857, 62.63584604825431, 7.22087514469328, 15.72183691081441, 8.46104531956437, 6.696359968238003, 7.219763109376915, 5.033825315611351, 31.696125757541104, 9.918233233526147, 107.01842770442033, 24.6493863270419, 5.639778705898386, 19.18132438690545, 9.315338932553674, 24.524849684591278, 27.934004838588727, 50.86864921466213, 5.586935572979908, 7.79370664339263, 135.31634050921835, 50.19989159238277, 21.334059049452186, 18.264922557901095, 158.63378074065758, 75.29647563380883, 6.382171351311343, 53.41217558053119, 76.96516027541888, 5.559831454136989, 18.42481145266906, 5.047253841418837, 80.16396536322327, 60.75269651704859, 78.25843390436545, 8.031421150577838, 18.333168146835003, 22.76395002065741, 15.372443759913244, 5.699562226399009, 13.347245531905866, 16.24497433458189, 78.37560925892171, 15.937487690801227, 38.2834758384931, 111.97158251648905, 11.987078167692127, 5.476212669661989, 60.81925056636668, 123.19542143777777, 10.795026997168055, 47.86743136279519, 61.296724540088476, 10.87136545941468, 92.59779592980775, 181.23516338785936, 12.807605069071004, 25.820268977571548, 28.332843173429296, 52.702021261072595, 22.015577439012176, 19.392918154060844, 32.25186373500792, 13.153822154674467, 51.02822409570688, 8.408372572191308, 10.112313157007051, 10.256837404773197, 59.762581336044235, 13.969372188928366, 8.581148865198498, 5.27907192572608, 71.88468599280633, 14.467775780459606, 57.7477930576598, 23.68356731073143, 49.49631845759162, 24.24419503017732, 124.9586390276263, 31.82810941860779, 60.23894542467629, 25.756483382086838, 15.194866467994563, 64.45177331147444, 52.59066351185284, 123.07744978910391, 7.760744013245813, 84.85216719120089, 75.8471210338257, 35.251912016304466, 82.23596163847293, 58.398036498075285, 38.15062096670715, 21.897483018975063, 49.81574582543863, 9.578061834761185, 73.16868273863909, 5.823870988030479, 97.16643863594193, 13.05343240064556, 7.065099099941546, 9.239945400101954, 68.87845962430231, 48.3658601204818, 8.481061590499479, 47.71777966960347, 29.13213540367712, 55.885125589075464, 72.98408125120984, 11.978087135769933, 6.39115566063436, 28.244118835460416, 31.557419881699808, 17.40665127759623, 58.20275129278885, 15.3312562132226, 57.0502539862225, 22.29630249873507, 57.09581188513374, 76.36311356700074, 31.886518086215126, 54.883894933446165, 5.481332505324148, 50.21104215088221, 13.390078552099625, 16.64504799785621, 28.66864185887117, 33.5061007315928, 43.858373933962774, 45.70252003953057, 8.457959553775549, 5.7090050258286364, 41.105748102184776, 9.882062959500784, 37.05470701680418, 73.73532183461948, 10.57385208405526, 29.034555965748545, 105.08582792523492, 17.50346303531914, 18.45274833972848, 28.42265326250186, 60.4226747455731, 27.960071567916756, 78.72539644465853, 25.000773162683746, 7.008508482357763, 6.788916337114379, 16.975614560994178, 63.53879264169907, 59.698132004974774, 50.18285400084669, 51.3234487854782, 23.700076321271183, 7.548445922495069, 17.949872516296477, 112.17283373119152, 27.167342560898845, 7.032285984260569, 57.5828162756046, 26.5546451188543, 51.95711199799776, 24.582456251484352, 5.866208182453743, 7.426456677810213, 16.850488995821017, 66.35608992750619, 60.83135127835594, 77.59726122693033, 30.189069953246076, 74.79949857790668, 60.90367243604051, 34.995665620286594, 16.91818798298006, 42.32947509552504, 74.77731050088053, 55.82532585105229, 18.163923367655176, 43.34246167607548, 29.269209618866466, 77.85878665282999, 77.45641744912164, 68.81186818987874, 24.17429199634901, 81.5278180498766, 56.339640952279446, 74.98321114253642, 43.10341879601834, 23.14748913266759, 12.49303578307134, 108.16591219963313, 63.043304600430425, 54.55759890333339, 25.47283507878433, 43.53998324873522, 20.83120104472171, 16.077525295540724, 20.15894061098512, 116.50512125640103, 5.653489176890805, 7.653479564757811, 10.531425713699337, 27.781994211225808, 69.06835210190349, 25.161765355574605, 52.941487059439865, 12.875057145787444, 9.313750655069688, 57.313292688734556, 10.823586846435546, 90.27678238721167, 5.879576010833627, 5.143727645767909, 42.89341061800043, 19.820097065668993, 56.4737968216961, 37.33192967649994, 8.587220747513056, 51.22329036973544, 42.35965209916303, 5.594731316230592, 9.490242375127776, 68.27364981995345, 12.329697586856652, 64.66771707552238, 77.87169233407435, 72.67801998361482, 165.62824949037554, 12.782469061471714, 7.4597832782988815, 20.784193603885072, 41.793399070198376, 128.22019543418966, 30.5755086222981, 21.370436092252632, 60.29358213782663, 64.893116321483, 10.963946095312238, 31.399001148568303, 49.99326398425938, 50.472786739116906, 8.234481737126135, 24.534989721286784, 14.743837288798405, 37.833800401514765, 70.04930905194665, 20.43622026546672, 11.322249204460128, 24.611236401786506, 37.43003243694203, 22.842851093088633, 27.276794135286693, 67.6939815216482, 38.55977135921148, 38.72816413431057, 74.15659651664474, 80.30148540582745, 5.212826140338077, 5.457119760718802, 15.389979986040053, 57.44803147973026, 12.534069127170223, 13.834406610872175, 10.459826419487209, 51.707138804849066, 28.819983767901128, 84.51776802352659, 41.58203314275397, 5.662585634658394, 61.64270920168639, 10.690964511968216, 15.187544211015815, 31.24321830102332, 5.7380455551016265, 31.329318128003248, 13.429778038492149, 47.950394765652874, 33.25889500286236, 14.426354284670332, 29.6944830866205, 10.33290269951192, 50.442646013140454, 27.295063376722418, 6.669015926245653, 115.04291075191769, 21.028842251314035, 23.440492230261267, 6.573745056666032, 5.668853284575329, 22.473117250689615, 21.05690348066777, 30.47116261040985, 8.609592666041435, 103.62088629268538, 24.4450146990105, 107.29836615063674, 5.289121763403963, 43.17298742007751, 27.113754893317967, 62.82870099071326, 9.812901736138015, 9.266339286065268, 96.15862480224916, 43.32234301547922, 28.80420810369813, 22.088647002907795, 14.1472187345041, 76.02167011434207, 40.127717857161755, 84.76649864542487, 8.627807103671485, 35.57670488801051, 10.96920066914963, 99.15650536643483, 83.64305351188021, 9.478876513384753, 36.62067798217692, 15.671989814191626, 59.08741744272949, 22.96695746293056, 10.842702000026474, 73.4136872187097, 64.14217664985235, 77.83370477320825, 8.690619712011298, 140.03199579285348, 44.970458567854145, 14.084351145029753, 8.758260405177717, 38.01413293685004, 9.88295935955298, 78.87551365423998, 15.023159506512766, 85.52503226093721, 96.18607486889863, 20.91614957802183, 60.22415790464678, 58.89410855829926, 47.912124335486865, 57.62225881160629, 38.980952783750865, 14.4816363155611, 69.84265193844075, 26.53601333626134, 219.04473869044358, 23.31271321600353, 56.1812976644816, 23.064992476504866, 56.03828121629218, 27.582505915040166, 9.836977986820777, 39.72388500945945, 57.14481934718302, 9.462948774208325, 42.350392169192546, 7.954518113452389, 19.64474780884996, 33.111168578544955, 30.24188647887994, 8.81114362655024, 41.77277377531535, 10.597502394292677, 21.946675541330627, 10.65486039481493, 37.95829529325524, 42.750335596095915, 14.244726776847399, 16.592241515795124, 62.670016363955256, 76.14532980814124, 5.708306400411169, 8.9677120846108, 5.1865608764273015, 8.824874367558085, 30.183105226346214, 8.082222126346847, 14.289797084881394, 9.806728555570585, 61.738890826048454, 19.26036559820304, 26.839405118545262, 64.72308987695882, 77.9548908411534, 50.280298009381056, 17.577715407654445, 27.314028095886435, 47.009354908985124, 18.836293700214295, 9.026756032766702, 14.912439012044427, 76.9735523273481, 72.30632297708502, 43.35744137264317, 11.68273936531918, 64.55450889585514, 42.67142384637977, 5.071689863613262, 109.7527569695601, 27.798756496679243, 40.82679500562847, 24.39781686214591, 33.58528584789221, 20.3526558920208, 9.217230555066234, 17.2208723006841, 25.56599795524172, 24.113489909040304, 81.9342842089057, 5.348319911518483, 17.49828271175258, 61.849868939487564, 36.45496135372484, 169.57333559074607, 48.566988861537794, 10.174545883721166, 25.74494543319708, 10.789533793915695, 98.2095694878626, 45.772077772535475, 87.64550624795699, 26.67428920384464, 44.66901174638664, 72.05853062098146, 80.1038542421121, 20.72439237331499, 23.854408124933965, 10.17705627378145, 10.861876949408236, 10.092625773438842, 12.583978726727873, 7.49040743022869, 5.074145616762375, 33.949013260334944, 15.720910308456759, 78.34506049718213, 118.16616934653646, 107.7865698156319, 34.1564207616154, 10.130207941674616, 12.474954081348477, 24.823743912917536, 14.393867968220643, 54.13175997460539, 11.106500579336545, 5.073955398563342, 71.04147378320667, 39.25561254386982, 43.876355632473945, 6.195682119293065, 33.98008824260965, 109.20084151698053, 11.409566281225604, 9.536370793771084, 36.70568746375607, 66.27910720025001, 123.85964997601448, 5.674267729157487, 43.07899859926359, 68.37745745279224, 5.669592320192875, 26.121909579614886, 27.66648299275461, 73.52399967990223, 101.29620043857733, 8.054030571109712, 20.317327114861197, 15.198863250349826, 7.497830700461034, 63.277655654542684, 20.737470680103893, 60.60890118323938, 12.71645281033483, 88.77026905494095, 26.84722692870636, 5.163711568671354, 7.202417292423553, 45.97692927242075, 5.85390698172147, 5.662940256281647, 19.285799935936005, 42.275334394994374, 49.45376493422212, 37.919035731757916, 101.15561662156094, 23.618530068268633, 60.3464693182659, 65.18909587067168, 94.2621294803526, 19.264625906985344, 44.257663402055755, 47.641445534377205, 88.62915070730988, 8.686868462997957, 12.794098315529155, 12.850956538284594, 64.92184926146395, 28.241976323857823, 49.43237954375772, 59.03390752336527, 22.78615434083897, 57.36467726975293, 84.14610792968267, 53.31600369954582, 8.096203906309707, 5.554997236544454, 14.163782684996958, 92.43134787063524, 9.544806047378644, 51.20705242834451, 5.829701511546663, 82.98274553290291, 71.54540680638559, 59.4429401095157, 19.558493242418365, 51.50692704330535, 82.16538029873549, 40.738515537315024, 57.62043865772209, 27.253052622100004, 7.13880330605202, 8.467705249739904, 32.89897897731639, 23.912468319556705, 80.87754542895712, 29.96009856539885, 14.682950776690175, 276.9760618786853, 44.57139552799733, 44.7254725619912, 28.245158123078784, 50.3455083779029, 9.406976073558576, 65.26735809155427, 56.16343706856145, 11.427027416840582, 29.57491646751665, 22.44493694682587, 20.446616548176067, 7.396757206526222, 16.756520518180814, 6.845132028978014, 5.332375184986495, 92.09670093628365, 87.58111744427241, 39.34307155320606, 6.28453248596116, 6.945607864185624, 16.74721187448972, 16.381676658867924, 13.725817950092544, 47.39162464426322, 7.70840644423008, 6.390554449955222, 10.927904753103814, 10.263817249834856, 52.054932977654914, 9.48865605970724, 21.315136907771286, 7.195633981724372, 8.858084763726223, 93.86645210593477, 21.97144745954651, 6.891461444007093, 162.8521973807852, 26.812078656379498, 55.416084332812254, 27.106365784619094, 5.335688294007478, 24.546513399063734, 34.6712026998535, 19.367763001991523, 18.782923969444106, 70.56757004503638, 13.693417630306069, 25.86949170476084, 18.48586490082291, 58.14553901233465, 17.054472148611545, 38.26368274760351, 9.047700981850701, 94.28115249088478, 16.140485138868378, 31.4318030366277, 8.924625561463417, 76.27724382266662, 47.113172936510594, 49.153117181409854, 12.17090443069443, 34.81054236276813, 72.77787965723928, 15.701123475593, 57.787044190986194, 5.201336887996049, 23.546862979790756, 48.86304386839204, 27.186388430584174, 11.505813105210642, 22.827171808123204, 16.063262147955378, 14.858708551868233, 5.151600856564135, 109.05131660744388, 36.926307008800165, 9.000556732836607, 9.605665155723685, 7.71452286212061, 37.92426208339258, 87.7300962794736, 93.73741220246863, 78.10539936638256, 33.68419531489835, 8.789055071684462, 72.43771591539027, 90.11714318074641, 52.20020220984199, 5.038692325800253, 6.950287384072091, 112.94216382107325, 27.282878325357515, 32.62660484842296, 39.22329011418862, 76.59988403692012, 28.74595423994417, 59.133807178148615, 49.256545741888665, 18.13416060985266, 59.55145577536557, 119.05089674593715, 9.443940633926418, 38.112534249915264, 6.419797508015763, 41.062640394743376, 21.594199994362455, 26.63242933083817, 5.758411608923807, 14.630409065897453, 47.11694111872161, 73.91974771048957, 108.89305978771267, 18.40397354408082, 20.921909700786163, 10.891142428555025, 5.210340362081327, 21.59738455162661, 73.68979755535823, 6.5649515496707, 30.23876842225457, 8.800960912437548, 102.20919419468856, 59.08813657144577, 5.942681050180254, 6.438680746284377, 8.453596231741757, 8.591467075781441, 6.838950451796818, 62.140325355447835, 10.953579792359484, 30.42667307545788, 62.7213046573772, 11.998856555644855, 58.59727621386394, 13.474854275286289, 6.037402790535056, 6.179205225099645, 40.43000979302368, 5.2505156010307, 27.604134329714988, 57.64235003024072, 23.282099752642218, 73.56315879641234, 50.3490777179449, 14.963503033211495, 18.692554419295796, 90.48584037472907, 41.778069507023986, 30.32076644155605, 10.950730442323815, 12.44394869470384, 28.4922262487328, 5.940096261891057, 75.17620088019031, 6.515016051477914, 89.75092188092133, 33.3608932168219, 5.051593680778314, 15.821039648494857, 59.95452900003767, 9.322457351156377, 49.03974738441765, 23.698652629006876, 20.461691405303554, 131.01417027680822, 40.485171719100485, 37.330398912146165, 18.77995768072714, 23.131011105208156, 33.41452426569142, 20.200824710253062, 7.959162822539369, 9.26067888126821, 45.97196605411582, 13.12703772309403, 82.62133270751016, 14.834813763182105, 9.609958846179133, 29.25779791056295, 36.129245314677206, 23.016058697756012, 19.938616914866635, 7.327999862244405, 64.27876596105149, 26.42560983909668, 82.49803699181103, 236.58781356048917, 6.5982881950633745, 74.60440268893, 39.903130924209435, 9.959667094065507, 9.732449234459938, 25.56549551151977, 5.5801180975411615, 16.781378936807254, 9.903375926655063, 18.035726906187573, 48.60502807408742, 26.063536132734612, 23.58462464025464, 109.28259018650743, 32.08680110372124, 26.68656781495948, 9.184172021105388, 25.318015411310512, 6.836610177094266, 7.58039409082327, 71.00650650028162, 120.03785668942531, 45.81338301959137, 40.05816385529695, 21.977958124115613, 38.26013029649576, 80.39720064284772, 68.55407873966305, 46.11684819209867, 164.3668525890495, 42.763179174966396, 72.27657967181082, 11.192043569381202, 98.55311994376623, 38.55091678762869, 5.908045640269222, 54.495507934356226, 5.8045591225797795, 17.576970170944136, 45.837017433483794, 56.43948230112197, 46.83317139754551, 7.922964506814521, 38.57182285796153, 47.54393875318716, 75.41897499427644, 28.209041089885396, 12.9693341365839, 22.237680573119945, 99.82445788932839, 71.03361364436364, 13.76202304832188, 18.302431807955024, 65.74441488489164, 32.38750274406163, 25.602902204922227, 95.9794260492001, 5.923953825283902, 31.890219322503306, 100.94476041948158, 63.8841968827902, 25.438687648818604, 54.257469149462864, 233.49454246783813, 183.11936388508846, 24.580355735958072, 19.988012018052178, 14.183148265670543, 50.06197350984654, 39.246870955935265, 20.21490162919611, 13.992376436408815, 73.94919359901401, 77.98681499250236, 55.32449928821482, 83.06603080250693, 60.10694247924085, 15.862881659597853, 62.15676427461807, 12.009977229204477, 55.557466762249874, 111.21237751382286, 5.923678593333042, 36.76419875640131, 28.318922747636442, 78.76352970770603, 13.037513545552418, 6.012894092459728, 10.591213020194827, 16.545019957607693, 28.16996518479655, 22.409122110527903, 125.88660892112414, 62.74530449589151, 32.26685222410397, 10.46246462282201, 20.834563945147693, 9.261718556280547, 5.2039942802662935, 10.245070315305336, 31.42470656898626, 118.72612462844872, 68.95480561694315, 105.19015541382464, 8.51440070079797, 9.955385440476082, 48.83469304278856, 17.894599921210993, 6.181762724930139, 38.8964941481633, 121.18235301966445, 81.97765226038477, 87.71077853285615, 10.840445281728632, 10.329946356262363, 51.43375476702447, 15.492416385041526, 100.9319554481104, 28.268744314437154, 8.470961636650014, 102.91614769609882, 8.300738609049139, 7.312932492694328, 108.07602347767792, 9.47056333216247, 6.096877441694431, 23.052557437629716, 55.15146622044371, 83.70762665142597, 5.713842077938539, 73.81654513341292, 104.00003830987283, 9.460570332222469, 5.2946685430940725, 13.631216828669974, 37.225308303397405, 63.80593333109509, 19.223332549073884, 75.78737972902671, 5.568733389883459, 43.298856532975705, 49.023251074049014, 27.181436134268417, 38.977234378103375, 22.504927058501323, 5.789425866127941, 101.88534345675706, 48.396991035042575, 137.9252600731215, 80.99909662089509, 10.383187856559267, 14.372538027555098, 13.740067873085092, 10.363720663405191, 60.3930705214627, 5.174072912971867, 60.22799925465959, 23.57111376831576, 113.0091061086112, 10.644600592620588, 7.5047266797226975, 11.161974757018925, 23.423979093619348, 6.969579047303097, 15.105569514531126, 102.95158672975654, 175.4788361511767, 33.81363896403319, 6.649683001206173, 16.27351429328325, 96.76315941596593, 35.267247079508785, 91.31702342312225, 25.240776054507663, 52.49256135759646, 10.434073328170362, 91.4338439531017, 6.072483989340689, 86.24823098336506, 27.540896784073002, 52.46969570446743, 27.468984673912864, 35.44526477928352, 39.555251918782204, 6.1806098664875995, 83.16088373038502, 10.923754280841914, 10.947208377803893, 20.871968517455414, 34.618833320018226, 5.874394957588014, 18.93020890256617, 53.677507143006856, 8.781745956350418, 12.905844304994039, 28.000169631138753, 7.005361101772067, 15.056676314608517, 38.5687060619716, 22.432610685913282, 18.650816193772243, 51.93194817195511, 79.3819121362505, 130.17171744262203, 56.49844328827787, 161.2867252963895, 22.32443989528935, 42.01638409455521, 29.72752690006557, 78.9109167790254, 96.34260489265344, 23.502290520953697, 57.518546623986225, 21.674210211701634, 26.793911428569118, 19.35640947480763, ...])
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)