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 = 45330
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);
([4063620.86077074, 4068661.746777689, 4068731.6957834936, 4070063.2055740897, 4071413.7628890504, 4073539.0625, 4122955.3456305186, 4197573.061755495, 4202673.841929837, 4220449.881559829, 4222815.2811364075, 4615221.875, 4616222.35736416, 4616845.422576731, 4620908.253997973, 4625676.101061269, 4625693.291481639, 4633329.6875, 4682318.497231796, 4749078.125, 4759207.8125, 4759586.943416327, 4761109.9211613815, 4779742.927214024, 4781237.549174068, 4785148.551940935, 4785938.770068392, 4786509.375, 4786756.750358483, 4787568.221792183, 4787680.92097959, 4787750.0, 4788008.598183995, 4790620.3125, 4791505.402872057, 4792580.799308981, 4792838.223000537, 4793452.1107300315, 4794245.3125, 4794886.819110905, 4795364.998963897, 4795799.613238417, 4799739.0625, 4800036.669589174, 4800437.17790632, 4800556.1832828475, 4801691.824099347, 4811137.5, 4813238.75735221, 4813507.2731475765, 4816222.608551676, 4820954.463250221, 4822685.9375, 4825614.918811484, 4825772.207608068, 4829031.592712965, 4829564.0625, 4829748.37776867, 4829757.409368143, 4829797.798688729, 4830046.585493731, 4830414.904894442, 4831042.1875, 4831150.232500328, 4831968.610013463, 4832765.923726071, 4834592.1875, 4834729.304645705, 4835826.299785126, 4836283.364991567, 4836326.5294869635, 4836339.466660726, 4836685.597990657, 4837402.973805787, 4838073.492788061, 4839901.062832654, 4840408.053894349, 4840986.945882402, 4847164.048185016, 4878048.625937846, 4884756.25, 4887277.78702943, 4890773.539013049, 4892494.637147731, 4910467.342386764, 4918037.599641635, 4944683.028236688, 4945912.5, 4945951.5625, 4948442.1875, 4950616.684016667, 4951518.899613411, 4951520.3125, 4953900.882479486, 4954141.26140372, 4967593.31611169, 4968819.986150053, 4968822.41467176, 4970683.204774175, 4973309.752518169, 4979318.169619246, 4988218.390141225, 5002932.416232501, 5013311.607694542, 5031730.1895006485, 5057155.714936233, 5057221.224851754, 5057303.125, 5057358.8899920285, 5057364.97455165, 5057392.1875, 5057455.958325769, 5057515.771383166, 5057785.216328497, 5057959.316968443, 5057979.6875, 5058002.311520063, 5058245.9947728235, 5058254.791142792, 5058294.417404316, 5058376.5625, 5058393.184500429, 5058434.375, 5058483.83549786, 5058527.620276615, 5058576.5625, 5058795.134539667, 5058886.225024925, 5058888.321156049, 5058992.9048860865, 5058993.75, 5059044.1638080245, 5059125.0, 5059156.25, 5059170.3125, 5059179.6875, 5059236.665315443, 5059259.946762388, 5059520.3125, 5059642.457445141, 5059691.87549622, 5059744.599334736, 5059752.1342103435, 5059754.833752328, 5059840.1284408895, 5060027.5840370795, 5060093.75, 5060164.0625, 5060267.956106777, 5060307.8125, 5060453.280342707, 5060459.375, 5060607.746166374, 5060734.5907262815, 5060955.946359044, 5061093.973571901, 5061190.488254504, 5061293.75, 5061379.5833348865, 5061387.030847233, 5061412.078286607, 5061413.649803288, 5061421.866065946, 5061453.125, 5061454.6875, 5061462.5, 5061551.044263, 5061561.716369448, 5061572.072808972, 5061587.180310779, 5061596.875, 5061598.4375, 5061707.8125, 5061731.088646864, 5061731.545600005, 5061784.493171512, 5061809.056390169, 5061851.5625, 5061860.9375, 5061943.044425399, 5061968.75, 5061972.232936864, 5062022.366555362, 5062068.490996564, 5062095.86261382, 5062138.735626324, 5062165.154030767, 5062225.0, 5062240.625, 5062253.125, 5062335.988974901, 5062375.229453714, 5062393.016648817, 5062400.609808281, 5062451.538462473, 5062520.171333886, 5062530.929131568, 5062534.176956413, 5062540.909670473, 5062564.775462893, 5062573.931060787, 5062597.803873898, 5062612.5, 5062615.625, 5062624.032629613, 5062624.82417717, 5062625.0, 5062626.248133325, 5062640.394594124, 5062644.200378489, 5062654.6875, 5062683.026169533, 5062731.25, 5062739.410295897, 5062743.378116171, 5062754.209792199, 5062771.8121354645, 5062781.606242457, 5062814.47646817, 5062815.558418432, 5062859.4710574, 5062867.1875, 5062939.300812767, 5062965.625, 5062976.383567099, 5062976.5625, 5063017.1875, 5063036.49135953, 5063090.106439031, 5063096.875, 5063126.397818052, 5063142.543628998, 5063151.5625, 5063200.144979831, 5063202.399638725, 5063284.69011032, 5063313.579263225, 5063370.156323278, 5063441.700381668, 5063491.334287452, 5063587.947795316, 5063590.943748563, 5063592.636735246, 5063684.375, 5063702.2528605815, 5063751.955583153, 5063760.277539247, 5063860.207463788, 5063932.721427018, 5064017.1875, 5064025.0, 5064097.712705746, 5064118.719415492, 5064153.465478856, 5064263.98410736, 5064269.207963124, 5064397.606315619, 5064425.454006766, 5064593.80050517, 5064650.697911256, 5064651.298650086, 5064951.5625, 5064970.613810459, 5065014.122121316, 5065414.493461832, 5065858.315906268, 5066234.085254999, 5066311.807943374, 5066318.082870739, 5067507.9560214905, 5067611.995207154, 5068945.997203255, 5070717.429165864, 5072901.059363554, 5074409.375, 5074774.539426601, 5075200.0399039965, 5077352.157672393, 5077991.452171304, 5078085.74130789, 5078128.125, 5078266.716367628, 5078327.371316027, 5078584.985443555, 5078657.282054411, 5078657.895993846, 5078894.626769827, 5080243.180059418, 5080272.911798492, 5081001.889414373, 5081127.552532604, 5081431.564981024, 5081439.540469732, 5081687.5, 5082337.515919774, 5087187.5, 5087431.25, 5088265.499559053, 5091528.352755224, 5094337.5, 5095827.170552154, 5097545.3125, 5101793.75, 5102896.875, 5105494.236936461, 5107987.5, 5108301.091235481, 5108601.499565975, 5108770.425626857, 5109785.9375, 5110593.4725926295, 5110600.0, 5110715.625, 5119200.705702702, 5120254.152845424, 5165626.137664152, 5167525.0, 5176171.227077161, 5185336.591818488, 5206314.401685999, 5252620.3125, 5269740.625, 5280560.9375, 5281543.6761018215, 5285653.125, 5295414.0625, 5296057.742563156, 5302588.99365054, 5350858.726405945, 5358567.1875, 5358753.602268898, 5388664.0625, 5389329.624617766, 5404610.97230503, 5407142.1875, 5407143.455091165, 5430149.41625478, 5438052.79393401, 5447935.539049063, 5451421.310671317, 5457904.54182917, 5516285.225754383, 5541259.375, 5548762.868530274, 5551382.823884855, 5551479.795956959, 5551908.2768618185, 5552054.002927646, 5552993.417029127, 5553645.201825114, 5553729.270359632, 5554742.1875, 5555565.625, 5555571.791047296, 5560284.375, 5562388.566603021, 5578368.315574092, 5578610.279215442, 5579051.5625, 5579967.298540525, 5580160.43994435, 5580245.7094257595, 5580295.62023525, 5580651.535263166, 5580799.743789756, 5580823.4375, 5581018.75, 5581104.867407812, 5581156.913967373, 5581310.153784182, 5581312.769028445, 5581582.8125, 5581636.874110273, 5581662.25001563, 5582149.837868002, 5582335.805567216, 5582365.265698991, 5582371.228261373, 5582675.916178085, 5582899.752734341, 5583048.223900035, 5583051.47807018, 5583381.113886668, 5583879.6875, 5584649.181903846, 5584884.375, 5584888.606059803, 5585659.371564466, 5587294.88842062, 5594859.889963375, 5597707.027180999, 5607163.228704059, 5607401.413750116, 5607545.75155167, 5607841.807314205, 5609126.35735786, 5609853.125, 5609863.187074156, 5609951.163380249, 5610268.182989659, 5610407.650047468, 5610668.519643836, 5611257.8125, 5612289.0625, 5612399.858395694, 5612448.4375, 5612524.82215956, 5612642.7784073185, 5612893.046739086, 5613290.625, 5613458.543339998, 5613956.445888594, 5617075.0, 5617785.658286686, 5628737.19949259, 5630427.943696074, 5631140.119712469, 5633035.631895765, 5633201.62609682, 5635121.875, 5636616.995842744, 5639044.598735939, 5639105.697886577, 5639725.417030065, 5639820.781102624, 5640612.5, 5641757.569703734, 5642483.807353868, 5643749.471243443, 5644069.998187555, 5645123.4375, 5647916.1047460055, 5649732.539564032, 5651212.5, 5651247.484436591, 5651269.64452679, 5653543.511413851, 5653650.0, 5657808.330703692, 5658020.940522345, 5659116.119194532, 5659313.243893002, 5660595.108751615, 5660790.625, 5661579.6875, 5662185.9375, 5662271.579833607, 5662364.786111276, 5663016.4190111365, 5663193.75, 5663753.125, 5663795.3125, 5664098.338593449, 5665598.969643535, 5665948.777347983, 5667814.512777239, 5669603.125, 5671847.357129374, 5672498.065778529, 5677242.1875, 5677382.020551886, 5677678.922265885, 5677770.118443565, 5678373.4375, 5679376.280460406, 5681418.75, 5681481.956894608, 5683905.352621427, 5683923.731650172, 5684007.592144618, 5684428.125, 5685171.005328485, 5685450.65804366, 5685752.54312209, 5688601.594979533, 5689171.895002032, 5690268.088000984, 5690318.918952751, 5690756.25, 5691788.43200845, 5693220.063085393, 5695771.875, 5695820.890097459, 5700423.991560874, 5702152.231707261, 5702285.26808873, 5704160.9375, 5704191.572581167, 5705071.875, 5706461.688101783, 5706469.0127842175, 5710512.0840309085, 5714165.108319262, 5714285.766329982, 5715191.560791717, 5715964.0625, 5717281.627044855, 5718644.742237488, 5718900.741777499, 5719468.83034938, 5719726.880495532, 5719865.793421499, 5720049.42072342, 5720315.625, 5721190.625, 5722009.792028438, 5723065.625, 5723440.721712415, 5723442.1875, 5723587.5, 5723898.373449815, 5723902.76236463, 5723942.161856843, 5724157.8125, 5724162.5, 5724846.699381776, 5724854.6875, 5725469.8554838495, 5725907.8125, 5726432.4818309015, 5726875.934982862, 5727115.9972610725, 5727727.259130039, 5727871.875, 5727954.6875, 5728093.144239224, 5728719.842479975, 5728732.8125, 5728964.563759779, 5729057.8125, 5729116.897456818, 5729257.8125, 5729268.75, 5729380.021506371, 5729708.795042635, 5729865.94526093, 5729867.1875, 5730161.448104546, 5730343.245247321, 5730612.141029635, 5731441.220349739, 5731463.626983848, 5731958.8880354185, 5733383.606666608, 5733671.660152329, 5733748.343483452, 5733811.628122379, 5733817.213243694, 5734308.229364068, 5734512.18052375, 5734523.5726791425, 5734532.357605127, 5736814.0625, 5736916.365947886, 5737315.523799503, 5738191.401925983, 5738640.133624405, 5738791.913469903, 5738842.1875, 5739273.2564268615, 5739854.664679255, 5740009.375, 5740477.740757572, 5740618.75, 5740665.739997626, 5741079.8890884565, 5741182.8125, 5741431.25, 5741441.682206556, 5741458.682621142, 5741515.095587626, 5741909.122136874, 5741918.438701341, 5741940.625, 5742062.068346532, 5742104.055904064, 5742110.480757137, 5742170.3125, 5742332.388709918, 5742338.505132032, 5742380.645157724, 5742398.788988718, 5742477.513492701, 5742613.199016504, 5742716.145408278, 5742769.772438329, 5742966.22628233, 5743180.492323674, 5743235.055760379, 5743276.187622898, 5743338.444456029, 5743452.501592904, 5743458.917195745, 5743506.835920603, 5743820.3125, 5743873.4375, 5743904.6875, 5744019.159180659, 5744039.343851723, 5744079.006889277, 5744153.125, 5744180.138527478, 5744230.658656804, 5744335.40596627, 5744443.48714697, 5744844.307931607, 5744844.923480136, 5744860.9375, 5744871.875, 5745154.6875, 5745218.75, 5745328.675458908, 5745358.50023685, 5745370.232313908, 5745457.8125, 5745469.67443371, 5745784.375, 5746226.412599781, 5746299.899656154, 5746586.317656598, 5746982.603520331, 5747032.980313807, 5747699.894052543, 5751733.034617171, 5752007.470446666, 5753065.625, 5757868.272002656, 5775161.260969525, 5779001.5625, 5779694.567655719, 5780973.4375, 5781615.625, 5781798.296290584, 5781800.0, 5781836.53825831, 5782345.086625367, 5782353.125, 5782738.807818197, 5782769.033753424, 5783161.676467431, 5783211.42376231, 5783241.624897319, 5783259.322348895, 5783952.742066111, 5784019.242537471, 5784673.507008258, 5785211.941759681, 5785212.5, 5785297.519594452, 5785333.386279766, 5785423.4375, 5785537.710772944, 5785572.391443151, 5786567.882770742, 5786992.1875, 5787737.5, 5788939.696121839, 5789510.15944788, 5789807.782170735, 5790251.5625, 5790257.477776409, 5790307.340771152, 5790342.071222734, 5790882.8125, 5791373.4375, 5791425.0, 5791659.46607441, 5791710.9375, 5791932.8125, 5792352.958878121, 5792415.424151426, 5792635.982993628, 5793221.258077958, 5793386.502211092, 5794138.019010688, 5794435.7107927995, 5798722.273280696, 5799435.9375, 5799499.985840256, 5799635.847818521, 5799814.959566922, 5800201.556638794, 5801254.6875, 5809374.291473943, 5827289.763405556, 5828949.108485171, 5829650.263223238, 5830235.992866091, 5831646.365701334, 5832074.488583604, 5832357.8125, 5834098.008920616, 5835082.34142498, 5835293.45942149, 5836391.897631897, 5840740.625, 5842953.036550848, 5842961.333009294, 5845597.607428403, 5852566.686713182, 5856534.375, 5860189.359829923, 5885588.2100380855, 5887742.1875, 5888119.8569264095, 5888235.894566029, 5889026.362718189, 5889638.982908333, 5889649.890426676, 5889673.344229335, 5889776.289693947, 5889798.4375, 5889821.890362323, 5890527.994132058, 5890837.3438828895, 5891103.230014326, 5891383.631554623, 5891397.572213741, 5891726.5625, 5891789.0625, 5892407.71653714, 5893235.272270177, 5893374.101209622, 5893577.689697702, 5893955.013832873, 5893992.157661687, 5894090.631471355, 5894104.455507698, 5894105.467235425, 5894126.301970121, 5894153.920000506, 5894183.937672451, 5894248.465001959, 5894274.699180813, 5894355.769071594, 5894451.78274238, 5894520.674501834, 5894668.175230303, 5894672.696331881, 5894710.9375, 5894804.062414953, 5895199.023552601, 5895334.441014167, 5895393.832095387, 5895514.0625, 5895905.4502569195, 5895998.179305872, 5896214.0625, 5896395.211965089, 5896403.125, 5896495.776365879, 5896525.370830296, 5896595.186161514, 5896905.6488467865, 5896961.585781314, 5897344.19304296, 5897357.8125, 5897378.208402593, 5897811.69399707, 5897895.520598445, 5897934.375, 5898375.776905326, 5898417.546572954, 5898420.35818675, 5898449.345095996, 5898841.407045607, 5898856.532333145, 5899253.027436224, 5899411.846055223, 5899708.4724738775, 5899903.125, 5900835.9375, 5900855.721736195, 5901062.379247309, 5901065.498995944, 5901347.265532743, 5901471.679966059, 5901565.625, 5901567.1875, 5901658.24217106, 5901794.857318732, 5901946.83095751, 5902193.75, 5902325.8562247455, 5902371.875, 5902372.636333285, 5902775.715859764, 5902892.1875, 5902908.368520293, 5902928.125, 5902976.108288355, 5902982.853186025, 5903197.414475722, 5903226.5625, 5903340.049287706, 5903551.506114374, 5903855.183397087, 5904018.796378239, 5904430.690340114, 5904610.233714581, 5904643.788313039, 5904963.498185469, 5904989.075808963, 5905291.982585258, 5906495.554288641, 5906499.471443691, 5906821.442505834, 5907627.863842772, 5907916.117764849, 5908423.975496151, 5908616.801518817, 5908733.413978184, 5909094.740425064, 5909350.0, 5909399.999600007, 5910743.380710745, 5912471.875, 5913068.98887435, 5913734.890355792, 5915242.9186804, 5915318.342472119, 5915570.267503869, 5925645.3125, 5927768.983830787, 5938925.441171667, 5941426.5625, 5945249.82818521, 5945649.0957135195, 5946592.1875, 5946662.263715516, 5946669.524569791, 5947673.36295494, 5947854.781961367, 5948132.429128155, 5948191.889233093, 5948328.062334231, 5948665.014839767, 5948789.347903476, 5948971.157509936, 5949225.767165864, 5949885.108635318, 5949899.172389849, 5950619.367957196, 5951025.512569588, 5951380.623113922, 5951438.392815345, 5951927.735175476, 5952865.499257124, 5953344.7958842525, 5954332.372400422, 5954818.736287262, 5955247.622086107, 5955767.1875, 5955839.3573522875, 5955881.990845424, 5956552.030046153, 5956976.5625, 5957460.5638235025, 5957879.71330847, 5957978.125, 5959288.709220807, 5961128.204499855, 5968907.596409547, 5973293.493172213, 5974924.512716182, 5975736.762544938, 5977937.5, 5978959.7520524515, 5979182.8125, 5979320.74752347, 5979808.542230849, 5980072.3628367875, 5980422.281002686, 5980493.726028905, 5980536.795240097, 5980798.4375, 5980873.111274002, 5981012.5, 5981056.25, 5981291.39144203, 5981900.534314218, 5981994.037018159, 5982010.227825989, 5982345.5713306805, 5982494.5131705785, 5983285.405227082, 5983340.625, 5983647.69274808, 5985952.961460572, 5994376.5625, 5994833.239185073, 5995144.897014895, 5995574.735264145, 5995853.497573792, 5995942.1875, 5995969.202622758, 5996052.390617266, 5996156.25, 5996270.3125, 5996388.43192426, 5996390.625, 5996551.037716132, 5996579.420063147, 5996602.478458021, 5996630.994107079, 5996937.4060978135, 5997762.016503143, 5998070.144396155, 6002231.25, 6002992.1875, 6003100.0, 6003873.215286677, 6004222.568380859, 6004383.169529647, 6004771.613314407, 6005687.486874667, 6006600.0, 6008599.358545603, 6009773.4375, 6013739.28469794, 6014270.341159562, 6014481.2053191075, 6015340.625, 6020126.5625, 6023260.824824421, 6023831.25, 6024675.0, 6025360.411366146, 6025371.322790053, 6025773.4375, 6026062.916346463, 6026078.125, 6026105.94760279, 6026318.124161199, 6026567.808726994, 6027515.694450116, 6027614.761626355, 6027668.677803103, 6027816.986450568, 6029461.390730576, 6029470.15212643, 6029663.675267493, 6029707.56587785, 6029939.0625, 6030212.936742896, 6030542.923729589, 6030579.858550244, 6030701.5625, 6030950.0, 6031003.593916866, 6031126.409106666, 6031263.209240065, 6031295.593862861, 6031353.36710097, 6031371.875, 6031425.0, 6031481.719601273, 6031495.619045592, 6031624.250773466, 6031697.308994776, 6031983.804538345, 6032013.381215475, 6032153.245079217, 6032405.702228571, 6032482.254976868, 6032628.399602683, 6032805.260934373, 6032812.5, 6032921.794453343, 6033013.374946322, 6033013.922499316, 6033210.43304656, 6033212.76204777, 6033536.94082476, 6033555.938178478, 6033566.712298979, 6033578.547464323, 6033607.215680985, 6033656.480003678, 6033918.436461276, 6034170.3125, 6034424.891535175, 6034648.28762458, 6035064.400356627, 6035338.038575715, 6035455.814625197, 6036285.9375, 6037237.5, 6038181.159148153, 6039755.24419493, 6053851.766120931, 6055550.68716413, 6065162.2187772775, 6065336.818820598, 6065465.39133018, 6066738.311176701, 6068278.375756039, 6068778.013604303, 6068887.371221049, 6069137.450946645, ...], [29.58863087343187, 6.013123291903223, 5.979190536899042, 6.003300321542991, 5.036530822445261, 60.255036964296615, 57.43990089733754, 32.82171105061053, 22.673856907488457, 66.0895112365953, 87.2585950743088, 89.26611390436419, 17.165639473465458, 22.69902566489566, 11.895850172244392, 33.54697016159105, 21.917128819436517, 87.13108584034956, 158.1186213922141, 46.669343519786715, 89.29356255683615, 20.946626783981838, 17.53164622232558, 29.139886967297652, 7.6211204615991, 7.645160177054305, 23.847901205797772, 56.74348988716113, 6.867686985799011, 10.391575618738445, 68.39619358917979, 106.07150086578456, 12.626875931419697, 36.13170413214266, 18.6118452168702, 21.99950216371647, 10.027996558447681, 17.543864018092254, 55.91519947224895, 69.61268288538909, 104.72790803022053, 86.51120225388408, 87.65239939157894, 18.72824071823635, 23.472569148259147, 9.275620063735595, 94.82600345551134, 40.31073603151415, 23.68520773023167, 56.80055159914818, 18.034729724115298, 48.132017429702685, 79.58930283854086, 45.61309398087552, 36.71496972154927, 16.43126818511371, 85.13477137533593, 90.89404226063436, 22.517085135197778, 12.961299703948018, 23.885716452886296, 107.75306165771057, 37.028535317548176, 31.71810208683852, 15.142914274845822, 7.202255957450975, 40.50027786950745, 30.64986720728234, 24.238984900372945, 12.117096696333514, 63.44379013774548, 16.74377250423304, 23.258851240116325, 25.857826262820947, 15.156513922836613, 6.411516379688151, 9.544211755940351, 20.969717072521597, 5.938159859346475, 98.58473282279567, 87.52281269932317, 23.277541993286967, 15.343080644571305, 7.37596732937525, 16.17655743086202, 26.174898582206293, 26.247630324201573, 41.44792198738308, 36.43363130400307, 28.686098414331973, 16.714373345142317, 20.922840091741424, 31.21465746547924, 115.47630865411648, 10.544290339920986, 13.510832241335743, 12.944557618857957, 29.713248043902635, 87.36384823461158, 16.60631568442156, 5.890407374950174, 68.7176723658668, 22.594305107522626, 86.4584403470285, 8.571169167861418, 13.231029638886758, 5.150491656892684, 77.57624338323795, 16.55743833986498, 61.09180063505367, 29.224581172621605, 68.69616977951002, 30.097232504273645, 19.538191984978727, 27.426788593448244, 39.600070580525575, 40.20933106539644, 18.38685339226767, 79.92225073305526, 27.968119720890712, 57.81221617792787, 20.86367788043592, 48.00105557985087, 13.21914547965168, 8.938224079902543, 45.388846571305976, 33.67995387964035, 16.163720310611453, 7.929936840846156, 122.42018115705005, 53.347306095145726, 6.849031181603557, 85.98415407607555, 47.56661390030745, 76.71509048063301, 81.23918736161879, 10.033287467070553, 17.68445966753289, 117.80824671855916, 13.69815067448237, 6.702776007989816, 12.777838420678334, 23.563920042739262, 84.09837025840646, 13.335479710635909, 21.09397924587433, 88.06190908746623, 76.6166112523432, 6.927308752627519, 46.26567133577713, 7.162894161736933, 31.054568073988193, 20.11532351602338, 7.683171304536094, 23.704344631773882, 15.86811620535092, 82.56392927717904, 66.60708973205848, 15.786015535709382, 13.411330833867526, 5.443952642690352, 5.327976200395672, 34.574898149613766, 75.68289662024951, 28.998125670875996, 50.494430691896426, 21.31308524386414, 95.1346213299327, 8.394027386230594, 110.99073345066525, 95.15095256763534, 82.65053052988344, 51.400204008802774, 62.9589862315435, 16.202126091458176, 7.6465448946712025, 23.51590228252514, 41.17364328927903, 82.77511174688064, 6.94755813769317, 57.959964563976015, 5.971194978883471, 17.2171127757101, 96.20708506208058, 5.26080719764574, 23.413431798713226, 21.7876698149429, 42.37677928541336, 66.45202196783828, 139.9291717203577, 5.463980244978579, 44.44671755755008, 19.443398695556517, 17.91821011759445, 39.31074898643593, 16.778939142392737, 90.00408785393338, 54.010198353934754, 21.621448684693835, 19.8570424953525, 11.998040426613638, 72.81879052837725, 41.6864300618458, 68.66250333094916, 17.827062262186526, 8.195737426990938, 45.171843531773554, 6.438915368213014, 97.99069027238255, 8.540026078572966, 93.1347743699184, 7.178774930204609, 76.31126413017658, 23.04508448993068, 14.611236305333959, 8.95769468138494, 79.32975849931347, 87.99474243186698, 5.733620485560963, 32.47861443923661, 5.16760475166418, 53.96888372177243, 15.934933535259772, 31.221093719105983, 21.264582223961387, 81.78563609904415, 79.51496230312314, 39.01103625789369, 91.11838288948306, 39.71343052597616, 25.648174712896274, 16.49814725893293, 48.9963258288366, 7.656529811994122, 7.936945134319086, 16.29595630590407, 21.661968258717852, 71.84906699451082, 6.999031546807867, 16.679403581877423, 11.908065602856855, 6.538246322814525, 16.98347355884805, 91.24883575157763, 5.4255383807065645, 23.051075890307207, 124.59622794513632, 49.60090605662617, 14.605383940271576, 64.35423104348787, 30.87968320271662, 27.03041509279143, 27.93361112235123, 11.705147248580769, 27.06465685803672, 11.92787242014259, 6.918852758396227, 37.92419873891782, 8.313467109865886, 12.427345970308243, 59.171049233036285, 49.05330233272809, 11.63376902805587, 31.059979169591287, 42.41542549276197, 57.80647681068409, 61.48543358871635, 19.769684429162474, 91.6877307622588, 18.741918623312998, 46.665563291794456, 55.45365740149068, 7.1864611064524375, 6.037294919694373, 40.39009040755053, 8.057163480159394, 15.095817809115761, 56.831055666626575, 23.111120279967455, 20.156888057749654, 35.6115198080592, 68.49575098459167, 12.681110249444302, 7.8400279073018915, 10.38879628801087, 15.269594040552985, 29.176840668035076, 20.82266934872127, 10.3946915081158, 25.69883568116275, 28.782428009184276, 7.206787585660043, 6.862834617373932, 62.96737042896073, 218.04776114955152, 39.49078858488868, 60.0360505869281, 26.269807910421893, 15.88699998969368, 58.53353124572781, 30.192309801053266, 154.12151540135005, 61.85216232686685, 62.410202623076344, 109.90801180956862, 29.370684100082556, 62.93631638146235, 27.338545101314953, 38.16473141826943, 59.88768060305901, 24.043685749748647, 38.56963873359549, 85.94546207359248, 18.54537627545356, 64.94982461825153, 15.925914249952141, 37.658767272442205, 44.920112491077205, 5.180885603900227, 38.78365157943695, 52.029281975953865, 29.004116385849496, 35.89420293591756, 33.01649142685733, 68.01895868348608, 32.216117762519865, 35.077715084669364, 57.707075254045435, 12.93670734939987, 73.50980559367132, 17.137281430205782, 46.99500281944895, 5.933948005541394, 7.615874763512991, 32.61928126832821, 8.136547735354988, 63.7126795113048, 9.066323971492514, 13.6130440476448, 14.01899856170469, 14.413903141324274, 93.20453061581944, 41.32695152899456, 11.757130697226865, 11.145548814562133, 12.18572430095863, 5.980891514276106, 63.46664734918524, 124.38754275585882, 17.915349785290005, 81.92436759911303, 86.13259217743091, 72.00627481076366, 39.350878352352126, 41.17510397500337, 21.534127931002633, 16.793304113132983, 23.29067283774042, 35.55003681096477, 11.305822317684981, 35.25756948358122, 9.691201710633495, 16.26031373139137, 134.2767640522529, 67.94280180638309, 49.354523993136766, 50.78749332347215, 15.674637575344276, 9.963917273715856, 120.39041573051313, 7.703527810165962, 119.77485805480842, 5.272137701488493, 24.411361479543295, 25.687497096967807, 10.927564716134476, 82.51444525358178, 26.555655048824846, 27.954171540131373, 84.33203822970276, 14.185411151290735, 82.84507475328394, 56.1701930944335, 147.18458452985564, 30.441982438386063, 33.137597756085306, 31.168694803331952, 14.928430921212467, 56.58835244548722, 8.579062061272031, 118.75534338313633, 25.34260670360421, 8.209451726534576, 16.928512147064094, 13.666620670127259, 10.821513277771839, 78.8385825159413, 131.2778971062814, 31.36297095529367, 20.849704467634233, 6.731501842957322, 69.37454894189588, 63.77445108495503, 56.84701386365233, 26.00941719096735, 29.430155944864435, 10.860661213572588, 38.02061845542407, 19.67976944401531, 48.06384196977826, 18.719477567290813, 18.281745522096745, 62.31168881182456, 145.06028762775287, 23.744262356904493, 9.182665397433007, 5.033130490501638, 23.67941830867215, 33.22605966864329, 46.99119882441003, 67.89236564166333, 20.02445572373889, 13.185550250434439, 18.38893073807226, 5.48224548730921, 82.25219365776651, 24.510016961081085, 60.23964499919283, 21.21095572504592, 121.19991205326431, 74.1138385248551, 17.15105227273944, 13.99413726980599, 109.03475933161782, 5.8604928199782345, 19.966567689109155, 10.774193444991296, 97.9846210510168, 15.970254081291198, 5.861957352830121, 15.71029103486212, 31.402815695009828, 25.063348003659982, 62.280221214054606, 46.82029002633393, 38.954865796790926, 62.21556120848513, 8.71027929247403, 77.63896151208834, 29.42384295314337, 90.76151221005166, 73.51946485277568, 74.81365216418989, 15.36367726101761, 9.63630461855608, 7.774639925690392, 77.44710537010421, 73.97885062470277, 36.73674071123894, 85.69667173353788, 12.591777674639316, 96.96738113721364, 31.742244378483953, 105.08449865932629, 7.049234475486028, 67.40019004836985, 18.55353619536639, 12.355248470357454, 27.702048416285095, 8.173388691521716, 57.09174708716152, 18.457831319977466, 17.691774192015487, 36.67452098772995, 11.178856765442532, 11.159115859525352, 32.501398107497, 9.478468366836928, 78.03876559821327, 10.267092852639788, 14.069064375391543, 117.54374124793279, 23.786331267866014, 11.231798797192525, 18.29998054186097, 51.7074089163716, 47.66148890101209, 8.860475071080499, 38.04900024837451, 18.859372601031076, 11.564897304380068, 104.11941252125294, 22.276122848476668, 51.841514616946064, 52.53950421834685, 72.8784269145402, 11.773054892388664, 5.772957179672421, 12.52585004508145, 31.20077200916065, 7.207629559526611, 11.401576505097877, 101.56106179259196, 33.62314742349871, 39.39273990769714, 7.23556749770644, 63.13904740454205, 6.098214532055541, 47.29207529463264, 67.66936424483958, 14.70287349787062, 31.282738999990922, 6.758397886720064, 75.75342728753296, 70.86210407852728, 42.88427642253301, 49.32671452504241, 29.082909528357646, 50.763343953031985, 23.366735132992915, 130.06202880816636, 7.22287124159641, 12.424504531140556, 63.67798489338284, 34.03409601652326, 41.31907052492366, 21.797472116080503, 93.67240525189415, 5.739419861370489, 55.08516891998393, 23.878764913285973, 43.959170752373645, 59.620014038108025, 50.97696007339596, 20.73091684480062, 16.32097504225808, 34.338991974371964, 14.736816960526715, 7.430339263769703, 25.40137338617304, 12.20603245009053, 21.70834855704802, 8.951004629896785, 12.64668182944237, 8.176138708869907, 5.457745661140083, 9.992671157365171, 11.089736782086351, 16.810402941520266, 23.50510718822907, 24.001186719834838, 21.95516594961798, 38.607162074097424, 5.314536776682878, 5.3946192746798145, 19.050005816683257, 18.85300613901222, 5.519927175435018, 51.9994129202784, 25.398826116853265, 118.0226467709136, 32.80178128662839, 22.7311730001171, 84.4120219408714, 11.312342306061307, 35.52378380349567, 45.19405178690762, 59.160733781562435, 27.47248009495252, 88.23584228069168, 5.585412120543701, 27.63692825109865, 14.887997116119031, 45.82648092918261, 6.2141601422364365, 5.5031927675337355, 179.17383484832206, 64.77591554801371, 114.48913017440125, 13.171627533475874, 7.990685249268311, 30.037738067862577, 44.88090333933658, 16.06384086524375, 9.813947272407598, 59.383389536714816, 8.63238064204879, 19.25757319855421, 18.376741871648306, 19.045958770892767, 28.301953889312685, 6.393614147430905, 10.480340008602097, 45.1289051443304, 42.065346376722175, 58.093946244313834, 44.359756747316915, 9.703137035814217, 11.330186909003562, 79.78300841520715, 49.67106201376091, 28.995775290100035, 20.627856427652087, 21.18419813488809, 38.32306893387646, 5.989512318154766, 21.796744192798574, 127.27564801313973, 35.54365366304842, 46.53878654511147, 39.00816945427159, 9.844674688994706, 43.75525162482327, 20.97861736069787, 57.7420853539511, 135.16593779843163, 28.94737423590148, 8.208867020768695, 65.86930271642618, 16.619792097135807, 87.97474844208782, 5.404928381086731, 7.093877036369362, 65.00248146593755, 9.058008093343485, 49.25250326282788, 30.697426306192853, 16.336613557616875, 47.62604257421883, 13.064580551631202, 62.64252595015313, 53.490433148251256, 43.41227475113059, 35.03187229275949, 8.632052916336487, 24.74613649723405, 44.248901860863675, 24.34740967348508, 16.14586777476343, 8.720258069711573, 17.18741987813594, 13.157800860072319, 14.744555043740121, 94.39570331497416, 6.14086152590252, 15.213230366136747, 6.403003571027271, 47.52581759637586, 12.310764576886648, 42.38090188817529, 51.00848445960369, 5.957973515154257, 133.33874435027187, 53.55560965941798, 77.96897893720686, 62.94285344807247, 53.303516219863525, 27.33357572418587, 11.08062883800262, 101.01709599011423, 10.28305224721063, 5.67737954712575, 9.234982077623535, 34.824768986893176, 31.274257934117276, 51.555069713830655, 7.14559992950007, 70.44908930319626, 79.81699637353861, 51.30177916843205, 35.839295029191156, 6.7726231328804465, 20.40098539695513, 27.318082907588305, 62.63095869571045, 41.4851031928201, 16.71317149961085, 45.28997244930633, 42.43931468347736, 30.669967157868513, 26.27610996557523, 26.620586299729965, 56.599293890211385, 154.60416975541347, 18.512628995099252, 7.309758951314999, 5.833716679530694, 15.156823529070426, 10.415163256354491, 21.379966568996625, 87.35679189329639, 30.793658732906202, 13.405969042173526, 23.8718388112989, 9.097767556199974, 80.00360573435313, 90.82210842219042, 23.071814140230206, 12.504655532843772, 21.485254901763916, 115.73918453923262, 67.51013590530465, 72.51991303570341, 35.993375913794466, 10.48319497174904, 159.275675516808, 25.121259735890686, 11.005537860165054, 19.682611462741594, 6.745027573581271, 59.940785549317674, 97.21146698345758, 15.000388490658427, 56.77154574615433, 25.780829101411303, 9.421805783242284, 10.135439182232208, 75.03426347287885, 66.88179974684819, 66.98991823689818, 10.980951972865487, 19.989314189082673, 126.78771720670463, 119.53453094229491, 37.65413788501635, 14.828986445468718, 132.73433967720177, 9.1426531081127, 12.613042944227386, 24.2683599381085, 71.26030866472844, 94.94537371499564, 42.19518158344647, 23.740283314921147, 58.175845692868926, 6.111305906633936, 44.463435662832055, 8.888496408619057, 19.383180592609026, 62.82526954346786, 10.273544490253835, 18.56018132163353, 5.818880949711984, 19.68386171860231, 52.35376037506215, 18.946779477891493, 30.791565495152796, 38.015114387067754, 26.68352236732353, 95.29827295780683, 17.063281137693114, 6.315215237427503, 9.226813663774406, 7.992355538524987, 19.063093336659776, 40.350571353213226, 77.48394191647064, 5.247485571277888, 12.559443306681302, 8.399776809151035, 132.52599090099056, 6.3706119478299, 26.284300773553124, 15.118552974481538, 57.72325287829578, 5.31587120216449, 12.243698236720867, 26.733920254478743, 33.7714957085976, 9.959634482763155, 69.5034491221378, 38.474536868201184, 8.025673505746854, 21.53079848991196, 63.69181546748452, 11.798420656676008, 14.246825972466857, 53.35083573337083, 64.58059327412963, 30.459992207967396, 5.120891849377677, 7.1099221539922315, 57.11337409766291, 85.96583804286126, 42.017976807475875, 10.070393239962389, 134.75311673656932, 63.487224208154835, 36.0257129263109, 53.47697593620139, 13.453223654406633, 15.098886783181246, 9.833404252661559, 43.18409470948174, 30.99236745744492, 70.8467119136024, 12.002690988375058, 11.20098111985003, 16.7204246082171, 28.822062952521193, 15.08957969215245, 13.153288662388174, 11.148573485762082, 10.821837404899103, 8.418716336698234, 8.025538588324657, 10.51289014353343, 24.259917000638787, 11.996457345738932, 17.48364088740629, 22.71125593628258, 87.64306884308652, 27.463879625852492, 54.86414795871107, 28.517305828635614, 36.06159831258367, 55.19724084030533, 8.417071044587692, 19.326206517984076, 12.501834592280364, 5.155977958487809, 11.058095856510707, 101.31291957721837, 101.613395612086, 8.53451977222515, 67.99093461053805, 7.542255220384911, 7.86001427094424, 114.94844167545165, 17.43137710542806, 8.743569372376395, 18.207300394123184, 18.82360223214336, 9.026995800270885, 23.772904787792502, 61.803912104388395, 55.91551889592126, 11.605174344252825, 12.767407284766916, 23.46026102073677, 18.739101950477952, 69.223053062016, 17.969344847762954, 9.805988335843852, 63.521721948853795, 5.226780954491482, 33.41004235284766, 103.86232607907216, 92.87331924930952, 45.85380830912696, 6.0866743727030705, 19.43040325763514, 39.07177345564601, 6.8238346735922475, 115.03355890586418, 5.556210619216946, 86.66065629095426, 58.561335552215745, 24.08467273859024, 55.476852929906315, 23.093223000817314, 15.253438254365474, 92.67225049230292, 7.512915682835425, 49.55198415495769, 23.627107548049075, 90.63794030577407, 16.603939991285458, 57.90057458084763, 11.883332112749589, 5.56957678478889, 17.196238047277863, 42.45031212599103, 15.242667376780188, 19.66781938033836, 49.838398453731415, 106.90662899326163, 73.71644399576309, 64.01764373365235, 18.973487111259157, 21.072333071731506, 24.88312471128592, 28.08878624750984, 5.545775674061278, 177.08738677166303, 8.918536891581448, 37.76563676441137, 6.6234051353243775, 10.881356675704582, 107.48062797371517, 11.867271279146097, 92.34070143602322, 73.21429642706933, 82.70012002191294, 39.769386894845795, 6.857363510344116, 19.43542450695703, 58.084522966450606, 41.07063654266471, 10.266992499674979, 38.93678511652963, 10.3958331358021, 103.45431492861424, 26.770351936182657, 9.124014813153853, 21.658872234551858, 21.659322884187155, 84.1453782648343, 29.20460829252314, 46.06287048081082, 35.196022888088436, 14.157176636644984, 7.874874188515059, 16.502663506090222, 29.696490559574173, 14.891716686187884, 29.699086432627432, 8.842143653599864, 47.70568853048346, 35.880154388358704, 93.24561576033543, 93.75497436026548, 35.241271971532214, 29.266859826950455, 14.528757725415494, 78.64299133540857, 73.69940658210875, 21.236303182174506, 20.98762280983384, 89.88662101061408, 16.807674063604534, 35.202590612144135, 23.72016884179491, 20.323376488290954, 28.409589394416475, 32.12706754334987, 10.001906683514965, 23.061168479772952, 68.36318842561138, 110.88574913565225, 25.71469818336793, 9.024118914446701, 10.762926049420711, 46.94227802800972, 11.886652474614891, 38.17208461181893, 118.81260872197495, 53.184833253339235, 28.933515141238793, 118.93375037624403, 66.85906848910464, 18.56962084328858, 108.61609469914276, 11.528456342902238, 80.88213745685944, 38.47005548069495, 19.362009803008327, 7.718005025181776, 19.321602736941866, 12.82006128120895, 74.65341458946124, 13.91677600433541, 45.33674473278468, 7.416446136824574, 71.49950321608233, 8.43733382018328, 23.36113116731693, 77.0931413046868, 27.027009923956264, 31.79734120058278, 80.52092912890588, 99.23725369084207, 74.1532734925672, 5.377519053608081, 6.228589739465931, 19.578254159683816, 6.850884646908363, 10.307504487018388, 20.988358244605166, 5.596930759479528, 78.78391106532231, 7.09322848827779, 14.399452881971982, 8.473705195962532, 8.593515278938487, 24.241685351929156, 32.44981507497408, 65.41967925146174, 108.51284744742459, 8.604673080936221, 6.519491454848197, 18.419654384202847, 7.049438229924267, 17.254802918181852, 14.119872235499715, 19.305662986775083, 31.84014191665844, 10.95794069451702, 26.21552148106503, 27.590162308790212, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4063620.86077074, 4068661.746777689, 4068731.6957834936, 4070063.2055740897, 4071413.7628890504, 4073539.0625, 4122955.3456305186, 4197573.061755495, 4202673.841929837, 4220449.881559829, 4222815.2811364075, 4615221.875, 4616222.35736416, 4616845.422576731, 4620908.253997973, 4625676.101061269, 4625693.291481639, 4633329.6875, 4682318.497231796, 4749078.125, 4759207.8125, 4759586.943416327, 4761109.9211613815, 4779742.927214024, 4781237.549174068, 4785148.551940935, 4785938.770068392, 4786509.375, 4786756.750358483, 4787568.221792183, 4787680.92097959, 4787750.0, 4788008.598183995, 4790620.3125, 4791505.402872057, 4792580.799308981, 4792838.223000537, 4793452.1107300315, 4794245.3125, 4794886.819110905, 4795364.998963897, 4795799.613238417, 4799739.0625, 4800036.669589174, 4800437.17790632, 4800556.1832828475, 4801691.824099347, 4811137.5, 4813238.75735221, 4813507.2731475765, 4816222.608551676, 4820954.463250221, 4822685.9375, 4825614.918811484, 4825772.207608068, 4829031.592712965, 4829564.0625, 4829748.37776867, 4829757.409368143, 4829797.798688729, 4830046.585493731, 4830414.904894442, 4831042.1875, 4831150.232500328, 4831968.610013463, 4832765.923726071, 4834592.1875, 4834729.304645705, 4835826.299785126, 4836283.364991567, 4836326.5294869635, 4836339.466660726, 4836685.597990657, 4837402.973805787, 4838073.492788061, 4839901.062832654, 4840408.053894349, 4840986.945882402, 4847164.048185016, 4878048.625937846, 4884756.25, 4887277.78702943, 4890773.539013049, 4892494.637147731, 4910467.342386764, 4918037.599641635, 4944683.028236688, 4945912.5, 4945951.5625, 4948442.1875, 4950616.684016667, 4951518.899613411, 4951520.3125, 4953900.882479486, 4954141.26140372, 4967593.31611169, 4968819.986150053, 4968822.41467176, 4970683.204774175, 4973309.752518169, 4979318.169619246, 4988218.390141225, 5002932.416232501, 5013311.607694542, 5031730.1895006485, 5057155.714936233, 5057221.224851754, 5057303.125, 5057358.8899920285, 5057364.97455165, 5057392.1875, 5057455.958325769, 5057515.771383166, 5057785.216328497, 5057959.316968443, 5057979.6875, 5058002.311520063, 5058245.9947728235, 5058254.791142792, 5058294.417404316, 5058376.5625, 5058393.184500429, 5058434.375, 5058483.83549786, 5058527.620276615, 5058576.5625, 5058795.134539667, 5058886.225024925, 5058888.321156049, 5058992.9048860865, 5058993.75, 5059044.1638080245, 5059125.0, 5059156.25, 5059170.3125, 5059179.6875, 5059236.665315443, 5059259.946762388, 5059520.3125, 5059642.457445141, 5059691.87549622, 5059744.599334736, 5059752.1342103435, 5059754.833752328, 5059840.1284408895, 5060027.5840370795, 5060093.75, 5060164.0625, 5060267.956106777, 5060307.8125, 5060453.280342707, 5060459.375, 5060607.746166374, 5060734.5907262815, 5060955.946359044, 5061093.973571901, 5061190.488254504, 5061293.75, 5061379.5833348865, 5061387.030847233, 5061412.078286607, 5061413.649803288, 5061421.866065946, 5061453.125, 5061454.6875, 5061462.5, 5061551.044263, 5061561.716369448, 5061572.072808972, 5061587.180310779, 5061596.875, 5061598.4375, 5061707.8125, 5061731.088646864, 5061731.545600005, 5061784.493171512, 5061809.056390169, 5061851.5625, 5061860.9375, 5061943.044425399, 5061968.75, 5061972.232936864, 5062022.366555362, 5062068.490996564, 5062095.86261382, 5062138.735626324, 5062165.154030767, 5062225.0, 5062240.625, 5062253.125, 5062335.988974901, 5062375.229453714, 5062393.016648817, 5062400.609808281, 5062451.538462473, 5062520.171333886, 5062530.929131568, 5062534.176956413, 5062540.909670473, 5062564.775462893, 5062573.931060787, 5062597.803873898, 5062612.5, 5062615.625, 5062624.032629613, 5062624.82417717, 5062625.0, 5062626.248133325, 5062640.394594124, 5062644.200378489, 5062654.6875, 5062683.026169533, 5062731.25, 5062739.410295897, 5062743.378116171, 5062754.209792199, 5062771.8121354645, 5062781.606242457, 5062814.47646817, 5062815.558418432, 5062859.4710574, 5062867.1875, 5062939.300812767, 5062965.625, 5062976.383567099, 5062976.5625, 5063017.1875, 5063036.49135953, 5063090.106439031, 5063096.875, 5063126.397818052, 5063142.543628998, 5063151.5625, 5063200.144979831, 5063202.399638725, 5063284.69011032, 5063313.579263225, 5063370.156323278, 5063441.700381668, 5063491.334287452, 5063587.947795316, 5063590.943748563, 5063592.636735246, 5063684.375, 5063702.2528605815, 5063751.955583153, 5063760.277539247, 5063860.207463788, 5063932.721427018, 5064017.1875, 5064025.0, 5064097.712705746, 5064118.719415492, 5064153.465478856, 5064263.98410736, 5064269.207963124, 5064397.606315619, 5064425.454006766, 5064593.80050517, 5064650.697911256, 5064651.298650086, 5064951.5625, 5064970.613810459, 5065014.122121316, 5065414.493461832, 5065858.315906268, 5066234.085254999, 5066311.807943374, 5066318.082870739, 5067507.9560214905, 5067611.995207154, 5068945.997203255, 5070717.429165864, 5072901.059363554, 5074409.375, 5074774.539426601, 5075200.0399039965, 5077352.157672393, 5077991.452171304, 5078085.74130789, 5078128.125, 5078266.716367628, 5078327.371316027, 5078584.985443555, 5078657.282054411, 5078657.895993846, 5078894.626769827, 5080243.180059418, 5080272.911798492, 5081001.889414373, 5081127.552532604, 5081431.564981024, 5081439.540469732, 5081687.5, 5082337.515919774, 5087187.5, 5087431.25, 5088265.499559053, 5091528.352755224, 5094337.5, 5095827.170552154, 5097545.3125, 5101793.75, 5102896.875, 5105494.236936461, 5107987.5, 5108301.091235481, 5108601.499565975, 5108770.425626857, 5109785.9375, 5110593.4725926295, 5110600.0, 5110715.625, 5119200.705702702, 5120254.152845424, 5165626.137664152, 5167525.0, 5176171.227077161, 5185336.591818488, 5206314.401685999, 5252620.3125, 5269740.625, 5280560.9375, 5281543.6761018215, 5285653.125, 5295414.0625, 5296057.742563156, 5302588.99365054, 5350858.726405945, 5358567.1875, 5358753.602268898, 5388664.0625, 5389329.624617766, 5404610.97230503, 5407142.1875, 5407143.455091165, 5430149.41625478, 5438052.79393401, 5447935.539049063, 5451421.310671317, 5457904.54182917, 5516285.225754383, 5541259.375, 5548762.868530274, 5551382.823884855, 5551479.795956959, 5551908.2768618185, 5552054.002927646, 5552993.417029127, 5553645.201825114, 5553729.270359632, 5554742.1875, 5555565.625, 5555571.791047296, 5560284.375, 5562388.566603021, 5578368.315574092, 5578610.279215442, 5579051.5625, 5579967.298540525, 5580160.43994435, 5580245.7094257595, 5580295.62023525, 5580651.535263166, 5580799.743789756, 5580823.4375, 5581018.75, 5581104.867407812, 5581156.913967373, 5581310.153784182, 5581312.769028445, 5581582.8125, 5581636.874110273, 5581662.25001563, 5582149.837868002, 5582335.805567216, 5582365.265698991, 5582371.228261373, 5582675.916178085, 5582899.752734341, 5583048.223900035, 5583051.47807018, 5583381.113886668, 5583879.6875, 5584649.181903846, 5584884.375, 5584888.606059803, 5585659.371564466, 5587294.88842062, 5594859.889963375, 5597707.027180999, 5607163.228704059, 5607401.413750116, 5607545.75155167, 5607841.807314205, 5609126.35735786, 5609853.125, 5609863.187074156, 5609951.163380249, 5610268.182989659, 5610407.650047468, 5610668.519643836, 5611257.8125, 5612289.0625, 5612399.858395694, 5612448.4375, 5612524.82215956, 5612642.7784073185, 5612893.046739086, 5613290.625, 5613458.543339998, 5613956.445888594, 5617075.0, 5617785.658286686, 5628737.19949259, 5630427.943696074, 5631140.119712469, 5633035.631895765, 5633201.62609682, 5635121.875, 5636616.995842744, 5639044.598735939, 5639105.697886577, 5639725.417030065, 5639820.781102624, 5640612.5, 5641757.569703734, 5642483.807353868, 5643749.471243443, 5644069.998187555, 5645123.4375, 5647916.1047460055, 5649732.539564032, 5651212.5, 5651247.484436591, 5651269.64452679, 5653543.511413851, 5653650.0, 5657808.330703692, 5658020.940522345, 5659116.119194532, 5659313.243893002, 5660595.108751615, 5660790.625, 5661579.6875, 5662185.9375, 5662271.579833607, 5662364.786111276, 5663016.4190111365, 5663193.75, 5663753.125, 5663795.3125, 5664098.338593449, 5665598.969643535, 5665948.777347983, 5667814.512777239, 5669603.125, 5671847.357129374, 5672498.065778529, 5677242.1875, 5677382.020551886, 5677678.922265885, 5677770.118443565, 5678373.4375, 5679376.280460406, 5681418.75, 5681481.956894608, 5683905.352621427, 5683923.731650172, 5684007.592144618, 5684428.125, 5685171.005328485, 5685450.65804366, 5685752.54312209, 5688601.594979533, 5689171.895002032, 5690268.088000984, 5690318.918952751, 5690756.25, 5691788.43200845, 5693220.063085393, 5695771.875, 5695820.890097459, 5700423.991560874, 5702152.231707261, 5702285.26808873, 5704160.9375, 5704191.572581167, 5705071.875, 5706461.688101783, 5706469.0127842175, 5710512.0840309085, 5714165.108319262, 5714285.766329982, 5715191.560791717, 5715964.0625, 5717281.627044855, 5718644.742237488, 5718900.741777499, 5719468.83034938, 5719726.880495532, 5719865.793421499, 5720049.42072342, 5720315.625, 5721190.625, 5722009.792028438, 5723065.625, 5723440.721712415, 5723442.1875, 5723587.5, 5723898.373449815, 5723902.76236463, 5723942.161856843, 5724157.8125, 5724162.5, 5724846.699381776, 5724854.6875, 5725469.8554838495, 5725907.8125, 5726432.4818309015, 5726875.934982862, 5727115.9972610725, 5727727.259130039, 5727871.875, 5727954.6875, 5728093.144239224, 5728719.842479975, 5728732.8125, 5728964.563759779, 5729057.8125, 5729116.897456818, 5729257.8125, 5729268.75, 5729380.021506371, 5729708.795042635, 5729865.94526093, 5729867.1875, 5730161.448104546, 5730343.245247321, 5730612.141029635, 5731441.220349739, 5731463.626983848, 5731958.8880354185, 5733383.606666608, 5733671.660152329, 5733748.343483452, 5733811.628122379, 5733817.213243694, 5734308.229364068, 5734512.18052375, 5734523.5726791425, 5734532.357605127, 5736814.0625, 5736916.365947886, 5737315.523799503, 5738191.401925983, 5738640.133624405, 5738791.913469903, 5738842.1875, 5739273.2564268615, 5739854.664679255, 5740009.375, 5740477.740757572, 5740618.75, 5740665.739997626, 5741079.8890884565, 5741182.8125, 5741431.25, 5741441.682206556, 5741458.682621142, 5741515.095587626, 5741909.122136874, 5741918.438701341, 5741940.625, 5742062.068346532, 5742104.055904064, 5742110.480757137, 5742170.3125, 5742332.388709918, 5742338.505132032, 5742380.645157724, 5742398.788988718, 5742477.513492701, 5742613.199016504, 5742716.145408278, 5742769.772438329, 5742966.22628233, 5743180.492323674, 5743235.055760379, 5743276.187622898, 5743338.444456029, 5743452.501592904, 5743458.917195745, 5743506.835920603, 5743820.3125, 5743873.4375, 5743904.6875, 5744019.159180659, 5744039.343851723, 5744079.006889277, 5744153.125, 5744180.138527478, 5744230.658656804, 5744335.40596627, 5744443.48714697, 5744844.307931607, 5744844.923480136, 5744860.9375, 5744871.875, 5745154.6875, 5745218.75, 5745328.675458908, 5745358.50023685, 5745370.232313908, 5745457.8125, 5745469.67443371, 5745784.375, 5746226.412599781, 5746299.899656154, 5746586.317656598, 5746982.603520331, 5747032.980313807, 5747699.894052543, 5751733.034617171, 5752007.470446666, 5753065.625, 5757868.272002656, 5775161.260969525, 5779001.5625, 5779694.567655719, 5780973.4375, 5781615.625, 5781798.296290584, 5781800.0, 5781836.53825831, 5782345.086625367, 5782353.125, 5782738.807818197, 5782769.033753424, 5783161.676467431, 5783211.42376231, 5783241.624897319, 5783259.322348895, 5783952.742066111, 5784019.242537471, 5784673.507008258, 5785211.941759681, 5785212.5, 5785297.519594452, 5785333.386279766, 5785423.4375, 5785537.710772944, 5785572.391443151, 5786567.882770742, 5786992.1875, 5787737.5, 5788939.696121839, 5789510.15944788, 5789807.782170735, 5790251.5625, 5790257.477776409, 5790307.340771152, 5790342.071222734, 5790882.8125, 5791373.4375, 5791425.0, 5791659.46607441, 5791710.9375, 5791932.8125, 5792352.958878121, 5792415.424151426, 5792635.982993628, 5793221.258077958, 5793386.502211092, 5794138.019010688, 5794435.7107927995, 5798722.273280696, 5799435.9375, 5799499.985840256, 5799635.847818521, 5799814.959566922, 5800201.556638794, 5801254.6875, 5809374.291473943, 5827289.763405556, 5828949.108485171, 5829650.263223238, 5830235.992866091, 5831646.365701334, 5832074.488583604, 5832357.8125, 5834098.008920616, 5835082.34142498, 5835293.45942149, 5836391.897631897, 5840740.625, 5842953.036550848, 5842961.333009294, 5845597.607428403, 5852566.686713182, 5856534.375, 5860189.359829923, 5885588.2100380855, 5887742.1875, 5888119.8569264095, 5888235.894566029, 5889026.362718189, 5889638.982908333, 5889649.890426676, 5889673.344229335, 5889776.289693947, 5889798.4375, 5889821.890362323, 5890527.994132058, 5890837.3438828895, 5891103.230014326, 5891383.631554623, 5891397.572213741, 5891726.5625, 5891789.0625, 5892407.71653714, 5893235.272270177, 5893374.101209622, 5893577.689697702, 5893955.013832873, 5893992.157661687, 5894090.631471355, 5894104.455507698, 5894105.467235425, 5894126.301970121, 5894153.920000506, 5894183.937672451, 5894248.465001959, 5894274.699180813, 5894355.769071594, 5894451.78274238, 5894520.674501834, 5894668.175230303, 5894672.696331881, 5894710.9375, 5894804.062414953, 5895199.023552601, 5895334.441014167, 5895393.832095387, 5895514.0625, 5895905.4502569195, 5895998.179305872, 5896214.0625, 5896395.211965089, 5896403.125, 5896495.776365879, 5896525.370830296, 5896595.186161514, 5896905.6488467865, 5896961.585781314, 5897344.19304296, 5897357.8125, 5897378.208402593, 5897811.69399707, 5897895.520598445, 5897934.375, 5898375.776905326, 5898417.546572954, 5898420.35818675, 5898449.345095996, 5898841.407045607, 5898856.532333145, 5899253.027436224, 5899411.846055223, 5899708.4724738775, 5899903.125, 5900835.9375, 5900855.721736195, 5901062.379247309, 5901065.498995944, 5901347.265532743, 5901471.679966059, 5901565.625, 5901567.1875, 5901658.24217106, 5901794.857318732, 5901946.83095751, 5902193.75, 5902325.8562247455, 5902371.875, 5902372.636333285, 5902775.715859764, 5902892.1875, 5902908.368520293, 5902928.125, 5902976.108288355, 5902982.853186025, 5903197.414475722, 5903226.5625, 5903340.049287706, 5903551.506114374, 5903855.183397087, 5904018.796378239, 5904430.690340114, 5904610.233714581, 5904643.788313039, 5904963.498185469, 5904989.075808963, 5905291.982585258, 5906495.554288641, 5906499.471443691, 5906821.442505834, 5907627.863842772, 5907916.117764849, 5908423.975496151, 5908616.801518817, 5908733.413978184, 5909094.740425064, 5909350.0, 5909399.999600007, 5910743.380710745, 5912471.875, 5913068.98887435, 5913734.890355792, 5915242.9186804, 5915318.342472119, 5915570.267503869, 5925645.3125, 5927768.983830787, 5938925.441171667, 5941426.5625, 5945249.82818521, 5945649.0957135195, 5946592.1875, 5946662.263715516, 5946669.524569791, 5947673.36295494, 5947854.781961367, 5948132.429128155, 5948191.889233093, 5948328.062334231, 5948665.014839767, 5948789.347903476, 5948971.157509936, 5949225.767165864, 5949885.108635318, 5949899.172389849, 5950619.367957196, 5951025.512569588, 5951380.623113922, 5951438.392815345, 5951927.735175476, 5952865.499257124, 5953344.7958842525, 5954332.372400422, 5954818.736287262, 5955247.622086107, 5955767.1875, 5955839.3573522875, 5955881.990845424, 5956552.030046153, 5956976.5625, 5957460.5638235025, 5957879.71330847, 5957978.125, 5959288.709220807, 5961128.204499855, 5968907.596409547, 5973293.493172213, 5974924.512716182, 5975736.762544938, 5977937.5, 5978959.7520524515, 5979182.8125, 5979320.74752347, 5979808.542230849, 5980072.3628367875, 5980422.281002686, 5980493.726028905, 5980536.795240097, 5980798.4375, 5980873.111274002, 5981012.5, 5981056.25, 5981291.39144203, 5981900.534314218, 5981994.037018159, 5982010.227825989, 5982345.5713306805, 5982494.5131705785, 5983285.405227082, 5983340.625, 5983647.69274808, 5985952.961460572, 5994376.5625, 5994833.239185073, 5995144.897014895, 5995574.735264145, 5995853.497573792, 5995942.1875, 5995969.202622758, 5996052.390617266, 5996156.25, 5996270.3125, 5996388.43192426, 5996390.625, 5996551.037716132, 5996579.420063147, 5996602.478458021, 5996630.994107079, 5996937.4060978135, 5997762.016503143, 5998070.144396155, 6002231.25, 6002992.1875, 6003100.0, 6003873.215286677, 6004222.568380859, 6004383.169529647, 6004771.613314407, 6005687.486874667, 6006600.0, 6008599.358545603, 6009773.4375, 6013739.28469794, 6014270.341159562, 6014481.2053191075, 6015340.625, 6020126.5625, 6023260.824824421, 6023831.25, 6024675.0, 6025360.411366146, 6025371.322790053, 6025773.4375, 6026062.916346463, 6026078.125, 6026105.94760279, 6026318.124161199, 6026567.808726994, 6027515.694450116, 6027614.761626355, 6027668.677803103, 6027816.986450568, 6029461.390730576, 6029470.15212643, 6029663.675267493, 6029707.56587785, 6029939.0625, 6030212.936742896, 6030542.923729589, 6030579.858550244, 6030701.5625, 6030950.0, 6031003.593916866, 6031126.409106666, 6031263.209240065, 6031295.593862861, 6031353.36710097, 6031371.875, 6031425.0, 6031481.719601273, 6031495.619045592, 6031624.250773466, 6031697.308994776, 6031983.804538345, 6032013.381215475, 6032153.245079217, 6032405.702228571, 6032482.254976868, 6032628.399602683, 6032805.260934373, 6032812.5, 6032921.794453343, 6033013.374946322, 6033013.922499316, 6033210.43304656, 6033212.76204777, 6033536.94082476, 6033555.938178478, 6033566.712298979, 6033578.547464323, 6033607.215680985, 6033656.480003678, 6033918.436461276, 6034170.3125, 6034424.891535175, 6034648.28762458, 6035064.400356627, 6035338.038575715, 6035455.814625197, 6036285.9375, 6037237.5, 6038181.159148153, 6039755.24419493, 6053851.766120931, 6055550.68716413, 6065162.2187772775, 6065336.818820598, 6065465.39133018, 6066738.311176701, 6068278.375756039, 6068778.013604303, 6068887.371221049, 6069137.450946645, ...], [29.58863087343187, 6.013123291903223, 5.979190536899042, 6.003300321542991, 5.036530822445261, 60.255036964296615, 57.43990089733754, 32.82171105061053, 22.673856907488457, 66.0895112365953, 87.2585950743088, 89.26611390436419, 17.165639473465458, 22.69902566489566, 11.895850172244392, 33.54697016159105, 21.917128819436517, 87.13108584034956, 158.1186213922141, 46.669343519786715, 89.29356255683615, 20.946626783981838, 17.53164622232558, 29.139886967297652, 7.6211204615991, 7.645160177054305, 23.847901205797772, 56.74348988716113, 6.867686985799011, 10.391575618738445, 68.39619358917979, 106.07150086578456, 12.626875931419697, 36.13170413214266, 18.6118452168702, 21.99950216371647, 10.027996558447681, 17.543864018092254, 55.91519947224895, 69.61268288538909, 104.72790803022053, 86.51120225388408, 87.65239939157894, 18.72824071823635, 23.472569148259147, 9.275620063735595, 94.82600345551134, 40.31073603151415, 23.68520773023167, 56.80055159914818, 18.034729724115298, 48.132017429702685, 79.58930283854086, 45.61309398087552, 36.71496972154927, 16.43126818511371, 85.13477137533593, 90.89404226063436, 22.517085135197778, 12.961299703948018, 23.885716452886296, 107.75306165771057, 37.028535317548176, 31.71810208683852, 15.142914274845822, 7.202255957450975, 40.50027786950745, 30.64986720728234, 24.238984900372945, 12.117096696333514, 63.44379013774548, 16.74377250423304, 23.258851240116325, 25.857826262820947, 15.156513922836613, 6.411516379688151, 9.544211755940351, 20.969717072521597, 5.938159859346475, 98.58473282279567, 87.52281269932317, 23.277541993286967, 15.343080644571305, 7.37596732937525, 16.17655743086202, 26.174898582206293, 26.247630324201573, 41.44792198738308, 36.43363130400307, 28.686098414331973, 16.714373345142317, 20.922840091741424, 31.21465746547924, 115.47630865411648, 10.544290339920986, 13.510832241335743, 12.944557618857957, 29.713248043902635, 87.36384823461158, 16.60631568442156, 5.890407374950174, 68.7176723658668, 22.594305107522626, 86.4584403470285, 8.571169167861418, 13.231029638886758, 5.150491656892684, 77.57624338323795, 16.55743833986498, 61.09180063505367, 29.224581172621605, 68.69616977951002, 30.097232504273645, 19.538191984978727, 27.426788593448244, 39.600070580525575, 40.20933106539644, 18.38685339226767, 79.92225073305526, 27.968119720890712, 57.81221617792787, 20.86367788043592, 48.00105557985087, 13.21914547965168, 8.938224079902543, 45.388846571305976, 33.67995387964035, 16.163720310611453, 7.929936840846156, 122.42018115705005, 53.347306095145726, 6.849031181603557, 85.98415407607555, 47.56661390030745, 76.71509048063301, 81.23918736161879, 10.033287467070553, 17.68445966753289, 117.80824671855916, 13.69815067448237, 6.702776007989816, 12.777838420678334, 23.563920042739262, 84.09837025840646, 13.335479710635909, 21.09397924587433, 88.06190908746623, 76.6166112523432, 6.927308752627519, 46.26567133577713, 7.162894161736933, 31.054568073988193, 20.11532351602338, 7.683171304536094, 23.704344631773882, 15.86811620535092, 82.56392927717904, 66.60708973205848, 15.786015535709382, 13.411330833867526, 5.443952642690352, 5.327976200395672, 34.574898149613766, 75.68289662024951, 28.998125670875996, 50.494430691896426, 21.31308524386414, 95.1346213299327, 8.394027386230594, 110.99073345066525, 95.15095256763534, 82.65053052988344, 51.400204008802774, 62.9589862315435, 16.202126091458176, 7.6465448946712025, 23.51590228252514, 41.17364328927903, 82.77511174688064, 6.94755813769317, 57.959964563976015, 5.971194978883471, 17.2171127757101, 96.20708506208058, 5.26080719764574, 23.413431798713226, 21.7876698149429, 42.37677928541336, 66.45202196783828, 139.9291717203577, 5.463980244978579, 44.44671755755008, 19.443398695556517, 17.91821011759445, 39.31074898643593, 16.778939142392737, 90.00408785393338, 54.010198353934754, 21.621448684693835, 19.8570424953525, 11.998040426613638, 72.81879052837725, 41.6864300618458, 68.66250333094916, 17.827062262186526, 8.195737426990938, 45.171843531773554, 6.438915368213014, 97.99069027238255, 8.540026078572966, 93.1347743699184, 7.178774930204609, 76.31126413017658, 23.04508448993068, 14.611236305333959, 8.95769468138494, 79.32975849931347, 87.99474243186698, 5.733620485560963, 32.47861443923661, 5.16760475166418, 53.96888372177243, 15.934933535259772, 31.221093719105983, 21.264582223961387, 81.78563609904415, 79.51496230312314, 39.01103625789369, 91.11838288948306, 39.71343052597616, 25.648174712896274, 16.49814725893293, 48.9963258288366, 7.656529811994122, 7.936945134319086, 16.29595630590407, 21.661968258717852, 71.84906699451082, 6.999031546807867, 16.679403581877423, 11.908065602856855, 6.538246322814525, 16.98347355884805, 91.24883575157763, 5.4255383807065645, 23.051075890307207, 124.59622794513632, 49.60090605662617, 14.605383940271576, 64.35423104348787, 30.87968320271662, 27.03041509279143, 27.93361112235123, 11.705147248580769, 27.06465685803672, 11.92787242014259, 6.918852758396227, 37.92419873891782, 8.313467109865886, 12.427345970308243, 59.171049233036285, 49.05330233272809, 11.63376902805587, 31.059979169591287, 42.41542549276197, 57.80647681068409, 61.48543358871635, 19.769684429162474, 91.6877307622588, 18.741918623312998, 46.665563291794456, 55.45365740149068, 7.1864611064524375, 6.037294919694373, 40.39009040755053, 8.057163480159394, 15.095817809115761, 56.831055666626575, 23.111120279967455, 20.156888057749654, 35.6115198080592, 68.49575098459167, 12.681110249444302, 7.8400279073018915, 10.38879628801087, 15.269594040552985, 29.176840668035076, 20.82266934872127, 10.3946915081158, 25.69883568116275, 28.782428009184276, 7.206787585660043, 6.862834617373932, 62.96737042896073, 218.04776114955152, 39.49078858488868, 60.0360505869281, 26.269807910421893, 15.88699998969368, 58.53353124572781, 30.192309801053266, 154.12151540135005, 61.85216232686685, 62.410202623076344, 109.90801180956862, 29.370684100082556, 62.93631638146235, 27.338545101314953, 38.16473141826943, 59.88768060305901, 24.043685749748647, 38.56963873359549, 85.94546207359248, 18.54537627545356, 64.94982461825153, 15.925914249952141, 37.658767272442205, 44.920112491077205, 5.180885603900227, 38.78365157943695, 52.029281975953865, 29.004116385849496, 35.89420293591756, 33.01649142685733, 68.01895868348608, 32.216117762519865, 35.077715084669364, 57.707075254045435, 12.93670734939987, 73.50980559367132, 17.137281430205782, 46.99500281944895, 5.933948005541394, 7.615874763512991, 32.61928126832821, 8.136547735354988, 63.7126795113048, 9.066323971492514, 13.6130440476448, 14.01899856170469, 14.413903141324274, 93.20453061581944, 41.32695152899456, 11.757130697226865, 11.145548814562133, 12.18572430095863, 5.980891514276106, 63.46664734918524, 124.38754275585882, 17.915349785290005, 81.92436759911303, 86.13259217743091, 72.00627481076366, 39.350878352352126, 41.17510397500337, 21.534127931002633, 16.793304113132983, 23.29067283774042, 35.55003681096477, 11.305822317684981, 35.25756948358122, 9.691201710633495, 16.26031373139137, 134.2767640522529, 67.94280180638309, 49.354523993136766, 50.78749332347215, 15.674637575344276, 9.963917273715856, 120.39041573051313, 7.703527810165962, 119.77485805480842, 5.272137701488493, 24.411361479543295, 25.687497096967807, 10.927564716134476, 82.51444525358178, 26.555655048824846, 27.954171540131373, 84.33203822970276, 14.185411151290735, 82.84507475328394, 56.1701930944335, 147.18458452985564, 30.441982438386063, 33.137597756085306, 31.168694803331952, 14.928430921212467, 56.58835244548722, 8.579062061272031, 118.75534338313633, 25.34260670360421, 8.209451726534576, 16.928512147064094, 13.666620670127259, 10.821513277771839, 78.8385825159413, 131.2778971062814, 31.36297095529367, 20.849704467634233, 6.731501842957322, 69.37454894189588, 63.77445108495503, 56.84701386365233, 26.00941719096735, 29.430155944864435, 10.860661213572588, 38.02061845542407, 19.67976944401531, 48.06384196977826, 18.719477567290813, 18.281745522096745, 62.31168881182456, 145.06028762775287, 23.744262356904493, 9.182665397433007, 5.033130490501638, 23.67941830867215, 33.22605966864329, 46.99119882441003, 67.89236564166333, 20.02445572373889, 13.185550250434439, 18.38893073807226, 5.48224548730921, 82.25219365776651, 24.510016961081085, 60.23964499919283, 21.21095572504592, 121.19991205326431, 74.1138385248551, 17.15105227273944, 13.99413726980599, 109.03475933161782, 5.8604928199782345, 19.966567689109155, 10.774193444991296, 97.9846210510168, 15.970254081291198, 5.861957352830121, 15.71029103486212, 31.402815695009828, 25.063348003659982, 62.280221214054606, 46.82029002633393, 38.954865796790926, 62.21556120848513, 8.71027929247403, 77.63896151208834, 29.42384295314337, 90.76151221005166, 73.51946485277568, 74.81365216418989, 15.36367726101761, 9.63630461855608, 7.774639925690392, 77.44710537010421, 73.97885062470277, 36.73674071123894, 85.69667173353788, 12.591777674639316, 96.96738113721364, 31.742244378483953, 105.08449865932629, 7.049234475486028, 67.40019004836985, 18.55353619536639, 12.355248470357454, 27.702048416285095, 8.173388691521716, 57.09174708716152, 18.457831319977466, 17.691774192015487, 36.67452098772995, 11.178856765442532, 11.159115859525352, 32.501398107497, 9.478468366836928, 78.03876559821327, 10.267092852639788, 14.069064375391543, 117.54374124793279, 23.786331267866014, 11.231798797192525, 18.29998054186097, 51.7074089163716, 47.66148890101209, 8.860475071080499, 38.04900024837451, 18.859372601031076, 11.564897304380068, 104.11941252125294, 22.276122848476668, 51.841514616946064, 52.53950421834685, 72.8784269145402, 11.773054892388664, 5.772957179672421, 12.52585004508145, 31.20077200916065, 7.207629559526611, 11.401576505097877, 101.56106179259196, 33.62314742349871, 39.39273990769714, 7.23556749770644, 63.13904740454205, 6.098214532055541, 47.29207529463264, 67.66936424483958, 14.70287349787062, 31.282738999990922, 6.758397886720064, 75.75342728753296, 70.86210407852728, 42.88427642253301, 49.32671452504241, 29.082909528357646, 50.763343953031985, 23.366735132992915, 130.06202880816636, 7.22287124159641, 12.424504531140556, 63.67798489338284, 34.03409601652326, 41.31907052492366, 21.797472116080503, 93.67240525189415, 5.739419861370489, 55.08516891998393, 23.878764913285973, 43.959170752373645, 59.620014038108025, 50.97696007339596, 20.73091684480062, 16.32097504225808, 34.338991974371964, 14.736816960526715, 7.430339263769703, 25.40137338617304, 12.20603245009053, 21.70834855704802, 8.951004629896785, 12.64668182944237, 8.176138708869907, 5.457745661140083, 9.992671157365171, 11.089736782086351, 16.810402941520266, 23.50510718822907, 24.001186719834838, 21.95516594961798, 38.607162074097424, 5.314536776682878, 5.3946192746798145, 19.050005816683257, 18.85300613901222, 5.519927175435018, 51.9994129202784, 25.398826116853265, 118.0226467709136, 32.80178128662839, 22.7311730001171, 84.4120219408714, 11.312342306061307, 35.52378380349567, 45.19405178690762, 59.160733781562435, 27.47248009495252, 88.23584228069168, 5.585412120543701, 27.63692825109865, 14.887997116119031, 45.82648092918261, 6.2141601422364365, 5.5031927675337355, 179.17383484832206, 64.77591554801371, 114.48913017440125, 13.171627533475874, 7.990685249268311, 30.037738067862577, 44.88090333933658, 16.06384086524375, 9.813947272407598, 59.383389536714816, 8.63238064204879, 19.25757319855421, 18.376741871648306, 19.045958770892767, 28.301953889312685, 6.393614147430905, 10.480340008602097, 45.1289051443304, 42.065346376722175, 58.093946244313834, 44.359756747316915, 9.703137035814217, 11.330186909003562, 79.78300841520715, 49.67106201376091, 28.995775290100035, 20.627856427652087, 21.18419813488809, 38.32306893387646, 5.989512318154766, 21.796744192798574, 127.27564801313973, 35.54365366304842, 46.53878654511147, 39.00816945427159, 9.844674688994706, 43.75525162482327, 20.97861736069787, 57.7420853539511, 135.16593779843163, 28.94737423590148, 8.208867020768695, 65.86930271642618, 16.619792097135807, 87.97474844208782, 5.404928381086731, 7.093877036369362, 65.00248146593755, 9.058008093343485, 49.25250326282788, 30.697426306192853, 16.336613557616875, 47.62604257421883, 13.064580551631202, 62.64252595015313, 53.490433148251256, 43.41227475113059, 35.03187229275949, 8.632052916336487, 24.74613649723405, 44.248901860863675, 24.34740967348508, 16.14586777476343, 8.720258069711573, 17.18741987813594, 13.157800860072319, 14.744555043740121, 94.39570331497416, 6.14086152590252, 15.213230366136747, 6.403003571027271, 47.52581759637586, 12.310764576886648, 42.38090188817529, 51.00848445960369, 5.957973515154257, 133.33874435027187, 53.55560965941798, 77.96897893720686, 62.94285344807247, 53.303516219863525, 27.33357572418587, 11.08062883800262, 101.01709599011423, 10.28305224721063, 5.67737954712575, 9.234982077623535, 34.824768986893176, 31.274257934117276, 51.555069713830655, 7.14559992950007, 70.44908930319626, 79.81699637353861, 51.30177916843205, 35.839295029191156, 6.7726231328804465, 20.40098539695513, 27.318082907588305, 62.63095869571045, 41.4851031928201, 16.71317149961085, 45.28997244930633, 42.43931468347736, 30.669967157868513, 26.27610996557523, 26.620586299729965, 56.599293890211385, 154.60416975541347, 18.512628995099252, 7.309758951314999, 5.833716679530694, 15.156823529070426, 10.415163256354491, 21.379966568996625, 87.35679189329639, 30.793658732906202, 13.405969042173526, 23.8718388112989, 9.097767556199974, 80.00360573435313, 90.82210842219042, 23.071814140230206, 12.504655532843772, 21.485254901763916, 115.73918453923262, 67.51013590530465, 72.51991303570341, 35.993375913794466, 10.48319497174904, 159.275675516808, 25.121259735890686, 11.005537860165054, 19.682611462741594, 6.745027573581271, 59.940785549317674, 97.21146698345758, 15.000388490658427, 56.77154574615433, 25.780829101411303, 9.421805783242284, 10.135439182232208, 75.03426347287885, 66.88179974684819, 66.98991823689818, 10.980951972865487, 19.989314189082673, 126.78771720670463, 119.53453094229491, 37.65413788501635, 14.828986445468718, 132.73433967720177, 9.1426531081127, 12.613042944227386, 24.2683599381085, 71.26030866472844, 94.94537371499564, 42.19518158344647, 23.740283314921147, 58.175845692868926, 6.111305906633936, 44.463435662832055, 8.888496408619057, 19.383180592609026, 62.82526954346786, 10.273544490253835, 18.56018132163353, 5.818880949711984, 19.68386171860231, 52.35376037506215, 18.946779477891493, 30.791565495152796, 38.015114387067754, 26.68352236732353, 95.29827295780683, 17.063281137693114, 6.315215237427503, 9.226813663774406, 7.992355538524987, 19.063093336659776, 40.350571353213226, 77.48394191647064, 5.247485571277888, 12.559443306681302, 8.399776809151035, 132.52599090099056, 6.3706119478299, 26.284300773553124, 15.118552974481538, 57.72325287829578, 5.31587120216449, 12.243698236720867, 26.733920254478743, 33.7714957085976, 9.959634482763155, 69.5034491221378, 38.474536868201184, 8.025673505746854, 21.53079848991196, 63.69181546748452, 11.798420656676008, 14.246825972466857, 53.35083573337083, 64.58059327412963, 30.459992207967396, 5.120891849377677, 7.1099221539922315, 57.11337409766291, 85.96583804286126, 42.017976807475875, 10.070393239962389, 134.75311673656932, 63.487224208154835, 36.0257129263109, 53.47697593620139, 13.453223654406633, 15.098886783181246, 9.833404252661559, 43.18409470948174, 30.99236745744492, 70.8467119136024, 12.002690988375058, 11.20098111985003, 16.7204246082171, 28.822062952521193, 15.08957969215245, 13.153288662388174, 11.148573485762082, 10.821837404899103, 8.418716336698234, 8.025538588324657, 10.51289014353343, 24.259917000638787, 11.996457345738932, 17.48364088740629, 22.71125593628258, 87.64306884308652, 27.463879625852492, 54.86414795871107, 28.517305828635614, 36.06159831258367, 55.19724084030533, 8.417071044587692, 19.326206517984076, 12.501834592280364, 5.155977958487809, 11.058095856510707, 101.31291957721837, 101.613395612086, 8.53451977222515, 67.99093461053805, 7.542255220384911, 7.86001427094424, 114.94844167545165, 17.43137710542806, 8.743569372376395, 18.207300394123184, 18.82360223214336, 9.026995800270885, 23.772904787792502, 61.803912104388395, 55.91551889592126, 11.605174344252825, 12.767407284766916, 23.46026102073677, 18.739101950477952, 69.223053062016, 17.969344847762954, 9.805988335843852, 63.521721948853795, 5.226780954491482, 33.41004235284766, 103.86232607907216, 92.87331924930952, 45.85380830912696, 6.0866743727030705, 19.43040325763514, 39.07177345564601, 6.8238346735922475, 115.03355890586418, 5.556210619216946, 86.66065629095426, 58.561335552215745, 24.08467273859024, 55.476852929906315, 23.093223000817314, 15.253438254365474, 92.67225049230292, 7.512915682835425, 49.55198415495769, 23.627107548049075, 90.63794030577407, 16.603939991285458, 57.90057458084763, 11.883332112749589, 5.56957678478889, 17.196238047277863, 42.45031212599103, 15.242667376780188, 19.66781938033836, 49.838398453731415, 106.90662899326163, 73.71644399576309, 64.01764373365235, 18.973487111259157, 21.072333071731506, 24.88312471128592, 28.08878624750984, 5.545775674061278, 177.08738677166303, 8.918536891581448, 37.76563676441137, 6.6234051353243775, 10.881356675704582, 107.48062797371517, 11.867271279146097, 92.34070143602322, 73.21429642706933, 82.70012002191294, 39.769386894845795, 6.857363510344116, 19.43542450695703, 58.084522966450606, 41.07063654266471, 10.266992499674979, 38.93678511652963, 10.3958331358021, 103.45431492861424, 26.770351936182657, 9.124014813153853, 21.658872234551858, 21.659322884187155, 84.1453782648343, 29.20460829252314, 46.06287048081082, 35.196022888088436, 14.157176636644984, 7.874874188515059, 16.502663506090222, 29.696490559574173, 14.891716686187884, 29.699086432627432, 8.842143653599864, 47.70568853048346, 35.880154388358704, 93.24561576033543, 93.75497436026548, 35.241271971532214, 29.266859826950455, 14.528757725415494, 78.64299133540857, 73.69940658210875, 21.236303182174506, 20.98762280983384, 89.88662101061408, 16.807674063604534, 35.202590612144135, 23.72016884179491, 20.323376488290954, 28.409589394416475, 32.12706754334987, 10.001906683514965, 23.061168479772952, 68.36318842561138, 110.88574913565225, 25.71469818336793, 9.024118914446701, 10.762926049420711, 46.94227802800972, 11.886652474614891, 38.17208461181893, 118.81260872197495, 53.184833253339235, 28.933515141238793, 118.93375037624403, 66.85906848910464, 18.56962084328858, 108.61609469914276, 11.528456342902238, 80.88213745685944, 38.47005548069495, 19.362009803008327, 7.718005025181776, 19.321602736941866, 12.82006128120895, 74.65341458946124, 13.91677600433541, 45.33674473278468, 7.416446136824574, 71.49950321608233, 8.43733382018328, 23.36113116731693, 77.0931413046868, 27.027009923956264, 31.79734120058278, 80.52092912890588, 99.23725369084207, 74.1532734925672, 5.377519053608081, 6.228589739465931, 19.578254159683816, 6.850884646908363, 10.307504487018388, 20.988358244605166, 5.596930759479528, 78.78391106532231, 7.09322848827779, 14.399452881971982, 8.473705195962532, 8.593515278938487, 24.241685351929156, 32.44981507497408, 65.41967925146174, 108.51284744742459, 8.604673080936221, 6.519491454848197, 18.419654384202847, 7.049438229924267, 17.254802918181852, 14.119872235499715, 19.305662986775083, 31.84014191665844, 10.95794069451702, 26.21552148106503, 27.590162308790212, ...])
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);
([4063620.86077074, 4068661.746777689, 4068731.6957834936, 4070063.2055740897, 4071413.7628890504, 4073539.0625, 4122955.3456305186, 4197573.061755495, 4202673.841929837, 4220449.881559829, 4222815.2811364075, 4615221.875, 4616222.35736416, 4616845.422576731, 4620908.253997973, 4625676.101061269, 4625693.291481639, 4633329.6875, 4682318.497231796, 4749078.125, 4759207.8125, 4759586.943416327, 4761109.9211613815, 4779742.927214024, 4781237.549174068, 4785148.551940935, 4785938.770068392, 4786509.375, 4786756.750358483, 4787568.221792183, 4787680.92097959, 4787750.0, 4788008.598183995, 4790620.3125, 4791505.402872057, 4792580.799308981, 4792838.223000537, 4793452.1107300315, 4794245.3125, 4794886.819110905, 4795364.998963897, 4795799.613238417, 4799739.0625, 4800036.669589174, 4800437.17790632, 4800556.1832828475, 4801691.824099347, 4811137.5, 4813238.75735221, 4813507.2731475765, 4816222.608551676, 4820954.463250221, 4822685.9375, 4825614.918811484, 4825772.207608068, 4829031.592712965, 4829564.0625, 4829748.37776867, 4829757.409368143, 4829797.798688729, 4830046.585493731, 4830414.904894442, 4831042.1875, 4831150.232500328, 4831968.610013463, 4832765.923726071, 4834592.1875, 4834729.304645705, 4835826.299785126, 4836283.364991567, 4836326.5294869635, 4836339.466660726, 4836685.597990657, 4837402.973805787, 4838073.492788061, 4839901.062832654, 4840408.053894349, 4840986.945882402, 4847164.048185016, 4878048.625937846, 4884756.25, 4887277.78702943, 4890773.539013049, 4892494.637147731, 4910467.342386764, 4918037.599641635, 4944683.028236688, 4945912.5, 4945951.5625, 4948442.1875, 4950616.684016667, 4951518.899613411, 4951520.3125, 4953900.882479486, 4954141.26140372, 4967593.31611169, 4968819.986150053, 4968822.41467176, 4970683.204774175, 4973309.752518169, 4979318.169619246, 4988218.390141225, 5002932.416232501, 5013311.607694542, 5031730.1895006485, 5057155.714936233, 5057221.224851754, 5057303.125, 5057358.8899920285, 5057364.97455165, 5057392.1875, 5057455.958325769, 5057515.771383166, 5057785.216328497, 5057959.316968443, 5057979.6875, 5058002.311520063, 5058245.9947728235, 5058254.791142792, 5058294.417404316, 5058376.5625, 5058393.184500429, 5058434.375, 5058483.83549786, 5058527.620276615, 5058576.5625, 5058795.134539667, 5058886.225024925, 5058888.321156049, 5058992.9048860865, 5058993.75, 5059044.1638080245, 5059125.0, 5059156.25, 5059170.3125, 5059179.6875, 5059236.665315443, 5059259.946762388, 5059520.3125, 5059642.457445141, 5059691.87549622, 5059744.599334736, 5059752.1342103435, 5059754.833752328, 5059840.1284408895, 5060027.5840370795, 5060093.75, 5060164.0625, 5060267.956106777, 5060307.8125, 5060453.280342707, 5060459.375, 5060607.746166374, 5060734.5907262815, 5060955.946359044, 5061093.973571901, 5061190.488254504, 5061293.75, 5061379.5833348865, 5061387.030847233, 5061412.078286607, 5061413.649803288, 5061421.866065946, 5061453.125, 5061454.6875, 5061462.5, 5061551.044263, 5061561.716369448, 5061572.072808972, 5061587.180310779, 5061596.875, 5061598.4375, 5061707.8125, 5061731.088646864, 5061731.545600005, 5061784.493171512, 5061809.056390169, 5061851.5625, 5061860.9375, 5061943.044425399, 5061968.75, 5061972.232936864, 5062022.366555362, 5062068.490996564, 5062095.86261382, 5062138.735626324, 5062165.154030767, 5062225.0, 5062240.625, 5062253.125, 5062335.988974901, 5062375.229453714, 5062393.016648817, 5062400.609808281, 5062451.538462473, 5062520.171333886, 5062530.929131568, 5062534.176956413, 5062540.909670473, 5062564.775462893, 5062573.931060787, 5062597.803873898, 5062612.5, 5062615.625, 5062624.032629613, 5062624.82417717, 5062625.0, 5062626.248133325, 5062640.394594124, 5062644.200378489, 5062654.6875, 5062683.026169533, 5062731.25, 5062739.410295897, 5062743.378116171, 5062754.209792199, 5062771.8121354645, 5062781.606242457, 5062814.47646817, 5062815.558418432, 5062859.4710574, 5062867.1875, 5062939.300812767, 5062965.625, 5062976.383567099, 5062976.5625, 5063017.1875, 5063036.49135953, 5063090.106439031, 5063096.875, 5063126.397818052, 5063142.543628998, 5063151.5625, 5063200.144979831, 5063202.399638725, 5063284.69011032, 5063313.579263225, 5063370.156323278, 5063441.700381668, 5063491.334287452, 5063587.947795316, 5063590.943748563, 5063592.636735246, 5063684.375, 5063702.2528605815, 5063751.955583153, 5063760.277539247, 5063860.207463788, 5063932.721427018, 5064017.1875, 5064025.0, 5064097.712705746, 5064118.719415492, 5064153.465478856, 5064263.98410736, 5064269.207963124, 5064397.606315619, 5064425.454006766, 5064593.80050517, 5064650.697911256, 5064651.298650086, 5064951.5625, 5064970.613810459, 5065014.122121316, 5065414.493461832, 5065858.315906268, 5066234.085254999, 5066311.807943374, 5066318.082870739, 5067507.9560214905, 5067611.995207154, 5068945.997203255, 5070717.429165864, 5072901.059363554, 5074409.375, 5074774.539426601, 5075200.0399039965, 5077352.157672393, 5077991.452171304, 5078085.74130789, 5078128.125, 5078266.716367628, 5078327.371316027, 5078584.985443555, 5078657.282054411, 5078657.895993846, 5078894.626769827, 5080243.180059418, 5080272.911798492, 5081001.889414373, 5081127.552532604, 5081431.564981024, 5081439.540469732, 5081687.5, 5082337.515919774, 5087187.5, 5087431.25, 5088265.499559053, 5091528.352755224, 5094337.5, 5095827.170552154, 5097545.3125, 5101793.75, 5102896.875, 5105494.236936461, 5107987.5, 5108301.091235481, 5108601.499565975, 5108770.425626857, 5109785.9375, 5110593.4725926295, 5110600.0, 5110715.625, 5119200.705702702, 5120254.152845424, 5165626.137664152, 5167525.0, 5176171.227077161, 5185336.591818488, 5206314.401685999, 5252620.3125, 5269740.625, 5280560.9375, 5281543.6761018215, 5285653.125, 5295414.0625, 5296057.742563156, 5302588.99365054, 5350858.726405945, 5358567.1875, 5358753.602268898, 5388664.0625, 5389329.624617766, 5404610.97230503, 5407142.1875, 5407143.455091165, 5430149.41625478, 5438052.79393401, 5447935.539049063, 5451421.310671317, 5457904.54182917, 5516285.225754383, 5541259.375, 5548762.868530274, 5551382.823884855, 5551479.795956959, 5551908.2768618185, 5552054.002927646, 5552993.417029127, 5553645.201825114, 5553729.270359632, 5554742.1875, 5555565.625, 5555571.791047296, 5560284.375, 5562388.566603021, 5578368.315574092, 5578610.279215442, 5579051.5625, 5579967.298540525, 5580160.43994435, 5580245.7094257595, 5580295.62023525, 5580651.535263166, 5580799.743789756, 5580823.4375, 5581018.75, 5581104.867407812, 5581156.913967373, 5581310.153784182, 5581312.769028445, 5581582.8125, 5581636.874110273, 5581662.25001563, 5582149.837868002, 5582335.805567216, 5582365.265698991, 5582371.228261373, 5582675.916178085, 5582899.752734341, 5583048.223900035, 5583051.47807018, 5583381.113886668, 5583879.6875, 5584649.181903846, 5584884.375, 5584888.606059803, 5585659.371564466, 5587294.88842062, 5594859.889963375, 5597707.027180999, 5607163.228704059, 5607401.413750116, 5607545.75155167, 5607841.807314205, 5609126.35735786, 5609853.125, 5609863.187074156, 5609951.163380249, 5610268.182989659, 5610407.650047468, 5610668.519643836, 5611257.8125, 5612289.0625, 5612399.858395694, 5612448.4375, 5612524.82215956, 5612642.7784073185, 5612893.046739086, 5613290.625, 5613458.543339998, 5613956.445888594, 5617075.0, 5617785.658286686, 5628737.19949259, 5630427.943696074, 5631140.119712469, 5633035.631895765, 5633201.62609682, 5635121.875, 5636616.995842744, 5639044.598735939, 5639105.697886577, 5639725.417030065, 5639820.781102624, 5640612.5, 5641757.569703734, 5642483.807353868, 5643749.471243443, 5644069.998187555, 5645123.4375, 5647916.1047460055, 5649732.539564032, 5651212.5, 5651247.484436591, 5651269.64452679, 5653543.511413851, 5653650.0, 5657808.330703692, 5658020.940522345, 5659116.119194532, 5659313.243893002, 5660595.108751615, 5660790.625, 5661579.6875, 5662185.9375, 5662271.579833607, 5662364.786111276, 5663016.4190111365, 5663193.75, 5663753.125, 5663795.3125, 5664098.338593449, 5665598.969643535, 5665948.777347983, 5667814.512777239, 5669603.125, 5671847.357129374, 5672498.065778529, 5677242.1875, 5677382.020551886, 5677678.922265885, 5677770.118443565, 5678373.4375, 5679376.280460406, 5681418.75, 5681481.956894608, 5683905.352621427, 5683923.731650172, 5684007.592144618, 5684428.125, 5685171.005328485, 5685450.65804366, 5685752.54312209, 5688601.594979533, 5689171.895002032, 5690268.088000984, 5690318.918952751, 5690756.25, 5691788.43200845, 5693220.063085393, 5695771.875, 5695820.890097459, 5700423.991560874, 5702152.231707261, 5702285.26808873, 5704160.9375, 5704191.572581167, 5705071.875, 5706461.688101783, 5706469.0127842175, 5710512.0840309085, 5714165.108319262, 5714285.766329982, 5715191.560791717, 5715964.0625, 5717281.627044855, 5718644.742237488, 5718900.741777499, 5719468.83034938, 5719726.880495532, 5719865.793421499, 5720049.42072342, 5720315.625, 5721190.625, 5722009.792028438, 5723065.625, 5723440.721712415, 5723442.1875, 5723587.5, 5723898.373449815, 5723902.76236463, 5723942.161856843, 5724157.8125, 5724162.5, 5724846.699381776, 5724854.6875, 5725469.8554838495, 5725907.8125, 5726432.4818309015, 5726875.934982862, 5727115.9972610725, 5727727.259130039, 5727871.875, 5727954.6875, 5728093.144239224, 5728719.842479975, 5728732.8125, 5728964.563759779, 5729057.8125, 5729116.897456818, 5729257.8125, 5729268.75, 5729380.021506371, 5729708.795042635, 5729865.94526093, 5729867.1875, 5730161.448104546, 5730343.245247321, 5730612.141029635, 5731441.220349739, 5731463.626983848, 5731958.8880354185, 5733383.606666608, 5733671.660152329, 5733748.343483452, 5733811.628122379, 5733817.213243694, 5734308.229364068, 5734512.18052375, 5734523.5726791425, 5734532.357605127, 5736814.0625, 5736916.365947886, 5737315.523799503, 5738191.401925983, 5738640.133624405, 5738791.913469903, 5738842.1875, 5739273.2564268615, 5739854.664679255, 5740009.375, 5740477.740757572, 5740618.75, 5740665.739997626, 5741079.8890884565, 5741182.8125, 5741431.25, 5741441.682206556, 5741458.682621142, 5741515.095587626, 5741909.122136874, 5741918.438701341, 5741940.625, 5742062.068346532, 5742104.055904064, 5742110.480757137, 5742170.3125, 5742332.388709918, 5742338.505132032, 5742380.645157724, 5742398.788988718, 5742477.513492701, 5742613.199016504, 5742716.145408278, 5742769.772438329, 5742966.22628233, 5743180.492323674, 5743235.055760379, 5743276.187622898, 5743338.444456029, 5743452.501592904, 5743458.917195745, 5743506.835920603, 5743820.3125, 5743873.4375, 5743904.6875, 5744019.159180659, 5744039.343851723, 5744079.006889277, 5744153.125, 5744180.138527478, 5744230.658656804, 5744335.40596627, 5744443.48714697, 5744844.307931607, 5744844.923480136, 5744860.9375, 5744871.875, 5745154.6875, 5745218.75, 5745328.675458908, 5745358.50023685, 5745370.232313908, 5745457.8125, 5745469.67443371, 5745784.375, 5746226.412599781, 5746299.899656154, 5746586.317656598, 5746982.603520331, 5747032.980313807, 5747699.894052543, 5751733.034617171, 5752007.470446666, 5753065.625, 5757868.272002656, 5775161.260969525, 5779001.5625, 5779694.567655719, 5780973.4375, 5781615.625, 5781798.296290584, 5781800.0, 5781836.53825831, 5782345.086625367, 5782353.125, 5782738.807818197, 5782769.033753424, 5783161.676467431, 5783211.42376231, 5783241.624897319, 5783259.322348895, 5783952.742066111, 5784019.242537471, 5784673.507008258, 5785211.941759681, 5785212.5, 5785297.519594452, 5785333.386279766, 5785423.4375, 5785537.710772944, 5785572.391443151, 5786567.882770742, 5786992.1875, 5787737.5, 5788939.696121839, 5789510.15944788, 5789807.782170735, 5790251.5625, 5790257.477776409, 5790307.340771152, 5790342.071222734, 5790882.8125, 5791373.4375, 5791425.0, 5791659.46607441, 5791710.9375, 5791932.8125, 5792352.958878121, 5792415.424151426, 5792635.982993628, 5793221.258077958, 5793386.502211092, 5794138.019010688, 5794435.7107927995, 5798722.273280696, 5799435.9375, 5799499.985840256, 5799635.847818521, 5799814.959566922, 5800201.556638794, 5801254.6875, 5809374.291473943, 5827289.763405556, 5828949.108485171, 5829650.263223238, 5830235.992866091, 5831646.365701334, 5832074.488583604, 5832357.8125, 5834098.008920616, 5835082.34142498, 5835293.45942149, 5836391.897631897, 5840740.625, 5842953.036550848, 5842961.333009294, 5845597.607428403, 5852566.686713182, 5856534.375, 5860189.359829923, 5885588.2100380855, 5887742.1875, 5888119.8569264095, 5888235.894566029, 5889026.362718189, 5889638.982908333, 5889649.890426676, 5889673.344229335, 5889776.289693947, 5889798.4375, 5889821.890362323, 5890527.994132058, 5890837.3438828895, 5891103.230014326, 5891383.631554623, 5891397.572213741, 5891726.5625, 5891789.0625, 5892407.71653714, 5893235.272270177, 5893374.101209622, 5893577.689697702, 5893955.013832873, 5893992.157661687, 5894090.631471355, 5894104.455507698, 5894105.467235425, 5894126.301970121, 5894153.920000506, 5894183.937672451, 5894248.465001959, 5894274.699180813, 5894355.769071594, 5894451.78274238, 5894520.674501834, 5894668.175230303, 5894672.696331881, 5894710.9375, 5894804.062414953, 5895199.023552601, 5895334.441014167, 5895393.832095387, 5895514.0625, 5895905.4502569195, 5895998.179305872, 5896214.0625, 5896395.211965089, 5896403.125, 5896495.776365879, 5896525.370830296, 5896595.186161514, 5896905.6488467865, 5896961.585781314, 5897344.19304296, 5897357.8125, 5897378.208402593, 5897811.69399707, 5897895.520598445, 5897934.375, 5898375.776905326, 5898417.546572954, 5898420.35818675, 5898449.345095996, 5898841.407045607, 5898856.532333145, 5899253.027436224, 5899411.846055223, 5899708.4724738775, 5899903.125, 5900835.9375, 5900855.721736195, 5901062.379247309, 5901065.498995944, 5901347.265532743, 5901471.679966059, 5901565.625, 5901567.1875, 5901658.24217106, 5901794.857318732, 5901946.83095751, 5902193.75, 5902325.8562247455, 5902371.875, 5902372.636333285, 5902775.715859764, 5902892.1875, 5902908.368520293, 5902928.125, 5902976.108288355, 5902982.853186025, 5903197.414475722, 5903226.5625, 5903340.049287706, 5903551.506114374, 5903855.183397087, 5904018.796378239, 5904430.690340114, 5904610.233714581, 5904643.788313039, 5904963.498185469, 5904989.075808963, 5905291.982585258, 5906495.554288641, 5906499.471443691, 5906821.442505834, 5907627.863842772, 5907916.117764849, 5908423.975496151, 5908616.801518817, 5908733.413978184, 5909094.740425064, 5909350.0, 5909399.999600007, 5910743.380710745, 5912471.875, 5913068.98887435, 5913734.890355792, 5915242.9186804, 5915318.342472119, 5915570.267503869, 5925645.3125, 5927768.983830787, 5938925.441171667, 5941426.5625, 5945249.82818521, 5945649.0957135195, 5946592.1875, 5946662.263715516, 5946669.524569791, 5947673.36295494, 5947854.781961367, 5948132.429128155, 5948191.889233093, 5948328.062334231, 5948665.014839767, 5948789.347903476, 5948971.157509936, 5949225.767165864, 5949885.108635318, 5949899.172389849, 5950619.367957196, 5951025.512569588, 5951380.623113922, 5951438.392815345, 5951927.735175476, 5952865.499257124, 5953344.7958842525, 5954332.372400422, 5954818.736287262, 5955247.622086107, 5955767.1875, 5955839.3573522875, 5955881.990845424, 5956552.030046153, 5956976.5625, 5957460.5638235025, 5957879.71330847, 5957978.125, 5959288.709220807, 5961128.204499855, 5968907.596409547, 5973293.493172213, 5974924.512716182, 5975736.762544938, 5977937.5, 5978959.7520524515, 5979182.8125, 5979320.74752347, 5979808.542230849, 5980072.3628367875, 5980422.281002686, 5980493.726028905, 5980536.795240097, 5980798.4375, 5980873.111274002, 5981012.5, 5981056.25, 5981291.39144203, 5981900.534314218, 5981994.037018159, 5982010.227825989, 5982345.5713306805, 5982494.5131705785, 5983285.405227082, 5983340.625, 5983647.69274808, 5985952.961460572, 5994376.5625, 5994833.239185073, 5995144.897014895, 5995574.735264145, 5995853.497573792, 5995942.1875, 5995969.202622758, 5996052.390617266, 5996156.25, 5996270.3125, 5996388.43192426, 5996390.625, 5996551.037716132, 5996579.420063147, 5996602.478458021, 5996630.994107079, 5996937.4060978135, 5997762.016503143, 5998070.144396155, 6002231.25, 6002992.1875, 6003100.0, 6003873.215286677, 6004222.568380859, 6004383.169529647, 6004771.613314407, 6005687.486874667, 6006600.0, 6008599.358545603, 6009773.4375, 6013739.28469794, 6014270.341159562, 6014481.2053191075, 6015340.625, 6020126.5625, 6023260.824824421, 6023831.25, 6024675.0, 6025360.411366146, 6025371.322790053, 6025773.4375, 6026062.916346463, 6026078.125, 6026105.94760279, 6026318.124161199, 6026567.808726994, 6027515.694450116, 6027614.761626355, 6027668.677803103, 6027816.986450568, 6029461.390730576, 6029470.15212643, 6029663.675267493, 6029707.56587785, 6029939.0625, 6030212.936742896, 6030542.923729589, 6030579.858550244, 6030701.5625, 6030950.0, 6031003.593916866, 6031126.409106666, 6031263.209240065, 6031295.593862861, 6031353.36710097, 6031371.875, 6031425.0, 6031481.719601273, 6031495.619045592, 6031624.250773466, 6031697.308994776, 6031983.804538345, 6032013.381215475, 6032153.245079217, 6032405.702228571, 6032482.254976868, 6032628.399602683, 6032805.260934373, 6032812.5, 6032921.794453343, 6033013.374946322, 6033013.922499316, 6033210.43304656, 6033212.76204777, 6033536.94082476, 6033555.938178478, 6033566.712298979, 6033578.547464323, 6033607.215680985, 6033656.480003678, 6033918.436461276, 6034170.3125, 6034424.891535175, 6034648.28762458, 6035064.400356627, 6035338.038575715, 6035455.814625197, 6036285.9375, 6037237.5, 6038181.159148153, 6039755.24419493, 6053851.766120931, 6055550.68716413, 6065162.2187772775, 6065336.818820598, 6065465.39133018, 6066738.311176701, 6068278.375756039, 6068778.013604303, 6068887.371221049, 6069137.450946645, ...], [29.58863087343187, 6.013123291903223, 5.979190536899042, 6.003300321542991, 5.036530822445261, 60.255036964296615, 57.43990089733754, 32.82171105061053, 22.673856907488457, 66.0895112365953, 87.2585950743088, 89.26611390436419, 17.165639473465458, 22.69902566489566, 11.895850172244392, 33.54697016159105, 21.917128819436517, 87.13108584034956, 158.1186213922141, 46.669343519786715, 89.29356255683615, 20.946626783981838, 17.53164622232558, 29.139886967297652, 7.6211204615991, 7.645160177054305, 23.847901205797772, 56.74348988716113, 6.867686985799011, 10.391575618738445, 68.39619358917979, 106.07150086578456, 12.626875931419697, 36.13170413214266, 18.6118452168702, 21.99950216371647, 10.027996558447681, 17.543864018092254, 55.91519947224895, 69.61268288538909, 104.72790803022053, 86.51120225388408, 87.65239939157894, 18.72824071823635, 23.472569148259147, 9.275620063735595, 94.82600345551134, 40.31073603151415, 23.68520773023167, 56.80055159914818, 18.034729724115298, 48.132017429702685, 79.58930283854086, 45.61309398087552, 36.71496972154927, 16.43126818511371, 85.13477137533593, 90.89404226063436, 22.517085135197778, 12.961299703948018, 23.885716452886296, 107.75306165771057, 37.028535317548176, 31.71810208683852, 15.142914274845822, 7.202255957450975, 40.50027786950745, 30.64986720728234, 24.238984900372945, 12.117096696333514, 63.44379013774548, 16.74377250423304, 23.258851240116325, 25.857826262820947, 15.156513922836613, 6.411516379688151, 9.544211755940351, 20.969717072521597, 5.938159859346475, 98.58473282279567, 87.52281269932317, 23.277541993286967, 15.343080644571305, 7.37596732937525, 16.17655743086202, 26.174898582206293, 26.247630324201573, 41.44792198738308, 36.43363130400307, 28.686098414331973, 16.714373345142317, 20.922840091741424, 31.21465746547924, 115.47630865411648, 10.544290339920986, 13.510832241335743, 12.944557618857957, 29.713248043902635, 87.36384823461158, 16.60631568442156, 5.890407374950174, 68.7176723658668, 22.594305107522626, 86.4584403470285, 8.571169167861418, 13.231029638886758, 5.150491656892684, 77.57624338323795, 16.55743833986498, 61.09180063505367, 29.224581172621605, 68.69616977951002, 30.097232504273645, 19.538191984978727, 27.426788593448244, 39.600070580525575, 40.20933106539644, 18.38685339226767, 79.92225073305526, 27.968119720890712, 57.81221617792787, 20.86367788043592, 48.00105557985087, 13.21914547965168, 8.938224079902543, 45.388846571305976, 33.67995387964035, 16.163720310611453, 7.929936840846156, 122.42018115705005, 53.347306095145726, 6.849031181603557, 85.98415407607555, 47.56661390030745, 76.71509048063301, 81.23918736161879, 10.033287467070553, 17.68445966753289, 117.80824671855916, 13.69815067448237, 6.702776007989816, 12.777838420678334, 23.563920042739262, 84.09837025840646, 13.335479710635909, 21.09397924587433, 88.06190908746623, 76.6166112523432, 6.927308752627519, 46.26567133577713, 7.162894161736933, 31.054568073988193, 20.11532351602338, 7.683171304536094, 23.704344631773882, 15.86811620535092, 82.56392927717904, 66.60708973205848, 15.786015535709382, 13.411330833867526, 5.443952642690352, 5.327976200395672, 34.574898149613766, 75.68289662024951, 28.998125670875996, 50.494430691896426, 21.31308524386414, 95.1346213299327, 8.394027386230594, 110.99073345066525, 95.15095256763534, 82.65053052988344, 51.400204008802774, 62.9589862315435, 16.202126091458176, 7.6465448946712025, 23.51590228252514, 41.17364328927903, 82.77511174688064, 6.94755813769317, 57.959964563976015, 5.971194978883471, 17.2171127757101, 96.20708506208058, 5.26080719764574, 23.413431798713226, 21.7876698149429, 42.37677928541336, 66.45202196783828, 139.9291717203577, 5.463980244978579, 44.44671755755008, 19.443398695556517, 17.91821011759445, 39.31074898643593, 16.778939142392737, 90.00408785393338, 54.010198353934754, 21.621448684693835, 19.8570424953525, 11.998040426613638, 72.81879052837725, 41.6864300618458, 68.66250333094916, 17.827062262186526, 8.195737426990938, 45.171843531773554, 6.438915368213014, 97.99069027238255, 8.540026078572966, 93.1347743699184, 7.178774930204609, 76.31126413017658, 23.04508448993068, 14.611236305333959, 8.95769468138494, 79.32975849931347, 87.99474243186698, 5.733620485560963, 32.47861443923661, 5.16760475166418, 53.96888372177243, 15.934933535259772, 31.221093719105983, 21.264582223961387, 81.78563609904415, 79.51496230312314, 39.01103625789369, 91.11838288948306, 39.71343052597616, 25.648174712896274, 16.49814725893293, 48.9963258288366, 7.656529811994122, 7.936945134319086, 16.29595630590407, 21.661968258717852, 71.84906699451082, 6.999031546807867, 16.679403581877423, 11.908065602856855, 6.538246322814525, 16.98347355884805, 91.24883575157763, 5.4255383807065645, 23.051075890307207, 124.59622794513632, 49.60090605662617, 14.605383940271576, 64.35423104348787, 30.87968320271662, 27.03041509279143, 27.93361112235123, 11.705147248580769, 27.06465685803672, 11.92787242014259, 6.918852758396227, 37.92419873891782, 8.313467109865886, 12.427345970308243, 59.171049233036285, 49.05330233272809, 11.63376902805587, 31.059979169591287, 42.41542549276197, 57.80647681068409, 61.48543358871635, 19.769684429162474, 91.6877307622588, 18.741918623312998, 46.665563291794456, 55.45365740149068, 7.1864611064524375, 6.037294919694373, 40.39009040755053, 8.057163480159394, 15.095817809115761, 56.831055666626575, 23.111120279967455, 20.156888057749654, 35.6115198080592, 68.49575098459167, 12.681110249444302, 7.8400279073018915, 10.38879628801087, 15.269594040552985, 29.176840668035076, 20.82266934872127, 10.3946915081158, 25.69883568116275, 28.782428009184276, 7.206787585660043, 6.862834617373932, 62.96737042896073, 218.04776114955152, 39.49078858488868, 60.0360505869281, 26.269807910421893, 15.88699998969368, 58.53353124572781, 30.192309801053266, 154.12151540135005, 61.85216232686685, 62.410202623076344, 109.90801180956862, 29.370684100082556, 62.93631638146235, 27.338545101314953, 38.16473141826943, 59.88768060305901, 24.043685749748647, 38.56963873359549, 85.94546207359248, 18.54537627545356, 64.94982461825153, 15.925914249952141, 37.658767272442205, 44.920112491077205, 5.180885603900227, 38.78365157943695, 52.029281975953865, 29.004116385849496, 35.89420293591756, 33.01649142685733, 68.01895868348608, 32.216117762519865, 35.077715084669364, 57.707075254045435, 12.93670734939987, 73.50980559367132, 17.137281430205782, 46.99500281944895, 5.933948005541394, 7.615874763512991, 32.61928126832821, 8.136547735354988, 63.7126795113048, 9.066323971492514, 13.6130440476448, 14.01899856170469, 14.413903141324274, 93.20453061581944, 41.32695152899456, 11.757130697226865, 11.145548814562133, 12.18572430095863, 5.980891514276106, 63.46664734918524, 124.38754275585882, 17.915349785290005, 81.92436759911303, 86.13259217743091, 72.00627481076366, 39.350878352352126, 41.17510397500337, 21.534127931002633, 16.793304113132983, 23.29067283774042, 35.55003681096477, 11.305822317684981, 35.25756948358122, 9.691201710633495, 16.26031373139137, 134.2767640522529, 67.94280180638309, 49.354523993136766, 50.78749332347215, 15.674637575344276, 9.963917273715856, 120.39041573051313, 7.703527810165962, 119.77485805480842, 5.272137701488493, 24.411361479543295, 25.687497096967807, 10.927564716134476, 82.51444525358178, 26.555655048824846, 27.954171540131373, 84.33203822970276, 14.185411151290735, 82.84507475328394, 56.1701930944335, 147.18458452985564, 30.441982438386063, 33.137597756085306, 31.168694803331952, 14.928430921212467, 56.58835244548722, 8.579062061272031, 118.75534338313633, 25.34260670360421, 8.209451726534576, 16.928512147064094, 13.666620670127259, 10.821513277771839, 78.8385825159413, 131.2778971062814, 31.36297095529367, 20.849704467634233, 6.731501842957322, 69.37454894189588, 63.77445108495503, 56.84701386365233, 26.00941719096735, 29.430155944864435, 10.860661213572588, 38.02061845542407, 19.67976944401531, 48.06384196977826, 18.719477567290813, 18.281745522096745, 62.31168881182456, 145.06028762775287, 23.744262356904493, 9.182665397433007, 5.033130490501638, 23.67941830867215, 33.22605966864329, 46.99119882441003, 67.89236564166333, 20.02445572373889, 13.185550250434439, 18.38893073807226, 5.48224548730921, 82.25219365776651, 24.510016961081085, 60.23964499919283, 21.21095572504592, 121.19991205326431, 74.1138385248551, 17.15105227273944, 13.99413726980599, 109.03475933161782, 5.8604928199782345, 19.966567689109155, 10.774193444991296, 97.9846210510168, 15.970254081291198, 5.861957352830121, 15.71029103486212, 31.402815695009828, 25.063348003659982, 62.280221214054606, 46.82029002633393, 38.954865796790926, 62.21556120848513, 8.71027929247403, 77.63896151208834, 29.42384295314337, 90.76151221005166, 73.51946485277568, 74.81365216418989, 15.36367726101761, 9.63630461855608, 7.774639925690392, 77.44710537010421, 73.97885062470277, 36.73674071123894, 85.69667173353788, 12.591777674639316, 96.96738113721364, 31.742244378483953, 105.08449865932629, 7.049234475486028, 67.40019004836985, 18.55353619536639, 12.355248470357454, 27.702048416285095, 8.173388691521716, 57.09174708716152, 18.457831319977466, 17.691774192015487, 36.67452098772995, 11.178856765442532, 11.159115859525352, 32.501398107497, 9.478468366836928, 78.03876559821327, 10.267092852639788, 14.069064375391543, 117.54374124793279, 23.786331267866014, 11.231798797192525, 18.29998054186097, 51.7074089163716, 47.66148890101209, 8.860475071080499, 38.04900024837451, 18.859372601031076, 11.564897304380068, 104.11941252125294, 22.276122848476668, 51.841514616946064, 52.53950421834685, 72.8784269145402, 11.773054892388664, 5.772957179672421, 12.52585004508145, 31.20077200916065, 7.207629559526611, 11.401576505097877, 101.56106179259196, 33.62314742349871, 39.39273990769714, 7.23556749770644, 63.13904740454205, 6.098214532055541, 47.29207529463264, 67.66936424483958, 14.70287349787062, 31.282738999990922, 6.758397886720064, 75.75342728753296, 70.86210407852728, 42.88427642253301, 49.32671452504241, 29.082909528357646, 50.763343953031985, 23.366735132992915, 130.06202880816636, 7.22287124159641, 12.424504531140556, 63.67798489338284, 34.03409601652326, 41.31907052492366, 21.797472116080503, 93.67240525189415, 5.739419861370489, 55.08516891998393, 23.878764913285973, 43.959170752373645, 59.620014038108025, 50.97696007339596, 20.73091684480062, 16.32097504225808, 34.338991974371964, 14.736816960526715, 7.430339263769703, 25.40137338617304, 12.20603245009053, 21.70834855704802, 8.951004629896785, 12.64668182944237, 8.176138708869907, 5.457745661140083, 9.992671157365171, 11.089736782086351, 16.810402941520266, 23.50510718822907, 24.001186719834838, 21.95516594961798, 38.607162074097424, 5.314536776682878, 5.3946192746798145, 19.050005816683257, 18.85300613901222, 5.519927175435018, 51.9994129202784, 25.398826116853265, 118.0226467709136, 32.80178128662839, 22.7311730001171, 84.4120219408714, 11.312342306061307, 35.52378380349567, 45.19405178690762, 59.160733781562435, 27.47248009495252, 88.23584228069168, 5.585412120543701, 27.63692825109865, 14.887997116119031, 45.82648092918261, 6.2141601422364365, 5.5031927675337355, 179.17383484832206, 64.77591554801371, 114.48913017440125, 13.171627533475874, 7.990685249268311, 30.037738067862577, 44.88090333933658, 16.06384086524375, 9.813947272407598, 59.383389536714816, 8.63238064204879, 19.25757319855421, 18.376741871648306, 19.045958770892767, 28.301953889312685, 6.393614147430905, 10.480340008602097, 45.1289051443304, 42.065346376722175, 58.093946244313834, 44.359756747316915, 9.703137035814217, 11.330186909003562, 79.78300841520715, 49.67106201376091, 28.995775290100035, 20.627856427652087, 21.18419813488809, 38.32306893387646, 5.989512318154766, 21.796744192798574, 127.27564801313973, 35.54365366304842, 46.53878654511147, 39.00816945427159, 9.844674688994706, 43.75525162482327, 20.97861736069787, 57.7420853539511, 135.16593779843163, 28.94737423590148, 8.208867020768695, 65.86930271642618, 16.619792097135807, 87.97474844208782, 5.404928381086731, 7.093877036369362, 65.00248146593755, 9.058008093343485, 49.25250326282788, 30.697426306192853, 16.336613557616875, 47.62604257421883, 13.064580551631202, 62.64252595015313, 53.490433148251256, 43.41227475113059, 35.03187229275949, 8.632052916336487, 24.74613649723405, 44.248901860863675, 24.34740967348508, 16.14586777476343, 8.720258069711573, 17.18741987813594, 13.157800860072319, 14.744555043740121, 94.39570331497416, 6.14086152590252, 15.213230366136747, 6.403003571027271, 47.52581759637586, 12.310764576886648, 42.38090188817529, 51.00848445960369, 5.957973515154257, 133.33874435027187, 53.55560965941798, 77.96897893720686, 62.94285344807247, 53.303516219863525, 27.33357572418587, 11.08062883800262, 101.01709599011423, 10.28305224721063, 5.67737954712575, 9.234982077623535, 34.824768986893176, 31.274257934117276, 51.555069713830655, 7.14559992950007, 70.44908930319626, 79.81699637353861, 51.30177916843205, 35.839295029191156, 6.7726231328804465, 20.40098539695513, 27.318082907588305, 62.63095869571045, 41.4851031928201, 16.71317149961085, 45.28997244930633, 42.43931468347736, 30.669967157868513, 26.27610996557523, 26.620586299729965, 56.599293890211385, 154.60416975541347, 18.512628995099252, 7.309758951314999, 5.833716679530694, 15.156823529070426, 10.415163256354491, 21.379966568996625, 87.35679189329639, 30.793658732906202, 13.405969042173526, 23.8718388112989, 9.097767556199974, 80.00360573435313, 90.82210842219042, 23.071814140230206, 12.504655532843772, 21.485254901763916, 115.73918453923262, 67.51013590530465, 72.51991303570341, 35.993375913794466, 10.48319497174904, 159.275675516808, 25.121259735890686, 11.005537860165054, 19.682611462741594, 6.745027573581271, 59.940785549317674, 97.21146698345758, 15.000388490658427, 56.77154574615433, 25.780829101411303, 9.421805783242284, 10.135439182232208, 75.03426347287885, 66.88179974684819, 66.98991823689818, 10.980951972865487, 19.989314189082673, 126.78771720670463, 119.53453094229491, 37.65413788501635, 14.828986445468718, 132.73433967720177, 9.1426531081127, 12.613042944227386, 24.2683599381085, 71.26030866472844, 94.94537371499564, 42.19518158344647, 23.740283314921147, 58.175845692868926, 6.111305906633936, 44.463435662832055, 8.888496408619057, 19.383180592609026, 62.82526954346786, 10.273544490253835, 18.56018132163353, 5.818880949711984, 19.68386171860231, 52.35376037506215, 18.946779477891493, 30.791565495152796, 38.015114387067754, 26.68352236732353, 95.29827295780683, 17.063281137693114, 6.315215237427503, 9.226813663774406, 7.992355538524987, 19.063093336659776, 40.350571353213226, 77.48394191647064, 5.247485571277888, 12.559443306681302, 8.399776809151035, 132.52599090099056, 6.3706119478299, 26.284300773553124, 15.118552974481538, 57.72325287829578, 5.31587120216449, 12.243698236720867, 26.733920254478743, 33.7714957085976, 9.959634482763155, 69.5034491221378, 38.474536868201184, 8.025673505746854, 21.53079848991196, 63.69181546748452, 11.798420656676008, 14.246825972466857, 53.35083573337083, 64.58059327412963, 30.459992207967396, 5.120891849377677, 7.1099221539922315, 57.11337409766291, 85.96583804286126, 42.017976807475875, 10.070393239962389, 134.75311673656932, 63.487224208154835, 36.0257129263109, 53.47697593620139, 13.453223654406633, 15.098886783181246, 9.833404252661559, 43.18409470948174, 30.99236745744492, 70.8467119136024, 12.002690988375058, 11.20098111985003, 16.7204246082171, 28.822062952521193, 15.08957969215245, 13.153288662388174, 11.148573485762082, 10.821837404899103, 8.418716336698234, 8.025538588324657, 10.51289014353343, 24.259917000638787, 11.996457345738932, 17.48364088740629, 22.71125593628258, 87.64306884308652, 27.463879625852492, 54.86414795871107, 28.517305828635614, 36.06159831258367, 55.19724084030533, 8.417071044587692, 19.326206517984076, 12.501834592280364, 5.155977958487809, 11.058095856510707, 101.31291957721837, 101.613395612086, 8.53451977222515, 67.99093461053805, 7.542255220384911, 7.86001427094424, 114.94844167545165, 17.43137710542806, 8.743569372376395, 18.207300394123184, 18.82360223214336, 9.026995800270885, 23.772904787792502, 61.803912104388395, 55.91551889592126, 11.605174344252825, 12.767407284766916, 23.46026102073677, 18.739101950477952, 69.223053062016, 17.969344847762954, 9.805988335843852, 63.521721948853795, 5.226780954491482, 33.41004235284766, 103.86232607907216, 92.87331924930952, 45.85380830912696, 6.0866743727030705, 19.43040325763514, 39.07177345564601, 6.8238346735922475, 115.03355890586418, 5.556210619216946, 86.66065629095426, 58.561335552215745, 24.08467273859024, 55.476852929906315, 23.093223000817314, 15.253438254365474, 92.67225049230292, 7.512915682835425, 49.55198415495769, 23.627107548049075, 90.63794030577407, 16.603939991285458, 57.90057458084763, 11.883332112749589, 5.56957678478889, 17.196238047277863, 42.45031212599103, 15.242667376780188, 19.66781938033836, 49.838398453731415, 106.90662899326163, 73.71644399576309, 64.01764373365235, 18.973487111259157, 21.072333071731506, 24.88312471128592, 28.08878624750984, 5.545775674061278, 177.08738677166303, 8.918536891581448, 37.76563676441137, 6.6234051353243775, 10.881356675704582, 107.48062797371517, 11.867271279146097, 92.34070143602322, 73.21429642706933, 82.70012002191294, 39.769386894845795, 6.857363510344116, 19.43542450695703, 58.084522966450606, 41.07063654266471, 10.266992499674979, 38.93678511652963, 10.3958331358021, 103.45431492861424, 26.770351936182657, 9.124014813153853, 21.658872234551858, 21.659322884187155, 84.1453782648343, 29.20460829252314, 46.06287048081082, 35.196022888088436, 14.157176636644984, 7.874874188515059, 16.502663506090222, 29.696490559574173, 14.891716686187884, 29.699086432627432, 8.842143653599864, 47.70568853048346, 35.880154388358704, 93.24561576033543, 93.75497436026548, 35.241271971532214, 29.266859826950455, 14.528757725415494, 78.64299133540857, 73.69940658210875, 21.236303182174506, 20.98762280983384, 89.88662101061408, 16.807674063604534, 35.202590612144135, 23.72016884179491, 20.323376488290954, 28.409589394416475, 32.12706754334987, 10.001906683514965, 23.061168479772952, 68.36318842561138, 110.88574913565225, 25.71469818336793, 9.024118914446701, 10.762926049420711, 46.94227802800972, 11.886652474614891, 38.17208461181893, 118.81260872197495, 53.184833253339235, 28.933515141238793, 118.93375037624403, 66.85906848910464, 18.56962084328858, 108.61609469914276, 11.528456342902238, 80.88213745685944, 38.47005548069495, 19.362009803008327, 7.718005025181776, 19.321602736941866, 12.82006128120895, 74.65341458946124, 13.91677600433541, 45.33674473278468, 7.416446136824574, 71.49950321608233, 8.43733382018328, 23.36113116731693, 77.0931413046868, 27.027009923956264, 31.79734120058278, 80.52092912890588, 99.23725369084207, 74.1532734925672, 5.377519053608081, 6.228589739465931, 19.578254159683816, 6.850884646908363, 10.307504487018388, 20.988358244605166, 5.596930759479528, 78.78391106532231, 7.09322848827779, 14.399452881971982, 8.473705195962532, 8.593515278938487, 24.241685351929156, 32.44981507497408, 65.41967925146174, 108.51284744742459, 8.604673080936221, 6.519491454848197, 18.419654384202847, 7.049438229924267, 17.254802918181852, 14.119872235499715, 19.305662986775083, 31.84014191665844, 10.95794069451702, 26.21552148106503, 27.590162308790212, ...])
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)