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 = 44925
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);
([7397939.0625, 7704933.393039329, 7737761.612331734, 7769729.348748739, 7771842.76721987, 7774412.685597611, 7774879.244553628, 7776097.349382634, 7776221.148304519, 7776419.110156442, 7776824.288370184, 7779212.5, 7779298.535611596, 7779535.9375, 7779723.4375, 7780081.25, 7782050.182141944, 7782659.375, 7782699.139973235, 7784349.964316689, 7833426.349087959, 7836973.4375, 7861548.4375, 7862271.449267961, 7869395.5506423265, 7869437.251486818, 7873274.070033665, 7874887.794799115, 7887510.9375, 7898028.108690942, 7917109.785829341, 7919712.5, 7931710.2212998215, 7931744.944526238, 7932898.299006537, 7932933.298520196, 7934950.510212944, 7935675.976961071, 7936462.578814606, 7937717.1875, 7964941.35952755, 7965843.882962345, 7970176.5625, 7971566.0264580995, 7974189.307058917, 7978486.379901186, 7987451.1122533195, 8004562.180438632, 8004845.3125, 8005706.849987401, 8026276.5625, 8031187.5, 8037590.854783627, 8037653.882759026, 8048233.0606628815, 8049399.577657104, 8050633.18306144, 8050644.116868101, 8051556.363824575, 8054581.514340296, 8055316.421583525, 8056840.855525525, 8060555.354927711, 8061050.980144329, 8076640.799870205, 8078060.473716655, 8087375.757579948, 8087954.6875, 8092020.809550859, 8092658.007301205, 8093018.214517124, 8093417.1875, 8093679.414905537, 8093972.749536882, 8101893.117013212, 8108600.360665093, 8108691.618015537, 8108779.53679187, 8109601.5625, 8109700.0, 8110386.7840823, 8118816.698442734, 8129790.625, 8150544.3963436745, 8157662.5, 8160225.0, 8160941.590364399, 8161706.847572993, 8161833.149590972, 8161836.400475008, 8162128.274284693, 8162319.94873761, 8165696.795010699, 8166639.4616725985, 8177113.884368097, 8177455.729080852, 8183045.812644681, 8185472.272532221, 8185855.474336378, 8189353.125, 8189360.852620794, 8191573.140437559, 8194544.731209752, 8196467.948098052, 8209331.604307527, 8225773.173898544, 8227370.802705714, 8229471.098951568, 8267164.57631179, 8268969.662069769, 8278682.1195566, 8281878.125, 8283900.550268, 8284612.508171016, 8287309.224742602, 8287928.303220154, 8288741.354951197, 8289714.0625, 8294748.237474959, 8303472.643596997, 8303609.755557239, 8303920.200373592, 8304139.71589304, 8304306.095039223, 8304734.169821001, 8304785.9375, 8304791.953739149, 8304961.537021878, 8305066.359502276, 8305136.159894254, 8305143.917283477, 8305364.0625, 8305466.403332174, 8305791.903709376, 8305951.5625, 8305991.8289514985, 8306379.656886472, 8306592.091991053, 8306695.320261669, 8306889.687616366, 8306891.389264908, 8307087.653046069, 8307403.125, 8307423.915607988, 8307602.338463992, 8307868.629047939, 8307961.926624706, 8308334.277583127, 8308759.375, 8308850.0, 8309130.857360893, 8309170.3125, 8309216.059076931, 8310143.616828118, 8312195.3125, 8313320.3125, 8314646.875, 8314744.601470712, 8314991.882416848, 8315230.606238886, 8315392.980988864, 8315470.278502004, 8315482.695056704, 8315512.5, 8315867.018766314, 8315883.881059623, 8316043.347439491, 8316044.397652803, 8316229.001628306, 8316231.08765461, 8316398.55891994, 8316501.62556408, 8316962.5, 8316978.125, 8319985.616138251, 8333403.125, 8336234.475524155, 8337918.75, 8338646.116199611, 8338729.019678894, 8339467.589393935, 8339718.75, 8340066.960466049, 8340453.977318289, 8340948.428439356, 8341227.129013521, 8341306.241547374, 8341419.962637396, 8341997.681391508, 8342026.5625, 8343327.162275228, 8343708.563578488, 8343784.375, 8343923.4375, 8344701.199182655, 8344838.873632628, 8345159.265173563, 8346385.9375, 8346603.125, 8348215.130023006, 8353742.411213591, 8357137.034176994, 8358762.008439152, 8365045.5406705765, 8376124.057779303, 8380240.436627636, 8386055.11363176, 8399418.75, 8405609.249651622, 8406027.38691187, 8406942.691161916, 8407178.940266853, 8407536.467768064, 8407851.218875298, 8407865.860266645, 8408713.81187575, 8409118.088049537, 8409265.615750374, 8409459.529459309, 8409614.732187828, 8420446.875, 8428306.25, 8429233.409167767, 8430009.536040459, 8431032.8125, 8433207.822950054, 8435535.9375, 8435643.563767646, 8435725.214332279, 8437638.055322029, 8438693.36835443, 8438864.33225539, 8440615.426503727, 8443376.378641248, 8445207.584271261, 8446209.914069867, 8446216.277268684, 8447353.875725823, 8447659.584069442, 8447664.057247812, 8448621.167177804, 8449403.486198429, 8449652.734534299, 8449682.407599503, 8451125.056287287, 8451164.867104132, 8451402.026665285, 8451803.125, 8452544.223131008, 8453415.614390083, 8455002.317307021, 8455117.250558104, 8456218.75, 8456535.560739933, 8456937.5, 8457852.840570662, 8459077.622680703, 8461247.716938933, 8461709.878447276, 8464707.8125, 8467947.499685794, 8482227.30866483, 8483031.25, 8483856.240608117, 8484255.248440586, 8486308.105436422, 8486432.8125, 8489256.665748358, 8493292.924023213, 8493321.506002156, 8502607.669628, 8503538.421034975, 8507386.82711315, 8507443.588330647, 8509452.025468005, 8515282.91425073, 8516963.408772534, 8517398.563500006, 8517848.163034765, 8518139.950507091, 8518156.237830644, 8518234.375, 8518341.34279156, 8518638.883657955, 8519111.611512186, 8519121.698745195, 8519312.520186068, 8519520.41387576, 8519596.875, 8519814.0625, 8519843.01170256, 8520082.580307454, 8520105.73661473, 8520292.1875, 8520486.450816134, 8520777.45319637, 8520848.4375, 8520875.649344724, 8520898.4375, 8521104.6875, 8521152.376170332, 8521183.606589423, 8521207.8125, 8521248.862215627, 8521739.235357836, 8521757.8125, 8521892.184444083, 8522180.656344173, 8522698.4375, 8522771.468365582, 8523181.25, 8523553.23950016, 8524401.24966382, 8525114.193078151, 8528166.044698069, 8529290.625, 8529573.669835111, 8530955.098084174, 8541927.452300385, 8544081.25, 8545062.039058596, 8545073.43215146, 8546138.529656857, 8546945.3125, 8548321.176818524, 8549044.283340544, 8549906.467852617, 8550402.663485872, 8550865.836635347, 8551806.985029878, 8554132.8125, 8568596.115615105, 8569502.18405574, 8569726.994415402, 8569865.91660652, 8570086.673585324, 8570208.57029519, 8570546.479868134, 8571142.1875, 8571726.5625, 8571875.918293525, 8572711.18965266, 8572714.53910085, 8573428.821486276, 8574268.54564588, 8574549.789498687, 8575130.687156312, 8575271.875, 8575481.25, 8575481.339530453, 8575771.875, 8575935.343551716, 8577084.430645963, 8579776.594190476, 8581023.4375, 8582480.076606305, 8582491.124737358, 8583612.704375189, 8587336.67689103, 8597117.660174295, 8598820.020624513, 8598970.3125, 8599252.768305674, 8599341.745048415, 8599535.76888719, 8599638.860279882, 8599820.3125, 8600071.3007365, 8600410.9375, 8600415.625, 8600419.20903456, 8600420.947447833, 8600912.248457663, 8601302.895576142, 8602244.58058216, 8602390.625, 8602873.4375, 8603022.75320485, 8603163.715833072, 8603548.491343023, 8603933.298765063, 8604070.587466232, 8604224.66143789, 8605085.9375, 8605345.101923905, 8605537.938344833, 8605581.25, 8606110.204622243, 8606192.444932695, 8606280.798204094, 8606395.10593875, 8606415.625, 8606509.321421832, 8606656.154620571, 8606657.8125, 8606753.113246365, 8606896.046030924, 8606900.0, 8606965.625, 8606993.4374584, 8606996.659767378, 8606999.758444488, 8607112.5, 8607252.33238264, 8607307.593338963, 8607331.160874233, 8607357.8125, 8607591.408569748, 8607844.866797693, 8608048.4375, 8608253.501066443, 8608302.722503494, 8608422.06956976, 8608501.837719355, 8608574.358322399, 8608762.4606557, 8608817.096890975, 8608911.185006104, 8609018.428879896, 8609354.709760608, 8609398.056386052, 8609716.552262738, 8609902.364066234, 8609920.158340504, 8610049.307810828, 8610173.4375, 8610235.227483705, 8610309.212079756, 8610319.113660594, 8610397.141872745, 8610499.884512128, 8610506.71604634, 8611512.5, 8611514.0625, 8611687.5, 8612081.058392745, 8613484.375, 8619666.955089599, 8627635.324658088, 8628213.689109024, 8630178.125, 8630333.514357865, 8630639.0625, 8634742.85898016, 8635781.25, 8638240.95692351, 8638275.999277115, 8638478.125, 8639084.775053017, 8640597.879206052, 8643681.503291212, 8648394.150743956, 8657109.947360601, 8657212.5, 8660253.481368234, 8663025.470105298, 8663745.330327785, 8664309.851672707, 8666190.625, 8666245.307176894, 8666668.75, 8666718.72258453, 8666901.38467099, 8667794.171563819, 8668535.568696847, 8668968.75, 8668983.804484073, 8672525.0, 8672545.22075658, 8673683.338767022, 8676946.176228436, 8687415.625, 8688018.75, 8689343.707311679, 8689378.125, 8691417.958196314, 8691609.78704437, 8692353.085242871, 8692682.8125, 8693862.306958245, 8694123.4375, 8695811.767731681, 8696463.61137796, 8697126.400446422, 8698060.942955622, 8698824.574166104, 8707765.02776603, 8709777.178082423, 8712494.080812324, 8712675.699691335, 8714410.459780138, 8716214.44940568, 8716342.2684105, 8717434.194674619, 8718078.125, 8718938.79205097, 8719457.034073249, 8720060.769543778, 8720662.5, 8721031.07493344, 8721538.717354769, 8721819.82956088, 8722805.182375401, 8724933.989299702, 8725016.290942838, 8725570.285675477, 8741644.583514169, 8743457.138009666, 8757836.764705556, 8757958.092856983, 8759465.40045935, 8759492.1875, 8759987.5, 8760071.008291448, 8760182.256552387, 8761065.275149357, 8761098.4375, 8761297.77943488, 8761305.298526878, 8761585.967110846, 8761620.3125, 8761630.809823265, 8761654.362469848, 8761674.656185266, 8761735.231760295, 8761814.713194514, 8761851.5625, 8761924.069542155, 8762172.890691562, 8762243.581301238, 8762601.5625, 8762622.069156919, 8762749.242889928, 8762951.99640761, 8762954.110662414, 8763059.133827377, 8763116.714493243, 8763158.881915653, 8763226.933460228, 8763543.726871086, 8764501.221371343, 8765079.296353994, 8765507.791948773, 8765593.747239342, 8765755.111916048, 8765866.229347708, 8766229.85070033, 8766327.31956625, 8766435.090917181, 8766470.318951605, 8767387.071595978, 8767608.07402775, 8767712.941883802, 8768245.68972497, 8768417.850259196, 8772183.18649311, 8778570.7589829, 8781869.91808381, 8782848.329188475, 8783748.144726442, 8783904.6875, 8785848.890858345, 8786586.64875731, 8786688.912031984, 8787678.79918079, 8787743.710634254, 8787775.925574888, 8787893.75, 8787945.342970949, 8788045.3125, 8788289.936089126, 8788677.034212716, 8788730.258987205, 8788874.737736834, 8788988.533410067, 8789286.336924363, 8789443.702197816, 8789472.074606089, 8789752.258213615, 8790536.063493835, 8790835.327392794, 8790944.150641805, 8791097.723229147, 8791164.0625, 8791227.11384436, 8791551.144338321, 8791589.827486228, 8792003.080822004, 8792394.721082427, 8792399.112893641, 8792580.549700651, 8792597.826293495, 8792923.969865251, 8792979.357751995, 8793662.777731525, 8793667.138669707, 8794496.783627115, 8794688.97362931, 8795120.3125, 8795373.736246465, 8797017.1875, 8797304.226961344, 8798127.356591668, 8798145.90992523, 8798983.973151257, 8799591.959243983, 8799623.4375, 8799697.616551714, 8799813.696770297, 8800090.386051806, 8800167.022542099, 8800315.375111809, 8800758.238265278, 8800809.740615252, 8801039.0625, 8801147.530080473, 8801151.5625, 8801181.25, 8801275.01928733, 8801293.32844859, 8801303.698953275, 8801353.864466941, 8801486.47695612, 8801615.611074911, 8801793.126660574, 8801844.11805503, 8801998.33890606, 8802060.14029371, 8802470.3125, 8802730.337128924, 8802845.174470788, 8803124.826370124, 8803203.125, 8803929.016341371, 8803960.335302863, 8804067.985665316, 8804121.712433381, 8804354.247212907, 8804497.20269005, 8804707.810784664, 8805001.804531293, 8805228.348393025, 8805456.25, 8805803.127854943, 8805929.092653928, 8805966.339015836, 8805992.77713951, 8806144.323341167, 8806518.329442644, 8807142.98731552, 8808840.832369516, 8816574.082584634, 8816593.753244633, 8816618.374521125, 8816796.292326475, 8817894.675239092, 8817999.010846527, 8818953.33771808, 8819170.899412682, 8819943.215595223, 8820206.028017018, 8820995.368853353, 8821086.804609066, 8822587.672555903, 8827488.961600453, 8830334.333261147, 8834119.814172754, 8837764.868374141, 8838543.53331121, 8840132.793769486, 8840627.683916222, 8841052.195132855, 8841526.434207685, 8841643.472592639, 8841744.302085644, 8841885.036223039, 8842112.5, 8842319.406803524, 8842823.279259548, 8843601.942460679, 8844661.0657589, 8845835.291322477, 8848165.665429814, 8848771.875, 8853364.817601208, 8853506.526032172, 8854409.283313308, 8855643.75, 8856013.770587072, 8856603.247419218, 8857954.6875, 8858874.88362935, 8858922.218823206, 8862476.81160133, 8865661.586242074, 8872455.348693188, 8874615.625, 8885168.75, 8887106.900053984, 8887162.733134476, 8889202.268870646, 8889920.763451394, 8890350.560123678, 8894590.625, 8895539.150954025, 8896314.0625, 8897602.319726355, 8902455.26908971, 8907457.631979246, 8910141.96434225, 8914328.606279142, 8915858.821012309, 8924028.633814387, 8926163.833556203, 8926506.25, 8926537.681139885, 8926856.372587036, 8927321.875, 8927367.368788395, 8927443.542579466, 8927554.6875, 8928292.774053471, 8928746.682031475, 8929682.8125, 8929808.848971633, 8930058.377529735, 8930324.200391404, 8930595.3125, 8932661.75839187, 8947826.612175778, 8947973.426235665, 8949913.677316826, 8952531.888268333, 8953405.179890037, 8973735.071769064, 8977515.625, 8977626.78952252, 8978576.5625, 8979445.007214239, 8982210.234443072, 8982632.419419676, 8983854.658747798, 8984115.972996201, 8984300.0, 8984343.695084102, 8985104.270646567, 8985888.358492944, 8997941.848660292, 9000880.643731674, 9002267.170349887, 9011440.222170234, 9022012.985585375, 9024086.221926132, 9029528.727231009, 9029569.27358163, 9038038.148378199, 9038979.894092165, 9039607.306295946, 9040483.035914386, 9041433.35632043, 9042002.140212784, 9043029.470822044, 9044396.875, 9048779.103877492, 9048893.75, 9051499.413855297, 9063818.673266903, 9075919.357297882, 9076146.503558852, 9076600.0, 9077160.9375, 9079224.744413745, 9079503.344378667, 9079990.579997987, 9080100.603462087, 9080214.082251677, 9085578.37213353, 9085580.732648382, 9093088.510449449, 9093502.591851875, 9093547.554655017, 9094234.375, 9095631.200820178, 9096606.338030664, 9096695.3125, 9097741.56745085, 9104399.995708533, 9111896.09260009, 9113144.216191085, 9114654.402298708, 9114870.379683735, 9115793.75, 9115913.755023334, 9116146.315416526, 9117755.605718808, 9118900.756670551, 9119602.185447367, 9122048.74956107, 9122723.4375, 9124006.832037397, 9124327.089729222, 9125695.620216742, 9126769.194221029, 9127439.850877596, 9127848.761286462, 9128133.17757539, 9128190.625, 9128237.51451496, 9128859.375, 9129418.813718805, 9129592.1875, 9129617.86623772, 9130021.793833602, 9130024.553207485, 9130058.32579186, 9130080.87157726, 9130202.925470905, 9130267.881401803, 9130826.104206752, 9131590.625, 9132709.816162918, 9133312.656016277, 9133560.65225453, 9134543.75, 9135860.9375, 9139103.125, 9139451.23617209, 9144348.4375, 9147725.60478068, 9148104.516481018, 9155900.841282591, 9156856.845250951, 9158812.839022757, 9159342.1875, 9161112.33662943, 9162690.645295285, 9162955.444869267, 9163361.13534177, 9163653.125, 9164086.383745493, 9164214.0625, 9165433.195208296, 9165699.79999087, 9166110.511994882, 9166137.47640225, 9166589.442820355, 9166737.290524095, 9166887.409230076, 9166900.019938542, 9167171.485485885, 9167340.126804389, 9167356.111219529, 9168076.5625, 9168217.024586234, 9168426.550308518, 9168845.3125, 9169339.928998742, 9169832.276958968, 9169856.562272528, 9169992.1875, 9170005.529988293, 9170585.42561701, 9170606.25, 9170681.86576932, 9170950.566241052, 9171089.595328502, 9171137.5, 9171211.16852662, 9171271.875, 9171381.103798738, 9171427.840660254, 9172215.047926646, 9172225.0, 9172504.580218354, 9172818.75, 9172926.5625, 9172978.126399986, 9173003.125, 9173013.02908633, 9173299.445943208, 9173307.437577972, 9173320.3125, 9173434.375, 9173746.782804038, 9173878.172099113, 9173967.12975853, 9173978.566886142, 9174317.190990288, 9174874.485587135, 9174936.003430763, 9175041.161474392, 9175104.26788328, 9175249.621790404, 9175520.844955068, 9175653.121602878, 9175690.47071709, 9175825.0, 9175857.614205316, 9175932.010470023, 9175998.471781485, 9176132.8125, 9176387.473319143, 9176755.624917837, 9177289.866096565, 9180126.612602953, 9197815.625, 9198381.769709237, 9198639.024347296, 9199113.47321856, 9199475.497089079, 9204074.420630813, 9205200.0, 9206632.941054136, 9207622.8600254, 9207834.109819785, 9207866.769148927, 9207890.61077441, 9207915.923068317, 9209080.533785919, 9209091.759923885, 9210842.978205923, 9211332.311727233, 9211579.6875, 9213439.30326695, 9214395.006802853, 9214568.693848692, 9215640.584578117, 9215842.008282358, 9216112.05568327, 9216785.305546964, 9220015.366502887, 9220964.252439287, 9223857.56492358, 9226472.33735355, 9226928.417212427, 9227106.607957048, 9230539.667604525, 9231954.484096684, 9232950.974695511, 9233717.217121048, 9233903.075637478, 9234028.486415446, 9234573.562530898, 9234604.721211143, 9234898.4375, 9235314.851675663, 9235655.274430064, 9235660.9375, 9235870.3125, 9236198.4375, 9236249.86755878, 9236287.848110877, 9236300.541417861, 9236740.545741864, 9236966.524178185, 9237029.6875, 9237640.813706355, 9237803.249305192, 9238020.694553085, 9238288.300413001, 9238476.5625, 9238589.571436418, 9238823.34334107, 9238890.470776265, 9238906.221396888, 9239071.226967191, 9239301.250845654, 9239448.139369665, 9239464.0625, 9239557.24172803, 9239578.057902358, 9239595.219572157, 9239656.193056764, 9240205.495758956, 9240538.667145452, 9240580.643610789, 9240608.719609514, 9240873.4375, 9242102.672297819, 9242146.875, 9242578.102937033, 9243480.928799111, 9243533.328164652, 9244648.643965168, 9246545.334720189, 9246628.125, 9246672.34053888, 9247766.724791124, 9248201.5625, 9248232.686334496, 9248235.083407149, 9248821.20204587, 9248889.159188757, 9248971.355530139, 9249897.756314183, 9249900.14956161, 9249940.140630169, 9251579.661133934, 9251687.5, 9253689.0625, ...], [68.43311800371656, 17.7376675632269, 101.35851394918576, 50.81873886124498, 33.56118909823936, 11.430752835375042, 13.485066551702202, 11.960077218866365, 12.74529002905105, 9.655707713036675, 19.61328915594232, 34.51153569051553, 62.80756257277643, 41.32869663018424, 48.71243204387443, 37.215092906864214, 65.30789017309104, 63.322584145754, 18.523313999021806, 32.92623572002932, 10.809747598000126, 90.48592331787019, 71.84546838824973, 10.521645068659922, 20.083035818750798, 31.786864949469525, 18.061779584883393, 57.639561071660836, 55.68179991479225, 94.5913136042648, 154.29437066941952, 38.43207081454058, 19.577226081762316, 13.7027884208977, 14.438666309584267, 17.186064945236247, 40.58239594259598, 13.982807254358043, 5.536917929157125, 91.8683974327008, 12.509404768668848, 90.32304283974497, 61.35363480629534, 5.732793281895563, 7.187257742375246, 9.735760491823443, 61.44579701866072, 31.982833025934106, 56.11683298135777, 76.04475748687194, 61.845954863927936, 46.61034496538443, 6.8102648529876255, 6.367930431017303, 28.58115022817804, 76.88519615079336, 7.222391407629676, 11.754030009044069, 9.429539180499882, 57.61216822616898, 19.195657053302618, 11.508221945568113, 46.58978531789434, 5.188834870105811, 18.476944995834028, 14.392887979711375, 17.938542225365257, 32.63821868395546, 6.866968943335353, 15.739897472135896, 77.98302715293859, 34.43734738347986, 13.9952168762591, 10.199368237559929, 14.833599749648489, 24.95468730585862, 38.50783256057065, 262.72594600263733, 55.93429989263553, 87.7413968381232, 49.03843835171005, 55.77235334867376, 49.418093256692295, 6.899789511177783, 30.532916001397393, 80.6569950107293, 10.307121977191912, 33.34322182940105, 16.4034606846763, 17.058392804748728, 16.35555392122373, 22.969058809031882, 27.03673916935278, 6.845903687784166, 70.49923180320529, 67.38248304333176, 24.52964892951929, 89.7561740774965, 184.76764653080224, 33.66624981836773, 31.579198362887873, 13.918471748316069, 8.883921926872025, 30.71870466513076, 20.607826242986913, 21.919228776107563, 11.99137178614187, 47.210092451243504, 8.578359680218338, 22.61560126530641, 18.589051241175472, 77.25460939290079, 19.064516806736272, 47.39678255939688, 53.226185677284484, 15.667289674739253, 18.713248983757925, 67.55681087601145, 26.33552984962857, 76.14094152436874, 16.62184105744845, 20.01083479028168, 61.941897574459574, 25.798865329123576, 114.20747758486911, 50.42382519558648, 14.119576957179122, 15.236048794071156, 64.93398934412122, 16.771622527669983, 11.399651868430743, 42.73115923215475, 53.360433496504236, 13.959947511522993, 86.86523443975652, 23.03060654720139, 11.655917761039133, 42.13529716898806, 11.139860503275559, 32.483356959956694, 98.53154063193459, 11.375661727818438, 69.9763767065741, 23.292891646353333, 12.604296626735417, 52.69472142076427, 7.408236308764115, 8.235724838044701, 56.642694113161916, 86.29020900457348, 9.02009595329423, 78.0226294323359, 9.727548665750314, 90.24868485140595, 65.3370073829609, 130.00194346892016, 80.73909189161698, 19.618040392242364, 56.248703091202486, 73.56614207306549, 19.172536422208328, 19.232617809729433, 23.51264502581113, 80.76126612407498, 25.585990530229683, 114.31027932601029, 10.551834400749815, 18.15898929761579, 68.06317293679837, 66.22677489363545, 15.425422802811388, 49.176495915630994, 73.05649415267263, 49.011896891311224, 30.34083277027651, 123.06214720393272, 9.417873460506293, 58.71055208772843, 24.666869836459902, 73.33619908758925, 35.69337343944622, 40.71962134298673, 14.141445197993884, 8.795348618196131, 41.111744607491275, 92.59817839855125, 26.610885497295783, 159.5700626904845, 19.269412316056076, 96.89043947136962, 32.03538684609903, 6.611648071106282, 42.96891451159563, 57.101980708836074, 26.45390482388054, 25.611636974093173, 7.092877823950942, 29.071135344009615, 56.511712892760194, 13.339823949939813, 35.17261497845952, 21.84094628450377, 21.577700396147197, 151.46531971390525, 39.62285316354897, 35.83721339690014, 23.98766971293453, 60.62394943585004, 26.271317200975364, 19.40685001920338, 5.852211163127164, 5.4305831444115755, 99.13030723698512, 23.2090446972673, 15.921062688132734, 57.388985894946245, 8.82808583883394, 34.50802121248583, 31.58779278547791, 23.63720074459013, 110.79595887834583, 29.659912496114195, 12.2087997449356, 15.59302933296052, 44.55714648023897, 89.65047400423032, 60.78805680523806, 25.32154517794402, 6.110675140123844, 27.86177006470686, 19.311075403920228, 9.570410649809551, 28.186999150223496, 204.10762599887056, 150.50152104591592, 19.821431417055337, 12.327337474591543, 88.59661615476345, 16.93963530166974, 76.12335520364172, 19.643464285831524, 32.08956713739983, 5.15636656467649, 135.07121864063149, 11.216842187433189, 19.25591688270551, 11.940005148366108, 31.234212851287314, 6.8617883527437975, 68.06526197123993, 14.794402081805973, 15.187430789986578, 66.52538631290123, 22.817376818215845, 54.21429520356889, 13.531195942759016, 26.365624151454313, 5.49910237857886, 9.796755157111553, 57.79752830916148, 115.54464644617752, 10.787782566295853, 81.6776834512526, 14.905832387140439, 17.61943413519753, 31.399586927929, 77.26216740117381, 12.688112095485108, 12.513924999675673, 22.90766293995341, 10.911498232419868, 62.880957460406634, 103.8871308208677, 5.802114180852416, 25.906586016861283, 11.290563603217905, 18.574399106828423, 99.2145055003094, 89.67699518340532, 5.5777884339907695, 11.10873844415029, 119.28904187806452, 20.840987911399157, 5.094952478683758, 58.84099305334976, 13.247804089496023, 9.348530158795283, 13.248182324778991, 47.801958730272645, 102.63756007310589, 19.40523913467906, 56.07933405497298, 10.410049995100815, 61.92051905040971, 8.57805743850497, 19.934918534332223, 52.89242747292634, 18.169953369704295, 31.850239618429057, 109.39316429943605, 19.324623549114275, 19.17701765415353, 88.46832267442933, 6.3223920177881645, 9.481970017581192, 89.44350749619898, 13.531721853373284, 13.076660471891312, 59.21901774341484, 17.11575448721843, 65.01748122011182, 16.002362174471287, 48.542922568189084, 53.85658611502006, 8.521732986224139, 98.8774924189321, 25.068533430501887, 20.977773674530514, 31.8166825066816, 84.75938683827407, 10.476329349850376, 78.24816038794057, 26.409308641522973, 42.05114690606673, 15.31362647633351, 17.45642550347241, 110.23730975461702, 10.475597720714362, 147.14892524701602, 18.74891241224975, 69.03470113461819, 23.252814135584625, 85.3373107793081, 7.23981429974657, 21.369919799994257, 232.19754142061961, 18.910973204302742, 51.0894312680842, 34.66029217709763, 67.46170795884797, 12.911200622161317, 11.54611999775954, 42.49697643684243, 116.54274678584333, 14.215900172054246, 34.73523117338233, 49.67078744463197, 88.39737418671058, 69.87378730819336, 17.274566981519975, 31.595666836718202, 42.391391641970976, 47.56570507453688, 11.409930802062675, 47.87676177663868, 20.657790691528785, 13.366115060441775, 65.32398068747666, 12.222898004190238, 11.956713798419495, 25.139072236513087, 84.11399838901124, 10.612469233104868, 45.75994406642238, 114.05371724910759, 62.778357821007575, 56.644143035288494, 42.91931085866645, 29.09676029287306, 55.45646771884874, 7.778151967410093, 28.91361084741043, 24.390105737395956, 5.692310794709456, 58.09960472967407, 80.14205513133207, 91.8605201188694, 19.832591057952204, 38.86122301618027, 15.150783561896285, 11.983554047929994, 16.104481611925895, 10.636767471580342, 100.49410826785743, 33.32839371971042, 6.324215495263217, 58.56626246970523, 31.009767435098084, 13.092070950223835, 17.24940823762963, 7.530198339093789, 57.75376670116592, 6.082545224450621, 14.590016808095195, 28.683906964241928, 14.896898518433828, 143.2039303089322, 31.721121131718725, 102.63640756342743, 23.591851205766872, 14.180046854068149, 79.22286106086516, 47.63402141337783, 7.339688695067667, 24.841354668776255, 5.528770565244755, 37.53002567906656, 96.02135909752465, 22.05240633641929, 113.00433487986972, 123.01408784422321, 55.7339571221799, 22.10768544945192, 11.586984552969884, 10.253788834280993, 30.230368086632215, 111.70957104622448, 9.549835378637587, 101.97042511715169, 46.042825926202454, 22.76711799545199, 39.216999939801894, 19.233035354259247, 25.560942130337622, 62.72852466201688, 97.44073570453388, 19.626061657886574, 25.675326189225157, 16.536017516903893, 9.567735739155626, 104.77771321644472, 5.7370746095840275, 35.358720146398895, 45.73543076692614, 44.85023694867496, 59.835731651205755, 64.11358448693045, 74.46037857490566, 20.436749511029934, 22.85645626831528, 63.60035167291753, 8.696220941470006, 52.42482212438421, 60.513913128586125, 37.00799730017792, 112.945046050427, 51.13132888152378, 50.94489624433436, 98.50604617097423, 20.930650794119263, 7.697491923496097, 75.30884067726485, 17.688072755339746, 56.50452473589206, 8.484471824647626, 17.097623276453646, 15.009898781096386, 7.252657473703852, 130.133512336795, 46.64079908595485, 36.40722922717807, 21.44222045817037, 6.7285161992737414, 11.857440919055138, 60.941724389997134, 31.229734093447906, 20.81737147732534, 40.04877795685516, 81.20624910912079, 5.217040195313089, 48.29026460657468, 31.144470277945896, 46.337894872100314, 11.061631402345792, 49.51263159678002, 124.8997608393364, 7.2341484677787715, 54.02477596639888, 76.77329386697511, 25.22040977114321, 52.165383277853536, 25.062708475119198, 13.46193477897997, 87.09401962789676, 65.61636756262283, 30.133656485822655, 6.649856524739773, 67.12758224982174, 9.627717200774477, 72.71747201137087, 13.1941966004913, 19.668248352697844, 13.839374610040919, 10.857078513851274, 94.39676494652247, 8.148556445066529, 38.759888825077795, 7.543599746239893, 42.05626412209418, 25.489520079051896, 23.19070861360334, 13.373015903108259, 20.1091872160381, 82.05689378803149, 8.673207237043178, 20.818102788767213, 12.73980516695136, 49.033648426955374, 82.52413608482976, 90.16048235105627, 46.04730912266671, 46.0600857981608, 41.105307892117025, 12.42264580955484, 31.3541302563441, 103.30175162028577, 29.030793393137493, 136.3674069295596, 89.09180209364564, 45.160572313005346, 40.57821396678327, 28.910081541854588, 5.596312246045518, 33.819229295570814, 19.660018375024485, 52.440356767764925, 83.92928249266532, 9.929860618729279, 148.7474628095445, 25.586524985264635, 74.49612598445142, 6.8028975762453205, 41.324992730634605, 16.900930523327816, 28.406678507023628, 104.51311017826194, 6.040254174406506, 21.562366082646026, 91.84866456838019, 14.85407960715743, 23.239222009568124, 31.309857294002832, 14.863752099125751, 55.41093417866446, 9.718049524051034, 12.22496314514591, 15.602311976034414, 43.74038679264717, 89.42470401678098, 18.353316323189567, 59.45113560849189, 5.833587865247351, 22.083277151470245, 55.12269511138421, 49.58714861222338, 16.588356676012584, 29.225893541025766, 28.837536049693842, 23.63413715136091, 23.8434904379268, 175.11244204174804, 46.392579328600874, 12.457063548746447, 5.0955062107426325, 18.332922577069724, 38.726179920417884, 8.845262072328982, 134.95853378005887, 7.614295810286526, 76.96403976170211, 163.79190674896054, 9.764876347480145, 95.53112075982736, 24.245050555089435, 36.5384008412795, 21.62204618893245, 5.164249795214647, 9.506083716513867, 13.78613848947128, 243.27301237651608, 20.460809673858993, 5.479229365900428, 62.474039824103, 39.747340946027414, 22.947083089086675, 14.860641330281972, 6.614090687568209, 27.6798500868445, 28.686467007734322, 11.616680399202977, 35.19848188615106, 66.42388146037895, 17.450738484986378, 9.067323469063371, 16.117474351009115, 20.614537139483758, 26.839666989945187, 65.30392376418163, 39.39110259043596, 39.6594928734893, 57.445830212235286, 40.90383451333786, 35.17319995569745, 12.210390976132613, 13.603145167180102, 24.71257369708272, 43.04553990601813, 86.03005591143938, 13.709465055632684, 14.102780108790345, 40.06979887447143, 7.515290520029702, 8.525337898268935, 23.381882225858675, 45.76212980539964, 12.333426934903422, 53.11719324235663, 47.461141870968596, 8.29680319143125, 89.81020624074407, 17.697701729805708, 94.19948122899768, 17.492198733076123, 6.4849105646387954, 20.345054603306977, 16.558222703347415, 26.716420390934793, 22.984041858727917, 121.60224857525479, 18.171796771940013, 14.440272245769359, 25.51132859500567, 50.86028691119642, 72.63983163411463, 33.6733251876467, 16.824171546054647, 5.802048855731036, 22.110193335157117, 11.681688629274058, 28.49126922131191, 6.812807734138214, 20.397147871670658, 48.643523615633384, 6.267559136085409, 13.07358010735281, 10.018149863243382, 17.79328478208875, 12.160109596796266, 38.56663928770125, 5.573199459362055, 125.10188859749172, 18.142380088566547, 14.953890879561385, 22.832218436415687, 13.105185539925142, 158.94430059354858, 9.868310038900914, 15.819408087612743, 27.633156179889035, 13.232796857219025, 7.064296591624614, 20.495591117736865, 30.237105163766678, 112.09001805088133, 19.948106726526746, 170.56663803401187, 34.249343203899286, 74.01847071146372, 9.154663565391523, 113.90923779269188, 5.6792497586841915, 20.705922236121882, 23.86586621246608, 98.5996841210848, 19.50401671187647, 52.47603394891703, 93.60410225340217, 9.956239102603487, 25.74778851004377, 105.29446615006451, 11.334281708622857, 12.930901624990058, 44.61473133155491, 69.2879754162142, 12.55624581966973, 21.80617715866715, 119.2959187666066, 52.36140138420556, 23.854595394791854, 11.3246035778853, 31.222104259515355, 26.41868918778336, 135.7511007235637, 11.5407487850695, 12.319713034645366, 33.424535652117825, 64.89103667373853, 54.15495735725811, 12.322547648615243, 78.7669800941667, 71.65280076103534, 118.68745714741239, 17.614551254330532, 53.576734369149825, 81.42643224284845, 44.70659898576022, 5.315064896514615, 9.87687228200619, 25.407134153536063, 93.31815591738163, 17.15959020253038, 28.381364994763914, 35.93867512192876, 24.702900804753373, 43.92547089899306, 18.682663669880302, 11.324881332728408, 109.16246839630367, 17.976371956602616, 14.205767493355998, 48.18321353091093, 128.54019051759755, 25.221492231955036, 55.02318147798829, 7.423452540540336, 30.15912020997848, 12.574122586671551, 54.33819324480913, 8.774273319583614, 66.53298994792092, 21.919164226527858, 13.651900600194093, 18.098489707906474, 17.22180765427499, 98.17924112164701, 37.411381326879614, 17.951052075630656, 39.48895083227281, 9.085951461611801, 130.8724619635021, 41.14883825771936, 54.31088508033779, 16.457517193554473, 141.47515780868642, 35.838910501949066, 22.364666959679493, 12.800012846938895, 15.824970622733828, 22.649331981680135, 14.876541674851286, 13.600291063890976, 6.864483085164942, 8.442940356993413, 138.11749275010075, 33.706108302761024, 88.5056313909511, 5.543191829484291, 84.8796636188594, 64.85534994563685, 54.2392065049151, 23.448052429867662, 120.49032938113896, 43.65698281930172, 6.976044837026043, 30.092101901854324, 20.564187470263764, 15.174722651142591, 12.231189817060084, 70.67378079803578, 35.477920970362696, 61.248133662036004, 24.3351430328729, 18.092103295567696, 56.57518335691772, 31.55838503056165, 11.158720933209844, 8.42173729768076, 58.50597137584783, 13.18571710639516, 21.16868268120775, 59.22594994093751, 71.75130601707488, 98.20269016122151, 97.40735328676901, 55.938857159881614, 20.37368230552792, 43.567114605295416, 58.09813476691372, 171.99882073125178, 6.707873447035285, 124.41964211514627, 47.293194375570316, 70.17582594060255, 88.88909571148922, 73.25767632997173, 36.23794724240462, 18.00084887600343, 38.58653003319061, 60.90523584061892, 71.70806397270714, 131.10290688497764, 43.78476361500924, 9.737559091007968, 6.372222079775827, 22.80782964719819, 30.166218187131427, 65.66699817836263, 195.66708457585327, 59.79218379476465, 73.47401780919924, 50.499699004838604, 159.72195464341462, 14.640910081552091, 18.118924416574462, 12.03749476391205, 32.36947158173627, 43.390660268360364, 8.69110180463553, 16.12584107151458, 126.58437761503832, 6.854897691394027, 7.660657927547475, 42.26786329250377, 138.6743151106785, 38.40974659951499, 49.4927368056402, 23.42016544152971, 45.709488728928925, 9.901103679991458, 102.55604004120504, 42.89773230929276, 17.764936205526837, 16.413001250038853, 51.12755107810224, 6.071273302361405, 88.89986734292468, 89.50857345550328, 153.99385234756357, 33.53212372237307, 5.555137427190876, 56.42994420777149, 41.300891772806246, 14.23029347455596, 37.48596627509744, 112.44351300109362, 39.366100956294034, 42.91260141173963, 14.606467112376562, 5.130928542945023, 9.022420366230063, 51.879713778817724, 7.085442174875715, 76.73641451592853, 37.92738028675109, 28.285883280165788, 88.96922140907783, 10.190019174200994, 35.91531576639982, 142.68756181613662, 58.910151249966525, 30.126229671310682, 21.37537445163734, 56.19196347133138, 47.67910032908284, 17.651203979435806, 174.3796557976731, 70.08402326950123, 34.549582642606204, 37.1586196966231, 41.084254705778385, 40.077777980210804, 34.208083004134046, 74.87087207730922, 14.54778313673492, 34.143169841840646, 114.77456467180784, 35.96397967656594, 71.06621148581786, 5.2171143030646085, 13.18039588854226, 22.83867650774497, 30.48291333631185, 55.24810988270008, 8.23841697330496, 78.52212117470512, 14.725900417927823, 102.52033229851253, 11.133166733870217, 5.674783285284004, 28.42875513225983, 12.084373002705007, 5.680562963252312, 22.80061383180648, 42.37227994513353, 38.97390043408844, 73.74943656164017, 44.76262078347777, 31.290463109530513, 113.53873838868249, 16.10653068548958, 41.686889246007986, 28.007506715953024, 18.763201612578833, 21.46618652854994, 7.134684778329529, 51.37881139195856, 17.37738467231686, 27.7916525850945, 29.095331308224473, 18.68930521650523, 73.7448465722956, 38.45645012342475, 15.455233124129876, 51.321841840754416, 43.40731612204999, 95.91959928962723, 28.246408667838452, 7.202072887099279, 33.6925328690665, 6.6810445129595974, 8.754216645658856, 36.03352408837367, 70.81619754226303, 11.526118595011829, 24.395721168154637, 38.607570555295446, 44.6643860467161, 77.68398764618053, 88.53540581450441, 42.7356896457225, 54.56479426502995, 149.67248167228675, 24.444302532228708, 30.636205608344728, 16.18598414644615, 24.133923046423014, 61.09723082822547, 5.390754632500596, 13.190945217462177, 8.302303792132458, 27.58449805746485, 16.524703839272938, 8.353821283218913, 46.29500022645552, 43.957054851049755, 55.08113710415947, 12.188400517427313, 39.571444786774684, 35.42748528790432, 90.07912649615294, 26.15626979079481, 7.734190406683985, 25.5178338814397, 14.64778157870695, 20.00517330192964, 131.82081578292906, 49.256162140794544, 110.11087147928095, 11.782453380390773, 5.875676841226943, 50.670499269906514, 31.8134660729375, 58.07151448959713, 25.81037737865072, 6.757809582421061, 8.837622081756322, 283.7156125919432, 23.774653458814637, 72.19018884388075, 13.13630922172171, 21.829304070938136, 14.598759409633654, 124.48438280467632, 7.924301413528754, 109.70495629407097, 28.37185655454164, 142.7652263176586, 52.4273954790592, 10.486873913266463, 55.74393456022164, 80.16042972283351, 13.843945956812437, 18.904008002507894, 5.349046617904389, 15.026884176958541, 71.11626218469829, 45.37826541282105, 60.341553295188234, 43.997664722996134, 26.258001473712508, 34.650192932876756, 63.24247577233905, 15.3233093667509, 20.94934532004304, 32.833942150919036, 7.658242353424789, 61.55325386468178, 11.086743523523774, 112.256479335585, 49.822497849783176, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7397939.0625, 7704933.393039329, 7737761.612331734, 7769729.348748739, 7771842.76721987, 7774412.685597611, 7774879.244553628, 7776097.349382634, 7776221.148304519, 7776419.110156442, 7776824.288370184, 7779212.5, 7779298.535611596, 7779535.9375, 7779723.4375, 7780081.25, 7782050.182141944, 7782659.375, 7782699.139973235, 7784349.964316689, 7833426.349087959, 7836973.4375, 7861548.4375, 7862271.449267961, 7869395.5506423265, 7869437.251486818, 7873274.070033665, 7874887.794799115, 7887510.9375, 7898028.108690942, 7917109.785829341, 7919712.5, 7931710.2212998215, 7931744.944526238, 7932898.299006537, 7932933.298520196, 7934950.510212944, 7935675.976961071, 7936462.578814606, 7937717.1875, 7964941.35952755, 7965843.882962345, 7970176.5625, 7971566.0264580995, 7974189.307058917, 7978486.379901186, 7987451.1122533195, 8004562.180438632, 8004845.3125, 8005706.849987401, 8026276.5625, 8031187.5, 8037590.854783627, 8037653.882759026, 8048233.0606628815, 8049399.577657104, 8050633.18306144, 8050644.116868101, 8051556.363824575, 8054581.514340296, 8055316.421583525, 8056840.855525525, 8060555.354927711, 8061050.980144329, 8076640.799870205, 8078060.473716655, 8087375.757579948, 8087954.6875, 8092020.809550859, 8092658.007301205, 8093018.214517124, 8093417.1875, 8093679.414905537, 8093972.749536882, 8101893.117013212, 8108600.360665093, 8108691.618015537, 8108779.53679187, 8109601.5625, 8109700.0, 8110386.7840823, 8118816.698442734, 8129790.625, 8150544.3963436745, 8157662.5, 8160225.0, 8160941.590364399, 8161706.847572993, 8161833.149590972, 8161836.400475008, 8162128.274284693, 8162319.94873761, 8165696.795010699, 8166639.4616725985, 8177113.884368097, 8177455.729080852, 8183045.812644681, 8185472.272532221, 8185855.474336378, 8189353.125, 8189360.852620794, 8191573.140437559, 8194544.731209752, 8196467.948098052, 8209331.604307527, 8225773.173898544, 8227370.802705714, 8229471.098951568, 8267164.57631179, 8268969.662069769, 8278682.1195566, 8281878.125, 8283900.550268, 8284612.508171016, 8287309.224742602, 8287928.303220154, 8288741.354951197, 8289714.0625, 8294748.237474959, 8303472.643596997, 8303609.755557239, 8303920.200373592, 8304139.71589304, 8304306.095039223, 8304734.169821001, 8304785.9375, 8304791.953739149, 8304961.537021878, 8305066.359502276, 8305136.159894254, 8305143.917283477, 8305364.0625, 8305466.403332174, 8305791.903709376, 8305951.5625, 8305991.8289514985, 8306379.656886472, 8306592.091991053, 8306695.320261669, 8306889.687616366, 8306891.389264908, 8307087.653046069, 8307403.125, 8307423.915607988, 8307602.338463992, 8307868.629047939, 8307961.926624706, 8308334.277583127, 8308759.375, 8308850.0, 8309130.857360893, 8309170.3125, 8309216.059076931, 8310143.616828118, 8312195.3125, 8313320.3125, 8314646.875, 8314744.601470712, 8314991.882416848, 8315230.606238886, 8315392.980988864, 8315470.278502004, 8315482.695056704, 8315512.5, 8315867.018766314, 8315883.881059623, 8316043.347439491, 8316044.397652803, 8316229.001628306, 8316231.08765461, 8316398.55891994, 8316501.62556408, 8316962.5, 8316978.125, 8319985.616138251, 8333403.125, 8336234.475524155, 8337918.75, 8338646.116199611, 8338729.019678894, 8339467.589393935, 8339718.75, 8340066.960466049, 8340453.977318289, 8340948.428439356, 8341227.129013521, 8341306.241547374, 8341419.962637396, 8341997.681391508, 8342026.5625, 8343327.162275228, 8343708.563578488, 8343784.375, 8343923.4375, 8344701.199182655, 8344838.873632628, 8345159.265173563, 8346385.9375, 8346603.125, 8348215.130023006, 8353742.411213591, 8357137.034176994, 8358762.008439152, 8365045.5406705765, 8376124.057779303, 8380240.436627636, 8386055.11363176, 8399418.75, 8405609.249651622, 8406027.38691187, 8406942.691161916, 8407178.940266853, 8407536.467768064, 8407851.218875298, 8407865.860266645, 8408713.81187575, 8409118.088049537, 8409265.615750374, 8409459.529459309, 8409614.732187828, 8420446.875, 8428306.25, 8429233.409167767, 8430009.536040459, 8431032.8125, 8433207.822950054, 8435535.9375, 8435643.563767646, 8435725.214332279, 8437638.055322029, 8438693.36835443, 8438864.33225539, 8440615.426503727, 8443376.378641248, 8445207.584271261, 8446209.914069867, 8446216.277268684, 8447353.875725823, 8447659.584069442, 8447664.057247812, 8448621.167177804, 8449403.486198429, 8449652.734534299, 8449682.407599503, 8451125.056287287, 8451164.867104132, 8451402.026665285, 8451803.125, 8452544.223131008, 8453415.614390083, 8455002.317307021, 8455117.250558104, 8456218.75, 8456535.560739933, 8456937.5, 8457852.840570662, 8459077.622680703, 8461247.716938933, 8461709.878447276, 8464707.8125, 8467947.499685794, 8482227.30866483, 8483031.25, 8483856.240608117, 8484255.248440586, 8486308.105436422, 8486432.8125, 8489256.665748358, 8493292.924023213, 8493321.506002156, 8502607.669628, 8503538.421034975, 8507386.82711315, 8507443.588330647, 8509452.025468005, 8515282.91425073, 8516963.408772534, 8517398.563500006, 8517848.163034765, 8518139.950507091, 8518156.237830644, 8518234.375, 8518341.34279156, 8518638.883657955, 8519111.611512186, 8519121.698745195, 8519312.520186068, 8519520.41387576, 8519596.875, 8519814.0625, 8519843.01170256, 8520082.580307454, 8520105.73661473, 8520292.1875, 8520486.450816134, 8520777.45319637, 8520848.4375, 8520875.649344724, 8520898.4375, 8521104.6875, 8521152.376170332, 8521183.606589423, 8521207.8125, 8521248.862215627, 8521739.235357836, 8521757.8125, 8521892.184444083, 8522180.656344173, 8522698.4375, 8522771.468365582, 8523181.25, 8523553.23950016, 8524401.24966382, 8525114.193078151, 8528166.044698069, 8529290.625, 8529573.669835111, 8530955.098084174, 8541927.452300385, 8544081.25, 8545062.039058596, 8545073.43215146, 8546138.529656857, 8546945.3125, 8548321.176818524, 8549044.283340544, 8549906.467852617, 8550402.663485872, 8550865.836635347, 8551806.985029878, 8554132.8125, 8568596.115615105, 8569502.18405574, 8569726.994415402, 8569865.91660652, 8570086.673585324, 8570208.57029519, 8570546.479868134, 8571142.1875, 8571726.5625, 8571875.918293525, 8572711.18965266, 8572714.53910085, 8573428.821486276, 8574268.54564588, 8574549.789498687, 8575130.687156312, 8575271.875, 8575481.25, 8575481.339530453, 8575771.875, 8575935.343551716, 8577084.430645963, 8579776.594190476, 8581023.4375, 8582480.076606305, 8582491.124737358, 8583612.704375189, 8587336.67689103, 8597117.660174295, 8598820.020624513, 8598970.3125, 8599252.768305674, 8599341.745048415, 8599535.76888719, 8599638.860279882, 8599820.3125, 8600071.3007365, 8600410.9375, 8600415.625, 8600419.20903456, 8600420.947447833, 8600912.248457663, 8601302.895576142, 8602244.58058216, 8602390.625, 8602873.4375, 8603022.75320485, 8603163.715833072, 8603548.491343023, 8603933.298765063, 8604070.587466232, 8604224.66143789, 8605085.9375, 8605345.101923905, 8605537.938344833, 8605581.25, 8606110.204622243, 8606192.444932695, 8606280.798204094, 8606395.10593875, 8606415.625, 8606509.321421832, 8606656.154620571, 8606657.8125, 8606753.113246365, 8606896.046030924, 8606900.0, 8606965.625, 8606993.4374584, 8606996.659767378, 8606999.758444488, 8607112.5, 8607252.33238264, 8607307.593338963, 8607331.160874233, 8607357.8125, 8607591.408569748, 8607844.866797693, 8608048.4375, 8608253.501066443, 8608302.722503494, 8608422.06956976, 8608501.837719355, 8608574.358322399, 8608762.4606557, 8608817.096890975, 8608911.185006104, 8609018.428879896, 8609354.709760608, 8609398.056386052, 8609716.552262738, 8609902.364066234, 8609920.158340504, 8610049.307810828, 8610173.4375, 8610235.227483705, 8610309.212079756, 8610319.113660594, 8610397.141872745, 8610499.884512128, 8610506.71604634, 8611512.5, 8611514.0625, 8611687.5, 8612081.058392745, 8613484.375, 8619666.955089599, 8627635.324658088, 8628213.689109024, 8630178.125, 8630333.514357865, 8630639.0625, 8634742.85898016, 8635781.25, 8638240.95692351, 8638275.999277115, 8638478.125, 8639084.775053017, 8640597.879206052, 8643681.503291212, 8648394.150743956, 8657109.947360601, 8657212.5, 8660253.481368234, 8663025.470105298, 8663745.330327785, 8664309.851672707, 8666190.625, 8666245.307176894, 8666668.75, 8666718.72258453, 8666901.38467099, 8667794.171563819, 8668535.568696847, 8668968.75, 8668983.804484073, 8672525.0, 8672545.22075658, 8673683.338767022, 8676946.176228436, 8687415.625, 8688018.75, 8689343.707311679, 8689378.125, 8691417.958196314, 8691609.78704437, 8692353.085242871, 8692682.8125, 8693862.306958245, 8694123.4375, 8695811.767731681, 8696463.61137796, 8697126.400446422, 8698060.942955622, 8698824.574166104, 8707765.02776603, 8709777.178082423, 8712494.080812324, 8712675.699691335, 8714410.459780138, 8716214.44940568, 8716342.2684105, 8717434.194674619, 8718078.125, 8718938.79205097, 8719457.034073249, 8720060.769543778, 8720662.5, 8721031.07493344, 8721538.717354769, 8721819.82956088, 8722805.182375401, 8724933.989299702, 8725016.290942838, 8725570.285675477, 8741644.583514169, 8743457.138009666, 8757836.764705556, 8757958.092856983, 8759465.40045935, 8759492.1875, 8759987.5, 8760071.008291448, 8760182.256552387, 8761065.275149357, 8761098.4375, 8761297.77943488, 8761305.298526878, 8761585.967110846, 8761620.3125, 8761630.809823265, 8761654.362469848, 8761674.656185266, 8761735.231760295, 8761814.713194514, 8761851.5625, 8761924.069542155, 8762172.890691562, 8762243.581301238, 8762601.5625, 8762622.069156919, 8762749.242889928, 8762951.99640761, 8762954.110662414, 8763059.133827377, 8763116.714493243, 8763158.881915653, 8763226.933460228, 8763543.726871086, 8764501.221371343, 8765079.296353994, 8765507.791948773, 8765593.747239342, 8765755.111916048, 8765866.229347708, 8766229.85070033, 8766327.31956625, 8766435.090917181, 8766470.318951605, 8767387.071595978, 8767608.07402775, 8767712.941883802, 8768245.68972497, 8768417.850259196, 8772183.18649311, 8778570.7589829, 8781869.91808381, 8782848.329188475, 8783748.144726442, 8783904.6875, 8785848.890858345, 8786586.64875731, 8786688.912031984, 8787678.79918079, 8787743.710634254, 8787775.925574888, 8787893.75, 8787945.342970949, 8788045.3125, 8788289.936089126, 8788677.034212716, 8788730.258987205, 8788874.737736834, 8788988.533410067, 8789286.336924363, 8789443.702197816, 8789472.074606089, 8789752.258213615, 8790536.063493835, 8790835.327392794, 8790944.150641805, 8791097.723229147, 8791164.0625, 8791227.11384436, 8791551.144338321, 8791589.827486228, 8792003.080822004, 8792394.721082427, 8792399.112893641, 8792580.549700651, 8792597.826293495, 8792923.969865251, 8792979.357751995, 8793662.777731525, 8793667.138669707, 8794496.783627115, 8794688.97362931, 8795120.3125, 8795373.736246465, 8797017.1875, 8797304.226961344, 8798127.356591668, 8798145.90992523, 8798983.973151257, 8799591.959243983, 8799623.4375, 8799697.616551714, 8799813.696770297, 8800090.386051806, 8800167.022542099, 8800315.375111809, 8800758.238265278, 8800809.740615252, 8801039.0625, 8801147.530080473, 8801151.5625, 8801181.25, 8801275.01928733, 8801293.32844859, 8801303.698953275, 8801353.864466941, 8801486.47695612, 8801615.611074911, 8801793.126660574, 8801844.11805503, 8801998.33890606, 8802060.14029371, 8802470.3125, 8802730.337128924, 8802845.174470788, 8803124.826370124, 8803203.125, 8803929.016341371, 8803960.335302863, 8804067.985665316, 8804121.712433381, 8804354.247212907, 8804497.20269005, 8804707.810784664, 8805001.804531293, 8805228.348393025, 8805456.25, 8805803.127854943, 8805929.092653928, 8805966.339015836, 8805992.77713951, 8806144.323341167, 8806518.329442644, 8807142.98731552, 8808840.832369516, 8816574.082584634, 8816593.753244633, 8816618.374521125, 8816796.292326475, 8817894.675239092, 8817999.010846527, 8818953.33771808, 8819170.899412682, 8819943.215595223, 8820206.028017018, 8820995.368853353, 8821086.804609066, 8822587.672555903, 8827488.961600453, 8830334.333261147, 8834119.814172754, 8837764.868374141, 8838543.53331121, 8840132.793769486, 8840627.683916222, 8841052.195132855, 8841526.434207685, 8841643.472592639, 8841744.302085644, 8841885.036223039, 8842112.5, 8842319.406803524, 8842823.279259548, 8843601.942460679, 8844661.0657589, 8845835.291322477, 8848165.665429814, 8848771.875, 8853364.817601208, 8853506.526032172, 8854409.283313308, 8855643.75, 8856013.770587072, 8856603.247419218, 8857954.6875, 8858874.88362935, 8858922.218823206, 8862476.81160133, 8865661.586242074, 8872455.348693188, 8874615.625, 8885168.75, 8887106.900053984, 8887162.733134476, 8889202.268870646, 8889920.763451394, 8890350.560123678, 8894590.625, 8895539.150954025, 8896314.0625, 8897602.319726355, 8902455.26908971, 8907457.631979246, 8910141.96434225, 8914328.606279142, 8915858.821012309, 8924028.633814387, 8926163.833556203, 8926506.25, 8926537.681139885, 8926856.372587036, 8927321.875, 8927367.368788395, 8927443.542579466, 8927554.6875, 8928292.774053471, 8928746.682031475, 8929682.8125, 8929808.848971633, 8930058.377529735, 8930324.200391404, 8930595.3125, 8932661.75839187, 8947826.612175778, 8947973.426235665, 8949913.677316826, 8952531.888268333, 8953405.179890037, 8973735.071769064, 8977515.625, 8977626.78952252, 8978576.5625, 8979445.007214239, 8982210.234443072, 8982632.419419676, 8983854.658747798, 8984115.972996201, 8984300.0, 8984343.695084102, 8985104.270646567, 8985888.358492944, 8997941.848660292, 9000880.643731674, 9002267.170349887, 9011440.222170234, 9022012.985585375, 9024086.221926132, 9029528.727231009, 9029569.27358163, 9038038.148378199, 9038979.894092165, 9039607.306295946, 9040483.035914386, 9041433.35632043, 9042002.140212784, 9043029.470822044, 9044396.875, 9048779.103877492, 9048893.75, 9051499.413855297, 9063818.673266903, 9075919.357297882, 9076146.503558852, 9076600.0, 9077160.9375, 9079224.744413745, 9079503.344378667, 9079990.579997987, 9080100.603462087, 9080214.082251677, 9085578.37213353, 9085580.732648382, 9093088.510449449, 9093502.591851875, 9093547.554655017, 9094234.375, 9095631.200820178, 9096606.338030664, 9096695.3125, 9097741.56745085, 9104399.995708533, 9111896.09260009, 9113144.216191085, 9114654.402298708, 9114870.379683735, 9115793.75, 9115913.755023334, 9116146.315416526, 9117755.605718808, 9118900.756670551, 9119602.185447367, 9122048.74956107, 9122723.4375, 9124006.832037397, 9124327.089729222, 9125695.620216742, 9126769.194221029, 9127439.850877596, 9127848.761286462, 9128133.17757539, 9128190.625, 9128237.51451496, 9128859.375, 9129418.813718805, 9129592.1875, 9129617.86623772, 9130021.793833602, 9130024.553207485, 9130058.32579186, 9130080.87157726, 9130202.925470905, 9130267.881401803, 9130826.104206752, 9131590.625, 9132709.816162918, 9133312.656016277, 9133560.65225453, 9134543.75, 9135860.9375, 9139103.125, 9139451.23617209, 9144348.4375, 9147725.60478068, 9148104.516481018, 9155900.841282591, 9156856.845250951, 9158812.839022757, 9159342.1875, 9161112.33662943, 9162690.645295285, 9162955.444869267, 9163361.13534177, 9163653.125, 9164086.383745493, 9164214.0625, 9165433.195208296, 9165699.79999087, 9166110.511994882, 9166137.47640225, 9166589.442820355, 9166737.290524095, 9166887.409230076, 9166900.019938542, 9167171.485485885, 9167340.126804389, 9167356.111219529, 9168076.5625, 9168217.024586234, 9168426.550308518, 9168845.3125, 9169339.928998742, 9169832.276958968, 9169856.562272528, 9169992.1875, 9170005.529988293, 9170585.42561701, 9170606.25, 9170681.86576932, 9170950.566241052, 9171089.595328502, 9171137.5, 9171211.16852662, 9171271.875, 9171381.103798738, 9171427.840660254, 9172215.047926646, 9172225.0, 9172504.580218354, 9172818.75, 9172926.5625, 9172978.126399986, 9173003.125, 9173013.02908633, 9173299.445943208, 9173307.437577972, 9173320.3125, 9173434.375, 9173746.782804038, 9173878.172099113, 9173967.12975853, 9173978.566886142, 9174317.190990288, 9174874.485587135, 9174936.003430763, 9175041.161474392, 9175104.26788328, 9175249.621790404, 9175520.844955068, 9175653.121602878, 9175690.47071709, 9175825.0, 9175857.614205316, 9175932.010470023, 9175998.471781485, 9176132.8125, 9176387.473319143, 9176755.624917837, 9177289.866096565, 9180126.612602953, 9197815.625, 9198381.769709237, 9198639.024347296, 9199113.47321856, 9199475.497089079, 9204074.420630813, 9205200.0, 9206632.941054136, 9207622.8600254, 9207834.109819785, 9207866.769148927, 9207890.61077441, 9207915.923068317, 9209080.533785919, 9209091.759923885, 9210842.978205923, 9211332.311727233, 9211579.6875, 9213439.30326695, 9214395.006802853, 9214568.693848692, 9215640.584578117, 9215842.008282358, 9216112.05568327, 9216785.305546964, 9220015.366502887, 9220964.252439287, 9223857.56492358, 9226472.33735355, 9226928.417212427, 9227106.607957048, 9230539.667604525, 9231954.484096684, 9232950.974695511, 9233717.217121048, 9233903.075637478, 9234028.486415446, 9234573.562530898, 9234604.721211143, 9234898.4375, 9235314.851675663, 9235655.274430064, 9235660.9375, 9235870.3125, 9236198.4375, 9236249.86755878, 9236287.848110877, 9236300.541417861, 9236740.545741864, 9236966.524178185, 9237029.6875, 9237640.813706355, 9237803.249305192, 9238020.694553085, 9238288.300413001, 9238476.5625, 9238589.571436418, 9238823.34334107, 9238890.470776265, 9238906.221396888, 9239071.226967191, 9239301.250845654, 9239448.139369665, 9239464.0625, 9239557.24172803, 9239578.057902358, 9239595.219572157, 9239656.193056764, 9240205.495758956, 9240538.667145452, 9240580.643610789, 9240608.719609514, 9240873.4375, 9242102.672297819, 9242146.875, 9242578.102937033, 9243480.928799111, 9243533.328164652, 9244648.643965168, 9246545.334720189, 9246628.125, 9246672.34053888, 9247766.724791124, 9248201.5625, 9248232.686334496, 9248235.083407149, 9248821.20204587, 9248889.159188757, 9248971.355530139, 9249897.756314183, 9249900.14956161, 9249940.140630169, 9251579.661133934, 9251687.5, 9253689.0625, ...], [68.43311800371656, 17.7376675632269, 101.35851394918576, 50.81873886124498, 33.56118909823936, 11.430752835375042, 13.485066551702202, 11.960077218866365, 12.74529002905105, 9.655707713036675, 19.61328915594232, 34.51153569051553, 62.80756257277643, 41.32869663018424, 48.71243204387443, 37.215092906864214, 65.30789017309104, 63.322584145754, 18.523313999021806, 32.92623572002932, 10.809747598000126, 90.48592331787019, 71.84546838824973, 10.521645068659922, 20.083035818750798, 31.786864949469525, 18.061779584883393, 57.639561071660836, 55.68179991479225, 94.5913136042648, 154.29437066941952, 38.43207081454058, 19.577226081762316, 13.7027884208977, 14.438666309584267, 17.186064945236247, 40.58239594259598, 13.982807254358043, 5.536917929157125, 91.8683974327008, 12.509404768668848, 90.32304283974497, 61.35363480629534, 5.732793281895563, 7.187257742375246, 9.735760491823443, 61.44579701866072, 31.982833025934106, 56.11683298135777, 76.04475748687194, 61.845954863927936, 46.61034496538443, 6.8102648529876255, 6.367930431017303, 28.58115022817804, 76.88519615079336, 7.222391407629676, 11.754030009044069, 9.429539180499882, 57.61216822616898, 19.195657053302618, 11.508221945568113, 46.58978531789434, 5.188834870105811, 18.476944995834028, 14.392887979711375, 17.938542225365257, 32.63821868395546, 6.866968943335353, 15.739897472135896, 77.98302715293859, 34.43734738347986, 13.9952168762591, 10.199368237559929, 14.833599749648489, 24.95468730585862, 38.50783256057065, 262.72594600263733, 55.93429989263553, 87.7413968381232, 49.03843835171005, 55.77235334867376, 49.418093256692295, 6.899789511177783, 30.532916001397393, 80.6569950107293, 10.307121977191912, 33.34322182940105, 16.4034606846763, 17.058392804748728, 16.35555392122373, 22.969058809031882, 27.03673916935278, 6.845903687784166, 70.49923180320529, 67.38248304333176, 24.52964892951929, 89.7561740774965, 184.76764653080224, 33.66624981836773, 31.579198362887873, 13.918471748316069, 8.883921926872025, 30.71870466513076, 20.607826242986913, 21.919228776107563, 11.99137178614187, 47.210092451243504, 8.578359680218338, 22.61560126530641, 18.589051241175472, 77.25460939290079, 19.064516806736272, 47.39678255939688, 53.226185677284484, 15.667289674739253, 18.713248983757925, 67.55681087601145, 26.33552984962857, 76.14094152436874, 16.62184105744845, 20.01083479028168, 61.941897574459574, 25.798865329123576, 114.20747758486911, 50.42382519558648, 14.119576957179122, 15.236048794071156, 64.93398934412122, 16.771622527669983, 11.399651868430743, 42.73115923215475, 53.360433496504236, 13.959947511522993, 86.86523443975652, 23.03060654720139, 11.655917761039133, 42.13529716898806, 11.139860503275559, 32.483356959956694, 98.53154063193459, 11.375661727818438, 69.9763767065741, 23.292891646353333, 12.604296626735417, 52.69472142076427, 7.408236308764115, 8.235724838044701, 56.642694113161916, 86.29020900457348, 9.02009595329423, 78.0226294323359, 9.727548665750314, 90.24868485140595, 65.3370073829609, 130.00194346892016, 80.73909189161698, 19.618040392242364, 56.248703091202486, 73.56614207306549, 19.172536422208328, 19.232617809729433, 23.51264502581113, 80.76126612407498, 25.585990530229683, 114.31027932601029, 10.551834400749815, 18.15898929761579, 68.06317293679837, 66.22677489363545, 15.425422802811388, 49.176495915630994, 73.05649415267263, 49.011896891311224, 30.34083277027651, 123.06214720393272, 9.417873460506293, 58.71055208772843, 24.666869836459902, 73.33619908758925, 35.69337343944622, 40.71962134298673, 14.141445197993884, 8.795348618196131, 41.111744607491275, 92.59817839855125, 26.610885497295783, 159.5700626904845, 19.269412316056076, 96.89043947136962, 32.03538684609903, 6.611648071106282, 42.96891451159563, 57.101980708836074, 26.45390482388054, 25.611636974093173, 7.092877823950942, 29.071135344009615, 56.511712892760194, 13.339823949939813, 35.17261497845952, 21.84094628450377, 21.577700396147197, 151.46531971390525, 39.62285316354897, 35.83721339690014, 23.98766971293453, 60.62394943585004, 26.271317200975364, 19.40685001920338, 5.852211163127164, 5.4305831444115755, 99.13030723698512, 23.2090446972673, 15.921062688132734, 57.388985894946245, 8.82808583883394, 34.50802121248583, 31.58779278547791, 23.63720074459013, 110.79595887834583, 29.659912496114195, 12.2087997449356, 15.59302933296052, 44.55714648023897, 89.65047400423032, 60.78805680523806, 25.32154517794402, 6.110675140123844, 27.86177006470686, 19.311075403920228, 9.570410649809551, 28.186999150223496, 204.10762599887056, 150.50152104591592, 19.821431417055337, 12.327337474591543, 88.59661615476345, 16.93963530166974, 76.12335520364172, 19.643464285831524, 32.08956713739983, 5.15636656467649, 135.07121864063149, 11.216842187433189, 19.25591688270551, 11.940005148366108, 31.234212851287314, 6.8617883527437975, 68.06526197123993, 14.794402081805973, 15.187430789986578, 66.52538631290123, 22.817376818215845, 54.21429520356889, 13.531195942759016, 26.365624151454313, 5.49910237857886, 9.796755157111553, 57.79752830916148, 115.54464644617752, 10.787782566295853, 81.6776834512526, 14.905832387140439, 17.61943413519753, 31.399586927929, 77.26216740117381, 12.688112095485108, 12.513924999675673, 22.90766293995341, 10.911498232419868, 62.880957460406634, 103.8871308208677, 5.802114180852416, 25.906586016861283, 11.290563603217905, 18.574399106828423, 99.2145055003094, 89.67699518340532, 5.5777884339907695, 11.10873844415029, 119.28904187806452, 20.840987911399157, 5.094952478683758, 58.84099305334976, 13.247804089496023, 9.348530158795283, 13.248182324778991, 47.801958730272645, 102.63756007310589, 19.40523913467906, 56.07933405497298, 10.410049995100815, 61.92051905040971, 8.57805743850497, 19.934918534332223, 52.89242747292634, 18.169953369704295, 31.850239618429057, 109.39316429943605, 19.324623549114275, 19.17701765415353, 88.46832267442933, 6.3223920177881645, 9.481970017581192, 89.44350749619898, 13.531721853373284, 13.076660471891312, 59.21901774341484, 17.11575448721843, 65.01748122011182, 16.002362174471287, 48.542922568189084, 53.85658611502006, 8.521732986224139, 98.8774924189321, 25.068533430501887, 20.977773674530514, 31.8166825066816, 84.75938683827407, 10.476329349850376, 78.24816038794057, 26.409308641522973, 42.05114690606673, 15.31362647633351, 17.45642550347241, 110.23730975461702, 10.475597720714362, 147.14892524701602, 18.74891241224975, 69.03470113461819, 23.252814135584625, 85.3373107793081, 7.23981429974657, 21.369919799994257, 232.19754142061961, 18.910973204302742, 51.0894312680842, 34.66029217709763, 67.46170795884797, 12.911200622161317, 11.54611999775954, 42.49697643684243, 116.54274678584333, 14.215900172054246, 34.73523117338233, 49.67078744463197, 88.39737418671058, 69.87378730819336, 17.274566981519975, 31.595666836718202, 42.391391641970976, 47.56570507453688, 11.409930802062675, 47.87676177663868, 20.657790691528785, 13.366115060441775, 65.32398068747666, 12.222898004190238, 11.956713798419495, 25.139072236513087, 84.11399838901124, 10.612469233104868, 45.75994406642238, 114.05371724910759, 62.778357821007575, 56.644143035288494, 42.91931085866645, 29.09676029287306, 55.45646771884874, 7.778151967410093, 28.91361084741043, 24.390105737395956, 5.692310794709456, 58.09960472967407, 80.14205513133207, 91.8605201188694, 19.832591057952204, 38.86122301618027, 15.150783561896285, 11.983554047929994, 16.104481611925895, 10.636767471580342, 100.49410826785743, 33.32839371971042, 6.324215495263217, 58.56626246970523, 31.009767435098084, 13.092070950223835, 17.24940823762963, 7.530198339093789, 57.75376670116592, 6.082545224450621, 14.590016808095195, 28.683906964241928, 14.896898518433828, 143.2039303089322, 31.721121131718725, 102.63640756342743, 23.591851205766872, 14.180046854068149, 79.22286106086516, 47.63402141337783, 7.339688695067667, 24.841354668776255, 5.528770565244755, 37.53002567906656, 96.02135909752465, 22.05240633641929, 113.00433487986972, 123.01408784422321, 55.7339571221799, 22.10768544945192, 11.586984552969884, 10.253788834280993, 30.230368086632215, 111.70957104622448, 9.549835378637587, 101.97042511715169, 46.042825926202454, 22.76711799545199, 39.216999939801894, 19.233035354259247, 25.560942130337622, 62.72852466201688, 97.44073570453388, 19.626061657886574, 25.675326189225157, 16.536017516903893, 9.567735739155626, 104.77771321644472, 5.7370746095840275, 35.358720146398895, 45.73543076692614, 44.85023694867496, 59.835731651205755, 64.11358448693045, 74.46037857490566, 20.436749511029934, 22.85645626831528, 63.60035167291753, 8.696220941470006, 52.42482212438421, 60.513913128586125, 37.00799730017792, 112.945046050427, 51.13132888152378, 50.94489624433436, 98.50604617097423, 20.930650794119263, 7.697491923496097, 75.30884067726485, 17.688072755339746, 56.50452473589206, 8.484471824647626, 17.097623276453646, 15.009898781096386, 7.252657473703852, 130.133512336795, 46.64079908595485, 36.40722922717807, 21.44222045817037, 6.7285161992737414, 11.857440919055138, 60.941724389997134, 31.229734093447906, 20.81737147732534, 40.04877795685516, 81.20624910912079, 5.217040195313089, 48.29026460657468, 31.144470277945896, 46.337894872100314, 11.061631402345792, 49.51263159678002, 124.8997608393364, 7.2341484677787715, 54.02477596639888, 76.77329386697511, 25.22040977114321, 52.165383277853536, 25.062708475119198, 13.46193477897997, 87.09401962789676, 65.61636756262283, 30.133656485822655, 6.649856524739773, 67.12758224982174, 9.627717200774477, 72.71747201137087, 13.1941966004913, 19.668248352697844, 13.839374610040919, 10.857078513851274, 94.39676494652247, 8.148556445066529, 38.759888825077795, 7.543599746239893, 42.05626412209418, 25.489520079051896, 23.19070861360334, 13.373015903108259, 20.1091872160381, 82.05689378803149, 8.673207237043178, 20.818102788767213, 12.73980516695136, 49.033648426955374, 82.52413608482976, 90.16048235105627, 46.04730912266671, 46.0600857981608, 41.105307892117025, 12.42264580955484, 31.3541302563441, 103.30175162028577, 29.030793393137493, 136.3674069295596, 89.09180209364564, 45.160572313005346, 40.57821396678327, 28.910081541854588, 5.596312246045518, 33.819229295570814, 19.660018375024485, 52.440356767764925, 83.92928249266532, 9.929860618729279, 148.7474628095445, 25.586524985264635, 74.49612598445142, 6.8028975762453205, 41.324992730634605, 16.900930523327816, 28.406678507023628, 104.51311017826194, 6.040254174406506, 21.562366082646026, 91.84866456838019, 14.85407960715743, 23.239222009568124, 31.309857294002832, 14.863752099125751, 55.41093417866446, 9.718049524051034, 12.22496314514591, 15.602311976034414, 43.74038679264717, 89.42470401678098, 18.353316323189567, 59.45113560849189, 5.833587865247351, 22.083277151470245, 55.12269511138421, 49.58714861222338, 16.588356676012584, 29.225893541025766, 28.837536049693842, 23.63413715136091, 23.8434904379268, 175.11244204174804, 46.392579328600874, 12.457063548746447, 5.0955062107426325, 18.332922577069724, 38.726179920417884, 8.845262072328982, 134.95853378005887, 7.614295810286526, 76.96403976170211, 163.79190674896054, 9.764876347480145, 95.53112075982736, 24.245050555089435, 36.5384008412795, 21.62204618893245, 5.164249795214647, 9.506083716513867, 13.78613848947128, 243.27301237651608, 20.460809673858993, 5.479229365900428, 62.474039824103, 39.747340946027414, 22.947083089086675, 14.860641330281972, 6.614090687568209, 27.6798500868445, 28.686467007734322, 11.616680399202977, 35.19848188615106, 66.42388146037895, 17.450738484986378, 9.067323469063371, 16.117474351009115, 20.614537139483758, 26.839666989945187, 65.30392376418163, 39.39110259043596, 39.6594928734893, 57.445830212235286, 40.90383451333786, 35.17319995569745, 12.210390976132613, 13.603145167180102, 24.71257369708272, 43.04553990601813, 86.03005591143938, 13.709465055632684, 14.102780108790345, 40.06979887447143, 7.515290520029702, 8.525337898268935, 23.381882225858675, 45.76212980539964, 12.333426934903422, 53.11719324235663, 47.461141870968596, 8.29680319143125, 89.81020624074407, 17.697701729805708, 94.19948122899768, 17.492198733076123, 6.4849105646387954, 20.345054603306977, 16.558222703347415, 26.716420390934793, 22.984041858727917, 121.60224857525479, 18.171796771940013, 14.440272245769359, 25.51132859500567, 50.86028691119642, 72.63983163411463, 33.6733251876467, 16.824171546054647, 5.802048855731036, 22.110193335157117, 11.681688629274058, 28.49126922131191, 6.812807734138214, 20.397147871670658, 48.643523615633384, 6.267559136085409, 13.07358010735281, 10.018149863243382, 17.79328478208875, 12.160109596796266, 38.56663928770125, 5.573199459362055, 125.10188859749172, 18.142380088566547, 14.953890879561385, 22.832218436415687, 13.105185539925142, 158.94430059354858, 9.868310038900914, 15.819408087612743, 27.633156179889035, 13.232796857219025, 7.064296591624614, 20.495591117736865, 30.237105163766678, 112.09001805088133, 19.948106726526746, 170.56663803401187, 34.249343203899286, 74.01847071146372, 9.154663565391523, 113.90923779269188, 5.6792497586841915, 20.705922236121882, 23.86586621246608, 98.5996841210848, 19.50401671187647, 52.47603394891703, 93.60410225340217, 9.956239102603487, 25.74778851004377, 105.29446615006451, 11.334281708622857, 12.930901624990058, 44.61473133155491, 69.2879754162142, 12.55624581966973, 21.80617715866715, 119.2959187666066, 52.36140138420556, 23.854595394791854, 11.3246035778853, 31.222104259515355, 26.41868918778336, 135.7511007235637, 11.5407487850695, 12.319713034645366, 33.424535652117825, 64.89103667373853, 54.15495735725811, 12.322547648615243, 78.7669800941667, 71.65280076103534, 118.68745714741239, 17.614551254330532, 53.576734369149825, 81.42643224284845, 44.70659898576022, 5.315064896514615, 9.87687228200619, 25.407134153536063, 93.31815591738163, 17.15959020253038, 28.381364994763914, 35.93867512192876, 24.702900804753373, 43.92547089899306, 18.682663669880302, 11.324881332728408, 109.16246839630367, 17.976371956602616, 14.205767493355998, 48.18321353091093, 128.54019051759755, 25.221492231955036, 55.02318147798829, 7.423452540540336, 30.15912020997848, 12.574122586671551, 54.33819324480913, 8.774273319583614, 66.53298994792092, 21.919164226527858, 13.651900600194093, 18.098489707906474, 17.22180765427499, 98.17924112164701, 37.411381326879614, 17.951052075630656, 39.48895083227281, 9.085951461611801, 130.8724619635021, 41.14883825771936, 54.31088508033779, 16.457517193554473, 141.47515780868642, 35.838910501949066, 22.364666959679493, 12.800012846938895, 15.824970622733828, 22.649331981680135, 14.876541674851286, 13.600291063890976, 6.864483085164942, 8.442940356993413, 138.11749275010075, 33.706108302761024, 88.5056313909511, 5.543191829484291, 84.8796636188594, 64.85534994563685, 54.2392065049151, 23.448052429867662, 120.49032938113896, 43.65698281930172, 6.976044837026043, 30.092101901854324, 20.564187470263764, 15.174722651142591, 12.231189817060084, 70.67378079803578, 35.477920970362696, 61.248133662036004, 24.3351430328729, 18.092103295567696, 56.57518335691772, 31.55838503056165, 11.158720933209844, 8.42173729768076, 58.50597137584783, 13.18571710639516, 21.16868268120775, 59.22594994093751, 71.75130601707488, 98.20269016122151, 97.40735328676901, 55.938857159881614, 20.37368230552792, 43.567114605295416, 58.09813476691372, 171.99882073125178, 6.707873447035285, 124.41964211514627, 47.293194375570316, 70.17582594060255, 88.88909571148922, 73.25767632997173, 36.23794724240462, 18.00084887600343, 38.58653003319061, 60.90523584061892, 71.70806397270714, 131.10290688497764, 43.78476361500924, 9.737559091007968, 6.372222079775827, 22.80782964719819, 30.166218187131427, 65.66699817836263, 195.66708457585327, 59.79218379476465, 73.47401780919924, 50.499699004838604, 159.72195464341462, 14.640910081552091, 18.118924416574462, 12.03749476391205, 32.36947158173627, 43.390660268360364, 8.69110180463553, 16.12584107151458, 126.58437761503832, 6.854897691394027, 7.660657927547475, 42.26786329250377, 138.6743151106785, 38.40974659951499, 49.4927368056402, 23.42016544152971, 45.709488728928925, 9.901103679991458, 102.55604004120504, 42.89773230929276, 17.764936205526837, 16.413001250038853, 51.12755107810224, 6.071273302361405, 88.89986734292468, 89.50857345550328, 153.99385234756357, 33.53212372237307, 5.555137427190876, 56.42994420777149, 41.300891772806246, 14.23029347455596, 37.48596627509744, 112.44351300109362, 39.366100956294034, 42.91260141173963, 14.606467112376562, 5.130928542945023, 9.022420366230063, 51.879713778817724, 7.085442174875715, 76.73641451592853, 37.92738028675109, 28.285883280165788, 88.96922140907783, 10.190019174200994, 35.91531576639982, 142.68756181613662, 58.910151249966525, 30.126229671310682, 21.37537445163734, 56.19196347133138, 47.67910032908284, 17.651203979435806, 174.3796557976731, 70.08402326950123, 34.549582642606204, 37.1586196966231, 41.084254705778385, 40.077777980210804, 34.208083004134046, 74.87087207730922, 14.54778313673492, 34.143169841840646, 114.77456467180784, 35.96397967656594, 71.06621148581786, 5.2171143030646085, 13.18039588854226, 22.83867650774497, 30.48291333631185, 55.24810988270008, 8.23841697330496, 78.52212117470512, 14.725900417927823, 102.52033229851253, 11.133166733870217, 5.674783285284004, 28.42875513225983, 12.084373002705007, 5.680562963252312, 22.80061383180648, 42.37227994513353, 38.97390043408844, 73.74943656164017, 44.76262078347777, 31.290463109530513, 113.53873838868249, 16.10653068548958, 41.686889246007986, 28.007506715953024, 18.763201612578833, 21.46618652854994, 7.134684778329529, 51.37881139195856, 17.37738467231686, 27.7916525850945, 29.095331308224473, 18.68930521650523, 73.7448465722956, 38.45645012342475, 15.455233124129876, 51.321841840754416, 43.40731612204999, 95.91959928962723, 28.246408667838452, 7.202072887099279, 33.6925328690665, 6.6810445129595974, 8.754216645658856, 36.03352408837367, 70.81619754226303, 11.526118595011829, 24.395721168154637, 38.607570555295446, 44.6643860467161, 77.68398764618053, 88.53540581450441, 42.7356896457225, 54.56479426502995, 149.67248167228675, 24.444302532228708, 30.636205608344728, 16.18598414644615, 24.133923046423014, 61.09723082822547, 5.390754632500596, 13.190945217462177, 8.302303792132458, 27.58449805746485, 16.524703839272938, 8.353821283218913, 46.29500022645552, 43.957054851049755, 55.08113710415947, 12.188400517427313, 39.571444786774684, 35.42748528790432, 90.07912649615294, 26.15626979079481, 7.734190406683985, 25.5178338814397, 14.64778157870695, 20.00517330192964, 131.82081578292906, 49.256162140794544, 110.11087147928095, 11.782453380390773, 5.875676841226943, 50.670499269906514, 31.8134660729375, 58.07151448959713, 25.81037737865072, 6.757809582421061, 8.837622081756322, 283.7156125919432, 23.774653458814637, 72.19018884388075, 13.13630922172171, 21.829304070938136, 14.598759409633654, 124.48438280467632, 7.924301413528754, 109.70495629407097, 28.37185655454164, 142.7652263176586, 52.4273954790592, 10.486873913266463, 55.74393456022164, 80.16042972283351, 13.843945956812437, 18.904008002507894, 5.349046617904389, 15.026884176958541, 71.11626218469829, 45.37826541282105, 60.341553295188234, 43.997664722996134, 26.258001473712508, 34.650192932876756, 63.24247577233905, 15.3233093667509, 20.94934532004304, 32.833942150919036, 7.658242353424789, 61.55325386468178, 11.086743523523774, 112.256479335585, 49.822497849783176, ...])
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);
([7397939.0625, 7704933.393039329, 7737761.612331734, 7769729.348748739, 7771842.76721987, 7774412.685597611, 7774879.244553628, 7776097.349382634, 7776221.148304519, 7776419.110156442, 7776824.288370184, 7779212.5, 7779298.535611596, 7779535.9375, 7779723.4375, 7780081.25, 7782050.182141944, 7782659.375, 7782699.139973235, 7784349.964316689, 7833426.349087959, 7836973.4375, 7861548.4375, 7862271.449267961, 7869395.5506423265, 7869437.251486818, 7873274.070033665, 7874887.794799115, 7887510.9375, 7898028.108690942, 7917109.785829341, 7919712.5, 7931710.2212998215, 7931744.944526238, 7932898.299006537, 7932933.298520196, 7934950.510212944, 7935675.976961071, 7936462.578814606, 7937717.1875, 7964941.35952755, 7965843.882962345, 7970176.5625, 7971566.0264580995, 7974189.307058917, 7978486.379901186, 7987451.1122533195, 8004562.180438632, 8004845.3125, 8005706.849987401, 8026276.5625, 8031187.5, 8037590.854783627, 8037653.882759026, 8048233.0606628815, 8049399.577657104, 8050633.18306144, 8050644.116868101, 8051556.363824575, 8054581.514340296, 8055316.421583525, 8056840.855525525, 8060555.354927711, 8061050.980144329, 8076640.799870205, 8078060.473716655, 8087375.757579948, 8087954.6875, 8092020.809550859, 8092658.007301205, 8093018.214517124, 8093417.1875, 8093679.414905537, 8093972.749536882, 8101893.117013212, 8108600.360665093, 8108691.618015537, 8108779.53679187, 8109601.5625, 8109700.0, 8110386.7840823, 8118816.698442734, 8129790.625, 8150544.3963436745, 8157662.5, 8160225.0, 8160941.590364399, 8161706.847572993, 8161833.149590972, 8161836.400475008, 8162128.274284693, 8162319.94873761, 8165696.795010699, 8166639.4616725985, 8177113.884368097, 8177455.729080852, 8183045.812644681, 8185472.272532221, 8185855.474336378, 8189353.125, 8189360.852620794, 8191573.140437559, 8194544.731209752, 8196467.948098052, 8209331.604307527, 8225773.173898544, 8227370.802705714, 8229471.098951568, 8267164.57631179, 8268969.662069769, 8278682.1195566, 8281878.125, 8283900.550268, 8284612.508171016, 8287309.224742602, 8287928.303220154, 8288741.354951197, 8289714.0625, 8294748.237474959, 8303472.643596997, 8303609.755557239, 8303920.200373592, 8304139.71589304, 8304306.095039223, 8304734.169821001, 8304785.9375, 8304791.953739149, 8304961.537021878, 8305066.359502276, 8305136.159894254, 8305143.917283477, 8305364.0625, 8305466.403332174, 8305791.903709376, 8305951.5625, 8305991.8289514985, 8306379.656886472, 8306592.091991053, 8306695.320261669, 8306889.687616366, 8306891.389264908, 8307087.653046069, 8307403.125, 8307423.915607988, 8307602.338463992, 8307868.629047939, 8307961.926624706, 8308334.277583127, 8308759.375, 8308850.0, 8309130.857360893, 8309170.3125, 8309216.059076931, 8310143.616828118, 8312195.3125, 8313320.3125, 8314646.875, 8314744.601470712, 8314991.882416848, 8315230.606238886, 8315392.980988864, 8315470.278502004, 8315482.695056704, 8315512.5, 8315867.018766314, 8315883.881059623, 8316043.347439491, 8316044.397652803, 8316229.001628306, 8316231.08765461, 8316398.55891994, 8316501.62556408, 8316962.5, 8316978.125, 8319985.616138251, 8333403.125, 8336234.475524155, 8337918.75, 8338646.116199611, 8338729.019678894, 8339467.589393935, 8339718.75, 8340066.960466049, 8340453.977318289, 8340948.428439356, 8341227.129013521, 8341306.241547374, 8341419.962637396, 8341997.681391508, 8342026.5625, 8343327.162275228, 8343708.563578488, 8343784.375, 8343923.4375, 8344701.199182655, 8344838.873632628, 8345159.265173563, 8346385.9375, 8346603.125, 8348215.130023006, 8353742.411213591, 8357137.034176994, 8358762.008439152, 8365045.5406705765, 8376124.057779303, 8380240.436627636, 8386055.11363176, 8399418.75, 8405609.249651622, 8406027.38691187, 8406942.691161916, 8407178.940266853, 8407536.467768064, 8407851.218875298, 8407865.860266645, 8408713.81187575, 8409118.088049537, 8409265.615750374, 8409459.529459309, 8409614.732187828, 8420446.875, 8428306.25, 8429233.409167767, 8430009.536040459, 8431032.8125, 8433207.822950054, 8435535.9375, 8435643.563767646, 8435725.214332279, 8437638.055322029, 8438693.36835443, 8438864.33225539, 8440615.426503727, 8443376.378641248, 8445207.584271261, 8446209.914069867, 8446216.277268684, 8447353.875725823, 8447659.584069442, 8447664.057247812, 8448621.167177804, 8449403.486198429, 8449652.734534299, 8449682.407599503, 8451125.056287287, 8451164.867104132, 8451402.026665285, 8451803.125, 8452544.223131008, 8453415.614390083, 8455002.317307021, 8455117.250558104, 8456218.75, 8456535.560739933, 8456937.5, 8457852.840570662, 8459077.622680703, 8461247.716938933, 8461709.878447276, 8464707.8125, 8467947.499685794, 8482227.30866483, 8483031.25, 8483856.240608117, 8484255.248440586, 8486308.105436422, 8486432.8125, 8489256.665748358, 8493292.924023213, 8493321.506002156, 8502607.669628, 8503538.421034975, 8507386.82711315, 8507443.588330647, 8509452.025468005, 8515282.91425073, 8516963.408772534, 8517398.563500006, 8517848.163034765, 8518139.950507091, 8518156.237830644, 8518234.375, 8518341.34279156, 8518638.883657955, 8519111.611512186, 8519121.698745195, 8519312.520186068, 8519520.41387576, 8519596.875, 8519814.0625, 8519843.01170256, 8520082.580307454, 8520105.73661473, 8520292.1875, 8520486.450816134, 8520777.45319637, 8520848.4375, 8520875.649344724, 8520898.4375, 8521104.6875, 8521152.376170332, 8521183.606589423, 8521207.8125, 8521248.862215627, 8521739.235357836, 8521757.8125, 8521892.184444083, 8522180.656344173, 8522698.4375, 8522771.468365582, 8523181.25, 8523553.23950016, 8524401.24966382, 8525114.193078151, 8528166.044698069, 8529290.625, 8529573.669835111, 8530955.098084174, 8541927.452300385, 8544081.25, 8545062.039058596, 8545073.43215146, 8546138.529656857, 8546945.3125, 8548321.176818524, 8549044.283340544, 8549906.467852617, 8550402.663485872, 8550865.836635347, 8551806.985029878, 8554132.8125, 8568596.115615105, 8569502.18405574, 8569726.994415402, 8569865.91660652, 8570086.673585324, 8570208.57029519, 8570546.479868134, 8571142.1875, 8571726.5625, 8571875.918293525, 8572711.18965266, 8572714.53910085, 8573428.821486276, 8574268.54564588, 8574549.789498687, 8575130.687156312, 8575271.875, 8575481.25, 8575481.339530453, 8575771.875, 8575935.343551716, 8577084.430645963, 8579776.594190476, 8581023.4375, 8582480.076606305, 8582491.124737358, 8583612.704375189, 8587336.67689103, 8597117.660174295, 8598820.020624513, 8598970.3125, 8599252.768305674, 8599341.745048415, 8599535.76888719, 8599638.860279882, 8599820.3125, 8600071.3007365, 8600410.9375, 8600415.625, 8600419.20903456, 8600420.947447833, 8600912.248457663, 8601302.895576142, 8602244.58058216, 8602390.625, 8602873.4375, 8603022.75320485, 8603163.715833072, 8603548.491343023, 8603933.298765063, 8604070.587466232, 8604224.66143789, 8605085.9375, 8605345.101923905, 8605537.938344833, 8605581.25, 8606110.204622243, 8606192.444932695, 8606280.798204094, 8606395.10593875, 8606415.625, 8606509.321421832, 8606656.154620571, 8606657.8125, 8606753.113246365, 8606896.046030924, 8606900.0, 8606965.625, 8606993.4374584, 8606996.659767378, 8606999.758444488, 8607112.5, 8607252.33238264, 8607307.593338963, 8607331.160874233, 8607357.8125, 8607591.408569748, 8607844.866797693, 8608048.4375, 8608253.501066443, 8608302.722503494, 8608422.06956976, 8608501.837719355, 8608574.358322399, 8608762.4606557, 8608817.096890975, 8608911.185006104, 8609018.428879896, 8609354.709760608, 8609398.056386052, 8609716.552262738, 8609902.364066234, 8609920.158340504, 8610049.307810828, 8610173.4375, 8610235.227483705, 8610309.212079756, 8610319.113660594, 8610397.141872745, 8610499.884512128, 8610506.71604634, 8611512.5, 8611514.0625, 8611687.5, 8612081.058392745, 8613484.375, 8619666.955089599, 8627635.324658088, 8628213.689109024, 8630178.125, 8630333.514357865, 8630639.0625, 8634742.85898016, 8635781.25, 8638240.95692351, 8638275.999277115, 8638478.125, 8639084.775053017, 8640597.879206052, 8643681.503291212, 8648394.150743956, 8657109.947360601, 8657212.5, 8660253.481368234, 8663025.470105298, 8663745.330327785, 8664309.851672707, 8666190.625, 8666245.307176894, 8666668.75, 8666718.72258453, 8666901.38467099, 8667794.171563819, 8668535.568696847, 8668968.75, 8668983.804484073, 8672525.0, 8672545.22075658, 8673683.338767022, 8676946.176228436, 8687415.625, 8688018.75, 8689343.707311679, 8689378.125, 8691417.958196314, 8691609.78704437, 8692353.085242871, 8692682.8125, 8693862.306958245, 8694123.4375, 8695811.767731681, 8696463.61137796, 8697126.400446422, 8698060.942955622, 8698824.574166104, 8707765.02776603, 8709777.178082423, 8712494.080812324, 8712675.699691335, 8714410.459780138, 8716214.44940568, 8716342.2684105, 8717434.194674619, 8718078.125, 8718938.79205097, 8719457.034073249, 8720060.769543778, 8720662.5, 8721031.07493344, 8721538.717354769, 8721819.82956088, 8722805.182375401, 8724933.989299702, 8725016.290942838, 8725570.285675477, 8741644.583514169, 8743457.138009666, 8757836.764705556, 8757958.092856983, 8759465.40045935, 8759492.1875, 8759987.5, 8760071.008291448, 8760182.256552387, 8761065.275149357, 8761098.4375, 8761297.77943488, 8761305.298526878, 8761585.967110846, 8761620.3125, 8761630.809823265, 8761654.362469848, 8761674.656185266, 8761735.231760295, 8761814.713194514, 8761851.5625, 8761924.069542155, 8762172.890691562, 8762243.581301238, 8762601.5625, 8762622.069156919, 8762749.242889928, 8762951.99640761, 8762954.110662414, 8763059.133827377, 8763116.714493243, 8763158.881915653, 8763226.933460228, 8763543.726871086, 8764501.221371343, 8765079.296353994, 8765507.791948773, 8765593.747239342, 8765755.111916048, 8765866.229347708, 8766229.85070033, 8766327.31956625, 8766435.090917181, 8766470.318951605, 8767387.071595978, 8767608.07402775, 8767712.941883802, 8768245.68972497, 8768417.850259196, 8772183.18649311, 8778570.7589829, 8781869.91808381, 8782848.329188475, 8783748.144726442, 8783904.6875, 8785848.890858345, 8786586.64875731, 8786688.912031984, 8787678.79918079, 8787743.710634254, 8787775.925574888, 8787893.75, 8787945.342970949, 8788045.3125, 8788289.936089126, 8788677.034212716, 8788730.258987205, 8788874.737736834, 8788988.533410067, 8789286.336924363, 8789443.702197816, 8789472.074606089, 8789752.258213615, 8790536.063493835, 8790835.327392794, 8790944.150641805, 8791097.723229147, 8791164.0625, 8791227.11384436, 8791551.144338321, 8791589.827486228, 8792003.080822004, 8792394.721082427, 8792399.112893641, 8792580.549700651, 8792597.826293495, 8792923.969865251, 8792979.357751995, 8793662.777731525, 8793667.138669707, 8794496.783627115, 8794688.97362931, 8795120.3125, 8795373.736246465, 8797017.1875, 8797304.226961344, 8798127.356591668, 8798145.90992523, 8798983.973151257, 8799591.959243983, 8799623.4375, 8799697.616551714, 8799813.696770297, 8800090.386051806, 8800167.022542099, 8800315.375111809, 8800758.238265278, 8800809.740615252, 8801039.0625, 8801147.530080473, 8801151.5625, 8801181.25, 8801275.01928733, 8801293.32844859, 8801303.698953275, 8801353.864466941, 8801486.47695612, 8801615.611074911, 8801793.126660574, 8801844.11805503, 8801998.33890606, 8802060.14029371, 8802470.3125, 8802730.337128924, 8802845.174470788, 8803124.826370124, 8803203.125, 8803929.016341371, 8803960.335302863, 8804067.985665316, 8804121.712433381, 8804354.247212907, 8804497.20269005, 8804707.810784664, 8805001.804531293, 8805228.348393025, 8805456.25, 8805803.127854943, 8805929.092653928, 8805966.339015836, 8805992.77713951, 8806144.323341167, 8806518.329442644, 8807142.98731552, 8808840.832369516, 8816574.082584634, 8816593.753244633, 8816618.374521125, 8816796.292326475, 8817894.675239092, 8817999.010846527, 8818953.33771808, 8819170.899412682, 8819943.215595223, 8820206.028017018, 8820995.368853353, 8821086.804609066, 8822587.672555903, 8827488.961600453, 8830334.333261147, 8834119.814172754, 8837764.868374141, 8838543.53331121, 8840132.793769486, 8840627.683916222, 8841052.195132855, 8841526.434207685, 8841643.472592639, 8841744.302085644, 8841885.036223039, 8842112.5, 8842319.406803524, 8842823.279259548, 8843601.942460679, 8844661.0657589, 8845835.291322477, 8848165.665429814, 8848771.875, 8853364.817601208, 8853506.526032172, 8854409.283313308, 8855643.75, 8856013.770587072, 8856603.247419218, 8857954.6875, 8858874.88362935, 8858922.218823206, 8862476.81160133, 8865661.586242074, 8872455.348693188, 8874615.625, 8885168.75, 8887106.900053984, 8887162.733134476, 8889202.268870646, 8889920.763451394, 8890350.560123678, 8894590.625, 8895539.150954025, 8896314.0625, 8897602.319726355, 8902455.26908971, 8907457.631979246, 8910141.96434225, 8914328.606279142, 8915858.821012309, 8924028.633814387, 8926163.833556203, 8926506.25, 8926537.681139885, 8926856.372587036, 8927321.875, 8927367.368788395, 8927443.542579466, 8927554.6875, 8928292.774053471, 8928746.682031475, 8929682.8125, 8929808.848971633, 8930058.377529735, 8930324.200391404, 8930595.3125, 8932661.75839187, 8947826.612175778, 8947973.426235665, 8949913.677316826, 8952531.888268333, 8953405.179890037, 8973735.071769064, 8977515.625, 8977626.78952252, 8978576.5625, 8979445.007214239, 8982210.234443072, 8982632.419419676, 8983854.658747798, 8984115.972996201, 8984300.0, 8984343.695084102, 8985104.270646567, 8985888.358492944, 8997941.848660292, 9000880.643731674, 9002267.170349887, 9011440.222170234, 9022012.985585375, 9024086.221926132, 9029528.727231009, 9029569.27358163, 9038038.148378199, 9038979.894092165, 9039607.306295946, 9040483.035914386, 9041433.35632043, 9042002.140212784, 9043029.470822044, 9044396.875, 9048779.103877492, 9048893.75, 9051499.413855297, 9063818.673266903, 9075919.357297882, 9076146.503558852, 9076600.0, 9077160.9375, 9079224.744413745, 9079503.344378667, 9079990.579997987, 9080100.603462087, 9080214.082251677, 9085578.37213353, 9085580.732648382, 9093088.510449449, 9093502.591851875, 9093547.554655017, 9094234.375, 9095631.200820178, 9096606.338030664, 9096695.3125, 9097741.56745085, 9104399.995708533, 9111896.09260009, 9113144.216191085, 9114654.402298708, 9114870.379683735, 9115793.75, 9115913.755023334, 9116146.315416526, 9117755.605718808, 9118900.756670551, 9119602.185447367, 9122048.74956107, 9122723.4375, 9124006.832037397, 9124327.089729222, 9125695.620216742, 9126769.194221029, 9127439.850877596, 9127848.761286462, 9128133.17757539, 9128190.625, 9128237.51451496, 9128859.375, 9129418.813718805, 9129592.1875, 9129617.86623772, 9130021.793833602, 9130024.553207485, 9130058.32579186, 9130080.87157726, 9130202.925470905, 9130267.881401803, 9130826.104206752, 9131590.625, 9132709.816162918, 9133312.656016277, 9133560.65225453, 9134543.75, 9135860.9375, 9139103.125, 9139451.23617209, 9144348.4375, 9147725.60478068, 9148104.516481018, 9155900.841282591, 9156856.845250951, 9158812.839022757, 9159342.1875, 9161112.33662943, 9162690.645295285, 9162955.444869267, 9163361.13534177, 9163653.125, 9164086.383745493, 9164214.0625, 9165433.195208296, 9165699.79999087, 9166110.511994882, 9166137.47640225, 9166589.442820355, 9166737.290524095, 9166887.409230076, 9166900.019938542, 9167171.485485885, 9167340.126804389, 9167356.111219529, 9168076.5625, 9168217.024586234, 9168426.550308518, 9168845.3125, 9169339.928998742, 9169832.276958968, 9169856.562272528, 9169992.1875, 9170005.529988293, 9170585.42561701, 9170606.25, 9170681.86576932, 9170950.566241052, 9171089.595328502, 9171137.5, 9171211.16852662, 9171271.875, 9171381.103798738, 9171427.840660254, 9172215.047926646, 9172225.0, 9172504.580218354, 9172818.75, 9172926.5625, 9172978.126399986, 9173003.125, 9173013.02908633, 9173299.445943208, 9173307.437577972, 9173320.3125, 9173434.375, 9173746.782804038, 9173878.172099113, 9173967.12975853, 9173978.566886142, 9174317.190990288, 9174874.485587135, 9174936.003430763, 9175041.161474392, 9175104.26788328, 9175249.621790404, 9175520.844955068, 9175653.121602878, 9175690.47071709, 9175825.0, 9175857.614205316, 9175932.010470023, 9175998.471781485, 9176132.8125, 9176387.473319143, 9176755.624917837, 9177289.866096565, 9180126.612602953, 9197815.625, 9198381.769709237, 9198639.024347296, 9199113.47321856, 9199475.497089079, 9204074.420630813, 9205200.0, 9206632.941054136, 9207622.8600254, 9207834.109819785, 9207866.769148927, 9207890.61077441, 9207915.923068317, 9209080.533785919, 9209091.759923885, 9210842.978205923, 9211332.311727233, 9211579.6875, 9213439.30326695, 9214395.006802853, 9214568.693848692, 9215640.584578117, 9215842.008282358, 9216112.05568327, 9216785.305546964, 9220015.366502887, 9220964.252439287, 9223857.56492358, 9226472.33735355, 9226928.417212427, 9227106.607957048, 9230539.667604525, 9231954.484096684, 9232950.974695511, 9233717.217121048, 9233903.075637478, 9234028.486415446, 9234573.562530898, 9234604.721211143, 9234898.4375, 9235314.851675663, 9235655.274430064, 9235660.9375, 9235870.3125, 9236198.4375, 9236249.86755878, 9236287.848110877, 9236300.541417861, 9236740.545741864, 9236966.524178185, 9237029.6875, 9237640.813706355, 9237803.249305192, 9238020.694553085, 9238288.300413001, 9238476.5625, 9238589.571436418, 9238823.34334107, 9238890.470776265, 9238906.221396888, 9239071.226967191, 9239301.250845654, 9239448.139369665, 9239464.0625, 9239557.24172803, 9239578.057902358, 9239595.219572157, 9239656.193056764, 9240205.495758956, 9240538.667145452, 9240580.643610789, 9240608.719609514, 9240873.4375, 9242102.672297819, 9242146.875, 9242578.102937033, 9243480.928799111, 9243533.328164652, 9244648.643965168, 9246545.334720189, 9246628.125, 9246672.34053888, 9247766.724791124, 9248201.5625, 9248232.686334496, 9248235.083407149, 9248821.20204587, 9248889.159188757, 9248971.355530139, 9249897.756314183, 9249900.14956161, 9249940.140630169, 9251579.661133934, 9251687.5, 9253689.0625, ...], [68.43311800371656, 17.7376675632269, 101.35851394918576, 50.81873886124498, 33.56118909823936, 11.430752835375042, 13.485066551702202, 11.960077218866365, 12.74529002905105, 9.655707713036675, 19.61328915594232, 34.51153569051553, 62.80756257277643, 41.32869663018424, 48.71243204387443, 37.215092906864214, 65.30789017309104, 63.322584145754, 18.523313999021806, 32.92623572002932, 10.809747598000126, 90.48592331787019, 71.84546838824973, 10.521645068659922, 20.083035818750798, 31.786864949469525, 18.061779584883393, 57.639561071660836, 55.68179991479225, 94.5913136042648, 154.29437066941952, 38.43207081454058, 19.577226081762316, 13.7027884208977, 14.438666309584267, 17.186064945236247, 40.58239594259598, 13.982807254358043, 5.536917929157125, 91.8683974327008, 12.509404768668848, 90.32304283974497, 61.35363480629534, 5.732793281895563, 7.187257742375246, 9.735760491823443, 61.44579701866072, 31.982833025934106, 56.11683298135777, 76.04475748687194, 61.845954863927936, 46.61034496538443, 6.8102648529876255, 6.367930431017303, 28.58115022817804, 76.88519615079336, 7.222391407629676, 11.754030009044069, 9.429539180499882, 57.61216822616898, 19.195657053302618, 11.508221945568113, 46.58978531789434, 5.188834870105811, 18.476944995834028, 14.392887979711375, 17.938542225365257, 32.63821868395546, 6.866968943335353, 15.739897472135896, 77.98302715293859, 34.43734738347986, 13.9952168762591, 10.199368237559929, 14.833599749648489, 24.95468730585862, 38.50783256057065, 262.72594600263733, 55.93429989263553, 87.7413968381232, 49.03843835171005, 55.77235334867376, 49.418093256692295, 6.899789511177783, 30.532916001397393, 80.6569950107293, 10.307121977191912, 33.34322182940105, 16.4034606846763, 17.058392804748728, 16.35555392122373, 22.969058809031882, 27.03673916935278, 6.845903687784166, 70.49923180320529, 67.38248304333176, 24.52964892951929, 89.7561740774965, 184.76764653080224, 33.66624981836773, 31.579198362887873, 13.918471748316069, 8.883921926872025, 30.71870466513076, 20.607826242986913, 21.919228776107563, 11.99137178614187, 47.210092451243504, 8.578359680218338, 22.61560126530641, 18.589051241175472, 77.25460939290079, 19.064516806736272, 47.39678255939688, 53.226185677284484, 15.667289674739253, 18.713248983757925, 67.55681087601145, 26.33552984962857, 76.14094152436874, 16.62184105744845, 20.01083479028168, 61.941897574459574, 25.798865329123576, 114.20747758486911, 50.42382519558648, 14.119576957179122, 15.236048794071156, 64.93398934412122, 16.771622527669983, 11.399651868430743, 42.73115923215475, 53.360433496504236, 13.959947511522993, 86.86523443975652, 23.03060654720139, 11.655917761039133, 42.13529716898806, 11.139860503275559, 32.483356959956694, 98.53154063193459, 11.375661727818438, 69.9763767065741, 23.292891646353333, 12.604296626735417, 52.69472142076427, 7.408236308764115, 8.235724838044701, 56.642694113161916, 86.29020900457348, 9.02009595329423, 78.0226294323359, 9.727548665750314, 90.24868485140595, 65.3370073829609, 130.00194346892016, 80.73909189161698, 19.618040392242364, 56.248703091202486, 73.56614207306549, 19.172536422208328, 19.232617809729433, 23.51264502581113, 80.76126612407498, 25.585990530229683, 114.31027932601029, 10.551834400749815, 18.15898929761579, 68.06317293679837, 66.22677489363545, 15.425422802811388, 49.176495915630994, 73.05649415267263, 49.011896891311224, 30.34083277027651, 123.06214720393272, 9.417873460506293, 58.71055208772843, 24.666869836459902, 73.33619908758925, 35.69337343944622, 40.71962134298673, 14.141445197993884, 8.795348618196131, 41.111744607491275, 92.59817839855125, 26.610885497295783, 159.5700626904845, 19.269412316056076, 96.89043947136962, 32.03538684609903, 6.611648071106282, 42.96891451159563, 57.101980708836074, 26.45390482388054, 25.611636974093173, 7.092877823950942, 29.071135344009615, 56.511712892760194, 13.339823949939813, 35.17261497845952, 21.84094628450377, 21.577700396147197, 151.46531971390525, 39.62285316354897, 35.83721339690014, 23.98766971293453, 60.62394943585004, 26.271317200975364, 19.40685001920338, 5.852211163127164, 5.4305831444115755, 99.13030723698512, 23.2090446972673, 15.921062688132734, 57.388985894946245, 8.82808583883394, 34.50802121248583, 31.58779278547791, 23.63720074459013, 110.79595887834583, 29.659912496114195, 12.2087997449356, 15.59302933296052, 44.55714648023897, 89.65047400423032, 60.78805680523806, 25.32154517794402, 6.110675140123844, 27.86177006470686, 19.311075403920228, 9.570410649809551, 28.186999150223496, 204.10762599887056, 150.50152104591592, 19.821431417055337, 12.327337474591543, 88.59661615476345, 16.93963530166974, 76.12335520364172, 19.643464285831524, 32.08956713739983, 5.15636656467649, 135.07121864063149, 11.216842187433189, 19.25591688270551, 11.940005148366108, 31.234212851287314, 6.8617883527437975, 68.06526197123993, 14.794402081805973, 15.187430789986578, 66.52538631290123, 22.817376818215845, 54.21429520356889, 13.531195942759016, 26.365624151454313, 5.49910237857886, 9.796755157111553, 57.79752830916148, 115.54464644617752, 10.787782566295853, 81.6776834512526, 14.905832387140439, 17.61943413519753, 31.399586927929, 77.26216740117381, 12.688112095485108, 12.513924999675673, 22.90766293995341, 10.911498232419868, 62.880957460406634, 103.8871308208677, 5.802114180852416, 25.906586016861283, 11.290563603217905, 18.574399106828423, 99.2145055003094, 89.67699518340532, 5.5777884339907695, 11.10873844415029, 119.28904187806452, 20.840987911399157, 5.094952478683758, 58.84099305334976, 13.247804089496023, 9.348530158795283, 13.248182324778991, 47.801958730272645, 102.63756007310589, 19.40523913467906, 56.07933405497298, 10.410049995100815, 61.92051905040971, 8.57805743850497, 19.934918534332223, 52.89242747292634, 18.169953369704295, 31.850239618429057, 109.39316429943605, 19.324623549114275, 19.17701765415353, 88.46832267442933, 6.3223920177881645, 9.481970017581192, 89.44350749619898, 13.531721853373284, 13.076660471891312, 59.21901774341484, 17.11575448721843, 65.01748122011182, 16.002362174471287, 48.542922568189084, 53.85658611502006, 8.521732986224139, 98.8774924189321, 25.068533430501887, 20.977773674530514, 31.8166825066816, 84.75938683827407, 10.476329349850376, 78.24816038794057, 26.409308641522973, 42.05114690606673, 15.31362647633351, 17.45642550347241, 110.23730975461702, 10.475597720714362, 147.14892524701602, 18.74891241224975, 69.03470113461819, 23.252814135584625, 85.3373107793081, 7.23981429974657, 21.369919799994257, 232.19754142061961, 18.910973204302742, 51.0894312680842, 34.66029217709763, 67.46170795884797, 12.911200622161317, 11.54611999775954, 42.49697643684243, 116.54274678584333, 14.215900172054246, 34.73523117338233, 49.67078744463197, 88.39737418671058, 69.87378730819336, 17.274566981519975, 31.595666836718202, 42.391391641970976, 47.56570507453688, 11.409930802062675, 47.87676177663868, 20.657790691528785, 13.366115060441775, 65.32398068747666, 12.222898004190238, 11.956713798419495, 25.139072236513087, 84.11399838901124, 10.612469233104868, 45.75994406642238, 114.05371724910759, 62.778357821007575, 56.644143035288494, 42.91931085866645, 29.09676029287306, 55.45646771884874, 7.778151967410093, 28.91361084741043, 24.390105737395956, 5.692310794709456, 58.09960472967407, 80.14205513133207, 91.8605201188694, 19.832591057952204, 38.86122301618027, 15.150783561896285, 11.983554047929994, 16.104481611925895, 10.636767471580342, 100.49410826785743, 33.32839371971042, 6.324215495263217, 58.56626246970523, 31.009767435098084, 13.092070950223835, 17.24940823762963, 7.530198339093789, 57.75376670116592, 6.082545224450621, 14.590016808095195, 28.683906964241928, 14.896898518433828, 143.2039303089322, 31.721121131718725, 102.63640756342743, 23.591851205766872, 14.180046854068149, 79.22286106086516, 47.63402141337783, 7.339688695067667, 24.841354668776255, 5.528770565244755, 37.53002567906656, 96.02135909752465, 22.05240633641929, 113.00433487986972, 123.01408784422321, 55.7339571221799, 22.10768544945192, 11.586984552969884, 10.253788834280993, 30.230368086632215, 111.70957104622448, 9.549835378637587, 101.97042511715169, 46.042825926202454, 22.76711799545199, 39.216999939801894, 19.233035354259247, 25.560942130337622, 62.72852466201688, 97.44073570453388, 19.626061657886574, 25.675326189225157, 16.536017516903893, 9.567735739155626, 104.77771321644472, 5.7370746095840275, 35.358720146398895, 45.73543076692614, 44.85023694867496, 59.835731651205755, 64.11358448693045, 74.46037857490566, 20.436749511029934, 22.85645626831528, 63.60035167291753, 8.696220941470006, 52.42482212438421, 60.513913128586125, 37.00799730017792, 112.945046050427, 51.13132888152378, 50.94489624433436, 98.50604617097423, 20.930650794119263, 7.697491923496097, 75.30884067726485, 17.688072755339746, 56.50452473589206, 8.484471824647626, 17.097623276453646, 15.009898781096386, 7.252657473703852, 130.133512336795, 46.64079908595485, 36.40722922717807, 21.44222045817037, 6.7285161992737414, 11.857440919055138, 60.941724389997134, 31.229734093447906, 20.81737147732534, 40.04877795685516, 81.20624910912079, 5.217040195313089, 48.29026460657468, 31.144470277945896, 46.337894872100314, 11.061631402345792, 49.51263159678002, 124.8997608393364, 7.2341484677787715, 54.02477596639888, 76.77329386697511, 25.22040977114321, 52.165383277853536, 25.062708475119198, 13.46193477897997, 87.09401962789676, 65.61636756262283, 30.133656485822655, 6.649856524739773, 67.12758224982174, 9.627717200774477, 72.71747201137087, 13.1941966004913, 19.668248352697844, 13.839374610040919, 10.857078513851274, 94.39676494652247, 8.148556445066529, 38.759888825077795, 7.543599746239893, 42.05626412209418, 25.489520079051896, 23.19070861360334, 13.373015903108259, 20.1091872160381, 82.05689378803149, 8.673207237043178, 20.818102788767213, 12.73980516695136, 49.033648426955374, 82.52413608482976, 90.16048235105627, 46.04730912266671, 46.0600857981608, 41.105307892117025, 12.42264580955484, 31.3541302563441, 103.30175162028577, 29.030793393137493, 136.3674069295596, 89.09180209364564, 45.160572313005346, 40.57821396678327, 28.910081541854588, 5.596312246045518, 33.819229295570814, 19.660018375024485, 52.440356767764925, 83.92928249266532, 9.929860618729279, 148.7474628095445, 25.586524985264635, 74.49612598445142, 6.8028975762453205, 41.324992730634605, 16.900930523327816, 28.406678507023628, 104.51311017826194, 6.040254174406506, 21.562366082646026, 91.84866456838019, 14.85407960715743, 23.239222009568124, 31.309857294002832, 14.863752099125751, 55.41093417866446, 9.718049524051034, 12.22496314514591, 15.602311976034414, 43.74038679264717, 89.42470401678098, 18.353316323189567, 59.45113560849189, 5.833587865247351, 22.083277151470245, 55.12269511138421, 49.58714861222338, 16.588356676012584, 29.225893541025766, 28.837536049693842, 23.63413715136091, 23.8434904379268, 175.11244204174804, 46.392579328600874, 12.457063548746447, 5.0955062107426325, 18.332922577069724, 38.726179920417884, 8.845262072328982, 134.95853378005887, 7.614295810286526, 76.96403976170211, 163.79190674896054, 9.764876347480145, 95.53112075982736, 24.245050555089435, 36.5384008412795, 21.62204618893245, 5.164249795214647, 9.506083716513867, 13.78613848947128, 243.27301237651608, 20.460809673858993, 5.479229365900428, 62.474039824103, 39.747340946027414, 22.947083089086675, 14.860641330281972, 6.614090687568209, 27.6798500868445, 28.686467007734322, 11.616680399202977, 35.19848188615106, 66.42388146037895, 17.450738484986378, 9.067323469063371, 16.117474351009115, 20.614537139483758, 26.839666989945187, 65.30392376418163, 39.39110259043596, 39.6594928734893, 57.445830212235286, 40.90383451333786, 35.17319995569745, 12.210390976132613, 13.603145167180102, 24.71257369708272, 43.04553990601813, 86.03005591143938, 13.709465055632684, 14.102780108790345, 40.06979887447143, 7.515290520029702, 8.525337898268935, 23.381882225858675, 45.76212980539964, 12.333426934903422, 53.11719324235663, 47.461141870968596, 8.29680319143125, 89.81020624074407, 17.697701729805708, 94.19948122899768, 17.492198733076123, 6.4849105646387954, 20.345054603306977, 16.558222703347415, 26.716420390934793, 22.984041858727917, 121.60224857525479, 18.171796771940013, 14.440272245769359, 25.51132859500567, 50.86028691119642, 72.63983163411463, 33.6733251876467, 16.824171546054647, 5.802048855731036, 22.110193335157117, 11.681688629274058, 28.49126922131191, 6.812807734138214, 20.397147871670658, 48.643523615633384, 6.267559136085409, 13.07358010735281, 10.018149863243382, 17.79328478208875, 12.160109596796266, 38.56663928770125, 5.573199459362055, 125.10188859749172, 18.142380088566547, 14.953890879561385, 22.832218436415687, 13.105185539925142, 158.94430059354858, 9.868310038900914, 15.819408087612743, 27.633156179889035, 13.232796857219025, 7.064296591624614, 20.495591117736865, 30.237105163766678, 112.09001805088133, 19.948106726526746, 170.56663803401187, 34.249343203899286, 74.01847071146372, 9.154663565391523, 113.90923779269188, 5.6792497586841915, 20.705922236121882, 23.86586621246608, 98.5996841210848, 19.50401671187647, 52.47603394891703, 93.60410225340217, 9.956239102603487, 25.74778851004377, 105.29446615006451, 11.334281708622857, 12.930901624990058, 44.61473133155491, 69.2879754162142, 12.55624581966973, 21.80617715866715, 119.2959187666066, 52.36140138420556, 23.854595394791854, 11.3246035778853, 31.222104259515355, 26.41868918778336, 135.7511007235637, 11.5407487850695, 12.319713034645366, 33.424535652117825, 64.89103667373853, 54.15495735725811, 12.322547648615243, 78.7669800941667, 71.65280076103534, 118.68745714741239, 17.614551254330532, 53.576734369149825, 81.42643224284845, 44.70659898576022, 5.315064896514615, 9.87687228200619, 25.407134153536063, 93.31815591738163, 17.15959020253038, 28.381364994763914, 35.93867512192876, 24.702900804753373, 43.92547089899306, 18.682663669880302, 11.324881332728408, 109.16246839630367, 17.976371956602616, 14.205767493355998, 48.18321353091093, 128.54019051759755, 25.221492231955036, 55.02318147798829, 7.423452540540336, 30.15912020997848, 12.574122586671551, 54.33819324480913, 8.774273319583614, 66.53298994792092, 21.919164226527858, 13.651900600194093, 18.098489707906474, 17.22180765427499, 98.17924112164701, 37.411381326879614, 17.951052075630656, 39.48895083227281, 9.085951461611801, 130.8724619635021, 41.14883825771936, 54.31088508033779, 16.457517193554473, 141.47515780868642, 35.838910501949066, 22.364666959679493, 12.800012846938895, 15.824970622733828, 22.649331981680135, 14.876541674851286, 13.600291063890976, 6.864483085164942, 8.442940356993413, 138.11749275010075, 33.706108302761024, 88.5056313909511, 5.543191829484291, 84.8796636188594, 64.85534994563685, 54.2392065049151, 23.448052429867662, 120.49032938113896, 43.65698281930172, 6.976044837026043, 30.092101901854324, 20.564187470263764, 15.174722651142591, 12.231189817060084, 70.67378079803578, 35.477920970362696, 61.248133662036004, 24.3351430328729, 18.092103295567696, 56.57518335691772, 31.55838503056165, 11.158720933209844, 8.42173729768076, 58.50597137584783, 13.18571710639516, 21.16868268120775, 59.22594994093751, 71.75130601707488, 98.20269016122151, 97.40735328676901, 55.938857159881614, 20.37368230552792, 43.567114605295416, 58.09813476691372, 171.99882073125178, 6.707873447035285, 124.41964211514627, 47.293194375570316, 70.17582594060255, 88.88909571148922, 73.25767632997173, 36.23794724240462, 18.00084887600343, 38.58653003319061, 60.90523584061892, 71.70806397270714, 131.10290688497764, 43.78476361500924, 9.737559091007968, 6.372222079775827, 22.80782964719819, 30.166218187131427, 65.66699817836263, 195.66708457585327, 59.79218379476465, 73.47401780919924, 50.499699004838604, 159.72195464341462, 14.640910081552091, 18.118924416574462, 12.03749476391205, 32.36947158173627, 43.390660268360364, 8.69110180463553, 16.12584107151458, 126.58437761503832, 6.854897691394027, 7.660657927547475, 42.26786329250377, 138.6743151106785, 38.40974659951499, 49.4927368056402, 23.42016544152971, 45.709488728928925, 9.901103679991458, 102.55604004120504, 42.89773230929276, 17.764936205526837, 16.413001250038853, 51.12755107810224, 6.071273302361405, 88.89986734292468, 89.50857345550328, 153.99385234756357, 33.53212372237307, 5.555137427190876, 56.42994420777149, 41.300891772806246, 14.23029347455596, 37.48596627509744, 112.44351300109362, 39.366100956294034, 42.91260141173963, 14.606467112376562, 5.130928542945023, 9.022420366230063, 51.879713778817724, 7.085442174875715, 76.73641451592853, 37.92738028675109, 28.285883280165788, 88.96922140907783, 10.190019174200994, 35.91531576639982, 142.68756181613662, 58.910151249966525, 30.126229671310682, 21.37537445163734, 56.19196347133138, 47.67910032908284, 17.651203979435806, 174.3796557976731, 70.08402326950123, 34.549582642606204, 37.1586196966231, 41.084254705778385, 40.077777980210804, 34.208083004134046, 74.87087207730922, 14.54778313673492, 34.143169841840646, 114.77456467180784, 35.96397967656594, 71.06621148581786, 5.2171143030646085, 13.18039588854226, 22.83867650774497, 30.48291333631185, 55.24810988270008, 8.23841697330496, 78.52212117470512, 14.725900417927823, 102.52033229851253, 11.133166733870217, 5.674783285284004, 28.42875513225983, 12.084373002705007, 5.680562963252312, 22.80061383180648, 42.37227994513353, 38.97390043408844, 73.74943656164017, 44.76262078347777, 31.290463109530513, 113.53873838868249, 16.10653068548958, 41.686889246007986, 28.007506715953024, 18.763201612578833, 21.46618652854994, 7.134684778329529, 51.37881139195856, 17.37738467231686, 27.7916525850945, 29.095331308224473, 18.68930521650523, 73.7448465722956, 38.45645012342475, 15.455233124129876, 51.321841840754416, 43.40731612204999, 95.91959928962723, 28.246408667838452, 7.202072887099279, 33.6925328690665, 6.6810445129595974, 8.754216645658856, 36.03352408837367, 70.81619754226303, 11.526118595011829, 24.395721168154637, 38.607570555295446, 44.6643860467161, 77.68398764618053, 88.53540581450441, 42.7356896457225, 54.56479426502995, 149.67248167228675, 24.444302532228708, 30.636205608344728, 16.18598414644615, 24.133923046423014, 61.09723082822547, 5.390754632500596, 13.190945217462177, 8.302303792132458, 27.58449805746485, 16.524703839272938, 8.353821283218913, 46.29500022645552, 43.957054851049755, 55.08113710415947, 12.188400517427313, 39.571444786774684, 35.42748528790432, 90.07912649615294, 26.15626979079481, 7.734190406683985, 25.5178338814397, 14.64778157870695, 20.00517330192964, 131.82081578292906, 49.256162140794544, 110.11087147928095, 11.782453380390773, 5.875676841226943, 50.670499269906514, 31.8134660729375, 58.07151448959713, 25.81037737865072, 6.757809582421061, 8.837622081756322, 283.7156125919432, 23.774653458814637, 72.19018884388075, 13.13630922172171, 21.829304070938136, 14.598759409633654, 124.48438280467632, 7.924301413528754, 109.70495629407097, 28.37185655454164, 142.7652263176586, 52.4273954790592, 10.486873913266463, 55.74393456022164, 80.16042972283351, 13.843945956812437, 18.904008002507894, 5.349046617904389, 15.026884176958541, 71.11626218469829, 45.37826541282105, 60.341553295188234, 43.997664722996134, 26.258001473712508, 34.650192932876756, 63.24247577233905, 15.3233093667509, 20.94934532004304, 32.833942150919036, 7.658242353424789, 61.55325386468178, 11.086743523523774, 112.256479335585, 49.822497849783176, ...])
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)