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 = 47574
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);
([2817907.390650985, 2835073.5366544095, 2840085.640066872, 2851124.7431889777, 2862162.666647613, 2893923.8497896274, 2897642.580732052, 2906643.8591121803, 2977940.117342498, 2991385.5143725704, 3021332.547687251, 3056037.609450235, 3063213.7467495995, 3084872.6977776117, 3114408.7489420045, 3281907.5620137365, 3311830.086893488, 3314147.239046731, 3318950.2116210894, 3320063.800432914, 3513583.423523374, 3534018.468713771, 3555085.783607817, 3575107.7479393343, 3612365.79290608, 3612391.9559568535, 3639840.019382001, 3642607.8125, 3697857.1048948294, 3718168.70080639, 3719763.122127123, 3738796.875, 3739427.9950016164, 3741339.0625, 3962844.482818021, 4123830.1540350136, 4311768.75, 4367614.965210587, 4953440.315929429, 4962781.041720594, 4981176.3622099655, 5008543.301341669, 5066371.34707859, 5287063.417113825, 5288132.295686348, 5341832.261496597, 5350405.875376101, 5350410.2897453075, 5358453.655597427, 5435469.220234946, 5436158.451110424, 5436197.526239289, 5438993.589593429, 5474417.713558211, 5488652.531197306, 5516232.702548671, 5525454.122456867, 5535630.368821667, 5592213.06265625, 5617927.523687429, 5676598.887932968, 5684942.934377363, 5690730.567109746, 5696424.220949613, 5700101.254074349, 5704257.138035587, 5722860.5096263345, 5729001.273936904, 5770499.98824466, 5802865.619219925, 5814744.6986606615, 5827953.096988788, 5830646.333741879, 5837731.280684345, 5839132.8125, 5840985.178351216, 5851976.380277983, 5853766.240317618, 5855824.6554458, 5856442.1875, 5857256.595509444, 5860222.790931453, 5866765.495500158, 5874978.8406454725, 5879617.74609802, 5902311.778907333, 5906145.3125, 5914278.125, 5915150.086026498, 5916839.012849427, 5921681.663412073, 5922344.591445372, 5922543.75, 5922669.021422021, 5922723.606028845, 5923517.1875, 5924092.297485758, 5924371.875, 5924546.219075955, 5924801.181404613, 5927554.4500269005, 5927574.252631607, 5927716.980428143, 5929803.125, 5932412.14127241, 5933013.0100762285, 5951640.435667686, 5951892.6265445575, 5952670.768282229, 5953134.261586231, 5959551.14550402, 5963230.877899221, 5964121.440662884, 5965398.4375, 5967723.903897892, 5967838.878406418, 5969457.8125, 5972140.278793131, 5989438.900045853, 6003856.25, 6013900.370446155, 6019755.249020949, 6027234.890158018, 6028268.910149919, 6029021.999570789, 6030779.178884592, 6031494.582775994, 6036420.628780983, 6039971.382594546, 6043137.594147503, 6053185.359133848, 6075924.822868197, 6077559.153804232, 6077560.9375, 6092487.5, 6092735.173843704, 6093454.680778921, 6093550.0, 6094532.008794413, 6095219.833642109, 6095318.75, 6095486.287768878, 6095848.645792513, 6098831.349161428, 6099266.762737102, 6101266.185321339, 6102565.625, 6107423.4375, 6107796.875, 6108450.0, 6109842.793703447, 6111637.17068107, 6114889.0625, 6114988.969836175, 6120083.969559957, 6120572.655981994, 6120842.843590301, 6120859.933973785, 6121339.0625, 6121372.677101042, 6121537.5, 6121737.313521546, 6121755.217986888, 6121773.040637296, 6121899.545685427, 6122383.949873356, 6122957.267312765, 6124289.739061105, 6125101.8924984215, 6132029.640889878, 6137407.8125, 6141164.830702098, 6149210.9375, 6151692.517011738, 6156429.6875, 6156529.232825556, 6156721.5670479955, 6157223.074828115, 6157332.613827522, 6160183.912950882, 6163818.75, 6169596.523982986, 6172078.049278162, 6173708.404367774, 6174142.1875, 6176570.3125, 6183582.341039753, 6198297.654022103, 6205003.155138835, 6205050.2825036775, 6207300.0, 6208076.473086305, 6209148.194577688, 6209532.084100272, 6213481.888295654, 6214989.723192841, 6226514.0625, 6226927.607124459, 6228173.086786746, 6228244.212085191, 6228835.3675648, 6229464.43720575, 6231886.478423632, 6232135.138177596, 6236124.748715852, 6240336.955862606, 6242602.602020782, 6244354.6875, 6245691.840431302, 6249768.067013198, 6250352.811115898, 6251750.0, 6252186.496798395, 6254109.234057794, 6254150.0, 6257975.751691686, 6258443.697236066, 6260309.519799775, 6260432.690617434, 6260902.305885484, 6261406.229526351, 6261486.774631887, 6262127.385646494, 6262207.8125, 6263504.769277962, 6263583.537503197, 6268876.5625, 6270121.875, 6271749.807212112, 6274720.3125, 6275422.783555388, 6276237.5, 6277143.75, 6278906.25, 6301688.073423294, 6304754.644065176, 6312865.901774705, 6314056.962003114, 6314570.716414865, 6314614.775355016, 6316515.963336985, 6321725.389991811, 6324848.4375, 6330233.183596043, 6330810.9375, 6330827.9044649685, 6332266.50249881, 6332754.568715486, 6332992.115553741, 6337503.930859705, 6342220.954163794, 6345251.339577295, 6349236.943261928, 6355285.009843783, 6360441.442695045, 6361987.717314748, 6363177.558108012, 6366395.3125, 6372652.423531704, 6375096.595823435, 6375334.015823371, 6383243.75, 6392126.341556588, 6397196.792233187, 6399325.903215258, 6402519.600901876, 6403294.623118024, 6403884.607588536, 6404312.5, 6404499.691247564, 6405326.00028332, 6405556.58645112, 6405856.871494618, 6406712.5, 6406965.811550217, 6407515.625, 6407868.118476569, 6410987.0442822995, 6410995.3125, 6411446.144783591, 6411463.768364579, 6412076.317333397, 6413176.103850143, 6413454.78602609, 6414115.625, 6415867.029359838, 6416710.518384858, 6418849.813692469, 6418876.2424723115, 6418906.764203946, 6419178.015235428, 6419289.0625, 6419298.995544469, 6420112.692238007, 6420426.5625, 6420441.498254535, 6420552.192321222, 6420903.125, 6421598.4375, 6421815.279900175, 6425571.526052912, 6426600.235625716, 6426710.933210024, 6426825.0, 6429365.625, 6430677.87752448, 6443945.967078537, 6444427.406324151, 6449820.70401705, 6452310.658980404, 6456619.637676508, 6456840.580546629, 6459942.697004164, 6459952.325561218, 6459988.603098216, 6459997.457427521, 6465925.283044634, 6466951.972765776, 6472471.805275716, 6484708.154071211, 6485445.3125, 6492556.25, 6495765.451828106, 6498420.61747158, 6503216.840977815, 6503357.8125, 6504634.519195878, 6505437.5, 6506825.94111286, 6506841.116402591, 6506860.017266046, 6508131.151761098, 6509331.783039423, 6509555.25059944, 6509754.349047317, 6510500.0, 6510500.732346153, 6510753.125, 6510754.634357453, 6511412.5, 6511793.609380309, 6512124.221950698, 6512448.9374526525, 6512541.030628803, 6513662.901337842, 6513898.4375, 6513898.4375, 6514370.967104142, 6514827.254258946, 6515452.961781772, 6515459.867306567, 6515463.361136139, 6515554.901263099, 6515566.628001363, 6515567.592709273, 6515590.806708809, 6515643.75, 6515649.372802144, 6515701.5625, 6515948.4375, 6516054.594611296, 6516176.484897688, 6516297.832553407, 6516348.4375, 6516386.609649543, 6516549.68709644, 6516683.813691396, 6516773.4375, 6516900.536342227, 6516903.353427048, 6517102.767654968, 6517187.396936787, 6517255.550513258, 6517520.404512962, 6517763.398075371, 6517791.032890868, 6518074.978842595, 6518625.830085907, 6518820.234012737, 6519211.09356727, 6519415.625, 6519455.182790035, 6519718.887417584, 6519724.851255233, 6519849.1034987625, 6520165.512343008, 6520617.1875, 6521801.5625, 6521937.5, 6522095.659286529, 6526832.8125, 6527874.457236753, 6527878.125, 6528845.942866988, 6532179.6875, 6532828.37843548, 6543506.075693207, 6543692.591480176, 6544425.0, 6551641.889522259, 6551656.064209151, 6553852.017036086, 6555505.774705022, 6556596.650429745, 6557184.998380933, 6557334.375, 6557935.9375, 6558158.636506379, 6558334.867008657, 6558832.195856966, 6559282.030663385, 6560248.093916919, 6561034.375, 6561066.676418471, 6561257.8125, 6561386.606251158, 6562229.08261531, 6562405.05780197, 6563507.8125, 6563789.040976063, 6563803.125, 6564842.017247963, 6564852.288158933, 6564979.6875, 6565663.397895514, 6566170.5571888685, 6568879.6875, 6570586.73595409, 6570630.83759293, 6570979.6875, 6572095.3125, 6572458.35483859, 6572623.4375, 6572630.886256609, 6573649.841555843, 6575752.259236234, 6576746.509145832, 6576756.516979938, 6576833.386040371, 6577164.577831014, 6577368.122616827, 6578421.875, 6578903.36975209, 6579026.253451158, 6583263.047107497, 6583356.510346187, 6584932.8125, 6585886.316797885, 6588015.625, 6588037.999355499, 6588069.33990185, 6598327.727163029, 6600834.703102746, 6600893.75, 6603308.799619603, 6603599.784765227, 6605340.625, 6605416.607273458, 6606084.938873613, 6607078.2947181845, 6607827.816462172, 6608049.988237178, 6609351.55598252, 6609714.85507274, 6609721.875, 6610387.953152886, 6616282.310226075, 6620448.027667913, 6620539.0625, 6624252.732689703, 6624783.897249345, 6627090.841060947, 6632282.073425683, 6632592.655667276, 6632630.841487989, 6637135.5611734865, 6638439.450670818, 6639052.792589795, 6642425.867053968, 6647329.84789076, 6649699.947166983, 6651856.739996426, 6656237.5, 6656524.263333069, 6662188.464711542, 6662873.43816493, 6662889.953101004, 6663451.431016243, 6665111.915760324, 6665589.0625, 6665771.947110803, 6666289.068583251, 6667357.464891848, 6667664.0625, 6668490.783290058, 6668772.920768371, 6669024.552332567, 6669686.429749889, 6670069.222506367, 6670071.391165473, 6673568.481105929, 6673784.040193564, 6675250.336909047, 6675306.25, 6676353.6547631305, 6677067.1875, 6677428.125, 6679006.320744194, 6679402.643057935, 6679688.120619189, 6679797.810272465, 6682578.645535908, 6682894.364968894, 6684098.236413893, 6684371.411621982, 6687757.02607152, 6690358.016990416, 6694049.670996079, 6694691.369775458, 6697188.825219628, 6697558.034303093, 6698128.626292871, 6698238.987410721, 6699076.17517109, 6699364.0625, 6699376.5625, 6699620.045935187, 6701214.0625, 6701405.6628246, 6703513.837538238, 6704709.485025251, 6704954.6875, 6704954.6875, 6704997.3745010765, 6705491.58784964, 6708078.125, 6709033.399067751, 6709035.366962526, 6709090.310164396, 6709573.734872161, 6709621.875, 6709729.6875, 6710254.647131753, 6711551.318993442, 6711632.468541091, 6711756.890461353, 6712359.375, 6712498.301366246, 6712633.978212089, 6712956.25, 6713231.026797117, 6713296.691623411, 6713774.949653256, 6713957.30868417, 6714411.620670722, 6714696.875, 6714739.775126531, 6714820.3125, 6715184.375, 6715211.685936023, 6715833.585021044, 6716051.5625, 6716438.659124773, 6717634.104590465, 6717740.424487955, 6718235.459210241, 6718457.8125, 6719453.7716258755, 6720602.88715648, 6721805.017224523, 6722049.449643175, 6723046.477214961, 6723186.304973607, 6723189.0625, 6723398.4375, 6724288.168863554, 6724617.921373761, 6724643.75, 6725629.44871666, 6725984.375, 6726059.14604196, 6726076.180469325, 6726725.0, 6727558.44720757, 6727854.6875, 6729686.808192923, 6731071.106338113, 6733923.325294041, 6733973.097166539, 6734006.069368134, 6734109.509029403, 6734187.083738436, 6734492.224218499, 6734572.984086013, 6735937.386605131, 6736695.852994666, 6738050.96902954, 6744636.290116578, 6751265.587317653, 6751436.266088644, 6754235.957936106, 6754610.377895978, 6758484.375, 6758737.5, 6760359.375, 6762766.770598146, 6763102.413277689, 6763438.058169418, 6764024.372212677, 6764031.53887256, 6765447.280854874, 6765855.092704144, 6766099.856120272, 6766550.0, 6767197.25955296, 6767476.5625, 6767776.5625, 6767998.198478966, 6768131.25, 6768333.800770057, 6768468.75, 6768827.825684001, 6770725.578702059, 6773968.4742713235, 6774710.88757646, 6774873.1691663405, 6775250.434032253, 6775675.0, 6778120.80087703, 6780017.1875, 6780139.0625, 6780308.998660646, 6781215.625, 6781466.072629803, 6781584.375, 6781827.289768349, 6782289.903038372, 6783428.125, 6784950.9013369, 6785595.3125, 6786145.3125, 6786373.420840651, 6786704.6875, 6787181.245357549, 6787943.75, 6788085.852242616, 6788428.201231054, 6788571.875, 6788654.5910311015, 6788743.319584205, 6788854.536081552, 6789031.25, 6789082.88436154, 6789281.409829416, 6789310.56583832, 6789577.917840029, 6789724.935063601, 6789853.71870115, 6789924.559130875, 6790425.0, 6790644.987239973, 6790664.655531153, 6791419.315834568, 6791471.725631179, 6792135.276020094, 6792351.5625, 6795234.105775924, 6799831.097870343, 6800171.347425977, 6800605.988715424, 6802717.019701726, 6803401.5625, 6803638.008944503, 6804440.625, 6805672.748691768, 6805950.567953149, 6806587.5, 6807716.687161665, 6810034.0805596225, 6811737.713802721, 6811969.571376294, 6812247.947960591, 6812873.091211569, 6813206.288898953, 6814029.623339631, 6814038.461154579, 6814314.0625, 6816365.391445639, 6816743.924376319, 6817010.633728024, 6817761.707853996, 6819614.624423613, 6819981.208699206, 6821110.492774712, 6822590.739395393, 6823170.709686872, 6824068.75, 6824159.038484434, 6825171.39394428, 6827012.5, 6828028.125, 6828787.5, 6828909.250643175, 6829233.04596192, 6830278.125, 6830391.7971893465, 6831007.0909132175, 6831099.608578267, 6831339.25178942, 6831627.604909617, 6831665.625, 6832429.6875, 6832519.959645817, 6832520.056252833, 6832620.3125, 6832700.0, 6832784.375, 6832848.397139184, 6833136.742623214, 6833417.1875, 6833969.575971332, 6834082.8125, 6834187.081610783, 6834232.17892833, 6835001.922579543, 6835486.540071976, 6835693.170637234, 6836011.3799655335, 6836095.2365245875, 6836280.588206943, 6836570.362449322, 6837682.274829713, 6838619.984466144, 6838756.29669626, 6838798.4375, 6838838.875858288, 6839100.157092606, 6839448.4375, 6839741.54375545, 6839955.522572724, 6839995.31628912, 6840447.234935331, 6840556.25, 6840614.2723753415, 6840753.561981376, 6840891.4758555945, 6840970.402516847, 6841165.401632538, 6841475.0, 6841543.864984885, 6842049.840997959, 6842068.344958709, 6842302.980750617, 6842572.61871746, 6842842.06285198, 6842914.0625, 6843423.4375, 6843535.9375, 6843566.521437165, 6843675.107389909, 6843710.316066286, 6843763.499096525, 6843803.261020997, 6843805.450374383, 6843828.121650091, 6843841.742547459, 6843841.979142084, 6844153.582977252, 6844389.92630254, 6844406.798693054, 6844427.352926945, 6844464.607179582, 6844469.2357969405, 6844597.758286306, 6844958.88768118, 6844962.5, 6845075.733991695, 6845252.728172425, 6845285.023279132, 6845409.375, 6845465.625, 6845501.449408658, 6845507.8125, 6845603.898935327, 6845751.114997021, 6845803.826991079, 6845866.941969446, 6845869.581962306, 6846023.191444126, 6846036.518894048, 6846098.330916028, 6846157.030097007, 6846215.564985936, 6846817.0947264405, 6847287.5, 6847637.620160596, 6847710.70568173, 6847783.089138717, 6848017.1875, 6848492.1875, 6848790.625, 6848935.462005879, 6849134.375, 6849237.417412576, 6849348.875239231, 6849461.206248513, 6849670.691366395, 6850151.192684815, 6850253.274804768, 6850263.517371493, 6850539.648618115, 6850720.652448108, 6850751.817193103, 6850782.8125, 6850794.885807755, 6850817.752862997, 6850931.14921889, 6851132.776876364, 6851274.136907868, 6851546.875, 6852324.329013633, 6852849.296321555, 6853815.742232784, 6853980.810582245, 6854798.620954903, 6858098.195933316, 6859806.25, 6869732.308735638, 6869755.085669541, 6869776.293430448, 6871019.727343747, 6872192.085272703, 6872887.713360854, 6874133.1700545205, 6874491.013197281, 6875981.195821078, 6876553.561545833, 6877251.508374393, 6878820.510649662, 6878821.162713935, 6880389.140910988, 6881052.2071400415, 6882413.55524417, 6883809.806432125, 6883860.194660545, 6884395.187070753, 6884418.12973409, 6884766.770859358, 6884768.75, 6884850.804413734, 6884876.435253843, 6885078.125, 6885218.386798013, 6886145.998191958, 6886173.4375, 6886448.567871453, 6886585.480845355, 6886634.375, 6886770.491917757, 6887972.926028712, 6889338.779214461, 6889350.768687819, 6889500.841170535, 6889714.0625, 6889722.826021817, 6890331.25, 6890738.545369922, 6891027.866476883, 6891803.125, 6891844.645597883, 6891964.0625, 6892093.4251059545, 6892153.125, 6892169.6234590765, 6892555.2391199, 6892587.961166715, 6892696.527821829, 6892696.91904868, 6892731.586989046, 6893080.955410186, 6893090.332616659, 6893226.5625, 6893342.776469856, 6893383.990049481, 6893848.405126371, 6893912.974602156, 6894267.367716397, 6894463.566070612, 6894581.25, 6894901.309582845, 6894942.1875, 6895269.822885944, 6895488.489321752, 6895621.875, 6895985.9375, 6896354.664622951, 6896404.911087518, 6896480.509810282, 6896887.911859274, 6896936.028178587, 6896948.774136286, 6897153.125, 6897219.47340948, 6897263.9201088175, 6897312.614874567, 6897400.164473353, 6897609.933761994, 6898145.3125, 6898331.946136738, 6898717.870142628, 6899071.750142371, 6899229.6875, 6899376.109591413, 6899432.976095184, 6899447.638413691, 6899453.183036163, 6899458.047626443, 6899771.106087887, 6899898.8870503, 6900714.043665625, 6900822.0389309, 6900863.638851991, 6900898.180929351, 6901028.725891068, 6901315.551920647, 6901918.75, 6901947.574043178, 6902117.1875, 6902126.141918602, 6902580.465181358, 6902984.980311407, 6903814.685949002, 6904178.125, 6904322.143358337, 6904352.205838847, 6904416.559768344, 6904583.0700913565, 6904984.994579786, 6907774.638762162, 6915098.4375, 6915623.3872594, 6926843.75, 6927926.499693307, 6937993.502535544, 6939091.543574267, 6939328.125, 6939711.488703074, 6940327.698040312, 6942726.149825024, 6943248.623439683, 6943569.364829028, 6944580.07024494, 6945225.0, 6945787.822915497, 6945825.310969359, 6950564.0625, 6951337.5, 6951389.794036828, 6951540.625, 6952371.081320265, 6953572.035563431, 6953754.491029134, 6953829.292950544, 6955781.077886176, 6955860.9375, 6957493.75, 6958032.431515668, 6959998.4375, 6966883.473576984, 6972865.44866529, 6973368.110523235, 6975048.4375, 6975697.526534527, 6976746.875, 6978700.734445585, 6979550.331112275, 6980268.114554655, 6980276.5625, 6980641.684448883, 6980934.43239337, 6984145.643008904, 6987196.934082994, 6987429.418471429, 6988331.773225714, 6989791.69620266, 7001967.74855816, 7004165.625, 7004181.028753856, 7004590.67898219, 7004600.0, 7005065.803091028, 7010766.365533556, 7012645.865049336, 7015152.51017278, 7015206.745789704, 7015904.6875, 7015979.83804155, 7017479.660536544, 7018957.178732808, 7021415.203767699, ...], [13.54530353839044, 17.093175811710193, 9.091962382795057, 5.690606504781372, 15.617159390729766, 9.70617339742207, 7.75193673991383, 5.248209415310408, 14.323991876691345, 14.449401561709841, 21.3691518282787, 7.64330953740266, 6.438708086336484, 5.498225140790828, 12.99357137067037, 24.404509098540657, 9.693600816685656, 8.488954213753946, 8.401748893895203, 5.283060251287085, 17.925810518928003, 13.967814299603198, 25.81556000186358, 27.30941470991527, 7.665116737983095, 41.99022556343225, 13.045800728541378, 30.330185932310275, 12.791286986383218, 14.757263954736734, 6.589247364182014, 56.49711008860077, 5.200122555290115, 41.14948878569742, 24.19687360655123, 17.07794956673153, 85.8407551734835, 6.022073074438838, 5.5182660640760135, 24.99758901722837, 25.113821627152795, 10.492062495546065, 6.662497373580381, 26.021192693065473, 6.204038606544312, 20.998967695052063, 22.84213593534639, 8.837813057443826, 12.999304795636935, 13.332804017395771, 7.30009043114136, 6.353140045069687, 10.885907879316843, 12.063239651393854, 20.605763883039963, 9.240131909726605, 20.867904224131944, 9.982604767369263, 5.308789577451589, 5.888696125366694, 8.540058704037548, 6.610911257431721, 6.952810316937126, 19.098024622664994, 5.7915065035901785, 19.91300893349732, 12.856977970978093, 13.944991777665729, 9.321483111371824, 8.283523088887195, 13.024717547174852, 95.31217918199681, 21.09117035545363, 5.292036017418879, 85.33956582003513, 49.16520986447695, 10.854346657499688, 12.248166148232484, 6.434402542528507, 40.30448915843898, 23.71694609414816, 6.961264139888034, 26.203832792402864, 32.45746976779613, 9.853056527433962, 24.92068041198522, 52.14985916763681, 32.33074995326479, 15.279863477875054, 83.9522826641899, 57.335079041318615, 40.811731672580805, 59.70208385512165, 124.91621912301756, 5.347729906066462, 39.98234015327421, 7.64350801955637, 51.66078327999456, 107.93666175573252, 37.22200806231302, 14.107550658873162, 57.206461221741534, 278.66071040483064, 42.85989244857151, 8.105568793791269, 126.30268093380761, 142.28084397295436, 25.172004531741486, 17.019062142321257, 28.980394289785202, 22.363096971670224, 50.37064300558423, 22.17412313110528, 88.49398328819004, 23.106748076749604, 44.801929395015165, 63.73506913452433, 159.0449499525029, 9.19771546415536, 229.23860501034125, 5.634872195731254, 28.542476902542575, 5.216748307852404, 21.036428800837104, 63.75101167040586, 6.666042932137053, 8.782219627458693, 7.207150613068138, 21.569195902755478, 16.186943597394254, 10.329884913464655, 16.917420595395576, 272.7811111059566, 29.52004731308609, 73.29877106473182, 5.65982151260564, 28.392693421117794, 46.247057929634124, 18.64027908465322, 13.384324673093031, 64.36153134554341, 124.12576013899934, 15.294883417691896, 8.339721019304342, 22.277964786469582, 5.856636102475265, 97.31464705028483, 79.39563429466055, 67.49798268755282, 32.99738672265573, 66.90472517094696, 13.819141881203855, 53.93744912387117, 8.238175570976674, 13.592705515495675, 106.80601377132699, 41.33240974416345, 5.6457349341960885, 77.11536313900416, 28.377100440545505, 56.06524000504243, 25.317872966827718, 12.072210874852555, 8.087297134141302, 21.96127288005916, 22.27399751988302, 13.203969417698504, 19.73111114697609, 16.368561395314334, 39.93195331602659, 42.50506044941521, 6.171802727305999, 56.59741262672099, 8.468869938649684, 60.269548718941486, 10.484346512865354, 22.562447801031006, 22.98189822473597, 5.60314684580731, 127.45017235255594, 104.82017201580099, 20.119676191068272, 12.635635743020117, 9.887585367635284, 78.2771720839613, 71.33840330101515, 13.404895279138774, 10.090171095073623, 15.057642503174561, 7.7087133808106225, 48.09442556438189, 227.32245834478124, 24.50827866664563, 12.741208067765175, 12.2972132757689, 12.345609370408605, 37.98734742394407, 80.90630416294829, 5.909434339840971, 95.32182795048485, 60.76692256334749, 27.292148600840406, 80.54265668657308, 12.574780813099023, 22.332036000081636, 107.59340013483255, 16.80758868769625, 71.02655144420733, 5.78873883783524, 8.813748389954332, 32.88257735757933, 82.90177439084144, 65.50330520175847, 22.51182795958004, 30.024611177974887, 12.548446115851178, 39.05865211951619, 15.523717439890596, 26.327975794732154, 18.807973606941356, 16.104112477589048, 57.1234709119469, 31.4620114949186, 36.16896000928724, 11.257983033666001, 8.711181921885535, 30.10585066201623, 32.4151219348742, 109.82826677661178, 68.72426698140302, 5.0857991964161, 149.00767638043664, 67.73909212539142, 36.016934449936166, 17.694496038609053, 17.016326591876574, 11.589756661966604, 18.58861600569363, 65.25237542626483, 6.0039862243205695, 55.99554756103054, 73.12411818703585, 70.092972086363, 130.8810277607472, 49.00538611097036, 55.05027720814287, 19.826847414653933, 18.98515468473633, 11.017081995324663, 39.373048189394, 29.944469727623435, 7.064059622662938, 166.62126640686188, 18.07654408522916, 19.603582301711263, 101.30093394344908, 20.85079829660648, 55.724038741927224, 12.806180487871933, 126.38134763398669, 6.222861038872361, 28.540126766425566, 24.81598892113657, 97.87074711482053, 7.966211715494245, 6.181293114816391, 19.791304661920716, 37.352462989396955, 38.96447443228681, 29.948661006806184, 80.76922261632636, 25.46336088875377, 24.90314425148365, 50.29900005483275, 9.494285604146318, 58.740200754860396, 8.848986786269666, 21.946513977664, 115.47859970614536, 82.69737935346583, 9.094491203445381, 10.764963967939725, 21.915751545759566, 8.339375970626744, 61.7094443135418, 10.889204313651378, 28.646869269731507, 25.320423268381674, 13.8475413190029, 14.73510744249302, 98.26775230052918, 66.42092822549372, 125.47042149106068, 25.6611310824701, 34.63359804186549, 8.809500409262496, 32.88897439934822, 237.87799400854738, 88.95978086183213, 10.627984889130092, 109.44111716959078, 15.922696034977783, 28.44046731531871, 33.353620181637126, 80.12268349807647, 37.920883008276505, 116.56117142958269, 12.764551748619942, 7.2283186817343665, 8.144585763509928, 10.214715254391503, 9.294096078429087, 12.5443423806895, 73.98360025884385, 92.1560620996899, 27.574226246887942, 71.12034342271578, 5.637151514522588, 33.926525343474154, 16.425610475349394, 171.86795049037, 31.32730897483208, 105.02171712971185, 11.640382203137742, 80.94062434010101, 37.248990622446364, 9.456379530735958, 85.53490525506531, 39.2160744639757, 5.738762571227802, 52.0758776231558, 26.72244847012545, 8.590117659456892, 109.6354141852236, 106.13358286530222, 30.53864860687716, 18.730044791271208, 36.32697679949802, 98.90791936137249, 55.85037400773516, 31.79605421638566, 77.67350449300966, 13.604971169516656, 11.827016805735697, 41.8981618039214, 53.30215806820282, 61.45911404739869, 18.20414707634288, 12.413719775383909, 20.262361849094475, 66.56971512742295, 10.183798558763742, 5.543545867469027, 32.154258852215676, 15.237751398601521, 6.290432215728766, 59.04805609112537, 5.03113056294849, 36.00758769003183, 95.44104184117975, 14.598899102670428, 198.35633569386272, 35.16094997051408, 77.84066585390585, 7.310107859312322, 10.671474712461189, 85.75020306546287, 113.03182261601314, 5.078781045566054, 307.08814378993105, 37.522481062819956, 26.640814330042783, 6.382759742442726, 15.304214348093684, 19.996002944182262, 16.763263581594686, 14.861475880443514, 15.879063315832676, 79.8692595970785, 28.990083310764902, 78.496541904167, 8.567094658666976, 8.360607922946173, 148.4043411291239, 7.8632931494688965, 32.08466254261491, 48.85885469226835, 46.60710866113507, 80.69868969547571, 16.45149705409938, 134.03542737724536, 33.74804980168007, 99.40963777944008, 18.047960656327632, 56.98677990227203, 5.628220363889799, 168.44027388208048, 25.073047435280213, 107.82775588473137, 13.915624517669364, 10.849212422968645, 96.73407548013458, 47.3734397471098, 58.60618349757503, 23.827131395863056, 35.0522534343843, 90.33789791165712, 23.128331305377117, 8.565105143980551, 13.017550943185894, 33.95380586441355, 8.112874455147049, 36.59568155635964, 42.405111712455216, 46.67936552775009, 18.296967315941558, 5.375842601352731, 38.99401937986036, 53.503210794988064, 94.64071587950087, 34.1304562036135, 25.562780953807454, 19.19164798492311, 224.7855128523132, 5.5016717652019205, 15.964075597018264, 30.062104977191233, 44.11135280902895, 22.413776150715336, 34.874526196269336, 50.28187198067684, 17.50912755192689, 57.81931976769655, 72.71197076944733, 10.888761967372867, 18.484289858330005, 54.47133863016646, 6.529773235963434, 8.615099086884022, 118.84945370835939, 19.843870556444863, 83.05361047557291, 15.964365288064574, 44.25699170721183, 29.75904722362045, 81.59084735404616, 38.9917083847282, 16.615402769279417, 67.54950170016558, 112.41241791622605, 12.194614806296109, 13.614834983421261, 6.8308265639563714, 39.58811869256873, 13.124231576626462, 31.429225754577352, 31.51842478679611, 20.728465301143906, 49.53292225230345, 5.826645598553979, 5.092431657793919, 14.896863799163532, 120.9690950998964, 19.165705731336118, 44.32234851890507, 55.393831941316364, 13.319822602009094, 43.84820622755993, 35.74128146137277, 168.77378644992365, 5.898852642565947, 61.2649437128227, 19.399263167788753, 8.550706003339387, 7.018053066874826, 10.58637137793103, 9.682707530930701, 48.72305420313178, 8.805299801651335, 11.388017203173744, 9.2871258733194, 8.56388604440487, 73.69107536637196, 8.777573794705907, 149.1723084152854, 33.202540160709134, 19.934132198887706, 14.462968769754962, 8.000033035898582, 32.35313752760194, 13.31774519651967, 11.137228646665967, 117.17174150364714, 95.68494625182424, 6.795524830483419, 37.69286245351633, 108.9999609027602, 5.5574576381119725, 17.110888341319807, 10.447219610587943, 24.15637860050467, 18.86237381992271, 70.72471372122989, 75.67237188135461, 25.907160277168963, 36.94245424544474, 47.0080235198448, 15.893891072563392, 6.670959326976921, 8.644509127309965, 89.87517210172133, 17.382150973014227, 6.154473753413302, 95.20170486612963, 21.866372247253047, 18.07909325054643, 15.112291279554366, 56.403032140435116, 32.54484322550147, 6.7170422461258505, 156.0187597957622, 17.27209807259272, 6.748607599215523, 9.024047122087774, 113.31252836068538, 134.44455243339686, 9.115739209035702, 119.51609210543184, 49.766336917905754, 32.583682991892125, 11.304151447239224, 63.930921169734674, 97.15253094161513, 32.66485701605249, 36.816921964518244, 32.74795516742598, 17.774459696202655, 20.817173127250367, 93.99036158121706, 53.39857553762198, 68.19027862045861, 57.39041067442252, 46.76225142261207, 14.088067456758353, 13.774736130125174, 6.157333941111985, 66.59718060281567, 14.446834325258733, 22.588427812877015, 71.82345378418633, 14.153943228797685, 25.364252047664333, 9.289191913797323, 33.180203197800246, 18.392863222259855, 55.665639386287936, 22.918435576156334, 41.096498263789805, 28.80841830016853, 10.056058315665497, 19.017758470437784, 117.90587006820655, 36.5868016714693, 31.73131502535437, 25.110574074453595, 13.385901165992308, 82.35195032467885, 5.997767787567296, 67.76730898111934, 9.626685240532971, 51.9770060094378, 220.09847832202504, 8.490957810421804, 58.02546187628548, 53.50723895025627, 19.247171869238052, 7.892140416689799, 39.18872734920122, 233.50134543200625, 57.901099966603844, 91.58349893318574, 7.024522490499513, 61.08035210308847, 18.07567263519501, 86.65857332978207, 7.951747720004917, 26.80555696931676, 123.65371965997802, 28.60727377515527, 8.193311473182431, 9.447363562588555, 7.459315693889412, 11.185589341811609, 58.87490983378442, 10.954971466762274, 17.498293127953193, 20.60874469539674, 16.480566440062773, 147.99203078070235, 6.309625399678291, 9.348743041338624, 13.165716048498304, 77.00442877708808, 111.86472161686014, 44.024771053391476, 22.36413362966759, 26.657766458141474, 21.781270489107143, 12.989181229326968, 16.17011248451642, 29.757010215070864, 48.634019246137726, 260.0586694587503, 30.236542011460017, 16.642313458885127, 52.76293348685558, 43.83136083156835, 9.137156883692365, 33.845570947078635, 20.783253906198322, 93.08203573914574, 7.498452575240996, 15.168371134871673, 28.514029371462502, 27.57422670056559, 55.32907759293111, 16.901597409963344, 35.988239066972305, 12.461787993620423, 83.98936289755726, 118.84943397990467, 30.43888310261055, 51.47876729660917, 16.974777046230606, 56.10330110686543, 12.493004550469331, 7.361443210318624, 31.620686430835793, 5.50183015578459, 39.58933091955657, 47.66693936808218, 11.101766629601837, 493.66702923657795, 8.28412384484663, 66.00987935594152, 26.94511098130805, 7.141635708454596, 56.739557497612026, 26.752549478293687, 5.277974622438408, 72.74559548104304, 32.61626217767822, 33.871186462001205, 20.043784323313922, 5.329345477549463, 14.206627693651356, 11.027701661502524, 14.522011732843588, 65.75140313389409, 90.24949881580122, 23.433354693742036, 37.4044131220307, 30.560499047913243, 7.5500923958096, 12.904527603537279, 178.42195309086685, 24.151986231877945, 10.897962530096507, 87.20123052787935, 9.119830232329402, 25.60031454890082, 40.00466939936736, 16.12297642227854, 46.04482096057544, 7.371759965492194, 25.383534498863035, 69.06777357227679, 13.3251195127344, 14.138633277399903, 9.518974097883353, 7.355512225880092, 5.676294993404075, 19.01479611200812, 9.36451245288788, 8.252937192799836, 37.51592034273698, 58.24131207919571, 24.638294403344197, 193.08794498880417, 23.70267916935318, 12.591320645866993, 7.819958528713005, 11.06375887076647, 82.95826618977416, 15.39622642047022, 25.131730602294716, 64.22682648925495, 23.445688355030622, 67.96887548413882, 33.11974713046079, 34.01746592671772, 43.636638872000766, 14.487797818180645, 87.89446044779876, 58.87262466709184, 13.636845511136224, 20.8547607001613, 9.021001178618382, 13.48882464960472, 49.47873304181938, 120.32513247653387, 71.80347930659191, 23.098291782430998, 6.061851058833983, 65.06399159945275, 91.00226045006052, 105.16220287485052, 6.262112501459585, 105.54029851447548, 42.55366774509997, 12.721792292245274, 98.39395304204582, 34.94637177850229, 68.44689436930945, 153.8672885278226, 8.633187409621328, 6.97705110568647, 22.71914547513837, 50.27105179754227, 7.965092049102581, 15.135373084845495, 19.925728164278873, 191.86538099614583, 15.122531762193335, 72.02168946422582, 25.315437598702378, 44.53880671429821, 62.55777806558608, 12.250689454972928, 26.426823771291417, 31.349812679487542, 27.291961979662446, 71.13667905930313, 46.91651450207397, 7.241262308024875, 90.5272890528758, 5.71251096973012, 14.153405673536911, 63.698969512016824, 24.230535201611417, 37.52983202765783, 55.81544407188371, 20.61063007510206, 26.87668565825772, 26.282743015514473, 69.34441537585889, 62.25349553476195, 86.98568273962132, 7.963187685362949, 5.538315312022324, 5.031224864529838, 26.148868516193097, 11.347187436142155, 12.574083441399353, 28.45899161105083, 26.982316353935634, 123.87803470531505, 20.22652811013085, 93.03504370758942, 17.54660180777969, 11.461829438306594, 127.31248040563565, 9.778978531724906, 39.12292982946651, 27.723654116581255, 40.144231775669844, 7.328757469981046, 53.95581097997872, 18.924549425134504, 73.01595484641797, 40.86995379585428, 9.237574329152254, 66.16603670876907, 35.51670797812201, 59.887350117763866, 54.960088218467185, 30.513802103947675, 25.380180272816396, 8.160608257371301, 9.876668740289151, 31.936595715484664, 55.21530518561395, 63.221114455237604, 7.09727600346461, 41.5782023649239, 8.351159120153671, 29.257038991481274, 16.112336362597055, 49.20112296874836, 33.655113384883066, 44.47036291549492, 54.777335015892206, 37.40289449577413, 134.84184777997643, 7.769624133504499, 28.673469648937612, 16.613198378874834, 94.1926579521075, 6.286312483297911, 29.21620714222993, 26.34667257787359, 11.704170713234923, 5.833068829513614, 35.90249739942219, 13.531405151961367, 84.43428380052565, 7.095208995749647, 27.838900551080382, 18.50243606229267, 33.03959028111426, 19.941660475608913, 19.676438982015064, 8.349560441435239, 7.451680892484767, 27.25440468844085, 111.79049341942891, 64.12004897533421, 60.07128662689482, 80.40774313042117, 7.508735000522108, 6.399115073126612, 5.338430887482196, 15.82228116506724, 25.466901343688477, 137.98016846014943, 32.63302444590782, 38.41728601802157, 27.497581047049373, 39.65288892664127, 12.779962147868796, 7.142217203216224, 7.301886372054811, 31.06421074247777, 16.887700390837203, 62.13603694920625, 93.41788545192581, 80.25591316311501, 13.560296723842473, 34.68632422106123, 66.5322805926237, 26.240416111928266, 44.08715091609179, 22.975654678430644, 56.415039751567775, 74.87215030588595, 172.3920120703112, 64.15588803325917, 41.6979157547751, 15.672502942420362, 21.37942620758738, 23.966619806180823, 23.072492465201478, 21.092495722333286, 34.076997326664625, 108.78315578756332, 72.12885198985865, 58.28118420158336, 37.414843872296174, 135.2461783058314, 11.313010729494088, 30.316197268092758, 23.437879079817986, 28.59863929285848, 47.09920159242787, 17.53880683297571, 17.048481984078265, 42.31957884613584, 44.469131605402836, 131.92523272277296, 7.500054868682977, 23.848523943799876, 51.51348278554877, 83.53744249243978, 394.76041797438006, 5.202597919010733, 11.960509634229595, 5.2966866648690605, 13.335835749210089, 53.310839753894385, 10.754127240266312, 47.91061975317351, 140.76606811967287, 8.005071571435872, 53.1160752480496, 31.093860356458205, 28.07995887626137, 5.072984829333359, 8.775220245864094, 16.78406698937646, 45.97813024695697, 16.40121730690099, 44.92855232995947, 36.35952572679092, 5.455687960819274, 34.330199360728734, 16.297988286946108, 17.606420052693647, 32.083462084044534, 18.480224361688723, 26.305694117821336, 26.279322158164202, 80.94509602167824, 37.99860735179817, 11.393421387142759, 101.71938159720922, 11.219649166233019, 19.343986774185545, 19.173275120126483, 16.985181581892057, 92.29503845168706, 7.165221337168568, 10.524348267225633, 5.450860954828182, 115.55249955913698, 27.1580564364543, 55.666627975591005, 18.499956279856676, 36.197337924707206, 22.323697496289174, 93.01592956720334, 8.634902128682148, 9.920764053204053, 38.86520488609167, 9.569113931981782, 12.308059572781724, 12.989322478435513, 5.6284554499396116, 59.36126537019368, 22.998809389167025, 34.62390319996202, 119.10055493751206, 43.11596349244363, 101.81979811060181, 14.075328791624482, 12.948425245467991, 54.48821928123399, 67.21780572544944, 6.681159363158615, 68.96668078122869, 72.12478919467388, 144.11389969418917, 16.633041476663028, 131.44034158010706, 6.538931182002048, 16.27591749036897, 30.98274936263418, 54.07689496130128, 8.715423816257609, 34.267946866976246, 88.62845123240285, 316.2980764175743, 14.242045415887496, 5.034957144143713, 25.534390727784167, 131.07903705108833, 41.127811530827586, 13.664265410187827, 66.17105084530805, 7.861219555387894, 34.83449020194678, 12.959622300882247, 67.4778862567946, 148.79533349541532, 41.54409383729751, 121.12150484283772, 11.687951396886753, 6.3918889690047225, 42.86365865195968, 63.81935594394989, 17.871650336123775, 208.36845671896617, 11.221330444324211, 21.190005043225668, 8.584108299924505, 59.70628466948145, 9.855595057487369, 292.034437910202, 7.0644824283961265, 19.056158250730054, 35.40707298640905, 15.666727866583159, 111.86658320018988, 26.880001777485358, 20.419327554469202, 17.24096550692582, 86.66859614979172, 15.548124395497442, 29.087016157638324, 7.389044046435746, 40.28325590462464, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2817907.390650985, 2835073.5366544095, 2840085.640066872, 2851124.7431889777, 2862162.666647613, 2893923.8497896274, 2897642.580732052, 2906643.8591121803, 2977940.117342498, 2991385.5143725704, 3021332.547687251, 3056037.609450235, 3063213.7467495995, 3084872.6977776117, 3114408.7489420045, 3281907.5620137365, 3311830.086893488, 3314147.239046731, 3318950.2116210894, 3320063.800432914, 3513583.423523374, 3534018.468713771, 3555085.783607817, 3575107.7479393343, 3612365.79290608, 3612391.9559568535, 3639840.019382001, 3642607.8125, 3697857.1048948294, 3718168.70080639, 3719763.122127123, 3738796.875, 3739427.9950016164, 3741339.0625, 3962844.482818021, 4123830.1540350136, 4311768.75, 4367614.965210587, 4953440.315929429, 4962781.041720594, 4981176.3622099655, 5008543.301341669, 5066371.34707859, 5287063.417113825, 5288132.295686348, 5341832.261496597, 5350405.875376101, 5350410.2897453075, 5358453.655597427, 5435469.220234946, 5436158.451110424, 5436197.526239289, 5438993.589593429, 5474417.713558211, 5488652.531197306, 5516232.702548671, 5525454.122456867, 5535630.368821667, 5592213.06265625, 5617927.523687429, 5676598.887932968, 5684942.934377363, 5690730.567109746, 5696424.220949613, 5700101.254074349, 5704257.138035587, 5722860.5096263345, 5729001.273936904, 5770499.98824466, 5802865.619219925, 5814744.6986606615, 5827953.096988788, 5830646.333741879, 5837731.280684345, 5839132.8125, 5840985.178351216, 5851976.380277983, 5853766.240317618, 5855824.6554458, 5856442.1875, 5857256.595509444, 5860222.790931453, 5866765.495500158, 5874978.8406454725, 5879617.74609802, 5902311.778907333, 5906145.3125, 5914278.125, 5915150.086026498, 5916839.012849427, 5921681.663412073, 5922344.591445372, 5922543.75, 5922669.021422021, 5922723.606028845, 5923517.1875, 5924092.297485758, 5924371.875, 5924546.219075955, 5924801.181404613, 5927554.4500269005, 5927574.252631607, 5927716.980428143, 5929803.125, 5932412.14127241, 5933013.0100762285, 5951640.435667686, 5951892.6265445575, 5952670.768282229, 5953134.261586231, 5959551.14550402, 5963230.877899221, 5964121.440662884, 5965398.4375, 5967723.903897892, 5967838.878406418, 5969457.8125, 5972140.278793131, 5989438.900045853, 6003856.25, 6013900.370446155, 6019755.249020949, 6027234.890158018, 6028268.910149919, 6029021.999570789, 6030779.178884592, 6031494.582775994, 6036420.628780983, 6039971.382594546, 6043137.594147503, 6053185.359133848, 6075924.822868197, 6077559.153804232, 6077560.9375, 6092487.5, 6092735.173843704, 6093454.680778921, 6093550.0, 6094532.008794413, 6095219.833642109, 6095318.75, 6095486.287768878, 6095848.645792513, 6098831.349161428, 6099266.762737102, 6101266.185321339, 6102565.625, 6107423.4375, 6107796.875, 6108450.0, 6109842.793703447, 6111637.17068107, 6114889.0625, 6114988.969836175, 6120083.969559957, 6120572.655981994, 6120842.843590301, 6120859.933973785, 6121339.0625, 6121372.677101042, 6121537.5, 6121737.313521546, 6121755.217986888, 6121773.040637296, 6121899.545685427, 6122383.949873356, 6122957.267312765, 6124289.739061105, 6125101.8924984215, 6132029.640889878, 6137407.8125, 6141164.830702098, 6149210.9375, 6151692.517011738, 6156429.6875, 6156529.232825556, 6156721.5670479955, 6157223.074828115, 6157332.613827522, 6160183.912950882, 6163818.75, 6169596.523982986, 6172078.049278162, 6173708.404367774, 6174142.1875, 6176570.3125, 6183582.341039753, 6198297.654022103, 6205003.155138835, 6205050.2825036775, 6207300.0, 6208076.473086305, 6209148.194577688, 6209532.084100272, 6213481.888295654, 6214989.723192841, 6226514.0625, 6226927.607124459, 6228173.086786746, 6228244.212085191, 6228835.3675648, 6229464.43720575, 6231886.478423632, 6232135.138177596, 6236124.748715852, 6240336.955862606, 6242602.602020782, 6244354.6875, 6245691.840431302, 6249768.067013198, 6250352.811115898, 6251750.0, 6252186.496798395, 6254109.234057794, 6254150.0, 6257975.751691686, 6258443.697236066, 6260309.519799775, 6260432.690617434, 6260902.305885484, 6261406.229526351, 6261486.774631887, 6262127.385646494, 6262207.8125, 6263504.769277962, 6263583.537503197, 6268876.5625, 6270121.875, 6271749.807212112, 6274720.3125, 6275422.783555388, 6276237.5, 6277143.75, 6278906.25, 6301688.073423294, 6304754.644065176, 6312865.901774705, 6314056.962003114, 6314570.716414865, 6314614.775355016, 6316515.963336985, 6321725.389991811, 6324848.4375, 6330233.183596043, 6330810.9375, 6330827.9044649685, 6332266.50249881, 6332754.568715486, 6332992.115553741, 6337503.930859705, 6342220.954163794, 6345251.339577295, 6349236.943261928, 6355285.009843783, 6360441.442695045, 6361987.717314748, 6363177.558108012, 6366395.3125, 6372652.423531704, 6375096.595823435, 6375334.015823371, 6383243.75, 6392126.341556588, 6397196.792233187, 6399325.903215258, 6402519.600901876, 6403294.623118024, 6403884.607588536, 6404312.5, 6404499.691247564, 6405326.00028332, 6405556.58645112, 6405856.871494618, 6406712.5, 6406965.811550217, 6407515.625, 6407868.118476569, 6410987.0442822995, 6410995.3125, 6411446.144783591, 6411463.768364579, 6412076.317333397, 6413176.103850143, 6413454.78602609, 6414115.625, 6415867.029359838, 6416710.518384858, 6418849.813692469, 6418876.2424723115, 6418906.764203946, 6419178.015235428, 6419289.0625, 6419298.995544469, 6420112.692238007, 6420426.5625, 6420441.498254535, 6420552.192321222, 6420903.125, 6421598.4375, 6421815.279900175, 6425571.526052912, 6426600.235625716, 6426710.933210024, 6426825.0, 6429365.625, 6430677.87752448, 6443945.967078537, 6444427.406324151, 6449820.70401705, 6452310.658980404, 6456619.637676508, 6456840.580546629, 6459942.697004164, 6459952.325561218, 6459988.603098216, 6459997.457427521, 6465925.283044634, 6466951.972765776, 6472471.805275716, 6484708.154071211, 6485445.3125, 6492556.25, 6495765.451828106, 6498420.61747158, 6503216.840977815, 6503357.8125, 6504634.519195878, 6505437.5, 6506825.94111286, 6506841.116402591, 6506860.017266046, 6508131.151761098, 6509331.783039423, 6509555.25059944, 6509754.349047317, 6510500.0, 6510500.732346153, 6510753.125, 6510754.634357453, 6511412.5, 6511793.609380309, 6512124.221950698, 6512448.9374526525, 6512541.030628803, 6513662.901337842, 6513898.4375, 6513898.4375, 6514370.967104142, 6514827.254258946, 6515452.961781772, 6515459.867306567, 6515463.361136139, 6515554.901263099, 6515566.628001363, 6515567.592709273, 6515590.806708809, 6515643.75, 6515649.372802144, 6515701.5625, 6515948.4375, 6516054.594611296, 6516176.484897688, 6516297.832553407, 6516348.4375, 6516386.609649543, 6516549.68709644, 6516683.813691396, 6516773.4375, 6516900.536342227, 6516903.353427048, 6517102.767654968, 6517187.396936787, 6517255.550513258, 6517520.404512962, 6517763.398075371, 6517791.032890868, 6518074.978842595, 6518625.830085907, 6518820.234012737, 6519211.09356727, 6519415.625, 6519455.182790035, 6519718.887417584, 6519724.851255233, 6519849.1034987625, 6520165.512343008, 6520617.1875, 6521801.5625, 6521937.5, 6522095.659286529, 6526832.8125, 6527874.457236753, 6527878.125, 6528845.942866988, 6532179.6875, 6532828.37843548, 6543506.075693207, 6543692.591480176, 6544425.0, 6551641.889522259, 6551656.064209151, 6553852.017036086, 6555505.774705022, 6556596.650429745, 6557184.998380933, 6557334.375, 6557935.9375, 6558158.636506379, 6558334.867008657, 6558832.195856966, 6559282.030663385, 6560248.093916919, 6561034.375, 6561066.676418471, 6561257.8125, 6561386.606251158, 6562229.08261531, 6562405.05780197, 6563507.8125, 6563789.040976063, 6563803.125, 6564842.017247963, 6564852.288158933, 6564979.6875, 6565663.397895514, 6566170.5571888685, 6568879.6875, 6570586.73595409, 6570630.83759293, 6570979.6875, 6572095.3125, 6572458.35483859, 6572623.4375, 6572630.886256609, 6573649.841555843, 6575752.259236234, 6576746.509145832, 6576756.516979938, 6576833.386040371, 6577164.577831014, 6577368.122616827, 6578421.875, 6578903.36975209, 6579026.253451158, 6583263.047107497, 6583356.510346187, 6584932.8125, 6585886.316797885, 6588015.625, 6588037.999355499, 6588069.33990185, 6598327.727163029, 6600834.703102746, 6600893.75, 6603308.799619603, 6603599.784765227, 6605340.625, 6605416.607273458, 6606084.938873613, 6607078.2947181845, 6607827.816462172, 6608049.988237178, 6609351.55598252, 6609714.85507274, 6609721.875, 6610387.953152886, 6616282.310226075, 6620448.027667913, 6620539.0625, 6624252.732689703, 6624783.897249345, 6627090.841060947, 6632282.073425683, 6632592.655667276, 6632630.841487989, 6637135.5611734865, 6638439.450670818, 6639052.792589795, 6642425.867053968, 6647329.84789076, 6649699.947166983, 6651856.739996426, 6656237.5, 6656524.263333069, 6662188.464711542, 6662873.43816493, 6662889.953101004, 6663451.431016243, 6665111.915760324, 6665589.0625, 6665771.947110803, 6666289.068583251, 6667357.464891848, 6667664.0625, 6668490.783290058, 6668772.920768371, 6669024.552332567, 6669686.429749889, 6670069.222506367, 6670071.391165473, 6673568.481105929, 6673784.040193564, 6675250.336909047, 6675306.25, 6676353.6547631305, 6677067.1875, 6677428.125, 6679006.320744194, 6679402.643057935, 6679688.120619189, 6679797.810272465, 6682578.645535908, 6682894.364968894, 6684098.236413893, 6684371.411621982, 6687757.02607152, 6690358.016990416, 6694049.670996079, 6694691.369775458, 6697188.825219628, 6697558.034303093, 6698128.626292871, 6698238.987410721, 6699076.17517109, 6699364.0625, 6699376.5625, 6699620.045935187, 6701214.0625, 6701405.6628246, 6703513.837538238, 6704709.485025251, 6704954.6875, 6704954.6875, 6704997.3745010765, 6705491.58784964, 6708078.125, 6709033.399067751, 6709035.366962526, 6709090.310164396, 6709573.734872161, 6709621.875, 6709729.6875, 6710254.647131753, 6711551.318993442, 6711632.468541091, 6711756.890461353, 6712359.375, 6712498.301366246, 6712633.978212089, 6712956.25, 6713231.026797117, 6713296.691623411, 6713774.949653256, 6713957.30868417, 6714411.620670722, 6714696.875, 6714739.775126531, 6714820.3125, 6715184.375, 6715211.685936023, 6715833.585021044, 6716051.5625, 6716438.659124773, 6717634.104590465, 6717740.424487955, 6718235.459210241, 6718457.8125, 6719453.7716258755, 6720602.88715648, 6721805.017224523, 6722049.449643175, 6723046.477214961, 6723186.304973607, 6723189.0625, 6723398.4375, 6724288.168863554, 6724617.921373761, 6724643.75, 6725629.44871666, 6725984.375, 6726059.14604196, 6726076.180469325, 6726725.0, 6727558.44720757, 6727854.6875, 6729686.808192923, 6731071.106338113, 6733923.325294041, 6733973.097166539, 6734006.069368134, 6734109.509029403, 6734187.083738436, 6734492.224218499, 6734572.984086013, 6735937.386605131, 6736695.852994666, 6738050.96902954, 6744636.290116578, 6751265.587317653, 6751436.266088644, 6754235.957936106, 6754610.377895978, 6758484.375, 6758737.5, 6760359.375, 6762766.770598146, 6763102.413277689, 6763438.058169418, 6764024.372212677, 6764031.53887256, 6765447.280854874, 6765855.092704144, 6766099.856120272, 6766550.0, 6767197.25955296, 6767476.5625, 6767776.5625, 6767998.198478966, 6768131.25, 6768333.800770057, 6768468.75, 6768827.825684001, 6770725.578702059, 6773968.4742713235, 6774710.88757646, 6774873.1691663405, 6775250.434032253, 6775675.0, 6778120.80087703, 6780017.1875, 6780139.0625, 6780308.998660646, 6781215.625, 6781466.072629803, 6781584.375, 6781827.289768349, 6782289.903038372, 6783428.125, 6784950.9013369, 6785595.3125, 6786145.3125, 6786373.420840651, 6786704.6875, 6787181.245357549, 6787943.75, 6788085.852242616, 6788428.201231054, 6788571.875, 6788654.5910311015, 6788743.319584205, 6788854.536081552, 6789031.25, 6789082.88436154, 6789281.409829416, 6789310.56583832, 6789577.917840029, 6789724.935063601, 6789853.71870115, 6789924.559130875, 6790425.0, 6790644.987239973, 6790664.655531153, 6791419.315834568, 6791471.725631179, 6792135.276020094, 6792351.5625, 6795234.105775924, 6799831.097870343, 6800171.347425977, 6800605.988715424, 6802717.019701726, 6803401.5625, 6803638.008944503, 6804440.625, 6805672.748691768, 6805950.567953149, 6806587.5, 6807716.687161665, 6810034.0805596225, 6811737.713802721, 6811969.571376294, 6812247.947960591, 6812873.091211569, 6813206.288898953, 6814029.623339631, 6814038.461154579, 6814314.0625, 6816365.391445639, 6816743.924376319, 6817010.633728024, 6817761.707853996, 6819614.624423613, 6819981.208699206, 6821110.492774712, 6822590.739395393, 6823170.709686872, 6824068.75, 6824159.038484434, 6825171.39394428, 6827012.5, 6828028.125, 6828787.5, 6828909.250643175, 6829233.04596192, 6830278.125, 6830391.7971893465, 6831007.0909132175, 6831099.608578267, 6831339.25178942, 6831627.604909617, 6831665.625, 6832429.6875, 6832519.959645817, 6832520.056252833, 6832620.3125, 6832700.0, 6832784.375, 6832848.397139184, 6833136.742623214, 6833417.1875, 6833969.575971332, 6834082.8125, 6834187.081610783, 6834232.17892833, 6835001.922579543, 6835486.540071976, 6835693.170637234, 6836011.3799655335, 6836095.2365245875, 6836280.588206943, 6836570.362449322, 6837682.274829713, 6838619.984466144, 6838756.29669626, 6838798.4375, 6838838.875858288, 6839100.157092606, 6839448.4375, 6839741.54375545, 6839955.522572724, 6839995.31628912, 6840447.234935331, 6840556.25, 6840614.2723753415, 6840753.561981376, 6840891.4758555945, 6840970.402516847, 6841165.401632538, 6841475.0, 6841543.864984885, 6842049.840997959, 6842068.344958709, 6842302.980750617, 6842572.61871746, 6842842.06285198, 6842914.0625, 6843423.4375, 6843535.9375, 6843566.521437165, 6843675.107389909, 6843710.316066286, 6843763.499096525, 6843803.261020997, 6843805.450374383, 6843828.121650091, 6843841.742547459, 6843841.979142084, 6844153.582977252, 6844389.92630254, 6844406.798693054, 6844427.352926945, 6844464.607179582, 6844469.2357969405, 6844597.758286306, 6844958.88768118, 6844962.5, 6845075.733991695, 6845252.728172425, 6845285.023279132, 6845409.375, 6845465.625, 6845501.449408658, 6845507.8125, 6845603.898935327, 6845751.114997021, 6845803.826991079, 6845866.941969446, 6845869.581962306, 6846023.191444126, 6846036.518894048, 6846098.330916028, 6846157.030097007, 6846215.564985936, 6846817.0947264405, 6847287.5, 6847637.620160596, 6847710.70568173, 6847783.089138717, 6848017.1875, 6848492.1875, 6848790.625, 6848935.462005879, 6849134.375, 6849237.417412576, 6849348.875239231, 6849461.206248513, 6849670.691366395, 6850151.192684815, 6850253.274804768, 6850263.517371493, 6850539.648618115, 6850720.652448108, 6850751.817193103, 6850782.8125, 6850794.885807755, 6850817.752862997, 6850931.14921889, 6851132.776876364, 6851274.136907868, 6851546.875, 6852324.329013633, 6852849.296321555, 6853815.742232784, 6853980.810582245, 6854798.620954903, 6858098.195933316, 6859806.25, 6869732.308735638, 6869755.085669541, 6869776.293430448, 6871019.727343747, 6872192.085272703, 6872887.713360854, 6874133.1700545205, 6874491.013197281, 6875981.195821078, 6876553.561545833, 6877251.508374393, 6878820.510649662, 6878821.162713935, 6880389.140910988, 6881052.2071400415, 6882413.55524417, 6883809.806432125, 6883860.194660545, 6884395.187070753, 6884418.12973409, 6884766.770859358, 6884768.75, 6884850.804413734, 6884876.435253843, 6885078.125, 6885218.386798013, 6886145.998191958, 6886173.4375, 6886448.567871453, 6886585.480845355, 6886634.375, 6886770.491917757, 6887972.926028712, 6889338.779214461, 6889350.768687819, 6889500.841170535, 6889714.0625, 6889722.826021817, 6890331.25, 6890738.545369922, 6891027.866476883, 6891803.125, 6891844.645597883, 6891964.0625, 6892093.4251059545, 6892153.125, 6892169.6234590765, 6892555.2391199, 6892587.961166715, 6892696.527821829, 6892696.91904868, 6892731.586989046, 6893080.955410186, 6893090.332616659, 6893226.5625, 6893342.776469856, 6893383.990049481, 6893848.405126371, 6893912.974602156, 6894267.367716397, 6894463.566070612, 6894581.25, 6894901.309582845, 6894942.1875, 6895269.822885944, 6895488.489321752, 6895621.875, 6895985.9375, 6896354.664622951, 6896404.911087518, 6896480.509810282, 6896887.911859274, 6896936.028178587, 6896948.774136286, 6897153.125, 6897219.47340948, 6897263.9201088175, 6897312.614874567, 6897400.164473353, 6897609.933761994, 6898145.3125, 6898331.946136738, 6898717.870142628, 6899071.750142371, 6899229.6875, 6899376.109591413, 6899432.976095184, 6899447.638413691, 6899453.183036163, 6899458.047626443, 6899771.106087887, 6899898.8870503, 6900714.043665625, 6900822.0389309, 6900863.638851991, 6900898.180929351, 6901028.725891068, 6901315.551920647, 6901918.75, 6901947.574043178, 6902117.1875, 6902126.141918602, 6902580.465181358, 6902984.980311407, 6903814.685949002, 6904178.125, 6904322.143358337, 6904352.205838847, 6904416.559768344, 6904583.0700913565, 6904984.994579786, 6907774.638762162, 6915098.4375, 6915623.3872594, 6926843.75, 6927926.499693307, 6937993.502535544, 6939091.543574267, 6939328.125, 6939711.488703074, 6940327.698040312, 6942726.149825024, 6943248.623439683, 6943569.364829028, 6944580.07024494, 6945225.0, 6945787.822915497, 6945825.310969359, 6950564.0625, 6951337.5, 6951389.794036828, 6951540.625, 6952371.081320265, 6953572.035563431, 6953754.491029134, 6953829.292950544, 6955781.077886176, 6955860.9375, 6957493.75, 6958032.431515668, 6959998.4375, 6966883.473576984, 6972865.44866529, 6973368.110523235, 6975048.4375, 6975697.526534527, 6976746.875, 6978700.734445585, 6979550.331112275, 6980268.114554655, 6980276.5625, 6980641.684448883, 6980934.43239337, 6984145.643008904, 6987196.934082994, 6987429.418471429, 6988331.773225714, 6989791.69620266, 7001967.74855816, 7004165.625, 7004181.028753856, 7004590.67898219, 7004600.0, 7005065.803091028, 7010766.365533556, 7012645.865049336, 7015152.51017278, 7015206.745789704, 7015904.6875, 7015979.83804155, 7017479.660536544, 7018957.178732808, 7021415.203767699, ...], [13.54530353839044, 17.093175811710193, 9.091962382795057, 5.690606504781372, 15.617159390729766, 9.70617339742207, 7.75193673991383, 5.248209415310408, 14.323991876691345, 14.449401561709841, 21.3691518282787, 7.64330953740266, 6.438708086336484, 5.498225140790828, 12.99357137067037, 24.404509098540657, 9.693600816685656, 8.488954213753946, 8.401748893895203, 5.283060251287085, 17.925810518928003, 13.967814299603198, 25.81556000186358, 27.30941470991527, 7.665116737983095, 41.99022556343225, 13.045800728541378, 30.330185932310275, 12.791286986383218, 14.757263954736734, 6.589247364182014, 56.49711008860077, 5.200122555290115, 41.14948878569742, 24.19687360655123, 17.07794956673153, 85.8407551734835, 6.022073074438838, 5.5182660640760135, 24.99758901722837, 25.113821627152795, 10.492062495546065, 6.662497373580381, 26.021192693065473, 6.204038606544312, 20.998967695052063, 22.84213593534639, 8.837813057443826, 12.999304795636935, 13.332804017395771, 7.30009043114136, 6.353140045069687, 10.885907879316843, 12.063239651393854, 20.605763883039963, 9.240131909726605, 20.867904224131944, 9.982604767369263, 5.308789577451589, 5.888696125366694, 8.540058704037548, 6.610911257431721, 6.952810316937126, 19.098024622664994, 5.7915065035901785, 19.91300893349732, 12.856977970978093, 13.944991777665729, 9.321483111371824, 8.283523088887195, 13.024717547174852, 95.31217918199681, 21.09117035545363, 5.292036017418879, 85.33956582003513, 49.16520986447695, 10.854346657499688, 12.248166148232484, 6.434402542528507, 40.30448915843898, 23.71694609414816, 6.961264139888034, 26.203832792402864, 32.45746976779613, 9.853056527433962, 24.92068041198522, 52.14985916763681, 32.33074995326479, 15.279863477875054, 83.9522826641899, 57.335079041318615, 40.811731672580805, 59.70208385512165, 124.91621912301756, 5.347729906066462, 39.98234015327421, 7.64350801955637, 51.66078327999456, 107.93666175573252, 37.22200806231302, 14.107550658873162, 57.206461221741534, 278.66071040483064, 42.85989244857151, 8.105568793791269, 126.30268093380761, 142.28084397295436, 25.172004531741486, 17.019062142321257, 28.980394289785202, 22.363096971670224, 50.37064300558423, 22.17412313110528, 88.49398328819004, 23.106748076749604, 44.801929395015165, 63.73506913452433, 159.0449499525029, 9.19771546415536, 229.23860501034125, 5.634872195731254, 28.542476902542575, 5.216748307852404, 21.036428800837104, 63.75101167040586, 6.666042932137053, 8.782219627458693, 7.207150613068138, 21.569195902755478, 16.186943597394254, 10.329884913464655, 16.917420595395576, 272.7811111059566, 29.52004731308609, 73.29877106473182, 5.65982151260564, 28.392693421117794, 46.247057929634124, 18.64027908465322, 13.384324673093031, 64.36153134554341, 124.12576013899934, 15.294883417691896, 8.339721019304342, 22.277964786469582, 5.856636102475265, 97.31464705028483, 79.39563429466055, 67.49798268755282, 32.99738672265573, 66.90472517094696, 13.819141881203855, 53.93744912387117, 8.238175570976674, 13.592705515495675, 106.80601377132699, 41.33240974416345, 5.6457349341960885, 77.11536313900416, 28.377100440545505, 56.06524000504243, 25.317872966827718, 12.072210874852555, 8.087297134141302, 21.96127288005916, 22.27399751988302, 13.203969417698504, 19.73111114697609, 16.368561395314334, 39.93195331602659, 42.50506044941521, 6.171802727305999, 56.59741262672099, 8.468869938649684, 60.269548718941486, 10.484346512865354, 22.562447801031006, 22.98189822473597, 5.60314684580731, 127.45017235255594, 104.82017201580099, 20.119676191068272, 12.635635743020117, 9.887585367635284, 78.2771720839613, 71.33840330101515, 13.404895279138774, 10.090171095073623, 15.057642503174561, 7.7087133808106225, 48.09442556438189, 227.32245834478124, 24.50827866664563, 12.741208067765175, 12.2972132757689, 12.345609370408605, 37.98734742394407, 80.90630416294829, 5.909434339840971, 95.32182795048485, 60.76692256334749, 27.292148600840406, 80.54265668657308, 12.574780813099023, 22.332036000081636, 107.59340013483255, 16.80758868769625, 71.02655144420733, 5.78873883783524, 8.813748389954332, 32.88257735757933, 82.90177439084144, 65.50330520175847, 22.51182795958004, 30.024611177974887, 12.548446115851178, 39.05865211951619, 15.523717439890596, 26.327975794732154, 18.807973606941356, 16.104112477589048, 57.1234709119469, 31.4620114949186, 36.16896000928724, 11.257983033666001, 8.711181921885535, 30.10585066201623, 32.4151219348742, 109.82826677661178, 68.72426698140302, 5.0857991964161, 149.00767638043664, 67.73909212539142, 36.016934449936166, 17.694496038609053, 17.016326591876574, 11.589756661966604, 18.58861600569363, 65.25237542626483, 6.0039862243205695, 55.99554756103054, 73.12411818703585, 70.092972086363, 130.8810277607472, 49.00538611097036, 55.05027720814287, 19.826847414653933, 18.98515468473633, 11.017081995324663, 39.373048189394, 29.944469727623435, 7.064059622662938, 166.62126640686188, 18.07654408522916, 19.603582301711263, 101.30093394344908, 20.85079829660648, 55.724038741927224, 12.806180487871933, 126.38134763398669, 6.222861038872361, 28.540126766425566, 24.81598892113657, 97.87074711482053, 7.966211715494245, 6.181293114816391, 19.791304661920716, 37.352462989396955, 38.96447443228681, 29.948661006806184, 80.76922261632636, 25.46336088875377, 24.90314425148365, 50.29900005483275, 9.494285604146318, 58.740200754860396, 8.848986786269666, 21.946513977664, 115.47859970614536, 82.69737935346583, 9.094491203445381, 10.764963967939725, 21.915751545759566, 8.339375970626744, 61.7094443135418, 10.889204313651378, 28.646869269731507, 25.320423268381674, 13.8475413190029, 14.73510744249302, 98.26775230052918, 66.42092822549372, 125.47042149106068, 25.6611310824701, 34.63359804186549, 8.809500409262496, 32.88897439934822, 237.87799400854738, 88.95978086183213, 10.627984889130092, 109.44111716959078, 15.922696034977783, 28.44046731531871, 33.353620181637126, 80.12268349807647, 37.920883008276505, 116.56117142958269, 12.764551748619942, 7.2283186817343665, 8.144585763509928, 10.214715254391503, 9.294096078429087, 12.5443423806895, 73.98360025884385, 92.1560620996899, 27.574226246887942, 71.12034342271578, 5.637151514522588, 33.926525343474154, 16.425610475349394, 171.86795049037, 31.32730897483208, 105.02171712971185, 11.640382203137742, 80.94062434010101, 37.248990622446364, 9.456379530735958, 85.53490525506531, 39.2160744639757, 5.738762571227802, 52.0758776231558, 26.72244847012545, 8.590117659456892, 109.6354141852236, 106.13358286530222, 30.53864860687716, 18.730044791271208, 36.32697679949802, 98.90791936137249, 55.85037400773516, 31.79605421638566, 77.67350449300966, 13.604971169516656, 11.827016805735697, 41.8981618039214, 53.30215806820282, 61.45911404739869, 18.20414707634288, 12.413719775383909, 20.262361849094475, 66.56971512742295, 10.183798558763742, 5.543545867469027, 32.154258852215676, 15.237751398601521, 6.290432215728766, 59.04805609112537, 5.03113056294849, 36.00758769003183, 95.44104184117975, 14.598899102670428, 198.35633569386272, 35.16094997051408, 77.84066585390585, 7.310107859312322, 10.671474712461189, 85.75020306546287, 113.03182261601314, 5.078781045566054, 307.08814378993105, 37.522481062819956, 26.640814330042783, 6.382759742442726, 15.304214348093684, 19.996002944182262, 16.763263581594686, 14.861475880443514, 15.879063315832676, 79.8692595970785, 28.990083310764902, 78.496541904167, 8.567094658666976, 8.360607922946173, 148.4043411291239, 7.8632931494688965, 32.08466254261491, 48.85885469226835, 46.60710866113507, 80.69868969547571, 16.45149705409938, 134.03542737724536, 33.74804980168007, 99.40963777944008, 18.047960656327632, 56.98677990227203, 5.628220363889799, 168.44027388208048, 25.073047435280213, 107.82775588473137, 13.915624517669364, 10.849212422968645, 96.73407548013458, 47.3734397471098, 58.60618349757503, 23.827131395863056, 35.0522534343843, 90.33789791165712, 23.128331305377117, 8.565105143980551, 13.017550943185894, 33.95380586441355, 8.112874455147049, 36.59568155635964, 42.405111712455216, 46.67936552775009, 18.296967315941558, 5.375842601352731, 38.99401937986036, 53.503210794988064, 94.64071587950087, 34.1304562036135, 25.562780953807454, 19.19164798492311, 224.7855128523132, 5.5016717652019205, 15.964075597018264, 30.062104977191233, 44.11135280902895, 22.413776150715336, 34.874526196269336, 50.28187198067684, 17.50912755192689, 57.81931976769655, 72.71197076944733, 10.888761967372867, 18.484289858330005, 54.47133863016646, 6.529773235963434, 8.615099086884022, 118.84945370835939, 19.843870556444863, 83.05361047557291, 15.964365288064574, 44.25699170721183, 29.75904722362045, 81.59084735404616, 38.9917083847282, 16.615402769279417, 67.54950170016558, 112.41241791622605, 12.194614806296109, 13.614834983421261, 6.8308265639563714, 39.58811869256873, 13.124231576626462, 31.429225754577352, 31.51842478679611, 20.728465301143906, 49.53292225230345, 5.826645598553979, 5.092431657793919, 14.896863799163532, 120.9690950998964, 19.165705731336118, 44.32234851890507, 55.393831941316364, 13.319822602009094, 43.84820622755993, 35.74128146137277, 168.77378644992365, 5.898852642565947, 61.2649437128227, 19.399263167788753, 8.550706003339387, 7.018053066874826, 10.58637137793103, 9.682707530930701, 48.72305420313178, 8.805299801651335, 11.388017203173744, 9.2871258733194, 8.56388604440487, 73.69107536637196, 8.777573794705907, 149.1723084152854, 33.202540160709134, 19.934132198887706, 14.462968769754962, 8.000033035898582, 32.35313752760194, 13.31774519651967, 11.137228646665967, 117.17174150364714, 95.68494625182424, 6.795524830483419, 37.69286245351633, 108.9999609027602, 5.5574576381119725, 17.110888341319807, 10.447219610587943, 24.15637860050467, 18.86237381992271, 70.72471372122989, 75.67237188135461, 25.907160277168963, 36.94245424544474, 47.0080235198448, 15.893891072563392, 6.670959326976921, 8.644509127309965, 89.87517210172133, 17.382150973014227, 6.154473753413302, 95.20170486612963, 21.866372247253047, 18.07909325054643, 15.112291279554366, 56.403032140435116, 32.54484322550147, 6.7170422461258505, 156.0187597957622, 17.27209807259272, 6.748607599215523, 9.024047122087774, 113.31252836068538, 134.44455243339686, 9.115739209035702, 119.51609210543184, 49.766336917905754, 32.583682991892125, 11.304151447239224, 63.930921169734674, 97.15253094161513, 32.66485701605249, 36.816921964518244, 32.74795516742598, 17.774459696202655, 20.817173127250367, 93.99036158121706, 53.39857553762198, 68.19027862045861, 57.39041067442252, 46.76225142261207, 14.088067456758353, 13.774736130125174, 6.157333941111985, 66.59718060281567, 14.446834325258733, 22.588427812877015, 71.82345378418633, 14.153943228797685, 25.364252047664333, 9.289191913797323, 33.180203197800246, 18.392863222259855, 55.665639386287936, 22.918435576156334, 41.096498263789805, 28.80841830016853, 10.056058315665497, 19.017758470437784, 117.90587006820655, 36.5868016714693, 31.73131502535437, 25.110574074453595, 13.385901165992308, 82.35195032467885, 5.997767787567296, 67.76730898111934, 9.626685240532971, 51.9770060094378, 220.09847832202504, 8.490957810421804, 58.02546187628548, 53.50723895025627, 19.247171869238052, 7.892140416689799, 39.18872734920122, 233.50134543200625, 57.901099966603844, 91.58349893318574, 7.024522490499513, 61.08035210308847, 18.07567263519501, 86.65857332978207, 7.951747720004917, 26.80555696931676, 123.65371965997802, 28.60727377515527, 8.193311473182431, 9.447363562588555, 7.459315693889412, 11.185589341811609, 58.87490983378442, 10.954971466762274, 17.498293127953193, 20.60874469539674, 16.480566440062773, 147.99203078070235, 6.309625399678291, 9.348743041338624, 13.165716048498304, 77.00442877708808, 111.86472161686014, 44.024771053391476, 22.36413362966759, 26.657766458141474, 21.781270489107143, 12.989181229326968, 16.17011248451642, 29.757010215070864, 48.634019246137726, 260.0586694587503, 30.236542011460017, 16.642313458885127, 52.76293348685558, 43.83136083156835, 9.137156883692365, 33.845570947078635, 20.783253906198322, 93.08203573914574, 7.498452575240996, 15.168371134871673, 28.514029371462502, 27.57422670056559, 55.32907759293111, 16.901597409963344, 35.988239066972305, 12.461787993620423, 83.98936289755726, 118.84943397990467, 30.43888310261055, 51.47876729660917, 16.974777046230606, 56.10330110686543, 12.493004550469331, 7.361443210318624, 31.620686430835793, 5.50183015578459, 39.58933091955657, 47.66693936808218, 11.101766629601837, 493.66702923657795, 8.28412384484663, 66.00987935594152, 26.94511098130805, 7.141635708454596, 56.739557497612026, 26.752549478293687, 5.277974622438408, 72.74559548104304, 32.61626217767822, 33.871186462001205, 20.043784323313922, 5.329345477549463, 14.206627693651356, 11.027701661502524, 14.522011732843588, 65.75140313389409, 90.24949881580122, 23.433354693742036, 37.4044131220307, 30.560499047913243, 7.5500923958096, 12.904527603537279, 178.42195309086685, 24.151986231877945, 10.897962530096507, 87.20123052787935, 9.119830232329402, 25.60031454890082, 40.00466939936736, 16.12297642227854, 46.04482096057544, 7.371759965492194, 25.383534498863035, 69.06777357227679, 13.3251195127344, 14.138633277399903, 9.518974097883353, 7.355512225880092, 5.676294993404075, 19.01479611200812, 9.36451245288788, 8.252937192799836, 37.51592034273698, 58.24131207919571, 24.638294403344197, 193.08794498880417, 23.70267916935318, 12.591320645866993, 7.819958528713005, 11.06375887076647, 82.95826618977416, 15.39622642047022, 25.131730602294716, 64.22682648925495, 23.445688355030622, 67.96887548413882, 33.11974713046079, 34.01746592671772, 43.636638872000766, 14.487797818180645, 87.89446044779876, 58.87262466709184, 13.636845511136224, 20.8547607001613, 9.021001178618382, 13.48882464960472, 49.47873304181938, 120.32513247653387, 71.80347930659191, 23.098291782430998, 6.061851058833983, 65.06399159945275, 91.00226045006052, 105.16220287485052, 6.262112501459585, 105.54029851447548, 42.55366774509997, 12.721792292245274, 98.39395304204582, 34.94637177850229, 68.44689436930945, 153.8672885278226, 8.633187409621328, 6.97705110568647, 22.71914547513837, 50.27105179754227, 7.965092049102581, 15.135373084845495, 19.925728164278873, 191.86538099614583, 15.122531762193335, 72.02168946422582, 25.315437598702378, 44.53880671429821, 62.55777806558608, 12.250689454972928, 26.426823771291417, 31.349812679487542, 27.291961979662446, 71.13667905930313, 46.91651450207397, 7.241262308024875, 90.5272890528758, 5.71251096973012, 14.153405673536911, 63.698969512016824, 24.230535201611417, 37.52983202765783, 55.81544407188371, 20.61063007510206, 26.87668565825772, 26.282743015514473, 69.34441537585889, 62.25349553476195, 86.98568273962132, 7.963187685362949, 5.538315312022324, 5.031224864529838, 26.148868516193097, 11.347187436142155, 12.574083441399353, 28.45899161105083, 26.982316353935634, 123.87803470531505, 20.22652811013085, 93.03504370758942, 17.54660180777969, 11.461829438306594, 127.31248040563565, 9.778978531724906, 39.12292982946651, 27.723654116581255, 40.144231775669844, 7.328757469981046, 53.95581097997872, 18.924549425134504, 73.01595484641797, 40.86995379585428, 9.237574329152254, 66.16603670876907, 35.51670797812201, 59.887350117763866, 54.960088218467185, 30.513802103947675, 25.380180272816396, 8.160608257371301, 9.876668740289151, 31.936595715484664, 55.21530518561395, 63.221114455237604, 7.09727600346461, 41.5782023649239, 8.351159120153671, 29.257038991481274, 16.112336362597055, 49.20112296874836, 33.655113384883066, 44.47036291549492, 54.777335015892206, 37.40289449577413, 134.84184777997643, 7.769624133504499, 28.673469648937612, 16.613198378874834, 94.1926579521075, 6.286312483297911, 29.21620714222993, 26.34667257787359, 11.704170713234923, 5.833068829513614, 35.90249739942219, 13.531405151961367, 84.43428380052565, 7.095208995749647, 27.838900551080382, 18.50243606229267, 33.03959028111426, 19.941660475608913, 19.676438982015064, 8.349560441435239, 7.451680892484767, 27.25440468844085, 111.79049341942891, 64.12004897533421, 60.07128662689482, 80.40774313042117, 7.508735000522108, 6.399115073126612, 5.338430887482196, 15.82228116506724, 25.466901343688477, 137.98016846014943, 32.63302444590782, 38.41728601802157, 27.497581047049373, 39.65288892664127, 12.779962147868796, 7.142217203216224, 7.301886372054811, 31.06421074247777, 16.887700390837203, 62.13603694920625, 93.41788545192581, 80.25591316311501, 13.560296723842473, 34.68632422106123, 66.5322805926237, 26.240416111928266, 44.08715091609179, 22.975654678430644, 56.415039751567775, 74.87215030588595, 172.3920120703112, 64.15588803325917, 41.6979157547751, 15.672502942420362, 21.37942620758738, 23.966619806180823, 23.072492465201478, 21.092495722333286, 34.076997326664625, 108.78315578756332, 72.12885198985865, 58.28118420158336, 37.414843872296174, 135.2461783058314, 11.313010729494088, 30.316197268092758, 23.437879079817986, 28.59863929285848, 47.09920159242787, 17.53880683297571, 17.048481984078265, 42.31957884613584, 44.469131605402836, 131.92523272277296, 7.500054868682977, 23.848523943799876, 51.51348278554877, 83.53744249243978, 394.76041797438006, 5.202597919010733, 11.960509634229595, 5.2966866648690605, 13.335835749210089, 53.310839753894385, 10.754127240266312, 47.91061975317351, 140.76606811967287, 8.005071571435872, 53.1160752480496, 31.093860356458205, 28.07995887626137, 5.072984829333359, 8.775220245864094, 16.78406698937646, 45.97813024695697, 16.40121730690099, 44.92855232995947, 36.35952572679092, 5.455687960819274, 34.330199360728734, 16.297988286946108, 17.606420052693647, 32.083462084044534, 18.480224361688723, 26.305694117821336, 26.279322158164202, 80.94509602167824, 37.99860735179817, 11.393421387142759, 101.71938159720922, 11.219649166233019, 19.343986774185545, 19.173275120126483, 16.985181581892057, 92.29503845168706, 7.165221337168568, 10.524348267225633, 5.450860954828182, 115.55249955913698, 27.1580564364543, 55.666627975591005, 18.499956279856676, 36.197337924707206, 22.323697496289174, 93.01592956720334, 8.634902128682148, 9.920764053204053, 38.86520488609167, 9.569113931981782, 12.308059572781724, 12.989322478435513, 5.6284554499396116, 59.36126537019368, 22.998809389167025, 34.62390319996202, 119.10055493751206, 43.11596349244363, 101.81979811060181, 14.075328791624482, 12.948425245467991, 54.48821928123399, 67.21780572544944, 6.681159363158615, 68.96668078122869, 72.12478919467388, 144.11389969418917, 16.633041476663028, 131.44034158010706, 6.538931182002048, 16.27591749036897, 30.98274936263418, 54.07689496130128, 8.715423816257609, 34.267946866976246, 88.62845123240285, 316.2980764175743, 14.242045415887496, 5.034957144143713, 25.534390727784167, 131.07903705108833, 41.127811530827586, 13.664265410187827, 66.17105084530805, 7.861219555387894, 34.83449020194678, 12.959622300882247, 67.4778862567946, 148.79533349541532, 41.54409383729751, 121.12150484283772, 11.687951396886753, 6.3918889690047225, 42.86365865195968, 63.81935594394989, 17.871650336123775, 208.36845671896617, 11.221330444324211, 21.190005043225668, 8.584108299924505, 59.70628466948145, 9.855595057487369, 292.034437910202, 7.0644824283961265, 19.056158250730054, 35.40707298640905, 15.666727866583159, 111.86658320018988, 26.880001777485358, 20.419327554469202, 17.24096550692582, 86.66859614979172, 15.548124395497442, 29.087016157638324, 7.389044046435746, 40.28325590462464, ...])
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);
([2817907.390650985, 2835073.5366544095, 2840085.640066872, 2851124.7431889777, 2862162.666647613, 2893923.8497896274, 2897642.580732052, 2906643.8591121803, 2977940.117342498, 2991385.5143725704, 3021332.547687251, 3056037.609450235, 3063213.7467495995, 3084872.6977776117, 3114408.7489420045, 3281907.5620137365, 3311830.086893488, 3314147.239046731, 3318950.2116210894, 3320063.800432914, 3513583.423523374, 3534018.468713771, 3555085.783607817, 3575107.7479393343, 3612365.79290608, 3612391.9559568535, 3639840.019382001, 3642607.8125, 3697857.1048948294, 3718168.70080639, 3719763.122127123, 3738796.875, 3739427.9950016164, 3741339.0625, 3962844.482818021, 4123830.1540350136, 4311768.75, 4367614.965210587, 4953440.315929429, 4962781.041720594, 4981176.3622099655, 5008543.301341669, 5066371.34707859, 5287063.417113825, 5288132.295686348, 5341832.261496597, 5350405.875376101, 5350410.2897453075, 5358453.655597427, 5435469.220234946, 5436158.451110424, 5436197.526239289, 5438993.589593429, 5474417.713558211, 5488652.531197306, 5516232.702548671, 5525454.122456867, 5535630.368821667, 5592213.06265625, 5617927.523687429, 5676598.887932968, 5684942.934377363, 5690730.567109746, 5696424.220949613, 5700101.254074349, 5704257.138035587, 5722860.5096263345, 5729001.273936904, 5770499.98824466, 5802865.619219925, 5814744.6986606615, 5827953.096988788, 5830646.333741879, 5837731.280684345, 5839132.8125, 5840985.178351216, 5851976.380277983, 5853766.240317618, 5855824.6554458, 5856442.1875, 5857256.595509444, 5860222.790931453, 5866765.495500158, 5874978.8406454725, 5879617.74609802, 5902311.778907333, 5906145.3125, 5914278.125, 5915150.086026498, 5916839.012849427, 5921681.663412073, 5922344.591445372, 5922543.75, 5922669.021422021, 5922723.606028845, 5923517.1875, 5924092.297485758, 5924371.875, 5924546.219075955, 5924801.181404613, 5927554.4500269005, 5927574.252631607, 5927716.980428143, 5929803.125, 5932412.14127241, 5933013.0100762285, 5951640.435667686, 5951892.6265445575, 5952670.768282229, 5953134.261586231, 5959551.14550402, 5963230.877899221, 5964121.440662884, 5965398.4375, 5967723.903897892, 5967838.878406418, 5969457.8125, 5972140.278793131, 5989438.900045853, 6003856.25, 6013900.370446155, 6019755.249020949, 6027234.890158018, 6028268.910149919, 6029021.999570789, 6030779.178884592, 6031494.582775994, 6036420.628780983, 6039971.382594546, 6043137.594147503, 6053185.359133848, 6075924.822868197, 6077559.153804232, 6077560.9375, 6092487.5, 6092735.173843704, 6093454.680778921, 6093550.0, 6094532.008794413, 6095219.833642109, 6095318.75, 6095486.287768878, 6095848.645792513, 6098831.349161428, 6099266.762737102, 6101266.185321339, 6102565.625, 6107423.4375, 6107796.875, 6108450.0, 6109842.793703447, 6111637.17068107, 6114889.0625, 6114988.969836175, 6120083.969559957, 6120572.655981994, 6120842.843590301, 6120859.933973785, 6121339.0625, 6121372.677101042, 6121537.5, 6121737.313521546, 6121755.217986888, 6121773.040637296, 6121899.545685427, 6122383.949873356, 6122957.267312765, 6124289.739061105, 6125101.8924984215, 6132029.640889878, 6137407.8125, 6141164.830702098, 6149210.9375, 6151692.517011738, 6156429.6875, 6156529.232825556, 6156721.5670479955, 6157223.074828115, 6157332.613827522, 6160183.912950882, 6163818.75, 6169596.523982986, 6172078.049278162, 6173708.404367774, 6174142.1875, 6176570.3125, 6183582.341039753, 6198297.654022103, 6205003.155138835, 6205050.2825036775, 6207300.0, 6208076.473086305, 6209148.194577688, 6209532.084100272, 6213481.888295654, 6214989.723192841, 6226514.0625, 6226927.607124459, 6228173.086786746, 6228244.212085191, 6228835.3675648, 6229464.43720575, 6231886.478423632, 6232135.138177596, 6236124.748715852, 6240336.955862606, 6242602.602020782, 6244354.6875, 6245691.840431302, 6249768.067013198, 6250352.811115898, 6251750.0, 6252186.496798395, 6254109.234057794, 6254150.0, 6257975.751691686, 6258443.697236066, 6260309.519799775, 6260432.690617434, 6260902.305885484, 6261406.229526351, 6261486.774631887, 6262127.385646494, 6262207.8125, 6263504.769277962, 6263583.537503197, 6268876.5625, 6270121.875, 6271749.807212112, 6274720.3125, 6275422.783555388, 6276237.5, 6277143.75, 6278906.25, 6301688.073423294, 6304754.644065176, 6312865.901774705, 6314056.962003114, 6314570.716414865, 6314614.775355016, 6316515.963336985, 6321725.389991811, 6324848.4375, 6330233.183596043, 6330810.9375, 6330827.9044649685, 6332266.50249881, 6332754.568715486, 6332992.115553741, 6337503.930859705, 6342220.954163794, 6345251.339577295, 6349236.943261928, 6355285.009843783, 6360441.442695045, 6361987.717314748, 6363177.558108012, 6366395.3125, 6372652.423531704, 6375096.595823435, 6375334.015823371, 6383243.75, 6392126.341556588, 6397196.792233187, 6399325.903215258, 6402519.600901876, 6403294.623118024, 6403884.607588536, 6404312.5, 6404499.691247564, 6405326.00028332, 6405556.58645112, 6405856.871494618, 6406712.5, 6406965.811550217, 6407515.625, 6407868.118476569, 6410987.0442822995, 6410995.3125, 6411446.144783591, 6411463.768364579, 6412076.317333397, 6413176.103850143, 6413454.78602609, 6414115.625, 6415867.029359838, 6416710.518384858, 6418849.813692469, 6418876.2424723115, 6418906.764203946, 6419178.015235428, 6419289.0625, 6419298.995544469, 6420112.692238007, 6420426.5625, 6420441.498254535, 6420552.192321222, 6420903.125, 6421598.4375, 6421815.279900175, 6425571.526052912, 6426600.235625716, 6426710.933210024, 6426825.0, 6429365.625, 6430677.87752448, 6443945.967078537, 6444427.406324151, 6449820.70401705, 6452310.658980404, 6456619.637676508, 6456840.580546629, 6459942.697004164, 6459952.325561218, 6459988.603098216, 6459997.457427521, 6465925.283044634, 6466951.972765776, 6472471.805275716, 6484708.154071211, 6485445.3125, 6492556.25, 6495765.451828106, 6498420.61747158, 6503216.840977815, 6503357.8125, 6504634.519195878, 6505437.5, 6506825.94111286, 6506841.116402591, 6506860.017266046, 6508131.151761098, 6509331.783039423, 6509555.25059944, 6509754.349047317, 6510500.0, 6510500.732346153, 6510753.125, 6510754.634357453, 6511412.5, 6511793.609380309, 6512124.221950698, 6512448.9374526525, 6512541.030628803, 6513662.901337842, 6513898.4375, 6513898.4375, 6514370.967104142, 6514827.254258946, 6515452.961781772, 6515459.867306567, 6515463.361136139, 6515554.901263099, 6515566.628001363, 6515567.592709273, 6515590.806708809, 6515643.75, 6515649.372802144, 6515701.5625, 6515948.4375, 6516054.594611296, 6516176.484897688, 6516297.832553407, 6516348.4375, 6516386.609649543, 6516549.68709644, 6516683.813691396, 6516773.4375, 6516900.536342227, 6516903.353427048, 6517102.767654968, 6517187.396936787, 6517255.550513258, 6517520.404512962, 6517763.398075371, 6517791.032890868, 6518074.978842595, 6518625.830085907, 6518820.234012737, 6519211.09356727, 6519415.625, 6519455.182790035, 6519718.887417584, 6519724.851255233, 6519849.1034987625, 6520165.512343008, 6520617.1875, 6521801.5625, 6521937.5, 6522095.659286529, 6526832.8125, 6527874.457236753, 6527878.125, 6528845.942866988, 6532179.6875, 6532828.37843548, 6543506.075693207, 6543692.591480176, 6544425.0, 6551641.889522259, 6551656.064209151, 6553852.017036086, 6555505.774705022, 6556596.650429745, 6557184.998380933, 6557334.375, 6557935.9375, 6558158.636506379, 6558334.867008657, 6558832.195856966, 6559282.030663385, 6560248.093916919, 6561034.375, 6561066.676418471, 6561257.8125, 6561386.606251158, 6562229.08261531, 6562405.05780197, 6563507.8125, 6563789.040976063, 6563803.125, 6564842.017247963, 6564852.288158933, 6564979.6875, 6565663.397895514, 6566170.5571888685, 6568879.6875, 6570586.73595409, 6570630.83759293, 6570979.6875, 6572095.3125, 6572458.35483859, 6572623.4375, 6572630.886256609, 6573649.841555843, 6575752.259236234, 6576746.509145832, 6576756.516979938, 6576833.386040371, 6577164.577831014, 6577368.122616827, 6578421.875, 6578903.36975209, 6579026.253451158, 6583263.047107497, 6583356.510346187, 6584932.8125, 6585886.316797885, 6588015.625, 6588037.999355499, 6588069.33990185, 6598327.727163029, 6600834.703102746, 6600893.75, 6603308.799619603, 6603599.784765227, 6605340.625, 6605416.607273458, 6606084.938873613, 6607078.2947181845, 6607827.816462172, 6608049.988237178, 6609351.55598252, 6609714.85507274, 6609721.875, 6610387.953152886, 6616282.310226075, 6620448.027667913, 6620539.0625, 6624252.732689703, 6624783.897249345, 6627090.841060947, 6632282.073425683, 6632592.655667276, 6632630.841487989, 6637135.5611734865, 6638439.450670818, 6639052.792589795, 6642425.867053968, 6647329.84789076, 6649699.947166983, 6651856.739996426, 6656237.5, 6656524.263333069, 6662188.464711542, 6662873.43816493, 6662889.953101004, 6663451.431016243, 6665111.915760324, 6665589.0625, 6665771.947110803, 6666289.068583251, 6667357.464891848, 6667664.0625, 6668490.783290058, 6668772.920768371, 6669024.552332567, 6669686.429749889, 6670069.222506367, 6670071.391165473, 6673568.481105929, 6673784.040193564, 6675250.336909047, 6675306.25, 6676353.6547631305, 6677067.1875, 6677428.125, 6679006.320744194, 6679402.643057935, 6679688.120619189, 6679797.810272465, 6682578.645535908, 6682894.364968894, 6684098.236413893, 6684371.411621982, 6687757.02607152, 6690358.016990416, 6694049.670996079, 6694691.369775458, 6697188.825219628, 6697558.034303093, 6698128.626292871, 6698238.987410721, 6699076.17517109, 6699364.0625, 6699376.5625, 6699620.045935187, 6701214.0625, 6701405.6628246, 6703513.837538238, 6704709.485025251, 6704954.6875, 6704954.6875, 6704997.3745010765, 6705491.58784964, 6708078.125, 6709033.399067751, 6709035.366962526, 6709090.310164396, 6709573.734872161, 6709621.875, 6709729.6875, 6710254.647131753, 6711551.318993442, 6711632.468541091, 6711756.890461353, 6712359.375, 6712498.301366246, 6712633.978212089, 6712956.25, 6713231.026797117, 6713296.691623411, 6713774.949653256, 6713957.30868417, 6714411.620670722, 6714696.875, 6714739.775126531, 6714820.3125, 6715184.375, 6715211.685936023, 6715833.585021044, 6716051.5625, 6716438.659124773, 6717634.104590465, 6717740.424487955, 6718235.459210241, 6718457.8125, 6719453.7716258755, 6720602.88715648, 6721805.017224523, 6722049.449643175, 6723046.477214961, 6723186.304973607, 6723189.0625, 6723398.4375, 6724288.168863554, 6724617.921373761, 6724643.75, 6725629.44871666, 6725984.375, 6726059.14604196, 6726076.180469325, 6726725.0, 6727558.44720757, 6727854.6875, 6729686.808192923, 6731071.106338113, 6733923.325294041, 6733973.097166539, 6734006.069368134, 6734109.509029403, 6734187.083738436, 6734492.224218499, 6734572.984086013, 6735937.386605131, 6736695.852994666, 6738050.96902954, 6744636.290116578, 6751265.587317653, 6751436.266088644, 6754235.957936106, 6754610.377895978, 6758484.375, 6758737.5, 6760359.375, 6762766.770598146, 6763102.413277689, 6763438.058169418, 6764024.372212677, 6764031.53887256, 6765447.280854874, 6765855.092704144, 6766099.856120272, 6766550.0, 6767197.25955296, 6767476.5625, 6767776.5625, 6767998.198478966, 6768131.25, 6768333.800770057, 6768468.75, 6768827.825684001, 6770725.578702059, 6773968.4742713235, 6774710.88757646, 6774873.1691663405, 6775250.434032253, 6775675.0, 6778120.80087703, 6780017.1875, 6780139.0625, 6780308.998660646, 6781215.625, 6781466.072629803, 6781584.375, 6781827.289768349, 6782289.903038372, 6783428.125, 6784950.9013369, 6785595.3125, 6786145.3125, 6786373.420840651, 6786704.6875, 6787181.245357549, 6787943.75, 6788085.852242616, 6788428.201231054, 6788571.875, 6788654.5910311015, 6788743.319584205, 6788854.536081552, 6789031.25, 6789082.88436154, 6789281.409829416, 6789310.56583832, 6789577.917840029, 6789724.935063601, 6789853.71870115, 6789924.559130875, 6790425.0, 6790644.987239973, 6790664.655531153, 6791419.315834568, 6791471.725631179, 6792135.276020094, 6792351.5625, 6795234.105775924, 6799831.097870343, 6800171.347425977, 6800605.988715424, 6802717.019701726, 6803401.5625, 6803638.008944503, 6804440.625, 6805672.748691768, 6805950.567953149, 6806587.5, 6807716.687161665, 6810034.0805596225, 6811737.713802721, 6811969.571376294, 6812247.947960591, 6812873.091211569, 6813206.288898953, 6814029.623339631, 6814038.461154579, 6814314.0625, 6816365.391445639, 6816743.924376319, 6817010.633728024, 6817761.707853996, 6819614.624423613, 6819981.208699206, 6821110.492774712, 6822590.739395393, 6823170.709686872, 6824068.75, 6824159.038484434, 6825171.39394428, 6827012.5, 6828028.125, 6828787.5, 6828909.250643175, 6829233.04596192, 6830278.125, 6830391.7971893465, 6831007.0909132175, 6831099.608578267, 6831339.25178942, 6831627.604909617, 6831665.625, 6832429.6875, 6832519.959645817, 6832520.056252833, 6832620.3125, 6832700.0, 6832784.375, 6832848.397139184, 6833136.742623214, 6833417.1875, 6833969.575971332, 6834082.8125, 6834187.081610783, 6834232.17892833, 6835001.922579543, 6835486.540071976, 6835693.170637234, 6836011.3799655335, 6836095.2365245875, 6836280.588206943, 6836570.362449322, 6837682.274829713, 6838619.984466144, 6838756.29669626, 6838798.4375, 6838838.875858288, 6839100.157092606, 6839448.4375, 6839741.54375545, 6839955.522572724, 6839995.31628912, 6840447.234935331, 6840556.25, 6840614.2723753415, 6840753.561981376, 6840891.4758555945, 6840970.402516847, 6841165.401632538, 6841475.0, 6841543.864984885, 6842049.840997959, 6842068.344958709, 6842302.980750617, 6842572.61871746, 6842842.06285198, 6842914.0625, 6843423.4375, 6843535.9375, 6843566.521437165, 6843675.107389909, 6843710.316066286, 6843763.499096525, 6843803.261020997, 6843805.450374383, 6843828.121650091, 6843841.742547459, 6843841.979142084, 6844153.582977252, 6844389.92630254, 6844406.798693054, 6844427.352926945, 6844464.607179582, 6844469.2357969405, 6844597.758286306, 6844958.88768118, 6844962.5, 6845075.733991695, 6845252.728172425, 6845285.023279132, 6845409.375, 6845465.625, 6845501.449408658, 6845507.8125, 6845603.898935327, 6845751.114997021, 6845803.826991079, 6845866.941969446, 6845869.581962306, 6846023.191444126, 6846036.518894048, 6846098.330916028, 6846157.030097007, 6846215.564985936, 6846817.0947264405, 6847287.5, 6847637.620160596, 6847710.70568173, 6847783.089138717, 6848017.1875, 6848492.1875, 6848790.625, 6848935.462005879, 6849134.375, 6849237.417412576, 6849348.875239231, 6849461.206248513, 6849670.691366395, 6850151.192684815, 6850253.274804768, 6850263.517371493, 6850539.648618115, 6850720.652448108, 6850751.817193103, 6850782.8125, 6850794.885807755, 6850817.752862997, 6850931.14921889, 6851132.776876364, 6851274.136907868, 6851546.875, 6852324.329013633, 6852849.296321555, 6853815.742232784, 6853980.810582245, 6854798.620954903, 6858098.195933316, 6859806.25, 6869732.308735638, 6869755.085669541, 6869776.293430448, 6871019.727343747, 6872192.085272703, 6872887.713360854, 6874133.1700545205, 6874491.013197281, 6875981.195821078, 6876553.561545833, 6877251.508374393, 6878820.510649662, 6878821.162713935, 6880389.140910988, 6881052.2071400415, 6882413.55524417, 6883809.806432125, 6883860.194660545, 6884395.187070753, 6884418.12973409, 6884766.770859358, 6884768.75, 6884850.804413734, 6884876.435253843, 6885078.125, 6885218.386798013, 6886145.998191958, 6886173.4375, 6886448.567871453, 6886585.480845355, 6886634.375, 6886770.491917757, 6887972.926028712, 6889338.779214461, 6889350.768687819, 6889500.841170535, 6889714.0625, 6889722.826021817, 6890331.25, 6890738.545369922, 6891027.866476883, 6891803.125, 6891844.645597883, 6891964.0625, 6892093.4251059545, 6892153.125, 6892169.6234590765, 6892555.2391199, 6892587.961166715, 6892696.527821829, 6892696.91904868, 6892731.586989046, 6893080.955410186, 6893090.332616659, 6893226.5625, 6893342.776469856, 6893383.990049481, 6893848.405126371, 6893912.974602156, 6894267.367716397, 6894463.566070612, 6894581.25, 6894901.309582845, 6894942.1875, 6895269.822885944, 6895488.489321752, 6895621.875, 6895985.9375, 6896354.664622951, 6896404.911087518, 6896480.509810282, 6896887.911859274, 6896936.028178587, 6896948.774136286, 6897153.125, 6897219.47340948, 6897263.9201088175, 6897312.614874567, 6897400.164473353, 6897609.933761994, 6898145.3125, 6898331.946136738, 6898717.870142628, 6899071.750142371, 6899229.6875, 6899376.109591413, 6899432.976095184, 6899447.638413691, 6899453.183036163, 6899458.047626443, 6899771.106087887, 6899898.8870503, 6900714.043665625, 6900822.0389309, 6900863.638851991, 6900898.180929351, 6901028.725891068, 6901315.551920647, 6901918.75, 6901947.574043178, 6902117.1875, 6902126.141918602, 6902580.465181358, 6902984.980311407, 6903814.685949002, 6904178.125, 6904322.143358337, 6904352.205838847, 6904416.559768344, 6904583.0700913565, 6904984.994579786, 6907774.638762162, 6915098.4375, 6915623.3872594, 6926843.75, 6927926.499693307, 6937993.502535544, 6939091.543574267, 6939328.125, 6939711.488703074, 6940327.698040312, 6942726.149825024, 6943248.623439683, 6943569.364829028, 6944580.07024494, 6945225.0, 6945787.822915497, 6945825.310969359, 6950564.0625, 6951337.5, 6951389.794036828, 6951540.625, 6952371.081320265, 6953572.035563431, 6953754.491029134, 6953829.292950544, 6955781.077886176, 6955860.9375, 6957493.75, 6958032.431515668, 6959998.4375, 6966883.473576984, 6972865.44866529, 6973368.110523235, 6975048.4375, 6975697.526534527, 6976746.875, 6978700.734445585, 6979550.331112275, 6980268.114554655, 6980276.5625, 6980641.684448883, 6980934.43239337, 6984145.643008904, 6987196.934082994, 6987429.418471429, 6988331.773225714, 6989791.69620266, 7001967.74855816, 7004165.625, 7004181.028753856, 7004590.67898219, 7004600.0, 7005065.803091028, 7010766.365533556, 7012645.865049336, 7015152.51017278, 7015206.745789704, 7015904.6875, 7015979.83804155, 7017479.660536544, 7018957.178732808, 7021415.203767699, ...], [13.54530353839044, 17.093175811710193, 9.091962382795057, 5.690606504781372, 15.617159390729766, 9.70617339742207, 7.75193673991383, 5.248209415310408, 14.323991876691345, 14.449401561709841, 21.3691518282787, 7.64330953740266, 6.438708086336484, 5.498225140790828, 12.99357137067037, 24.404509098540657, 9.693600816685656, 8.488954213753946, 8.401748893895203, 5.283060251287085, 17.925810518928003, 13.967814299603198, 25.81556000186358, 27.30941470991527, 7.665116737983095, 41.99022556343225, 13.045800728541378, 30.330185932310275, 12.791286986383218, 14.757263954736734, 6.589247364182014, 56.49711008860077, 5.200122555290115, 41.14948878569742, 24.19687360655123, 17.07794956673153, 85.8407551734835, 6.022073074438838, 5.5182660640760135, 24.99758901722837, 25.113821627152795, 10.492062495546065, 6.662497373580381, 26.021192693065473, 6.204038606544312, 20.998967695052063, 22.84213593534639, 8.837813057443826, 12.999304795636935, 13.332804017395771, 7.30009043114136, 6.353140045069687, 10.885907879316843, 12.063239651393854, 20.605763883039963, 9.240131909726605, 20.867904224131944, 9.982604767369263, 5.308789577451589, 5.888696125366694, 8.540058704037548, 6.610911257431721, 6.952810316937126, 19.098024622664994, 5.7915065035901785, 19.91300893349732, 12.856977970978093, 13.944991777665729, 9.321483111371824, 8.283523088887195, 13.024717547174852, 95.31217918199681, 21.09117035545363, 5.292036017418879, 85.33956582003513, 49.16520986447695, 10.854346657499688, 12.248166148232484, 6.434402542528507, 40.30448915843898, 23.71694609414816, 6.961264139888034, 26.203832792402864, 32.45746976779613, 9.853056527433962, 24.92068041198522, 52.14985916763681, 32.33074995326479, 15.279863477875054, 83.9522826641899, 57.335079041318615, 40.811731672580805, 59.70208385512165, 124.91621912301756, 5.347729906066462, 39.98234015327421, 7.64350801955637, 51.66078327999456, 107.93666175573252, 37.22200806231302, 14.107550658873162, 57.206461221741534, 278.66071040483064, 42.85989244857151, 8.105568793791269, 126.30268093380761, 142.28084397295436, 25.172004531741486, 17.019062142321257, 28.980394289785202, 22.363096971670224, 50.37064300558423, 22.17412313110528, 88.49398328819004, 23.106748076749604, 44.801929395015165, 63.73506913452433, 159.0449499525029, 9.19771546415536, 229.23860501034125, 5.634872195731254, 28.542476902542575, 5.216748307852404, 21.036428800837104, 63.75101167040586, 6.666042932137053, 8.782219627458693, 7.207150613068138, 21.569195902755478, 16.186943597394254, 10.329884913464655, 16.917420595395576, 272.7811111059566, 29.52004731308609, 73.29877106473182, 5.65982151260564, 28.392693421117794, 46.247057929634124, 18.64027908465322, 13.384324673093031, 64.36153134554341, 124.12576013899934, 15.294883417691896, 8.339721019304342, 22.277964786469582, 5.856636102475265, 97.31464705028483, 79.39563429466055, 67.49798268755282, 32.99738672265573, 66.90472517094696, 13.819141881203855, 53.93744912387117, 8.238175570976674, 13.592705515495675, 106.80601377132699, 41.33240974416345, 5.6457349341960885, 77.11536313900416, 28.377100440545505, 56.06524000504243, 25.317872966827718, 12.072210874852555, 8.087297134141302, 21.96127288005916, 22.27399751988302, 13.203969417698504, 19.73111114697609, 16.368561395314334, 39.93195331602659, 42.50506044941521, 6.171802727305999, 56.59741262672099, 8.468869938649684, 60.269548718941486, 10.484346512865354, 22.562447801031006, 22.98189822473597, 5.60314684580731, 127.45017235255594, 104.82017201580099, 20.119676191068272, 12.635635743020117, 9.887585367635284, 78.2771720839613, 71.33840330101515, 13.404895279138774, 10.090171095073623, 15.057642503174561, 7.7087133808106225, 48.09442556438189, 227.32245834478124, 24.50827866664563, 12.741208067765175, 12.2972132757689, 12.345609370408605, 37.98734742394407, 80.90630416294829, 5.909434339840971, 95.32182795048485, 60.76692256334749, 27.292148600840406, 80.54265668657308, 12.574780813099023, 22.332036000081636, 107.59340013483255, 16.80758868769625, 71.02655144420733, 5.78873883783524, 8.813748389954332, 32.88257735757933, 82.90177439084144, 65.50330520175847, 22.51182795958004, 30.024611177974887, 12.548446115851178, 39.05865211951619, 15.523717439890596, 26.327975794732154, 18.807973606941356, 16.104112477589048, 57.1234709119469, 31.4620114949186, 36.16896000928724, 11.257983033666001, 8.711181921885535, 30.10585066201623, 32.4151219348742, 109.82826677661178, 68.72426698140302, 5.0857991964161, 149.00767638043664, 67.73909212539142, 36.016934449936166, 17.694496038609053, 17.016326591876574, 11.589756661966604, 18.58861600569363, 65.25237542626483, 6.0039862243205695, 55.99554756103054, 73.12411818703585, 70.092972086363, 130.8810277607472, 49.00538611097036, 55.05027720814287, 19.826847414653933, 18.98515468473633, 11.017081995324663, 39.373048189394, 29.944469727623435, 7.064059622662938, 166.62126640686188, 18.07654408522916, 19.603582301711263, 101.30093394344908, 20.85079829660648, 55.724038741927224, 12.806180487871933, 126.38134763398669, 6.222861038872361, 28.540126766425566, 24.81598892113657, 97.87074711482053, 7.966211715494245, 6.181293114816391, 19.791304661920716, 37.352462989396955, 38.96447443228681, 29.948661006806184, 80.76922261632636, 25.46336088875377, 24.90314425148365, 50.29900005483275, 9.494285604146318, 58.740200754860396, 8.848986786269666, 21.946513977664, 115.47859970614536, 82.69737935346583, 9.094491203445381, 10.764963967939725, 21.915751545759566, 8.339375970626744, 61.7094443135418, 10.889204313651378, 28.646869269731507, 25.320423268381674, 13.8475413190029, 14.73510744249302, 98.26775230052918, 66.42092822549372, 125.47042149106068, 25.6611310824701, 34.63359804186549, 8.809500409262496, 32.88897439934822, 237.87799400854738, 88.95978086183213, 10.627984889130092, 109.44111716959078, 15.922696034977783, 28.44046731531871, 33.353620181637126, 80.12268349807647, 37.920883008276505, 116.56117142958269, 12.764551748619942, 7.2283186817343665, 8.144585763509928, 10.214715254391503, 9.294096078429087, 12.5443423806895, 73.98360025884385, 92.1560620996899, 27.574226246887942, 71.12034342271578, 5.637151514522588, 33.926525343474154, 16.425610475349394, 171.86795049037, 31.32730897483208, 105.02171712971185, 11.640382203137742, 80.94062434010101, 37.248990622446364, 9.456379530735958, 85.53490525506531, 39.2160744639757, 5.738762571227802, 52.0758776231558, 26.72244847012545, 8.590117659456892, 109.6354141852236, 106.13358286530222, 30.53864860687716, 18.730044791271208, 36.32697679949802, 98.90791936137249, 55.85037400773516, 31.79605421638566, 77.67350449300966, 13.604971169516656, 11.827016805735697, 41.8981618039214, 53.30215806820282, 61.45911404739869, 18.20414707634288, 12.413719775383909, 20.262361849094475, 66.56971512742295, 10.183798558763742, 5.543545867469027, 32.154258852215676, 15.237751398601521, 6.290432215728766, 59.04805609112537, 5.03113056294849, 36.00758769003183, 95.44104184117975, 14.598899102670428, 198.35633569386272, 35.16094997051408, 77.84066585390585, 7.310107859312322, 10.671474712461189, 85.75020306546287, 113.03182261601314, 5.078781045566054, 307.08814378993105, 37.522481062819956, 26.640814330042783, 6.382759742442726, 15.304214348093684, 19.996002944182262, 16.763263581594686, 14.861475880443514, 15.879063315832676, 79.8692595970785, 28.990083310764902, 78.496541904167, 8.567094658666976, 8.360607922946173, 148.4043411291239, 7.8632931494688965, 32.08466254261491, 48.85885469226835, 46.60710866113507, 80.69868969547571, 16.45149705409938, 134.03542737724536, 33.74804980168007, 99.40963777944008, 18.047960656327632, 56.98677990227203, 5.628220363889799, 168.44027388208048, 25.073047435280213, 107.82775588473137, 13.915624517669364, 10.849212422968645, 96.73407548013458, 47.3734397471098, 58.60618349757503, 23.827131395863056, 35.0522534343843, 90.33789791165712, 23.128331305377117, 8.565105143980551, 13.017550943185894, 33.95380586441355, 8.112874455147049, 36.59568155635964, 42.405111712455216, 46.67936552775009, 18.296967315941558, 5.375842601352731, 38.99401937986036, 53.503210794988064, 94.64071587950087, 34.1304562036135, 25.562780953807454, 19.19164798492311, 224.7855128523132, 5.5016717652019205, 15.964075597018264, 30.062104977191233, 44.11135280902895, 22.413776150715336, 34.874526196269336, 50.28187198067684, 17.50912755192689, 57.81931976769655, 72.71197076944733, 10.888761967372867, 18.484289858330005, 54.47133863016646, 6.529773235963434, 8.615099086884022, 118.84945370835939, 19.843870556444863, 83.05361047557291, 15.964365288064574, 44.25699170721183, 29.75904722362045, 81.59084735404616, 38.9917083847282, 16.615402769279417, 67.54950170016558, 112.41241791622605, 12.194614806296109, 13.614834983421261, 6.8308265639563714, 39.58811869256873, 13.124231576626462, 31.429225754577352, 31.51842478679611, 20.728465301143906, 49.53292225230345, 5.826645598553979, 5.092431657793919, 14.896863799163532, 120.9690950998964, 19.165705731336118, 44.32234851890507, 55.393831941316364, 13.319822602009094, 43.84820622755993, 35.74128146137277, 168.77378644992365, 5.898852642565947, 61.2649437128227, 19.399263167788753, 8.550706003339387, 7.018053066874826, 10.58637137793103, 9.682707530930701, 48.72305420313178, 8.805299801651335, 11.388017203173744, 9.2871258733194, 8.56388604440487, 73.69107536637196, 8.777573794705907, 149.1723084152854, 33.202540160709134, 19.934132198887706, 14.462968769754962, 8.000033035898582, 32.35313752760194, 13.31774519651967, 11.137228646665967, 117.17174150364714, 95.68494625182424, 6.795524830483419, 37.69286245351633, 108.9999609027602, 5.5574576381119725, 17.110888341319807, 10.447219610587943, 24.15637860050467, 18.86237381992271, 70.72471372122989, 75.67237188135461, 25.907160277168963, 36.94245424544474, 47.0080235198448, 15.893891072563392, 6.670959326976921, 8.644509127309965, 89.87517210172133, 17.382150973014227, 6.154473753413302, 95.20170486612963, 21.866372247253047, 18.07909325054643, 15.112291279554366, 56.403032140435116, 32.54484322550147, 6.7170422461258505, 156.0187597957622, 17.27209807259272, 6.748607599215523, 9.024047122087774, 113.31252836068538, 134.44455243339686, 9.115739209035702, 119.51609210543184, 49.766336917905754, 32.583682991892125, 11.304151447239224, 63.930921169734674, 97.15253094161513, 32.66485701605249, 36.816921964518244, 32.74795516742598, 17.774459696202655, 20.817173127250367, 93.99036158121706, 53.39857553762198, 68.19027862045861, 57.39041067442252, 46.76225142261207, 14.088067456758353, 13.774736130125174, 6.157333941111985, 66.59718060281567, 14.446834325258733, 22.588427812877015, 71.82345378418633, 14.153943228797685, 25.364252047664333, 9.289191913797323, 33.180203197800246, 18.392863222259855, 55.665639386287936, 22.918435576156334, 41.096498263789805, 28.80841830016853, 10.056058315665497, 19.017758470437784, 117.90587006820655, 36.5868016714693, 31.73131502535437, 25.110574074453595, 13.385901165992308, 82.35195032467885, 5.997767787567296, 67.76730898111934, 9.626685240532971, 51.9770060094378, 220.09847832202504, 8.490957810421804, 58.02546187628548, 53.50723895025627, 19.247171869238052, 7.892140416689799, 39.18872734920122, 233.50134543200625, 57.901099966603844, 91.58349893318574, 7.024522490499513, 61.08035210308847, 18.07567263519501, 86.65857332978207, 7.951747720004917, 26.80555696931676, 123.65371965997802, 28.60727377515527, 8.193311473182431, 9.447363562588555, 7.459315693889412, 11.185589341811609, 58.87490983378442, 10.954971466762274, 17.498293127953193, 20.60874469539674, 16.480566440062773, 147.99203078070235, 6.309625399678291, 9.348743041338624, 13.165716048498304, 77.00442877708808, 111.86472161686014, 44.024771053391476, 22.36413362966759, 26.657766458141474, 21.781270489107143, 12.989181229326968, 16.17011248451642, 29.757010215070864, 48.634019246137726, 260.0586694587503, 30.236542011460017, 16.642313458885127, 52.76293348685558, 43.83136083156835, 9.137156883692365, 33.845570947078635, 20.783253906198322, 93.08203573914574, 7.498452575240996, 15.168371134871673, 28.514029371462502, 27.57422670056559, 55.32907759293111, 16.901597409963344, 35.988239066972305, 12.461787993620423, 83.98936289755726, 118.84943397990467, 30.43888310261055, 51.47876729660917, 16.974777046230606, 56.10330110686543, 12.493004550469331, 7.361443210318624, 31.620686430835793, 5.50183015578459, 39.58933091955657, 47.66693936808218, 11.101766629601837, 493.66702923657795, 8.28412384484663, 66.00987935594152, 26.94511098130805, 7.141635708454596, 56.739557497612026, 26.752549478293687, 5.277974622438408, 72.74559548104304, 32.61626217767822, 33.871186462001205, 20.043784323313922, 5.329345477549463, 14.206627693651356, 11.027701661502524, 14.522011732843588, 65.75140313389409, 90.24949881580122, 23.433354693742036, 37.4044131220307, 30.560499047913243, 7.5500923958096, 12.904527603537279, 178.42195309086685, 24.151986231877945, 10.897962530096507, 87.20123052787935, 9.119830232329402, 25.60031454890082, 40.00466939936736, 16.12297642227854, 46.04482096057544, 7.371759965492194, 25.383534498863035, 69.06777357227679, 13.3251195127344, 14.138633277399903, 9.518974097883353, 7.355512225880092, 5.676294993404075, 19.01479611200812, 9.36451245288788, 8.252937192799836, 37.51592034273698, 58.24131207919571, 24.638294403344197, 193.08794498880417, 23.70267916935318, 12.591320645866993, 7.819958528713005, 11.06375887076647, 82.95826618977416, 15.39622642047022, 25.131730602294716, 64.22682648925495, 23.445688355030622, 67.96887548413882, 33.11974713046079, 34.01746592671772, 43.636638872000766, 14.487797818180645, 87.89446044779876, 58.87262466709184, 13.636845511136224, 20.8547607001613, 9.021001178618382, 13.48882464960472, 49.47873304181938, 120.32513247653387, 71.80347930659191, 23.098291782430998, 6.061851058833983, 65.06399159945275, 91.00226045006052, 105.16220287485052, 6.262112501459585, 105.54029851447548, 42.55366774509997, 12.721792292245274, 98.39395304204582, 34.94637177850229, 68.44689436930945, 153.8672885278226, 8.633187409621328, 6.97705110568647, 22.71914547513837, 50.27105179754227, 7.965092049102581, 15.135373084845495, 19.925728164278873, 191.86538099614583, 15.122531762193335, 72.02168946422582, 25.315437598702378, 44.53880671429821, 62.55777806558608, 12.250689454972928, 26.426823771291417, 31.349812679487542, 27.291961979662446, 71.13667905930313, 46.91651450207397, 7.241262308024875, 90.5272890528758, 5.71251096973012, 14.153405673536911, 63.698969512016824, 24.230535201611417, 37.52983202765783, 55.81544407188371, 20.61063007510206, 26.87668565825772, 26.282743015514473, 69.34441537585889, 62.25349553476195, 86.98568273962132, 7.963187685362949, 5.538315312022324, 5.031224864529838, 26.148868516193097, 11.347187436142155, 12.574083441399353, 28.45899161105083, 26.982316353935634, 123.87803470531505, 20.22652811013085, 93.03504370758942, 17.54660180777969, 11.461829438306594, 127.31248040563565, 9.778978531724906, 39.12292982946651, 27.723654116581255, 40.144231775669844, 7.328757469981046, 53.95581097997872, 18.924549425134504, 73.01595484641797, 40.86995379585428, 9.237574329152254, 66.16603670876907, 35.51670797812201, 59.887350117763866, 54.960088218467185, 30.513802103947675, 25.380180272816396, 8.160608257371301, 9.876668740289151, 31.936595715484664, 55.21530518561395, 63.221114455237604, 7.09727600346461, 41.5782023649239, 8.351159120153671, 29.257038991481274, 16.112336362597055, 49.20112296874836, 33.655113384883066, 44.47036291549492, 54.777335015892206, 37.40289449577413, 134.84184777997643, 7.769624133504499, 28.673469648937612, 16.613198378874834, 94.1926579521075, 6.286312483297911, 29.21620714222993, 26.34667257787359, 11.704170713234923, 5.833068829513614, 35.90249739942219, 13.531405151961367, 84.43428380052565, 7.095208995749647, 27.838900551080382, 18.50243606229267, 33.03959028111426, 19.941660475608913, 19.676438982015064, 8.349560441435239, 7.451680892484767, 27.25440468844085, 111.79049341942891, 64.12004897533421, 60.07128662689482, 80.40774313042117, 7.508735000522108, 6.399115073126612, 5.338430887482196, 15.82228116506724, 25.466901343688477, 137.98016846014943, 32.63302444590782, 38.41728601802157, 27.497581047049373, 39.65288892664127, 12.779962147868796, 7.142217203216224, 7.301886372054811, 31.06421074247777, 16.887700390837203, 62.13603694920625, 93.41788545192581, 80.25591316311501, 13.560296723842473, 34.68632422106123, 66.5322805926237, 26.240416111928266, 44.08715091609179, 22.975654678430644, 56.415039751567775, 74.87215030588595, 172.3920120703112, 64.15588803325917, 41.6979157547751, 15.672502942420362, 21.37942620758738, 23.966619806180823, 23.072492465201478, 21.092495722333286, 34.076997326664625, 108.78315578756332, 72.12885198985865, 58.28118420158336, 37.414843872296174, 135.2461783058314, 11.313010729494088, 30.316197268092758, 23.437879079817986, 28.59863929285848, 47.09920159242787, 17.53880683297571, 17.048481984078265, 42.31957884613584, 44.469131605402836, 131.92523272277296, 7.500054868682977, 23.848523943799876, 51.51348278554877, 83.53744249243978, 394.76041797438006, 5.202597919010733, 11.960509634229595, 5.2966866648690605, 13.335835749210089, 53.310839753894385, 10.754127240266312, 47.91061975317351, 140.76606811967287, 8.005071571435872, 53.1160752480496, 31.093860356458205, 28.07995887626137, 5.072984829333359, 8.775220245864094, 16.78406698937646, 45.97813024695697, 16.40121730690099, 44.92855232995947, 36.35952572679092, 5.455687960819274, 34.330199360728734, 16.297988286946108, 17.606420052693647, 32.083462084044534, 18.480224361688723, 26.305694117821336, 26.279322158164202, 80.94509602167824, 37.99860735179817, 11.393421387142759, 101.71938159720922, 11.219649166233019, 19.343986774185545, 19.173275120126483, 16.985181581892057, 92.29503845168706, 7.165221337168568, 10.524348267225633, 5.450860954828182, 115.55249955913698, 27.1580564364543, 55.666627975591005, 18.499956279856676, 36.197337924707206, 22.323697496289174, 93.01592956720334, 8.634902128682148, 9.920764053204053, 38.86520488609167, 9.569113931981782, 12.308059572781724, 12.989322478435513, 5.6284554499396116, 59.36126537019368, 22.998809389167025, 34.62390319996202, 119.10055493751206, 43.11596349244363, 101.81979811060181, 14.075328791624482, 12.948425245467991, 54.48821928123399, 67.21780572544944, 6.681159363158615, 68.96668078122869, 72.12478919467388, 144.11389969418917, 16.633041476663028, 131.44034158010706, 6.538931182002048, 16.27591749036897, 30.98274936263418, 54.07689496130128, 8.715423816257609, 34.267946866976246, 88.62845123240285, 316.2980764175743, 14.242045415887496, 5.034957144143713, 25.534390727784167, 131.07903705108833, 41.127811530827586, 13.664265410187827, 66.17105084530805, 7.861219555387894, 34.83449020194678, 12.959622300882247, 67.4778862567946, 148.79533349541532, 41.54409383729751, 121.12150484283772, 11.687951396886753, 6.3918889690047225, 42.86365865195968, 63.81935594394989, 17.871650336123775, 208.36845671896617, 11.221330444324211, 21.190005043225668, 8.584108299924505, 59.70628466948145, 9.855595057487369, 292.034437910202, 7.0644824283961265, 19.056158250730054, 35.40707298640905, 15.666727866583159, 111.86658320018988, 26.880001777485358, 20.419327554469202, 17.24096550692582, 86.66859614979172, 15.548124395497442, 29.087016157638324, 7.389044046435746, 40.28325590462464, ...])
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)