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 = 47292
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([5911146.875, 6257829.509292317, 6257846.220710002, 6279285.9375, 6500736.895922059, 6509137.002886607, 6509163.587315627, 6547942.29223895, 6621042.344487375, 6851904.6875, 6860048.035677522, 6877627.330768505, 6901583.002951761, 6947584.478972131, 6964402.196436086, 6964627.36835681, 7126370.3125, 7198827.087334495, 7223215.8969834205, 7266049.970794623, 7332911.514783617, 7572606.25, 7594682.117028893, 7594699.376059617, 7619388.131002754, 7695300.226026911, 7730076.5625, 7730273.965200518, 7795744.994337772, 7832948.998456769, 7834188.505820927, 7847907.089013105, 7848370.3125, 7848939.951997248, 7849446.365591413, 7850534.375, 7853252.164469955, 7878821.875, 7938065.121800634, 7954291.517544466, 7954417.1875, 7954601.845954119, 7955093.75, 7955206.25, 7958345.693654434, 7958760.9375, 7960222.5038637025, 7960783.53768122, 8031744.725887518, 8106313.017004874, 8166548.827087162, 8173308.548311276, 8178432.007982614, 8178465.741718445, 8234370.678825763, 8299305.465571517, 8321873.4375, 8400784.019191485, 8407518.634437028, 8438246.875, 8440297.641038692, 8445486.299569316, 8483036.883982195, 8499586.568644056, 8500926.5625, 8501419.934968939, 8501431.914692465, 8508925.272285406, 8518741.9426897, 8519790.902843548, 8523701.102587417, 8527188.901509417, 8560284.160124768, 8560678.65729222, 8561667.995980702, 8596098.4375, 8597614.673193162, 8612406.910172774, 8624593.75, 8654562.20841437, 8710925.791107418, 8713154.086608345, 8721704.6875, 8726226.185012445, 8727843.006623838, 8728265.471016437, 8728792.1875, 8729117.851246454, 8729285.9375, 8729601.5625, 8729771.81124716, 8729806.322453577, 8729989.775381302, 8730628.972883899, 8730750.248671612, 8730966.927203275, 8731059.624830654, 8731101.814027542, 8731450.0, 8731465.565676644, 8732656.25, 8732971.875, 8733110.322723635, 8733687.98471038, 8734267.748418394, 8734429.6875, 8740089.09628748, 8783164.0625, 8800233.802469889, 8801874.665099934, 8804696.875, 8806044.607855842, 8806351.294785338, 8817814.0625, 8818504.6875, 8828759.375, 8840026.755243542, 8856514.0625, 8881995.032385636, 8904902.731309205, 8955190.558034802, 8969593.711055199, 8973245.293345815, 8973407.8125, 8979828.125, 8980205.343560928, 8980607.789249672, 8980750.367825836, 8980795.258105192, 8981152.877578782, 8981758.017756164, 8981873.047411444, 8982356.552561626, 8982598.214329176, 8982715.192365607, 8982967.1875, 8983035.306184389, 8983227.327812027, 8983464.532976195, 8983706.84084433, 8983810.452877844, 8983990.008353759, 8984339.511052085, 8984955.173763325, 8985287.712942615, 9018073.24590687, 9040037.903917398, 9041544.101226697, 9048249.54922211, 9050793.75, 9052075.467424659, 9052268.123693235, 9053485.9375, 9053699.738432094, 9053729.461669393, 9066197.613108618, 9082154.6875, 9094229.680412501, 9098457.81285578, 9100040.625, 9101537.5, 9102898.711016526, 9103808.72234584, 9106193.75, 9108626.5625, 9122732.061752733, 9138549.892576613, 9139073.506995708, 9222827.231595112, 9230568.706691643, 9230898.4375, 9245713.453681441, 9247127.08845426, 9253304.382293629, 9258578.713155717, 9277787.5, 9287121.105543729, 9289171.875, 9289221.089034088, 9289444.368741618, 9289450.888763517, 9290359.375, 9291309.00855329, 9293902.879526747, 9298119.333376024, 9298263.975436732, 9305525.0, 9308411.301402442, 9319807.237773629, 9320421.875, 9321971.532884294, 9322201.253304292, 9323901.257701185, 9327149.601557637, 9329201.470874572, 9345976.390332036, 9351515.625, 9353375.480378214, 9354164.680480216, 9355728.92088054, 9355877.643904721, 9381551.5625, 9382321.875, 9383258.227301324, 9384147.959478797, 9384322.899943734, 9386261.975047477, 9388132.28125451, 9388463.070047678, 9388679.6875, 9392731.734273028, 9460707.8125, 9468747.29465475, 9477046.112103693, 9491242.100177415, 9506091.45634373, 9506249.897374852, 9512375.0, 9514968.97012667, 9521583.112915315, 9535545.193968333, 9536450.390117195, 9539412.306475377, 9540676.955847554, 9540860.326157767, 9540936.271091448, 9545729.6875, 9545947.457280131, 9546289.58758166, 9546826.528204838, 9548075.669952774, 9568849.427710451, 9569985.9375, 9570164.0625, 9570198.402772363, 9571324.578432601, 9571817.1875, 9572122.343043434, 9572228.5793121, 9572838.674710473, 9615000.731883917, 9615173.308340717, 9617441.060097441, 9617737.5, 9621059.05098959, 9621440.27340642, 9621956.875093387, 9623981.144451166, 9624534.375, 9630057.8125, 9631614.797178917, 9631854.6875, 9633058.414240425, 9634445.3125, 9635196.49583741, 9635481.25, 9636493.75, 9636701.343800975, 9636731.25, 9637092.015482398, 9637257.948429681, 9637506.25, 9638002.543893322, 9638068.75, 9638587.05542661, 9639970.672136344, 9643835.499157138, 9645563.58964274, 9648987.540867463, 9649301.506955361, 9651760.005132182, 9651983.975045886, 9653228.336997213, 9655068.31523214, 9657295.3125, 9659651.5625, 9659663.17735033, 9659679.68048804, 9660827.791144798, 9662180.815906763, 9662308.990829425, 9662650.22854092, 9664231.25, 9664385.9375, 9664978.04271654, 9666530.64823403, 9667178.515848387, 9667238.704923254, 9686393.75, 9686553.446736308, 9688720.3125, 9688723.407658815, 9690998.782462873, 9701135.576491198, 9710649.718349637, 9712885.379296392, 9713008.181994839, 9713112.111494342, 9713423.243744131, 9713625.950910226, 9714338.907211605, 9714433.950878028, 9714831.25, 9715171.294104714, 9715390.8555801, 9715450.772727096, 9715481.24193494, 9715835.9375, 9715952.627583543, 9716285.314222857, 9716303.064324634, 9716538.559080068, 9716833.692919929, 9717033.433435956, 9718609.375, 9719257.528239816, 9719312.677713243, 9719827.746009737, 9720748.4375, 9721432.637124095, 9721789.0625, 9723564.0625, 9747448.4375, 9763656.572030757, 9771848.93700968, 9771852.20293687, 9773332.8125, 9773381.560152294, 9773676.542131357, 9774656.025010847, 9776053.944560116, 9853382.397430802, 9930282.426186144, 9931106.586026825, 9931567.305846462, 9931607.53253191, 9931881.21690914, 9931881.22293226, 9931979.6875, 9932260.249722425, 9932356.25, 9932679.6875, 9932791.84712835, 9934203.947616782, 9934421.875, 9940412.5, 9965355.36628964, 9966371.024971964, 9993163.888533369, 9999282.619631266, 9999371.749938283, 10026139.045289403, 10026348.393188728, 10028206.986741973, 10032479.287717272, 10037567.1875, 10048224.410476567, 10061691.073191866, 10063382.696488094, 10065708.66726076, 10065909.375, 10067686.312189922, 10069159.253153436, 10231931.25, 10235895.3125, 10236085.88817968, 10236215.083846273, 10237191.965409467, 10238831.693604054, 10241959.375, 10242820.413247695, 10244751.5625, 10286729.018123215, 10294037.5, 10310723.4375, 10393329.645043664, 10394373.68764219, 10395189.51368556, 10396883.261881446, 10399231.887254633, 10403293.993889492, 10404938.596305761, 10415143.517812956, 10418650.95682012, 10443425.0, 10462660.9375, 10468979.6875, 10472618.6250343, 10474183.493316684, 10474689.495096644, 10475845.586916668, 10477610.916579256, 10477812.632471152, 10478496.875, 10480332.8125, 10481698.4375, 10487054.902552344, 10489282.770938488, 10489410.9375, 10492114.0625, 10492282.8125, 10493308.655938573, 10494593.564590344, 10495968.798107412, 10495988.81764242, 10496785.55538757, 10497021.875, 10498333.97458398, 10498451.486710766, 10498530.289598914, 10498640.311997406, 10498737.5, 10499112.5, 10499410.157669203, 10504970.3125, 10508047.291091768, 10508921.241726156, 10510426.5625, 10513438.692478826, 10514105.833986068, 10516340.625, 10516681.25, 10516979.199286832, 11449501.5625, 11451778.59874148, 11457913.782608707, 11463475.9477292, 11468384.7568372, 11469000.753301157, 11482872.278715784, 11485911.407875085, 11487546.404190524, 11487951.5625, 11488224.795012757, 11488390.272859583, 11488430.70505877, 11488720.423626553, 11488722.945820237, 11489085.024269827, 11489099.218281448, 11489193.40105403, 11489367.1875, 11489396.157899756, 11489447.61394848, 11489800.519324187, 11489803.039645726, 11489893.800715312, 11490211.778560702, 11490262.5, 11491597.2733133, 11491894.857752508, 11492349.217721447, 11499588.843093047, 11499984.375, 11501244.453875339, 11503184.407603867, 11505592.1875, 11530255.50141335, 11605274.315902557, 11607462.5, 11615317.1875, 11615693.75, 11615901.501623726, 11616126.791758712, 11620046.52413414, 11622826.5625, 11631199.18403633, 11631651.370479709, 11634598.614875978, 11640932.288713306, 11642095.355358811, 11646956.25, 11646977.142924044, 11647448.423762346, 11648191.949709438, 11648503.056978833, 11649493.75, 11655459.4777254, 11656869.56280174, 11657123.317732519, 11666142.538231984, 11668689.0625, 11669046.226445507, 11670853.964877501, 11672417.393087095, 11673098.838505438, 11673537.925054053, 11673538.291034656, 11673544.347370854, 11673593.253655894, 11673640.950736456, 11674647.365393283, 11674648.4375, 11675486.69488539, 11676106.25, 11677471.376029287, 11677507.436120745, 11678215.625, 11679779.6875, 11681181.816367764, 11685196.49879102, 11686098.215200145, 11687563.227075424, 11689495.054392522, 11693992.1875, 11694010.507820087, 11695847.805293508, 11696693.75, 11696831.838093596, 11697042.403727224, 11697145.3125, 11697241.513460973, 11698500.0, 11698535.562034303, 11698781.056024538, 11700208.01723914, 11700532.775730906, 11700648.146639561, 11701942.1875, 11702268.514390728, 11703603.226595731, 11703675.229072457, 11704185.9375, 11704282.8125, 11704332.8125, 11704449.516059076, 11705058.778365796, 11708726.668771809, 11710423.667953538, 11711142.377997285, 11711701.287821235, 11711743.147303248, 11711920.213980958, 11711986.61221414, 11712393.044113953, 11712531.196797544, 11712537.418940607, 11712818.222447809, 11712923.976489862, 11712953.125, 11712975.0, 11713229.322630418, 11713282.8125, 11713421.064708775, 11713718.75, 11713920.892134272, 11714349.12185138, 11714631.45992005, 11715201.5625, 11715254.143066429, 11715433.502220387, 11715440.625, 11715460.01427546, 11715723.4375, 11715960.9375, 11715968.088996183, 11716504.518515592, 11716889.083335642, 11717240.04472218, 11717593.405311463, 11718325.0, 11720092.1875, 11720882.8125, 11721076.5625, 11721094.144876262, 11721825.553159824, 11721855.992333245, 11721870.354645116, 11721952.74561813, 11722045.3125, 11722067.857765313, 11722071.472995564, 11722116.621892355, 11722141.447218943, 11723006.25, 11723019.615464982, 11723288.004651843, 11723698.4375, 11723756.708320444, 11723865.625, 11724181.25, 11724903.597181728, 11725574.864563238, 11725633.778359449, 11726395.94111053, 11726459.375, 11726606.824276444, 11727201.5625, 11727268.75, 11727291.559291203, 11731053.12440579, 11731399.704573471, 11731984.375, 11732803.125, 11733144.429775547, 11733256.890724348, 11733443.905469837, 11734399.851157054, 11734512.462738104, 11734546.8871406, 11737753.501898056, 11739001.29012219, 11741842.058075642, 11743035.538796708, 11743958.171031598, 11743972.962709077, 11744797.601312514, 11744831.209452413, 11748089.957237167, 11751476.771309817, 11751810.373609997, 11753007.136375556, 11753640.352011835, 11753649.485276459, 11754676.797552655, 11755776.71344916, 11756313.855477128, 11757590.625, 11757764.629743787, 11763190.041710012, 11764075.9477899, 11765720.864685766, 11767096.875, 11769270.478409523, 11775210.9375, 11791807.721294707, 11794360.461795347, 11796195.590879356, 11799388.367456507, 11800451.5625, 11804276.650242947, 11804282.917035468, 11805050.98430001, 11813730.860286599, 11820661.770417426, 11820676.304331912, 11830456.25, 11832290.752050677, 11862966.959090944, 11866988.291130641, 11867905.566933244, 11871735.529478403, 11872731.239923455, 11873060.599874461, 11873173.012434274, 11873398.725670492, 11874939.0625, 11878523.4375, 11887366.773078972, 11888288.94553937, 11888927.265781742, 11889227.17075502, 11889298.646820752, 11889651.42688642, 11889719.969308238, 11889989.0625, 11890013.642080251, 11890926.5625, 11891040.075484259, 11891439.055074105, 11892007.8125, 11892206.25, 11892484.1443882, 11892511.824844679, 11892617.438465409, 11892767.705561621, 11892964.915369498, 11893379.672409836, 11893429.106788287, 11893465.502937328, 11893551.651089001, 11893643.75, 11893824.0749114, 11893853.273657717, 11894193.809371665, 11895203.125, 11895534.337859914, 11895724.977339784, 11896056.25, 11898293.327070853, 11898299.382661125, 11898429.6875, 11898592.129801115, 11899057.61218399, 11899354.6875, 11899920.98094518, 11900259.881202959, 11900535.518729372, 11901420.3125, 11901576.08227438, 11902031.600630274, 11902333.875426738, 11902542.772900464, 11902553.102651702, 11903800.0, 11904277.975015596, 11904372.51123888, 11904512.076337254, 11904800.0, 11905002.521445813, 11905168.081739556, 11905224.250262177, 11905284.375, 11907959.905622315, 11908319.22991356, 11909714.915839646, 11910686.66161513, 11911470.464079022, 11911659.149103621, 11912411.397721147, 11912492.1875, 11912591.064300401, 11912996.345272861, 11913084.375, 11913281.25, 11913326.901857093, 11913344.077865716, 11913575.0, 11913921.299975619, 11914152.613680255, 11914365.208867416, 11914732.334049074, 11914770.925824935, 11915568.75, 11915961.36786666, 11916204.13100418, 11917170.940105928, 11917928.125, 11918323.20146894, 11918429.964087246, 11919055.182940248, 11919068.070122698, 11919497.962385831, 11919846.594200939, 11920025.757477153, 11920450.889192177, 11920668.31955011, 11920726.132927993, 11920757.700369364, 11920792.048574444, 11920899.969001379, 11921058.874036385, 11921187.5, 11921595.3125, 11921671.825618593, 11921725.0, 11921951.059630293, 11922143.473509476, 11922171.623538895, 11922179.946376884, 11922257.8125, 11922619.847997315, 11922700.908564324, 11922854.318810077, 11922875.900677942, 11923225.0, 11923300.955709117, 11923487.541635234, 11923492.382556457, 11923496.860259298, 11923526.546066554, 11923633.054817004, 11923921.592512753, 11924207.8125, 11924245.08860182, 11924516.201004673, 11924634.380178433, 11924773.14641371, 11925189.132690115, 11925298.374743983, 11925308.659710715, 11925314.250109892, 11925471.175928209, 11925618.75, 11925706.33366816, 11925734.049563581, 11925734.98635207, 11925923.560780177, 11926480.222713683, 11926606.25, 11926768.75, 11926788.70850905, 11926807.8125, 11926907.8125, 11927058.96127901, 11927143.77662086, 11927628.398932619, 11927647.67464707, 11928234.375, 11928719.30115232, 11929885.259145102, 11930855.600983772, 11931635.200215498, 11932132.39256752, 11932783.748787086, 11933117.1875, 11933962.225603066, 11934146.818612294, 11937636.805010024, 11940750.136144523, 11941201.5625, 11941357.8125, 11942632.577804143, 11942988.125097547, 11943257.685356166, 11943312.097757153, 11943631.25, 11943908.07630037, 11944019.72506159, 11944037.260588218, 11944678.54865373, 11944937.08394766, 11945305.621150428, 11946135.052402662, 11946723.009559121, 11946795.212570615, 11946874.77920449, 11946906.040198635, 11947073.4375, 11947202.422407757, 11947305.078339435, 11948260.9375, 11948426.059995644, 11948651.956682788, 11948860.9375, 11950120.3125, 11950368.75, 11950620.019753806, 11950989.000478726, 11951040.796071982, 11951346.184258936, 11951481.793664807, 11951500.0, 11951518.4914195, 11952002.051268056, 11952807.352626104, 11953273.849932909, 11954259.661727624, 11955351.6809241, 11955422.24731478, 11955803.528835207, 11956085.548229981, 11956154.125464827, 11956171.315063152, 11956259.72284757, 11956943.75, 11956949.117471293, 11957361.45839385, 11957890.565813793, 11958052.549512446, 11958055.612909803, 11958359.375, 11959161.571479155, 11959548.492086705, 11959619.082603581, 11959727.074338097, 11959760.9375, 11960028.125, 11960081.165215598, 11960120.572044382, 11960220.21587893, 11960229.6875, 11960408.049890447, 11960478.371854104, 11960483.413476083, 11960709.375, 11960764.110103838, 11960845.3125, 11960984.375, 11961037.368099218, 11961037.775853697, 11961610.9375, 11961680.367370242, 11961834.713371875, 11961840.51377693, 11961987.5, 11962224.453405974, 11962246.849145964, 11962388.779576518, 11962399.75855121, 11962536.031492123, 11962716.995454734, 11962937.09408177, 11962965.521295859, 11962965.625, 11963206.526752474, 11963451.5625, 11963473.4375, 11963641.755554922, 11964066.689014621, 11964340.625, 11964632.569127228, 11965159.601333568, 11966469.366221502, 11966472.330231614, 11966856.25, 11966925.0, 11967111.18235714, 11967247.744648617, 11967400.844490508, 11967421.517182099, 11967435.151893605, 11967656.26093645, 11967715.922431119, 11968059.557407761, 11968101.604567975, 11968310.427718751, 11968624.699761726, 11969683.977280838, 11971145.3125, 11971487.469828041, 11974670.42514775, 11978834.281224715, 11981735.411991704, 11981815.625, 11988215.666117923, 11990393.479165083, 11990931.272744864, 11991845.12575103, 11991889.824894728, 11992334.860731162, 11992576.184371483, 11992801.155709546, 11993041.998679087, 11993105.697880413, 11993518.75, 11993939.466793576, 11995106.25, 11995601.5625, 11996146.138206441, 11997691.919583714, 11997810.49024573, 11997902.858473524, 11998318.19093743, 11998728.822050586, 11998748.4375, 11999048.4375, 11999100.0, 11999147.576558065, 11999247.395740042, 11999296.493257836, 11999378.125, 11999511.204224322, 11999561.029622845, 11999608.72702922, 11999665.625, 11999700.0, 11999718.588167032, 11999742.533373438, 11999828.612126986, 11999865.903782297, 11999884.375, 11999889.0625, 11999922.233559655, 12000033.936324155, 12000130.69586136, 12000139.0625, 12000154.09978049, 12000300.828174109, 12000306.25, 12000376.5625, 12000412.429790339, 12000501.5625, 12000528.125, 12000545.502680428, 12000553.317094997, 12000570.025385171, 12000626.5625, 12000651.001491273, 12000743.420816895, 12000748.4375, 12000767.1875, 12000787.16675608, 12000795.3125, 12000800.0, 12000914.99685399, 12000957.468027528, 12000966.649445012, 12000969.982183883, 12000972.476101685, 12001008.902918676, 12001062.081693064, 12001149.172161682, 12001162.344265876, 12001167.027388511, 12001239.333500553, 12001271.097443713, 12001377.151654957, 12001380.464093195, 12001404.763184518, 12001446.875, 12001523.661542963, 12001524.674573937, 12001563.026838463, 12001579.6875, 12001606.472543625, 12001753.972347228, 12001762.5, 12001795.3125, 12001823.526293624, ...], [55.481461429039136, 60.59624075860137, 21.185526009784716, 33.54828827609012, 10.298746290428967, 10.430461012895453, 20.88561781287438, 11.29546453292052, 9.467768745176262, 29.53258441912881, 16.23900531549745, 8.739425450174423, 23.311142156685595, 22.52681294409626, 7.849828479246357, 6.374680192176667, 29.612670650835533, 7.26660509034794, 21.28709174160823, 101.54889329729455, 50.831759978776184, 67.53916843324261, 11.263919839209526, 10.274912231799629, 22.342692852664676, 49.94352546808373, 86.7941238970116, 12.066564065091647, 20.788111905894702, 23.634191067544876, 20.486423243481315, 15.146655372472537, 72.4835896583495, 65.92903035716469, 18.06471807493599, 44.874028911327024, 56.985094958186735, 202.0105735562834, 21.444491654935, 19.950172557768592, 36.809117086208836, 16.144453312895696, 77.83564212162014, 72.22177088054895, 11.780765215488202, 105.64444819537718, 6.350060498270917, 7.88841971661756, 102.9061321923631, 17.361816561659133, 30.93107598740323, 18.75441524829459, 89.26487473366336, 20.782967986131972, 52.02566222771935, 19.058415180487938, 43.6392046321046, 6.694492000281242, 26.432044609168084, 65.53692929320796, 26.239304439817808, 18.83253721131077, 20.408897710115316, 18.052913550739763, 51.11261433484787, 49.29976676039031, 28.482185651100536, 34.067687085298324, 30.909664755934028, 11.591662895011485, 52.70437497187788, 33.97224419249601, 63.13127878946254, 41.270211365334646, 26.03631518899804, 62.44704168625787, 52.947358550591275, 8.669532515637037, 103.87266344604642, 9.096448333745162, 5.22405660525287, 31.091269691601283, 47.93574265216068, 36.575179608386996, 19.366257696481096, 75.58522125127483, 58.062078547098, 97.31211579014897, 31.561763956027722, 49.83434881253974, 68.16426038515489, 11.242876937381785, 54.270419422394, 12.774336220974456, 9.550909177620763, 10.743843115500272, 15.987683077437707, 8.424224168082032, 119.08049985470754, 7.105944181788148, 81.86235898459566, 36.343282832142265, 26.687290611294543, 39.47454378309074, 140.7008872072399, 35.88847760887533, 20.338097866221325, 65.99182674029595, 123.14089444061412, 10.641697682082041, 50.08788412107425, 19.668741443665972, 8.149903618737754, 51.6758499674445, 55.83706554415809, 127.3016737384782, 15.730836505813757, 59.07126255523985, 24.008120591822195, 9.019314213079012, 76.99224185020677, 14.795119093421338, 28.151300006729276, 30.356905660254498, 35.5867083258727, 9.955444391421363, 14.277645246073922, 23.99857408374787, 48.91791422094944, 8.15993167490702, 11.464443120162034, 10.568205966644985, 24.78541784688972, 26.37020841840093, 13.514410453342867, 31.149809691213292, 34.72954367548, 12.579693224057698, 9.763641739952277, 17.80068286669538, 21.127995881970094, 13.017542749788747, 6.856487069042229, 50.56150686130712, 15.820411553982632, 108.88655394167455, 7.23183758873098, 145.8721293235083, 8.977268212073795, 41.679045482871544, 17.082846199024242, 45.29843148327885, 87.66420986203828, 9.119610536485137, 24.746758009379516, 35.96337772675653, 75.91395359286973, 73.93678202126122, 7.6033663675591985, 83.24557753569712, 267.8452079380973, 16.097681608438844, 25.15128848049566, 51.69399345675473, 78.78148812689989, 40.03452893890971, 25.913830116685595, 82.77309039418158, 41.475924208753135, 27.695920845332235, 49.563141927405056, 6.647757178033034, 7.805228244552642, 10.681961058207762, 12.19096228230456, 86.67303598682172, 19.169216674223808, 45.80097444874406, 6.616122827088875, 16.49309572376406, 7.376473332294465, 53.896587892392766, 5.515556164455244, 13.794341436599538, 5.991872224945256, 14.61973368379968, 95.88582895179363, 16.537237481831916, 20.778704325343693, 80.8887699004431, 35.98618166094189, 74.04983494825827, 68.96716323283819, 9.015785523567413, 20.004273257566, 59.830772852602735, 64.1131673745816, 5.738028180534854, 9.914990278433416, 35.43697894609798, 77.16738243567056, 64.23859679228215, 125.1746419696631, 92.86197556933567, 6.671683764842729, 21.12646255224973, 21.24774519275564, 120.09452192621114, 44.972986789412076, 35.33707778536229, 24.642264018271835, 71.652009378552, 23.61394228365658, 10.113355777187548, 31.468023998135777, 12.734614069728307, 25.746919027475627, 82.01925515235271, 12.080207914403193, 39.56898243088702, 8.224874890967806, 10.548831347261382, 14.251852348190065, 28.51003608966524, 13.031110439957619, 16.386215819762963, 31.481347351658062, 9.877590629741809, 7.804872443025638, 35.76750780487844, 6.160654050059118, 10.337291644924187, 31.16477950397728, 61.0662812601552, 46.212534933801194, 91.5202077096192, 41.10546116171169, 11.947611345034844, 31.036722871932184, 36.70062384816689, 12.503424558578043, 26.20935314493998, 248.4250319025518, 81.12789711410618, 13.835347003357073, 5.19455597349954, 153.62005259659162, 147.0770903603415, 71.44330401981169, 57.679114246596775, 18.74644221574121, 48.64263168977319, 9.897914963642513, 82.56018011859884, 22.78960956691977, 46.632527519930726, 33.515148373601214, 14.168676901207206, 47.407137795338436, 32.865372872241295, 79.98739658028222, 85.89122554436202, 13.109270403355278, 76.34461403498359, 22.064422245579376, 5.634254808243036, 56.067117993471136, 13.401003453245922, 9.36619964404773, 32.53612440602283, 6.896184427245082, 38.94093496363705, 11.476069537589701, 163.7770912643806, 68.3774402325909, 56.37012033314388, 12.381986345935122, 16.43615809129794, 9.06421015542416, 18.707530527822918, 68.59900645615723, 25.107966598077557, 38.70377845786231, 39.65192653010878, 26.996745549362597, 10.301532990668376, 17.868453820324387, 25.57348840836498, 50.858429448414704, 5.632094829701893, 63.174921650541854, 11.081381283200258, 80.37490236134688, 5.4464820819559785, 50.23171789345502, 20.931493909288577, 17.373323369870725, 28.286143106215906, 10.837782811941342, 7.396063998585876, 97.76183020903751, 22.284959444871813, 70.8544654778917, 20.72237787379158, 15.899786681677877, 5.571796738882333, 6.266179942591928, 111.89629946780369, 21.518911231335625, 53.02031443317856, 8.254749704326168, 21.45905229658387, 7.373862246237431, 12.260102712133273, 85.85123731300804, 23.953899914668284, 11.41733013249455, 6.429278186308929, 103.73092431079704, 25.48483019488683, 48.868175032665356, 55.58367087494373, 77.8903258023965, 20.37825663629284, 6.332440261700828, 5.220051246205807, 71.48739008164813, 7.719403350741657, 11.096017861874582, 79.53897071721062, 12.706542418792393, 24.10808910561626, 15.177690550719573, 6.83249863905231, 5.538851970010652, 100.9851586875292, 27.886408925819648, 28.000162408386906, 34.38132643855329, 19.057034363659007, 30.89842762657131, 33.1503943398263, 23.248393335999133, 12.713806153278577, 43.97805241298982, 40.61056948841306, 5.312525418876755, 13.78016547956043, 89.53755783054947, 25.222967471757592, 86.34225328585495, 28.188715513840002, 17.945597927263012, 8.718809096589876, 7.464771742987284, 57.86188384375895, 18.088420314559155, 17.487770621378225, 138.53773894311237, 27.884142073719364, 57.1923758150227, 6.547476269545011, 14.257691117252143, 62.762152627102736, 56.33772674759881, 40.67309648484462, 8.019737355125892, 31.209525272728243, 7.243157449284283, 67.89446440679424, 18.57450785423167, 66.38480106758244, 137.8934139138769, 65.86929637391063, 39.440552188823055, 76.57510931569065, 9.552264676146434, 5.979684771432238, 23.21137765460609, 5.219967040774248, 6.813193993440639, 50.81783660490808, 14.124684443695774, 174.3939776675432, 45.94564158742079, 73.21405607647056, 45.23621727937189, 26.27755885251268, 12.389597823464468, 63.638042647079715, 71.15485700559344, 11.095163034382272, 9.445984459209614, 91.64053163417609, 135.56608459254767, 78.08947242547201, 15.829848679335333, 14.785427853568514, 78.16619948144672, 42.82102901469712, 65.00117961606014, 19.554735541097354, 42.31652764612275, 15.12809847379132, 29.93497168663964, 22.75563057956275, 44.6214921534058, 28.844520097985097, 86.99994613921729, 8.63289143973538, 18.630225031754325, 74.81425148052102, 57.13262191761551, 23.86894013578764, 45.18585578790104, 39.07047457846202, 26.718690103157527, 50.43029793519145, 30.793154527099613, 5.7838269502676125, 48.76711650296603, 57.12708707325414, 13.358443727277333, 45.26272692257462, 8.554063785969866, 13.972201642758844, 48.01536956938543, 8.499376871043212, 12.552126136090584, 5.636776036057195, 7.250843497264481, 7.441390173210148, 46.43570770415016, 45.53909833418528, 8.108742948042881, 13.204625042798137, 12.454458104695782, 13.348891112186493, 29.561671512605912, 7.343023946566949, 10.622829517969734, 50.95357858694042, 49.056864149787486, 12.51942502806364, 12.04963826851215, 6.256474366238198, 15.138401252182415, 42.91915474492023, 65.31156673556157, 6.84572030353315, 66.3792727944099, 7.342852394660406, 5.602020251390158, 75.65481746495266, 5.221733252398036, 20.63992055275324, 37.96970891117826, 30.12910742138032, 38.06722425199307, 108.65596778499881, 80.4554811204134, 67.72047208559654, 9.280453886794076, 8.411651834611243, 10.620259256921692, 53.789527744629936, 26.521821230411373, 25.235518686917878, 24.282891406681117, 13.261368584277879, 17.52423383955626, 71.58963702367778, 5.487242953219078, 28.255865816831214, 28.360998163946167, 51.50689795055501, 40.51140127744198, 15.348060381006915, 5.660650548488294, 34.689129185948865, 11.97083745572169, 85.37778799964084, 20.35840928573107, 19.526836643014583, 8.398372045530468, 64.45502318695809, 9.718675815321044, 19.154251790955595, 7.287865171988044, 5.509466731610462, 6.309249107483794, 33.21933654952333, 73.94335659982406, 18.908023728730676, 51.87612376254645, 10.42812430461038, 9.032215534770344, 75.655217707717, 86.19994572974157, 5.857109837028906, 52.73005362336501, 33.69690584065218, 18.69313292735649, 24.301028175809307, 80.18859573675762, 10.516530743098413, 20.268411315776635, 134.92397136786633, 25.015628242294415, 5.626119404166638, 32.80831770856956, 5.88277966543922, 45.09149588738554, 31.03507372580488, 17.73561232767767, 11.463552964070635, 18.554345315507653, 5.519128742269286, 61.717795991172935, 14.113585065217498, 15.343420117335429, 13.726446690548158, 59.600268518326125, 29.116715628340756, 38.61062079037344, 56.10677136429141, 26.007795116359777, 9.422908129504608, 11.50809646550892, 39.80712475086781, 24.079665237350373, 20.526370329879935, 10.977129508237239, 12.376207388481397, 15.303267596562005, 5.2894466950961645, 27.01806693173161, 85.12808287731491, 32.71390654604083, 38.77233428246399, 90.99482257330297, 13.712026651947692, 60.75913746538534, 26.181508051968482, 92.50041060962006, 17.732161278933912, 18.400773470886385, 21.965887134292487, 98.89898909950381, 21.061014709442016, 9.991693337866534, 59.72637662844841, 18.104957050552777, 77.8465087045156, 48.748446978531604, 20.024483507446167, 25.369035863982894, 8.297626380580637, 20.1244168643561, 18.17742933079494, 70.9110640843686, 72.69820189584551, 30.88678875396967, 85.5787508012008, 28.661347288799906, 26.492141862759517, 126.14686094835535, 11.194227578720298, 6.690057951660976, 101.05984525226668, 100.147775527104, 5.328332621616539, 6.401937769939467, 5.317179136994901, 66.97643453027075, 130.59423493337647, 19.416992229676993, 37.59757285499628, 26.462943333843548, 73.37360416737566, 30.692120498374294, 6.861583194224669, 26.108043132945284, 59.15336471889296, 5.747967515075557, 35.652387167018865, 98.20973548246477, 40.5632576468083, 42.03891075339465, 12.988111932444884, 9.330900787358884, 59.435684706741824, 52.58453458579801, 40.03784520826858, 6.161762575612322, 76.00113240316269, 14.6307422438584, 5.9265473570900316, 36.74917291614923, 25.697546319234224, 16.603152597380596, 24.637882941895246, 59.3675318945366, 22.566828893162267, 8.48573372733448, 21.748315023152394, 18.687805820392196, 30.458984029242814, 19.968309668793506, 14.116791426037036, 20.878591143249835, 73.1071269339401, 13.993972282192162, 13.28590179360358, 5.3500411134591666, 6.286459956795883, 7.0680746238237715, 28.732238109280548, 17.657231249879434, 83.33361099048204, 36.70750261999042, 6.339578296661212, 53.120737779287424, 9.475742837816291, 109.99260773909441, 26.842543530734993, 16.973437362524045, 110.33782532136844, 19.11972170241248, 75.59641324572965, 7.63528411707833, 52.1001917359636, 13.116858397236024, 13.638596631954401, 32.51765438832054, 74.70022114974996, 66.32901791136271, 152.35572544507806, 10.788519726875121, 58.54322593244538, 7.9556235549093595, 13.585215638844131, 43.85245261326489, 116.20052632161322, 22.27466180576196, 158.10887970062126, 62.22403176670343, 47.966037557205595, 7.459924140893765, 28.240862606050484, 10.006430513617747, 17.90850683812415, 5.170265365321933, 42.27508672086474, 87.14378579504807, 51.18076920683961, 7.015154130051302, 93.38510113705227, 10.365214112963843, 11.116119455180442, 59.2502275324681, 35.975653697160496, 14.129801940688548, 27.424076226493078, 21.85933831057451, 7.802012677739739, 19.629118735305077, 7.117490554188494, 10.327030813612994, 60.26798804452754, 11.269059182636344, 37.20059261476654, 25.412763520373407, 11.368300143315087, 15.172740515151473, 70.75486645096467, 11.070146486566601, 7.1155076885835316, 31.99625914766341, 22.297991699696315, 31.276350336226724, 57.84862736328598, 27.43280117347447, 14.229275521388587, 29.831733800676606, 5.491207515791683, 28.92584190619845, 9.000748861644027, 69.22150055719186, 21.692654602392555, 6.835586020750002, 21.49735823344405, 49.217450571269865, 11.092953731230063, 63.5031448052696, 25.87683314467785, 7.299384655395236, 5.59102831383368, 74.23645241611347, 90.94141576357742, 49.87314426967836, 29.077632871114737, 52.24184811676756, 17.440587517976958, 86.75627111612121, 15.457773617564053, 18.672484365203818, 15.55254581842567, 9.147430110615726, 6.137302452131356, 52.73857069520084, 16.92984887945269, 6.202513320486359, 89.54966880810363, 53.421189861920524, 5.301686133472725, 7.210389832494263, 108.13001002484177, 64.27984067673479, 10.412633357096146, 100.20172005320487, 21.71079128017355, 14.260309597748504, 73.69339411466488, 26.60643431530299, 13.173935392131742, 15.458248584461796, 142.28185404030748, 84.34527518826616, 124.86106239295788, 21.46793623114, 23.806212207591386, 10.458275373613736, 23.99914519962211, 8.732346791106986, 12.875201072873066, 7.45463324360071, 47.31736691504917, 26.48898088437012, 67.36504470276763, 67.48126181606236, 21.483493034183958, 68.12767516019201, 53.62880281909346, 27.584152154881874, 55.42781736118484, 13.31819344738914, 22.27272301837437, 74.27490414094848, 14.624801430021549, 80.18491829543063, 68.68981767840154, 5.884410602897627, 28.166278030878367, 6.021877354284868, 74.69718800935082, 20.490083588320832, 35.319792465752634, 25.08791241285786, 11.10474404357029, 42.8781908484912, 8.419014771437498, 83.23383324209374, 68.19159111035526, 100.57833793683714, 38.75336643802914, 14.961283983234578, 23.865273652154244, 47.967970527549966, 64.01497097140349, 5.2255573233681005, 18.220306548376307, 10.186455739310299, 53.222587896906674, 15.270300234470001, 10.654474396443263, 6.347656928976067, 15.433180405742025, 17.467361797915224, 78.48166594381239, 39.112669907126296, 20.205690009441476, 43.749631952715276, 38.2149944674921, 5.783989772898918, 22.893756332789245, 11.584692797490614, 22.663196934007363, 101.06633608367457, 69.38746417308273, 12.862748204597192, 20.12511110738424, 8.777161019801481, 7.015272632120277, 20.320136716549424, 33.66797423377133, 13.989521408942144, 20.843789018739656, 21.360254821769345, 21.69911177090308, 80.72525014167746, 188.52312874613938, 16.6411418085721, 12.268967556993623, 39.27579955393345, 22.527049141068296, 46.52195611626751, 7.701520221863491, 14.404971732791637, 52.73637981651807, 9.717301391788872, 52.14694802483347, 6.644136155549452, 18.354345640156858, 5.192654673250042, 62.10440844721638, 44.319532276556956, 54.642680285745456, 53.701465020861484, 13.094517302649383, 14.291855777109873, 52.11603260993996, 18.171730188723632, 16.691934161522482, 65.37162960335019, 61.632340747600246, 134.4998971947156, 13.931921172653936, 14.71026791569521, 70.31083165054423, 47.394673099517625, 7.812465523938523, 29.86808500194608, 6.712958114950991, 17.201459502302775, 8.970638423657423, 9.70631341559242, 17.959368083847224, 154.53874681103707, 5.4779768872486185, 6.552315772014131, 6.688202993201722, 13.159297751277302, 8.898936728646284, 6.543037825208791, 55.11293856886711, 9.98114620228674, 76.53402561917002, 7.581970399891001, 47.04598079996752, 49.073348762100466, 63.82723796585374, 70.38367195273794, 24.807840969845735, 20.387479026692656, 7.262828217000586, 49.95906893362215, 79.49293867118037, 28.79905230604793, 40.00663529055697, 84.59488339898174, 41.15060445762735, 24.692583615344482, 46.801783086005955, 26.817804624714807, 39.51432108063788, 5.616683138297779, 38.20654689083894, 46.54751726848628, 57.72268724455499, 11.588114887287755, 107.98889207576282, 89.753743038713, 11.701272088932612, 83.14852785268222, 62.34908535254054, 5.6728324985182494, 35.877233823515404, 21.037250885913668, 14.094703652144762, 60.374266320857586, 115.53066552626238, 22.686663982403672, 26.630013696474418, 31.93220648414662, 16.112870999548498, 97.82147690717437, 96.88631996868716, 22.199954283432906, 13.330196138892102, 76.3110676111829, 24.50206877174161, 7.182246601807247, 80.82339644354177, 17.016061360180444, 80.45547502809565, 78.18766070968732, 15.964846664869446, 17.32657643014622, 10.503338084439328, 23.03926347927481, 87.57386885488893, 220.74888841053667, 16.21086973990617, 76.35014688422082, 78.31881358946052, 13.299337086414049, 75.08382547073728, 13.615178709199135, 44.04788826078572, 14.82774173640967, 15.388986489708646, 28.75425227290487, 23.132147271561543, 46.78156158822642, 32.95459039221642, 51.35561860322302, 37.21796123757218, 14.274479792246199, 12.572980503428091, 14.480859429977464, 100.35084263483597, 66.3598505858562, 9.176689632013375, 70.77879783053721, 48.57694215142289, 6.552392052521934, 57.176266898248855, 28.861062247209844, 19.416820913130998, 33.73363942792585, 108.99518727084305, 52.952208167281185, 27.872909456130085, 9.999649566596634, 41.67474078648005, 91.10662718032798, 68.48743437860793, 18.51707441935694, 28.34106663090536, 88.88662682422952, 73.67929017880247, 16.88651779511801, 29.918956666380993, 42.064317518933265, 59.3044265112793, 40.828736887555465, 90.20003366439661, 164.2813701315879, 17.19226116216977, 16.122418934108865, 59.42348817300214, 49.968560358895175, 103.51216937835706, 22.127460165735474, 113.18953393947598, 53.76317243011968, 7.99845081506421, 10.14585113315498, 62.35958006239199, 51.66250751470558, 14.680489564863096, 53.464693401953085, 70.41059545805064, 15.719569904131896, 8.390841623358892, 10.706745487162301, 118.81361033816164, 10.351090409491238, 9.067751991516262, 104.43455204583316, 119.91773719338279, 23.335185963497686, 121.91099474464431, 49.117797581559174, 10.269890087964573, 13.773185946091278, 26.781597463936887, 74.56682864254351, 12.218123394236642, 46.81407709895789, 82.650433349136, 12.50970842255704, 44.90083595160034, 66.18278598283452, 24.688958399004637, 12.625151940357577, 22.96972756288705, 22.239156830239814, 16.96040733186358, 42.220877854711624, 15.870239525964358, 89.47538669500004, 12.064818705816537, 58.748696503414685, 85.84071621244773, 6.628663929179089, 94.7158485263345, 31.529724893601614, 5.712432470126809, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5911146.875, 6257829.509292317, 6257846.220710002, 6279285.9375, 6500736.895922059, 6509137.002886607, 6509163.587315627, 6547942.29223895, 6621042.344487375, 6851904.6875, 6860048.035677522, 6877627.330768505, 6901583.002951761, 6947584.478972131, 6964402.196436086, 6964627.36835681, 7126370.3125, 7198827.087334495, 7223215.8969834205, 7266049.970794623, 7332911.514783617, 7572606.25, 7594682.117028893, 7594699.376059617, 7619388.131002754, 7695300.226026911, 7730076.5625, 7730273.965200518, 7795744.994337772, 7832948.998456769, 7834188.505820927, 7847907.089013105, 7848370.3125, 7848939.951997248, 7849446.365591413, 7850534.375, 7853252.164469955, 7878821.875, 7938065.121800634, 7954291.517544466, 7954417.1875, 7954601.845954119, 7955093.75, 7955206.25, 7958345.693654434, 7958760.9375, 7960222.5038637025, 7960783.53768122, 8031744.725887518, 8106313.017004874, 8166548.827087162, 8173308.548311276, 8178432.007982614, 8178465.741718445, 8234370.678825763, 8299305.465571517, 8321873.4375, 8400784.019191485, 8407518.634437028, 8438246.875, 8440297.641038692, 8445486.299569316, 8483036.883982195, 8499586.568644056, 8500926.5625, 8501419.934968939, 8501431.914692465, 8508925.272285406, 8518741.9426897, 8519790.902843548, 8523701.102587417, 8527188.901509417, 8560284.160124768, 8560678.65729222, 8561667.995980702, 8596098.4375, 8597614.673193162, 8612406.910172774, 8624593.75, 8654562.20841437, 8710925.791107418, 8713154.086608345, 8721704.6875, 8726226.185012445, 8727843.006623838, 8728265.471016437, 8728792.1875, 8729117.851246454, 8729285.9375, 8729601.5625, 8729771.81124716, 8729806.322453577, 8729989.775381302, 8730628.972883899, 8730750.248671612, 8730966.927203275, 8731059.624830654, 8731101.814027542, 8731450.0, 8731465.565676644, 8732656.25, 8732971.875, 8733110.322723635, 8733687.98471038, 8734267.748418394, 8734429.6875, 8740089.09628748, 8783164.0625, 8800233.802469889, 8801874.665099934, 8804696.875, 8806044.607855842, 8806351.294785338, 8817814.0625, 8818504.6875, 8828759.375, 8840026.755243542, 8856514.0625, 8881995.032385636, 8904902.731309205, 8955190.558034802, 8969593.711055199, 8973245.293345815, 8973407.8125, 8979828.125, 8980205.343560928, 8980607.789249672, 8980750.367825836, 8980795.258105192, 8981152.877578782, 8981758.017756164, 8981873.047411444, 8982356.552561626, 8982598.214329176, 8982715.192365607, 8982967.1875, 8983035.306184389, 8983227.327812027, 8983464.532976195, 8983706.84084433, 8983810.452877844, 8983990.008353759, 8984339.511052085, 8984955.173763325, 8985287.712942615, 9018073.24590687, 9040037.903917398, 9041544.101226697, 9048249.54922211, 9050793.75, 9052075.467424659, 9052268.123693235, 9053485.9375, 9053699.738432094, 9053729.461669393, 9066197.613108618, 9082154.6875, 9094229.680412501, 9098457.81285578, 9100040.625, 9101537.5, 9102898.711016526, 9103808.72234584, 9106193.75, 9108626.5625, 9122732.061752733, 9138549.892576613, 9139073.506995708, 9222827.231595112, 9230568.706691643, 9230898.4375, 9245713.453681441, 9247127.08845426, 9253304.382293629, 9258578.713155717, 9277787.5, 9287121.105543729, 9289171.875, 9289221.089034088, 9289444.368741618, 9289450.888763517, 9290359.375, 9291309.00855329, 9293902.879526747, 9298119.333376024, 9298263.975436732, 9305525.0, 9308411.301402442, 9319807.237773629, 9320421.875, 9321971.532884294, 9322201.253304292, 9323901.257701185, 9327149.601557637, 9329201.470874572, 9345976.390332036, 9351515.625, 9353375.480378214, 9354164.680480216, 9355728.92088054, 9355877.643904721, 9381551.5625, 9382321.875, 9383258.227301324, 9384147.959478797, 9384322.899943734, 9386261.975047477, 9388132.28125451, 9388463.070047678, 9388679.6875, 9392731.734273028, 9460707.8125, 9468747.29465475, 9477046.112103693, 9491242.100177415, 9506091.45634373, 9506249.897374852, 9512375.0, 9514968.97012667, 9521583.112915315, 9535545.193968333, 9536450.390117195, 9539412.306475377, 9540676.955847554, 9540860.326157767, 9540936.271091448, 9545729.6875, 9545947.457280131, 9546289.58758166, 9546826.528204838, 9548075.669952774, 9568849.427710451, 9569985.9375, 9570164.0625, 9570198.402772363, 9571324.578432601, 9571817.1875, 9572122.343043434, 9572228.5793121, 9572838.674710473, 9615000.731883917, 9615173.308340717, 9617441.060097441, 9617737.5, 9621059.05098959, 9621440.27340642, 9621956.875093387, 9623981.144451166, 9624534.375, 9630057.8125, 9631614.797178917, 9631854.6875, 9633058.414240425, 9634445.3125, 9635196.49583741, 9635481.25, 9636493.75, 9636701.343800975, 9636731.25, 9637092.015482398, 9637257.948429681, 9637506.25, 9638002.543893322, 9638068.75, 9638587.05542661, 9639970.672136344, 9643835.499157138, 9645563.58964274, 9648987.540867463, 9649301.506955361, 9651760.005132182, 9651983.975045886, 9653228.336997213, 9655068.31523214, 9657295.3125, 9659651.5625, 9659663.17735033, 9659679.68048804, 9660827.791144798, 9662180.815906763, 9662308.990829425, 9662650.22854092, 9664231.25, 9664385.9375, 9664978.04271654, 9666530.64823403, 9667178.515848387, 9667238.704923254, 9686393.75, 9686553.446736308, 9688720.3125, 9688723.407658815, 9690998.782462873, 9701135.576491198, 9710649.718349637, 9712885.379296392, 9713008.181994839, 9713112.111494342, 9713423.243744131, 9713625.950910226, 9714338.907211605, 9714433.950878028, 9714831.25, 9715171.294104714, 9715390.8555801, 9715450.772727096, 9715481.24193494, 9715835.9375, 9715952.627583543, 9716285.314222857, 9716303.064324634, 9716538.559080068, 9716833.692919929, 9717033.433435956, 9718609.375, 9719257.528239816, 9719312.677713243, 9719827.746009737, 9720748.4375, 9721432.637124095, 9721789.0625, 9723564.0625, 9747448.4375, 9763656.572030757, 9771848.93700968, 9771852.20293687, 9773332.8125, 9773381.560152294, 9773676.542131357, 9774656.025010847, 9776053.944560116, 9853382.397430802, 9930282.426186144, 9931106.586026825, 9931567.305846462, 9931607.53253191, 9931881.21690914, 9931881.22293226, 9931979.6875, 9932260.249722425, 9932356.25, 9932679.6875, 9932791.84712835, 9934203.947616782, 9934421.875, 9940412.5, 9965355.36628964, 9966371.024971964, 9993163.888533369, 9999282.619631266, 9999371.749938283, 10026139.045289403, 10026348.393188728, 10028206.986741973, 10032479.287717272, 10037567.1875, 10048224.410476567, 10061691.073191866, 10063382.696488094, 10065708.66726076, 10065909.375, 10067686.312189922, 10069159.253153436, 10231931.25, 10235895.3125, 10236085.88817968, 10236215.083846273, 10237191.965409467, 10238831.693604054, 10241959.375, 10242820.413247695, 10244751.5625, 10286729.018123215, 10294037.5, 10310723.4375, 10393329.645043664, 10394373.68764219, 10395189.51368556, 10396883.261881446, 10399231.887254633, 10403293.993889492, 10404938.596305761, 10415143.517812956, 10418650.95682012, 10443425.0, 10462660.9375, 10468979.6875, 10472618.6250343, 10474183.493316684, 10474689.495096644, 10475845.586916668, 10477610.916579256, 10477812.632471152, 10478496.875, 10480332.8125, 10481698.4375, 10487054.902552344, 10489282.770938488, 10489410.9375, 10492114.0625, 10492282.8125, 10493308.655938573, 10494593.564590344, 10495968.798107412, 10495988.81764242, 10496785.55538757, 10497021.875, 10498333.97458398, 10498451.486710766, 10498530.289598914, 10498640.311997406, 10498737.5, 10499112.5, 10499410.157669203, 10504970.3125, 10508047.291091768, 10508921.241726156, 10510426.5625, 10513438.692478826, 10514105.833986068, 10516340.625, 10516681.25, 10516979.199286832, 11449501.5625, 11451778.59874148, 11457913.782608707, 11463475.9477292, 11468384.7568372, 11469000.753301157, 11482872.278715784, 11485911.407875085, 11487546.404190524, 11487951.5625, 11488224.795012757, 11488390.272859583, 11488430.70505877, 11488720.423626553, 11488722.945820237, 11489085.024269827, 11489099.218281448, 11489193.40105403, 11489367.1875, 11489396.157899756, 11489447.61394848, 11489800.519324187, 11489803.039645726, 11489893.800715312, 11490211.778560702, 11490262.5, 11491597.2733133, 11491894.857752508, 11492349.217721447, 11499588.843093047, 11499984.375, 11501244.453875339, 11503184.407603867, 11505592.1875, 11530255.50141335, 11605274.315902557, 11607462.5, 11615317.1875, 11615693.75, 11615901.501623726, 11616126.791758712, 11620046.52413414, 11622826.5625, 11631199.18403633, 11631651.370479709, 11634598.614875978, 11640932.288713306, 11642095.355358811, 11646956.25, 11646977.142924044, 11647448.423762346, 11648191.949709438, 11648503.056978833, 11649493.75, 11655459.4777254, 11656869.56280174, 11657123.317732519, 11666142.538231984, 11668689.0625, 11669046.226445507, 11670853.964877501, 11672417.393087095, 11673098.838505438, 11673537.925054053, 11673538.291034656, 11673544.347370854, 11673593.253655894, 11673640.950736456, 11674647.365393283, 11674648.4375, 11675486.69488539, 11676106.25, 11677471.376029287, 11677507.436120745, 11678215.625, 11679779.6875, 11681181.816367764, 11685196.49879102, 11686098.215200145, 11687563.227075424, 11689495.054392522, 11693992.1875, 11694010.507820087, 11695847.805293508, 11696693.75, 11696831.838093596, 11697042.403727224, 11697145.3125, 11697241.513460973, 11698500.0, 11698535.562034303, 11698781.056024538, 11700208.01723914, 11700532.775730906, 11700648.146639561, 11701942.1875, 11702268.514390728, 11703603.226595731, 11703675.229072457, 11704185.9375, 11704282.8125, 11704332.8125, 11704449.516059076, 11705058.778365796, 11708726.668771809, 11710423.667953538, 11711142.377997285, 11711701.287821235, 11711743.147303248, 11711920.213980958, 11711986.61221414, 11712393.044113953, 11712531.196797544, 11712537.418940607, 11712818.222447809, 11712923.976489862, 11712953.125, 11712975.0, 11713229.322630418, 11713282.8125, 11713421.064708775, 11713718.75, 11713920.892134272, 11714349.12185138, 11714631.45992005, 11715201.5625, 11715254.143066429, 11715433.502220387, 11715440.625, 11715460.01427546, 11715723.4375, 11715960.9375, 11715968.088996183, 11716504.518515592, 11716889.083335642, 11717240.04472218, 11717593.405311463, 11718325.0, 11720092.1875, 11720882.8125, 11721076.5625, 11721094.144876262, 11721825.553159824, 11721855.992333245, 11721870.354645116, 11721952.74561813, 11722045.3125, 11722067.857765313, 11722071.472995564, 11722116.621892355, 11722141.447218943, 11723006.25, 11723019.615464982, 11723288.004651843, 11723698.4375, 11723756.708320444, 11723865.625, 11724181.25, 11724903.597181728, 11725574.864563238, 11725633.778359449, 11726395.94111053, 11726459.375, 11726606.824276444, 11727201.5625, 11727268.75, 11727291.559291203, 11731053.12440579, 11731399.704573471, 11731984.375, 11732803.125, 11733144.429775547, 11733256.890724348, 11733443.905469837, 11734399.851157054, 11734512.462738104, 11734546.8871406, 11737753.501898056, 11739001.29012219, 11741842.058075642, 11743035.538796708, 11743958.171031598, 11743972.962709077, 11744797.601312514, 11744831.209452413, 11748089.957237167, 11751476.771309817, 11751810.373609997, 11753007.136375556, 11753640.352011835, 11753649.485276459, 11754676.797552655, 11755776.71344916, 11756313.855477128, 11757590.625, 11757764.629743787, 11763190.041710012, 11764075.9477899, 11765720.864685766, 11767096.875, 11769270.478409523, 11775210.9375, 11791807.721294707, 11794360.461795347, 11796195.590879356, 11799388.367456507, 11800451.5625, 11804276.650242947, 11804282.917035468, 11805050.98430001, 11813730.860286599, 11820661.770417426, 11820676.304331912, 11830456.25, 11832290.752050677, 11862966.959090944, 11866988.291130641, 11867905.566933244, 11871735.529478403, 11872731.239923455, 11873060.599874461, 11873173.012434274, 11873398.725670492, 11874939.0625, 11878523.4375, 11887366.773078972, 11888288.94553937, 11888927.265781742, 11889227.17075502, 11889298.646820752, 11889651.42688642, 11889719.969308238, 11889989.0625, 11890013.642080251, 11890926.5625, 11891040.075484259, 11891439.055074105, 11892007.8125, 11892206.25, 11892484.1443882, 11892511.824844679, 11892617.438465409, 11892767.705561621, 11892964.915369498, 11893379.672409836, 11893429.106788287, 11893465.502937328, 11893551.651089001, 11893643.75, 11893824.0749114, 11893853.273657717, 11894193.809371665, 11895203.125, 11895534.337859914, 11895724.977339784, 11896056.25, 11898293.327070853, 11898299.382661125, 11898429.6875, 11898592.129801115, 11899057.61218399, 11899354.6875, 11899920.98094518, 11900259.881202959, 11900535.518729372, 11901420.3125, 11901576.08227438, 11902031.600630274, 11902333.875426738, 11902542.772900464, 11902553.102651702, 11903800.0, 11904277.975015596, 11904372.51123888, 11904512.076337254, 11904800.0, 11905002.521445813, 11905168.081739556, 11905224.250262177, 11905284.375, 11907959.905622315, 11908319.22991356, 11909714.915839646, 11910686.66161513, 11911470.464079022, 11911659.149103621, 11912411.397721147, 11912492.1875, 11912591.064300401, 11912996.345272861, 11913084.375, 11913281.25, 11913326.901857093, 11913344.077865716, 11913575.0, 11913921.299975619, 11914152.613680255, 11914365.208867416, 11914732.334049074, 11914770.925824935, 11915568.75, 11915961.36786666, 11916204.13100418, 11917170.940105928, 11917928.125, 11918323.20146894, 11918429.964087246, 11919055.182940248, 11919068.070122698, 11919497.962385831, 11919846.594200939, 11920025.757477153, 11920450.889192177, 11920668.31955011, 11920726.132927993, 11920757.700369364, 11920792.048574444, 11920899.969001379, 11921058.874036385, 11921187.5, 11921595.3125, 11921671.825618593, 11921725.0, 11921951.059630293, 11922143.473509476, 11922171.623538895, 11922179.946376884, 11922257.8125, 11922619.847997315, 11922700.908564324, 11922854.318810077, 11922875.900677942, 11923225.0, 11923300.955709117, 11923487.541635234, 11923492.382556457, 11923496.860259298, 11923526.546066554, 11923633.054817004, 11923921.592512753, 11924207.8125, 11924245.08860182, 11924516.201004673, 11924634.380178433, 11924773.14641371, 11925189.132690115, 11925298.374743983, 11925308.659710715, 11925314.250109892, 11925471.175928209, 11925618.75, 11925706.33366816, 11925734.049563581, 11925734.98635207, 11925923.560780177, 11926480.222713683, 11926606.25, 11926768.75, 11926788.70850905, 11926807.8125, 11926907.8125, 11927058.96127901, 11927143.77662086, 11927628.398932619, 11927647.67464707, 11928234.375, 11928719.30115232, 11929885.259145102, 11930855.600983772, 11931635.200215498, 11932132.39256752, 11932783.748787086, 11933117.1875, 11933962.225603066, 11934146.818612294, 11937636.805010024, 11940750.136144523, 11941201.5625, 11941357.8125, 11942632.577804143, 11942988.125097547, 11943257.685356166, 11943312.097757153, 11943631.25, 11943908.07630037, 11944019.72506159, 11944037.260588218, 11944678.54865373, 11944937.08394766, 11945305.621150428, 11946135.052402662, 11946723.009559121, 11946795.212570615, 11946874.77920449, 11946906.040198635, 11947073.4375, 11947202.422407757, 11947305.078339435, 11948260.9375, 11948426.059995644, 11948651.956682788, 11948860.9375, 11950120.3125, 11950368.75, 11950620.019753806, 11950989.000478726, 11951040.796071982, 11951346.184258936, 11951481.793664807, 11951500.0, 11951518.4914195, 11952002.051268056, 11952807.352626104, 11953273.849932909, 11954259.661727624, 11955351.6809241, 11955422.24731478, 11955803.528835207, 11956085.548229981, 11956154.125464827, 11956171.315063152, 11956259.72284757, 11956943.75, 11956949.117471293, 11957361.45839385, 11957890.565813793, 11958052.549512446, 11958055.612909803, 11958359.375, 11959161.571479155, 11959548.492086705, 11959619.082603581, 11959727.074338097, 11959760.9375, 11960028.125, 11960081.165215598, 11960120.572044382, 11960220.21587893, 11960229.6875, 11960408.049890447, 11960478.371854104, 11960483.413476083, 11960709.375, 11960764.110103838, 11960845.3125, 11960984.375, 11961037.368099218, 11961037.775853697, 11961610.9375, 11961680.367370242, 11961834.713371875, 11961840.51377693, 11961987.5, 11962224.453405974, 11962246.849145964, 11962388.779576518, 11962399.75855121, 11962536.031492123, 11962716.995454734, 11962937.09408177, 11962965.521295859, 11962965.625, 11963206.526752474, 11963451.5625, 11963473.4375, 11963641.755554922, 11964066.689014621, 11964340.625, 11964632.569127228, 11965159.601333568, 11966469.366221502, 11966472.330231614, 11966856.25, 11966925.0, 11967111.18235714, 11967247.744648617, 11967400.844490508, 11967421.517182099, 11967435.151893605, 11967656.26093645, 11967715.922431119, 11968059.557407761, 11968101.604567975, 11968310.427718751, 11968624.699761726, 11969683.977280838, 11971145.3125, 11971487.469828041, 11974670.42514775, 11978834.281224715, 11981735.411991704, 11981815.625, 11988215.666117923, 11990393.479165083, 11990931.272744864, 11991845.12575103, 11991889.824894728, 11992334.860731162, 11992576.184371483, 11992801.155709546, 11993041.998679087, 11993105.697880413, 11993518.75, 11993939.466793576, 11995106.25, 11995601.5625, 11996146.138206441, 11997691.919583714, 11997810.49024573, 11997902.858473524, 11998318.19093743, 11998728.822050586, 11998748.4375, 11999048.4375, 11999100.0, 11999147.576558065, 11999247.395740042, 11999296.493257836, 11999378.125, 11999511.204224322, 11999561.029622845, 11999608.72702922, 11999665.625, 11999700.0, 11999718.588167032, 11999742.533373438, 11999828.612126986, 11999865.903782297, 11999884.375, 11999889.0625, 11999922.233559655, 12000033.936324155, 12000130.69586136, 12000139.0625, 12000154.09978049, 12000300.828174109, 12000306.25, 12000376.5625, 12000412.429790339, 12000501.5625, 12000528.125, 12000545.502680428, 12000553.317094997, 12000570.025385171, 12000626.5625, 12000651.001491273, 12000743.420816895, 12000748.4375, 12000767.1875, 12000787.16675608, 12000795.3125, 12000800.0, 12000914.99685399, 12000957.468027528, 12000966.649445012, 12000969.982183883, 12000972.476101685, 12001008.902918676, 12001062.081693064, 12001149.172161682, 12001162.344265876, 12001167.027388511, 12001239.333500553, 12001271.097443713, 12001377.151654957, 12001380.464093195, 12001404.763184518, 12001446.875, 12001523.661542963, 12001524.674573937, 12001563.026838463, 12001579.6875, 12001606.472543625, 12001753.972347228, 12001762.5, 12001795.3125, 12001823.526293624, ...], [55.481461429039136, 60.59624075860137, 21.185526009784716, 33.54828827609012, 10.298746290428967, 10.430461012895453, 20.88561781287438, 11.29546453292052, 9.467768745176262, 29.53258441912881, 16.23900531549745, 8.739425450174423, 23.311142156685595, 22.52681294409626, 7.849828479246357, 6.374680192176667, 29.612670650835533, 7.26660509034794, 21.28709174160823, 101.54889329729455, 50.831759978776184, 67.53916843324261, 11.263919839209526, 10.274912231799629, 22.342692852664676, 49.94352546808373, 86.7941238970116, 12.066564065091647, 20.788111905894702, 23.634191067544876, 20.486423243481315, 15.146655372472537, 72.4835896583495, 65.92903035716469, 18.06471807493599, 44.874028911327024, 56.985094958186735, 202.0105735562834, 21.444491654935, 19.950172557768592, 36.809117086208836, 16.144453312895696, 77.83564212162014, 72.22177088054895, 11.780765215488202, 105.64444819537718, 6.350060498270917, 7.88841971661756, 102.9061321923631, 17.361816561659133, 30.93107598740323, 18.75441524829459, 89.26487473366336, 20.782967986131972, 52.02566222771935, 19.058415180487938, 43.6392046321046, 6.694492000281242, 26.432044609168084, 65.53692929320796, 26.239304439817808, 18.83253721131077, 20.408897710115316, 18.052913550739763, 51.11261433484787, 49.29976676039031, 28.482185651100536, 34.067687085298324, 30.909664755934028, 11.591662895011485, 52.70437497187788, 33.97224419249601, 63.13127878946254, 41.270211365334646, 26.03631518899804, 62.44704168625787, 52.947358550591275, 8.669532515637037, 103.87266344604642, 9.096448333745162, 5.22405660525287, 31.091269691601283, 47.93574265216068, 36.575179608386996, 19.366257696481096, 75.58522125127483, 58.062078547098, 97.31211579014897, 31.561763956027722, 49.83434881253974, 68.16426038515489, 11.242876937381785, 54.270419422394, 12.774336220974456, 9.550909177620763, 10.743843115500272, 15.987683077437707, 8.424224168082032, 119.08049985470754, 7.105944181788148, 81.86235898459566, 36.343282832142265, 26.687290611294543, 39.47454378309074, 140.7008872072399, 35.88847760887533, 20.338097866221325, 65.99182674029595, 123.14089444061412, 10.641697682082041, 50.08788412107425, 19.668741443665972, 8.149903618737754, 51.6758499674445, 55.83706554415809, 127.3016737384782, 15.730836505813757, 59.07126255523985, 24.008120591822195, 9.019314213079012, 76.99224185020677, 14.795119093421338, 28.151300006729276, 30.356905660254498, 35.5867083258727, 9.955444391421363, 14.277645246073922, 23.99857408374787, 48.91791422094944, 8.15993167490702, 11.464443120162034, 10.568205966644985, 24.78541784688972, 26.37020841840093, 13.514410453342867, 31.149809691213292, 34.72954367548, 12.579693224057698, 9.763641739952277, 17.80068286669538, 21.127995881970094, 13.017542749788747, 6.856487069042229, 50.56150686130712, 15.820411553982632, 108.88655394167455, 7.23183758873098, 145.8721293235083, 8.977268212073795, 41.679045482871544, 17.082846199024242, 45.29843148327885, 87.66420986203828, 9.119610536485137, 24.746758009379516, 35.96337772675653, 75.91395359286973, 73.93678202126122, 7.6033663675591985, 83.24557753569712, 267.8452079380973, 16.097681608438844, 25.15128848049566, 51.69399345675473, 78.78148812689989, 40.03452893890971, 25.913830116685595, 82.77309039418158, 41.475924208753135, 27.695920845332235, 49.563141927405056, 6.647757178033034, 7.805228244552642, 10.681961058207762, 12.19096228230456, 86.67303598682172, 19.169216674223808, 45.80097444874406, 6.616122827088875, 16.49309572376406, 7.376473332294465, 53.896587892392766, 5.515556164455244, 13.794341436599538, 5.991872224945256, 14.61973368379968, 95.88582895179363, 16.537237481831916, 20.778704325343693, 80.8887699004431, 35.98618166094189, 74.04983494825827, 68.96716323283819, 9.015785523567413, 20.004273257566, 59.830772852602735, 64.1131673745816, 5.738028180534854, 9.914990278433416, 35.43697894609798, 77.16738243567056, 64.23859679228215, 125.1746419696631, 92.86197556933567, 6.671683764842729, 21.12646255224973, 21.24774519275564, 120.09452192621114, 44.972986789412076, 35.33707778536229, 24.642264018271835, 71.652009378552, 23.61394228365658, 10.113355777187548, 31.468023998135777, 12.734614069728307, 25.746919027475627, 82.01925515235271, 12.080207914403193, 39.56898243088702, 8.224874890967806, 10.548831347261382, 14.251852348190065, 28.51003608966524, 13.031110439957619, 16.386215819762963, 31.481347351658062, 9.877590629741809, 7.804872443025638, 35.76750780487844, 6.160654050059118, 10.337291644924187, 31.16477950397728, 61.0662812601552, 46.212534933801194, 91.5202077096192, 41.10546116171169, 11.947611345034844, 31.036722871932184, 36.70062384816689, 12.503424558578043, 26.20935314493998, 248.4250319025518, 81.12789711410618, 13.835347003357073, 5.19455597349954, 153.62005259659162, 147.0770903603415, 71.44330401981169, 57.679114246596775, 18.74644221574121, 48.64263168977319, 9.897914963642513, 82.56018011859884, 22.78960956691977, 46.632527519930726, 33.515148373601214, 14.168676901207206, 47.407137795338436, 32.865372872241295, 79.98739658028222, 85.89122554436202, 13.109270403355278, 76.34461403498359, 22.064422245579376, 5.634254808243036, 56.067117993471136, 13.401003453245922, 9.36619964404773, 32.53612440602283, 6.896184427245082, 38.94093496363705, 11.476069537589701, 163.7770912643806, 68.3774402325909, 56.37012033314388, 12.381986345935122, 16.43615809129794, 9.06421015542416, 18.707530527822918, 68.59900645615723, 25.107966598077557, 38.70377845786231, 39.65192653010878, 26.996745549362597, 10.301532990668376, 17.868453820324387, 25.57348840836498, 50.858429448414704, 5.632094829701893, 63.174921650541854, 11.081381283200258, 80.37490236134688, 5.4464820819559785, 50.23171789345502, 20.931493909288577, 17.373323369870725, 28.286143106215906, 10.837782811941342, 7.396063998585876, 97.76183020903751, 22.284959444871813, 70.8544654778917, 20.72237787379158, 15.899786681677877, 5.571796738882333, 6.266179942591928, 111.89629946780369, 21.518911231335625, 53.02031443317856, 8.254749704326168, 21.45905229658387, 7.373862246237431, 12.260102712133273, 85.85123731300804, 23.953899914668284, 11.41733013249455, 6.429278186308929, 103.73092431079704, 25.48483019488683, 48.868175032665356, 55.58367087494373, 77.8903258023965, 20.37825663629284, 6.332440261700828, 5.220051246205807, 71.48739008164813, 7.719403350741657, 11.096017861874582, 79.53897071721062, 12.706542418792393, 24.10808910561626, 15.177690550719573, 6.83249863905231, 5.538851970010652, 100.9851586875292, 27.886408925819648, 28.000162408386906, 34.38132643855329, 19.057034363659007, 30.89842762657131, 33.1503943398263, 23.248393335999133, 12.713806153278577, 43.97805241298982, 40.61056948841306, 5.312525418876755, 13.78016547956043, 89.53755783054947, 25.222967471757592, 86.34225328585495, 28.188715513840002, 17.945597927263012, 8.718809096589876, 7.464771742987284, 57.86188384375895, 18.088420314559155, 17.487770621378225, 138.53773894311237, 27.884142073719364, 57.1923758150227, 6.547476269545011, 14.257691117252143, 62.762152627102736, 56.33772674759881, 40.67309648484462, 8.019737355125892, 31.209525272728243, 7.243157449284283, 67.89446440679424, 18.57450785423167, 66.38480106758244, 137.8934139138769, 65.86929637391063, 39.440552188823055, 76.57510931569065, 9.552264676146434, 5.979684771432238, 23.21137765460609, 5.219967040774248, 6.813193993440639, 50.81783660490808, 14.124684443695774, 174.3939776675432, 45.94564158742079, 73.21405607647056, 45.23621727937189, 26.27755885251268, 12.389597823464468, 63.638042647079715, 71.15485700559344, 11.095163034382272, 9.445984459209614, 91.64053163417609, 135.56608459254767, 78.08947242547201, 15.829848679335333, 14.785427853568514, 78.16619948144672, 42.82102901469712, 65.00117961606014, 19.554735541097354, 42.31652764612275, 15.12809847379132, 29.93497168663964, 22.75563057956275, 44.6214921534058, 28.844520097985097, 86.99994613921729, 8.63289143973538, 18.630225031754325, 74.81425148052102, 57.13262191761551, 23.86894013578764, 45.18585578790104, 39.07047457846202, 26.718690103157527, 50.43029793519145, 30.793154527099613, 5.7838269502676125, 48.76711650296603, 57.12708707325414, 13.358443727277333, 45.26272692257462, 8.554063785969866, 13.972201642758844, 48.01536956938543, 8.499376871043212, 12.552126136090584, 5.636776036057195, 7.250843497264481, 7.441390173210148, 46.43570770415016, 45.53909833418528, 8.108742948042881, 13.204625042798137, 12.454458104695782, 13.348891112186493, 29.561671512605912, 7.343023946566949, 10.622829517969734, 50.95357858694042, 49.056864149787486, 12.51942502806364, 12.04963826851215, 6.256474366238198, 15.138401252182415, 42.91915474492023, 65.31156673556157, 6.84572030353315, 66.3792727944099, 7.342852394660406, 5.602020251390158, 75.65481746495266, 5.221733252398036, 20.63992055275324, 37.96970891117826, 30.12910742138032, 38.06722425199307, 108.65596778499881, 80.4554811204134, 67.72047208559654, 9.280453886794076, 8.411651834611243, 10.620259256921692, 53.789527744629936, 26.521821230411373, 25.235518686917878, 24.282891406681117, 13.261368584277879, 17.52423383955626, 71.58963702367778, 5.487242953219078, 28.255865816831214, 28.360998163946167, 51.50689795055501, 40.51140127744198, 15.348060381006915, 5.660650548488294, 34.689129185948865, 11.97083745572169, 85.37778799964084, 20.35840928573107, 19.526836643014583, 8.398372045530468, 64.45502318695809, 9.718675815321044, 19.154251790955595, 7.287865171988044, 5.509466731610462, 6.309249107483794, 33.21933654952333, 73.94335659982406, 18.908023728730676, 51.87612376254645, 10.42812430461038, 9.032215534770344, 75.655217707717, 86.19994572974157, 5.857109837028906, 52.73005362336501, 33.69690584065218, 18.69313292735649, 24.301028175809307, 80.18859573675762, 10.516530743098413, 20.268411315776635, 134.92397136786633, 25.015628242294415, 5.626119404166638, 32.80831770856956, 5.88277966543922, 45.09149588738554, 31.03507372580488, 17.73561232767767, 11.463552964070635, 18.554345315507653, 5.519128742269286, 61.717795991172935, 14.113585065217498, 15.343420117335429, 13.726446690548158, 59.600268518326125, 29.116715628340756, 38.61062079037344, 56.10677136429141, 26.007795116359777, 9.422908129504608, 11.50809646550892, 39.80712475086781, 24.079665237350373, 20.526370329879935, 10.977129508237239, 12.376207388481397, 15.303267596562005, 5.2894466950961645, 27.01806693173161, 85.12808287731491, 32.71390654604083, 38.77233428246399, 90.99482257330297, 13.712026651947692, 60.75913746538534, 26.181508051968482, 92.50041060962006, 17.732161278933912, 18.400773470886385, 21.965887134292487, 98.89898909950381, 21.061014709442016, 9.991693337866534, 59.72637662844841, 18.104957050552777, 77.8465087045156, 48.748446978531604, 20.024483507446167, 25.369035863982894, 8.297626380580637, 20.1244168643561, 18.17742933079494, 70.9110640843686, 72.69820189584551, 30.88678875396967, 85.5787508012008, 28.661347288799906, 26.492141862759517, 126.14686094835535, 11.194227578720298, 6.690057951660976, 101.05984525226668, 100.147775527104, 5.328332621616539, 6.401937769939467, 5.317179136994901, 66.97643453027075, 130.59423493337647, 19.416992229676993, 37.59757285499628, 26.462943333843548, 73.37360416737566, 30.692120498374294, 6.861583194224669, 26.108043132945284, 59.15336471889296, 5.747967515075557, 35.652387167018865, 98.20973548246477, 40.5632576468083, 42.03891075339465, 12.988111932444884, 9.330900787358884, 59.435684706741824, 52.58453458579801, 40.03784520826858, 6.161762575612322, 76.00113240316269, 14.6307422438584, 5.9265473570900316, 36.74917291614923, 25.697546319234224, 16.603152597380596, 24.637882941895246, 59.3675318945366, 22.566828893162267, 8.48573372733448, 21.748315023152394, 18.687805820392196, 30.458984029242814, 19.968309668793506, 14.116791426037036, 20.878591143249835, 73.1071269339401, 13.993972282192162, 13.28590179360358, 5.3500411134591666, 6.286459956795883, 7.0680746238237715, 28.732238109280548, 17.657231249879434, 83.33361099048204, 36.70750261999042, 6.339578296661212, 53.120737779287424, 9.475742837816291, 109.99260773909441, 26.842543530734993, 16.973437362524045, 110.33782532136844, 19.11972170241248, 75.59641324572965, 7.63528411707833, 52.1001917359636, 13.116858397236024, 13.638596631954401, 32.51765438832054, 74.70022114974996, 66.32901791136271, 152.35572544507806, 10.788519726875121, 58.54322593244538, 7.9556235549093595, 13.585215638844131, 43.85245261326489, 116.20052632161322, 22.27466180576196, 158.10887970062126, 62.22403176670343, 47.966037557205595, 7.459924140893765, 28.240862606050484, 10.006430513617747, 17.90850683812415, 5.170265365321933, 42.27508672086474, 87.14378579504807, 51.18076920683961, 7.015154130051302, 93.38510113705227, 10.365214112963843, 11.116119455180442, 59.2502275324681, 35.975653697160496, 14.129801940688548, 27.424076226493078, 21.85933831057451, 7.802012677739739, 19.629118735305077, 7.117490554188494, 10.327030813612994, 60.26798804452754, 11.269059182636344, 37.20059261476654, 25.412763520373407, 11.368300143315087, 15.172740515151473, 70.75486645096467, 11.070146486566601, 7.1155076885835316, 31.99625914766341, 22.297991699696315, 31.276350336226724, 57.84862736328598, 27.43280117347447, 14.229275521388587, 29.831733800676606, 5.491207515791683, 28.92584190619845, 9.000748861644027, 69.22150055719186, 21.692654602392555, 6.835586020750002, 21.49735823344405, 49.217450571269865, 11.092953731230063, 63.5031448052696, 25.87683314467785, 7.299384655395236, 5.59102831383368, 74.23645241611347, 90.94141576357742, 49.87314426967836, 29.077632871114737, 52.24184811676756, 17.440587517976958, 86.75627111612121, 15.457773617564053, 18.672484365203818, 15.55254581842567, 9.147430110615726, 6.137302452131356, 52.73857069520084, 16.92984887945269, 6.202513320486359, 89.54966880810363, 53.421189861920524, 5.301686133472725, 7.210389832494263, 108.13001002484177, 64.27984067673479, 10.412633357096146, 100.20172005320487, 21.71079128017355, 14.260309597748504, 73.69339411466488, 26.60643431530299, 13.173935392131742, 15.458248584461796, 142.28185404030748, 84.34527518826616, 124.86106239295788, 21.46793623114, 23.806212207591386, 10.458275373613736, 23.99914519962211, 8.732346791106986, 12.875201072873066, 7.45463324360071, 47.31736691504917, 26.48898088437012, 67.36504470276763, 67.48126181606236, 21.483493034183958, 68.12767516019201, 53.62880281909346, 27.584152154881874, 55.42781736118484, 13.31819344738914, 22.27272301837437, 74.27490414094848, 14.624801430021549, 80.18491829543063, 68.68981767840154, 5.884410602897627, 28.166278030878367, 6.021877354284868, 74.69718800935082, 20.490083588320832, 35.319792465752634, 25.08791241285786, 11.10474404357029, 42.8781908484912, 8.419014771437498, 83.23383324209374, 68.19159111035526, 100.57833793683714, 38.75336643802914, 14.961283983234578, 23.865273652154244, 47.967970527549966, 64.01497097140349, 5.2255573233681005, 18.220306548376307, 10.186455739310299, 53.222587896906674, 15.270300234470001, 10.654474396443263, 6.347656928976067, 15.433180405742025, 17.467361797915224, 78.48166594381239, 39.112669907126296, 20.205690009441476, 43.749631952715276, 38.2149944674921, 5.783989772898918, 22.893756332789245, 11.584692797490614, 22.663196934007363, 101.06633608367457, 69.38746417308273, 12.862748204597192, 20.12511110738424, 8.777161019801481, 7.015272632120277, 20.320136716549424, 33.66797423377133, 13.989521408942144, 20.843789018739656, 21.360254821769345, 21.69911177090308, 80.72525014167746, 188.52312874613938, 16.6411418085721, 12.268967556993623, 39.27579955393345, 22.527049141068296, 46.52195611626751, 7.701520221863491, 14.404971732791637, 52.73637981651807, 9.717301391788872, 52.14694802483347, 6.644136155549452, 18.354345640156858, 5.192654673250042, 62.10440844721638, 44.319532276556956, 54.642680285745456, 53.701465020861484, 13.094517302649383, 14.291855777109873, 52.11603260993996, 18.171730188723632, 16.691934161522482, 65.37162960335019, 61.632340747600246, 134.4998971947156, 13.931921172653936, 14.71026791569521, 70.31083165054423, 47.394673099517625, 7.812465523938523, 29.86808500194608, 6.712958114950991, 17.201459502302775, 8.970638423657423, 9.70631341559242, 17.959368083847224, 154.53874681103707, 5.4779768872486185, 6.552315772014131, 6.688202993201722, 13.159297751277302, 8.898936728646284, 6.543037825208791, 55.11293856886711, 9.98114620228674, 76.53402561917002, 7.581970399891001, 47.04598079996752, 49.073348762100466, 63.82723796585374, 70.38367195273794, 24.807840969845735, 20.387479026692656, 7.262828217000586, 49.95906893362215, 79.49293867118037, 28.79905230604793, 40.00663529055697, 84.59488339898174, 41.15060445762735, 24.692583615344482, 46.801783086005955, 26.817804624714807, 39.51432108063788, 5.616683138297779, 38.20654689083894, 46.54751726848628, 57.72268724455499, 11.588114887287755, 107.98889207576282, 89.753743038713, 11.701272088932612, 83.14852785268222, 62.34908535254054, 5.6728324985182494, 35.877233823515404, 21.037250885913668, 14.094703652144762, 60.374266320857586, 115.53066552626238, 22.686663982403672, 26.630013696474418, 31.93220648414662, 16.112870999548498, 97.82147690717437, 96.88631996868716, 22.199954283432906, 13.330196138892102, 76.3110676111829, 24.50206877174161, 7.182246601807247, 80.82339644354177, 17.016061360180444, 80.45547502809565, 78.18766070968732, 15.964846664869446, 17.32657643014622, 10.503338084439328, 23.03926347927481, 87.57386885488893, 220.74888841053667, 16.21086973990617, 76.35014688422082, 78.31881358946052, 13.299337086414049, 75.08382547073728, 13.615178709199135, 44.04788826078572, 14.82774173640967, 15.388986489708646, 28.75425227290487, 23.132147271561543, 46.78156158822642, 32.95459039221642, 51.35561860322302, 37.21796123757218, 14.274479792246199, 12.572980503428091, 14.480859429977464, 100.35084263483597, 66.3598505858562, 9.176689632013375, 70.77879783053721, 48.57694215142289, 6.552392052521934, 57.176266898248855, 28.861062247209844, 19.416820913130998, 33.73363942792585, 108.99518727084305, 52.952208167281185, 27.872909456130085, 9.999649566596634, 41.67474078648005, 91.10662718032798, 68.48743437860793, 18.51707441935694, 28.34106663090536, 88.88662682422952, 73.67929017880247, 16.88651779511801, 29.918956666380993, 42.064317518933265, 59.3044265112793, 40.828736887555465, 90.20003366439661, 164.2813701315879, 17.19226116216977, 16.122418934108865, 59.42348817300214, 49.968560358895175, 103.51216937835706, 22.127460165735474, 113.18953393947598, 53.76317243011968, 7.99845081506421, 10.14585113315498, 62.35958006239199, 51.66250751470558, 14.680489564863096, 53.464693401953085, 70.41059545805064, 15.719569904131896, 8.390841623358892, 10.706745487162301, 118.81361033816164, 10.351090409491238, 9.067751991516262, 104.43455204583316, 119.91773719338279, 23.335185963497686, 121.91099474464431, 49.117797581559174, 10.269890087964573, 13.773185946091278, 26.781597463936887, 74.56682864254351, 12.218123394236642, 46.81407709895789, 82.650433349136, 12.50970842255704, 44.90083595160034, 66.18278598283452, 24.688958399004637, 12.625151940357577, 22.96972756288705, 22.239156830239814, 16.96040733186358, 42.220877854711624, 15.870239525964358, 89.47538669500004, 12.064818705816537, 58.748696503414685, 85.84071621244773, 6.628663929179089, 94.7158485263345, 31.529724893601614, 5.712432470126809, ...])
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);
([5911146.875, 6257829.509292317, 6257846.220710002, 6279285.9375, 6500736.895922059, 6509137.002886607, 6509163.587315627, 6547942.29223895, 6621042.344487375, 6851904.6875, 6860048.035677522, 6877627.330768505, 6901583.002951761, 6947584.478972131, 6964402.196436086, 6964627.36835681, 7126370.3125, 7198827.087334495, 7223215.8969834205, 7266049.970794623, 7332911.514783617, 7572606.25, 7594682.117028893, 7594699.376059617, 7619388.131002754, 7695300.226026911, 7730076.5625, 7730273.965200518, 7795744.994337772, 7832948.998456769, 7834188.505820927, 7847907.089013105, 7848370.3125, 7848939.951997248, 7849446.365591413, 7850534.375, 7853252.164469955, 7878821.875, 7938065.121800634, 7954291.517544466, 7954417.1875, 7954601.845954119, 7955093.75, 7955206.25, 7958345.693654434, 7958760.9375, 7960222.5038637025, 7960783.53768122, 8031744.725887518, 8106313.017004874, 8166548.827087162, 8173308.548311276, 8178432.007982614, 8178465.741718445, 8234370.678825763, 8299305.465571517, 8321873.4375, 8400784.019191485, 8407518.634437028, 8438246.875, 8440297.641038692, 8445486.299569316, 8483036.883982195, 8499586.568644056, 8500926.5625, 8501419.934968939, 8501431.914692465, 8508925.272285406, 8518741.9426897, 8519790.902843548, 8523701.102587417, 8527188.901509417, 8560284.160124768, 8560678.65729222, 8561667.995980702, 8596098.4375, 8597614.673193162, 8612406.910172774, 8624593.75, 8654562.20841437, 8710925.791107418, 8713154.086608345, 8721704.6875, 8726226.185012445, 8727843.006623838, 8728265.471016437, 8728792.1875, 8729117.851246454, 8729285.9375, 8729601.5625, 8729771.81124716, 8729806.322453577, 8729989.775381302, 8730628.972883899, 8730750.248671612, 8730966.927203275, 8731059.624830654, 8731101.814027542, 8731450.0, 8731465.565676644, 8732656.25, 8732971.875, 8733110.322723635, 8733687.98471038, 8734267.748418394, 8734429.6875, 8740089.09628748, 8783164.0625, 8800233.802469889, 8801874.665099934, 8804696.875, 8806044.607855842, 8806351.294785338, 8817814.0625, 8818504.6875, 8828759.375, 8840026.755243542, 8856514.0625, 8881995.032385636, 8904902.731309205, 8955190.558034802, 8969593.711055199, 8973245.293345815, 8973407.8125, 8979828.125, 8980205.343560928, 8980607.789249672, 8980750.367825836, 8980795.258105192, 8981152.877578782, 8981758.017756164, 8981873.047411444, 8982356.552561626, 8982598.214329176, 8982715.192365607, 8982967.1875, 8983035.306184389, 8983227.327812027, 8983464.532976195, 8983706.84084433, 8983810.452877844, 8983990.008353759, 8984339.511052085, 8984955.173763325, 8985287.712942615, 9018073.24590687, 9040037.903917398, 9041544.101226697, 9048249.54922211, 9050793.75, 9052075.467424659, 9052268.123693235, 9053485.9375, 9053699.738432094, 9053729.461669393, 9066197.613108618, 9082154.6875, 9094229.680412501, 9098457.81285578, 9100040.625, 9101537.5, 9102898.711016526, 9103808.72234584, 9106193.75, 9108626.5625, 9122732.061752733, 9138549.892576613, 9139073.506995708, 9222827.231595112, 9230568.706691643, 9230898.4375, 9245713.453681441, 9247127.08845426, 9253304.382293629, 9258578.713155717, 9277787.5, 9287121.105543729, 9289171.875, 9289221.089034088, 9289444.368741618, 9289450.888763517, 9290359.375, 9291309.00855329, 9293902.879526747, 9298119.333376024, 9298263.975436732, 9305525.0, 9308411.301402442, 9319807.237773629, 9320421.875, 9321971.532884294, 9322201.253304292, 9323901.257701185, 9327149.601557637, 9329201.470874572, 9345976.390332036, 9351515.625, 9353375.480378214, 9354164.680480216, 9355728.92088054, 9355877.643904721, 9381551.5625, 9382321.875, 9383258.227301324, 9384147.959478797, 9384322.899943734, 9386261.975047477, 9388132.28125451, 9388463.070047678, 9388679.6875, 9392731.734273028, 9460707.8125, 9468747.29465475, 9477046.112103693, 9491242.100177415, 9506091.45634373, 9506249.897374852, 9512375.0, 9514968.97012667, 9521583.112915315, 9535545.193968333, 9536450.390117195, 9539412.306475377, 9540676.955847554, 9540860.326157767, 9540936.271091448, 9545729.6875, 9545947.457280131, 9546289.58758166, 9546826.528204838, 9548075.669952774, 9568849.427710451, 9569985.9375, 9570164.0625, 9570198.402772363, 9571324.578432601, 9571817.1875, 9572122.343043434, 9572228.5793121, 9572838.674710473, 9615000.731883917, 9615173.308340717, 9617441.060097441, 9617737.5, 9621059.05098959, 9621440.27340642, 9621956.875093387, 9623981.144451166, 9624534.375, 9630057.8125, 9631614.797178917, 9631854.6875, 9633058.414240425, 9634445.3125, 9635196.49583741, 9635481.25, 9636493.75, 9636701.343800975, 9636731.25, 9637092.015482398, 9637257.948429681, 9637506.25, 9638002.543893322, 9638068.75, 9638587.05542661, 9639970.672136344, 9643835.499157138, 9645563.58964274, 9648987.540867463, 9649301.506955361, 9651760.005132182, 9651983.975045886, 9653228.336997213, 9655068.31523214, 9657295.3125, 9659651.5625, 9659663.17735033, 9659679.68048804, 9660827.791144798, 9662180.815906763, 9662308.990829425, 9662650.22854092, 9664231.25, 9664385.9375, 9664978.04271654, 9666530.64823403, 9667178.515848387, 9667238.704923254, 9686393.75, 9686553.446736308, 9688720.3125, 9688723.407658815, 9690998.782462873, 9701135.576491198, 9710649.718349637, 9712885.379296392, 9713008.181994839, 9713112.111494342, 9713423.243744131, 9713625.950910226, 9714338.907211605, 9714433.950878028, 9714831.25, 9715171.294104714, 9715390.8555801, 9715450.772727096, 9715481.24193494, 9715835.9375, 9715952.627583543, 9716285.314222857, 9716303.064324634, 9716538.559080068, 9716833.692919929, 9717033.433435956, 9718609.375, 9719257.528239816, 9719312.677713243, 9719827.746009737, 9720748.4375, 9721432.637124095, 9721789.0625, 9723564.0625, 9747448.4375, 9763656.572030757, 9771848.93700968, 9771852.20293687, 9773332.8125, 9773381.560152294, 9773676.542131357, 9774656.025010847, 9776053.944560116, 9853382.397430802, 9930282.426186144, 9931106.586026825, 9931567.305846462, 9931607.53253191, 9931881.21690914, 9931881.22293226, 9931979.6875, 9932260.249722425, 9932356.25, 9932679.6875, 9932791.84712835, 9934203.947616782, 9934421.875, 9940412.5, 9965355.36628964, 9966371.024971964, 9993163.888533369, 9999282.619631266, 9999371.749938283, 10026139.045289403, 10026348.393188728, 10028206.986741973, 10032479.287717272, 10037567.1875, 10048224.410476567, 10061691.073191866, 10063382.696488094, 10065708.66726076, 10065909.375, 10067686.312189922, 10069159.253153436, 10231931.25, 10235895.3125, 10236085.88817968, 10236215.083846273, 10237191.965409467, 10238831.693604054, 10241959.375, 10242820.413247695, 10244751.5625, 10286729.018123215, 10294037.5, 10310723.4375, 10393329.645043664, 10394373.68764219, 10395189.51368556, 10396883.261881446, 10399231.887254633, 10403293.993889492, 10404938.596305761, 10415143.517812956, 10418650.95682012, 10443425.0, 10462660.9375, 10468979.6875, 10472618.6250343, 10474183.493316684, 10474689.495096644, 10475845.586916668, 10477610.916579256, 10477812.632471152, 10478496.875, 10480332.8125, 10481698.4375, 10487054.902552344, 10489282.770938488, 10489410.9375, 10492114.0625, 10492282.8125, 10493308.655938573, 10494593.564590344, 10495968.798107412, 10495988.81764242, 10496785.55538757, 10497021.875, 10498333.97458398, 10498451.486710766, 10498530.289598914, 10498640.311997406, 10498737.5, 10499112.5, 10499410.157669203, 10504970.3125, 10508047.291091768, 10508921.241726156, 10510426.5625, 10513438.692478826, 10514105.833986068, 10516340.625, 10516681.25, 10516979.199286832, 11449501.5625, 11451778.59874148, 11457913.782608707, 11463475.9477292, 11468384.7568372, 11469000.753301157, 11482872.278715784, 11485911.407875085, 11487546.404190524, 11487951.5625, 11488224.795012757, 11488390.272859583, 11488430.70505877, 11488720.423626553, 11488722.945820237, 11489085.024269827, 11489099.218281448, 11489193.40105403, 11489367.1875, 11489396.157899756, 11489447.61394848, 11489800.519324187, 11489803.039645726, 11489893.800715312, 11490211.778560702, 11490262.5, 11491597.2733133, 11491894.857752508, 11492349.217721447, 11499588.843093047, 11499984.375, 11501244.453875339, 11503184.407603867, 11505592.1875, 11530255.50141335, 11605274.315902557, 11607462.5, 11615317.1875, 11615693.75, 11615901.501623726, 11616126.791758712, 11620046.52413414, 11622826.5625, 11631199.18403633, 11631651.370479709, 11634598.614875978, 11640932.288713306, 11642095.355358811, 11646956.25, 11646977.142924044, 11647448.423762346, 11648191.949709438, 11648503.056978833, 11649493.75, 11655459.4777254, 11656869.56280174, 11657123.317732519, 11666142.538231984, 11668689.0625, 11669046.226445507, 11670853.964877501, 11672417.393087095, 11673098.838505438, 11673537.925054053, 11673538.291034656, 11673544.347370854, 11673593.253655894, 11673640.950736456, 11674647.365393283, 11674648.4375, 11675486.69488539, 11676106.25, 11677471.376029287, 11677507.436120745, 11678215.625, 11679779.6875, 11681181.816367764, 11685196.49879102, 11686098.215200145, 11687563.227075424, 11689495.054392522, 11693992.1875, 11694010.507820087, 11695847.805293508, 11696693.75, 11696831.838093596, 11697042.403727224, 11697145.3125, 11697241.513460973, 11698500.0, 11698535.562034303, 11698781.056024538, 11700208.01723914, 11700532.775730906, 11700648.146639561, 11701942.1875, 11702268.514390728, 11703603.226595731, 11703675.229072457, 11704185.9375, 11704282.8125, 11704332.8125, 11704449.516059076, 11705058.778365796, 11708726.668771809, 11710423.667953538, 11711142.377997285, 11711701.287821235, 11711743.147303248, 11711920.213980958, 11711986.61221414, 11712393.044113953, 11712531.196797544, 11712537.418940607, 11712818.222447809, 11712923.976489862, 11712953.125, 11712975.0, 11713229.322630418, 11713282.8125, 11713421.064708775, 11713718.75, 11713920.892134272, 11714349.12185138, 11714631.45992005, 11715201.5625, 11715254.143066429, 11715433.502220387, 11715440.625, 11715460.01427546, 11715723.4375, 11715960.9375, 11715968.088996183, 11716504.518515592, 11716889.083335642, 11717240.04472218, 11717593.405311463, 11718325.0, 11720092.1875, 11720882.8125, 11721076.5625, 11721094.144876262, 11721825.553159824, 11721855.992333245, 11721870.354645116, 11721952.74561813, 11722045.3125, 11722067.857765313, 11722071.472995564, 11722116.621892355, 11722141.447218943, 11723006.25, 11723019.615464982, 11723288.004651843, 11723698.4375, 11723756.708320444, 11723865.625, 11724181.25, 11724903.597181728, 11725574.864563238, 11725633.778359449, 11726395.94111053, 11726459.375, 11726606.824276444, 11727201.5625, 11727268.75, 11727291.559291203, 11731053.12440579, 11731399.704573471, 11731984.375, 11732803.125, 11733144.429775547, 11733256.890724348, 11733443.905469837, 11734399.851157054, 11734512.462738104, 11734546.8871406, 11737753.501898056, 11739001.29012219, 11741842.058075642, 11743035.538796708, 11743958.171031598, 11743972.962709077, 11744797.601312514, 11744831.209452413, 11748089.957237167, 11751476.771309817, 11751810.373609997, 11753007.136375556, 11753640.352011835, 11753649.485276459, 11754676.797552655, 11755776.71344916, 11756313.855477128, 11757590.625, 11757764.629743787, 11763190.041710012, 11764075.9477899, 11765720.864685766, 11767096.875, 11769270.478409523, 11775210.9375, 11791807.721294707, 11794360.461795347, 11796195.590879356, 11799388.367456507, 11800451.5625, 11804276.650242947, 11804282.917035468, 11805050.98430001, 11813730.860286599, 11820661.770417426, 11820676.304331912, 11830456.25, 11832290.752050677, 11862966.959090944, 11866988.291130641, 11867905.566933244, 11871735.529478403, 11872731.239923455, 11873060.599874461, 11873173.012434274, 11873398.725670492, 11874939.0625, 11878523.4375, 11887366.773078972, 11888288.94553937, 11888927.265781742, 11889227.17075502, 11889298.646820752, 11889651.42688642, 11889719.969308238, 11889989.0625, 11890013.642080251, 11890926.5625, 11891040.075484259, 11891439.055074105, 11892007.8125, 11892206.25, 11892484.1443882, 11892511.824844679, 11892617.438465409, 11892767.705561621, 11892964.915369498, 11893379.672409836, 11893429.106788287, 11893465.502937328, 11893551.651089001, 11893643.75, 11893824.0749114, 11893853.273657717, 11894193.809371665, 11895203.125, 11895534.337859914, 11895724.977339784, 11896056.25, 11898293.327070853, 11898299.382661125, 11898429.6875, 11898592.129801115, 11899057.61218399, 11899354.6875, 11899920.98094518, 11900259.881202959, 11900535.518729372, 11901420.3125, 11901576.08227438, 11902031.600630274, 11902333.875426738, 11902542.772900464, 11902553.102651702, 11903800.0, 11904277.975015596, 11904372.51123888, 11904512.076337254, 11904800.0, 11905002.521445813, 11905168.081739556, 11905224.250262177, 11905284.375, 11907959.905622315, 11908319.22991356, 11909714.915839646, 11910686.66161513, 11911470.464079022, 11911659.149103621, 11912411.397721147, 11912492.1875, 11912591.064300401, 11912996.345272861, 11913084.375, 11913281.25, 11913326.901857093, 11913344.077865716, 11913575.0, 11913921.299975619, 11914152.613680255, 11914365.208867416, 11914732.334049074, 11914770.925824935, 11915568.75, 11915961.36786666, 11916204.13100418, 11917170.940105928, 11917928.125, 11918323.20146894, 11918429.964087246, 11919055.182940248, 11919068.070122698, 11919497.962385831, 11919846.594200939, 11920025.757477153, 11920450.889192177, 11920668.31955011, 11920726.132927993, 11920757.700369364, 11920792.048574444, 11920899.969001379, 11921058.874036385, 11921187.5, 11921595.3125, 11921671.825618593, 11921725.0, 11921951.059630293, 11922143.473509476, 11922171.623538895, 11922179.946376884, 11922257.8125, 11922619.847997315, 11922700.908564324, 11922854.318810077, 11922875.900677942, 11923225.0, 11923300.955709117, 11923487.541635234, 11923492.382556457, 11923496.860259298, 11923526.546066554, 11923633.054817004, 11923921.592512753, 11924207.8125, 11924245.08860182, 11924516.201004673, 11924634.380178433, 11924773.14641371, 11925189.132690115, 11925298.374743983, 11925308.659710715, 11925314.250109892, 11925471.175928209, 11925618.75, 11925706.33366816, 11925734.049563581, 11925734.98635207, 11925923.560780177, 11926480.222713683, 11926606.25, 11926768.75, 11926788.70850905, 11926807.8125, 11926907.8125, 11927058.96127901, 11927143.77662086, 11927628.398932619, 11927647.67464707, 11928234.375, 11928719.30115232, 11929885.259145102, 11930855.600983772, 11931635.200215498, 11932132.39256752, 11932783.748787086, 11933117.1875, 11933962.225603066, 11934146.818612294, 11937636.805010024, 11940750.136144523, 11941201.5625, 11941357.8125, 11942632.577804143, 11942988.125097547, 11943257.685356166, 11943312.097757153, 11943631.25, 11943908.07630037, 11944019.72506159, 11944037.260588218, 11944678.54865373, 11944937.08394766, 11945305.621150428, 11946135.052402662, 11946723.009559121, 11946795.212570615, 11946874.77920449, 11946906.040198635, 11947073.4375, 11947202.422407757, 11947305.078339435, 11948260.9375, 11948426.059995644, 11948651.956682788, 11948860.9375, 11950120.3125, 11950368.75, 11950620.019753806, 11950989.000478726, 11951040.796071982, 11951346.184258936, 11951481.793664807, 11951500.0, 11951518.4914195, 11952002.051268056, 11952807.352626104, 11953273.849932909, 11954259.661727624, 11955351.6809241, 11955422.24731478, 11955803.528835207, 11956085.548229981, 11956154.125464827, 11956171.315063152, 11956259.72284757, 11956943.75, 11956949.117471293, 11957361.45839385, 11957890.565813793, 11958052.549512446, 11958055.612909803, 11958359.375, 11959161.571479155, 11959548.492086705, 11959619.082603581, 11959727.074338097, 11959760.9375, 11960028.125, 11960081.165215598, 11960120.572044382, 11960220.21587893, 11960229.6875, 11960408.049890447, 11960478.371854104, 11960483.413476083, 11960709.375, 11960764.110103838, 11960845.3125, 11960984.375, 11961037.368099218, 11961037.775853697, 11961610.9375, 11961680.367370242, 11961834.713371875, 11961840.51377693, 11961987.5, 11962224.453405974, 11962246.849145964, 11962388.779576518, 11962399.75855121, 11962536.031492123, 11962716.995454734, 11962937.09408177, 11962965.521295859, 11962965.625, 11963206.526752474, 11963451.5625, 11963473.4375, 11963641.755554922, 11964066.689014621, 11964340.625, 11964632.569127228, 11965159.601333568, 11966469.366221502, 11966472.330231614, 11966856.25, 11966925.0, 11967111.18235714, 11967247.744648617, 11967400.844490508, 11967421.517182099, 11967435.151893605, 11967656.26093645, 11967715.922431119, 11968059.557407761, 11968101.604567975, 11968310.427718751, 11968624.699761726, 11969683.977280838, 11971145.3125, 11971487.469828041, 11974670.42514775, 11978834.281224715, 11981735.411991704, 11981815.625, 11988215.666117923, 11990393.479165083, 11990931.272744864, 11991845.12575103, 11991889.824894728, 11992334.860731162, 11992576.184371483, 11992801.155709546, 11993041.998679087, 11993105.697880413, 11993518.75, 11993939.466793576, 11995106.25, 11995601.5625, 11996146.138206441, 11997691.919583714, 11997810.49024573, 11997902.858473524, 11998318.19093743, 11998728.822050586, 11998748.4375, 11999048.4375, 11999100.0, 11999147.576558065, 11999247.395740042, 11999296.493257836, 11999378.125, 11999511.204224322, 11999561.029622845, 11999608.72702922, 11999665.625, 11999700.0, 11999718.588167032, 11999742.533373438, 11999828.612126986, 11999865.903782297, 11999884.375, 11999889.0625, 11999922.233559655, 12000033.936324155, 12000130.69586136, 12000139.0625, 12000154.09978049, 12000300.828174109, 12000306.25, 12000376.5625, 12000412.429790339, 12000501.5625, 12000528.125, 12000545.502680428, 12000553.317094997, 12000570.025385171, 12000626.5625, 12000651.001491273, 12000743.420816895, 12000748.4375, 12000767.1875, 12000787.16675608, 12000795.3125, 12000800.0, 12000914.99685399, 12000957.468027528, 12000966.649445012, 12000969.982183883, 12000972.476101685, 12001008.902918676, 12001062.081693064, 12001149.172161682, 12001162.344265876, 12001167.027388511, 12001239.333500553, 12001271.097443713, 12001377.151654957, 12001380.464093195, 12001404.763184518, 12001446.875, 12001523.661542963, 12001524.674573937, 12001563.026838463, 12001579.6875, 12001606.472543625, 12001753.972347228, 12001762.5, 12001795.3125, 12001823.526293624, ...], [55.481461429039136, 60.59624075860137, 21.185526009784716, 33.54828827609012, 10.298746290428967, 10.430461012895453, 20.88561781287438, 11.29546453292052, 9.467768745176262, 29.53258441912881, 16.23900531549745, 8.739425450174423, 23.311142156685595, 22.52681294409626, 7.849828479246357, 6.374680192176667, 29.612670650835533, 7.26660509034794, 21.28709174160823, 101.54889329729455, 50.831759978776184, 67.53916843324261, 11.263919839209526, 10.274912231799629, 22.342692852664676, 49.94352546808373, 86.7941238970116, 12.066564065091647, 20.788111905894702, 23.634191067544876, 20.486423243481315, 15.146655372472537, 72.4835896583495, 65.92903035716469, 18.06471807493599, 44.874028911327024, 56.985094958186735, 202.0105735562834, 21.444491654935, 19.950172557768592, 36.809117086208836, 16.144453312895696, 77.83564212162014, 72.22177088054895, 11.780765215488202, 105.64444819537718, 6.350060498270917, 7.88841971661756, 102.9061321923631, 17.361816561659133, 30.93107598740323, 18.75441524829459, 89.26487473366336, 20.782967986131972, 52.02566222771935, 19.058415180487938, 43.6392046321046, 6.694492000281242, 26.432044609168084, 65.53692929320796, 26.239304439817808, 18.83253721131077, 20.408897710115316, 18.052913550739763, 51.11261433484787, 49.29976676039031, 28.482185651100536, 34.067687085298324, 30.909664755934028, 11.591662895011485, 52.70437497187788, 33.97224419249601, 63.13127878946254, 41.270211365334646, 26.03631518899804, 62.44704168625787, 52.947358550591275, 8.669532515637037, 103.87266344604642, 9.096448333745162, 5.22405660525287, 31.091269691601283, 47.93574265216068, 36.575179608386996, 19.366257696481096, 75.58522125127483, 58.062078547098, 97.31211579014897, 31.561763956027722, 49.83434881253974, 68.16426038515489, 11.242876937381785, 54.270419422394, 12.774336220974456, 9.550909177620763, 10.743843115500272, 15.987683077437707, 8.424224168082032, 119.08049985470754, 7.105944181788148, 81.86235898459566, 36.343282832142265, 26.687290611294543, 39.47454378309074, 140.7008872072399, 35.88847760887533, 20.338097866221325, 65.99182674029595, 123.14089444061412, 10.641697682082041, 50.08788412107425, 19.668741443665972, 8.149903618737754, 51.6758499674445, 55.83706554415809, 127.3016737384782, 15.730836505813757, 59.07126255523985, 24.008120591822195, 9.019314213079012, 76.99224185020677, 14.795119093421338, 28.151300006729276, 30.356905660254498, 35.5867083258727, 9.955444391421363, 14.277645246073922, 23.99857408374787, 48.91791422094944, 8.15993167490702, 11.464443120162034, 10.568205966644985, 24.78541784688972, 26.37020841840093, 13.514410453342867, 31.149809691213292, 34.72954367548, 12.579693224057698, 9.763641739952277, 17.80068286669538, 21.127995881970094, 13.017542749788747, 6.856487069042229, 50.56150686130712, 15.820411553982632, 108.88655394167455, 7.23183758873098, 145.8721293235083, 8.977268212073795, 41.679045482871544, 17.082846199024242, 45.29843148327885, 87.66420986203828, 9.119610536485137, 24.746758009379516, 35.96337772675653, 75.91395359286973, 73.93678202126122, 7.6033663675591985, 83.24557753569712, 267.8452079380973, 16.097681608438844, 25.15128848049566, 51.69399345675473, 78.78148812689989, 40.03452893890971, 25.913830116685595, 82.77309039418158, 41.475924208753135, 27.695920845332235, 49.563141927405056, 6.647757178033034, 7.805228244552642, 10.681961058207762, 12.19096228230456, 86.67303598682172, 19.169216674223808, 45.80097444874406, 6.616122827088875, 16.49309572376406, 7.376473332294465, 53.896587892392766, 5.515556164455244, 13.794341436599538, 5.991872224945256, 14.61973368379968, 95.88582895179363, 16.537237481831916, 20.778704325343693, 80.8887699004431, 35.98618166094189, 74.04983494825827, 68.96716323283819, 9.015785523567413, 20.004273257566, 59.830772852602735, 64.1131673745816, 5.738028180534854, 9.914990278433416, 35.43697894609798, 77.16738243567056, 64.23859679228215, 125.1746419696631, 92.86197556933567, 6.671683764842729, 21.12646255224973, 21.24774519275564, 120.09452192621114, 44.972986789412076, 35.33707778536229, 24.642264018271835, 71.652009378552, 23.61394228365658, 10.113355777187548, 31.468023998135777, 12.734614069728307, 25.746919027475627, 82.01925515235271, 12.080207914403193, 39.56898243088702, 8.224874890967806, 10.548831347261382, 14.251852348190065, 28.51003608966524, 13.031110439957619, 16.386215819762963, 31.481347351658062, 9.877590629741809, 7.804872443025638, 35.76750780487844, 6.160654050059118, 10.337291644924187, 31.16477950397728, 61.0662812601552, 46.212534933801194, 91.5202077096192, 41.10546116171169, 11.947611345034844, 31.036722871932184, 36.70062384816689, 12.503424558578043, 26.20935314493998, 248.4250319025518, 81.12789711410618, 13.835347003357073, 5.19455597349954, 153.62005259659162, 147.0770903603415, 71.44330401981169, 57.679114246596775, 18.74644221574121, 48.64263168977319, 9.897914963642513, 82.56018011859884, 22.78960956691977, 46.632527519930726, 33.515148373601214, 14.168676901207206, 47.407137795338436, 32.865372872241295, 79.98739658028222, 85.89122554436202, 13.109270403355278, 76.34461403498359, 22.064422245579376, 5.634254808243036, 56.067117993471136, 13.401003453245922, 9.36619964404773, 32.53612440602283, 6.896184427245082, 38.94093496363705, 11.476069537589701, 163.7770912643806, 68.3774402325909, 56.37012033314388, 12.381986345935122, 16.43615809129794, 9.06421015542416, 18.707530527822918, 68.59900645615723, 25.107966598077557, 38.70377845786231, 39.65192653010878, 26.996745549362597, 10.301532990668376, 17.868453820324387, 25.57348840836498, 50.858429448414704, 5.632094829701893, 63.174921650541854, 11.081381283200258, 80.37490236134688, 5.4464820819559785, 50.23171789345502, 20.931493909288577, 17.373323369870725, 28.286143106215906, 10.837782811941342, 7.396063998585876, 97.76183020903751, 22.284959444871813, 70.8544654778917, 20.72237787379158, 15.899786681677877, 5.571796738882333, 6.266179942591928, 111.89629946780369, 21.518911231335625, 53.02031443317856, 8.254749704326168, 21.45905229658387, 7.373862246237431, 12.260102712133273, 85.85123731300804, 23.953899914668284, 11.41733013249455, 6.429278186308929, 103.73092431079704, 25.48483019488683, 48.868175032665356, 55.58367087494373, 77.8903258023965, 20.37825663629284, 6.332440261700828, 5.220051246205807, 71.48739008164813, 7.719403350741657, 11.096017861874582, 79.53897071721062, 12.706542418792393, 24.10808910561626, 15.177690550719573, 6.83249863905231, 5.538851970010652, 100.9851586875292, 27.886408925819648, 28.000162408386906, 34.38132643855329, 19.057034363659007, 30.89842762657131, 33.1503943398263, 23.248393335999133, 12.713806153278577, 43.97805241298982, 40.61056948841306, 5.312525418876755, 13.78016547956043, 89.53755783054947, 25.222967471757592, 86.34225328585495, 28.188715513840002, 17.945597927263012, 8.718809096589876, 7.464771742987284, 57.86188384375895, 18.088420314559155, 17.487770621378225, 138.53773894311237, 27.884142073719364, 57.1923758150227, 6.547476269545011, 14.257691117252143, 62.762152627102736, 56.33772674759881, 40.67309648484462, 8.019737355125892, 31.209525272728243, 7.243157449284283, 67.89446440679424, 18.57450785423167, 66.38480106758244, 137.8934139138769, 65.86929637391063, 39.440552188823055, 76.57510931569065, 9.552264676146434, 5.979684771432238, 23.21137765460609, 5.219967040774248, 6.813193993440639, 50.81783660490808, 14.124684443695774, 174.3939776675432, 45.94564158742079, 73.21405607647056, 45.23621727937189, 26.27755885251268, 12.389597823464468, 63.638042647079715, 71.15485700559344, 11.095163034382272, 9.445984459209614, 91.64053163417609, 135.56608459254767, 78.08947242547201, 15.829848679335333, 14.785427853568514, 78.16619948144672, 42.82102901469712, 65.00117961606014, 19.554735541097354, 42.31652764612275, 15.12809847379132, 29.93497168663964, 22.75563057956275, 44.6214921534058, 28.844520097985097, 86.99994613921729, 8.63289143973538, 18.630225031754325, 74.81425148052102, 57.13262191761551, 23.86894013578764, 45.18585578790104, 39.07047457846202, 26.718690103157527, 50.43029793519145, 30.793154527099613, 5.7838269502676125, 48.76711650296603, 57.12708707325414, 13.358443727277333, 45.26272692257462, 8.554063785969866, 13.972201642758844, 48.01536956938543, 8.499376871043212, 12.552126136090584, 5.636776036057195, 7.250843497264481, 7.441390173210148, 46.43570770415016, 45.53909833418528, 8.108742948042881, 13.204625042798137, 12.454458104695782, 13.348891112186493, 29.561671512605912, 7.343023946566949, 10.622829517969734, 50.95357858694042, 49.056864149787486, 12.51942502806364, 12.04963826851215, 6.256474366238198, 15.138401252182415, 42.91915474492023, 65.31156673556157, 6.84572030353315, 66.3792727944099, 7.342852394660406, 5.602020251390158, 75.65481746495266, 5.221733252398036, 20.63992055275324, 37.96970891117826, 30.12910742138032, 38.06722425199307, 108.65596778499881, 80.4554811204134, 67.72047208559654, 9.280453886794076, 8.411651834611243, 10.620259256921692, 53.789527744629936, 26.521821230411373, 25.235518686917878, 24.282891406681117, 13.261368584277879, 17.52423383955626, 71.58963702367778, 5.487242953219078, 28.255865816831214, 28.360998163946167, 51.50689795055501, 40.51140127744198, 15.348060381006915, 5.660650548488294, 34.689129185948865, 11.97083745572169, 85.37778799964084, 20.35840928573107, 19.526836643014583, 8.398372045530468, 64.45502318695809, 9.718675815321044, 19.154251790955595, 7.287865171988044, 5.509466731610462, 6.309249107483794, 33.21933654952333, 73.94335659982406, 18.908023728730676, 51.87612376254645, 10.42812430461038, 9.032215534770344, 75.655217707717, 86.19994572974157, 5.857109837028906, 52.73005362336501, 33.69690584065218, 18.69313292735649, 24.301028175809307, 80.18859573675762, 10.516530743098413, 20.268411315776635, 134.92397136786633, 25.015628242294415, 5.626119404166638, 32.80831770856956, 5.88277966543922, 45.09149588738554, 31.03507372580488, 17.73561232767767, 11.463552964070635, 18.554345315507653, 5.519128742269286, 61.717795991172935, 14.113585065217498, 15.343420117335429, 13.726446690548158, 59.600268518326125, 29.116715628340756, 38.61062079037344, 56.10677136429141, 26.007795116359777, 9.422908129504608, 11.50809646550892, 39.80712475086781, 24.079665237350373, 20.526370329879935, 10.977129508237239, 12.376207388481397, 15.303267596562005, 5.2894466950961645, 27.01806693173161, 85.12808287731491, 32.71390654604083, 38.77233428246399, 90.99482257330297, 13.712026651947692, 60.75913746538534, 26.181508051968482, 92.50041060962006, 17.732161278933912, 18.400773470886385, 21.965887134292487, 98.89898909950381, 21.061014709442016, 9.991693337866534, 59.72637662844841, 18.104957050552777, 77.8465087045156, 48.748446978531604, 20.024483507446167, 25.369035863982894, 8.297626380580637, 20.1244168643561, 18.17742933079494, 70.9110640843686, 72.69820189584551, 30.88678875396967, 85.5787508012008, 28.661347288799906, 26.492141862759517, 126.14686094835535, 11.194227578720298, 6.690057951660976, 101.05984525226668, 100.147775527104, 5.328332621616539, 6.401937769939467, 5.317179136994901, 66.97643453027075, 130.59423493337647, 19.416992229676993, 37.59757285499628, 26.462943333843548, 73.37360416737566, 30.692120498374294, 6.861583194224669, 26.108043132945284, 59.15336471889296, 5.747967515075557, 35.652387167018865, 98.20973548246477, 40.5632576468083, 42.03891075339465, 12.988111932444884, 9.330900787358884, 59.435684706741824, 52.58453458579801, 40.03784520826858, 6.161762575612322, 76.00113240316269, 14.6307422438584, 5.9265473570900316, 36.74917291614923, 25.697546319234224, 16.603152597380596, 24.637882941895246, 59.3675318945366, 22.566828893162267, 8.48573372733448, 21.748315023152394, 18.687805820392196, 30.458984029242814, 19.968309668793506, 14.116791426037036, 20.878591143249835, 73.1071269339401, 13.993972282192162, 13.28590179360358, 5.3500411134591666, 6.286459956795883, 7.0680746238237715, 28.732238109280548, 17.657231249879434, 83.33361099048204, 36.70750261999042, 6.339578296661212, 53.120737779287424, 9.475742837816291, 109.99260773909441, 26.842543530734993, 16.973437362524045, 110.33782532136844, 19.11972170241248, 75.59641324572965, 7.63528411707833, 52.1001917359636, 13.116858397236024, 13.638596631954401, 32.51765438832054, 74.70022114974996, 66.32901791136271, 152.35572544507806, 10.788519726875121, 58.54322593244538, 7.9556235549093595, 13.585215638844131, 43.85245261326489, 116.20052632161322, 22.27466180576196, 158.10887970062126, 62.22403176670343, 47.966037557205595, 7.459924140893765, 28.240862606050484, 10.006430513617747, 17.90850683812415, 5.170265365321933, 42.27508672086474, 87.14378579504807, 51.18076920683961, 7.015154130051302, 93.38510113705227, 10.365214112963843, 11.116119455180442, 59.2502275324681, 35.975653697160496, 14.129801940688548, 27.424076226493078, 21.85933831057451, 7.802012677739739, 19.629118735305077, 7.117490554188494, 10.327030813612994, 60.26798804452754, 11.269059182636344, 37.20059261476654, 25.412763520373407, 11.368300143315087, 15.172740515151473, 70.75486645096467, 11.070146486566601, 7.1155076885835316, 31.99625914766341, 22.297991699696315, 31.276350336226724, 57.84862736328598, 27.43280117347447, 14.229275521388587, 29.831733800676606, 5.491207515791683, 28.92584190619845, 9.000748861644027, 69.22150055719186, 21.692654602392555, 6.835586020750002, 21.49735823344405, 49.217450571269865, 11.092953731230063, 63.5031448052696, 25.87683314467785, 7.299384655395236, 5.59102831383368, 74.23645241611347, 90.94141576357742, 49.87314426967836, 29.077632871114737, 52.24184811676756, 17.440587517976958, 86.75627111612121, 15.457773617564053, 18.672484365203818, 15.55254581842567, 9.147430110615726, 6.137302452131356, 52.73857069520084, 16.92984887945269, 6.202513320486359, 89.54966880810363, 53.421189861920524, 5.301686133472725, 7.210389832494263, 108.13001002484177, 64.27984067673479, 10.412633357096146, 100.20172005320487, 21.71079128017355, 14.260309597748504, 73.69339411466488, 26.60643431530299, 13.173935392131742, 15.458248584461796, 142.28185404030748, 84.34527518826616, 124.86106239295788, 21.46793623114, 23.806212207591386, 10.458275373613736, 23.99914519962211, 8.732346791106986, 12.875201072873066, 7.45463324360071, 47.31736691504917, 26.48898088437012, 67.36504470276763, 67.48126181606236, 21.483493034183958, 68.12767516019201, 53.62880281909346, 27.584152154881874, 55.42781736118484, 13.31819344738914, 22.27272301837437, 74.27490414094848, 14.624801430021549, 80.18491829543063, 68.68981767840154, 5.884410602897627, 28.166278030878367, 6.021877354284868, 74.69718800935082, 20.490083588320832, 35.319792465752634, 25.08791241285786, 11.10474404357029, 42.8781908484912, 8.419014771437498, 83.23383324209374, 68.19159111035526, 100.57833793683714, 38.75336643802914, 14.961283983234578, 23.865273652154244, 47.967970527549966, 64.01497097140349, 5.2255573233681005, 18.220306548376307, 10.186455739310299, 53.222587896906674, 15.270300234470001, 10.654474396443263, 6.347656928976067, 15.433180405742025, 17.467361797915224, 78.48166594381239, 39.112669907126296, 20.205690009441476, 43.749631952715276, 38.2149944674921, 5.783989772898918, 22.893756332789245, 11.584692797490614, 22.663196934007363, 101.06633608367457, 69.38746417308273, 12.862748204597192, 20.12511110738424, 8.777161019801481, 7.015272632120277, 20.320136716549424, 33.66797423377133, 13.989521408942144, 20.843789018739656, 21.360254821769345, 21.69911177090308, 80.72525014167746, 188.52312874613938, 16.6411418085721, 12.268967556993623, 39.27579955393345, 22.527049141068296, 46.52195611626751, 7.701520221863491, 14.404971732791637, 52.73637981651807, 9.717301391788872, 52.14694802483347, 6.644136155549452, 18.354345640156858, 5.192654673250042, 62.10440844721638, 44.319532276556956, 54.642680285745456, 53.701465020861484, 13.094517302649383, 14.291855777109873, 52.11603260993996, 18.171730188723632, 16.691934161522482, 65.37162960335019, 61.632340747600246, 134.4998971947156, 13.931921172653936, 14.71026791569521, 70.31083165054423, 47.394673099517625, 7.812465523938523, 29.86808500194608, 6.712958114950991, 17.201459502302775, 8.970638423657423, 9.70631341559242, 17.959368083847224, 154.53874681103707, 5.4779768872486185, 6.552315772014131, 6.688202993201722, 13.159297751277302, 8.898936728646284, 6.543037825208791, 55.11293856886711, 9.98114620228674, 76.53402561917002, 7.581970399891001, 47.04598079996752, 49.073348762100466, 63.82723796585374, 70.38367195273794, 24.807840969845735, 20.387479026692656, 7.262828217000586, 49.95906893362215, 79.49293867118037, 28.79905230604793, 40.00663529055697, 84.59488339898174, 41.15060445762735, 24.692583615344482, 46.801783086005955, 26.817804624714807, 39.51432108063788, 5.616683138297779, 38.20654689083894, 46.54751726848628, 57.72268724455499, 11.588114887287755, 107.98889207576282, 89.753743038713, 11.701272088932612, 83.14852785268222, 62.34908535254054, 5.6728324985182494, 35.877233823515404, 21.037250885913668, 14.094703652144762, 60.374266320857586, 115.53066552626238, 22.686663982403672, 26.630013696474418, 31.93220648414662, 16.112870999548498, 97.82147690717437, 96.88631996868716, 22.199954283432906, 13.330196138892102, 76.3110676111829, 24.50206877174161, 7.182246601807247, 80.82339644354177, 17.016061360180444, 80.45547502809565, 78.18766070968732, 15.964846664869446, 17.32657643014622, 10.503338084439328, 23.03926347927481, 87.57386885488893, 220.74888841053667, 16.21086973990617, 76.35014688422082, 78.31881358946052, 13.299337086414049, 75.08382547073728, 13.615178709199135, 44.04788826078572, 14.82774173640967, 15.388986489708646, 28.75425227290487, 23.132147271561543, 46.78156158822642, 32.95459039221642, 51.35561860322302, 37.21796123757218, 14.274479792246199, 12.572980503428091, 14.480859429977464, 100.35084263483597, 66.3598505858562, 9.176689632013375, 70.77879783053721, 48.57694215142289, 6.552392052521934, 57.176266898248855, 28.861062247209844, 19.416820913130998, 33.73363942792585, 108.99518727084305, 52.952208167281185, 27.872909456130085, 9.999649566596634, 41.67474078648005, 91.10662718032798, 68.48743437860793, 18.51707441935694, 28.34106663090536, 88.88662682422952, 73.67929017880247, 16.88651779511801, 29.918956666380993, 42.064317518933265, 59.3044265112793, 40.828736887555465, 90.20003366439661, 164.2813701315879, 17.19226116216977, 16.122418934108865, 59.42348817300214, 49.968560358895175, 103.51216937835706, 22.127460165735474, 113.18953393947598, 53.76317243011968, 7.99845081506421, 10.14585113315498, 62.35958006239199, 51.66250751470558, 14.680489564863096, 53.464693401953085, 70.41059545805064, 15.719569904131896, 8.390841623358892, 10.706745487162301, 118.81361033816164, 10.351090409491238, 9.067751991516262, 104.43455204583316, 119.91773719338279, 23.335185963497686, 121.91099474464431, 49.117797581559174, 10.269890087964573, 13.773185946091278, 26.781597463936887, 74.56682864254351, 12.218123394236642, 46.81407709895789, 82.650433349136, 12.50970842255704, 44.90083595160034, 66.18278598283452, 24.688958399004637, 12.625151940357577, 22.96972756288705, 22.239156830239814, 16.96040733186358, 42.220877854711624, 15.870239525964358, 89.47538669500004, 12.064818705816537, 58.748696503414685, 85.84071621244773, 6.628663929179089, 94.7158485263345, 31.529724893601614, 5.712432470126809, ...])
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)