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 = 45898
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);
([3472657.32812626, 3561980.885870341, 3639106.152424615, 3661165.625, 3661304.599418621, 3717260.981768499, 3810096.5031266673, 3811086.1512375004, 3831722.8702885103, 3831973.4375, 3832625.3868955164, 3832648.37664468, 3834949.88097394, 3840138.178256221, 3882965.625, 3885071.549970547, 3894762.3969307262, 3929757.8125, 3930967.1875, 3949184.913473655, 4030613.4082772653, 4030935.244654595, 4039716.471634339, 4113791.827304553, 4114278.555040531, 4265735.9375, 4283660.367794566, 4353173.4375, 5906780.087012365, 6179077.16244536, 6284051.915601161, 6289661.907515525, 6300488.878326541, 6480556.460279244, 6482045.658285533, 6482113.177249262, 6482216.971993661, 6483508.143887642, 6486545.0144822635, 6493779.6875, 6494035.245864835, 6496442.16511916, 6497176.5625, 6497336.617207548, 6497952.846944092, 6497963.220622417, 6499478.670385949, 6499485.707835456, 6501555.642792818, 6501572.358275979, 6502272.972093515, 6502346.875, 6508095.3125, 6510318.689899754, 6512690.549048844, 6514890.664644247, 6538640.625, 6547606.918866467, 6547760.669292376, 6549251.85117921, 6549821.019752823, 6550340.22139021, 6550341.573333145, 6552464.5552779, 6559689.0625, 6567684.375, 6571357.078406684, 6571424.009142733, 6571584.375, 6571627.9389857035, 6583416.986964214, 6595221.807895316, 6597582.8125, 6601892.029333128, 6613537.085954366, 6618860.9375, 6628729.39593324, 6635147.208957775, 6635735.851484277, 6636293.591039118, 6637317.508413633, 6638507.550481279, 6639790.315779567, 6645301.4534796225, 6649550.862736998, 6650079.1689588735, 6651645.3125, 6654500.0, 6668055.9016688755, 6669843.90061199, 6680877.694192249, 6686705.99685467, 6691796.249094337, 6694468.209718099, 6694503.889516455, 6695725.0, 6714622.652130211, 6716177.671755467, 6717570.3125, 6718928.2086221175, 6720374.742970974, 6720400.107219251, 6720666.744642668, 6720968.30702991, 6721011.906664338, 6722800.0, 6724130.172226881, 6725956.633592063, 6730417.655657077, 6731862.279649004, 6760496.875, 6772005.934068781, 6804389.046255083, 6804568.96080737, 6807024.075696025, 6811486.7430189485, 6816907.568450024, 6871356.050181537, 6880752.627164475, 6881923.4375, 6891413.112869337, 6909200.0, 6910564.0625, 6912541.253003983, 6914049.92904547, 6925639.0625, 6936764.273804153, 6954041.401715735, 6955880.824310567, 6958346.447583839, 6960945.015724276, 6961019.042681104, 6964611.412200847, 6969392.023001502, 6970451.5625, 6971228.4190471005, 6971753.125, 6972139.226150921, 6972988.257235765, 6973089.09902566, 6973380.255552918, 6973398.341872425, 6973443.134693186, 6974002.233612404, 6974019.881600266, 6974034.375, 6974253.125, 6995791.805898123, 7000107.8125, 7005611.458547637, 7010914.69568449, 7014116.886190791, 7017180.384681603, 7018532.244692088, 7018665.625, 7023842.1875, 7032577.05947375, 7035192.1875, 7035571.875, 7035833.918188682, 7035887.215576073, 7036037.246304416, 7036585.937286677, 7036947.386533627, 7037070.559646253, 7037366.5397231085, 7037491.200695538, 7037824.053104959, 7038440.664977997, 7038792.562373784, 7039878.749956205, 7040536.868161279, 7040693.611346414, 7040812.310533028, 7040837.028534973, 7040895.3125, 7041295.3125, 7041513.380412275, 7041895.3125, 7041983.502447349, 7042115.625, 7042127.042429755, 7042339.0625, 7042627.363529844, 7042752.74356687, 7043206.726261777, 7043483.5866863895, 7043697.444290784, 7043956.25, 7043964.642606773, 7044138.451417638, 7044270.859307965, 7044425.46214126, 7044438.495801484, 7044690.4695611335, 7045356.428105538, 7047104.112277936, 7047640.625, 7048070.349677208, 7048189.721505402, 7048290.587767182, 7048489.0625, 7048618.775885247, 7048623.365354475, 7048682.624662682, 7048739.0625, 7049650.89848104, 7049885.833024282, 7050146.344787909, 7052665.485851608, 7057302.193349115, 7074117.474792203, 7074553.9924416235, 7075559.733239005, 7077627.582645197, 7080751.5625, 7082572.534513941, 7085978.53964906, 7087021.875, 7088798.0440714955, 7088859.748035532, 7091857.8125, 7092863.079547863, 7094880.618024051, 7102307.608047205, 7137534.375, 7170632.853017895, 7222553.812422057, 7361809.375, 7362525.0, 7362960.733286479, 7367463.852828374, 7422882.863453817, 7439176.807744061, 7453742.1875, 7454458.912448979, 7457131.25, 7464740.625, 7472592.964140363, 7472944.533380059, 7474844.215276669, 7485314.0625, 7491668.211750171, 7492437.3348741485, 7495192.164048685, 7544185.9375, 7563631.204001375, 7567825.797138636, 7650583.788697676, 7667403.125, 7669042.1875, 7669085.682392894, 7670281.868499513, 7670455.52126523, 7671468.75, 7678031.049200443, 7678076.5625, 7678485.608678503, 7686264.1796573335, 7686933.92255358, 7691961.376850188, 7696133.831515672, 7696790.625, 7697554.6875, 7705144.821499685, 7708296.994295161, 7716143.784645352, 7716208.918571981, 7718129.6875, 7720320.3125, 7720807.635159965, 7725683.838446726, 7735922.579616124, 7736821.0872557275, 7739772.071116758, 7739887.597332549, 7742062.202812436, 7755157.803136892, 7755277.053482711, 7755897.329123646, 7756438.3912259955, 7756607.8125, 7757105.37591626, 7757812.5, 7758625.0, 7759817.1875, 7760942.1875, 7761893.355825488, 7763415.117765348, 7766131.576788156, 7777746.864897012, 7779291.010592998, 7779974.750071093, 7780023.905809927, 7781693.75, 7785617.1875, 7789153.173514713, 7808753.125, 7818525.0, 7826974.03240266, 7827205.649761525, 7827793.05670334, 7827927.861471394, 7828228.125, 7828274.996536061, 7828393.75, 7828434.772193457, 7828736.434500761, 7830629.6875, 7830727.984701401, 7831297.203984104, 7831440.396965982, 7831538.353607064, 7831618.040749121, 7832587.103822164, 7832594.092243989, 7833095.084362233, 7833683.833334478, 7833768.75, 7834539.397898625, 7835392.032731809, 7835507.529475388, 7835563.533868761, 7835679.479911768, 7836609.070913403, 7838180.333213946, 7841251.478481308, 7841385.9375, 7841501.5625, 7841724.6068085525, 7841765.625, 7842251.5625, 7842325.121965759, 7842383.812322275, 7842664.0625, 7843096.843429667, 7843366.742018908, 7844199.98061978, 7844443.022152553, 7844648.445568807, 7844653.246816189, 7844919.1151527, 7844932.94099526, 7845853.125, 7849610.431447757, 7851443.343587337, 7851744.2729781, 7854093.172541113, 7854381.25, 7855142.1875, 7857159.8638335895, 7857443.904752672, 7857463.673404709, 7857584.375, 7857608.699265342, 7857718.75, 7858745.044473769, 7859262.0413826145, 7859442.1875, 7859743.409879632, 7859889.052760501, 7860424.364129415, 7860545.3125, 7860581.25, 7860908.391629855, 7862594.669750915, 7864007.706624732, 7865262.369529824, 7865915.259682505, 7865918.75, 7867307.771761639, 7868026.275122317, 7868409.375, 7868675.0, 7869150.160277416, 7869575.688119407, 7870197.407986361, 7870341.794239932, 7870744.472047684, 7870826.5625, 7870996.9951878935, 7871140.625, 7873428.5766254, 7873996.875, 7874665.812288318, 7878313.652466933, 7878412.5, 7879685.091378959, 7880216.9100931985, 7880474.526443877, 7880487.015000356, 7880781.042963944, 7881120.5047454415, 7881156.25, 7881196.962818798, 7881293.75, 7881317.753922591, 7881424.826063413, 7883035.9375, 7883610.075251968, 7883985.672426877, 7884808.779682298, 7884860.20064701, 7887104.6875, 7891720.15369283, 7893953.222895977, 7894396.875, 7898236.5615820475, 7899914.0625, 7899927.657960679, 7900000.0, 7900189.0625, 7900204.625950603, 7902723.118999304, 7903190.459967226, 7904079.292669916, 7906309.12946003, 7906939.0625, 7908051.5625, 7908307.8125, 7908842.429829726, 7910686.49106364, 7911090.472000754, 7911754.2981004, 7914440.146455521, 7914480.53514975, 7915390.50853573, 7917197.742866437, 7917942.1875, 7918780.6686708005, 7919062.318568906, 7919085.210074101, 7919445.3125, 7920373.528266241, 7920921.574234779, 7921409.375, 7921982.8125, 7922021.467968124, 7922442.044113257, 7922475.0, 7922524.6072338885, 7922607.206939692, 7922716.44312355, 7924410.9375, 7925028.83517502, 7929367.243331088, 7929456.25, 7930043.541379302, 7930438.978112579, 7932865.625, 7941356.25, 7942881.58343121, 7942917.725325425, 7943316.60579295, 7943526.295729485, 7944047.192635151, 7948854.8174951635, 7953088.648595191, 7953111.309490186, 7953178.962821577, 7956981.324919483, 7958238.963591081, 7959707.8125, 7961724.12120127, 7961993.75, 7962293.558657424, 7962408.859729077, 7962517.736538735, 7962707.5630378015, 7962770.614925261, 7962964.0625, 7962973.018520964, 7963534.375, 7963610.080064553, 7964006.25, 7964202.639150495, 7964252.610724688, 7964684.375, 7964937.5, 7965007.732337132, 7965181.270109172, 7965336.178576881, 7965821.875, 7966258.793500578, 7966503.050983156, 7967097.255477224, 7967511.669629491, 7968851.10868925, 7968937.5, 7969946.875, 7972524.088883727, 7974678.445885647, 7974840.625, 7975277.457322367, 7975537.987532738, 7980084.012952068, 7981213.026739718, 7981838.687298311, 7982115.788365329, 7983356.25, 7992298.4375, 7993670.305163591, 7995898.823201098, 7996051.927344923, 7996128.757209313, 7999689.0625, 7999782.740246433, 8000798.698879519, 8001262.339659764, 8002311.576089272, 8002550.2298256755, 8003638.175884438, 8004052.809932645, 8007676.331600067, 8008337.169487404, 8009449.462846676, 8010148.658699744, 8010296.875, 8010333.816554132, 8011700.0, 8011701.184663305, 8015967.469662205, 8016385.07656496, 8028363.432861938, 8034517.931363523, 8042674.1724681435, 8043521.875, 8049160.9375, 8051777.928079428, 8061014.001948566, 8061022.691482609, 8064328.078048279, 8067310.1650438, 8068342.999895963, 8068659.840632029, 8070910.040042293, 8072232.757904167, 8073875.942872845, 8074776.5625, 8076416.665622235, 8076435.670792178, 8076998.42492009, 8080257.8125, 8081003.193388877, 8081228.714740741, 8088286.694354282, 8100462.018871947, 8109208.590876436, 8109576.087736476, 8110175.355783999, 8112184.265688524, 8114915.468011018, 8115398.4375, 8115439.921383355, 8116070.245998076, 8122585.879223869, 8123236.921394047, 8123779.03158774, 8123914.0625, 8124665.625, 8124830.943694948, 8125426.432219525, 8125579.056034338, 8125914.7843963485, 8126166.605566471, 8126338.9978764355, 8126817.1875, 8127069.994396315, 8127085.881169504, 8127620.339536136, 8129598.4375, 8131433.779267884, 8131701.5625, 8131796.875, 8132045.098554228, 8132227.5697002895, 8133801.302942126, 8133806.405627244, 8136281.345787958, 8136375.0, 8140790.463739194, 8141428.705349855, 8142287.955354687, 8143440.478530211, 8143648.4375, 8143712.751015693, 8143954.6875, 8144135.831444427, 8144599.133604236, 8144635.762662754, 8145168.427551766, 8146557.435635371, 8146741.589492839, 8147237.5, 8147326.553277724, 8147333.808509668, 8147809.7224010145, 8148017.1875, 8148252.319267964, 8148856.25, 8148978.125, 8149240.63022876, 8150419.978899794, 8150668.75, 8152462.245807455, 8157066.383306039, 8163427.733673163, 8163988.244397052, 8166167.1875, 8169238.444926846, 8170102.877259086, 8174751.721294058, 8174785.9375, 8175030.297438156, 8176510.252877623, 8177083.040736131, 8177387.297713507, 8178406.25, 8179818.529137963, 8180206.060906402, 8180695.800060048, 8182014.948727978, 8182060.773893223, 8183487.7791032605, 8183682.83951754, 8183889.944107139, 8183990.625, 8184210.672033768, 8184583.073895422, 8186282.799979076, 8186376.8304443555, 8186818.472219125, 8188248.2650771625, 8191799.335970684, 8192057.8125, 8192204.6875, 8192443.112778552, 8194054.72449445, 8195970.180619855, 8196562.093401265, 8197465.343869571, 8197565.625, 8199561.220224846, 8200387.5, 8200751.550456178, 8200944.750365647, 8201212.376079756, 8201282.8125, 8201557.103546399, 8201582.8125, 8202195.1977677215, 8202373.460051728, 8202419.138146853, 8203328.834901405, 8205227.289788408, 8210681.068801837, 8211842.137981094, 8214101.865422391, 8217142.1875, 8217160.9375, 8221463.82499576, 8223576.777470498, 8224708.072310672, 8228545.753547299, 8228575.0, 8228580.677457766, 8229282.19605139, 8230724.51661939, 8231392.882386716, 8243804.746596868, 8247766.598811485, 8249975.97483501, 8251215.625, 8252120.246625596, 8258850.970260356, 8260727.97183933, 8262323.921162528, 8262424.569913185, 8264008.635824461, 8264189.0625, 8267249.072493073, 8267427.445786306, 8267523.4375, 8267594.2200411325, 8267731.479580615, 8268148.168699496, 8268993.281119999, 8269135.730139813, 8269940.656013417, 8270101.185745742, 8270309.307540281, 8271643.75, 8272322.093446932, 8273136.99658773, 8273945.181933791, 8274105.851903739, 8274107.4594319165, 8274151.70800891, 8274169.866905248, 8274202.4483004445, 8274206.25, 8274239.0625, 8274545.3125, 8274558.778693265, 8274602.939754136, 8274802.778517422, 8274806.25, 8274813.138505123, 8275093.75, 8275126.182548149, 8275239.53265065, 8275466.390082606, 8276077.765406566, 8276414.909528343, 8276450.301448284, 8277161.371129749, 8281022.292060852, 8281067.1875, 8281265.581751547, 8281414.546753165, 8281460.9375, 8281631.456839695, 8282035.405793069, 8282129.858169701, 8282551.783103007, 8282608.656987463, 8282637.866959218, 8283071.85706179, 8283087.502420713, 8283337.385902642, 8283353.125, 8283443.75, 8284057.148136659, 8284300.055180559, 8284334.217431363, 8284465.454245529, 8284645.3125, 8285058.430875236, 8285151.303167888, 8285801.787041288, 8285858.7337479675, 8285889.1462491695, 8286135.788029457, 8286464.0625, 8286555.657678822, 8286765.708642709, 8287729.0474302685, 8288284.375, 8288447.462611164, 8288705.409829554, 8288931.25, 8289053.104599495, 8289401.017285682, 8289751.857448482, 8290006.25, 8290318.008490054, 8291204.171996414, 8291996.406320407, 8292331.983802344, 8292887.5, 8293259.945302191, 8293495.3125, 8294965.136128356, 8294986.128105324, 8295545.993408885, 8295554.9086910775, 8295659.375, 8295698.053459714, 8295760.9375, 8295781.035969385, 8295840.697503855, 8295878.799096254, 8295947.3450411325, 8295995.3125, 8296030.702490856, 8296032.8125, 8296373.458232743, 8296418.75, 8296445.104353511, 8296451.121559301, 8296458.742267781, 8296460.0337035, 8296465.960875012, 8296470.3125, 8296471.5486261025, 8296504.697978108, 8296518.549605922, 8296533.641384973, 8296620.3125, 8296757.51522201, 8296765.71944627, 8296904.109415566, 8296912.351888594, 8296923.4375, 8297006.217630918, 8297344.122108821, 8297437.745918368, 8297788.390287551, 8297884.474057686, 8298137.5, 8298178.98750545, 8298273.842259876, 8298384.244774054, 8298430.48121917, 8298487.5, 8298606.25, 8298691.791646547, 8298948.18485333, 8299599.977326579, 8299942.1875, 8300047.925268678, 8300303.452649695, 8300320.9986761, 8300394.271639735, 8300446.875, 8300510.9375, 8301826.049672713, 8302377.771709981, 8302550.469766325, 8302615.625, 8302735.920923883, 8302910.608499575, 8302937.769042428, 8302959.178933027, 8302961.86283525, 8303110.603353342, 8303112.888846431, 8303333.492869568, 8303340.57064918, 8303355.607121731, 8303424.371604248, 8303455.580606279, 8303612.5, 8304082.765537306, 8304278.7656477075, 8304498.446178479, 8304634.975382501, 8304716.0962901795, 8305032.874439637, 8305685.316587601, 8306392.1303763995, 8306613.376822771, 8306753.125, 8306771.089568605, 8307084.375, 8307291.786831323, 8307355.489533683, 8307440.409051156, 8307628.661314792, 8307642.444399804, 8307729.165400572, 8307739.7382078115, 8308209.9823963875, 8308231.25, 8308782.434822895, 8308791.896045289, 8309234.809719139, 8309243.370298941, 8309400.833104334, 8309413.316483415, 8309726.5625, 8309905.497886675, 8309970.3125, 8309995.3125, 8310251.37828755, 8310540.483249522, 8310621.875, 8310935.610321204, 8311265.573457168, 8311336.561591501, 8311470.003444086, 8311551.414481171, 8311593.585802018, 8311663.793982108, 8312855.075314892, 8315219.494412438, 8315339.631848118, 8315539.057556764, 8315660.77791546, 8315839.04555368, 8315849.948921128, 8315868.280286933, 8315907.225541967, 8315934.375, 8316253.718876995, 8316301.3006906165, 8316417.1875, 8316426.14065503, 8316471.875, 8316747.787760349, 8316911.3945991825, 8317292.046033226, 8317322.840631609, 8317335.267652095, 8317560.9375, 8317651.370172761, 8318475.6419572085, 8318533.13356206, 8318625.622425758, 8320303.884722594, 8321102.747389616, 8321304.6875, 8321336.272796768, 8321459.514176866, 8321461.261618525, 8321604.260550296, 8321833.575265272, 8322185.289271814, 8322320.252236833, 8323346.832191217, 8323410.241952232, 8323542.237872797, 8323631.13280838, 8323637.603557936, 8323716.689938189, 8323812.5, 8323917.1875, 8323951.5625, 8323982.208381175, 8324177.138776636, 8324459.711934164, 8324559.375, 8324838.349382384, 8324882.3352854885, 8324987.743681914, 8325014.0625, 8325609.613922578, 8325664.547193848, 8326020.771395521, 8326204.554526041, 8326829.956564432, 8327403.142301755, 8327441.43033572, 8327515.197542515, 8327712.5, 8328499.395778196, 8328961.35473649, 8329416.0968270125, 8329441.727242311, 8331129.140262666, 8331306.237252289, 8331876.356035341, 8332449.4741346445, 8332458.929148918, 8332550.0, 8332625.291928154, 8332658.863144531, 8333314.245099875, 8333506.091689296, 8334388.539575434, 8334416.852818111, 8334422.685372202, 8335135.396596884, 8335214.974912117, 8336048.4375, 8336220.3125, 8336413.133641008, 8337256.885752569, 8337407.262950807, 8337750.893068144, 8338056.664310298, 8338975.329071001, 8339052.754810781, 8339055.3348536175, 8339084.765184112, 8339222.832319112, 8339767.669257657, 8339816.9590979805, 8339905.028751726, 8339943.75, 8339983.615621915, 8339999.215812261, 8340233.725473554, 8340271.597592816, 8340281.818179989, 8340516.450586454, 8340537.002331666, 8340792.053781186, 8340843.481233177, 8340982.8808030365, 8341276.536815132, 8341293.75, 8341528.849410382, 8341681.25, 8341732.579892239, 8341743.647847737, 8341998.266116894, 8342110.945537833, 8342133.689615883, 8342317.1875, 8342318.646462312, 8342481.298363616, 8342831.25, 8342946.540960815, 8342974.073651189, 8343058.912487226, 8343060.8998210365, 8343774.19566661, 8343933.701788712, 8344457.321852622, ...], [5.19125471453537, 22.964738630167563, 159.11771945556103, 87.6645431276439, 5.528820890400148, 11.197613569715017, 79.5393068607162, 65.05640939446015, 21.509521982125342, 63.01035569398655, 42.107314618319194, 93.19581052055156, 9.232747703135216, 12.383974129542265, 74.58645279419767, 7.489763438952972, 75.66478909350734, 44.320418200034, 30.345684524645293, 19.13492085593237, 27.156254095647487, 20.951741408524388, 11.230330263026879, 10.607799094294494, 27.82526499552145, 73.96954237295404, 14.285451593588162, 32.70113680998334, 40.960038683662034, 58.15703372269915, 16.482988916101924, 10.31274657166037, 25.352317687637225, 11.473102924247344, 11.71492537887136, 5.3124756793817385, 50.26608446888949, 16.375381222405363, 9.091514360962233, 31.53405549415309, 68.66788393841219, 28.08944300118606, 46.7746813841934, 20.855816473977768, 13.977980373772846, 63.2001672948994, 40.39031449217875, 24.692774105696113, 20.653159532891145, 17.170727523594703, 21.845272564452337, 80.69639805322615, 60.27875836775794, 9.281096829165014, 14.659711479541455, 63.87055994314739, 68.50822197613795, 18.297728975430147, 54.76621631932984, 11.61104452636033, 8.699699051671363, 41.455146892638794, 10.286616177529812, 5.4176526360734, 72.53075639425168, 30.60765078295111, 6.625296036028798, 17.683737212296396, 67.60728894010097, 14.276939458893805, 14.228546630026429, 78.76222691930548, 45.46807950114115, 5.52545313031181, 22.395647444269944, 29.023324212009303, 12.998421635536108, 16.388018681744068, 26.93198200493358, 16.986203609112486, 59.546126631845276, 24.24833457207655, 7.042472096366939, 5.394322577288239, 19.70772767481463, 41.965124309809156, 48.0478140277608, 40.57185844096221, 44.05472481232477, 37.666170323367155, 29.242928684588044, 15.196373793809279, 5.375073441416132, 13.217060875883465, 8.736961683952918, 47.68974086858668, 8.745255414309709, 87.14849751297535, 46.28370274676336, 11.260978514484966, 8.155177387371394, 15.366558284126665, 53.254671375586014, 94.5340669774461, 46.15791351248519, 69.94713509056866, 24.52400759603841, 16.63738399446265, 11.947834464771752, 14.163267604725123, 44.02148547979403, 34.56770646967425, 69.8322373561647, 24.47067773293891, 59.127487800170684, 41.23573507358596, 7.517291199317673, 10.829109989144952, 6.668027370204549, 78.80102274324285, 7.292447770031705, 80.5705525257951, 50.87358320763332, 17.613330244847166, 7.577774667269743, 57.58931001928914, 5.543424442838166, 12.606038515362052, 23.012004000992253, 8.072785397226472, 11.812654914945727, 5.074257523827431, 5.482516906815159, 14.349517638952761, 69.50699315883638, 6.534195228397348, 59.364120510858946, 70.77197381856514, 5.872217526594279, 17.62774153704868, 17.662098788878712, 96.27695973663326, 5.18802415617694, 63.36806137881416, 7.454485015434715, 47.61981781462906, 61.00858165505123, 60.739917926148394, 55.11074600150348, 12.053114730416459, 8.652427125070336, 10.687283648451603, 78.18771186175157, 59.522973894678714, 102.5970863795347, 58.737250808657855, 29.077063197950697, 64.88989557652523, 50.70627308471561, 21.935027813865574, 23.951764546536232, 29.99050331521766, 28.521005416269837, 90.52354805424989, 27.34234001734071, 27.401873221642386, 26.012984002879556, 12.248775755297633, 6.092266466616785, 11.768988010188666, 5.747720789203841, 12.97891359642428, 14.438112531488304, 76.53069165163453, 6.672896121431694, 80.01265449665436, 44.70869475801815, 15.668807075810658, 43.128935928933814, 63.179499475342695, 51.25430997995163, 33.15935714216828, 62.99312583185063, 21.12976944850427, 12.330570161341873, 24.292602287902206, 64.54757060967363, 17.66955237860498, 47.94108271430897, 12.174169481971235, 112.0663716300768, 12.105453290655198, 56.11881241352734, 6.980047287565916, 32.43795166870182, 23.033625384510824, 13.124645983346976, 80.78692817747975, 92.510815587795, 15.260096124566813, 11.070003990395925, 49.336317391241955, 15.041098360863613, 14.67347446091196, 25.297619616311863, 51.06210000941536, 31.114974784630743, 23.827479931030307, 8.024775041328528, 13.184997199048048, 18.05103322701724, 53.17581238855993, 19.27278514472247, 20.760762625347965, 26.355388700694004, 64.64532544464228, 9.95914164628331, 71.0638907052414, 43.8366586704946, 22.62643420586188, 124.29611473657158, 62.74024845628825, 9.874748935910082, 12.978566239647582, 70.97493344336814, 47.77830617681798, 5.0696338420497336, 77.55731422742079, 40.878480060841014, 51.17267809673058, 7.5310101340319315, 169.19157574350265, 6.093414041799043, 11.533970331350007, 59.49275662799687, 38.915330186742565, 57.12912431744198, 46.293516467643464, 19.047910579927997, 10.095064687449826, 22.67905344681993, 53.26471698004421, 55.82556561987859, 5.80186256390755, 95.93605678418425, 58.08193398595616, 8.262401357002437, 114.22387949638576, 20.673324281616704, 33.875929639174956, 60.41817077670167, 12.469546192099422, 37.46725845851862, 30.889058072428973, 37.77667236793927, 87.16223998137582, 66.02999753832486, 20.942008372290676, 6.5056148454207365, 14.137425410269707, 92.51315846996204, 53.21064612909286, 83.22013529165167, 39.45503257345343, 24.160010860285098, 91.51425836479453, 15.075226277632181, 5.27719369142764, 43.98853532250336, 52.676570441846465, 74.28564912843687, 29.85740993634564, 6.16457191966069, 19.034100289259225, 81.1281439413865, 5.821217315043843, 65.91736008256981, 159.6686923691795, 68.258053759066, 40.23219444684365, 59.11958773975787, 66.27841516695786, 8.687579259212677, 115.18807731006785, 42.37405980042147, 60.58627172587035, 102.69121989610383, 73.28935634877769, 134.58628868102392, 7.21008822643608, 11.111951817298841, 107.85119906109655, 24.412119010381826, 11.948134576779513, 53.97035120372978, 64.98841378540396, 15.129706259824035, 69.5689186116669, 30.197718515031042, 12.205094214318839, 10.30337556269994, 19.759681265060205, 24.22806720815287, 35.73106731394332, 6.4865483651125775, 53.41658431528502, 5.213660700140144, 42.5664055861734, 46.46701316726724, 35.771349358277924, 23.17468397099581, 24.715697863962895, 151.62433683841894, 47.097791313822846, 40.63727505766444, 16.428943639864816, 66.02075152913174, 72.19103676725909, 43.62466390827734, 9.63207250359656, 44.51802083464759, 13.962352339411629, 21.212165144254637, 79.6397193838976, 33.254822222382515, 77.54873898551953, 26.966589066734844, 47.25945673170329, 30.343683995094523, 22.62912210873533, 68.84810567520651, 30.948124271789364, 47.804198666174656, 29.768944093749393, 71.59496657703505, 27.91502249722518, 10.496145293929633, 11.097548792182842, 19.486086933929172, 11.886937398883687, 42.725113748394406, 24.371347555725052, 24.560040907123195, 66.45716713988793, 21.43293760042041, 47.11408032292406, 17.396252173488783, 27.932066443707335, 59.44406703626069, 29.71473021732004, 29.762955273409318, 9.465775373308611, 9.022732068005935, 32.04270909257127, 70.04514896749573, 44.100258053986764, 6.445880844063887, 13.44083041784204, 56.810093047236705, 10.634671928576996, 8.281433622792775, 8.84598873606478, 60.848187619826106, 29.90811197014765, 12.172136188870315, 8.841253051506706, 8.231371186900642, 68.4994461526641, 41.221100172882025, 48.67456532574898, 49.558150936033925, 23.913324494923568, 50.98829896930547, 57.288226649422086, 7.164230870491719, 12.405680476333222, 17.454359653949442, 72.25710204696338, 111.52523180633959, 53.092069666932744, 73.3120095466591, 101.37540840438874, 65.28871194875978, 54.44822540323659, 8.388165585358685, 57.91123689554106, 76.11770153739269, 66.19572308909642, 73.42059031374919, 204.15330481848312, 35.86306416596124, 25.015592263004155, 9.499425541144607, 89.0772486275087, 15.287142587265606, 59.58110762636439, 5.261279756837674, 15.005749797418261, 48.23783537136304, 10.003131386845974, 14.01905559935086, 13.072360126727084, 19.41636288126537, 68.65793301882033, 10.888233823642745, 74.12326708622703, 58.70233593459408, 18.008032688090214, 70.67390566679, 10.468548482329625, 56.773573178574416, 67.50045792655078, 14.711989195179106, 64.8171542215909, 25.64277600112771, 126.94941394730915, 10.76444109072801, 41.83020649384205, 105.62943684199048, 66.81829184376008, 15.95327605086631, 17.57546983183334, 22.742459493015886, 22.672224187528187, 83.60535474093281, 14.598246414155792, 40.49066828068315, 6.383448731876365, 30.324735254034916, 43.05960944447996, 25.393445863774115, 83.50704883310229, 63.580863255789474, 6.501414390385614, 45.6033503978272, 49.18140527268268, 74.52478942715868, 5.78446497867324, 25.98108023848576, 51.91359093893595, 5.383668268984932, 20.500973205624025, 19.35860380465872, 91.87924809308495, 6.914083470054986, 11.216110356730415, 34.74121501871029, 74.68102554596305, 19.843137658420083, 64.65593575280185, 38.08920035706157, 7.728456527228264, 67.5165531492312, 42.52142423976285, 45.46568062477611, 83.22562165317478, 15.461273942797645, 7.460094835680424, 40.77715484798371, 7.360600899467596, 15.234969219024855, 44.09004496284594, 76.87503301347603, 56.365818027672404, 54.94433534291134, 80.31086054239836, 13.28441625080349, 8.59995127269339, 14.484245768229133, 5.8367012358146, 56.86544386644336, 5.591278226424683, 94.11057645402975, 50.0493811294285, 35.76521855421756, 6.038991536991174, 5.776883625869851, 50.70964565960254, 34.89154390307393, 70.26985738356512, 11.159284882424544, 15.947549002919716, 64.55997925836088, 30.400577589644087, 40.7266602000811, 46.88676199811181, 31.212499896981257, 63.46273862077088, 51.90994464362912, 33.249294621836206, 19.46762523056771, 44.010015247144494, 83.5683048335337, 5.5781444790372605, 9.780721615255413, 32.90829315984237, 8.586258124715082, 10.587860788108138, 49.75318353467803, 46.241858974752766, 98.82817649830545, 28.380631519930663, 16.648208661621773, 59.10674767065184, 7.849106241083259, 53.721635881201905, 8.248734473156103, 9.56264593768236, 25.71521450197672, 18.100549990678175, 22.186761283894896, 18.344242408933074, 13.86277274201917, 24.675439926926536, 69.74519517342192, 58.226892056358736, 11.492002689947867, 46.33077390088113, 31.951787651192735, 38.23559401031181, 22.804923324268753, 8.441646907247986, 5.867780121873603, 40.67225261578689, 10.050993313242436, 6.60882515220014, 29.25210210307518, 88.48416054709034, 25.1632349418084, 36.874842009428534, 19.346064705165954, 58.87014503936439, 6.372456143503349, 6.937309177421628, 17.07298336297552, 25.872727294524452, 14.737420311094924, 47.37280392727138, 81.56572805545088, 33.19306590594496, 6.060796244010602, 5.290698831105317, 50.07353577303613, 15.208744229160192, 5.745347591683332, 18.507966323718705, 8.955220542688878, 5.873909349951521, 38.924347916867134, 34.645776428306135, 15.422323900640457, 5.095378879596802, 84.48954689954014, 16.535029976866966, 12.607912508928507, 36.023236708611336, 18.144531615858554, 79.01099566276375, 54.09146211304752, 44.60684642036891, 23.67053607922994, 78.03263660794667, 62.492502528170036, 171.90738013495587, 34.209178397584644, 47.86666745869432, 44.91843707429491, 17.180080308581264, 14.731064502313462, 6.270620241540624, 37.89258519905269, 5.188505576503777, 39.046726954215295, 39.58988011956885, 76.18081575038057, 67.63841193373837, 75.5543017263463, 15.569831619455716, 15.31962551616548, 65.08752073112079, 38.85799260764361, 12.174675581044, 26.51113592467896, 25.932240912805057, 61.58985830687134, 5.8327897090380345, 42.6335774843969, 73.19910556199858, 18.480004012861247, 5.695720520969217, 7.490633532194129, 13.676429114134347, 45.95055103418167, 71.09115779695362, 44.00587499959542, 6.401810148804975, 30.325096161734095, 58.81945757543826, 5.57097181528768, 47.362547343810796, 67.52074261125148, 25.92444990081527, 13.806112811272603, 39.95013865076292, 24.354051519151565, 18.914651623439244, 6.687817513228065, 88.46661327546602, 49.64269985317077, 27.401316134562805, 60.936855987853924, 8.372374137149219, 68.19402786534849, 12.236770749972916, 30.81973968671423, 26.04196348220226, 25.084653954527834, 99.73256781194337, 9.151382381222891, 25.77703475516118, 56.43119063670275, 6.185377018072011, 21.087296277978293, 16.12393010847622, 15.045497376844887, 62.052533075173166, 36.80100246358647, 40.730428028856, 156.1779415791383, 41.343325682012235, 16.071617710270395, 8.144948867052284, 7.076852748465907, 12.89818949312814, 66.89675827564714, 36.50481963251289, 32.57207900497444, 98.79539390284077, 185.83018415274375, 22.478332531140392, 13.968304120314192, 67.45830949884824, 16.141008312784667, 86.94631649329064, 6.2656779156150275, 20.894888603264427, 23.695071741557307, 84.67672258005935, 7.944168278802544, 42.032314998677286, 31.617261642091194, 15.02816843637349, 8.503086000703526, 18.574162751912315, 6.363677445318906, 5.69532230689901, 31.64814834911808, 43.47866536897324, 83.65893778963748, 38.031717861301615, 10.775713423936267, 15.829482281388668, 34.176003171338344, 16.93924501855345, 43.40697919004201, 20.798739951643682, 49.095508915201115, 8.046493555344764, 6.601832223764364, 15.171647054093201, 5.376435998759641, 8.879458615717752, 126.96039448995332, 31.58289927873362, 261.11277731076325, 25.827003435737165, 29.55238595405527, 10.516004098356328, 19.398484882300423, 100.88315326794228, 82.36889125844361, 7.37475875939242, 68.51922498054194, 37.28892247437736, 15.895259311108775, 24.157624330333938, 32.5952531656281, 64.10633403262992, 15.814448498346096, 22.817444058156415, 27.257680064848667, 51.619689524979776, 15.845065764401568, 54.522404083558115, 14.466158543722448, 22.57366859630546, 8.10829561112773, 15.526726054688925, 56.74884735375781, 19.894651690385867, 53.00549169658891, 54.83414186657904, 47.719817976268594, 20.583332716912796, 11.556408046315703, 23.174610956549447, 65.28538057722396, 18.100009730152866, 28.720746201155418, 131.66892083740083, 39.7335355722973, 7.905563324807992, 23.018239004904338, 10.167496491796747, 29.573990299498938, 6.134384390248272, 63.047731729693226, 61.54979222698522, 7.58766999632498, 33.96112024731707, 46.14401412989163, 20.523329735201536, 20.368320707230804, 7.167050060822067, 7.180674596968928, 15.04293162352612, 5.212872831957552, 11.099783510998385, 14.950744082081636, 18.0169709030048, 49.23690754126215, 45.29205941292772, 12.897359763675427, 7.623318225290898, 35.45355586830481, 117.99707870322878, 56.5555594064947, 23.51758014097501, 10.745185520669093, 71.5321799217361, 55.69434405513665, 15.270628460419077, 10.400769924037775, 61.65409651703352, 10.312944238557568, 11.261011975136634, 70.02893451682903, 117.70109186841795, 12.189823894220709, 20.45002051978461, 31.829147799862483, 134.0203111280425, 8.909346863984705, 16.199018141782876, 61.69344372770625, 8.77433885335647, 21.33982536973362, 8.964238251429506, 55.965490735457635, 80.07601369412586, 95.66387172272641, 63.43818470370618, 8.043933812183212, 7.673662511817056, 12.389800475173626, 30.21146372023656, 132.5994552074672, 13.65526294561948, 51.58309105882687, 20.597027174945406, 99.91719740420629, 7.8667100169754605, 17.097269166728346, 87.06055956585111, 13.19778610704443, 64.75692976667, 77.99447341817512, 50.289978735724695, 10.817234014955517, 25.256702491031355, 32.938232329161906, 118.58404993789881, 16.397463114110746, 42.97040437829395, 23.41959786768803, 20.70383414794927, 44.96157699615233, 5.029394160818734, 48.91362339744727, 23.785573947708016, 82.13985226304035, 14.5981745861449, 8.20977633633337, 44.8830862149233, 27.59351373672489, 16.578778389079496, 8.421050088927066, 19.931548207556048, 16.023859299321987, 71.10167873688539, 28.03576128159723, 19.405559655355404, 26.192072207468332, 12.645634749989565, 80.58237059519361, 89.5343672282441, 10.56062784932818, 24.37506629288936, 32.534383278855245, 38.444185290310905, 21.371947877520398, 38.694871867335905, 18.03406570833071, 12.054309807168417, 41.60981678885368, 84.08730760303987, 13.29105186897211, 6.6949667068187155, 51.16697444692571, 163.9407777123308, 11.101895738728704, 84.78750824960498, 11.575996269063292, 14.243388676977887, 20.225873234695413, 29.74108030053314, 5.048158177010274, 22.46925888755961, 7.583697498708552, 10.252364378045144, 13.279682852578105, 8.823002354861899, 39.86158145403066, 9.292006761197982, 18.11377884067973, 5.533501883880612, 33.6157470428346, 9.764454401729422, 48.096398335925414, 20.366161527134928, 11.039577606582217, 90.95635993572851, 37.14815675396712, 10.787382293584908, 57.532590877548664, 22.544719200409176, 25.50709089679075, 25.30400236753095, 70.06722879336728, 11.554492266614941, 21.275443416191813, 26.47085771705236, 6.586716463436182, 46.204847184088344, 39.46303301858198, 57.07858741180508, 75.44631948523148, 28.495788562706863, 38.6253690823925, 87.98523234273324, 91.1860845804202, 26.110560117773133, 57.01146411653318, 75.31660406781756, 27.543414666356128, 7.552761113080801, 91.1606462167158, 9.069273050526329, 162.91913999810936, 18.008092573745056, 5.791461278664723, 10.903966122714452, 25.655626735142132, 31.688104243010258, 6.3174717462918535, 18.815265996213945, 27.06787125687663, 9.327226884621242, 25.726926219574374, 101.42607193382342, 27.553102937239515, 13.409767322396496, 32.63057262545144, 72.53261300309109, 5.992848129383731, 5.388558745347044, 66.52854886053126, 27.50144881018636, 42.917044999838566, 21.446611388681838, 239.7177874913904, 5.606265506815307, 6.972920687752661, 46.822357479096134, 85.70536334492388, 81.85136045248231, 6.592663392203958, 52.862600601189456, 17.997549030674293, 7.336586176817701, 13.840861922414094, 105.70160725518512, 11.695623664859593, 6.791613920726348, 9.621373391455622, 55.024821575233176, 62.492174384818185, 20.13177140790043, 14.716683916622786, 6.754990115263121, 5.663876665818495, 42.791046494712724, 50.5130350986905, 23.543331915537962, 8.943369551891186, 105.9276732489098, 51.213754334003895, 122.65448917314951, 20.513747877190987, 50.53114818575118, 11.69863019147115, 55.81599585213313, 87.78121926236199, 29.91216818284637, 80.74363649562986, 69.08677757112682, 7.691999818754418, 7.788483817829766, 17.036055968136168, 41.66147580696584, 8.434179717551338, 9.346075757950743, 48.92750471731357, 13.529213011630173, 41.007157318652354, 20.51283459020095, 58.07479152013084, 27.220555712360593, 71.49006752668654, 7.416617860308618, 28.275075963344285, 35.41001848146344, 133.59988715194203, 94.80551463128397, 68.43553489981288, 16.06168476026704, 88.24918115434826, 53.36062173159571, 96.96114495726474, 46.483996857638715, 30.386836917645187, 8.767263016249531, 6.986171190532348, 94.91959978149964, 137.21251569681135, 119.73040188920345, 5.489636639596662, 12.121887097834513, 17.62359759898469, 52.71819738473504, 6.132270254303872, 56.02280160131205, 203.04246223502793, 59.637517906440586, 11.797762830371687, 13.046924540767902, 209.14498900494337, 28.644412471615315, 24.587703982294673, 59.82450153385908, 18.65973564351082, 19.060183706620307, 19.350550011430528, 59.75817376319421, 48.369733818163496, 29.291539949703147, 5.778052423029037, 146.9449495326836, 62.2712799876428, 25.148991465158243, 58.183867999871325, 93.2410718550845, 15.0585793356639, 35.79013123522736, 14.123318567944125, 80.14908399133488, 38.82530199985706, 35.54308057985722, 35.110920660059236, 54.24393873255891, 26.63281767796061, 27.1893218100368, 81.68728633481479, 13.804778903708309, 30.61859755228328, 21.875387808494736, 35.51134449418642, 12.563270969774372, 74.44565294292975, 65.94910528500915, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3472657.32812626, 3561980.885870341, 3639106.152424615, 3661165.625, 3661304.599418621, 3717260.981768499, 3810096.5031266673, 3811086.1512375004, 3831722.8702885103, 3831973.4375, 3832625.3868955164, 3832648.37664468, 3834949.88097394, 3840138.178256221, 3882965.625, 3885071.549970547, 3894762.3969307262, 3929757.8125, 3930967.1875, 3949184.913473655, 4030613.4082772653, 4030935.244654595, 4039716.471634339, 4113791.827304553, 4114278.555040531, 4265735.9375, 4283660.367794566, 4353173.4375, 5906780.087012365, 6179077.16244536, 6284051.915601161, 6289661.907515525, 6300488.878326541, 6480556.460279244, 6482045.658285533, 6482113.177249262, 6482216.971993661, 6483508.143887642, 6486545.0144822635, 6493779.6875, 6494035.245864835, 6496442.16511916, 6497176.5625, 6497336.617207548, 6497952.846944092, 6497963.220622417, 6499478.670385949, 6499485.707835456, 6501555.642792818, 6501572.358275979, 6502272.972093515, 6502346.875, 6508095.3125, 6510318.689899754, 6512690.549048844, 6514890.664644247, 6538640.625, 6547606.918866467, 6547760.669292376, 6549251.85117921, 6549821.019752823, 6550340.22139021, 6550341.573333145, 6552464.5552779, 6559689.0625, 6567684.375, 6571357.078406684, 6571424.009142733, 6571584.375, 6571627.9389857035, 6583416.986964214, 6595221.807895316, 6597582.8125, 6601892.029333128, 6613537.085954366, 6618860.9375, 6628729.39593324, 6635147.208957775, 6635735.851484277, 6636293.591039118, 6637317.508413633, 6638507.550481279, 6639790.315779567, 6645301.4534796225, 6649550.862736998, 6650079.1689588735, 6651645.3125, 6654500.0, 6668055.9016688755, 6669843.90061199, 6680877.694192249, 6686705.99685467, 6691796.249094337, 6694468.209718099, 6694503.889516455, 6695725.0, 6714622.652130211, 6716177.671755467, 6717570.3125, 6718928.2086221175, 6720374.742970974, 6720400.107219251, 6720666.744642668, 6720968.30702991, 6721011.906664338, 6722800.0, 6724130.172226881, 6725956.633592063, 6730417.655657077, 6731862.279649004, 6760496.875, 6772005.934068781, 6804389.046255083, 6804568.96080737, 6807024.075696025, 6811486.7430189485, 6816907.568450024, 6871356.050181537, 6880752.627164475, 6881923.4375, 6891413.112869337, 6909200.0, 6910564.0625, 6912541.253003983, 6914049.92904547, 6925639.0625, 6936764.273804153, 6954041.401715735, 6955880.824310567, 6958346.447583839, 6960945.015724276, 6961019.042681104, 6964611.412200847, 6969392.023001502, 6970451.5625, 6971228.4190471005, 6971753.125, 6972139.226150921, 6972988.257235765, 6973089.09902566, 6973380.255552918, 6973398.341872425, 6973443.134693186, 6974002.233612404, 6974019.881600266, 6974034.375, 6974253.125, 6995791.805898123, 7000107.8125, 7005611.458547637, 7010914.69568449, 7014116.886190791, 7017180.384681603, 7018532.244692088, 7018665.625, 7023842.1875, 7032577.05947375, 7035192.1875, 7035571.875, 7035833.918188682, 7035887.215576073, 7036037.246304416, 7036585.937286677, 7036947.386533627, 7037070.559646253, 7037366.5397231085, 7037491.200695538, 7037824.053104959, 7038440.664977997, 7038792.562373784, 7039878.749956205, 7040536.868161279, 7040693.611346414, 7040812.310533028, 7040837.028534973, 7040895.3125, 7041295.3125, 7041513.380412275, 7041895.3125, 7041983.502447349, 7042115.625, 7042127.042429755, 7042339.0625, 7042627.363529844, 7042752.74356687, 7043206.726261777, 7043483.5866863895, 7043697.444290784, 7043956.25, 7043964.642606773, 7044138.451417638, 7044270.859307965, 7044425.46214126, 7044438.495801484, 7044690.4695611335, 7045356.428105538, 7047104.112277936, 7047640.625, 7048070.349677208, 7048189.721505402, 7048290.587767182, 7048489.0625, 7048618.775885247, 7048623.365354475, 7048682.624662682, 7048739.0625, 7049650.89848104, 7049885.833024282, 7050146.344787909, 7052665.485851608, 7057302.193349115, 7074117.474792203, 7074553.9924416235, 7075559.733239005, 7077627.582645197, 7080751.5625, 7082572.534513941, 7085978.53964906, 7087021.875, 7088798.0440714955, 7088859.748035532, 7091857.8125, 7092863.079547863, 7094880.618024051, 7102307.608047205, 7137534.375, 7170632.853017895, 7222553.812422057, 7361809.375, 7362525.0, 7362960.733286479, 7367463.852828374, 7422882.863453817, 7439176.807744061, 7453742.1875, 7454458.912448979, 7457131.25, 7464740.625, 7472592.964140363, 7472944.533380059, 7474844.215276669, 7485314.0625, 7491668.211750171, 7492437.3348741485, 7495192.164048685, 7544185.9375, 7563631.204001375, 7567825.797138636, 7650583.788697676, 7667403.125, 7669042.1875, 7669085.682392894, 7670281.868499513, 7670455.52126523, 7671468.75, 7678031.049200443, 7678076.5625, 7678485.608678503, 7686264.1796573335, 7686933.92255358, 7691961.376850188, 7696133.831515672, 7696790.625, 7697554.6875, 7705144.821499685, 7708296.994295161, 7716143.784645352, 7716208.918571981, 7718129.6875, 7720320.3125, 7720807.635159965, 7725683.838446726, 7735922.579616124, 7736821.0872557275, 7739772.071116758, 7739887.597332549, 7742062.202812436, 7755157.803136892, 7755277.053482711, 7755897.329123646, 7756438.3912259955, 7756607.8125, 7757105.37591626, 7757812.5, 7758625.0, 7759817.1875, 7760942.1875, 7761893.355825488, 7763415.117765348, 7766131.576788156, 7777746.864897012, 7779291.010592998, 7779974.750071093, 7780023.905809927, 7781693.75, 7785617.1875, 7789153.173514713, 7808753.125, 7818525.0, 7826974.03240266, 7827205.649761525, 7827793.05670334, 7827927.861471394, 7828228.125, 7828274.996536061, 7828393.75, 7828434.772193457, 7828736.434500761, 7830629.6875, 7830727.984701401, 7831297.203984104, 7831440.396965982, 7831538.353607064, 7831618.040749121, 7832587.103822164, 7832594.092243989, 7833095.084362233, 7833683.833334478, 7833768.75, 7834539.397898625, 7835392.032731809, 7835507.529475388, 7835563.533868761, 7835679.479911768, 7836609.070913403, 7838180.333213946, 7841251.478481308, 7841385.9375, 7841501.5625, 7841724.6068085525, 7841765.625, 7842251.5625, 7842325.121965759, 7842383.812322275, 7842664.0625, 7843096.843429667, 7843366.742018908, 7844199.98061978, 7844443.022152553, 7844648.445568807, 7844653.246816189, 7844919.1151527, 7844932.94099526, 7845853.125, 7849610.431447757, 7851443.343587337, 7851744.2729781, 7854093.172541113, 7854381.25, 7855142.1875, 7857159.8638335895, 7857443.904752672, 7857463.673404709, 7857584.375, 7857608.699265342, 7857718.75, 7858745.044473769, 7859262.0413826145, 7859442.1875, 7859743.409879632, 7859889.052760501, 7860424.364129415, 7860545.3125, 7860581.25, 7860908.391629855, 7862594.669750915, 7864007.706624732, 7865262.369529824, 7865915.259682505, 7865918.75, 7867307.771761639, 7868026.275122317, 7868409.375, 7868675.0, 7869150.160277416, 7869575.688119407, 7870197.407986361, 7870341.794239932, 7870744.472047684, 7870826.5625, 7870996.9951878935, 7871140.625, 7873428.5766254, 7873996.875, 7874665.812288318, 7878313.652466933, 7878412.5, 7879685.091378959, 7880216.9100931985, 7880474.526443877, 7880487.015000356, 7880781.042963944, 7881120.5047454415, 7881156.25, 7881196.962818798, 7881293.75, 7881317.753922591, 7881424.826063413, 7883035.9375, 7883610.075251968, 7883985.672426877, 7884808.779682298, 7884860.20064701, 7887104.6875, 7891720.15369283, 7893953.222895977, 7894396.875, 7898236.5615820475, 7899914.0625, 7899927.657960679, 7900000.0, 7900189.0625, 7900204.625950603, 7902723.118999304, 7903190.459967226, 7904079.292669916, 7906309.12946003, 7906939.0625, 7908051.5625, 7908307.8125, 7908842.429829726, 7910686.49106364, 7911090.472000754, 7911754.2981004, 7914440.146455521, 7914480.53514975, 7915390.50853573, 7917197.742866437, 7917942.1875, 7918780.6686708005, 7919062.318568906, 7919085.210074101, 7919445.3125, 7920373.528266241, 7920921.574234779, 7921409.375, 7921982.8125, 7922021.467968124, 7922442.044113257, 7922475.0, 7922524.6072338885, 7922607.206939692, 7922716.44312355, 7924410.9375, 7925028.83517502, 7929367.243331088, 7929456.25, 7930043.541379302, 7930438.978112579, 7932865.625, 7941356.25, 7942881.58343121, 7942917.725325425, 7943316.60579295, 7943526.295729485, 7944047.192635151, 7948854.8174951635, 7953088.648595191, 7953111.309490186, 7953178.962821577, 7956981.324919483, 7958238.963591081, 7959707.8125, 7961724.12120127, 7961993.75, 7962293.558657424, 7962408.859729077, 7962517.736538735, 7962707.5630378015, 7962770.614925261, 7962964.0625, 7962973.018520964, 7963534.375, 7963610.080064553, 7964006.25, 7964202.639150495, 7964252.610724688, 7964684.375, 7964937.5, 7965007.732337132, 7965181.270109172, 7965336.178576881, 7965821.875, 7966258.793500578, 7966503.050983156, 7967097.255477224, 7967511.669629491, 7968851.10868925, 7968937.5, 7969946.875, 7972524.088883727, 7974678.445885647, 7974840.625, 7975277.457322367, 7975537.987532738, 7980084.012952068, 7981213.026739718, 7981838.687298311, 7982115.788365329, 7983356.25, 7992298.4375, 7993670.305163591, 7995898.823201098, 7996051.927344923, 7996128.757209313, 7999689.0625, 7999782.740246433, 8000798.698879519, 8001262.339659764, 8002311.576089272, 8002550.2298256755, 8003638.175884438, 8004052.809932645, 8007676.331600067, 8008337.169487404, 8009449.462846676, 8010148.658699744, 8010296.875, 8010333.816554132, 8011700.0, 8011701.184663305, 8015967.469662205, 8016385.07656496, 8028363.432861938, 8034517.931363523, 8042674.1724681435, 8043521.875, 8049160.9375, 8051777.928079428, 8061014.001948566, 8061022.691482609, 8064328.078048279, 8067310.1650438, 8068342.999895963, 8068659.840632029, 8070910.040042293, 8072232.757904167, 8073875.942872845, 8074776.5625, 8076416.665622235, 8076435.670792178, 8076998.42492009, 8080257.8125, 8081003.193388877, 8081228.714740741, 8088286.694354282, 8100462.018871947, 8109208.590876436, 8109576.087736476, 8110175.355783999, 8112184.265688524, 8114915.468011018, 8115398.4375, 8115439.921383355, 8116070.245998076, 8122585.879223869, 8123236.921394047, 8123779.03158774, 8123914.0625, 8124665.625, 8124830.943694948, 8125426.432219525, 8125579.056034338, 8125914.7843963485, 8126166.605566471, 8126338.9978764355, 8126817.1875, 8127069.994396315, 8127085.881169504, 8127620.339536136, 8129598.4375, 8131433.779267884, 8131701.5625, 8131796.875, 8132045.098554228, 8132227.5697002895, 8133801.302942126, 8133806.405627244, 8136281.345787958, 8136375.0, 8140790.463739194, 8141428.705349855, 8142287.955354687, 8143440.478530211, 8143648.4375, 8143712.751015693, 8143954.6875, 8144135.831444427, 8144599.133604236, 8144635.762662754, 8145168.427551766, 8146557.435635371, 8146741.589492839, 8147237.5, 8147326.553277724, 8147333.808509668, 8147809.7224010145, 8148017.1875, 8148252.319267964, 8148856.25, 8148978.125, 8149240.63022876, 8150419.978899794, 8150668.75, 8152462.245807455, 8157066.383306039, 8163427.733673163, 8163988.244397052, 8166167.1875, 8169238.444926846, 8170102.877259086, 8174751.721294058, 8174785.9375, 8175030.297438156, 8176510.252877623, 8177083.040736131, 8177387.297713507, 8178406.25, 8179818.529137963, 8180206.060906402, 8180695.800060048, 8182014.948727978, 8182060.773893223, 8183487.7791032605, 8183682.83951754, 8183889.944107139, 8183990.625, 8184210.672033768, 8184583.073895422, 8186282.799979076, 8186376.8304443555, 8186818.472219125, 8188248.2650771625, 8191799.335970684, 8192057.8125, 8192204.6875, 8192443.112778552, 8194054.72449445, 8195970.180619855, 8196562.093401265, 8197465.343869571, 8197565.625, 8199561.220224846, 8200387.5, 8200751.550456178, 8200944.750365647, 8201212.376079756, 8201282.8125, 8201557.103546399, 8201582.8125, 8202195.1977677215, 8202373.460051728, 8202419.138146853, 8203328.834901405, 8205227.289788408, 8210681.068801837, 8211842.137981094, 8214101.865422391, 8217142.1875, 8217160.9375, 8221463.82499576, 8223576.777470498, 8224708.072310672, 8228545.753547299, 8228575.0, 8228580.677457766, 8229282.19605139, 8230724.51661939, 8231392.882386716, 8243804.746596868, 8247766.598811485, 8249975.97483501, 8251215.625, 8252120.246625596, 8258850.970260356, 8260727.97183933, 8262323.921162528, 8262424.569913185, 8264008.635824461, 8264189.0625, 8267249.072493073, 8267427.445786306, 8267523.4375, 8267594.2200411325, 8267731.479580615, 8268148.168699496, 8268993.281119999, 8269135.730139813, 8269940.656013417, 8270101.185745742, 8270309.307540281, 8271643.75, 8272322.093446932, 8273136.99658773, 8273945.181933791, 8274105.851903739, 8274107.4594319165, 8274151.70800891, 8274169.866905248, 8274202.4483004445, 8274206.25, 8274239.0625, 8274545.3125, 8274558.778693265, 8274602.939754136, 8274802.778517422, 8274806.25, 8274813.138505123, 8275093.75, 8275126.182548149, 8275239.53265065, 8275466.390082606, 8276077.765406566, 8276414.909528343, 8276450.301448284, 8277161.371129749, 8281022.292060852, 8281067.1875, 8281265.581751547, 8281414.546753165, 8281460.9375, 8281631.456839695, 8282035.405793069, 8282129.858169701, 8282551.783103007, 8282608.656987463, 8282637.866959218, 8283071.85706179, 8283087.502420713, 8283337.385902642, 8283353.125, 8283443.75, 8284057.148136659, 8284300.055180559, 8284334.217431363, 8284465.454245529, 8284645.3125, 8285058.430875236, 8285151.303167888, 8285801.787041288, 8285858.7337479675, 8285889.1462491695, 8286135.788029457, 8286464.0625, 8286555.657678822, 8286765.708642709, 8287729.0474302685, 8288284.375, 8288447.462611164, 8288705.409829554, 8288931.25, 8289053.104599495, 8289401.017285682, 8289751.857448482, 8290006.25, 8290318.008490054, 8291204.171996414, 8291996.406320407, 8292331.983802344, 8292887.5, 8293259.945302191, 8293495.3125, 8294965.136128356, 8294986.128105324, 8295545.993408885, 8295554.9086910775, 8295659.375, 8295698.053459714, 8295760.9375, 8295781.035969385, 8295840.697503855, 8295878.799096254, 8295947.3450411325, 8295995.3125, 8296030.702490856, 8296032.8125, 8296373.458232743, 8296418.75, 8296445.104353511, 8296451.121559301, 8296458.742267781, 8296460.0337035, 8296465.960875012, 8296470.3125, 8296471.5486261025, 8296504.697978108, 8296518.549605922, 8296533.641384973, 8296620.3125, 8296757.51522201, 8296765.71944627, 8296904.109415566, 8296912.351888594, 8296923.4375, 8297006.217630918, 8297344.122108821, 8297437.745918368, 8297788.390287551, 8297884.474057686, 8298137.5, 8298178.98750545, 8298273.842259876, 8298384.244774054, 8298430.48121917, 8298487.5, 8298606.25, 8298691.791646547, 8298948.18485333, 8299599.977326579, 8299942.1875, 8300047.925268678, 8300303.452649695, 8300320.9986761, 8300394.271639735, 8300446.875, 8300510.9375, 8301826.049672713, 8302377.771709981, 8302550.469766325, 8302615.625, 8302735.920923883, 8302910.608499575, 8302937.769042428, 8302959.178933027, 8302961.86283525, 8303110.603353342, 8303112.888846431, 8303333.492869568, 8303340.57064918, 8303355.607121731, 8303424.371604248, 8303455.580606279, 8303612.5, 8304082.765537306, 8304278.7656477075, 8304498.446178479, 8304634.975382501, 8304716.0962901795, 8305032.874439637, 8305685.316587601, 8306392.1303763995, 8306613.376822771, 8306753.125, 8306771.089568605, 8307084.375, 8307291.786831323, 8307355.489533683, 8307440.409051156, 8307628.661314792, 8307642.444399804, 8307729.165400572, 8307739.7382078115, 8308209.9823963875, 8308231.25, 8308782.434822895, 8308791.896045289, 8309234.809719139, 8309243.370298941, 8309400.833104334, 8309413.316483415, 8309726.5625, 8309905.497886675, 8309970.3125, 8309995.3125, 8310251.37828755, 8310540.483249522, 8310621.875, 8310935.610321204, 8311265.573457168, 8311336.561591501, 8311470.003444086, 8311551.414481171, 8311593.585802018, 8311663.793982108, 8312855.075314892, 8315219.494412438, 8315339.631848118, 8315539.057556764, 8315660.77791546, 8315839.04555368, 8315849.948921128, 8315868.280286933, 8315907.225541967, 8315934.375, 8316253.718876995, 8316301.3006906165, 8316417.1875, 8316426.14065503, 8316471.875, 8316747.787760349, 8316911.3945991825, 8317292.046033226, 8317322.840631609, 8317335.267652095, 8317560.9375, 8317651.370172761, 8318475.6419572085, 8318533.13356206, 8318625.622425758, 8320303.884722594, 8321102.747389616, 8321304.6875, 8321336.272796768, 8321459.514176866, 8321461.261618525, 8321604.260550296, 8321833.575265272, 8322185.289271814, 8322320.252236833, 8323346.832191217, 8323410.241952232, 8323542.237872797, 8323631.13280838, 8323637.603557936, 8323716.689938189, 8323812.5, 8323917.1875, 8323951.5625, 8323982.208381175, 8324177.138776636, 8324459.711934164, 8324559.375, 8324838.349382384, 8324882.3352854885, 8324987.743681914, 8325014.0625, 8325609.613922578, 8325664.547193848, 8326020.771395521, 8326204.554526041, 8326829.956564432, 8327403.142301755, 8327441.43033572, 8327515.197542515, 8327712.5, 8328499.395778196, 8328961.35473649, 8329416.0968270125, 8329441.727242311, 8331129.140262666, 8331306.237252289, 8331876.356035341, 8332449.4741346445, 8332458.929148918, 8332550.0, 8332625.291928154, 8332658.863144531, 8333314.245099875, 8333506.091689296, 8334388.539575434, 8334416.852818111, 8334422.685372202, 8335135.396596884, 8335214.974912117, 8336048.4375, 8336220.3125, 8336413.133641008, 8337256.885752569, 8337407.262950807, 8337750.893068144, 8338056.664310298, 8338975.329071001, 8339052.754810781, 8339055.3348536175, 8339084.765184112, 8339222.832319112, 8339767.669257657, 8339816.9590979805, 8339905.028751726, 8339943.75, 8339983.615621915, 8339999.215812261, 8340233.725473554, 8340271.597592816, 8340281.818179989, 8340516.450586454, 8340537.002331666, 8340792.053781186, 8340843.481233177, 8340982.8808030365, 8341276.536815132, 8341293.75, 8341528.849410382, 8341681.25, 8341732.579892239, 8341743.647847737, 8341998.266116894, 8342110.945537833, 8342133.689615883, 8342317.1875, 8342318.646462312, 8342481.298363616, 8342831.25, 8342946.540960815, 8342974.073651189, 8343058.912487226, 8343060.8998210365, 8343774.19566661, 8343933.701788712, 8344457.321852622, ...], [5.19125471453537, 22.964738630167563, 159.11771945556103, 87.6645431276439, 5.528820890400148, 11.197613569715017, 79.5393068607162, 65.05640939446015, 21.509521982125342, 63.01035569398655, 42.107314618319194, 93.19581052055156, 9.232747703135216, 12.383974129542265, 74.58645279419767, 7.489763438952972, 75.66478909350734, 44.320418200034, 30.345684524645293, 19.13492085593237, 27.156254095647487, 20.951741408524388, 11.230330263026879, 10.607799094294494, 27.82526499552145, 73.96954237295404, 14.285451593588162, 32.70113680998334, 40.960038683662034, 58.15703372269915, 16.482988916101924, 10.31274657166037, 25.352317687637225, 11.473102924247344, 11.71492537887136, 5.3124756793817385, 50.26608446888949, 16.375381222405363, 9.091514360962233, 31.53405549415309, 68.66788393841219, 28.08944300118606, 46.7746813841934, 20.855816473977768, 13.977980373772846, 63.2001672948994, 40.39031449217875, 24.692774105696113, 20.653159532891145, 17.170727523594703, 21.845272564452337, 80.69639805322615, 60.27875836775794, 9.281096829165014, 14.659711479541455, 63.87055994314739, 68.50822197613795, 18.297728975430147, 54.76621631932984, 11.61104452636033, 8.699699051671363, 41.455146892638794, 10.286616177529812, 5.4176526360734, 72.53075639425168, 30.60765078295111, 6.625296036028798, 17.683737212296396, 67.60728894010097, 14.276939458893805, 14.228546630026429, 78.76222691930548, 45.46807950114115, 5.52545313031181, 22.395647444269944, 29.023324212009303, 12.998421635536108, 16.388018681744068, 26.93198200493358, 16.986203609112486, 59.546126631845276, 24.24833457207655, 7.042472096366939, 5.394322577288239, 19.70772767481463, 41.965124309809156, 48.0478140277608, 40.57185844096221, 44.05472481232477, 37.666170323367155, 29.242928684588044, 15.196373793809279, 5.375073441416132, 13.217060875883465, 8.736961683952918, 47.68974086858668, 8.745255414309709, 87.14849751297535, 46.28370274676336, 11.260978514484966, 8.155177387371394, 15.366558284126665, 53.254671375586014, 94.5340669774461, 46.15791351248519, 69.94713509056866, 24.52400759603841, 16.63738399446265, 11.947834464771752, 14.163267604725123, 44.02148547979403, 34.56770646967425, 69.8322373561647, 24.47067773293891, 59.127487800170684, 41.23573507358596, 7.517291199317673, 10.829109989144952, 6.668027370204549, 78.80102274324285, 7.292447770031705, 80.5705525257951, 50.87358320763332, 17.613330244847166, 7.577774667269743, 57.58931001928914, 5.543424442838166, 12.606038515362052, 23.012004000992253, 8.072785397226472, 11.812654914945727, 5.074257523827431, 5.482516906815159, 14.349517638952761, 69.50699315883638, 6.534195228397348, 59.364120510858946, 70.77197381856514, 5.872217526594279, 17.62774153704868, 17.662098788878712, 96.27695973663326, 5.18802415617694, 63.36806137881416, 7.454485015434715, 47.61981781462906, 61.00858165505123, 60.739917926148394, 55.11074600150348, 12.053114730416459, 8.652427125070336, 10.687283648451603, 78.18771186175157, 59.522973894678714, 102.5970863795347, 58.737250808657855, 29.077063197950697, 64.88989557652523, 50.70627308471561, 21.935027813865574, 23.951764546536232, 29.99050331521766, 28.521005416269837, 90.52354805424989, 27.34234001734071, 27.401873221642386, 26.012984002879556, 12.248775755297633, 6.092266466616785, 11.768988010188666, 5.747720789203841, 12.97891359642428, 14.438112531488304, 76.53069165163453, 6.672896121431694, 80.01265449665436, 44.70869475801815, 15.668807075810658, 43.128935928933814, 63.179499475342695, 51.25430997995163, 33.15935714216828, 62.99312583185063, 21.12976944850427, 12.330570161341873, 24.292602287902206, 64.54757060967363, 17.66955237860498, 47.94108271430897, 12.174169481971235, 112.0663716300768, 12.105453290655198, 56.11881241352734, 6.980047287565916, 32.43795166870182, 23.033625384510824, 13.124645983346976, 80.78692817747975, 92.510815587795, 15.260096124566813, 11.070003990395925, 49.336317391241955, 15.041098360863613, 14.67347446091196, 25.297619616311863, 51.06210000941536, 31.114974784630743, 23.827479931030307, 8.024775041328528, 13.184997199048048, 18.05103322701724, 53.17581238855993, 19.27278514472247, 20.760762625347965, 26.355388700694004, 64.64532544464228, 9.95914164628331, 71.0638907052414, 43.8366586704946, 22.62643420586188, 124.29611473657158, 62.74024845628825, 9.874748935910082, 12.978566239647582, 70.97493344336814, 47.77830617681798, 5.0696338420497336, 77.55731422742079, 40.878480060841014, 51.17267809673058, 7.5310101340319315, 169.19157574350265, 6.093414041799043, 11.533970331350007, 59.49275662799687, 38.915330186742565, 57.12912431744198, 46.293516467643464, 19.047910579927997, 10.095064687449826, 22.67905344681993, 53.26471698004421, 55.82556561987859, 5.80186256390755, 95.93605678418425, 58.08193398595616, 8.262401357002437, 114.22387949638576, 20.673324281616704, 33.875929639174956, 60.41817077670167, 12.469546192099422, 37.46725845851862, 30.889058072428973, 37.77667236793927, 87.16223998137582, 66.02999753832486, 20.942008372290676, 6.5056148454207365, 14.137425410269707, 92.51315846996204, 53.21064612909286, 83.22013529165167, 39.45503257345343, 24.160010860285098, 91.51425836479453, 15.075226277632181, 5.27719369142764, 43.98853532250336, 52.676570441846465, 74.28564912843687, 29.85740993634564, 6.16457191966069, 19.034100289259225, 81.1281439413865, 5.821217315043843, 65.91736008256981, 159.6686923691795, 68.258053759066, 40.23219444684365, 59.11958773975787, 66.27841516695786, 8.687579259212677, 115.18807731006785, 42.37405980042147, 60.58627172587035, 102.69121989610383, 73.28935634877769, 134.58628868102392, 7.21008822643608, 11.111951817298841, 107.85119906109655, 24.412119010381826, 11.948134576779513, 53.97035120372978, 64.98841378540396, 15.129706259824035, 69.5689186116669, 30.197718515031042, 12.205094214318839, 10.30337556269994, 19.759681265060205, 24.22806720815287, 35.73106731394332, 6.4865483651125775, 53.41658431528502, 5.213660700140144, 42.5664055861734, 46.46701316726724, 35.771349358277924, 23.17468397099581, 24.715697863962895, 151.62433683841894, 47.097791313822846, 40.63727505766444, 16.428943639864816, 66.02075152913174, 72.19103676725909, 43.62466390827734, 9.63207250359656, 44.51802083464759, 13.962352339411629, 21.212165144254637, 79.6397193838976, 33.254822222382515, 77.54873898551953, 26.966589066734844, 47.25945673170329, 30.343683995094523, 22.62912210873533, 68.84810567520651, 30.948124271789364, 47.804198666174656, 29.768944093749393, 71.59496657703505, 27.91502249722518, 10.496145293929633, 11.097548792182842, 19.486086933929172, 11.886937398883687, 42.725113748394406, 24.371347555725052, 24.560040907123195, 66.45716713988793, 21.43293760042041, 47.11408032292406, 17.396252173488783, 27.932066443707335, 59.44406703626069, 29.71473021732004, 29.762955273409318, 9.465775373308611, 9.022732068005935, 32.04270909257127, 70.04514896749573, 44.100258053986764, 6.445880844063887, 13.44083041784204, 56.810093047236705, 10.634671928576996, 8.281433622792775, 8.84598873606478, 60.848187619826106, 29.90811197014765, 12.172136188870315, 8.841253051506706, 8.231371186900642, 68.4994461526641, 41.221100172882025, 48.67456532574898, 49.558150936033925, 23.913324494923568, 50.98829896930547, 57.288226649422086, 7.164230870491719, 12.405680476333222, 17.454359653949442, 72.25710204696338, 111.52523180633959, 53.092069666932744, 73.3120095466591, 101.37540840438874, 65.28871194875978, 54.44822540323659, 8.388165585358685, 57.91123689554106, 76.11770153739269, 66.19572308909642, 73.42059031374919, 204.15330481848312, 35.86306416596124, 25.015592263004155, 9.499425541144607, 89.0772486275087, 15.287142587265606, 59.58110762636439, 5.261279756837674, 15.005749797418261, 48.23783537136304, 10.003131386845974, 14.01905559935086, 13.072360126727084, 19.41636288126537, 68.65793301882033, 10.888233823642745, 74.12326708622703, 58.70233593459408, 18.008032688090214, 70.67390566679, 10.468548482329625, 56.773573178574416, 67.50045792655078, 14.711989195179106, 64.8171542215909, 25.64277600112771, 126.94941394730915, 10.76444109072801, 41.83020649384205, 105.62943684199048, 66.81829184376008, 15.95327605086631, 17.57546983183334, 22.742459493015886, 22.672224187528187, 83.60535474093281, 14.598246414155792, 40.49066828068315, 6.383448731876365, 30.324735254034916, 43.05960944447996, 25.393445863774115, 83.50704883310229, 63.580863255789474, 6.501414390385614, 45.6033503978272, 49.18140527268268, 74.52478942715868, 5.78446497867324, 25.98108023848576, 51.91359093893595, 5.383668268984932, 20.500973205624025, 19.35860380465872, 91.87924809308495, 6.914083470054986, 11.216110356730415, 34.74121501871029, 74.68102554596305, 19.843137658420083, 64.65593575280185, 38.08920035706157, 7.728456527228264, 67.5165531492312, 42.52142423976285, 45.46568062477611, 83.22562165317478, 15.461273942797645, 7.460094835680424, 40.77715484798371, 7.360600899467596, 15.234969219024855, 44.09004496284594, 76.87503301347603, 56.365818027672404, 54.94433534291134, 80.31086054239836, 13.28441625080349, 8.59995127269339, 14.484245768229133, 5.8367012358146, 56.86544386644336, 5.591278226424683, 94.11057645402975, 50.0493811294285, 35.76521855421756, 6.038991536991174, 5.776883625869851, 50.70964565960254, 34.89154390307393, 70.26985738356512, 11.159284882424544, 15.947549002919716, 64.55997925836088, 30.400577589644087, 40.7266602000811, 46.88676199811181, 31.212499896981257, 63.46273862077088, 51.90994464362912, 33.249294621836206, 19.46762523056771, 44.010015247144494, 83.5683048335337, 5.5781444790372605, 9.780721615255413, 32.90829315984237, 8.586258124715082, 10.587860788108138, 49.75318353467803, 46.241858974752766, 98.82817649830545, 28.380631519930663, 16.648208661621773, 59.10674767065184, 7.849106241083259, 53.721635881201905, 8.248734473156103, 9.56264593768236, 25.71521450197672, 18.100549990678175, 22.186761283894896, 18.344242408933074, 13.86277274201917, 24.675439926926536, 69.74519517342192, 58.226892056358736, 11.492002689947867, 46.33077390088113, 31.951787651192735, 38.23559401031181, 22.804923324268753, 8.441646907247986, 5.867780121873603, 40.67225261578689, 10.050993313242436, 6.60882515220014, 29.25210210307518, 88.48416054709034, 25.1632349418084, 36.874842009428534, 19.346064705165954, 58.87014503936439, 6.372456143503349, 6.937309177421628, 17.07298336297552, 25.872727294524452, 14.737420311094924, 47.37280392727138, 81.56572805545088, 33.19306590594496, 6.060796244010602, 5.290698831105317, 50.07353577303613, 15.208744229160192, 5.745347591683332, 18.507966323718705, 8.955220542688878, 5.873909349951521, 38.924347916867134, 34.645776428306135, 15.422323900640457, 5.095378879596802, 84.48954689954014, 16.535029976866966, 12.607912508928507, 36.023236708611336, 18.144531615858554, 79.01099566276375, 54.09146211304752, 44.60684642036891, 23.67053607922994, 78.03263660794667, 62.492502528170036, 171.90738013495587, 34.209178397584644, 47.86666745869432, 44.91843707429491, 17.180080308581264, 14.731064502313462, 6.270620241540624, 37.89258519905269, 5.188505576503777, 39.046726954215295, 39.58988011956885, 76.18081575038057, 67.63841193373837, 75.5543017263463, 15.569831619455716, 15.31962551616548, 65.08752073112079, 38.85799260764361, 12.174675581044, 26.51113592467896, 25.932240912805057, 61.58985830687134, 5.8327897090380345, 42.6335774843969, 73.19910556199858, 18.480004012861247, 5.695720520969217, 7.490633532194129, 13.676429114134347, 45.95055103418167, 71.09115779695362, 44.00587499959542, 6.401810148804975, 30.325096161734095, 58.81945757543826, 5.57097181528768, 47.362547343810796, 67.52074261125148, 25.92444990081527, 13.806112811272603, 39.95013865076292, 24.354051519151565, 18.914651623439244, 6.687817513228065, 88.46661327546602, 49.64269985317077, 27.401316134562805, 60.936855987853924, 8.372374137149219, 68.19402786534849, 12.236770749972916, 30.81973968671423, 26.04196348220226, 25.084653954527834, 99.73256781194337, 9.151382381222891, 25.77703475516118, 56.43119063670275, 6.185377018072011, 21.087296277978293, 16.12393010847622, 15.045497376844887, 62.052533075173166, 36.80100246358647, 40.730428028856, 156.1779415791383, 41.343325682012235, 16.071617710270395, 8.144948867052284, 7.076852748465907, 12.89818949312814, 66.89675827564714, 36.50481963251289, 32.57207900497444, 98.79539390284077, 185.83018415274375, 22.478332531140392, 13.968304120314192, 67.45830949884824, 16.141008312784667, 86.94631649329064, 6.2656779156150275, 20.894888603264427, 23.695071741557307, 84.67672258005935, 7.944168278802544, 42.032314998677286, 31.617261642091194, 15.02816843637349, 8.503086000703526, 18.574162751912315, 6.363677445318906, 5.69532230689901, 31.64814834911808, 43.47866536897324, 83.65893778963748, 38.031717861301615, 10.775713423936267, 15.829482281388668, 34.176003171338344, 16.93924501855345, 43.40697919004201, 20.798739951643682, 49.095508915201115, 8.046493555344764, 6.601832223764364, 15.171647054093201, 5.376435998759641, 8.879458615717752, 126.96039448995332, 31.58289927873362, 261.11277731076325, 25.827003435737165, 29.55238595405527, 10.516004098356328, 19.398484882300423, 100.88315326794228, 82.36889125844361, 7.37475875939242, 68.51922498054194, 37.28892247437736, 15.895259311108775, 24.157624330333938, 32.5952531656281, 64.10633403262992, 15.814448498346096, 22.817444058156415, 27.257680064848667, 51.619689524979776, 15.845065764401568, 54.522404083558115, 14.466158543722448, 22.57366859630546, 8.10829561112773, 15.526726054688925, 56.74884735375781, 19.894651690385867, 53.00549169658891, 54.83414186657904, 47.719817976268594, 20.583332716912796, 11.556408046315703, 23.174610956549447, 65.28538057722396, 18.100009730152866, 28.720746201155418, 131.66892083740083, 39.7335355722973, 7.905563324807992, 23.018239004904338, 10.167496491796747, 29.573990299498938, 6.134384390248272, 63.047731729693226, 61.54979222698522, 7.58766999632498, 33.96112024731707, 46.14401412989163, 20.523329735201536, 20.368320707230804, 7.167050060822067, 7.180674596968928, 15.04293162352612, 5.212872831957552, 11.099783510998385, 14.950744082081636, 18.0169709030048, 49.23690754126215, 45.29205941292772, 12.897359763675427, 7.623318225290898, 35.45355586830481, 117.99707870322878, 56.5555594064947, 23.51758014097501, 10.745185520669093, 71.5321799217361, 55.69434405513665, 15.270628460419077, 10.400769924037775, 61.65409651703352, 10.312944238557568, 11.261011975136634, 70.02893451682903, 117.70109186841795, 12.189823894220709, 20.45002051978461, 31.829147799862483, 134.0203111280425, 8.909346863984705, 16.199018141782876, 61.69344372770625, 8.77433885335647, 21.33982536973362, 8.964238251429506, 55.965490735457635, 80.07601369412586, 95.66387172272641, 63.43818470370618, 8.043933812183212, 7.673662511817056, 12.389800475173626, 30.21146372023656, 132.5994552074672, 13.65526294561948, 51.58309105882687, 20.597027174945406, 99.91719740420629, 7.8667100169754605, 17.097269166728346, 87.06055956585111, 13.19778610704443, 64.75692976667, 77.99447341817512, 50.289978735724695, 10.817234014955517, 25.256702491031355, 32.938232329161906, 118.58404993789881, 16.397463114110746, 42.97040437829395, 23.41959786768803, 20.70383414794927, 44.96157699615233, 5.029394160818734, 48.91362339744727, 23.785573947708016, 82.13985226304035, 14.5981745861449, 8.20977633633337, 44.8830862149233, 27.59351373672489, 16.578778389079496, 8.421050088927066, 19.931548207556048, 16.023859299321987, 71.10167873688539, 28.03576128159723, 19.405559655355404, 26.192072207468332, 12.645634749989565, 80.58237059519361, 89.5343672282441, 10.56062784932818, 24.37506629288936, 32.534383278855245, 38.444185290310905, 21.371947877520398, 38.694871867335905, 18.03406570833071, 12.054309807168417, 41.60981678885368, 84.08730760303987, 13.29105186897211, 6.6949667068187155, 51.16697444692571, 163.9407777123308, 11.101895738728704, 84.78750824960498, 11.575996269063292, 14.243388676977887, 20.225873234695413, 29.74108030053314, 5.048158177010274, 22.46925888755961, 7.583697498708552, 10.252364378045144, 13.279682852578105, 8.823002354861899, 39.86158145403066, 9.292006761197982, 18.11377884067973, 5.533501883880612, 33.6157470428346, 9.764454401729422, 48.096398335925414, 20.366161527134928, 11.039577606582217, 90.95635993572851, 37.14815675396712, 10.787382293584908, 57.532590877548664, 22.544719200409176, 25.50709089679075, 25.30400236753095, 70.06722879336728, 11.554492266614941, 21.275443416191813, 26.47085771705236, 6.586716463436182, 46.204847184088344, 39.46303301858198, 57.07858741180508, 75.44631948523148, 28.495788562706863, 38.6253690823925, 87.98523234273324, 91.1860845804202, 26.110560117773133, 57.01146411653318, 75.31660406781756, 27.543414666356128, 7.552761113080801, 91.1606462167158, 9.069273050526329, 162.91913999810936, 18.008092573745056, 5.791461278664723, 10.903966122714452, 25.655626735142132, 31.688104243010258, 6.3174717462918535, 18.815265996213945, 27.06787125687663, 9.327226884621242, 25.726926219574374, 101.42607193382342, 27.553102937239515, 13.409767322396496, 32.63057262545144, 72.53261300309109, 5.992848129383731, 5.388558745347044, 66.52854886053126, 27.50144881018636, 42.917044999838566, 21.446611388681838, 239.7177874913904, 5.606265506815307, 6.972920687752661, 46.822357479096134, 85.70536334492388, 81.85136045248231, 6.592663392203958, 52.862600601189456, 17.997549030674293, 7.336586176817701, 13.840861922414094, 105.70160725518512, 11.695623664859593, 6.791613920726348, 9.621373391455622, 55.024821575233176, 62.492174384818185, 20.13177140790043, 14.716683916622786, 6.754990115263121, 5.663876665818495, 42.791046494712724, 50.5130350986905, 23.543331915537962, 8.943369551891186, 105.9276732489098, 51.213754334003895, 122.65448917314951, 20.513747877190987, 50.53114818575118, 11.69863019147115, 55.81599585213313, 87.78121926236199, 29.91216818284637, 80.74363649562986, 69.08677757112682, 7.691999818754418, 7.788483817829766, 17.036055968136168, 41.66147580696584, 8.434179717551338, 9.346075757950743, 48.92750471731357, 13.529213011630173, 41.007157318652354, 20.51283459020095, 58.07479152013084, 27.220555712360593, 71.49006752668654, 7.416617860308618, 28.275075963344285, 35.41001848146344, 133.59988715194203, 94.80551463128397, 68.43553489981288, 16.06168476026704, 88.24918115434826, 53.36062173159571, 96.96114495726474, 46.483996857638715, 30.386836917645187, 8.767263016249531, 6.986171190532348, 94.91959978149964, 137.21251569681135, 119.73040188920345, 5.489636639596662, 12.121887097834513, 17.62359759898469, 52.71819738473504, 6.132270254303872, 56.02280160131205, 203.04246223502793, 59.637517906440586, 11.797762830371687, 13.046924540767902, 209.14498900494337, 28.644412471615315, 24.587703982294673, 59.82450153385908, 18.65973564351082, 19.060183706620307, 19.350550011430528, 59.75817376319421, 48.369733818163496, 29.291539949703147, 5.778052423029037, 146.9449495326836, 62.2712799876428, 25.148991465158243, 58.183867999871325, 93.2410718550845, 15.0585793356639, 35.79013123522736, 14.123318567944125, 80.14908399133488, 38.82530199985706, 35.54308057985722, 35.110920660059236, 54.24393873255891, 26.63281767796061, 27.1893218100368, 81.68728633481479, 13.804778903708309, 30.61859755228328, 21.875387808494736, 35.51134449418642, 12.563270969774372, 74.44565294292975, 65.94910528500915, ...])
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);
([3472657.32812626, 3561980.885870341, 3639106.152424615, 3661165.625, 3661304.599418621, 3717260.981768499, 3810096.5031266673, 3811086.1512375004, 3831722.8702885103, 3831973.4375, 3832625.3868955164, 3832648.37664468, 3834949.88097394, 3840138.178256221, 3882965.625, 3885071.549970547, 3894762.3969307262, 3929757.8125, 3930967.1875, 3949184.913473655, 4030613.4082772653, 4030935.244654595, 4039716.471634339, 4113791.827304553, 4114278.555040531, 4265735.9375, 4283660.367794566, 4353173.4375, 5906780.087012365, 6179077.16244536, 6284051.915601161, 6289661.907515525, 6300488.878326541, 6480556.460279244, 6482045.658285533, 6482113.177249262, 6482216.971993661, 6483508.143887642, 6486545.0144822635, 6493779.6875, 6494035.245864835, 6496442.16511916, 6497176.5625, 6497336.617207548, 6497952.846944092, 6497963.220622417, 6499478.670385949, 6499485.707835456, 6501555.642792818, 6501572.358275979, 6502272.972093515, 6502346.875, 6508095.3125, 6510318.689899754, 6512690.549048844, 6514890.664644247, 6538640.625, 6547606.918866467, 6547760.669292376, 6549251.85117921, 6549821.019752823, 6550340.22139021, 6550341.573333145, 6552464.5552779, 6559689.0625, 6567684.375, 6571357.078406684, 6571424.009142733, 6571584.375, 6571627.9389857035, 6583416.986964214, 6595221.807895316, 6597582.8125, 6601892.029333128, 6613537.085954366, 6618860.9375, 6628729.39593324, 6635147.208957775, 6635735.851484277, 6636293.591039118, 6637317.508413633, 6638507.550481279, 6639790.315779567, 6645301.4534796225, 6649550.862736998, 6650079.1689588735, 6651645.3125, 6654500.0, 6668055.9016688755, 6669843.90061199, 6680877.694192249, 6686705.99685467, 6691796.249094337, 6694468.209718099, 6694503.889516455, 6695725.0, 6714622.652130211, 6716177.671755467, 6717570.3125, 6718928.2086221175, 6720374.742970974, 6720400.107219251, 6720666.744642668, 6720968.30702991, 6721011.906664338, 6722800.0, 6724130.172226881, 6725956.633592063, 6730417.655657077, 6731862.279649004, 6760496.875, 6772005.934068781, 6804389.046255083, 6804568.96080737, 6807024.075696025, 6811486.7430189485, 6816907.568450024, 6871356.050181537, 6880752.627164475, 6881923.4375, 6891413.112869337, 6909200.0, 6910564.0625, 6912541.253003983, 6914049.92904547, 6925639.0625, 6936764.273804153, 6954041.401715735, 6955880.824310567, 6958346.447583839, 6960945.015724276, 6961019.042681104, 6964611.412200847, 6969392.023001502, 6970451.5625, 6971228.4190471005, 6971753.125, 6972139.226150921, 6972988.257235765, 6973089.09902566, 6973380.255552918, 6973398.341872425, 6973443.134693186, 6974002.233612404, 6974019.881600266, 6974034.375, 6974253.125, 6995791.805898123, 7000107.8125, 7005611.458547637, 7010914.69568449, 7014116.886190791, 7017180.384681603, 7018532.244692088, 7018665.625, 7023842.1875, 7032577.05947375, 7035192.1875, 7035571.875, 7035833.918188682, 7035887.215576073, 7036037.246304416, 7036585.937286677, 7036947.386533627, 7037070.559646253, 7037366.5397231085, 7037491.200695538, 7037824.053104959, 7038440.664977997, 7038792.562373784, 7039878.749956205, 7040536.868161279, 7040693.611346414, 7040812.310533028, 7040837.028534973, 7040895.3125, 7041295.3125, 7041513.380412275, 7041895.3125, 7041983.502447349, 7042115.625, 7042127.042429755, 7042339.0625, 7042627.363529844, 7042752.74356687, 7043206.726261777, 7043483.5866863895, 7043697.444290784, 7043956.25, 7043964.642606773, 7044138.451417638, 7044270.859307965, 7044425.46214126, 7044438.495801484, 7044690.4695611335, 7045356.428105538, 7047104.112277936, 7047640.625, 7048070.349677208, 7048189.721505402, 7048290.587767182, 7048489.0625, 7048618.775885247, 7048623.365354475, 7048682.624662682, 7048739.0625, 7049650.89848104, 7049885.833024282, 7050146.344787909, 7052665.485851608, 7057302.193349115, 7074117.474792203, 7074553.9924416235, 7075559.733239005, 7077627.582645197, 7080751.5625, 7082572.534513941, 7085978.53964906, 7087021.875, 7088798.0440714955, 7088859.748035532, 7091857.8125, 7092863.079547863, 7094880.618024051, 7102307.608047205, 7137534.375, 7170632.853017895, 7222553.812422057, 7361809.375, 7362525.0, 7362960.733286479, 7367463.852828374, 7422882.863453817, 7439176.807744061, 7453742.1875, 7454458.912448979, 7457131.25, 7464740.625, 7472592.964140363, 7472944.533380059, 7474844.215276669, 7485314.0625, 7491668.211750171, 7492437.3348741485, 7495192.164048685, 7544185.9375, 7563631.204001375, 7567825.797138636, 7650583.788697676, 7667403.125, 7669042.1875, 7669085.682392894, 7670281.868499513, 7670455.52126523, 7671468.75, 7678031.049200443, 7678076.5625, 7678485.608678503, 7686264.1796573335, 7686933.92255358, 7691961.376850188, 7696133.831515672, 7696790.625, 7697554.6875, 7705144.821499685, 7708296.994295161, 7716143.784645352, 7716208.918571981, 7718129.6875, 7720320.3125, 7720807.635159965, 7725683.838446726, 7735922.579616124, 7736821.0872557275, 7739772.071116758, 7739887.597332549, 7742062.202812436, 7755157.803136892, 7755277.053482711, 7755897.329123646, 7756438.3912259955, 7756607.8125, 7757105.37591626, 7757812.5, 7758625.0, 7759817.1875, 7760942.1875, 7761893.355825488, 7763415.117765348, 7766131.576788156, 7777746.864897012, 7779291.010592998, 7779974.750071093, 7780023.905809927, 7781693.75, 7785617.1875, 7789153.173514713, 7808753.125, 7818525.0, 7826974.03240266, 7827205.649761525, 7827793.05670334, 7827927.861471394, 7828228.125, 7828274.996536061, 7828393.75, 7828434.772193457, 7828736.434500761, 7830629.6875, 7830727.984701401, 7831297.203984104, 7831440.396965982, 7831538.353607064, 7831618.040749121, 7832587.103822164, 7832594.092243989, 7833095.084362233, 7833683.833334478, 7833768.75, 7834539.397898625, 7835392.032731809, 7835507.529475388, 7835563.533868761, 7835679.479911768, 7836609.070913403, 7838180.333213946, 7841251.478481308, 7841385.9375, 7841501.5625, 7841724.6068085525, 7841765.625, 7842251.5625, 7842325.121965759, 7842383.812322275, 7842664.0625, 7843096.843429667, 7843366.742018908, 7844199.98061978, 7844443.022152553, 7844648.445568807, 7844653.246816189, 7844919.1151527, 7844932.94099526, 7845853.125, 7849610.431447757, 7851443.343587337, 7851744.2729781, 7854093.172541113, 7854381.25, 7855142.1875, 7857159.8638335895, 7857443.904752672, 7857463.673404709, 7857584.375, 7857608.699265342, 7857718.75, 7858745.044473769, 7859262.0413826145, 7859442.1875, 7859743.409879632, 7859889.052760501, 7860424.364129415, 7860545.3125, 7860581.25, 7860908.391629855, 7862594.669750915, 7864007.706624732, 7865262.369529824, 7865915.259682505, 7865918.75, 7867307.771761639, 7868026.275122317, 7868409.375, 7868675.0, 7869150.160277416, 7869575.688119407, 7870197.407986361, 7870341.794239932, 7870744.472047684, 7870826.5625, 7870996.9951878935, 7871140.625, 7873428.5766254, 7873996.875, 7874665.812288318, 7878313.652466933, 7878412.5, 7879685.091378959, 7880216.9100931985, 7880474.526443877, 7880487.015000356, 7880781.042963944, 7881120.5047454415, 7881156.25, 7881196.962818798, 7881293.75, 7881317.753922591, 7881424.826063413, 7883035.9375, 7883610.075251968, 7883985.672426877, 7884808.779682298, 7884860.20064701, 7887104.6875, 7891720.15369283, 7893953.222895977, 7894396.875, 7898236.5615820475, 7899914.0625, 7899927.657960679, 7900000.0, 7900189.0625, 7900204.625950603, 7902723.118999304, 7903190.459967226, 7904079.292669916, 7906309.12946003, 7906939.0625, 7908051.5625, 7908307.8125, 7908842.429829726, 7910686.49106364, 7911090.472000754, 7911754.2981004, 7914440.146455521, 7914480.53514975, 7915390.50853573, 7917197.742866437, 7917942.1875, 7918780.6686708005, 7919062.318568906, 7919085.210074101, 7919445.3125, 7920373.528266241, 7920921.574234779, 7921409.375, 7921982.8125, 7922021.467968124, 7922442.044113257, 7922475.0, 7922524.6072338885, 7922607.206939692, 7922716.44312355, 7924410.9375, 7925028.83517502, 7929367.243331088, 7929456.25, 7930043.541379302, 7930438.978112579, 7932865.625, 7941356.25, 7942881.58343121, 7942917.725325425, 7943316.60579295, 7943526.295729485, 7944047.192635151, 7948854.8174951635, 7953088.648595191, 7953111.309490186, 7953178.962821577, 7956981.324919483, 7958238.963591081, 7959707.8125, 7961724.12120127, 7961993.75, 7962293.558657424, 7962408.859729077, 7962517.736538735, 7962707.5630378015, 7962770.614925261, 7962964.0625, 7962973.018520964, 7963534.375, 7963610.080064553, 7964006.25, 7964202.639150495, 7964252.610724688, 7964684.375, 7964937.5, 7965007.732337132, 7965181.270109172, 7965336.178576881, 7965821.875, 7966258.793500578, 7966503.050983156, 7967097.255477224, 7967511.669629491, 7968851.10868925, 7968937.5, 7969946.875, 7972524.088883727, 7974678.445885647, 7974840.625, 7975277.457322367, 7975537.987532738, 7980084.012952068, 7981213.026739718, 7981838.687298311, 7982115.788365329, 7983356.25, 7992298.4375, 7993670.305163591, 7995898.823201098, 7996051.927344923, 7996128.757209313, 7999689.0625, 7999782.740246433, 8000798.698879519, 8001262.339659764, 8002311.576089272, 8002550.2298256755, 8003638.175884438, 8004052.809932645, 8007676.331600067, 8008337.169487404, 8009449.462846676, 8010148.658699744, 8010296.875, 8010333.816554132, 8011700.0, 8011701.184663305, 8015967.469662205, 8016385.07656496, 8028363.432861938, 8034517.931363523, 8042674.1724681435, 8043521.875, 8049160.9375, 8051777.928079428, 8061014.001948566, 8061022.691482609, 8064328.078048279, 8067310.1650438, 8068342.999895963, 8068659.840632029, 8070910.040042293, 8072232.757904167, 8073875.942872845, 8074776.5625, 8076416.665622235, 8076435.670792178, 8076998.42492009, 8080257.8125, 8081003.193388877, 8081228.714740741, 8088286.694354282, 8100462.018871947, 8109208.590876436, 8109576.087736476, 8110175.355783999, 8112184.265688524, 8114915.468011018, 8115398.4375, 8115439.921383355, 8116070.245998076, 8122585.879223869, 8123236.921394047, 8123779.03158774, 8123914.0625, 8124665.625, 8124830.943694948, 8125426.432219525, 8125579.056034338, 8125914.7843963485, 8126166.605566471, 8126338.9978764355, 8126817.1875, 8127069.994396315, 8127085.881169504, 8127620.339536136, 8129598.4375, 8131433.779267884, 8131701.5625, 8131796.875, 8132045.098554228, 8132227.5697002895, 8133801.302942126, 8133806.405627244, 8136281.345787958, 8136375.0, 8140790.463739194, 8141428.705349855, 8142287.955354687, 8143440.478530211, 8143648.4375, 8143712.751015693, 8143954.6875, 8144135.831444427, 8144599.133604236, 8144635.762662754, 8145168.427551766, 8146557.435635371, 8146741.589492839, 8147237.5, 8147326.553277724, 8147333.808509668, 8147809.7224010145, 8148017.1875, 8148252.319267964, 8148856.25, 8148978.125, 8149240.63022876, 8150419.978899794, 8150668.75, 8152462.245807455, 8157066.383306039, 8163427.733673163, 8163988.244397052, 8166167.1875, 8169238.444926846, 8170102.877259086, 8174751.721294058, 8174785.9375, 8175030.297438156, 8176510.252877623, 8177083.040736131, 8177387.297713507, 8178406.25, 8179818.529137963, 8180206.060906402, 8180695.800060048, 8182014.948727978, 8182060.773893223, 8183487.7791032605, 8183682.83951754, 8183889.944107139, 8183990.625, 8184210.672033768, 8184583.073895422, 8186282.799979076, 8186376.8304443555, 8186818.472219125, 8188248.2650771625, 8191799.335970684, 8192057.8125, 8192204.6875, 8192443.112778552, 8194054.72449445, 8195970.180619855, 8196562.093401265, 8197465.343869571, 8197565.625, 8199561.220224846, 8200387.5, 8200751.550456178, 8200944.750365647, 8201212.376079756, 8201282.8125, 8201557.103546399, 8201582.8125, 8202195.1977677215, 8202373.460051728, 8202419.138146853, 8203328.834901405, 8205227.289788408, 8210681.068801837, 8211842.137981094, 8214101.865422391, 8217142.1875, 8217160.9375, 8221463.82499576, 8223576.777470498, 8224708.072310672, 8228545.753547299, 8228575.0, 8228580.677457766, 8229282.19605139, 8230724.51661939, 8231392.882386716, 8243804.746596868, 8247766.598811485, 8249975.97483501, 8251215.625, 8252120.246625596, 8258850.970260356, 8260727.97183933, 8262323.921162528, 8262424.569913185, 8264008.635824461, 8264189.0625, 8267249.072493073, 8267427.445786306, 8267523.4375, 8267594.2200411325, 8267731.479580615, 8268148.168699496, 8268993.281119999, 8269135.730139813, 8269940.656013417, 8270101.185745742, 8270309.307540281, 8271643.75, 8272322.093446932, 8273136.99658773, 8273945.181933791, 8274105.851903739, 8274107.4594319165, 8274151.70800891, 8274169.866905248, 8274202.4483004445, 8274206.25, 8274239.0625, 8274545.3125, 8274558.778693265, 8274602.939754136, 8274802.778517422, 8274806.25, 8274813.138505123, 8275093.75, 8275126.182548149, 8275239.53265065, 8275466.390082606, 8276077.765406566, 8276414.909528343, 8276450.301448284, 8277161.371129749, 8281022.292060852, 8281067.1875, 8281265.581751547, 8281414.546753165, 8281460.9375, 8281631.456839695, 8282035.405793069, 8282129.858169701, 8282551.783103007, 8282608.656987463, 8282637.866959218, 8283071.85706179, 8283087.502420713, 8283337.385902642, 8283353.125, 8283443.75, 8284057.148136659, 8284300.055180559, 8284334.217431363, 8284465.454245529, 8284645.3125, 8285058.430875236, 8285151.303167888, 8285801.787041288, 8285858.7337479675, 8285889.1462491695, 8286135.788029457, 8286464.0625, 8286555.657678822, 8286765.708642709, 8287729.0474302685, 8288284.375, 8288447.462611164, 8288705.409829554, 8288931.25, 8289053.104599495, 8289401.017285682, 8289751.857448482, 8290006.25, 8290318.008490054, 8291204.171996414, 8291996.406320407, 8292331.983802344, 8292887.5, 8293259.945302191, 8293495.3125, 8294965.136128356, 8294986.128105324, 8295545.993408885, 8295554.9086910775, 8295659.375, 8295698.053459714, 8295760.9375, 8295781.035969385, 8295840.697503855, 8295878.799096254, 8295947.3450411325, 8295995.3125, 8296030.702490856, 8296032.8125, 8296373.458232743, 8296418.75, 8296445.104353511, 8296451.121559301, 8296458.742267781, 8296460.0337035, 8296465.960875012, 8296470.3125, 8296471.5486261025, 8296504.697978108, 8296518.549605922, 8296533.641384973, 8296620.3125, 8296757.51522201, 8296765.71944627, 8296904.109415566, 8296912.351888594, 8296923.4375, 8297006.217630918, 8297344.122108821, 8297437.745918368, 8297788.390287551, 8297884.474057686, 8298137.5, 8298178.98750545, 8298273.842259876, 8298384.244774054, 8298430.48121917, 8298487.5, 8298606.25, 8298691.791646547, 8298948.18485333, 8299599.977326579, 8299942.1875, 8300047.925268678, 8300303.452649695, 8300320.9986761, 8300394.271639735, 8300446.875, 8300510.9375, 8301826.049672713, 8302377.771709981, 8302550.469766325, 8302615.625, 8302735.920923883, 8302910.608499575, 8302937.769042428, 8302959.178933027, 8302961.86283525, 8303110.603353342, 8303112.888846431, 8303333.492869568, 8303340.57064918, 8303355.607121731, 8303424.371604248, 8303455.580606279, 8303612.5, 8304082.765537306, 8304278.7656477075, 8304498.446178479, 8304634.975382501, 8304716.0962901795, 8305032.874439637, 8305685.316587601, 8306392.1303763995, 8306613.376822771, 8306753.125, 8306771.089568605, 8307084.375, 8307291.786831323, 8307355.489533683, 8307440.409051156, 8307628.661314792, 8307642.444399804, 8307729.165400572, 8307739.7382078115, 8308209.9823963875, 8308231.25, 8308782.434822895, 8308791.896045289, 8309234.809719139, 8309243.370298941, 8309400.833104334, 8309413.316483415, 8309726.5625, 8309905.497886675, 8309970.3125, 8309995.3125, 8310251.37828755, 8310540.483249522, 8310621.875, 8310935.610321204, 8311265.573457168, 8311336.561591501, 8311470.003444086, 8311551.414481171, 8311593.585802018, 8311663.793982108, 8312855.075314892, 8315219.494412438, 8315339.631848118, 8315539.057556764, 8315660.77791546, 8315839.04555368, 8315849.948921128, 8315868.280286933, 8315907.225541967, 8315934.375, 8316253.718876995, 8316301.3006906165, 8316417.1875, 8316426.14065503, 8316471.875, 8316747.787760349, 8316911.3945991825, 8317292.046033226, 8317322.840631609, 8317335.267652095, 8317560.9375, 8317651.370172761, 8318475.6419572085, 8318533.13356206, 8318625.622425758, 8320303.884722594, 8321102.747389616, 8321304.6875, 8321336.272796768, 8321459.514176866, 8321461.261618525, 8321604.260550296, 8321833.575265272, 8322185.289271814, 8322320.252236833, 8323346.832191217, 8323410.241952232, 8323542.237872797, 8323631.13280838, 8323637.603557936, 8323716.689938189, 8323812.5, 8323917.1875, 8323951.5625, 8323982.208381175, 8324177.138776636, 8324459.711934164, 8324559.375, 8324838.349382384, 8324882.3352854885, 8324987.743681914, 8325014.0625, 8325609.613922578, 8325664.547193848, 8326020.771395521, 8326204.554526041, 8326829.956564432, 8327403.142301755, 8327441.43033572, 8327515.197542515, 8327712.5, 8328499.395778196, 8328961.35473649, 8329416.0968270125, 8329441.727242311, 8331129.140262666, 8331306.237252289, 8331876.356035341, 8332449.4741346445, 8332458.929148918, 8332550.0, 8332625.291928154, 8332658.863144531, 8333314.245099875, 8333506.091689296, 8334388.539575434, 8334416.852818111, 8334422.685372202, 8335135.396596884, 8335214.974912117, 8336048.4375, 8336220.3125, 8336413.133641008, 8337256.885752569, 8337407.262950807, 8337750.893068144, 8338056.664310298, 8338975.329071001, 8339052.754810781, 8339055.3348536175, 8339084.765184112, 8339222.832319112, 8339767.669257657, 8339816.9590979805, 8339905.028751726, 8339943.75, 8339983.615621915, 8339999.215812261, 8340233.725473554, 8340271.597592816, 8340281.818179989, 8340516.450586454, 8340537.002331666, 8340792.053781186, 8340843.481233177, 8340982.8808030365, 8341276.536815132, 8341293.75, 8341528.849410382, 8341681.25, 8341732.579892239, 8341743.647847737, 8341998.266116894, 8342110.945537833, 8342133.689615883, 8342317.1875, 8342318.646462312, 8342481.298363616, 8342831.25, 8342946.540960815, 8342974.073651189, 8343058.912487226, 8343060.8998210365, 8343774.19566661, 8343933.701788712, 8344457.321852622, ...], [5.19125471453537, 22.964738630167563, 159.11771945556103, 87.6645431276439, 5.528820890400148, 11.197613569715017, 79.5393068607162, 65.05640939446015, 21.509521982125342, 63.01035569398655, 42.107314618319194, 93.19581052055156, 9.232747703135216, 12.383974129542265, 74.58645279419767, 7.489763438952972, 75.66478909350734, 44.320418200034, 30.345684524645293, 19.13492085593237, 27.156254095647487, 20.951741408524388, 11.230330263026879, 10.607799094294494, 27.82526499552145, 73.96954237295404, 14.285451593588162, 32.70113680998334, 40.960038683662034, 58.15703372269915, 16.482988916101924, 10.31274657166037, 25.352317687637225, 11.473102924247344, 11.71492537887136, 5.3124756793817385, 50.26608446888949, 16.375381222405363, 9.091514360962233, 31.53405549415309, 68.66788393841219, 28.08944300118606, 46.7746813841934, 20.855816473977768, 13.977980373772846, 63.2001672948994, 40.39031449217875, 24.692774105696113, 20.653159532891145, 17.170727523594703, 21.845272564452337, 80.69639805322615, 60.27875836775794, 9.281096829165014, 14.659711479541455, 63.87055994314739, 68.50822197613795, 18.297728975430147, 54.76621631932984, 11.61104452636033, 8.699699051671363, 41.455146892638794, 10.286616177529812, 5.4176526360734, 72.53075639425168, 30.60765078295111, 6.625296036028798, 17.683737212296396, 67.60728894010097, 14.276939458893805, 14.228546630026429, 78.76222691930548, 45.46807950114115, 5.52545313031181, 22.395647444269944, 29.023324212009303, 12.998421635536108, 16.388018681744068, 26.93198200493358, 16.986203609112486, 59.546126631845276, 24.24833457207655, 7.042472096366939, 5.394322577288239, 19.70772767481463, 41.965124309809156, 48.0478140277608, 40.57185844096221, 44.05472481232477, 37.666170323367155, 29.242928684588044, 15.196373793809279, 5.375073441416132, 13.217060875883465, 8.736961683952918, 47.68974086858668, 8.745255414309709, 87.14849751297535, 46.28370274676336, 11.260978514484966, 8.155177387371394, 15.366558284126665, 53.254671375586014, 94.5340669774461, 46.15791351248519, 69.94713509056866, 24.52400759603841, 16.63738399446265, 11.947834464771752, 14.163267604725123, 44.02148547979403, 34.56770646967425, 69.8322373561647, 24.47067773293891, 59.127487800170684, 41.23573507358596, 7.517291199317673, 10.829109989144952, 6.668027370204549, 78.80102274324285, 7.292447770031705, 80.5705525257951, 50.87358320763332, 17.613330244847166, 7.577774667269743, 57.58931001928914, 5.543424442838166, 12.606038515362052, 23.012004000992253, 8.072785397226472, 11.812654914945727, 5.074257523827431, 5.482516906815159, 14.349517638952761, 69.50699315883638, 6.534195228397348, 59.364120510858946, 70.77197381856514, 5.872217526594279, 17.62774153704868, 17.662098788878712, 96.27695973663326, 5.18802415617694, 63.36806137881416, 7.454485015434715, 47.61981781462906, 61.00858165505123, 60.739917926148394, 55.11074600150348, 12.053114730416459, 8.652427125070336, 10.687283648451603, 78.18771186175157, 59.522973894678714, 102.5970863795347, 58.737250808657855, 29.077063197950697, 64.88989557652523, 50.70627308471561, 21.935027813865574, 23.951764546536232, 29.99050331521766, 28.521005416269837, 90.52354805424989, 27.34234001734071, 27.401873221642386, 26.012984002879556, 12.248775755297633, 6.092266466616785, 11.768988010188666, 5.747720789203841, 12.97891359642428, 14.438112531488304, 76.53069165163453, 6.672896121431694, 80.01265449665436, 44.70869475801815, 15.668807075810658, 43.128935928933814, 63.179499475342695, 51.25430997995163, 33.15935714216828, 62.99312583185063, 21.12976944850427, 12.330570161341873, 24.292602287902206, 64.54757060967363, 17.66955237860498, 47.94108271430897, 12.174169481971235, 112.0663716300768, 12.105453290655198, 56.11881241352734, 6.980047287565916, 32.43795166870182, 23.033625384510824, 13.124645983346976, 80.78692817747975, 92.510815587795, 15.260096124566813, 11.070003990395925, 49.336317391241955, 15.041098360863613, 14.67347446091196, 25.297619616311863, 51.06210000941536, 31.114974784630743, 23.827479931030307, 8.024775041328528, 13.184997199048048, 18.05103322701724, 53.17581238855993, 19.27278514472247, 20.760762625347965, 26.355388700694004, 64.64532544464228, 9.95914164628331, 71.0638907052414, 43.8366586704946, 22.62643420586188, 124.29611473657158, 62.74024845628825, 9.874748935910082, 12.978566239647582, 70.97493344336814, 47.77830617681798, 5.0696338420497336, 77.55731422742079, 40.878480060841014, 51.17267809673058, 7.5310101340319315, 169.19157574350265, 6.093414041799043, 11.533970331350007, 59.49275662799687, 38.915330186742565, 57.12912431744198, 46.293516467643464, 19.047910579927997, 10.095064687449826, 22.67905344681993, 53.26471698004421, 55.82556561987859, 5.80186256390755, 95.93605678418425, 58.08193398595616, 8.262401357002437, 114.22387949638576, 20.673324281616704, 33.875929639174956, 60.41817077670167, 12.469546192099422, 37.46725845851862, 30.889058072428973, 37.77667236793927, 87.16223998137582, 66.02999753832486, 20.942008372290676, 6.5056148454207365, 14.137425410269707, 92.51315846996204, 53.21064612909286, 83.22013529165167, 39.45503257345343, 24.160010860285098, 91.51425836479453, 15.075226277632181, 5.27719369142764, 43.98853532250336, 52.676570441846465, 74.28564912843687, 29.85740993634564, 6.16457191966069, 19.034100289259225, 81.1281439413865, 5.821217315043843, 65.91736008256981, 159.6686923691795, 68.258053759066, 40.23219444684365, 59.11958773975787, 66.27841516695786, 8.687579259212677, 115.18807731006785, 42.37405980042147, 60.58627172587035, 102.69121989610383, 73.28935634877769, 134.58628868102392, 7.21008822643608, 11.111951817298841, 107.85119906109655, 24.412119010381826, 11.948134576779513, 53.97035120372978, 64.98841378540396, 15.129706259824035, 69.5689186116669, 30.197718515031042, 12.205094214318839, 10.30337556269994, 19.759681265060205, 24.22806720815287, 35.73106731394332, 6.4865483651125775, 53.41658431528502, 5.213660700140144, 42.5664055861734, 46.46701316726724, 35.771349358277924, 23.17468397099581, 24.715697863962895, 151.62433683841894, 47.097791313822846, 40.63727505766444, 16.428943639864816, 66.02075152913174, 72.19103676725909, 43.62466390827734, 9.63207250359656, 44.51802083464759, 13.962352339411629, 21.212165144254637, 79.6397193838976, 33.254822222382515, 77.54873898551953, 26.966589066734844, 47.25945673170329, 30.343683995094523, 22.62912210873533, 68.84810567520651, 30.948124271789364, 47.804198666174656, 29.768944093749393, 71.59496657703505, 27.91502249722518, 10.496145293929633, 11.097548792182842, 19.486086933929172, 11.886937398883687, 42.725113748394406, 24.371347555725052, 24.560040907123195, 66.45716713988793, 21.43293760042041, 47.11408032292406, 17.396252173488783, 27.932066443707335, 59.44406703626069, 29.71473021732004, 29.762955273409318, 9.465775373308611, 9.022732068005935, 32.04270909257127, 70.04514896749573, 44.100258053986764, 6.445880844063887, 13.44083041784204, 56.810093047236705, 10.634671928576996, 8.281433622792775, 8.84598873606478, 60.848187619826106, 29.90811197014765, 12.172136188870315, 8.841253051506706, 8.231371186900642, 68.4994461526641, 41.221100172882025, 48.67456532574898, 49.558150936033925, 23.913324494923568, 50.98829896930547, 57.288226649422086, 7.164230870491719, 12.405680476333222, 17.454359653949442, 72.25710204696338, 111.52523180633959, 53.092069666932744, 73.3120095466591, 101.37540840438874, 65.28871194875978, 54.44822540323659, 8.388165585358685, 57.91123689554106, 76.11770153739269, 66.19572308909642, 73.42059031374919, 204.15330481848312, 35.86306416596124, 25.015592263004155, 9.499425541144607, 89.0772486275087, 15.287142587265606, 59.58110762636439, 5.261279756837674, 15.005749797418261, 48.23783537136304, 10.003131386845974, 14.01905559935086, 13.072360126727084, 19.41636288126537, 68.65793301882033, 10.888233823642745, 74.12326708622703, 58.70233593459408, 18.008032688090214, 70.67390566679, 10.468548482329625, 56.773573178574416, 67.50045792655078, 14.711989195179106, 64.8171542215909, 25.64277600112771, 126.94941394730915, 10.76444109072801, 41.83020649384205, 105.62943684199048, 66.81829184376008, 15.95327605086631, 17.57546983183334, 22.742459493015886, 22.672224187528187, 83.60535474093281, 14.598246414155792, 40.49066828068315, 6.383448731876365, 30.324735254034916, 43.05960944447996, 25.393445863774115, 83.50704883310229, 63.580863255789474, 6.501414390385614, 45.6033503978272, 49.18140527268268, 74.52478942715868, 5.78446497867324, 25.98108023848576, 51.91359093893595, 5.383668268984932, 20.500973205624025, 19.35860380465872, 91.87924809308495, 6.914083470054986, 11.216110356730415, 34.74121501871029, 74.68102554596305, 19.843137658420083, 64.65593575280185, 38.08920035706157, 7.728456527228264, 67.5165531492312, 42.52142423976285, 45.46568062477611, 83.22562165317478, 15.461273942797645, 7.460094835680424, 40.77715484798371, 7.360600899467596, 15.234969219024855, 44.09004496284594, 76.87503301347603, 56.365818027672404, 54.94433534291134, 80.31086054239836, 13.28441625080349, 8.59995127269339, 14.484245768229133, 5.8367012358146, 56.86544386644336, 5.591278226424683, 94.11057645402975, 50.0493811294285, 35.76521855421756, 6.038991536991174, 5.776883625869851, 50.70964565960254, 34.89154390307393, 70.26985738356512, 11.159284882424544, 15.947549002919716, 64.55997925836088, 30.400577589644087, 40.7266602000811, 46.88676199811181, 31.212499896981257, 63.46273862077088, 51.90994464362912, 33.249294621836206, 19.46762523056771, 44.010015247144494, 83.5683048335337, 5.5781444790372605, 9.780721615255413, 32.90829315984237, 8.586258124715082, 10.587860788108138, 49.75318353467803, 46.241858974752766, 98.82817649830545, 28.380631519930663, 16.648208661621773, 59.10674767065184, 7.849106241083259, 53.721635881201905, 8.248734473156103, 9.56264593768236, 25.71521450197672, 18.100549990678175, 22.186761283894896, 18.344242408933074, 13.86277274201917, 24.675439926926536, 69.74519517342192, 58.226892056358736, 11.492002689947867, 46.33077390088113, 31.951787651192735, 38.23559401031181, 22.804923324268753, 8.441646907247986, 5.867780121873603, 40.67225261578689, 10.050993313242436, 6.60882515220014, 29.25210210307518, 88.48416054709034, 25.1632349418084, 36.874842009428534, 19.346064705165954, 58.87014503936439, 6.372456143503349, 6.937309177421628, 17.07298336297552, 25.872727294524452, 14.737420311094924, 47.37280392727138, 81.56572805545088, 33.19306590594496, 6.060796244010602, 5.290698831105317, 50.07353577303613, 15.208744229160192, 5.745347591683332, 18.507966323718705, 8.955220542688878, 5.873909349951521, 38.924347916867134, 34.645776428306135, 15.422323900640457, 5.095378879596802, 84.48954689954014, 16.535029976866966, 12.607912508928507, 36.023236708611336, 18.144531615858554, 79.01099566276375, 54.09146211304752, 44.60684642036891, 23.67053607922994, 78.03263660794667, 62.492502528170036, 171.90738013495587, 34.209178397584644, 47.86666745869432, 44.91843707429491, 17.180080308581264, 14.731064502313462, 6.270620241540624, 37.89258519905269, 5.188505576503777, 39.046726954215295, 39.58988011956885, 76.18081575038057, 67.63841193373837, 75.5543017263463, 15.569831619455716, 15.31962551616548, 65.08752073112079, 38.85799260764361, 12.174675581044, 26.51113592467896, 25.932240912805057, 61.58985830687134, 5.8327897090380345, 42.6335774843969, 73.19910556199858, 18.480004012861247, 5.695720520969217, 7.490633532194129, 13.676429114134347, 45.95055103418167, 71.09115779695362, 44.00587499959542, 6.401810148804975, 30.325096161734095, 58.81945757543826, 5.57097181528768, 47.362547343810796, 67.52074261125148, 25.92444990081527, 13.806112811272603, 39.95013865076292, 24.354051519151565, 18.914651623439244, 6.687817513228065, 88.46661327546602, 49.64269985317077, 27.401316134562805, 60.936855987853924, 8.372374137149219, 68.19402786534849, 12.236770749972916, 30.81973968671423, 26.04196348220226, 25.084653954527834, 99.73256781194337, 9.151382381222891, 25.77703475516118, 56.43119063670275, 6.185377018072011, 21.087296277978293, 16.12393010847622, 15.045497376844887, 62.052533075173166, 36.80100246358647, 40.730428028856, 156.1779415791383, 41.343325682012235, 16.071617710270395, 8.144948867052284, 7.076852748465907, 12.89818949312814, 66.89675827564714, 36.50481963251289, 32.57207900497444, 98.79539390284077, 185.83018415274375, 22.478332531140392, 13.968304120314192, 67.45830949884824, 16.141008312784667, 86.94631649329064, 6.2656779156150275, 20.894888603264427, 23.695071741557307, 84.67672258005935, 7.944168278802544, 42.032314998677286, 31.617261642091194, 15.02816843637349, 8.503086000703526, 18.574162751912315, 6.363677445318906, 5.69532230689901, 31.64814834911808, 43.47866536897324, 83.65893778963748, 38.031717861301615, 10.775713423936267, 15.829482281388668, 34.176003171338344, 16.93924501855345, 43.40697919004201, 20.798739951643682, 49.095508915201115, 8.046493555344764, 6.601832223764364, 15.171647054093201, 5.376435998759641, 8.879458615717752, 126.96039448995332, 31.58289927873362, 261.11277731076325, 25.827003435737165, 29.55238595405527, 10.516004098356328, 19.398484882300423, 100.88315326794228, 82.36889125844361, 7.37475875939242, 68.51922498054194, 37.28892247437736, 15.895259311108775, 24.157624330333938, 32.5952531656281, 64.10633403262992, 15.814448498346096, 22.817444058156415, 27.257680064848667, 51.619689524979776, 15.845065764401568, 54.522404083558115, 14.466158543722448, 22.57366859630546, 8.10829561112773, 15.526726054688925, 56.74884735375781, 19.894651690385867, 53.00549169658891, 54.83414186657904, 47.719817976268594, 20.583332716912796, 11.556408046315703, 23.174610956549447, 65.28538057722396, 18.100009730152866, 28.720746201155418, 131.66892083740083, 39.7335355722973, 7.905563324807992, 23.018239004904338, 10.167496491796747, 29.573990299498938, 6.134384390248272, 63.047731729693226, 61.54979222698522, 7.58766999632498, 33.96112024731707, 46.14401412989163, 20.523329735201536, 20.368320707230804, 7.167050060822067, 7.180674596968928, 15.04293162352612, 5.212872831957552, 11.099783510998385, 14.950744082081636, 18.0169709030048, 49.23690754126215, 45.29205941292772, 12.897359763675427, 7.623318225290898, 35.45355586830481, 117.99707870322878, 56.5555594064947, 23.51758014097501, 10.745185520669093, 71.5321799217361, 55.69434405513665, 15.270628460419077, 10.400769924037775, 61.65409651703352, 10.312944238557568, 11.261011975136634, 70.02893451682903, 117.70109186841795, 12.189823894220709, 20.45002051978461, 31.829147799862483, 134.0203111280425, 8.909346863984705, 16.199018141782876, 61.69344372770625, 8.77433885335647, 21.33982536973362, 8.964238251429506, 55.965490735457635, 80.07601369412586, 95.66387172272641, 63.43818470370618, 8.043933812183212, 7.673662511817056, 12.389800475173626, 30.21146372023656, 132.5994552074672, 13.65526294561948, 51.58309105882687, 20.597027174945406, 99.91719740420629, 7.8667100169754605, 17.097269166728346, 87.06055956585111, 13.19778610704443, 64.75692976667, 77.99447341817512, 50.289978735724695, 10.817234014955517, 25.256702491031355, 32.938232329161906, 118.58404993789881, 16.397463114110746, 42.97040437829395, 23.41959786768803, 20.70383414794927, 44.96157699615233, 5.029394160818734, 48.91362339744727, 23.785573947708016, 82.13985226304035, 14.5981745861449, 8.20977633633337, 44.8830862149233, 27.59351373672489, 16.578778389079496, 8.421050088927066, 19.931548207556048, 16.023859299321987, 71.10167873688539, 28.03576128159723, 19.405559655355404, 26.192072207468332, 12.645634749989565, 80.58237059519361, 89.5343672282441, 10.56062784932818, 24.37506629288936, 32.534383278855245, 38.444185290310905, 21.371947877520398, 38.694871867335905, 18.03406570833071, 12.054309807168417, 41.60981678885368, 84.08730760303987, 13.29105186897211, 6.6949667068187155, 51.16697444692571, 163.9407777123308, 11.101895738728704, 84.78750824960498, 11.575996269063292, 14.243388676977887, 20.225873234695413, 29.74108030053314, 5.048158177010274, 22.46925888755961, 7.583697498708552, 10.252364378045144, 13.279682852578105, 8.823002354861899, 39.86158145403066, 9.292006761197982, 18.11377884067973, 5.533501883880612, 33.6157470428346, 9.764454401729422, 48.096398335925414, 20.366161527134928, 11.039577606582217, 90.95635993572851, 37.14815675396712, 10.787382293584908, 57.532590877548664, 22.544719200409176, 25.50709089679075, 25.30400236753095, 70.06722879336728, 11.554492266614941, 21.275443416191813, 26.47085771705236, 6.586716463436182, 46.204847184088344, 39.46303301858198, 57.07858741180508, 75.44631948523148, 28.495788562706863, 38.6253690823925, 87.98523234273324, 91.1860845804202, 26.110560117773133, 57.01146411653318, 75.31660406781756, 27.543414666356128, 7.552761113080801, 91.1606462167158, 9.069273050526329, 162.91913999810936, 18.008092573745056, 5.791461278664723, 10.903966122714452, 25.655626735142132, 31.688104243010258, 6.3174717462918535, 18.815265996213945, 27.06787125687663, 9.327226884621242, 25.726926219574374, 101.42607193382342, 27.553102937239515, 13.409767322396496, 32.63057262545144, 72.53261300309109, 5.992848129383731, 5.388558745347044, 66.52854886053126, 27.50144881018636, 42.917044999838566, 21.446611388681838, 239.7177874913904, 5.606265506815307, 6.972920687752661, 46.822357479096134, 85.70536334492388, 81.85136045248231, 6.592663392203958, 52.862600601189456, 17.997549030674293, 7.336586176817701, 13.840861922414094, 105.70160725518512, 11.695623664859593, 6.791613920726348, 9.621373391455622, 55.024821575233176, 62.492174384818185, 20.13177140790043, 14.716683916622786, 6.754990115263121, 5.663876665818495, 42.791046494712724, 50.5130350986905, 23.543331915537962, 8.943369551891186, 105.9276732489098, 51.213754334003895, 122.65448917314951, 20.513747877190987, 50.53114818575118, 11.69863019147115, 55.81599585213313, 87.78121926236199, 29.91216818284637, 80.74363649562986, 69.08677757112682, 7.691999818754418, 7.788483817829766, 17.036055968136168, 41.66147580696584, 8.434179717551338, 9.346075757950743, 48.92750471731357, 13.529213011630173, 41.007157318652354, 20.51283459020095, 58.07479152013084, 27.220555712360593, 71.49006752668654, 7.416617860308618, 28.275075963344285, 35.41001848146344, 133.59988715194203, 94.80551463128397, 68.43553489981288, 16.06168476026704, 88.24918115434826, 53.36062173159571, 96.96114495726474, 46.483996857638715, 30.386836917645187, 8.767263016249531, 6.986171190532348, 94.91959978149964, 137.21251569681135, 119.73040188920345, 5.489636639596662, 12.121887097834513, 17.62359759898469, 52.71819738473504, 6.132270254303872, 56.02280160131205, 203.04246223502793, 59.637517906440586, 11.797762830371687, 13.046924540767902, 209.14498900494337, 28.644412471615315, 24.587703982294673, 59.82450153385908, 18.65973564351082, 19.060183706620307, 19.350550011430528, 59.75817376319421, 48.369733818163496, 29.291539949703147, 5.778052423029037, 146.9449495326836, 62.2712799876428, 25.148991465158243, 58.183867999871325, 93.2410718550845, 15.0585793356639, 35.79013123522736, 14.123318567944125, 80.14908399133488, 38.82530199985706, 35.54308057985722, 35.110920660059236, 54.24393873255891, 26.63281767796061, 27.1893218100368, 81.68728633481479, 13.804778903708309, 30.61859755228328, 21.875387808494736, 35.51134449418642, 12.563270969774372, 74.44565294292975, 65.94910528500915, ...])
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)