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 = 44520
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);
([2971823.4375, 2998107.8125, 3389775.0, 5741392.1875, 5746979.6875, 5832737.5, 5886423.4375, 5890493.75, 5920845.3125, 5926431.25, 5929301.5625, 5933837.5, 5933959.375, 5934592.1875, 5936432.8125, 5936482.8125, 5940557.8125, 5941259.375, 5942495.3125, 5945667.1875, 5958479.6875, 5961659.375, 5968042.1875, 5969542.1875, 5972529.6875, 5972896.875, 5973140.625, 5990348.4375, 5996287.5, 5996801.5625, 6002501.5625, 6004267.1875, 6004467.1875, 6004662.5, 6010157.8125, 6022514.0625, 6025700.0, 6029410.9375, 6029476.5625, 6035806.25, 6037495.3125, 6038734.375, 6040054.6875, 6040251.5625, 6040545.3125, 6041371.875, 6044439.0625, 6066585.9375, 6075456.25, 6100398.4375, 6103384.375, 6108201.5625, 6144848.4375, 6148356.25, 6166498.4375, 6170751.5625, 6172081.25, 6188964.0625, 6188967.1875, 6194781.25, 6203360.9375, 6205148.4375, 6205357.8125, 6212231.25, 6217068.75, 6257023.4375, 6275768.75, 6275770.3125, 6327864.0625, 6339021.875, 6347276.5625, 6348612.5, 6348642.1875, 6357185.9375, 6368023.4375, 6368057.8125, 6372185.9375, 6372378.125, 6376092.1875, 6383292.1875, 6384003.125, 6387332.8125, 6416173.4375, 6418903.125, 6420384.375, 6421146.875, 6422992.1875, 6423534.375, 6425278.125, 6459612.5, 6461967.1875, 6462000.0, 6463153.125, 6514068.75, 6569060.9375, 6792476.5625, 6910112.5, 7016143.75, 7048723.4375, 7057248.4375, 8262340.625, 8271935.9375, 8704592.1875, 8772860.9375, 8817962.5, 8828418.75, 8869476.5625, 9024287.5, 9104720.3125, 9165414.0625, 9191968.75, 9192435.9375, 9192842.1875, 9221500.0, 9228935.9375, 9235307.8125, 9236084.375, 9236171.875, 9242120.3125, 9247921.875, 9334518.75, 9342468.75, 9368660.9375, 9396339.0625, 9403807.8125, 9404070.3125, 9407095.3125, 9460646.875, 9464837.5, 9483531.25, 9524232.8125, 9561315.625, 9561365.625, 9561978.125, 9562020.3125, 9562076.5625, 9566085.9375, 9629685.9375, 9632785.9375, 9635171.875, 9640742.1875, 9647650.0, 9660221.875, 9745314.0625, 9749598.4375, 9750448.4375, 9750535.9375, 9750871.875, 9751503.125, 9751937.5, 9752881.25, 9752910.9375, 9752954.6875, 9753325.0, 9753454.6875, 9753484.375, 9753487.5, 9753681.25, 9754017.1875, 9754210.9375, 9755214.0625, 9755428.125, 9755489.0625, 9755820.3125, 9758889.0625, 9759550.0, 9760743.75, 9761585.9375, 9761871.875, 9763606.25, 9764576.5625, 9766095.3125, 9766717.1875, 9766970.3125, 9774504.6875, 9774673.4375, 9775073.4375, 9775189.0625, 9775282.8125, 9775557.8125, 9775578.125, 9776448.4375, 9776695.3125, 9777423.4375, 9777443.75, 9777976.5625, 9778121.875, 9778160.9375, 9778709.375, 9779010.9375, 9779071.875, 9779531.25, 9780168.75, 9780615.625, 9781603.125, 9782171.875, 9783340.625, 9783348.4375, 9784150.0, 9784642.1875, 9784773.4375, 9785050.0, 9785554.6875, 9785646.875, 9785939.0625, 9786284.375, 9786928.125, 9787862.5, 9788196.875, 9788531.25, 9794021.875, 9795668.75, 9795806.25, 9795857.8125, 9797154.6875, 9798109.375, 9802726.5625, 9808479.6875, 9808640.625, 9809634.375, 9809671.875, 9810925.0, 9822604.6875, 9831181.25, 9838864.0625, 9841164.0625, 9841951.5625, 9842303.125, 9842321.875, 9842551.5625, 9842956.25, 9843443.75, 9843634.375, 9843657.8125, 9846340.625, 9847129.6875, 9847281.25, 9847290.625, 9847587.5, 9849598.4375, 9849687.5, 9851026.5625, 9856635.9375, 9857551.5625, 9858198.4375, 9858396.875, 9879182.8125, 9879851.5625, 9881057.8125, 9881957.8125, 9883384.375, 9884357.8125, 9884565.625, 9896531.25, 9916568.75, 9932885.9375, 9939265.625, 9939470.3125, 9940942.1875, 9947962.5, 9949968.75, 9954118.75, 9962110.9375, 9962971.875, 9967445.3125, 9968521.875, 9968643.75, 9969468.75, 9969957.8125, 9978606.25, 9983704.6875, 9986453.125, 9986807.8125, 9987273.4375, 9987821.875, 9993300.0, 9993825.0, 10002500.0, 10021193.75, 10021592.1875, 10028970.3125, 10034542.1875, 10046301.5625, 10046314.0625, 10049759.375, 10049904.6875, 10050742.1875, 10050901.5625, 10050992.1875, 10051601.5625, 10052000.0, 10052006.25, 10055132.8125, 10056423.4375, 10057262.5, 10059485.9375, 10071795.3125, 10075214.0625, 10078742.1875, 10079496.875, 10079500.0, 10085982.8125, 10086550.0, 10093103.125, 10093709.375, 10093903.125, 10101640.625, 10105537.5, 10110635.9375, 10112971.875, 10113435.9375, 10116343.75, 10172217.1875, 10191385.9375, 10193506.25, 10194425.0, 10199867.1875, 10202292.1875, 10206584.375, 10208832.8125, 10209314.0625, 10213060.9375, 10216793.75, 10226564.0625, 10254246.875, 10296684.375, 10303668.75, 10305620.3125, 10306525.0, 10306704.6875, 10311064.0625, 10317621.875, 10328807.8125, 10328846.875, 10329446.875, 10331968.75, 10359862.5, 10363568.75, 10363571.875, 10408345.3125, 10408396.875, 10409171.875, 10412923.4375, 10425289.0625, 10435651.5625, 10437709.375, 10440854.6875, 10443365.625, 10455214.0625, 10458595.3125, 10460571.875, 10464006.25, 10464571.875, 10465312.5, 10481450.0, 10483820.3125, 10498009.375, 10500900.0, 10520535.9375, 10538621.875, 10543037.5, 10632050.0, 10637140.625, 10708846.875, 10711562.5, 10711656.25, 10712437.5, 10712696.875, 10713212.5, 10724432.8125, 10729890.625, 10730618.75, 10732320.3125, 10733735.9375, 10742754.6875, 10742987.5, 10749957.8125, 10754650.0, 10756137.5, 10766445.3125, 10771693.75, 10774250.0, 10778998.4375, 10819043.75, 10823275.0, 10827834.375, 10829878.125, 10831120.3125, 10832720.3125, 10832906.25, 10833509.375, 10834440.625, 10834535.9375, 10834575.0, 10835525.0, 10835800.0, 10836090.625, 10836209.375, 10837254.6875, 10838334.375, 10838892.1875, 10838915.625, 10839420.3125, 10839553.125, 10840225.0, 10840232.8125, 10840973.4375, 10842626.5625, 10843465.625, 10844456.25, 10845646.875, 10846243.75, 10846270.3125, 10846542.1875, 10847631.25, 10849304.6875, 10851057.8125, 10851639.0625, 10852323.4375, 10852337.5, 10852351.5625, 10853126.5625, 10854948.4375, 10855657.8125, 10856057.8125, 10857984.375, 10861607.8125, 10862659.375, 10863575.0, 10865148.4375, 10866615.625, 10866925.0, 10868551.5625, 10869764.0625, 10870235.9375, 10871278.125, 10872309.375, 10873753.125, 10881732.8125, 10882285.9375, 11005509.375, 11011709.375, 11017834.375, 11018190.625, 11022875.0, 11024478.125, 11024875.0, 11025320.3125, 11027301.5625, 11027317.1875, 11027778.125, 11027940.625, 11028196.875, 11029339.0625, 11029354.6875, 11029567.1875, 11029760.9375, 11029846.875, 11031007.8125, 11031050.0, 11031285.9375, 11031303.125, 11031309.375, 11031378.125, 11031573.4375, 11031939.0625, 11032028.125, 11032053.125, 11032232.8125, 11032275.0, 11032278.125, 11032353.125, 11032510.9375, 11032959.375, 11032965.625, 11033153.125, 11033156.25, 11033242.1875, 11033296.875, 11033298.4375, 11033323.4375, 11033342.1875, 11033345.3125, 11033346.875, 11033528.125, 11033754.6875, 11034107.8125, 11034259.375, 11034460.9375, 11034518.75, 11034551.5625, 11034554.6875, 11034631.25, 11034807.8125, 11034820.3125, 11034884.375, 11034970.3125, 11034973.4375, 11034987.5, 11035059.375, 11035179.6875, 11035223.4375, 11035287.5, 11035328.125, 11035364.0625, 11035382.8125, 11035385.9375, 11035390.625, 11035392.1875, 11035429.6875, 11035432.8125, 11035492.1875, 11035523.4375, 11035693.75, 11035732.8125, 11035739.0625, 11035762.5, 11035765.625, 11035784.375, 11035814.0625, 11035860.9375, 11035900.0, 11036009.375, 11036054.6875, 11036076.5625, 11036135.9375, 11036237.5, 11036314.0625, 11036487.5, 11036512.5, 11036548.4375, 11036570.3125, 11036628.125, 11036731.25, 11036743.75, 11036754.6875, 11036768.75, 11036795.3125, 11036796.875, 11036807.8125, 11036850.0, 11036871.875, 11036885.9375, 11036968.75, 11037092.1875, 11037098.4375, 11037106.25, 11037106.25, 11037114.0625, 11037132.8125, 11037146.875, 11037162.5, 11037173.4375, 11037178.125, 11037207.8125, 11037209.375, 11037218.75, 11037221.875, 11037231.25, 11037284.375, 11037307.8125, 11037309.375, 11037317.1875, 11037317.1875, 11037350.0, 11037356.25, 11037360.9375, 11037376.5625, 11037376.5625, 11037379.6875, 11037385.9375, 11037400.0, 11037434.375, 11037445.3125, 11037451.5625, 11037468.75, 11037485.9375, 11037546.875, 11037564.0625, 11037564.0625, 11037589.0625, 11037612.5, 11037617.1875, 11037634.375, 11037657.8125, 11037671.875, 11037712.5, 11037714.0625, 11037715.625, 11037731.25, 11037750.0, 11037764.0625, 11037807.8125, 11037842.1875, 11037862.5, 11037898.4375, 11037914.0625, 11037926.5625, 11037939.0625, 11037964.0625, 11037976.5625, 11038021.875, 11038023.4375, 11038059.375, 11038167.1875, 11038221.875, 11038326.5625, 11038328.125, 11038398.4375, 11038409.375, 11038412.5, 11038426.5625, 11038428.125, 11038467.1875, 11038478.125, 11038482.8125, 11038492.1875, 11038493.75, 11038570.3125, 11038617.1875, 11038639.0625, 11038640.625, 11038671.875, 11038676.5625, 11038696.875, 11038703.125, 11038745.3125, 11038865.625, 11038873.4375, 11038893.75, 11038925.0, 11038942.1875, 11038953.125, 11038959.375, 11039006.25, 11039012.5, 11039218.75, 11039281.25, 11039287.5, 11039306.25, 11039329.6875, 11039362.5, 11039368.75, 11039370.3125, 11039406.25, 11039429.6875, 11039439.0625, 11039446.875, 11039546.875, 11039618.75, 11039632.8125, 11039639.0625, 11039654.6875, 11039671.875, 11039693.75, 11039748.4375, 11039753.125, 11039798.4375, 11039856.25, 11039935.9375, 11039987.5, 11040014.0625, 11040040.625, 11040045.3125, 11040048.4375, 11040064.0625, 11040129.6875, 11040135.9375, 11040150.0, 11040192.1875, 11040245.3125, 11040267.1875, 11040276.5625, 11040368.75, 11040412.5, 11040420.3125, 11040467.1875, 11040500.0, 11040540.625, 11040548.4375, 11040556.25, 11040632.8125, 11040665.625, 11040701.5625, 11040703.125, 11040712.5, 11040728.125, 11040734.375, 11040864.0625, 11040873.4375, 11040878.125, 11040881.25, 11040898.4375, 11040928.125, 11040953.125, 11040962.5, 11040965.625, 11040987.5, 11040989.0625, 11041001.5625, 11041045.3125, 11041050.0, 11041059.375, 11041078.125, 11041090.625, 11041106.25, 11041114.0625, 11041117.1875, 11041125.0, 11041137.5, 11041151.5625, 11041175.0, 11041176.5625, 11041200.0, 11041220.3125, 11041226.5625, 11041228.125, 11041232.8125, 11041243.75, 11041245.3125, 11041257.8125, 11041257.8125, 11041260.9375, 11041262.5, 11041270.3125, 11041273.4375, 11041276.5625, 11041295.3125, 11041296.875, 11041298.4375, 11041300.0, 11041307.8125, 11041326.5625, 11041326.5625, 11041346.875, 11041350.0, 11041356.25, 11041390.625, 11041410.9375, 11041425.0, 11041432.8125, 11041435.9375, 11041440.625, 11041443.75, 11041457.8125, 11041457.8125, 11041460.9375, 11041460.9375, 11041467.1875, 11041484.375, 11041492.1875, 11041503.125, 11041514.0625, 11041528.125, 11041529.6875, 11041531.25, 11041532.8125, 11041540.625, 11041553.125, 11041565.625, 11041570.3125, 11041573.4375, 11041578.125, 11041596.875, 11041612.5, 11041620.3125, 11041626.5625, 11041645.3125, 11041646.875, 11041656.25, 11041664.0625, 11041664.0625, 11041670.3125, 11041681.25, 11041692.1875, 11041701.5625, 11041718.75, 11041718.75, 11041721.875, 11041721.875, 11041735.9375, 11041739.0625, 11041764.0625, 11041773.4375, 11041792.1875, 11041793.75, 11041801.5625, 11041804.6875, 11041814.0625, 11041823.4375, 11041823.4375, 11041828.125, 11041834.375, 11041835.9375, 11041837.5, 11041853.125, 11041859.375, 11041868.75, 11041878.125, 11041937.5, 11041942.1875, 11041942.1875, 11041962.5, 11041965.625, 11041970.3125, 11041990.625, 11041992.1875, 11042014.0625, 11042023.4375, 11042040.625, 11042043.75, 11042043.75, 11042050.0, 11042057.8125, 11042071.875, 11042071.875, 11042073.4375, 11042073.4375, 11042084.375, 11042104.6875, 11042134.375, 11042137.5, 11042146.875, 11042151.5625, 11042156.25, 11042159.375, 11042159.375, 11042162.5, 11042167.1875, 11042170.3125, 11042187.5, 11042187.5, 11042204.6875, 11042207.8125, 11042209.375, 11042217.1875, 11042226.5625, 11042245.3125, 11042245.3125, 11042250.0, 11042256.25, 11042257.8125, 11042267.1875, 11042276.5625, 11042278.125, 11042290.625, 11042306.25, 11042307.8125, 11042334.375, 11042335.9375, 11042345.3125, 11042351.5625, 11042356.25, 11042360.9375, 11042376.5625, 11042385.9375, 11042385.9375, 11042385.9375, 11042387.5, 11042398.4375, 11042400.0, 11042406.25, 11042415.625, 11042417.1875, 11042425.0, 11042434.375, 11042448.4375, 11042456.25, 11042462.5, 11042464.0625, 11042467.1875, 11042473.4375, 11042475.0, 11042489.0625, 11042510.9375, 11042517.1875, 11042518.75, 11042543.75, 11042543.75, 11042548.4375, 11042560.9375, 11042565.625, 11042565.625, 11042571.875, 11042596.875, 11042620.3125, 11042628.125, 11042631.25, 11042635.9375, 11042653.125, 11042654.6875, 11042660.9375, 11042670.3125, 11042717.1875, 11042723.4375, 11042731.25, 11042731.25, 11042734.375, 11042739.0625, 11042748.4375, 11042762.5, 11042770.3125, 11042775.0, 11042779.6875, 11042784.375, 11042787.5, 11042790.625, 11042798.4375, 11042818.75, 11042848.4375, 11042850.0, 11042851.5625, 11042882.8125, 11042901.5625, 11042901.5625, 11042909.375, 11042920.3125, 11042925.0, 11042946.875, 11042948.4375, 11042950.0, 11042951.5625, 11042959.375, 11042965.625, 11042992.1875, 11042993.75, 11042996.875, 11043014.0625, 11043015.625, 11043028.125, 11043028.125, 11043034.375, 11043039.0625, 11043042.1875, 11043050.0, 11043060.9375, 11043065.625, 11043076.5625, 11043079.6875, 11043087.5, 11043089.0625, 11043110.9375, 11043162.5, 11043165.625, 11043168.75, 11043170.3125, 11043171.875, 11043182.8125, 11043185.9375, 11043196.875, 11043206.25, 11043207.8125, 11043215.625, 11043226.5625, 11043246.875, 11043253.125, 11043268.75, 11043273.4375, 11043278.125, 11043314.0625, 11043318.75, 11043320.3125, 11043326.5625, 11043335.9375, 11043343.75, 11043345.3125, 11043348.4375, 11043365.625, 11043378.125, 11043384.375, 11043425.0, 11043434.375, 11043445.3125, 11043446.875, 11043454.6875, 11043460.9375, 11043479.6875, 11043482.8125, 11043484.375, 11043485.9375, 11043501.5625, 11043503.125, 11043512.5, 11043557.8125, 11043560.9375, 11043571.875, 11043576.5625, 11043576.5625, 11043578.125, 11043603.125, 11043609.375, 11043626.5625, 11043646.875, 11043670.3125, 11043690.625, 11043693.75, 11043701.5625, 11043712.5, 11043718.75, 11043725.0, ...], [38.93173364204029, 36.882757992963015, 11.285676954845078, 44.485043259720314, 15.954221051393176, 8.157685335947138, 24.870992906401796, 16.211837688112613, 83.57398794848149, 6.571089839243453, 106.65831564027522, 75.11331298828199, 45.705930779732, 102.27224558823741, 18.322261223398115, 25.947493354524795, 30.29258047795789, 81.25226901818841, 34.78202823022773, 35.63170310519595, 67.38207634031183, 310.44021086092056, 62.39196770557744, 26.654161100592994, 10.68548844951095, 16.227042337729607, 20.11699999490306, 48.31461477024287, 44.61221640837284, 71.14872421430607, 82.12605821727345, 71.64177167780343, 95.7608843923522, 73.00040668408379, 35.11467054785365, 35.679302678967666, 18.208806949665696, 60.80745042728999, 11.116409097994344, 26.40208094308283, 10.409581340107149, 7.216726491038633, 16.228334188652102, 24.786698368036024, 55.948221064627496, 89.4306395942845, 41.891899391144506, 78.63676067262014, 53.467271927971844, 7.749452128122146, 47.09247701740158, 22.896231393459008, 29.41813588356429, 43.489544930492514, 17.763129988426794, 11.382661616239023, 52.968110688351295, 13.417951794123773, 25.97751239734158, 5.748919977401752, 21.39516411133563, 122.25354885298947, 42.715523858648325, 41.50022273614733, 15.652301304181298, 94.78185395354637, 31.293829188746205, 54.265697019426284, 9.171793410852734, 17.689912199001586, 107.09828005569776, 234.86792672254333, 83.17854321273963, 15.589725592838915, 6.486106374721528, 22.16019795582908, 38.21937360627098, 24.380212417757587, 22.941172322032706, 28.22129033730538, 48.751300364107635, 40.41831108369696, 42.820408289037545, 43.486873947737806, 16.761569676635993, 11.445768978374854, 22.35480214225453, 45.49892372529165, 12.298564745135803, 10.507349817447372, 26.30968940189851, 15.598614184155505, 10.380834380147382, 24.716099766812917, 73.64734685529282, 27.321439975139853, 22.839142617047898, 10.022534661764343, 31.919653855029352, 12.289051359217463, 55.443639519098504, 111.88592676304745, 58.528055672423434, 89.63134364228266, 10.876125893278067, 20.867154211164653, 44.38854670088505, 19.287631532715096, 7.615304196608176, 52.63888963219141, 35.488741999208166, 18.129385083617223, 24.41875270698982, 36.022561064609036, 11.145841181965048, 69.7131834723686, 28.21967285514269, 5.156961562207473, 5.421637213118655, 43.99240391784988, 44.907988328913376, 22.68728906584135, 58.09337631169791, 15.496752639123146, 40.509271266562195, 6.38585574495596, 15.909559951435302, 12.12963754178987, 49.89116038172841, 13.179454910112039, 48.971840261509435, 17.533316505722503, 104.92471382739673, 80.84863186187181, 39.253483090150326, 5.9123349703547285, 29.623132301506736, 8.545113750506868, 17.585331082051027, 7.871771167566033, 34.73374811604918, 69.21606373901874, 24.424791044585575, 33.621886356060415, 47.19075106267546, 139.18687077001965, 11.733368998325217, 69.77020135705907, 89.87434910177069, 30.40186383625938, 52.55226751749174, 48.02092233383443, 21.946142160301928, 58.303855141342325, 37.4507792603872, 117.05902582015652, 23.694141133754023, 101.80142093812645, 18.749687048146725, 52.36155543136515, 34.71153780471627, 181.2789215643818, 37.029004655022646, 7.1119294817395105, 46.435147309178596, 22.847985725851167, 6.031849425624771, 37.042748218309036, 89.11818025445142, 15.644765329483745, 17.545669913957052, 60.57934023685803, 65.27989724544916, 86.72705029657705, 16.5066347070224, 42.24332957575217, 21.524194008538192, 90.67150815531454, 6.40866535339545, 52.967093507307276, 131.88645841435527, 16.47927170164841, 18.942437106326413, 44.403887400346164, 83.34198268065416, 36.174263737518054, 14.303730630758697, 12.110889508267595, 14.102445907347478, 11.764737382928994, 27.215775277449392, 5.586077324528239, 12.139004087732225, 61.25814857832455, 34.99851866335099, 15.56767510639218, 34.383924449454504, 76.91791848591504, 35.91259234368511, 6.898529481653878, 50.758749897472924, 129.4281968715347, 75.09677206062177, 21.792274590128986, 8.586592046613461, 11.554540702677896, 21.79896419627905, 19.909678733972534, 148.22862345158788, 50.32141551026509, 15.486339862958044, 9.571249481218272, 12.394986914615385, 5.109234999419948, 27.562531418149717, 5.304296048073237, 7.413343856839556, 33.912477594363814, 6.531113128041673, 73.16528302072075, 30.546302770390422, 31.89866799936184, 16.60388058896429, 60.39873127017026, 14.000814060112475, 63.40884392140409, 62.06165772446402, 73.68382230295764, 41.12773444968683, 69.16618462153025, 124.0710941806979, 8.865928862164251, 117.10126242619816, 28.082538813294093, 10.793249556682326, 143.31238179680642, 21.984594940423413, 77.02160636309523, 76.03415616889671, 41.74900168450983, 6.236976384962454, 5.442400007814309, 47.077307529843644, 18.265463327722223, 10.417305445692365, 31.987772492570492, 16.67489949477702, 10.149268640238931, 65.58509791638741, 151.75034847841758, 64.55710916391146, 37.65526859766736, 8.562584731848222, 33.1861290321662, 30.103456153839403, 11.556255508355203, 169.9512230343083, 18.332003205185913, 64.20849742663684, 6.606202729299412, 112.92883645009528, 84.66378430687122, 13.246020903237067, 15.789020858949188, 41.611069299792206, 148.88026165125413, 113.63750137492107, 23.61679920711024, 127.07163947418387, 11.897173697826357, 32.40233358101609, 102.59871807730633, 42.596234049378126, 29.95853824044581, 9.833130236288316, 103.26432273140209, 24.86475874390397, 23.730556930882933, 45.5666942930657, 6.59022494080662, 53.562155424081816, 20.46543626135156, 13.669605497104916, 9.657901684313398, 6.8722219895265315, 11.766486621140004, 51.13981713679601, 7.772006193961526, 78.85436036961329, 26.877585611284964, 77.65015486631232, 15.384657955725555, 7.585031859761583, 192.3543029358302, 54.24085809089936, 99.5416111264893, 6.519348456823339, 61.27478685251668, 29.787720084576755, 68.61778324606433, 23.136059717634478, 77.81033386736564, 8.731104156158162, 80.43790482510427, 5.884084804389154, 29.858254211403423, 18.8325021918533, 85.64948497187788, 5.789650953662158, 75.20061423495004, 37.34320581091283, 23.164245043938372, 61.580327074864485, 15.828592475777283, 6.16614352102848, 85.60629227758675, 150.71050095002622, 38.795031225030456, 5.989845897219074, 23.409592730144386, 7.4890664030699385, 42.15969318543113, 177.29475503128756, 5.395485922964363, 58.33476437826121, 24.276877081557327, 89.29909993283842, 10.616578405191833, 7.899324157392243, 6.716237159672391, 97.65411083353638, 109.33609872619215, 20.121183618678486, 7.873549216083068, 20.18426853511384, 52.66562852324305, 39.16937609870986, 12.12579896527325, 17.448818963252958, 163.74379150924779, 30.77538187439589, 49.04554320729898, 10.754748198955042, 71.44120255096533, 57.12907921258683, 14.67696663827196, 60.76264537077925, 81.69344310759968, 16.687986718215754, 49.24571401662953, 54.411134490260714, 94.99728538414259, 96.24675227767256, 8.659254858162683, 54.620191368669055, 67.76599075468869, 28.29368151992288, 20.997549435085, 87.39631189302487, 55.30445305372398, 13.566263629850893, 7.099909389983659, 101.1304270016234, 60.05011512343935, 46.12727061408764, 6.386273409363922, 130.72316515128048, 39.64433618222867, 140.41387830455935, 68.91024763832505, 35.13245363080624, 19.523123862033685, 67.94256152853221, 39.02846300855095, 33.566700528376806, 28.861609807604054, 17.67830802734288, 39.64785835534054, 19.338569730789576, 52.91532152307491, 13.365062124447004, 8.43049012369649, 114.6069186742539, 32.92612181328113, 14.169557693942012, 132.5068422584262, 43.29280806533153, 24.330757950708094, 55.41606586368472, 10.858020422174567, 64.133378010317, 17.796436439782095, 6.841891193102839, 6.833411497686403, 10.748181662348696, 143.6208809365708, 15.200559471619197, 66.24442421623272, 82.47200045444968, 45.525768117963594, 5.582189887056902, 8.18224233477783, 6.882058551688795, 5.491317488281456, 96.40436915888577, 129.805498199444, 23.70030875240844, 52.891456743404646, 76.35057378003762, 29.636127497559908, 27.02704166796519, 5.585809435112032, 5.922650991974056, 20.201896867803036, 36.32544930252458, 26.74505005675382, 47.90364254172824, 43.5277781757829, 70.71653141503015, 10.285247728770251, 42.0009640165693, 66.03355546615215, 50.74204596071893, 7.770979660072723, 5.411766603041763, 8.03836376241779, 120.01325518437291, 7.137351843459848, 15.568802888404258, 6.647182724789061, 19.374840606787423, 26.044544109622574, 29.45089749295633, 7.80654689382644, 102.52104995078469, 98.46477569417146, 26.460250757633876, 77.40275471402165, 50.769595749309126, 95.06835933613822, 178.48453226673638, 171.6279901416096, 126.44939452155121, 25.179792088142168, 43.824180068911225, 19.793454252281464, 19.58410844693892, 26.910425240017567, 13.703093223141595, 5.9373986009065485, 20.42571701032814, 62.85321389665384, 13.475362372265986, 15.378530805935277, 7.50261587417795, 40.149519121055306, 14.834576495360016, 15.326022640491312, 39.80886828858341, 49.70409209032824, 48.19122523939856, 36.57742848543684, 6.682101589977096, 11.84255827013748, 31.38624459355114, 20.751643272995757, 21.394714887969787, 30.5187631160547, 30.870408532339916, 5.372687733412216, 12.827298960033371, 5.722628535176543, 5.222709204857882, 28.934532743619222, 105.80895118691474, 19.33807970519483, 6.49322831708774, 31.720697812433563, 34.622663930247924, 34.1908806644116, 9.107656875216174, 72.36642537081222, 13.408551507185042, 18.79127767601394, 6.192906894817663, 45.41890235661183, 23.574796562759563, 94.32642949875464, 64.33106186361115, 104.05998067793641, 7.136769718175834, 27.573085025693736, 56.544827988828885, 75.54958532315223, 100.57387211067196, 74.8252604595863, 16.520105990625975, 23.35245745507426, 71.92034350671655, 66.2160217806256, 72.85392564944466, 106.7494636026382, 8.182149679042606, 36.69662010870469, 42.67698276647886, 8.25484695583886, 146.60103282814077, 10.101836528746567, 37.609629678350444, 23.581828683628203, 101.51735886975654, 7.1897178139692395, 51.10104676979018, 7.184645353841207, 15.67561499825416, 139.21076653776814, 7.9142715070972995, 44.87990155869253, 56.46231973805729, 49.44532618110033, 22.460901156212874, 32.00238122733886, 26.199358034754823, 8.231125458223852, 6.132223312817136, 20.35221450671823, 20.06814489701416, 8.946093221658948, 7.458284824996679, 53.431803061170974, 58.973602735502105, 15.028852324968451, 7.116541566127819, 59.98493158360186, 6.891101087391352, 71.72092822820944, 6.219965277364852, 47.00889646845255, 20.560376258887192, 21.138330956057874, 36.68512777056175, 41.21708048227475, 9.873502622434161, 8.180003866369715, 47.5295557378394, 14.199289451415666, 19.263331636250662, 8.844933044310851, 15.131056197394154, 45.88230982104973, 63.08256630178316, 16.449740410638363, 29.950740876026337, 5.504862172714095, 95.27674398648163, 79.80753865829473, 106.62765096572659, 7.110929558630375, 79.98273439876333, 86.38091557522685, 18.39475716422469, 14.403763300190882, 34.0405344105071, 5.157956862167905, 16.660818395138776, 16.19340702589286, 84.43255338599333, 5.295942100462458, 17.803652966857094, 15.882149022720846, 84.12695846729487, 117.6184217089329, 78.32580418838464, 59.39314693237506, 6.321168330106443, 127.88000795521576, 13.516724459466511, 37.45779706214941, 6.791138914555044, 33.43386779534377, 59.714900732999965, 6.146487789067794, 60.8896477910729, 5.705380922731191, 10.711060312173299, 42.30604770216051, 19.99101796191105, 57.07731903389182, 32.910863605059596, 10.686099901393714, 15.857759819147308, 58.21997418458569, 12.769476748593636, 123.74849738888993, 5.323634170628284, 24.330901913347933, 26.73382387972275, 44.70022579896462, 8.968677822414955, 46.00623565927116, 23.418396654927683, 5.516439760807066, 42.09709482089723, 13.646832385084707, 43.02776498485397, 13.17730298458461, 23.69989619151066, 33.24257985356173, 15.486931777293309, 54.45373061364266, 22.487079520075092, 33.46503547330382, 66.04469967915566, 10.718917261078285, 24.535392526438656, 54.59260312645082, 42.931720307814636, 74.2762754715797, 10.051497893042173, 10.762386283097824, 8.190828078182609, 49.150321016350965, 55.1441908985942, 118.75087240738245, 43.42242174991007, 11.760582235037461, 39.04817512349273, 34.02207856605413, 41.657539131047024, 35.73894847059386, 54.39755067854242, 17.673450425296934, 70.71312422743138, 6.4697901870795915, 8.254208688671666, 45.42590565705359, 60.23892453804898, 66.14480444307436, 37.347475517668045, 33.50509551810225, 60.98105252322943, 52.589538718828926, 99.33264210073125, 51.58118003008831, 47.597866877836736, 24.776669194302066, 5.450364689788853, 6.88430076436252, 44.30171632566081, 45.69962328201067, 13.948935604380175, 49.3021829717617, 76.08793440383333, 5.256100865813162, 64.0523995488109, 29.973853745816342, 7.986103482706391, 37.12852025711144, 7.053813453835769, 8.427480829288008, 48.564313823872915, 105.99973122268615, 18.250785676514383, 7.760370730435707, 5.332753668986832, 42.20409049388929, 78.26531768791068, 50.601653012830845, 71.13610101092485, 36.67118164067321, 5.727282564496229, 37.20226720065493, 17.54995949323779, 21.517667926828913, 69.14713290314853, 17.19761429763821, 7.620032046714553, 63.60422651227783, 20.500745529590485, 40.71837324831964, 12.013135502376073, 40.408526311360504, 110.10909067633867, 127.18164408006244, 120.29317756519421, 34.14457257431811, 11.16741878829066, 22.94234359316387, 20.19468062276975, 68.56042215762443, 32.2343859021007, 23.38968500624879, 54.8587951389415, 24.748354793618418, 24.080643018288242, 116.88264284942879, 24.420943887853483, 69.83478272549124, 7.959414907214802, 6.6266538534339565, 28.81986954565734, 20.820103878417644, 32.56163703814899, 15.191406771163706, 12.484224056009847, 88.98176338387313, 77.70749993988835, 28.824161622988456, 138.8800809219546, 26.43445672062743, 41.39275832009839, 76.08678893510259, 16.710678765287497, 25.843014893604195, 9.153708935694379, 7.53369562885341, 44.503305669786684, 57.06643081161559, 32.80356667411337, 45.46361242807512, 6.8527256115207615, 7.204950610861487, 42.93747902671548, 22.05712971908839, 25.878741430974898, 7.8013427726057065, 105.66542889847992, 87.03408481413643, 17.05893646012561, 40.28555459302261, 6.160329964323636, 10.571355869987169, 15.367231906513197, 81.907026894578, 64.98958391649047, 7.708885574248135, 30.474094229225372, 5.301601636238478, 48.243615537073126, 44.743335152126555, 48.46521039664603, 67.09623044307737, 90.16188757593042, 23.312630362822638, 25.59995815283494, 13.590996144658323, 9.147175244353418, 14.046165005105475, 40.50463865550801, 57.17299347871945, 37.79085229596944, 11.1293598470224, 9.840845106341874, 5.543241368549382, 26.707637907277835, 7.721424517964082, 6.158624552204128, 20.597989798207543, 17.1321470220252, 7.35527493090094, 117.16475375829367, 6.892875625616166, 25.114670227310665, 9.16800015384978, 9.165154017716945, 65.17989578307998, 8.632697844729497, 23.334450079101188, 144.64670376182616, 17.573035330956145, 45.88553551108218, 6.752332352049591, 14.726785270270494, 15.633559831186174, 99.9413075868448, 6.9229445402579115, 5.725547006266379, 24.074206166389335, 5.192569046593825, 14.772426309225041, 34.560082347117756, 23.349605236432062, 49.17651822310635, 7.339383139444811, 59.00774554346377, 13.90344486469157, 49.2253610780664, 12.091037474872866, 17.002396621607254, 33.9795805916899, 21.780637271847922, 5.400942269816485, 120.08254466538553, 63.588239821337055, 11.467858516968066, 16.987698736523928, 30.68158590799578, 5.607613491305376, 57.38039830787672, 105.4687714809039, 34.69098953506974, 18.29096363620792, 50.222888298671165, 44.42732264968683, 100.28553283325593, 10.899137294843358, 13.44270491925938, 10.111377997238794, 20.932251539182708, 17.961657615690136, 20.081817165446502, 20.888422818519597, 88.39261618286511, 5.884030213655361, 5.517486322537998, 19.20600274523518, 12.078315271308064, 29.523987533712983, 53.98725415645819, 44.65424035950587, 43.397001478839584, 10.71254715586545, 18.30259030426168, 157.339170184592, 17.728658215530615, 9.993511034299932, 38.896989918486256, 14.73055256531826, 18.184743971264485, 20.72860364372707, 6.122046131512, 75.31044174652753, 19.765015278377444, 15.088914962567552, 44.27136938268591, 13.531240309778038, 38.063651394111034, 5.298248580499221, 56.083449029082416, 13.97599515562153, 55.79138781116478, 15.766298367305843, 71.00465522778553, 23.147935115673697, 10.351373693816644, 6.928564237611862, 49.61862791944978, 43.46188567201972, 28.5455188127963, 42.174302301286126, 10.062093107330904, 10.944832968387763, 49.96916344085221, 8.73678399926691, 6.628654821934801, 13.570769809883563, 34.4700648055513, 10.71297849190641, 71.93495365575768, 12.510116633232391, 17.77595394973049, 21.53201135021888, 99.27743577222158, 7.0818870773976865, 29.766319115136067, 105.84090449448249, 97.60825495795804, 22.93126588116369, 13.941823991250152, 13.553498706435962, 5.0886412431999855, 39.456306257757085, 57.415934696011206, 23.200227537861274, 35.146780891542626, 13.531255222849246, 24.252117475119203, 68.07117898945366, 127.96663119601865, 101.07788950819887, 58.33551443239658, 16.478337444490727, 76.43391840192669, 31.262517156490574, 19.01827812002101, 23.75661758116352, 12.078264602634123, 26.868020776007675, 12.752408013261444, 103.73241216440962, 7.994746051497886, 30.074935151811435, 15.474663796595395, 27.736641003952123, 43.58096695062533, 5.737414661253361, 40.39961048606947, 72.12563303504629, 48.86295618751202, 12.515532151651485, 62.992390205084604, 11.24589730862929, 15.00879138927012, 20.244463495659517, 5.4369914811644104, 15.847261835347457, 36.79208520692865, 26.826484250435204, 30.375261833389864, 11.168098878980413, 5.535359609943648, 55.234389952463204, 65.62726790118856, 24.83049068268881, 9.42850235545931, 6.363496862581852, 7.308654705248102, 16.639399230745397, 43.2857350118168, 19.401261232821145, 82.75435050248038, 35.48402507767476, 80.21969788003784, 20.0288993181109, 37.83871156089108, 82.10944291193674, 8.76523452943913, 84.729599821622, 62.42768364888984, 15.939723306459877, 64.49906841879493, 27.230509991615047, 9.658484836713484, 19.459275506139562, 8.089322982770096, 77.23426070295926, 38.251898451167165, 9.422723946549572, 23.469992006034847, 84.15756402442987, 42.77058508491239, 18.38293580026384, 17.799374742051455, 7.395562353504167, 55.091895924827696, 93.16550662780664, 40.04737972952886, 32.046403998599665, 45.514331759216276, 21.107232010345072, 18.329350137438198, 45.3459805147792, 5.334922961921749, 17.30628326513778, 39.83342197163594, 7.976674085701261, 21.689302314644102, 46.85728018798965, 10.708124947386679, 23.17934380421234, 61.059536635226195, 19.956115030730015, 16.693726622437495, 85.2602095403972, 18.206408237745546, 8.670395546150633, 62.085645984739905, 31.775977107269053, 25.188023920063333, 9.141365281002894, 49.10391015018132, 107.75327887949244, 33.60660805122938, 5.950364933373112, 12.12657781236199, 160.65988266466357, 27.051148329186166, 48.442406545645156, 27.18137411357181, 21.17281051739178, 40.97279546443785, 32.121969286658306, 19.225716840229776, 50.31229407538554, 49.281197515059866, 26.30511900088273, 32.9968872400938, 59.84628381407937, 7.291698007811031, 22.68952608199448, 11.603972471776252, 53.621315737230226, 81.19177559857317, 76.37794593109895, 24.803287791917825, 67.74229223287492, 40.420395470594386, 127.50567733399441, 20.29301259363914, 16.883141027549456, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2971823.4375, 2998107.8125, 3389775.0, 5741392.1875, 5746979.6875, 5832737.5, 5886423.4375, 5890493.75, 5920845.3125, 5926431.25, 5929301.5625, 5933837.5, 5933959.375, 5934592.1875, 5936432.8125, 5936482.8125, 5940557.8125, 5941259.375, 5942495.3125, 5945667.1875, 5958479.6875, 5961659.375, 5968042.1875, 5969542.1875, 5972529.6875, 5972896.875, 5973140.625, 5990348.4375, 5996287.5, 5996801.5625, 6002501.5625, 6004267.1875, 6004467.1875, 6004662.5, 6010157.8125, 6022514.0625, 6025700.0, 6029410.9375, 6029476.5625, 6035806.25, 6037495.3125, 6038734.375, 6040054.6875, 6040251.5625, 6040545.3125, 6041371.875, 6044439.0625, 6066585.9375, 6075456.25, 6100398.4375, 6103384.375, 6108201.5625, 6144848.4375, 6148356.25, 6166498.4375, 6170751.5625, 6172081.25, 6188964.0625, 6188967.1875, 6194781.25, 6203360.9375, 6205148.4375, 6205357.8125, 6212231.25, 6217068.75, 6257023.4375, 6275768.75, 6275770.3125, 6327864.0625, 6339021.875, 6347276.5625, 6348612.5, 6348642.1875, 6357185.9375, 6368023.4375, 6368057.8125, 6372185.9375, 6372378.125, 6376092.1875, 6383292.1875, 6384003.125, 6387332.8125, 6416173.4375, 6418903.125, 6420384.375, 6421146.875, 6422992.1875, 6423534.375, 6425278.125, 6459612.5, 6461967.1875, 6462000.0, 6463153.125, 6514068.75, 6569060.9375, 6792476.5625, 6910112.5, 7016143.75, 7048723.4375, 7057248.4375, 8262340.625, 8271935.9375, 8704592.1875, 8772860.9375, 8817962.5, 8828418.75, 8869476.5625, 9024287.5, 9104720.3125, 9165414.0625, 9191968.75, 9192435.9375, 9192842.1875, 9221500.0, 9228935.9375, 9235307.8125, 9236084.375, 9236171.875, 9242120.3125, 9247921.875, 9334518.75, 9342468.75, 9368660.9375, 9396339.0625, 9403807.8125, 9404070.3125, 9407095.3125, 9460646.875, 9464837.5, 9483531.25, 9524232.8125, 9561315.625, 9561365.625, 9561978.125, 9562020.3125, 9562076.5625, 9566085.9375, 9629685.9375, 9632785.9375, 9635171.875, 9640742.1875, 9647650.0, 9660221.875, 9745314.0625, 9749598.4375, 9750448.4375, 9750535.9375, 9750871.875, 9751503.125, 9751937.5, 9752881.25, 9752910.9375, 9752954.6875, 9753325.0, 9753454.6875, 9753484.375, 9753487.5, 9753681.25, 9754017.1875, 9754210.9375, 9755214.0625, 9755428.125, 9755489.0625, 9755820.3125, 9758889.0625, 9759550.0, 9760743.75, 9761585.9375, 9761871.875, 9763606.25, 9764576.5625, 9766095.3125, 9766717.1875, 9766970.3125, 9774504.6875, 9774673.4375, 9775073.4375, 9775189.0625, 9775282.8125, 9775557.8125, 9775578.125, 9776448.4375, 9776695.3125, 9777423.4375, 9777443.75, 9777976.5625, 9778121.875, 9778160.9375, 9778709.375, 9779010.9375, 9779071.875, 9779531.25, 9780168.75, 9780615.625, 9781603.125, 9782171.875, 9783340.625, 9783348.4375, 9784150.0, 9784642.1875, 9784773.4375, 9785050.0, 9785554.6875, 9785646.875, 9785939.0625, 9786284.375, 9786928.125, 9787862.5, 9788196.875, 9788531.25, 9794021.875, 9795668.75, 9795806.25, 9795857.8125, 9797154.6875, 9798109.375, 9802726.5625, 9808479.6875, 9808640.625, 9809634.375, 9809671.875, 9810925.0, 9822604.6875, 9831181.25, 9838864.0625, 9841164.0625, 9841951.5625, 9842303.125, 9842321.875, 9842551.5625, 9842956.25, 9843443.75, 9843634.375, 9843657.8125, 9846340.625, 9847129.6875, 9847281.25, 9847290.625, 9847587.5, 9849598.4375, 9849687.5, 9851026.5625, 9856635.9375, 9857551.5625, 9858198.4375, 9858396.875, 9879182.8125, 9879851.5625, 9881057.8125, 9881957.8125, 9883384.375, 9884357.8125, 9884565.625, 9896531.25, 9916568.75, 9932885.9375, 9939265.625, 9939470.3125, 9940942.1875, 9947962.5, 9949968.75, 9954118.75, 9962110.9375, 9962971.875, 9967445.3125, 9968521.875, 9968643.75, 9969468.75, 9969957.8125, 9978606.25, 9983704.6875, 9986453.125, 9986807.8125, 9987273.4375, 9987821.875, 9993300.0, 9993825.0, 10002500.0, 10021193.75, 10021592.1875, 10028970.3125, 10034542.1875, 10046301.5625, 10046314.0625, 10049759.375, 10049904.6875, 10050742.1875, 10050901.5625, 10050992.1875, 10051601.5625, 10052000.0, 10052006.25, 10055132.8125, 10056423.4375, 10057262.5, 10059485.9375, 10071795.3125, 10075214.0625, 10078742.1875, 10079496.875, 10079500.0, 10085982.8125, 10086550.0, 10093103.125, 10093709.375, 10093903.125, 10101640.625, 10105537.5, 10110635.9375, 10112971.875, 10113435.9375, 10116343.75, 10172217.1875, 10191385.9375, 10193506.25, 10194425.0, 10199867.1875, 10202292.1875, 10206584.375, 10208832.8125, 10209314.0625, 10213060.9375, 10216793.75, 10226564.0625, 10254246.875, 10296684.375, 10303668.75, 10305620.3125, 10306525.0, 10306704.6875, 10311064.0625, 10317621.875, 10328807.8125, 10328846.875, 10329446.875, 10331968.75, 10359862.5, 10363568.75, 10363571.875, 10408345.3125, 10408396.875, 10409171.875, 10412923.4375, 10425289.0625, 10435651.5625, 10437709.375, 10440854.6875, 10443365.625, 10455214.0625, 10458595.3125, 10460571.875, 10464006.25, 10464571.875, 10465312.5, 10481450.0, 10483820.3125, 10498009.375, 10500900.0, 10520535.9375, 10538621.875, 10543037.5, 10632050.0, 10637140.625, 10708846.875, 10711562.5, 10711656.25, 10712437.5, 10712696.875, 10713212.5, 10724432.8125, 10729890.625, 10730618.75, 10732320.3125, 10733735.9375, 10742754.6875, 10742987.5, 10749957.8125, 10754650.0, 10756137.5, 10766445.3125, 10771693.75, 10774250.0, 10778998.4375, 10819043.75, 10823275.0, 10827834.375, 10829878.125, 10831120.3125, 10832720.3125, 10832906.25, 10833509.375, 10834440.625, 10834535.9375, 10834575.0, 10835525.0, 10835800.0, 10836090.625, 10836209.375, 10837254.6875, 10838334.375, 10838892.1875, 10838915.625, 10839420.3125, 10839553.125, 10840225.0, 10840232.8125, 10840973.4375, 10842626.5625, 10843465.625, 10844456.25, 10845646.875, 10846243.75, 10846270.3125, 10846542.1875, 10847631.25, 10849304.6875, 10851057.8125, 10851639.0625, 10852323.4375, 10852337.5, 10852351.5625, 10853126.5625, 10854948.4375, 10855657.8125, 10856057.8125, 10857984.375, 10861607.8125, 10862659.375, 10863575.0, 10865148.4375, 10866615.625, 10866925.0, 10868551.5625, 10869764.0625, 10870235.9375, 10871278.125, 10872309.375, 10873753.125, 10881732.8125, 10882285.9375, 11005509.375, 11011709.375, 11017834.375, 11018190.625, 11022875.0, 11024478.125, 11024875.0, 11025320.3125, 11027301.5625, 11027317.1875, 11027778.125, 11027940.625, 11028196.875, 11029339.0625, 11029354.6875, 11029567.1875, 11029760.9375, 11029846.875, 11031007.8125, 11031050.0, 11031285.9375, 11031303.125, 11031309.375, 11031378.125, 11031573.4375, 11031939.0625, 11032028.125, 11032053.125, 11032232.8125, 11032275.0, 11032278.125, 11032353.125, 11032510.9375, 11032959.375, 11032965.625, 11033153.125, 11033156.25, 11033242.1875, 11033296.875, 11033298.4375, 11033323.4375, 11033342.1875, 11033345.3125, 11033346.875, 11033528.125, 11033754.6875, 11034107.8125, 11034259.375, 11034460.9375, 11034518.75, 11034551.5625, 11034554.6875, 11034631.25, 11034807.8125, 11034820.3125, 11034884.375, 11034970.3125, 11034973.4375, 11034987.5, 11035059.375, 11035179.6875, 11035223.4375, 11035287.5, 11035328.125, 11035364.0625, 11035382.8125, 11035385.9375, 11035390.625, 11035392.1875, 11035429.6875, 11035432.8125, 11035492.1875, 11035523.4375, 11035693.75, 11035732.8125, 11035739.0625, 11035762.5, 11035765.625, 11035784.375, 11035814.0625, 11035860.9375, 11035900.0, 11036009.375, 11036054.6875, 11036076.5625, 11036135.9375, 11036237.5, 11036314.0625, 11036487.5, 11036512.5, 11036548.4375, 11036570.3125, 11036628.125, 11036731.25, 11036743.75, 11036754.6875, 11036768.75, 11036795.3125, 11036796.875, 11036807.8125, 11036850.0, 11036871.875, 11036885.9375, 11036968.75, 11037092.1875, 11037098.4375, 11037106.25, 11037106.25, 11037114.0625, 11037132.8125, 11037146.875, 11037162.5, 11037173.4375, 11037178.125, 11037207.8125, 11037209.375, 11037218.75, 11037221.875, 11037231.25, 11037284.375, 11037307.8125, 11037309.375, 11037317.1875, 11037317.1875, 11037350.0, 11037356.25, 11037360.9375, 11037376.5625, 11037376.5625, 11037379.6875, 11037385.9375, 11037400.0, 11037434.375, 11037445.3125, 11037451.5625, 11037468.75, 11037485.9375, 11037546.875, 11037564.0625, 11037564.0625, 11037589.0625, 11037612.5, 11037617.1875, 11037634.375, 11037657.8125, 11037671.875, 11037712.5, 11037714.0625, 11037715.625, 11037731.25, 11037750.0, 11037764.0625, 11037807.8125, 11037842.1875, 11037862.5, 11037898.4375, 11037914.0625, 11037926.5625, 11037939.0625, 11037964.0625, 11037976.5625, 11038021.875, 11038023.4375, 11038059.375, 11038167.1875, 11038221.875, 11038326.5625, 11038328.125, 11038398.4375, 11038409.375, 11038412.5, 11038426.5625, 11038428.125, 11038467.1875, 11038478.125, 11038482.8125, 11038492.1875, 11038493.75, 11038570.3125, 11038617.1875, 11038639.0625, 11038640.625, 11038671.875, 11038676.5625, 11038696.875, 11038703.125, 11038745.3125, 11038865.625, 11038873.4375, 11038893.75, 11038925.0, 11038942.1875, 11038953.125, 11038959.375, 11039006.25, 11039012.5, 11039218.75, 11039281.25, 11039287.5, 11039306.25, 11039329.6875, 11039362.5, 11039368.75, 11039370.3125, 11039406.25, 11039429.6875, 11039439.0625, 11039446.875, 11039546.875, 11039618.75, 11039632.8125, 11039639.0625, 11039654.6875, 11039671.875, 11039693.75, 11039748.4375, 11039753.125, 11039798.4375, 11039856.25, 11039935.9375, 11039987.5, 11040014.0625, 11040040.625, 11040045.3125, 11040048.4375, 11040064.0625, 11040129.6875, 11040135.9375, 11040150.0, 11040192.1875, 11040245.3125, 11040267.1875, 11040276.5625, 11040368.75, 11040412.5, 11040420.3125, 11040467.1875, 11040500.0, 11040540.625, 11040548.4375, 11040556.25, 11040632.8125, 11040665.625, 11040701.5625, 11040703.125, 11040712.5, 11040728.125, 11040734.375, 11040864.0625, 11040873.4375, 11040878.125, 11040881.25, 11040898.4375, 11040928.125, 11040953.125, 11040962.5, 11040965.625, 11040987.5, 11040989.0625, 11041001.5625, 11041045.3125, 11041050.0, 11041059.375, 11041078.125, 11041090.625, 11041106.25, 11041114.0625, 11041117.1875, 11041125.0, 11041137.5, 11041151.5625, 11041175.0, 11041176.5625, 11041200.0, 11041220.3125, 11041226.5625, 11041228.125, 11041232.8125, 11041243.75, 11041245.3125, 11041257.8125, 11041257.8125, 11041260.9375, 11041262.5, 11041270.3125, 11041273.4375, 11041276.5625, 11041295.3125, 11041296.875, 11041298.4375, 11041300.0, 11041307.8125, 11041326.5625, 11041326.5625, 11041346.875, 11041350.0, 11041356.25, 11041390.625, 11041410.9375, 11041425.0, 11041432.8125, 11041435.9375, 11041440.625, 11041443.75, 11041457.8125, 11041457.8125, 11041460.9375, 11041460.9375, 11041467.1875, 11041484.375, 11041492.1875, 11041503.125, 11041514.0625, 11041528.125, 11041529.6875, 11041531.25, 11041532.8125, 11041540.625, 11041553.125, 11041565.625, 11041570.3125, 11041573.4375, 11041578.125, 11041596.875, 11041612.5, 11041620.3125, 11041626.5625, 11041645.3125, 11041646.875, 11041656.25, 11041664.0625, 11041664.0625, 11041670.3125, 11041681.25, 11041692.1875, 11041701.5625, 11041718.75, 11041718.75, 11041721.875, 11041721.875, 11041735.9375, 11041739.0625, 11041764.0625, 11041773.4375, 11041792.1875, 11041793.75, 11041801.5625, 11041804.6875, 11041814.0625, 11041823.4375, 11041823.4375, 11041828.125, 11041834.375, 11041835.9375, 11041837.5, 11041853.125, 11041859.375, 11041868.75, 11041878.125, 11041937.5, 11041942.1875, 11041942.1875, 11041962.5, 11041965.625, 11041970.3125, 11041990.625, 11041992.1875, 11042014.0625, 11042023.4375, 11042040.625, 11042043.75, 11042043.75, 11042050.0, 11042057.8125, 11042071.875, 11042071.875, 11042073.4375, 11042073.4375, 11042084.375, 11042104.6875, 11042134.375, 11042137.5, 11042146.875, 11042151.5625, 11042156.25, 11042159.375, 11042159.375, 11042162.5, 11042167.1875, 11042170.3125, 11042187.5, 11042187.5, 11042204.6875, 11042207.8125, 11042209.375, 11042217.1875, 11042226.5625, 11042245.3125, 11042245.3125, 11042250.0, 11042256.25, 11042257.8125, 11042267.1875, 11042276.5625, 11042278.125, 11042290.625, 11042306.25, 11042307.8125, 11042334.375, 11042335.9375, 11042345.3125, 11042351.5625, 11042356.25, 11042360.9375, 11042376.5625, 11042385.9375, 11042385.9375, 11042385.9375, 11042387.5, 11042398.4375, 11042400.0, 11042406.25, 11042415.625, 11042417.1875, 11042425.0, 11042434.375, 11042448.4375, 11042456.25, 11042462.5, 11042464.0625, 11042467.1875, 11042473.4375, 11042475.0, 11042489.0625, 11042510.9375, 11042517.1875, 11042518.75, 11042543.75, 11042543.75, 11042548.4375, 11042560.9375, 11042565.625, 11042565.625, 11042571.875, 11042596.875, 11042620.3125, 11042628.125, 11042631.25, 11042635.9375, 11042653.125, 11042654.6875, 11042660.9375, 11042670.3125, 11042717.1875, 11042723.4375, 11042731.25, 11042731.25, 11042734.375, 11042739.0625, 11042748.4375, 11042762.5, 11042770.3125, 11042775.0, 11042779.6875, 11042784.375, 11042787.5, 11042790.625, 11042798.4375, 11042818.75, 11042848.4375, 11042850.0, 11042851.5625, 11042882.8125, 11042901.5625, 11042901.5625, 11042909.375, 11042920.3125, 11042925.0, 11042946.875, 11042948.4375, 11042950.0, 11042951.5625, 11042959.375, 11042965.625, 11042992.1875, 11042993.75, 11042996.875, 11043014.0625, 11043015.625, 11043028.125, 11043028.125, 11043034.375, 11043039.0625, 11043042.1875, 11043050.0, 11043060.9375, 11043065.625, 11043076.5625, 11043079.6875, 11043087.5, 11043089.0625, 11043110.9375, 11043162.5, 11043165.625, 11043168.75, 11043170.3125, 11043171.875, 11043182.8125, 11043185.9375, 11043196.875, 11043206.25, 11043207.8125, 11043215.625, 11043226.5625, 11043246.875, 11043253.125, 11043268.75, 11043273.4375, 11043278.125, 11043314.0625, 11043318.75, 11043320.3125, 11043326.5625, 11043335.9375, 11043343.75, 11043345.3125, 11043348.4375, 11043365.625, 11043378.125, 11043384.375, 11043425.0, 11043434.375, 11043445.3125, 11043446.875, 11043454.6875, 11043460.9375, 11043479.6875, 11043482.8125, 11043484.375, 11043485.9375, 11043501.5625, 11043503.125, 11043512.5, 11043557.8125, 11043560.9375, 11043571.875, 11043576.5625, 11043576.5625, 11043578.125, 11043603.125, 11043609.375, 11043626.5625, 11043646.875, 11043670.3125, 11043690.625, 11043693.75, 11043701.5625, 11043712.5, 11043718.75, 11043725.0, ...], [38.93173364204029, 36.882757992963015, 11.285676954845078, 44.485043259720314, 15.954221051393176, 8.157685335947138, 24.870992906401796, 16.211837688112613, 83.57398794848149, 6.571089839243453, 106.65831564027522, 75.11331298828199, 45.705930779732, 102.27224558823741, 18.322261223398115, 25.947493354524795, 30.29258047795789, 81.25226901818841, 34.78202823022773, 35.63170310519595, 67.38207634031183, 310.44021086092056, 62.39196770557744, 26.654161100592994, 10.68548844951095, 16.227042337729607, 20.11699999490306, 48.31461477024287, 44.61221640837284, 71.14872421430607, 82.12605821727345, 71.64177167780343, 95.7608843923522, 73.00040668408379, 35.11467054785365, 35.679302678967666, 18.208806949665696, 60.80745042728999, 11.116409097994344, 26.40208094308283, 10.409581340107149, 7.216726491038633, 16.228334188652102, 24.786698368036024, 55.948221064627496, 89.4306395942845, 41.891899391144506, 78.63676067262014, 53.467271927971844, 7.749452128122146, 47.09247701740158, 22.896231393459008, 29.41813588356429, 43.489544930492514, 17.763129988426794, 11.382661616239023, 52.968110688351295, 13.417951794123773, 25.97751239734158, 5.748919977401752, 21.39516411133563, 122.25354885298947, 42.715523858648325, 41.50022273614733, 15.652301304181298, 94.78185395354637, 31.293829188746205, 54.265697019426284, 9.171793410852734, 17.689912199001586, 107.09828005569776, 234.86792672254333, 83.17854321273963, 15.589725592838915, 6.486106374721528, 22.16019795582908, 38.21937360627098, 24.380212417757587, 22.941172322032706, 28.22129033730538, 48.751300364107635, 40.41831108369696, 42.820408289037545, 43.486873947737806, 16.761569676635993, 11.445768978374854, 22.35480214225453, 45.49892372529165, 12.298564745135803, 10.507349817447372, 26.30968940189851, 15.598614184155505, 10.380834380147382, 24.716099766812917, 73.64734685529282, 27.321439975139853, 22.839142617047898, 10.022534661764343, 31.919653855029352, 12.289051359217463, 55.443639519098504, 111.88592676304745, 58.528055672423434, 89.63134364228266, 10.876125893278067, 20.867154211164653, 44.38854670088505, 19.287631532715096, 7.615304196608176, 52.63888963219141, 35.488741999208166, 18.129385083617223, 24.41875270698982, 36.022561064609036, 11.145841181965048, 69.7131834723686, 28.21967285514269, 5.156961562207473, 5.421637213118655, 43.99240391784988, 44.907988328913376, 22.68728906584135, 58.09337631169791, 15.496752639123146, 40.509271266562195, 6.38585574495596, 15.909559951435302, 12.12963754178987, 49.89116038172841, 13.179454910112039, 48.971840261509435, 17.533316505722503, 104.92471382739673, 80.84863186187181, 39.253483090150326, 5.9123349703547285, 29.623132301506736, 8.545113750506868, 17.585331082051027, 7.871771167566033, 34.73374811604918, 69.21606373901874, 24.424791044585575, 33.621886356060415, 47.19075106267546, 139.18687077001965, 11.733368998325217, 69.77020135705907, 89.87434910177069, 30.40186383625938, 52.55226751749174, 48.02092233383443, 21.946142160301928, 58.303855141342325, 37.4507792603872, 117.05902582015652, 23.694141133754023, 101.80142093812645, 18.749687048146725, 52.36155543136515, 34.71153780471627, 181.2789215643818, 37.029004655022646, 7.1119294817395105, 46.435147309178596, 22.847985725851167, 6.031849425624771, 37.042748218309036, 89.11818025445142, 15.644765329483745, 17.545669913957052, 60.57934023685803, 65.27989724544916, 86.72705029657705, 16.5066347070224, 42.24332957575217, 21.524194008538192, 90.67150815531454, 6.40866535339545, 52.967093507307276, 131.88645841435527, 16.47927170164841, 18.942437106326413, 44.403887400346164, 83.34198268065416, 36.174263737518054, 14.303730630758697, 12.110889508267595, 14.102445907347478, 11.764737382928994, 27.215775277449392, 5.586077324528239, 12.139004087732225, 61.25814857832455, 34.99851866335099, 15.56767510639218, 34.383924449454504, 76.91791848591504, 35.91259234368511, 6.898529481653878, 50.758749897472924, 129.4281968715347, 75.09677206062177, 21.792274590128986, 8.586592046613461, 11.554540702677896, 21.79896419627905, 19.909678733972534, 148.22862345158788, 50.32141551026509, 15.486339862958044, 9.571249481218272, 12.394986914615385, 5.109234999419948, 27.562531418149717, 5.304296048073237, 7.413343856839556, 33.912477594363814, 6.531113128041673, 73.16528302072075, 30.546302770390422, 31.89866799936184, 16.60388058896429, 60.39873127017026, 14.000814060112475, 63.40884392140409, 62.06165772446402, 73.68382230295764, 41.12773444968683, 69.16618462153025, 124.0710941806979, 8.865928862164251, 117.10126242619816, 28.082538813294093, 10.793249556682326, 143.31238179680642, 21.984594940423413, 77.02160636309523, 76.03415616889671, 41.74900168450983, 6.236976384962454, 5.442400007814309, 47.077307529843644, 18.265463327722223, 10.417305445692365, 31.987772492570492, 16.67489949477702, 10.149268640238931, 65.58509791638741, 151.75034847841758, 64.55710916391146, 37.65526859766736, 8.562584731848222, 33.1861290321662, 30.103456153839403, 11.556255508355203, 169.9512230343083, 18.332003205185913, 64.20849742663684, 6.606202729299412, 112.92883645009528, 84.66378430687122, 13.246020903237067, 15.789020858949188, 41.611069299792206, 148.88026165125413, 113.63750137492107, 23.61679920711024, 127.07163947418387, 11.897173697826357, 32.40233358101609, 102.59871807730633, 42.596234049378126, 29.95853824044581, 9.833130236288316, 103.26432273140209, 24.86475874390397, 23.730556930882933, 45.5666942930657, 6.59022494080662, 53.562155424081816, 20.46543626135156, 13.669605497104916, 9.657901684313398, 6.8722219895265315, 11.766486621140004, 51.13981713679601, 7.772006193961526, 78.85436036961329, 26.877585611284964, 77.65015486631232, 15.384657955725555, 7.585031859761583, 192.3543029358302, 54.24085809089936, 99.5416111264893, 6.519348456823339, 61.27478685251668, 29.787720084576755, 68.61778324606433, 23.136059717634478, 77.81033386736564, 8.731104156158162, 80.43790482510427, 5.884084804389154, 29.858254211403423, 18.8325021918533, 85.64948497187788, 5.789650953662158, 75.20061423495004, 37.34320581091283, 23.164245043938372, 61.580327074864485, 15.828592475777283, 6.16614352102848, 85.60629227758675, 150.71050095002622, 38.795031225030456, 5.989845897219074, 23.409592730144386, 7.4890664030699385, 42.15969318543113, 177.29475503128756, 5.395485922964363, 58.33476437826121, 24.276877081557327, 89.29909993283842, 10.616578405191833, 7.899324157392243, 6.716237159672391, 97.65411083353638, 109.33609872619215, 20.121183618678486, 7.873549216083068, 20.18426853511384, 52.66562852324305, 39.16937609870986, 12.12579896527325, 17.448818963252958, 163.74379150924779, 30.77538187439589, 49.04554320729898, 10.754748198955042, 71.44120255096533, 57.12907921258683, 14.67696663827196, 60.76264537077925, 81.69344310759968, 16.687986718215754, 49.24571401662953, 54.411134490260714, 94.99728538414259, 96.24675227767256, 8.659254858162683, 54.620191368669055, 67.76599075468869, 28.29368151992288, 20.997549435085, 87.39631189302487, 55.30445305372398, 13.566263629850893, 7.099909389983659, 101.1304270016234, 60.05011512343935, 46.12727061408764, 6.386273409363922, 130.72316515128048, 39.64433618222867, 140.41387830455935, 68.91024763832505, 35.13245363080624, 19.523123862033685, 67.94256152853221, 39.02846300855095, 33.566700528376806, 28.861609807604054, 17.67830802734288, 39.64785835534054, 19.338569730789576, 52.91532152307491, 13.365062124447004, 8.43049012369649, 114.6069186742539, 32.92612181328113, 14.169557693942012, 132.5068422584262, 43.29280806533153, 24.330757950708094, 55.41606586368472, 10.858020422174567, 64.133378010317, 17.796436439782095, 6.841891193102839, 6.833411497686403, 10.748181662348696, 143.6208809365708, 15.200559471619197, 66.24442421623272, 82.47200045444968, 45.525768117963594, 5.582189887056902, 8.18224233477783, 6.882058551688795, 5.491317488281456, 96.40436915888577, 129.805498199444, 23.70030875240844, 52.891456743404646, 76.35057378003762, 29.636127497559908, 27.02704166796519, 5.585809435112032, 5.922650991974056, 20.201896867803036, 36.32544930252458, 26.74505005675382, 47.90364254172824, 43.5277781757829, 70.71653141503015, 10.285247728770251, 42.0009640165693, 66.03355546615215, 50.74204596071893, 7.770979660072723, 5.411766603041763, 8.03836376241779, 120.01325518437291, 7.137351843459848, 15.568802888404258, 6.647182724789061, 19.374840606787423, 26.044544109622574, 29.45089749295633, 7.80654689382644, 102.52104995078469, 98.46477569417146, 26.460250757633876, 77.40275471402165, 50.769595749309126, 95.06835933613822, 178.48453226673638, 171.6279901416096, 126.44939452155121, 25.179792088142168, 43.824180068911225, 19.793454252281464, 19.58410844693892, 26.910425240017567, 13.703093223141595, 5.9373986009065485, 20.42571701032814, 62.85321389665384, 13.475362372265986, 15.378530805935277, 7.50261587417795, 40.149519121055306, 14.834576495360016, 15.326022640491312, 39.80886828858341, 49.70409209032824, 48.19122523939856, 36.57742848543684, 6.682101589977096, 11.84255827013748, 31.38624459355114, 20.751643272995757, 21.394714887969787, 30.5187631160547, 30.870408532339916, 5.372687733412216, 12.827298960033371, 5.722628535176543, 5.222709204857882, 28.934532743619222, 105.80895118691474, 19.33807970519483, 6.49322831708774, 31.720697812433563, 34.622663930247924, 34.1908806644116, 9.107656875216174, 72.36642537081222, 13.408551507185042, 18.79127767601394, 6.192906894817663, 45.41890235661183, 23.574796562759563, 94.32642949875464, 64.33106186361115, 104.05998067793641, 7.136769718175834, 27.573085025693736, 56.544827988828885, 75.54958532315223, 100.57387211067196, 74.8252604595863, 16.520105990625975, 23.35245745507426, 71.92034350671655, 66.2160217806256, 72.85392564944466, 106.7494636026382, 8.182149679042606, 36.69662010870469, 42.67698276647886, 8.25484695583886, 146.60103282814077, 10.101836528746567, 37.609629678350444, 23.581828683628203, 101.51735886975654, 7.1897178139692395, 51.10104676979018, 7.184645353841207, 15.67561499825416, 139.21076653776814, 7.9142715070972995, 44.87990155869253, 56.46231973805729, 49.44532618110033, 22.460901156212874, 32.00238122733886, 26.199358034754823, 8.231125458223852, 6.132223312817136, 20.35221450671823, 20.06814489701416, 8.946093221658948, 7.458284824996679, 53.431803061170974, 58.973602735502105, 15.028852324968451, 7.116541566127819, 59.98493158360186, 6.891101087391352, 71.72092822820944, 6.219965277364852, 47.00889646845255, 20.560376258887192, 21.138330956057874, 36.68512777056175, 41.21708048227475, 9.873502622434161, 8.180003866369715, 47.5295557378394, 14.199289451415666, 19.263331636250662, 8.844933044310851, 15.131056197394154, 45.88230982104973, 63.08256630178316, 16.449740410638363, 29.950740876026337, 5.504862172714095, 95.27674398648163, 79.80753865829473, 106.62765096572659, 7.110929558630375, 79.98273439876333, 86.38091557522685, 18.39475716422469, 14.403763300190882, 34.0405344105071, 5.157956862167905, 16.660818395138776, 16.19340702589286, 84.43255338599333, 5.295942100462458, 17.803652966857094, 15.882149022720846, 84.12695846729487, 117.6184217089329, 78.32580418838464, 59.39314693237506, 6.321168330106443, 127.88000795521576, 13.516724459466511, 37.45779706214941, 6.791138914555044, 33.43386779534377, 59.714900732999965, 6.146487789067794, 60.8896477910729, 5.705380922731191, 10.711060312173299, 42.30604770216051, 19.99101796191105, 57.07731903389182, 32.910863605059596, 10.686099901393714, 15.857759819147308, 58.21997418458569, 12.769476748593636, 123.74849738888993, 5.323634170628284, 24.330901913347933, 26.73382387972275, 44.70022579896462, 8.968677822414955, 46.00623565927116, 23.418396654927683, 5.516439760807066, 42.09709482089723, 13.646832385084707, 43.02776498485397, 13.17730298458461, 23.69989619151066, 33.24257985356173, 15.486931777293309, 54.45373061364266, 22.487079520075092, 33.46503547330382, 66.04469967915566, 10.718917261078285, 24.535392526438656, 54.59260312645082, 42.931720307814636, 74.2762754715797, 10.051497893042173, 10.762386283097824, 8.190828078182609, 49.150321016350965, 55.1441908985942, 118.75087240738245, 43.42242174991007, 11.760582235037461, 39.04817512349273, 34.02207856605413, 41.657539131047024, 35.73894847059386, 54.39755067854242, 17.673450425296934, 70.71312422743138, 6.4697901870795915, 8.254208688671666, 45.42590565705359, 60.23892453804898, 66.14480444307436, 37.347475517668045, 33.50509551810225, 60.98105252322943, 52.589538718828926, 99.33264210073125, 51.58118003008831, 47.597866877836736, 24.776669194302066, 5.450364689788853, 6.88430076436252, 44.30171632566081, 45.69962328201067, 13.948935604380175, 49.3021829717617, 76.08793440383333, 5.256100865813162, 64.0523995488109, 29.973853745816342, 7.986103482706391, 37.12852025711144, 7.053813453835769, 8.427480829288008, 48.564313823872915, 105.99973122268615, 18.250785676514383, 7.760370730435707, 5.332753668986832, 42.20409049388929, 78.26531768791068, 50.601653012830845, 71.13610101092485, 36.67118164067321, 5.727282564496229, 37.20226720065493, 17.54995949323779, 21.517667926828913, 69.14713290314853, 17.19761429763821, 7.620032046714553, 63.60422651227783, 20.500745529590485, 40.71837324831964, 12.013135502376073, 40.408526311360504, 110.10909067633867, 127.18164408006244, 120.29317756519421, 34.14457257431811, 11.16741878829066, 22.94234359316387, 20.19468062276975, 68.56042215762443, 32.2343859021007, 23.38968500624879, 54.8587951389415, 24.748354793618418, 24.080643018288242, 116.88264284942879, 24.420943887853483, 69.83478272549124, 7.959414907214802, 6.6266538534339565, 28.81986954565734, 20.820103878417644, 32.56163703814899, 15.191406771163706, 12.484224056009847, 88.98176338387313, 77.70749993988835, 28.824161622988456, 138.8800809219546, 26.43445672062743, 41.39275832009839, 76.08678893510259, 16.710678765287497, 25.843014893604195, 9.153708935694379, 7.53369562885341, 44.503305669786684, 57.06643081161559, 32.80356667411337, 45.46361242807512, 6.8527256115207615, 7.204950610861487, 42.93747902671548, 22.05712971908839, 25.878741430974898, 7.8013427726057065, 105.66542889847992, 87.03408481413643, 17.05893646012561, 40.28555459302261, 6.160329964323636, 10.571355869987169, 15.367231906513197, 81.907026894578, 64.98958391649047, 7.708885574248135, 30.474094229225372, 5.301601636238478, 48.243615537073126, 44.743335152126555, 48.46521039664603, 67.09623044307737, 90.16188757593042, 23.312630362822638, 25.59995815283494, 13.590996144658323, 9.147175244353418, 14.046165005105475, 40.50463865550801, 57.17299347871945, 37.79085229596944, 11.1293598470224, 9.840845106341874, 5.543241368549382, 26.707637907277835, 7.721424517964082, 6.158624552204128, 20.597989798207543, 17.1321470220252, 7.35527493090094, 117.16475375829367, 6.892875625616166, 25.114670227310665, 9.16800015384978, 9.165154017716945, 65.17989578307998, 8.632697844729497, 23.334450079101188, 144.64670376182616, 17.573035330956145, 45.88553551108218, 6.752332352049591, 14.726785270270494, 15.633559831186174, 99.9413075868448, 6.9229445402579115, 5.725547006266379, 24.074206166389335, 5.192569046593825, 14.772426309225041, 34.560082347117756, 23.349605236432062, 49.17651822310635, 7.339383139444811, 59.00774554346377, 13.90344486469157, 49.2253610780664, 12.091037474872866, 17.002396621607254, 33.9795805916899, 21.780637271847922, 5.400942269816485, 120.08254466538553, 63.588239821337055, 11.467858516968066, 16.987698736523928, 30.68158590799578, 5.607613491305376, 57.38039830787672, 105.4687714809039, 34.69098953506974, 18.29096363620792, 50.222888298671165, 44.42732264968683, 100.28553283325593, 10.899137294843358, 13.44270491925938, 10.111377997238794, 20.932251539182708, 17.961657615690136, 20.081817165446502, 20.888422818519597, 88.39261618286511, 5.884030213655361, 5.517486322537998, 19.20600274523518, 12.078315271308064, 29.523987533712983, 53.98725415645819, 44.65424035950587, 43.397001478839584, 10.71254715586545, 18.30259030426168, 157.339170184592, 17.728658215530615, 9.993511034299932, 38.896989918486256, 14.73055256531826, 18.184743971264485, 20.72860364372707, 6.122046131512, 75.31044174652753, 19.765015278377444, 15.088914962567552, 44.27136938268591, 13.531240309778038, 38.063651394111034, 5.298248580499221, 56.083449029082416, 13.97599515562153, 55.79138781116478, 15.766298367305843, 71.00465522778553, 23.147935115673697, 10.351373693816644, 6.928564237611862, 49.61862791944978, 43.46188567201972, 28.5455188127963, 42.174302301286126, 10.062093107330904, 10.944832968387763, 49.96916344085221, 8.73678399926691, 6.628654821934801, 13.570769809883563, 34.4700648055513, 10.71297849190641, 71.93495365575768, 12.510116633232391, 17.77595394973049, 21.53201135021888, 99.27743577222158, 7.0818870773976865, 29.766319115136067, 105.84090449448249, 97.60825495795804, 22.93126588116369, 13.941823991250152, 13.553498706435962, 5.0886412431999855, 39.456306257757085, 57.415934696011206, 23.200227537861274, 35.146780891542626, 13.531255222849246, 24.252117475119203, 68.07117898945366, 127.96663119601865, 101.07788950819887, 58.33551443239658, 16.478337444490727, 76.43391840192669, 31.262517156490574, 19.01827812002101, 23.75661758116352, 12.078264602634123, 26.868020776007675, 12.752408013261444, 103.73241216440962, 7.994746051497886, 30.074935151811435, 15.474663796595395, 27.736641003952123, 43.58096695062533, 5.737414661253361, 40.39961048606947, 72.12563303504629, 48.86295618751202, 12.515532151651485, 62.992390205084604, 11.24589730862929, 15.00879138927012, 20.244463495659517, 5.4369914811644104, 15.847261835347457, 36.79208520692865, 26.826484250435204, 30.375261833389864, 11.168098878980413, 5.535359609943648, 55.234389952463204, 65.62726790118856, 24.83049068268881, 9.42850235545931, 6.363496862581852, 7.308654705248102, 16.639399230745397, 43.2857350118168, 19.401261232821145, 82.75435050248038, 35.48402507767476, 80.21969788003784, 20.0288993181109, 37.83871156089108, 82.10944291193674, 8.76523452943913, 84.729599821622, 62.42768364888984, 15.939723306459877, 64.49906841879493, 27.230509991615047, 9.658484836713484, 19.459275506139562, 8.089322982770096, 77.23426070295926, 38.251898451167165, 9.422723946549572, 23.469992006034847, 84.15756402442987, 42.77058508491239, 18.38293580026384, 17.799374742051455, 7.395562353504167, 55.091895924827696, 93.16550662780664, 40.04737972952886, 32.046403998599665, 45.514331759216276, 21.107232010345072, 18.329350137438198, 45.3459805147792, 5.334922961921749, 17.30628326513778, 39.83342197163594, 7.976674085701261, 21.689302314644102, 46.85728018798965, 10.708124947386679, 23.17934380421234, 61.059536635226195, 19.956115030730015, 16.693726622437495, 85.2602095403972, 18.206408237745546, 8.670395546150633, 62.085645984739905, 31.775977107269053, 25.188023920063333, 9.141365281002894, 49.10391015018132, 107.75327887949244, 33.60660805122938, 5.950364933373112, 12.12657781236199, 160.65988266466357, 27.051148329186166, 48.442406545645156, 27.18137411357181, 21.17281051739178, 40.97279546443785, 32.121969286658306, 19.225716840229776, 50.31229407538554, 49.281197515059866, 26.30511900088273, 32.9968872400938, 59.84628381407937, 7.291698007811031, 22.68952608199448, 11.603972471776252, 53.621315737230226, 81.19177559857317, 76.37794593109895, 24.803287791917825, 67.74229223287492, 40.420395470594386, 127.50567733399441, 20.29301259363914, 16.883141027549456, ...])
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);
([2971823.4375, 2998107.8125, 3389775.0, 5741392.1875, 5746979.6875, 5832737.5, 5886423.4375, 5890493.75, 5920845.3125, 5926431.25, 5929301.5625, 5933837.5, 5933959.375, 5934592.1875, 5936432.8125, 5936482.8125, 5940557.8125, 5941259.375, 5942495.3125, 5945667.1875, 5958479.6875, 5961659.375, 5968042.1875, 5969542.1875, 5972529.6875, 5972896.875, 5973140.625, 5990348.4375, 5996287.5, 5996801.5625, 6002501.5625, 6004267.1875, 6004467.1875, 6004662.5, 6010157.8125, 6022514.0625, 6025700.0, 6029410.9375, 6029476.5625, 6035806.25, 6037495.3125, 6038734.375, 6040054.6875, 6040251.5625, 6040545.3125, 6041371.875, 6044439.0625, 6066585.9375, 6075456.25, 6100398.4375, 6103384.375, 6108201.5625, 6144848.4375, 6148356.25, 6166498.4375, 6170751.5625, 6172081.25, 6188964.0625, 6188967.1875, 6194781.25, 6203360.9375, 6205148.4375, 6205357.8125, 6212231.25, 6217068.75, 6257023.4375, 6275768.75, 6275770.3125, 6327864.0625, 6339021.875, 6347276.5625, 6348612.5, 6348642.1875, 6357185.9375, 6368023.4375, 6368057.8125, 6372185.9375, 6372378.125, 6376092.1875, 6383292.1875, 6384003.125, 6387332.8125, 6416173.4375, 6418903.125, 6420384.375, 6421146.875, 6422992.1875, 6423534.375, 6425278.125, 6459612.5, 6461967.1875, 6462000.0, 6463153.125, 6514068.75, 6569060.9375, 6792476.5625, 6910112.5, 7016143.75, 7048723.4375, 7057248.4375, 8262340.625, 8271935.9375, 8704592.1875, 8772860.9375, 8817962.5, 8828418.75, 8869476.5625, 9024287.5, 9104720.3125, 9165414.0625, 9191968.75, 9192435.9375, 9192842.1875, 9221500.0, 9228935.9375, 9235307.8125, 9236084.375, 9236171.875, 9242120.3125, 9247921.875, 9334518.75, 9342468.75, 9368660.9375, 9396339.0625, 9403807.8125, 9404070.3125, 9407095.3125, 9460646.875, 9464837.5, 9483531.25, 9524232.8125, 9561315.625, 9561365.625, 9561978.125, 9562020.3125, 9562076.5625, 9566085.9375, 9629685.9375, 9632785.9375, 9635171.875, 9640742.1875, 9647650.0, 9660221.875, 9745314.0625, 9749598.4375, 9750448.4375, 9750535.9375, 9750871.875, 9751503.125, 9751937.5, 9752881.25, 9752910.9375, 9752954.6875, 9753325.0, 9753454.6875, 9753484.375, 9753487.5, 9753681.25, 9754017.1875, 9754210.9375, 9755214.0625, 9755428.125, 9755489.0625, 9755820.3125, 9758889.0625, 9759550.0, 9760743.75, 9761585.9375, 9761871.875, 9763606.25, 9764576.5625, 9766095.3125, 9766717.1875, 9766970.3125, 9774504.6875, 9774673.4375, 9775073.4375, 9775189.0625, 9775282.8125, 9775557.8125, 9775578.125, 9776448.4375, 9776695.3125, 9777423.4375, 9777443.75, 9777976.5625, 9778121.875, 9778160.9375, 9778709.375, 9779010.9375, 9779071.875, 9779531.25, 9780168.75, 9780615.625, 9781603.125, 9782171.875, 9783340.625, 9783348.4375, 9784150.0, 9784642.1875, 9784773.4375, 9785050.0, 9785554.6875, 9785646.875, 9785939.0625, 9786284.375, 9786928.125, 9787862.5, 9788196.875, 9788531.25, 9794021.875, 9795668.75, 9795806.25, 9795857.8125, 9797154.6875, 9798109.375, 9802726.5625, 9808479.6875, 9808640.625, 9809634.375, 9809671.875, 9810925.0, 9822604.6875, 9831181.25, 9838864.0625, 9841164.0625, 9841951.5625, 9842303.125, 9842321.875, 9842551.5625, 9842956.25, 9843443.75, 9843634.375, 9843657.8125, 9846340.625, 9847129.6875, 9847281.25, 9847290.625, 9847587.5, 9849598.4375, 9849687.5, 9851026.5625, 9856635.9375, 9857551.5625, 9858198.4375, 9858396.875, 9879182.8125, 9879851.5625, 9881057.8125, 9881957.8125, 9883384.375, 9884357.8125, 9884565.625, 9896531.25, 9916568.75, 9932885.9375, 9939265.625, 9939470.3125, 9940942.1875, 9947962.5, 9949968.75, 9954118.75, 9962110.9375, 9962971.875, 9967445.3125, 9968521.875, 9968643.75, 9969468.75, 9969957.8125, 9978606.25, 9983704.6875, 9986453.125, 9986807.8125, 9987273.4375, 9987821.875, 9993300.0, 9993825.0, 10002500.0, 10021193.75, 10021592.1875, 10028970.3125, 10034542.1875, 10046301.5625, 10046314.0625, 10049759.375, 10049904.6875, 10050742.1875, 10050901.5625, 10050992.1875, 10051601.5625, 10052000.0, 10052006.25, 10055132.8125, 10056423.4375, 10057262.5, 10059485.9375, 10071795.3125, 10075214.0625, 10078742.1875, 10079496.875, 10079500.0, 10085982.8125, 10086550.0, 10093103.125, 10093709.375, 10093903.125, 10101640.625, 10105537.5, 10110635.9375, 10112971.875, 10113435.9375, 10116343.75, 10172217.1875, 10191385.9375, 10193506.25, 10194425.0, 10199867.1875, 10202292.1875, 10206584.375, 10208832.8125, 10209314.0625, 10213060.9375, 10216793.75, 10226564.0625, 10254246.875, 10296684.375, 10303668.75, 10305620.3125, 10306525.0, 10306704.6875, 10311064.0625, 10317621.875, 10328807.8125, 10328846.875, 10329446.875, 10331968.75, 10359862.5, 10363568.75, 10363571.875, 10408345.3125, 10408396.875, 10409171.875, 10412923.4375, 10425289.0625, 10435651.5625, 10437709.375, 10440854.6875, 10443365.625, 10455214.0625, 10458595.3125, 10460571.875, 10464006.25, 10464571.875, 10465312.5, 10481450.0, 10483820.3125, 10498009.375, 10500900.0, 10520535.9375, 10538621.875, 10543037.5, 10632050.0, 10637140.625, 10708846.875, 10711562.5, 10711656.25, 10712437.5, 10712696.875, 10713212.5, 10724432.8125, 10729890.625, 10730618.75, 10732320.3125, 10733735.9375, 10742754.6875, 10742987.5, 10749957.8125, 10754650.0, 10756137.5, 10766445.3125, 10771693.75, 10774250.0, 10778998.4375, 10819043.75, 10823275.0, 10827834.375, 10829878.125, 10831120.3125, 10832720.3125, 10832906.25, 10833509.375, 10834440.625, 10834535.9375, 10834575.0, 10835525.0, 10835800.0, 10836090.625, 10836209.375, 10837254.6875, 10838334.375, 10838892.1875, 10838915.625, 10839420.3125, 10839553.125, 10840225.0, 10840232.8125, 10840973.4375, 10842626.5625, 10843465.625, 10844456.25, 10845646.875, 10846243.75, 10846270.3125, 10846542.1875, 10847631.25, 10849304.6875, 10851057.8125, 10851639.0625, 10852323.4375, 10852337.5, 10852351.5625, 10853126.5625, 10854948.4375, 10855657.8125, 10856057.8125, 10857984.375, 10861607.8125, 10862659.375, 10863575.0, 10865148.4375, 10866615.625, 10866925.0, 10868551.5625, 10869764.0625, 10870235.9375, 10871278.125, 10872309.375, 10873753.125, 10881732.8125, 10882285.9375, 11005509.375, 11011709.375, 11017834.375, 11018190.625, 11022875.0, 11024478.125, 11024875.0, 11025320.3125, 11027301.5625, 11027317.1875, 11027778.125, 11027940.625, 11028196.875, 11029339.0625, 11029354.6875, 11029567.1875, 11029760.9375, 11029846.875, 11031007.8125, 11031050.0, 11031285.9375, 11031303.125, 11031309.375, 11031378.125, 11031573.4375, 11031939.0625, 11032028.125, 11032053.125, 11032232.8125, 11032275.0, 11032278.125, 11032353.125, 11032510.9375, 11032959.375, 11032965.625, 11033153.125, 11033156.25, 11033242.1875, 11033296.875, 11033298.4375, 11033323.4375, 11033342.1875, 11033345.3125, 11033346.875, 11033528.125, 11033754.6875, 11034107.8125, 11034259.375, 11034460.9375, 11034518.75, 11034551.5625, 11034554.6875, 11034631.25, 11034807.8125, 11034820.3125, 11034884.375, 11034970.3125, 11034973.4375, 11034987.5, 11035059.375, 11035179.6875, 11035223.4375, 11035287.5, 11035328.125, 11035364.0625, 11035382.8125, 11035385.9375, 11035390.625, 11035392.1875, 11035429.6875, 11035432.8125, 11035492.1875, 11035523.4375, 11035693.75, 11035732.8125, 11035739.0625, 11035762.5, 11035765.625, 11035784.375, 11035814.0625, 11035860.9375, 11035900.0, 11036009.375, 11036054.6875, 11036076.5625, 11036135.9375, 11036237.5, 11036314.0625, 11036487.5, 11036512.5, 11036548.4375, 11036570.3125, 11036628.125, 11036731.25, 11036743.75, 11036754.6875, 11036768.75, 11036795.3125, 11036796.875, 11036807.8125, 11036850.0, 11036871.875, 11036885.9375, 11036968.75, 11037092.1875, 11037098.4375, 11037106.25, 11037106.25, 11037114.0625, 11037132.8125, 11037146.875, 11037162.5, 11037173.4375, 11037178.125, 11037207.8125, 11037209.375, 11037218.75, 11037221.875, 11037231.25, 11037284.375, 11037307.8125, 11037309.375, 11037317.1875, 11037317.1875, 11037350.0, 11037356.25, 11037360.9375, 11037376.5625, 11037376.5625, 11037379.6875, 11037385.9375, 11037400.0, 11037434.375, 11037445.3125, 11037451.5625, 11037468.75, 11037485.9375, 11037546.875, 11037564.0625, 11037564.0625, 11037589.0625, 11037612.5, 11037617.1875, 11037634.375, 11037657.8125, 11037671.875, 11037712.5, 11037714.0625, 11037715.625, 11037731.25, 11037750.0, 11037764.0625, 11037807.8125, 11037842.1875, 11037862.5, 11037898.4375, 11037914.0625, 11037926.5625, 11037939.0625, 11037964.0625, 11037976.5625, 11038021.875, 11038023.4375, 11038059.375, 11038167.1875, 11038221.875, 11038326.5625, 11038328.125, 11038398.4375, 11038409.375, 11038412.5, 11038426.5625, 11038428.125, 11038467.1875, 11038478.125, 11038482.8125, 11038492.1875, 11038493.75, 11038570.3125, 11038617.1875, 11038639.0625, 11038640.625, 11038671.875, 11038676.5625, 11038696.875, 11038703.125, 11038745.3125, 11038865.625, 11038873.4375, 11038893.75, 11038925.0, 11038942.1875, 11038953.125, 11038959.375, 11039006.25, 11039012.5, 11039218.75, 11039281.25, 11039287.5, 11039306.25, 11039329.6875, 11039362.5, 11039368.75, 11039370.3125, 11039406.25, 11039429.6875, 11039439.0625, 11039446.875, 11039546.875, 11039618.75, 11039632.8125, 11039639.0625, 11039654.6875, 11039671.875, 11039693.75, 11039748.4375, 11039753.125, 11039798.4375, 11039856.25, 11039935.9375, 11039987.5, 11040014.0625, 11040040.625, 11040045.3125, 11040048.4375, 11040064.0625, 11040129.6875, 11040135.9375, 11040150.0, 11040192.1875, 11040245.3125, 11040267.1875, 11040276.5625, 11040368.75, 11040412.5, 11040420.3125, 11040467.1875, 11040500.0, 11040540.625, 11040548.4375, 11040556.25, 11040632.8125, 11040665.625, 11040701.5625, 11040703.125, 11040712.5, 11040728.125, 11040734.375, 11040864.0625, 11040873.4375, 11040878.125, 11040881.25, 11040898.4375, 11040928.125, 11040953.125, 11040962.5, 11040965.625, 11040987.5, 11040989.0625, 11041001.5625, 11041045.3125, 11041050.0, 11041059.375, 11041078.125, 11041090.625, 11041106.25, 11041114.0625, 11041117.1875, 11041125.0, 11041137.5, 11041151.5625, 11041175.0, 11041176.5625, 11041200.0, 11041220.3125, 11041226.5625, 11041228.125, 11041232.8125, 11041243.75, 11041245.3125, 11041257.8125, 11041257.8125, 11041260.9375, 11041262.5, 11041270.3125, 11041273.4375, 11041276.5625, 11041295.3125, 11041296.875, 11041298.4375, 11041300.0, 11041307.8125, 11041326.5625, 11041326.5625, 11041346.875, 11041350.0, 11041356.25, 11041390.625, 11041410.9375, 11041425.0, 11041432.8125, 11041435.9375, 11041440.625, 11041443.75, 11041457.8125, 11041457.8125, 11041460.9375, 11041460.9375, 11041467.1875, 11041484.375, 11041492.1875, 11041503.125, 11041514.0625, 11041528.125, 11041529.6875, 11041531.25, 11041532.8125, 11041540.625, 11041553.125, 11041565.625, 11041570.3125, 11041573.4375, 11041578.125, 11041596.875, 11041612.5, 11041620.3125, 11041626.5625, 11041645.3125, 11041646.875, 11041656.25, 11041664.0625, 11041664.0625, 11041670.3125, 11041681.25, 11041692.1875, 11041701.5625, 11041718.75, 11041718.75, 11041721.875, 11041721.875, 11041735.9375, 11041739.0625, 11041764.0625, 11041773.4375, 11041792.1875, 11041793.75, 11041801.5625, 11041804.6875, 11041814.0625, 11041823.4375, 11041823.4375, 11041828.125, 11041834.375, 11041835.9375, 11041837.5, 11041853.125, 11041859.375, 11041868.75, 11041878.125, 11041937.5, 11041942.1875, 11041942.1875, 11041962.5, 11041965.625, 11041970.3125, 11041990.625, 11041992.1875, 11042014.0625, 11042023.4375, 11042040.625, 11042043.75, 11042043.75, 11042050.0, 11042057.8125, 11042071.875, 11042071.875, 11042073.4375, 11042073.4375, 11042084.375, 11042104.6875, 11042134.375, 11042137.5, 11042146.875, 11042151.5625, 11042156.25, 11042159.375, 11042159.375, 11042162.5, 11042167.1875, 11042170.3125, 11042187.5, 11042187.5, 11042204.6875, 11042207.8125, 11042209.375, 11042217.1875, 11042226.5625, 11042245.3125, 11042245.3125, 11042250.0, 11042256.25, 11042257.8125, 11042267.1875, 11042276.5625, 11042278.125, 11042290.625, 11042306.25, 11042307.8125, 11042334.375, 11042335.9375, 11042345.3125, 11042351.5625, 11042356.25, 11042360.9375, 11042376.5625, 11042385.9375, 11042385.9375, 11042385.9375, 11042387.5, 11042398.4375, 11042400.0, 11042406.25, 11042415.625, 11042417.1875, 11042425.0, 11042434.375, 11042448.4375, 11042456.25, 11042462.5, 11042464.0625, 11042467.1875, 11042473.4375, 11042475.0, 11042489.0625, 11042510.9375, 11042517.1875, 11042518.75, 11042543.75, 11042543.75, 11042548.4375, 11042560.9375, 11042565.625, 11042565.625, 11042571.875, 11042596.875, 11042620.3125, 11042628.125, 11042631.25, 11042635.9375, 11042653.125, 11042654.6875, 11042660.9375, 11042670.3125, 11042717.1875, 11042723.4375, 11042731.25, 11042731.25, 11042734.375, 11042739.0625, 11042748.4375, 11042762.5, 11042770.3125, 11042775.0, 11042779.6875, 11042784.375, 11042787.5, 11042790.625, 11042798.4375, 11042818.75, 11042848.4375, 11042850.0, 11042851.5625, 11042882.8125, 11042901.5625, 11042901.5625, 11042909.375, 11042920.3125, 11042925.0, 11042946.875, 11042948.4375, 11042950.0, 11042951.5625, 11042959.375, 11042965.625, 11042992.1875, 11042993.75, 11042996.875, 11043014.0625, 11043015.625, 11043028.125, 11043028.125, 11043034.375, 11043039.0625, 11043042.1875, 11043050.0, 11043060.9375, 11043065.625, 11043076.5625, 11043079.6875, 11043087.5, 11043089.0625, 11043110.9375, 11043162.5, 11043165.625, 11043168.75, 11043170.3125, 11043171.875, 11043182.8125, 11043185.9375, 11043196.875, 11043206.25, 11043207.8125, 11043215.625, 11043226.5625, 11043246.875, 11043253.125, 11043268.75, 11043273.4375, 11043278.125, 11043314.0625, 11043318.75, 11043320.3125, 11043326.5625, 11043335.9375, 11043343.75, 11043345.3125, 11043348.4375, 11043365.625, 11043378.125, 11043384.375, 11043425.0, 11043434.375, 11043445.3125, 11043446.875, 11043454.6875, 11043460.9375, 11043479.6875, 11043482.8125, 11043484.375, 11043485.9375, 11043501.5625, 11043503.125, 11043512.5, 11043557.8125, 11043560.9375, 11043571.875, 11043576.5625, 11043576.5625, 11043578.125, 11043603.125, 11043609.375, 11043626.5625, 11043646.875, 11043670.3125, 11043690.625, 11043693.75, 11043701.5625, 11043712.5, 11043718.75, 11043725.0, ...], [38.93173364204029, 36.882757992963015, 11.285676954845078, 44.485043259720314, 15.954221051393176, 8.157685335947138, 24.870992906401796, 16.211837688112613, 83.57398794848149, 6.571089839243453, 106.65831564027522, 75.11331298828199, 45.705930779732, 102.27224558823741, 18.322261223398115, 25.947493354524795, 30.29258047795789, 81.25226901818841, 34.78202823022773, 35.63170310519595, 67.38207634031183, 310.44021086092056, 62.39196770557744, 26.654161100592994, 10.68548844951095, 16.227042337729607, 20.11699999490306, 48.31461477024287, 44.61221640837284, 71.14872421430607, 82.12605821727345, 71.64177167780343, 95.7608843923522, 73.00040668408379, 35.11467054785365, 35.679302678967666, 18.208806949665696, 60.80745042728999, 11.116409097994344, 26.40208094308283, 10.409581340107149, 7.216726491038633, 16.228334188652102, 24.786698368036024, 55.948221064627496, 89.4306395942845, 41.891899391144506, 78.63676067262014, 53.467271927971844, 7.749452128122146, 47.09247701740158, 22.896231393459008, 29.41813588356429, 43.489544930492514, 17.763129988426794, 11.382661616239023, 52.968110688351295, 13.417951794123773, 25.97751239734158, 5.748919977401752, 21.39516411133563, 122.25354885298947, 42.715523858648325, 41.50022273614733, 15.652301304181298, 94.78185395354637, 31.293829188746205, 54.265697019426284, 9.171793410852734, 17.689912199001586, 107.09828005569776, 234.86792672254333, 83.17854321273963, 15.589725592838915, 6.486106374721528, 22.16019795582908, 38.21937360627098, 24.380212417757587, 22.941172322032706, 28.22129033730538, 48.751300364107635, 40.41831108369696, 42.820408289037545, 43.486873947737806, 16.761569676635993, 11.445768978374854, 22.35480214225453, 45.49892372529165, 12.298564745135803, 10.507349817447372, 26.30968940189851, 15.598614184155505, 10.380834380147382, 24.716099766812917, 73.64734685529282, 27.321439975139853, 22.839142617047898, 10.022534661764343, 31.919653855029352, 12.289051359217463, 55.443639519098504, 111.88592676304745, 58.528055672423434, 89.63134364228266, 10.876125893278067, 20.867154211164653, 44.38854670088505, 19.287631532715096, 7.615304196608176, 52.63888963219141, 35.488741999208166, 18.129385083617223, 24.41875270698982, 36.022561064609036, 11.145841181965048, 69.7131834723686, 28.21967285514269, 5.156961562207473, 5.421637213118655, 43.99240391784988, 44.907988328913376, 22.68728906584135, 58.09337631169791, 15.496752639123146, 40.509271266562195, 6.38585574495596, 15.909559951435302, 12.12963754178987, 49.89116038172841, 13.179454910112039, 48.971840261509435, 17.533316505722503, 104.92471382739673, 80.84863186187181, 39.253483090150326, 5.9123349703547285, 29.623132301506736, 8.545113750506868, 17.585331082051027, 7.871771167566033, 34.73374811604918, 69.21606373901874, 24.424791044585575, 33.621886356060415, 47.19075106267546, 139.18687077001965, 11.733368998325217, 69.77020135705907, 89.87434910177069, 30.40186383625938, 52.55226751749174, 48.02092233383443, 21.946142160301928, 58.303855141342325, 37.4507792603872, 117.05902582015652, 23.694141133754023, 101.80142093812645, 18.749687048146725, 52.36155543136515, 34.71153780471627, 181.2789215643818, 37.029004655022646, 7.1119294817395105, 46.435147309178596, 22.847985725851167, 6.031849425624771, 37.042748218309036, 89.11818025445142, 15.644765329483745, 17.545669913957052, 60.57934023685803, 65.27989724544916, 86.72705029657705, 16.5066347070224, 42.24332957575217, 21.524194008538192, 90.67150815531454, 6.40866535339545, 52.967093507307276, 131.88645841435527, 16.47927170164841, 18.942437106326413, 44.403887400346164, 83.34198268065416, 36.174263737518054, 14.303730630758697, 12.110889508267595, 14.102445907347478, 11.764737382928994, 27.215775277449392, 5.586077324528239, 12.139004087732225, 61.25814857832455, 34.99851866335099, 15.56767510639218, 34.383924449454504, 76.91791848591504, 35.91259234368511, 6.898529481653878, 50.758749897472924, 129.4281968715347, 75.09677206062177, 21.792274590128986, 8.586592046613461, 11.554540702677896, 21.79896419627905, 19.909678733972534, 148.22862345158788, 50.32141551026509, 15.486339862958044, 9.571249481218272, 12.394986914615385, 5.109234999419948, 27.562531418149717, 5.304296048073237, 7.413343856839556, 33.912477594363814, 6.531113128041673, 73.16528302072075, 30.546302770390422, 31.89866799936184, 16.60388058896429, 60.39873127017026, 14.000814060112475, 63.40884392140409, 62.06165772446402, 73.68382230295764, 41.12773444968683, 69.16618462153025, 124.0710941806979, 8.865928862164251, 117.10126242619816, 28.082538813294093, 10.793249556682326, 143.31238179680642, 21.984594940423413, 77.02160636309523, 76.03415616889671, 41.74900168450983, 6.236976384962454, 5.442400007814309, 47.077307529843644, 18.265463327722223, 10.417305445692365, 31.987772492570492, 16.67489949477702, 10.149268640238931, 65.58509791638741, 151.75034847841758, 64.55710916391146, 37.65526859766736, 8.562584731848222, 33.1861290321662, 30.103456153839403, 11.556255508355203, 169.9512230343083, 18.332003205185913, 64.20849742663684, 6.606202729299412, 112.92883645009528, 84.66378430687122, 13.246020903237067, 15.789020858949188, 41.611069299792206, 148.88026165125413, 113.63750137492107, 23.61679920711024, 127.07163947418387, 11.897173697826357, 32.40233358101609, 102.59871807730633, 42.596234049378126, 29.95853824044581, 9.833130236288316, 103.26432273140209, 24.86475874390397, 23.730556930882933, 45.5666942930657, 6.59022494080662, 53.562155424081816, 20.46543626135156, 13.669605497104916, 9.657901684313398, 6.8722219895265315, 11.766486621140004, 51.13981713679601, 7.772006193961526, 78.85436036961329, 26.877585611284964, 77.65015486631232, 15.384657955725555, 7.585031859761583, 192.3543029358302, 54.24085809089936, 99.5416111264893, 6.519348456823339, 61.27478685251668, 29.787720084576755, 68.61778324606433, 23.136059717634478, 77.81033386736564, 8.731104156158162, 80.43790482510427, 5.884084804389154, 29.858254211403423, 18.8325021918533, 85.64948497187788, 5.789650953662158, 75.20061423495004, 37.34320581091283, 23.164245043938372, 61.580327074864485, 15.828592475777283, 6.16614352102848, 85.60629227758675, 150.71050095002622, 38.795031225030456, 5.989845897219074, 23.409592730144386, 7.4890664030699385, 42.15969318543113, 177.29475503128756, 5.395485922964363, 58.33476437826121, 24.276877081557327, 89.29909993283842, 10.616578405191833, 7.899324157392243, 6.716237159672391, 97.65411083353638, 109.33609872619215, 20.121183618678486, 7.873549216083068, 20.18426853511384, 52.66562852324305, 39.16937609870986, 12.12579896527325, 17.448818963252958, 163.74379150924779, 30.77538187439589, 49.04554320729898, 10.754748198955042, 71.44120255096533, 57.12907921258683, 14.67696663827196, 60.76264537077925, 81.69344310759968, 16.687986718215754, 49.24571401662953, 54.411134490260714, 94.99728538414259, 96.24675227767256, 8.659254858162683, 54.620191368669055, 67.76599075468869, 28.29368151992288, 20.997549435085, 87.39631189302487, 55.30445305372398, 13.566263629850893, 7.099909389983659, 101.1304270016234, 60.05011512343935, 46.12727061408764, 6.386273409363922, 130.72316515128048, 39.64433618222867, 140.41387830455935, 68.91024763832505, 35.13245363080624, 19.523123862033685, 67.94256152853221, 39.02846300855095, 33.566700528376806, 28.861609807604054, 17.67830802734288, 39.64785835534054, 19.338569730789576, 52.91532152307491, 13.365062124447004, 8.43049012369649, 114.6069186742539, 32.92612181328113, 14.169557693942012, 132.5068422584262, 43.29280806533153, 24.330757950708094, 55.41606586368472, 10.858020422174567, 64.133378010317, 17.796436439782095, 6.841891193102839, 6.833411497686403, 10.748181662348696, 143.6208809365708, 15.200559471619197, 66.24442421623272, 82.47200045444968, 45.525768117963594, 5.582189887056902, 8.18224233477783, 6.882058551688795, 5.491317488281456, 96.40436915888577, 129.805498199444, 23.70030875240844, 52.891456743404646, 76.35057378003762, 29.636127497559908, 27.02704166796519, 5.585809435112032, 5.922650991974056, 20.201896867803036, 36.32544930252458, 26.74505005675382, 47.90364254172824, 43.5277781757829, 70.71653141503015, 10.285247728770251, 42.0009640165693, 66.03355546615215, 50.74204596071893, 7.770979660072723, 5.411766603041763, 8.03836376241779, 120.01325518437291, 7.137351843459848, 15.568802888404258, 6.647182724789061, 19.374840606787423, 26.044544109622574, 29.45089749295633, 7.80654689382644, 102.52104995078469, 98.46477569417146, 26.460250757633876, 77.40275471402165, 50.769595749309126, 95.06835933613822, 178.48453226673638, 171.6279901416096, 126.44939452155121, 25.179792088142168, 43.824180068911225, 19.793454252281464, 19.58410844693892, 26.910425240017567, 13.703093223141595, 5.9373986009065485, 20.42571701032814, 62.85321389665384, 13.475362372265986, 15.378530805935277, 7.50261587417795, 40.149519121055306, 14.834576495360016, 15.326022640491312, 39.80886828858341, 49.70409209032824, 48.19122523939856, 36.57742848543684, 6.682101589977096, 11.84255827013748, 31.38624459355114, 20.751643272995757, 21.394714887969787, 30.5187631160547, 30.870408532339916, 5.372687733412216, 12.827298960033371, 5.722628535176543, 5.222709204857882, 28.934532743619222, 105.80895118691474, 19.33807970519483, 6.49322831708774, 31.720697812433563, 34.622663930247924, 34.1908806644116, 9.107656875216174, 72.36642537081222, 13.408551507185042, 18.79127767601394, 6.192906894817663, 45.41890235661183, 23.574796562759563, 94.32642949875464, 64.33106186361115, 104.05998067793641, 7.136769718175834, 27.573085025693736, 56.544827988828885, 75.54958532315223, 100.57387211067196, 74.8252604595863, 16.520105990625975, 23.35245745507426, 71.92034350671655, 66.2160217806256, 72.85392564944466, 106.7494636026382, 8.182149679042606, 36.69662010870469, 42.67698276647886, 8.25484695583886, 146.60103282814077, 10.101836528746567, 37.609629678350444, 23.581828683628203, 101.51735886975654, 7.1897178139692395, 51.10104676979018, 7.184645353841207, 15.67561499825416, 139.21076653776814, 7.9142715070972995, 44.87990155869253, 56.46231973805729, 49.44532618110033, 22.460901156212874, 32.00238122733886, 26.199358034754823, 8.231125458223852, 6.132223312817136, 20.35221450671823, 20.06814489701416, 8.946093221658948, 7.458284824996679, 53.431803061170974, 58.973602735502105, 15.028852324968451, 7.116541566127819, 59.98493158360186, 6.891101087391352, 71.72092822820944, 6.219965277364852, 47.00889646845255, 20.560376258887192, 21.138330956057874, 36.68512777056175, 41.21708048227475, 9.873502622434161, 8.180003866369715, 47.5295557378394, 14.199289451415666, 19.263331636250662, 8.844933044310851, 15.131056197394154, 45.88230982104973, 63.08256630178316, 16.449740410638363, 29.950740876026337, 5.504862172714095, 95.27674398648163, 79.80753865829473, 106.62765096572659, 7.110929558630375, 79.98273439876333, 86.38091557522685, 18.39475716422469, 14.403763300190882, 34.0405344105071, 5.157956862167905, 16.660818395138776, 16.19340702589286, 84.43255338599333, 5.295942100462458, 17.803652966857094, 15.882149022720846, 84.12695846729487, 117.6184217089329, 78.32580418838464, 59.39314693237506, 6.321168330106443, 127.88000795521576, 13.516724459466511, 37.45779706214941, 6.791138914555044, 33.43386779534377, 59.714900732999965, 6.146487789067794, 60.8896477910729, 5.705380922731191, 10.711060312173299, 42.30604770216051, 19.99101796191105, 57.07731903389182, 32.910863605059596, 10.686099901393714, 15.857759819147308, 58.21997418458569, 12.769476748593636, 123.74849738888993, 5.323634170628284, 24.330901913347933, 26.73382387972275, 44.70022579896462, 8.968677822414955, 46.00623565927116, 23.418396654927683, 5.516439760807066, 42.09709482089723, 13.646832385084707, 43.02776498485397, 13.17730298458461, 23.69989619151066, 33.24257985356173, 15.486931777293309, 54.45373061364266, 22.487079520075092, 33.46503547330382, 66.04469967915566, 10.718917261078285, 24.535392526438656, 54.59260312645082, 42.931720307814636, 74.2762754715797, 10.051497893042173, 10.762386283097824, 8.190828078182609, 49.150321016350965, 55.1441908985942, 118.75087240738245, 43.42242174991007, 11.760582235037461, 39.04817512349273, 34.02207856605413, 41.657539131047024, 35.73894847059386, 54.39755067854242, 17.673450425296934, 70.71312422743138, 6.4697901870795915, 8.254208688671666, 45.42590565705359, 60.23892453804898, 66.14480444307436, 37.347475517668045, 33.50509551810225, 60.98105252322943, 52.589538718828926, 99.33264210073125, 51.58118003008831, 47.597866877836736, 24.776669194302066, 5.450364689788853, 6.88430076436252, 44.30171632566081, 45.69962328201067, 13.948935604380175, 49.3021829717617, 76.08793440383333, 5.256100865813162, 64.0523995488109, 29.973853745816342, 7.986103482706391, 37.12852025711144, 7.053813453835769, 8.427480829288008, 48.564313823872915, 105.99973122268615, 18.250785676514383, 7.760370730435707, 5.332753668986832, 42.20409049388929, 78.26531768791068, 50.601653012830845, 71.13610101092485, 36.67118164067321, 5.727282564496229, 37.20226720065493, 17.54995949323779, 21.517667926828913, 69.14713290314853, 17.19761429763821, 7.620032046714553, 63.60422651227783, 20.500745529590485, 40.71837324831964, 12.013135502376073, 40.408526311360504, 110.10909067633867, 127.18164408006244, 120.29317756519421, 34.14457257431811, 11.16741878829066, 22.94234359316387, 20.19468062276975, 68.56042215762443, 32.2343859021007, 23.38968500624879, 54.8587951389415, 24.748354793618418, 24.080643018288242, 116.88264284942879, 24.420943887853483, 69.83478272549124, 7.959414907214802, 6.6266538534339565, 28.81986954565734, 20.820103878417644, 32.56163703814899, 15.191406771163706, 12.484224056009847, 88.98176338387313, 77.70749993988835, 28.824161622988456, 138.8800809219546, 26.43445672062743, 41.39275832009839, 76.08678893510259, 16.710678765287497, 25.843014893604195, 9.153708935694379, 7.53369562885341, 44.503305669786684, 57.06643081161559, 32.80356667411337, 45.46361242807512, 6.8527256115207615, 7.204950610861487, 42.93747902671548, 22.05712971908839, 25.878741430974898, 7.8013427726057065, 105.66542889847992, 87.03408481413643, 17.05893646012561, 40.28555459302261, 6.160329964323636, 10.571355869987169, 15.367231906513197, 81.907026894578, 64.98958391649047, 7.708885574248135, 30.474094229225372, 5.301601636238478, 48.243615537073126, 44.743335152126555, 48.46521039664603, 67.09623044307737, 90.16188757593042, 23.312630362822638, 25.59995815283494, 13.590996144658323, 9.147175244353418, 14.046165005105475, 40.50463865550801, 57.17299347871945, 37.79085229596944, 11.1293598470224, 9.840845106341874, 5.543241368549382, 26.707637907277835, 7.721424517964082, 6.158624552204128, 20.597989798207543, 17.1321470220252, 7.35527493090094, 117.16475375829367, 6.892875625616166, 25.114670227310665, 9.16800015384978, 9.165154017716945, 65.17989578307998, 8.632697844729497, 23.334450079101188, 144.64670376182616, 17.573035330956145, 45.88553551108218, 6.752332352049591, 14.726785270270494, 15.633559831186174, 99.9413075868448, 6.9229445402579115, 5.725547006266379, 24.074206166389335, 5.192569046593825, 14.772426309225041, 34.560082347117756, 23.349605236432062, 49.17651822310635, 7.339383139444811, 59.00774554346377, 13.90344486469157, 49.2253610780664, 12.091037474872866, 17.002396621607254, 33.9795805916899, 21.780637271847922, 5.400942269816485, 120.08254466538553, 63.588239821337055, 11.467858516968066, 16.987698736523928, 30.68158590799578, 5.607613491305376, 57.38039830787672, 105.4687714809039, 34.69098953506974, 18.29096363620792, 50.222888298671165, 44.42732264968683, 100.28553283325593, 10.899137294843358, 13.44270491925938, 10.111377997238794, 20.932251539182708, 17.961657615690136, 20.081817165446502, 20.888422818519597, 88.39261618286511, 5.884030213655361, 5.517486322537998, 19.20600274523518, 12.078315271308064, 29.523987533712983, 53.98725415645819, 44.65424035950587, 43.397001478839584, 10.71254715586545, 18.30259030426168, 157.339170184592, 17.728658215530615, 9.993511034299932, 38.896989918486256, 14.73055256531826, 18.184743971264485, 20.72860364372707, 6.122046131512, 75.31044174652753, 19.765015278377444, 15.088914962567552, 44.27136938268591, 13.531240309778038, 38.063651394111034, 5.298248580499221, 56.083449029082416, 13.97599515562153, 55.79138781116478, 15.766298367305843, 71.00465522778553, 23.147935115673697, 10.351373693816644, 6.928564237611862, 49.61862791944978, 43.46188567201972, 28.5455188127963, 42.174302301286126, 10.062093107330904, 10.944832968387763, 49.96916344085221, 8.73678399926691, 6.628654821934801, 13.570769809883563, 34.4700648055513, 10.71297849190641, 71.93495365575768, 12.510116633232391, 17.77595394973049, 21.53201135021888, 99.27743577222158, 7.0818870773976865, 29.766319115136067, 105.84090449448249, 97.60825495795804, 22.93126588116369, 13.941823991250152, 13.553498706435962, 5.0886412431999855, 39.456306257757085, 57.415934696011206, 23.200227537861274, 35.146780891542626, 13.531255222849246, 24.252117475119203, 68.07117898945366, 127.96663119601865, 101.07788950819887, 58.33551443239658, 16.478337444490727, 76.43391840192669, 31.262517156490574, 19.01827812002101, 23.75661758116352, 12.078264602634123, 26.868020776007675, 12.752408013261444, 103.73241216440962, 7.994746051497886, 30.074935151811435, 15.474663796595395, 27.736641003952123, 43.58096695062533, 5.737414661253361, 40.39961048606947, 72.12563303504629, 48.86295618751202, 12.515532151651485, 62.992390205084604, 11.24589730862929, 15.00879138927012, 20.244463495659517, 5.4369914811644104, 15.847261835347457, 36.79208520692865, 26.826484250435204, 30.375261833389864, 11.168098878980413, 5.535359609943648, 55.234389952463204, 65.62726790118856, 24.83049068268881, 9.42850235545931, 6.363496862581852, 7.308654705248102, 16.639399230745397, 43.2857350118168, 19.401261232821145, 82.75435050248038, 35.48402507767476, 80.21969788003784, 20.0288993181109, 37.83871156089108, 82.10944291193674, 8.76523452943913, 84.729599821622, 62.42768364888984, 15.939723306459877, 64.49906841879493, 27.230509991615047, 9.658484836713484, 19.459275506139562, 8.089322982770096, 77.23426070295926, 38.251898451167165, 9.422723946549572, 23.469992006034847, 84.15756402442987, 42.77058508491239, 18.38293580026384, 17.799374742051455, 7.395562353504167, 55.091895924827696, 93.16550662780664, 40.04737972952886, 32.046403998599665, 45.514331759216276, 21.107232010345072, 18.329350137438198, 45.3459805147792, 5.334922961921749, 17.30628326513778, 39.83342197163594, 7.976674085701261, 21.689302314644102, 46.85728018798965, 10.708124947386679, 23.17934380421234, 61.059536635226195, 19.956115030730015, 16.693726622437495, 85.2602095403972, 18.206408237745546, 8.670395546150633, 62.085645984739905, 31.775977107269053, 25.188023920063333, 9.141365281002894, 49.10391015018132, 107.75327887949244, 33.60660805122938, 5.950364933373112, 12.12657781236199, 160.65988266466357, 27.051148329186166, 48.442406545645156, 27.18137411357181, 21.17281051739178, 40.97279546443785, 32.121969286658306, 19.225716840229776, 50.31229407538554, 49.281197515059866, 26.30511900088273, 32.9968872400938, 59.84628381407937, 7.291698007811031, 22.68952608199448, 11.603972471776252, 53.621315737230226, 81.19177559857317, 76.37794593109895, 24.803287791917825, 67.74229223287492, 40.420395470594386, 127.50567733399441, 20.29301259363914, 16.883141027549456, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)