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
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"
#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 = 36529 #test discharge for which the notebook will definitely work
shot_no = 44509
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
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))
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 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=[]
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))
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')
i=i+1
t3pa_cls.close
return T_first, E_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)
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.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.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)
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].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
#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'
#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'
#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)
#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 = 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);
([3115110.9375, 5634107.8125, 5634121.875, 5634125.0, 5663425.0, 5663459.375, 5919100.0, 5942307.8125, 6033400.0, 6033410.9375, 6034646.875, 6036598.4375, 6036662.5, 6036895.3125, 6044331.25, 6147531.25, 6183256.25, 6189229.6875, 6189251.5625, 6191165.625, 6198931.25, 6243128.125, 6243785.9375, 6247785.9375, 6248223.4375, 6282410.9375, 6324296.875, 6357846.875, 6361421.875, 6404921.875, 6405934.375, 6440050.0, 6474570.3125, 6481854.6875, 6481865.625, 6488451.5625, 6488517.1875, 6494617.1875, 6496696.875, 6520460.9375, 6528064.0625, 6547900.0, 6554426.5625, 6554817.1875, 6568040.625, 6578257.8125, 6588942.1875, 6621559.375, 6631471.875, 6635531.25, 6654437.5, 6665718.75, 6682946.875, 6682950.0, 6685165.625, 6689162.5, 6691367.1875, 6691668.75, 6691837.5, 6692193.75, 6695432.8125, 6696435.9375, 6698275.0, 6699068.75, 6699104.6875, 6699153.125, 6701225.0, 6705925.0, 6709618.75, 6712417.1875, 6729406.25, 6736793.75, 6736882.8125, 6737126.5625, 6737468.75, 6740773.4375, 6741579.6875, 6741918.75, 6743065.625, 6744390.625, 6744404.6875, 6744526.5625, 6745879.6875, 6745890.625, 6751790.625, 6754082.8125, 6757743.75, 6760906.25, 6762471.875, 6763607.8125, 6766037.5, 6766559.375, 6766807.8125, 6767028.125, 6767139.0625, 6768104.6875, 6768104.6875, 6768123.4375, 6768453.125, 6768796.875, 6768937.5, 6768976.5625, 6769104.6875, 6770218.75, 6770635.9375, 6770767.1875, 6773189.0625, 6773279.6875, 6774393.75, 6777625.0, 6778889.0625, 6778987.5, 6779806.25, 6779864.0625, 6788132.8125, 6789350.0, 6790453.125, 6791943.75, 6815051.5625, 6818065.625, 6821471.875, 6822381.25, 6822403.125, 6822632.8125, 6825079.6875, 6825937.5, 6826232.8125, 6828239.0625, 6829604.6875, 6834428.125, 6888396.875, 6911712.5, 6916340.625, 6919662.5, 6919703.125, 6919709.375, 6920048.4375, 6921034.375, 6921578.125, 6921626.5625, 6922837.5, 6930159.375, 6932529.6875, 6934537.5, 6934578.125, 6934842.1875, 6949060.9375, 6957712.5, 6968756.25, 6976037.5, 6976078.125, 6978298.4375, 6979965.625, 6979990.625, 6980025.0, 6980046.875, 6980301.5625, 6981276.5625, 6981679.6875, 6981706.25, 6990925.0, 6991595.3125, 6992221.875, 6994320.3125, 6994529.6875, 6994725.0, 6995704.6875, 6996400.0, 6999260.9375, 6999893.75, 6999895.3125, 7005884.375, 7007076.5625, 7008846.875, 7011235.9375, 7021076.5625, 7022121.875, 7025043.75, 7025121.875, 7026081.25, 7027250.0, 7028751.5625, 7029206.25, 7030126.5625, 7030156.25, 7031229.6875, 7033834.375, 7034109.375, 7034720.3125, 7035610.9375, 7035743.75, 7093171.875, 7173779.6875, 7183164.0625, 7185237.5, 7196384.375, 7196928.125, 7200659.375, 7202081.25, 7202114.0625, 7203501.5625, 7206278.125, 7218793.75, 7228860.9375, 7230310.9375, 7241842.1875, 7261484.375, 7270854.6875, 7302081.25, 7320112.5, 7331489.0625, 7335273.4375, 7627573.4375, 7638767.1875, 7836210.9375, 7871896.875, 7882920.3125, 7883829.6875, 7883871.875, 7919821.875, 7938614.0625, 7983604.6875, 7985209.375, 7991139.0625, 8061953.125, 8066425.0, 8095821.875, 8102921.875, 8141506.25, 8142054.6875, 8142098.4375, 8143123.4375, 8147054.6875, 8208865.625, 8211881.25, 8220229.6875, 8222359.375, 8263764.0625, 8265456.25, 8275337.5, 8275579.6875, 8280126.5625, 8281557.8125, 8283015.625, 8284550.0, 8284871.875, 8285243.75, 8286992.1875, 8288046.875, 8288214.0625, 8288721.875, 8288779.6875, 8289332.8125, 8290140.625, 8290728.125, 8291904.6875, 8292239.0625, 8293653.125, 8295868.75, 8298518.75, 8299603.125, 8307140.625, 8342357.8125, 8345171.875, 8346464.0625, 8346818.75, 8347650.0, 8347710.9375, 8347892.1875, 8348901.5625, 8348903.125, 8370345.3125, 8370939.0625, 8388670.3125, 8505609.375, 8514090.625, 8689648.4375, 8715825.0, 8757460.9375, 8793262.5, 8804901.5625, 8836734.375, 8844026.5625, 8844067.1875, 8844081.25, 8928582.8125, 9045650.0, 9195806.25, 9286128.125, 9289253.125, 9304837.5, 9327178.125, 9329009.375, 9348467.1875, 9353704.6875, 9354778.125, 9355709.375, 9359067.1875, 9359123.4375, 9365395.3125, 9365446.875, 9399723.4375, 9407512.5, 9467870.3125, 9467931.25, 9485625.0, 9486040.625, 9487000.0, 9497506.25, 9507460.9375, 9509687.5, 9518878.125, 9519623.4375, 9563771.875, 9569398.4375, 9583593.75, 9605570.3125, 9650621.875, 9670181.25, 9671745.3125, 9702753.125, 10141192.1875, 10352703.125, 10943118.75, 10944190.625, 10944629.6875, 10946503.125, 10946625.0, 10950579.6875, 10957764.0625, 10973175.0, 10978946.875, 10981285.9375, 10986567.1875, 10991137.5, 11007923.4375, 11015268.75, 11018756.25, 11026857.8125, 11028803.125, 11032501.5625, 11040192.1875, 11040498.4375, 11131512.5, 11151245.3125, 11156267.1875, 11168410.9375, 11174157.8125, 11179207.8125, 11179739.0625, 11182878.125, 11184701.5625, 11186112.5, 11187476.5625, 11187907.8125, 11188073.4375, 11188965.625, 11190875.0, 11193532.8125, 11194198.4375, 11194525.0, 11198728.125, 11199101.5625, 11199231.25, 11199982.8125, 11206709.375, 11207785.9375, 11209046.875, 11209473.4375, 11210745.3125, 11210809.375, 11211065.625, 11211065.625, 11213003.125, 11213167.1875, 11213870.3125, 11214207.8125, 11214246.875, 11214610.9375, 11214664.0625, 11214778.125, 11214907.8125, 11214960.9375, 11215409.375, 11215467.1875, 11215510.9375, 11215550.0, 11215698.4375, 11215751.5625, 11215776.5625, 11215807.8125, 11215817.1875, 11215829.6875, 11215868.75, 11215889.0625, 11215926.5625, 11215998.4375, 11216135.9375, 11216295.3125, 11216346.875, 11216467.1875, 11216834.375, 11217304.6875, 11217368.75, 11217650.0, 11217825.0, 11217973.4375, 11218056.25, 11218387.5, 11218450.0, 11218592.1875, 11218682.8125, 11219028.125, 11219423.4375, 11219437.5, 11219451.5625, 11219468.75, 11219512.5, 11219543.75, 11219589.0625, 11219615.625, 11219628.125, 11219629.6875, 11219720.3125, 11219725.0, 11219862.5, 11219912.5, 11219937.5, 11219987.5, 11220215.625, 11220310.9375, 11220487.5, 11220582.8125, 11220610.9375, 11220750.0, 11220968.75, 11221153.125, 11221159.375, 11221159.375, 11221218.75, 11221256.25, 11221271.875, 11221326.5625, 11221421.875, 11221446.875, 11221557.8125, 11221601.5625, 11221710.9375, 11222351.5625, 11222445.3125, 11222495.3125, 11223134.375, 11223898.4375, 11224531.25, 11224806.25, 11225568.75, 11225882.8125, 11226350.0, 11226626.5625, 11226682.8125, 11226701.5625, 11226735.9375, 11226842.1875, 11226992.1875, 11227037.5, 11227040.625, 11227051.5625, 11227082.8125, 11227110.9375, 11227323.4375, 11227431.25, 11227435.9375, 11227485.9375, 11227534.375, 11227743.75, 11227745.3125, 11227910.9375, 11228050.0, 11228070.3125, 11228076.5625, 11228137.5, 11228156.25, 11228189.0625, 11228243.75, 11228253.125, 11228257.8125, 11228326.5625, 11228329.6875, 11228376.5625, 11228381.25, 11228484.375, 11228500.0, 11228610.9375, 11228625.0, 11228685.9375, 11228740.625, 11228810.9375, 11228928.125, 11228939.0625, 11228985.9375, 11229217.1875, 11229298.4375, 11229353.125, 11229465.625, 11229498.4375, 11229504.6875, 11229512.5, 11229543.75, 11229567.1875, 11229606.25, 11229770.3125, 11229782.8125, 11229860.9375, 11229903.125, 11229946.875, 11230006.25, 11230009.375, 11230185.9375, 11230276.5625, 11230431.25, 11230525.0, 11230629.6875, 11230650.0, 11230665.625, 11230875.0, 11230879.6875, 11231051.5625, 11231164.0625, 11231215.625, 11231423.4375, 11231489.0625, 11231673.4375, 11231687.5, 11232000.0, 11232223.4375, 11232365.625, 11232385.9375, 11232418.75, 11232432.8125, 11232465.625, 11232479.6875, 11232623.4375, 11232642.1875, 11232695.3125, 11232731.25, 11232751.5625, 11232804.6875, 11232925.0, 11232978.125, 11233023.4375, 11233168.75, 11233285.9375, 11233520.3125, 11233523.4375, 11233537.5, 11233579.6875, 11233615.625, 11233615.625, 11233623.4375, 11233784.375, 11233785.9375, 11233846.875, 11234073.4375, 11234082.8125, 11234110.9375, 11234143.75, 11234146.875, 11234303.125, 11234359.375, 11234446.875, 11234560.9375, 11234604.6875, 11234657.8125, 11234689.0625, 11234689.0625, 11234754.6875, 11234931.25, 11234989.0625, 11234998.4375, 11235000.0, 11235068.75, 11235245.3125, 11235396.875, 11235470.3125, 11235551.5625, 11235610.9375, 11235623.4375, 11235625.0, 11235639.0625, 11235660.9375, 11235698.4375, 11235762.5, 11235787.5, 11235801.5625, 11235856.25, 11235887.5, 11235900.0, 11235915.625, 11235918.75, 11235960.9375, 11235978.125, 11236043.75, 11236085.9375, 11236112.5, 11236131.25, 11236237.5, 11236337.5, 11236339.0625, 11236418.75, 11236465.625, 11236482.8125, 11236629.6875, 11236656.25, 11236675.0, 11236676.5625, 11236696.875, 11236717.1875, 11236735.9375, 11236875.0, 11236914.0625, 11236937.5, 11236959.375, 11236987.5, 11237062.5, 11237153.125, 11237217.1875, 11237246.875, 11237376.5625, 11237396.875, 11237442.1875, 11237520.3125, 11237526.5625, 11237575.0, 11237707.8125, 11237721.875, 11237742.1875, 11237753.125, 11237809.375, 11237890.625, 11237953.125, 11238157.8125, 11238184.375, 11238215.625, 11238245.3125, 11238312.5, 11238532.8125, 11238551.5625, 11238551.5625, 11238635.9375, 11238735.9375, 11238745.3125, 11238785.9375, 11238865.625, 11238906.25, 11239053.125, 11239089.0625, 11239150.0, 11239156.25, 11239160.9375, 11239164.0625, 11239279.6875, 11239357.8125, 11239395.3125, 11239417.1875, 11239467.1875, 11239484.375, 11239489.0625, 11239529.6875, 11239578.125, 11239668.75, 11239715.625, 11239943.75, 11239967.1875, 11240017.1875, 11240028.125, 11240032.8125, 11240076.5625, 11240150.0, 11240192.1875, 11240239.0625, 11240251.5625, 11240281.25, 11240390.625, 11240426.5625, 11240606.25, 11240712.5, 11240740.625, 11240776.5625, 11240829.6875, 11240845.3125, 11240898.4375, 11240907.8125, 11240915.625, 11241046.875, 11241056.25, 11241076.5625, 11241110.9375, 11241309.375, 11241335.9375, 11241440.625, 11241501.5625, 11241506.25, 11241556.25, 11241620.3125, 11241656.25, 11241679.6875, 11241704.6875, 11241746.875, 11241845.3125, 11241875.0, 11241885.9375, 11241892.1875, 11241921.875, 11241928.125, 11241945.3125, 11242096.875, 11242243.75, 11242412.5, 11242417.1875, 11242625.0, 11242806.25, 11242835.9375, 11242970.3125, 11243570.3125, 11243685.9375, 11244053.125, 11244206.25, 11244221.875, 11244279.6875, 11244571.875, 11244598.4375, 11244657.8125, 11244685.9375, 11244706.25, 11244839.0625, 11244987.5, 11245010.9375, 11245154.6875, 11245242.1875, 11245264.0625, 11245265.625, 11245353.125, 11245592.1875, 11245625.0, 11245704.6875, 11245837.5, 11245884.375, 11246115.625, 11246179.6875, 11246392.1875, 11246471.875, 11246484.375, 11246525.0, 11246971.875, 11247009.375, 11247062.5, 11247179.6875, 11247223.4375, 11247259.375, 11247309.375, 11247554.6875, 11247581.25, 11247604.6875, 11247742.1875, 11247773.4375, 11247801.5625, 11247826.5625, 11247853.125, 11247871.875, 11247925.0, 11248242.1875, 11248321.875, 11248440.625, 11248450.0, 11248476.5625, 11248487.5, 11248543.75, 11248546.875, 11248643.75, 11248671.875, 11248718.75, 11248798.4375, 11248959.375, 11248973.4375, 11248979.6875, 11248984.375, 11249000.0, 11249067.1875, 11249067.1875, 11249228.125, 11249559.375, 11249571.875, 11249575.0, 11249582.8125, 11249614.0625, 11249626.5625, 11249651.5625, 11249653.125, 11249654.6875, 11249660.9375, 11249662.5, 11249684.375, 11249810.9375, 11249817.1875, 11249820.3125, 11249862.5, 11250010.9375, 11250042.1875, 11250042.1875, 11250045.3125, 11250067.1875, 11250070.3125, 11250135.9375, 11250135.9375, 11250190.625, 11250195.3125, 11250214.0625, 11250271.875, 11250285.9375, 11250312.5, 11250320.3125, 11250725.0, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250729.6875, 11250729.6875, 11250731.25, 11250900.0, 11250914.0625, 11250914.0625, 11250937.5, 11250976.5625, 11251029.6875, 11251046.875, 11251212.5, 11251212.5, 11251212.5, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251215.625, 11251215.625, 11251215.625, 11251354.6875, 11251396.875, 11251428.125, 11251431.25, 11251453.125, 11251460.9375, 11251509.375, 11251526.5625, 11251564.0625, 11251570.3125, 11251664.0625, 11251789.0625, 11251796.875, 11251821.875, 11251884.375, 11251893.75, 11251895.3125, 11251921.875, 11251935.9375, 11251973.4375, 11252032.8125, 11252042.1875, 11252042.1875, 11252075.0, 11252076.5625, 11252085.9375, 11252123.4375, 11252137.5, 11252151.5625, 11252175.0, 11252239.0625, 11252257.8125, 11252260.9375, 11252275.0, 11252276.5625, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252279.6875, 11252292.1875, 11252304.6875, 11252307.8125, 11252309.375, 11252339.0625, 11252478.125, 11252534.375, 11252562.5, 11252589.0625, 11252601.5625, 11252628.125, 11252637.5, 11252646.875, 11252659.375, 11252698.4375, 11252717.1875, 11252728.125, 11252737.5, 11252790.625, 11252834.375, 11252857.8125, 11252920.3125, 11252976.5625, 11253067.1875, 11253067.1875, 11253125.0, 11253131.25, 11253131.25, 11253154.6875, 11253207.8125, 11253262.5, 11253370.3125, 11253431.25, 11253539.0625, 11253600.0, 11253668.75, 11253721.875, 11253768.75, 11253878.125, 11253932.8125, 11254010.9375, 11254028.125, 11254043.75, 11254043.75, 11254151.5625, 11254342.1875, 11254428.125, 11254560.9375, 11254592.1875, 11254596.875, 11254612.5, 11254760.9375, 11254981.25, 11254982.8125, 11255012.5, 11255051.5625, 11255134.375, 11255160.9375, 11255168.75, 11255212.5, 11255871.875, 11255896.875, 11255900.0, 11255981.25, 11256859.375, 11256960.9375, ...], [5.314754117441927, 22.471322539372462, 6.019538930268892, 15.878208358951511, 27.818630870331546, 25.320949706558626, 97.00727476579021, 31.249307113145925, 14.34451621098758, 6.974366963057785, 207.03013476391334, 9.828564559037886, 5.9896906701677874, 8.357477889990045, 77.40240997374157, 64.01682898953281, 41.37821330984354, 53.245849956977175, 9.558840883926523, 21.800075570413263, 136.186582052529, 55.57923852054338, 36.27496547453951, 77.5525371684033, 19.372900270424076, 11.893885024694981, 26.096962509339473, 6.583536348630056, 5.816078057959344, 58.87275985270499, 20.387267701453705, 6.387255739679347, 8.597296172677854, 151.1928566213699, 6.507860203932319, 5.6459317492895895, 156.65225762068815, 6.216762820929051, 27.088403524942297, 144.03939239185095, 60.8945925546735, 51.51537820808879, 82.68818952663065, 23.070734554450905, 6.101848744708288, 29.789623167288163, 48.04021362121569, 6.760573324875089, 12.571458601061225, 7.2404586407685825, 10.101384627169155, 12.55599505030241, 14.935221391348128, 52.5651954562904, 34.516302025068626, 59.33849982017299, 15.167369039009932, 105.56964783871967, 5.18641100891483, 14.897639712427964, 108.65634493779433, 74.09413346664086, 9.800882052891327, 42.28912445183623, 48.764014730483176, 9.994480766524198, 12.189554781259357, 118.84650941843097, 14.293095984381079, 26.9440797960431, 86.73451463367302, 77.0859379786514, 43.942124874765646, 72.81834283577439, 68.3836851345322, 223.47882226496574, 13.042131914015476, 119.18668936692058, 64.27382245915696, 24.640426390418483, 14.100508810973846, 8.505780400601463, 35.88413321612792, 13.213054007352964, 20.324712343819737, 130.0984447104152, 80.18727393571429, 5.824875592472543, 189.74461881656384, 71.44433603213083, 64.74036564917597, 20.06695202786913, 70.30268877804737, 6.827680022126525, 111.88103629572296, 28.582382322778074, 112.24254526313041, 8.262860561048262, 8.465994129862489, 24.06113255153346, 11.431479244355183, 16.731232078333196, 22.497278671503224, 40.65496475413761, 44.75559277528433, 11.756148767520656, 29.796907851539757, 65.22599801642448, 98.65803514444139, 12.46825306366655, 34.27826819940057, 17.379832176421246, 15.960311098058632, 40.530010146938615, 74.96926672535595, 262.88100452820953, 34.02495409629305, 12.239427342443294, 30.805912912983544, 46.75473269259376, 37.04081365594865, 85.82784987872668, 67.95245643126157, 70.89197619857335, 5.944283119798013, 5.423688117311108, 82.02326821523143, 19.47993080568358, 33.378541642000485, 76.4235034879558, 10.192027529013986, 123.13679259380521, 11.831828140134673, 28.699314531430808, 55.61112785758638, 15.572330566350129, 35.09185673459172, 68.99111156964176, 18.77337792712887, 50.01161068082958, 56.384431236018656, 111.06087940803602, 32.02487026228756, 36.46844947100101, 30.292469212341796, 12.092926122518818, 13.202552758895127, 86.83710418627692, 6.108998838571117, 40.12994049824663, 21.58253560091123, 44.30074660707615, 51.703752116271914, 177.8476248230857, 30.512027546836652, 6.278976028150291, 63.88613201025497, 21.633177015735455, 24.72044953305657, 43.66397020016217, 6.0467493820564, 81.25886231668149, 32.36578866564117, 91.46792207808711, 16.04803326809021, 45.1665552157065, 20.95014839038062, 18.373307562525234, 137.09306648056037, 49.27500978903581, 25.05539012275851, 35.85561505325142, 49.63512379569887, 13.533274245704197, 144.66459660968422, 30.238327059887414, 10.79085689938968, 10.822403633384338, 114.80704433157987, 19.51708667433188, 6.347049368040914, 14.985198327333302, 17.699001922956334, 17.690438230652685, 6.878443076496198, 6.595857132558296, 11.55299095453667, 6.126042191883925, 6.143274977477479, 67.49571266260632, 5.051980762167149, 27.334513098036368, 16.916809414247613, 119.2488464510604, 63.87083266294199, 31.76317451600848, 35.291449702131374, 78.32232290946703, 51.79388409388497, 100.7642763766441, 59.4793443956727, 48.04757481891713, 110.21462779557571, 32.225152665839964, 45.66435590450238, 75.3784879680863, 14.519820915432234, 19.949613272223008, 62.447476385269255, 44.36066424127745, 9.19348918832497, 15.874604784878475, 10.820806446616766, 90.71016245619643, 216.76658944572873, 18.387400019263666, 41.93219096840689, 49.484644637208426, 8.115364360514166, 40.44248960983537, 13.620619182671131, 52.93493465430099, 46.196490852867015, 44.98325462613313, 60.515523996012014, 100.02922975533941, 58.22835305466112, 29.424594730849037, 45.09794707643818, 74.67193899405439, 5.932145806650328, 7.8613168974448335, 64.96292803654919, 90.2945091502549, 35.76896737515884, 112.14079838712141, 108.46908668324558, 12.93812741184528, 151.90883208941688, 12.074019789165149, 22.880172469412063, 5.376912661274244, 49.13231699992742, 12.309904288088482, 104.91206240601278, 7.578192851631945, 26.94642719233982, 70.96599403871751, 83.5908867342005, 194.97464385220948, 10.059551386552387, 43.451605941533785, 82.57986275666985, 30.431267579593392, 5.532556125823659, 19.116926081351135, 39.181204016705806, 96.07561366414089, 53.940042117922864, 36.65671935212853, 87.84932453984796, 78.82993905516763, 54.797090872305624, 30.20257183714216, 36.8630247168127, 9.226304455640253, 6.352369774560933, 78.43108573949075, 62.127084737708245, 125.83501031466548, 77.40038474250177, 17.06415553532205, 50.830269839292015, 18.706974271778034, 30.204920381097534, 21.42360798177938, 8.637924164541353, 49.05779888413796, 9.655957849029907, 20.893181398045563, 60.37465486588317, 87.77014172314814, 8.38218209604039, 77.33791942266302, 5.853117109903921, 108.93230005961473, 31.467051744198255, 60.83399209399228, 39.65418122087589, 41.50436734995548, 30.384594447663517, 27.37473618940027, 20.74822244010794, 13.354138131651972, 33.9790856361798, 43.03675301788676, 7.738644874646614, 11.81461901786157, 5.572861282506704, 20.449035396413016, 5.136435653737118, 47.68576186642596, 27.844900009008743, 9.22767972266897, 5.592886208915092, 10.91894086051389, 77.76300501000273, 149.6931933138954, 78.10913001685927, 11.257871554190162, 109.43474045723788, 117.3252326975114, 14.6416001350918, 38.904663200207764, 118.43389893864192, 42.21886453883787, 13.250767197149864, 83.26677569326958, 30.26742498019601, 21.59757649898721, 9.63154029916023, 10.48939294714263, 83.86381144810116, 18.25105874992725, 18.959829759819957, 11.687588276738836, 9.372850747864751, 33.44230053381097, 153.3876257183668, 12.606327918224752, 61.130927479261416, 10.835144413453651, 21.058321556811457, 14.334133083163753, 42.899623581611465, 21.175408034218272, 34.64691599366801, 20.969760453659667, 8.056935563840861, 12.595247098914287, 59.852512981013376, 25.564156970777695, 15.534328709155622, 9.346539856045428, 22.977487632789348, 41.32703227132581, 5.8019470190176525, 37.41216230855191, 37.49714269738632, 24.917797582973257, 5.7114034600447114, 12.375402684916704, 21.572310292316132, 47.05103262246944, 17.189044877869783, 14.8635836831425, 5.6898983424929135, 10.569907414662667, 107.22188092879648, 42.503289723986455, 30.285679992554382, 48.00351228413597, 17.098931546123573, 49.11369213583799, 5.772756943693512, 118.76595780953258, 39.747962774873564, 18.36593511148981, 57.95245669785628, 19.248710058729483, 8.690122028851398, 27.265804069792217, 14.638517529895674, 14.098981305826761, 17.499690256838043, 48.98491499410811, 24.02239188506811, 7.344735189641951, 93.24828388564349, 37.559665461568116, 21.291823293692467, 14.922317353291842, 5.038088822132663, 29.186343799827203, 56.659557888463226, 90.11318236324917, 67.44256558427027, 11.457531582059968, 96.70130383828241, 102.4330399567836, 80.80193392700903, 18.600822513184927, 8.331476261732131, 10.396190566919072, 37.66515297284856, 10.540563622531444, 5.350788669807929, 10.511200570121256, 219.8258387777439, 15.656129794163306, 41.52888134647302, 5.24272389346199, 5.621181093971957, 35.10037452779016, 10.312860580767467, 19.725727416722897, 24.108172027312957, 28.793022167411124, 29.88072874961561, 34.993716666549574, 6.416913609140187, 9.730497976635936, 51.21920053804767, 49.288515852838856, 27.636707225287708, 26.711420454389376, 8.065967944390533, 24.46827057061827, 5.831624367731696, 36.67390883291073, 30.068089842013666, 70.04354679966775, 26.05467362984465, 20.778198477218986, 20.21810595034806, 68.37712330843655, 43.560572420368665, 6.414464649593834, 47.03334901824465, 8.365533433397836, 20.90471342737052, 6.476578672952857, 52.508434134526745, 41.39576455745544, 9.314344000504637, 40.766263180513555, 43.87503425632654, 7.602649109264535, 83.12447807188396, 115.16869610602865, 23.706211881461456, 6.946813556888348, 230.1743370266268, 57.67350895139565, 7.117931033930386, 68.50403169123825, 15.503074355444124, 69.57156263791937, 10.352278514183192, 70.16105355917793, 15.437532240039888, 9.543274647529742, 56.82660837667783, 12.945002686236027, 18.581226015477316, 79.92625896456319, 17.671673345798048, 49.106638732430454, 11.634782229214302, 67.62461642140875, 39.753430748970054, 31.245287559002264, 58.47558608623416, 36.71092552458346, 10.579704417416217, 28.696689340862093, 14.041770212824428, 19.202963434275702, 17.558550837900754, 111.19631230125349, 51.05809016398415, 72.73641433509783, 57.3463259564386, 41.846412735179214, 72.63605473317202, 6.749454158416458, 6.104986297607064, 42.237303731639315, 19.12237607214691, 67.11037158368934, 32.30454608264913, 77.10938033062807, 21.629713327016432, 23.594878580269334, 19.376188888557582, 5.405054722101089, 10.207764000729398, 61.27221823631744, 9.629374949909005, 12.175008236722388, 48.047055788341225, 15.422478384673312, 22.496635834969357, 28.942684419859923, 6.477344207362868, 22.497775323703753, 9.410061635169745, 28.125507781465075, 24.58892933095907, 11.589536648575923, 33.685978082615534, 62.91602487303291, 65.29190970328725, 7.490980668496397, 11.967595803046088, 9.689166961811127, 42.845050177322605, 29.568486801990005, 31.587225102663695, 12.007017439116208, 49.73168917042606, 79.35906545198645, 14.534927117511451, 5.278214303825111, 53.478455653614674, 18.25889514069618, 26.056287877037114, 5.559155999139794, 32.43647134371194, 10.840411619773151, 47.585111983708806, 62.2915227677225, 5.97874199688988, 95.46383747918155, 28.867090018417386, 64.32655821180013, 17.874741076078877, 5.451943607487279, 10.639784515135213, 45.42719320733261, 53.138285727270656, 10.772642250033517, 6.68782390685025, 7.475187328159482, 13.49677342096091, 93.90231205018593, 46.04953210416524, 7.506092767742079, 6.516659892927473, 63.18723623879075, 63.35212872726247, 16.261524246681876, 53.51632706143356, 49.65531401918801, 18.54613995587085, 36.84273447099304, 102.34793416944247, 63.82852104798145, 66.60283189515181, 51.56165671831609, 84.51096576685566, 39.523612203331176, 14.468173823158617, 40.035716061696, 17.475096708870677, 20.13713506557714, 7.100479194211193, 51.52533795750702, 37.91672674777498, 14.155075363855435, 15.57139948081976, 29.920858604698182, 113.97901162529253, 172.1353779022366, 45.852443398448465, 7.648008373591177, 10.96224518140799, 19.942194451649197, 12.856936972652163, 66.95199822362342, 67.36366463847423, 5.495784531332389, 5.92053525315573, 126.00747392311068, 14.253029505606987, 12.892897276818013, 17.07437487663201, 15.192603061452509, 10.872348962835487, 6.303128674323218, 81.45746248762956, 7.345990789809725, 17.071117802793804, 19.58486056423806, 13.860159506403154, 79.06227321685694, 33.89135732308453, 32.07874719478263, 8.964279174125135, 29.277055650642435, 31.819329067466658, 20.687117108398816, 21.868471767976743, 30.891396185428412, 5.2465937140344, 67.00353852029679, 9.423996068926185, 6.945924146056292, 17.67776100130882, 26.37935657654401, 10.23520857123321, 23.273785362832385, 30.315435536929243, 99.24439352714245, 7.024236964564284, 6.58846281048474, 118.15364512906338, 85.24424198396427, 11.989608838691604, 124.03629133276289, 22.95469357873125, 23.91320639058567, 14.264039783480115, 128.21209122998857, 15.20515974229225, 43.693489426907135, 28.895786470453203, 64.61960536280364, 20.297108773280215, 24.975944995281594, 66.8721200787126, 60.95738496605071, 86.6056388210885, 12.98856940208219, 38.9267641549954, 6.170333912409165, 5.270605463974813, 11.767376159206982, 119.97960374601696, 6.885476894277275, 63.62581649829356, 5.729693724647018, 81.87164876732409, 10.813179270384511, 92.48846180587893, 32.91314384578149, 19.73387381097076, 33.27659783297675, 13.918002270974085, 71.70623021675722, 16.97197121812476, 38.80133176679871, 63.98339329909358, 25.821651826457845, 49.40195145112802, 78.14801187470255, 7.715997855909569, 42.49433333330028, 15.543644277719823, 13.199674665193614, 57.80335366998639, 66.38003455560683, 58.889237053403676, 24.103349527872417, 13.055407034354122, 42.83249908978332, 37.35220127700603, 42.6240195756276, 134.87355349233212, 41.17780586994364, 102.01976428813711, 19.627126101480357, 15.99885025027789, 6.128824420229418, 13.135904018353417, 64.54137529746751, 18.839184746245202, 56.8465419988181, 15.326635100315077, 46.366725053020915, 61.1488393167745, 37.02076827946723, 11.640641599901413, 24.34092070544274, 13.907730105638265, 9.966038713536932, 19.76712529517027, 37.39258209943426, 7.874248707360731, 18.69061400932574, 48.215864532448236, 81.45363912278631, 105.48262163571881, 21.612215802770674, 10.284693445316694, 14.924505947604272, 52.0212283684437, 11.020754855003236, 47.31337123256325, 8.38085947102259, 11.336425989046521, 5.128333267234039, 77.11712450074793, 10.900547108684204, 29.21409520962458, 85.22347886123876, 14.406439756169386, 10.854052578311466, 13.586651499279794, 25.38769937838996, 57.51261123209203, 15.388475303137882, 6.768334429504259, 16.520942648568095, 52.48430114374594, 29.36304594714356, 16.32227268911753, 7.505091426068415, 5.447302478592767, 14.015233107099302, 9.575213906073845, 10.333567824895711, 115.19082379872313, 34.099399877477495, 20.563375937807802, 23.56921720649044, 48.462844772713346, 44.048646049554435, 131.4373906157321, 69.242729076966, 106.18524026296606, 9.577014994064779, 81.24904699178788, 102.98758591410353, 58.87145502087167, 7.388038291483707, 11.508018474814156, 84.17932737672784, 6.230064580847763, 19.77283762859132, 19.047731126092245, 107.4418650766221, 75.57731201475146, 20.145669652757697, 12.355529128082377, 16.90160649750129, 6.264718791366809, 20.17568613840896, 34.53776973103189, 5.2895902687305405, 10.356822240335225, 16.071683661474154, 20.43885587559662, 9.282682669333804, 40.71333411050477, 49.21011777720516, 55.99753163458527, 8.966970733700714, 21.96773024655875, 9.157931360717383, 67.6889880605666, 5.2025092911052395, 40.17928424533103, 5.461819583842734, 82.50695655473847, 52.16251123022167, 6.450624102342592, 9.634149263211953, 8.506031005646635, 86.49896048590927, 37.21041337219348, 36.1889482099185, 12.813015066251943, 6.093461082803947, 56.72109144492491, 86.4702478387178, 6.867922905466202, 19.427393904841892, 36.96608714809282, 17.147692379678627, 8.610800078787062, 80.36057925205834, 15.090694313446033, 82.57208355831791, 41.50556534070745, 40.964000172624154, 70.88906098207289, 63.705012693578574, 58.93183242451888, 5.792168451913948, 102.1970279781224, 65.30621220166788, 57.259591869792786, 20.107276346775105, 218.07022720023852, 8.25112035005631, 104.88940211957875, 5.046429577015041, 5.18594172851482, 8.45678400944952, 84.7904026338397, 88.77794799967198, 42.5106020946845, 51.97990514510296, 15.879292189438786, 22.192293157673987, 33.751489465459265, 34.47489439034928, 53.45946192649037, 105.56412746854987, 15.89462471241124, 22.97172382856909, 14.840950504638773, 12.307501207575262, 77.5417323542288, 6.0159639825096125, 12.122010493280406, 245.8719574932145, 349.19134501225716, 86.30223031054341, 11.184452136539146, 5.028294945266088, 5.6132895098705005, 27.32059816637511, 12.426831361515076, 34.834278720052595, 9.925767891315276, 46.96532103066339, 46.74286821816855, 7.186285424899537, 9.36196507153823, 5.085625311120399, 5.252572766335549, 5.031531487014899, 5.079662067637895, 5.460106217029576, 5.032505653765295, 5.158681833732135, 5.035989406420697, 5.194699376447418, 5.028937286016958, 5.27190576469159, 5.044905304134643, 5.198435773869689, 5.041461798620566, 5.252579030590984, 5.146530956862453, 5.034809264144835, 5.186526235103636, 5.454581686854291, 5.206290406311199, 6.92655774400885, 5.2062954172937195, 5.032412517519043, 5.093485133703463, 5.077020254734127, 5.353733855015582, 5.062131825375507, 5.036654268728181, 5.137330574173371, 5.16237407610045, 5.205015208690269, 5.033327234802735, 5.039220793403081, 5.322741840910545, 5.0336823373579795, 5.031493227068064, 5.04980643625916, 11.045512147053158, 5.139962388872936, 5.138347727567074, 5.182828325904387, 5.0376839302236975, 5.03333406276877, 5.190777098269185, 5.047154387256495, 5.223698068289605, 5.164264659813329, 5.035771405999302, 5.052577047509993, 5.037465242599279, 5.130004757126433, 5.196360320914837, 99.57788548713937, 26.323108909784946, 36.086570269392524, 81.290331599503, 15.753613981948485, 25.663834688117294, 47.88412542866646, 5.167558514446882, 20.38021284937838, 5.176160547346675, 5.180979000291482, 5.216002871548401, 5.265259237080114, 5.035023533303601, 5.0278112311509595, 5.175819792996588, 5.179913207683069, 5.029769665632144, 24.08244715986757, 6.679421280282334, 8.046637685683594, 20.92380257769073, 51.74339428168027, 75.67247047436227, 16.831445526984112, 17.3318777951382, 19.782921660033654, 9.267046980365059, 32.73445838970526, 66.97350450039116, 33.61339338390423, 8.276035829501462, 21.908405040977776, 7.31656008503868, 31.373526727340472, 42.25957135814163, 48.34861298615492, 22.844123509111412, 63.67735409094451, 15.688328136270353, 30.357856639033695, 81.83083132829942, 71.16897019435687, 9.100931636224553, 90.40113696688262, 11.409502238302302, 10.125058208700729, 6.009101274399833, 79.06768861149956, 13.862292479021988, 53.72643384660789, 105.93596811962945, 5.077020254734127, 57.99959731604357, 15.583661449248876, 10.564523114841244, 16.98999222891949, 5.380286644801936, 26.456484878010073, 5.342553866185057, 25.24148066867805, 45.89277852808233, 20.2807518826346, 22.71386300256385, 13.15142154636997, 15.922236793967496, 67.37382408856757, 113.75368841221145, 5.392440178810995, 73.42588453292767, 22.39643016917383, 32.749516582362446, 28.960057113464085, 9.30526072567168, 6.264987626822, 5.102398663355311, 64.3126600454636, 69.72750489966067, 22.670781642563075, 38.46093788749864, 12.284212696476938, 6.153694955826081, 40.29939244170229, 5.156071829300013, 39.23594492202092, 44.40531153185235, 14.627233962435476, 102.32486330343656, 71.15523208448913, 58.2097293111654, 9.965551126061829, 36.26451301031516, 37.71322784360326, 21.09510769863872, 11.273186797910165, 20.590631282891923, 24.334456251145163, 10.701184998479267, 20.950646257441157, 7.256147313428333, 5.425974261130273, 14.877722065477295, 12.836668106857351, 6.709105588242363, 23.760133280298223, 30.293412553369528, 6.892750200776685, 10.939537616968675, 5.370128343236396, 23.037602793495868, 35.21241380719592, 23.77989944635734, 33.372106944911984, 19.754393744363508, 62.67267592422477, 7.472922182532151, 23.5243137194578, 8.202464192083871, 5.490963896444249, 6.462638117818033, 36.769051572590186, 80.0262799188596, 68.37733522715945, 24.237985411207003, 16.38572800233932, 18.208349492596454, 9.413809956655703, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3115110.9375, 5634107.8125, 5634121.875, 5634125.0, 5663425.0, 5663459.375, 5919100.0, 5942307.8125, 6033400.0, 6033410.9375, 6034646.875, 6036598.4375, 6036662.5, 6036895.3125, 6044331.25, 6147531.25, 6183256.25, 6189229.6875, 6189251.5625, 6191165.625, 6198931.25, 6243128.125, 6243785.9375, 6247785.9375, 6248223.4375, 6282410.9375, 6324296.875, 6357846.875, 6361421.875, 6404921.875, 6405934.375, 6440050.0, 6474570.3125, 6481854.6875, 6481865.625, 6488451.5625, 6488517.1875, 6494617.1875, 6496696.875, 6520460.9375, 6528064.0625, 6547900.0, 6554426.5625, 6554817.1875, 6568040.625, 6578257.8125, 6588942.1875, 6621559.375, 6631471.875, 6635531.25, 6654437.5, 6665718.75, 6682946.875, 6682950.0, 6685165.625, 6689162.5, 6691367.1875, 6691668.75, 6691837.5, 6692193.75, 6695432.8125, 6696435.9375, 6698275.0, 6699068.75, 6699104.6875, 6699153.125, 6701225.0, 6705925.0, 6709618.75, 6712417.1875, 6729406.25, 6736793.75, 6736882.8125, 6737126.5625, 6737468.75, 6740773.4375, 6741579.6875, 6741918.75, 6743065.625, 6744390.625, 6744404.6875, 6744526.5625, 6745879.6875, 6745890.625, 6751790.625, 6754082.8125, 6757743.75, 6760906.25, 6762471.875, 6763607.8125, 6766037.5, 6766559.375, 6766807.8125, 6767028.125, 6767139.0625, 6768104.6875, 6768104.6875, 6768123.4375, 6768453.125, 6768796.875, 6768937.5, 6768976.5625, 6769104.6875, 6770218.75, 6770635.9375, 6770767.1875, 6773189.0625, 6773279.6875, 6774393.75, 6777625.0, 6778889.0625, 6778987.5, 6779806.25, 6779864.0625, 6788132.8125, 6789350.0, 6790453.125, 6791943.75, 6815051.5625, 6818065.625, 6821471.875, 6822381.25, 6822403.125, 6822632.8125, 6825079.6875, 6825937.5, 6826232.8125, 6828239.0625, 6829604.6875, 6834428.125, 6888396.875, 6911712.5, 6916340.625, 6919662.5, 6919703.125, 6919709.375, 6920048.4375, 6921034.375, 6921578.125, 6921626.5625, 6922837.5, 6930159.375, 6932529.6875, 6934537.5, 6934578.125, 6934842.1875, 6949060.9375, 6957712.5, 6968756.25, 6976037.5, 6976078.125, 6978298.4375, 6979965.625, 6979990.625, 6980025.0, 6980046.875, 6980301.5625, 6981276.5625, 6981679.6875, 6981706.25, 6990925.0, 6991595.3125, 6992221.875, 6994320.3125, 6994529.6875, 6994725.0, 6995704.6875, 6996400.0, 6999260.9375, 6999893.75, 6999895.3125, 7005884.375, 7007076.5625, 7008846.875, 7011235.9375, 7021076.5625, 7022121.875, 7025043.75, 7025121.875, 7026081.25, 7027250.0, 7028751.5625, 7029206.25, 7030126.5625, 7030156.25, 7031229.6875, 7033834.375, 7034109.375, 7034720.3125, 7035610.9375, 7035743.75, 7093171.875, 7173779.6875, 7183164.0625, 7185237.5, 7196384.375, 7196928.125, 7200659.375, 7202081.25, 7202114.0625, 7203501.5625, 7206278.125, 7218793.75, 7228860.9375, 7230310.9375, 7241842.1875, 7261484.375, 7270854.6875, 7302081.25, 7320112.5, 7331489.0625, 7335273.4375, 7627573.4375, 7638767.1875, 7836210.9375, 7871896.875, 7882920.3125, 7883829.6875, 7883871.875, 7919821.875, 7938614.0625, 7983604.6875, 7985209.375, 7991139.0625, 8061953.125, 8066425.0, 8095821.875, 8102921.875, 8141506.25, 8142054.6875, 8142098.4375, 8143123.4375, 8147054.6875, 8208865.625, 8211881.25, 8220229.6875, 8222359.375, 8263764.0625, 8265456.25, 8275337.5, 8275579.6875, 8280126.5625, 8281557.8125, 8283015.625, 8284550.0, 8284871.875, 8285243.75, 8286992.1875, 8288046.875, 8288214.0625, 8288721.875, 8288779.6875, 8289332.8125, 8290140.625, 8290728.125, 8291904.6875, 8292239.0625, 8293653.125, 8295868.75, 8298518.75, 8299603.125, 8307140.625, 8342357.8125, 8345171.875, 8346464.0625, 8346818.75, 8347650.0, 8347710.9375, 8347892.1875, 8348901.5625, 8348903.125, 8370345.3125, 8370939.0625, 8388670.3125, 8505609.375, 8514090.625, 8689648.4375, 8715825.0, 8757460.9375, 8793262.5, 8804901.5625, 8836734.375, 8844026.5625, 8844067.1875, 8844081.25, 8928582.8125, 9045650.0, 9195806.25, 9286128.125, 9289253.125, 9304837.5, 9327178.125, 9329009.375, 9348467.1875, 9353704.6875, 9354778.125, 9355709.375, 9359067.1875, 9359123.4375, 9365395.3125, 9365446.875, 9399723.4375, 9407512.5, 9467870.3125, 9467931.25, 9485625.0, 9486040.625, 9487000.0, 9497506.25, 9507460.9375, 9509687.5, 9518878.125, 9519623.4375, 9563771.875, 9569398.4375, 9583593.75, 9605570.3125, 9650621.875, 9670181.25, 9671745.3125, 9702753.125, 10141192.1875, 10352703.125, 10943118.75, 10944190.625, 10944629.6875, 10946503.125, 10946625.0, 10950579.6875, 10957764.0625, 10973175.0, 10978946.875, 10981285.9375, 10986567.1875, 10991137.5, 11007923.4375, 11015268.75, 11018756.25, 11026857.8125, 11028803.125, 11032501.5625, 11040192.1875, 11040498.4375, 11131512.5, 11151245.3125, 11156267.1875, 11168410.9375, 11174157.8125, 11179207.8125, 11179739.0625, 11182878.125, 11184701.5625, 11186112.5, 11187476.5625, 11187907.8125, 11188073.4375, 11188965.625, 11190875.0, 11193532.8125, 11194198.4375, 11194525.0, 11198728.125, 11199101.5625, 11199231.25, 11199982.8125, 11206709.375, 11207785.9375, 11209046.875, 11209473.4375, 11210745.3125, 11210809.375, 11211065.625, 11211065.625, 11213003.125, 11213167.1875, 11213870.3125, 11214207.8125, 11214246.875, 11214610.9375, 11214664.0625, 11214778.125, 11214907.8125, 11214960.9375, 11215409.375, 11215467.1875, 11215510.9375, 11215550.0, 11215698.4375, 11215751.5625, 11215776.5625, 11215807.8125, 11215817.1875, 11215829.6875, 11215868.75, 11215889.0625, 11215926.5625, 11215998.4375, 11216135.9375, 11216295.3125, 11216346.875, 11216467.1875, 11216834.375, 11217304.6875, 11217368.75, 11217650.0, 11217825.0, 11217973.4375, 11218056.25, 11218387.5, 11218450.0, 11218592.1875, 11218682.8125, 11219028.125, 11219423.4375, 11219437.5, 11219451.5625, 11219468.75, 11219512.5, 11219543.75, 11219589.0625, 11219615.625, 11219628.125, 11219629.6875, 11219720.3125, 11219725.0, 11219862.5, 11219912.5, 11219937.5, 11219987.5, 11220215.625, 11220310.9375, 11220487.5, 11220582.8125, 11220610.9375, 11220750.0, 11220968.75, 11221153.125, 11221159.375, 11221159.375, 11221218.75, 11221256.25, 11221271.875, 11221326.5625, 11221421.875, 11221446.875, 11221557.8125, 11221601.5625, 11221710.9375, 11222351.5625, 11222445.3125, 11222495.3125, 11223134.375, 11223898.4375, 11224531.25, 11224806.25, 11225568.75, 11225882.8125, 11226350.0, 11226626.5625, 11226682.8125, 11226701.5625, 11226735.9375, 11226842.1875, 11226992.1875, 11227037.5, 11227040.625, 11227051.5625, 11227082.8125, 11227110.9375, 11227323.4375, 11227431.25, 11227435.9375, 11227485.9375, 11227534.375, 11227743.75, 11227745.3125, 11227910.9375, 11228050.0, 11228070.3125, 11228076.5625, 11228137.5, 11228156.25, 11228189.0625, 11228243.75, 11228253.125, 11228257.8125, 11228326.5625, 11228329.6875, 11228376.5625, 11228381.25, 11228484.375, 11228500.0, 11228610.9375, 11228625.0, 11228685.9375, 11228740.625, 11228810.9375, 11228928.125, 11228939.0625, 11228985.9375, 11229217.1875, 11229298.4375, 11229353.125, 11229465.625, 11229498.4375, 11229504.6875, 11229512.5, 11229543.75, 11229567.1875, 11229606.25, 11229770.3125, 11229782.8125, 11229860.9375, 11229903.125, 11229946.875, 11230006.25, 11230009.375, 11230185.9375, 11230276.5625, 11230431.25, 11230525.0, 11230629.6875, 11230650.0, 11230665.625, 11230875.0, 11230879.6875, 11231051.5625, 11231164.0625, 11231215.625, 11231423.4375, 11231489.0625, 11231673.4375, 11231687.5, 11232000.0, 11232223.4375, 11232365.625, 11232385.9375, 11232418.75, 11232432.8125, 11232465.625, 11232479.6875, 11232623.4375, 11232642.1875, 11232695.3125, 11232731.25, 11232751.5625, 11232804.6875, 11232925.0, 11232978.125, 11233023.4375, 11233168.75, 11233285.9375, 11233520.3125, 11233523.4375, 11233537.5, 11233579.6875, 11233615.625, 11233615.625, 11233623.4375, 11233784.375, 11233785.9375, 11233846.875, 11234073.4375, 11234082.8125, 11234110.9375, 11234143.75, 11234146.875, 11234303.125, 11234359.375, 11234446.875, 11234560.9375, 11234604.6875, 11234657.8125, 11234689.0625, 11234689.0625, 11234754.6875, 11234931.25, 11234989.0625, 11234998.4375, 11235000.0, 11235068.75, 11235245.3125, 11235396.875, 11235470.3125, 11235551.5625, 11235610.9375, 11235623.4375, 11235625.0, 11235639.0625, 11235660.9375, 11235698.4375, 11235762.5, 11235787.5, 11235801.5625, 11235856.25, 11235887.5, 11235900.0, 11235915.625, 11235918.75, 11235960.9375, 11235978.125, 11236043.75, 11236085.9375, 11236112.5, 11236131.25, 11236237.5, 11236337.5, 11236339.0625, 11236418.75, 11236465.625, 11236482.8125, 11236629.6875, 11236656.25, 11236675.0, 11236676.5625, 11236696.875, 11236717.1875, 11236735.9375, 11236875.0, 11236914.0625, 11236937.5, 11236959.375, 11236987.5, 11237062.5, 11237153.125, 11237217.1875, 11237246.875, 11237376.5625, 11237396.875, 11237442.1875, 11237520.3125, 11237526.5625, 11237575.0, 11237707.8125, 11237721.875, 11237742.1875, 11237753.125, 11237809.375, 11237890.625, 11237953.125, 11238157.8125, 11238184.375, 11238215.625, 11238245.3125, 11238312.5, 11238532.8125, 11238551.5625, 11238551.5625, 11238635.9375, 11238735.9375, 11238745.3125, 11238785.9375, 11238865.625, 11238906.25, 11239053.125, 11239089.0625, 11239150.0, 11239156.25, 11239160.9375, 11239164.0625, 11239279.6875, 11239357.8125, 11239395.3125, 11239417.1875, 11239467.1875, 11239484.375, 11239489.0625, 11239529.6875, 11239578.125, 11239668.75, 11239715.625, 11239943.75, 11239967.1875, 11240017.1875, 11240028.125, 11240032.8125, 11240076.5625, 11240150.0, 11240192.1875, 11240239.0625, 11240251.5625, 11240281.25, 11240390.625, 11240426.5625, 11240606.25, 11240712.5, 11240740.625, 11240776.5625, 11240829.6875, 11240845.3125, 11240898.4375, 11240907.8125, 11240915.625, 11241046.875, 11241056.25, 11241076.5625, 11241110.9375, 11241309.375, 11241335.9375, 11241440.625, 11241501.5625, 11241506.25, 11241556.25, 11241620.3125, 11241656.25, 11241679.6875, 11241704.6875, 11241746.875, 11241845.3125, 11241875.0, 11241885.9375, 11241892.1875, 11241921.875, 11241928.125, 11241945.3125, 11242096.875, 11242243.75, 11242412.5, 11242417.1875, 11242625.0, 11242806.25, 11242835.9375, 11242970.3125, 11243570.3125, 11243685.9375, 11244053.125, 11244206.25, 11244221.875, 11244279.6875, 11244571.875, 11244598.4375, 11244657.8125, 11244685.9375, 11244706.25, 11244839.0625, 11244987.5, 11245010.9375, 11245154.6875, 11245242.1875, 11245264.0625, 11245265.625, 11245353.125, 11245592.1875, 11245625.0, 11245704.6875, 11245837.5, 11245884.375, 11246115.625, 11246179.6875, 11246392.1875, 11246471.875, 11246484.375, 11246525.0, 11246971.875, 11247009.375, 11247062.5, 11247179.6875, 11247223.4375, 11247259.375, 11247309.375, 11247554.6875, 11247581.25, 11247604.6875, 11247742.1875, 11247773.4375, 11247801.5625, 11247826.5625, 11247853.125, 11247871.875, 11247925.0, 11248242.1875, 11248321.875, 11248440.625, 11248450.0, 11248476.5625, 11248487.5, 11248543.75, 11248546.875, 11248643.75, 11248671.875, 11248718.75, 11248798.4375, 11248959.375, 11248973.4375, 11248979.6875, 11248984.375, 11249000.0, 11249067.1875, 11249067.1875, 11249228.125, 11249559.375, 11249571.875, 11249575.0, 11249582.8125, 11249614.0625, 11249626.5625, 11249651.5625, 11249653.125, 11249654.6875, 11249660.9375, 11249662.5, 11249684.375, 11249810.9375, 11249817.1875, 11249820.3125, 11249862.5, 11250010.9375, 11250042.1875, 11250042.1875, 11250045.3125, 11250067.1875, 11250070.3125, 11250135.9375, 11250135.9375, 11250190.625, 11250195.3125, 11250214.0625, 11250271.875, 11250285.9375, 11250312.5, 11250320.3125, 11250725.0, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250729.6875, 11250729.6875, 11250731.25, 11250900.0, 11250914.0625, 11250914.0625, 11250937.5, 11250976.5625, 11251029.6875, 11251046.875, 11251212.5, 11251212.5, 11251212.5, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251215.625, 11251215.625, 11251215.625, 11251354.6875, 11251396.875, 11251428.125, 11251431.25, 11251453.125, 11251460.9375, 11251509.375, 11251526.5625, 11251564.0625, 11251570.3125, 11251664.0625, 11251789.0625, 11251796.875, 11251821.875, 11251884.375, 11251893.75, 11251895.3125, 11251921.875, 11251935.9375, 11251973.4375, 11252032.8125, 11252042.1875, 11252042.1875, 11252075.0, 11252076.5625, 11252085.9375, 11252123.4375, 11252137.5, 11252151.5625, 11252175.0, 11252239.0625, 11252257.8125, 11252260.9375, 11252275.0, 11252276.5625, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252279.6875, 11252292.1875, 11252304.6875, 11252307.8125, 11252309.375, 11252339.0625, 11252478.125, 11252534.375, 11252562.5, 11252589.0625, 11252601.5625, 11252628.125, 11252637.5, 11252646.875, 11252659.375, 11252698.4375, 11252717.1875, 11252728.125, 11252737.5, 11252790.625, 11252834.375, 11252857.8125, 11252920.3125, 11252976.5625, 11253067.1875, 11253067.1875, 11253125.0, 11253131.25, 11253131.25, 11253154.6875, 11253207.8125, 11253262.5, 11253370.3125, 11253431.25, 11253539.0625, 11253600.0, 11253668.75, 11253721.875, 11253768.75, 11253878.125, 11253932.8125, 11254010.9375, 11254028.125, 11254043.75, 11254043.75, 11254151.5625, 11254342.1875, 11254428.125, 11254560.9375, 11254592.1875, 11254596.875, 11254612.5, 11254760.9375, 11254981.25, 11254982.8125, 11255012.5, 11255051.5625, 11255134.375, 11255160.9375, 11255168.75, 11255212.5, 11255871.875, 11255896.875, 11255900.0, 11255981.25, 11256859.375, 11256960.9375, ...], [5.314754117441927, 22.471322539372462, 6.019538930268892, 15.878208358951511, 27.818630870331546, 25.320949706558626, 97.00727476579021, 31.249307113145925, 14.34451621098758, 6.974366963057785, 207.03013476391334, 9.828564559037886, 5.9896906701677874, 8.357477889990045, 77.40240997374157, 64.01682898953281, 41.37821330984354, 53.245849956977175, 9.558840883926523, 21.800075570413263, 136.186582052529, 55.57923852054338, 36.27496547453951, 77.5525371684033, 19.372900270424076, 11.893885024694981, 26.096962509339473, 6.583536348630056, 5.816078057959344, 58.87275985270499, 20.387267701453705, 6.387255739679347, 8.597296172677854, 151.1928566213699, 6.507860203932319, 5.6459317492895895, 156.65225762068815, 6.216762820929051, 27.088403524942297, 144.03939239185095, 60.8945925546735, 51.51537820808879, 82.68818952663065, 23.070734554450905, 6.101848744708288, 29.789623167288163, 48.04021362121569, 6.760573324875089, 12.571458601061225, 7.2404586407685825, 10.101384627169155, 12.55599505030241, 14.935221391348128, 52.5651954562904, 34.516302025068626, 59.33849982017299, 15.167369039009932, 105.56964783871967, 5.18641100891483, 14.897639712427964, 108.65634493779433, 74.09413346664086, 9.800882052891327, 42.28912445183623, 48.764014730483176, 9.994480766524198, 12.189554781259357, 118.84650941843097, 14.293095984381079, 26.9440797960431, 86.73451463367302, 77.0859379786514, 43.942124874765646, 72.81834283577439, 68.3836851345322, 223.47882226496574, 13.042131914015476, 119.18668936692058, 64.27382245915696, 24.640426390418483, 14.100508810973846, 8.505780400601463, 35.88413321612792, 13.213054007352964, 20.324712343819737, 130.0984447104152, 80.18727393571429, 5.824875592472543, 189.74461881656384, 71.44433603213083, 64.74036564917597, 20.06695202786913, 70.30268877804737, 6.827680022126525, 111.88103629572296, 28.582382322778074, 112.24254526313041, 8.262860561048262, 8.465994129862489, 24.06113255153346, 11.431479244355183, 16.731232078333196, 22.497278671503224, 40.65496475413761, 44.75559277528433, 11.756148767520656, 29.796907851539757, 65.22599801642448, 98.65803514444139, 12.46825306366655, 34.27826819940057, 17.379832176421246, 15.960311098058632, 40.530010146938615, 74.96926672535595, 262.88100452820953, 34.02495409629305, 12.239427342443294, 30.805912912983544, 46.75473269259376, 37.04081365594865, 85.82784987872668, 67.95245643126157, 70.89197619857335, 5.944283119798013, 5.423688117311108, 82.02326821523143, 19.47993080568358, 33.378541642000485, 76.4235034879558, 10.192027529013986, 123.13679259380521, 11.831828140134673, 28.699314531430808, 55.61112785758638, 15.572330566350129, 35.09185673459172, 68.99111156964176, 18.77337792712887, 50.01161068082958, 56.384431236018656, 111.06087940803602, 32.02487026228756, 36.46844947100101, 30.292469212341796, 12.092926122518818, 13.202552758895127, 86.83710418627692, 6.108998838571117, 40.12994049824663, 21.58253560091123, 44.30074660707615, 51.703752116271914, 177.8476248230857, 30.512027546836652, 6.278976028150291, 63.88613201025497, 21.633177015735455, 24.72044953305657, 43.66397020016217, 6.0467493820564, 81.25886231668149, 32.36578866564117, 91.46792207808711, 16.04803326809021, 45.1665552157065, 20.95014839038062, 18.373307562525234, 137.09306648056037, 49.27500978903581, 25.05539012275851, 35.85561505325142, 49.63512379569887, 13.533274245704197, 144.66459660968422, 30.238327059887414, 10.79085689938968, 10.822403633384338, 114.80704433157987, 19.51708667433188, 6.347049368040914, 14.985198327333302, 17.699001922956334, 17.690438230652685, 6.878443076496198, 6.595857132558296, 11.55299095453667, 6.126042191883925, 6.143274977477479, 67.49571266260632, 5.051980762167149, 27.334513098036368, 16.916809414247613, 119.2488464510604, 63.87083266294199, 31.76317451600848, 35.291449702131374, 78.32232290946703, 51.79388409388497, 100.7642763766441, 59.4793443956727, 48.04757481891713, 110.21462779557571, 32.225152665839964, 45.66435590450238, 75.3784879680863, 14.519820915432234, 19.949613272223008, 62.447476385269255, 44.36066424127745, 9.19348918832497, 15.874604784878475, 10.820806446616766, 90.71016245619643, 216.76658944572873, 18.387400019263666, 41.93219096840689, 49.484644637208426, 8.115364360514166, 40.44248960983537, 13.620619182671131, 52.93493465430099, 46.196490852867015, 44.98325462613313, 60.515523996012014, 100.02922975533941, 58.22835305466112, 29.424594730849037, 45.09794707643818, 74.67193899405439, 5.932145806650328, 7.8613168974448335, 64.96292803654919, 90.2945091502549, 35.76896737515884, 112.14079838712141, 108.46908668324558, 12.93812741184528, 151.90883208941688, 12.074019789165149, 22.880172469412063, 5.376912661274244, 49.13231699992742, 12.309904288088482, 104.91206240601278, 7.578192851631945, 26.94642719233982, 70.96599403871751, 83.5908867342005, 194.97464385220948, 10.059551386552387, 43.451605941533785, 82.57986275666985, 30.431267579593392, 5.532556125823659, 19.116926081351135, 39.181204016705806, 96.07561366414089, 53.940042117922864, 36.65671935212853, 87.84932453984796, 78.82993905516763, 54.797090872305624, 30.20257183714216, 36.8630247168127, 9.226304455640253, 6.352369774560933, 78.43108573949075, 62.127084737708245, 125.83501031466548, 77.40038474250177, 17.06415553532205, 50.830269839292015, 18.706974271778034, 30.204920381097534, 21.42360798177938, 8.637924164541353, 49.05779888413796, 9.655957849029907, 20.893181398045563, 60.37465486588317, 87.77014172314814, 8.38218209604039, 77.33791942266302, 5.853117109903921, 108.93230005961473, 31.467051744198255, 60.83399209399228, 39.65418122087589, 41.50436734995548, 30.384594447663517, 27.37473618940027, 20.74822244010794, 13.354138131651972, 33.9790856361798, 43.03675301788676, 7.738644874646614, 11.81461901786157, 5.572861282506704, 20.449035396413016, 5.136435653737118, 47.68576186642596, 27.844900009008743, 9.22767972266897, 5.592886208915092, 10.91894086051389, 77.76300501000273, 149.6931933138954, 78.10913001685927, 11.257871554190162, 109.43474045723788, 117.3252326975114, 14.6416001350918, 38.904663200207764, 118.43389893864192, 42.21886453883787, 13.250767197149864, 83.26677569326958, 30.26742498019601, 21.59757649898721, 9.63154029916023, 10.48939294714263, 83.86381144810116, 18.25105874992725, 18.959829759819957, 11.687588276738836, 9.372850747864751, 33.44230053381097, 153.3876257183668, 12.606327918224752, 61.130927479261416, 10.835144413453651, 21.058321556811457, 14.334133083163753, 42.899623581611465, 21.175408034218272, 34.64691599366801, 20.969760453659667, 8.056935563840861, 12.595247098914287, 59.852512981013376, 25.564156970777695, 15.534328709155622, 9.346539856045428, 22.977487632789348, 41.32703227132581, 5.8019470190176525, 37.41216230855191, 37.49714269738632, 24.917797582973257, 5.7114034600447114, 12.375402684916704, 21.572310292316132, 47.05103262246944, 17.189044877869783, 14.8635836831425, 5.6898983424929135, 10.569907414662667, 107.22188092879648, 42.503289723986455, 30.285679992554382, 48.00351228413597, 17.098931546123573, 49.11369213583799, 5.772756943693512, 118.76595780953258, 39.747962774873564, 18.36593511148981, 57.95245669785628, 19.248710058729483, 8.690122028851398, 27.265804069792217, 14.638517529895674, 14.098981305826761, 17.499690256838043, 48.98491499410811, 24.02239188506811, 7.344735189641951, 93.24828388564349, 37.559665461568116, 21.291823293692467, 14.922317353291842, 5.038088822132663, 29.186343799827203, 56.659557888463226, 90.11318236324917, 67.44256558427027, 11.457531582059968, 96.70130383828241, 102.4330399567836, 80.80193392700903, 18.600822513184927, 8.331476261732131, 10.396190566919072, 37.66515297284856, 10.540563622531444, 5.350788669807929, 10.511200570121256, 219.8258387777439, 15.656129794163306, 41.52888134647302, 5.24272389346199, 5.621181093971957, 35.10037452779016, 10.312860580767467, 19.725727416722897, 24.108172027312957, 28.793022167411124, 29.88072874961561, 34.993716666549574, 6.416913609140187, 9.730497976635936, 51.21920053804767, 49.288515852838856, 27.636707225287708, 26.711420454389376, 8.065967944390533, 24.46827057061827, 5.831624367731696, 36.67390883291073, 30.068089842013666, 70.04354679966775, 26.05467362984465, 20.778198477218986, 20.21810595034806, 68.37712330843655, 43.560572420368665, 6.414464649593834, 47.03334901824465, 8.365533433397836, 20.90471342737052, 6.476578672952857, 52.508434134526745, 41.39576455745544, 9.314344000504637, 40.766263180513555, 43.87503425632654, 7.602649109264535, 83.12447807188396, 115.16869610602865, 23.706211881461456, 6.946813556888348, 230.1743370266268, 57.67350895139565, 7.117931033930386, 68.50403169123825, 15.503074355444124, 69.57156263791937, 10.352278514183192, 70.16105355917793, 15.437532240039888, 9.543274647529742, 56.82660837667783, 12.945002686236027, 18.581226015477316, 79.92625896456319, 17.671673345798048, 49.106638732430454, 11.634782229214302, 67.62461642140875, 39.753430748970054, 31.245287559002264, 58.47558608623416, 36.71092552458346, 10.579704417416217, 28.696689340862093, 14.041770212824428, 19.202963434275702, 17.558550837900754, 111.19631230125349, 51.05809016398415, 72.73641433509783, 57.3463259564386, 41.846412735179214, 72.63605473317202, 6.749454158416458, 6.104986297607064, 42.237303731639315, 19.12237607214691, 67.11037158368934, 32.30454608264913, 77.10938033062807, 21.629713327016432, 23.594878580269334, 19.376188888557582, 5.405054722101089, 10.207764000729398, 61.27221823631744, 9.629374949909005, 12.175008236722388, 48.047055788341225, 15.422478384673312, 22.496635834969357, 28.942684419859923, 6.477344207362868, 22.497775323703753, 9.410061635169745, 28.125507781465075, 24.58892933095907, 11.589536648575923, 33.685978082615534, 62.91602487303291, 65.29190970328725, 7.490980668496397, 11.967595803046088, 9.689166961811127, 42.845050177322605, 29.568486801990005, 31.587225102663695, 12.007017439116208, 49.73168917042606, 79.35906545198645, 14.534927117511451, 5.278214303825111, 53.478455653614674, 18.25889514069618, 26.056287877037114, 5.559155999139794, 32.43647134371194, 10.840411619773151, 47.585111983708806, 62.2915227677225, 5.97874199688988, 95.46383747918155, 28.867090018417386, 64.32655821180013, 17.874741076078877, 5.451943607487279, 10.639784515135213, 45.42719320733261, 53.138285727270656, 10.772642250033517, 6.68782390685025, 7.475187328159482, 13.49677342096091, 93.90231205018593, 46.04953210416524, 7.506092767742079, 6.516659892927473, 63.18723623879075, 63.35212872726247, 16.261524246681876, 53.51632706143356, 49.65531401918801, 18.54613995587085, 36.84273447099304, 102.34793416944247, 63.82852104798145, 66.60283189515181, 51.56165671831609, 84.51096576685566, 39.523612203331176, 14.468173823158617, 40.035716061696, 17.475096708870677, 20.13713506557714, 7.100479194211193, 51.52533795750702, 37.91672674777498, 14.155075363855435, 15.57139948081976, 29.920858604698182, 113.97901162529253, 172.1353779022366, 45.852443398448465, 7.648008373591177, 10.96224518140799, 19.942194451649197, 12.856936972652163, 66.95199822362342, 67.36366463847423, 5.495784531332389, 5.92053525315573, 126.00747392311068, 14.253029505606987, 12.892897276818013, 17.07437487663201, 15.192603061452509, 10.872348962835487, 6.303128674323218, 81.45746248762956, 7.345990789809725, 17.071117802793804, 19.58486056423806, 13.860159506403154, 79.06227321685694, 33.89135732308453, 32.07874719478263, 8.964279174125135, 29.277055650642435, 31.819329067466658, 20.687117108398816, 21.868471767976743, 30.891396185428412, 5.2465937140344, 67.00353852029679, 9.423996068926185, 6.945924146056292, 17.67776100130882, 26.37935657654401, 10.23520857123321, 23.273785362832385, 30.315435536929243, 99.24439352714245, 7.024236964564284, 6.58846281048474, 118.15364512906338, 85.24424198396427, 11.989608838691604, 124.03629133276289, 22.95469357873125, 23.91320639058567, 14.264039783480115, 128.21209122998857, 15.20515974229225, 43.693489426907135, 28.895786470453203, 64.61960536280364, 20.297108773280215, 24.975944995281594, 66.8721200787126, 60.95738496605071, 86.6056388210885, 12.98856940208219, 38.9267641549954, 6.170333912409165, 5.270605463974813, 11.767376159206982, 119.97960374601696, 6.885476894277275, 63.62581649829356, 5.729693724647018, 81.87164876732409, 10.813179270384511, 92.48846180587893, 32.91314384578149, 19.73387381097076, 33.27659783297675, 13.918002270974085, 71.70623021675722, 16.97197121812476, 38.80133176679871, 63.98339329909358, 25.821651826457845, 49.40195145112802, 78.14801187470255, 7.715997855909569, 42.49433333330028, 15.543644277719823, 13.199674665193614, 57.80335366998639, 66.38003455560683, 58.889237053403676, 24.103349527872417, 13.055407034354122, 42.83249908978332, 37.35220127700603, 42.6240195756276, 134.87355349233212, 41.17780586994364, 102.01976428813711, 19.627126101480357, 15.99885025027789, 6.128824420229418, 13.135904018353417, 64.54137529746751, 18.839184746245202, 56.8465419988181, 15.326635100315077, 46.366725053020915, 61.1488393167745, 37.02076827946723, 11.640641599901413, 24.34092070544274, 13.907730105638265, 9.966038713536932, 19.76712529517027, 37.39258209943426, 7.874248707360731, 18.69061400932574, 48.215864532448236, 81.45363912278631, 105.48262163571881, 21.612215802770674, 10.284693445316694, 14.924505947604272, 52.0212283684437, 11.020754855003236, 47.31337123256325, 8.38085947102259, 11.336425989046521, 5.128333267234039, 77.11712450074793, 10.900547108684204, 29.21409520962458, 85.22347886123876, 14.406439756169386, 10.854052578311466, 13.586651499279794, 25.38769937838996, 57.51261123209203, 15.388475303137882, 6.768334429504259, 16.520942648568095, 52.48430114374594, 29.36304594714356, 16.32227268911753, 7.505091426068415, 5.447302478592767, 14.015233107099302, 9.575213906073845, 10.333567824895711, 115.19082379872313, 34.099399877477495, 20.563375937807802, 23.56921720649044, 48.462844772713346, 44.048646049554435, 131.4373906157321, 69.242729076966, 106.18524026296606, 9.577014994064779, 81.24904699178788, 102.98758591410353, 58.87145502087167, 7.388038291483707, 11.508018474814156, 84.17932737672784, 6.230064580847763, 19.77283762859132, 19.047731126092245, 107.4418650766221, 75.57731201475146, 20.145669652757697, 12.355529128082377, 16.90160649750129, 6.264718791366809, 20.17568613840896, 34.53776973103189, 5.2895902687305405, 10.356822240335225, 16.071683661474154, 20.43885587559662, 9.282682669333804, 40.71333411050477, 49.21011777720516, 55.99753163458527, 8.966970733700714, 21.96773024655875, 9.157931360717383, 67.6889880605666, 5.2025092911052395, 40.17928424533103, 5.461819583842734, 82.50695655473847, 52.16251123022167, 6.450624102342592, 9.634149263211953, 8.506031005646635, 86.49896048590927, 37.21041337219348, 36.1889482099185, 12.813015066251943, 6.093461082803947, 56.72109144492491, 86.4702478387178, 6.867922905466202, 19.427393904841892, 36.96608714809282, 17.147692379678627, 8.610800078787062, 80.36057925205834, 15.090694313446033, 82.57208355831791, 41.50556534070745, 40.964000172624154, 70.88906098207289, 63.705012693578574, 58.93183242451888, 5.792168451913948, 102.1970279781224, 65.30621220166788, 57.259591869792786, 20.107276346775105, 218.07022720023852, 8.25112035005631, 104.88940211957875, 5.046429577015041, 5.18594172851482, 8.45678400944952, 84.7904026338397, 88.77794799967198, 42.5106020946845, 51.97990514510296, 15.879292189438786, 22.192293157673987, 33.751489465459265, 34.47489439034928, 53.45946192649037, 105.56412746854987, 15.89462471241124, 22.97172382856909, 14.840950504638773, 12.307501207575262, 77.5417323542288, 6.0159639825096125, 12.122010493280406, 245.8719574932145, 349.19134501225716, 86.30223031054341, 11.184452136539146, 5.028294945266088, 5.6132895098705005, 27.32059816637511, 12.426831361515076, 34.834278720052595, 9.925767891315276, 46.96532103066339, 46.74286821816855, 7.186285424899537, 9.36196507153823, 5.085625311120399, 5.252572766335549, 5.031531487014899, 5.079662067637895, 5.460106217029576, 5.032505653765295, 5.158681833732135, 5.035989406420697, 5.194699376447418, 5.028937286016958, 5.27190576469159, 5.044905304134643, 5.198435773869689, 5.041461798620566, 5.252579030590984, 5.146530956862453, 5.034809264144835, 5.186526235103636, 5.454581686854291, 5.206290406311199, 6.92655774400885, 5.2062954172937195, 5.032412517519043, 5.093485133703463, 5.077020254734127, 5.353733855015582, 5.062131825375507, 5.036654268728181, 5.137330574173371, 5.16237407610045, 5.205015208690269, 5.033327234802735, 5.039220793403081, 5.322741840910545, 5.0336823373579795, 5.031493227068064, 5.04980643625916, 11.045512147053158, 5.139962388872936, 5.138347727567074, 5.182828325904387, 5.0376839302236975, 5.03333406276877, 5.190777098269185, 5.047154387256495, 5.223698068289605, 5.164264659813329, 5.035771405999302, 5.052577047509993, 5.037465242599279, 5.130004757126433, 5.196360320914837, 99.57788548713937, 26.323108909784946, 36.086570269392524, 81.290331599503, 15.753613981948485, 25.663834688117294, 47.88412542866646, 5.167558514446882, 20.38021284937838, 5.176160547346675, 5.180979000291482, 5.216002871548401, 5.265259237080114, 5.035023533303601, 5.0278112311509595, 5.175819792996588, 5.179913207683069, 5.029769665632144, 24.08244715986757, 6.679421280282334, 8.046637685683594, 20.92380257769073, 51.74339428168027, 75.67247047436227, 16.831445526984112, 17.3318777951382, 19.782921660033654, 9.267046980365059, 32.73445838970526, 66.97350450039116, 33.61339338390423, 8.276035829501462, 21.908405040977776, 7.31656008503868, 31.373526727340472, 42.25957135814163, 48.34861298615492, 22.844123509111412, 63.67735409094451, 15.688328136270353, 30.357856639033695, 81.83083132829942, 71.16897019435687, 9.100931636224553, 90.40113696688262, 11.409502238302302, 10.125058208700729, 6.009101274399833, 79.06768861149956, 13.862292479021988, 53.72643384660789, 105.93596811962945, 5.077020254734127, 57.99959731604357, 15.583661449248876, 10.564523114841244, 16.98999222891949, 5.380286644801936, 26.456484878010073, 5.342553866185057, 25.24148066867805, 45.89277852808233, 20.2807518826346, 22.71386300256385, 13.15142154636997, 15.922236793967496, 67.37382408856757, 113.75368841221145, 5.392440178810995, 73.42588453292767, 22.39643016917383, 32.749516582362446, 28.960057113464085, 9.30526072567168, 6.264987626822, 5.102398663355311, 64.3126600454636, 69.72750489966067, 22.670781642563075, 38.46093788749864, 12.284212696476938, 6.153694955826081, 40.29939244170229, 5.156071829300013, 39.23594492202092, 44.40531153185235, 14.627233962435476, 102.32486330343656, 71.15523208448913, 58.2097293111654, 9.965551126061829, 36.26451301031516, 37.71322784360326, 21.09510769863872, 11.273186797910165, 20.590631282891923, 24.334456251145163, 10.701184998479267, 20.950646257441157, 7.256147313428333, 5.425974261130273, 14.877722065477295, 12.836668106857351, 6.709105588242363, 23.760133280298223, 30.293412553369528, 6.892750200776685, 10.939537616968675, 5.370128343236396, 23.037602793495868, 35.21241380719592, 23.77989944635734, 33.372106944911984, 19.754393744363508, 62.67267592422477, 7.472922182532151, 23.5243137194578, 8.202464192083871, 5.490963896444249, 6.462638117818033, 36.769051572590186, 80.0262799188596, 68.37733522715945, 24.237985411207003, 16.38572800233932, 18.208349492596454, 9.413809956655703, ...])
caption, T_hit,count = 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, count, caption);
([3115110.9375, 5634107.8125, 5634121.875, 5634125.0, 5663425.0, 5663459.375, 5919100.0, 5942307.8125, 6033400.0, 6033410.9375, 6034646.875, 6036598.4375, 6036662.5, 6036895.3125, 6044331.25, 6147531.25, 6183256.25, 6189229.6875, 6189251.5625, 6191165.625, 6198931.25, 6243128.125, 6243785.9375, 6247785.9375, 6248223.4375, 6282410.9375, 6324296.875, 6357846.875, 6361421.875, 6404921.875, 6405934.375, 6440050.0, 6474570.3125, 6481854.6875, 6481865.625, 6488451.5625, 6488517.1875, 6494617.1875, 6496696.875, 6520460.9375, 6528064.0625, 6547900.0, 6554426.5625, 6554817.1875, 6568040.625, 6578257.8125, 6588942.1875, 6621559.375, 6631471.875, 6635531.25, 6654437.5, 6665718.75, 6682946.875, 6682950.0, 6685165.625, 6689162.5, 6691367.1875, 6691668.75, 6691837.5, 6692193.75, 6695432.8125, 6696435.9375, 6698275.0, 6699068.75, 6699104.6875, 6699153.125, 6701225.0, 6705925.0, 6709618.75, 6712417.1875, 6729406.25, 6736793.75, 6736882.8125, 6737126.5625, 6737468.75, 6740773.4375, 6741579.6875, 6741918.75, 6743065.625, 6744390.625, 6744404.6875, 6744526.5625, 6745879.6875, 6745890.625, 6751790.625, 6754082.8125, 6757743.75, 6760906.25, 6762471.875, 6763607.8125, 6766037.5, 6766559.375, 6766807.8125, 6767028.125, 6767139.0625, 6768104.6875, 6768104.6875, 6768123.4375, 6768453.125, 6768796.875, 6768937.5, 6768976.5625, 6769104.6875, 6770218.75, 6770635.9375, 6770767.1875, 6773189.0625, 6773279.6875, 6774393.75, 6777625.0, 6778889.0625, 6778987.5, 6779806.25, 6779864.0625, 6788132.8125, 6789350.0, 6790453.125, 6791943.75, 6815051.5625, 6818065.625, 6821471.875, 6822381.25, 6822403.125, 6822632.8125, 6825079.6875, 6825937.5, 6826232.8125, 6828239.0625, 6829604.6875, 6834428.125, 6888396.875, 6911712.5, 6916340.625, 6919662.5, 6919703.125, 6919709.375, 6920048.4375, 6921034.375, 6921578.125, 6921626.5625, 6922837.5, 6930159.375, 6932529.6875, 6934537.5, 6934578.125, 6934842.1875, 6949060.9375, 6957712.5, 6968756.25, 6976037.5, 6976078.125, 6978298.4375, 6979965.625, 6979990.625, 6980025.0, 6980046.875, 6980301.5625, 6981276.5625, 6981679.6875, 6981706.25, 6990925.0, 6991595.3125, 6992221.875, 6994320.3125, 6994529.6875, 6994725.0, 6995704.6875, 6996400.0, 6999260.9375, 6999893.75, 6999895.3125, 7005884.375, 7007076.5625, 7008846.875, 7011235.9375, 7021076.5625, 7022121.875, 7025043.75, 7025121.875, 7026081.25, 7027250.0, 7028751.5625, 7029206.25, 7030126.5625, 7030156.25, 7031229.6875, 7033834.375, 7034109.375, 7034720.3125, 7035610.9375, 7035743.75, 7093171.875, 7173779.6875, 7183164.0625, 7185237.5, 7196384.375, 7196928.125, 7200659.375, 7202081.25, 7202114.0625, 7203501.5625, 7206278.125, 7218793.75, 7228860.9375, 7230310.9375, 7241842.1875, 7261484.375, 7270854.6875, 7302081.25, 7320112.5, 7331489.0625, 7335273.4375, 7627573.4375, 7638767.1875, 7836210.9375, 7871896.875, 7882920.3125, 7883829.6875, 7883871.875, 7919821.875, 7938614.0625, 7983604.6875, 7985209.375, 7991139.0625, 8061953.125, 8066425.0, 8095821.875, 8102921.875, 8141506.25, 8142054.6875, 8142098.4375, 8143123.4375, 8147054.6875, 8208865.625, 8211881.25, 8220229.6875, 8222359.375, 8263764.0625, 8265456.25, 8275337.5, 8275579.6875, 8280126.5625, 8281557.8125, 8283015.625, 8284550.0, 8284871.875, 8285243.75, 8286992.1875, 8288046.875, 8288214.0625, 8288721.875, 8288779.6875, 8289332.8125, 8290140.625, 8290728.125, 8291904.6875, 8292239.0625, 8293653.125, 8295868.75, 8298518.75, 8299603.125, 8307140.625, 8342357.8125, 8345171.875, 8346464.0625, 8346818.75, 8347650.0, 8347710.9375, 8347892.1875, 8348901.5625, 8348903.125, 8370345.3125, 8370939.0625, 8388670.3125, 8505609.375, 8514090.625, 8689648.4375, 8715825.0, 8757460.9375, 8793262.5, 8804901.5625, 8836734.375, 8844026.5625, 8844067.1875, 8844081.25, 8928582.8125, 9045650.0, 9195806.25, 9286128.125, 9289253.125, 9304837.5, 9327178.125, 9329009.375, 9348467.1875, 9353704.6875, 9354778.125, 9355709.375, 9359067.1875, 9359123.4375, 9365395.3125, 9365446.875, 9399723.4375, 9407512.5, 9467870.3125, 9467931.25, 9485625.0, 9486040.625, 9487000.0, 9497506.25, 9507460.9375, 9509687.5, 9518878.125, 9519623.4375, 9563771.875, 9569398.4375, 9583593.75, 9605570.3125, 9650621.875, 9670181.25, 9671745.3125, 9702753.125, 10141192.1875, 10352703.125, 10943118.75, 10944190.625, 10944629.6875, 10946503.125, 10946625.0, 10950579.6875, 10957764.0625, 10973175.0, 10978946.875, 10981285.9375, 10986567.1875, 10991137.5, 11007923.4375, 11015268.75, 11018756.25, 11026857.8125, 11028803.125, 11032501.5625, 11040192.1875, 11040498.4375, 11131512.5, 11151245.3125, 11156267.1875, 11168410.9375, 11174157.8125, 11179207.8125, 11179739.0625, 11182878.125, 11184701.5625, 11186112.5, 11187476.5625, 11187907.8125, 11188073.4375, 11188965.625, 11190875.0, 11193532.8125, 11194198.4375, 11194525.0, 11198728.125, 11199101.5625, 11199231.25, 11199982.8125, 11206709.375, 11207785.9375, 11209046.875, 11209473.4375, 11210745.3125, 11210809.375, 11211065.625, 11211065.625, 11213003.125, 11213167.1875, 11213870.3125, 11214207.8125, 11214246.875, 11214610.9375, 11214664.0625, 11214778.125, 11214907.8125, 11214960.9375, 11215409.375, 11215467.1875, 11215510.9375, 11215550.0, 11215698.4375, 11215751.5625, 11215776.5625, 11215807.8125, 11215817.1875, 11215829.6875, 11215868.75, 11215889.0625, 11215926.5625, 11215998.4375, 11216135.9375, 11216295.3125, 11216346.875, 11216467.1875, 11216834.375, 11217304.6875, 11217368.75, 11217650.0, 11217825.0, 11217973.4375, 11218056.25, 11218387.5, 11218450.0, 11218592.1875, 11218682.8125, 11219028.125, 11219423.4375, 11219437.5, 11219451.5625, 11219468.75, 11219512.5, 11219543.75, 11219589.0625, 11219615.625, 11219628.125, 11219629.6875, 11219720.3125, 11219725.0, 11219862.5, 11219912.5, 11219937.5, 11219987.5, 11220215.625, 11220310.9375, 11220487.5, 11220582.8125, 11220610.9375, 11220750.0, 11220968.75, 11221153.125, 11221159.375, 11221159.375, 11221218.75, 11221256.25, 11221271.875, 11221326.5625, 11221421.875, 11221446.875, 11221557.8125, 11221601.5625, 11221710.9375, 11222351.5625, 11222445.3125, 11222495.3125, 11223134.375, 11223898.4375, 11224531.25, 11224806.25, 11225568.75, 11225882.8125, 11226350.0, 11226626.5625, 11226682.8125, 11226701.5625, 11226735.9375, 11226842.1875, 11226992.1875, 11227037.5, 11227040.625, 11227051.5625, 11227082.8125, 11227110.9375, 11227323.4375, 11227431.25, 11227435.9375, 11227485.9375, 11227534.375, 11227743.75, 11227745.3125, 11227910.9375, 11228050.0, 11228070.3125, 11228076.5625, 11228137.5, 11228156.25, 11228189.0625, 11228243.75, 11228253.125, 11228257.8125, 11228326.5625, 11228329.6875, 11228376.5625, 11228381.25, 11228484.375, 11228500.0, 11228610.9375, 11228625.0, 11228685.9375, 11228740.625, 11228810.9375, 11228928.125, 11228939.0625, 11228985.9375, 11229217.1875, 11229298.4375, 11229353.125, 11229465.625, 11229498.4375, 11229504.6875, 11229512.5, 11229543.75, 11229567.1875, 11229606.25, 11229770.3125, 11229782.8125, 11229860.9375, 11229903.125, 11229946.875, 11230006.25, 11230009.375, 11230185.9375, 11230276.5625, 11230431.25, 11230525.0, 11230629.6875, 11230650.0, 11230665.625, 11230875.0, 11230879.6875, 11231051.5625, 11231164.0625, 11231215.625, 11231423.4375, 11231489.0625, 11231673.4375, 11231687.5, 11232000.0, 11232223.4375, 11232365.625, 11232385.9375, 11232418.75, 11232432.8125, 11232465.625, 11232479.6875, 11232623.4375, 11232642.1875, 11232695.3125, 11232731.25, 11232751.5625, 11232804.6875, 11232925.0, 11232978.125, 11233023.4375, 11233168.75, 11233285.9375, 11233520.3125, 11233523.4375, 11233537.5, 11233579.6875, 11233615.625, 11233615.625, 11233623.4375, 11233784.375, 11233785.9375, 11233846.875, 11234073.4375, 11234082.8125, 11234110.9375, 11234143.75, 11234146.875, 11234303.125, 11234359.375, 11234446.875, 11234560.9375, 11234604.6875, 11234657.8125, 11234689.0625, 11234689.0625, 11234754.6875, 11234931.25, 11234989.0625, 11234998.4375, 11235000.0, 11235068.75, 11235245.3125, 11235396.875, 11235470.3125, 11235551.5625, 11235610.9375, 11235623.4375, 11235625.0, 11235639.0625, 11235660.9375, 11235698.4375, 11235762.5, 11235787.5, 11235801.5625, 11235856.25, 11235887.5, 11235900.0, 11235915.625, 11235918.75, 11235960.9375, 11235978.125, 11236043.75, 11236085.9375, 11236112.5, 11236131.25, 11236237.5, 11236337.5, 11236339.0625, 11236418.75, 11236465.625, 11236482.8125, 11236629.6875, 11236656.25, 11236675.0, 11236676.5625, 11236696.875, 11236717.1875, 11236735.9375, 11236875.0, 11236914.0625, 11236937.5, 11236959.375, 11236987.5, 11237062.5, 11237153.125, 11237217.1875, 11237246.875, 11237376.5625, 11237396.875, 11237442.1875, 11237520.3125, 11237526.5625, 11237575.0, 11237707.8125, 11237721.875, 11237742.1875, 11237753.125, 11237809.375, 11237890.625, 11237953.125, 11238157.8125, 11238184.375, 11238215.625, 11238245.3125, 11238312.5, 11238532.8125, 11238551.5625, 11238551.5625, 11238635.9375, 11238735.9375, 11238745.3125, 11238785.9375, 11238865.625, 11238906.25, 11239053.125, 11239089.0625, 11239150.0, 11239156.25, 11239160.9375, 11239164.0625, 11239279.6875, 11239357.8125, 11239395.3125, 11239417.1875, 11239467.1875, 11239484.375, 11239489.0625, 11239529.6875, 11239578.125, 11239668.75, 11239715.625, 11239943.75, 11239967.1875, 11240017.1875, 11240028.125, 11240032.8125, 11240076.5625, 11240150.0, 11240192.1875, 11240239.0625, 11240251.5625, 11240281.25, 11240390.625, 11240426.5625, 11240606.25, 11240712.5, 11240740.625, 11240776.5625, 11240829.6875, 11240845.3125, 11240898.4375, 11240907.8125, 11240915.625, 11241046.875, 11241056.25, 11241076.5625, 11241110.9375, 11241309.375, 11241335.9375, 11241440.625, 11241501.5625, 11241506.25, 11241556.25, 11241620.3125, 11241656.25, 11241679.6875, 11241704.6875, 11241746.875, 11241845.3125, 11241875.0, 11241885.9375, 11241892.1875, 11241921.875, 11241928.125, 11241945.3125, 11242096.875, 11242243.75, 11242412.5, 11242417.1875, 11242625.0, 11242806.25, 11242835.9375, 11242970.3125, 11243570.3125, 11243685.9375, 11244053.125, 11244206.25, 11244221.875, 11244279.6875, 11244571.875, 11244598.4375, 11244657.8125, 11244685.9375, 11244706.25, 11244839.0625, 11244987.5, 11245010.9375, 11245154.6875, 11245242.1875, 11245264.0625, 11245265.625, 11245353.125, 11245592.1875, 11245625.0, 11245704.6875, 11245837.5, 11245884.375, 11246115.625, 11246179.6875, 11246392.1875, 11246471.875, 11246484.375, 11246525.0, 11246971.875, 11247009.375, 11247062.5, 11247179.6875, 11247223.4375, 11247259.375, 11247309.375, 11247554.6875, 11247581.25, 11247604.6875, 11247742.1875, 11247773.4375, 11247801.5625, 11247826.5625, 11247853.125, 11247871.875, 11247925.0, 11248242.1875, 11248321.875, 11248440.625, 11248450.0, 11248476.5625, 11248487.5, 11248543.75, 11248546.875, 11248643.75, 11248671.875, 11248718.75, 11248798.4375, 11248959.375, 11248973.4375, 11248979.6875, 11248984.375, 11249000.0, 11249067.1875, 11249067.1875, 11249228.125, 11249559.375, 11249571.875, 11249575.0, 11249582.8125, 11249614.0625, 11249626.5625, 11249651.5625, 11249653.125, 11249654.6875, 11249660.9375, 11249662.5, 11249684.375, 11249810.9375, 11249817.1875, 11249820.3125, 11249862.5, 11250010.9375, 11250042.1875, 11250042.1875, 11250045.3125, 11250067.1875, 11250070.3125, 11250135.9375, 11250135.9375, 11250190.625, 11250195.3125, 11250214.0625, 11250271.875, 11250285.9375, 11250312.5, 11250320.3125, 11250725.0, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250726.5625, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250728.125, 11250729.6875, 11250729.6875, 11250731.25, 11250900.0, 11250914.0625, 11250914.0625, 11250937.5, 11250976.5625, 11251029.6875, 11251046.875, 11251212.5, 11251212.5, 11251212.5, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251214.0625, 11251215.625, 11251215.625, 11251215.625, 11251354.6875, 11251396.875, 11251428.125, 11251431.25, 11251453.125, 11251460.9375, 11251509.375, 11251526.5625, 11251564.0625, 11251570.3125, 11251664.0625, 11251789.0625, 11251796.875, 11251821.875, 11251884.375, 11251893.75, 11251895.3125, 11251921.875, 11251935.9375, 11251973.4375, 11252032.8125, 11252042.1875, 11252042.1875, 11252075.0, 11252076.5625, 11252085.9375, 11252123.4375, 11252137.5, 11252151.5625, 11252175.0, 11252239.0625, 11252257.8125, 11252260.9375, 11252275.0, 11252276.5625, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252278.125, 11252279.6875, 11252292.1875, 11252304.6875, 11252307.8125, 11252309.375, 11252339.0625, 11252478.125, 11252534.375, 11252562.5, 11252589.0625, 11252601.5625, 11252628.125, 11252637.5, 11252646.875, 11252659.375, 11252698.4375, 11252717.1875, 11252728.125, 11252737.5, 11252790.625, 11252834.375, 11252857.8125, 11252920.3125, 11252976.5625, 11253067.1875, 11253067.1875, 11253125.0, 11253131.25, 11253131.25, 11253154.6875, 11253207.8125, 11253262.5, 11253370.3125, 11253431.25, 11253539.0625, 11253600.0, 11253668.75, 11253721.875, 11253768.75, 11253878.125, 11253932.8125, 11254010.9375, 11254028.125, 11254043.75, 11254043.75, 11254151.5625, 11254342.1875, 11254428.125, 11254560.9375, 11254592.1875, 11254596.875, 11254612.5, 11254760.9375, 11254981.25, 11254982.8125, 11255012.5, 11255051.5625, 11255134.375, 11255160.9375, 11255168.75, 11255212.5, 11255871.875, 11255896.875, 11255900.0, 11255981.25, 11256859.375, 11256960.9375, ...], [5.314754117441927, 22.471322539372462, 6.019538930268892, 15.878208358951511, 27.818630870331546, 25.320949706558626, 97.00727476579021, 31.249307113145925, 14.34451621098758, 6.974366963057785, 207.03013476391334, 9.828564559037886, 5.9896906701677874, 8.357477889990045, 77.40240997374157, 64.01682898953281, 41.37821330984354, 53.245849956977175, 9.558840883926523, 21.800075570413263, 136.186582052529, 55.57923852054338, 36.27496547453951, 77.5525371684033, 19.372900270424076, 11.893885024694981, 26.096962509339473, 6.583536348630056, 5.816078057959344, 58.87275985270499, 20.387267701453705, 6.387255739679347, 8.597296172677854, 151.1928566213699, 6.507860203932319, 5.6459317492895895, 156.65225762068815, 6.216762820929051, 27.088403524942297, 144.03939239185095, 60.8945925546735, 51.51537820808879, 82.68818952663065, 23.070734554450905, 6.101848744708288, 29.789623167288163, 48.04021362121569, 6.760573324875089, 12.571458601061225, 7.2404586407685825, 10.101384627169155, 12.55599505030241, 14.935221391348128, 52.5651954562904, 34.516302025068626, 59.33849982017299, 15.167369039009932, 105.56964783871967, 5.18641100891483, 14.897639712427964, 108.65634493779433, 74.09413346664086, 9.800882052891327, 42.28912445183623, 48.764014730483176, 9.994480766524198, 12.189554781259357, 118.84650941843097, 14.293095984381079, 26.9440797960431, 86.73451463367302, 77.0859379786514, 43.942124874765646, 72.81834283577439, 68.3836851345322, 223.47882226496574, 13.042131914015476, 119.18668936692058, 64.27382245915696, 24.640426390418483, 14.100508810973846, 8.505780400601463, 35.88413321612792, 13.213054007352964, 20.324712343819737, 130.0984447104152, 80.18727393571429, 5.824875592472543, 189.74461881656384, 71.44433603213083, 64.74036564917597, 20.06695202786913, 70.30268877804737, 6.827680022126525, 111.88103629572296, 28.582382322778074, 112.24254526313041, 8.262860561048262, 8.465994129862489, 24.06113255153346, 11.431479244355183, 16.731232078333196, 22.497278671503224, 40.65496475413761, 44.75559277528433, 11.756148767520656, 29.796907851539757, 65.22599801642448, 98.65803514444139, 12.46825306366655, 34.27826819940057, 17.379832176421246, 15.960311098058632, 40.530010146938615, 74.96926672535595, 262.88100452820953, 34.02495409629305, 12.239427342443294, 30.805912912983544, 46.75473269259376, 37.04081365594865, 85.82784987872668, 67.95245643126157, 70.89197619857335, 5.944283119798013, 5.423688117311108, 82.02326821523143, 19.47993080568358, 33.378541642000485, 76.4235034879558, 10.192027529013986, 123.13679259380521, 11.831828140134673, 28.699314531430808, 55.61112785758638, 15.572330566350129, 35.09185673459172, 68.99111156964176, 18.77337792712887, 50.01161068082958, 56.384431236018656, 111.06087940803602, 32.02487026228756, 36.46844947100101, 30.292469212341796, 12.092926122518818, 13.202552758895127, 86.83710418627692, 6.108998838571117, 40.12994049824663, 21.58253560091123, 44.30074660707615, 51.703752116271914, 177.8476248230857, 30.512027546836652, 6.278976028150291, 63.88613201025497, 21.633177015735455, 24.72044953305657, 43.66397020016217, 6.0467493820564, 81.25886231668149, 32.36578866564117, 91.46792207808711, 16.04803326809021, 45.1665552157065, 20.95014839038062, 18.373307562525234, 137.09306648056037, 49.27500978903581, 25.05539012275851, 35.85561505325142, 49.63512379569887, 13.533274245704197, 144.66459660968422, 30.238327059887414, 10.79085689938968, 10.822403633384338, 114.80704433157987, 19.51708667433188, 6.347049368040914, 14.985198327333302, 17.699001922956334, 17.690438230652685, 6.878443076496198, 6.595857132558296, 11.55299095453667, 6.126042191883925, 6.143274977477479, 67.49571266260632, 5.051980762167149, 27.334513098036368, 16.916809414247613, 119.2488464510604, 63.87083266294199, 31.76317451600848, 35.291449702131374, 78.32232290946703, 51.79388409388497, 100.7642763766441, 59.4793443956727, 48.04757481891713, 110.21462779557571, 32.225152665839964, 45.66435590450238, 75.3784879680863, 14.519820915432234, 19.949613272223008, 62.447476385269255, 44.36066424127745, 9.19348918832497, 15.874604784878475, 10.820806446616766, 90.71016245619643, 216.76658944572873, 18.387400019263666, 41.93219096840689, 49.484644637208426, 8.115364360514166, 40.44248960983537, 13.620619182671131, 52.93493465430099, 46.196490852867015, 44.98325462613313, 60.515523996012014, 100.02922975533941, 58.22835305466112, 29.424594730849037, 45.09794707643818, 74.67193899405439, 5.932145806650328, 7.8613168974448335, 64.96292803654919, 90.2945091502549, 35.76896737515884, 112.14079838712141, 108.46908668324558, 12.93812741184528, 151.90883208941688, 12.074019789165149, 22.880172469412063, 5.376912661274244, 49.13231699992742, 12.309904288088482, 104.91206240601278, 7.578192851631945, 26.94642719233982, 70.96599403871751, 83.5908867342005, 194.97464385220948, 10.059551386552387, 43.451605941533785, 82.57986275666985, 30.431267579593392, 5.532556125823659, 19.116926081351135, 39.181204016705806, 96.07561366414089, 53.940042117922864, 36.65671935212853, 87.84932453984796, 78.82993905516763, 54.797090872305624, 30.20257183714216, 36.8630247168127, 9.226304455640253, 6.352369774560933, 78.43108573949075, 62.127084737708245, 125.83501031466548, 77.40038474250177, 17.06415553532205, 50.830269839292015, 18.706974271778034, 30.204920381097534, 21.42360798177938, 8.637924164541353, 49.05779888413796, 9.655957849029907, 20.893181398045563, 60.37465486588317, 87.77014172314814, 8.38218209604039, 77.33791942266302, 5.853117109903921, 108.93230005961473, 31.467051744198255, 60.83399209399228, 39.65418122087589, 41.50436734995548, 30.384594447663517, 27.37473618940027, 20.74822244010794, 13.354138131651972, 33.9790856361798, 43.03675301788676, 7.738644874646614, 11.81461901786157, 5.572861282506704, 20.449035396413016, 5.136435653737118, 47.68576186642596, 27.844900009008743, 9.22767972266897, 5.592886208915092, 10.91894086051389, 77.76300501000273, 149.6931933138954, 78.10913001685927, 11.257871554190162, 109.43474045723788, 117.3252326975114, 14.6416001350918, 38.904663200207764, 118.43389893864192, 42.21886453883787, 13.250767197149864, 83.26677569326958, 30.26742498019601, 21.59757649898721, 9.63154029916023, 10.48939294714263, 83.86381144810116, 18.25105874992725, 18.959829759819957, 11.687588276738836, 9.372850747864751, 33.44230053381097, 153.3876257183668, 12.606327918224752, 61.130927479261416, 10.835144413453651, 21.058321556811457, 14.334133083163753, 42.899623581611465, 21.175408034218272, 34.64691599366801, 20.969760453659667, 8.056935563840861, 12.595247098914287, 59.852512981013376, 25.564156970777695, 15.534328709155622, 9.346539856045428, 22.977487632789348, 41.32703227132581, 5.8019470190176525, 37.41216230855191, 37.49714269738632, 24.917797582973257, 5.7114034600447114, 12.375402684916704, 21.572310292316132, 47.05103262246944, 17.189044877869783, 14.8635836831425, 5.6898983424929135, 10.569907414662667, 107.22188092879648, 42.503289723986455, 30.285679992554382, 48.00351228413597, 17.098931546123573, 49.11369213583799, 5.772756943693512, 118.76595780953258, 39.747962774873564, 18.36593511148981, 57.95245669785628, 19.248710058729483, 8.690122028851398, 27.265804069792217, 14.638517529895674, 14.098981305826761, 17.499690256838043, 48.98491499410811, 24.02239188506811, 7.344735189641951, 93.24828388564349, 37.559665461568116, 21.291823293692467, 14.922317353291842, 5.038088822132663, 29.186343799827203, 56.659557888463226, 90.11318236324917, 67.44256558427027, 11.457531582059968, 96.70130383828241, 102.4330399567836, 80.80193392700903, 18.600822513184927, 8.331476261732131, 10.396190566919072, 37.66515297284856, 10.540563622531444, 5.350788669807929, 10.511200570121256, 219.8258387777439, 15.656129794163306, 41.52888134647302, 5.24272389346199, 5.621181093971957, 35.10037452779016, 10.312860580767467, 19.725727416722897, 24.108172027312957, 28.793022167411124, 29.88072874961561, 34.993716666549574, 6.416913609140187, 9.730497976635936, 51.21920053804767, 49.288515852838856, 27.636707225287708, 26.711420454389376, 8.065967944390533, 24.46827057061827, 5.831624367731696, 36.67390883291073, 30.068089842013666, 70.04354679966775, 26.05467362984465, 20.778198477218986, 20.21810595034806, 68.37712330843655, 43.560572420368665, 6.414464649593834, 47.03334901824465, 8.365533433397836, 20.90471342737052, 6.476578672952857, 52.508434134526745, 41.39576455745544, 9.314344000504637, 40.766263180513555, 43.87503425632654, 7.602649109264535, 83.12447807188396, 115.16869610602865, 23.706211881461456, 6.946813556888348, 230.1743370266268, 57.67350895139565, 7.117931033930386, 68.50403169123825, 15.503074355444124, 69.57156263791937, 10.352278514183192, 70.16105355917793, 15.437532240039888, 9.543274647529742, 56.82660837667783, 12.945002686236027, 18.581226015477316, 79.92625896456319, 17.671673345798048, 49.106638732430454, 11.634782229214302, 67.62461642140875, 39.753430748970054, 31.245287559002264, 58.47558608623416, 36.71092552458346, 10.579704417416217, 28.696689340862093, 14.041770212824428, 19.202963434275702, 17.558550837900754, 111.19631230125349, 51.05809016398415, 72.73641433509783, 57.3463259564386, 41.846412735179214, 72.63605473317202, 6.749454158416458, 6.104986297607064, 42.237303731639315, 19.12237607214691, 67.11037158368934, 32.30454608264913, 77.10938033062807, 21.629713327016432, 23.594878580269334, 19.376188888557582, 5.405054722101089, 10.207764000729398, 61.27221823631744, 9.629374949909005, 12.175008236722388, 48.047055788341225, 15.422478384673312, 22.496635834969357, 28.942684419859923, 6.477344207362868, 22.497775323703753, 9.410061635169745, 28.125507781465075, 24.58892933095907, 11.589536648575923, 33.685978082615534, 62.91602487303291, 65.29190970328725, 7.490980668496397, 11.967595803046088, 9.689166961811127, 42.845050177322605, 29.568486801990005, 31.587225102663695, 12.007017439116208, 49.73168917042606, 79.35906545198645, 14.534927117511451, 5.278214303825111, 53.478455653614674, 18.25889514069618, 26.056287877037114, 5.559155999139794, 32.43647134371194, 10.840411619773151, 47.585111983708806, 62.2915227677225, 5.97874199688988, 95.46383747918155, 28.867090018417386, 64.32655821180013, 17.874741076078877, 5.451943607487279, 10.639784515135213, 45.42719320733261, 53.138285727270656, 10.772642250033517, 6.68782390685025, 7.475187328159482, 13.49677342096091, 93.90231205018593, 46.04953210416524, 7.506092767742079, 6.516659892927473, 63.18723623879075, 63.35212872726247, 16.261524246681876, 53.51632706143356, 49.65531401918801, 18.54613995587085, 36.84273447099304, 102.34793416944247, 63.82852104798145, 66.60283189515181, 51.56165671831609, 84.51096576685566, 39.523612203331176, 14.468173823158617, 40.035716061696, 17.475096708870677, 20.13713506557714, 7.100479194211193, 51.52533795750702, 37.91672674777498, 14.155075363855435, 15.57139948081976, 29.920858604698182, 113.97901162529253, 172.1353779022366, 45.852443398448465, 7.648008373591177, 10.96224518140799, 19.942194451649197, 12.856936972652163, 66.95199822362342, 67.36366463847423, 5.495784531332389, 5.92053525315573, 126.00747392311068, 14.253029505606987, 12.892897276818013, 17.07437487663201, 15.192603061452509, 10.872348962835487, 6.303128674323218, 81.45746248762956, 7.345990789809725, 17.071117802793804, 19.58486056423806, 13.860159506403154, 79.06227321685694, 33.89135732308453, 32.07874719478263, 8.964279174125135, 29.277055650642435, 31.819329067466658, 20.687117108398816, 21.868471767976743, 30.891396185428412, 5.2465937140344, 67.00353852029679, 9.423996068926185, 6.945924146056292, 17.67776100130882, 26.37935657654401, 10.23520857123321, 23.273785362832385, 30.315435536929243, 99.24439352714245, 7.024236964564284, 6.58846281048474, 118.15364512906338, 85.24424198396427, 11.989608838691604, 124.03629133276289, 22.95469357873125, 23.91320639058567, 14.264039783480115, 128.21209122998857, 15.20515974229225, 43.693489426907135, 28.895786470453203, 64.61960536280364, 20.297108773280215, 24.975944995281594, 66.8721200787126, 60.95738496605071, 86.6056388210885, 12.98856940208219, 38.9267641549954, 6.170333912409165, 5.270605463974813, 11.767376159206982, 119.97960374601696, 6.885476894277275, 63.62581649829356, 5.729693724647018, 81.87164876732409, 10.813179270384511, 92.48846180587893, 32.91314384578149, 19.73387381097076, 33.27659783297675, 13.918002270974085, 71.70623021675722, 16.97197121812476, 38.80133176679871, 63.98339329909358, 25.821651826457845, 49.40195145112802, 78.14801187470255, 7.715997855909569, 42.49433333330028, 15.543644277719823, 13.199674665193614, 57.80335366998639, 66.38003455560683, 58.889237053403676, 24.103349527872417, 13.055407034354122, 42.83249908978332, 37.35220127700603, 42.6240195756276, 134.87355349233212, 41.17780586994364, 102.01976428813711, 19.627126101480357, 15.99885025027789, 6.128824420229418, 13.135904018353417, 64.54137529746751, 18.839184746245202, 56.8465419988181, 15.326635100315077, 46.366725053020915, 61.1488393167745, 37.02076827946723, 11.640641599901413, 24.34092070544274, 13.907730105638265, 9.966038713536932, 19.76712529517027, 37.39258209943426, 7.874248707360731, 18.69061400932574, 48.215864532448236, 81.45363912278631, 105.48262163571881, 21.612215802770674, 10.284693445316694, 14.924505947604272, 52.0212283684437, 11.020754855003236, 47.31337123256325, 8.38085947102259, 11.336425989046521, 5.128333267234039, 77.11712450074793, 10.900547108684204, 29.21409520962458, 85.22347886123876, 14.406439756169386, 10.854052578311466, 13.586651499279794, 25.38769937838996, 57.51261123209203, 15.388475303137882, 6.768334429504259, 16.520942648568095, 52.48430114374594, 29.36304594714356, 16.32227268911753, 7.505091426068415, 5.447302478592767, 14.015233107099302, 9.575213906073845, 10.333567824895711, 115.19082379872313, 34.099399877477495, 20.563375937807802, 23.56921720649044, 48.462844772713346, 44.048646049554435, 131.4373906157321, 69.242729076966, 106.18524026296606, 9.577014994064779, 81.24904699178788, 102.98758591410353, 58.87145502087167, 7.388038291483707, 11.508018474814156, 84.17932737672784, 6.230064580847763, 19.77283762859132, 19.047731126092245, 107.4418650766221, 75.57731201475146, 20.145669652757697, 12.355529128082377, 16.90160649750129, 6.264718791366809, 20.17568613840896, 34.53776973103189, 5.2895902687305405, 10.356822240335225, 16.071683661474154, 20.43885587559662, 9.282682669333804, 40.71333411050477, 49.21011777720516, 55.99753163458527, 8.966970733700714, 21.96773024655875, 9.157931360717383, 67.6889880605666, 5.2025092911052395, 40.17928424533103, 5.461819583842734, 82.50695655473847, 52.16251123022167, 6.450624102342592, 9.634149263211953, 8.506031005646635, 86.49896048590927, 37.21041337219348, 36.1889482099185, 12.813015066251943, 6.093461082803947, 56.72109144492491, 86.4702478387178, 6.867922905466202, 19.427393904841892, 36.96608714809282, 17.147692379678627, 8.610800078787062, 80.36057925205834, 15.090694313446033, 82.57208355831791, 41.50556534070745, 40.964000172624154, 70.88906098207289, 63.705012693578574, 58.93183242451888, 5.792168451913948, 102.1970279781224, 65.30621220166788, 57.259591869792786, 20.107276346775105, 218.07022720023852, 8.25112035005631, 104.88940211957875, 5.046429577015041, 5.18594172851482, 8.45678400944952, 84.7904026338397, 88.77794799967198, 42.5106020946845, 51.97990514510296, 15.879292189438786, 22.192293157673987, 33.751489465459265, 34.47489439034928, 53.45946192649037, 105.56412746854987, 15.89462471241124, 22.97172382856909, 14.840950504638773, 12.307501207575262, 77.5417323542288, 6.0159639825096125, 12.122010493280406, 245.8719574932145, 349.19134501225716, 86.30223031054341, 11.184452136539146, 5.028294945266088, 5.6132895098705005, 27.32059816637511, 12.426831361515076, 34.834278720052595, 9.925767891315276, 46.96532103066339, 46.74286821816855, 7.186285424899537, 9.36196507153823, 5.085625311120399, 5.252572766335549, 5.031531487014899, 5.079662067637895, 5.460106217029576, 5.032505653765295, 5.158681833732135, 5.035989406420697, 5.194699376447418, 5.028937286016958, 5.27190576469159, 5.044905304134643, 5.198435773869689, 5.041461798620566, 5.252579030590984, 5.146530956862453, 5.034809264144835, 5.186526235103636, 5.454581686854291, 5.206290406311199, 6.92655774400885, 5.2062954172937195, 5.032412517519043, 5.093485133703463, 5.077020254734127, 5.353733855015582, 5.062131825375507, 5.036654268728181, 5.137330574173371, 5.16237407610045, 5.205015208690269, 5.033327234802735, 5.039220793403081, 5.322741840910545, 5.0336823373579795, 5.031493227068064, 5.04980643625916, 11.045512147053158, 5.139962388872936, 5.138347727567074, 5.182828325904387, 5.0376839302236975, 5.03333406276877, 5.190777098269185, 5.047154387256495, 5.223698068289605, 5.164264659813329, 5.035771405999302, 5.052577047509993, 5.037465242599279, 5.130004757126433, 5.196360320914837, 99.57788548713937, 26.323108909784946, 36.086570269392524, 81.290331599503, 15.753613981948485, 25.663834688117294, 47.88412542866646, 5.167558514446882, 20.38021284937838, 5.176160547346675, 5.180979000291482, 5.216002871548401, 5.265259237080114, 5.035023533303601, 5.0278112311509595, 5.175819792996588, 5.179913207683069, 5.029769665632144, 24.08244715986757, 6.679421280282334, 8.046637685683594, 20.92380257769073, 51.74339428168027, 75.67247047436227, 16.831445526984112, 17.3318777951382, 19.782921660033654, 9.267046980365059, 32.73445838970526, 66.97350450039116, 33.61339338390423, 8.276035829501462, 21.908405040977776, 7.31656008503868, 31.373526727340472, 42.25957135814163, 48.34861298615492, 22.844123509111412, 63.67735409094451, 15.688328136270353, 30.357856639033695, 81.83083132829942, 71.16897019435687, 9.100931636224553, 90.40113696688262, 11.409502238302302, 10.125058208700729, 6.009101274399833, 79.06768861149956, 13.862292479021988, 53.72643384660789, 105.93596811962945, 5.077020254734127, 57.99959731604357, 15.583661449248876, 10.564523114841244, 16.98999222891949, 5.380286644801936, 26.456484878010073, 5.342553866185057, 25.24148066867805, 45.89277852808233, 20.2807518826346, 22.71386300256385, 13.15142154636997, 15.922236793967496, 67.37382408856757, 113.75368841221145, 5.392440178810995, 73.42588453292767, 22.39643016917383, 32.749516582362446, 28.960057113464085, 9.30526072567168, 6.264987626822, 5.102398663355311, 64.3126600454636, 69.72750489966067, 22.670781642563075, 38.46093788749864, 12.284212696476938, 6.153694955826081, 40.29939244170229, 5.156071829300013, 39.23594492202092, 44.40531153185235, 14.627233962435476, 102.32486330343656, 71.15523208448913, 58.2097293111654, 9.965551126061829, 36.26451301031516, 37.71322784360326, 21.09510769863872, 11.273186797910165, 20.590631282891923, 24.334456251145163, 10.701184998479267, 20.950646257441157, 7.256147313428333, 5.425974261130273, 14.877722065477295, 12.836668106857351, 6.709105588242363, 23.760133280298223, 30.293412553369528, 6.892750200776685, 10.939537616968675, 5.370128343236396, 23.037602793495868, 35.21241380719592, 23.77989944635734, 33.372106944911984, 19.754393744363508, 62.67267592422477, 7.472922182532151, 23.5243137194578, 8.202464192083871, 5.490963896444249, 6.462638117818033, 36.769051572590186, 80.0262799188596, 68.37733522715945, 24.237985411207003, 16.38572800233932, 18.208349492596454, 9.413809956655703, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)