script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 44898
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([6328901.373766553, 6664454.798208626, 6707701.529829506, 6847078.883982962, 6856280.663708082, 6866455.989699593, 6916629.705244196, 6919293.75, 7042640.039953099, 7246127.555181732, 7299245.3125, 7303771.875, 7376137.5, 7390595.748661925, 7405724.773258182, 7483318.718541588, 7501991.324862887, 7506364.535076704, 7578831.230772206, 7606904.614358609, 7613890.548914417, 7621943.129162725, 7630856.25, 7630925.706569847, 7724802.2610675525, 7729901.5625, 7729930.796741152, 7747930.648708502, 7850342.1875, 7854358.008941725, 7969527.031491847, 8002768.891413107, 8002857.420733493, 8002862.443956185, 8024742.202262779, 8028000.2638079515, 8033564.107990868, 8043791.510917393, 8076195.3125, 8103995.057965878, 8129865.625, 8161527.208624647, 8172248.4375, 8173255.200509882, 8231390.318124211, 8296229.465708676, 8317682.685026663, 8419613.855853455, 8429125.176455628, 8467527.084220849, 8469953.186502421, 8534035.087909415, 8537134.022840684, 8537150.867536152, 8577120.3125, 8583195.054872045, 8597840.779212594, 8597878.24516298, 8603624.95999141, 8611543.75, 8639998.810812248, 8691487.398037478, 8757557.326646036, 8761981.25, 8792099.133816047, 8802819.858216235, 8813989.060324058, 8834917.1875, 8836623.4375, 8837140.60178216, 8852484.375, 8863495.840219665, 8891275.45697255, 8894242.1875, 8895790.603171967, 8917289.885885803, 8918479.931602739, 8925542.1875, 8937426.360252384, 8940153.125, 8943348.445187131, 8958189.612654004, 8960219.36170195, 8987563.607806645, 8997526.43098672, 9006775.834355658, 9006830.389320403, 9006874.37706514, 9011104.64247762, 9018384.746184692, 9022051.493636359, 9022388.037499143, 9031173.4375, 9083105.611243805, 9089780.579635173, 9091527.347723246, 9096843.259244993, 9106768.65400412, 9121451.048445577, 9135885.11818244, 9137061.235309368, 9137732.155491859, 9140893.287193943, 9141698.301704347, 9142523.561311625, 9155825.063957885, 9165280.61389258, 9167103.125, 9171634.375, 9194889.416999668, 9197370.3125, 9198071.875, 9199441.461331213, 9248658.450639915, 9251917.757476272, 9252090.625, 9253311.131937744, 9257907.64280771, 9265526.349156287, 9272950.888668386, 9276696.875, 9281113.435512288, 9281700.991413258, 9285355.132660035, 9300359.375, 9300374.27549448, 9308820.3125, 9339012.357911363, 9353376.602450393, 9375739.299322315, 9406960.502760697, 9407258.776638698, 9410070.964176105, 9416813.054176832, 9503077.266165107, 9517496.875, 9534671.875, 9557269.639062997, 9558608.326361481, 9564227.201728595, 9566339.646391306, 9578195.940520857, 9624857.291777372, 9653295.3125, 9684026.550099451, 9780520.713720623, 9864575.465513125, 9919441.674404982, 10126453.125, 10202382.8125, 10202552.34386656, 10258107.698638054, 10264802.022973241, 10342823.327318856, 10883863.35517414, 15279520.269276781, 15400517.438999893, 15539145.110868962, 15619095.3125, 15626034.00022147, 15627208.719955392, 15627944.612093255, 15628000.0, 15640981.242257234, 15642229.268772077, 15644506.526018133, 15647618.75, 15652251.59038627, 15653312.823285667, 15653587.339561103, 15654307.3668837, 15656453.125, 15659446.10652946, 15660654.85315224, 15661914.546352243, 15663940.625, 15671767.05857071, 15671790.625, 15675062.440692749, 15676105.867847716, 15676445.905954335, 15676468.75, 15676636.969619501, 15676639.286713518, 15677179.6875, 15681142.138118593, 15681167.16245974, 15682143.141379789, 15682197.136289012, 15685908.934956433, 15686959.6487148, 15688187.213869393, 15689783.73715474, 15690533.409511944, 15690562.055931158, 15690786.220741868, 15690837.896797564, 15691140.522406727, 15691166.76727874, 15691881.25, 15692013.780134633, 15692224.016032947, 15692251.309440902, 15692715.894570371, 15692827.153895505, 15692903.942246601, 15692917.885999292, 15693055.371566067, 15693076.452605601, 15694377.161347013, 15694715.542423492, 15695059.375, 15695124.06302642, 15695651.773120012, 15695813.818101937, 15695874.942240153, 15696068.7270755, 15696414.680954287, 15696550.14684558, 15697050.102335814, 15697342.99681492, 15697365.013705822, 15697987.92584808, 15698014.69255413, 15698187.085794652, 15698264.251881547, 15698439.0625, 15698791.477898201, 15698975.859341247, 15699045.113290953, 15699292.059861565, 15699430.886109786, 15699510.469179595, 15699652.319565771, 15699767.01843862, 15699939.383853355, 15700266.937338047, 15700606.246022975, 15700976.199055763, 15701071.04365663, 15701402.783055123, 15701584.79593658, 15701710.9375, 15701731.550632743, 15701760.881224819, 15701800.0, 15702228.715354167, 15706907.796477202, 15707880.84801628, 15708154.724705536, 15708810.240653142, 15710275.834954826, 15710941.576249424, 15712247.118792199, 15716473.29647453, 15717354.234628761, 15717367.49875598, 15717439.04297423, 15717465.867874352, 15717767.1875, 15717869.322449407, 15717923.4375, 15722263.41818918, 15723534.7548344, 15723859.572902592, 15724087.171747249, 15724571.87301382, 15725270.89903977, 15726957.8125, 15726971.198154807, 15726982.83841297, 15727342.858080462, 15727559.584163418, 15727562.074623497, 15727739.259835107, 15729060.52691166, 15730902.57992769, 15732043.509388374, 15732071.875, 15732156.007860593, 15732356.25, 15732381.355761888, 15732838.64989057, 15732962.3205997, 15733150.0, 15733365.625, 15733459.342763277, 15733691.159017526, 15733812.5, 15733820.807918277, 15734255.42181942, 15735384.26939879, 15735716.316566596, 15735801.267892517, 15736292.056358509, 15736339.0625, 15736754.738443522, 15736869.309318798, 15736995.983479312, 15737096.842266183, 15737574.689116007, 15737695.074825468, 15738235.9375, 15738467.05559127, 15738530.882899573, 15739210.070141714, 15739345.356750717, 15739748.29965658, 15739822.881688757, 15740412.132886043, 15740954.05342705, 15741534.109597437, 15741536.934924476, 15742119.70037204, 15742334.375, 15742471.875, 15742545.347719764, 15742846.875, 15743022.049083592, 15743317.817441361, 15743444.361109773, 15743493.431837771, 15743497.619883604, 15743623.708854387, 15743923.157880085, 15744220.212176336, 15744491.789380299, 15744606.25, 15744878.04596852, 15745226.41377025, 15745423.4375, 15745426.294827666, 15745456.916123424, 15745641.563089583, 15746707.8125, 15746746.536873072, 15746948.67669272, 15747409.375, 15747674.14011647, 15747800.0, 15747999.670337282, 15748267.816831475, 15748589.979381757, 15748817.179230953, 15748880.293147406, 15749451.751398839, 15750145.3125, 15750517.103773726, 15750595.3125, 15750638.660376122, 15751243.52752853, 15751467.589448296, 15751485.55485488, 15751882.500136748, 15752451.5625, 15752483.811065417, 15752801.758666912, 15753065.952724077, 15753109.3761697, 15753152.214945968, 15753412.161940861, 15753672.160439068, 15753809.810347715, 15754396.5477139, 15754707.889139019, 15754894.964508172, 15755199.418523856, 15755388.517785853, 15755548.680164449, 15756389.0625, 15756744.128926588, 15756876.671467317, 15757517.014747264, 15757551.874270795, 15758003.211067595, 15758073.415193995, 15758565.625, 15758835.294137329, 15758962.681094248, 15759231.25, 15759236.227119427, 15759274.90161274, 15759317.755048918, 15759624.288820632, 15759720.181556657, 15759782.8125, 15759892.1875, 15760007.561835004, 15760348.600145921, 15760436.441082211, 15760596.475541418, 15760828.902459893, 15760895.3125, 15760945.243997125, 15761080.079888713, 15761265.598080311, 15761311.074284561, 15761322.856735261, 15761524.855729379, 15761559.114849925, 15761622.005242985, 15761943.153324736, 15762014.0625, 15762432.688489763, 15762470.210994968, 15762546.485168787, 15762745.377126582, 15763189.336224917, 15763299.632684663, 15764521.40641539, 15764545.3125, 15764703.894266065, 15764937.277944824, 15765371.342637857, 15765414.870245177, 15766306.25, 15766352.84830381, 15767370.3125, 15767596.875, 15767741.19354588, 15768285.14958841, 15768378.125, 15768644.870876195, 15768651.894053312, 15769846.875, 15770036.87238983, 15770060.9375, 15770089.0625, 15770175.255799703, 15770235.975376425, 15770473.277246483, 15770902.987773353, 15771075.847375099, 15771197.8613039, 15771370.271345628, 15771404.52337403, 15771409.670784004, 15771492.74347292, 15771512.80312551, 15771528.878633378, 15771584.418058584, 15771598.110805526, 15771657.532344135, 15771681.046461204, 15771815.904476665, 15771878.65560646, 15771902.942059675, 15772021.673145168, 15772073.154319372, 15772197.541126063, 15772229.68707892, 15772247.459846154, 15772512.50759251, 15772617.1875, 15772689.429911852, 15772814.444271702, 15772846.875, 15772890.466972059, 15772902.919099303, 15772910.515915949, 15772916.237810124, 15772926.832171507, 15772931.533442551, 15773006.501788493, 15773062.068639563, 15773081.638021125, 15773105.850201907, 15773113.286630789, 15773125.0, 15773201.5625, 15773216.372340266, 15773227.09328615, 15773355.838576278, 15773368.75, 15773370.3125, 15773429.6875, 15773457.327683672, 15773480.416308694, 15773756.385005051, 15773770.3125, 15773929.6875, 15773960.1264773, 15774147.951125592, 15774173.4375, 15774215.592660852, 15774232.647409784, 15774251.5625, 15774315.375454184, 15774372.46969219, 15774410.511662565, 15774498.307234785, 15774521.355531454, 15774523.447637603, 15774589.296094365, 15774732.73434023, 15774751.945950573, 15774795.381061774, 15774874.373818906, 15774967.1875, 15775127.379957613, 15775248.81590243, 15775365.625, 15775452.360384097, 15775492.1875, 15775688.61370333, 15775727.214650411, 15775746.220932126, 15775753.120472891, 15775850.9454013, 15775872.534965746, 15775882.65752794, 15776174.916109372, 15776212.559515825, 15776404.716788528, 15776561.29473763, 15776563.972270614, 15776817.14063698, 15776880.920579169, 15777292.1875, 15777308.804429375, 15777720.3125, 15777948.238361174, 15777981.143315658, 15778120.3125, 15778151.26801739, 15778523.4375, 15778538.990825234, 15778743.577100897, 15778824.051569622, 15779025.317347113, 15779107.8125, 15779496.514914073, 15779581.25, 15779618.592116013, 15779671.45260557, 15780068.75, 15780322.658676827, 15780364.0625, 15780995.026764233, 15781182.957608609, 15781887.214589175, 15781890.729803301, 15782107.522474244, 15782121.442365134, 15782237.5, 15782247.79523707, 15782826.98227707, 15782831.25, 15783307.62277931, 15783382.46898035, 15783620.3125, 15783662.5, 15783768.428750265, 15784047.451014297, 15784201.757078115, 15784482.11561861, 15784484.375, 15784748.904501194, 15784757.196407225, 15784794.678858325, 15784820.01086453, 15784986.509200122, 15785110.295290353, 15785400.209774278, 15785520.279298658, 15785760.615867158, 15785786.632712232, 15786068.948827095, 15786089.989964599, 15786090.036968049, 15786142.1875, 15786204.039194293, 15786315.625, 15786354.444718974, 15786619.075154264, 15786696.805802295, 15786851.158578604, 15786889.189615091, 15786917.1875, 15786998.007526128, 15787084.375, 15787384.636876266, 15787490.625, 15787512.5, 15787677.938499091, 15787853.125, 15788065.315021401, 15788134.375, 15788140.625, 15788207.320234304, 15788222.231270734, 15788287.892832812, 15788348.338869287, 15788394.27628679, 15788433.485241057, 15788547.752712106, 15788612.546965843, 15788635.876240669, 15788806.757138433, 15788831.712968005, 15788872.740861606, 15788882.502433356, 15788940.472281316, 15789075.0, 15789142.1875, 15789210.606134554, 15789325.420905665, 15789375.392915556, 15789379.479265418, 15789386.957913464, 15789450.0, 15789567.1875, 15789612.5, 15789636.125694428, 15789906.618787507, 15790184.375, 15790479.6875, 15790520.129434269, 15790523.914097136, 15790780.422173752, 15790838.758250654, 15791262.892877555, 15791437.430639042, 15791522.543128487, 15791677.632428339, 15792337.5, 15792718.828715784, 15793205.033264084, 15793259.024413396, 15793421.827068234, 15793673.4375, 15793704.6875, 15794478.125, 15794916.363250792, 15795170.283382982, 15795277.89101169, 15795296.020520145, 15795838.490564635, 15795979.966057722, 15795984.712408239, 15796126.5625, 15796484.375, 15796512.5, 15796525.1595654, 15797024.612791574, 15797333.856486749, 15797530.399613049, 15797601.5625, 15798095.298929434, 15799850.486831384, 15801201.220955603, 15802017.552554648, 15802489.0625, 15803145.964206178, 15804671.28872291, 15805251.5625, 15805679.6875, 15805749.156713134, 15806136.4376946, 15806456.70705841, 15806615.625, 15807730.16007519, 15808195.840321073, 15808681.591404753, 15809478.333372932, 15809479.6875, 15809500.713353917, 15809954.829573918, 15810220.816189367, 15811540.417915676, 15812473.456731495, 15812654.419223804, 15812668.47737448, 15813553.575507583, 15813605.392937476, 15814794.376679646, 15814950.486625096, 15815899.881795228, 15816858.226736618, 15817044.568444654, 15817234.375, 15817397.890617605, 15822345.721854506, 15823538.552725347, 15823592.679585053, 15823923.4375, 15824066.682269579, 15824547.717815908, 15824568.75, 15825465.625, 15825875.0, 15826635.9375, 15827334.591227224, 15827354.719482627, 15827838.19099912, 15827993.018928938, 15828107.8125, 15828141.76136868, 15828289.551523134, 15828410.9375, 15828439.0625, 15828480.175520347, 15828509.375, 15828514.938976308, 15828610.67686606, 15829577.735777423, 15829652.899882501, 15830349.694973202, 15830421.296666456, 15830484.262295535, 15830515.03398596, 15831137.394006532, 15831262.236433513, 15831327.823969744, 15831434.375, 15833284.693047406, 15833306.691703254, 15833585.811758144, 15833838.189216856, 15833842.1875, 15833861.964220122, 15834028.672379939, 15834071.613770109, 15834283.37934792, 15834373.4375, 15834453.464072963, 15834517.1875, 15835119.894329123, 15835462.209115898, 15835651.642307982, 15836656.144868193, 15836892.015916197, 15837932.473183734, 15838581.82048747, 15838728.896761134, 15839420.706806071, 15840543.733316632, 15840715.763979392, 15841328.539275622, 15841460.489871223, 15841514.529299324, 15841527.39422974, 15841665.786360392, 15841673.4375, 15842036.98351719, 15842374.795817677, 15842513.653270606, 15844000.369926007, 15844178.125, 15844288.455279127, 15844332.254990006, 15844417.822726518, 15844783.100692824, 15844824.486949347, 15845309.511576667, 15845423.4375, 15845546.123071479, 15845550.487093763, 15845615.625, 15845618.405167988, 15845656.74450514, 15845691.09363408, 15845759.23741861, 15845904.6875, 15845915.448358476, 15845920.944631567, 15845990.157916343, 15846021.239871051, 15846141.057568012, 15846376.49826206, 15846749.795904426, 15846800.30441431, 15846814.976488337, 15847157.8125, 15847228.125, 15847295.3125, 15847386.673172915, 15847458.917770453, 15847503.50731279, 15847703.849541642, 15847739.0625, 15847804.301546605, 15847957.8125, 15847980.758024907, 15847991.140818315, 15848112.273415603, 15848132.636184718, 15848168.068941973, 15849001.554259984, 15849163.254135696, 15849227.647199495, 15849303.681213263, 15849412.428078061, 15849469.97205364, 15849475.083507547, 15849506.986016506, 15849762.5, 15849768.555948868, 15849842.82321005, 15850156.561958687, 15850510.4258589, 15850523.117437128, 15850533.671501815, 15850539.0625, 15850737.302687459, 15850989.329982078, 15851254.067481434, 15851382.707205571, 15851587.033005465, 15851630.095182301, 15851647.606899094, 15852212.388044858, 15852221.057396315, 15852340.625, 15852349.216542702, 15852352.713023689, 15852480.978493849, 15852732.669975761, 15852774.22927292, 15852898.555854727, 15853014.0625, 15853105.230617626, 15853226.5625, 15853239.0625, 15853506.25, 15853507.09014523, 15853511.750331605, 15853824.439859206, 15854107.43123141, 15854246.875, 15854469.074119426, 15854495.64214733, 15854538.691043625, 15854569.164309079, 15854732.72348586, 15854796.164626801, 15854902.66061914, 15854977.655022195, 15854979.6875, 15855032.566039972, 15855143.07104556, 15855210.789871324, 15855279.6875, 15855520.13733951, 15855624.952730142, 15855632.384568842, 15855727.28658069, 15855899.73177343, 15855913.667901067, 15855946.644137153, 15855981.385386877, 15856118.75, 15856189.114579972, 15856298.637120975, 15856347.054235991, 15856379.6875, 15856479.593073478, 15856482.767859196, 15856673.4375, 15856817.354296815, 15856987.286773667, 15857514.739799745, 15857769.883484462, 15858413.849248195, 15858538.25665772, 15858664.0625, 15859096.875, 15859173.501469987, 15859221.97629382, 15859352.397763608, 15859539.0625, 15859661.02361766, 15859675.0, 15859702.604631916, 15859801.553359807, 15859881.25, 15859891.96813359, 15859969.39895916, 15859969.893924348, 15859998.746947277, 15860173.64239853, 15860211.332851743, 15860298.028921163, 15860306.76374073, 15860638.402685957, 15860671.875, 15861173.4375, 15861258.892926823, 15861728.523551933, 15861809.300411886, 15861917.1875, 15861932.250039889, 15862159.375, 15862249.147250412, 15862423.04629312, 15862726.057895586, 15863658.091381202, 15863930.524685571, 15865905.631025486, 15866056.391844535, 15866571.875, 15867043.908818234, 15867823.341244994, 15868098.306277893, 15868187.5, 15868920.172128506, 15868965.164003149, 15869584.965569854, 15869682.207194798, 15869725.922674468, 15870043.389068175, 15870283.17400619, 15870502.360744616, 15870793.74600424, 15871447.324967684, 15872398.4375, 15872926.505890245, 15873084.375, 15873434.375, 15873581.13638314, 15874360.885858169, 15874384.087568061, 15874470.3125, 15874812.538707856, 15875049.227241848, 15875128.933919158, 15875169.65838044, 15875296.708527489, 15875387.5, 15875617.963650733, 15875651.947644696, 15875656.809647465, 15875968.497799704, 15875997.127340442, 15876110.9375, 15876146.730534341, 15876364.0625, 15876414.0625, 15876509.169328647, 15876532.526546715, 15876557.133140732, 15876677.809860162, 15877015.837192612, 15877136.617438463, 15877154.6875, 15877180.96467558, 15877229.828167202, 15877929.192487063, 15878170.251348576], [12.325403941430316, 94.34111964579648, 27.894312504810713, 21.746512419152065, 8.880419239032292, 14.034243741002028, 50.86425742555548, 33.18582995050706, 5.229060842637838, 55.82611281819899, 54.85739466068958, 50.408307735675294, 107.801140300553, 20.901307413578003, 49.1637818661095, 34.51837110956585, 8.694936191009223, 115.36668681756778, 5.244607464626474, 32.08621878018963, 20.81823866469608, 20.366815743010104, 53.23420970045039, 5.654366922539232, 18.49672348019718, 62.36249511079574, 8.060598465193806, 18.965638513512076, 74.20520872258297, 15.747131865604857, 9.762160427315372, 15.509371252585249, 6.218938644355477, 6.260143507709066, 76.83449520412933, 8.431190571007107, 19.288034796050383, 6.954274502883351, 30.08175992532952, 32.61085987481787, 43.60821066814032, 14.57515164428809, 108.61528475367687, 42.20044077231353, 23.66330852147061, 6.452876603087523, 141.22079593611505, 111.18471501268937, 74.808925619376, 6.144087670250583, 74.65692147473496, 24.868211356825753, 52.058828121149105, 7.369839129499706, 51.10626464130465, 14.042769073409048, 5.716643305109311, 55.80084871655123, 27.757101687549344, 63.178611365401764, 8.494375954077116, 7.09490429743069, 66.77913615342811, 33.21369479645233, 18.481440100239883, 45.74950144659585, 6.087872967200494, 58.81157994381489, 56.75940006397241, 73.62287263739609, 74.17534315403275, 17.423717172341195, 24.029924689761426, 58.90683087869378, 34.74168594758012, 65.59576288598144, 8.420023728493994, 57.60968416580067, 14.222872992104213, 36.213692280413284, 7.123473837331906, 17.555247653721423, 43.6363776317319, 6.211410975171249, 26.17125251594807, 36.169422517964406, 5.5681399962728, 20.34856909905747, 27.6642671638374, 11.762087738582478, 32.01529473946033, 78.8847873799582, 70.86078752759325, 5.88564435980176, 10.21994122656323, 8.750593187870885, 6.998158056105888, 7.096443845798262, 71.39208508339132, 12.529044571221455, 81.90157006845843, 10.235652267400274, 74.1506130277834, 6.074090595487571, 11.326908788821274, 22.973946552524566, 20.23492526362652, 54.41075573794583, 74.17539801523282, 25.168361445245637, 58.69419671943372, 74.41561358842056, 6.6267039229937215, 18.097665502089793, 12.15313563743776, 34.394801141632875, 88.04841835503944, 31.452411364711324, 6.066190823044714, 16.69256030919604, 64.02905027585841, 12.991210596847376, 146.0907499286139, 22.981940425464305, 42.92312724549149, 5.878700539739593, 52.93798450880364, 5.927126375468788, 17.039216076448874, 84.33715162083503, 6.421035148095853, 20.754006544465966, 18.707285422480926, 18.584721569121143, 55.22596162676712, 71.65350987689584, 55.065618118493525, 147.32691916641937, 17.34376774785152, 41.89033215413009, 17.758100147944, 7.847355613211117, 14.021785050704409, 38.36517509135233, 73.47290236239375, 9.695378528388083, 41.48303803503546, 8.932223752449241, 56.60119173657242, 39.50888271352647, 23.076755219087964, 35.94227459302711, 8.546080052910362, 14.537547247169313, 27.001745211366092, 70.22137945546186, 7.696806248613502, 7.069438846246145, 48.354817179154104, 22.84034148269626, 6.639417941867912, 16.198172914994096, 32.962099775551955, 57.118096133109376, 44.74615924329832, 5.473739586333053, 146.2470858879594, 6.0910039519375525, 6.3089258870719105, 80.78731917355172, 20.018777994691938, 55.64997559507383, 19.176570088818345, 54.971363196678624, 18.21755128108622, 37.865057603272575, 10.931989710332381, 63.93071549330831, 11.03625407917968, 39.110742413901455, 12.202056314000348, 76.14179787039411, 12.614443067896364, 7.6863961537242265, 39.94278221461681, 33.52415587075944, 5.812129821259618, 20.473922567960305, 5.962487794662908, 58.41298202164814, 9.574089191614679, 16.274943173561923, 88.79588331522561, 78.89182984913462, 8.982170391772332, 63.08509304161808, 7.229816112556437, 26.648740188051466, 5.680525946578212, 64.74877221621597, 23.978643942047142, 21.70433367822145, 49.71305728249783, 16.079211472334435, 7.832121523472289, 15.626808132327671, 10.001224648730128, 45.63191957446186, 5.607993310820249, 12.213379510476639, 26.99164703714215, 74.65571481922882, 96.6486372360358, 8.401188265583627, 24.487948704954096, 43.82363199081698, 18.207434129598262, 12.254825788923199, 5.20717931023736, 11.291522648610346, 6.9366030154001885, 40.4682291446404, 16.857958748322368, 37.99102790180757, 27.894876012203817, 15.716062837547353, 43.684232431640574, 12.786452678462432, 8.80008577343106, 8.183968653324403, 9.225760259816926, 30.71426433303995, 86.85073270798011, 40.15355575976963, 47.97490233319692, 21.131784745660873, 64.36049112388855, 61.370364868442834, 21.108508232453563, 12.501780884280635, 10.632220099559097, 6.850557331826633, 51.70438870535374, 13.514775995594581, 5.6109384299749125, 87.33259774604714, 8.625556421806369, 28.21163947725407, 18.710673632879896, 15.085241460311423, 13.425948208256855, 55.074908023829536, 7.396171618022041, 15.722452699746274, 63.27164532923689, 16.588449885144332, 21.095414526837683, 51.82243233579328, 85.223695365478, 39.185922903653776, 8.614422323525764, 42.09952872016018, 52.91549206840082, 21.84770897360457, 15.753581753791316, 23.396437979945393, 39.79671543494391, 7.830111729720994, 100.1000540548736, 46.36273411288269, 5.941665364492867, 47.20666949814684, 6.5203870303895535, 5.382457521138361, 40.08408713507137, 38.759411452732905, 43.844140837157425, 42.781968774373176, 31.078416023170547, 11.205787674652589, 82.10096518887269, 8.343309213662017, 109.50983323474249, 25.424006249452432, 57.97872372314912, 99.56901574764193, 89.01173929749271, 7.269279646908192, 51.70643802787745, 17.2388696684456, 38.89240924594601, 58.47034459313542, 5.567612986005943, 55.67796169041033, 31.25553188254581, 55.00420433482193, 15.139303752264196, 85.9564477447067, 20.227572386868278, 27.893121584259625, 100.17521647448389, 6.237629762840208, 31.326252036287002, 10.927600131015208, 40.20784753934613, 12.421206276385014, 13.189018377383029, 41.566086348777326, 6.657394404360319, 6.0507368649076865, 7.977504298608783, 14.018008983959785, 8.00877120495023, 13.029097869329789, 48.890993585760185, 49.90785800869793, 34.13285864645425, 44.899322718165145, 5.250043797812905, 37.765363006576024, 5.080180232029157, 9.076127787182932, 6.007010206503414, 9.571895595473253, 7.505140767889578, 10.974433557620054, 21.60659888065298, 73.02553380108989, 53.91984445993749, 14.403386190787556, 75.49248950274699, 10.733597389493509, 8.673322344565731, 20.335758261935183, 31.492680866031197, 10.637352955518251, 5.4721274758766025, 59.16318678979456, 18.524291065380936, 65.16717996101882, 75.8087179887709, 146.8994856867523, 61.99042561148636, 105.75433503823112, 29.74114261032846, 32.12424161977002, 33.79631787269963, 100.56190916558468, 89.23390233894291, 13.60234453986505, 12.917365838355556, 77.91273734372982, 7.470466167838543, 9.080546889218699, 36.16081804478201, 13.154289752398894, 25.32913571235988, 16.357413057833927, 43.635248124121496, 85.34473166655151, 7.035334016632655, 11.605238077541594, 16.908639955221748, 31.475484846964083, 21.74243942739351, 6.052643594317526, 19.93492160338546, 35.40347051675363, 6.812939333255834, 29.32034013664881, 34.68931127066775, 18.885644089552493, 20.672241575535608, 47.52012528605084, 6.097095454399039, 5.202853999971738, 67.3743795313229, 42.42706344887816, 5.296714100848694, 31.91405587796172, 16.254016457545923, 68.39546861251351, 17.65906643172743, 26.004886309172694, 67.49214186423835, 50.69757013969276, 32.964846753969404, 8.158325214622993, 18.953200066909186, 12.018028657647946, 10.555898167861466, 15.34118492970515, 56.32299705706231, 11.022294374700206, 26.686348553208553, 28.00297235722459, 44.03918860022577, 50.56173573091367, 15.460750517248156, 10.744047164549285, 15.2062897216293, 74.15107407915134, 36.65870049584703, 6.738998875337469, 86.4350671309794, 56.851667688389036, 47.029142072101564, 6.30241225528771, 10.598323296847477, 144.66002482967923, 28.6993901213755, 12.58880896337504, 61.697436205150595, 59.643203474838074, 23.165881334928144, 41.14841818742901, 10.72110650663746, 52.00989467781965, 73.648357258601, 66.7041454372416, 15.571735516362882, 33.49773822923123, 79.05525826254832, 8.470051837854127, 31.97196181681638, 5.320866101544456, 70.84546146166261, 41.145048882601586, 60.825875688969695, 11.187430732564192, 10.886130388021783, 26.07932854698333, 19.58569538321343, 10.332527874300396, 9.296845579469627, 15.644354382378943, 5.35216031905927, 12.124245835706429, 9.601576299135363, 13.390009880907012, 6.772133434697117, 23.41564226862865, 11.646909771585488, 14.218597839512547, 25.399840667281794, 12.06859667150522, 20.116015774533256, 25.09095344517775, 44.307790467034444, 5.312116656360607, 28.516887945186827, 25.91534646796125, 5.707241385476825, 51.450645618355686, 73.95500891027588, 5.842778655370088, 68.06809864839504, 25.751090732887626, 14.210787055143863, 55.12584184386438, 26.629385435960266, 5.724138290994436, 71.93257353439655, 19.97209387568351, 5.23323068430134, 62.54210273621909, 9.014779683688463, 24.608169374999896, 38.1453442157997, 57.76172478555449, 12.53851317274431, 70.63720574129151, 22.424673190089198, 32.65222238715863, 38.70999205856704, 51.67313398731209, 52.2738127553566, 6.005491122665434, 78.78870292163607, 52.62767730516856, 35.767547106124766, 18.865633415477227, 6.9992103002042, 35.180504981661144, 17.249541373375695, 84.29928405067623, 76.40644871298707, 14.06864318641104, 23.145926676818625, 13.533855107039122, 82.31356823203596, 13.273040657116253, 5.707403495353792, 39.54565459228376, 8.24567312781026, 11.785080160626904, 43.40283061997212, 95.43781101301796, 28.784532792706212, 19.353512575850026, 6.548091547473416, 55.27994496017462, 6.619889468808272, 63.35038093594301, 32.71194820755709, 57.23543301306957, 12.923008137465144, 12.110150586373582, 159.80552363849785, 12.344029016342363, 81.9556568193384, 20.07920161847022, 15.80884592815082, 15.054331187160086, 16.503706901799344, 103.82868933316176, 11.055238518585098, 123.19365480638017, 34.47938257682713, 8.006261375642326, 38.76582818016665, 33.26319902875171, 44.75523040708941, 50.66283793898266, 89.32415692067636, 53.393124281688415, 27.18287538664681, 5.285776236218295, 6.154373021561515, 13.987445523852712, 46.60461468148658, 83.72806821575381, 65.14513246162727, 5.525466685341276, 6.68201029432924, 63.982124756028135, 55.51831138723951, 52.581473018885276, 50.90414712312377, 15.525027513884757, 35.412867940196904, 9.421620839769068, 19.03482891324961, 7.453913402508244, 40.929872549116695, 8.841587430879343, 11.85401724873025, 41.26101537326564, 14.264542965486195, 10.63010540809899, 73.71313968297108, 40.9632026020525, 59.87802509251533, 17.710182884465983, 11.446103776905083, 47.431397997951464, 55.17616193047736, 27.365822617149746, 86.32898421226234, 10.263340234733455, 23.729873240779376, 6.8832741237907324, 66.62428819974558, 22.697576016361715, 7.59127330312033, 89.2692316884246, 18.473959373902602, 49.38508751852745, 51.67278516585564, 20.657694746041237, 39.29423234779924, 5.3742550728930025, 85.37891050027635, 190.42225039414387, 5.301237831309454, 49.456511070482875, 14.094518666244188, 9.441249839749718, 57.07053758783119, 45.62754641716246, 42.054389900594934, 6.115762099507276, 70.12464909103593, 76.66379536093959, 71.76181463483361, 41.07534341613498, 10.67545547873046, 73.95759876326576, 71.47408005327381, 32.81484161874408, 16.498857760986358, 9.687227312211162, 48.797547307785294, 17.415405221188067, 5.053066107599289, 32.3279345406743, 5.535364292292483, 8.25444587274733, 8.574294005169332, 66.38188229038906, 50.649701156620736, 75.23690962961268, 5.03897969438854, 35.10431821132612, 30.61809298278994, 10.646463664553123, 9.714606197262253, 11.802919849103407, 8.179445857568679, 34.06293035409414, 36.794440411459185, 44.08011005810046, 49.982916760195536, 5.34841204069476, 6.839435391795816, 45.98758040229156, 44.203458571904825, 13.502598880485223, 48.90323852850639, 89.21127923608239, 46.74866512709326, 16.685185105575002, 27.223878120927132, 71.26355459153399, 13.346436651619703, 80.33828053809873, 58.65874789905773, 18.284896589383912, 8.109492461200349, 5.340281914354636, 37.1446225991562, 75.67038746859504, 52.65853734855256, 15.320768502683546, 6.263526637857446, 24.63223474141746, 18.561250351967313, 57.79584637769817, 9.578595607883562, 14.581567231380983, 34.17510376977913, 80.53441844422096, 31.61373879187316, 15.586698649202562, 177.9291681601248, 57.5274218421618, 5.868618918187569, 59.32706281226834, 28.259106069936315, 47.65526791938738, 39.4014308766329, 9.660408838073165, 55.116324269940066, 18.18528530351038, 84.2736751492736, 43.4262316644184, 69.73679941781023, 26.214645171120306, 16.66909538050243, 76.24063489496768, 72.72337670636932, 36.07860877035412, 12.066808208970572, 129.09238253371976, 15.800023738702233, 64.80314050447457, 39.97910840609724, 7.655444577242081, 41.55263553992225, 25.014892777455973, 11.15790051039129, 46.16088083297147, 108.10549390333784, 39.337760503067386, 18.54356178283885, 18.024506895271042, 17.189450659265074, 45.146055723341135, 11.843420739383458, 75.17457545133448, 42.18053934435084, 21.037833506615478, 9.703306731995006, 10.414567246338104, 71.61985568780214, 30.401243193042735, 13.311743931477006, 10.162646478394636, 44.19919159361096, 48.5000401396403, 52.837582777322716, 37.303615333935475, 20.02447845859487, 6.769908493313888, 12.412040090342026, 6.625832771158506, 100.96079376463189, 22.263048953756766, 5.983154881280165, 30.638527696719425, 44.6576817984673, 19.96743816647168, 35.75222957932212, 7.9543113923488455, 6.061408555260902, 27.506342349241205, 60.61136292621538, 9.086149447272087, 58.26651033222735, 14.169000001202388, 10.314526968714727, 26.591520269968424, 32.532309915862406, 7.4978718012035355, 81.14784611537253, 16.310210184822544, 8.534837304805489, 26.264903122755747, 8.6880930069611, 61.40065062327113, 54.239317383239765, 181.10012487772568, 5.0371690321798726, 55.546748741121206, 40.70683761544447, 108.8535481976646, 28.87863382170011, 10.531463940724558, 6.058363322421835, 54.15242236672362, 36.69339712903146, 20.929650992311863, 82.51976838315444, 17.676765933721544, 55.28684982750511, 21.24782680846751, 28.198885347809973, 25.616072324953976, 13.588214065194508, 88.65327239506948, 17.079403945564632, 19.463386930555163, 156.82348651168704, 74.57059709252599, 13.28112905722977, 9.164523515971034, 16.125993007179662, 11.759736361083169, 43.480614355466564, 89.98497694894962, 44.770082651750556, 65.38836920474633, 29.467227272189838, 10.410468352134986, 15.488947401968307, 106.27704205501405, 34.9387971705873, 17.192075086793032, 47.12876444459821, 77.60168835424975, 24.222153475264914, 5.4166968516933585, 14.572126215702196, 82.76436120720398, 61.126156366124285, 116.14894598135051, 27.783728862687198, 38.917684915288355, 15.087317684844848, 41.71099305186935, 48.22377150092522, 5.352462190764045, 5.320180042745152, 94.05023696866108, 63.39680408746046, 46.334605009566175, 7.89291148893744, 5.326494473366832, 64.52304711279164, 18.675455707147368, 78.85206736386026, 12.741533810011251, 30.287681798682, 23.819825896383392, 21.66154130945483, 40.273171788152, 25.470601260185585, 7.956515486224899, 79.71402584343875, 12.554035588901023, 45.40436433379119, 12.124739876177381, 36.8227338839886, 22.25383363521394, 56.72616680091519, 12.512776823862682, 119.9662864801437, 7.534528837499403, 13.131721006501946, 16.301055488011084, 32.71993347181504, 52.26770985326157, 47.07854560118051, 76.96881835836788, 9.169956760148732, 23.03903414738217, 16.624587791505764, 42.50670627257482, 13.417358412117695, 9.701674896772841, 5.36764270193394, 57.37137363271489, 18.8187045532486, 79.09239870031433, 6.010247449944244, 29.88258533719659, 24.121664960992597, 30.336560723674083, 26.84172888226107, 15.412663811028537, 129.31839501103164, 26.28658878029633, 82.60261315885383, 72.65918448309708, 39.367378478068595, 20.803473530647803, 45.42239066949757, 5.032229204830103, 33.420028489858176, 73.07357972187498, 29.228592630925114, 49.85424651108546, 7.474195123840297, 28.32485310642003, 26.880219939271946, 18.794116832801485, 14.896270973574246, 21.79790836519419, 40.5272110342125, 27.345092502978304, 282.85792758661853, 25.913939632199607, 48.482469335148046, 16.16034062680839, 27.62289169491222, 6.0447006508530015, 10.029182640394895, 10.732828803509463, 27.709116873891798, 61.754920390648735, 22.380769563275173, 34.44216644074961, 20.21026770857054, 34.64956061371704, 11.419918567262151, 43.815815265196164, 82.13422861042207, 103.05905279209668, 59.643842246560446, 11.398829138617895, 73.8813333819796, 9.978262832440187, 181.82797909026556, 45.900707548919016, 18.902789373225737, 29.108103334869753, 29.36367654465335, 81.93822123049952, 92.42703391891416, 12.743994024112705, 47.378965734826494, 42.43182598976282, 36.37527987245869, 32.30105165339232, 14.906785357038292, 54.915572674142965, 14.166490861339021, 25.088431203194485, 33.91001244214864, 16.26856874802537, 24.54398427000988, 34.513528010938636, 9.008275551594927, 47.93358983103175, 7.965975387853216, 53.66380768984136, 100.02830893015216, 31.443950721308106, 16.71457975793558, 30.554869710939954, 44.229402575794666, 28.23784577236463, 37.92002228005409, 134.92982582927598, 13.634219046618473, 6.037151002497854, 7.196742876940734, 39.03025387662727, 20.383054581068617, 5.9518541292540545, 55.664471933888365, 15.583494658917141, 98.17898329554271, 14.463878170154304, 33.178034652897914, 10.915163830334173, 13.43415104103584, 17.79899676057992, 13.046604898711877, 46.32520296792154, 5.1943229672323845, 102.14135967001151, 5.083705469146998, 7.601793124145362, 109.46114545841223, 41.08166934927216, 14.73004202368901, 36.38953047622431, 46.5668644267075, 18.940086984935633, 6.479026278506038, 5.6887060459038565, 51.56149891006894, 106.53286509745634, 65.77842121341409, 83.93887549947544, 52.06225557256331, 21.977347879631196, 49.81412408516242, 8.744610274457706, 9.679777803556357, 12.131805969490868, 24.381142559240377, 6.114739478737689, 44.660582522832556, 63.32757571563871, 40.454293826567024, 45.202330203864484, 119.84837594748151, 17.635448101683956, 79.62900653807276, 61.61877806919806, 9.517508905957817, 30.635652254340915, 55.00943937187818, 48.49318454087916, 11.354935297200328, 21.54299351488176, 14.71344133246656])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6328901.373766553, 6664454.798208626, 6707701.529829506, 6847078.883982962, 6856280.663708082, 6866455.989699593, 6916629.705244196, 6919293.75, 7042640.039953099, 7246127.555181732, 7299245.3125, 7303771.875, 7376137.5, 7390595.748661925, 7405724.773258182, 7483318.718541588, 7501991.324862887, 7506364.535076704, 7578831.230772206, 7606904.614358609, 7613890.548914417, 7621943.129162725, 7630856.25, 7630925.706569847, 7724802.2610675525, 7729901.5625, 7729930.796741152, 7747930.648708502, 7850342.1875, 7854358.008941725, 7969527.031491847, 8002768.891413107, 8002857.420733493, 8002862.443956185, 8024742.202262779, 8028000.2638079515, 8033564.107990868, 8043791.510917393, 8076195.3125, 8103995.057965878, 8129865.625, 8161527.208624647, 8172248.4375, 8173255.200509882, 8231390.318124211, 8296229.465708676, 8317682.685026663, 8419613.855853455, 8429125.176455628, 8467527.084220849, 8469953.186502421, 8534035.087909415, 8537134.022840684, 8537150.867536152, 8577120.3125, 8583195.054872045, 8597840.779212594, 8597878.24516298, 8603624.95999141, 8611543.75, 8639998.810812248, 8691487.398037478, 8757557.326646036, 8761981.25, 8792099.133816047, 8802819.858216235, 8813989.060324058, 8834917.1875, 8836623.4375, 8837140.60178216, 8852484.375, 8863495.840219665, 8891275.45697255, 8894242.1875, 8895790.603171967, 8917289.885885803, 8918479.931602739, 8925542.1875, 8937426.360252384, 8940153.125, 8943348.445187131, 8958189.612654004, 8960219.36170195, 8987563.607806645, 8997526.43098672, 9006775.834355658, 9006830.389320403, 9006874.37706514, 9011104.64247762, 9018384.746184692, 9022051.493636359, 9022388.037499143, 9031173.4375, 9083105.611243805, 9089780.579635173, 9091527.347723246, 9096843.259244993, 9106768.65400412, 9121451.048445577, 9135885.11818244, 9137061.235309368, 9137732.155491859, 9140893.287193943, 9141698.301704347, 9142523.561311625, 9155825.063957885, 9165280.61389258, 9167103.125, 9171634.375, 9194889.416999668, 9197370.3125, 9198071.875, 9199441.461331213, 9248658.450639915, 9251917.757476272, 9252090.625, 9253311.131937744, 9257907.64280771, 9265526.349156287, 9272950.888668386, 9276696.875, 9281113.435512288, 9281700.991413258, 9285355.132660035, 9300359.375, 9300374.27549448, 9308820.3125, 9339012.357911363, 9353376.602450393, 9375739.299322315, 9406960.502760697, 9407258.776638698, 9410070.964176105, 9416813.054176832, 9503077.266165107, 9517496.875, 9534671.875, 9557269.639062997, 9558608.326361481, 9564227.201728595, 9566339.646391306, 9578195.940520857, 9624857.291777372, 9653295.3125, 9684026.550099451, 9780520.713720623, 9864575.465513125, 9919441.674404982, 10126453.125, 10202382.8125, 10202552.34386656, 10258107.698638054, 10264802.022973241, 10342823.327318856, 10883863.35517414, 15279520.269276781, 15400517.438999893, 15539145.110868962, 15619095.3125, 15626034.00022147, 15627208.719955392, 15627944.612093255, 15628000.0, 15640981.242257234, 15642229.268772077, 15644506.526018133, 15647618.75, 15652251.59038627, 15653312.823285667, 15653587.339561103, 15654307.3668837, 15656453.125, 15659446.10652946, 15660654.85315224, 15661914.546352243, 15663940.625, 15671767.05857071, 15671790.625, 15675062.440692749, 15676105.867847716, 15676445.905954335, 15676468.75, 15676636.969619501, 15676639.286713518, 15677179.6875, 15681142.138118593, 15681167.16245974, 15682143.141379789, 15682197.136289012, 15685908.934956433, 15686959.6487148, 15688187.213869393, 15689783.73715474, 15690533.409511944, 15690562.055931158, 15690786.220741868, 15690837.896797564, 15691140.522406727, 15691166.76727874, 15691881.25, 15692013.780134633, 15692224.016032947, 15692251.309440902, 15692715.894570371, 15692827.153895505, 15692903.942246601, 15692917.885999292, 15693055.371566067, 15693076.452605601, 15694377.161347013, 15694715.542423492, 15695059.375, 15695124.06302642, 15695651.773120012, 15695813.818101937, 15695874.942240153, 15696068.7270755, 15696414.680954287, 15696550.14684558, 15697050.102335814, 15697342.99681492, 15697365.013705822, 15697987.92584808, 15698014.69255413, 15698187.085794652, 15698264.251881547, 15698439.0625, 15698791.477898201, 15698975.859341247, 15699045.113290953, 15699292.059861565, 15699430.886109786, 15699510.469179595, 15699652.319565771, 15699767.01843862, 15699939.383853355, 15700266.937338047, 15700606.246022975, 15700976.199055763, 15701071.04365663, 15701402.783055123, 15701584.79593658, 15701710.9375, 15701731.550632743, 15701760.881224819, 15701800.0, 15702228.715354167, 15706907.796477202, 15707880.84801628, 15708154.724705536, 15708810.240653142, 15710275.834954826, 15710941.576249424, 15712247.118792199, 15716473.29647453, 15717354.234628761, 15717367.49875598, 15717439.04297423, 15717465.867874352, 15717767.1875, 15717869.322449407, 15717923.4375, 15722263.41818918, 15723534.7548344, 15723859.572902592, 15724087.171747249, 15724571.87301382, 15725270.89903977, 15726957.8125, 15726971.198154807, 15726982.83841297, 15727342.858080462, 15727559.584163418, 15727562.074623497, 15727739.259835107, 15729060.52691166, 15730902.57992769, 15732043.509388374, 15732071.875, 15732156.007860593, 15732356.25, 15732381.355761888, 15732838.64989057, 15732962.3205997, 15733150.0, 15733365.625, 15733459.342763277, 15733691.159017526, 15733812.5, 15733820.807918277, 15734255.42181942, 15735384.26939879, 15735716.316566596, 15735801.267892517, 15736292.056358509, 15736339.0625, 15736754.738443522, 15736869.309318798, 15736995.983479312, 15737096.842266183, 15737574.689116007, 15737695.074825468, 15738235.9375, 15738467.05559127, 15738530.882899573, 15739210.070141714, 15739345.356750717, 15739748.29965658, 15739822.881688757, 15740412.132886043, 15740954.05342705, 15741534.109597437, 15741536.934924476, 15742119.70037204, 15742334.375, 15742471.875, 15742545.347719764, 15742846.875, 15743022.049083592, 15743317.817441361, 15743444.361109773, 15743493.431837771, 15743497.619883604, 15743623.708854387, 15743923.157880085, 15744220.212176336, 15744491.789380299, 15744606.25, 15744878.04596852, 15745226.41377025, 15745423.4375, 15745426.294827666, 15745456.916123424, 15745641.563089583, 15746707.8125, 15746746.536873072, 15746948.67669272, 15747409.375, 15747674.14011647, 15747800.0, 15747999.670337282, 15748267.816831475, 15748589.979381757, 15748817.179230953, 15748880.293147406, 15749451.751398839, 15750145.3125, 15750517.103773726, 15750595.3125, 15750638.660376122, 15751243.52752853, 15751467.589448296, 15751485.55485488, 15751882.500136748, 15752451.5625, 15752483.811065417, 15752801.758666912, 15753065.952724077, 15753109.3761697, 15753152.214945968, 15753412.161940861, 15753672.160439068, 15753809.810347715, 15754396.5477139, 15754707.889139019, 15754894.964508172, 15755199.418523856, 15755388.517785853, 15755548.680164449, 15756389.0625, 15756744.128926588, 15756876.671467317, 15757517.014747264, 15757551.874270795, 15758003.211067595, 15758073.415193995, 15758565.625, 15758835.294137329, 15758962.681094248, 15759231.25, 15759236.227119427, 15759274.90161274, 15759317.755048918, 15759624.288820632, 15759720.181556657, 15759782.8125, 15759892.1875, 15760007.561835004, 15760348.600145921, 15760436.441082211, 15760596.475541418, 15760828.902459893, 15760895.3125, 15760945.243997125, 15761080.079888713, 15761265.598080311, 15761311.074284561, 15761322.856735261, 15761524.855729379, 15761559.114849925, 15761622.005242985, 15761943.153324736, 15762014.0625, 15762432.688489763, 15762470.210994968, 15762546.485168787, 15762745.377126582, 15763189.336224917, 15763299.632684663, 15764521.40641539, 15764545.3125, 15764703.894266065, 15764937.277944824, 15765371.342637857, 15765414.870245177, 15766306.25, 15766352.84830381, 15767370.3125, 15767596.875, 15767741.19354588, 15768285.14958841, 15768378.125, 15768644.870876195, 15768651.894053312, 15769846.875, 15770036.87238983, 15770060.9375, 15770089.0625, 15770175.255799703, 15770235.975376425, 15770473.277246483, 15770902.987773353, 15771075.847375099, 15771197.8613039, 15771370.271345628, 15771404.52337403, 15771409.670784004, 15771492.74347292, 15771512.80312551, 15771528.878633378, 15771584.418058584, 15771598.110805526, 15771657.532344135, 15771681.046461204, 15771815.904476665, 15771878.65560646, 15771902.942059675, 15772021.673145168, 15772073.154319372, 15772197.541126063, 15772229.68707892, 15772247.459846154, 15772512.50759251, 15772617.1875, 15772689.429911852, 15772814.444271702, 15772846.875, 15772890.466972059, 15772902.919099303, 15772910.515915949, 15772916.237810124, 15772926.832171507, 15772931.533442551, 15773006.501788493, 15773062.068639563, 15773081.638021125, 15773105.850201907, 15773113.286630789, 15773125.0, 15773201.5625, 15773216.372340266, 15773227.09328615, 15773355.838576278, 15773368.75, 15773370.3125, 15773429.6875, 15773457.327683672, 15773480.416308694, 15773756.385005051, 15773770.3125, 15773929.6875, 15773960.1264773, 15774147.951125592, 15774173.4375, 15774215.592660852, 15774232.647409784, 15774251.5625, 15774315.375454184, 15774372.46969219, 15774410.511662565, 15774498.307234785, 15774521.355531454, 15774523.447637603, 15774589.296094365, 15774732.73434023, 15774751.945950573, 15774795.381061774, 15774874.373818906, 15774967.1875, 15775127.379957613, 15775248.81590243, 15775365.625, 15775452.360384097, 15775492.1875, 15775688.61370333, 15775727.214650411, 15775746.220932126, 15775753.120472891, 15775850.9454013, 15775872.534965746, 15775882.65752794, 15776174.916109372, 15776212.559515825, 15776404.716788528, 15776561.29473763, 15776563.972270614, 15776817.14063698, 15776880.920579169, 15777292.1875, 15777308.804429375, 15777720.3125, 15777948.238361174, 15777981.143315658, 15778120.3125, 15778151.26801739, 15778523.4375, 15778538.990825234, 15778743.577100897, 15778824.051569622, 15779025.317347113, 15779107.8125, 15779496.514914073, 15779581.25, 15779618.592116013, 15779671.45260557, 15780068.75, 15780322.658676827, 15780364.0625, 15780995.026764233, 15781182.957608609, 15781887.214589175, 15781890.729803301, 15782107.522474244, 15782121.442365134, 15782237.5, 15782247.79523707, 15782826.98227707, 15782831.25, 15783307.62277931, 15783382.46898035, 15783620.3125, 15783662.5, 15783768.428750265, 15784047.451014297, 15784201.757078115, 15784482.11561861, 15784484.375, 15784748.904501194, 15784757.196407225, 15784794.678858325, 15784820.01086453, 15784986.509200122, 15785110.295290353, 15785400.209774278, 15785520.279298658, 15785760.615867158, 15785786.632712232, 15786068.948827095, 15786089.989964599, 15786090.036968049, 15786142.1875, 15786204.039194293, 15786315.625, 15786354.444718974, 15786619.075154264, 15786696.805802295, 15786851.158578604, 15786889.189615091, 15786917.1875, 15786998.007526128, 15787084.375, 15787384.636876266, 15787490.625, 15787512.5, 15787677.938499091, 15787853.125, 15788065.315021401, 15788134.375, 15788140.625, 15788207.320234304, 15788222.231270734, 15788287.892832812, 15788348.338869287, 15788394.27628679, 15788433.485241057, 15788547.752712106, 15788612.546965843, 15788635.876240669, 15788806.757138433, 15788831.712968005, 15788872.740861606, 15788882.502433356, 15788940.472281316, 15789075.0, 15789142.1875, 15789210.606134554, 15789325.420905665, 15789375.392915556, 15789379.479265418, 15789386.957913464, 15789450.0, 15789567.1875, 15789612.5, 15789636.125694428, 15789906.618787507, 15790184.375, 15790479.6875, 15790520.129434269, 15790523.914097136, 15790780.422173752, 15790838.758250654, 15791262.892877555, 15791437.430639042, 15791522.543128487, 15791677.632428339, 15792337.5, 15792718.828715784, 15793205.033264084, 15793259.024413396, 15793421.827068234, 15793673.4375, 15793704.6875, 15794478.125, 15794916.363250792, 15795170.283382982, 15795277.89101169, 15795296.020520145, 15795838.490564635, 15795979.966057722, 15795984.712408239, 15796126.5625, 15796484.375, 15796512.5, 15796525.1595654, 15797024.612791574, 15797333.856486749, 15797530.399613049, 15797601.5625, 15798095.298929434, 15799850.486831384, 15801201.220955603, 15802017.552554648, 15802489.0625, 15803145.964206178, 15804671.28872291, 15805251.5625, 15805679.6875, 15805749.156713134, 15806136.4376946, 15806456.70705841, 15806615.625, 15807730.16007519, 15808195.840321073, 15808681.591404753, 15809478.333372932, 15809479.6875, 15809500.713353917, 15809954.829573918, 15810220.816189367, 15811540.417915676, 15812473.456731495, 15812654.419223804, 15812668.47737448, 15813553.575507583, 15813605.392937476, 15814794.376679646, 15814950.486625096, 15815899.881795228, 15816858.226736618, 15817044.568444654, 15817234.375, 15817397.890617605, 15822345.721854506, 15823538.552725347, 15823592.679585053, 15823923.4375, 15824066.682269579, 15824547.717815908, 15824568.75, 15825465.625, 15825875.0, 15826635.9375, 15827334.591227224, 15827354.719482627, 15827838.19099912, 15827993.018928938, 15828107.8125, 15828141.76136868, 15828289.551523134, 15828410.9375, 15828439.0625, 15828480.175520347, 15828509.375, 15828514.938976308, 15828610.67686606, 15829577.735777423, 15829652.899882501, 15830349.694973202, 15830421.296666456, 15830484.262295535, 15830515.03398596, 15831137.394006532, 15831262.236433513, 15831327.823969744, 15831434.375, 15833284.693047406, 15833306.691703254, 15833585.811758144, 15833838.189216856, 15833842.1875, 15833861.964220122, 15834028.672379939, 15834071.613770109, 15834283.37934792, 15834373.4375, 15834453.464072963, 15834517.1875, 15835119.894329123, 15835462.209115898, 15835651.642307982, 15836656.144868193, 15836892.015916197, 15837932.473183734, 15838581.82048747, 15838728.896761134, 15839420.706806071, 15840543.733316632, 15840715.763979392, 15841328.539275622, 15841460.489871223, 15841514.529299324, 15841527.39422974, 15841665.786360392, 15841673.4375, 15842036.98351719, 15842374.795817677, 15842513.653270606, 15844000.369926007, 15844178.125, 15844288.455279127, 15844332.254990006, 15844417.822726518, 15844783.100692824, 15844824.486949347, 15845309.511576667, 15845423.4375, 15845546.123071479, 15845550.487093763, 15845615.625, 15845618.405167988, 15845656.74450514, 15845691.09363408, 15845759.23741861, 15845904.6875, 15845915.448358476, 15845920.944631567, 15845990.157916343, 15846021.239871051, 15846141.057568012, 15846376.49826206, 15846749.795904426, 15846800.30441431, 15846814.976488337, 15847157.8125, 15847228.125, 15847295.3125, 15847386.673172915, 15847458.917770453, 15847503.50731279, 15847703.849541642, 15847739.0625, 15847804.301546605, 15847957.8125, 15847980.758024907, 15847991.140818315, 15848112.273415603, 15848132.636184718, 15848168.068941973, 15849001.554259984, 15849163.254135696, 15849227.647199495, 15849303.681213263, 15849412.428078061, 15849469.97205364, 15849475.083507547, 15849506.986016506, 15849762.5, 15849768.555948868, 15849842.82321005, 15850156.561958687, 15850510.4258589, 15850523.117437128, 15850533.671501815, 15850539.0625, 15850737.302687459, 15850989.329982078, 15851254.067481434, 15851382.707205571, 15851587.033005465, 15851630.095182301, 15851647.606899094, 15852212.388044858, 15852221.057396315, 15852340.625, 15852349.216542702, 15852352.713023689, 15852480.978493849, 15852732.669975761, 15852774.22927292, 15852898.555854727, 15853014.0625, 15853105.230617626, 15853226.5625, 15853239.0625, 15853506.25, 15853507.09014523, 15853511.750331605, 15853824.439859206, 15854107.43123141, 15854246.875, 15854469.074119426, 15854495.64214733, 15854538.691043625, 15854569.164309079, 15854732.72348586, 15854796.164626801, 15854902.66061914, 15854977.655022195, 15854979.6875, 15855032.566039972, 15855143.07104556, 15855210.789871324, 15855279.6875, 15855520.13733951, 15855624.952730142, 15855632.384568842, 15855727.28658069, 15855899.73177343, 15855913.667901067, 15855946.644137153, 15855981.385386877, 15856118.75, 15856189.114579972, 15856298.637120975, 15856347.054235991, 15856379.6875, 15856479.593073478, 15856482.767859196, 15856673.4375, 15856817.354296815, 15856987.286773667, 15857514.739799745, 15857769.883484462, 15858413.849248195, 15858538.25665772, 15858664.0625, 15859096.875, 15859173.501469987, 15859221.97629382, 15859352.397763608, 15859539.0625, 15859661.02361766, 15859675.0, 15859702.604631916, 15859801.553359807, 15859881.25, 15859891.96813359, 15859969.39895916, 15859969.893924348, 15859998.746947277, 15860173.64239853, 15860211.332851743, 15860298.028921163, 15860306.76374073, 15860638.402685957, 15860671.875, 15861173.4375, 15861258.892926823, 15861728.523551933, 15861809.300411886, 15861917.1875, 15861932.250039889, 15862159.375, 15862249.147250412, 15862423.04629312, 15862726.057895586, 15863658.091381202, 15863930.524685571, 15865905.631025486, 15866056.391844535, 15866571.875, 15867043.908818234, 15867823.341244994, 15868098.306277893, 15868187.5, 15868920.172128506, 15868965.164003149, 15869584.965569854, 15869682.207194798, 15869725.922674468, 15870043.389068175, 15870283.17400619, 15870502.360744616, 15870793.74600424, 15871447.324967684, 15872398.4375, 15872926.505890245, 15873084.375, 15873434.375, 15873581.13638314, 15874360.885858169, 15874384.087568061, 15874470.3125, 15874812.538707856, 15875049.227241848, 15875128.933919158, 15875169.65838044, 15875296.708527489, 15875387.5, 15875617.963650733, 15875651.947644696, 15875656.809647465, 15875968.497799704, 15875997.127340442, 15876110.9375, 15876146.730534341, 15876364.0625, 15876414.0625, 15876509.169328647, 15876532.526546715, 15876557.133140732, 15876677.809860162, 15877015.837192612, 15877136.617438463, 15877154.6875, 15877180.96467558, 15877229.828167202, 15877929.192487063, 15878170.251348576], [12.325403941430316, 94.34111964579648, 27.894312504810713, 21.746512419152065, 8.880419239032292, 14.034243741002028, 50.86425742555548, 33.18582995050706, 5.229060842637838, 55.82611281819899, 54.85739466068958, 50.408307735675294, 107.801140300553, 20.901307413578003, 49.1637818661095, 34.51837110956585, 8.694936191009223, 115.36668681756778, 5.244607464626474, 32.08621878018963, 20.81823866469608, 20.366815743010104, 53.23420970045039, 5.654366922539232, 18.49672348019718, 62.36249511079574, 8.060598465193806, 18.965638513512076, 74.20520872258297, 15.747131865604857, 9.762160427315372, 15.509371252585249, 6.218938644355477, 6.260143507709066, 76.83449520412933, 8.431190571007107, 19.288034796050383, 6.954274502883351, 30.08175992532952, 32.61085987481787, 43.60821066814032, 14.57515164428809, 108.61528475367687, 42.20044077231353, 23.66330852147061, 6.452876603087523, 141.22079593611505, 111.18471501268937, 74.808925619376, 6.144087670250583, 74.65692147473496, 24.868211356825753, 52.058828121149105, 7.369839129499706, 51.10626464130465, 14.042769073409048, 5.716643305109311, 55.80084871655123, 27.757101687549344, 63.178611365401764, 8.494375954077116, 7.09490429743069, 66.77913615342811, 33.21369479645233, 18.481440100239883, 45.74950144659585, 6.087872967200494, 58.81157994381489, 56.75940006397241, 73.62287263739609, 74.17534315403275, 17.423717172341195, 24.029924689761426, 58.90683087869378, 34.74168594758012, 65.59576288598144, 8.420023728493994, 57.60968416580067, 14.222872992104213, 36.213692280413284, 7.123473837331906, 17.555247653721423, 43.6363776317319, 6.211410975171249, 26.17125251594807, 36.169422517964406, 5.5681399962728, 20.34856909905747, 27.6642671638374, 11.762087738582478, 32.01529473946033, 78.8847873799582, 70.86078752759325, 5.88564435980176, 10.21994122656323, 8.750593187870885, 6.998158056105888, 7.096443845798262, 71.39208508339132, 12.529044571221455, 81.90157006845843, 10.235652267400274, 74.1506130277834, 6.074090595487571, 11.326908788821274, 22.973946552524566, 20.23492526362652, 54.41075573794583, 74.17539801523282, 25.168361445245637, 58.69419671943372, 74.41561358842056, 6.6267039229937215, 18.097665502089793, 12.15313563743776, 34.394801141632875, 88.04841835503944, 31.452411364711324, 6.066190823044714, 16.69256030919604, 64.02905027585841, 12.991210596847376, 146.0907499286139, 22.981940425464305, 42.92312724549149, 5.878700539739593, 52.93798450880364, 5.927126375468788, 17.039216076448874, 84.33715162083503, 6.421035148095853, 20.754006544465966, 18.707285422480926, 18.584721569121143, 55.22596162676712, 71.65350987689584, 55.065618118493525, 147.32691916641937, 17.34376774785152, 41.89033215413009, 17.758100147944, 7.847355613211117, 14.021785050704409, 38.36517509135233, 73.47290236239375, 9.695378528388083, 41.48303803503546, 8.932223752449241, 56.60119173657242, 39.50888271352647, 23.076755219087964, 35.94227459302711, 8.546080052910362, 14.537547247169313, 27.001745211366092, 70.22137945546186, 7.696806248613502, 7.069438846246145, 48.354817179154104, 22.84034148269626, 6.639417941867912, 16.198172914994096, 32.962099775551955, 57.118096133109376, 44.74615924329832, 5.473739586333053, 146.2470858879594, 6.0910039519375525, 6.3089258870719105, 80.78731917355172, 20.018777994691938, 55.64997559507383, 19.176570088818345, 54.971363196678624, 18.21755128108622, 37.865057603272575, 10.931989710332381, 63.93071549330831, 11.03625407917968, 39.110742413901455, 12.202056314000348, 76.14179787039411, 12.614443067896364, 7.6863961537242265, 39.94278221461681, 33.52415587075944, 5.812129821259618, 20.473922567960305, 5.962487794662908, 58.41298202164814, 9.574089191614679, 16.274943173561923, 88.79588331522561, 78.89182984913462, 8.982170391772332, 63.08509304161808, 7.229816112556437, 26.648740188051466, 5.680525946578212, 64.74877221621597, 23.978643942047142, 21.70433367822145, 49.71305728249783, 16.079211472334435, 7.832121523472289, 15.626808132327671, 10.001224648730128, 45.63191957446186, 5.607993310820249, 12.213379510476639, 26.99164703714215, 74.65571481922882, 96.6486372360358, 8.401188265583627, 24.487948704954096, 43.82363199081698, 18.207434129598262, 12.254825788923199, 5.20717931023736, 11.291522648610346, 6.9366030154001885, 40.4682291446404, 16.857958748322368, 37.99102790180757, 27.894876012203817, 15.716062837547353, 43.684232431640574, 12.786452678462432, 8.80008577343106, 8.183968653324403, 9.225760259816926, 30.71426433303995, 86.85073270798011, 40.15355575976963, 47.97490233319692, 21.131784745660873, 64.36049112388855, 61.370364868442834, 21.108508232453563, 12.501780884280635, 10.632220099559097, 6.850557331826633, 51.70438870535374, 13.514775995594581, 5.6109384299749125, 87.33259774604714, 8.625556421806369, 28.21163947725407, 18.710673632879896, 15.085241460311423, 13.425948208256855, 55.074908023829536, 7.396171618022041, 15.722452699746274, 63.27164532923689, 16.588449885144332, 21.095414526837683, 51.82243233579328, 85.223695365478, 39.185922903653776, 8.614422323525764, 42.09952872016018, 52.91549206840082, 21.84770897360457, 15.753581753791316, 23.396437979945393, 39.79671543494391, 7.830111729720994, 100.1000540548736, 46.36273411288269, 5.941665364492867, 47.20666949814684, 6.5203870303895535, 5.382457521138361, 40.08408713507137, 38.759411452732905, 43.844140837157425, 42.781968774373176, 31.078416023170547, 11.205787674652589, 82.10096518887269, 8.343309213662017, 109.50983323474249, 25.424006249452432, 57.97872372314912, 99.56901574764193, 89.01173929749271, 7.269279646908192, 51.70643802787745, 17.2388696684456, 38.89240924594601, 58.47034459313542, 5.567612986005943, 55.67796169041033, 31.25553188254581, 55.00420433482193, 15.139303752264196, 85.9564477447067, 20.227572386868278, 27.893121584259625, 100.17521647448389, 6.237629762840208, 31.326252036287002, 10.927600131015208, 40.20784753934613, 12.421206276385014, 13.189018377383029, 41.566086348777326, 6.657394404360319, 6.0507368649076865, 7.977504298608783, 14.018008983959785, 8.00877120495023, 13.029097869329789, 48.890993585760185, 49.90785800869793, 34.13285864645425, 44.899322718165145, 5.250043797812905, 37.765363006576024, 5.080180232029157, 9.076127787182932, 6.007010206503414, 9.571895595473253, 7.505140767889578, 10.974433557620054, 21.60659888065298, 73.02553380108989, 53.91984445993749, 14.403386190787556, 75.49248950274699, 10.733597389493509, 8.673322344565731, 20.335758261935183, 31.492680866031197, 10.637352955518251, 5.4721274758766025, 59.16318678979456, 18.524291065380936, 65.16717996101882, 75.8087179887709, 146.8994856867523, 61.99042561148636, 105.75433503823112, 29.74114261032846, 32.12424161977002, 33.79631787269963, 100.56190916558468, 89.23390233894291, 13.60234453986505, 12.917365838355556, 77.91273734372982, 7.470466167838543, 9.080546889218699, 36.16081804478201, 13.154289752398894, 25.32913571235988, 16.357413057833927, 43.635248124121496, 85.34473166655151, 7.035334016632655, 11.605238077541594, 16.908639955221748, 31.475484846964083, 21.74243942739351, 6.052643594317526, 19.93492160338546, 35.40347051675363, 6.812939333255834, 29.32034013664881, 34.68931127066775, 18.885644089552493, 20.672241575535608, 47.52012528605084, 6.097095454399039, 5.202853999971738, 67.3743795313229, 42.42706344887816, 5.296714100848694, 31.91405587796172, 16.254016457545923, 68.39546861251351, 17.65906643172743, 26.004886309172694, 67.49214186423835, 50.69757013969276, 32.964846753969404, 8.158325214622993, 18.953200066909186, 12.018028657647946, 10.555898167861466, 15.34118492970515, 56.32299705706231, 11.022294374700206, 26.686348553208553, 28.00297235722459, 44.03918860022577, 50.56173573091367, 15.460750517248156, 10.744047164549285, 15.2062897216293, 74.15107407915134, 36.65870049584703, 6.738998875337469, 86.4350671309794, 56.851667688389036, 47.029142072101564, 6.30241225528771, 10.598323296847477, 144.66002482967923, 28.6993901213755, 12.58880896337504, 61.697436205150595, 59.643203474838074, 23.165881334928144, 41.14841818742901, 10.72110650663746, 52.00989467781965, 73.648357258601, 66.7041454372416, 15.571735516362882, 33.49773822923123, 79.05525826254832, 8.470051837854127, 31.97196181681638, 5.320866101544456, 70.84546146166261, 41.145048882601586, 60.825875688969695, 11.187430732564192, 10.886130388021783, 26.07932854698333, 19.58569538321343, 10.332527874300396, 9.296845579469627, 15.644354382378943, 5.35216031905927, 12.124245835706429, 9.601576299135363, 13.390009880907012, 6.772133434697117, 23.41564226862865, 11.646909771585488, 14.218597839512547, 25.399840667281794, 12.06859667150522, 20.116015774533256, 25.09095344517775, 44.307790467034444, 5.312116656360607, 28.516887945186827, 25.91534646796125, 5.707241385476825, 51.450645618355686, 73.95500891027588, 5.842778655370088, 68.06809864839504, 25.751090732887626, 14.210787055143863, 55.12584184386438, 26.629385435960266, 5.724138290994436, 71.93257353439655, 19.97209387568351, 5.23323068430134, 62.54210273621909, 9.014779683688463, 24.608169374999896, 38.1453442157997, 57.76172478555449, 12.53851317274431, 70.63720574129151, 22.424673190089198, 32.65222238715863, 38.70999205856704, 51.67313398731209, 52.2738127553566, 6.005491122665434, 78.78870292163607, 52.62767730516856, 35.767547106124766, 18.865633415477227, 6.9992103002042, 35.180504981661144, 17.249541373375695, 84.29928405067623, 76.40644871298707, 14.06864318641104, 23.145926676818625, 13.533855107039122, 82.31356823203596, 13.273040657116253, 5.707403495353792, 39.54565459228376, 8.24567312781026, 11.785080160626904, 43.40283061997212, 95.43781101301796, 28.784532792706212, 19.353512575850026, 6.548091547473416, 55.27994496017462, 6.619889468808272, 63.35038093594301, 32.71194820755709, 57.23543301306957, 12.923008137465144, 12.110150586373582, 159.80552363849785, 12.344029016342363, 81.9556568193384, 20.07920161847022, 15.80884592815082, 15.054331187160086, 16.503706901799344, 103.82868933316176, 11.055238518585098, 123.19365480638017, 34.47938257682713, 8.006261375642326, 38.76582818016665, 33.26319902875171, 44.75523040708941, 50.66283793898266, 89.32415692067636, 53.393124281688415, 27.18287538664681, 5.285776236218295, 6.154373021561515, 13.987445523852712, 46.60461468148658, 83.72806821575381, 65.14513246162727, 5.525466685341276, 6.68201029432924, 63.982124756028135, 55.51831138723951, 52.581473018885276, 50.90414712312377, 15.525027513884757, 35.412867940196904, 9.421620839769068, 19.03482891324961, 7.453913402508244, 40.929872549116695, 8.841587430879343, 11.85401724873025, 41.26101537326564, 14.264542965486195, 10.63010540809899, 73.71313968297108, 40.9632026020525, 59.87802509251533, 17.710182884465983, 11.446103776905083, 47.431397997951464, 55.17616193047736, 27.365822617149746, 86.32898421226234, 10.263340234733455, 23.729873240779376, 6.8832741237907324, 66.62428819974558, 22.697576016361715, 7.59127330312033, 89.2692316884246, 18.473959373902602, 49.38508751852745, 51.67278516585564, 20.657694746041237, 39.29423234779924, 5.3742550728930025, 85.37891050027635, 190.42225039414387, 5.301237831309454, 49.456511070482875, 14.094518666244188, 9.441249839749718, 57.07053758783119, 45.62754641716246, 42.054389900594934, 6.115762099507276, 70.12464909103593, 76.66379536093959, 71.76181463483361, 41.07534341613498, 10.67545547873046, 73.95759876326576, 71.47408005327381, 32.81484161874408, 16.498857760986358, 9.687227312211162, 48.797547307785294, 17.415405221188067, 5.053066107599289, 32.3279345406743, 5.535364292292483, 8.25444587274733, 8.574294005169332, 66.38188229038906, 50.649701156620736, 75.23690962961268, 5.03897969438854, 35.10431821132612, 30.61809298278994, 10.646463664553123, 9.714606197262253, 11.802919849103407, 8.179445857568679, 34.06293035409414, 36.794440411459185, 44.08011005810046, 49.982916760195536, 5.34841204069476, 6.839435391795816, 45.98758040229156, 44.203458571904825, 13.502598880485223, 48.90323852850639, 89.21127923608239, 46.74866512709326, 16.685185105575002, 27.223878120927132, 71.26355459153399, 13.346436651619703, 80.33828053809873, 58.65874789905773, 18.284896589383912, 8.109492461200349, 5.340281914354636, 37.1446225991562, 75.67038746859504, 52.65853734855256, 15.320768502683546, 6.263526637857446, 24.63223474141746, 18.561250351967313, 57.79584637769817, 9.578595607883562, 14.581567231380983, 34.17510376977913, 80.53441844422096, 31.61373879187316, 15.586698649202562, 177.9291681601248, 57.5274218421618, 5.868618918187569, 59.32706281226834, 28.259106069936315, 47.65526791938738, 39.4014308766329, 9.660408838073165, 55.116324269940066, 18.18528530351038, 84.2736751492736, 43.4262316644184, 69.73679941781023, 26.214645171120306, 16.66909538050243, 76.24063489496768, 72.72337670636932, 36.07860877035412, 12.066808208970572, 129.09238253371976, 15.800023738702233, 64.80314050447457, 39.97910840609724, 7.655444577242081, 41.55263553992225, 25.014892777455973, 11.15790051039129, 46.16088083297147, 108.10549390333784, 39.337760503067386, 18.54356178283885, 18.024506895271042, 17.189450659265074, 45.146055723341135, 11.843420739383458, 75.17457545133448, 42.18053934435084, 21.037833506615478, 9.703306731995006, 10.414567246338104, 71.61985568780214, 30.401243193042735, 13.311743931477006, 10.162646478394636, 44.19919159361096, 48.5000401396403, 52.837582777322716, 37.303615333935475, 20.02447845859487, 6.769908493313888, 12.412040090342026, 6.625832771158506, 100.96079376463189, 22.263048953756766, 5.983154881280165, 30.638527696719425, 44.6576817984673, 19.96743816647168, 35.75222957932212, 7.9543113923488455, 6.061408555260902, 27.506342349241205, 60.61136292621538, 9.086149447272087, 58.26651033222735, 14.169000001202388, 10.314526968714727, 26.591520269968424, 32.532309915862406, 7.4978718012035355, 81.14784611537253, 16.310210184822544, 8.534837304805489, 26.264903122755747, 8.6880930069611, 61.40065062327113, 54.239317383239765, 181.10012487772568, 5.0371690321798726, 55.546748741121206, 40.70683761544447, 108.8535481976646, 28.87863382170011, 10.531463940724558, 6.058363322421835, 54.15242236672362, 36.69339712903146, 20.929650992311863, 82.51976838315444, 17.676765933721544, 55.28684982750511, 21.24782680846751, 28.198885347809973, 25.616072324953976, 13.588214065194508, 88.65327239506948, 17.079403945564632, 19.463386930555163, 156.82348651168704, 74.57059709252599, 13.28112905722977, 9.164523515971034, 16.125993007179662, 11.759736361083169, 43.480614355466564, 89.98497694894962, 44.770082651750556, 65.38836920474633, 29.467227272189838, 10.410468352134986, 15.488947401968307, 106.27704205501405, 34.9387971705873, 17.192075086793032, 47.12876444459821, 77.60168835424975, 24.222153475264914, 5.4166968516933585, 14.572126215702196, 82.76436120720398, 61.126156366124285, 116.14894598135051, 27.783728862687198, 38.917684915288355, 15.087317684844848, 41.71099305186935, 48.22377150092522, 5.352462190764045, 5.320180042745152, 94.05023696866108, 63.39680408746046, 46.334605009566175, 7.89291148893744, 5.326494473366832, 64.52304711279164, 18.675455707147368, 78.85206736386026, 12.741533810011251, 30.287681798682, 23.819825896383392, 21.66154130945483, 40.273171788152, 25.470601260185585, 7.956515486224899, 79.71402584343875, 12.554035588901023, 45.40436433379119, 12.124739876177381, 36.8227338839886, 22.25383363521394, 56.72616680091519, 12.512776823862682, 119.9662864801437, 7.534528837499403, 13.131721006501946, 16.301055488011084, 32.71993347181504, 52.26770985326157, 47.07854560118051, 76.96881835836788, 9.169956760148732, 23.03903414738217, 16.624587791505764, 42.50670627257482, 13.417358412117695, 9.701674896772841, 5.36764270193394, 57.37137363271489, 18.8187045532486, 79.09239870031433, 6.010247449944244, 29.88258533719659, 24.121664960992597, 30.336560723674083, 26.84172888226107, 15.412663811028537, 129.31839501103164, 26.28658878029633, 82.60261315885383, 72.65918448309708, 39.367378478068595, 20.803473530647803, 45.42239066949757, 5.032229204830103, 33.420028489858176, 73.07357972187498, 29.228592630925114, 49.85424651108546, 7.474195123840297, 28.32485310642003, 26.880219939271946, 18.794116832801485, 14.896270973574246, 21.79790836519419, 40.5272110342125, 27.345092502978304, 282.85792758661853, 25.913939632199607, 48.482469335148046, 16.16034062680839, 27.62289169491222, 6.0447006508530015, 10.029182640394895, 10.732828803509463, 27.709116873891798, 61.754920390648735, 22.380769563275173, 34.44216644074961, 20.21026770857054, 34.64956061371704, 11.419918567262151, 43.815815265196164, 82.13422861042207, 103.05905279209668, 59.643842246560446, 11.398829138617895, 73.8813333819796, 9.978262832440187, 181.82797909026556, 45.900707548919016, 18.902789373225737, 29.108103334869753, 29.36367654465335, 81.93822123049952, 92.42703391891416, 12.743994024112705, 47.378965734826494, 42.43182598976282, 36.37527987245869, 32.30105165339232, 14.906785357038292, 54.915572674142965, 14.166490861339021, 25.088431203194485, 33.91001244214864, 16.26856874802537, 24.54398427000988, 34.513528010938636, 9.008275551594927, 47.93358983103175, 7.965975387853216, 53.66380768984136, 100.02830893015216, 31.443950721308106, 16.71457975793558, 30.554869710939954, 44.229402575794666, 28.23784577236463, 37.92002228005409, 134.92982582927598, 13.634219046618473, 6.037151002497854, 7.196742876940734, 39.03025387662727, 20.383054581068617, 5.9518541292540545, 55.664471933888365, 15.583494658917141, 98.17898329554271, 14.463878170154304, 33.178034652897914, 10.915163830334173, 13.43415104103584, 17.79899676057992, 13.046604898711877, 46.32520296792154, 5.1943229672323845, 102.14135967001151, 5.083705469146998, 7.601793124145362, 109.46114545841223, 41.08166934927216, 14.73004202368901, 36.38953047622431, 46.5668644267075, 18.940086984935633, 6.479026278506038, 5.6887060459038565, 51.56149891006894, 106.53286509745634, 65.77842121341409, 83.93887549947544, 52.06225557256331, 21.977347879631196, 49.81412408516242, 8.744610274457706, 9.679777803556357, 12.131805969490868, 24.381142559240377, 6.114739478737689, 44.660582522832556, 63.32757571563871, 40.454293826567024, 45.202330203864484, 119.84837594748151, 17.635448101683956, 79.62900653807276, 61.61877806919806, 9.517508905957817, 30.635652254340915, 55.00943937187818, 48.49318454087916, 11.354935297200328, 21.54299351488176, 14.71344133246656])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([6328901.373766553, 6664454.798208626, 6707701.529829506, 6847078.883982962, 6856280.663708082, 6866455.989699593, 6916629.705244196, 6919293.75, 7042640.039953099, 7246127.555181732, 7299245.3125, 7303771.875, 7376137.5, 7390595.748661925, 7405724.773258182, 7483318.718541588, 7501991.324862887, 7506364.535076704, 7578831.230772206, 7606904.614358609, 7613890.548914417, 7621943.129162725, 7630856.25, 7630925.706569847, 7724802.2610675525, 7729901.5625, 7729930.796741152, 7747930.648708502, 7850342.1875, 7854358.008941725, 7969527.031491847, 8002768.891413107, 8002857.420733493, 8002862.443956185, 8024742.202262779, 8028000.2638079515, 8033564.107990868, 8043791.510917393, 8076195.3125, 8103995.057965878, 8129865.625, 8161527.208624647, 8172248.4375, 8173255.200509882, 8231390.318124211, 8296229.465708676, 8317682.685026663, 8419613.855853455, 8429125.176455628, 8467527.084220849, 8469953.186502421, 8534035.087909415, 8537134.022840684, 8537150.867536152, 8577120.3125, 8583195.054872045, 8597840.779212594, 8597878.24516298, 8603624.95999141, 8611543.75, 8639998.810812248, 8691487.398037478, 8757557.326646036, 8761981.25, 8792099.133816047, 8802819.858216235, 8813989.060324058, 8834917.1875, 8836623.4375, 8837140.60178216, 8852484.375, 8863495.840219665, 8891275.45697255, 8894242.1875, 8895790.603171967, 8917289.885885803, 8918479.931602739, 8925542.1875, 8937426.360252384, 8940153.125, 8943348.445187131, 8958189.612654004, 8960219.36170195, 8987563.607806645, 8997526.43098672, 9006775.834355658, 9006830.389320403, 9006874.37706514, 9011104.64247762, 9018384.746184692, 9022051.493636359, 9022388.037499143, 9031173.4375, 9083105.611243805, 9089780.579635173, 9091527.347723246, 9096843.259244993, 9106768.65400412, 9121451.048445577, 9135885.11818244, 9137061.235309368, 9137732.155491859, 9140893.287193943, 9141698.301704347, 9142523.561311625, 9155825.063957885, 9165280.61389258, 9167103.125, 9171634.375, 9194889.416999668, 9197370.3125, 9198071.875, 9199441.461331213, 9248658.450639915, 9251917.757476272, 9252090.625, 9253311.131937744, 9257907.64280771, 9265526.349156287, 9272950.888668386, 9276696.875, 9281113.435512288, 9281700.991413258, 9285355.132660035, 9300359.375, 9300374.27549448, 9308820.3125, 9339012.357911363, 9353376.602450393, 9375739.299322315, 9406960.502760697, 9407258.776638698, 9410070.964176105, 9416813.054176832, 9503077.266165107, 9517496.875, 9534671.875, 9557269.639062997, 9558608.326361481, 9564227.201728595, 9566339.646391306, 9578195.940520857, 9624857.291777372, 9653295.3125, 9684026.550099451, 9780520.713720623, 9864575.465513125, 9919441.674404982, 10126453.125, 10202382.8125, 10202552.34386656, 10258107.698638054, 10264802.022973241, 10342823.327318856, 10883863.35517414, 15279520.269276781, 15400517.438999893, 15539145.110868962, 15619095.3125, 15626034.00022147, 15627208.719955392, 15627944.612093255, 15628000.0, 15640981.242257234, 15642229.268772077, 15644506.526018133, 15647618.75, 15652251.59038627, 15653312.823285667, 15653587.339561103, 15654307.3668837, 15656453.125, 15659446.10652946, 15660654.85315224, 15661914.546352243, 15663940.625, 15671767.05857071, 15671790.625, 15675062.440692749, 15676105.867847716, 15676445.905954335, 15676468.75, 15676636.969619501, 15676639.286713518, 15677179.6875, 15681142.138118593, 15681167.16245974, 15682143.141379789, 15682197.136289012, 15685908.934956433, 15686959.6487148, 15688187.213869393, 15689783.73715474, 15690533.409511944, 15690562.055931158, 15690786.220741868, 15690837.896797564, 15691140.522406727, 15691166.76727874, 15691881.25, 15692013.780134633, 15692224.016032947, 15692251.309440902, 15692715.894570371, 15692827.153895505, 15692903.942246601, 15692917.885999292, 15693055.371566067, 15693076.452605601, 15694377.161347013, 15694715.542423492, 15695059.375, 15695124.06302642, 15695651.773120012, 15695813.818101937, 15695874.942240153, 15696068.7270755, 15696414.680954287, 15696550.14684558, 15697050.102335814, 15697342.99681492, 15697365.013705822, 15697987.92584808, 15698014.69255413, 15698187.085794652, 15698264.251881547, 15698439.0625, 15698791.477898201, 15698975.859341247, 15699045.113290953, 15699292.059861565, 15699430.886109786, 15699510.469179595, 15699652.319565771, 15699767.01843862, 15699939.383853355, 15700266.937338047, 15700606.246022975, 15700976.199055763, 15701071.04365663, 15701402.783055123, 15701584.79593658, 15701710.9375, 15701731.550632743, 15701760.881224819, 15701800.0, 15702228.715354167, 15706907.796477202, 15707880.84801628, 15708154.724705536, 15708810.240653142, 15710275.834954826, 15710941.576249424, 15712247.118792199, 15716473.29647453, 15717354.234628761, 15717367.49875598, 15717439.04297423, 15717465.867874352, 15717767.1875, 15717869.322449407, 15717923.4375, 15722263.41818918, 15723534.7548344, 15723859.572902592, 15724087.171747249, 15724571.87301382, 15725270.89903977, 15726957.8125, 15726971.198154807, 15726982.83841297, 15727342.858080462, 15727559.584163418, 15727562.074623497, 15727739.259835107, 15729060.52691166, 15730902.57992769, 15732043.509388374, 15732071.875, 15732156.007860593, 15732356.25, 15732381.355761888, 15732838.64989057, 15732962.3205997, 15733150.0, 15733365.625, 15733459.342763277, 15733691.159017526, 15733812.5, 15733820.807918277, 15734255.42181942, 15735384.26939879, 15735716.316566596, 15735801.267892517, 15736292.056358509, 15736339.0625, 15736754.738443522, 15736869.309318798, 15736995.983479312, 15737096.842266183, 15737574.689116007, 15737695.074825468, 15738235.9375, 15738467.05559127, 15738530.882899573, 15739210.070141714, 15739345.356750717, 15739748.29965658, 15739822.881688757, 15740412.132886043, 15740954.05342705, 15741534.109597437, 15741536.934924476, 15742119.70037204, 15742334.375, 15742471.875, 15742545.347719764, 15742846.875, 15743022.049083592, 15743317.817441361, 15743444.361109773, 15743493.431837771, 15743497.619883604, 15743623.708854387, 15743923.157880085, 15744220.212176336, 15744491.789380299, 15744606.25, 15744878.04596852, 15745226.41377025, 15745423.4375, 15745426.294827666, 15745456.916123424, 15745641.563089583, 15746707.8125, 15746746.536873072, 15746948.67669272, 15747409.375, 15747674.14011647, 15747800.0, 15747999.670337282, 15748267.816831475, 15748589.979381757, 15748817.179230953, 15748880.293147406, 15749451.751398839, 15750145.3125, 15750517.103773726, 15750595.3125, 15750638.660376122, 15751243.52752853, 15751467.589448296, 15751485.55485488, 15751882.500136748, 15752451.5625, 15752483.811065417, 15752801.758666912, 15753065.952724077, 15753109.3761697, 15753152.214945968, 15753412.161940861, 15753672.160439068, 15753809.810347715, 15754396.5477139, 15754707.889139019, 15754894.964508172, 15755199.418523856, 15755388.517785853, 15755548.680164449, 15756389.0625, 15756744.128926588, 15756876.671467317, 15757517.014747264, 15757551.874270795, 15758003.211067595, 15758073.415193995, 15758565.625, 15758835.294137329, 15758962.681094248, 15759231.25, 15759236.227119427, 15759274.90161274, 15759317.755048918, 15759624.288820632, 15759720.181556657, 15759782.8125, 15759892.1875, 15760007.561835004, 15760348.600145921, 15760436.441082211, 15760596.475541418, 15760828.902459893, 15760895.3125, 15760945.243997125, 15761080.079888713, 15761265.598080311, 15761311.074284561, 15761322.856735261, 15761524.855729379, 15761559.114849925, 15761622.005242985, 15761943.153324736, 15762014.0625, 15762432.688489763, 15762470.210994968, 15762546.485168787, 15762745.377126582, 15763189.336224917, 15763299.632684663, 15764521.40641539, 15764545.3125, 15764703.894266065, 15764937.277944824, 15765371.342637857, 15765414.870245177, 15766306.25, 15766352.84830381, 15767370.3125, 15767596.875, 15767741.19354588, 15768285.14958841, 15768378.125, 15768644.870876195, 15768651.894053312, 15769846.875, 15770036.87238983, 15770060.9375, 15770089.0625, 15770175.255799703, 15770235.975376425, 15770473.277246483, 15770902.987773353, 15771075.847375099, 15771197.8613039, 15771370.271345628, 15771404.52337403, 15771409.670784004, 15771492.74347292, 15771512.80312551, 15771528.878633378, 15771584.418058584, 15771598.110805526, 15771657.532344135, 15771681.046461204, 15771815.904476665, 15771878.65560646, 15771902.942059675, 15772021.673145168, 15772073.154319372, 15772197.541126063, 15772229.68707892, 15772247.459846154, 15772512.50759251, 15772617.1875, 15772689.429911852, 15772814.444271702, 15772846.875, 15772890.466972059, 15772902.919099303, 15772910.515915949, 15772916.237810124, 15772926.832171507, 15772931.533442551, 15773006.501788493, 15773062.068639563, 15773081.638021125, 15773105.850201907, 15773113.286630789, 15773125.0, 15773201.5625, 15773216.372340266, 15773227.09328615, 15773355.838576278, 15773368.75, 15773370.3125, 15773429.6875, 15773457.327683672, 15773480.416308694, 15773756.385005051, 15773770.3125, 15773929.6875, 15773960.1264773, 15774147.951125592, 15774173.4375, 15774215.592660852, 15774232.647409784, 15774251.5625, 15774315.375454184, 15774372.46969219, 15774410.511662565, 15774498.307234785, 15774521.355531454, 15774523.447637603, 15774589.296094365, 15774732.73434023, 15774751.945950573, 15774795.381061774, 15774874.373818906, 15774967.1875, 15775127.379957613, 15775248.81590243, 15775365.625, 15775452.360384097, 15775492.1875, 15775688.61370333, 15775727.214650411, 15775746.220932126, 15775753.120472891, 15775850.9454013, 15775872.534965746, 15775882.65752794, 15776174.916109372, 15776212.559515825, 15776404.716788528, 15776561.29473763, 15776563.972270614, 15776817.14063698, 15776880.920579169, 15777292.1875, 15777308.804429375, 15777720.3125, 15777948.238361174, 15777981.143315658, 15778120.3125, 15778151.26801739, 15778523.4375, 15778538.990825234, 15778743.577100897, 15778824.051569622, 15779025.317347113, 15779107.8125, 15779496.514914073, 15779581.25, 15779618.592116013, 15779671.45260557, 15780068.75, 15780322.658676827, 15780364.0625, 15780995.026764233, 15781182.957608609, 15781887.214589175, 15781890.729803301, 15782107.522474244, 15782121.442365134, 15782237.5, 15782247.79523707, 15782826.98227707, 15782831.25, 15783307.62277931, 15783382.46898035, 15783620.3125, 15783662.5, 15783768.428750265, 15784047.451014297, 15784201.757078115, 15784482.11561861, 15784484.375, 15784748.904501194, 15784757.196407225, 15784794.678858325, 15784820.01086453, 15784986.509200122, 15785110.295290353, 15785400.209774278, 15785520.279298658, 15785760.615867158, 15785786.632712232, 15786068.948827095, 15786089.989964599, 15786090.036968049, 15786142.1875, 15786204.039194293, 15786315.625, 15786354.444718974, 15786619.075154264, 15786696.805802295, 15786851.158578604, 15786889.189615091, 15786917.1875, 15786998.007526128, 15787084.375, 15787384.636876266, 15787490.625, 15787512.5, 15787677.938499091, 15787853.125, 15788065.315021401, 15788134.375, 15788140.625, 15788207.320234304, 15788222.231270734, 15788287.892832812, 15788348.338869287, 15788394.27628679, 15788433.485241057, 15788547.752712106, 15788612.546965843, 15788635.876240669, 15788806.757138433, 15788831.712968005, 15788872.740861606, 15788882.502433356, 15788940.472281316, 15789075.0, 15789142.1875, 15789210.606134554, 15789325.420905665, 15789375.392915556, 15789379.479265418, 15789386.957913464, 15789450.0, 15789567.1875, 15789612.5, 15789636.125694428, 15789906.618787507, 15790184.375, 15790479.6875, 15790520.129434269, 15790523.914097136, 15790780.422173752, 15790838.758250654, 15791262.892877555, 15791437.430639042, 15791522.543128487, 15791677.632428339, 15792337.5, 15792718.828715784, 15793205.033264084, 15793259.024413396, 15793421.827068234, 15793673.4375, 15793704.6875, 15794478.125, 15794916.363250792, 15795170.283382982, 15795277.89101169, 15795296.020520145, 15795838.490564635, 15795979.966057722, 15795984.712408239, 15796126.5625, 15796484.375, 15796512.5, 15796525.1595654, 15797024.612791574, 15797333.856486749, 15797530.399613049, 15797601.5625, 15798095.298929434, 15799850.486831384, 15801201.220955603, 15802017.552554648, 15802489.0625, 15803145.964206178, 15804671.28872291, 15805251.5625, 15805679.6875, 15805749.156713134, 15806136.4376946, 15806456.70705841, 15806615.625, 15807730.16007519, 15808195.840321073, 15808681.591404753, 15809478.333372932, 15809479.6875, 15809500.713353917, 15809954.829573918, 15810220.816189367, 15811540.417915676, 15812473.456731495, 15812654.419223804, 15812668.47737448, 15813553.575507583, 15813605.392937476, 15814794.376679646, 15814950.486625096, 15815899.881795228, 15816858.226736618, 15817044.568444654, 15817234.375, 15817397.890617605, 15822345.721854506, 15823538.552725347, 15823592.679585053, 15823923.4375, 15824066.682269579, 15824547.717815908, 15824568.75, 15825465.625, 15825875.0, 15826635.9375, 15827334.591227224, 15827354.719482627, 15827838.19099912, 15827993.018928938, 15828107.8125, 15828141.76136868, 15828289.551523134, 15828410.9375, 15828439.0625, 15828480.175520347, 15828509.375, 15828514.938976308, 15828610.67686606, 15829577.735777423, 15829652.899882501, 15830349.694973202, 15830421.296666456, 15830484.262295535, 15830515.03398596, 15831137.394006532, 15831262.236433513, 15831327.823969744, 15831434.375, 15833284.693047406, 15833306.691703254, 15833585.811758144, 15833838.189216856, 15833842.1875, 15833861.964220122, 15834028.672379939, 15834071.613770109, 15834283.37934792, 15834373.4375, 15834453.464072963, 15834517.1875, 15835119.894329123, 15835462.209115898, 15835651.642307982, 15836656.144868193, 15836892.015916197, 15837932.473183734, 15838581.82048747, 15838728.896761134, 15839420.706806071, 15840543.733316632, 15840715.763979392, 15841328.539275622, 15841460.489871223, 15841514.529299324, 15841527.39422974, 15841665.786360392, 15841673.4375, 15842036.98351719, 15842374.795817677, 15842513.653270606, 15844000.369926007, 15844178.125, 15844288.455279127, 15844332.254990006, 15844417.822726518, 15844783.100692824, 15844824.486949347, 15845309.511576667, 15845423.4375, 15845546.123071479, 15845550.487093763, 15845615.625, 15845618.405167988, 15845656.74450514, 15845691.09363408, 15845759.23741861, 15845904.6875, 15845915.448358476, 15845920.944631567, 15845990.157916343, 15846021.239871051, 15846141.057568012, 15846376.49826206, 15846749.795904426, 15846800.30441431, 15846814.976488337, 15847157.8125, 15847228.125, 15847295.3125, 15847386.673172915, 15847458.917770453, 15847503.50731279, 15847703.849541642, 15847739.0625, 15847804.301546605, 15847957.8125, 15847980.758024907, 15847991.140818315, 15848112.273415603, 15848132.636184718, 15848168.068941973, 15849001.554259984, 15849163.254135696, 15849227.647199495, 15849303.681213263, 15849412.428078061, 15849469.97205364, 15849475.083507547, 15849506.986016506, 15849762.5, 15849768.555948868, 15849842.82321005, 15850156.561958687, 15850510.4258589, 15850523.117437128, 15850533.671501815, 15850539.0625, 15850737.302687459, 15850989.329982078, 15851254.067481434, 15851382.707205571, 15851587.033005465, 15851630.095182301, 15851647.606899094, 15852212.388044858, 15852221.057396315, 15852340.625, 15852349.216542702, 15852352.713023689, 15852480.978493849, 15852732.669975761, 15852774.22927292, 15852898.555854727, 15853014.0625, 15853105.230617626, 15853226.5625, 15853239.0625, 15853506.25, 15853507.09014523, 15853511.750331605, 15853824.439859206, 15854107.43123141, 15854246.875, 15854469.074119426, 15854495.64214733, 15854538.691043625, 15854569.164309079, 15854732.72348586, 15854796.164626801, 15854902.66061914, 15854977.655022195, 15854979.6875, 15855032.566039972, 15855143.07104556, 15855210.789871324, 15855279.6875, 15855520.13733951, 15855624.952730142, 15855632.384568842, 15855727.28658069, 15855899.73177343, 15855913.667901067, 15855946.644137153, 15855981.385386877, 15856118.75, 15856189.114579972, 15856298.637120975, 15856347.054235991, 15856379.6875, 15856479.593073478, 15856482.767859196, 15856673.4375, 15856817.354296815, 15856987.286773667, 15857514.739799745, 15857769.883484462, 15858413.849248195, 15858538.25665772, 15858664.0625, 15859096.875, 15859173.501469987, 15859221.97629382, 15859352.397763608, 15859539.0625, 15859661.02361766, 15859675.0, 15859702.604631916, 15859801.553359807, 15859881.25, 15859891.96813359, 15859969.39895916, 15859969.893924348, 15859998.746947277, 15860173.64239853, 15860211.332851743, 15860298.028921163, 15860306.76374073, 15860638.402685957, 15860671.875, 15861173.4375, 15861258.892926823, 15861728.523551933, 15861809.300411886, 15861917.1875, 15861932.250039889, 15862159.375, 15862249.147250412, 15862423.04629312, 15862726.057895586, 15863658.091381202, 15863930.524685571, 15865905.631025486, 15866056.391844535, 15866571.875, 15867043.908818234, 15867823.341244994, 15868098.306277893, 15868187.5, 15868920.172128506, 15868965.164003149, 15869584.965569854, 15869682.207194798, 15869725.922674468, 15870043.389068175, 15870283.17400619, 15870502.360744616, 15870793.74600424, 15871447.324967684, 15872398.4375, 15872926.505890245, 15873084.375, 15873434.375, 15873581.13638314, 15874360.885858169, 15874384.087568061, 15874470.3125, 15874812.538707856, 15875049.227241848, 15875128.933919158, 15875169.65838044, 15875296.708527489, 15875387.5, 15875617.963650733, 15875651.947644696, 15875656.809647465, 15875968.497799704, 15875997.127340442, 15876110.9375, 15876146.730534341, 15876364.0625, 15876414.0625, 15876509.169328647, 15876532.526546715, 15876557.133140732, 15876677.809860162, 15877015.837192612, 15877136.617438463, 15877154.6875, 15877180.96467558, 15877229.828167202, 15877929.192487063, 15878170.251348576], [12.325403941430316, 94.34111964579648, 27.894312504810713, 21.746512419152065, 8.880419239032292, 14.034243741002028, 50.86425742555548, 33.18582995050706, 5.229060842637838, 55.82611281819899, 54.85739466068958, 50.408307735675294, 107.801140300553, 20.901307413578003, 49.1637818661095, 34.51837110956585, 8.694936191009223, 115.36668681756778, 5.244607464626474, 32.08621878018963, 20.81823866469608, 20.366815743010104, 53.23420970045039, 5.654366922539232, 18.49672348019718, 62.36249511079574, 8.060598465193806, 18.965638513512076, 74.20520872258297, 15.747131865604857, 9.762160427315372, 15.509371252585249, 6.218938644355477, 6.260143507709066, 76.83449520412933, 8.431190571007107, 19.288034796050383, 6.954274502883351, 30.08175992532952, 32.61085987481787, 43.60821066814032, 14.57515164428809, 108.61528475367687, 42.20044077231353, 23.66330852147061, 6.452876603087523, 141.22079593611505, 111.18471501268937, 74.808925619376, 6.144087670250583, 74.65692147473496, 24.868211356825753, 52.058828121149105, 7.369839129499706, 51.10626464130465, 14.042769073409048, 5.716643305109311, 55.80084871655123, 27.757101687549344, 63.178611365401764, 8.494375954077116, 7.09490429743069, 66.77913615342811, 33.21369479645233, 18.481440100239883, 45.74950144659585, 6.087872967200494, 58.81157994381489, 56.75940006397241, 73.62287263739609, 74.17534315403275, 17.423717172341195, 24.029924689761426, 58.90683087869378, 34.74168594758012, 65.59576288598144, 8.420023728493994, 57.60968416580067, 14.222872992104213, 36.213692280413284, 7.123473837331906, 17.555247653721423, 43.6363776317319, 6.211410975171249, 26.17125251594807, 36.169422517964406, 5.5681399962728, 20.34856909905747, 27.6642671638374, 11.762087738582478, 32.01529473946033, 78.8847873799582, 70.86078752759325, 5.88564435980176, 10.21994122656323, 8.750593187870885, 6.998158056105888, 7.096443845798262, 71.39208508339132, 12.529044571221455, 81.90157006845843, 10.235652267400274, 74.1506130277834, 6.074090595487571, 11.326908788821274, 22.973946552524566, 20.23492526362652, 54.41075573794583, 74.17539801523282, 25.168361445245637, 58.69419671943372, 74.41561358842056, 6.6267039229937215, 18.097665502089793, 12.15313563743776, 34.394801141632875, 88.04841835503944, 31.452411364711324, 6.066190823044714, 16.69256030919604, 64.02905027585841, 12.991210596847376, 146.0907499286139, 22.981940425464305, 42.92312724549149, 5.878700539739593, 52.93798450880364, 5.927126375468788, 17.039216076448874, 84.33715162083503, 6.421035148095853, 20.754006544465966, 18.707285422480926, 18.584721569121143, 55.22596162676712, 71.65350987689584, 55.065618118493525, 147.32691916641937, 17.34376774785152, 41.89033215413009, 17.758100147944, 7.847355613211117, 14.021785050704409, 38.36517509135233, 73.47290236239375, 9.695378528388083, 41.48303803503546, 8.932223752449241, 56.60119173657242, 39.50888271352647, 23.076755219087964, 35.94227459302711, 8.546080052910362, 14.537547247169313, 27.001745211366092, 70.22137945546186, 7.696806248613502, 7.069438846246145, 48.354817179154104, 22.84034148269626, 6.639417941867912, 16.198172914994096, 32.962099775551955, 57.118096133109376, 44.74615924329832, 5.473739586333053, 146.2470858879594, 6.0910039519375525, 6.3089258870719105, 80.78731917355172, 20.018777994691938, 55.64997559507383, 19.176570088818345, 54.971363196678624, 18.21755128108622, 37.865057603272575, 10.931989710332381, 63.93071549330831, 11.03625407917968, 39.110742413901455, 12.202056314000348, 76.14179787039411, 12.614443067896364, 7.6863961537242265, 39.94278221461681, 33.52415587075944, 5.812129821259618, 20.473922567960305, 5.962487794662908, 58.41298202164814, 9.574089191614679, 16.274943173561923, 88.79588331522561, 78.89182984913462, 8.982170391772332, 63.08509304161808, 7.229816112556437, 26.648740188051466, 5.680525946578212, 64.74877221621597, 23.978643942047142, 21.70433367822145, 49.71305728249783, 16.079211472334435, 7.832121523472289, 15.626808132327671, 10.001224648730128, 45.63191957446186, 5.607993310820249, 12.213379510476639, 26.99164703714215, 74.65571481922882, 96.6486372360358, 8.401188265583627, 24.487948704954096, 43.82363199081698, 18.207434129598262, 12.254825788923199, 5.20717931023736, 11.291522648610346, 6.9366030154001885, 40.4682291446404, 16.857958748322368, 37.99102790180757, 27.894876012203817, 15.716062837547353, 43.684232431640574, 12.786452678462432, 8.80008577343106, 8.183968653324403, 9.225760259816926, 30.71426433303995, 86.85073270798011, 40.15355575976963, 47.97490233319692, 21.131784745660873, 64.36049112388855, 61.370364868442834, 21.108508232453563, 12.501780884280635, 10.632220099559097, 6.850557331826633, 51.70438870535374, 13.514775995594581, 5.6109384299749125, 87.33259774604714, 8.625556421806369, 28.21163947725407, 18.710673632879896, 15.085241460311423, 13.425948208256855, 55.074908023829536, 7.396171618022041, 15.722452699746274, 63.27164532923689, 16.588449885144332, 21.095414526837683, 51.82243233579328, 85.223695365478, 39.185922903653776, 8.614422323525764, 42.09952872016018, 52.91549206840082, 21.84770897360457, 15.753581753791316, 23.396437979945393, 39.79671543494391, 7.830111729720994, 100.1000540548736, 46.36273411288269, 5.941665364492867, 47.20666949814684, 6.5203870303895535, 5.382457521138361, 40.08408713507137, 38.759411452732905, 43.844140837157425, 42.781968774373176, 31.078416023170547, 11.205787674652589, 82.10096518887269, 8.343309213662017, 109.50983323474249, 25.424006249452432, 57.97872372314912, 99.56901574764193, 89.01173929749271, 7.269279646908192, 51.70643802787745, 17.2388696684456, 38.89240924594601, 58.47034459313542, 5.567612986005943, 55.67796169041033, 31.25553188254581, 55.00420433482193, 15.139303752264196, 85.9564477447067, 20.227572386868278, 27.893121584259625, 100.17521647448389, 6.237629762840208, 31.326252036287002, 10.927600131015208, 40.20784753934613, 12.421206276385014, 13.189018377383029, 41.566086348777326, 6.657394404360319, 6.0507368649076865, 7.977504298608783, 14.018008983959785, 8.00877120495023, 13.029097869329789, 48.890993585760185, 49.90785800869793, 34.13285864645425, 44.899322718165145, 5.250043797812905, 37.765363006576024, 5.080180232029157, 9.076127787182932, 6.007010206503414, 9.571895595473253, 7.505140767889578, 10.974433557620054, 21.60659888065298, 73.02553380108989, 53.91984445993749, 14.403386190787556, 75.49248950274699, 10.733597389493509, 8.673322344565731, 20.335758261935183, 31.492680866031197, 10.637352955518251, 5.4721274758766025, 59.16318678979456, 18.524291065380936, 65.16717996101882, 75.8087179887709, 146.8994856867523, 61.99042561148636, 105.75433503823112, 29.74114261032846, 32.12424161977002, 33.79631787269963, 100.56190916558468, 89.23390233894291, 13.60234453986505, 12.917365838355556, 77.91273734372982, 7.470466167838543, 9.080546889218699, 36.16081804478201, 13.154289752398894, 25.32913571235988, 16.357413057833927, 43.635248124121496, 85.34473166655151, 7.035334016632655, 11.605238077541594, 16.908639955221748, 31.475484846964083, 21.74243942739351, 6.052643594317526, 19.93492160338546, 35.40347051675363, 6.812939333255834, 29.32034013664881, 34.68931127066775, 18.885644089552493, 20.672241575535608, 47.52012528605084, 6.097095454399039, 5.202853999971738, 67.3743795313229, 42.42706344887816, 5.296714100848694, 31.91405587796172, 16.254016457545923, 68.39546861251351, 17.65906643172743, 26.004886309172694, 67.49214186423835, 50.69757013969276, 32.964846753969404, 8.158325214622993, 18.953200066909186, 12.018028657647946, 10.555898167861466, 15.34118492970515, 56.32299705706231, 11.022294374700206, 26.686348553208553, 28.00297235722459, 44.03918860022577, 50.56173573091367, 15.460750517248156, 10.744047164549285, 15.2062897216293, 74.15107407915134, 36.65870049584703, 6.738998875337469, 86.4350671309794, 56.851667688389036, 47.029142072101564, 6.30241225528771, 10.598323296847477, 144.66002482967923, 28.6993901213755, 12.58880896337504, 61.697436205150595, 59.643203474838074, 23.165881334928144, 41.14841818742901, 10.72110650663746, 52.00989467781965, 73.648357258601, 66.7041454372416, 15.571735516362882, 33.49773822923123, 79.05525826254832, 8.470051837854127, 31.97196181681638, 5.320866101544456, 70.84546146166261, 41.145048882601586, 60.825875688969695, 11.187430732564192, 10.886130388021783, 26.07932854698333, 19.58569538321343, 10.332527874300396, 9.296845579469627, 15.644354382378943, 5.35216031905927, 12.124245835706429, 9.601576299135363, 13.390009880907012, 6.772133434697117, 23.41564226862865, 11.646909771585488, 14.218597839512547, 25.399840667281794, 12.06859667150522, 20.116015774533256, 25.09095344517775, 44.307790467034444, 5.312116656360607, 28.516887945186827, 25.91534646796125, 5.707241385476825, 51.450645618355686, 73.95500891027588, 5.842778655370088, 68.06809864839504, 25.751090732887626, 14.210787055143863, 55.12584184386438, 26.629385435960266, 5.724138290994436, 71.93257353439655, 19.97209387568351, 5.23323068430134, 62.54210273621909, 9.014779683688463, 24.608169374999896, 38.1453442157997, 57.76172478555449, 12.53851317274431, 70.63720574129151, 22.424673190089198, 32.65222238715863, 38.70999205856704, 51.67313398731209, 52.2738127553566, 6.005491122665434, 78.78870292163607, 52.62767730516856, 35.767547106124766, 18.865633415477227, 6.9992103002042, 35.180504981661144, 17.249541373375695, 84.29928405067623, 76.40644871298707, 14.06864318641104, 23.145926676818625, 13.533855107039122, 82.31356823203596, 13.273040657116253, 5.707403495353792, 39.54565459228376, 8.24567312781026, 11.785080160626904, 43.40283061997212, 95.43781101301796, 28.784532792706212, 19.353512575850026, 6.548091547473416, 55.27994496017462, 6.619889468808272, 63.35038093594301, 32.71194820755709, 57.23543301306957, 12.923008137465144, 12.110150586373582, 159.80552363849785, 12.344029016342363, 81.9556568193384, 20.07920161847022, 15.80884592815082, 15.054331187160086, 16.503706901799344, 103.82868933316176, 11.055238518585098, 123.19365480638017, 34.47938257682713, 8.006261375642326, 38.76582818016665, 33.26319902875171, 44.75523040708941, 50.66283793898266, 89.32415692067636, 53.393124281688415, 27.18287538664681, 5.285776236218295, 6.154373021561515, 13.987445523852712, 46.60461468148658, 83.72806821575381, 65.14513246162727, 5.525466685341276, 6.68201029432924, 63.982124756028135, 55.51831138723951, 52.581473018885276, 50.90414712312377, 15.525027513884757, 35.412867940196904, 9.421620839769068, 19.03482891324961, 7.453913402508244, 40.929872549116695, 8.841587430879343, 11.85401724873025, 41.26101537326564, 14.264542965486195, 10.63010540809899, 73.71313968297108, 40.9632026020525, 59.87802509251533, 17.710182884465983, 11.446103776905083, 47.431397997951464, 55.17616193047736, 27.365822617149746, 86.32898421226234, 10.263340234733455, 23.729873240779376, 6.8832741237907324, 66.62428819974558, 22.697576016361715, 7.59127330312033, 89.2692316884246, 18.473959373902602, 49.38508751852745, 51.67278516585564, 20.657694746041237, 39.29423234779924, 5.3742550728930025, 85.37891050027635, 190.42225039414387, 5.301237831309454, 49.456511070482875, 14.094518666244188, 9.441249839749718, 57.07053758783119, 45.62754641716246, 42.054389900594934, 6.115762099507276, 70.12464909103593, 76.66379536093959, 71.76181463483361, 41.07534341613498, 10.67545547873046, 73.95759876326576, 71.47408005327381, 32.81484161874408, 16.498857760986358, 9.687227312211162, 48.797547307785294, 17.415405221188067, 5.053066107599289, 32.3279345406743, 5.535364292292483, 8.25444587274733, 8.574294005169332, 66.38188229038906, 50.649701156620736, 75.23690962961268, 5.03897969438854, 35.10431821132612, 30.61809298278994, 10.646463664553123, 9.714606197262253, 11.802919849103407, 8.179445857568679, 34.06293035409414, 36.794440411459185, 44.08011005810046, 49.982916760195536, 5.34841204069476, 6.839435391795816, 45.98758040229156, 44.203458571904825, 13.502598880485223, 48.90323852850639, 89.21127923608239, 46.74866512709326, 16.685185105575002, 27.223878120927132, 71.26355459153399, 13.346436651619703, 80.33828053809873, 58.65874789905773, 18.284896589383912, 8.109492461200349, 5.340281914354636, 37.1446225991562, 75.67038746859504, 52.65853734855256, 15.320768502683546, 6.263526637857446, 24.63223474141746, 18.561250351967313, 57.79584637769817, 9.578595607883562, 14.581567231380983, 34.17510376977913, 80.53441844422096, 31.61373879187316, 15.586698649202562, 177.9291681601248, 57.5274218421618, 5.868618918187569, 59.32706281226834, 28.259106069936315, 47.65526791938738, 39.4014308766329, 9.660408838073165, 55.116324269940066, 18.18528530351038, 84.2736751492736, 43.4262316644184, 69.73679941781023, 26.214645171120306, 16.66909538050243, 76.24063489496768, 72.72337670636932, 36.07860877035412, 12.066808208970572, 129.09238253371976, 15.800023738702233, 64.80314050447457, 39.97910840609724, 7.655444577242081, 41.55263553992225, 25.014892777455973, 11.15790051039129, 46.16088083297147, 108.10549390333784, 39.337760503067386, 18.54356178283885, 18.024506895271042, 17.189450659265074, 45.146055723341135, 11.843420739383458, 75.17457545133448, 42.18053934435084, 21.037833506615478, 9.703306731995006, 10.414567246338104, 71.61985568780214, 30.401243193042735, 13.311743931477006, 10.162646478394636, 44.19919159361096, 48.5000401396403, 52.837582777322716, 37.303615333935475, 20.02447845859487, 6.769908493313888, 12.412040090342026, 6.625832771158506, 100.96079376463189, 22.263048953756766, 5.983154881280165, 30.638527696719425, 44.6576817984673, 19.96743816647168, 35.75222957932212, 7.9543113923488455, 6.061408555260902, 27.506342349241205, 60.61136292621538, 9.086149447272087, 58.26651033222735, 14.169000001202388, 10.314526968714727, 26.591520269968424, 32.532309915862406, 7.4978718012035355, 81.14784611537253, 16.310210184822544, 8.534837304805489, 26.264903122755747, 8.6880930069611, 61.40065062327113, 54.239317383239765, 181.10012487772568, 5.0371690321798726, 55.546748741121206, 40.70683761544447, 108.8535481976646, 28.87863382170011, 10.531463940724558, 6.058363322421835, 54.15242236672362, 36.69339712903146, 20.929650992311863, 82.51976838315444, 17.676765933721544, 55.28684982750511, 21.24782680846751, 28.198885347809973, 25.616072324953976, 13.588214065194508, 88.65327239506948, 17.079403945564632, 19.463386930555163, 156.82348651168704, 74.57059709252599, 13.28112905722977, 9.164523515971034, 16.125993007179662, 11.759736361083169, 43.480614355466564, 89.98497694894962, 44.770082651750556, 65.38836920474633, 29.467227272189838, 10.410468352134986, 15.488947401968307, 106.27704205501405, 34.9387971705873, 17.192075086793032, 47.12876444459821, 77.60168835424975, 24.222153475264914, 5.4166968516933585, 14.572126215702196, 82.76436120720398, 61.126156366124285, 116.14894598135051, 27.783728862687198, 38.917684915288355, 15.087317684844848, 41.71099305186935, 48.22377150092522, 5.352462190764045, 5.320180042745152, 94.05023696866108, 63.39680408746046, 46.334605009566175, 7.89291148893744, 5.326494473366832, 64.52304711279164, 18.675455707147368, 78.85206736386026, 12.741533810011251, 30.287681798682, 23.819825896383392, 21.66154130945483, 40.273171788152, 25.470601260185585, 7.956515486224899, 79.71402584343875, 12.554035588901023, 45.40436433379119, 12.124739876177381, 36.8227338839886, 22.25383363521394, 56.72616680091519, 12.512776823862682, 119.9662864801437, 7.534528837499403, 13.131721006501946, 16.301055488011084, 32.71993347181504, 52.26770985326157, 47.07854560118051, 76.96881835836788, 9.169956760148732, 23.03903414738217, 16.624587791505764, 42.50670627257482, 13.417358412117695, 9.701674896772841, 5.36764270193394, 57.37137363271489, 18.8187045532486, 79.09239870031433, 6.010247449944244, 29.88258533719659, 24.121664960992597, 30.336560723674083, 26.84172888226107, 15.412663811028537, 129.31839501103164, 26.28658878029633, 82.60261315885383, 72.65918448309708, 39.367378478068595, 20.803473530647803, 45.42239066949757, 5.032229204830103, 33.420028489858176, 73.07357972187498, 29.228592630925114, 49.85424651108546, 7.474195123840297, 28.32485310642003, 26.880219939271946, 18.794116832801485, 14.896270973574246, 21.79790836519419, 40.5272110342125, 27.345092502978304, 282.85792758661853, 25.913939632199607, 48.482469335148046, 16.16034062680839, 27.62289169491222, 6.0447006508530015, 10.029182640394895, 10.732828803509463, 27.709116873891798, 61.754920390648735, 22.380769563275173, 34.44216644074961, 20.21026770857054, 34.64956061371704, 11.419918567262151, 43.815815265196164, 82.13422861042207, 103.05905279209668, 59.643842246560446, 11.398829138617895, 73.8813333819796, 9.978262832440187, 181.82797909026556, 45.900707548919016, 18.902789373225737, 29.108103334869753, 29.36367654465335, 81.93822123049952, 92.42703391891416, 12.743994024112705, 47.378965734826494, 42.43182598976282, 36.37527987245869, 32.30105165339232, 14.906785357038292, 54.915572674142965, 14.166490861339021, 25.088431203194485, 33.91001244214864, 16.26856874802537, 24.54398427000988, 34.513528010938636, 9.008275551594927, 47.93358983103175, 7.965975387853216, 53.66380768984136, 100.02830893015216, 31.443950721308106, 16.71457975793558, 30.554869710939954, 44.229402575794666, 28.23784577236463, 37.92002228005409, 134.92982582927598, 13.634219046618473, 6.037151002497854, 7.196742876940734, 39.03025387662727, 20.383054581068617, 5.9518541292540545, 55.664471933888365, 15.583494658917141, 98.17898329554271, 14.463878170154304, 33.178034652897914, 10.915163830334173, 13.43415104103584, 17.79899676057992, 13.046604898711877, 46.32520296792154, 5.1943229672323845, 102.14135967001151, 5.083705469146998, 7.601793124145362, 109.46114545841223, 41.08166934927216, 14.73004202368901, 36.38953047622431, 46.5668644267075, 18.940086984935633, 6.479026278506038, 5.6887060459038565, 51.56149891006894, 106.53286509745634, 65.77842121341409, 83.93887549947544, 52.06225557256331, 21.977347879631196, 49.81412408516242, 8.744610274457706, 9.679777803556357, 12.131805969490868, 24.381142559240377, 6.114739478737689, 44.660582522832556, 63.32757571563871, 40.454293826567024, 45.202330203864484, 119.84837594748151, 17.635448101683956, 79.62900653807276, 61.61877806919806, 9.517508905957817, 30.635652254340915, 55.00943937187818, 48.49318454087916, 11.354935297200328, 21.54299351488176, 14.71344133246656])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)