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 = 44921
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);
([7312012.998592271, 7445140.625, 7465323.743179582, 7465549.470647769, 7467740.293780579, 7575521.658386326, 7629745.834774968, 7672572.81710555, 7673324.042807989, 7699850.919833255, 7700075.743144422, 7702155.817025485, 7702948.260178121, 7715217.1875, 7720725.693325069, 7721257.454840276, 7721617.1875, 7724250.132882075, 7728657.8125, 7732954.107536756, 7733867.379289827, 7741365.534241295, 7741790.940720803, 7742169.25761184, 7743159.29650521, 7749458.775852475, 7750993.088484641, 7754991.887499177, 7755202.470188746, 7755893.75, 7761834.375, 7768402.369886539, 7820004.237570602, 7824445.907053261, 7827676.438035132, 7831074.303439728, 7831491.052375249, 7831497.022018077, 7833226.5625, 7833299.845920152, 7833379.6875, 7833748.40559801, 7833750.0, 7835351.5625, 7835739.0625, 7835866.391960781, 7836731.585008243, 7836821.21745417, 7838879.6875, 7839850.09275142, 7841325.828186615, 7845477.1914500985, 7848137.5, 7854642.7573161395, 7862210.898661182, 7862363.087925738, 7864773.094894666, 7865146.880784746, 7865734.375, 7865789.186931559, 7866064.041130382, 7866134.207878083, 7866223.895833666, 7866496.875, 7866787.5, 7866793.4368427675, 7867185.9375, 7867322.323525201, 7867358.362001497, 7884230.469265752, 7887360.190291643, 7891014.0625, 7892315.625, 7892972.107646995, 7893271.71230785, 7898854.6875, 7899065.988769092, 7900597.576289206, 7900622.02121033, 7905168.458128006, 7906544.509442685, 7910799.309741073, 7910909.647298164, 7912925.080311297, 7912986.207146067, 7914004.823578151, 7916934.796448845, 7921943.363126325, 7922245.086343208, 7922248.988781194, 7924833.134162404, 7924903.125, 7925696.875, 7925773.447087803, 7927226.198342728, 7931535.9375, 7931609.375, 7932335.9375, 7932565.428412799, 7933087.159055216, 7933691.278209556, 7933793.624440741, 7934085.670487878, 7935499.912288099, 7935845.0509182345, 7939962.7425429, 7940023.3997781025, 7940165.973800792, 7943644.745592899, 7943647.6199126635, 7944560.112417911, 7944581.766298354, 7944633.163500547, 7945990.952041393, 7947351.5625, 7948012.922830107, 7949085.840224856, 7949160.468414692, 7949526.871733108, 7950126.827134254, 7950257.589194103, 7950538.796851276, 7950665.849935759, 7951299.163088975, 7951908.392385432, 7952057.490099805, 7952089.0625, 7952238.164413817, 7952515.494429776, 7952853.125, 7953703.942610241, 7953841.411483065, 7954238.7135928795, 7954423.4375, 7955282.729145032, 7955330.318994286, 7955795.150415823, 7956115.892311345, 7956225.0, 7956389.0625, 7956622.835783361, 7956681.717088416, 7956779.295632325, 7956951.993923121, 7956996.482515022, 7957181.25, 7957209.328450643, 7957538.029180181, 7957834.068604848, 7957887.094796565, 7960312.618143408, 7960330.669525751, 7960340.616442007, 7961950.472090334, 7962006.696071035, 7962539.0625, 7970040.792513103, 7970056.214716427, 7970406.559828742, 7976004.135542009, 7976850.407051961, 7977239.342513113, 7977475.508633997, 7979104.615341046, 7979358.950892391, 7981846.188868954, 7981920.610943601, 7982489.0625, 7983543.932439965, 7984629.704703925, 7984900.528044185, 7984953.125, 7985269.2544775, 7985381.25, 7986650.0, 7987187.600525424, 7987902.693245705, 7988199.151986279, 7989668.19495992, 7989852.841329341, 7989858.177886787, 7989891.198802067, 7990211.138845808, 7990544.034045527, 7991058.3858131105, 7991180.267522251, 7991214.0625, 7991437.626567145, 7991909.375, 7992054.985523039, 7992643.975370387, 7992732.8125, 7992860.199965422, 7992997.281538996, 7993066.534873418, 7993187.848349612, 7993190.625, 7993256.264652076, 7993517.166957644, 7993877.595060894, 7993979.588318582, 7993981.008588476, 7994015.501142719, 7994022.920725794, 7994872.5591198495, 7995286.816606958, 7995539.096805966, 7995727.032600222, 7995827.900221921, 7995892.1875, 7996100.516158617, 7996923.920918456, 7997322.382508098, 8000129.052276104, 8001844.347131206, 8002487.695743142, 8006680.429763589, 8007554.032794197, 8007787.5, 8008145.893488542, 8008310.042600497, 8008432.8125, 8008589.0625, 8008657.6727986885, 8009130.622954906, 8009342.854340081, 8010291.870232424, 8010521.354149757, 8012134.265837857, 8012508.584821993, 8013225.0, 8014821.529304135, 8015821.875, 8015833.977131611, 8016475.175415112, 8016698.125529351, 8017494.314889229, 8017806.25, 8019457.5725952275, 8019457.809661896, 8020088.649692791, 8020434.00988842, 8020473.4375, 8021251.5625, 8021600.55221531, 8021664.972918591, 8022964.470675261, 8023683.953392626, 8025392.1875, 8025440.625, 8026185.873080094, 8026200.733945283, 8027063.717848156, 8027567.991561873, 8028500.0, 8029192.1875, 8030603.875768265, 8033974.969418532, 8040368.839032595, 8041284.868293304, 8044752.449593028, 8044910.163723966, 8046451.38188921, 8050710.352918433, 8051577.0661886735, 8051918.75, 8053146.676196769, 8053224.223530077, 8057699.330509547, 8058695.281003172, 8058834.375, 8059223.4375, 8068792.1875, 8081588.467102545, 8083965.4024312105, 8087321.481755884, 8089865.986848724, 8093778.305882171, 8099640.625, 8099775.685722289, 8122964.0625, 8123256.965673195, 8124320.746794016, 8125826.480687124, 8129099.240396321, 8131608.145305281, 8132592.1875, 8135638.313650065, 8136387.456074065, 8142060.157721616, 8165681.065505197, 8167341.169119644, 8173712.194132855, 8176209.10658179, 8176688.844133434, 8176864.689930125, 8177146.777473056, 8177166.5844585905, 8177303.125, 8177541.672359994, 8177980.864210555, 8178847.087678202, 8179081.126483917, 8179494.521273284, 8179515.625, 8179517.064804885, 8179567.291420455, 8179613.3364065895, 8179814.0625, 8179829.8355969535, 8179951.700384046, 8179978.125, 8180176.3861748865, 8180193.75, 8180218.247039326, 8180802.811625765, 8180862.5, 8180865.361444677, 8180904.710321091, 8180995.3125, 8181018.685939579, 8181356.521750871, 8181409.968146698, 8181495.6035697125, 8181692.1875, 8181915.963308501, 8182015.77861857, 8182116.076760657, 8182497.941360674, 8182722.2836885, 8183440.100228797, 8183480.851893409, 8184145.14914399, 8184814.026852116, 8185748.733651904, 8192834.688595981, 8194129.272542183, 8199282.2880576635, 8204768.67534855, 8206525.843577115, 8207096.166387287, 8212172.628065154, 8213404.6875, 8217431.25, 8225042.921775125, 8228275.0, 8229382.484555302, 8229533.642358134, 8229962.5, 8230783.093014352, 8233879.931394361, 8235421.626942305, 8238769.407066347, 8240871.665756581, 8240899.981201548, 8241724.876792078, 8242119.03090372, 8244369.601510195, 8244676.5625, 8276045.203917272, 8283126.5625, 8283835.9375, 8285287.880641623, 8291957.550610567, 8293389.739172359, 8296987.621491091, 8300151.334897662, 8304638.707547107, 8305154.6875, 8306234.375, 8307624.99905973, 8310093.467306458, 8310151.5625, 8310184.375, 8311007.17647374, 8312866.194914637, 8313836.432466279, 8315824.905676327, 8316445.366182795, 8316929.4517262345, 8319814.0625, 8322343.542863556, 8329121.211239185, 8331247.679242769, 8335961.9800806595, 8340048.8602423575, 8354280.951769816, 8355216.6348470915, 8371988.644832183, 8379268.669583221, 8379373.026420946, 8379694.614983153, 8380498.301936873, 8380714.119723054, 8381574.685860981, 8381587.5, 8382567.1875, 8383012.5, 8383046.875, 8393141.916955382, 8394166.329123104, 8394667.429832468, 8396349.620889302, 8400611.855781216, 8403776.402530672, 8404349.974489022, 8406357.755817454, 8407468.75, 8407654.644561265, 8407895.19846777, 8408237.042838696, 8410253.588712085, 8412761.50503065, 8418646.793695765, 8418890.99630625, 8421354.70382561, 8427226.5625, 8432056.004260771, 8434731.598090122, 8434888.984933522, 8435131.522601217, 8435777.67549473, 8436026.5625, 8436063.803555591, 8437777.377727617, 8439048.9449528, 8441372.686436154, 8444937.438633911, 8448468.5826808, 8448775.473553132, 8450676.5625, 8451768.699920569, 8453036.194922669, 8454605.799970392, 8456845.579210132, 8461050.0, 8474358.367966138, 8480134.375, 8482544.511347046, 8482850.918176714, 8491413.549296297, 8492598.4375, 8495709.375, 8496084.294552928, 8498124.355704503, 8499550.817596426, 8501067.924146308, 8502830.930811869, 8503282.612975094, 8512659.558499362, 8519530.3376544, 8523076.965401458, 8531289.114115093, 8535990.226819282, 8537912.72329922, 8538381.25, 8539499.094372049, 8539526.5625, 8539656.25, 8539815.156056874, 8540499.399160549, 8541219.211895604, 8542132.252601257, 8542240.224850329, 8542257.873107234, 8542419.569069477, 8543573.967998873, 8544680.833371913, 8547063.944296459, 8556354.395613002, 8559474.284595503, 8561587.99015168, 8561600.772345712, 8563481.25, 8564139.496139448, 8566646.413656212, 8570762.337954702, 8575585.95271562, 8581486.162599932, 8586727.975170834, 8591497.74449077, 8591846.875, 8595892.1875, 8597340.94144265, 8597343.75, 8599382.245692244, 8601091.697409952, 8618943.75, 8623617.680877058, 8625790.763916723, 8635051.5625, 8647727.849584732, 8659140.780191105, 8663981.25, 8667680.569090711, 8667932.314384338, 8669295.3125, 8700824.29627596, 8701193.979034387, 8730131.25, 8730782.628923897, 8732896.891870938, 8734054.51811618, 8734548.17550693, 8735798.34884794, 8743582.511264997, 8749734.067532605, 8758620.18314535, 8759168.986219825, 8785870.091413118, 8792907.248843446, 8794965.829268403, 8812241.734003708, 8814731.25, 8829585.76789551, 8830235.824635273, 8832251.375656199, 8832689.97359217, 8833643.831558239, 8834741.56896497, 8841338.80496955, 8843616.147120314, 8844323.322471727, 8844330.704495616, 8846804.547288164, 8847165.913083239, 8848014.475353071, 8849125.0, 8849342.614591662, 8850487.076122822, 8857204.6875, 8857262.494735174, 8859603.560569778, 8870246.875, 8870414.546568226, 8874480.850386823, 8879252.80761438, 8884143.209845945, 8899893.072864937, 8900404.6875, 8902349.937047541, 8907224.415999193, 8931972.642079145, 8934274.445444264, 8947718.443708884, 8952792.834574658, 8953392.704107154, 8954242.1875, 8956859.230281591, 8961446.222915307, 8965323.532303002, 8968760.57596445, 8977432.500396807, 8984151.5625, 8984546.875, 8984585.9375, 8985978.704326686, 8986060.829258991, 8986265.625, 8986796.604656018, 8987212.5, 8987760.514560074, 8988491.034973923, 8989513.192333424, 8990046.875, 8990195.3125, 8991349.832622278, 8994269.802562285, 9012422.712836608, 9013174.475314315, 9017201.70721177, 9017655.737909384, 9017896.875, 9019117.101725169, 9020045.325446658, 9020151.253720887, 9022386.683333648, 9024830.927741814, 9025071.875, 9025182.502618194, 9030037.82902246, 9030526.544370288, 9033465.010873092, 9035567.1875, 9035670.952190857, 9036275.0, 9039691.570174225, 9040396.875, 9042406.039579315, 9046257.287884636, 9050562.710049924, 9050870.269821886, 9053069.643190978, 9054021.333366174, 9056465.024710761, 9060718.75, 9062186.72875818, 9065982.672967551, 9066003.015189199, 9066639.14951001, 9067115.785913855, 9067833.867893917, 9067929.850216009, 9068745.3125, 9069016.181973549, 9069600.0, 9074661.602356188, 9075728.213922804, 9085590.417609937, 9090599.754653268, 9092103.989272872, 9102964.42791899, 9106515.073094208, 9106723.810956696, 9106901.5625, 9107601.869178109, 9109638.797877181, 9109693.410815189, 9109757.76710946, 9110293.75, 9110368.75, 9111905.75917211, 9113554.074775321, 9114054.65673679, 9115208.170433184, 9118906.25, 9119632.484826094, 9119911.526102742, 9121122.07188535, 9121494.535387188, 9122774.57615324, 9123628.044209918, 9123763.757696861, 9123790.247399323, 9123821.77664131, 9124050.0, 9126082.590774892, 9130693.142308617, 9131392.112903852, 9135411.542598436, 9141597.004587684, 9143045.001294846, 9145021.875, 9148400.423112955, 9149021.15061984, 9150202.13672779, 9150409.869070861, 9150523.4375, 9151667.165537806, 9151668.44028781, 9152150.755069556, 9152274.827144044, 9152686.665420013, 9152848.4375, 9153124.564058904, 9153291.7326123, 9153431.208523327, 9153483.988236092, 9153501.5625, 9153580.034162944, 9153944.046446327, 9154531.439535782, 9154999.687286478, 9155026.195467696, 9155118.032916687, 9155415.564585201, 9155952.381430933, 9156041.331487408, 9159035.9375, 9159664.0625, 9160776.5625, 9161740.173605883, 9161834.843825024, 9162438.594683738, 9162984.352874298, 9164023.4375, 9164586.694620783, 9164886.302024521, 9175382.8125, 9175779.467324266, 9176922.937944783, 9177807.13101722, 9178484.975250013, 9181863.109516686, 9193954.898881968, 9200229.218267301, 9206317.204740528, 9206335.199191155, 9207510.893369919, 9207967.655443033, 9212244.44421752, 9212381.25, 9212800.067414416, 9213070.961674819, 9216609.301368613, 9219616.870923677, 9220228.125, 9221012.692773847, 9223717.301242026, 9228748.404570488, 9229830.731450984, 9233402.984013304, 9234653.668732129, 9234762.651669027, 9235738.932851499, 9237585.733343067, 9238284.18902058, 9241467.86211565, 9243312.599331211, 9245034.375, 9247376.19188565, 9253685.9375, 9256212.172290368, 9256260.547155233, 9261410.74230108, 9264394.854511429, 9267495.03509269, 9267591.320136659, 9268135.843802523, 9269479.6875, 9269847.6791903, 9273511.230801182, 9274901.263172349, 9277627.001895824, 9278310.92415375, 9281046.58682595, 9282958.44634023, 9284040.14604521, 9285292.286002418, 9287554.094771158, 9287939.563534621, 9290264.0625, 9293520.3125, 9294422.426670484, 9296495.58040614, 9307075.847670477, 9307727.687746676, 9308028.981690798, 9309482.20158215, 9309668.75, 9309949.586652324, 9310493.88914841, 9311764.37811065, 9313626.52785946, 9314979.380594742, 9320702.664600687, 9322284.060479658, 9323072.744275631, 9323320.72037773, 9331890.044631599, 9332639.005310612, 9340694.593863413, 9350271.875, 9362881.541511381, 9364048.4375, 9365742.1875, 9366695.238314386, 9367424.110658651, 9367982.8125, 9369654.375669206, 9370698.417023608, 9370888.920684757, 9374804.904583441, 9374894.839526277, 9380309.494437227, 9385778.02661083, 9401336.096236963, 9407172.693814058, 9408816.255710492, 9408934.068842247, 9408979.157005271, 9409572.627369007, 9409890.025017088, 9410087.251443928, 9410557.560721045, 9411086.359093444, 9411137.5, 9411140.11208804, 9411687.945085755, 9412526.5625, 9415066.91860311, 9416425.419328477, 9416902.894350804, 9423599.314953843, 9423614.011884611, 9424539.0625, 9433993.316672822, 9437707.979758529, 9437769.515770368, 9439198.4375, 9441701.5625, 9443537.655704029, 9446973.760018634, 9448792.1875, 9448849.240614597, 9459022.475363508, 9459289.884901468, 9459592.490368878, 9462448.024466278, 9464188.092003092, 9466147.076263933, 9469937.491879495, 9471329.276550299, 9472902.6186872, 9481228.74497947, 9481230.364913091, 9481385.9375, 9482030.17293802, 9485328.653024944, 9494556.180391073, 9499201.014765043, 9500983.85432005, 9502150.85261848, 9508705.196862247, 9527727.906882148, 9529432.8125, 9530338.127032613, 9533033.988425571, 9539045.481642988, 9555589.0625, 9571914.835463017, 9572540.319942616, 9573595.804506995, 9574215.630572073, 9574715.80189044, 9575069.602509683, 9577247.265580745, 9579565.358768858, 9583931.926673837, 9585418.253592476, 9586283.528698163, 9596092.116327941, 9596995.3125, 9601452.20952114, 9601872.44763844, 9602964.792690888, 9602971.875, 9603023.4375, 9605984.462410515, 9607015.498902708, 9610393.682772212, 9611062.2079599, 9617940.625, 9618917.1875, 9620346.875, 9620387.885172809, 9620431.98966834, 9620691.186932424, 9621895.3125, 9627513.738479378, 9644650.990375623, 9654108.676072465, 9655151.5625, 9655210.41293928, 9656896.973353546, 9660238.582242692, 9669519.509977045, 9670296.875, 9673639.136078881, 9673767.1875, 9675339.380503314, 9685315.030788302, 9685935.721789151, 9686418.619750662, 9713625.336903062, 9714503.83995087, 9717075.298106303, 9717138.821606493, 9720917.1875, 9723232.598996086, 9736232.639277328, 9737365.08454209, 9741181.141395723, 9744235.041717127, 9748417.064844081, 9749143.75, 9751929.302091159, 9763267.1875, 9763325.552336434, 9763772.578369703, 9767337.941302514, 9767343.481195169, 9767409.438192438, 9768601.5625, 9769376.09646683, 9771482.355402874, 9771492.524276445, 9772256.688434461, 9784257.8125, 9786520.201444494, 9786925.867807664, 9792441.864142813, 9797252.905572075, 9801473.905767243, 9802461.951004477, 9804360.9375, 9804443.299570912, 9809768.025405802, 9809909.375, 9817122.009532873, 9826835.136969855, 9829960.84732441, 9854340.127003308, 9856262.916288001, 9860130.575390048, 9866351.315459315, 9870437.656852102, 9870892.1875, 9877489.0625, 9885875.0, 9893104.6875, 9908150.75100771, 9908775.0, 9909977.743530696, 9911706.25, 9913275.116898073, 9914779.32333009, 9915322.129586315, 9918868.75, 9919170.786647763, 9919228.61743356, 9919848.130870888, 9925510.632878315, 9935116.739299627, 9940020.90667021, 9947678.509477483, 9961411.790381663, 9961417.693006592, 10000229.083687264, 10027567.40249781, 10029099.452464428, 10029401.320676131, 10029511.624374954, 10036495.57582952, 10038172.292535523, 10038604.915737582, 10039956.719465226, 10040819.387827342, 10043544.160620507, 10046154.6875, 10061874.94160275, 10065885.887321467, 10066562.426369628, 10066570.585595539, 10066691.216373669, 10071663.220527861, 10098666.4633537, 10116109.451007934, 10123536.28544747, 10144892.1875, 10147075.235052552, 10147479.6875, 10161299.049093818, 10171926.745292695, 10191669.28168268, 10221242.06567328, 10238401.235316908, 10284748.873967784, 10292332.007614529, 10301952.963831658, 10303282.8125, 10310637.5, 10344424.690704806, 10350861.294220509, 10362237.964365056, 10363713.33822215, 10367794.904987298, 10385817.862664059, 10399968.75, 10405101.733404577, 10405540.903944833, 10411532.781398334, 10426859.375, 10428934.42768443, 10430196.073988836, 10430701.535651475, 10433342.777411232, 10454328.90033482, 10462828.17877408, 10468864.0625, 10526614.065448787, 10529006.25, 10591234.375, 10592163.67392134, 10627887.4321914, 10628121.641077278, 10651915.347592626, 10658137.249505717, 10695713.10013935, 10704433.544132471, 10704887.535146054, 10731735.9375, 10734512.5, 10735809.946669301, 10736716.112776985, 10742411.329946855, 10747948.4375, 10748670.456720538, 10763112.935016233, 10795869.244486295, ...], [7.79410603406238, 60.33064215183847, 33.88319115227361, 108.279439950515, 6.226238911114926, 14.175513794209389, 52.36960381964256, 21.015924666563258, 8.634899988351913, 10.252615277441643, 87.93175676738396, 22.90410384094928, 25.455375350363855, 36.53348052936966, 72.30347550549052, 13.733554112820956, 45.826714616108504, 15.4733957046918, 61.16637034341953, 8.00197933012719, 8.390671620387243, 14.60650721366548, 85.76489581004171, 7.7977644558929615, 59.38563085719481, 20.557959717873572, 73.06948161999537, 38.20260961557867, 16.418442920872852, 54.47698684086781, 103.1959179103963, 19.2769357921378, 18.425352503435782, 70.26674139825911, 30.117052357290042, 19.733416071952092, 5.554188263046834, 60.748968523629046, 98.81870191566036, 180.10683311922486, 54.50522095316947, 27.908775387221105, 72.46103658594224, 53.519537909774954, 64.78936386625907, 6.369218291129104, 26.761623996901555, 6.022289158304382, 36.79056090933626, 79.94402163339502, 35.17989698785298, 42.45115723154652, 29.85461797186302, 83.5218447924118, 85.1233476053473, 17.782775539646504, 61.74822132252039, 31.73411940081268, 33.792414310753706, 9.43888096512054, 109.2740411625307, 25.610683686712505, 17.032985731379085, 73.93784213265539, 33.414242078101005, 98.5939007427719, 50.976799407941776, 42.82285744757016, 8.600236375641352, 19.085600155169015, 19.33697715083886, 84.43680051445504, 32.545466773851, 174.50201396321305, 38.419577056777555, 31.46821052740644, 36.19918265415355, 18.515242393770166, 24.531193822560084, 30.04069023928433, 28.956879272707898, 18.80889655168381, 56.43058074769261, 7.632545498855037, 8.434510737823617, 15.242028646368567, 18.891511471550547, 6.048771005420113, 45.03453905226346, 9.845520340790086, 11.670683774344496, 70.59053441805398, 72.81558876028302, 67.39689919677423, 13.714149101338696, 35.043240374406544, 39.54722665651804, 92.23112955889299, 19.500683660576357, 13.7838444944707, 6.901319396884453, 26.267879170911907, 14.01289873623242, 43.644330322283686, 32.321636746929414, 15.954251085525522, 11.069252546394308, 108.18646459527653, 10.343867578595198, 42.01315266139697, 56.35853682833569, 12.0435422663255, 5.212457538377179, 20.802302894485173, 207.58046015015327, 11.859869196254719, 67.65436843341854, 10.465942245456423, 16.26753543925593, 9.565660447570393, 79.45450697100765, 14.017227090195055, 19.85469419075774, 30.460860862755865, 17.733688864731253, 10.658584532895523, 86.34077550318217, 15.206335803454701, 13.385296952868108, 49.97685337707848, 10.133793517107119, 37.43077238502154, 16.197856265400475, 51.84512387328084, 21.32208302550572, 18.05514701942878, 82.17674113201447, 13.92391064540741, 96.25942417894441, 33.23606995552069, 39.87005972726913, 22.976066694678984, 19.35862660347097, 11.876388978440787, 13.63047603445996, 43.65531657122708, 62.87611302332305, 40.56559164698845, 13.889519528870107, 8.083324428465273, 7.646534458566202, 8.001746651797406, 38.93420112764057, 5.9816001525452815, 6.135748482345602, 102.41359680302267, 16.988479934067378, 8.26800650111076, 17.700638141673785, 31.160237884084015, 44.88557835887261, 11.595535298331283, 17.313862954935328, 82.51390601513873, 16.796689217640562, 20.97400278447809, 16.215709924800382, 31.896706087261887, 5.250280264876778, 123.39531982170195, 49.32159822498811, 36.44205788602268, 31.396726913716236, 48.014933505541435, 46.5382002158363, 87.96748870247302, 13.516923590776772, 18.605730352566848, 25.801635564422604, 39.04076592797027, 86.4670637429338, 115.50282976165886, 7.175404671998605, 6.532559184809413, 17.693829760434586, 12.173993521662062, 80.94179541856408, 42.60157854830405, 80.5256359948826, 8.450725860537899, 16.692650270180835, 96.36246020528537, 19.41111190801747, 16.756192582660866, 6.0227631347423936, 60.628735281863285, 33.55577353268232, 7.608545699635524, 28.12464845771538, 6.034671062494831, 26.706452832942837, 24.529133819220377, 36.89164262051675, 100.61235037135958, 12.396864376643268, 25.709448325601382, 9.360580245267883, 97.22100512836067, 14.148800638540115, 52.34060547064719, 17.356952580853452, 26.49500844204657, 42.06555653043171, 20.24249720414792, 8.629785867604998, 117.44062760713035, 78.99109547819256, 26.440597208874273, 134.89688167807884, 83.29474224732989, 37.796022033783615, 65.24046634870739, 72.69164076879912, 5.8037153732555185, 10.271203925165496, 18.284355989683505, 23.53265006338546, 24.41820834618874, 34.16914337109355, 40.34130405374667, 109.64347412131447, 21.55694113232324, 45.98156284562104, 62.56980632513009, 92.33180509996268, 24.33916212610965, 101.21393673849289, 52.467084461992044, 10.772341874886946, 9.329004549535952, 99.19267807987727, 21.267133249691256, 51.45133120246419, 49.016856023364525, 33.232176148233386, 16.43164403277378, 92.80743684863535, 69.629293910084, 42.66996107738691, 53.84024523889047, 11.028485465886254, 59.86318498444893, 13.772644632574092, 25.7669162015816, 31.430576071258645, 53.71829950514946, 7.89939417437296, 176.01056660784374, 24.39941191241264, 17.226892210030066, 5.57774069685332, 5.496669369488987, 60.51636795894551, 7.9998775230790615, 39.75765379644752, 90.0353239539148, 9.16877674962858, 5.184081089390018, 29.036397584135262, 38.99293622494584, 70.72174163741438, 88.17466876744486, 92.66920295811738, 20.591470884188233, 24.792912120289202, 22.335004404890668, 16.52688556834335, 6.800163688804588, 41.3231692649462, 51.42591068203377, 143.84388909739744, 124.30470630738029, 25.65383629056107, 12.952238623792681, 189.56675388872495, 5.3014792784432965, 86.34693790765677, 185.3065973911434, 98.88275201902943, 12.619981350083899, 36.78210191429331, 57.318028846719066, 32.86926166363067, 14.008438907798686, 108.94372713448307, 12.273944994888328, 77.12665431027261, 173.83160114065475, 76.11360140541805, 13.284771501600478, 91.51194113789363, 24.12413854734571, 52.63390561718848, 30.568579474985846, 45.527392829366974, 52.484520489586274, 6.098973113051022, 7.9366235003135, 46.320202524980914, 98.40625262861678, 12.524139878719774, 41.57863261085571, 6.459801449143175, 38.535338799393244, 193.9647524143936, 23.581394511994123, 45.750574137510114, 14.023880513105786, 5.3427042861444445, 29.23007721821316, 5.2017929180641955, 31.36982313882095, 217.39431525564066, 70.57012599828225, 76.72311234902025, 8.473967347102832, 11.37662325319986, 11.915777752907136, 21.53169915747875, 24.83210884795784, 90.8995658763762, 74.90654967062984, 35.28147094251091, 6.262704995805808, 45.71533149336106, 16.28862036404952, 9.003561801600712, 21.41836461875625, 81.57855836089877, 24.0313305339253, 12.788846798553742, 10.061195205099082, 51.879038740860594, 60.07228156433036, 18.74360120976465, 47.30345589172647, 23.400231373622713, 19.448886809613647, 45.58275444775605, 39.31735560013068, 71.33983873733035, 116.47247396439506, 49.40468523133719, 63.87753255106138, 73.9267062468532, 48.37003839602273, 21.527804491526712, 55.515607432722625, 64.24497846511905, 5.45712526738789, 28.526434318424975, 33.78332747214179, 9.67542411448219, 155.44918918598918, 74.29912038970481, 82.20596396524748, 42.767137787305266, 12.316345917758314, 48.59673473892745, 55.10564774268387, 28.506604505661425, 44.19957226962153, 125.92615738957052, 52.67624947292561, 20.235620508902247, 82.5119524202674, 17.2363201064643, 14.593779911542882, 8.315171176295813, 14.11305219498739, 39.719989040480876, 133.07877352672685, 54.298872000686806, 8.763188567287012, 21.296669224349586, 28.519497194600184, 17.24098610993725, 27.63549014027604, 59.25175394218404, 22.229680563152098, 9.006426881738262, 19.725734603526128, 26.106013426345562, 246.3053456660171, 47.22022618564897, 57.724890664073286, 38.66131340477151, 58.81497189843462, 45.61122099385637, 55.75792254170514, 55.59506370365515, 100.3724794223575, 30.96858727003358, 12.9476887238416, 79.23337879180653, 28.02974257768377, 35.1382601689, 85.89510273302132, 85.71077624046225, 44.99292948948936, 124.59765680126478, 54.18414879806409, 27.941170386876458, 11.002957445744146, 24.110917985130804, 15.004102260451567, 28.601577225554127, 39.126411275903166, 65.72028678173967, 93.92513065811089, 34.68252090446792, 42.45704347526454, 76.73454492731258, 23.569932927695454, 10.131080899964967, 17.307124733999352, 19.307633521091788, 7.105413274187055, 91.70358365358598, 35.34129500352376, 52.40770899674623, 14.754004933776201, 24.64518202515061, 8.977814455836844, 9.56758492604744, 59.73886828568703, 31.3624762248753, 49.91560489851498, 7.903951325565905, 60.65248759805427, 8.032633364802624, 61.91926116305962, 67.79238925741033, 34.55752890402781, 27.226438942922183, 44.834082859340214, 18.760300431931327, 6.701413372108977, 7.532632594103965, 118.27301066528217, 25.689725304751768, 26.278246386291386, 14.863104680233555, 37.10977196965635, 11.495647664683911, 113.28509687698971, 25.206743379041978, 107.04149733049478, 54.03649812096604, 37.39033771247169, 56.62672460465353, 9.7550898616053, 5.672027641584428, 22.55055257481743, 22.85536843866243, 19.365841535354328, 65.12347692274182, 13.560332927243886, 76.13595954919522, 23.85493016125783, 7.941324948687964, 17.20922504987353, 7.908701732632743, 117.03090067402925, 7.767987201560759, 24.32997050219077, 32.3492172936701, 17.374102296585924, 5.626619779913717, 25.879274442759485, 10.193495679615998, 52.379835064906736, 110.77472439940728, 11.661180519712763, 50.343169416298544, 13.146725120526892, 107.06710699982563, 94.92400898867272, 17.22736387168582, 54.14163902999745, 38.65916873007494, 13.986306636920919, 148.33371970882206, 32.36989968905949, 10.207597096470959, 45.31779163332992, 46.83060107284884, 137.81684169181378, 12.86983112563717, 59.16412005714055, 20.750662181935397, 50.150017235944716, 50.587128450551155, 30.984949539001136, 26.886457980464723, 23.73497901096726, 109.87372267242031, 7.557112877217456, 11.51816158936882, 14.160859897242082, 11.83813627452751, 15.781772839102217, 31.322743872146297, 50.21908241210821, 25.57267320047882, 5.039647065289813, 25.312423737741803, 10.242264729564367, 7.143057153861647, 13.01272143661335, 52.70901768335003, 9.815688653110737, 7.091538984310551, 18.284564444164232, 6.249644664819577, 21.606648296058612, 42.95880994928527, 38.425655876340684, 23.12077719944886, 31.63716458776593, 39.1271238713693, 69.42428564086612, 5.8469273224169545, 51.42084107461491, 127.01599790736789, 54.23440796270346, 62.56153061341874, 50.550476576484584, 103.63033917026644, 29.247201779326243, 66.8201622636512, 15.093805766942637, 18.978114474444563, 50.6449092503668, 13.889841305006817, 18.155246762102692, 28.332027834708427, 88.22274015098125, 157.4483887111972, 20.09923070967803, 43.1635130985254, 22.99529606791753, 39.41715385953964, 35.2640188926634, 57.72513411765449, 37.45577050607567, 155.84196207876596, 14.544394094778951, 35.28478000781163, 5.599261110124826, 57.08201666406578, 43.82731538935795, 9.703911447238205, 12.414990192508375, 57.83481833911694, 79.00910437909954, 44.2225834173625, 24.41362451518629, 58.430238764772284, 13.258942422106205, 85.37377935181111, 13.293054207924545, 89.77984388952376, 38.250788640728416, 11.14800374207492, 48.17367682957634, 73.12589414911822, 10.658776899769277, 50.62845026652672, 50.29551441904999, 49.91575680478289, 28.171007220270564, 13.409191488756964, 30.504005960448474, 18.107626333968266, 36.830543083950545, 23.941000687986246, 43.17043112837293, 24.966657470718417, 21.25101365215923, 54.349494467038895, 35.950495920425524, 6.955964946776829, 8.911885774624052, 20.547784624613968, 28.93057905453225, 45.480162711610376, 53.8535072790529, 9.240246435079957, 11.26648826177205, 80.80280056905981, 58.12628965050722, 58.00434296998897, 62.9811516070315, 133.95418929076482, 53.50666629730284, 9.964871363495233, 44.38552198029929, 38.99332646389517, 33.388700168694065, 114.155701438758, 45.47151523898645, 14.285098783387678, 37.87564137054297, 64.23039020327191, 23.158866625178696, 10.737829604432543, 23.26279010072401, 45.806243542276526, 30.994800201884175, 54.24809735461995, 80.35098410538654, 29.814675476438723, 11.079959990304742, 96.83396053255979, 72.7071354666964, 21.523635271940066, 6.583495754257139, 8.393512091702375, 19.11234706323037, 129.6846451059848, 56.64907084292009, 8.131711523221478, 19.667763087254734, 38.433669378590785, 83.9408939900179, 96.03688796515283, 20.482124167871074, 14.66460763487054, 5.860151383789766, 15.459565113565196, 56.98669364760404, 34.24211031986312, 7.237301724911088, 29.310370406515176, 11.741438931511404, 17.231272350819204, 70.399253204552, 8.274997397085283, 29.639216511863946, 73.94872912520403, 25.523095147329954, 18.69903499732075, 40.18540327021044, 23.853980165817788, 76.09746439802603, 69.38837281427188, 45.00069214867445, 96.16043139604541, 16.450882352852233, 162.69751875747167, 80.31279340016938, 69.3592540168422, 28.558191649878523, 26.133938225436523, 20.74945261382599, 6.3765226980139635, 18.550747411445734, 62.37773689510409, 46.72788786640291, 65.84010480394062, 66.99202421840086, 32.18087304433406, 6.209848718002817, 14.898280833122286, 54.40569876276736, 10.065703274099706, 32.64287792425774, 60.9926663720062, 111.47513203511298, 6.996046708745374, 176.7157684302541, 67.52324913745926, 17.916387449282894, 41.15597567226906, 39.57982630451096, 6.489797234709065, 19.405151369895503, 11.05942220155689, 12.265046185044756, 18.467224841095803, 48.407753451958925, 7.139286337437005, 48.872402343671666, 93.99684325099554, 23.541286491785147, 58.655016798434914, 29.6277979005748, 15.393518613148498, 80.97363101985727, 21.310038253336366, 45.342594769554644, 5.217499480069152, 6.104014761656249, 10.930929570036747, 42.804191422516574, 9.178946795508569, 12.375991642121608, 61.42905433296763, 62.586601284285045, 13.773455857363224, 63.48889124557541, 55.49195862578662, 5.785651819785999, 9.171630865524428, 13.442597195044687, 24.043686527558123, 7.875619385803192, 188.7610765900297, 41.3398727273378, 27.999908989676513, 16.191167319607906, 54.36678707887312, 105.33190201188032, 28.26345745228648, 99.59769485332944, 18.701578367790034, 58.42704293262449, 39.84129139680502, 20.61540243702353, 8.570582138050693, 28.937461160144398, 71.11354766863234, 12.115412471733995, 15.42491763391769, 19.588023541145816, 33.82707657768077, 12.79564017666814, 103.38634511902092, 170.4834163210408, 10.537743617533641, 101.53744726373228, 35.18785831216096, 27.857318143912764, 60.311874705063474, 29.48079899439086, 5.448426988755251, 30.022556829566255, 16.76319482469786, 89.10140313725371, 14.727920393220616, 19.55807074390796, 60.244327971445486, 7.200249195653298, 103.338189039869, 48.32201281112292, 7.576624594065228, 15.082313436503872, 28.694580950606717, 23.394349050929563, 28.12591356399682, 14.427190476183313, 20.546038436667814, 31.75286385503221, 14.503514930122503, 38.935223792487605, 21.667825680574065, 12.704771427729824, 12.28095547877157, 13.890253825191468, 15.08105688095937, 18.872015573668364, 7.399750874718295, 66.32507184333619, 52.222784134532404, 16.83539221465728, 126.36028170373339, 47.43960206382101, 9.73841413986254, 47.67832026545758, 64.02558493709807, 52.24895204676544, 39.66752084924325, 6.634037750820928, 52.69387017986207, 33.451264662896925, 22.185020141246962, 26.26428907472934, 19.167319609306436, 118.36670336645219, 59.49820665600432, 7.660540991727866, 15.711234354459293, 36.07342563544124, 6.01253627934837, 6.585510142814187, 116.74409969873676, 16.23691141941078, 7.016951518371544, 21.667700387661693, 15.768450170532928, 53.63659537297928, 6.216637444481397, 7.4298332241974006, 6.588878019393704, 69.31125749218188, 36.78973678538327, 46.61179615493621, 57.81268514011653, 21.844680546726735, 21.02977800937502, 8.926800784382188, 63.95307785078965, 17.31802079789886, 18.185401319695007, 72.14457035550026, 18.026748519293747, 39.03277985312988, 19.240359577172736, 70.63913492455289, 15.830626149055256, 13.893658846477981, 44.903646658046064, 24.07947104232046, 16.516436740991963, 26.948645292681285, 56.02585215116692, 66.39965801446706, 18.34949376249213, 19.533694494439686, 58.8795287615017, 57.691354284106886, 74.73756462669068, 18.15490042491099, 28.744781358455477, 48.28108041460975, 28.964594445921442, 76.94017467539858, 11.26714018781272, 65.30644304209036, 11.024226584940482, 7.046742501747208, 57.300969128689346, 55.51524124050704, 58.32503388783895, 29.758233300618716, 6.365403244581169, 9.856497741506248, 64.42078156204241, 116.6761991446769, 186.24981913596065, 48.97369627115215, 214.57404656057787, 21.251543506099914, 11.285000319119538, 21.692331101966673, 69.27841227699118, 36.941806919319646, 47.40212623268803, 156.25876979706123, 19.31138025410604, 29.03409233117908, 6.065950813993589, 9.22364590236548, 16.402533451821178, 10.619717221452252, 14.983556109050873, 39.1482581429835, 67.88367932610385, 58.6087777315659, 38.880096530583934, 19.843044225564512, 33.248818655266575, 12.358727301306962, 29.50806202724865, 40.57192933680472, 22.71780721614123, 36.88455612490066, 5.742835611312298, 7.879117845997202, 16.940618932724263, 74.12047803639769, 9.385413709211512, 57.335112748208275, 36.66585578796595, 6.211124616023508, 16.401908750949037, 11.889921885399872, 56.73117244984705, 67.14431106508364, 19.748438062758403, 5.7904358377720975, 116.95828785962834, 17.087487270011678, 6.200242047821022, 36.81964952577524, 5.034034199395407, 156.4788300199975, 95.70686622000773, 151.76895996878858, 18.941087901564213, 22.173457047391715, 13.331535976824114, 126.51180062317023, 129.7256234069407, 24.45164613539769, 9.46764803777864, 30.92458852275883, 38.58848863371408, 56.993066292048624, 61.33016888937278, 18.862274705337114, 36.834101495305674, 22.763028043569474, 65.45046334371881, 15.406610753291767, 8.102950335076912, 22.722774387433937, 78.49337466412399, 24.717131553542814, 21.47856811111358, 122.70441045510475, 23.6918849975653, 55.49013958600148, 30.529285109299103, 5.213329164501799, 14.73972362197668, 44.931410761475874, 10.299065818556437, 11.481256932704829, 21.031661208902843, 8.162706905445713, 57.320913647345094, 11.5658630497085, 16.81394471049228, 64.06380240024703, 70.56641397107049, 18.095659776030818, 9.704542831480504, 61.68210854021052, 38.18379152117347, 32.60785609564127, 27.148334697771286, 47.19739904211326, 89.88575632624176, 28.08825469083413, 10.15751767989295, 15.23935242686958, 6.835018264659967, 64.67573748046598, 93.04055004745504, 43.94556580669834, 28.515996513115525, 9.490900042278284, 17.446761273246064, 14.496641597387372, 23.409616356475627, 16.9146426411227, 106.6532463691893, 193.67914437614178, 31.132363272655333, 32.53383863209129, 41.86150068694727, 52.73197647018614, 62.46680732366151, 18.25899252935151, 10.54535763587414, 9.975959928010527, 67.66823928834792, 5.95442840662121, 15.441362343781854, 248.41401163144792, 124.15320981356945, 57.12812131219815, 64.09081413572295, 6.758158280163622, 7.831506936502077, 25.91474594577394, 15.15051031092823, 105.4675883684628, 23.786663705602795, 38.70675035491767, 34.970728209389364, 42.55653803684702, 88.34344790410591, 6.238089481332748, 75.11700372167945, 61.417477811265385, 12.216097917104086, 97.13233050429888, 15.077183507440266, 66.95747229412112, 49.902319734517924, 31.999887086081173, 90.7795317313466, 17.679121748175362, 104.71092867301162, 11.360872288993377, 9.72847403079852, 22.132819699076016, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7312012.998592271, 7445140.625, 7465323.743179582, 7465549.470647769, 7467740.293780579, 7575521.658386326, 7629745.834774968, 7672572.81710555, 7673324.042807989, 7699850.919833255, 7700075.743144422, 7702155.817025485, 7702948.260178121, 7715217.1875, 7720725.693325069, 7721257.454840276, 7721617.1875, 7724250.132882075, 7728657.8125, 7732954.107536756, 7733867.379289827, 7741365.534241295, 7741790.940720803, 7742169.25761184, 7743159.29650521, 7749458.775852475, 7750993.088484641, 7754991.887499177, 7755202.470188746, 7755893.75, 7761834.375, 7768402.369886539, 7820004.237570602, 7824445.907053261, 7827676.438035132, 7831074.303439728, 7831491.052375249, 7831497.022018077, 7833226.5625, 7833299.845920152, 7833379.6875, 7833748.40559801, 7833750.0, 7835351.5625, 7835739.0625, 7835866.391960781, 7836731.585008243, 7836821.21745417, 7838879.6875, 7839850.09275142, 7841325.828186615, 7845477.1914500985, 7848137.5, 7854642.7573161395, 7862210.898661182, 7862363.087925738, 7864773.094894666, 7865146.880784746, 7865734.375, 7865789.186931559, 7866064.041130382, 7866134.207878083, 7866223.895833666, 7866496.875, 7866787.5, 7866793.4368427675, 7867185.9375, 7867322.323525201, 7867358.362001497, 7884230.469265752, 7887360.190291643, 7891014.0625, 7892315.625, 7892972.107646995, 7893271.71230785, 7898854.6875, 7899065.988769092, 7900597.576289206, 7900622.02121033, 7905168.458128006, 7906544.509442685, 7910799.309741073, 7910909.647298164, 7912925.080311297, 7912986.207146067, 7914004.823578151, 7916934.796448845, 7921943.363126325, 7922245.086343208, 7922248.988781194, 7924833.134162404, 7924903.125, 7925696.875, 7925773.447087803, 7927226.198342728, 7931535.9375, 7931609.375, 7932335.9375, 7932565.428412799, 7933087.159055216, 7933691.278209556, 7933793.624440741, 7934085.670487878, 7935499.912288099, 7935845.0509182345, 7939962.7425429, 7940023.3997781025, 7940165.973800792, 7943644.745592899, 7943647.6199126635, 7944560.112417911, 7944581.766298354, 7944633.163500547, 7945990.952041393, 7947351.5625, 7948012.922830107, 7949085.840224856, 7949160.468414692, 7949526.871733108, 7950126.827134254, 7950257.589194103, 7950538.796851276, 7950665.849935759, 7951299.163088975, 7951908.392385432, 7952057.490099805, 7952089.0625, 7952238.164413817, 7952515.494429776, 7952853.125, 7953703.942610241, 7953841.411483065, 7954238.7135928795, 7954423.4375, 7955282.729145032, 7955330.318994286, 7955795.150415823, 7956115.892311345, 7956225.0, 7956389.0625, 7956622.835783361, 7956681.717088416, 7956779.295632325, 7956951.993923121, 7956996.482515022, 7957181.25, 7957209.328450643, 7957538.029180181, 7957834.068604848, 7957887.094796565, 7960312.618143408, 7960330.669525751, 7960340.616442007, 7961950.472090334, 7962006.696071035, 7962539.0625, 7970040.792513103, 7970056.214716427, 7970406.559828742, 7976004.135542009, 7976850.407051961, 7977239.342513113, 7977475.508633997, 7979104.615341046, 7979358.950892391, 7981846.188868954, 7981920.610943601, 7982489.0625, 7983543.932439965, 7984629.704703925, 7984900.528044185, 7984953.125, 7985269.2544775, 7985381.25, 7986650.0, 7987187.600525424, 7987902.693245705, 7988199.151986279, 7989668.19495992, 7989852.841329341, 7989858.177886787, 7989891.198802067, 7990211.138845808, 7990544.034045527, 7991058.3858131105, 7991180.267522251, 7991214.0625, 7991437.626567145, 7991909.375, 7992054.985523039, 7992643.975370387, 7992732.8125, 7992860.199965422, 7992997.281538996, 7993066.534873418, 7993187.848349612, 7993190.625, 7993256.264652076, 7993517.166957644, 7993877.595060894, 7993979.588318582, 7993981.008588476, 7994015.501142719, 7994022.920725794, 7994872.5591198495, 7995286.816606958, 7995539.096805966, 7995727.032600222, 7995827.900221921, 7995892.1875, 7996100.516158617, 7996923.920918456, 7997322.382508098, 8000129.052276104, 8001844.347131206, 8002487.695743142, 8006680.429763589, 8007554.032794197, 8007787.5, 8008145.893488542, 8008310.042600497, 8008432.8125, 8008589.0625, 8008657.6727986885, 8009130.622954906, 8009342.854340081, 8010291.870232424, 8010521.354149757, 8012134.265837857, 8012508.584821993, 8013225.0, 8014821.529304135, 8015821.875, 8015833.977131611, 8016475.175415112, 8016698.125529351, 8017494.314889229, 8017806.25, 8019457.5725952275, 8019457.809661896, 8020088.649692791, 8020434.00988842, 8020473.4375, 8021251.5625, 8021600.55221531, 8021664.972918591, 8022964.470675261, 8023683.953392626, 8025392.1875, 8025440.625, 8026185.873080094, 8026200.733945283, 8027063.717848156, 8027567.991561873, 8028500.0, 8029192.1875, 8030603.875768265, 8033974.969418532, 8040368.839032595, 8041284.868293304, 8044752.449593028, 8044910.163723966, 8046451.38188921, 8050710.352918433, 8051577.0661886735, 8051918.75, 8053146.676196769, 8053224.223530077, 8057699.330509547, 8058695.281003172, 8058834.375, 8059223.4375, 8068792.1875, 8081588.467102545, 8083965.4024312105, 8087321.481755884, 8089865.986848724, 8093778.305882171, 8099640.625, 8099775.685722289, 8122964.0625, 8123256.965673195, 8124320.746794016, 8125826.480687124, 8129099.240396321, 8131608.145305281, 8132592.1875, 8135638.313650065, 8136387.456074065, 8142060.157721616, 8165681.065505197, 8167341.169119644, 8173712.194132855, 8176209.10658179, 8176688.844133434, 8176864.689930125, 8177146.777473056, 8177166.5844585905, 8177303.125, 8177541.672359994, 8177980.864210555, 8178847.087678202, 8179081.126483917, 8179494.521273284, 8179515.625, 8179517.064804885, 8179567.291420455, 8179613.3364065895, 8179814.0625, 8179829.8355969535, 8179951.700384046, 8179978.125, 8180176.3861748865, 8180193.75, 8180218.247039326, 8180802.811625765, 8180862.5, 8180865.361444677, 8180904.710321091, 8180995.3125, 8181018.685939579, 8181356.521750871, 8181409.968146698, 8181495.6035697125, 8181692.1875, 8181915.963308501, 8182015.77861857, 8182116.076760657, 8182497.941360674, 8182722.2836885, 8183440.100228797, 8183480.851893409, 8184145.14914399, 8184814.026852116, 8185748.733651904, 8192834.688595981, 8194129.272542183, 8199282.2880576635, 8204768.67534855, 8206525.843577115, 8207096.166387287, 8212172.628065154, 8213404.6875, 8217431.25, 8225042.921775125, 8228275.0, 8229382.484555302, 8229533.642358134, 8229962.5, 8230783.093014352, 8233879.931394361, 8235421.626942305, 8238769.407066347, 8240871.665756581, 8240899.981201548, 8241724.876792078, 8242119.03090372, 8244369.601510195, 8244676.5625, 8276045.203917272, 8283126.5625, 8283835.9375, 8285287.880641623, 8291957.550610567, 8293389.739172359, 8296987.621491091, 8300151.334897662, 8304638.707547107, 8305154.6875, 8306234.375, 8307624.99905973, 8310093.467306458, 8310151.5625, 8310184.375, 8311007.17647374, 8312866.194914637, 8313836.432466279, 8315824.905676327, 8316445.366182795, 8316929.4517262345, 8319814.0625, 8322343.542863556, 8329121.211239185, 8331247.679242769, 8335961.9800806595, 8340048.8602423575, 8354280.951769816, 8355216.6348470915, 8371988.644832183, 8379268.669583221, 8379373.026420946, 8379694.614983153, 8380498.301936873, 8380714.119723054, 8381574.685860981, 8381587.5, 8382567.1875, 8383012.5, 8383046.875, 8393141.916955382, 8394166.329123104, 8394667.429832468, 8396349.620889302, 8400611.855781216, 8403776.402530672, 8404349.974489022, 8406357.755817454, 8407468.75, 8407654.644561265, 8407895.19846777, 8408237.042838696, 8410253.588712085, 8412761.50503065, 8418646.793695765, 8418890.99630625, 8421354.70382561, 8427226.5625, 8432056.004260771, 8434731.598090122, 8434888.984933522, 8435131.522601217, 8435777.67549473, 8436026.5625, 8436063.803555591, 8437777.377727617, 8439048.9449528, 8441372.686436154, 8444937.438633911, 8448468.5826808, 8448775.473553132, 8450676.5625, 8451768.699920569, 8453036.194922669, 8454605.799970392, 8456845.579210132, 8461050.0, 8474358.367966138, 8480134.375, 8482544.511347046, 8482850.918176714, 8491413.549296297, 8492598.4375, 8495709.375, 8496084.294552928, 8498124.355704503, 8499550.817596426, 8501067.924146308, 8502830.930811869, 8503282.612975094, 8512659.558499362, 8519530.3376544, 8523076.965401458, 8531289.114115093, 8535990.226819282, 8537912.72329922, 8538381.25, 8539499.094372049, 8539526.5625, 8539656.25, 8539815.156056874, 8540499.399160549, 8541219.211895604, 8542132.252601257, 8542240.224850329, 8542257.873107234, 8542419.569069477, 8543573.967998873, 8544680.833371913, 8547063.944296459, 8556354.395613002, 8559474.284595503, 8561587.99015168, 8561600.772345712, 8563481.25, 8564139.496139448, 8566646.413656212, 8570762.337954702, 8575585.95271562, 8581486.162599932, 8586727.975170834, 8591497.74449077, 8591846.875, 8595892.1875, 8597340.94144265, 8597343.75, 8599382.245692244, 8601091.697409952, 8618943.75, 8623617.680877058, 8625790.763916723, 8635051.5625, 8647727.849584732, 8659140.780191105, 8663981.25, 8667680.569090711, 8667932.314384338, 8669295.3125, 8700824.29627596, 8701193.979034387, 8730131.25, 8730782.628923897, 8732896.891870938, 8734054.51811618, 8734548.17550693, 8735798.34884794, 8743582.511264997, 8749734.067532605, 8758620.18314535, 8759168.986219825, 8785870.091413118, 8792907.248843446, 8794965.829268403, 8812241.734003708, 8814731.25, 8829585.76789551, 8830235.824635273, 8832251.375656199, 8832689.97359217, 8833643.831558239, 8834741.56896497, 8841338.80496955, 8843616.147120314, 8844323.322471727, 8844330.704495616, 8846804.547288164, 8847165.913083239, 8848014.475353071, 8849125.0, 8849342.614591662, 8850487.076122822, 8857204.6875, 8857262.494735174, 8859603.560569778, 8870246.875, 8870414.546568226, 8874480.850386823, 8879252.80761438, 8884143.209845945, 8899893.072864937, 8900404.6875, 8902349.937047541, 8907224.415999193, 8931972.642079145, 8934274.445444264, 8947718.443708884, 8952792.834574658, 8953392.704107154, 8954242.1875, 8956859.230281591, 8961446.222915307, 8965323.532303002, 8968760.57596445, 8977432.500396807, 8984151.5625, 8984546.875, 8984585.9375, 8985978.704326686, 8986060.829258991, 8986265.625, 8986796.604656018, 8987212.5, 8987760.514560074, 8988491.034973923, 8989513.192333424, 8990046.875, 8990195.3125, 8991349.832622278, 8994269.802562285, 9012422.712836608, 9013174.475314315, 9017201.70721177, 9017655.737909384, 9017896.875, 9019117.101725169, 9020045.325446658, 9020151.253720887, 9022386.683333648, 9024830.927741814, 9025071.875, 9025182.502618194, 9030037.82902246, 9030526.544370288, 9033465.010873092, 9035567.1875, 9035670.952190857, 9036275.0, 9039691.570174225, 9040396.875, 9042406.039579315, 9046257.287884636, 9050562.710049924, 9050870.269821886, 9053069.643190978, 9054021.333366174, 9056465.024710761, 9060718.75, 9062186.72875818, 9065982.672967551, 9066003.015189199, 9066639.14951001, 9067115.785913855, 9067833.867893917, 9067929.850216009, 9068745.3125, 9069016.181973549, 9069600.0, 9074661.602356188, 9075728.213922804, 9085590.417609937, 9090599.754653268, 9092103.989272872, 9102964.42791899, 9106515.073094208, 9106723.810956696, 9106901.5625, 9107601.869178109, 9109638.797877181, 9109693.410815189, 9109757.76710946, 9110293.75, 9110368.75, 9111905.75917211, 9113554.074775321, 9114054.65673679, 9115208.170433184, 9118906.25, 9119632.484826094, 9119911.526102742, 9121122.07188535, 9121494.535387188, 9122774.57615324, 9123628.044209918, 9123763.757696861, 9123790.247399323, 9123821.77664131, 9124050.0, 9126082.590774892, 9130693.142308617, 9131392.112903852, 9135411.542598436, 9141597.004587684, 9143045.001294846, 9145021.875, 9148400.423112955, 9149021.15061984, 9150202.13672779, 9150409.869070861, 9150523.4375, 9151667.165537806, 9151668.44028781, 9152150.755069556, 9152274.827144044, 9152686.665420013, 9152848.4375, 9153124.564058904, 9153291.7326123, 9153431.208523327, 9153483.988236092, 9153501.5625, 9153580.034162944, 9153944.046446327, 9154531.439535782, 9154999.687286478, 9155026.195467696, 9155118.032916687, 9155415.564585201, 9155952.381430933, 9156041.331487408, 9159035.9375, 9159664.0625, 9160776.5625, 9161740.173605883, 9161834.843825024, 9162438.594683738, 9162984.352874298, 9164023.4375, 9164586.694620783, 9164886.302024521, 9175382.8125, 9175779.467324266, 9176922.937944783, 9177807.13101722, 9178484.975250013, 9181863.109516686, 9193954.898881968, 9200229.218267301, 9206317.204740528, 9206335.199191155, 9207510.893369919, 9207967.655443033, 9212244.44421752, 9212381.25, 9212800.067414416, 9213070.961674819, 9216609.301368613, 9219616.870923677, 9220228.125, 9221012.692773847, 9223717.301242026, 9228748.404570488, 9229830.731450984, 9233402.984013304, 9234653.668732129, 9234762.651669027, 9235738.932851499, 9237585.733343067, 9238284.18902058, 9241467.86211565, 9243312.599331211, 9245034.375, 9247376.19188565, 9253685.9375, 9256212.172290368, 9256260.547155233, 9261410.74230108, 9264394.854511429, 9267495.03509269, 9267591.320136659, 9268135.843802523, 9269479.6875, 9269847.6791903, 9273511.230801182, 9274901.263172349, 9277627.001895824, 9278310.92415375, 9281046.58682595, 9282958.44634023, 9284040.14604521, 9285292.286002418, 9287554.094771158, 9287939.563534621, 9290264.0625, 9293520.3125, 9294422.426670484, 9296495.58040614, 9307075.847670477, 9307727.687746676, 9308028.981690798, 9309482.20158215, 9309668.75, 9309949.586652324, 9310493.88914841, 9311764.37811065, 9313626.52785946, 9314979.380594742, 9320702.664600687, 9322284.060479658, 9323072.744275631, 9323320.72037773, 9331890.044631599, 9332639.005310612, 9340694.593863413, 9350271.875, 9362881.541511381, 9364048.4375, 9365742.1875, 9366695.238314386, 9367424.110658651, 9367982.8125, 9369654.375669206, 9370698.417023608, 9370888.920684757, 9374804.904583441, 9374894.839526277, 9380309.494437227, 9385778.02661083, 9401336.096236963, 9407172.693814058, 9408816.255710492, 9408934.068842247, 9408979.157005271, 9409572.627369007, 9409890.025017088, 9410087.251443928, 9410557.560721045, 9411086.359093444, 9411137.5, 9411140.11208804, 9411687.945085755, 9412526.5625, 9415066.91860311, 9416425.419328477, 9416902.894350804, 9423599.314953843, 9423614.011884611, 9424539.0625, 9433993.316672822, 9437707.979758529, 9437769.515770368, 9439198.4375, 9441701.5625, 9443537.655704029, 9446973.760018634, 9448792.1875, 9448849.240614597, 9459022.475363508, 9459289.884901468, 9459592.490368878, 9462448.024466278, 9464188.092003092, 9466147.076263933, 9469937.491879495, 9471329.276550299, 9472902.6186872, 9481228.74497947, 9481230.364913091, 9481385.9375, 9482030.17293802, 9485328.653024944, 9494556.180391073, 9499201.014765043, 9500983.85432005, 9502150.85261848, 9508705.196862247, 9527727.906882148, 9529432.8125, 9530338.127032613, 9533033.988425571, 9539045.481642988, 9555589.0625, 9571914.835463017, 9572540.319942616, 9573595.804506995, 9574215.630572073, 9574715.80189044, 9575069.602509683, 9577247.265580745, 9579565.358768858, 9583931.926673837, 9585418.253592476, 9586283.528698163, 9596092.116327941, 9596995.3125, 9601452.20952114, 9601872.44763844, 9602964.792690888, 9602971.875, 9603023.4375, 9605984.462410515, 9607015.498902708, 9610393.682772212, 9611062.2079599, 9617940.625, 9618917.1875, 9620346.875, 9620387.885172809, 9620431.98966834, 9620691.186932424, 9621895.3125, 9627513.738479378, 9644650.990375623, 9654108.676072465, 9655151.5625, 9655210.41293928, 9656896.973353546, 9660238.582242692, 9669519.509977045, 9670296.875, 9673639.136078881, 9673767.1875, 9675339.380503314, 9685315.030788302, 9685935.721789151, 9686418.619750662, 9713625.336903062, 9714503.83995087, 9717075.298106303, 9717138.821606493, 9720917.1875, 9723232.598996086, 9736232.639277328, 9737365.08454209, 9741181.141395723, 9744235.041717127, 9748417.064844081, 9749143.75, 9751929.302091159, 9763267.1875, 9763325.552336434, 9763772.578369703, 9767337.941302514, 9767343.481195169, 9767409.438192438, 9768601.5625, 9769376.09646683, 9771482.355402874, 9771492.524276445, 9772256.688434461, 9784257.8125, 9786520.201444494, 9786925.867807664, 9792441.864142813, 9797252.905572075, 9801473.905767243, 9802461.951004477, 9804360.9375, 9804443.299570912, 9809768.025405802, 9809909.375, 9817122.009532873, 9826835.136969855, 9829960.84732441, 9854340.127003308, 9856262.916288001, 9860130.575390048, 9866351.315459315, 9870437.656852102, 9870892.1875, 9877489.0625, 9885875.0, 9893104.6875, 9908150.75100771, 9908775.0, 9909977.743530696, 9911706.25, 9913275.116898073, 9914779.32333009, 9915322.129586315, 9918868.75, 9919170.786647763, 9919228.61743356, 9919848.130870888, 9925510.632878315, 9935116.739299627, 9940020.90667021, 9947678.509477483, 9961411.790381663, 9961417.693006592, 10000229.083687264, 10027567.40249781, 10029099.452464428, 10029401.320676131, 10029511.624374954, 10036495.57582952, 10038172.292535523, 10038604.915737582, 10039956.719465226, 10040819.387827342, 10043544.160620507, 10046154.6875, 10061874.94160275, 10065885.887321467, 10066562.426369628, 10066570.585595539, 10066691.216373669, 10071663.220527861, 10098666.4633537, 10116109.451007934, 10123536.28544747, 10144892.1875, 10147075.235052552, 10147479.6875, 10161299.049093818, 10171926.745292695, 10191669.28168268, 10221242.06567328, 10238401.235316908, 10284748.873967784, 10292332.007614529, 10301952.963831658, 10303282.8125, 10310637.5, 10344424.690704806, 10350861.294220509, 10362237.964365056, 10363713.33822215, 10367794.904987298, 10385817.862664059, 10399968.75, 10405101.733404577, 10405540.903944833, 10411532.781398334, 10426859.375, 10428934.42768443, 10430196.073988836, 10430701.535651475, 10433342.777411232, 10454328.90033482, 10462828.17877408, 10468864.0625, 10526614.065448787, 10529006.25, 10591234.375, 10592163.67392134, 10627887.4321914, 10628121.641077278, 10651915.347592626, 10658137.249505717, 10695713.10013935, 10704433.544132471, 10704887.535146054, 10731735.9375, 10734512.5, 10735809.946669301, 10736716.112776985, 10742411.329946855, 10747948.4375, 10748670.456720538, 10763112.935016233, 10795869.244486295, ...], [7.79410603406238, 60.33064215183847, 33.88319115227361, 108.279439950515, 6.226238911114926, 14.175513794209389, 52.36960381964256, 21.015924666563258, 8.634899988351913, 10.252615277441643, 87.93175676738396, 22.90410384094928, 25.455375350363855, 36.53348052936966, 72.30347550549052, 13.733554112820956, 45.826714616108504, 15.4733957046918, 61.16637034341953, 8.00197933012719, 8.390671620387243, 14.60650721366548, 85.76489581004171, 7.7977644558929615, 59.38563085719481, 20.557959717873572, 73.06948161999537, 38.20260961557867, 16.418442920872852, 54.47698684086781, 103.1959179103963, 19.2769357921378, 18.425352503435782, 70.26674139825911, 30.117052357290042, 19.733416071952092, 5.554188263046834, 60.748968523629046, 98.81870191566036, 180.10683311922486, 54.50522095316947, 27.908775387221105, 72.46103658594224, 53.519537909774954, 64.78936386625907, 6.369218291129104, 26.761623996901555, 6.022289158304382, 36.79056090933626, 79.94402163339502, 35.17989698785298, 42.45115723154652, 29.85461797186302, 83.5218447924118, 85.1233476053473, 17.782775539646504, 61.74822132252039, 31.73411940081268, 33.792414310753706, 9.43888096512054, 109.2740411625307, 25.610683686712505, 17.032985731379085, 73.93784213265539, 33.414242078101005, 98.5939007427719, 50.976799407941776, 42.82285744757016, 8.600236375641352, 19.085600155169015, 19.33697715083886, 84.43680051445504, 32.545466773851, 174.50201396321305, 38.419577056777555, 31.46821052740644, 36.19918265415355, 18.515242393770166, 24.531193822560084, 30.04069023928433, 28.956879272707898, 18.80889655168381, 56.43058074769261, 7.632545498855037, 8.434510737823617, 15.242028646368567, 18.891511471550547, 6.048771005420113, 45.03453905226346, 9.845520340790086, 11.670683774344496, 70.59053441805398, 72.81558876028302, 67.39689919677423, 13.714149101338696, 35.043240374406544, 39.54722665651804, 92.23112955889299, 19.500683660576357, 13.7838444944707, 6.901319396884453, 26.267879170911907, 14.01289873623242, 43.644330322283686, 32.321636746929414, 15.954251085525522, 11.069252546394308, 108.18646459527653, 10.343867578595198, 42.01315266139697, 56.35853682833569, 12.0435422663255, 5.212457538377179, 20.802302894485173, 207.58046015015327, 11.859869196254719, 67.65436843341854, 10.465942245456423, 16.26753543925593, 9.565660447570393, 79.45450697100765, 14.017227090195055, 19.85469419075774, 30.460860862755865, 17.733688864731253, 10.658584532895523, 86.34077550318217, 15.206335803454701, 13.385296952868108, 49.97685337707848, 10.133793517107119, 37.43077238502154, 16.197856265400475, 51.84512387328084, 21.32208302550572, 18.05514701942878, 82.17674113201447, 13.92391064540741, 96.25942417894441, 33.23606995552069, 39.87005972726913, 22.976066694678984, 19.35862660347097, 11.876388978440787, 13.63047603445996, 43.65531657122708, 62.87611302332305, 40.56559164698845, 13.889519528870107, 8.083324428465273, 7.646534458566202, 8.001746651797406, 38.93420112764057, 5.9816001525452815, 6.135748482345602, 102.41359680302267, 16.988479934067378, 8.26800650111076, 17.700638141673785, 31.160237884084015, 44.88557835887261, 11.595535298331283, 17.313862954935328, 82.51390601513873, 16.796689217640562, 20.97400278447809, 16.215709924800382, 31.896706087261887, 5.250280264876778, 123.39531982170195, 49.32159822498811, 36.44205788602268, 31.396726913716236, 48.014933505541435, 46.5382002158363, 87.96748870247302, 13.516923590776772, 18.605730352566848, 25.801635564422604, 39.04076592797027, 86.4670637429338, 115.50282976165886, 7.175404671998605, 6.532559184809413, 17.693829760434586, 12.173993521662062, 80.94179541856408, 42.60157854830405, 80.5256359948826, 8.450725860537899, 16.692650270180835, 96.36246020528537, 19.41111190801747, 16.756192582660866, 6.0227631347423936, 60.628735281863285, 33.55577353268232, 7.608545699635524, 28.12464845771538, 6.034671062494831, 26.706452832942837, 24.529133819220377, 36.89164262051675, 100.61235037135958, 12.396864376643268, 25.709448325601382, 9.360580245267883, 97.22100512836067, 14.148800638540115, 52.34060547064719, 17.356952580853452, 26.49500844204657, 42.06555653043171, 20.24249720414792, 8.629785867604998, 117.44062760713035, 78.99109547819256, 26.440597208874273, 134.89688167807884, 83.29474224732989, 37.796022033783615, 65.24046634870739, 72.69164076879912, 5.8037153732555185, 10.271203925165496, 18.284355989683505, 23.53265006338546, 24.41820834618874, 34.16914337109355, 40.34130405374667, 109.64347412131447, 21.55694113232324, 45.98156284562104, 62.56980632513009, 92.33180509996268, 24.33916212610965, 101.21393673849289, 52.467084461992044, 10.772341874886946, 9.329004549535952, 99.19267807987727, 21.267133249691256, 51.45133120246419, 49.016856023364525, 33.232176148233386, 16.43164403277378, 92.80743684863535, 69.629293910084, 42.66996107738691, 53.84024523889047, 11.028485465886254, 59.86318498444893, 13.772644632574092, 25.7669162015816, 31.430576071258645, 53.71829950514946, 7.89939417437296, 176.01056660784374, 24.39941191241264, 17.226892210030066, 5.57774069685332, 5.496669369488987, 60.51636795894551, 7.9998775230790615, 39.75765379644752, 90.0353239539148, 9.16877674962858, 5.184081089390018, 29.036397584135262, 38.99293622494584, 70.72174163741438, 88.17466876744486, 92.66920295811738, 20.591470884188233, 24.792912120289202, 22.335004404890668, 16.52688556834335, 6.800163688804588, 41.3231692649462, 51.42591068203377, 143.84388909739744, 124.30470630738029, 25.65383629056107, 12.952238623792681, 189.56675388872495, 5.3014792784432965, 86.34693790765677, 185.3065973911434, 98.88275201902943, 12.619981350083899, 36.78210191429331, 57.318028846719066, 32.86926166363067, 14.008438907798686, 108.94372713448307, 12.273944994888328, 77.12665431027261, 173.83160114065475, 76.11360140541805, 13.284771501600478, 91.51194113789363, 24.12413854734571, 52.63390561718848, 30.568579474985846, 45.527392829366974, 52.484520489586274, 6.098973113051022, 7.9366235003135, 46.320202524980914, 98.40625262861678, 12.524139878719774, 41.57863261085571, 6.459801449143175, 38.535338799393244, 193.9647524143936, 23.581394511994123, 45.750574137510114, 14.023880513105786, 5.3427042861444445, 29.23007721821316, 5.2017929180641955, 31.36982313882095, 217.39431525564066, 70.57012599828225, 76.72311234902025, 8.473967347102832, 11.37662325319986, 11.915777752907136, 21.53169915747875, 24.83210884795784, 90.8995658763762, 74.90654967062984, 35.28147094251091, 6.262704995805808, 45.71533149336106, 16.28862036404952, 9.003561801600712, 21.41836461875625, 81.57855836089877, 24.0313305339253, 12.788846798553742, 10.061195205099082, 51.879038740860594, 60.07228156433036, 18.74360120976465, 47.30345589172647, 23.400231373622713, 19.448886809613647, 45.58275444775605, 39.31735560013068, 71.33983873733035, 116.47247396439506, 49.40468523133719, 63.87753255106138, 73.9267062468532, 48.37003839602273, 21.527804491526712, 55.515607432722625, 64.24497846511905, 5.45712526738789, 28.526434318424975, 33.78332747214179, 9.67542411448219, 155.44918918598918, 74.29912038970481, 82.20596396524748, 42.767137787305266, 12.316345917758314, 48.59673473892745, 55.10564774268387, 28.506604505661425, 44.19957226962153, 125.92615738957052, 52.67624947292561, 20.235620508902247, 82.5119524202674, 17.2363201064643, 14.593779911542882, 8.315171176295813, 14.11305219498739, 39.719989040480876, 133.07877352672685, 54.298872000686806, 8.763188567287012, 21.296669224349586, 28.519497194600184, 17.24098610993725, 27.63549014027604, 59.25175394218404, 22.229680563152098, 9.006426881738262, 19.725734603526128, 26.106013426345562, 246.3053456660171, 47.22022618564897, 57.724890664073286, 38.66131340477151, 58.81497189843462, 45.61122099385637, 55.75792254170514, 55.59506370365515, 100.3724794223575, 30.96858727003358, 12.9476887238416, 79.23337879180653, 28.02974257768377, 35.1382601689, 85.89510273302132, 85.71077624046225, 44.99292948948936, 124.59765680126478, 54.18414879806409, 27.941170386876458, 11.002957445744146, 24.110917985130804, 15.004102260451567, 28.601577225554127, 39.126411275903166, 65.72028678173967, 93.92513065811089, 34.68252090446792, 42.45704347526454, 76.73454492731258, 23.569932927695454, 10.131080899964967, 17.307124733999352, 19.307633521091788, 7.105413274187055, 91.70358365358598, 35.34129500352376, 52.40770899674623, 14.754004933776201, 24.64518202515061, 8.977814455836844, 9.56758492604744, 59.73886828568703, 31.3624762248753, 49.91560489851498, 7.903951325565905, 60.65248759805427, 8.032633364802624, 61.91926116305962, 67.79238925741033, 34.55752890402781, 27.226438942922183, 44.834082859340214, 18.760300431931327, 6.701413372108977, 7.532632594103965, 118.27301066528217, 25.689725304751768, 26.278246386291386, 14.863104680233555, 37.10977196965635, 11.495647664683911, 113.28509687698971, 25.206743379041978, 107.04149733049478, 54.03649812096604, 37.39033771247169, 56.62672460465353, 9.7550898616053, 5.672027641584428, 22.55055257481743, 22.85536843866243, 19.365841535354328, 65.12347692274182, 13.560332927243886, 76.13595954919522, 23.85493016125783, 7.941324948687964, 17.20922504987353, 7.908701732632743, 117.03090067402925, 7.767987201560759, 24.32997050219077, 32.3492172936701, 17.374102296585924, 5.626619779913717, 25.879274442759485, 10.193495679615998, 52.379835064906736, 110.77472439940728, 11.661180519712763, 50.343169416298544, 13.146725120526892, 107.06710699982563, 94.92400898867272, 17.22736387168582, 54.14163902999745, 38.65916873007494, 13.986306636920919, 148.33371970882206, 32.36989968905949, 10.207597096470959, 45.31779163332992, 46.83060107284884, 137.81684169181378, 12.86983112563717, 59.16412005714055, 20.750662181935397, 50.150017235944716, 50.587128450551155, 30.984949539001136, 26.886457980464723, 23.73497901096726, 109.87372267242031, 7.557112877217456, 11.51816158936882, 14.160859897242082, 11.83813627452751, 15.781772839102217, 31.322743872146297, 50.21908241210821, 25.57267320047882, 5.039647065289813, 25.312423737741803, 10.242264729564367, 7.143057153861647, 13.01272143661335, 52.70901768335003, 9.815688653110737, 7.091538984310551, 18.284564444164232, 6.249644664819577, 21.606648296058612, 42.95880994928527, 38.425655876340684, 23.12077719944886, 31.63716458776593, 39.1271238713693, 69.42428564086612, 5.8469273224169545, 51.42084107461491, 127.01599790736789, 54.23440796270346, 62.56153061341874, 50.550476576484584, 103.63033917026644, 29.247201779326243, 66.8201622636512, 15.093805766942637, 18.978114474444563, 50.6449092503668, 13.889841305006817, 18.155246762102692, 28.332027834708427, 88.22274015098125, 157.4483887111972, 20.09923070967803, 43.1635130985254, 22.99529606791753, 39.41715385953964, 35.2640188926634, 57.72513411765449, 37.45577050607567, 155.84196207876596, 14.544394094778951, 35.28478000781163, 5.599261110124826, 57.08201666406578, 43.82731538935795, 9.703911447238205, 12.414990192508375, 57.83481833911694, 79.00910437909954, 44.2225834173625, 24.41362451518629, 58.430238764772284, 13.258942422106205, 85.37377935181111, 13.293054207924545, 89.77984388952376, 38.250788640728416, 11.14800374207492, 48.17367682957634, 73.12589414911822, 10.658776899769277, 50.62845026652672, 50.29551441904999, 49.91575680478289, 28.171007220270564, 13.409191488756964, 30.504005960448474, 18.107626333968266, 36.830543083950545, 23.941000687986246, 43.17043112837293, 24.966657470718417, 21.25101365215923, 54.349494467038895, 35.950495920425524, 6.955964946776829, 8.911885774624052, 20.547784624613968, 28.93057905453225, 45.480162711610376, 53.8535072790529, 9.240246435079957, 11.26648826177205, 80.80280056905981, 58.12628965050722, 58.00434296998897, 62.9811516070315, 133.95418929076482, 53.50666629730284, 9.964871363495233, 44.38552198029929, 38.99332646389517, 33.388700168694065, 114.155701438758, 45.47151523898645, 14.285098783387678, 37.87564137054297, 64.23039020327191, 23.158866625178696, 10.737829604432543, 23.26279010072401, 45.806243542276526, 30.994800201884175, 54.24809735461995, 80.35098410538654, 29.814675476438723, 11.079959990304742, 96.83396053255979, 72.7071354666964, 21.523635271940066, 6.583495754257139, 8.393512091702375, 19.11234706323037, 129.6846451059848, 56.64907084292009, 8.131711523221478, 19.667763087254734, 38.433669378590785, 83.9408939900179, 96.03688796515283, 20.482124167871074, 14.66460763487054, 5.860151383789766, 15.459565113565196, 56.98669364760404, 34.24211031986312, 7.237301724911088, 29.310370406515176, 11.741438931511404, 17.231272350819204, 70.399253204552, 8.274997397085283, 29.639216511863946, 73.94872912520403, 25.523095147329954, 18.69903499732075, 40.18540327021044, 23.853980165817788, 76.09746439802603, 69.38837281427188, 45.00069214867445, 96.16043139604541, 16.450882352852233, 162.69751875747167, 80.31279340016938, 69.3592540168422, 28.558191649878523, 26.133938225436523, 20.74945261382599, 6.3765226980139635, 18.550747411445734, 62.37773689510409, 46.72788786640291, 65.84010480394062, 66.99202421840086, 32.18087304433406, 6.209848718002817, 14.898280833122286, 54.40569876276736, 10.065703274099706, 32.64287792425774, 60.9926663720062, 111.47513203511298, 6.996046708745374, 176.7157684302541, 67.52324913745926, 17.916387449282894, 41.15597567226906, 39.57982630451096, 6.489797234709065, 19.405151369895503, 11.05942220155689, 12.265046185044756, 18.467224841095803, 48.407753451958925, 7.139286337437005, 48.872402343671666, 93.99684325099554, 23.541286491785147, 58.655016798434914, 29.6277979005748, 15.393518613148498, 80.97363101985727, 21.310038253336366, 45.342594769554644, 5.217499480069152, 6.104014761656249, 10.930929570036747, 42.804191422516574, 9.178946795508569, 12.375991642121608, 61.42905433296763, 62.586601284285045, 13.773455857363224, 63.48889124557541, 55.49195862578662, 5.785651819785999, 9.171630865524428, 13.442597195044687, 24.043686527558123, 7.875619385803192, 188.7610765900297, 41.3398727273378, 27.999908989676513, 16.191167319607906, 54.36678707887312, 105.33190201188032, 28.26345745228648, 99.59769485332944, 18.701578367790034, 58.42704293262449, 39.84129139680502, 20.61540243702353, 8.570582138050693, 28.937461160144398, 71.11354766863234, 12.115412471733995, 15.42491763391769, 19.588023541145816, 33.82707657768077, 12.79564017666814, 103.38634511902092, 170.4834163210408, 10.537743617533641, 101.53744726373228, 35.18785831216096, 27.857318143912764, 60.311874705063474, 29.48079899439086, 5.448426988755251, 30.022556829566255, 16.76319482469786, 89.10140313725371, 14.727920393220616, 19.55807074390796, 60.244327971445486, 7.200249195653298, 103.338189039869, 48.32201281112292, 7.576624594065228, 15.082313436503872, 28.694580950606717, 23.394349050929563, 28.12591356399682, 14.427190476183313, 20.546038436667814, 31.75286385503221, 14.503514930122503, 38.935223792487605, 21.667825680574065, 12.704771427729824, 12.28095547877157, 13.890253825191468, 15.08105688095937, 18.872015573668364, 7.399750874718295, 66.32507184333619, 52.222784134532404, 16.83539221465728, 126.36028170373339, 47.43960206382101, 9.73841413986254, 47.67832026545758, 64.02558493709807, 52.24895204676544, 39.66752084924325, 6.634037750820928, 52.69387017986207, 33.451264662896925, 22.185020141246962, 26.26428907472934, 19.167319609306436, 118.36670336645219, 59.49820665600432, 7.660540991727866, 15.711234354459293, 36.07342563544124, 6.01253627934837, 6.585510142814187, 116.74409969873676, 16.23691141941078, 7.016951518371544, 21.667700387661693, 15.768450170532928, 53.63659537297928, 6.216637444481397, 7.4298332241974006, 6.588878019393704, 69.31125749218188, 36.78973678538327, 46.61179615493621, 57.81268514011653, 21.844680546726735, 21.02977800937502, 8.926800784382188, 63.95307785078965, 17.31802079789886, 18.185401319695007, 72.14457035550026, 18.026748519293747, 39.03277985312988, 19.240359577172736, 70.63913492455289, 15.830626149055256, 13.893658846477981, 44.903646658046064, 24.07947104232046, 16.516436740991963, 26.948645292681285, 56.02585215116692, 66.39965801446706, 18.34949376249213, 19.533694494439686, 58.8795287615017, 57.691354284106886, 74.73756462669068, 18.15490042491099, 28.744781358455477, 48.28108041460975, 28.964594445921442, 76.94017467539858, 11.26714018781272, 65.30644304209036, 11.024226584940482, 7.046742501747208, 57.300969128689346, 55.51524124050704, 58.32503388783895, 29.758233300618716, 6.365403244581169, 9.856497741506248, 64.42078156204241, 116.6761991446769, 186.24981913596065, 48.97369627115215, 214.57404656057787, 21.251543506099914, 11.285000319119538, 21.692331101966673, 69.27841227699118, 36.941806919319646, 47.40212623268803, 156.25876979706123, 19.31138025410604, 29.03409233117908, 6.065950813993589, 9.22364590236548, 16.402533451821178, 10.619717221452252, 14.983556109050873, 39.1482581429835, 67.88367932610385, 58.6087777315659, 38.880096530583934, 19.843044225564512, 33.248818655266575, 12.358727301306962, 29.50806202724865, 40.57192933680472, 22.71780721614123, 36.88455612490066, 5.742835611312298, 7.879117845997202, 16.940618932724263, 74.12047803639769, 9.385413709211512, 57.335112748208275, 36.66585578796595, 6.211124616023508, 16.401908750949037, 11.889921885399872, 56.73117244984705, 67.14431106508364, 19.748438062758403, 5.7904358377720975, 116.95828785962834, 17.087487270011678, 6.200242047821022, 36.81964952577524, 5.034034199395407, 156.4788300199975, 95.70686622000773, 151.76895996878858, 18.941087901564213, 22.173457047391715, 13.331535976824114, 126.51180062317023, 129.7256234069407, 24.45164613539769, 9.46764803777864, 30.92458852275883, 38.58848863371408, 56.993066292048624, 61.33016888937278, 18.862274705337114, 36.834101495305674, 22.763028043569474, 65.45046334371881, 15.406610753291767, 8.102950335076912, 22.722774387433937, 78.49337466412399, 24.717131553542814, 21.47856811111358, 122.70441045510475, 23.6918849975653, 55.49013958600148, 30.529285109299103, 5.213329164501799, 14.73972362197668, 44.931410761475874, 10.299065818556437, 11.481256932704829, 21.031661208902843, 8.162706905445713, 57.320913647345094, 11.5658630497085, 16.81394471049228, 64.06380240024703, 70.56641397107049, 18.095659776030818, 9.704542831480504, 61.68210854021052, 38.18379152117347, 32.60785609564127, 27.148334697771286, 47.19739904211326, 89.88575632624176, 28.08825469083413, 10.15751767989295, 15.23935242686958, 6.835018264659967, 64.67573748046598, 93.04055004745504, 43.94556580669834, 28.515996513115525, 9.490900042278284, 17.446761273246064, 14.496641597387372, 23.409616356475627, 16.9146426411227, 106.6532463691893, 193.67914437614178, 31.132363272655333, 32.53383863209129, 41.86150068694727, 52.73197647018614, 62.46680732366151, 18.25899252935151, 10.54535763587414, 9.975959928010527, 67.66823928834792, 5.95442840662121, 15.441362343781854, 248.41401163144792, 124.15320981356945, 57.12812131219815, 64.09081413572295, 6.758158280163622, 7.831506936502077, 25.91474594577394, 15.15051031092823, 105.4675883684628, 23.786663705602795, 38.70675035491767, 34.970728209389364, 42.55653803684702, 88.34344790410591, 6.238089481332748, 75.11700372167945, 61.417477811265385, 12.216097917104086, 97.13233050429888, 15.077183507440266, 66.95747229412112, 49.902319734517924, 31.999887086081173, 90.7795317313466, 17.679121748175362, 104.71092867301162, 11.360872288993377, 9.72847403079852, 22.132819699076016, ...])
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);
([7312012.998592271, 7445140.625, 7465323.743179582, 7465549.470647769, 7467740.293780579, 7575521.658386326, 7629745.834774968, 7672572.81710555, 7673324.042807989, 7699850.919833255, 7700075.743144422, 7702155.817025485, 7702948.260178121, 7715217.1875, 7720725.693325069, 7721257.454840276, 7721617.1875, 7724250.132882075, 7728657.8125, 7732954.107536756, 7733867.379289827, 7741365.534241295, 7741790.940720803, 7742169.25761184, 7743159.29650521, 7749458.775852475, 7750993.088484641, 7754991.887499177, 7755202.470188746, 7755893.75, 7761834.375, 7768402.369886539, 7820004.237570602, 7824445.907053261, 7827676.438035132, 7831074.303439728, 7831491.052375249, 7831497.022018077, 7833226.5625, 7833299.845920152, 7833379.6875, 7833748.40559801, 7833750.0, 7835351.5625, 7835739.0625, 7835866.391960781, 7836731.585008243, 7836821.21745417, 7838879.6875, 7839850.09275142, 7841325.828186615, 7845477.1914500985, 7848137.5, 7854642.7573161395, 7862210.898661182, 7862363.087925738, 7864773.094894666, 7865146.880784746, 7865734.375, 7865789.186931559, 7866064.041130382, 7866134.207878083, 7866223.895833666, 7866496.875, 7866787.5, 7866793.4368427675, 7867185.9375, 7867322.323525201, 7867358.362001497, 7884230.469265752, 7887360.190291643, 7891014.0625, 7892315.625, 7892972.107646995, 7893271.71230785, 7898854.6875, 7899065.988769092, 7900597.576289206, 7900622.02121033, 7905168.458128006, 7906544.509442685, 7910799.309741073, 7910909.647298164, 7912925.080311297, 7912986.207146067, 7914004.823578151, 7916934.796448845, 7921943.363126325, 7922245.086343208, 7922248.988781194, 7924833.134162404, 7924903.125, 7925696.875, 7925773.447087803, 7927226.198342728, 7931535.9375, 7931609.375, 7932335.9375, 7932565.428412799, 7933087.159055216, 7933691.278209556, 7933793.624440741, 7934085.670487878, 7935499.912288099, 7935845.0509182345, 7939962.7425429, 7940023.3997781025, 7940165.973800792, 7943644.745592899, 7943647.6199126635, 7944560.112417911, 7944581.766298354, 7944633.163500547, 7945990.952041393, 7947351.5625, 7948012.922830107, 7949085.840224856, 7949160.468414692, 7949526.871733108, 7950126.827134254, 7950257.589194103, 7950538.796851276, 7950665.849935759, 7951299.163088975, 7951908.392385432, 7952057.490099805, 7952089.0625, 7952238.164413817, 7952515.494429776, 7952853.125, 7953703.942610241, 7953841.411483065, 7954238.7135928795, 7954423.4375, 7955282.729145032, 7955330.318994286, 7955795.150415823, 7956115.892311345, 7956225.0, 7956389.0625, 7956622.835783361, 7956681.717088416, 7956779.295632325, 7956951.993923121, 7956996.482515022, 7957181.25, 7957209.328450643, 7957538.029180181, 7957834.068604848, 7957887.094796565, 7960312.618143408, 7960330.669525751, 7960340.616442007, 7961950.472090334, 7962006.696071035, 7962539.0625, 7970040.792513103, 7970056.214716427, 7970406.559828742, 7976004.135542009, 7976850.407051961, 7977239.342513113, 7977475.508633997, 7979104.615341046, 7979358.950892391, 7981846.188868954, 7981920.610943601, 7982489.0625, 7983543.932439965, 7984629.704703925, 7984900.528044185, 7984953.125, 7985269.2544775, 7985381.25, 7986650.0, 7987187.600525424, 7987902.693245705, 7988199.151986279, 7989668.19495992, 7989852.841329341, 7989858.177886787, 7989891.198802067, 7990211.138845808, 7990544.034045527, 7991058.3858131105, 7991180.267522251, 7991214.0625, 7991437.626567145, 7991909.375, 7992054.985523039, 7992643.975370387, 7992732.8125, 7992860.199965422, 7992997.281538996, 7993066.534873418, 7993187.848349612, 7993190.625, 7993256.264652076, 7993517.166957644, 7993877.595060894, 7993979.588318582, 7993981.008588476, 7994015.501142719, 7994022.920725794, 7994872.5591198495, 7995286.816606958, 7995539.096805966, 7995727.032600222, 7995827.900221921, 7995892.1875, 7996100.516158617, 7996923.920918456, 7997322.382508098, 8000129.052276104, 8001844.347131206, 8002487.695743142, 8006680.429763589, 8007554.032794197, 8007787.5, 8008145.893488542, 8008310.042600497, 8008432.8125, 8008589.0625, 8008657.6727986885, 8009130.622954906, 8009342.854340081, 8010291.870232424, 8010521.354149757, 8012134.265837857, 8012508.584821993, 8013225.0, 8014821.529304135, 8015821.875, 8015833.977131611, 8016475.175415112, 8016698.125529351, 8017494.314889229, 8017806.25, 8019457.5725952275, 8019457.809661896, 8020088.649692791, 8020434.00988842, 8020473.4375, 8021251.5625, 8021600.55221531, 8021664.972918591, 8022964.470675261, 8023683.953392626, 8025392.1875, 8025440.625, 8026185.873080094, 8026200.733945283, 8027063.717848156, 8027567.991561873, 8028500.0, 8029192.1875, 8030603.875768265, 8033974.969418532, 8040368.839032595, 8041284.868293304, 8044752.449593028, 8044910.163723966, 8046451.38188921, 8050710.352918433, 8051577.0661886735, 8051918.75, 8053146.676196769, 8053224.223530077, 8057699.330509547, 8058695.281003172, 8058834.375, 8059223.4375, 8068792.1875, 8081588.467102545, 8083965.4024312105, 8087321.481755884, 8089865.986848724, 8093778.305882171, 8099640.625, 8099775.685722289, 8122964.0625, 8123256.965673195, 8124320.746794016, 8125826.480687124, 8129099.240396321, 8131608.145305281, 8132592.1875, 8135638.313650065, 8136387.456074065, 8142060.157721616, 8165681.065505197, 8167341.169119644, 8173712.194132855, 8176209.10658179, 8176688.844133434, 8176864.689930125, 8177146.777473056, 8177166.5844585905, 8177303.125, 8177541.672359994, 8177980.864210555, 8178847.087678202, 8179081.126483917, 8179494.521273284, 8179515.625, 8179517.064804885, 8179567.291420455, 8179613.3364065895, 8179814.0625, 8179829.8355969535, 8179951.700384046, 8179978.125, 8180176.3861748865, 8180193.75, 8180218.247039326, 8180802.811625765, 8180862.5, 8180865.361444677, 8180904.710321091, 8180995.3125, 8181018.685939579, 8181356.521750871, 8181409.968146698, 8181495.6035697125, 8181692.1875, 8181915.963308501, 8182015.77861857, 8182116.076760657, 8182497.941360674, 8182722.2836885, 8183440.100228797, 8183480.851893409, 8184145.14914399, 8184814.026852116, 8185748.733651904, 8192834.688595981, 8194129.272542183, 8199282.2880576635, 8204768.67534855, 8206525.843577115, 8207096.166387287, 8212172.628065154, 8213404.6875, 8217431.25, 8225042.921775125, 8228275.0, 8229382.484555302, 8229533.642358134, 8229962.5, 8230783.093014352, 8233879.931394361, 8235421.626942305, 8238769.407066347, 8240871.665756581, 8240899.981201548, 8241724.876792078, 8242119.03090372, 8244369.601510195, 8244676.5625, 8276045.203917272, 8283126.5625, 8283835.9375, 8285287.880641623, 8291957.550610567, 8293389.739172359, 8296987.621491091, 8300151.334897662, 8304638.707547107, 8305154.6875, 8306234.375, 8307624.99905973, 8310093.467306458, 8310151.5625, 8310184.375, 8311007.17647374, 8312866.194914637, 8313836.432466279, 8315824.905676327, 8316445.366182795, 8316929.4517262345, 8319814.0625, 8322343.542863556, 8329121.211239185, 8331247.679242769, 8335961.9800806595, 8340048.8602423575, 8354280.951769816, 8355216.6348470915, 8371988.644832183, 8379268.669583221, 8379373.026420946, 8379694.614983153, 8380498.301936873, 8380714.119723054, 8381574.685860981, 8381587.5, 8382567.1875, 8383012.5, 8383046.875, 8393141.916955382, 8394166.329123104, 8394667.429832468, 8396349.620889302, 8400611.855781216, 8403776.402530672, 8404349.974489022, 8406357.755817454, 8407468.75, 8407654.644561265, 8407895.19846777, 8408237.042838696, 8410253.588712085, 8412761.50503065, 8418646.793695765, 8418890.99630625, 8421354.70382561, 8427226.5625, 8432056.004260771, 8434731.598090122, 8434888.984933522, 8435131.522601217, 8435777.67549473, 8436026.5625, 8436063.803555591, 8437777.377727617, 8439048.9449528, 8441372.686436154, 8444937.438633911, 8448468.5826808, 8448775.473553132, 8450676.5625, 8451768.699920569, 8453036.194922669, 8454605.799970392, 8456845.579210132, 8461050.0, 8474358.367966138, 8480134.375, 8482544.511347046, 8482850.918176714, 8491413.549296297, 8492598.4375, 8495709.375, 8496084.294552928, 8498124.355704503, 8499550.817596426, 8501067.924146308, 8502830.930811869, 8503282.612975094, 8512659.558499362, 8519530.3376544, 8523076.965401458, 8531289.114115093, 8535990.226819282, 8537912.72329922, 8538381.25, 8539499.094372049, 8539526.5625, 8539656.25, 8539815.156056874, 8540499.399160549, 8541219.211895604, 8542132.252601257, 8542240.224850329, 8542257.873107234, 8542419.569069477, 8543573.967998873, 8544680.833371913, 8547063.944296459, 8556354.395613002, 8559474.284595503, 8561587.99015168, 8561600.772345712, 8563481.25, 8564139.496139448, 8566646.413656212, 8570762.337954702, 8575585.95271562, 8581486.162599932, 8586727.975170834, 8591497.74449077, 8591846.875, 8595892.1875, 8597340.94144265, 8597343.75, 8599382.245692244, 8601091.697409952, 8618943.75, 8623617.680877058, 8625790.763916723, 8635051.5625, 8647727.849584732, 8659140.780191105, 8663981.25, 8667680.569090711, 8667932.314384338, 8669295.3125, 8700824.29627596, 8701193.979034387, 8730131.25, 8730782.628923897, 8732896.891870938, 8734054.51811618, 8734548.17550693, 8735798.34884794, 8743582.511264997, 8749734.067532605, 8758620.18314535, 8759168.986219825, 8785870.091413118, 8792907.248843446, 8794965.829268403, 8812241.734003708, 8814731.25, 8829585.76789551, 8830235.824635273, 8832251.375656199, 8832689.97359217, 8833643.831558239, 8834741.56896497, 8841338.80496955, 8843616.147120314, 8844323.322471727, 8844330.704495616, 8846804.547288164, 8847165.913083239, 8848014.475353071, 8849125.0, 8849342.614591662, 8850487.076122822, 8857204.6875, 8857262.494735174, 8859603.560569778, 8870246.875, 8870414.546568226, 8874480.850386823, 8879252.80761438, 8884143.209845945, 8899893.072864937, 8900404.6875, 8902349.937047541, 8907224.415999193, 8931972.642079145, 8934274.445444264, 8947718.443708884, 8952792.834574658, 8953392.704107154, 8954242.1875, 8956859.230281591, 8961446.222915307, 8965323.532303002, 8968760.57596445, 8977432.500396807, 8984151.5625, 8984546.875, 8984585.9375, 8985978.704326686, 8986060.829258991, 8986265.625, 8986796.604656018, 8987212.5, 8987760.514560074, 8988491.034973923, 8989513.192333424, 8990046.875, 8990195.3125, 8991349.832622278, 8994269.802562285, 9012422.712836608, 9013174.475314315, 9017201.70721177, 9017655.737909384, 9017896.875, 9019117.101725169, 9020045.325446658, 9020151.253720887, 9022386.683333648, 9024830.927741814, 9025071.875, 9025182.502618194, 9030037.82902246, 9030526.544370288, 9033465.010873092, 9035567.1875, 9035670.952190857, 9036275.0, 9039691.570174225, 9040396.875, 9042406.039579315, 9046257.287884636, 9050562.710049924, 9050870.269821886, 9053069.643190978, 9054021.333366174, 9056465.024710761, 9060718.75, 9062186.72875818, 9065982.672967551, 9066003.015189199, 9066639.14951001, 9067115.785913855, 9067833.867893917, 9067929.850216009, 9068745.3125, 9069016.181973549, 9069600.0, 9074661.602356188, 9075728.213922804, 9085590.417609937, 9090599.754653268, 9092103.989272872, 9102964.42791899, 9106515.073094208, 9106723.810956696, 9106901.5625, 9107601.869178109, 9109638.797877181, 9109693.410815189, 9109757.76710946, 9110293.75, 9110368.75, 9111905.75917211, 9113554.074775321, 9114054.65673679, 9115208.170433184, 9118906.25, 9119632.484826094, 9119911.526102742, 9121122.07188535, 9121494.535387188, 9122774.57615324, 9123628.044209918, 9123763.757696861, 9123790.247399323, 9123821.77664131, 9124050.0, 9126082.590774892, 9130693.142308617, 9131392.112903852, 9135411.542598436, 9141597.004587684, 9143045.001294846, 9145021.875, 9148400.423112955, 9149021.15061984, 9150202.13672779, 9150409.869070861, 9150523.4375, 9151667.165537806, 9151668.44028781, 9152150.755069556, 9152274.827144044, 9152686.665420013, 9152848.4375, 9153124.564058904, 9153291.7326123, 9153431.208523327, 9153483.988236092, 9153501.5625, 9153580.034162944, 9153944.046446327, 9154531.439535782, 9154999.687286478, 9155026.195467696, 9155118.032916687, 9155415.564585201, 9155952.381430933, 9156041.331487408, 9159035.9375, 9159664.0625, 9160776.5625, 9161740.173605883, 9161834.843825024, 9162438.594683738, 9162984.352874298, 9164023.4375, 9164586.694620783, 9164886.302024521, 9175382.8125, 9175779.467324266, 9176922.937944783, 9177807.13101722, 9178484.975250013, 9181863.109516686, 9193954.898881968, 9200229.218267301, 9206317.204740528, 9206335.199191155, 9207510.893369919, 9207967.655443033, 9212244.44421752, 9212381.25, 9212800.067414416, 9213070.961674819, 9216609.301368613, 9219616.870923677, 9220228.125, 9221012.692773847, 9223717.301242026, 9228748.404570488, 9229830.731450984, 9233402.984013304, 9234653.668732129, 9234762.651669027, 9235738.932851499, 9237585.733343067, 9238284.18902058, 9241467.86211565, 9243312.599331211, 9245034.375, 9247376.19188565, 9253685.9375, 9256212.172290368, 9256260.547155233, 9261410.74230108, 9264394.854511429, 9267495.03509269, 9267591.320136659, 9268135.843802523, 9269479.6875, 9269847.6791903, 9273511.230801182, 9274901.263172349, 9277627.001895824, 9278310.92415375, 9281046.58682595, 9282958.44634023, 9284040.14604521, 9285292.286002418, 9287554.094771158, 9287939.563534621, 9290264.0625, 9293520.3125, 9294422.426670484, 9296495.58040614, 9307075.847670477, 9307727.687746676, 9308028.981690798, 9309482.20158215, 9309668.75, 9309949.586652324, 9310493.88914841, 9311764.37811065, 9313626.52785946, 9314979.380594742, 9320702.664600687, 9322284.060479658, 9323072.744275631, 9323320.72037773, 9331890.044631599, 9332639.005310612, 9340694.593863413, 9350271.875, 9362881.541511381, 9364048.4375, 9365742.1875, 9366695.238314386, 9367424.110658651, 9367982.8125, 9369654.375669206, 9370698.417023608, 9370888.920684757, 9374804.904583441, 9374894.839526277, 9380309.494437227, 9385778.02661083, 9401336.096236963, 9407172.693814058, 9408816.255710492, 9408934.068842247, 9408979.157005271, 9409572.627369007, 9409890.025017088, 9410087.251443928, 9410557.560721045, 9411086.359093444, 9411137.5, 9411140.11208804, 9411687.945085755, 9412526.5625, 9415066.91860311, 9416425.419328477, 9416902.894350804, 9423599.314953843, 9423614.011884611, 9424539.0625, 9433993.316672822, 9437707.979758529, 9437769.515770368, 9439198.4375, 9441701.5625, 9443537.655704029, 9446973.760018634, 9448792.1875, 9448849.240614597, 9459022.475363508, 9459289.884901468, 9459592.490368878, 9462448.024466278, 9464188.092003092, 9466147.076263933, 9469937.491879495, 9471329.276550299, 9472902.6186872, 9481228.74497947, 9481230.364913091, 9481385.9375, 9482030.17293802, 9485328.653024944, 9494556.180391073, 9499201.014765043, 9500983.85432005, 9502150.85261848, 9508705.196862247, 9527727.906882148, 9529432.8125, 9530338.127032613, 9533033.988425571, 9539045.481642988, 9555589.0625, 9571914.835463017, 9572540.319942616, 9573595.804506995, 9574215.630572073, 9574715.80189044, 9575069.602509683, 9577247.265580745, 9579565.358768858, 9583931.926673837, 9585418.253592476, 9586283.528698163, 9596092.116327941, 9596995.3125, 9601452.20952114, 9601872.44763844, 9602964.792690888, 9602971.875, 9603023.4375, 9605984.462410515, 9607015.498902708, 9610393.682772212, 9611062.2079599, 9617940.625, 9618917.1875, 9620346.875, 9620387.885172809, 9620431.98966834, 9620691.186932424, 9621895.3125, 9627513.738479378, 9644650.990375623, 9654108.676072465, 9655151.5625, 9655210.41293928, 9656896.973353546, 9660238.582242692, 9669519.509977045, 9670296.875, 9673639.136078881, 9673767.1875, 9675339.380503314, 9685315.030788302, 9685935.721789151, 9686418.619750662, 9713625.336903062, 9714503.83995087, 9717075.298106303, 9717138.821606493, 9720917.1875, 9723232.598996086, 9736232.639277328, 9737365.08454209, 9741181.141395723, 9744235.041717127, 9748417.064844081, 9749143.75, 9751929.302091159, 9763267.1875, 9763325.552336434, 9763772.578369703, 9767337.941302514, 9767343.481195169, 9767409.438192438, 9768601.5625, 9769376.09646683, 9771482.355402874, 9771492.524276445, 9772256.688434461, 9784257.8125, 9786520.201444494, 9786925.867807664, 9792441.864142813, 9797252.905572075, 9801473.905767243, 9802461.951004477, 9804360.9375, 9804443.299570912, 9809768.025405802, 9809909.375, 9817122.009532873, 9826835.136969855, 9829960.84732441, 9854340.127003308, 9856262.916288001, 9860130.575390048, 9866351.315459315, 9870437.656852102, 9870892.1875, 9877489.0625, 9885875.0, 9893104.6875, 9908150.75100771, 9908775.0, 9909977.743530696, 9911706.25, 9913275.116898073, 9914779.32333009, 9915322.129586315, 9918868.75, 9919170.786647763, 9919228.61743356, 9919848.130870888, 9925510.632878315, 9935116.739299627, 9940020.90667021, 9947678.509477483, 9961411.790381663, 9961417.693006592, 10000229.083687264, 10027567.40249781, 10029099.452464428, 10029401.320676131, 10029511.624374954, 10036495.57582952, 10038172.292535523, 10038604.915737582, 10039956.719465226, 10040819.387827342, 10043544.160620507, 10046154.6875, 10061874.94160275, 10065885.887321467, 10066562.426369628, 10066570.585595539, 10066691.216373669, 10071663.220527861, 10098666.4633537, 10116109.451007934, 10123536.28544747, 10144892.1875, 10147075.235052552, 10147479.6875, 10161299.049093818, 10171926.745292695, 10191669.28168268, 10221242.06567328, 10238401.235316908, 10284748.873967784, 10292332.007614529, 10301952.963831658, 10303282.8125, 10310637.5, 10344424.690704806, 10350861.294220509, 10362237.964365056, 10363713.33822215, 10367794.904987298, 10385817.862664059, 10399968.75, 10405101.733404577, 10405540.903944833, 10411532.781398334, 10426859.375, 10428934.42768443, 10430196.073988836, 10430701.535651475, 10433342.777411232, 10454328.90033482, 10462828.17877408, 10468864.0625, 10526614.065448787, 10529006.25, 10591234.375, 10592163.67392134, 10627887.4321914, 10628121.641077278, 10651915.347592626, 10658137.249505717, 10695713.10013935, 10704433.544132471, 10704887.535146054, 10731735.9375, 10734512.5, 10735809.946669301, 10736716.112776985, 10742411.329946855, 10747948.4375, 10748670.456720538, 10763112.935016233, 10795869.244486295, ...], [7.79410603406238, 60.33064215183847, 33.88319115227361, 108.279439950515, 6.226238911114926, 14.175513794209389, 52.36960381964256, 21.015924666563258, 8.634899988351913, 10.252615277441643, 87.93175676738396, 22.90410384094928, 25.455375350363855, 36.53348052936966, 72.30347550549052, 13.733554112820956, 45.826714616108504, 15.4733957046918, 61.16637034341953, 8.00197933012719, 8.390671620387243, 14.60650721366548, 85.76489581004171, 7.7977644558929615, 59.38563085719481, 20.557959717873572, 73.06948161999537, 38.20260961557867, 16.418442920872852, 54.47698684086781, 103.1959179103963, 19.2769357921378, 18.425352503435782, 70.26674139825911, 30.117052357290042, 19.733416071952092, 5.554188263046834, 60.748968523629046, 98.81870191566036, 180.10683311922486, 54.50522095316947, 27.908775387221105, 72.46103658594224, 53.519537909774954, 64.78936386625907, 6.369218291129104, 26.761623996901555, 6.022289158304382, 36.79056090933626, 79.94402163339502, 35.17989698785298, 42.45115723154652, 29.85461797186302, 83.5218447924118, 85.1233476053473, 17.782775539646504, 61.74822132252039, 31.73411940081268, 33.792414310753706, 9.43888096512054, 109.2740411625307, 25.610683686712505, 17.032985731379085, 73.93784213265539, 33.414242078101005, 98.5939007427719, 50.976799407941776, 42.82285744757016, 8.600236375641352, 19.085600155169015, 19.33697715083886, 84.43680051445504, 32.545466773851, 174.50201396321305, 38.419577056777555, 31.46821052740644, 36.19918265415355, 18.515242393770166, 24.531193822560084, 30.04069023928433, 28.956879272707898, 18.80889655168381, 56.43058074769261, 7.632545498855037, 8.434510737823617, 15.242028646368567, 18.891511471550547, 6.048771005420113, 45.03453905226346, 9.845520340790086, 11.670683774344496, 70.59053441805398, 72.81558876028302, 67.39689919677423, 13.714149101338696, 35.043240374406544, 39.54722665651804, 92.23112955889299, 19.500683660576357, 13.7838444944707, 6.901319396884453, 26.267879170911907, 14.01289873623242, 43.644330322283686, 32.321636746929414, 15.954251085525522, 11.069252546394308, 108.18646459527653, 10.343867578595198, 42.01315266139697, 56.35853682833569, 12.0435422663255, 5.212457538377179, 20.802302894485173, 207.58046015015327, 11.859869196254719, 67.65436843341854, 10.465942245456423, 16.26753543925593, 9.565660447570393, 79.45450697100765, 14.017227090195055, 19.85469419075774, 30.460860862755865, 17.733688864731253, 10.658584532895523, 86.34077550318217, 15.206335803454701, 13.385296952868108, 49.97685337707848, 10.133793517107119, 37.43077238502154, 16.197856265400475, 51.84512387328084, 21.32208302550572, 18.05514701942878, 82.17674113201447, 13.92391064540741, 96.25942417894441, 33.23606995552069, 39.87005972726913, 22.976066694678984, 19.35862660347097, 11.876388978440787, 13.63047603445996, 43.65531657122708, 62.87611302332305, 40.56559164698845, 13.889519528870107, 8.083324428465273, 7.646534458566202, 8.001746651797406, 38.93420112764057, 5.9816001525452815, 6.135748482345602, 102.41359680302267, 16.988479934067378, 8.26800650111076, 17.700638141673785, 31.160237884084015, 44.88557835887261, 11.595535298331283, 17.313862954935328, 82.51390601513873, 16.796689217640562, 20.97400278447809, 16.215709924800382, 31.896706087261887, 5.250280264876778, 123.39531982170195, 49.32159822498811, 36.44205788602268, 31.396726913716236, 48.014933505541435, 46.5382002158363, 87.96748870247302, 13.516923590776772, 18.605730352566848, 25.801635564422604, 39.04076592797027, 86.4670637429338, 115.50282976165886, 7.175404671998605, 6.532559184809413, 17.693829760434586, 12.173993521662062, 80.94179541856408, 42.60157854830405, 80.5256359948826, 8.450725860537899, 16.692650270180835, 96.36246020528537, 19.41111190801747, 16.756192582660866, 6.0227631347423936, 60.628735281863285, 33.55577353268232, 7.608545699635524, 28.12464845771538, 6.034671062494831, 26.706452832942837, 24.529133819220377, 36.89164262051675, 100.61235037135958, 12.396864376643268, 25.709448325601382, 9.360580245267883, 97.22100512836067, 14.148800638540115, 52.34060547064719, 17.356952580853452, 26.49500844204657, 42.06555653043171, 20.24249720414792, 8.629785867604998, 117.44062760713035, 78.99109547819256, 26.440597208874273, 134.89688167807884, 83.29474224732989, 37.796022033783615, 65.24046634870739, 72.69164076879912, 5.8037153732555185, 10.271203925165496, 18.284355989683505, 23.53265006338546, 24.41820834618874, 34.16914337109355, 40.34130405374667, 109.64347412131447, 21.55694113232324, 45.98156284562104, 62.56980632513009, 92.33180509996268, 24.33916212610965, 101.21393673849289, 52.467084461992044, 10.772341874886946, 9.329004549535952, 99.19267807987727, 21.267133249691256, 51.45133120246419, 49.016856023364525, 33.232176148233386, 16.43164403277378, 92.80743684863535, 69.629293910084, 42.66996107738691, 53.84024523889047, 11.028485465886254, 59.86318498444893, 13.772644632574092, 25.7669162015816, 31.430576071258645, 53.71829950514946, 7.89939417437296, 176.01056660784374, 24.39941191241264, 17.226892210030066, 5.57774069685332, 5.496669369488987, 60.51636795894551, 7.9998775230790615, 39.75765379644752, 90.0353239539148, 9.16877674962858, 5.184081089390018, 29.036397584135262, 38.99293622494584, 70.72174163741438, 88.17466876744486, 92.66920295811738, 20.591470884188233, 24.792912120289202, 22.335004404890668, 16.52688556834335, 6.800163688804588, 41.3231692649462, 51.42591068203377, 143.84388909739744, 124.30470630738029, 25.65383629056107, 12.952238623792681, 189.56675388872495, 5.3014792784432965, 86.34693790765677, 185.3065973911434, 98.88275201902943, 12.619981350083899, 36.78210191429331, 57.318028846719066, 32.86926166363067, 14.008438907798686, 108.94372713448307, 12.273944994888328, 77.12665431027261, 173.83160114065475, 76.11360140541805, 13.284771501600478, 91.51194113789363, 24.12413854734571, 52.63390561718848, 30.568579474985846, 45.527392829366974, 52.484520489586274, 6.098973113051022, 7.9366235003135, 46.320202524980914, 98.40625262861678, 12.524139878719774, 41.57863261085571, 6.459801449143175, 38.535338799393244, 193.9647524143936, 23.581394511994123, 45.750574137510114, 14.023880513105786, 5.3427042861444445, 29.23007721821316, 5.2017929180641955, 31.36982313882095, 217.39431525564066, 70.57012599828225, 76.72311234902025, 8.473967347102832, 11.37662325319986, 11.915777752907136, 21.53169915747875, 24.83210884795784, 90.8995658763762, 74.90654967062984, 35.28147094251091, 6.262704995805808, 45.71533149336106, 16.28862036404952, 9.003561801600712, 21.41836461875625, 81.57855836089877, 24.0313305339253, 12.788846798553742, 10.061195205099082, 51.879038740860594, 60.07228156433036, 18.74360120976465, 47.30345589172647, 23.400231373622713, 19.448886809613647, 45.58275444775605, 39.31735560013068, 71.33983873733035, 116.47247396439506, 49.40468523133719, 63.87753255106138, 73.9267062468532, 48.37003839602273, 21.527804491526712, 55.515607432722625, 64.24497846511905, 5.45712526738789, 28.526434318424975, 33.78332747214179, 9.67542411448219, 155.44918918598918, 74.29912038970481, 82.20596396524748, 42.767137787305266, 12.316345917758314, 48.59673473892745, 55.10564774268387, 28.506604505661425, 44.19957226962153, 125.92615738957052, 52.67624947292561, 20.235620508902247, 82.5119524202674, 17.2363201064643, 14.593779911542882, 8.315171176295813, 14.11305219498739, 39.719989040480876, 133.07877352672685, 54.298872000686806, 8.763188567287012, 21.296669224349586, 28.519497194600184, 17.24098610993725, 27.63549014027604, 59.25175394218404, 22.229680563152098, 9.006426881738262, 19.725734603526128, 26.106013426345562, 246.3053456660171, 47.22022618564897, 57.724890664073286, 38.66131340477151, 58.81497189843462, 45.61122099385637, 55.75792254170514, 55.59506370365515, 100.3724794223575, 30.96858727003358, 12.9476887238416, 79.23337879180653, 28.02974257768377, 35.1382601689, 85.89510273302132, 85.71077624046225, 44.99292948948936, 124.59765680126478, 54.18414879806409, 27.941170386876458, 11.002957445744146, 24.110917985130804, 15.004102260451567, 28.601577225554127, 39.126411275903166, 65.72028678173967, 93.92513065811089, 34.68252090446792, 42.45704347526454, 76.73454492731258, 23.569932927695454, 10.131080899964967, 17.307124733999352, 19.307633521091788, 7.105413274187055, 91.70358365358598, 35.34129500352376, 52.40770899674623, 14.754004933776201, 24.64518202515061, 8.977814455836844, 9.56758492604744, 59.73886828568703, 31.3624762248753, 49.91560489851498, 7.903951325565905, 60.65248759805427, 8.032633364802624, 61.91926116305962, 67.79238925741033, 34.55752890402781, 27.226438942922183, 44.834082859340214, 18.760300431931327, 6.701413372108977, 7.532632594103965, 118.27301066528217, 25.689725304751768, 26.278246386291386, 14.863104680233555, 37.10977196965635, 11.495647664683911, 113.28509687698971, 25.206743379041978, 107.04149733049478, 54.03649812096604, 37.39033771247169, 56.62672460465353, 9.7550898616053, 5.672027641584428, 22.55055257481743, 22.85536843866243, 19.365841535354328, 65.12347692274182, 13.560332927243886, 76.13595954919522, 23.85493016125783, 7.941324948687964, 17.20922504987353, 7.908701732632743, 117.03090067402925, 7.767987201560759, 24.32997050219077, 32.3492172936701, 17.374102296585924, 5.626619779913717, 25.879274442759485, 10.193495679615998, 52.379835064906736, 110.77472439940728, 11.661180519712763, 50.343169416298544, 13.146725120526892, 107.06710699982563, 94.92400898867272, 17.22736387168582, 54.14163902999745, 38.65916873007494, 13.986306636920919, 148.33371970882206, 32.36989968905949, 10.207597096470959, 45.31779163332992, 46.83060107284884, 137.81684169181378, 12.86983112563717, 59.16412005714055, 20.750662181935397, 50.150017235944716, 50.587128450551155, 30.984949539001136, 26.886457980464723, 23.73497901096726, 109.87372267242031, 7.557112877217456, 11.51816158936882, 14.160859897242082, 11.83813627452751, 15.781772839102217, 31.322743872146297, 50.21908241210821, 25.57267320047882, 5.039647065289813, 25.312423737741803, 10.242264729564367, 7.143057153861647, 13.01272143661335, 52.70901768335003, 9.815688653110737, 7.091538984310551, 18.284564444164232, 6.249644664819577, 21.606648296058612, 42.95880994928527, 38.425655876340684, 23.12077719944886, 31.63716458776593, 39.1271238713693, 69.42428564086612, 5.8469273224169545, 51.42084107461491, 127.01599790736789, 54.23440796270346, 62.56153061341874, 50.550476576484584, 103.63033917026644, 29.247201779326243, 66.8201622636512, 15.093805766942637, 18.978114474444563, 50.6449092503668, 13.889841305006817, 18.155246762102692, 28.332027834708427, 88.22274015098125, 157.4483887111972, 20.09923070967803, 43.1635130985254, 22.99529606791753, 39.41715385953964, 35.2640188926634, 57.72513411765449, 37.45577050607567, 155.84196207876596, 14.544394094778951, 35.28478000781163, 5.599261110124826, 57.08201666406578, 43.82731538935795, 9.703911447238205, 12.414990192508375, 57.83481833911694, 79.00910437909954, 44.2225834173625, 24.41362451518629, 58.430238764772284, 13.258942422106205, 85.37377935181111, 13.293054207924545, 89.77984388952376, 38.250788640728416, 11.14800374207492, 48.17367682957634, 73.12589414911822, 10.658776899769277, 50.62845026652672, 50.29551441904999, 49.91575680478289, 28.171007220270564, 13.409191488756964, 30.504005960448474, 18.107626333968266, 36.830543083950545, 23.941000687986246, 43.17043112837293, 24.966657470718417, 21.25101365215923, 54.349494467038895, 35.950495920425524, 6.955964946776829, 8.911885774624052, 20.547784624613968, 28.93057905453225, 45.480162711610376, 53.8535072790529, 9.240246435079957, 11.26648826177205, 80.80280056905981, 58.12628965050722, 58.00434296998897, 62.9811516070315, 133.95418929076482, 53.50666629730284, 9.964871363495233, 44.38552198029929, 38.99332646389517, 33.388700168694065, 114.155701438758, 45.47151523898645, 14.285098783387678, 37.87564137054297, 64.23039020327191, 23.158866625178696, 10.737829604432543, 23.26279010072401, 45.806243542276526, 30.994800201884175, 54.24809735461995, 80.35098410538654, 29.814675476438723, 11.079959990304742, 96.83396053255979, 72.7071354666964, 21.523635271940066, 6.583495754257139, 8.393512091702375, 19.11234706323037, 129.6846451059848, 56.64907084292009, 8.131711523221478, 19.667763087254734, 38.433669378590785, 83.9408939900179, 96.03688796515283, 20.482124167871074, 14.66460763487054, 5.860151383789766, 15.459565113565196, 56.98669364760404, 34.24211031986312, 7.237301724911088, 29.310370406515176, 11.741438931511404, 17.231272350819204, 70.399253204552, 8.274997397085283, 29.639216511863946, 73.94872912520403, 25.523095147329954, 18.69903499732075, 40.18540327021044, 23.853980165817788, 76.09746439802603, 69.38837281427188, 45.00069214867445, 96.16043139604541, 16.450882352852233, 162.69751875747167, 80.31279340016938, 69.3592540168422, 28.558191649878523, 26.133938225436523, 20.74945261382599, 6.3765226980139635, 18.550747411445734, 62.37773689510409, 46.72788786640291, 65.84010480394062, 66.99202421840086, 32.18087304433406, 6.209848718002817, 14.898280833122286, 54.40569876276736, 10.065703274099706, 32.64287792425774, 60.9926663720062, 111.47513203511298, 6.996046708745374, 176.7157684302541, 67.52324913745926, 17.916387449282894, 41.15597567226906, 39.57982630451096, 6.489797234709065, 19.405151369895503, 11.05942220155689, 12.265046185044756, 18.467224841095803, 48.407753451958925, 7.139286337437005, 48.872402343671666, 93.99684325099554, 23.541286491785147, 58.655016798434914, 29.6277979005748, 15.393518613148498, 80.97363101985727, 21.310038253336366, 45.342594769554644, 5.217499480069152, 6.104014761656249, 10.930929570036747, 42.804191422516574, 9.178946795508569, 12.375991642121608, 61.42905433296763, 62.586601284285045, 13.773455857363224, 63.48889124557541, 55.49195862578662, 5.785651819785999, 9.171630865524428, 13.442597195044687, 24.043686527558123, 7.875619385803192, 188.7610765900297, 41.3398727273378, 27.999908989676513, 16.191167319607906, 54.36678707887312, 105.33190201188032, 28.26345745228648, 99.59769485332944, 18.701578367790034, 58.42704293262449, 39.84129139680502, 20.61540243702353, 8.570582138050693, 28.937461160144398, 71.11354766863234, 12.115412471733995, 15.42491763391769, 19.588023541145816, 33.82707657768077, 12.79564017666814, 103.38634511902092, 170.4834163210408, 10.537743617533641, 101.53744726373228, 35.18785831216096, 27.857318143912764, 60.311874705063474, 29.48079899439086, 5.448426988755251, 30.022556829566255, 16.76319482469786, 89.10140313725371, 14.727920393220616, 19.55807074390796, 60.244327971445486, 7.200249195653298, 103.338189039869, 48.32201281112292, 7.576624594065228, 15.082313436503872, 28.694580950606717, 23.394349050929563, 28.12591356399682, 14.427190476183313, 20.546038436667814, 31.75286385503221, 14.503514930122503, 38.935223792487605, 21.667825680574065, 12.704771427729824, 12.28095547877157, 13.890253825191468, 15.08105688095937, 18.872015573668364, 7.399750874718295, 66.32507184333619, 52.222784134532404, 16.83539221465728, 126.36028170373339, 47.43960206382101, 9.73841413986254, 47.67832026545758, 64.02558493709807, 52.24895204676544, 39.66752084924325, 6.634037750820928, 52.69387017986207, 33.451264662896925, 22.185020141246962, 26.26428907472934, 19.167319609306436, 118.36670336645219, 59.49820665600432, 7.660540991727866, 15.711234354459293, 36.07342563544124, 6.01253627934837, 6.585510142814187, 116.74409969873676, 16.23691141941078, 7.016951518371544, 21.667700387661693, 15.768450170532928, 53.63659537297928, 6.216637444481397, 7.4298332241974006, 6.588878019393704, 69.31125749218188, 36.78973678538327, 46.61179615493621, 57.81268514011653, 21.844680546726735, 21.02977800937502, 8.926800784382188, 63.95307785078965, 17.31802079789886, 18.185401319695007, 72.14457035550026, 18.026748519293747, 39.03277985312988, 19.240359577172736, 70.63913492455289, 15.830626149055256, 13.893658846477981, 44.903646658046064, 24.07947104232046, 16.516436740991963, 26.948645292681285, 56.02585215116692, 66.39965801446706, 18.34949376249213, 19.533694494439686, 58.8795287615017, 57.691354284106886, 74.73756462669068, 18.15490042491099, 28.744781358455477, 48.28108041460975, 28.964594445921442, 76.94017467539858, 11.26714018781272, 65.30644304209036, 11.024226584940482, 7.046742501747208, 57.300969128689346, 55.51524124050704, 58.32503388783895, 29.758233300618716, 6.365403244581169, 9.856497741506248, 64.42078156204241, 116.6761991446769, 186.24981913596065, 48.97369627115215, 214.57404656057787, 21.251543506099914, 11.285000319119538, 21.692331101966673, 69.27841227699118, 36.941806919319646, 47.40212623268803, 156.25876979706123, 19.31138025410604, 29.03409233117908, 6.065950813993589, 9.22364590236548, 16.402533451821178, 10.619717221452252, 14.983556109050873, 39.1482581429835, 67.88367932610385, 58.6087777315659, 38.880096530583934, 19.843044225564512, 33.248818655266575, 12.358727301306962, 29.50806202724865, 40.57192933680472, 22.71780721614123, 36.88455612490066, 5.742835611312298, 7.879117845997202, 16.940618932724263, 74.12047803639769, 9.385413709211512, 57.335112748208275, 36.66585578796595, 6.211124616023508, 16.401908750949037, 11.889921885399872, 56.73117244984705, 67.14431106508364, 19.748438062758403, 5.7904358377720975, 116.95828785962834, 17.087487270011678, 6.200242047821022, 36.81964952577524, 5.034034199395407, 156.4788300199975, 95.70686622000773, 151.76895996878858, 18.941087901564213, 22.173457047391715, 13.331535976824114, 126.51180062317023, 129.7256234069407, 24.45164613539769, 9.46764803777864, 30.92458852275883, 38.58848863371408, 56.993066292048624, 61.33016888937278, 18.862274705337114, 36.834101495305674, 22.763028043569474, 65.45046334371881, 15.406610753291767, 8.102950335076912, 22.722774387433937, 78.49337466412399, 24.717131553542814, 21.47856811111358, 122.70441045510475, 23.6918849975653, 55.49013958600148, 30.529285109299103, 5.213329164501799, 14.73972362197668, 44.931410761475874, 10.299065818556437, 11.481256932704829, 21.031661208902843, 8.162706905445713, 57.320913647345094, 11.5658630497085, 16.81394471049228, 64.06380240024703, 70.56641397107049, 18.095659776030818, 9.704542831480504, 61.68210854021052, 38.18379152117347, 32.60785609564127, 27.148334697771286, 47.19739904211326, 89.88575632624176, 28.08825469083413, 10.15751767989295, 15.23935242686958, 6.835018264659967, 64.67573748046598, 93.04055004745504, 43.94556580669834, 28.515996513115525, 9.490900042278284, 17.446761273246064, 14.496641597387372, 23.409616356475627, 16.9146426411227, 106.6532463691893, 193.67914437614178, 31.132363272655333, 32.53383863209129, 41.86150068694727, 52.73197647018614, 62.46680732366151, 18.25899252935151, 10.54535763587414, 9.975959928010527, 67.66823928834792, 5.95442840662121, 15.441362343781854, 248.41401163144792, 124.15320981356945, 57.12812131219815, 64.09081413572295, 6.758158280163622, 7.831506936502077, 25.91474594577394, 15.15051031092823, 105.4675883684628, 23.786663705602795, 38.70675035491767, 34.970728209389364, 42.55653803684702, 88.34344790410591, 6.238089481332748, 75.11700372167945, 61.417477811265385, 12.216097917104086, 97.13233050429888, 15.077183507440266, 66.95747229412112, 49.902319734517924, 31.999887086081173, 90.7795317313466, 17.679121748175362, 104.71092867301162, 11.360872288993377, 9.72847403079852, 22.132819699076016, ...])
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)