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 = 48326
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);
([8128488.491477424, 8226651.5625, 8271683.655771871, 8321609.3121451875, 8554056.639411908, 8590287.928073587, 8689390.317115555, 8692672.073595153, 8692678.786445798, 8730382.8125, 8734300.371095764, 8739084.189873165, 8739089.961920016, 8752948.4375, 8794300.65064081, 8827096.833443891, 8828003.13711314, 8834889.204052292, 8855751.308607828, 8878913.067983845, 8943140.361779764, 8943145.47967477, 9018339.3376652, 9019949.742723567, 9019988.98303367, 9025278.614375468, 9033082.843240786, 9033294.190951495, 9039330.40774234, 9040006.25, 9072626.5625, 9077144.590220163, 9084253.584578997, 9085866.014761072, 9086573.784633908, 9086748.82610592, 9093640.953205606, 9288899.064981366, 9334052.07262022, 9372480.230064517, 9374848.060762137, 9374927.221282022, 9376457.8125, 9410748.4375, 9435588.662742155, 9481931.543990863, 9500393.750106748, 9526001.857801076, 9539040.625, 9546021.49573404, 9551371.181477781, 9556340.625, 9556884.638483388, 9556960.9375, 9558078.070273815, 9566354.883991536, 9589623.306661984, 9596571.94183235, 9596742.330053953, 9597442.03958086, 9603093.68010578, 9603833.05527857, 9639454.036009056, 9642424.729272965, 9644029.439290587, 9644795.921658626, 9647529.581890853, 9649768.75, 9652941.5975638, 9670431.953466522, 9680900.68280687, 9686690.332071757, 9686771.088878196, 9689407.8125, 9693148.543919258, 9693672.497850241, 9694836.117925854, 9710543.75, 9726215.375732914, 9727456.25, 9738786.309429025, 9738796.296819195, 9740052.643671617, 9746769.478230836, 9747353.16792218, 9748528.285661092, 9748860.9375, 9749237.231273083, 9756340.413933052, 9764901.5625, 9810931.214274045, 9812251.247134753, 9841525.270807723, 9850712.549342025, 9855690.625, 9890129.6875, 9896953.1045697, 9956427.386394782, 9960675.916775284, 9961235.926563866, 9961460.038800502, 9961725.607655786, 9961954.6875, 9962086.793200983, 9962366.225481639, 9962520.332617102, 9962927.033403913, 9963518.75, 9963826.5625, 9971855.840054024, 9972285.7736431, 9974188.876383858, 9974679.175801309, 9974925.94158297, 9975053.125, 9983663.583698148, 10006683.358728565, 10017255.953644056, 10030753.502844192, 10031243.21438524, 10032161.930427706, 10033976.768547088, 10036000.912994726, 10036378.981440313, 10043372.86616415, 10043388.328773173, 10045247.009933813, 10067880.59429232, 10103237.051415225, 10103306.187818123, 10107278.879684737, 10111226.95502299, 10115795.311220132, 10118685.42233174, 10125973.993186323, 10126584.375, 10126665.625, 10127083.989165358, 10127537.5, 10127548.4375, 10127755.435081044, 10127868.610536963, 10128439.0625, 10128440.515697781, 10128776.503898837, 10129178.598020801, 10129311.782147959, 10129737.689975059, 10138942.02470855, 10140428.072016168, 10158823.551597496, 10160035.557530235, 10160799.835476013, 10162153.62227088, 10173321.821788771, 10200830.223803882, 10201834.21353963, 10212704.6875, 10256460.9375, 10257434.716864161, 10264833.41625308, 10265538.874837182, 10265957.24893432, 10266909.179691171, 10267226.5625, 10267237.948180746, 10269419.366134696, 10272636.999475034, 10272899.358138978, 10289166.445220362, 10294454.570752779, 10298790.174651518, 10299237.5, 10299560.578791648, 10299979.6875, 10300996.468557796, 10301443.75, 10301976.5625, 10315429.6875, 10316498.066991074, 10317131.287791597, 10318546.875, 10323454.6875, 10331229.6875, 10338900.0, 10341893.75, 10358491.240260825, 10362601.543389646, 10400021.22605022, 10401155.22272063, 10401165.625, 10492287.330032533, 10492320.732966794, 10551198.413336601, 10566318.929074118, 10570328.125, 10570598.4375, 10571260.303995425, 10572498.4375, 10572525.0, 10573194.643643763, 10574571.875, 10574640.625, 10574699.22590294, 10575023.4375, 10575131.880135596, 10575375.377302058, 10575600.0, 10575603.125, 10575666.672304275, 10575881.328015909, 10575893.009334456, 10575930.558920005, 10575960.682626024, 10576139.052994292, 10576204.2659532, 10576376.58636068, 10576503.125, 10576808.950959723, 10576928.786757752, 10577152.708287228, 10577272.898531279, 10577279.082876341, 10577422.782151148, 10577459.847743686, 10577499.986411205, 10577742.482671486, 10577841.52160851, 10578175.596115934, 10578654.297578389, 10578956.002648097, 10579214.7700691, 10579465.464086024, 10579870.660145583, 10580032.203133978, 10580326.5625, 10583053.074123684, 10590976.37514375, 10597333.136387527, 10600560.260820955, 10600971.014174692, 10601896.875, 10601907.828699283, 10602114.0625, 10602540.618168838, 10602618.7666082, 10603390.350538718, 10603829.6875, 10604054.840233406, 10604152.895347849, 10604251.171411674, 10604260.9375, 10604441.893139444, 10604664.852524756, 10604701.264014486, 10604807.891657, 10604819.606956419, 10605107.944465883, 10605346.875, 10605554.538905418, 10605557.29579722, 10606053.887312634, 10606386.842904644, 10607282.56192446, 10607407.145545261, 10607971.63074034, 10608284.309750656, 10608816.53324052, 10609508.57641224, 10609519.088867664, 10609556.054515516, 10610263.525041804, 10610456.144897884, 10610509.375, 10610791.790105537, 10610860.9375, 10610904.6875, 10611085.28607193, 10611784.943889495, 10611956.25, 10611965.823700542, 10612079.437778719, 10612164.97010685, 10612171.875, 10616223.60057272, 10617120.3125, 10617344.911369914, 10618207.8125, 10619563.798474338, 10623519.532633934, 10623921.875, 10623931.399981031, 10624524.640756479, 10626945.3125, 10626996.776718725, 10627000.722933834, 10627473.096967703, 10627821.875, 10628229.608683618, 10628381.266779369, 10628715.625, 10628748.569704544, 10629003.125, 10629054.701745009, 10629339.781161295, 10630475.187027544, 10632521.875, 10632545.490091184, 10632843.437517278, 10632982.8125, 10633393.75, 10633748.4375, 10633965.625, 10634068.259368671, 10638106.045710137, 10645379.508006511, 10645607.300538432, 10647448.4375, 10647810.586888922, 10649479.495273972, 10651533.892643955, 10667717.720506096, 10670805.905080982, 10670819.670742085, 10671167.77295628, 10671465.524443049, 10672465.17429619, 10673566.497424282, 10722640.625, 10723235.309142167, 10728982.862395495, 10729011.25103093, 10759987.677608514, 10765304.942887945, 10766588.441905282, 10767857.8125, 10768837.172307307, 10776014.0625, 10776176.198644146, 10776209.375, 10776307.8125, 10776343.874507708, 10776471.875, 10779120.905610688, 10779704.865696434, 10779826.122175539, 10779926.134145543, 10780246.698791636, 10785004.453640161, 10786712.364845647, 10788574.674513187, 10792480.953580277, 10792484.184799712, 10793829.979578905, 10796002.19531467, 10799975.033908382, 10800210.9375, 10800219.534569975, 10800464.0625, 10800494.389980549, 10800502.426530618, 10800539.351689026, 10800577.239836931, 10800663.871141309, 10800686.735904768, 10800712.428297479, 10800744.78376943, 10801033.179897742, 10801620.925980642, 10801651.33727164, 10801725.0, 10801776.5625, 10801858.92954254, 10802407.8125, 10802676.43412937, 10803547.375986611, 10803558.606105356, 10803910.036669739, 10803914.0625, 10804131.25, 10804265.199692966, 10804346.816828867, 10804577.008506551, 10805359.904604513, 10805398.4375, 10805479.6875, 10805644.842797952, 10805661.730830904, 10805680.786670053, 10805893.75, 10805957.165571444, 10805968.75, 10805997.243649565, 10806028.125, 10806176.362985104, 10806288.483815031, 10806355.509316329, 10806437.5, 10806463.43199523, 10806568.755702013, 10806586.944862083, 10806644.558581416, 10806681.934324056, 10806701.366568403, 10806771.875, 10806794.071092982, 10806808.70270198, 10806818.75, 10806863.703890992, 10806869.971438939, 10806903.367399177, 10806971.094596844, 10807057.8125, 10807069.43086593, 10807141.838816546, 10807173.01633723, 10807241.630312698, 10807254.126106896, 10807268.273063246, 10807397.566377778, 10807447.016503654, 10807535.9375, 10807627.840283297, 10807656.976263257, 10807663.392848719, 10807695.826058593, 10807932.947742999, 10807957.8125, 10808085.853216387, 10808205.936746685, 10808275.0, 10808323.217133895, 10808359.375, 10808418.167724721, 10808582.519633813, 10808621.875, 10809110.9375, 10809285.9375, 10809520.3125, 10809540.625, 10809763.933248954, 10809798.648518635, 10810353.330906546, 10810806.25, 10810812.216044025, 10811273.167785592, 10827051.707815798, 10829328.125, 10831935.9375, 10839573.166626565, 10859317.861662546, 10860951.238081692, 10860962.023295892, 10861849.971549928, 10867541.402853964, 10880950.261082338, 10882005.807674972, 10882634.375, 10886931.772477996, 10891057.087311499, 10900012.5, 10903784.375, 10930980.28338502, 11011309.626320772, 11012342.070199061, 11024981.841435293, 11035520.5285992, 11037531.25, 11053842.1875, 11073739.0625, 11075844.09222493, 11078925.617799992, 11081417.719864711, 11088387.038937172, 11089902.802411374, 11093543.75, 11093840.625, 11094090.625, 11095214.70101558, 11096414.717020195, 11104425.0, 11106657.671890745, 11107023.142609688, 11107136.794053782, 11108164.658792648, 11109469.220731344, 11111613.28086805, 11111887.5, 11112606.25, 11112865.625, 11114009.245027909, 11114079.804218445, 11114135.424074903, 11114643.27263316, 11115290.625, 11115335.282223186, 11122884.262632525, 11122888.20170017, 11126907.344238855, 11127366.656826025, 11127873.138740215, 11128799.573157517, 11129536.783620842, 11146041.099399146, 11147434.375, 11148582.256096564, 11150648.4375, 11152348.14332177, 11152361.57374525, 11152960.444297127, 11155419.466997793, 11155764.127420684, 11155907.509819746, 11155935.90919807, 11155957.663984574, 11155969.03126793, 11155998.704750447, 11156002.535930466, 11156057.055361684, 11156126.200149419, 11156281.128281865, 11156318.343679976, 11156367.1875, 11156381.937901711, 11156476.27095787, 11156595.3125, 11156941.441296853, 11157026.068939898, 11157060.359602658, 11157526.818900593, 11157579.767037084, 11158029.983437385, 11158124.59724916, 11158351.65103035, 11158368.803143984, 11158409.240221806, 11158460.565815452, 11158477.18410039, 11158545.217896743, 11158684.375, 11158685.9375, 11158735.788373338, 11158891.943856994, 11159065.625, 11159083.613945043, 11159139.060368434, 11159311.787202232, 11159356.282532794, 11159444.61015524, 11160099.523950359, 11160196.875, 11160354.6875, 11160458.25274655, 11161265.119454643, 11161640.148226758, 11161695.087135045, 11162103.801783537, 11162450.0, 11162585.9375, 11163214.911190744, 11167868.75, 11170939.266811963, 11171537.424880082, 11175671.45293821, 11177447.620598702, 11180313.423474206, 11181313.905365009, 11183315.625, 11184443.75, 11191249.898385165, 11198115.625, 11198693.128386792, 11198711.97824892, 11205093.678484287, 11239370.3125, 11244887.943844019, 11261171.995175494, 11271392.549986618, 11273101.072974449, 11292651.122204369, 11294515.625, 11301997.824409235, 11302329.6875, 11305145.3125, 11305190.371999666, 11306740.185460221, 11307024.217964483, 11311731.19832375, 11312428.614164198, 11316940.692612665, 11317696.875, 11317812.937218942, 11317854.579467831, 11317917.8862999, 11318104.6875, 11318690.625, 11318800.0, 11318845.00479019, 11318969.203748306, 11319018.75, 11319615.32100388, 11320730.963914752, 11329131.902888987, 11329147.107586695, 11331360.9375, 11355244.154933278, 11414746.875, 11419491.74174213, 11420490.312679565, 11421371.114034316, 11421481.25, 11423034.033329932, 11425340.625, 11428127.340017118, 11428655.637045557, 11428765.964435732, 11430637.398216387, 11430651.887253033, 11431793.75, 11431796.718226355, 11432020.952647028, 11432021.671029372, 11438644.772733573, 11438888.327368611, 11439335.327918002, 11439554.44028559, 11440117.93275614, 11441127.972090116, 11441134.936275907, 11442984.375, 11446406.25, 11446967.561497143, 11452810.117915826, 11453934.375, 11455042.91130002, 11458800.49344366, 11460415.625, 11460827.386772832, 11461282.573751554, 11463044.596748712, 11463489.0625, 11464435.886057923, 11468565.885083497, 11468897.441409066, 11469109.778588269, 11469279.919143416, 11472398.4375, 11473288.643607635, 11474351.670265177, 11474522.109482303, 11475184.828604156, 11476357.019228254, 11476918.651385292, 11477023.59756763, 11477359.375, 11477519.82375578, 11477576.989243746, 11477990.102578087, 11478074.463906249, 11478235.9375, 11478837.513485909, 11478958.501624057, 11479152.566946372, 11479493.75, 11479930.547765657, 11481729.6875, 11481973.898383327, 11483231.309006197, 11483817.1875, 11483965.357235502, 11484007.017454382, 11484012.5, 11484043.75, 11484395.3125, 11484399.780532748, 11484434.518663412, 11484515.625, 11484896.326724745, 11485203.296573533, 11485526.314633776, 11485609.766604371, 11486194.702339325, 11486443.471532343, 11488389.670564588, 11488423.4375, 11489039.664380556, 11489168.297756009, 11489940.625, 11490913.791658543, 11492324.315809963, 11502873.4375, 11504401.096996227, 11517325.775390059, 11533917.554922976, 11537610.9375, 11552030.796048962, 11552634.375, 11567778.125, 11571543.211377354, 11572394.844347611, 11588278.125, 11589509.201520618, 11596334.578856457, 11620175.189303536, 11635484.490558436, 11635670.625585089, 11636232.873141207, 11643123.4375, 11652941.380451394, 11660626.007308943, 11664940.625, 11666451.699436331, 11668557.430332426, 11668921.875, 11668999.961689163, 11669010.566854369, 11673190.625, 11673328.125, 11673563.019194202, 11673660.278578505, 11673687.172842626, 11673880.383637214, 11675464.0625, 11690778.893421164, 11705847.726241218, 11706326.128549902, 11706451.323076189, 11707015.719814738, 11707022.317143045, 11708061.537704255, 11708275.461844694, 11713415.625, 11713416.61480033, 11713417.1875, 11713418.50535806, 11715366.355613764, 11740169.76376499, 11741726.5625, 11741951.807723878, 11742673.22784767, 11742814.0625, 11743321.960207924, 11743538.27102202, 11744203.320627166, 11744266.063476553, 11744577.399062585, 11744582.8125, 11744837.498498883, 11745987.5, 11746232.784928996, 11747857.8125, 11748145.3125, 11748165.131929455, 11749009.118146548, 11753825.945591785, 11754262.287793888, 11755840.625, 11756429.6875, 11762637.5, 11763574.89595659, 11780281.25, 11795512.5, 11797100.615473116, 11797548.619106917, 11801278.125, 11802742.364330178, 11805974.880068853, 11808151.192115236, 11808179.541405397, 11808292.1875, 11809740.262909245, 11810406.966887103, 11810457.506566582, 11810857.8125, 11811308.474939724, 11811335.584670777, 11811335.9375, 11811356.25, 11812104.821079018, 11812152.165040003, 11812196.181610685, 11812236.04305715, 11812294.34220322, 11812299.142522752, 11813323.097456075, 11813620.222965447, 11814631.572811486, 11814633.115932716, 11814859.750776088, 11837239.6649083, 11837972.085190067, 11839387.5, 11839440.334288396, 11839496.64331969, 11839560.356662076, 11839703.125, 11839961.368426016, 11840657.54823691, 11840669.741416587, 11840696.363729553, 11840698.093144584, 11840765.029258447, 11840780.384259578, 11840786.553552149, 11840804.845711188, 11840898.20483794, 11840937.5, 11840943.75, 11840979.6875, 11841018.403371587, 11841318.903480267, 11841341.808747912, 11841536.421892807, 11841573.379158596, 11841768.354697252, 11842173.4375, 11842192.965372972, 11842311.404676147, 11842525.0, 11842737.462270146, 11842818.478242133, 11842865.518569604, 11842948.638646424, 11843154.852875438, 11843695.211485919, 11843857.8125, 11844878.125, 11850265.169916583, 11853518.761705317, 11853693.21237891, 11853748.650786074, 11854210.228948053, 11855581.899056852, 11855779.554083893, 11856633.208123468, 11856917.565845696, 11857085.15695204, 11858575.0, 11858943.75, 11860489.870036537, 11864948.91100604, 11867627.206311347, 11868059.375, 11868174.8652267, 11868356.25, 11883659.480688374, 11893251.176133214, 11894233.845307283, 11896942.1875, 11898858.033941083, 11899228.396468796, 11899259.375, 11899321.592468299, 11899329.374281038, 11899781.8658991, 11900382.8125, 11900673.830060244, 11900879.839186031, 11901378.10511388, 11902629.45619339, 11903083.998110902, 11904221.875, 11906070.3125, 11906087.508497614, 11906259.375, 11906401.5625, 11906421.178579893, 11906512.006006394, 11906527.328826549, 11906576.5625, 11906578.030534629, 11906671.303563053, 11906765.625, 11906787.20192201, 11906909.375, 11907007.65605279, 11907369.665260786, 11907432.089624356, 11912870.3125, 11912970.705504613, 11913364.218139315, 11914190.5150262, 11914375.840880882, 11914614.399820067, 11915191.964523803, 11915389.93430744, 11915442.354214342, 11915484.375, 11915655.316874752, 11915666.765391748, 11915739.679091556, 11915929.847814482, 11916246.58888871, 11917053.25554929, 11918058.59063974, 11919260.414596079, 11919675.977943312, 11919676.5625, 11921027.490146905, 11921265.834894476, 11922548.4375, 11923265.445219144, 11924997.830155456, 11926555.113443498, 11926648.330504097, 11926854.6875, 11926866.059983617, 11926951.5625, 11930610.812545858, 11931864.0625, 11932609.375, 11932882.37042663, 11932923.4375, 11933061.750251567, 11933121.739484778, 11933839.563763665, 11936687.148819227, 11941505.612831194, 11942687.5, 11942731.1390584, 11951238.038335158, 11966140.304123392, 11966503.506053338, 11967904.6875, 11968368.15045877, 11969685.9375, 11970701.239644226, 11980331.64405988, 11980571.749939278, 11992837.5, 11994497.520467516, 11995357.70794092, 11995388.856475342, 11995803.875739334, 11995889.645289142, 11995910.97406669, 11996179.313971123, 11996194.137464225, 11996278.715107115, 11996573.4375, 11997140.761275368, 11997200.855622765, 11997252.787300868, 11998136.152422817, 11998529.2179943, 11999499.480278125, 11999595.82242642, 12011771.361582434, 12012178.125, 12012588.089256419, 12012640.513706898, 12014763.935256874, 12014854.678925877, 12018150.130001158, 12026769.74980462, 12026780.225844137, 12027853.170994172, 12027989.256766813, 12028284.968182204, 12028478.109706592, 12028831.226396568, 12029076.5625, 12029187.60549019, 12029603.125, 12029750.87497228, 12029856.25, 12029929.6875, 12030205.696184004, 12030369.842020381, 12030635.240580527, 12031177.947069816, 12031971.67813835, 12032262.26531547, 12033267.86587212, 12035220.3125, 12036833.211449955, 12042506.25, 12046419.753465887, 12046420.3125, 12046875.969294792, 12051226.393392764, 12055506.25, 12055646.595301636, 12060424.750225453, 12073992.469864883, 12074544.936755754, 12075596.875, 12082084.547870256, 12082932.8125, 12084852.956489544, 12088004.964768138, 12088501.810856875, 12088731.25, 12089842.43171248, 12092286.30053172, 12092640.712970572, 12093443.669429071, 12094183.956682133, 12094198.4375, 12094615.625, ...], [93.20713278840638, 57.2274533886619, 6.944407045839334, 8.253616001997822, 16.941630202204294, 6.556356659478188, 10.678308620239525, 11.452991879905191, 46.12060957419425, 57.65279064747894, 6.839925596724331, 25.33805719265411, 79.61318637676032, 69.35469812147971, 34.3965380313341, 11.06336730040185, 91.68173073539293, 5.168671406961648, 15.945112043447843, 9.862753983696404, 16.713665776310926, 18.882228204498844, 6.117189166450243, 14.043891571293175, 56.95686374094839, 110.36605467164688, 66.82105188933099, 15.713909057713511, 12.477193721703697, 40.98418044558212, 77.44448762838343, 7.3613445291263675, 17.248341926270914, 14.876574322091509, 16.45322523816511, 7.750108740710001, 103.01415913900291, 18.029599504497604, 5.985096080752291, 17.510456265348086, 8.096917407953635, 13.444906301746194, 74.42977370945411, 32.139379294471254, 5.444866154932939, 25.97027174149038, 14.941916310152564, 13.773556563342531, 47.61076615203619, 88.74759827285438, 28.718440566973094, 61.76872575210602, 25.534861093830408, 29.151951946094993, 21.93049577949956, 6.803379009933028, 26.182168414417735, 11.233802005353754, 86.34430613113594, 75.91623841233644, 27.214415178473224, 11.529644355374623, 62.45771458270966, 9.11251933145483, 95.93776765070696, 21.185810267256006, 31.492270489544325, 175.44823858618872, 13.08630089650287, 17.25136825488079, 89.06210692308059, 16.374461887623326, 12.605256302339434, 54.93748854616, 8.343666930813951, 122.58694110953631, 15.676894992657923, 56.74462107641464, 19.861042763208083, 65.04229278591794, 11.763478946428512, 26.092117060063376, 34.08087566826279, 6.9181557364392585, 7.132780488439095, 5.6229945612970935, 48.106143886325114, 45.87302624134657, 5.094324573987578, 52.51422512606873, 5.397110016885599, 10.668128316259862, 11.579133193931812, 15.132973483616926, 80.22920219028411, 73.11668288798663, 28.12679759207323, 105.5998060236522, 26.86015275245376, 11.110655841980819, 29.26739565057456, 8.636370656098046, 72.46207710912849, 54.63093730078519, 6.8896169567157735, 5.399243647283629, 5.416786635832961, 111.02478130785325, 44.575313358083754, 8.08106929776219, 14.351698183591312, 14.276598409017938, 10.412159241611976, 20.366121211316983, 66.71261482967577, 7.001031232814646, 12.104268291421603, 88.15220469418924, 22.2215363855391, 21.14503171058458, 180.63131488421362, 24.69471906408036, 59.72165416828768, 6.181932197561858, 56.124848196368255, 7.933273490705012, 9.44816433527934, 20.06878234322367, 88.07232544042475, 5.396102186691036, 10.062994616018212, 11.802178237577413, 7.6027748423844885, 40.97331406601921, 19.08919714600618, 87.99698683623612, 85.57669078812353, 66.33348668118158, 53.94946018337017, 40.694760189590916, 17.242124999631066, 14.4353140021795, 42.009409255620916, 26.536120241087296, 27.416501058792367, 20.70865232436295, 19.564233685093416, 15.457803115037065, 5.336374189656702, 11.045887417193992, 11.310858120713918, 90.5375955538195, 42.37421407062037, 17.2493300890982, 61.34641165623055, 9.83015803366904, 42.14579704942382, 55.30020648851773, 77.24316513004283, 16.427061625844114, 17.782256437718694, 14.2714219564225, 93.4672777222606, 35.02360693371132, 38.34929962732117, 9.741476723540789, 23.15052429320386, 67.54550333882196, 8.841863903494854, 19.37465692327714, 26.41246788589044, 71.13298942309018, 128.82775763241875, 23.028713537597056, 250.94176024435131, 163.0475560119811, 48.288969307854394, 82.47820328263077, 40.860789904857114, 15.627296038470435, 7.131421480521243, 59.046514595969946, 86.03246427852673, 46.41022184092455, 77.42768451307667, 48.443192305951975, 59.67897620811014, 7.5963403875437, 179.82768600317488, 17.467402394927486, 52.96489727538071, 25.567127036589238, 16.82943009472794, 14.850202806986307, 20.617935700191147, 58.34309906305459, 49.921616215141405, 29.47894700193934, 55.63448753506188, 349.12691599975545, 46.20017594507503, 31.03369160651065, 84.30480806085997, 19.134694674518784, 29.671986110358677, 346.83672458855875, 44.92097288001758, 76.6673398475287, 54.693608242800494, 26.551331457245155, 35.96996582359335, 61.82439968503512, 417.969198579046, 24.344802058822893, 60.06731839157398, 7.457569811000413, 11.1652085271567, 75.4196706187771, 40.57962894650057, 18.250927971929578, 10.53336101301891, 5.439099339950027, 13.048357599433066, 7.3822435301751, 7.251525487879393, 15.351494081644118, 8.44909063431275, 19.983821980577353, 17.833148510399184, 22.6662784091895, 6.236444996905266, 64.62426449187706, 27.224202139607485, 16.455771661362906, 13.036176447068895, 75.65641735586355, 6.260791840130666, 5.52405612192779, 16.338653879166227, 12.866879080474444, 57.119370764943156, 59.044478934533316, 15.003615087483542, 64.30963204440425, 77.2746513597474, 5.940853173727704, 23.780742602162594, 52.50002554335609, 28.141458739733352, 6.238613035207794, 13.634566392085803, 59.87582384031904, 25.384988387568203, 66.15534196026206, 23.770106431056668, 5.946328765977653, 45.52307639257405, 6.2840165314769125, 45.82772794696601, 14.403850447341263, 30.46555655922335, 7.904367864604757, 20.057151140941887, 9.128148925213482, 6.186457165059079, 8.161498717934526, 81.11993428453405, 20.080939198316393, 85.16415348975211, 9.63537158406063, 5.603320241381215, 8.021437290468134, 26.606491918720888, 114.86083614323391, 6.047726148917885, 56.64112185001703, 75.18016871834318, 8.835291949471477, 17.667135169602396, 62.53606243784379, 15.75710786709055, 136.2398695802834, 32.35123523715701, 66.97931087630538, 15.601763113925736, 64.24859258489025, 22.539536335949677, 55.13582428241576, 65.57694078551104, 381.7246527708084, 91.00129537053473, 11.370518417610688, 23.022378653310255, 28.940283173708355, 5.338565183992854, 21.28006058479374, 54.89809680871449, 40.625007284337684, 283.56707079132593, 11.171462558731106, 45.66037326418818, 33.094482808408756, 60.16909477724948, 86.0908680255171, 8.70707235798634, 80.06885729295732, 184.8177198349385, 36.56577118887182, 127.29376034258877, 34.264041311624005, 39.79616595304369, 40.50670202952629, 70.86191331224771, 30.413459216458058, 30.394222580635414, 14.298824416086681, 21.374601352847616, 70.31779652018595, 10.620600226112142, 39.284319594844646, 5.7791317819785695, 6.574021780358807, 60.812559122474426, 19.464239149114306, 12.185322337837695, 26.683149360352818, 33.43378130652064, 5.372732476670953, 36.55033817744964, 25.757954228091588, 9.37395201212638, 100.78463901117199, 30.05087620367982, 6.815586830702152, 10.27891352916558, 38.88133642114217, 34.7380004969436, 62.18864573241799, 166.2685902962781, 125.45157487899786, 39.43986078075524, 94.2356319740633, 67.10264376031179, 25.978430060971842, 6.515392665446457, 8.066688128488467, 395.6818568510282, 10.863016426711322, 28.783529181162166, 5.698210078005867, 23.430552185259668, 21.216281116887703, 13.311672696959207, 16.185348811502962, 313.7998319631505, 6.091632502347901, 39.44423359825373, 26.616579675035215, 63.87446441190836, 8.656721787518618, 21.996313457948133, 51.83616075781067, 42.87563196076728, 106.02626954662298, 8.759314804764129, 27.18238442336168, 13.248042533765942, 8.490913433244248, 155.62504063448722, 14.147331583083663, 54.469073885864795, 32.47261543971252, 10.496175680259629, 36.69940326881171, 5.804542604934117, 17.270361548320338, 5.659510649282673, 9.961452397600931, 86.88891756377774, 74.3829447784517, 56.95921816550808, 11.0379828463675, 11.904591790980147, 12.070421774262666, 31.242928336401924, 30.429451912871603, 23.847920444798387, 5.3162382683333576, 19.219392858487144, 37.161124316954684, 20.142767809701215, 87.21132757816844, 9.663864401253587, 74.29367938272972, 91.29831671159732, 13.115591432183818, 19.386898599892643, 49.32594332891199, 74.5134156788605, 26.285528251981294, 7.414079594038145, 19.285980340968894, 15.853377430154362, 10.834667668219865, 83.80208635523749, 16.32502649904872, 12.877696970014629, 71.22806092753027, 63.469504350113546, 23.24004057895283, 26.49638183923457, 14.76029750573217, 43.74216453180426, 9.982112434228641, 161.93190123124782, 101.18507248135573, 76.04326837282578, 20.901779166999187, 24.711295511724146, 12.41287707239915, 5.621920722056949, 32.05190597965589, 29.97985355100764, 33.13254214176506, 17.013438720447756, 33.13302085846907, 5.071363916747553, 49.528491595960716, 9.261139116474666, 69.03640766892576, 53.376823146762426, 61.25173764083017, 76.9853455532329, 20.70983035389151, 20.28109963502146, 99.98638050898289, 73.87248787385082, 28.612601381727007, 256.6642119053965, 71.59056521077265, 96.96578193724416, 29.61389207139684, 6.805322437526355, 44.63620382355399, 7.503665945901303, 56.692182073736674, 5.249230667244217, 70.28830965775907, 63.43070007433715, 105.49994474470996, 18.332801448742266, 23.44376350061647, 13.39030405394359, 32.14379286171787, 104.12878012506437, 17.757607260838626, 84.04319595623504, 42.35987224014626, 7.265919546384381, 25.714385541605512, 35.34669766649267, 49.974187282593, 265.6068028095931, 7.189121435579488, 26.40332633571931, 5.8590770195915765, 11.483162895192619, 44.67663012937706, 67.09252443806892, 78.308471512728, 7.73188902870248, 20.72652845622855, 40.92000877678723, 13.433965977512745, 75.42044201408652, 97.77352561323126, 30.905640423756616, 29.781188351119827, 374.68130035458864, 92.71685862614997, 38.940910068389925, 45.18105491554724, 45.45125621093855, 28.73727102847203, 26.2704062534361, 6.328562010517366, 8.747719106576424, 131.02755679161356, 79.53256449518871, 42.7268420850559, 76.65483142170785, 25.009899168574336, 21.36021502076096, 59.64432659863317, 58.9022772328847, 19.383430553147136, 57.85681025017368, 10.004707858523334, 30.59618795857206, 21.192472655294093, 6.230175987188849, 30.12626143414187, 118.40469659627107, 8.554460302452481, 35.16638494658294, 13.174179924270675, 82.59338582679129, 126.19593931149555, 38.198794176039414, 8.041917223613618, 58.72851504086684, 8.321209456099297, 47.29940647037644, 14.834721941806814, 36.071455997313734, 9.581120885462042, 24.513833301072975, 36.82402100578048, 6.012750258895004, 10.60492781918395, 10.94263807645285, 20.731965782306442, 31.663792632521087, 31.424334631257764, 53.007664940425535, 71.84195705994428, 47.86889440631889, 230.10131115413773, 13.11764922052998, 177.03627488876836, 327.5956451804268, 160.35723307683946, 76.80846736392301, 27.205955018322033, 26.066586224728148, 7.086467604435064, 6.050281743800072, 27.63779240370753, 17.381929569832202, 49.4625268679352, 31.208899683704306, 25.890329170117777, 6.715820791749528, 31.176027080975565, 19.232123992914612, 69.11844884464057, 6.6290833744994435, 9.35906381858713, 76.31327061234029, 186.1758476828321, 68.92553510024304, 59.706308126422286, 18.46910778588146, 24.734290728778205, 204.71057340765506, 24.753334166816483, 12.380743146218416, 33.539318127120126, 32.289353323187385, 8.79290568804983, 59.08023336344836, 18.48458508981753, 23.587676542564857, 107.86381931305506, 26.850705669093408, 12.96075891705519, 64.51974562578363, 52.30285185157006, 82.23070313936597, 6.254444866599245, 52.10253482936406, 20.36006115209783, 39.95866758073939, 35.643608666082, 47.365420081751935, 5.175828943014129, 7.153404573897813, 29.616677703194547, 93.99005711311055, 64.73317728748444, 40.500788545018295, 8.861743438984831, 30.02863532551635, 29.16920135369819, 14.05756705406391, 445.580733085729, 115.53477839278493, 27.542195710823023, 11.989304000521296, 8.32265861755507, 43.25490295287535, 32.40229545035275, 22.155899338766332, 14.73406246238197, 73.21153900230189, 55.3941202094878, 63.90925841249332, 75.22376848421749, 6.857605955331046, 55.65622481125243, 19.177446826822347, 74.51321204588871, 18.192977570651642, 6.297038156735923, 83.94077877018154, 7.756569188127402, 65.1426919541321, 22.051815348465908, 38.720973697167146, 26.978628223224234, 30.132281078507454, 235.2943477537604, 68.222533953337, 14.658001653358493, 107.11844222825883, 41.3017168104212, 14.567248969092658, 36.0245804494338, 48.71978832814116, 14.375834741854133, 18.110558810807284, 25.060112816083745, 5.4390664678401155, 7.357364447725219, 16.12292499839774, 195.2072868521289, 12.53376427020813, 28.426090951869167, 17.621439489341654, 90.78695116580762, 87.67334323803057, 11.767347133104947, 18.804641010744948, 86.32503487953711, 10.028874398682118, 9.786665734986048, 47.796775612610936, 19.40577991656923, 21.66405242733811, 7.941172221607059, 94.77469209251065, 310.5319969424815, 130.35283616580733, 196.38167233550354, 146.05129277404293, 28.721769488859188, 80.39034515614298, 22.342236483372307, 29.788052747634843, 157.94815302394287, 27.071084587232974, 66.25140423947583, 11.644553387782608, 112.64740742596855, 97.53192218983003, 21.60612231440338, 9.720335189744343, 21.27230813368773, 5.274810029510727, 75.79690500883234, 14.993161742581478, 16.612862286319544, 7.413143903226466, 48.80388362660496, 12.804318516301853, 46.074981718208484, 6.56185005083114, 11.221207076092554, 47.01770735743786, 14.010511838414196, 18.98084118253296, 71.9526404269926, 48.65000240159353, 32.21818554742076, 7.064931184070692, 21.93095999318991, 30.79793868966403, 19.087194456371165, 15.638443315745445, 24.440332252713812, 77.83610630568955, 22.411589715538696, 110.46701530231459, 279.0464815303281, 35.14162989870529, 5.2190320839011495, 30.766864687636623, 99.26566578735398, 143.137403768301, 29.976857208582167, 33.41221088915217, 8.966544467031643, 19.038745668178304, 286.25778827581877, 34.87422814911622, 5.781138328798722, 108.5293189917703, 79.44952950854812, 27.211715596560285, 13.414123727914461, 28.526076108613186, 14.319094397070803, 15.779944314749644, 63.859114349543056, 17.182601176077654, 21.394194601446458, 78.81260375052592, 163.291980633639, 70.10325059368142, 8.013294483716107, 94.63505525169153, 240.4284438319757, 80.87413871312721, 28.535182640876773, 5.068200298405516, 22.888423054305992, 34.80555099835807, 54.18319108289313, 17.374416928601352, 73.00703741411957, 32.68505168503829, 18.515124531393315, 64.00829717850417, 38.815989081648155, 18.017908282782432, 10.511008391591238, 39.46234141242344, 243.41843395884405, 43.3984979474788, 19.567369898721623, 13.469306858205238, 109.04033687398353, 217.03611391275774, 93.90419454095283, 107.92299324102262, 5.266064378358794, 13.194525070294087, 89.09908639880939, 16.95132929221422, 14.198405787740732, 36.959951281841924, 69.7036998286297, 32.47391477426604, 15.74353865994507, 66.8219934972572, 8.784757509611177, 69.9055534383811, 9.330134217774503, 64.64537682514737, 14.837452779173919, 71.07085574775697, 43.804719693901475, 28.994761396832153, 14.04524260049255, 27.072984678662685, 10.811460627785943, 46.10014583931971, 76.14155844202828, 50.797993451319584, 7.566035487226929, 38.13281502748064, 39.83583641029894, 7.842121527911534, 15.014613489336874, 191.53476247160995, 15.661245009810575, 62.7764245670991, 407.00454000404443, 122.86114419608987, 44.049328405678935, 46.351069167979354, 106.7968562987277, 89.05359927809931, 75.92141972904724, 5.99924837497786, 189.23390289109443, 114.53697470313254, 64.57266662727548, 15.476326033218765, 17.87292398368458, 12.825867455763525, 15.359709386958304, 50.80336386425095, 22.71469025213183, 5.910329579374416, 26.87126012640607, 24.58786603909606, 16.239618201938228, 9.670727951527168, 5.648263388889837, 11.472949001512575, 66.31747917343434, 5.158645948021513, 89.56657964172418, 79.16807147561028, 57.82026680120444, 6.323222502468726, 336.02781512881904, 119.11592999617599, 37.76637466784515, 13.773539236114793, 10.308806683588944, 45.03573404796629, 125.92474697305336, 14.788857890539129, 479.81181881165173, 79.62420324893827, 60.7162951524734, 40.44167261683731, 23.172857191351927, 320.9254412590805, 147.72999333521298, 35.33970577620206, 57.36070219929266, 6.218514016412766, 66.26505003292323, 16.963405789969276, 5.077491363108701, 201.01583832341694, 7.1115688206217875, 5.388185624531404, 26.58418871487545, 6.804339480227657, 7.165613145526963, 45.00533550203197, 51.856162277727, 63.44283719698977, 203.1341477257741, 72.84949336644212, 13.224178288165737, 6.294526929462204, 19.637671826238236, 29.10774510525852, 5.606705634877683, 81.72442029926654, 14.407612276368244, 270.1481143140113, 56.25332784338099, 112.0175300507683, 295.74521066478053, 9.766667898296808, 72.51672908287533, 52.220231093375666, 26.118706169280863, 114.98077979381351, 11.297023114049066, 29.233163328208015, 43.153111955745075, 39.86145081737901, 12.430314891593788, 11.58030861874434, 69.55720176831909, 13.9639004246301, 5.28150920891381, 9.91279623687799, 59.539489295988176, 16.683545484526444, 8.368454051198556, 8.276089134620737, 10.78443435369881, 49.34213142757653, 106.03973733730663, 46.56058003813455, 454.4319697435593, 127.24731385825861, 161.5624516759057, 176.9742109050699, 82.77033824626005, 88.10916058868403, 66.34556775868921, 50.319551441847146, 72.97666105845278, 32.083784055564976, 42.91455224368998, 42.18838300634726, 23.76240461730931, 97.23556587457463, 151.22392208316234, 147.89239988334958, 64.42114987799832, 11.380019221969782, 26.52490931163004, 98.35301926328108, 7.213038795307422, 8.172081492799277, 7.371171709541626, 32.85324213481914, 348.5634110762485, 18.041641534611816, 462.60124319889655, 6.893181049004685, 11.387888661399266, 96.98239821592372, 92.63666671123171, 6.010161715256709, 70.72301323541541, 7.999888839335649, 68.49554817734226, 7.977153811801831, 15.806804121179646, 29.235731365634678, 25.418272708873893, 20.48518891156812, 30.921753490642075, 5.039745448257101, 58.758588328210706, 11.883255186454237, 70.25638340461938, 9.227935956057976, 65.02691337529227, 78.02090982813543, 49.68813519465638, 55.75305149808925, 19.317632055220166, 18.13802383317612, 6.867883560144936, 10.619837865294624, 98.22750674918714, 76.51853826799409, 14.534866057325779, 130.2368145701355, 16.505782757851698, 16.624379160431275, 34.06242201911308, 15.185398610424317, 99.92245853435092, 7.490496124173853, 25.955793643924864, 10.937697965791571, 31.920448106686248, 6.593269174593196, 26.61562290356584, 14.210377457316945, 165.88297754735203, 99.39362283278835, 5.534857874318112, 52.58082155901465, 9.682023159509217, 90.10529247385145, 56.41165976957947, 5.621627970115554, 44.80635351884347, 5.685597797569716, 342.13005951480966, 52.49298125428713, 8.927485069604419, 9.803309832081869, 70.46081144676256, 77.04138379577523, 69.73406407592628, 5.039673408790107, 26.2404654071832, 6.0872080372045945, 11.337174351963752, 303.26156349451946, 87.46494637264631, 5.9434210085964265, 7.675045094397285, 30.97441523939661, 11.103886069576594, 28.066089002792783, 99.3724375202429, 11.296697719056755, 45.31729497361499, 19.806328915487956, 62.57195117747314, 57.287413234956695, 5.892584577253188, 7.441497952144423, 5.6637947499368835, 67.12613943807949, 64.57123488758236, 64.19992619240644, 18.360804661770445, 75.44485197789561, 18.477936466448405, 47.89472109564248, 20.923746290277304, 133.66176153432937, 69.9275600568051, 106.8178055750376, 31.49219589272065, 10.716961682675036, 19.511022877971776, 5.964378642110956, 70.11649253737686, 43.19821654774322, 9.481981162139434, 50.90973712915475, 16.60353226608116, 8.438853561524983, 6.814123110544161, 137.31623409503587, 15.961893198399883, 17.969294669489052, 6.781197219681682, 11.004062114412013, 13.555463217188551, 35.81959511672963, 155.16435987661785, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([8128488.491477424, 8226651.5625, 8271683.655771871, 8321609.3121451875, 8554056.639411908, 8590287.928073587, 8689390.317115555, 8692672.073595153, 8692678.786445798, 8730382.8125, 8734300.371095764, 8739084.189873165, 8739089.961920016, 8752948.4375, 8794300.65064081, 8827096.833443891, 8828003.13711314, 8834889.204052292, 8855751.308607828, 8878913.067983845, 8943140.361779764, 8943145.47967477, 9018339.3376652, 9019949.742723567, 9019988.98303367, 9025278.614375468, 9033082.843240786, 9033294.190951495, 9039330.40774234, 9040006.25, 9072626.5625, 9077144.590220163, 9084253.584578997, 9085866.014761072, 9086573.784633908, 9086748.82610592, 9093640.953205606, 9288899.064981366, 9334052.07262022, 9372480.230064517, 9374848.060762137, 9374927.221282022, 9376457.8125, 9410748.4375, 9435588.662742155, 9481931.543990863, 9500393.750106748, 9526001.857801076, 9539040.625, 9546021.49573404, 9551371.181477781, 9556340.625, 9556884.638483388, 9556960.9375, 9558078.070273815, 9566354.883991536, 9589623.306661984, 9596571.94183235, 9596742.330053953, 9597442.03958086, 9603093.68010578, 9603833.05527857, 9639454.036009056, 9642424.729272965, 9644029.439290587, 9644795.921658626, 9647529.581890853, 9649768.75, 9652941.5975638, 9670431.953466522, 9680900.68280687, 9686690.332071757, 9686771.088878196, 9689407.8125, 9693148.543919258, 9693672.497850241, 9694836.117925854, 9710543.75, 9726215.375732914, 9727456.25, 9738786.309429025, 9738796.296819195, 9740052.643671617, 9746769.478230836, 9747353.16792218, 9748528.285661092, 9748860.9375, 9749237.231273083, 9756340.413933052, 9764901.5625, 9810931.214274045, 9812251.247134753, 9841525.270807723, 9850712.549342025, 9855690.625, 9890129.6875, 9896953.1045697, 9956427.386394782, 9960675.916775284, 9961235.926563866, 9961460.038800502, 9961725.607655786, 9961954.6875, 9962086.793200983, 9962366.225481639, 9962520.332617102, 9962927.033403913, 9963518.75, 9963826.5625, 9971855.840054024, 9972285.7736431, 9974188.876383858, 9974679.175801309, 9974925.94158297, 9975053.125, 9983663.583698148, 10006683.358728565, 10017255.953644056, 10030753.502844192, 10031243.21438524, 10032161.930427706, 10033976.768547088, 10036000.912994726, 10036378.981440313, 10043372.86616415, 10043388.328773173, 10045247.009933813, 10067880.59429232, 10103237.051415225, 10103306.187818123, 10107278.879684737, 10111226.95502299, 10115795.311220132, 10118685.42233174, 10125973.993186323, 10126584.375, 10126665.625, 10127083.989165358, 10127537.5, 10127548.4375, 10127755.435081044, 10127868.610536963, 10128439.0625, 10128440.515697781, 10128776.503898837, 10129178.598020801, 10129311.782147959, 10129737.689975059, 10138942.02470855, 10140428.072016168, 10158823.551597496, 10160035.557530235, 10160799.835476013, 10162153.62227088, 10173321.821788771, 10200830.223803882, 10201834.21353963, 10212704.6875, 10256460.9375, 10257434.716864161, 10264833.41625308, 10265538.874837182, 10265957.24893432, 10266909.179691171, 10267226.5625, 10267237.948180746, 10269419.366134696, 10272636.999475034, 10272899.358138978, 10289166.445220362, 10294454.570752779, 10298790.174651518, 10299237.5, 10299560.578791648, 10299979.6875, 10300996.468557796, 10301443.75, 10301976.5625, 10315429.6875, 10316498.066991074, 10317131.287791597, 10318546.875, 10323454.6875, 10331229.6875, 10338900.0, 10341893.75, 10358491.240260825, 10362601.543389646, 10400021.22605022, 10401155.22272063, 10401165.625, 10492287.330032533, 10492320.732966794, 10551198.413336601, 10566318.929074118, 10570328.125, 10570598.4375, 10571260.303995425, 10572498.4375, 10572525.0, 10573194.643643763, 10574571.875, 10574640.625, 10574699.22590294, 10575023.4375, 10575131.880135596, 10575375.377302058, 10575600.0, 10575603.125, 10575666.672304275, 10575881.328015909, 10575893.009334456, 10575930.558920005, 10575960.682626024, 10576139.052994292, 10576204.2659532, 10576376.58636068, 10576503.125, 10576808.950959723, 10576928.786757752, 10577152.708287228, 10577272.898531279, 10577279.082876341, 10577422.782151148, 10577459.847743686, 10577499.986411205, 10577742.482671486, 10577841.52160851, 10578175.596115934, 10578654.297578389, 10578956.002648097, 10579214.7700691, 10579465.464086024, 10579870.660145583, 10580032.203133978, 10580326.5625, 10583053.074123684, 10590976.37514375, 10597333.136387527, 10600560.260820955, 10600971.014174692, 10601896.875, 10601907.828699283, 10602114.0625, 10602540.618168838, 10602618.7666082, 10603390.350538718, 10603829.6875, 10604054.840233406, 10604152.895347849, 10604251.171411674, 10604260.9375, 10604441.893139444, 10604664.852524756, 10604701.264014486, 10604807.891657, 10604819.606956419, 10605107.944465883, 10605346.875, 10605554.538905418, 10605557.29579722, 10606053.887312634, 10606386.842904644, 10607282.56192446, 10607407.145545261, 10607971.63074034, 10608284.309750656, 10608816.53324052, 10609508.57641224, 10609519.088867664, 10609556.054515516, 10610263.525041804, 10610456.144897884, 10610509.375, 10610791.790105537, 10610860.9375, 10610904.6875, 10611085.28607193, 10611784.943889495, 10611956.25, 10611965.823700542, 10612079.437778719, 10612164.97010685, 10612171.875, 10616223.60057272, 10617120.3125, 10617344.911369914, 10618207.8125, 10619563.798474338, 10623519.532633934, 10623921.875, 10623931.399981031, 10624524.640756479, 10626945.3125, 10626996.776718725, 10627000.722933834, 10627473.096967703, 10627821.875, 10628229.608683618, 10628381.266779369, 10628715.625, 10628748.569704544, 10629003.125, 10629054.701745009, 10629339.781161295, 10630475.187027544, 10632521.875, 10632545.490091184, 10632843.437517278, 10632982.8125, 10633393.75, 10633748.4375, 10633965.625, 10634068.259368671, 10638106.045710137, 10645379.508006511, 10645607.300538432, 10647448.4375, 10647810.586888922, 10649479.495273972, 10651533.892643955, 10667717.720506096, 10670805.905080982, 10670819.670742085, 10671167.77295628, 10671465.524443049, 10672465.17429619, 10673566.497424282, 10722640.625, 10723235.309142167, 10728982.862395495, 10729011.25103093, 10759987.677608514, 10765304.942887945, 10766588.441905282, 10767857.8125, 10768837.172307307, 10776014.0625, 10776176.198644146, 10776209.375, 10776307.8125, 10776343.874507708, 10776471.875, 10779120.905610688, 10779704.865696434, 10779826.122175539, 10779926.134145543, 10780246.698791636, 10785004.453640161, 10786712.364845647, 10788574.674513187, 10792480.953580277, 10792484.184799712, 10793829.979578905, 10796002.19531467, 10799975.033908382, 10800210.9375, 10800219.534569975, 10800464.0625, 10800494.389980549, 10800502.426530618, 10800539.351689026, 10800577.239836931, 10800663.871141309, 10800686.735904768, 10800712.428297479, 10800744.78376943, 10801033.179897742, 10801620.925980642, 10801651.33727164, 10801725.0, 10801776.5625, 10801858.92954254, 10802407.8125, 10802676.43412937, 10803547.375986611, 10803558.606105356, 10803910.036669739, 10803914.0625, 10804131.25, 10804265.199692966, 10804346.816828867, 10804577.008506551, 10805359.904604513, 10805398.4375, 10805479.6875, 10805644.842797952, 10805661.730830904, 10805680.786670053, 10805893.75, 10805957.165571444, 10805968.75, 10805997.243649565, 10806028.125, 10806176.362985104, 10806288.483815031, 10806355.509316329, 10806437.5, 10806463.43199523, 10806568.755702013, 10806586.944862083, 10806644.558581416, 10806681.934324056, 10806701.366568403, 10806771.875, 10806794.071092982, 10806808.70270198, 10806818.75, 10806863.703890992, 10806869.971438939, 10806903.367399177, 10806971.094596844, 10807057.8125, 10807069.43086593, 10807141.838816546, 10807173.01633723, 10807241.630312698, 10807254.126106896, 10807268.273063246, 10807397.566377778, 10807447.016503654, 10807535.9375, 10807627.840283297, 10807656.976263257, 10807663.392848719, 10807695.826058593, 10807932.947742999, 10807957.8125, 10808085.853216387, 10808205.936746685, 10808275.0, 10808323.217133895, 10808359.375, 10808418.167724721, 10808582.519633813, 10808621.875, 10809110.9375, 10809285.9375, 10809520.3125, 10809540.625, 10809763.933248954, 10809798.648518635, 10810353.330906546, 10810806.25, 10810812.216044025, 10811273.167785592, 10827051.707815798, 10829328.125, 10831935.9375, 10839573.166626565, 10859317.861662546, 10860951.238081692, 10860962.023295892, 10861849.971549928, 10867541.402853964, 10880950.261082338, 10882005.807674972, 10882634.375, 10886931.772477996, 10891057.087311499, 10900012.5, 10903784.375, 10930980.28338502, 11011309.626320772, 11012342.070199061, 11024981.841435293, 11035520.5285992, 11037531.25, 11053842.1875, 11073739.0625, 11075844.09222493, 11078925.617799992, 11081417.719864711, 11088387.038937172, 11089902.802411374, 11093543.75, 11093840.625, 11094090.625, 11095214.70101558, 11096414.717020195, 11104425.0, 11106657.671890745, 11107023.142609688, 11107136.794053782, 11108164.658792648, 11109469.220731344, 11111613.28086805, 11111887.5, 11112606.25, 11112865.625, 11114009.245027909, 11114079.804218445, 11114135.424074903, 11114643.27263316, 11115290.625, 11115335.282223186, 11122884.262632525, 11122888.20170017, 11126907.344238855, 11127366.656826025, 11127873.138740215, 11128799.573157517, 11129536.783620842, 11146041.099399146, 11147434.375, 11148582.256096564, 11150648.4375, 11152348.14332177, 11152361.57374525, 11152960.444297127, 11155419.466997793, 11155764.127420684, 11155907.509819746, 11155935.90919807, 11155957.663984574, 11155969.03126793, 11155998.704750447, 11156002.535930466, 11156057.055361684, 11156126.200149419, 11156281.128281865, 11156318.343679976, 11156367.1875, 11156381.937901711, 11156476.27095787, 11156595.3125, 11156941.441296853, 11157026.068939898, 11157060.359602658, 11157526.818900593, 11157579.767037084, 11158029.983437385, 11158124.59724916, 11158351.65103035, 11158368.803143984, 11158409.240221806, 11158460.565815452, 11158477.18410039, 11158545.217896743, 11158684.375, 11158685.9375, 11158735.788373338, 11158891.943856994, 11159065.625, 11159083.613945043, 11159139.060368434, 11159311.787202232, 11159356.282532794, 11159444.61015524, 11160099.523950359, 11160196.875, 11160354.6875, 11160458.25274655, 11161265.119454643, 11161640.148226758, 11161695.087135045, 11162103.801783537, 11162450.0, 11162585.9375, 11163214.911190744, 11167868.75, 11170939.266811963, 11171537.424880082, 11175671.45293821, 11177447.620598702, 11180313.423474206, 11181313.905365009, 11183315.625, 11184443.75, 11191249.898385165, 11198115.625, 11198693.128386792, 11198711.97824892, 11205093.678484287, 11239370.3125, 11244887.943844019, 11261171.995175494, 11271392.549986618, 11273101.072974449, 11292651.122204369, 11294515.625, 11301997.824409235, 11302329.6875, 11305145.3125, 11305190.371999666, 11306740.185460221, 11307024.217964483, 11311731.19832375, 11312428.614164198, 11316940.692612665, 11317696.875, 11317812.937218942, 11317854.579467831, 11317917.8862999, 11318104.6875, 11318690.625, 11318800.0, 11318845.00479019, 11318969.203748306, 11319018.75, 11319615.32100388, 11320730.963914752, 11329131.902888987, 11329147.107586695, 11331360.9375, 11355244.154933278, 11414746.875, 11419491.74174213, 11420490.312679565, 11421371.114034316, 11421481.25, 11423034.033329932, 11425340.625, 11428127.340017118, 11428655.637045557, 11428765.964435732, 11430637.398216387, 11430651.887253033, 11431793.75, 11431796.718226355, 11432020.952647028, 11432021.671029372, 11438644.772733573, 11438888.327368611, 11439335.327918002, 11439554.44028559, 11440117.93275614, 11441127.972090116, 11441134.936275907, 11442984.375, 11446406.25, 11446967.561497143, 11452810.117915826, 11453934.375, 11455042.91130002, 11458800.49344366, 11460415.625, 11460827.386772832, 11461282.573751554, 11463044.596748712, 11463489.0625, 11464435.886057923, 11468565.885083497, 11468897.441409066, 11469109.778588269, 11469279.919143416, 11472398.4375, 11473288.643607635, 11474351.670265177, 11474522.109482303, 11475184.828604156, 11476357.019228254, 11476918.651385292, 11477023.59756763, 11477359.375, 11477519.82375578, 11477576.989243746, 11477990.102578087, 11478074.463906249, 11478235.9375, 11478837.513485909, 11478958.501624057, 11479152.566946372, 11479493.75, 11479930.547765657, 11481729.6875, 11481973.898383327, 11483231.309006197, 11483817.1875, 11483965.357235502, 11484007.017454382, 11484012.5, 11484043.75, 11484395.3125, 11484399.780532748, 11484434.518663412, 11484515.625, 11484896.326724745, 11485203.296573533, 11485526.314633776, 11485609.766604371, 11486194.702339325, 11486443.471532343, 11488389.670564588, 11488423.4375, 11489039.664380556, 11489168.297756009, 11489940.625, 11490913.791658543, 11492324.315809963, 11502873.4375, 11504401.096996227, 11517325.775390059, 11533917.554922976, 11537610.9375, 11552030.796048962, 11552634.375, 11567778.125, 11571543.211377354, 11572394.844347611, 11588278.125, 11589509.201520618, 11596334.578856457, 11620175.189303536, 11635484.490558436, 11635670.625585089, 11636232.873141207, 11643123.4375, 11652941.380451394, 11660626.007308943, 11664940.625, 11666451.699436331, 11668557.430332426, 11668921.875, 11668999.961689163, 11669010.566854369, 11673190.625, 11673328.125, 11673563.019194202, 11673660.278578505, 11673687.172842626, 11673880.383637214, 11675464.0625, 11690778.893421164, 11705847.726241218, 11706326.128549902, 11706451.323076189, 11707015.719814738, 11707022.317143045, 11708061.537704255, 11708275.461844694, 11713415.625, 11713416.61480033, 11713417.1875, 11713418.50535806, 11715366.355613764, 11740169.76376499, 11741726.5625, 11741951.807723878, 11742673.22784767, 11742814.0625, 11743321.960207924, 11743538.27102202, 11744203.320627166, 11744266.063476553, 11744577.399062585, 11744582.8125, 11744837.498498883, 11745987.5, 11746232.784928996, 11747857.8125, 11748145.3125, 11748165.131929455, 11749009.118146548, 11753825.945591785, 11754262.287793888, 11755840.625, 11756429.6875, 11762637.5, 11763574.89595659, 11780281.25, 11795512.5, 11797100.615473116, 11797548.619106917, 11801278.125, 11802742.364330178, 11805974.880068853, 11808151.192115236, 11808179.541405397, 11808292.1875, 11809740.262909245, 11810406.966887103, 11810457.506566582, 11810857.8125, 11811308.474939724, 11811335.584670777, 11811335.9375, 11811356.25, 11812104.821079018, 11812152.165040003, 11812196.181610685, 11812236.04305715, 11812294.34220322, 11812299.142522752, 11813323.097456075, 11813620.222965447, 11814631.572811486, 11814633.115932716, 11814859.750776088, 11837239.6649083, 11837972.085190067, 11839387.5, 11839440.334288396, 11839496.64331969, 11839560.356662076, 11839703.125, 11839961.368426016, 11840657.54823691, 11840669.741416587, 11840696.363729553, 11840698.093144584, 11840765.029258447, 11840780.384259578, 11840786.553552149, 11840804.845711188, 11840898.20483794, 11840937.5, 11840943.75, 11840979.6875, 11841018.403371587, 11841318.903480267, 11841341.808747912, 11841536.421892807, 11841573.379158596, 11841768.354697252, 11842173.4375, 11842192.965372972, 11842311.404676147, 11842525.0, 11842737.462270146, 11842818.478242133, 11842865.518569604, 11842948.638646424, 11843154.852875438, 11843695.211485919, 11843857.8125, 11844878.125, 11850265.169916583, 11853518.761705317, 11853693.21237891, 11853748.650786074, 11854210.228948053, 11855581.899056852, 11855779.554083893, 11856633.208123468, 11856917.565845696, 11857085.15695204, 11858575.0, 11858943.75, 11860489.870036537, 11864948.91100604, 11867627.206311347, 11868059.375, 11868174.8652267, 11868356.25, 11883659.480688374, 11893251.176133214, 11894233.845307283, 11896942.1875, 11898858.033941083, 11899228.396468796, 11899259.375, 11899321.592468299, 11899329.374281038, 11899781.8658991, 11900382.8125, 11900673.830060244, 11900879.839186031, 11901378.10511388, 11902629.45619339, 11903083.998110902, 11904221.875, 11906070.3125, 11906087.508497614, 11906259.375, 11906401.5625, 11906421.178579893, 11906512.006006394, 11906527.328826549, 11906576.5625, 11906578.030534629, 11906671.303563053, 11906765.625, 11906787.20192201, 11906909.375, 11907007.65605279, 11907369.665260786, 11907432.089624356, 11912870.3125, 11912970.705504613, 11913364.218139315, 11914190.5150262, 11914375.840880882, 11914614.399820067, 11915191.964523803, 11915389.93430744, 11915442.354214342, 11915484.375, 11915655.316874752, 11915666.765391748, 11915739.679091556, 11915929.847814482, 11916246.58888871, 11917053.25554929, 11918058.59063974, 11919260.414596079, 11919675.977943312, 11919676.5625, 11921027.490146905, 11921265.834894476, 11922548.4375, 11923265.445219144, 11924997.830155456, 11926555.113443498, 11926648.330504097, 11926854.6875, 11926866.059983617, 11926951.5625, 11930610.812545858, 11931864.0625, 11932609.375, 11932882.37042663, 11932923.4375, 11933061.750251567, 11933121.739484778, 11933839.563763665, 11936687.148819227, 11941505.612831194, 11942687.5, 11942731.1390584, 11951238.038335158, 11966140.304123392, 11966503.506053338, 11967904.6875, 11968368.15045877, 11969685.9375, 11970701.239644226, 11980331.64405988, 11980571.749939278, 11992837.5, 11994497.520467516, 11995357.70794092, 11995388.856475342, 11995803.875739334, 11995889.645289142, 11995910.97406669, 11996179.313971123, 11996194.137464225, 11996278.715107115, 11996573.4375, 11997140.761275368, 11997200.855622765, 11997252.787300868, 11998136.152422817, 11998529.2179943, 11999499.480278125, 11999595.82242642, 12011771.361582434, 12012178.125, 12012588.089256419, 12012640.513706898, 12014763.935256874, 12014854.678925877, 12018150.130001158, 12026769.74980462, 12026780.225844137, 12027853.170994172, 12027989.256766813, 12028284.968182204, 12028478.109706592, 12028831.226396568, 12029076.5625, 12029187.60549019, 12029603.125, 12029750.87497228, 12029856.25, 12029929.6875, 12030205.696184004, 12030369.842020381, 12030635.240580527, 12031177.947069816, 12031971.67813835, 12032262.26531547, 12033267.86587212, 12035220.3125, 12036833.211449955, 12042506.25, 12046419.753465887, 12046420.3125, 12046875.969294792, 12051226.393392764, 12055506.25, 12055646.595301636, 12060424.750225453, 12073992.469864883, 12074544.936755754, 12075596.875, 12082084.547870256, 12082932.8125, 12084852.956489544, 12088004.964768138, 12088501.810856875, 12088731.25, 12089842.43171248, 12092286.30053172, 12092640.712970572, 12093443.669429071, 12094183.956682133, 12094198.4375, 12094615.625, ...], [93.20713278840638, 57.2274533886619, 6.944407045839334, 8.253616001997822, 16.941630202204294, 6.556356659478188, 10.678308620239525, 11.452991879905191, 46.12060957419425, 57.65279064747894, 6.839925596724331, 25.33805719265411, 79.61318637676032, 69.35469812147971, 34.3965380313341, 11.06336730040185, 91.68173073539293, 5.168671406961648, 15.945112043447843, 9.862753983696404, 16.713665776310926, 18.882228204498844, 6.117189166450243, 14.043891571293175, 56.95686374094839, 110.36605467164688, 66.82105188933099, 15.713909057713511, 12.477193721703697, 40.98418044558212, 77.44448762838343, 7.3613445291263675, 17.248341926270914, 14.876574322091509, 16.45322523816511, 7.750108740710001, 103.01415913900291, 18.029599504497604, 5.985096080752291, 17.510456265348086, 8.096917407953635, 13.444906301746194, 74.42977370945411, 32.139379294471254, 5.444866154932939, 25.97027174149038, 14.941916310152564, 13.773556563342531, 47.61076615203619, 88.74759827285438, 28.718440566973094, 61.76872575210602, 25.534861093830408, 29.151951946094993, 21.93049577949956, 6.803379009933028, 26.182168414417735, 11.233802005353754, 86.34430613113594, 75.91623841233644, 27.214415178473224, 11.529644355374623, 62.45771458270966, 9.11251933145483, 95.93776765070696, 21.185810267256006, 31.492270489544325, 175.44823858618872, 13.08630089650287, 17.25136825488079, 89.06210692308059, 16.374461887623326, 12.605256302339434, 54.93748854616, 8.343666930813951, 122.58694110953631, 15.676894992657923, 56.74462107641464, 19.861042763208083, 65.04229278591794, 11.763478946428512, 26.092117060063376, 34.08087566826279, 6.9181557364392585, 7.132780488439095, 5.6229945612970935, 48.106143886325114, 45.87302624134657, 5.094324573987578, 52.51422512606873, 5.397110016885599, 10.668128316259862, 11.579133193931812, 15.132973483616926, 80.22920219028411, 73.11668288798663, 28.12679759207323, 105.5998060236522, 26.86015275245376, 11.110655841980819, 29.26739565057456, 8.636370656098046, 72.46207710912849, 54.63093730078519, 6.8896169567157735, 5.399243647283629, 5.416786635832961, 111.02478130785325, 44.575313358083754, 8.08106929776219, 14.351698183591312, 14.276598409017938, 10.412159241611976, 20.366121211316983, 66.71261482967577, 7.001031232814646, 12.104268291421603, 88.15220469418924, 22.2215363855391, 21.14503171058458, 180.63131488421362, 24.69471906408036, 59.72165416828768, 6.181932197561858, 56.124848196368255, 7.933273490705012, 9.44816433527934, 20.06878234322367, 88.07232544042475, 5.396102186691036, 10.062994616018212, 11.802178237577413, 7.6027748423844885, 40.97331406601921, 19.08919714600618, 87.99698683623612, 85.57669078812353, 66.33348668118158, 53.94946018337017, 40.694760189590916, 17.242124999631066, 14.4353140021795, 42.009409255620916, 26.536120241087296, 27.416501058792367, 20.70865232436295, 19.564233685093416, 15.457803115037065, 5.336374189656702, 11.045887417193992, 11.310858120713918, 90.5375955538195, 42.37421407062037, 17.2493300890982, 61.34641165623055, 9.83015803366904, 42.14579704942382, 55.30020648851773, 77.24316513004283, 16.427061625844114, 17.782256437718694, 14.2714219564225, 93.4672777222606, 35.02360693371132, 38.34929962732117, 9.741476723540789, 23.15052429320386, 67.54550333882196, 8.841863903494854, 19.37465692327714, 26.41246788589044, 71.13298942309018, 128.82775763241875, 23.028713537597056, 250.94176024435131, 163.0475560119811, 48.288969307854394, 82.47820328263077, 40.860789904857114, 15.627296038470435, 7.131421480521243, 59.046514595969946, 86.03246427852673, 46.41022184092455, 77.42768451307667, 48.443192305951975, 59.67897620811014, 7.5963403875437, 179.82768600317488, 17.467402394927486, 52.96489727538071, 25.567127036589238, 16.82943009472794, 14.850202806986307, 20.617935700191147, 58.34309906305459, 49.921616215141405, 29.47894700193934, 55.63448753506188, 349.12691599975545, 46.20017594507503, 31.03369160651065, 84.30480806085997, 19.134694674518784, 29.671986110358677, 346.83672458855875, 44.92097288001758, 76.6673398475287, 54.693608242800494, 26.551331457245155, 35.96996582359335, 61.82439968503512, 417.969198579046, 24.344802058822893, 60.06731839157398, 7.457569811000413, 11.1652085271567, 75.4196706187771, 40.57962894650057, 18.250927971929578, 10.53336101301891, 5.439099339950027, 13.048357599433066, 7.3822435301751, 7.251525487879393, 15.351494081644118, 8.44909063431275, 19.983821980577353, 17.833148510399184, 22.6662784091895, 6.236444996905266, 64.62426449187706, 27.224202139607485, 16.455771661362906, 13.036176447068895, 75.65641735586355, 6.260791840130666, 5.52405612192779, 16.338653879166227, 12.866879080474444, 57.119370764943156, 59.044478934533316, 15.003615087483542, 64.30963204440425, 77.2746513597474, 5.940853173727704, 23.780742602162594, 52.50002554335609, 28.141458739733352, 6.238613035207794, 13.634566392085803, 59.87582384031904, 25.384988387568203, 66.15534196026206, 23.770106431056668, 5.946328765977653, 45.52307639257405, 6.2840165314769125, 45.82772794696601, 14.403850447341263, 30.46555655922335, 7.904367864604757, 20.057151140941887, 9.128148925213482, 6.186457165059079, 8.161498717934526, 81.11993428453405, 20.080939198316393, 85.16415348975211, 9.63537158406063, 5.603320241381215, 8.021437290468134, 26.606491918720888, 114.86083614323391, 6.047726148917885, 56.64112185001703, 75.18016871834318, 8.835291949471477, 17.667135169602396, 62.53606243784379, 15.75710786709055, 136.2398695802834, 32.35123523715701, 66.97931087630538, 15.601763113925736, 64.24859258489025, 22.539536335949677, 55.13582428241576, 65.57694078551104, 381.7246527708084, 91.00129537053473, 11.370518417610688, 23.022378653310255, 28.940283173708355, 5.338565183992854, 21.28006058479374, 54.89809680871449, 40.625007284337684, 283.56707079132593, 11.171462558731106, 45.66037326418818, 33.094482808408756, 60.16909477724948, 86.0908680255171, 8.70707235798634, 80.06885729295732, 184.8177198349385, 36.56577118887182, 127.29376034258877, 34.264041311624005, 39.79616595304369, 40.50670202952629, 70.86191331224771, 30.413459216458058, 30.394222580635414, 14.298824416086681, 21.374601352847616, 70.31779652018595, 10.620600226112142, 39.284319594844646, 5.7791317819785695, 6.574021780358807, 60.812559122474426, 19.464239149114306, 12.185322337837695, 26.683149360352818, 33.43378130652064, 5.372732476670953, 36.55033817744964, 25.757954228091588, 9.37395201212638, 100.78463901117199, 30.05087620367982, 6.815586830702152, 10.27891352916558, 38.88133642114217, 34.7380004969436, 62.18864573241799, 166.2685902962781, 125.45157487899786, 39.43986078075524, 94.2356319740633, 67.10264376031179, 25.978430060971842, 6.515392665446457, 8.066688128488467, 395.6818568510282, 10.863016426711322, 28.783529181162166, 5.698210078005867, 23.430552185259668, 21.216281116887703, 13.311672696959207, 16.185348811502962, 313.7998319631505, 6.091632502347901, 39.44423359825373, 26.616579675035215, 63.87446441190836, 8.656721787518618, 21.996313457948133, 51.83616075781067, 42.87563196076728, 106.02626954662298, 8.759314804764129, 27.18238442336168, 13.248042533765942, 8.490913433244248, 155.62504063448722, 14.147331583083663, 54.469073885864795, 32.47261543971252, 10.496175680259629, 36.69940326881171, 5.804542604934117, 17.270361548320338, 5.659510649282673, 9.961452397600931, 86.88891756377774, 74.3829447784517, 56.95921816550808, 11.0379828463675, 11.904591790980147, 12.070421774262666, 31.242928336401924, 30.429451912871603, 23.847920444798387, 5.3162382683333576, 19.219392858487144, 37.161124316954684, 20.142767809701215, 87.21132757816844, 9.663864401253587, 74.29367938272972, 91.29831671159732, 13.115591432183818, 19.386898599892643, 49.32594332891199, 74.5134156788605, 26.285528251981294, 7.414079594038145, 19.285980340968894, 15.853377430154362, 10.834667668219865, 83.80208635523749, 16.32502649904872, 12.877696970014629, 71.22806092753027, 63.469504350113546, 23.24004057895283, 26.49638183923457, 14.76029750573217, 43.74216453180426, 9.982112434228641, 161.93190123124782, 101.18507248135573, 76.04326837282578, 20.901779166999187, 24.711295511724146, 12.41287707239915, 5.621920722056949, 32.05190597965589, 29.97985355100764, 33.13254214176506, 17.013438720447756, 33.13302085846907, 5.071363916747553, 49.528491595960716, 9.261139116474666, 69.03640766892576, 53.376823146762426, 61.25173764083017, 76.9853455532329, 20.70983035389151, 20.28109963502146, 99.98638050898289, 73.87248787385082, 28.612601381727007, 256.6642119053965, 71.59056521077265, 96.96578193724416, 29.61389207139684, 6.805322437526355, 44.63620382355399, 7.503665945901303, 56.692182073736674, 5.249230667244217, 70.28830965775907, 63.43070007433715, 105.49994474470996, 18.332801448742266, 23.44376350061647, 13.39030405394359, 32.14379286171787, 104.12878012506437, 17.757607260838626, 84.04319595623504, 42.35987224014626, 7.265919546384381, 25.714385541605512, 35.34669766649267, 49.974187282593, 265.6068028095931, 7.189121435579488, 26.40332633571931, 5.8590770195915765, 11.483162895192619, 44.67663012937706, 67.09252443806892, 78.308471512728, 7.73188902870248, 20.72652845622855, 40.92000877678723, 13.433965977512745, 75.42044201408652, 97.77352561323126, 30.905640423756616, 29.781188351119827, 374.68130035458864, 92.71685862614997, 38.940910068389925, 45.18105491554724, 45.45125621093855, 28.73727102847203, 26.2704062534361, 6.328562010517366, 8.747719106576424, 131.02755679161356, 79.53256449518871, 42.7268420850559, 76.65483142170785, 25.009899168574336, 21.36021502076096, 59.64432659863317, 58.9022772328847, 19.383430553147136, 57.85681025017368, 10.004707858523334, 30.59618795857206, 21.192472655294093, 6.230175987188849, 30.12626143414187, 118.40469659627107, 8.554460302452481, 35.16638494658294, 13.174179924270675, 82.59338582679129, 126.19593931149555, 38.198794176039414, 8.041917223613618, 58.72851504086684, 8.321209456099297, 47.29940647037644, 14.834721941806814, 36.071455997313734, 9.581120885462042, 24.513833301072975, 36.82402100578048, 6.012750258895004, 10.60492781918395, 10.94263807645285, 20.731965782306442, 31.663792632521087, 31.424334631257764, 53.007664940425535, 71.84195705994428, 47.86889440631889, 230.10131115413773, 13.11764922052998, 177.03627488876836, 327.5956451804268, 160.35723307683946, 76.80846736392301, 27.205955018322033, 26.066586224728148, 7.086467604435064, 6.050281743800072, 27.63779240370753, 17.381929569832202, 49.4625268679352, 31.208899683704306, 25.890329170117777, 6.715820791749528, 31.176027080975565, 19.232123992914612, 69.11844884464057, 6.6290833744994435, 9.35906381858713, 76.31327061234029, 186.1758476828321, 68.92553510024304, 59.706308126422286, 18.46910778588146, 24.734290728778205, 204.71057340765506, 24.753334166816483, 12.380743146218416, 33.539318127120126, 32.289353323187385, 8.79290568804983, 59.08023336344836, 18.48458508981753, 23.587676542564857, 107.86381931305506, 26.850705669093408, 12.96075891705519, 64.51974562578363, 52.30285185157006, 82.23070313936597, 6.254444866599245, 52.10253482936406, 20.36006115209783, 39.95866758073939, 35.643608666082, 47.365420081751935, 5.175828943014129, 7.153404573897813, 29.616677703194547, 93.99005711311055, 64.73317728748444, 40.500788545018295, 8.861743438984831, 30.02863532551635, 29.16920135369819, 14.05756705406391, 445.580733085729, 115.53477839278493, 27.542195710823023, 11.989304000521296, 8.32265861755507, 43.25490295287535, 32.40229545035275, 22.155899338766332, 14.73406246238197, 73.21153900230189, 55.3941202094878, 63.90925841249332, 75.22376848421749, 6.857605955331046, 55.65622481125243, 19.177446826822347, 74.51321204588871, 18.192977570651642, 6.297038156735923, 83.94077877018154, 7.756569188127402, 65.1426919541321, 22.051815348465908, 38.720973697167146, 26.978628223224234, 30.132281078507454, 235.2943477537604, 68.222533953337, 14.658001653358493, 107.11844222825883, 41.3017168104212, 14.567248969092658, 36.0245804494338, 48.71978832814116, 14.375834741854133, 18.110558810807284, 25.060112816083745, 5.4390664678401155, 7.357364447725219, 16.12292499839774, 195.2072868521289, 12.53376427020813, 28.426090951869167, 17.621439489341654, 90.78695116580762, 87.67334323803057, 11.767347133104947, 18.804641010744948, 86.32503487953711, 10.028874398682118, 9.786665734986048, 47.796775612610936, 19.40577991656923, 21.66405242733811, 7.941172221607059, 94.77469209251065, 310.5319969424815, 130.35283616580733, 196.38167233550354, 146.05129277404293, 28.721769488859188, 80.39034515614298, 22.342236483372307, 29.788052747634843, 157.94815302394287, 27.071084587232974, 66.25140423947583, 11.644553387782608, 112.64740742596855, 97.53192218983003, 21.60612231440338, 9.720335189744343, 21.27230813368773, 5.274810029510727, 75.79690500883234, 14.993161742581478, 16.612862286319544, 7.413143903226466, 48.80388362660496, 12.804318516301853, 46.074981718208484, 6.56185005083114, 11.221207076092554, 47.01770735743786, 14.010511838414196, 18.98084118253296, 71.9526404269926, 48.65000240159353, 32.21818554742076, 7.064931184070692, 21.93095999318991, 30.79793868966403, 19.087194456371165, 15.638443315745445, 24.440332252713812, 77.83610630568955, 22.411589715538696, 110.46701530231459, 279.0464815303281, 35.14162989870529, 5.2190320839011495, 30.766864687636623, 99.26566578735398, 143.137403768301, 29.976857208582167, 33.41221088915217, 8.966544467031643, 19.038745668178304, 286.25778827581877, 34.87422814911622, 5.781138328798722, 108.5293189917703, 79.44952950854812, 27.211715596560285, 13.414123727914461, 28.526076108613186, 14.319094397070803, 15.779944314749644, 63.859114349543056, 17.182601176077654, 21.394194601446458, 78.81260375052592, 163.291980633639, 70.10325059368142, 8.013294483716107, 94.63505525169153, 240.4284438319757, 80.87413871312721, 28.535182640876773, 5.068200298405516, 22.888423054305992, 34.80555099835807, 54.18319108289313, 17.374416928601352, 73.00703741411957, 32.68505168503829, 18.515124531393315, 64.00829717850417, 38.815989081648155, 18.017908282782432, 10.511008391591238, 39.46234141242344, 243.41843395884405, 43.3984979474788, 19.567369898721623, 13.469306858205238, 109.04033687398353, 217.03611391275774, 93.90419454095283, 107.92299324102262, 5.266064378358794, 13.194525070294087, 89.09908639880939, 16.95132929221422, 14.198405787740732, 36.959951281841924, 69.7036998286297, 32.47391477426604, 15.74353865994507, 66.8219934972572, 8.784757509611177, 69.9055534383811, 9.330134217774503, 64.64537682514737, 14.837452779173919, 71.07085574775697, 43.804719693901475, 28.994761396832153, 14.04524260049255, 27.072984678662685, 10.811460627785943, 46.10014583931971, 76.14155844202828, 50.797993451319584, 7.566035487226929, 38.13281502748064, 39.83583641029894, 7.842121527911534, 15.014613489336874, 191.53476247160995, 15.661245009810575, 62.7764245670991, 407.00454000404443, 122.86114419608987, 44.049328405678935, 46.351069167979354, 106.7968562987277, 89.05359927809931, 75.92141972904724, 5.99924837497786, 189.23390289109443, 114.53697470313254, 64.57266662727548, 15.476326033218765, 17.87292398368458, 12.825867455763525, 15.359709386958304, 50.80336386425095, 22.71469025213183, 5.910329579374416, 26.87126012640607, 24.58786603909606, 16.239618201938228, 9.670727951527168, 5.648263388889837, 11.472949001512575, 66.31747917343434, 5.158645948021513, 89.56657964172418, 79.16807147561028, 57.82026680120444, 6.323222502468726, 336.02781512881904, 119.11592999617599, 37.76637466784515, 13.773539236114793, 10.308806683588944, 45.03573404796629, 125.92474697305336, 14.788857890539129, 479.81181881165173, 79.62420324893827, 60.7162951524734, 40.44167261683731, 23.172857191351927, 320.9254412590805, 147.72999333521298, 35.33970577620206, 57.36070219929266, 6.218514016412766, 66.26505003292323, 16.963405789969276, 5.077491363108701, 201.01583832341694, 7.1115688206217875, 5.388185624531404, 26.58418871487545, 6.804339480227657, 7.165613145526963, 45.00533550203197, 51.856162277727, 63.44283719698977, 203.1341477257741, 72.84949336644212, 13.224178288165737, 6.294526929462204, 19.637671826238236, 29.10774510525852, 5.606705634877683, 81.72442029926654, 14.407612276368244, 270.1481143140113, 56.25332784338099, 112.0175300507683, 295.74521066478053, 9.766667898296808, 72.51672908287533, 52.220231093375666, 26.118706169280863, 114.98077979381351, 11.297023114049066, 29.233163328208015, 43.153111955745075, 39.86145081737901, 12.430314891593788, 11.58030861874434, 69.55720176831909, 13.9639004246301, 5.28150920891381, 9.91279623687799, 59.539489295988176, 16.683545484526444, 8.368454051198556, 8.276089134620737, 10.78443435369881, 49.34213142757653, 106.03973733730663, 46.56058003813455, 454.4319697435593, 127.24731385825861, 161.5624516759057, 176.9742109050699, 82.77033824626005, 88.10916058868403, 66.34556775868921, 50.319551441847146, 72.97666105845278, 32.083784055564976, 42.91455224368998, 42.18838300634726, 23.76240461730931, 97.23556587457463, 151.22392208316234, 147.89239988334958, 64.42114987799832, 11.380019221969782, 26.52490931163004, 98.35301926328108, 7.213038795307422, 8.172081492799277, 7.371171709541626, 32.85324213481914, 348.5634110762485, 18.041641534611816, 462.60124319889655, 6.893181049004685, 11.387888661399266, 96.98239821592372, 92.63666671123171, 6.010161715256709, 70.72301323541541, 7.999888839335649, 68.49554817734226, 7.977153811801831, 15.806804121179646, 29.235731365634678, 25.418272708873893, 20.48518891156812, 30.921753490642075, 5.039745448257101, 58.758588328210706, 11.883255186454237, 70.25638340461938, 9.227935956057976, 65.02691337529227, 78.02090982813543, 49.68813519465638, 55.75305149808925, 19.317632055220166, 18.13802383317612, 6.867883560144936, 10.619837865294624, 98.22750674918714, 76.51853826799409, 14.534866057325779, 130.2368145701355, 16.505782757851698, 16.624379160431275, 34.06242201911308, 15.185398610424317, 99.92245853435092, 7.490496124173853, 25.955793643924864, 10.937697965791571, 31.920448106686248, 6.593269174593196, 26.61562290356584, 14.210377457316945, 165.88297754735203, 99.39362283278835, 5.534857874318112, 52.58082155901465, 9.682023159509217, 90.10529247385145, 56.41165976957947, 5.621627970115554, 44.80635351884347, 5.685597797569716, 342.13005951480966, 52.49298125428713, 8.927485069604419, 9.803309832081869, 70.46081144676256, 77.04138379577523, 69.73406407592628, 5.039673408790107, 26.2404654071832, 6.0872080372045945, 11.337174351963752, 303.26156349451946, 87.46494637264631, 5.9434210085964265, 7.675045094397285, 30.97441523939661, 11.103886069576594, 28.066089002792783, 99.3724375202429, 11.296697719056755, 45.31729497361499, 19.806328915487956, 62.57195117747314, 57.287413234956695, 5.892584577253188, 7.441497952144423, 5.6637947499368835, 67.12613943807949, 64.57123488758236, 64.19992619240644, 18.360804661770445, 75.44485197789561, 18.477936466448405, 47.89472109564248, 20.923746290277304, 133.66176153432937, 69.9275600568051, 106.8178055750376, 31.49219589272065, 10.716961682675036, 19.511022877971776, 5.964378642110956, 70.11649253737686, 43.19821654774322, 9.481981162139434, 50.90973712915475, 16.60353226608116, 8.438853561524983, 6.814123110544161, 137.31623409503587, 15.961893198399883, 17.969294669489052, 6.781197219681682, 11.004062114412013, 13.555463217188551, 35.81959511672963, 155.16435987661785, ...])
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);
([8128488.491477424, 8226651.5625, 8271683.655771871, 8321609.3121451875, 8554056.639411908, 8590287.928073587, 8689390.317115555, 8692672.073595153, 8692678.786445798, 8730382.8125, 8734300.371095764, 8739084.189873165, 8739089.961920016, 8752948.4375, 8794300.65064081, 8827096.833443891, 8828003.13711314, 8834889.204052292, 8855751.308607828, 8878913.067983845, 8943140.361779764, 8943145.47967477, 9018339.3376652, 9019949.742723567, 9019988.98303367, 9025278.614375468, 9033082.843240786, 9033294.190951495, 9039330.40774234, 9040006.25, 9072626.5625, 9077144.590220163, 9084253.584578997, 9085866.014761072, 9086573.784633908, 9086748.82610592, 9093640.953205606, 9288899.064981366, 9334052.07262022, 9372480.230064517, 9374848.060762137, 9374927.221282022, 9376457.8125, 9410748.4375, 9435588.662742155, 9481931.543990863, 9500393.750106748, 9526001.857801076, 9539040.625, 9546021.49573404, 9551371.181477781, 9556340.625, 9556884.638483388, 9556960.9375, 9558078.070273815, 9566354.883991536, 9589623.306661984, 9596571.94183235, 9596742.330053953, 9597442.03958086, 9603093.68010578, 9603833.05527857, 9639454.036009056, 9642424.729272965, 9644029.439290587, 9644795.921658626, 9647529.581890853, 9649768.75, 9652941.5975638, 9670431.953466522, 9680900.68280687, 9686690.332071757, 9686771.088878196, 9689407.8125, 9693148.543919258, 9693672.497850241, 9694836.117925854, 9710543.75, 9726215.375732914, 9727456.25, 9738786.309429025, 9738796.296819195, 9740052.643671617, 9746769.478230836, 9747353.16792218, 9748528.285661092, 9748860.9375, 9749237.231273083, 9756340.413933052, 9764901.5625, 9810931.214274045, 9812251.247134753, 9841525.270807723, 9850712.549342025, 9855690.625, 9890129.6875, 9896953.1045697, 9956427.386394782, 9960675.916775284, 9961235.926563866, 9961460.038800502, 9961725.607655786, 9961954.6875, 9962086.793200983, 9962366.225481639, 9962520.332617102, 9962927.033403913, 9963518.75, 9963826.5625, 9971855.840054024, 9972285.7736431, 9974188.876383858, 9974679.175801309, 9974925.94158297, 9975053.125, 9983663.583698148, 10006683.358728565, 10017255.953644056, 10030753.502844192, 10031243.21438524, 10032161.930427706, 10033976.768547088, 10036000.912994726, 10036378.981440313, 10043372.86616415, 10043388.328773173, 10045247.009933813, 10067880.59429232, 10103237.051415225, 10103306.187818123, 10107278.879684737, 10111226.95502299, 10115795.311220132, 10118685.42233174, 10125973.993186323, 10126584.375, 10126665.625, 10127083.989165358, 10127537.5, 10127548.4375, 10127755.435081044, 10127868.610536963, 10128439.0625, 10128440.515697781, 10128776.503898837, 10129178.598020801, 10129311.782147959, 10129737.689975059, 10138942.02470855, 10140428.072016168, 10158823.551597496, 10160035.557530235, 10160799.835476013, 10162153.62227088, 10173321.821788771, 10200830.223803882, 10201834.21353963, 10212704.6875, 10256460.9375, 10257434.716864161, 10264833.41625308, 10265538.874837182, 10265957.24893432, 10266909.179691171, 10267226.5625, 10267237.948180746, 10269419.366134696, 10272636.999475034, 10272899.358138978, 10289166.445220362, 10294454.570752779, 10298790.174651518, 10299237.5, 10299560.578791648, 10299979.6875, 10300996.468557796, 10301443.75, 10301976.5625, 10315429.6875, 10316498.066991074, 10317131.287791597, 10318546.875, 10323454.6875, 10331229.6875, 10338900.0, 10341893.75, 10358491.240260825, 10362601.543389646, 10400021.22605022, 10401155.22272063, 10401165.625, 10492287.330032533, 10492320.732966794, 10551198.413336601, 10566318.929074118, 10570328.125, 10570598.4375, 10571260.303995425, 10572498.4375, 10572525.0, 10573194.643643763, 10574571.875, 10574640.625, 10574699.22590294, 10575023.4375, 10575131.880135596, 10575375.377302058, 10575600.0, 10575603.125, 10575666.672304275, 10575881.328015909, 10575893.009334456, 10575930.558920005, 10575960.682626024, 10576139.052994292, 10576204.2659532, 10576376.58636068, 10576503.125, 10576808.950959723, 10576928.786757752, 10577152.708287228, 10577272.898531279, 10577279.082876341, 10577422.782151148, 10577459.847743686, 10577499.986411205, 10577742.482671486, 10577841.52160851, 10578175.596115934, 10578654.297578389, 10578956.002648097, 10579214.7700691, 10579465.464086024, 10579870.660145583, 10580032.203133978, 10580326.5625, 10583053.074123684, 10590976.37514375, 10597333.136387527, 10600560.260820955, 10600971.014174692, 10601896.875, 10601907.828699283, 10602114.0625, 10602540.618168838, 10602618.7666082, 10603390.350538718, 10603829.6875, 10604054.840233406, 10604152.895347849, 10604251.171411674, 10604260.9375, 10604441.893139444, 10604664.852524756, 10604701.264014486, 10604807.891657, 10604819.606956419, 10605107.944465883, 10605346.875, 10605554.538905418, 10605557.29579722, 10606053.887312634, 10606386.842904644, 10607282.56192446, 10607407.145545261, 10607971.63074034, 10608284.309750656, 10608816.53324052, 10609508.57641224, 10609519.088867664, 10609556.054515516, 10610263.525041804, 10610456.144897884, 10610509.375, 10610791.790105537, 10610860.9375, 10610904.6875, 10611085.28607193, 10611784.943889495, 10611956.25, 10611965.823700542, 10612079.437778719, 10612164.97010685, 10612171.875, 10616223.60057272, 10617120.3125, 10617344.911369914, 10618207.8125, 10619563.798474338, 10623519.532633934, 10623921.875, 10623931.399981031, 10624524.640756479, 10626945.3125, 10626996.776718725, 10627000.722933834, 10627473.096967703, 10627821.875, 10628229.608683618, 10628381.266779369, 10628715.625, 10628748.569704544, 10629003.125, 10629054.701745009, 10629339.781161295, 10630475.187027544, 10632521.875, 10632545.490091184, 10632843.437517278, 10632982.8125, 10633393.75, 10633748.4375, 10633965.625, 10634068.259368671, 10638106.045710137, 10645379.508006511, 10645607.300538432, 10647448.4375, 10647810.586888922, 10649479.495273972, 10651533.892643955, 10667717.720506096, 10670805.905080982, 10670819.670742085, 10671167.77295628, 10671465.524443049, 10672465.17429619, 10673566.497424282, 10722640.625, 10723235.309142167, 10728982.862395495, 10729011.25103093, 10759987.677608514, 10765304.942887945, 10766588.441905282, 10767857.8125, 10768837.172307307, 10776014.0625, 10776176.198644146, 10776209.375, 10776307.8125, 10776343.874507708, 10776471.875, 10779120.905610688, 10779704.865696434, 10779826.122175539, 10779926.134145543, 10780246.698791636, 10785004.453640161, 10786712.364845647, 10788574.674513187, 10792480.953580277, 10792484.184799712, 10793829.979578905, 10796002.19531467, 10799975.033908382, 10800210.9375, 10800219.534569975, 10800464.0625, 10800494.389980549, 10800502.426530618, 10800539.351689026, 10800577.239836931, 10800663.871141309, 10800686.735904768, 10800712.428297479, 10800744.78376943, 10801033.179897742, 10801620.925980642, 10801651.33727164, 10801725.0, 10801776.5625, 10801858.92954254, 10802407.8125, 10802676.43412937, 10803547.375986611, 10803558.606105356, 10803910.036669739, 10803914.0625, 10804131.25, 10804265.199692966, 10804346.816828867, 10804577.008506551, 10805359.904604513, 10805398.4375, 10805479.6875, 10805644.842797952, 10805661.730830904, 10805680.786670053, 10805893.75, 10805957.165571444, 10805968.75, 10805997.243649565, 10806028.125, 10806176.362985104, 10806288.483815031, 10806355.509316329, 10806437.5, 10806463.43199523, 10806568.755702013, 10806586.944862083, 10806644.558581416, 10806681.934324056, 10806701.366568403, 10806771.875, 10806794.071092982, 10806808.70270198, 10806818.75, 10806863.703890992, 10806869.971438939, 10806903.367399177, 10806971.094596844, 10807057.8125, 10807069.43086593, 10807141.838816546, 10807173.01633723, 10807241.630312698, 10807254.126106896, 10807268.273063246, 10807397.566377778, 10807447.016503654, 10807535.9375, 10807627.840283297, 10807656.976263257, 10807663.392848719, 10807695.826058593, 10807932.947742999, 10807957.8125, 10808085.853216387, 10808205.936746685, 10808275.0, 10808323.217133895, 10808359.375, 10808418.167724721, 10808582.519633813, 10808621.875, 10809110.9375, 10809285.9375, 10809520.3125, 10809540.625, 10809763.933248954, 10809798.648518635, 10810353.330906546, 10810806.25, 10810812.216044025, 10811273.167785592, 10827051.707815798, 10829328.125, 10831935.9375, 10839573.166626565, 10859317.861662546, 10860951.238081692, 10860962.023295892, 10861849.971549928, 10867541.402853964, 10880950.261082338, 10882005.807674972, 10882634.375, 10886931.772477996, 10891057.087311499, 10900012.5, 10903784.375, 10930980.28338502, 11011309.626320772, 11012342.070199061, 11024981.841435293, 11035520.5285992, 11037531.25, 11053842.1875, 11073739.0625, 11075844.09222493, 11078925.617799992, 11081417.719864711, 11088387.038937172, 11089902.802411374, 11093543.75, 11093840.625, 11094090.625, 11095214.70101558, 11096414.717020195, 11104425.0, 11106657.671890745, 11107023.142609688, 11107136.794053782, 11108164.658792648, 11109469.220731344, 11111613.28086805, 11111887.5, 11112606.25, 11112865.625, 11114009.245027909, 11114079.804218445, 11114135.424074903, 11114643.27263316, 11115290.625, 11115335.282223186, 11122884.262632525, 11122888.20170017, 11126907.344238855, 11127366.656826025, 11127873.138740215, 11128799.573157517, 11129536.783620842, 11146041.099399146, 11147434.375, 11148582.256096564, 11150648.4375, 11152348.14332177, 11152361.57374525, 11152960.444297127, 11155419.466997793, 11155764.127420684, 11155907.509819746, 11155935.90919807, 11155957.663984574, 11155969.03126793, 11155998.704750447, 11156002.535930466, 11156057.055361684, 11156126.200149419, 11156281.128281865, 11156318.343679976, 11156367.1875, 11156381.937901711, 11156476.27095787, 11156595.3125, 11156941.441296853, 11157026.068939898, 11157060.359602658, 11157526.818900593, 11157579.767037084, 11158029.983437385, 11158124.59724916, 11158351.65103035, 11158368.803143984, 11158409.240221806, 11158460.565815452, 11158477.18410039, 11158545.217896743, 11158684.375, 11158685.9375, 11158735.788373338, 11158891.943856994, 11159065.625, 11159083.613945043, 11159139.060368434, 11159311.787202232, 11159356.282532794, 11159444.61015524, 11160099.523950359, 11160196.875, 11160354.6875, 11160458.25274655, 11161265.119454643, 11161640.148226758, 11161695.087135045, 11162103.801783537, 11162450.0, 11162585.9375, 11163214.911190744, 11167868.75, 11170939.266811963, 11171537.424880082, 11175671.45293821, 11177447.620598702, 11180313.423474206, 11181313.905365009, 11183315.625, 11184443.75, 11191249.898385165, 11198115.625, 11198693.128386792, 11198711.97824892, 11205093.678484287, 11239370.3125, 11244887.943844019, 11261171.995175494, 11271392.549986618, 11273101.072974449, 11292651.122204369, 11294515.625, 11301997.824409235, 11302329.6875, 11305145.3125, 11305190.371999666, 11306740.185460221, 11307024.217964483, 11311731.19832375, 11312428.614164198, 11316940.692612665, 11317696.875, 11317812.937218942, 11317854.579467831, 11317917.8862999, 11318104.6875, 11318690.625, 11318800.0, 11318845.00479019, 11318969.203748306, 11319018.75, 11319615.32100388, 11320730.963914752, 11329131.902888987, 11329147.107586695, 11331360.9375, 11355244.154933278, 11414746.875, 11419491.74174213, 11420490.312679565, 11421371.114034316, 11421481.25, 11423034.033329932, 11425340.625, 11428127.340017118, 11428655.637045557, 11428765.964435732, 11430637.398216387, 11430651.887253033, 11431793.75, 11431796.718226355, 11432020.952647028, 11432021.671029372, 11438644.772733573, 11438888.327368611, 11439335.327918002, 11439554.44028559, 11440117.93275614, 11441127.972090116, 11441134.936275907, 11442984.375, 11446406.25, 11446967.561497143, 11452810.117915826, 11453934.375, 11455042.91130002, 11458800.49344366, 11460415.625, 11460827.386772832, 11461282.573751554, 11463044.596748712, 11463489.0625, 11464435.886057923, 11468565.885083497, 11468897.441409066, 11469109.778588269, 11469279.919143416, 11472398.4375, 11473288.643607635, 11474351.670265177, 11474522.109482303, 11475184.828604156, 11476357.019228254, 11476918.651385292, 11477023.59756763, 11477359.375, 11477519.82375578, 11477576.989243746, 11477990.102578087, 11478074.463906249, 11478235.9375, 11478837.513485909, 11478958.501624057, 11479152.566946372, 11479493.75, 11479930.547765657, 11481729.6875, 11481973.898383327, 11483231.309006197, 11483817.1875, 11483965.357235502, 11484007.017454382, 11484012.5, 11484043.75, 11484395.3125, 11484399.780532748, 11484434.518663412, 11484515.625, 11484896.326724745, 11485203.296573533, 11485526.314633776, 11485609.766604371, 11486194.702339325, 11486443.471532343, 11488389.670564588, 11488423.4375, 11489039.664380556, 11489168.297756009, 11489940.625, 11490913.791658543, 11492324.315809963, 11502873.4375, 11504401.096996227, 11517325.775390059, 11533917.554922976, 11537610.9375, 11552030.796048962, 11552634.375, 11567778.125, 11571543.211377354, 11572394.844347611, 11588278.125, 11589509.201520618, 11596334.578856457, 11620175.189303536, 11635484.490558436, 11635670.625585089, 11636232.873141207, 11643123.4375, 11652941.380451394, 11660626.007308943, 11664940.625, 11666451.699436331, 11668557.430332426, 11668921.875, 11668999.961689163, 11669010.566854369, 11673190.625, 11673328.125, 11673563.019194202, 11673660.278578505, 11673687.172842626, 11673880.383637214, 11675464.0625, 11690778.893421164, 11705847.726241218, 11706326.128549902, 11706451.323076189, 11707015.719814738, 11707022.317143045, 11708061.537704255, 11708275.461844694, 11713415.625, 11713416.61480033, 11713417.1875, 11713418.50535806, 11715366.355613764, 11740169.76376499, 11741726.5625, 11741951.807723878, 11742673.22784767, 11742814.0625, 11743321.960207924, 11743538.27102202, 11744203.320627166, 11744266.063476553, 11744577.399062585, 11744582.8125, 11744837.498498883, 11745987.5, 11746232.784928996, 11747857.8125, 11748145.3125, 11748165.131929455, 11749009.118146548, 11753825.945591785, 11754262.287793888, 11755840.625, 11756429.6875, 11762637.5, 11763574.89595659, 11780281.25, 11795512.5, 11797100.615473116, 11797548.619106917, 11801278.125, 11802742.364330178, 11805974.880068853, 11808151.192115236, 11808179.541405397, 11808292.1875, 11809740.262909245, 11810406.966887103, 11810457.506566582, 11810857.8125, 11811308.474939724, 11811335.584670777, 11811335.9375, 11811356.25, 11812104.821079018, 11812152.165040003, 11812196.181610685, 11812236.04305715, 11812294.34220322, 11812299.142522752, 11813323.097456075, 11813620.222965447, 11814631.572811486, 11814633.115932716, 11814859.750776088, 11837239.6649083, 11837972.085190067, 11839387.5, 11839440.334288396, 11839496.64331969, 11839560.356662076, 11839703.125, 11839961.368426016, 11840657.54823691, 11840669.741416587, 11840696.363729553, 11840698.093144584, 11840765.029258447, 11840780.384259578, 11840786.553552149, 11840804.845711188, 11840898.20483794, 11840937.5, 11840943.75, 11840979.6875, 11841018.403371587, 11841318.903480267, 11841341.808747912, 11841536.421892807, 11841573.379158596, 11841768.354697252, 11842173.4375, 11842192.965372972, 11842311.404676147, 11842525.0, 11842737.462270146, 11842818.478242133, 11842865.518569604, 11842948.638646424, 11843154.852875438, 11843695.211485919, 11843857.8125, 11844878.125, 11850265.169916583, 11853518.761705317, 11853693.21237891, 11853748.650786074, 11854210.228948053, 11855581.899056852, 11855779.554083893, 11856633.208123468, 11856917.565845696, 11857085.15695204, 11858575.0, 11858943.75, 11860489.870036537, 11864948.91100604, 11867627.206311347, 11868059.375, 11868174.8652267, 11868356.25, 11883659.480688374, 11893251.176133214, 11894233.845307283, 11896942.1875, 11898858.033941083, 11899228.396468796, 11899259.375, 11899321.592468299, 11899329.374281038, 11899781.8658991, 11900382.8125, 11900673.830060244, 11900879.839186031, 11901378.10511388, 11902629.45619339, 11903083.998110902, 11904221.875, 11906070.3125, 11906087.508497614, 11906259.375, 11906401.5625, 11906421.178579893, 11906512.006006394, 11906527.328826549, 11906576.5625, 11906578.030534629, 11906671.303563053, 11906765.625, 11906787.20192201, 11906909.375, 11907007.65605279, 11907369.665260786, 11907432.089624356, 11912870.3125, 11912970.705504613, 11913364.218139315, 11914190.5150262, 11914375.840880882, 11914614.399820067, 11915191.964523803, 11915389.93430744, 11915442.354214342, 11915484.375, 11915655.316874752, 11915666.765391748, 11915739.679091556, 11915929.847814482, 11916246.58888871, 11917053.25554929, 11918058.59063974, 11919260.414596079, 11919675.977943312, 11919676.5625, 11921027.490146905, 11921265.834894476, 11922548.4375, 11923265.445219144, 11924997.830155456, 11926555.113443498, 11926648.330504097, 11926854.6875, 11926866.059983617, 11926951.5625, 11930610.812545858, 11931864.0625, 11932609.375, 11932882.37042663, 11932923.4375, 11933061.750251567, 11933121.739484778, 11933839.563763665, 11936687.148819227, 11941505.612831194, 11942687.5, 11942731.1390584, 11951238.038335158, 11966140.304123392, 11966503.506053338, 11967904.6875, 11968368.15045877, 11969685.9375, 11970701.239644226, 11980331.64405988, 11980571.749939278, 11992837.5, 11994497.520467516, 11995357.70794092, 11995388.856475342, 11995803.875739334, 11995889.645289142, 11995910.97406669, 11996179.313971123, 11996194.137464225, 11996278.715107115, 11996573.4375, 11997140.761275368, 11997200.855622765, 11997252.787300868, 11998136.152422817, 11998529.2179943, 11999499.480278125, 11999595.82242642, 12011771.361582434, 12012178.125, 12012588.089256419, 12012640.513706898, 12014763.935256874, 12014854.678925877, 12018150.130001158, 12026769.74980462, 12026780.225844137, 12027853.170994172, 12027989.256766813, 12028284.968182204, 12028478.109706592, 12028831.226396568, 12029076.5625, 12029187.60549019, 12029603.125, 12029750.87497228, 12029856.25, 12029929.6875, 12030205.696184004, 12030369.842020381, 12030635.240580527, 12031177.947069816, 12031971.67813835, 12032262.26531547, 12033267.86587212, 12035220.3125, 12036833.211449955, 12042506.25, 12046419.753465887, 12046420.3125, 12046875.969294792, 12051226.393392764, 12055506.25, 12055646.595301636, 12060424.750225453, 12073992.469864883, 12074544.936755754, 12075596.875, 12082084.547870256, 12082932.8125, 12084852.956489544, 12088004.964768138, 12088501.810856875, 12088731.25, 12089842.43171248, 12092286.30053172, 12092640.712970572, 12093443.669429071, 12094183.956682133, 12094198.4375, 12094615.625, ...], [93.20713278840638, 57.2274533886619, 6.944407045839334, 8.253616001997822, 16.941630202204294, 6.556356659478188, 10.678308620239525, 11.452991879905191, 46.12060957419425, 57.65279064747894, 6.839925596724331, 25.33805719265411, 79.61318637676032, 69.35469812147971, 34.3965380313341, 11.06336730040185, 91.68173073539293, 5.168671406961648, 15.945112043447843, 9.862753983696404, 16.713665776310926, 18.882228204498844, 6.117189166450243, 14.043891571293175, 56.95686374094839, 110.36605467164688, 66.82105188933099, 15.713909057713511, 12.477193721703697, 40.98418044558212, 77.44448762838343, 7.3613445291263675, 17.248341926270914, 14.876574322091509, 16.45322523816511, 7.750108740710001, 103.01415913900291, 18.029599504497604, 5.985096080752291, 17.510456265348086, 8.096917407953635, 13.444906301746194, 74.42977370945411, 32.139379294471254, 5.444866154932939, 25.97027174149038, 14.941916310152564, 13.773556563342531, 47.61076615203619, 88.74759827285438, 28.718440566973094, 61.76872575210602, 25.534861093830408, 29.151951946094993, 21.93049577949956, 6.803379009933028, 26.182168414417735, 11.233802005353754, 86.34430613113594, 75.91623841233644, 27.214415178473224, 11.529644355374623, 62.45771458270966, 9.11251933145483, 95.93776765070696, 21.185810267256006, 31.492270489544325, 175.44823858618872, 13.08630089650287, 17.25136825488079, 89.06210692308059, 16.374461887623326, 12.605256302339434, 54.93748854616, 8.343666930813951, 122.58694110953631, 15.676894992657923, 56.74462107641464, 19.861042763208083, 65.04229278591794, 11.763478946428512, 26.092117060063376, 34.08087566826279, 6.9181557364392585, 7.132780488439095, 5.6229945612970935, 48.106143886325114, 45.87302624134657, 5.094324573987578, 52.51422512606873, 5.397110016885599, 10.668128316259862, 11.579133193931812, 15.132973483616926, 80.22920219028411, 73.11668288798663, 28.12679759207323, 105.5998060236522, 26.86015275245376, 11.110655841980819, 29.26739565057456, 8.636370656098046, 72.46207710912849, 54.63093730078519, 6.8896169567157735, 5.399243647283629, 5.416786635832961, 111.02478130785325, 44.575313358083754, 8.08106929776219, 14.351698183591312, 14.276598409017938, 10.412159241611976, 20.366121211316983, 66.71261482967577, 7.001031232814646, 12.104268291421603, 88.15220469418924, 22.2215363855391, 21.14503171058458, 180.63131488421362, 24.69471906408036, 59.72165416828768, 6.181932197561858, 56.124848196368255, 7.933273490705012, 9.44816433527934, 20.06878234322367, 88.07232544042475, 5.396102186691036, 10.062994616018212, 11.802178237577413, 7.6027748423844885, 40.97331406601921, 19.08919714600618, 87.99698683623612, 85.57669078812353, 66.33348668118158, 53.94946018337017, 40.694760189590916, 17.242124999631066, 14.4353140021795, 42.009409255620916, 26.536120241087296, 27.416501058792367, 20.70865232436295, 19.564233685093416, 15.457803115037065, 5.336374189656702, 11.045887417193992, 11.310858120713918, 90.5375955538195, 42.37421407062037, 17.2493300890982, 61.34641165623055, 9.83015803366904, 42.14579704942382, 55.30020648851773, 77.24316513004283, 16.427061625844114, 17.782256437718694, 14.2714219564225, 93.4672777222606, 35.02360693371132, 38.34929962732117, 9.741476723540789, 23.15052429320386, 67.54550333882196, 8.841863903494854, 19.37465692327714, 26.41246788589044, 71.13298942309018, 128.82775763241875, 23.028713537597056, 250.94176024435131, 163.0475560119811, 48.288969307854394, 82.47820328263077, 40.860789904857114, 15.627296038470435, 7.131421480521243, 59.046514595969946, 86.03246427852673, 46.41022184092455, 77.42768451307667, 48.443192305951975, 59.67897620811014, 7.5963403875437, 179.82768600317488, 17.467402394927486, 52.96489727538071, 25.567127036589238, 16.82943009472794, 14.850202806986307, 20.617935700191147, 58.34309906305459, 49.921616215141405, 29.47894700193934, 55.63448753506188, 349.12691599975545, 46.20017594507503, 31.03369160651065, 84.30480806085997, 19.134694674518784, 29.671986110358677, 346.83672458855875, 44.92097288001758, 76.6673398475287, 54.693608242800494, 26.551331457245155, 35.96996582359335, 61.82439968503512, 417.969198579046, 24.344802058822893, 60.06731839157398, 7.457569811000413, 11.1652085271567, 75.4196706187771, 40.57962894650057, 18.250927971929578, 10.53336101301891, 5.439099339950027, 13.048357599433066, 7.3822435301751, 7.251525487879393, 15.351494081644118, 8.44909063431275, 19.983821980577353, 17.833148510399184, 22.6662784091895, 6.236444996905266, 64.62426449187706, 27.224202139607485, 16.455771661362906, 13.036176447068895, 75.65641735586355, 6.260791840130666, 5.52405612192779, 16.338653879166227, 12.866879080474444, 57.119370764943156, 59.044478934533316, 15.003615087483542, 64.30963204440425, 77.2746513597474, 5.940853173727704, 23.780742602162594, 52.50002554335609, 28.141458739733352, 6.238613035207794, 13.634566392085803, 59.87582384031904, 25.384988387568203, 66.15534196026206, 23.770106431056668, 5.946328765977653, 45.52307639257405, 6.2840165314769125, 45.82772794696601, 14.403850447341263, 30.46555655922335, 7.904367864604757, 20.057151140941887, 9.128148925213482, 6.186457165059079, 8.161498717934526, 81.11993428453405, 20.080939198316393, 85.16415348975211, 9.63537158406063, 5.603320241381215, 8.021437290468134, 26.606491918720888, 114.86083614323391, 6.047726148917885, 56.64112185001703, 75.18016871834318, 8.835291949471477, 17.667135169602396, 62.53606243784379, 15.75710786709055, 136.2398695802834, 32.35123523715701, 66.97931087630538, 15.601763113925736, 64.24859258489025, 22.539536335949677, 55.13582428241576, 65.57694078551104, 381.7246527708084, 91.00129537053473, 11.370518417610688, 23.022378653310255, 28.940283173708355, 5.338565183992854, 21.28006058479374, 54.89809680871449, 40.625007284337684, 283.56707079132593, 11.171462558731106, 45.66037326418818, 33.094482808408756, 60.16909477724948, 86.0908680255171, 8.70707235798634, 80.06885729295732, 184.8177198349385, 36.56577118887182, 127.29376034258877, 34.264041311624005, 39.79616595304369, 40.50670202952629, 70.86191331224771, 30.413459216458058, 30.394222580635414, 14.298824416086681, 21.374601352847616, 70.31779652018595, 10.620600226112142, 39.284319594844646, 5.7791317819785695, 6.574021780358807, 60.812559122474426, 19.464239149114306, 12.185322337837695, 26.683149360352818, 33.43378130652064, 5.372732476670953, 36.55033817744964, 25.757954228091588, 9.37395201212638, 100.78463901117199, 30.05087620367982, 6.815586830702152, 10.27891352916558, 38.88133642114217, 34.7380004969436, 62.18864573241799, 166.2685902962781, 125.45157487899786, 39.43986078075524, 94.2356319740633, 67.10264376031179, 25.978430060971842, 6.515392665446457, 8.066688128488467, 395.6818568510282, 10.863016426711322, 28.783529181162166, 5.698210078005867, 23.430552185259668, 21.216281116887703, 13.311672696959207, 16.185348811502962, 313.7998319631505, 6.091632502347901, 39.44423359825373, 26.616579675035215, 63.87446441190836, 8.656721787518618, 21.996313457948133, 51.83616075781067, 42.87563196076728, 106.02626954662298, 8.759314804764129, 27.18238442336168, 13.248042533765942, 8.490913433244248, 155.62504063448722, 14.147331583083663, 54.469073885864795, 32.47261543971252, 10.496175680259629, 36.69940326881171, 5.804542604934117, 17.270361548320338, 5.659510649282673, 9.961452397600931, 86.88891756377774, 74.3829447784517, 56.95921816550808, 11.0379828463675, 11.904591790980147, 12.070421774262666, 31.242928336401924, 30.429451912871603, 23.847920444798387, 5.3162382683333576, 19.219392858487144, 37.161124316954684, 20.142767809701215, 87.21132757816844, 9.663864401253587, 74.29367938272972, 91.29831671159732, 13.115591432183818, 19.386898599892643, 49.32594332891199, 74.5134156788605, 26.285528251981294, 7.414079594038145, 19.285980340968894, 15.853377430154362, 10.834667668219865, 83.80208635523749, 16.32502649904872, 12.877696970014629, 71.22806092753027, 63.469504350113546, 23.24004057895283, 26.49638183923457, 14.76029750573217, 43.74216453180426, 9.982112434228641, 161.93190123124782, 101.18507248135573, 76.04326837282578, 20.901779166999187, 24.711295511724146, 12.41287707239915, 5.621920722056949, 32.05190597965589, 29.97985355100764, 33.13254214176506, 17.013438720447756, 33.13302085846907, 5.071363916747553, 49.528491595960716, 9.261139116474666, 69.03640766892576, 53.376823146762426, 61.25173764083017, 76.9853455532329, 20.70983035389151, 20.28109963502146, 99.98638050898289, 73.87248787385082, 28.612601381727007, 256.6642119053965, 71.59056521077265, 96.96578193724416, 29.61389207139684, 6.805322437526355, 44.63620382355399, 7.503665945901303, 56.692182073736674, 5.249230667244217, 70.28830965775907, 63.43070007433715, 105.49994474470996, 18.332801448742266, 23.44376350061647, 13.39030405394359, 32.14379286171787, 104.12878012506437, 17.757607260838626, 84.04319595623504, 42.35987224014626, 7.265919546384381, 25.714385541605512, 35.34669766649267, 49.974187282593, 265.6068028095931, 7.189121435579488, 26.40332633571931, 5.8590770195915765, 11.483162895192619, 44.67663012937706, 67.09252443806892, 78.308471512728, 7.73188902870248, 20.72652845622855, 40.92000877678723, 13.433965977512745, 75.42044201408652, 97.77352561323126, 30.905640423756616, 29.781188351119827, 374.68130035458864, 92.71685862614997, 38.940910068389925, 45.18105491554724, 45.45125621093855, 28.73727102847203, 26.2704062534361, 6.328562010517366, 8.747719106576424, 131.02755679161356, 79.53256449518871, 42.7268420850559, 76.65483142170785, 25.009899168574336, 21.36021502076096, 59.64432659863317, 58.9022772328847, 19.383430553147136, 57.85681025017368, 10.004707858523334, 30.59618795857206, 21.192472655294093, 6.230175987188849, 30.12626143414187, 118.40469659627107, 8.554460302452481, 35.16638494658294, 13.174179924270675, 82.59338582679129, 126.19593931149555, 38.198794176039414, 8.041917223613618, 58.72851504086684, 8.321209456099297, 47.29940647037644, 14.834721941806814, 36.071455997313734, 9.581120885462042, 24.513833301072975, 36.82402100578048, 6.012750258895004, 10.60492781918395, 10.94263807645285, 20.731965782306442, 31.663792632521087, 31.424334631257764, 53.007664940425535, 71.84195705994428, 47.86889440631889, 230.10131115413773, 13.11764922052998, 177.03627488876836, 327.5956451804268, 160.35723307683946, 76.80846736392301, 27.205955018322033, 26.066586224728148, 7.086467604435064, 6.050281743800072, 27.63779240370753, 17.381929569832202, 49.4625268679352, 31.208899683704306, 25.890329170117777, 6.715820791749528, 31.176027080975565, 19.232123992914612, 69.11844884464057, 6.6290833744994435, 9.35906381858713, 76.31327061234029, 186.1758476828321, 68.92553510024304, 59.706308126422286, 18.46910778588146, 24.734290728778205, 204.71057340765506, 24.753334166816483, 12.380743146218416, 33.539318127120126, 32.289353323187385, 8.79290568804983, 59.08023336344836, 18.48458508981753, 23.587676542564857, 107.86381931305506, 26.850705669093408, 12.96075891705519, 64.51974562578363, 52.30285185157006, 82.23070313936597, 6.254444866599245, 52.10253482936406, 20.36006115209783, 39.95866758073939, 35.643608666082, 47.365420081751935, 5.175828943014129, 7.153404573897813, 29.616677703194547, 93.99005711311055, 64.73317728748444, 40.500788545018295, 8.861743438984831, 30.02863532551635, 29.16920135369819, 14.05756705406391, 445.580733085729, 115.53477839278493, 27.542195710823023, 11.989304000521296, 8.32265861755507, 43.25490295287535, 32.40229545035275, 22.155899338766332, 14.73406246238197, 73.21153900230189, 55.3941202094878, 63.90925841249332, 75.22376848421749, 6.857605955331046, 55.65622481125243, 19.177446826822347, 74.51321204588871, 18.192977570651642, 6.297038156735923, 83.94077877018154, 7.756569188127402, 65.1426919541321, 22.051815348465908, 38.720973697167146, 26.978628223224234, 30.132281078507454, 235.2943477537604, 68.222533953337, 14.658001653358493, 107.11844222825883, 41.3017168104212, 14.567248969092658, 36.0245804494338, 48.71978832814116, 14.375834741854133, 18.110558810807284, 25.060112816083745, 5.4390664678401155, 7.357364447725219, 16.12292499839774, 195.2072868521289, 12.53376427020813, 28.426090951869167, 17.621439489341654, 90.78695116580762, 87.67334323803057, 11.767347133104947, 18.804641010744948, 86.32503487953711, 10.028874398682118, 9.786665734986048, 47.796775612610936, 19.40577991656923, 21.66405242733811, 7.941172221607059, 94.77469209251065, 310.5319969424815, 130.35283616580733, 196.38167233550354, 146.05129277404293, 28.721769488859188, 80.39034515614298, 22.342236483372307, 29.788052747634843, 157.94815302394287, 27.071084587232974, 66.25140423947583, 11.644553387782608, 112.64740742596855, 97.53192218983003, 21.60612231440338, 9.720335189744343, 21.27230813368773, 5.274810029510727, 75.79690500883234, 14.993161742581478, 16.612862286319544, 7.413143903226466, 48.80388362660496, 12.804318516301853, 46.074981718208484, 6.56185005083114, 11.221207076092554, 47.01770735743786, 14.010511838414196, 18.98084118253296, 71.9526404269926, 48.65000240159353, 32.21818554742076, 7.064931184070692, 21.93095999318991, 30.79793868966403, 19.087194456371165, 15.638443315745445, 24.440332252713812, 77.83610630568955, 22.411589715538696, 110.46701530231459, 279.0464815303281, 35.14162989870529, 5.2190320839011495, 30.766864687636623, 99.26566578735398, 143.137403768301, 29.976857208582167, 33.41221088915217, 8.966544467031643, 19.038745668178304, 286.25778827581877, 34.87422814911622, 5.781138328798722, 108.5293189917703, 79.44952950854812, 27.211715596560285, 13.414123727914461, 28.526076108613186, 14.319094397070803, 15.779944314749644, 63.859114349543056, 17.182601176077654, 21.394194601446458, 78.81260375052592, 163.291980633639, 70.10325059368142, 8.013294483716107, 94.63505525169153, 240.4284438319757, 80.87413871312721, 28.535182640876773, 5.068200298405516, 22.888423054305992, 34.80555099835807, 54.18319108289313, 17.374416928601352, 73.00703741411957, 32.68505168503829, 18.515124531393315, 64.00829717850417, 38.815989081648155, 18.017908282782432, 10.511008391591238, 39.46234141242344, 243.41843395884405, 43.3984979474788, 19.567369898721623, 13.469306858205238, 109.04033687398353, 217.03611391275774, 93.90419454095283, 107.92299324102262, 5.266064378358794, 13.194525070294087, 89.09908639880939, 16.95132929221422, 14.198405787740732, 36.959951281841924, 69.7036998286297, 32.47391477426604, 15.74353865994507, 66.8219934972572, 8.784757509611177, 69.9055534383811, 9.330134217774503, 64.64537682514737, 14.837452779173919, 71.07085574775697, 43.804719693901475, 28.994761396832153, 14.04524260049255, 27.072984678662685, 10.811460627785943, 46.10014583931971, 76.14155844202828, 50.797993451319584, 7.566035487226929, 38.13281502748064, 39.83583641029894, 7.842121527911534, 15.014613489336874, 191.53476247160995, 15.661245009810575, 62.7764245670991, 407.00454000404443, 122.86114419608987, 44.049328405678935, 46.351069167979354, 106.7968562987277, 89.05359927809931, 75.92141972904724, 5.99924837497786, 189.23390289109443, 114.53697470313254, 64.57266662727548, 15.476326033218765, 17.87292398368458, 12.825867455763525, 15.359709386958304, 50.80336386425095, 22.71469025213183, 5.910329579374416, 26.87126012640607, 24.58786603909606, 16.239618201938228, 9.670727951527168, 5.648263388889837, 11.472949001512575, 66.31747917343434, 5.158645948021513, 89.56657964172418, 79.16807147561028, 57.82026680120444, 6.323222502468726, 336.02781512881904, 119.11592999617599, 37.76637466784515, 13.773539236114793, 10.308806683588944, 45.03573404796629, 125.92474697305336, 14.788857890539129, 479.81181881165173, 79.62420324893827, 60.7162951524734, 40.44167261683731, 23.172857191351927, 320.9254412590805, 147.72999333521298, 35.33970577620206, 57.36070219929266, 6.218514016412766, 66.26505003292323, 16.963405789969276, 5.077491363108701, 201.01583832341694, 7.1115688206217875, 5.388185624531404, 26.58418871487545, 6.804339480227657, 7.165613145526963, 45.00533550203197, 51.856162277727, 63.44283719698977, 203.1341477257741, 72.84949336644212, 13.224178288165737, 6.294526929462204, 19.637671826238236, 29.10774510525852, 5.606705634877683, 81.72442029926654, 14.407612276368244, 270.1481143140113, 56.25332784338099, 112.0175300507683, 295.74521066478053, 9.766667898296808, 72.51672908287533, 52.220231093375666, 26.118706169280863, 114.98077979381351, 11.297023114049066, 29.233163328208015, 43.153111955745075, 39.86145081737901, 12.430314891593788, 11.58030861874434, 69.55720176831909, 13.9639004246301, 5.28150920891381, 9.91279623687799, 59.539489295988176, 16.683545484526444, 8.368454051198556, 8.276089134620737, 10.78443435369881, 49.34213142757653, 106.03973733730663, 46.56058003813455, 454.4319697435593, 127.24731385825861, 161.5624516759057, 176.9742109050699, 82.77033824626005, 88.10916058868403, 66.34556775868921, 50.319551441847146, 72.97666105845278, 32.083784055564976, 42.91455224368998, 42.18838300634726, 23.76240461730931, 97.23556587457463, 151.22392208316234, 147.89239988334958, 64.42114987799832, 11.380019221969782, 26.52490931163004, 98.35301926328108, 7.213038795307422, 8.172081492799277, 7.371171709541626, 32.85324213481914, 348.5634110762485, 18.041641534611816, 462.60124319889655, 6.893181049004685, 11.387888661399266, 96.98239821592372, 92.63666671123171, 6.010161715256709, 70.72301323541541, 7.999888839335649, 68.49554817734226, 7.977153811801831, 15.806804121179646, 29.235731365634678, 25.418272708873893, 20.48518891156812, 30.921753490642075, 5.039745448257101, 58.758588328210706, 11.883255186454237, 70.25638340461938, 9.227935956057976, 65.02691337529227, 78.02090982813543, 49.68813519465638, 55.75305149808925, 19.317632055220166, 18.13802383317612, 6.867883560144936, 10.619837865294624, 98.22750674918714, 76.51853826799409, 14.534866057325779, 130.2368145701355, 16.505782757851698, 16.624379160431275, 34.06242201911308, 15.185398610424317, 99.92245853435092, 7.490496124173853, 25.955793643924864, 10.937697965791571, 31.920448106686248, 6.593269174593196, 26.61562290356584, 14.210377457316945, 165.88297754735203, 99.39362283278835, 5.534857874318112, 52.58082155901465, 9.682023159509217, 90.10529247385145, 56.41165976957947, 5.621627970115554, 44.80635351884347, 5.685597797569716, 342.13005951480966, 52.49298125428713, 8.927485069604419, 9.803309832081869, 70.46081144676256, 77.04138379577523, 69.73406407592628, 5.039673408790107, 26.2404654071832, 6.0872080372045945, 11.337174351963752, 303.26156349451946, 87.46494637264631, 5.9434210085964265, 7.675045094397285, 30.97441523939661, 11.103886069576594, 28.066089002792783, 99.3724375202429, 11.296697719056755, 45.31729497361499, 19.806328915487956, 62.57195117747314, 57.287413234956695, 5.892584577253188, 7.441497952144423, 5.6637947499368835, 67.12613943807949, 64.57123488758236, 64.19992619240644, 18.360804661770445, 75.44485197789561, 18.477936466448405, 47.89472109564248, 20.923746290277304, 133.66176153432937, 69.9275600568051, 106.8178055750376, 31.49219589272065, 10.716961682675036, 19.511022877971776, 5.964378642110956, 70.11649253737686, 43.19821654774322, 9.481981162139434, 50.90973712915475, 16.60353226608116, 8.438853561524983, 6.814123110544161, 137.31623409503587, 15.961893198399883, 17.969294669489052, 6.781197219681682, 11.004062114412013, 13.555463217188551, 35.81959511672963, 155.16435987661785, ...])
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)