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 = 44631
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
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);
([5383681.044762453, 5486851.962709932, 5489862.366406029, 5506288.624976184, 5529634.46548929, 5539050.0, 5563139.0625, 5580432.5530950185, 5584407.317744498, 5591406.653186974, 5645119.88752154, 5671972.448297867, 5672721.122901813, 5672793.423401094, 5676503.741506127, 7472371.875, 7494773.4375, 7741332.114648296, 7905633.912907879, 7973671.875, 8051423.4375, 8062378.96754837, 8078821.875, 8096000.017306964, 8096342.070670892, 8194405.681362402, 8247617.7865091115, 8254151.250962422, 8279786.817486886, 8282298.398748103, 8301831.0984868165, 8328132.36191138, 8328185.287823488, 8341117.594365751, 8345853.125, 8352468.75, 8368473.374040067, 8390047.045633223, 8396740.92383427, 8400880.816948589, 8406801.847639125, 8407273.909804372, 8408454.189997494, 8409254.95306445, 8412396.875, 8418210.988261104, 8429811.64419305, 8430110.9375, 8431626.052871829, 8446686.153433934, 8448083.586142855, 8458441.835911524, 8477459.113405447, 8481320.718743376, 8482068.75, 8484519.940082027, 8511887.399392102, 8511888.75895977, 8511910.576071745, 8515596.249868423, 8516948.902157946, 8517583.953276124, 8519282.224165855, 8520436.89348007, 8524685.9375, 8525737.012410885, 8537892.524226941, 8549788.954347495, 8550252.795376489, 8554931.494422184, 8561137.30694786, 8564373.4375, 8565160.06247436, 8565624.865593413, 8571428.669967152, 8571893.49004606, 8595407.640588263, 8610235.39663774, 8623605.8324564, 8623809.375, 8633307.026311541, 8634233.445678512, 8643521.591209088, 8654639.0625, 8657015.517245347, 8660274.768958755, 8674064.0625, 8683140.568994233, 8691589.367791008, 8703729.985227674, 8711463.794085158, 8727120.725274649, 8753190.573053708, 8761806.720101288, 8768757.98861781, 8771012.5, 8771341.109744217, 8772735.9375, 8773679.680422276, 8812749.10086128, 8839688.898961443, 8869120.820232008, 8874437.5, 8919110.9375, 8928873.803628642, 8934900.056911346, 8961376.027240822, 8963005.947529057, 8974232.481286729, 9065445.775051778, 9065473.364702594, 9075726.506232396, 9087192.086072065, 9107902.648650317, 9111651.12151184, 9121648.195153203, 9132587.019574694, 9146861.85361935, 9148254.619826298, 9149686.96838597, 9150976.720190141, 9162452.612672495, 9162522.095173893, 9164117.1875, 9168890.365536895, 9196185.9375, 9199461.629369877, 9222717.76809548, 9226713.743067272, 9257403.348249415, 9271935.090662718, 9289777.758696781, 9320505.460436566, 9326139.98912526, 9337824.492383737, 9348742.157270337, 9348806.025540927, 9348838.27449593, 9373032.8125, 9418680.666526593, 9446362.435255349, 9506098.85090712, 9520864.657043803, 9542473.666570446, 9553799.907509554, 9553804.554163579, 9575084.375, 9611140.43495071, 9636563.661503851, 9685643.968646077, 9723789.497900428, 9731778.868107034, 9750042.260593165, 9776366.83733721, 9801112.40275392, 9970137.40149086, 9975140.13718615, 9981449.305887708, 10000713.5509766, 10087981.889982862, 10116395.3125, 10208134.437907524, 10261309.375, 10262059.318698183, 10262503.369595597, 10489490.137070881, 10823818.75, 11147079.34286972, 11197194.371697782, 11297604.965772588, 11415604.468439432, 11425188.398836654, 11453505.685059132, 11472029.542458858, 11472033.112463478, 11481588.323122542, 11515799.98674632, 11584938.384885881, 11614209.554057801, 11621771.503914611, 11638510.580261314, 11677477.957775038, 11718823.14218093, 11746279.698127085, 11788263.308112659, 11796010.738092309, 11806462.254655287, 11833089.718720257, 11841729.343045311, 11841737.338802962, 11842948.223671885, 11853229.23213742, 11882143.75, 11883288.109933238, 11883765.56107375, 11884898.12347216, 11920412.5, 11927912.449688874, 11963010.4615738, 11983791.502398372, 12027640.625, 12040315.625, 12052132.566807024, 12052448.84767458, 12103456.25, 12105827.160223356, 12110687.505555056, 12111838.017395232, 12122846.417291313, 12136962.262927527, 12179762.044893872, 12228355.029103732, 12230566.920847867, 12257601.5625, 12257662.973624876, 12257939.0625, 12261816.403802024, 12261967.1875, 12265918.601006588, 12273370.247633051, 12276457.8125, 12277385.9375, 12278899.843634441, 12280900.0, 12285693.75, 12289023.231946208, 12323715.09104629, 12372369.070176333, 12374457.080628065, 12394008.406284697, 12394960.551971804, 12395903.331995504, 12398574.944189105, 12412316.065973515, 12417440.160678573, 12417516.950041078, 12417663.936959542, 12417703.592391716, 12417923.595900122, 12418095.762616394, 12419004.6875, 12419681.490128439, 12433315.263298355, 12439270.416661495, 12447943.75, 12450848.954422608, 12451780.721558113, 12451935.9375, 12464445.3125, 12469728.125, 12473910.556637097, 12481879.593906946, 12482137.5, 12491466.93014759, 12491942.303452926, 12511313.622815387, 12513470.34121661, 12518046.557637416, 12520908.449008908, 12521289.240007376, 12529874.454700734, 12534448.4375, 12534863.29622389, 12534864.55625038, 12534928.94588097, 12535495.899102837, 12546612.461680347, 12589022.370184112, 12589310.877546435, 12597359.375, 12613439.0625, 12614360.801219897, 12614964.772742735, 12616940.057153683, 12620124.81012809, 12620828.310025219, 12634429.6875, 12634657.036896333, 12634804.208095154, 12636577.855647782, 12638700.92461684, 12656221.329638746, 12665582.448242357, 12674842.1875, 12689225.478178192, 12692450.66208592, 12693653.125, 12715343.327038446, 12741066.487928607, 12760223.66996845, 12760899.733454993, 12769603.125, 12769871.294140564, 12770490.625, 12770666.854400504, 12776462.682252087, 12778992.200844293, 12779291.645486562, 12779316.136366524, 12779316.797877394, 12780643.75, 12781524.117663695, 12782402.54407948, 12782901.522253087, 12789513.449028766, 12789809.375, 12789863.9822757, 12789991.890974984, 12790083.831888849, 12790224.897157764, 12790421.118482163, 12790590.364001205, 12791618.250874087, 12810260.55477475, 12841851.958973696, 12842155.490414195, 12851728.125, 12851908.050637772, 12851916.952660609, 12851932.726196842, 12852214.665659135, 12856996.875, 12857009.681247832, 12859878.125, 12911459.438472033, 12918053.125, 12922470.988982372, 12923425.359012874, 12929842.367232144, 12953130.565014623, 12957132.929712426, 12959601.174193012, 12984228.945521388, 12991303.258921422, 13001479.378637534, 13004236.977280397, 13018625.916904151, 13018808.79862545, 13031284.827209745, 13048701.5625, 13090351.160210079, 13091984.375, 13092739.604314474, 13113427.050060736, 13113647.564579442, 13113731.27271987, 13113859.069001658, 13113996.875, 13114106.278883323, 13114315.006146135, 13128600.535786744, 13132252.088386292, 13137966.631718377, 13138535.913640903, 13138976.51305906, 13144685.583460534, 13156920.3125, 13159508.825447151, 13160021.425757164, 13161018.75, 13165565.27233112, 13166476.472641673, 13171437.257872453, 13171829.6875, 13171913.406060476, 13173325.89765852, 13179714.300504135, 13181728.890550086, 13183140.727013277, 13193128.125, 13200031.147462364, 13200603.125, 13201436.291366167, 13201465.506644238, 13201535.09460321, 13202128.495914966, 13203294.91944622, 13208201.5625, 13209615.03685511, 13211090.625, 13213825.530624203, 13222167.1875, 13227714.0625, 13228213.235975109, 13229279.47713374, 13230374.873655668, 13230488.035893789, 13230735.727820003, 13231043.310051259, 13232303.125, 13232304.6875, 13233441.04765015, 13233939.0625, 13234012.56409577, 13234637.5, 13234841.620977448, 13234987.109755179, 13235459.998483457, 13238970.3125, 13240032.585193165, 13242127.958627723, 13244737.255784255, 13245991.86331115, 13249466.78948599, 13249476.5625, 13252984.037872314, 13253226.91718765, 13257065.625, 13258558.247261427, 13262509.375, 13263947.803526346, 13268104.272347478, 13270175.691306012, 13270233.828684293, 13271067.280988107, 13271130.123704096, 13271375.0, 13272777.68058914, 13277579.581243478, 13283069.872135075, 13284809.965013742, 13284890.747837864, 13284904.6875, 13285408.465846801, 13288589.331118006, 13289121.875, 13289364.076440057, 13298857.68607804, 13300259.254599316, 13309777.112525156, 13311440.22638135, 13312129.6875, 13312171.14703658, 13315673.952148283, 13318723.4375, 13318988.30187447, 13325912.79894322, 13326202.813410258, 13330275.750858426, 13330537.5, 13352509.35049753, 13353363.622773573, 13354491.69892755, 13355235.418826252, 13356076.5625, 13356242.1875, 13356256.018417524, 13356497.401655728, 13356555.479801718, 13357466.43899478, 13359094.77701268, 13361839.25921466, 13363285.985414933, 13364588.798648488, 13365807.417303577, 13366053.125, 13366774.681610804, 13367768.758429341, 13369529.500559935, 13372688.324359039, 13390309.729037382, 13394913.365920497, 13395734.375, 13403016.509421363, 13406451.773287395, 13406828.125, 13407282.8125, 13413640.167631801, 13414496.875, 13414944.380808342, 13415806.029002232, 13416599.809810488, 13416705.972592937, 13416795.3125, 13417752.480050143, 13451215.625, 13457627.363640659, 13458622.631201254, 13495919.529184608, 13498343.75, 13498624.713844024, 13501267.1875, 13501340.999178607, 13501351.528688684, 13501474.313245647, 13501513.882150255, 13501693.548303021, 13501994.463548863, 13503008.606622843, 13508486.703981655, 13509268.346107474, 13509395.432801638, 13509513.185692262, 13514967.30557341, 13515132.8125, 13515495.777514614, 13516338.331452392, 13518363.052675731, 13518479.401857765, 13519950.0, 13520326.22296951, 13520345.3125, 13520692.058711147, 13521192.314913472, 13521420.175450169, 13522623.4375, 13522861.107372355, 13523548.157982312, 13523558.098766066, 13525526.760520287, 13528236.818636442, 13528456.00141427, 13528489.964373536, 13528525.427929258, 13528584.375, 13528593.75, 13528628.065854294, 13528976.455892703, 13528997.697951375, 13529013.508215165, 13529017.048335724, 13529462.204737658, 13529566.480857406, 13529620.969373392, 13529664.0625, 13529880.445670625, 13529889.0625, 13529891.967048334, 13530030.833489316, 13530092.339386934, 13530233.56635394, 13530253.125, 13530547.973244116, 13530884.69060569, 13530909.310873134, 13531156.030504648, 13531467.997830518, 13531627.558298424, 13532001.291246073, 13532049.725865072, 13532789.0625, 13540268.856684333, 13542693.171394046, 13546248.990932532, 13547185.39053492, 13549851.5625, 13559840.625, 13569994.665648066, 13574578.125, 13575043.75, 13575615.582092978, 13575723.446410999, 13575769.899622886, 13577580.910374817, 13578234.422824312, 13579175.062271742, 13581905.462740423, 13592256.25, 13608903.617866216, 13608958.367367629, 13609023.551692815, 13609524.237973407, 13610113.366676442, 13610618.36188772, 13611265.589635825, 13611980.580754874, 13613040.54805014, 13615923.4375, 13616356.352613904, 13619054.6875, 13640594.881310185, 13640685.12584639, 13643120.3125, 13643740.625, 13644886.625008171, 13653631.25, 13654768.75, 13656056.25, 13656062.5, 13656895.3125, 13657976.215333568, 13665209.249248952, 13666164.442284223, 13667185.9375, 13669004.553364486, 13669585.9375, 13675439.79531118, 13681719.622566944, 13689021.03699859, 13700982.8125, 13710645.82728596, 13710668.570754783, 13712535.818767074, 13718965.625, 13719811.415615765, 13730679.513439741, 13731127.960771402, 13739046.639033642, 13740718.75, 13741256.598336613, 13741426.5625, 13741503.077883825, 13741667.905342087, 13741800.752571054, 13741873.293976322, 13742208.446173586, 13742317.627560964, 13742630.44213482, 13742886.91921938, 13743424.945748748, 13748710.9375, 13748755.880085066, 13749360.9375, 13750681.888491422, 13750807.291419141, 13750896.676898777, 13750945.3125, 13751091.866287153, 13751231.58743597, 13751643.140831435, 13753196.32627459, 13755041.02912287, 13765306.415959494, 13769663.41231989, 13776418.75, 13780059.375, 13786871.799150623, 13791056.030415297, 13797535.9375, 13797668.75, 13799146.97997691, 13801240.67618113, 13802110.9375, 13802373.152220607, 13802534.320643067, 13805824.91262414, 13809183.877771499, 13824096.27668972, 13827181.25, 13834464.68624394, 13843750.0, 13848682.10310223, 13864514.0625, 13870325.0, 13874414.33511923, 13958121.875, 13958128.326588327, 13966164.0625, 13989489.261239074, 13996202.18174114, 13996718.696810322, 13997017.216710838, 13997149.270203829, 13997417.486013254, 13997580.18861137, 13999195.842199633, 16151153.932876268, 16303824.401446866, 16310050.006624598, 16311489.348846188, 16314002.8819479, 16534967.1875, 16555548.034108104, 16557710.733835392, 16575161.201079143, 16576340.749089517, 16669987.5, 16757951.531643214, 16758321.798816111, 17017048.4375, 17072970.3125, 17075096.980426926, 17799691.368513584, 17816528.293696973, 17819282.8125, 17821076.36155924, 17823252.99989983, 17823611.944658846, 17823700.190986667, 17823734.375, 17823845.635083873, 17824367.1875, 17825046.226564556, 17825746.814298056, 17835500.47689009, 17872562.721318647, 17875434.695921335, 17884193.75, 17889813.604449682, 17889899.95576323, 17893942.6854181, 17894246.531632047, 17894329.6875, 17894754.05504746, 17894840.625, 17895156.122782037, 17895263.872287944, 17895372.213370606, 17896440.42501493, 17896503.66370858, 17896689.859263923, 17896984.375, 17897125.88164518, 17897196.4909078, 17897275.0, 17897399.277397953, 17897479.7777681, 17898042.996237863, 17898161.502203032, 17898409.137565706, 17898562.977935623, 17898617.81835034, 17898704.649626352, 17898762.5, 17898979.933250964, 17899466.909509413, 17900025.0, 17900426.5625, 17900690.408533037, 17905525.0, 17905612.846024487, 17905751.037447672, 17905851.372640047, 17906112.043524668, 17906120.10345065, 17906204.350562923, 17906251.139879674, 17906699.625946596, 17934904.08148324, 17935937.223002493, 17936632.749392968, 17937785.19514787, 17937810.846884124, 17938280.671354946, 17938376.5625, 17938458.981593326, 17938462.386071265, 17939277.012627866, 17939401.940347772, 17939828.35329952, 17940106.25, 17940137.545838587, 17940603.125, 17941175.755822275, 17941218.54853164, 17941224.58497691, 17941273.322541323, 17941613.706052404, 17941822.120781604, 17942913.557867546, 17942993.777593136, 17943836.20094106, 17944001.5625, 17944279.57592501, 17945014.125336733, 17945020.475943413, 17945206.438661687, 17945368.614360582, 18080732.8125, 18132865.625, 18153775.069363203, 18158015.625, 18172584.630472187, 18209618.30072586, 18232343.75, 18247740.07803402, 18254167.078206748, 18255318.412963144, 18258572.92865104, 18260312.5, 18260844.960370537, 18261262.445672207, 18261526.249479055, 18262080.812722553, 18262149.664169718, 18262833.80577655, 18264273.35095619, 18267588.85221302, 18268518.440274294, 18268551.73665904, 18268745.3125, 18271693.75, 18272641.230934642, 18273239.04839051, 18276787.5, 18279298.4375, 18283832.806911618, 18283960.869937893, 18284063.82995806, 18284544.255062867, 18284681.25, 18285294.4854697, 18288393.24990794, 18288518.942932937, 18288632.742796063, 18288856.721466456, 18289064.751959946, 18289665.156246547, 18289940.625, 18290034.09759279, 18290230.350100193, 18290293.83922589, 18291059.51242955, 18291234.30055519, 18291698.48458842, 18292468.68449386, 18292501.838257212, 18292811.97361679, 18293415.10237852, 18293442.1875, 18295237.143635634, 18297006.04178238, 18297748.727544412, 18298646.84229285, 18302607.060065173, 18303601.80901517, 18304679.05240937, 18305128.125, 18305151.301910006, 18306471.642233785, 18306812.998199515, 18307723.057603125, 18307837.1343332, 18307839.0625, 18307846.755932134, 18307907.79664539, 18307921.875, 18308143.75, 18308207.040457815, 18308548.4375, 18308596.875, 18308781.25, 18309466.491208855, 18309921.875, 18311528.05636104, 18312850.0, 18318264.246315047, 18318558.525483865, 18321748.4375, 18322751.515100632, 18322831.72866067, 18326666.237600513, 18327704.969708517, 18328071.990958765, 18328267.358890496, 18328418.555711154, 18328485.591250844, 18329812.147035014, 18333545.3125, 18334377.954033993, 18334607.45590183, 18335114.77858029, 18336280.206540797, 18336590.360509366, 18338207.8125, 18338864.0625, 18341574.586654764, 18344207.80404967, 18353365.09364355, 18401455.42819464, 18405554.6875, 18405605.10089337, 18412363.287206694, 18417200.201887902, 18423078.125, 18427176.5625, 18428358.684601896, 18430164.0625, 18433549.30970909, 18434377.677873142, 18434832.82662366, 18435186.37258192, 18435502.9606372, 18435776.552007016, 18436401.5625, 18437085.9375, 18437253.342057664, 18437390.41454483, 18437798.940603524, 18437873.904597502, 18438040.141429946, 18438299.261808928, 18438467.32995654, 18438495.283732004, 18438664.0625, 18438873.542777836, 18439290.620582074, 18439742.1875, 18439957.452042367, 18439966.788330603, 18440021.680493053, 18440277.996731207, 18440364.537338417, 18440377.911722716, 18440384.373136003, 18440420.655807134, 18444762.093485862, 18444835.015078895, 18445186.830580954, 18445521.80844536, 18445647.92246765, 18445724.390767436, 18445765.521985594, 18445897.96263181, 18445912.45962257, 18445981.64027554, 18446004.307725884, 18446063.748125117, 18446113.227842994, 18446129.042613912, 18446335.9375, 18446340.315728243, 18446399.140696783, 18446416.24641416, 18446638.73786791, 18446711.975608613, 18446728.372728333, 18446784.199840587, 18446848.517286573, 18446871.884868402, 18446873.4375, 18446894.619201966, 18446906.17041483, 18446933.519387096, 18446958.70230108, 18447026.21611355, 18447026.71871145, 18447034.040797148, 18447073.422507465, 18447090.625, 18447099.776544485, 18447522.147598393, 18447604.88384052, 18447655.738553174, 18448137.5, 18448188.888094123, 18448210.827168755, 18448657.8125, 18448882.976355523, 18449547.31515307, 18449876.057580557, 18451257.36481022, 18453097.07470928, 18453230.95691649, 18453292.24026106, 18453599.289317884, 18459219.676663034, 18459729.551483158, 18461421.257507663, 18461681.439868856, 18462012.74260792, 18462493.77852152, 18462845.84209085, 18462855.57750329, 18463073.177947115, 18463810.706511013, 18464026.458625715, 18467431.14197701, 18468785.929200068, 18473417.18346634, 18488231.06848, 18508332.675755188, 18511341.62045313, 18522585.9375, 18529999.41058623, 18530600.652456656, 18531138.963057116, 18531419.98289321, 18532348.246207304, 18532416.012045257, 18538325.93460717, 18540939.032111004, 18541315.25543596, 18541600.00642695, 18543032.36904501, 18543414.981010538, 18543499.809702568, 18544303.045557622, 18544745.726702224, 18544900.0, 18548103.125, 18548648.363985192, 18548796.62735914, 18548811.768196937, 18549594.524546746, 18549956.25, 18550402.94493526, 18550656.324462272, 18550709.375, 18551187.185461305, 18551463.285322104, 18551563.515956603, 18552291.839489557, 18552330.788642287, 18552549.178147152, 18552687.5, 18552733.44697339, 18552789.016925193, 18552825.191281963, 18553229.268862586, ...], [75.52242682522765, 6.551712650744267, 14.68285049738151, 22.139826404739985, 6.278699133513721, 28.853547911569034, 41.42802347434109, 10.623506441557234, 32.77599895459073, 75.34433544072282, 22.275613509935535, 12.160019777519592, 13.96469341942548, 13.827438284952258, 5.422577342193471, 36.84814795859694, 32.57569786671221, 44.78036435766515, 34.382258160669416, 42.64139983937456, 61.91854268145802, 68.13294020031177, 59.80015110808198, 61.7624255498313, 55.20383046464282, 78.85699053246722, 6.585277977176969, 26.662591408155244, 71.58749552544734, 27.7804863096613, 14.393835453289359, 110.65929687380185, 25.515890093488846, 15.018692875137567, 99.35032350836576, 52.86443264708759, 38.88300359341158, 15.634374224418703, 11.629303009552533, 38.694913857803456, 18.650327811045713, 17.109771328290055, 55.00365337352037, 11.569823852879784, 43.38578828666439, 5.2926578118821, 18.552155649070425, 30.46716549426342, 8.034289616564603, 113.19915966747104, 12.598922867290662, 50.0779983069788, 24.254035656985057, 11.828185623256383, 50.51418381776091, 7.473874296241306, 25.094032962887432, 7.497021830140761, 13.722289576151532, 20.329504581445487, 32.448930626235324, 84.92482665774753, 7.998171492686633, 69.12597272097939, 69.56909297861456, 13.360165535386749, 17.243430398328837, 26.555339157829813, 5.789986980283954, 7.694099804429389, 27.232070141876388, 47.764605754999586, 6.358147096653228, 5.804101814996796, 8.597444456364444, 41.718830884613254, 7.076982838892592, 6.660126814321357, 7.015853753905339, 54.11393025112097, 6.929062761511954, 5.996510837383937, 13.959946604939699, 30.884537340927878, 14.546111909164182, 8.1680644257706, 29.289465511376207, 14.732253723690992, 16.248547912353892, 36.699997610014385, 7.052636939664028, 5.356267755919434, 75.62782824689477, 17.097601146986918, 8.381960213574013, 32.178804368459446, 6.565862226921513, 83.57017498512838, 7.600679795433799, 12.351414621661576, 10.881357941224358, 12.026336200697166, 50.9117556234758, 36.438876071890306, 8.49017121761514, 15.162958375940873, 10.731785770523746, 161.76830815806915, 7.037025076742908, 11.936845059232878, 73.58414868057184, 39.58645270456029, 91.19835677061914, 29.975218838501377, 73.96865463615974, 109.03939759365824, 13.379978141153273, 82.60745924543525, 27.25387069389891, 25.68253674318818, 8.371764825798268, 18.510874597399766, 6.295422373393434, 78.7290951729886, 106.29669632812633, 43.3882256566361, 15.23750808190146, 17.738009326478764, 74.04383494376806, 11.49556115090563, 10.019952196418881, 96.03362778193481, 70.78829952339626, 10.260682949790299, 21.417458915489018, 26.504481054359175, 14.149841677038074, 5.4289313425284424, 69.00534437921422, 66.08997003670483, 54.50542422597418, 64.2130157443562, 20.696224701477682, 142.66897236990238, 14.6003207771606, 56.40041048828721, 33.06186065231863, 142.92360744964733, 28.86029557211049, 7.684280022557223, 70.68903490735532, 37.747760321003696, 11.243911000926376, 6.433566230505597, 26.739322607146885, 5.930872422124638, 23.244500802666593, 49.50477891060268, 72.27255361346232, 18.10950333195625, 64.33710635625434, 7.626149836260705, 99.37226059590553, 14.731169517068057, 15.963648240269123, 21.614364804881685, 85.22657273886637, 37.997653716180636, 6.155227844036638, 16.120019890805676, 49.42990158820041, 7.964257635154959, 20.86885142300636, 74.7439176272947, 5.074391920419823, 40.15479435014727, 71.1335765486525, 7.375259286245787, 9.487539270637885, 8.099628342404019, 23.046132325485175, 10.876010671350326, 23.810718789615308, 14.818781357860004, 12.679450704841065, 7.532673176001558, 24.47492921899711, 51.75438097421187, 29.994660549727833, 18.667759187862245, 14.184661185424504, 31.868151558401102, 62.088851399036756, 12.236760347480844, 14.703324879863501, 41.30850050089744, 42.53413115184402, 5.611266858385528, 20.902975084532763, 19.82603069848325, 99.06482169132347, 85.99455147194266, 24.470143711746534, 49.789065712934956, 74.4357493547621, 35.92026123862471, 6.0886770842268065, 20.137483780093397, 13.443383804227722, 24.589271240408177, 85.21819185005754, 11.707217790005522, 80.09653368122912, 43.636982594177155, 28.446517345935163, 43.40195160713002, 17.008360187884392, 30.289666878019407, 46.32812142628039, 47.41354945448497, 78.23648918229256, 47.369589143935585, 22.80605263465636, 52.12630380640476, 53.8313504305399, 57.79561914302876, 78.95888498218002, 78.79025380172402, 6.015160022043099, 39.19749845246311, 10.57421377128118, 15.793892475076525, 14.732967508608263, 16.9388478674137, 10.472014044539664, 18.141149988897908, 68.58129668841212, 16.62744367853737, 9.469029726226479, 83.26793549461831, 54.647919609086834, 9.543048466856073, 13.721473435621526, 6.7844813092160186, 45.003709795904804, 12.044799134549443, 66.11565685889279, 39.02113727023895, 87.3704488434798, 64.51211976390894, 86.81316326936903, 33.431860560987545, 43.120003911972425, 14.043648934330182, 30.547982644235898, 6.678790784213587, 5.099021838997407, 46.44832117816579, 7.299464999064241, 8.382731101411483, 21.052812477101007, 35.2737575624697, 24.67481758756042, 8.566160925193133, 5.26871596334784, 17.774674421593346, 20.81550475394182, 5.983721296719742, 27.392112239843616, 70.74201464266113, 49.17830767688234, 10.92117039468935, 12.454796735268928, 98.3778748089624, 9.175855297338908, 21.446510321549304, 42.72393574527629, 70.42870960944424, 21.70103787415596, 15.049746955719298, 10.258295021049415, 17.30192470694962, 20.46742475217922, 57.25490513843098, 92.84211041474931, 6.903299975719457, 44.4190259023586, 18.14286204040261, 19.70926211824945, 115.97520613705422, 28.521154273655327, 86.0106713815797, 5.188871719405675, 35.813935057523395, 31.979945463210385, 17.034021164578938, 24.771689029982685, 8.911616459553777, 17.329477706861343, 13.638862897864245, 50.9499268430335, 18.98352716693426, 10.326776867833878, 39.76687999106734, 38.42610181320487, 108.2303263331663, 9.26447787104061, 80.8806012720223, 5.507289718518539, 35.83228261295888, 48.69309097700531, 17.4907241340738, 121.55712187452133, 63.209598657294585, 96.37888339934617, 35.90963965063951, 30.455683013768635, 11.521515654982622, 16.866670577253505, 9.259479740012479, 20.189727560150654, 78.51515494172853, 25.28710527364759, 41.1353039891668, 5.710809479373037, 94.51504298827726, 28.409393505733377, 7.738461287878209, 29.613648450956486, 32.65998806596758, 6.1003736870152006, 22.684681660227902, 19.376964388444527, 82.5717478412492, 23.63819219870066, 10.39840284615661, 8.839296031067157, 86.86015850171775, 30.94583848696553, 42.69270191928628, 13.601861426064698, 69.53990255092556, 7.271554342864639, 33.94030891625822, 26.404548519066367, 133.2616414516275, 13.890746962564274, 40.4735285330529, 15.50640893679332, 5.32115379795213, 15.06670966202536, 30.103846148304743, 105.35420487257568, 28.061211081979195, 16.09516004472814, 97.37787082790297, 45.76124081314764, 13.192350796219621, 61.676880100468544, 45.74236879731082, 9.050001342061364, 44.92079718504428, 172.3502815663403, 29.213718697235393, 126.00103118002954, 27.771823442816313, 6.297744184538264, 103.97349140390288, 27.085142465127426, 106.07973851495208, 54.927136924519715, 55.51303705677944, 65.91521236340779, 19.81221715358874, 26.40754778412368, 5.634898984488618, 71.48665119103305, 35.187504808962316, 20.656675239027543, 62.55821573200253, 8.588637138971034, 59.928541103014055, 72.35396928024207, 40.189572210456774, 24.96744249933175, 93.12773853975466, 7.809286242032344, 14.198314598595026, 82.1239723429329, 31.261690445754983, 30.57061086767556, 12.382068692806415, 58.2197888638879, 25.533181802515077, 56.345261693824625, 20.85421355672794, 21.634694904331866, 50.978437496467386, 28.801820725031913, 10.790075150002995, 14.343154809653377, 74.66985645934545, 126.21236490566028, 65.10527159272712, 68.57587996942723, 9.061732499300957, 11.731386908632388, 43.167136923812976, 43.572941223792796, 99.49027273933946, 20.25322432164456, 32.50821120250204, 79.09185466323692, 5.152830574553266, 18.708966105826036, 5.048972212997019, 38.354960779149145, 13.480914393183344, 10.965585789447697, 72.47304202925334, 28.534571265857508, 158.37840415489734, 55.92588009439474, 69.45419004374148, 11.575242478142084, 80.26780643302365, 17.701057405012858, 5.928471037907755, 26.352290808649087, 17.45304223845617, 20.579658621256513, 58.501565542213775, 37.50974669529093, 7.26364405793259, 32.0043741709783, 43.23071856109483, 55.37762336649982, 182.4839018384686, 5.222983093971757, 137.66925210453732, 14.848932740705958, 22.11619786174396, 33.60765897089787, 6.203818746189866, 45.52964887418932, 31.733009613069942, 7.0618778312222945, 140.78000038571398, 45.79533574988916, 71.611525534187, 137.14578139506278, 7.675970043781297, 20.568422765063794, 24.2237381672395, 14.021194940227133, 28.708107256337993, 127.94405978626334, 190.92399259585653, 7.536995641437326, 8.776588702432935, 16.48767190573771, 80.90106070053513, 42.637111371299646, 6.635284997194107, 25.625608779224855, 31.223511713694602, 29.109271851527915, 28.241092364432983, 78.89604834868757, 5.48950897605909, 31.863205943457313, 7.072338258196392, 72.49419973078952, 48.821421853765834, 106.01932569879247, 110.45818062043406, 6.012348355729886, 33.06441963506505, 19.06659559570794, 73.78233163688321, 6.231709146282937, 59.75398413685523, 5.2130608319661755, 47.81842968216108, 50.086604125048275, 5.28554869910618, 57.5065598358174, 12.46218810940651, 137.62023566631265, 18.973774826510343, 30.08815334108837, 25.03201990194961, 30.83684941553355, 11.31741860787106, 65.96057183121191, 123.15352758172047, 28.83521135628621, 327.25413167082155, 7.503092769929314, 89.91871084289042, 23.25859463509323, 36.47595729419261, 8.219625943428996, 15.450456089007488, 14.443661799689389, 39.075924357535925, 11.404031729833072, 115.94524165813753, 50.243988598788064, 11.452005325527287, 19.856485175139245, 24.430481883493467, 7.965612709166349, 7.238675953712729, 63.76500242954576, 135.56877437557392, 77.20642836943358, 8.230994858205987, 103.87313114249203, 6.982990794332191, 115.94122673161345, 20.65557965298067, 10.177688130401943, 57.7451553832466, 49.2792529517287, 85.90561617602225, 40.2490013156724, 6.720278957223065, 8.077952182084786, 11.373715749304607, 5.266745612130739, 28.858925719777773, 140.16173728655343, 29.904279526443894, 16.125202517186423, 53.69676778557472, 103.69192205077873, 23.999751538107724, 13.999457077214258, 47.779870262681456, 89.22806301081619, 35.69529990554565, 143.26646387042098, 6.577493259339156, 14.505332593502876, 32.391445378711275, 31.27557428034746, 45.58497256612067, 60.95236227441005, 30.87447818723813, 98.380172730505, 112.96877220796414, 66.78718651965188, 23.257445669356834, 5.292566806403562, 7.137917784346677, 18.93886266796632, 33.33331370546737, 11.996658923550935, 5.856209059927519, 19.818423188028493, 38.972473491428545, 33.05317390935473, 13.643294317737043, 5.704511027536145, 142.71711920842512, 61.773252150308885, 42.066432578234995, 77.1677724514532, 104.86094357452383, 127.55177844019859, 139.63958033657917, 35.579456489166866, 123.09714482555081, 35.5046867582668, 93.07548477769149, 122.16239616520862, 29.24827389211697, 44.04142659384949, 58.11134712795274, 125.32292194998523, 20.055889510427356, 144.35112608327915, 38.27906713037619, 74.26963792978769, 55.54250870276416, 119.86169457945343, 211.21357628026246, 119.56894220978131, 52.02366035167253, 17.34907075581427, 115.17119292781429, 14.507476664901084, 37.79580933445038, 67.92071293270187, 25.504790788622547, 89.26873841418868, 8.165615443843771, 198.63164797922667, 9.644397575824598, 79.59150461778309, 38.39115152733663, 34.257910428465536, 32.52039500581021, 14.42129845445176, 29.80147171925501, 34.82821178463904, 10.062939139613794, 37.32776710346482, 17.748701188916712, 30.873323881826224, 7.027492800295442, 59.890094158463874, 52.80118622220836, 48.34886027754057, 5.922337366336772, 46.2597095841787, 23.483506712663072, 55.13083417309335, 13.942548694945595, 25.8290317125512, 81.42989667851087, 52.66778447783862, 39.761041326942006, 49.968294528141, 36.139236134271236, 45.51557769696946, 24.835319602569466, 52.094784484689754, 52.9010207990634, 15.357320439178533, 13.421140404490497, 31.20401471982088, 23.94061601627848, 9.285860383674718, 82.5999475581459, 6.668139216047422, 96.96629888996617, 96.9322008567994, 147.37466702954498, 60.115395876362896, 37.27524241568196, 54.07532234029902, 73.89224735559173, 37.11764081496098, 42.016713454844826, 84.978178639291, 39.957302887075876, 7.676735381130555, 15.116357688046854, 84.63292537074877, 15.054028738579659, 34.15257396225434, 9.597246649197453, 31.72710118990395, 103.37684504353778, 52.517661971158496, 32.20835981229051, 8.29008363353246, 16.158134922024022, 7.058993476802355, 62.990206710636826, 10.55074612034913, 9.164932546162033, 6.529218902233359, 51.41001344863828, 30.808781739271527, 11.079815778178272, 5.040262422394305, 32.750952338131064, 49.07167912298973, 16.813833378363213, 10.050606051691348, 5.249891433132565, 83.90924772053387, 14.227203798180563, 89.49382293694514, 6.657480230443988, 18.600739774520928, 47.43792917875914, 15.645676327906358, 29.387294234894895, 7.971062613902312, 29.8495122252027, 79.11579944454887, 78.90096378179518, 16.32419048840942, 106.64640452640653, 21.92203282183128, 14.775538328488011, 9.791173940974858, 57.010955261681715, 48.54494825253189, 38.581597001957526, 69.68189551911748, 41.547102896386534, 25.262318731905992, 16.40977876621404, 14.230373294787995, 17.328298950679663, 60.88261192100347, 81.19069810463478, 123.84805713640299, 20.862859502171723, 47.875392022658815, 6.627338162000852, 79.93970215273444, 87.47498648979355, 21.134175814955654, 24.584242857633804, 88.28932533433273, 5.564501598019677, 45.21688542597308, 51.33406644279027, 15.968944156742703, 10.719318790454079, 33.83354812924241, 56.36702392376048, 15.526507863884753, 29.41197072441908, 16.675955502940013, 21.24677793558074, 65.421400924614, 19.924469697211297, 10.815949119859956, 55.36632621452341, 44.729118164380175, 9.033954280851287, 25.13449459676432, 113.7043140537774, 86.95069966378, 80.37305004479009, 34.01331387087182, 36.88897269596863, 57.62308732108886, 6.218741671130832, 10.9541790017557, 16.98831396437925, 16.607997589387317, 14.06136091671496, 41.269422719861176, 12.11780856222074, 55.0951492106045, 18.89678439612553, 25.09659675916958, 13.56496306347085, 15.874863316285277, 13.737183037869624, 13.661000006885804, 50.56867327634541, 15.047734977074093, 18.826786820725793, 105.14825808777786, 14.532633948948957, 50.07283951485674, 104.50202884459914, 6.51707794721855, 136.27268288228626, 60.67727820250532, 74.87216768511334, 25.43751380541952, 39.44219678449951, 24.638255521425087, 58.58316838342928, 79.92165486539938, 49.48270493527281, 81.00025564231157, 9.061801232118285, 47.40134175220294, 29.63791064350603, 7.0318650182879425, 39.56495839929332, 35.5823111764471, 90.5791032622819, 91.4618978990556, 59.40008317553144, 43.07150330810609, 14.196314367430551, 23.627299147798084, 126.23653280274908, 88.69293212461042, 51.64625243036884, 48.70192073733453, 49.155876771694054, 74.62912490497985, 43.262202684456085, 14.920251815747742, 80.885982971978, 24.652446011659947, 6.868708949353676, 56.77326786790929, 91.65060714325085, 70.85742086031736, 6.10839500167432, 13.572269583299807, 7.783150001897664, 12.068778962644192, 21.810568914809483, 49.57174422851897, 73.98232325707855, 99.07095613448965, 7.145105633168391, 6.284719157619654, 38.78382581284632, 74.67386890869552, 14.69757371723297, 9.575988742609171, 10.393843686983065, 51.09194717693086, 45.253310787380116, 23.056510357209014, 31.2400096347106, 11.61349379597796, 123.6175376463202, 65.22671047021305, 15.972449738858673, 36.77868523216589, 70.56927066495996, 24.267550588235387, 45.83749597917499, 26.032772968976452, 10.581648457856945, 13.709652345765765, 36.85340286170545, 9.232713737522715, 14.88142147549547, 53.9535748220234, 80.7286905111281, 10.103030131110454, 65.46307219619906, 29.71417240052331, 90.69036926380537, 5.186038193820136, 99.63985423684998, 56.32219326464083, 64.77660979708794, 49.57059211835261, 18.111373230637206, 36.538114936107725, 63.79645537634211, 9.771824016778739, 7.292368162848584, 133.0173679057968, 71.92742728849096, 15.637651014655173, 44.42971321669768, 23.17741867636597, 13.747625058397684, 52.56298041090099, 25.55188471031875, 15.27981103211375, 5.568873655576024, 8.581550854042959, 15.86443331334846, 80.49296247998448, 46.5788509063195, 77.29514362398741, 41.096120100216915, 251.16220802107406, 37.351928435086805, 103.93596372253346, 5.175102374410095, 77.75791287744481, 33.32905206148441, 95.13891666987865, 64.78450456256957, 7.952371957687334, 39.478465571971796, 20.845151844146955, 31.08573864738856, 46.496698650153654, 8.530885609038345, 29.809433395710194, 47.906760480206295, 29.672025400634062, 51.39389001990298, 105.65998906355034, 14.19576025680595, 5.852167682642188, 89.56972706100782, 14.590465968156298, 12.717832726678257, 9.454834773424496, 98.1253302821997, 44.05606361369438, 11.296349084273949, 28.43794825545128, 35.912187145691824, 25.61199864911039, 22.561580584801092, 25.198775592777796, 23.915728619595008, 5.556578459993596, 24.92553676389939, 7.602563646112298, 51.05436492704987, 7.018540063339569, 18.11012074150442, 33.51807792237741, 8.25169293089522, 13.285063650512352, 6.970011162992154, 24.539989096567457, 103.79269650636707, 11.065175393200272, 137.88339075086108, 84.63951805645334, 8.127044673596775, 43.46109667003737, 33.75582309576573, 62.27194236186217, 13.880630885616736, 18.528250993000768, 5.9954127600215905, 76.53447264116987, 13.259736520235723, 21.173493541728327, 38.220323840155984, 11.254751310480305, 49.972953501770874, 84.6775555876544, 12.826090414989613, 57.877453217283474, 12.44730840633279, 20.78078099769625, 36.47772506889894, 15.572330566350129, 49.70015130104925, 5.705804506484396, 56.33616124104583, 85.7136724805142, 21.392294071819336, 15.746685303420048, 13.294804823332893, 43.410636625657745, 25.499543514526803, 6.076700399139865, 129.9240518315047, 9.473904898666497, 16.934433431469913, 27.264294977941795, 69.83892642267148, 15.761568585408083, 23.8394940888152, 9.37641766869343, 54.166222805962775, 33.56806733133476, 5.286904201685445, 48.76560004726913, 40.15473085026659, 9.545327436356866, 172.50180559451127, 7.267989769027907, 84.37018016905776, 8.153930451659411, 24.674191544789007, 70.61883435856245, 26.557506253009382, 14.909968055207584, 11.121407784587065, 63.058175622511264, 134.24713928434312, 81.53557646022655, 44.75519852013106, 33.06751612218898, 18.190164965822156, 9.248710622093622, 23.37978210403, 42.089765776598405, 20.88890035624301, 12.988913529169954, 104.28258128091949, 5.515409287457019, 28.22256655335145, 22.07634230359726, 22.136898573589598, 14.262616756551537, 27.046294440400114, 11.843355054947873, 58.70158078154453, 31.727715715758336, 27.150372901357184, 19.362813194217274, 49.89932940390939, 6.615772845391048, 43.46538700029604, 17.202415222560383, 23.26488435256968, 33.169334879794654, 59.93205211984587, 19.111865505021296, 28.699534021189006, 23.156253648609475, 38.36199241432751, 10.047435878707478, 126.33372884036662, 18.07417468747766, 147.23389714969244, 74.32490445570792, 5.278328655942922, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5383681.044762453, 5486851.962709932, 5489862.366406029, 5506288.624976184, 5529634.46548929, 5539050.0, 5563139.0625, 5580432.5530950185, 5584407.317744498, 5591406.653186974, 5645119.88752154, 5671972.448297867, 5672721.122901813, 5672793.423401094, 5676503.741506127, 7472371.875, 7494773.4375, 7741332.114648296, 7905633.912907879, 7973671.875, 8051423.4375, 8062378.96754837, 8078821.875, 8096000.017306964, 8096342.070670892, 8194405.681362402, 8247617.7865091115, 8254151.250962422, 8279786.817486886, 8282298.398748103, 8301831.0984868165, 8328132.36191138, 8328185.287823488, 8341117.594365751, 8345853.125, 8352468.75, 8368473.374040067, 8390047.045633223, 8396740.92383427, 8400880.816948589, 8406801.847639125, 8407273.909804372, 8408454.189997494, 8409254.95306445, 8412396.875, 8418210.988261104, 8429811.64419305, 8430110.9375, 8431626.052871829, 8446686.153433934, 8448083.586142855, 8458441.835911524, 8477459.113405447, 8481320.718743376, 8482068.75, 8484519.940082027, 8511887.399392102, 8511888.75895977, 8511910.576071745, 8515596.249868423, 8516948.902157946, 8517583.953276124, 8519282.224165855, 8520436.89348007, 8524685.9375, 8525737.012410885, 8537892.524226941, 8549788.954347495, 8550252.795376489, 8554931.494422184, 8561137.30694786, 8564373.4375, 8565160.06247436, 8565624.865593413, 8571428.669967152, 8571893.49004606, 8595407.640588263, 8610235.39663774, 8623605.8324564, 8623809.375, 8633307.026311541, 8634233.445678512, 8643521.591209088, 8654639.0625, 8657015.517245347, 8660274.768958755, 8674064.0625, 8683140.568994233, 8691589.367791008, 8703729.985227674, 8711463.794085158, 8727120.725274649, 8753190.573053708, 8761806.720101288, 8768757.98861781, 8771012.5, 8771341.109744217, 8772735.9375, 8773679.680422276, 8812749.10086128, 8839688.898961443, 8869120.820232008, 8874437.5, 8919110.9375, 8928873.803628642, 8934900.056911346, 8961376.027240822, 8963005.947529057, 8974232.481286729, 9065445.775051778, 9065473.364702594, 9075726.506232396, 9087192.086072065, 9107902.648650317, 9111651.12151184, 9121648.195153203, 9132587.019574694, 9146861.85361935, 9148254.619826298, 9149686.96838597, 9150976.720190141, 9162452.612672495, 9162522.095173893, 9164117.1875, 9168890.365536895, 9196185.9375, 9199461.629369877, 9222717.76809548, 9226713.743067272, 9257403.348249415, 9271935.090662718, 9289777.758696781, 9320505.460436566, 9326139.98912526, 9337824.492383737, 9348742.157270337, 9348806.025540927, 9348838.27449593, 9373032.8125, 9418680.666526593, 9446362.435255349, 9506098.85090712, 9520864.657043803, 9542473.666570446, 9553799.907509554, 9553804.554163579, 9575084.375, 9611140.43495071, 9636563.661503851, 9685643.968646077, 9723789.497900428, 9731778.868107034, 9750042.260593165, 9776366.83733721, 9801112.40275392, 9970137.40149086, 9975140.13718615, 9981449.305887708, 10000713.5509766, 10087981.889982862, 10116395.3125, 10208134.437907524, 10261309.375, 10262059.318698183, 10262503.369595597, 10489490.137070881, 10823818.75, 11147079.34286972, 11197194.371697782, 11297604.965772588, 11415604.468439432, 11425188.398836654, 11453505.685059132, 11472029.542458858, 11472033.112463478, 11481588.323122542, 11515799.98674632, 11584938.384885881, 11614209.554057801, 11621771.503914611, 11638510.580261314, 11677477.957775038, 11718823.14218093, 11746279.698127085, 11788263.308112659, 11796010.738092309, 11806462.254655287, 11833089.718720257, 11841729.343045311, 11841737.338802962, 11842948.223671885, 11853229.23213742, 11882143.75, 11883288.109933238, 11883765.56107375, 11884898.12347216, 11920412.5, 11927912.449688874, 11963010.4615738, 11983791.502398372, 12027640.625, 12040315.625, 12052132.566807024, 12052448.84767458, 12103456.25, 12105827.160223356, 12110687.505555056, 12111838.017395232, 12122846.417291313, 12136962.262927527, 12179762.044893872, 12228355.029103732, 12230566.920847867, 12257601.5625, 12257662.973624876, 12257939.0625, 12261816.403802024, 12261967.1875, 12265918.601006588, 12273370.247633051, 12276457.8125, 12277385.9375, 12278899.843634441, 12280900.0, 12285693.75, 12289023.231946208, 12323715.09104629, 12372369.070176333, 12374457.080628065, 12394008.406284697, 12394960.551971804, 12395903.331995504, 12398574.944189105, 12412316.065973515, 12417440.160678573, 12417516.950041078, 12417663.936959542, 12417703.592391716, 12417923.595900122, 12418095.762616394, 12419004.6875, 12419681.490128439, 12433315.263298355, 12439270.416661495, 12447943.75, 12450848.954422608, 12451780.721558113, 12451935.9375, 12464445.3125, 12469728.125, 12473910.556637097, 12481879.593906946, 12482137.5, 12491466.93014759, 12491942.303452926, 12511313.622815387, 12513470.34121661, 12518046.557637416, 12520908.449008908, 12521289.240007376, 12529874.454700734, 12534448.4375, 12534863.29622389, 12534864.55625038, 12534928.94588097, 12535495.899102837, 12546612.461680347, 12589022.370184112, 12589310.877546435, 12597359.375, 12613439.0625, 12614360.801219897, 12614964.772742735, 12616940.057153683, 12620124.81012809, 12620828.310025219, 12634429.6875, 12634657.036896333, 12634804.208095154, 12636577.855647782, 12638700.92461684, 12656221.329638746, 12665582.448242357, 12674842.1875, 12689225.478178192, 12692450.66208592, 12693653.125, 12715343.327038446, 12741066.487928607, 12760223.66996845, 12760899.733454993, 12769603.125, 12769871.294140564, 12770490.625, 12770666.854400504, 12776462.682252087, 12778992.200844293, 12779291.645486562, 12779316.136366524, 12779316.797877394, 12780643.75, 12781524.117663695, 12782402.54407948, 12782901.522253087, 12789513.449028766, 12789809.375, 12789863.9822757, 12789991.890974984, 12790083.831888849, 12790224.897157764, 12790421.118482163, 12790590.364001205, 12791618.250874087, 12810260.55477475, 12841851.958973696, 12842155.490414195, 12851728.125, 12851908.050637772, 12851916.952660609, 12851932.726196842, 12852214.665659135, 12856996.875, 12857009.681247832, 12859878.125, 12911459.438472033, 12918053.125, 12922470.988982372, 12923425.359012874, 12929842.367232144, 12953130.565014623, 12957132.929712426, 12959601.174193012, 12984228.945521388, 12991303.258921422, 13001479.378637534, 13004236.977280397, 13018625.916904151, 13018808.79862545, 13031284.827209745, 13048701.5625, 13090351.160210079, 13091984.375, 13092739.604314474, 13113427.050060736, 13113647.564579442, 13113731.27271987, 13113859.069001658, 13113996.875, 13114106.278883323, 13114315.006146135, 13128600.535786744, 13132252.088386292, 13137966.631718377, 13138535.913640903, 13138976.51305906, 13144685.583460534, 13156920.3125, 13159508.825447151, 13160021.425757164, 13161018.75, 13165565.27233112, 13166476.472641673, 13171437.257872453, 13171829.6875, 13171913.406060476, 13173325.89765852, 13179714.300504135, 13181728.890550086, 13183140.727013277, 13193128.125, 13200031.147462364, 13200603.125, 13201436.291366167, 13201465.506644238, 13201535.09460321, 13202128.495914966, 13203294.91944622, 13208201.5625, 13209615.03685511, 13211090.625, 13213825.530624203, 13222167.1875, 13227714.0625, 13228213.235975109, 13229279.47713374, 13230374.873655668, 13230488.035893789, 13230735.727820003, 13231043.310051259, 13232303.125, 13232304.6875, 13233441.04765015, 13233939.0625, 13234012.56409577, 13234637.5, 13234841.620977448, 13234987.109755179, 13235459.998483457, 13238970.3125, 13240032.585193165, 13242127.958627723, 13244737.255784255, 13245991.86331115, 13249466.78948599, 13249476.5625, 13252984.037872314, 13253226.91718765, 13257065.625, 13258558.247261427, 13262509.375, 13263947.803526346, 13268104.272347478, 13270175.691306012, 13270233.828684293, 13271067.280988107, 13271130.123704096, 13271375.0, 13272777.68058914, 13277579.581243478, 13283069.872135075, 13284809.965013742, 13284890.747837864, 13284904.6875, 13285408.465846801, 13288589.331118006, 13289121.875, 13289364.076440057, 13298857.68607804, 13300259.254599316, 13309777.112525156, 13311440.22638135, 13312129.6875, 13312171.14703658, 13315673.952148283, 13318723.4375, 13318988.30187447, 13325912.79894322, 13326202.813410258, 13330275.750858426, 13330537.5, 13352509.35049753, 13353363.622773573, 13354491.69892755, 13355235.418826252, 13356076.5625, 13356242.1875, 13356256.018417524, 13356497.401655728, 13356555.479801718, 13357466.43899478, 13359094.77701268, 13361839.25921466, 13363285.985414933, 13364588.798648488, 13365807.417303577, 13366053.125, 13366774.681610804, 13367768.758429341, 13369529.500559935, 13372688.324359039, 13390309.729037382, 13394913.365920497, 13395734.375, 13403016.509421363, 13406451.773287395, 13406828.125, 13407282.8125, 13413640.167631801, 13414496.875, 13414944.380808342, 13415806.029002232, 13416599.809810488, 13416705.972592937, 13416795.3125, 13417752.480050143, 13451215.625, 13457627.363640659, 13458622.631201254, 13495919.529184608, 13498343.75, 13498624.713844024, 13501267.1875, 13501340.999178607, 13501351.528688684, 13501474.313245647, 13501513.882150255, 13501693.548303021, 13501994.463548863, 13503008.606622843, 13508486.703981655, 13509268.346107474, 13509395.432801638, 13509513.185692262, 13514967.30557341, 13515132.8125, 13515495.777514614, 13516338.331452392, 13518363.052675731, 13518479.401857765, 13519950.0, 13520326.22296951, 13520345.3125, 13520692.058711147, 13521192.314913472, 13521420.175450169, 13522623.4375, 13522861.107372355, 13523548.157982312, 13523558.098766066, 13525526.760520287, 13528236.818636442, 13528456.00141427, 13528489.964373536, 13528525.427929258, 13528584.375, 13528593.75, 13528628.065854294, 13528976.455892703, 13528997.697951375, 13529013.508215165, 13529017.048335724, 13529462.204737658, 13529566.480857406, 13529620.969373392, 13529664.0625, 13529880.445670625, 13529889.0625, 13529891.967048334, 13530030.833489316, 13530092.339386934, 13530233.56635394, 13530253.125, 13530547.973244116, 13530884.69060569, 13530909.310873134, 13531156.030504648, 13531467.997830518, 13531627.558298424, 13532001.291246073, 13532049.725865072, 13532789.0625, 13540268.856684333, 13542693.171394046, 13546248.990932532, 13547185.39053492, 13549851.5625, 13559840.625, 13569994.665648066, 13574578.125, 13575043.75, 13575615.582092978, 13575723.446410999, 13575769.899622886, 13577580.910374817, 13578234.422824312, 13579175.062271742, 13581905.462740423, 13592256.25, 13608903.617866216, 13608958.367367629, 13609023.551692815, 13609524.237973407, 13610113.366676442, 13610618.36188772, 13611265.589635825, 13611980.580754874, 13613040.54805014, 13615923.4375, 13616356.352613904, 13619054.6875, 13640594.881310185, 13640685.12584639, 13643120.3125, 13643740.625, 13644886.625008171, 13653631.25, 13654768.75, 13656056.25, 13656062.5, 13656895.3125, 13657976.215333568, 13665209.249248952, 13666164.442284223, 13667185.9375, 13669004.553364486, 13669585.9375, 13675439.79531118, 13681719.622566944, 13689021.03699859, 13700982.8125, 13710645.82728596, 13710668.570754783, 13712535.818767074, 13718965.625, 13719811.415615765, 13730679.513439741, 13731127.960771402, 13739046.639033642, 13740718.75, 13741256.598336613, 13741426.5625, 13741503.077883825, 13741667.905342087, 13741800.752571054, 13741873.293976322, 13742208.446173586, 13742317.627560964, 13742630.44213482, 13742886.91921938, 13743424.945748748, 13748710.9375, 13748755.880085066, 13749360.9375, 13750681.888491422, 13750807.291419141, 13750896.676898777, 13750945.3125, 13751091.866287153, 13751231.58743597, 13751643.140831435, 13753196.32627459, 13755041.02912287, 13765306.415959494, 13769663.41231989, 13776418.75, 13780059.375, 13786871.799150623, 13791056.030415297, 13797535.9375, 13797668.75, 13799146.97997691, 13801240.67618113, 13802110.9375, 13802373.152220607, 13802534.320643067, 13805824.91262414, 13809183.877771499, 13824096.27668972, 13827181.25, 13834464.68624394, 13843750.0, 13848682.10310223, 13864514.0625, 13870325.0, 13874414.33511923, 13958121.875, 13958128.326588327, 13966164.0625, 13989489.261239074, 13996202.18174114, 13996718.696810322, 13997017.216710838, 13997149.270203829, 13997417.486013254, 13997580.18861137, 13999195.842199633, 16151153.932876268, 16303824.401446866, 16310050.006624598, 16311489.348846188, 16314002.8819479, 16534967.1875, 16555548.034108104, 16557710.733835392, 16575161.201079143, 16576340.749089517, 16669987.5, 16757951.531643214, 16758321.798816111, 17017048.4375, 17072970.3125, 17075096.980426926, 17799691.368513584, 17816528.293696973, 17819282.8125, 17821076.36155924, 17823252.99989983, 17823611.944658846, 17823700.190986667, 17823734.375, 17823845.635083873, 17824367.1875, 17825046.226564556, 17825746.814298056, 17835500.47689009, 17872562.721318647, 17875434.695921335, 17884193.75, 17889813.604449682, 17889899.95576323, 17893942.6854181, 17894246.531632047, 17894329.6875, 17894754.05504746, 17894840.625, 17895156.122782037, 17895263.872287944, 17895372.213370606, 17896440.42501493, 17896503.66370858, 17896689.859263923, 17896984.375, 17897125.88164518, 17897196.4909078, 17897275.0, 17897399.277397953, 17897479.7777681, 17898042.996237863, 17898161.502203032, 17898409.137565706, 17898562.977935623, 17898617.81835034, 17898704.649626352, 17898762.5, 17898979.933250964, 17899466.909509413, 17900025.0, 17900426.5625, 17900690.408533037, 17905525.0, 17905612.846024487, 17905751.037447672, 17905851.372640047, 17906112.043524668, 17906120.10345065, 17906204.350562923, 17906251.139879674, 17906699.625946596, 17934904.08148324, 17935937.223002493, 17936632.749392968, 17937785.19514787, 17937810.846884124, 17938280.671354946, 17938376.5625, 17938458.981593326, 17938462.386071265, 17939277.012627866, 17939401.940347772, 17939828.35329952, 17940106.25, 17940137.545838587, 17940603.125, 17941175.755822275, 17941218.54853164, 17941224.58497691, 17941273.322541323, 17941613.706052404, 17941822.120781604, 17942913.557867546, 17942993.777593136, 17943836.20094106, 17944001.5625, 17944279.57592501, 17945014.125336733, 17945020.475943413, 17945206.438661687, 17945368.614360582, 18080732.8125, 18132865.625, 18153775.069363203, 18158015.625, 18172584.630472187, 18209618.30072586, 18232343.75, 18247740.07803402, 18254167.078206748, 18255318.412963144, 18258572.92865104, 18260312.5, 18260844.960370537, 18261262.445672207, 18261526.249479055, 18262080.812722553, 18262149.664169718, 18262833.80577655, 18264273.35095619, 18267588.85221302, 18268518.440274294, 18268551.73665904, 18268745.3125, 18271693.75, 18272641.230934642, 18273239.04839051, 18276787.5, 18279298.4375, 18283832.806911618, 18283960.869937893, 18284063.82995806, 18284544.255062867, 18284681.25, 18285294.4854697, 18288393.24990794, 18288518.942932937, 18288632.742796063, 18288856.721466456, 18289064.751959946, 18289665.156246547, 18289940.625, 18290034.09759279, 18290230.350100193, 18290293.83922589, 18291059.51242955, 18291234.30055519, 18291698.48458842, 18292468.68449386, 18292501.838257212, 18292811.97361679, 18293415.10237852, 18293442.1875, 18295237.143635634, 18297006.04178238, 18297748.727544412, 18298646.84229285, 18302607.060065173, 18303601.80901517, 18304679.05240937, 18305128.125, 18305151.301910006, 18306471.642233785, 18306812.998199515, 18307723.057603125, 18307837.1343332, 18307839.0625, 18307846.755932134, 18307907.79664539, 18307921.875, 18308143.75, 18308207.040457815, 18308548.4375, 18308596.875, 18308781.25, 18309466.491208855, 18309921.875, 18311528.05636104, 18312850.0, 18318264.246315047, 18318558.525483865, 18321748.4375, 18322751.515100632, 18322831.72866067, 18326666.237600513, 18327704.969708517, 18328071.990958765, 18328267.358890496, 18328418.555711154, 18328485.591250844, 18329812.147035014, 18333545.3125, 18334377.954033993, 18334607.45590183, 18335114.77858029, 18336280.206540797, 18336590.360509366, 18338207.8125, 18338864.0625, 18341574.586654764, 18344207.80404967, 18353365.09364355, 18401455.42819464, 18405554.6875, 18405605.10089337, 18412363.287206694, 18417200.201887902, 18423078.125, 18427176.5625, 18428358.684601896, 18430164.0625, 18433549.30970909, 18434377.677873142, 18434832.82662366, 18435186.37258192, 18435502.9606372, 18435776.552007016, 18436401.5625, 18437085.9375, 18437253.342057664, 18437390.41454483, 18437798.940603524, 18437873.904597502, 18438040.141429946, 18438299.261808928, 18438467.32995654, 18438495.283732004, 18438664.0625, 18438873.542777836, 18439290.620582074, 18439742.1875, 18439957.452042367, 18439966.788330603, 18440021.680493053, 18440277.996731207, 18440364.537338417, 18440377.911722716, 18440384.373136003, 18440420.655807134, 18444762.093485862, 18444835.015078895, 18445186.830580954, 18445521.80844536, 18445647.92246765, 18445724.390767436, 18445765.521985594, 18445897.96263181, 18445912.45962257, 18445981.64027554, 18446004.307725884, 18446063.748125117, 18446113.227842994, 18446129.042613912, 18446335.9375, 18446340.315728243, 18446399.140696783, 18446416.24641416, 18446638.73786791, 18446711.975608613, 18446728.372728333, 18446784.199840587, 18446848.517286573, 18446871.884868402, 18446873.4375, 18446894.619201966, 18446906.17041483, 18446933.519387096, 18446958.70230108, 18447026.21611355, 18447026.71871145, 18447034.040797148, 18447073.422507465, 18447090.625, 18447099.776544485, 18447522.147598393, 18447604.88384052, 18447655.738553174, 18448137.5, 18448188.888094123, 18448210.827168755, 18448657.8125, 18448882.976355523, 18449547.31515307, 18449876.057580557, 18451257.36481022, 18453097.07470928, 18453230.95691649, 18453292.24026106, 18453599.289317884, 18459219.676663034, 18459729.551483158, 18461421.257507663, 18461681.439868856, 18462012.74260792, 18462493.77852152, 18462845.84209085, 18462855.57750329, 18463073.177947115, 18463810.706511013, 18464026.458625715, 18467431.14197701, 18468785.929200068, 18473417.18346634, 18488231.06848, 18508332.675755188, 18511341.62045313, 18522585.9375, 18529999.41058623, 18530600.652456656, 18531138.963057116, 18531419.98289321, 18532348.246207304, 18532416.012045257, 18538325.93460717, 18540939.032111004, 18541315.25543596, 18541600.00642695, 18543032.36904501, 18543414.981010538, 18543499.809702568, 18544303.045557622, 18544745.726702224, 18544900.0, 18548103.125, 18548648.363985192, 18548796.62735914, 18548811.768196937, 18549594.524546746, 18549956.25, 18550402.94493526, 18550656.324462272, 18550709.375, 18551187.185461305, 18551463.285322104, 18551563.515956603, 18552291.839489557, 18552330.788642287, 18552549.178147152, 18552687.5, 18552733.44697339, 18552789.016925193, 18552825.191281963, 18553229.268862586, ...], [75.52242682522765, 6.551712650744267, 14.68285049738151, 22.139826404739985, 6.278699133513721, 28.853547911569034, 41.42802347434109, 10.623506441557234, 32.77599895459073, 75.34433544072282, 22.275613509935535, 12.160019777519592, 13.96469341942548, 13.827438284952258, 5.422577342193471, 36.84814795859694, 32.57569786671221, 44.78036435766515, 34.382258160669416, 42.64139983937456, 61.91854268145802, 68.13294020031177, 59.80015110808198, 61.7624255498313, 55.20383046464282, 78.85699053246722, 6.585277977176969, 26.662591408155244, 71.58749552544734, 27.7804863096613, 14.393835453289359, 110.65929687380185, 25.515890093488846, 15.018692875137567, 99.35032350836576, 52.86443264708759, 38.88300359341158, 15.634374224418703, 11.629303009552533, 38.694913857803456, 18.650327811045713, 17.109771328290055, 55.00365337352037, 11.569823852879784, 43.38578828666439, 5.2926578118821, 18.552155649070425, 30.46716549426342, 8.034289616564603, 113.19915966747104, 12.598922867290662, 50.0779983069788, 24.254035656985057, 11.828185623256383, 50.51418381776091, 7.473874296241306, 25.094032962887432, 7.497021830140761, 13.722289576151532, 20.329504581445487, 32.448930626235324, 84.92482665774753, 7.998171492686633, 69.12597272097939, 69.56909297861456, 13.360165535386749, 17.243430398328837, 26.555339157829813, 5.789986980283954, 7.694099804429389, 27.232070141876388, 47.764605754999586, 6.358147096653228, 5.804101814996796, 8.597444456364444, 41.718830884613254, 7.076982838892592, 6.660126814321357, 7.015853753905339, 54.11393025112097, 6.929062761511954, 5.996510837383937, 13.959946604939699, 30.884537340927878, 14.546111909164182, 8.1680644257706, 29.289465511376207, 14.732253723690992, 16.248547912353892, 36.699997610014385, 7.052636939664028, 5.356267755919434, 75.62782824689477, 17.097601146986918, 8.381960213574013, 32.178804368459446, 6.565862226921513, 83.57017498512838, 7.600679795433799, 12.351414621661576, 10.881357941224358, 12.026336200697166, 50.9117556234758, 36.438876071890306, 8.49017121761514, 15.162958375940873, 10.731785770523746, 161.76830815806915, 7.037025076742908, 11.936845059232878, 73.58414868057184, 39.58645270456029, 91.19835677061914, 29.975218838501377, 73.96865463615974, 109.03939759365824, 13.379978141153273, 82.60745924543525, 27.25387069389891, 25.68253674318818, 8.371764825798268, 18.510874597399766, 6.295422373393434, 78.7290951729886, 106.29669632812633, 43.3882256566361, 15.23750808190146, 17.738009326478764, 74.04383494376806, 11.49556115090563, 10.019952196418881, 96.03362778193481, 70.78829952339626, 10.260682949790299, 21.417458915489018, 26.504481054359175, 14.149841677038074, 5.4289313425284424, 69.00534437921422, 66.08997003670483, 54.50542422597418, 64.2130157443562, 20.696224701477682, 142.66897236990238, 14.6003207771606, 56.40041048828721, 33.06186065231863, 142.92360744964733, 28.86029557211049, 7.684280022557223, 70.68903490735532, 37.747760321003696, 11.243911000926376, 6.433566230505597, 26.739322607146885, 5.930872422124638, 23.244500802666593, 49.50477891060268, 72.27255361346232, 18.10950333195625, 64.33710635625434, 7.626149836260705, 99.37226059590553, 14.731169517068057, 15.963648240269123, 21.614364804881685, 85.22657273886637, 37.997653716180636, 6.155227844036638, 16.120019890805676, 49.42990158820041, 7.964257635154959, 20.86885142300636, 74.7439176272947, 5.074391920419823, 40.15479435014727, 71.1335765486525, 7.375259286245787, 9.487539270637885, 8.099628342404019, 23.046132325485175, 10.876010671350326, 23.810718789615308, 14.818781357860004, 12.679450704841065, 7.532673176001558, 24.47492921899711, 51.75438097421187, 29.994660549727833, 18.667759187862245, 14.184661185424504, 31.868151558401102, 62.088851399036756, 12.236760347480844, 14.703324879863501, 41.30850050089744, 42.53413115184402, 5.611266858385528, 20.902975084532763, 19.82603069848325, 99.06482169132347, 85.99455147194266, 24.470143711746534, 49.789065712934956, 74.4357493547621, 35.92026123862471, 6.0886770842268065, 20.137483780093397, 13.443383804227722, 24.589271240408177, 85.21819185005754, 11.707217790005522, 80.09653368122912, 43.636982594177155, 28.446517345935163, 43.40195160713002, 17.008360187884392, 30.289666878019407, 46.32812142628039, 47.41354945448497, 78.23648918229256, 47.369589143935585, 22.80605263465636, 52.12630380640476, 53.8313504305399, 57.79561914302876, 78.95888498218002, 78.79025380172402, 6.015160022043099, 39.19749845246311, 10.57421377128118, 15.793892475076525, 14.732967508608263, 16.9388478674137, 10.472014044539664, 18.141149988897908, 68.58129668841212, 16.62744367853737, 9.469029726226479, 83.26793549461831, 54.647919609086834, 9.543048466856073, 13.721473435621526, 6.7844813092160186, 45.003709795904804, 12.044799134549443, 66.11565685889279, 39.02113727023895, 87.3704488434798, 64.51211976390894, 86.81316326936903, 33.431860560987545, 43.120003911972425, 14.043648934330182, 30.547982644235898, 6.678790784213587, 5.099021838997407, 46.44832117816579, 7.299464999064241, 8.382731101411483, 21.052812477101007, 35.2737575624697, 24.67481758756042, 8.566160925193133, 5.26871596334784, 17.774674421593346, 20.81550475394182, 5.983721296719742, 27.392112239843616, 70.74201464266113, 49.17830767688234, 10.92117039468935, 12.454796735268928, 98.3778748089624, 9.175855297338908, 21.446510321549304, 42.72393574527629, 70.42870960944424, 21.70103787415596, 15.049746955719298, 10.258295021049415, 17.30192470694962, 20.46742475217922, 57.25490513843098, 92.84211041474931, 6.903299975719457, 44.4190259023586, 18.14286204040261, 19.70926211824945, 115.97520613705422, 28.521154273655327, 86.0106713815797, 5.188871719405675, 35.813935057523395, 31.979945463210385, 17.034021164578938, 24.771689029982685, 8.911616459553777, 17.329477706861343, 13.638862897864245, 50.9499268430335, 18.98352716693426, 10.326776867833878, 39.76687999106734, 38.42610181320487, 108.2303263331663, 9.26447787104061, 80.8806012720223, 5.507289718518539, 35.83228261295888, 48.69309097700531, 17.4907241340738, 121.55712187452133, 63.209598657294585, 96.37888339934617, 35.90963965063951, 30.455683013768635, 11.521515654982622, 16.866670577253505, 9.259479740012479, 20.189727560150654, 78.51515494172853, 25.28710527364759, 41.1353039891668, 5.710809479373037, 94.51504298827726, 28.409393505733377, 7.738461287878209, 29.613648450956486, 32.65998806596758, 6.1003736870152006, 22.684681660227902, 19.376964388444527, 82.5717478412492, 23.63819219870066, 10.39840284615661, 8.839296031067157, 86.86015850171775, 30.94583848696553, 42.69270191928628, 13.601861426064698, 69.53990255092556, 7.271554342864639, 33.94030891625822, 26.404548519066367, 133.2616414516275, 13.890746962564274, 40.4735285330529, 15.50640893679332, 5.32115379795213, 15.06670966202536, 30.103846148304743, 105.35420487257568, 28.061211081979195, 16.09516004472814, 97.37787082790297, 45.76124081314764, 13.192350796219621, 61.676880100468544, 45.74236879731082, 9.050001342061364, 44.92079718504428, 172.3502815663403, 29.213718697235393, 126.00103118002954, 27.771823442816313, 6.297744184538264, 103.97349140390288, 27.085142465127426, 106.07973851495208, 54.927136924519715, 55.51303705677944, 65.91521236340779, 19.81221715358874, 26.40754778412368, 5.634898984488618, 71.48665119103305, 35.187504808962316, 20.656675239027543, 62.55821573200253, 8.588637138971034, 59.928541103014055, 72.35396928024207, 40.189572210456774, 24.96744249933175, 93.12773853975466, 7.809286242032344, 14.198314598595026, 82.1239723429329, 31.261690445754983, 30.57061086767556, 12.382068692806415, 58.2197888638879, 25.533181802515077, 56.345261693824625, 20.85421355672794, 21.634694904331866, 50.978437496467386, 28.801820725031913, 10.790075150002995, 14.343154809653377, 74.66985645934545, 126.21236490566028, 65.10527159272712, 68.57587996942723, 9.061732499300957, 11.731386908632388, 43.167136923812976, 43.572941223792796, 99.49027273933946, 20.25322432164456, 32.50821120250204, 79.09185466323692, 5.152830574553266, 18.708966105826036, 5.048972212997019, 38.354960779149145, 13.480914393183344, 10.965585789447697, 72.47304202925334, 28.534571265857508, 158.37840415489734, 55.92588009439474, 69.45419004374148, 11.575242478142084, 80.26780643302365, 17.701057405012858, 5.928471037907755, 26.352290808649087, 17.45304223845617, 20.579658621256513, 58.501565542213775, 37.50974669529093, 7.26364405793259, 32.0043741709783, 43.23071856109483, 55.37762336649982, 182.4839018384686, 5.222983093971757, 137.66925210453732, 14.848932740705958, 22.11619786174396, 33.60765897089787, 6.203818746189866, 45.52964887418932, 31.733009613069942, 7.0618778312222945, 140.78000038571398, 45.79533574988916, 71.611525534187, 137.14578139506278, 7.675970043781297, 20.568422765063794, 24.2237381672395, 14.021194940227133, 28.708107256337993, 127.94405978626334, 190.92399259585653, 7.536995641437326, 8.776588702432935, 16.48767190573771, 80.90106070053513, 42.637111371299646, 6.635284997194107, 25.625608779224855, 31.223511713694602, 29.109271851527915, 28.241092364432983, 78.89604834868757, 5.48950897605909, 31.863205943457313, 7.072338258196392, 72.49419973078952, 48.821421853765834, 106.01932569879247, 110.45818062043406, 6.012348355729886, 33.06441963506505, 19.06659559570794, 73.78233163688321, 6.231709146282937, 59.75398413685523, 5.2130608319661755, 47.81842968216108, 50.086604125048275, 5.28554869910618, 57.5065598358174, 12.46218810940651, 137.62023566631265, 18.973774826510343, 30.08815334108837, 25.03201990194961, 30.83684941553355, 11.31741860787106, 65.96057183121191, 123.15352758172047, 28.83521135628621, 327.25413167082155, 7.503092769929314, 89.91871084289042, 23.25859463509323, 36.47595729419261, 8.219625943428996, 15.450456089007488, 14.443661799689389, 39.075924357535925, 11.404031729833072, 115.94524165813753, 50.243988598788064, 11.452005325527287, 19.856485175139245, 24.430481883493467, 7.965612709166349, 7.238675953712729, 63.76500242954576, 135.56877437557392, 77.20642836943358, 8.230994858205987, 103.87313114249203, 6.982990794332191, 115.94122673161345, 20.65557965298067, 10.177688130401943, 57.7451553832466, 49.2792529517287, 85.90561617602225, 40.2490013156724, 6.720278957223065, 8.077952182084786, 11.373715749304607, 5.266745612130739, 28.858925719777773, 140.16173728655343, 29.904279526443894, 16.125202517186423, 53.69676778557472, 103.69192205077873, 23.999751538107724, 13.999457077214258, 47.779870262681456, 89.22806301081619, 35.69529990554565, 143.26646387042098, 6.577493259339156, 14.505332593502876, 32.391445378711275, 31.27557428034746, 45.58497256612067, 60.95236227441005, 30.87447818723813, 98.380172730505, 112.96877220796414, 66.78718651965188, 23.257445669356834, 5.292566806403562, 7.137917784346677, 18.93886266796632, 33.33331370546737, 11.996658923550935, 5.856209059927519, 19.818423188028493, 38.972473491428545, 33.05317390935473, 13.643294317737043, 5.704511027536145, 142.71711920842512, 61.773252150308885, 42.066432578234995, 77.1677724514532, 104.86094357452383, 127.55177844019859, 139.63958033657917, 35.579456489166866, 123.09714482555081, 35.5046867582668, 93.07548477769149, 122.16239616520862, 29.24827389211697, 44.04142659384949, 58.11134712795274, 125.32292194998523, 20.055889510427356, 144.35112608327915, 38.27906713037619, 74.26963792978769, 55.54250870276416, 119.86169457945343, 211.21357628026246, 119.56894220978131, 52.02366035167253, 17.34907075581427, 115.17119292781429, 14.507476664901084, 37.79580933445038, 67.92071293270187, 25.504790788622547, 89.26873841418868, 8.165615443843771, 198.63164797922667, 9.644397575824598, 79.59150461778309, 38.39115152733663, 34.257910428465536, 32.52039500581021, 14.42129845445176, 29.80147171925501, 34.82821178463904, 10.062939139613794, 37.32776710346482, 17.748701188916712, 30.873323881826224, 7.027492800295442, 59.890094158463874, 52.80118622220836, 48.34886027754057, 5.922337366336772, 46.2597095841787, 23.483506712663072, 55.13083417309335, 13.942548694945595, 25.8290317125512, 81.42989667851087, 52.66778447783862, 39.761041326942006, 49.968294528141, 36.139236134271236, 45.51557769696946, 24.835319602569466, 52.094784484689754, 52.9010207990634, 15.357320439178533, 13.421140404490497, 31.20401471982088, 23.94061601627848, 9.285860383674718, 82.5999475581459, 6.668139216047422, 96.96629888996617, 96.9322008567994, 147.37466702954498, 60.115395876362896, 37.27524241568196, 54.07532234029902, 73.89224735559173, 37.11764081496098, 42.016713454844826, 84.978178639291, 39.957302887075876, 7.676735381130555, 15.116357688046854, 84.63292537074877, 15.054028738579659, 34.15257396225434, 9.597246649197453, 31.72710118990395, 103.37684504353778, 52.517661971158496, 32.20835981229051, 8.29008363353246, 16.158134922024022, 7.058993476802355, 62.990206710636826, 10.55074612034913, 9.164932546162033, 6.529218902233359, 51.41001344863828, 30.808781739271527, 11.079815778178272, 5.040262422394305, 32.750952338131064, 49.07167912298973, 16.813833378363213, 10.050606051691348, 5.249891433132565, 83.90924772053387, 14.227203798180563, 89.49382293694514, 6.657480230443988, 18.600739774520928, 47.43792917875914, 15.645676327906358, 29.387294234894895, 7.971062613902312, 29.8495122252027, 79.11579944454887, 78.90096378179518, 16.32419048840942, 106.64640452640653, 21.92203282183128, 14.775538328488011, 9.791173940974858, 57.010955261681715, 48.54494825253189, 38.581597001957526, 69.68189551911748, 41.547102896386534, 25.262318731905992, 16.40977876621404, 14.230373294787995, 17.328298950679663, 60.88261192100347, 81.19069810463478, 123.84805713640299, 20.862859502171723, 47.875392022658815, 6.627338162000852, 79.93970215273444, 87.47498648979355, 21.134175814955654, 24.584242857633804, 88.28932533433273, 5.564501598019677, 45.21688542597308, 51.33406644279027, 15.968944156742703, 10.719318790454079, 33.83354812924241, 56.36702392376048, 15.526507863884753, 29.41197072441908, 16.675955502940013, 21.24677793558074, 65.421400924614, 19.924469697211297, 10.815949119859956, 55.36632621452341, 44.729118164380175, 9.033954280851287, 25.13449459676432, 113.7043140537774, 86.95069966378, 80.37305004479009, 34.01331387087182, 36.88897269596863, 57.62308732108886, 6.218741671130832, 10.9541790017557, 16.98831396437925, 16.607997589387317, 14.06136091671496, 41.269422719861176, 12.11780856222074, 55.0951492106045, 18.89678439612553, 25.09659675916958, 13.56496306347085, 15.874863316285277, 13.737183037869624, 13.661000006885804, 50.56867327634541, 15.047734977074093, 18.826786820725793, 105.14825808777786, 14.532633948948957, 50.07283951485674, 104.50202884459914, 6.51707794721855, 136.27268288228626, 60.67727820250532, 74.87216768511334, 25.43751380541952, 39.44219678449951, 24.638255521425087, 58.58316838342928, 79.92165486539938, 49.48270493527281, 81.00025564231157, 9.061801232118285, 47.40134175220294, 29.63791064350603, 7.0318650182879425, 39.56495839929332, 35.5823111764471, 90.5791032622819, 91.4618978990556, 59.40008317553144, 43.07150330810609, 14.196314367430551, 23.627299147798084, 126.23653280274908, 88.69293212461042, 51.64625243036884, 48.70192073733453, 49.155876771694054, 74.62912490497985, 43.262202684456085, 14.920251815747742, 80.885982971978, 24.652446011659947, 6.868708949353676, 56.77326786790929, 91.65060714325085, 70.85742086031736, 6.10839500167432, 13.572269583299807, 7.783150001897664, 12.068778962644192, 21.810568914809483, 49.57174422851897, 73.98232325707855, 99.07095613448965, 7.145105633168391, 6.284719157619654, 38.78382581284632, 74.67386890869552, 14.69757371723297, 9.575988742609171, 10.393843686983065, 51.09194717693086, 45.253310787380116, 23.056510357209014, 31.2400096347106, 11.61349379597796, 123.6175376463202, 65.22671047021305, 15.972449738858673, 36.77868523216589, 70.56927066495996, 24.267550588235387, 45.83749597917499, 26.032772968976452, 10.581648457856945, 13.709652345765765, 36.85340286170545, 9.232713737522715, 14.88142147549547, 53.9535748220234, 80.7286905111281, 10.103030131110454, 65.46307219619906, 29.71417240052331, 90.69036926380537, 5.186038193820136, 99.63985423684998, 56.32219326464083, 64.77660979708794, 49.57059211835261, 18.111373230637206, 36.538114936107725, 63.79645537634211, 9.771824016778739, 7.292368162848584, 133.0173679057968, 71.92742728849096, 15.637651014655173, 44.42971321669768, 23.17741867636597, 13.747625058397684, 52.56298041090099, 25.55188471031875, 15.27981103211375, 5.568873655576024, 8.581550854042959, 15.86443331334846, 80.49296247998448, 46.5788509063195, 77.29514362398741, 41.096120100216915, 251.16220802107406, 37.351928435086805, 103.93596372253346, 5.175102374410095, 77.75791287744481, 33.32905206148441, 95.13891666987865, 64.78450456256957, 7.952371957687334, 39.478465571971796, 20.845151844146955, 31.08573864738856, 46.496698650153654, 8.530885609038345, 29.809433395710194, 47.906760480206295, 29.672025400634062, 51.39389001990298, 105.65998906355034, 14.19576025680595, 5.852167682642188, 89.56972706100782, 14.590465968156298, 12.717832726678257, 9.454834773424496, 98.1253302821997, 44.05606361369438, 11.296349084273949, 28.43794825545128, 35.912187145691824, 25.61199864911039, 22.561580584801092, 25.198775592777796, 23.915728619595008, 5.556578459993596, 24.92553676389939, 7.602563646112298, 51.05436492704987, 7.018540063339569, 18.11012074150442, 33.51807792237741, 8.25169293089522, 13.285063650512352, 6.970011162992154, 24.539989096567457, 103.79269650636707, 11.065175393200272, 137.88339075086108, 84.63951805645334, 8.127044673596775, 43.46109667003737, 33.75582309576573, 62.27194236186217, 13.880630885616736, 18.528250993000768, 5.9954127600215905, 76.53447264116987, 13.259736520235723, 21.173493541728327, 38.220323840155984, 11.254751310480305, 49.972953501770874, 84.6775555876544, 12.826090414989613, 57.877453217283474, 12.44730840633279, 20.78078099769625, 36.47772506889894, 15.572330566350129, 49.70015130104925, 5.705804506484396, 56.33616124104583, 85.7136724805142, 21.392294071819336, 15.746685303420048, 13.294804823332893, 43.410636625657745, 25.499543514526803, 6.076700399139865, 129.9240518315047, 9.473904898666497, 16.934433431469913, 27.264294977941795, 69.83892642267148, 15.761568585408083, 23.8394940888152, 9.37641766869343, 54.166222805962775, 33.56806733133476, 5.286904201685445, 48.76560004726913, 40.15473085026659, 9.545327436356866, 172.50180559451127, 7.267989769027907, 84.37018016905776, 8.153930451659411, 24.674191544789007, 70.61883435856245, 26.557506253009382, 14.909968055207584, 11.121407784587065, 63.058175622511264, 134.24713928434312, 81.53557646022655, 44.75519852013106, 33.06751612218898, 18.190164965822156, 9.248710622093622, 23.37978210403, 42.089765776598405, 20.88890035624301, 12.988913529169954, 104.28258128091949, 5.515409287457019, 28.22256655335145, 22.07634230359726, 22.136898573589598, 14.262616756551537, 27.046294440400114, 11.843355054947873, 58.70158078154453, 31.727715715758336, 27.150372901357184, 19.362813194217274, 49.89932940390939, 6.615772845391048, 43.46538700029604, 17.202415222560383, 23.26488435256968, 33.169334879794654, 59.93205211984587, 19.111865505021296, 28.699534021189006, 23.156253648609475, 38.36199241432751, 10.047435878707478, 126.33372884036662, 18.07417468747766, 147.23389714969244, 74.32490445570792, 5.278328655942922, ...])
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);
([5383681.044762453, 5486851.962709932, 5489862.366406029, 5506288.624976184, 5529634.46548929, 5539050.0, 5563139.0625, 5580432.5530950185, 5584407.317744498, 5591406.653186974, 5645119.88752154, 5671972.448297867, 5672721.122901813, 5672793.423401094, 5676503.741506127, 7472371.875, 7494773.4375, 7741332.114648296, 7905633.912907879, 7973671.875, 8051423.4375, 8062378.96754837, 8078821.875, 8096000.017306964, 8096342.070670892, 8194405.681362402, 8247617.7865091115, 8254151.250962422, 8279786.817486886, 8282298.398748103, 8301831.0984868165, 8328132.36191138, 8328185.287823488, 8341117.594365751, 8345853.125, 8352468.75, 8368473.374040067, 8390047.045633223, 8396740.92383427, 8400880.816948589, 8406801.847639125, 8407273.909804372, 8408454.189997494, 8409254.95306445, 8412396.875, 8418210.988261104, 8429811.64419305, 8430110.9375, 8431626.052871829, 8446686.153433934, 8448083.586142855, 8458441.835911524, 8477459.113405447, 8481320.718743376, 8482068.75, 8484519.940082027, 8511887.399392102, 8511888.75895977, 8511910.576071745, 8515596.249868423, 8516948.902157946, 8517583.953276124, 8519282.224165855, 8520436.89348007, 8524685.9375, 8525737.012410885, 8537892.524226941, 8549788.954347495, 8550252.795376489, 8554931.494422184, 8561137.30694786, 8564373.4375, 8565160.06247436, 8565624.865593413, 8571428.669967152, 8571893.49004606, 8595407.640588263, 8610235.39663774, 8623605.8324564, 8623809.375, 8633307.026311541, 8634233.445678512, 8643521.591209088, 8654639.0625, 8657015.517245347, 8660274.768958755, 8674064.0625, 8683140.568994233, 8691589.367791008, 8703729.985227674, 8711463.794085158, 8727120.725274649, 8753190.573053708, 8761806.720101288, 8768757.98861781, 8771012.5, 8771341.109744217, 8772735.9375, 8773679.680422276, 8812749.10086128, 8839688.898961443, 8869120.820232008, 8874437.5, 8919110.9375, 8928873.803628642, 8934900.056911346, 8961376.027240822, 8963005.947529057, 8974232.481286729, 9065445.775051778, 9065473.364702594, 9075726.506232396, 9087192.086072065, 9107902.648650317, 9111651.12151184, 9121648.195153203, 9132587.019574694, 9146861.85361935, 9148254.619826298, 9149686.96838597, 9150976.720190141, 9162452.612672495, 9162522.095173893, 9164117.1875, 9168890.365536895, 9196185.9375, 9199461.629369877, 9222717.76809548, 9226713.743067272, 9257403.348249415, 9271935.090662718, 9289777.758696781, 9320505.460436566, 9326139.98912526, 9337824.492383737, 9348742.157270337, 9348806.025540927, 9348838.27449593, 9373032.8125, 9418680.666526593, 9446362.435255349, 9506098.85090712, 9520864.657043803, 9542473.666570446, 9553799.907509554, 9553804.554163579, 9575084.375, 9611140.43495071, 9636563.661503851, 9685643.968646077, 9723789.497900428, 9731778.868107034, 9750042.260593165, 9776366.83733721, 9801112.40275392, 9970137.40149086, 9975140.13718615, 9981449.305887708, 10000713.5509766, 10087981.889982862, 10116395.3125, 10208134.437907524, 10261309.375, 10262059.318698183, 10262503.369595597, 10489490.137070881, 10823818.75, 11147079.34286972, 11197194.371697782, 11297604.965772588, 11415604.468439432, 11425188.398836654, 11453505.685059132, 11472029.542458858, 11472033.112463478, 11481588.323122542, 11515799.98674632, 11584938.384885881, 11614209.554057801, 11621771.503914611, 11638510.580261314, 11677477.957775038, 11718823.14218093, 11746279.698127085, 11788263.308112659, 11796010.738092309, 11806462.254655287, 11833089.718720257, 11841729.343045311, 11841737.338802962, 11842948.223671885, 11853229.23213742, 11882143.75, 11883288.109933238, 11883765.56107375, 11884898.12347216, 11920412.5, 11927912.449688874, 11963010.4615738, 11983791.502398372, 12027640.625, 12040315.625, 12052132.566807024, 12052448.84767458, 12103456.25, 12105827.160223356, 12110687.505555056, 12111838.017395232, 12122846.417291313, 12136962.262927527, 12179762.044893872, 12228355.029103732, 12230566.920847867, 12257601.5625, 12257662.973624876, 12257939.0625, 12261816.403802024, 12261967.1875, 12265918.601006588, 12273370.247633051, 12276457.8125, 12277385.9375, 12278899.843634441, 12280900.0, 12285693.75, 12289023.231946208, 12323715.09104629, 12372369.070176333, 12374457.080628065, 12394008.406284697, 12394960.551971804, 12395903.331995504, 12398574.944189105, 12412316.065973515, 12417440.160678573, 12417516.950041078, 12417663.936959542, 12417703.592391716, 12417923.595900122, 12418095.762616394, 12419004.6875, 12419681.490128439, 12433315.263298355, 12439270.416661495, 12447943.75, 12450848.954422608, 12451780.721558113, 12451935.9375, 12464445.3125, 12469728.125, 12473910.556637097, 12481879.593906946, 12482137.5, 12491466.93014759, 12491942.303452926, 12511313.622815387, 12513470.34121661, 12518046.557637416, 12520908.449008908, 12521289.240007376, 12529874.454700734, 12534448.4375, 12534863.29622389, 12534864.55625038, 12534928.94588097, 12535495.899102837, 12546612.461680347, 12589022.370184112, 12589310.877546435, 12597359.375, 12613439.0625, 12614360.801219897, 12614964.772742735, 12616940.057153683, 12620124.81012809, 12620828.310025219, 12634429.6875, 12634657.036896333, 12634804.208095154, 12636577.855647782, 12638700.92461684, 12656221.329638746, 12665582.448242357, 12674842.1875, 12689225.478178192, 12692450.66208592, 12693653.125, 12715343.327038446, 12741066.487928607, 12760223.66996845, 12760899.733454993, 12769603.125, 12769871.294140564, 12770490.625, 12770666.854400504, 12776462.682252087, 12778992.200844293, 12779291.645486562, 12779316.136366524, 12779316.797877394, 12780643.75, 12781524.117663695, 12782402.54407948, 12782901.522253087, 12789513.449028766, 12789809.375, 12789863.9822757, 12789991.890974984, 12790083.831888849, 12790224.897157764, 12790421.118482163, 12790590.364001205, 12791618.250874087, 12810260.55477475, 12841851.958973696, 12842155.490414195, 12851728.125, 12851908.050637772, 12851916.952660609, 12851932.726196842, 12852214.665659135, 12856996.875, 12857009.681247832, 12859878.125, 12911459.438472033, 12918053.125, 12922470.988982372, 12923425.359012874, 12929842.367232144, 12953130.565014623, 12957132.929712426, 12959601.174193012, 12984228.945521388, 12991303.258921422, 13001479.378637534, 13004236.977280397, 13018625.916904151, 13018808.79862545, 13031284.827209745, 13048701.5625, 13090351.160210079, 13091984.375, 13092739.604314474, 13113427.050060736, 13113647.564579442, 13113731.27271987, 13113859.069001658, 13113996.875, 13114106.278883323, 13114315.006146135, 13128600.535786744, 13132252.088386292, 13137966.631718377, 13138535.913640903, 13138976.51305906, 13144685.583460534, 13156920.3125, 13159508.825447151, 13160021.425757164, 13161018.75, 13165565.27233112, 13166476.472641673, 13171437.257872453, 13171829.6875, 13171913.406060476, 13173325.89765852, 13179714.300504135, 13181728.890550086, 13183140.727013277, 13193128.125, 13200031.147462364, 13200603.125, 13201436.291366167, 13201465.506644238, 13201535.09460321, 13202128.495914966, 13203294.91944622, 13208201.5625, 13209615.03685511, 13211090.625, 13213825.530624203, 13222167.1875, 13227714.0625, 13228213.235975109, 13229279.47713374, 13230374.873655668, 13230488.035893789, 13230735.727820003, 13231043.310051259, 13232303.125, 13232304.6875, 13233441.04765015, 13233939.0625, 13234012.56409577, 13234637.5, 13234841.620977448, 13234987.109755179, 13235459.998483457, 13238970.3125, 13240032.585193165, 13242127.958627723, 13244737.255784255, 13245991.86331115, 13249466.78948599, 13249476.5625, 13252984.037872314, 13253226.91718765, 13257065.625, 13258558.247261427, 13262509.375, 13263947.803526346, 13268104.272347478, 13270175.691306012, 13270233.828684293, 13271067.280988107, 13271130.123704096, 13271375.0, 13272777.68058914, 13277579.581243478, 13283069.872135075, 13284809.965013742, 13284890.747837864, 13284904.6875, 13285408.465846801, 13288589.331118006, 13289121.875, 13289364.076440057, 13298857.68607804, 13300259.254599316, 13309777.112525156, 13311440.22638135, 13312129.6875, 13312171.14703658, 13315673.952148283, 13318723.4375, 13318988.30187447, 13325912.79894322, 13326202.813410258, 13330275.750858426, 13330537.5, 13352509.35049753, 13353363.622773573, 13354491.69892755, 13355235.418826252, 13356076.5625, 13356242.1875, 13356256.018417524, 13356497.401655728, 13356555.479801718, 13357466.43899478, 13359094.77701268, 13361839.25921466, 13363285.985414933, 13364588.798648488, 13365807.417303577, 13366053.125, 13366774.681610804, 13367768.758429341, 13369529.500559935, 13372688.324359039, 13390309.729037382, 13394913.365920497, 13395734.375, 13403016.509421363, 13406451.773287395, 13406828.125, 13407282.8125, 13413640.167631801, 13414496.875, 13414944.380808342, 13415806.029002232, 13416599.809810488, 13416705.972592937, 13416795.3125, 13417752.480050143, 13451215.625, 13457627.363640659, 13458622.631201254, 13495919.529184608, 13498343.75, 13498624.713844024, 13501267.1875, 13501340.999178607, 13501351.528688684, 13501474.313245647, 13501513.882150255, 13501693.548303021, 13501994.463548863, 13503008.606622843, 13508486.703981655, 13509268.346107474, 13509395.432801638, 13509513.185692262, 13514967.30557341, 13515132.8125, 13515495.777514614, 13516338.331452392, 13518363.052675731, 13518479.401857765, 13519950.0, 13520326.22296951, 13520345.3125, 13520692.058711147, 13521192.314913472, 13521420.175450169, 13522623.4375, 13522861.107372355, 13523548.157982312, 13523558.098766066, 13525526.760520287, 13528236.818636442, 13528456.00141427, 13528489.964373536, 13528525.427929258, 13528584.375, 13528593.75, 13528628.065854294, 13528976.455892703, 13528997.697951375, 13529013.508215165, 13529017.048335724, 13529462.204737658, 13529566.480857406, 13529620.969373392, 13529664.0625, 13529880.445670625, 13529889.0625, 13529891.967048334, 13530030.833489316, 13530092.339386934, 13530233.56635394, 13530253.125, 13530547.973244116, 13530884.69060569, 13530909.310873134, 13531156.030504648, 13531467.997830518, 13531627.558298424, 13532001.291246073, 13532049.725865072, 13532789.0625, 13540268.856684333, 13542693.171394046, 13546248.990932532, 13547185.39053492, 13549851.5625, 13559840.625, 13569994.665648066, 13574578.125, 13575043.75, 13575615.582092978, 13575723.446410999, 13575769.899622886, 13577580.910374817, 13578234.422824312, 13579175.062271742, 13581905.462740423, 13592256.25, 13608903.617866216, 13608958.367367629, 13609023.551692815, 13609524.237973407, 13610113.366676442, 13610618.36188772, 13611265.589635825, 13611980.580754874, 13613040.54805014, 13615923.4375, 13616356.352613904, 13619054.6875, 13640594.881310185, 13640685.12584639, 13643120.3125, 13643740.625, 13644886.625008171, 13653631.25, 13654768.75, 13656056.25, 13656062.5, 13656895.3125, 13657976.215333568, 13665209.249248952, 13666164.442284223, 13667185.9375, 13669004.553364486, 13669585.9375, 13675439.79531118, 13681719.622566944, 13689021.03699859, 13700982.8125, 13710645.82728596, 13710668.570754783, 13712535.818767074, 13718965.625, 13719811.415615765, 13730679.513439741, 13731127.960771402, 13739046.639033642, 13740718.75, 13741256.598336613, 13741426.5625, 13741503.077883825, 13741667.905342087, 13741800.752571054, 13741873.293976322, 13742208.446173586, 13742317.627560964, 13742630.44213482, 13742886.91921938, 13743424.945748748, 13748710.9375, 13748755.880085066, 13749360.9375, 13750681.888491422, 13750807.291419141, 13750896.676898777, 13750945.3125, 13751091.866287153, 13751231.58743597, 13751643.140831435, 13753196.32627459, 13755041.02912287, 13765306.415959494, 13769663.41231989, 13776418.75, 13780059.375, 13786871.799150623, 13791056.030415297, 13797535.9375, 13797668.75, 13799146.97997691, 13801240.67618113, 13802110.9375, 13802373.152220607, 13802534.320643067, 13805824.91262414, 13809183.877771499, 13824096.27668972, 13827181.25, 13834464.68624394, 13843750.0, 13848682.10310223, 13864514.0625, 13870325.0, 13874414.33511923, 13958121.875, 13958128.326588327, 13966164.0625, 13989489.261239074, 13996202.18174114, 13996718.696810322, 13997017.216710838, 13997149.270203829, 13997417.486013254, 13997580.18861137, 13999195.842199633, 16151153.932876268, 16303824.401446866, 16310050.006624598, 16311489.348846188, 16314002.8819479, 16534967.1875, 16555548.034108104, 16557710.733835392, 16575161.201079143, 16576340.749089517, 16669987.5, 16757951.531643214, 16758321.798816111, 17017048.4375, 17072970.3125, 17075096.980426926, 17799691.368513584, 17816528.293696973, 17819282.8125, 17821076.36155924, 17823252.99989983, 17823611.944658846, 17823700.190986667, 17823734.375, 17823845.635083873, 17824367.1875, 17825046.226564556, 17825746.814298056, 17835500.47689009, 17872562.721318647, 17875434.695921335, 17884193.75, 17889813.604449682, 17889899.95576323, 17893942.6854181, 17894246.531632047, 17894329.6875, 17894754.05504746, 17894840.625, 17895156.122782037, 17895263.872287944, 17895372.213370606, 17896440.42501493, 17896503.66370858, 17896689.859263923, 17896984.375, 17897125.88164518, 17897196.4909078, 17897275.0, 17897399.277397953, 17897479.7777681, 17898042.996237863, 17898161.502203032, 17898409.137565706, 17898562.977935623, 17898617.81835034, 17898704.649626352, 17898762.5, 17898979.933250964, 17899466.909509413, 17900025.0, 17900426.5625, 17900690.408533037, 17905525.0, 17905612.846024487, 17905751.037447672, 17905851.372640047, 17906112.043524668, 17906120.10345065, 17906204.350562923, 17906251.139879674, 17906699.625946596, 17934904.08148324, 17935937.223002493, 17936632.749392968, 17937785.19514787, 17937810.846884124, 17938280.671354946, 17938376.5625, 17938458.981593326, 17938462.386071265, 17939277.012627866, 17939401.940347772, 17939828.35329952, 17940106.25, 17940137.545838587, 17940603.125, 17941175.755822275, 17941218.54853164, 17941224.58497691, 17941273.322541323, 17941613.706052404, 17941822.120781604, 17942913.557867546, 17942993.777593136, 17943836.20094106, 17944001.5625, 17944279.57592501, 17945014.125336733, 17945020.475943413, 17945206.438661687, 17945368.614360582, 18080732.8125, 18132865.625, 18153775.069363203, 18158015.625, 18172584.630472187, 18209618.30072586, 18232343.75, 18247740.07803402, 18254167.078206748, 18255318.412963144, 18258572.92865104, 18260312.5, 18260844.960370537, 18261262.445672207, 18261526.249479055, 18262080.812722553, 18262149.664169718, 18262833.80577655, 18264273.35095619, 18267588.85221302, 18268518.440274294, 18268551.73665904, 18268745.3125, 18271693.75, 18272641.230934642, 18273239.04839051, 18276787.5, 18279298.4375, 18283832.806911618, 18283960.869937893, 18284063.82995806, 18284544.255062867, 18284681.25, 18285294.4854697, 18288393.24990794, 18288518.942932937, 18288632.742796063, 18288856.721466456, 18289064.751959946, 18289665.156246547, 18289940.625, 18290034.09759279, 18290230.350100193, 18290293.83922589, 18291059.51242955, 18291234.30055519, 18291698.48458842, 18292468.68449386, 18292501.838257212, 18292811.97361679, 18293415.10237852, 18293442.1875, 18295237.143635634, 18297006.04178238, 18297748.727544412, 18298646.84229285, 18302607.060065173, 18303601.80901517, 18304679.05240937, 18305128.125, 18305151.301910006, 18306471.642233785, 18306812.998199515, 18307723.057603125, 18307837.1343332, 18307839.0625, 18307846.755932134, 18307907.79664539, 18307921.875, 18308143.75, 18308207.040457815, 18308548.4375, 18308596.875, 18308781.25, 18309466.491208855, 18309921.875, 18311528.05636104, 18312850.0, 18318264.246315047, 18318558.525483865, 18321748.4375, 18322751.515100632, 18322831.72866067, 18326666.237600513, 18327704.969708517, 18328071.990958765, 18328267.358890496, 18328418.555711154, 18328485.591250844, 18329812.147035014, 18333545.3125, 18334377.954033993, 18334607.45590183, 18335114.77858029, 18336280.206540797, 18336590.360509366, 18338207.8125, 18338864.0625, 18341574.586654764, 18344207.80404967, 18353365.09364355, 18401455.42819464, 18405554.6875, 18405605.10089337, 18412363.287206694, 18417200.201887902, 18423078.125, 18427176.5625, 18428358.684601896, 18430164.0625, 18433549.30970909, 18434377.677873142, 18434832.82662366, 18435186.37258192, 18435502.9606372, 18435776.552007016, 18436401.5625, 18437085.9375, 18437253.342057664, 18437390.41454483, 18437798.940603524, 18437873.904597502, 18438040.141429946, 18438299.261808928, 18438467.32995654, 18438495.283732004, 18438664.0625, 18438873.542777836, 18439290.620582074, 18439742.1875, 18439957.452042367, 18439966.788330603, 18440021.680493053, 18440277.996731207, 18440364.537338417, 18440377.911722716, 18440384.373136003, 18440420.655807134, 18444762.093485862, 18444835.015078895, 18445186.830580954, 18445521.80844536, 18445647.92246765, 18445724.390767436, 18445765.521985594, 18445897.96263181, 18445912.45962257, 18445981.64027554, 18446004.307725884, 18446063.748125117, 18446113.227842994, 18446129.042613912, 18446335.9375, 18446340.315728243, 18446399.140696783, 18446416.24641416, 18446638.73786791, 18446711.975608613, 18446728.372728333, 18446784.199840587, 18446848.517286573, 18446871.884868402, 18446873.4375, 18446894.619201966, 18446906.17041483, 18446933.519387096, 18446958.70230108, 18447026.21611355, 18447026.71871145, 18447034.040797148, 18447073.422507465, 18447090.625, 18447099.776544485, 18447522.147598393, 18447604.88384052, 18447655.738553174, 18448137.5, 18448188.888094123, 18448210.827168755, 18448657.8125, 18448882.976355523, 18449547.31515307, 18449876.057580557, 18451257.36481022, 18453097.07470928, 18453230.95691649, 18453292.24026106, 18453599.289317884, 18459219.676663034, 18459729.551483158, 18461421.257507663, 18461681.439868856, 18462012.74260792, 18462493.77852152, 18462845.84209085, 18462855.57750329, 18463073.177947115, 18463810.706511013, 18464026.458625715, 18467431.14197701, 18468785.929200068, 18473417.18346634, 18488231.06848, 18508332.675755188, 18511341.62045313, 18522585.9375, 18529999.41058623, 18530600.652456656, 18531138.963057116, 18531419.98289321, 18532348.246207304, 18532416.012045257, 18538325.93460717, 18540939.032111004, 18541315.25543596, 18541600.00642695, 18543032.36904501, 18543414.981010538, 18543499.809702568, 18544303.045557622, 18544745.726702224, 18544900.0, 18548103.125, 18548648.363985192, 18548796.62735914, 18548811.768196937, 18549594.524546746, 18549956.25, 18550402.94493526, 18550656.324462272, 18550709.375, 18551187.185461305, 18551463.285322104, 18551563.515956603, 18552291.839489557, 18552330.788642287, 18552549.178147152, 18552687.5, 18552733.44697339, 18552789.016925193, 18552825.191281963, 18553229.268862586, ...], [75.52242682522765, 6.551712650744267, 14.68285049738151, 22.139826404739985, 6.278699133513721, 28.853547911569034, 41.42802347434109, 10.623506441557234, 32.77599895459073, 75.34433544072282, 22.275613509935535, 12.160019777519592, 13.96469341942548, 13.827438284952258, 5.422577342193471, 36.84814795859694, 32.57569786671221, 44.78036435766515, 34.382258160669416, 42.64139983937456, 61.91854268145802, 68.13294020031177, 59.80015110808198, 61.7624255498313, 55.20383046464282, 78.85699053246722, 6.585277977176969, 26.662591408155244, 71.58749552544734, 27.7804863096613, 14.393835453289359, 110.65929687380185, 25.515890093488846, 15.018692875137567, 99.35032350836576, 52.86443264708759, 38.88300359341158, 15.634374224418703, 11.629303009552533, 38.694913857803456, 18.650327811045713, 17.109771328290055, 55.00365337352037, 11.569823852879784, 43.38578828666439, 5.2926578118821, 18.552155649070425, 30.46716549426342, 8.034289616564603, 113.19915966747104, 12.598922867290662, 50.0779983069788, 24.254035656985057, 11.828185623256383, 50.51418381776091, 7.473874296241306, 25.094032962887432, 7.497021830140761, 13.722289576151532, 20.329504581445487, 32.448930626235324, 84.92482665774753, 7.998171492686633, 69.12597272097939, 69.56909297861456, 13.360165535386749, 17.243430398328837, 26.555339157829813, 5.789986980283954, 7.694099804429389, 27.232070141876388, 47.764605754999586, 6.358147096653228, 5.804101814996796, 8.597444456364444, 41.718830884613254, 7.076982838892592, 6.660126814321357, 7.015853753905339, 54.11393025112097, 6.929062761511954, 5.996510837383937, 13.959946604939699, 30.884537340927878, 14.546111909164182, 8.1680644257706, 29.289465511376207, 14.732253723690992, 16.248547912353892, 36.699997610014385, 7.052636939664028, 5.356267755919434, 75.62782824689477, 17.097601146986918, 8.381960213574013, 32.178804368459446, 6.565862226921513, 83.57017498512838, 7.600679795433799, 12.351414621661576, 10.881357941224358, 12.026336200697166, 50.9117556234758, 36.438876071890306, 8.49017121761514, 15.162958375940873, 10.731785770523746, 161.76830815806915, 7.037025076742908, 11.936845059232878, 73.58414868057184, 39.58645270456029, 91.19835677061914, 29.975218838501377, 73.96865463615974, 109.03939759365824, 13.379978141153273, 82.60745924543525, 27.25387069389891, 25.68253674318818, 8.371764825798268, 18.510874597399766, 6.295422373393434, 78.7290951729886, 106.29669632812633, 43.3882256566361, 15.23750808190146, 17.738009326478764, 74.04383494376806, 11.49556115090563, 10.019952196418881, 96.03362778193481, 70.78829952339626, 10.260682949790299, 21.417458915489018, 26.504481054359175, 14.149841677038074, 5.4289313425284424, 69.00534437921422, 66.08997003670483, 54.50542422597418, 64.2130157443562, 20.696224701477682, 142.66897236990238, 14.6003207771606, 56.40041048828721, 33.06186065231863, 142.92360744964733, 28.86029557211049, 7.684280022557223, 70.68903490735532, 37.747760321003696, 11.243911000926376, 6.433566230505597, 26.739322607146885, 5.930872422124638, 23.244500802666593, 49.50477891060268, 72.27255361346232, 18.10950333195625, 64.33710635625434, 7.626149836260705, 99.37226059590553, 14.731169517068057, 15.963648240269123, 21.614364804881685, 85.22657273886637, 37.997653716180636, 6.155227844036638, 16.120019890805676, 49.42990158820041, 7.964257635154959, 20.86885142300636, 74.7439176272947, 5.074391920419823, 40.15479435014727, 71.1335765486525, 7.375259286245787, 9.487539270637885, 8.099628342404019, 23.046132325485175, 10.876010671350326, 23.810718789615308, 14.818781357860004, 12.679450704841065, 7.532673176001558, 24.47492921899711, 51.75438097421187, 29.994660549727833, 18.667759187862245, 14.184661185424504, 31.868151558401102, 62.088851399036756, 12.236760347480844, 14.703324879863501, 41.30850050089744, 42.53413115184402, 5.611266858385528, 20.902975084532763, 19.82603069848325, 99.06482169132347, 85.99455147194266, 24.470143711746534, 49.789065712934956, 74.4357493547621, 35.92026123862471, 6.0886770842268065, 20.137483780093397, 13.443383804227722, 24.589271240408177, 85.21819185005754, 11.707217790005522, 80.09653368122912, 43.636982594177155, 28.446517345935163, 43.40195160713002, 17.008360187884392, 30.289666878019407, 46.32812142628039, 47.41354945448497, 78.23648918229256, 47.369589143935585, 22.80605263465636, 52.12630380640476, 53.8313504305399, 57.79561914302876, 78.95888498218002, 78.79025380172402, 6.015160022043099, 39.19749845246311, 10.57421377128118, 15.793892475076525, 14.732967508608263, 16.9388478674137, 10.472014044539664, 18.141149988897908, 68.58129668841212, 16.62744367853737, 9.469029726226479, 83.26793549461831, 54.647919609086834, 9.543048466856073, 13.721473435621526, 6.7844813092160186, 45.003709795904804, 12.044799134549443, 66.11565685889279, 39.02113727023895, 87.3704488434798, 64.51211976390894, 86.81316326936903, 33.431860560987545, 43.120003911972425, 14.043648934330182, 30.547982644235898, 6.678790784213587, 5.099021838997407, 46.44832117816579, 7.299464999064241, 8.382731101411483, 21.052812477101007, 35.2737575624697, 24.67481758756042, 8.566160925193133, 5.26871596334784, 17.774674421593346, 20.81550475394182, 5.983721296719742, 27.392112239843616, 70.74201464266113, 49.17830767688234, 10.92117039468935, 12.454796735268928, 98.3778748089624, 9.175855297338908, 21.446510321549304, 42.72393574527629, 70.42870960944424, 21.70103787415596, 15.049746955719298, 10.258295021049415, 17.30192470694962, 20.46742475217922, 57.25490513843098, 92.84211041474931, 6.903299975719457, 44.4190259023586, 18.14286204040261, 19.70926211824945, 115.97520613705422, 28.521154273655327, 86.0106713815797, 5.188871719405675, 35.813935057523395, 31.979945463210385, 17.034021164578938, 24.771689029982685, 8.911616459553777, 17.329477706861343, 13.638862897864245, 50.9499268430335, 18.98352716693426, 10.326776867833878, 39.76687999106734, 38.42610181320487, 108.2303263331663, 9.26447787104061, 80.8806012720223, 5.507289718518539, 35.83228261295888, 48.69309097700531, 17.4907241340738, 121.55712187452133, 63.209598657294585, 96.37888339934617, 35.90963965063951, 30.455683013768635, 11.521515654982622, 16.866670577253505, 9.259479740012479, 20.189727560150654, 78.51515494172853, 25.28710527364759, 41.1353039891668, 5.710809479373037, 94.51504298827726, 28.409393505733377, 7.738461287878209, 29.613648450956486, 32.65998806596758, 6.1003736870152006, 22.684681660227902, 19.376964388444527, 82.5717478412492, 23.63819219870066, 10.39840284615661, 8.839296031067157, 86.86015850171775, 30.94583848696553, 42.69270191928628, 13.601861426064698, 69.53990255092556, 7.271554342864639, 33.94030891625822, 26.404548519066367, 133.2616414516275, 13.890746962564274, 40.4735285330529, 15.50640893679332, 5.32115379795213, 15.06670966202536, 30.103846148304743, 105.35420487257568, 28.061211081979195, 16.09516004472814, 97.37787082790297, 45.76124081314764, 13.192350796219621, 61.676880100468544, 45.74236879731082, 9.050001342061364, 44.92079718504428, 172.3502815663403, 29.213718697235393, 126.00103118002954, 27.771823442816313, 6.297744184538264, 103.97349140390288, 27.085142465127426, 106.07973851495208, 54.927136924519715, 55.51303705677944, 65.91521236340779, 19.81221715358874, 26.40754778412368, 5.634898984488618, 71.48665119103305, 35.187504808962316, 20.656675239027543, 62.55821573200253, 8.588637138971034, 59.928541103014055, 72.35396928024207, 40.189572210456774, 24.96744249933175, 93.12773853975466, 7.809286242032344, 14.198314598595026, 82.1239723429329, 31.261690445754983, 30.57061086767556, 12.382068692806415, 58.2197888638879, 25.533181802515077, 56.345261693824625, 20.85421355672794, 21.634694904331866, 50.978437496467386, 28.801820725031913, 10.790075150002995, 14.343154809653377, 74.66985645934545, 126.21236490566028, 65.10527159272712, 68.57587996942723, 9.061732499300957, 11.731386908632388, 43.167136923812976, 43.572941223792796, 99.49027273933946, 20.25322432164456, 32.50821120250204, 79.09185466323692, 5.152830574553266, 18.708966105826036, 5.048972212997019, 38.354960779149145, 13.480914393183344, 10.965585789447697, 72.47304202925334, 28.534571265857508, 158.37840415489734, 55.92588009439474, 69.45419004374148, 11.575242478142084, 80.26780643302365, 17.701057405012858, 5.928471037907755, 26.352290808649087, 17.45304223845617, 20.579658621256513, 58.501565542213775, 37.50974669529093, 7.26364405793259, 32.0043741709783, 43.23071856109483, 55.37762336649982, 182.4839018384686, 5.222983093971757, 137.66925210453732, 14.848932740705958, 22.11619786174396, 33.60765897089787, 6.203818746189866, 45.52964887418932, 31.733009613069942, 7.0618778312222945, 140.78000038571398, 45.79533574988916, 71.611525534187, 137.14578139506278, 7.675970043781297, 20.568422765063794, 24.2237381672395, 14.021194940227133, 28.708107256337993, 127.94405978626334, 190.92399259585653, 7.536995641437326, 8.776588702432935, 16.48767190573771, 80.90106070053513, 42.637111371299646, 6.635284997194107, 25.625608779224855, 31.223511713694602, 29.109271851527915, 28.241092364432983, 78.89604834868757, 5.48950897605909, 31.863205943457313, 7.072338258196392, 72.49419973078952, 48.821421853765834, 106.01932569879247, 110.45818062043406, 6.012348355729886, 33.06441963506505, 19.06659559570794, 73.78233163688321, 6.231709146282937, 59.75398413685523, 5.2130608319661755, 47.81842968216108, 50.086604125048275, 5.28554869910618, 57.5065598358174, 12.46218810940651, 137.62023566631265, 18.973774826510343, 30.08815334108837, 25.03201990194961, 30.83684941553355, 11.31741860787106, 65.96057183121191, 123.15352758172047, 28.83521135628621, 327.25413167082155, 7.503092769929314, 89.91871084289042, 23.25859463509323, 36.47595729419261, 8.219625943428996, 15.450456089007488, 14.443661799689389, 39.075924357535925, 11.404031729833072, 115.94524165813753, 50.243988598788064, 11.452005325527287, 19.856485175139245, 24.430481883493467, 7.965612709166349, 7.238675953712729, 63.76500242954576, 135.56877437557392, 77.20642836943358, 8.230994858205987, 103.87313114249203, 6.982990794332191, 115.94122673161345, 20.65557965298067, 10.177688130401943, 57.7451553832466, 49.2792529517287, 85.90561617602225, 40.2490013156724, 6.720278957223065, 8.077952182084786, 11.373715749304607, 5.266745612130739, 28.858925719777773, 140.16173728655343, 29.904279526443894, 16.125202517186423, 53.69676778557472, 103.69192205077873, 23.999751538107724, 13.999457077214258, 47.779870262681456, 89.22806301081619, 35.69529990554565, 143.26646387042098, 6.577493259339156, 14.505332593502876, 32.391445378711275, 31.27557428034746, 45.58497256612067, 60.95236227441005, 30.87447818723813, 98.380172730505, 112.96877220796414, 66.78718651965188, 23.257445669356834, 5.292566806403562, 7.137917784346677, 18.93886266796632, 33.33331370546737, 11.996658923550935, 5.856209059927519, 19.818423188028493, 38.972473491428545, 33.05317390935473, 13.643294317737043, 5.704511027536145, 142.71711920842512, 61.773252150308885, 42.066432578234995, 77.1677724514532, 104.86094357452383, 127.55177844019859, 139.63958033657917, 35.579456489166866, 123.09714482555081, 35.5046867582668, 93.07548477769149, 122.16239616520862, 29.24827389211697, 44.04142659384949, 58.11134712795274, 125.32292194998523, 20.055889510427356, 144.35112608327915, 38.27906713037619, 74.26963792978769, 55.54250870276416, 119.86169457945343, 211.21357628026246, 119.56894220978131, 52.02366035167253, 17.34907075581427, 115.17119292781429, 14.507476664901084, 37.79580933445038, 67.92071293270187, 25.504790788622547, 89.26873841418868, 8.165615443843771, 198.63164797922667, 9.644397575824598, 79.59150461778309, 38.39115152733663, 34.257910428465536, 32.52039500581021, 14.42129845445176, 29.80147171925501, 34.82821178463904, 10.062939139613794, 37.32776710346482, 17.748701188916712, 30.873323881826224, 7.027492800295442, 59.890094158463874, 52.80118622220836, 48.34886027754057, 5.922337366336772, 46.2597095841787, 23.483506712663072, 55.13083417309335, 13.942548694945595, 25.8290317125512, 81.42989667851087, 52.66778447783862, 39.761041326942006, 49.968294528141, 36.139236134271236, 45.51557769696946, 24.835319602569466, 52.094784484689754, 52.9010207990634, 15.357320439178533, 13.421140404490497, 31.20401471982088, 23.94061601627848, 9.285860383674718, 82.5999475581459, 6.668139216047422, 96.96629888996617, 96.9322008567994, 147.37466702954498, 60.115395876362896, 37.27524241568196, 54.07532234029902, 73.89224735559173, 37.11764081496098, 42.016713454844826, 84.978178639291, 39.957302887075876, 7.676735381130555, 15.116357688046854, 84.63292537074877, 15.054028738579659, 34.15257396225434, 9.597246649197453, 31.72710118990395, 103.37684504353778, 52.517661971158496, 32.20835981229051, 8.29008363353246, 16.158134922024022, 7.058993476802355, 62.990206710636826, 10.55074612034913, 9.164932546162033, 6.529218902233359, 51.41001344863828, 30.808781739271527, 11.079815778178272, 5.040262422394305, 32.750952338131064, 49.07167912298973, 16.813833378363213, 10.050606051691348, 5.249891433132565, 83.90924772053387, 14.227203798180563, 89.49382293694514, 6.657480230443988, 18.600739774520928, 47.43792917875914, 15.645676327906358, 29.387294234894895, 7.971062613902312, 29.8495122252027, 79.11579944454887, 78.90096378179518, 16.32419048840942, 106.64640452640653, 21.92203282183128, 14.775538328488011, 9.791173940974858, 57.010955261681715, 48.54494825253189, 38.581597001957526, 69.68189551911748, 41.547102896386534, 25.262318731905992, 16.40977876621404, 14.230373294787995, 17.328298950679663, 60.88261192100347, 81.19069810463478, 123.84805713640299, 20.862859502171723, 47.875392022658815, 6.627338162000852, 79.93970215273444, 87.47498648979355, 21.134175814955654, 24.584242857633804, 88.28932533433273, 5.564501598019677, 45.21688542597308, 51.33406644279027, 15.968944156742703, 10.719318790454079, 33.83354812924241, 56.36702392376048, 15.526507863884753, 29.41197072441908, 16.675955502940013, 21.24677793558074, 65.421400924614, 19.924469697211297, 10.815949119859956, 55.36632621452341, 44.729118164380175, 9.033954280851287, 25.13449459676432, 113.7043140537774, 86.95069966378, 80.37305004479009, 34.01331387087182, 36.88897269596863, 57.62308732108886, 6.218741671130832, 10.9541790017557, 16.98831396437925, 16.607997589387317, 14.06136091671496, 41.269422719861176, 12.11780856222074, 55.0951492106045, 18.89678439612553, 25.09659675916958, 13.56496306347085, 15.874863316285277, 13.737183037869624, 13.661000006885804, 50.56867327634541, 15.047734977074093, 18.826786820725793, 105.14825808777786, 14.532633948948957, 50.07283951485674, 104.50202884459914, 6.51707794721855, 136.27268288228626, 60.67727820250532, 74.87216768511334, 25.43751380541952, 39.44219678449951, 24.638255521425087, 58.58316838342928, 79.92165486539938, 49.48270493527281, 81.00025564231157, 9.061801232118285, 47.40134175220294, 29.63791064350603, 7.0318650182879425, 39.56495839929332, 35.5823111764471, 90.5791032622819, 91.4618978990556, 59.40008317553144, 43.07150330810609, 14.196314367430551, 23.627299147798084, 126.23653280274908, 88.69293212461042, 51.64625243036884, 48.70192073733453, 49.155876771694054, 74.62912490497985, 43.262202684456085, 14.920251815747742, 80.885982971978, 24.652446011659947, 6.868708949353676, 56.77326786790929, 91.65060714325085, 70.85742086031736, 6.10839500167432, 13.572269583299807, 7.783150001897664, 12.068778962644192, 21.810568914809483, 49.57174422851897, 73.98232325707855, 99.07095613448965, 7.145105633168391, 6.284719157619654, 38.78382581284632, 74.67386890869552, 14.69757371723297, 9.575988742609171, 10.393843686983065, 51.09194717693086, 45.253310787380116, 23.056510357209014, 31.2400096347106, 11.61349379597796, 123.6175376463202, 65.22671047021305, 15.972449738858673, 36.77868523216589, 70.56927066495996, 24.267550588235387, 45.83749597917499, 26.032772968976452, 10.581648457856945, 13.709652345765765, 36.85340286170545, 9.232713737522715, 14.88142147549547, 53.9535748220234, 80.7286905111281, 10.103030131110454, 65.46307219619906, 29.71417240052331, 90.69036926380537, 5.186038193820136, 99.63985423684998, 56.32219326464083, 64.77660979708794, 49.57059211835261, 18.111373230637206, 36.538114936107725, 63.79645537634211, 9.771824016778739, 7.292368162848584, 133.0173679057968, 71.92742728849096, 15.637651014655173, 44.42971321669768, 23.17741867636597, 13.747625058397684, 52.56298041090099, 25.55188471031875, 15.27981103211375, 5.568873655576024, 8.581550854042959, 15.86443331334846, 80.49296247998448, 46.5788509063195, 77.29514362398741, 41.096120100216915, 251.16220802107406, 37.351928435086805, 103.93596372253346, 5.175102374410095, 77.75791287744481, 33.32905206148441, 95.13891666987865, 64.78450456256957, 7.952371957687334, 39.478465571971796, 20.845151844146955, 31.08573864738856, 46.496698650153654, 8.530885609038345, 29.809433395710194, 47.906760480206295, 29.672025400634062, 51.39389001990298, 105.65998906355034, 14.19576025680595, 5.852167682642188, 89.56972706100782, 14.590465968156298, 12.717832726678257, 9.454834773424496, 98.1253302821997, 44.05606361369438, 11.296349084273949, 28.43794825545128, 35.912187145691824, 25.61199864911039, 22.561580584801092, 25.198775592777796, 23.915728619595008, 5.556578459993596, 24.92553676389939, 7.602563646112298, 51.05436492704987, 7.018540063339569, 18.11012074150442, 33.51807792237741, 8.25169293089522, 13.285063650512352, 6.970011162992154, 24.539989096567457, 103.79269650636707, 11.065175393200272, 137.88339075086108, 84.63951805645334, 8.127044673596775, 43.46109667003737, 33.75582309576573, 62.27194236186217, 13.880630885616736, 18.528250993000768, 5.9954127600215905, 76.53447264116987, 13.259736520235723, 21.173493541728327, 38.220323840155984, 11.254751310480305, 49.972953501770874, 84.6775555876544, 12.826090414989613, 57.877453217283474, 12.44730840633279, 20.78078099769625, 36.47772506889894, 15.572330566350129, 49.70015130104925, 5.705804506484396, 56.33616124104583, 85.7136724805142, 21.392294071819336, 15.746685303420048, 13.294804823332893, 43.410636625657745, 25.499543514526803, 6.076700399139865, 129.9240518315047, 9.473904898666497, 16.934433431469913, 27.264294977941795, 69.83892642267148, 15.761568585408083, 23.8394940888152, 9.37641766869343, 54.166222805962775, 33.56806733133476, 5.286904201685445, 48.76560004726913, 40.15473085026659, 9.545327436356866, 172.50180559451127, 7.267989769027907, 84.37018016905776, 8.153930451659411, 24.674191544789007, 70.61883435856245, 26.557506253009382, 14.909968055207584, 11.121407784587065, 63.058175622511264, 134.24713928434312, 81.53557646022655, 44.75519852013106, 33.06751612218898, 18.190164965822156, 9.248710622093622, 23.37978210403, 42.089765776598405, 20.88890035624301, 12.988913529169954, 104.28258128091949, 5.515409287457019, 28.22256655335145, 22.07634230359726, 22.136898573589598, 14.262616756551537, 27.046294440400114, 11.843355054947873, 58.70158078154453, 31.727715715758336, 27.150372901357184, 19.362813194217274, 49.89932940390939, 6.615772845391048, 43.46538700029604, 17.202415222560383, 23.26488435256968, 33.169334879794654, 59.93205211984587, 19.111865505021296, 28.699534021189006, 23.156253648609475, 38.36199241432751, 10.047435878707478, 126.33372884036662, 18.07417468747766, 147.23389714969244, 74.32490445570792, 5.278328655942922, ...])
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)