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 = 45906
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);
([2889804.6875, 2922321.875, 3103442.1875, 3182402.8982687527, 3224337.1451907605, 3373150.0, 3398887.492024558, 3411985.9375, 3412814.998362398, 3417372.987804885, 3444809.375, 3459406.25, 3493704.6875, 3518604.803442286, 3524881.25, 3529408.833526779, 3606482.8125, 3618926.5625, 3630025.0, 3630100.5585258496, 3632445.3125, 3645456.9719375577, 3645655.031688058, 3647025.0, 3647682.9213054273, 3650064.0625, 3815966.9122230355, 3817373.4375, 3873821.830709889, 3923985.211189821, 3972206.5052530942, 3979732.750310936, 3982877.905146628, 3988976.414557925, 4016149.0233603395, 4016614.6283826223, 4018642.3566844645, 4024876.5625, 4025585.126701757, 4037864.047658693, 4041347.8592312345, 4044210.5369960577, 4045420.530016161, 4048665.625, 4051124.7784650666, 4051255.0901834667, 4052134.9203804927, 4053678.514178989, 4063909.2279106677, 4064954.73459245, 4067633.5988790337, 4069752.3038099515, 4075803.4288710696, 4079743.4662133097, 4082069.797783094, 4082404.462738134, 4085273.7389837527, 4101672.1368886265, 4148931.092587933, 4157616.7381027984, 4182650.1812355886, 4198671.328963109, 4226853.766747027, 4227560.9375, 4243375.723225854, 4249830.943525776, 4265879.663993593, 4267071.875, 4267132.2006931985, 4267650.3194996705, 4268582.56845798, 4268774.842393889, 4269170.3125, 4309600.342385433, 4315514.856499323, 4335106.059635056, 4336657.8125, 4497212.509765603, 4770633.114304443, 4772208.534782791, 5001477.878868128, 5007620.944633265, 5008979.6875, 7237681.25, 7261881.25, 7264315.625, 7272141.407839194, 7275032.7804302275, 7503425.646329417, 7505979.15669692, 7538232.8125, 7539750.249520695, 7574736.335328502, 7578703.668844052, 7584414.158827801, 7585637.132163214, 7586717.1875, 7592265.625, 7592919.26339662, 7593538.14748629, 7594654.156365068, 7621864.0625, 7642407.507117025, 7650349.349686567, 7659054.6875, 7677668.75, 7693986.8362515615, 7698570.986045827, 7699142.1875, 7705043.368509559, 7707330.328513351, 7707837.9590133745, 7708000.285351237, 7710163.481724535, 7711478.125, 7712522.393436262, 7713819.733127728, 7714541.908127555, 7715146.678879405, 7715459.500872557, 7716998.454544315, 7717063.022430971, 7720062.354766521, 7720676.5625, 7721179.6875, 7723778.125, 7723830.75652749, 7726663.826422844, 7740894.826551147, 7752995.193150863, 7753274.904475917, 7753915.977634228, 7753937.5, 7755204.463648768, 7779363.028367239, 7786935.520941226, 7795121.364686916, 7795610.157266529, 7798035.081829372, 7798239.0625, 7801079.26180351, 7802032.989865215, 7809765.625, 7810107.8125, 7816482.945631041, 7816490.153375601, 7816690.061686517, 7816901.272789795, 7843487.5, 7851468.791543826, 7893392.887725944, 7893692.696668393, 7901545.127302763, 7907125.0, 7908031.041455227, 7908770.3125, 7911707.8125, 7912127.733254877, 7915110.792543314, 7917400.805650999, 7920056.798472315, 7922289.231061183, 7922428.070971295, 7922710.228863105, 7924369.609471562, 7924551.516731656, 7925145.998421525, 7925329.454735654, 7926066.073534263, 7926878.204881096, 7927525.0, 7928221.168781405, 7928594.611609806, 7928599.954687512, 7930409.014351437, 7930586.504295998, 7945667.091667087, 7946924.3214601595, 7946952.245422749, 7947854.6875, 7948117.041638592, 7948153.984655005, 7952567.5497804675, 7953354.6875, 7953391.07520732, 7953922.947654597, 7954213.751828417, 7954929.531663193, 7957021.875, 7957464.427843477, 7957525.0, 7957847.769536957, 7958561.931719407, 7959327.810226547, 7959400.459334453, 7959448.4375, 7960279.6875, 7960542.17742085, 7960994.171691013, 7961069.95169468, 7962601.167203381, 7962723.4375, 7963761.471881562, 7963795.3125, 7964785.9375, 7967418.081540769, 7974510.820562999, 7975470.665774955, 7976656.121242296, 7980537.5, 7985387.366005708, 7995264.150612932, 7995267.1875, 7995334.790494614, 7995520.604528807, 7995912.246961637, 7997516.285643879, 8001225.917954785, 8006646.927100161, 8014564.522885187, 8016268.75, 8029119.010665385, 8029862.5, 8038347.17119849, 8048354.6875, 8053218.122974601, 8054921.796289809, 8063355.930960044, 8098414.0625, 8130867.131405144, 8141084.375, 8141947.425271318, 8143365.65877458, 8143415.752774913, 8143531.25, 8143607.343365793, 8144009.323959197, 8147069.34504776, 8147315.439088314, 8150698.4375, 8151803.125, 8152350.0, 8157309.193809257, 8157309.2680538, 8158529.998694644, 8162816.386598914, 8163923.4375, 8164597.577313065, 8164602.3308291705, 8166185.665339798, 8166505.012991613, 8166973.406083699, 8167012.2350635715, 8168432.238946805, 8169093.480914185, 8169788.769844333, 8170433.689753072, 8170440.239456674, 8170496.095847655, 8170562.5, 8170983.68424144, 8171021.590394253, 8171307.290243509, 8171668.147733805, 8171936.224611442, 8172325.0, 8173711.344476547, 8174436.925143816, 8174892.069907307, 8176084.596024195, 8176171.999926254, 8176230.030918565, 8177576.802282838, 8179787.110359824, 8180699.54117315, 8181086.442680834, 8183068.75, 8183609.384072529, 8183916.599973559, 8184189.90507631, 8185792.1875, 8194637.5, 8195261.6729085725, 8197051.799732388, 8197470.24408538, 8198767.185509488, 8199207.2208187245, 8200330.996085569, 8200490.165884241, 8200742.540750982, 8201334.952454946, 8201973.4375, 8202677.9016753975, 8202682.5509186415, 8204757.6730006, 8207145.208887096, 8207393.75, 8207942.1875, 8212792.886636778, 8212834.375, 8213273.331954922, 8213301.529105237, 8224693.066745396, 8232053.125, 8236276.172552209, 8237721.875, 8240079.378056695, 8240264.684565477, 8246315.625, 8246755.774027414, 8248057.544540426, 8248717.969482487, 8250480.601518661, 8266356.761214189, 8267306.764171839, 8267468.75, 8282203.125, 8290615.625, 8292731.026805542, 8293835.9375, 8293840.625, 8296768.050316417, 8301939.367110508, 8302618.42833925, 8308673.768347108, 8311387.5006102845, 8312975.0, 8314788.483710156, 8318061.84245213, 8320130.339435882, 8320341.954522341, 8321662.023774249, 8321725.110311103, 8322503.50058899, 8324473.4375, 8325926.289558375, 8327418.500156293, 8327840.625, 8328210.987115761, 8328451.493809916, 8328991.678165932, 8329588.961312863, 8329595.3125, 8330938.842940804, 8330949.684145524, 8331050.0, 8331171.267468334, 8331265.400813128, 8331278.530230116, 8331925.0, 8332960.766487326, 8333424.258950973, 8334376.756379976, 8334701.535082657, 8335349.731357862, 8335596.718989288, 8338163.473146832, 8338969.404880666, 8340721.407556753, 8340773.048444242, 8341123.963787923, 8341168.26473178, 8341221.774265922, 8341710.9375, 8341753.631716822, 8343061.4562423965, 8343074.060344704, 8343664.0625, 8345260.073068818, 8345754.432592488, 8346090.7343624, 8346099.39639139, 8346728.125981435, 8346933.189438472, 8347163.968784073, 8347227.194567166, 8347773.4375, 8347861.7066976875, 8348237.5, 8348268.036407338, 8350289.712630325, 8350512.710766268, 8350768.356250854, 8354866.025576992, 8355807.37156258, 8358145.3125, 8359635.1353863245, 8360108.705406907, 8362762.5, 8362918.286702526, 8363292.133237621, 8363515.94595699, 8363557.8125, 8364984.375, 8365048.481381088, 8365242.1875, 8365251.5625, 8365278.309258197, 8365330.09198774, 8365341.5622017225, 8365434.012018645, 8365440.634483613, 8365443.75, 8365478.125, 8365483.338443653, 8365580.83030524, 8365581.25, 8365589.0625, 8365631.496852989, 8365633.996479735, 8365653.125, 8365680.633752178, 8365743.75, 8366291.9338522935, 8366312.238319918, 8366500.0, 8366508.6887259055, 8366626.944837292, 8366642.1875, 8366839.0625, 8367255.919321489, 8367267.295340842, 8367629.6875, 8367646.692333354, 8367788.778646623, 8368034.302759314, 8368177.697733677, 8370938.710106506, 8371735.717834835, 8371815.304684257, 8371980.3041762225, 8372167.500804384, 8372171.716984969, 8372356.677939689, 8372359.238401343, 8372839.0625, 8373927.020786404, 8374553.818653941, 8375910.210335895, 8376573.334425352, 8377403.923786988, 8377527.186792973, 8377882.8125, 8378297.926767612, 8378407.6825393755, 8378445.212591125, 8378659.736348338, 8378688.923523487, 8378714.0625, 8378782.8125, 8379401.931304151, 8379893.75, 8379894.821051161, 8380373.668067813, 8380497.36708118, 8381496.018732645, 8381821.3883421, 8381929.499925368, 8382595.3125, 8382651.5625, 8383873.487779066, 8384133.876723971, 8384453.33181713, 8385632.996859797, 8385771.074344867, 8387035.9375, 8387161.779854175, 8387210.445027338, 8387376.5625, 8388026.53313086, 8388258.923756806, 8388490.579341339, 8389558.21266172, 8389642.001874914, 8389837.5, 8390232.763734736, 8391049.376022542, 8391312.597865146, 8391662.34373862, 8392043.75, 8392145.3125, 8392175.0, 8392179.67619273, 8392187.254905855, 8392197.74521772, 8392268.782704087, 8392298.122329166, 8392304.650075719, 8393078.125, 8393374.27910493, 8393394.10750522, 8393593.85346378, 8394354.171401728, 8394426.016365746, 8394429.6875, 8394694.670645425, 8395209.67314473, 8399104.849300211, 8403583.98417802, 8403852.958828725, 8406000.899044944, 8406821.875, 8406949.797684034, 8407098.4375, 8407577.033403913, 8407775.20955259, 8407896.19282383, 8408229.590898363, 8408274.164890429, 8408539.766436836, 8409025.286326002, 8412373.301237805, 8412837.5, 8414007.8125, 8414043.528840056, 8417803.552894253, 8417862.813043687, 8417871.33040061, 8418547.766523132, 8419444.412396304, 8420225.577922435, 8421521.281689588, 8421977.886716861, 8423221.747952165, 8424521.637517508, 8427687.5, 8428142.679716235, 8429748.4375, 8430430.953326918, 8430570.3125, 8431124.431661228, 8433046.875, 8433625.94585045, 8445484.375, 8449654.57991513, 8454042.990486369, 8462992.422547638, 8484409.247518698, 8486795.3125, 8492984.745435294, 8503523.092288958, 8508543.09488784, 8516751.570599718, 8516962.410773179, 8518834.28286294, 8519743.75, 8519761.000162184, 8519880.148841972, 8523420.678963218, 8526458.582208404, 8527220.914099896, 8527664.891247407, 8527912.5, 8528043.75, 8528047.394557556, 8528125.506791055, 8528272.289712187, 8528307.259592026, 8528443.75, 8528472.587704819, 8528527.113591954, 8528797.072764842, 8528825.0, 8529132.8125, 8529260.919164222, 8529627.175781641, 8529740.424290404, 8530095.3125, 8530265.641697185, 8530556.25, 8530615.657227121, 8530646.83065566, 8530722.80276467, 8530861.693691079, 8530958.366218073, 8530960.66242633, 8530986.665977363, 8531007.329478346, 8531690.625, 8531956.650622552, 8531961.868906774, 8531975.793896135, 8532892.111790352, 8533061.372437404, 8533195.762700133, 8533376.5625, 8533640.333654221, 8533948.4375, 8533955.526258577, 8534065.625, 8534074.013484417, 8534248.889889935, 8534264.981831834, 8534285.9375, 8534337.5, 8534340.625, 8534345.3125, 8534403.125, 8534550.172821365, 8534558.866649425, 8534702.31455742, 8534714.83422266, 8534790.625, 8534804.641972378, 8534832.8125, 8534888.155487543, 8534898.4375, 8535052.134931186, 8535083.813176591, 8535427.946542537, 8535475.0, 8535507.412735626, 8535938.946823936, 8536017.353022847, 8536290.625, 8536304.265110444, 8536396.09530328, 8536425.679600593, 8536518.236452656, 8536659.375, 8536745.921640672, 8536752.862372776, 8536895.49162417, 8537003.125, 8537010.9375, 8537104.058066508, 8537132.8125, 8537329.532901524, 8537360.148292916, 8537392.756970026, 8537423.32613747, 8537425.637709279, 8537432.644439232, 8537458.07328393, 8537500.611779483, 8537504.798108362, 8537528.125, 8537541.345682368, 8537553.351707974, 8537557.140668243, 8537560.996044884, 8537606.25, 8537675.0, 8537685.765775405, 8537852.51137687, 8537971.778649105, 8537986.946979096, 8537993.033514492, 8537999.519084724, 8538030.666627275, 8538054.34892029, 8538074.995667929, 8538216.321867652, 8538418.428450953, 8538423.4375, 8538487.225603066, 8538537.587363482, 8538595.138822315, 8538608.696667373, 8538615.625, 8538621.881989792, 8538675.0, 8538676.5625, 8538941.90697931, 8539068.75, 8539131.99878907, 8539324.873240579, 8539502.920978073, 8539523.614151405, 8539564.840358019, 8539582.8125, 8539588.150311477, 8539652.765135946, 8539745.016246213, 8539871.875, 8539912.57015807, 8540014.95292767, 8540061.45761764, 8540095.15828393, 8540273.083891604, 8540309.969727296, 8540398.219937518, 8540731.133614808, 8541589.941805303, 8541726.402368328, 8542529.6875, 8542551.5625, 8542685.983392024, 8543259.94273423, 8543374.096450994, 8543692.1875, 8543743.75, 8543966.300696602, 8544148.363900708, 8544218.75, 8546229.26449691, 8546476.273801792, 8546709.46350094, 8546734.392756531, 8547259.375, 8547922.30401824, 8548013.760838637, 8548026.54891515, 8548105.277739406, 8548114.578863045, 8548482.8125, 8548512.499530904, 8548859.188576413, 8549227.128534233, 8549401.95223995, 8549459.814133184, 8550039.8327259, 8550345.3125, 8553213.642909648, 8553226.921089018, 8553279.46421949, 8554061.620067425, 8554285.033150496, 8554665.625, 8554806.25, 8555012.5, 8555163.638811918, 8555269.703091385, 8555468.508397954, 8555565.150800044, 8555629.329428952, 8555872.932981445, 8556045.117166819, 8556143.75, 8556646.875, 8556942.1875, 8557365.625, 8560212.470268846, 8563982.8125, 8566377.794656513, 8566420.078891158, 8566854.331149474, 8566902.365261408, 8566943.080111483, 8567905.39373193, 8571312.77491465, 8572290.12338685, 8572478.90593735, 8573065.411363222, 8576248.42545841, 8578796.895809015, 8579014.880043011, 8579471.174173607, 8580141.26857481, 8581951.72037929, 8582267.334383518, 8582393.696816463, 8582425.743868709, 8582482.205480758, 8582506.750058211, 8582699.261976667, 8583067.91802182, 8583611.900408378, 8583844.745727826, 8584901.614699183, 8585357.767551478, 8585448.842919502, 8585469.908370087, 8585699.072686087, 8585818.344252571, 8586034.19526156, 8586561.41949185, 8588705.56726405, 8589509.733143369, 8589815.625, 8590390.953575911, 8590521.875, 8591397.738787787, 8591450.960498737, 8591665.073363818, 8592163.182991074, 8592349.643420063, 8592386.831666524, 8592552.687972197, 8592610.9375, 8592621.561975632, 8592839.46591422, 8595003.180071572, 8595034.818033075, 8595518.746568745, 8595985.198515289, 8596613.832403319, 8597243.14433604, 8597355.086422462, 8597381.341534039, 8597536.45050609, 8597554.874900712, 8597809.650707318, 8597874.850865917, 8598126.080830341, 8598246.83773454, 8598327.886251204, 8598494.416173303, 8598843.75, 8598890.625, 8599358.281719973, 8599404.348701363, 8599728.951582976, 8599757.881186388, 8599784.485192558, 8599916.081693348, 8600298.490078684, 8600810.9375, 8601064.967777044, 8601606.25, 8601698.14613399, 8601939.0625, 8602261.74270812, 8602433.314040536, 8602619.129346663, 8602664.546865802, 8602843.34850808, 8603012.5, 8603041.93094962, 8603044.188343633, 8603140.625, 8603170.792741295, 8603194.599678945, 8603640.625, 8604110.9375, 8604151.375866374, 8604163.837646298, 8604422.818087662, 8604479.417885246, 8604668.75, 8605174.509956768, 8605220.727667784, 8605355.814938135, 8605558.912512185, 8606038.613093995, 8606076.5625, 8606109.375, 8606567.1875, 8606641.467087036, 8606765.625, 8606820.29934087, 8606892.535596889, 8606948.934906589, 8607110.7837334, 8608123.324382784, 8608422.570403527, 8608493.435015218, 8608921.517540736, 8610243.308813915, 8610496.181780044, 8610803.294236656, 8611273.4375, 8612602.503753748, 8615033.986694004, 8616915.625, 8618773.4375, 8619590.625, 8619664.903032696, 8619734.375, 8619992.1875, 8620005.813415704, 8620056.25, 8620141.090741409, 8620698.222610284, 8620998.921512911, 8621001.5625, 8621830.461851783, 8622023.4375, 8622268.75, 8622370.074425614, 8623932.53152588, 8626604.6875, 8627737.8894395, 8627790.822716888, 8628048.57428699, 8628519.006204959, 8628822.277870929, 8635535.56334534, 8635738.958507413, 8637002.629491124, 8640664.0625, 8640804.67190411, 8641725.355438845, 8643305.919806536, 8643540.625, 8644601.37796914, 8647068.658624567, 8647170.90224031, 8647192.1875, 8647683.269193044, 8647700.0, 8654289.0625, 8656032.069479898, 8656056.340322217, 8664586.4736067, 8665624.4156055, 8672429.879671047, 8672548.344451291, 8673626.5625, 8674177.841096226, 8675050.75455455, 8675214.727637382, 8676485.632762313, 8676516.679364799, 8676816.404284518, 8677251.5625, 8677424.186539812, 8677557.621883508, 8678150.520612884, 8678166.041050091, 8679204.6875, 8679789.262718368, 8681025.299945926, 8681796.22500851, 8682721.44894345, 8683121.875, 8683564.0625, 8689440.625, 8689443.57003275, 8689512.960486988, 8689557.319261542, 8690240.78162648, 8690868.555626681, 8690871.619405245, 8691853.125, 8692162.136684412, 8692987.365996053, 8693084.927127503, 8693089.0625, 8693254.64910283, 8693318.835590767, 8693392.145027628, 8693890.546766393, 8695293.599492582, 8695332.518635457, 8695459.375, 8696780.0822449, 8700202.275192887, 8701873.616962923, 8702966.315160742, 8703534.082987078, 8703626.80560747, 8704739.832370393, 8704978.116105344, 8705548.489077203, 8707859.733117033, 8708457.8125, 8708645.3125, 8708707.858662056, 8708823.792520655, 8708908.931326548, 8709270.826948557, 8709626.942128932, 8709721.480915185, 8710638.185273785, 8711406.703106545, 8712364.959585035, 8712910.9375, 8714775.864039585, 8714794.867030708, 8715392.881285125, 8715565.625, 8716096.875, 8719176.5625, 8719266.230442107, 8720237.5, 8722860.9375, 8722872.216263818, 8722943.991565665, 8723239.0625, 8723284.375, 8723590.625, 8723766.51832871, 8723807.8125, 8723831.861376274, 8723901.167770399, 8723924.582567047, 8724602.159977734, 8724693.126963053, 8724840.625, 8724876.038787765, 8724914.469887892, 8725120.3125, 8725293.75, 8725824.467591811, 8727085.9375, 8727206.25, 8727476.5625, 8727487.460948601, 8727602.459195647, 8727676.5625, 8728109.056751614, 8728141.74572191, 8728154.623079965, 8728254.879941355, 8728393.336168021, 8728583.01144534, 8728674.690101271, 8728773.115665935, 8728791.148050869, ...], [74.49414649514388, 71.13308941626941, 53.8251856290619, 14.142431546383719, 12.544839213639223, 60.24949352834942, 25.03757341822758, 48.6907197380132, 52.85057753962042, 13.465963611227563, 125.8294955980322, 49.99928342380431, 45.329128822556015, 21.382618960991827, 59.10683477923298, 21.089124223694718, 28.663511335269362, 79.12032335764029, 39.370221664589735, 5.178576647331584, 97.32594622160113, 6.91673490523192, 8.477381356718844, 51.287183743105345, 6.099487583661784, 70.29446170336945, 45.91581630272233, 72.69788794144374, 162.10978854793092, 12.746213440280458, 7.698243206061493, 27.35191077533862, 14.164896421962242, 6.734326174800126, 32.951556410563875, 17.649050837854492, 8.378118195487245, 70.8506678763962, 30.809848290463634, 28.234485453165966, 65.1607958463097, 10.554528069668164, 15.840889344340908, 46.44308833963567, 31.892971466125342, 5.552948509102406, 12.102534448765386, 8.503693371137487, 64.14912747148199, 5.4637914361517925, 42.16585218924054, 86.41795690171352, 24.60748726032623, 105.00969971377684, 62.639488977654864, 49.64324936840219, 8.45271215881986, 51.58016319959485, 33.05106093594555, 70.18156605182723, 8.384800849663819, 8.908763979107356, 18.12085420102109, 183.8913007982782, 18.666293115815257, 76.75727218100766, 20.29904637386315, 52.7521967239657, 8.86263471517718, 59.21360279258158, 5.691400580180947, 70.4761576834562, 52.69991225134838, 23.208871399224826, 10.107024092525233, 136.93519206027636, 29.31576351361979, 11.143005452962035, 20.114491815098262, 18.659733221034855, 40.31057839857719, 97.99888196838533, 121.80999502304789, 49.74658957376661, 84.50446993758315, 47.96325820578018, 5.369481948169031, 56.21898419816287, 32.48234713316556, 21.1912295923351, 53.349826751678115, 8.423087981325931, 16.710824429324287, 5.142297790672674, 23.66230344346674, 22.92124366050999, 53.11681632169107, 44.20184006594861, 9.806826963073611, 8.661474864922232, 48.16202782171598, 43.47171379535536, 89.55378529052004, 12.932399589987646, 53.44066502059921, 39.92754189241606, 20.001624480389292, 12.373648907617017, 33.198369009059675, 85.29464927674942, 63.98508077452629, 13.681698588079975, 11.605080808971728, 50.55273744275782, 104.03210121591304, 72.80389726478587, 13.113796542161182, 80.58535481495862, 61.627977804849024, 34.85389339059143, 68.95983822989207, 12.055907396460348, 9.21154675264862, 58.53179871851212, 34.59384588264868, 29.016576452969716, 5.154026081009739, 33.11540512289814, 49.59012461485415, 10.946143767638212, 79.77297575433427, 11.727583267705313, 58.47621811526861, 24.77474092528538, 9.822052057866573, 51.97344699324717, 88.1514688144878, 113.78791414728579, 12.447179715520049, 61.02555427109107, 50.47017720341036, 54.75840423966575, 48.73164494756944, 86.79835238641144, 11.342376865153717, 21.78091045610404, 69.9479319444568, 97.05368578555338, 82.38603620753703, 9.366779610401741, 8.695169940322486, 44.16877577820463, 14.279676381173214, 62.92177700542808, 8.179290606132405, 102.55913177176451, 75.88512017530009, 9.02076067592005, 52.069630027199366, 12.673647802477157, 17.54529646308356, 15.625418018989636, 27.49934285134072, 39.70884689766851, 10.18187033850854, 82.51976208281579, 18.411306999580784, 10.782380993618867, 16.9796749445588, 128.0174658389042, 38.24305632299891, 12.794647467620582, 19.69870709776275, 8.262759802502169, 6.432004455229934, 7.821963510035364, 42.88601258341759, 8.816771610487656, 12.394229389132803, 40.97293039599776, 14.413247271113303, 67.3463935799829, 21.826118851320274, 55.911129037889864, 11.912754813208808, 86.80481813687913, 23.61537741480829, 5.525564789306872, 65.4331248640859, 58.22774306577518, 48.78421557529868, 19.966651869307654, 13.493829926732142, 105.18120661232949, 5.555796664956124, 51.13591688043582, 183.19417722529883, 71.88799704413906, 80.2728977172767, 23.003915928594832, 90.96983812432123, 99.60242277416509, 56.695640653212806, 31.84694793087277, 58.42147740029811, 5.433788796684975, 59.603561472247485, 21.357857453223325, 26.21586617745891, 78.23811640895977, 64.92115137030781, 15.288338082665817, 72.41330113298383, 7.2351306495665835, 44.028912143223664, 12.30206729942838, 52.23085265096455, 20.162973501319392, 8.31432227405975, 65.67853811723425, 49.212228407904554, 18.84538106872655, 50.75146036317752, 11.6245551564338, 39.091894812264925, 24.597224949547797, 11.006866805660794, 23.510541650325262, 55.33455607028056, 26.50260414710462, 29.212641097982633, 28.721068348324394, 7.615499221604705, 5.621152281419955, 44.188041346475565, 65.12687727212773, 11.048853067976347, 6.888417027352793, 14.277283090151693, 51.64370838724501, 50.882571831339654, 40.01640673961584, 21.164022684809456, 10.964558791166668, 31.906473798422418, 12.57115123056723, 57.96976163428297, 14.200967932790896, 87.569278731456, 10.727379148628732, 11.677671051464754, 208.159759994564, 24.209206998425376, 20.78946009315165, 14.006322837204898, 127.24772726125578, 19.824849334803663, 22.71626742133482, 134.13340285613646, 84.7490030076766, 19.028159609458758, 23.94939398786453, 26.80640906899002, 20.53019588166907, 44.26665814168855, 85.82114103454288, 14.753564559785861, 70.38176425285263, 14.511475810402674, 11.491698079099951, 20.931255501980235, 5.969881051545026, 15.94163955262936, 25.46087903262762, 13.440242036887714, 17.294183797073458, 47.949190673331714, 8.291380864700239, 7.403717523853669, 81.48412196448331, 34.63410720419042, 59.711551804988765, 24.00167132691507, 21.912194425507316, 27.24069051147457, 36.504183730194555, 20.62481605587011, 34.13460787317023, 46.77566630214811, 30.726136406583077, 181.4532486891623, 96.42714997205701, 44.10884613004225, 96.70608798399263, 24.302383396671317, 26.631550535402468, 72.94365450312668, 114.37859886969046, 68.63783837562289, 153.52043648698051, 10.96664553193784, 25.956022066516606, 19.84106365629248, 49.18795124895613, 20.31413782304292, 173.43857705715234, 69.29718857720692, 6.589236760748899, 57.989499969588344, 68.80000744960488, 9.114659743906639, 19.08719818122429, 5.0307825859545625, 17.32860622268869, 17.345547546958564, 67.40691935377917, 61.42961190803958, 38.06352368420757, 55.91721249235448, 97.79550989864491, 54.12158718185922, 143.5369647722596, 113.4102780474121, 26.648801088151483, 16.372726766644384, 15.952729222902128, 36.829816205565805, 20.741558582494697, 55.12976696410363, 89.99370834313326, 27.914787140915475, 21.291254167148434, 5.070907765439116, 16.596480639705412, 94.15047420845079, 60.584941912192605, 6.236140173218815, 32.31259544031069, 75.58261842745956, 47.38470857159744, 61.95904931778889, 67.27791497762517, 36.711962709428335, 31.678556958429066, 13.86035251604883, 35.31094498823963, 10.294588240854997, 86.35965705501678, 7.2322106060439255, 55.4282906997951, 25.551172873536586, 10.138171540031092, 15.735839040022004, 67.01589225593467, 94.77683290571692, 19.37288235891438, 49.28759316226524, 38.15245837718622, 21.824137634605265, 46.71983082633784, 16.707335148628538, 13.366574810077699, 89.50266952190292, 90.49727399048535, 15.919510867782016, 114.68511325581707, 24.723366669241713, 115.70976782275218, 18.49333518623707, 38.88428935812744, 11.303061002380632, 10.299311780927674, 14.945251513770298, 9.67184912100233, 63.033319543710334, 5.311018979348471, 81.01147107706909, 18.993522481664858, 88.06283900645205, 90.07983866078675, 12.322712660827044, 8.401270162933036, 10.563391883325835, 11.81742289739618, 10.501993397068235, 42.51166051238724, 18.929650177697365, 74.89913719691967, 36.920099951353365, 71.1551189597763, 23.056361657209344, 13.314361465092247, 62.764299761453046, 32.62034036408441, 11.19699554542299, 109.18539824068361, 48.161181271840746, 28.235231633186736, 51.871993592634766, 29.153386148479406, 56.30620665576009, 8.291598794033709, 68.96348014356451, 37.43924856962959, 12.06300786693578, 29.427090906718835, 34.983950677163286, 62.689570113952506, 5.832473879677072, 53.83994973919361, 64.92533665389696, 5.375426681593692, 52.03700510393384, 24.36145307190016, 43.697715146240384, 67.33089586210707, 19.81650308208202, 15.498410159910149, 46.58096653887075, 62.511990339465434, 23.36661961009246, 16.819752562470924, 49.41371479042342, 14.388656805414097, 106.83324449627503, 14.673129869060292, 6.422136330358374, 29.104038361375984, 33.0571090850455, 13.846658302135332, 81.23836158085032, 16.287208810516116, 10.889386408477053, 56.25348094049353, 7.086001085999981, 84.19943274704633, 17.03272753456294, 7.874990069775292, 7.359830653537342, 9.245742390120126, 12.657509731677438, 24.53347114657216, 47.773834433447256, 44.836684928088474, 5.698536588331347, 18.36821962424715, 20.51403853453053, 32.14401165956008, 99.85389025348907, 108.57365661410296, 63.14831684062967, 42.384691096888645, 33.57508499529388, 15.566237953720737, 16.835922301027413, 11.202533687643779, 27.784542315524533, 9.177679366823742, 151.59404818728643, 48.81125257153564, 15.136676442996551, 223.38615061674383, 33.201654982547026, 11.4286421597677, 18.940184468506775, 110.98773259003111, 29.260239389501628, 21.568519532483077, 65.37187513766438, 42.93162917863073, 44.687119755076964, 141.49797495837228, 7.230770918308612, 5.239979559193711, 31.63522540086247, 79.89337824484292, 5.228010721426868, 9.415547665336105, 92.83981245230837, 75.75417091892096, 67.619489852429, 54.46978615892257, 89.72672829615719, 35.41292533765373, 29.233422175727146, 40.651869207202104, 6.0559261881433715, 14.800758753291845, 29.55061007834834, 12.759212751939845, 9.653166626151275, 15.351095494005419, 6.409121292284862, 18.145785239021237, 130.95369153376544, 26.807069653468318, 37.3776462369306, 5.249696427105993, 78.46210012742267, 25.62527495464982, 10.228058506550948, 54.277301662536864, 39.872527856268434, 55.7226108592434, 108.3573415110615, 65.49007641341326, 47.30668947634642, 63.75891391831806, 18.695333650711298, 18.53330416769581, 9.585840334458489, 26.094791545171688, 76.20096080672987, 51.483180875761064, 14.160620912161049, 7.238665960900141, 114.15099491814495, 10.37127607976207, 12.880964624509232, 63.10222370187553, 12.169624599957993, 42.45073461812238, 24.57245593050813, 26.243641283765314, 70.28577858790115, 82.37851866752298, 7.257144333538164, 53.534304241682804, 23.79333166900777, 72.06691389542027, 17.80404787682866, 66.41010384433423, 8.859274904142845, 68.25892939892148, 26.56484019830043, 19.24372310196535, 59.590681292673366, 9.225887565945182, 66.94209433680435, 6.839785312838804, 142.17617604180148, 110.51851813067975, 14.972471888277953, 49.95707369056234, 57.76861567155783, 90.31427594803927, 6.776081400968993, 11.934477347861678, 11.753275117016177, 10.079740480438527, 12.219172413294746, 31.47075435558233, 68.75822417330092, 102.38819962577769, 17.37651051087603, 15.83307130104568, 15.782208868357273, 44.55516196680131, 29.001720140940495, 10.016715914208973, 167.67185415297183, 11.451567034661727, 75.31899673985325, 76.07760396404773, 14.87207956111702, 17.939958596645187, 25.10768514878152, 43.68187175653482, 79.54330349764359, 52.56570451654121, 9.358802499162785, 19.318571022254307, 12.971587523686628, 6.008080423838159, 119.83869105904054, 26.722536252871684, 26.488771678858818, 13.372787498300152, 53.7023750871002, 11.817509310234698, 10.266375733723946, 45.30999622075619, 14.660583795017573, 16.906442441445694, 16.98870600983818, 45.14560960518627, 23.86192040870454, 56.698927899380976, 7.93765695360266, 35.32225945290093, 27.718575069124924, 11.917003072917774, 22.793852727899377, 176.7320729587446, 82.00863136745821, 90.3635406379939, 70.23607264507332, 59.93012277401272, 11.409027484127407, 13.303233811498222, 17.368475433255494, 19.01192884309731, 103.82002090270495, 121.7098168494243, 97.32550294889492, 5.220449720916595, 79.2963332105847, 32.59148488849609, 10.350091761007619, 25.43822472324056, 55.93974742020018, 13.627573706276767, 134.49678316551942, 11.396676337710513, 52.06861864151933, 50.116068531054026, 5.429267503619489, 18.36899791859411, 5.379197916558225, 46.76121776151238, 98.69081919103884, 38.97615969659036, 6.7998020892974385, 115.64073157547003, 40.69870052541137, 26.05528366344214, 134.08049106402453, 14.383270110306821, 5.65830661251365, 17.670632336961656, 5.0668768084616405, 5.423425788921051, 9.193229259401836, 7.7003629929320425, 5.6488101951546446, 21.705910519841353, 93.72469788350521, 18.648614507103474, 15.882266835934322, 12.878849910435632, 9.381401685865178, 58.490354506625096, 41.78402067026784, 5.801382446131855, 21.85867141927647, 68.90809808559818, 26.748662030749102, 19.574980296433456, 7.00052277834859, 20.699865600643037, 9.060633976565539, 86.00052204489126, 18.485181385335007, 5.386322161120309, 41.479774704662326, 13.989521408942144, 15.285292479152156, 75.74071370025223, 12.862803074279727, 59.59911971559352, 11.138649902612956, 50.994066995090826, 83.84181279375701, 13.970221573167438, 33.975611114141024, 18.846427014403222, 21.115592898169854, 25.059366203295298, 15.660468036241964, 19.056847160737263, 60.81173409095343, 23.54551700693115, 102.7170216027564, 23.79871258519519, 68.90475730332265, 11.23916817644276, 19.4341778408945, 63.01664788137044, 25.810497161322388, 10.616591316530762, 12.20472626065975, 24.864157894865308, 26.418448883233914, 6.019822164116009, 38.625574019424015, 44.391008414760556, 66.52125568806277, 11.20020473445167, 12.148495760561401, 53.39095369461024, 114.68752570553026, 78.14578560832537, 54.431616452627416, 17.076920640035436, 61.70867778857692, 16.292599384159764, 19.570907603034083, 9.407373861715655, 5.707889012988195, 96.01234972280919, 16.87482627535191, 9.08872392513095, 8.279406470582881, 5.562429263513329, 5.985671377641469, 31.90892118147892, 7.603068027875428, 7.537174953625151, 27.184525656790303, 16.668991417937747, 53.71540660936459, 47.26098638925756, 78.05260612681319, 22.334570669420867, 16.51049080733802, 6.452650552900164, 60.750495032544684, 18.22729900926813, 29.057578412369935, 34.1895565592681, 46.54436203468389, 51.57812052023162, 31.87675076799982, 80.94055313558107, 126.84171310502441, 30.68747698616806, 5.777570075517187, 6.0680191342215055, 35.55675549439198, 55.849231368750296, 37.52201668204531, 67.32901673492901, 27.949725548362032, 72.04313803668884, 23.37073231725488, 14.12007004310773, 82.64445429072217, 5.430075965312741, 12.883658362136288, 5.366718440816373, 29.246090271069583, 6.66733157361181, 8.747764809581733, 65.2675871373737, 131.91867756264682, 68.33439803809937, 19.35416527219209, 31.21539932177818, 26.184722393702934, 7.661355788491274, 15.532562653956811, 32.922517602826964, 18.811404063707236, 25.8902223374999, 12.01098798647936, 10.141625165595737, 52.70916754575811, 13.061320153589524, 5.3228684704113585, 5.94396427253223, 139.94434581217035, 97.71665918602895, 22.505911942524104, 27.09823116179385, 22.487833083587326, 25.41891161008469, 5.556939513510401, 27.292974136081973, 16.50825283546803, 31.872616394180493, 16.361586140176342, 65.2851589110712, 10.186872813207478, 30.512479688336636, 26.166552004214406, 60.04157170462342, 23.053950483397568, 7.962175769928259, 13.501885521904228, 47.25926377878543, 13.869060222070008, 16.739879139065653, 39.613352373288016, 16.94994307957814, 7.120549976852831, 19.39995219371743, 24.686707269695003, 7.9903134247629, 16.716504053047192, 7.1457228618504525, 133.11920877284757, 13.732158059189793, 16.107960793415966, 25.890212323714408, 6.4141462092831105, 96.08589348280448, 24.565995697787855, 7.863366730460314, 65.32978578423234, 41.49252310948792, 11.949921899813184, 31.540317301624185, 63.25122314173137, 5.819080011691426, 15.378831410349695, 11.138050033481456, 15.145774741506917, 29.134100678528185, 5.578691051515163, 59.6341795367651, 22.36411976677723, 135.63436716575947, 19.260474515952616, 5.1772090704178835, 36.478060419527594, 11.97979185774503, 22.53547400723724, 60.52950867201848, 5.79523850578068, 16.924708584189325, 78.32100126619872, 11.971634484670327, 6.6290792261425775, 46.20499857289401, 56.08314913196725, 25.315558196605018, 14.148553887048461, 75.60973328564508, 30.928161751914722, 83.32878423069481, 21.59300266199357, 5.106716031622495, 13.507485879155496, 8.968736723998003, 22.01309921860512, 61.87864243738854, 82.72258657140321, 64.917520386213, 136.26582517540604, 45.60440233632383, 23.656522006930167, 90.25941728867367, 17.250097005797038, 77.38789389449991, 10.955383685351629, 71.7897888376857, 6.228205985573788, 25.28161719129544, 13.490062353991796, 12.826281132602848, 5.9542804323485905, 32.018617889075564, 13.005810134375512, 22.68469299067136, 58.67766037685405, 35.352725341900005, 29.31737066439789, 26.43904801553144, 96.4821257615036, 98.57849917324386, 29.775725528683125, 33.885213852195925, 23.05663199865871, 33.8087769044975, 17.174842641582472, 64.8208016607164, 63.790150629188304, 49.63189802775454, 102.65672862953085, 56.383102778756786, 23.996851741026102, 75.86622152205067, 9.68393675653626, 11.4514847614882, 6.508749723060534, 72.58688039112461, 16.737047164423636, 22.847583509643083, 7.094380879258914, 29.23124275289895, 105.22370353395534, 11.103416613405967, 9.65118777257016, 5.3307330564600655, 106.32510433373835, 10.851024159838193, 38.32528333786678, 12.194276758675786, 96.33775140610489, 32.539232425611004, 52.58294378196358, 104.196751112531, 10.13592390021121, 6.097542567287587, 17.472582078178526, 6.399224920874232, 79.69828832030818, 34.38850965874529, 52.91646486893208, 126.56504194239297, 119.05383639748388, 56.813380896770525, 13.8946485803298, 47.0482776133568, 19.067330304670474, 33.56198275416901, 54.40759608775255, 52.46501928609906, 28.023975190365654, 11.824208869547729, 80.07610590434412, 15.763821114348044, 63.39364018946745, 103.65510041832039, 52.95300806961518, 37.585122604209815, 36.12897430762434, 37.17223033046549, 73.5633770701283, 17.04476054690455, 13.344602531796104, 12.84494388377891, 37.69655256905149, 40.63510756062391, 66.93585940172534, 38.752834201504164, 14.45421788840402, 12.116349830931773, 50.66700300458696, 11.068215302834696, 40.18192490719211, 14.785729013639443, 75.17454232975561, 82.21103297617763, 86.60246531857844, 53.729818150134655, 5.974535652039651, 27.628936265598014, 15.672699646406766, 12.410187566009856, 121.2519773786463, 15.700279583109516, 21.063083534967355, 14.907715195222636, 75.54658823146573, 7.218883003754144, 92.34058865056278, 106.40369385871576, 5.343505979211169, 78.01274422072983, 13.483004641745795, 13.742190889363865, 38.068670759032734, 28.05096030618754, 44.51381425219428, 76.92849856760608, 21.67409783526194, 62.05892370132009, 12.813499452585502, 61.02397116455931, 40.88152880530488, 57.6956727076341, 77.70270261073037, 35.46441762048066, 24.462663880171448, 49.31340996133161, 72.80242151042808, 6.54195190655155, 10.947833521613934, 106.4246913613558, 38.73203825694064, 78.0828974722857, 25.686668729652073, 72.12278014594061, 12.239813922938508, 107.42100983193862, 22.358285914862716, 5.562798115623973, 20.347682101659732, 37.38566314176209, 35.452977892908656, 16.760631805921754, 87.87358853072465, 58.77834641547305, 13.238155410662944, 106.52254890511819, 33.01795181359093, 35.89947989124161, 116.9310439833182, 12.893782095298027, 56.01385130651891, 23.52040928339887, 87.56894524713161, 27.31193026951732, 11.442445261622742, 35.183059275238605, 9.505485325882415, 56.6469377622699, 57.39847267458119, 47.78889166103699, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2889804.6875, 2922321.875, 3103442.1875, 3182402.8982687527, 3224337.1451907605, 3373150.0, 3398887.492024558, 3411985.9375, 3412814.998362398, 3417372.987804885, 3444809.375, 3459406.25, 3493704.6875, 3518604.803442286, 3524881.25, 3529408.833526779, 3606482.8125, 3618926.5625, 3630025.0, 3630100.5585258496, 3632445.3125, 3645456.9719375577, 3645655.031688058, 3647025.0, 3647682.9213054273, 3650064.0625, 3815966.9122230355, 3817373.4375, 3873821.830709889, 3923985.211189821, 3972206.5052530942, 3979732.750310936, 3982877.905146628, 3988976.414557925, 4016149.0233603395, 4016614.6283826223, 4018642.3566844645, 4024876.5625, 4025585.126701757, 4037864.047658693, 4041347.8592312345, 4044210.5369960577, 4045420.530016161, 4048665.625, 4051124.7784650666, 4051255.0901834667, 4052134.9203804927, 4053678.514178989, 4063909.2279106677, 4064954.73459245, 4067633.5988790337, 4069752.3038099515, 4075803.4288710696, 4079743.4662133097, 4082069.797783094, 4082404.462738134, 4085273.7389837527, 4101672.1368886265, 4148931.092587933, 4157616.7381027984, 4182650.1812355886, 4198671.328963109, 4226853.766747027, 4227560.9375, 4243375.723225854, 4249830.943525776, 4265879.663993593, 4267071.875, 4267132.2006931985, 4267650.3194996705, 4268582.56845798, 4268774.842393889, 4269170.3125, 4309600.342385433, 4315514.856499323, 4335106.059635056, 4336657.8125, 4497212.509765603, 4770633.114304443, 4772208.534782791, 5001477.878868128, 5007620.944633265, 5008979.6875, 7237681.25, 7261881.25, 7264315.625, 7272141.407839194, 7275032.7804302275, 7503425.646329417, 7505979.15669692, 7538232.8125, 7539750.249520695, 7574736.335328502, 7578703.668844052, 7584414.158827801, 7585637.132163214, 7586717.1875, 7592265.625, 7592919.26339662, 7593538.14748629, 7594654.156365068, 7621864.0625, 7642407.507117025, 7650349.349686567, 7659054.6875, 7677668.75, 7693986.8362515615, 7698570.986045827, 7699142.1875, 7705043.368509559, 7707330.328513351, 7707837.9590133745, 7708000.285351237, 7710163.481724535, 7711478.125, 7712522.393436262, 7713819.733127728, 7714541.908127555, 7715146.678879405, 7715459.500872557, 7716998.454544315, 7717063.022430971, 7720062.354766521, 7720676.5625, 7721179.6875, 7723778.125, 7723830.75652749, 7726663.826422844, 7740894.826551147, 7752995.193150863, 7753274.904475917, 7753915.977634228, 7753937.5, 7755204.463648768, 7779363.028367239, 7786935.520941226, 7795121.364686916, 7795610.157266529, 7798035.081829372, 7798239.0625, 7801079.26180351, 7802032.989865215, 7809765.625, 7810107.8125, 7816482.945631041, 7816490.153375601, 7816690.061686517, 7816901.272789795, 7843487.5, 7851468.791543826, 7893392.887725944, 7893692.696668393, 7901545.127302763, 7907125.0, 7908031.041455227, 7908770.3125, 7911707.8125, 7912127.733254877, 7915110.792543314, 7917400.805650999, 7920056.798472315, 7922289.231061183, 7922428.070971295, 7922710.228863105, 7924369.609471562, 7924551.516731656, 7925145.998421525, 7925329.454735654, 7926066.073534263, 7926878.204881096, 7927525.0, 7928221.168781405, 7928594.611609806, 7928599.954687512, 7930409.014351437, 7930586.504295998, 7945667.091667087, 7946924.3214601595, 7946952.245422749, 7947854.6875, 7948117.041638592, 7948153.984655005, 7952567.5497804675, 7953354.6875, 7953391.07520732, 7953922.947654597, 7954213.751828417, 7954929.531663193, 7957021.875, 7957464.427843477, 7957525.0, 7957847.769536957, 7958561.931719407, 7959327.810226547, 7959400.459334453, 7959448.4375, 7960279.6875, 7960542.17742085, 7960994.171691013, 7961069.95169468, 7962601.167203381, 7962723.4375, 7963761.471881562, 7963795.3125, 7964785.9375, 7967418.081540769, 7974510.820562999, 7975470.665774955, 7976656.121242296, 7980537.5, 7985387.366005708, 7995264.150612932, 7995267.1875, 7995334.790494614, 7995520.604528807, 7995912.246961637, 7997516.285643879, 8001225.917954785, 8006646.927100161, 8014564.522885187, 8016268.75, 8029119.010665385, 8029862.5, 8038347.17119849, 8048354.6875, 8053218.122974601, 8054921.796289809, 8063355.930960044, 8098414.0625, 8130867.131405144, 8141084.375, 8141947.425271318, 8143365.65877458, 8143415.752774913, 8143531.25, 8143607.343365793, 8144009.323959197, 8147069.34504776, 8147315.439088314, 8150698.4375, 8151803.125, 8152350.0, 8157309.193809257, 8157309.2680538, 8158529.998694644, 8162816.386598914, 8163923.4375, 8164597.577313065, 8164602.3308291705, 8166185.665339798, 8166505.012991613, 8166973.406083699, 8167012.2350635715, 8168432.238946805, 8169093.480914185, 8169788.769844333, 8170433.689753072, 8170440.239456674, 8170496.095847655, 8170562.5, 8170983.68424144, 8171021.590394253, 8171307.290243509, 8171668.147733805, 8171936.224611442, 8172325.0, 8173711.344476547, 8174436.925143816, 8174892.069907307, 8176084.596024195, 8176171.999926254, 8176230.030918565, 8177576.802282838, 8179787.110359824, 8180699.54117315, 8181086.442680834, 8183068.75, 8183609.384072529, 8183916.599973559, 8184189.90507631, 8185792.1875, 8194637.5, 8195261.6729085725, 8197051.799732388, 8197470.24408538, 8198767.185509488, 8199207.2208187245, 8200330.996085569, 8200490.165884241, 8200742.540750982, 8201334.952454946, 8201973.4375, 8202677.9016753975, 8202682.5509186415, 8204757.6730006, 8207145.208887096, 8207393.75, 8207942.1875, 8212792.886636778, 8212834.375, 8213273.331954922, 8213301.529105237, 8224693.066745396, 8232053.125, 8236276.172552209, 8237721.875, 8240079.378056695, 8240264.684565477, 8246315.625, 8246755.774027414, 8248057.544540426, 8248717.969482487, 8250480.601518661, 8266356.761214189, 8267306.764171839, 8267468.75, 8282203.125, 8290615.625, 8292731.026805542, 8293835.9375, 8293840.625, 8296768.050316417, 8301939.367110508, 8302618.42833925, 8308673.768347108, 8311387.5006102845, 8312975.0, 8314788.483710156, 8318061.84245213, 8320130.339435882, 8320341.954522341, 8321662.023774249, 8321725.110311103, 8322503.50058899, 8324473.4375, 8325926.289558375, 8327418.500156293, 8327840.625, 8328210.987115761, 8328451.493809916, 8328991.678165932, 8329588.961312863, 8329595.3125, 8330938.842940804, 8330949.684145524, 8331050.0, 8331171.267468334, 8331265.400813128, 8331278.530230116, 8331925.0, 8332960.766487326, 8333424.258950973, 8334376.756379976, 8334701.535082657, 8335349.731357862, 8335596.718989288, 8338163.473146832, 8338969.404880666, 8340721.407556753, 8340773.048444242, 8341123.963787923, 8341168.26473178, 8341221.774265922, 8341710.9375, 8341753.631716822, 8343061.4562423965, 8343074.060344704, 8343664.0625, 8345260.073068818, 8345754.432592488, 8346090.7343624, 8346099.39639139, 8346728.125981435, 8346933.189438472, 8347163.968784073, 8347227.194567166, 8347773.4375, 8347861.7066976875, 8348237.5, 8348268.036407338, 8350289.712630325, 8350512.710766268, 8350768.356250854, 8354866.025576992, 8355807.37156258, 8358145.3125, 8359635.1353863245, 8360108.705406907, 8362762.5, 8362918.286702526, 8363292.133237621, 8363515.94595699, 8363557.8125, 8364984.375, 8365048.481381088, 8365242.1875, 8365251.5625, 8365278.309258197, 8365330.09198774, 8365341.5622017225, 8365434.012018645, 8365440.634483613, 8365443.75, 8365478.125, 8365483.338443653, 8365580.83030524, 8365581.25, 8365589.0625, 8365631.496852989, 8365633.996479735, 8365653.125, 8365680.633752178, 8365743.75, 8366291.9338522935, 8366312.238319918, 8366500.0, 8366508.6887259055, 8366626.944837292, 8366642.1875, 8366839.0625, 8367255.919321489, 8367267.295340842, 8367629.6875, 8367646.692333354, 8367788.778646623, 8368034.302759314, 8368177.697733677, 8370938.710106506, 8371735.717834835, 8371815.304684257, 8371980.3041762225, 8372167.500804384, 8372171.716984969, 8372356.677939689, 8372359.238401343, 8372839.0625, 8373927.020786404, 8374553.818653941, 8375910.210335895, 8376573.334425352, 8377403.923786988, 8377527.186792973, 8377882.8125, 8378297.926767612, 8378407.6825393755, 8378445.212591125, 8378659.736348338, 8378688.923523487, 8378714.0625, 8378782.8125, 8379401.931304151, 8379893.75, 8379894.821051161, 8380373.668067813, 8380497.36708118, 8381496.018732645, 8381821.3883421, 8381929.499925368, 8382595.3125, 8382651.5625, 8383873.487779066, 8384133.876723971, 8384453.33181713, 8385632.996859797, 8385771.074344867, 8387035.9375, 8387161.779854175, 8387210.445027338, 8387376.5625, 8388026.53313086, 8388258.923756806, 8388490.579341339, 8389558.21266172, 8389642.001874914, 8389837.5, 8390232.763734736, 8391049.376022542, 8391312.597865146, 8391662.34373862, 8392043.75, 8392145.3125, 8392175.0, 8392179.67619273, 8392187.254905855, 8392197.74521772, 8392268.782704087, 8392298.122329166, 8392304.650075719, 8393078.125, 8393374.27910493, 8393394.10750522, 8393593.85346378, 8394354.171401728, 8394426.016365746, 8394429.6875, 8394694.670645425, 8395209.67314473, 8399104.849300211, 8403583.98417802, 8403852.958828725, 8406000.899044944, 8406821.875, 8406949.797684034, 8407098.4375, 8407577.033403913, 8407775.20955259, 8407896.19282383, 8408229.590898363, 8408274.164890429, 8408539.766436836, 8409025.286326002, 8412373.301237805, 8412837.5, 8414007.8125, 8414043.528840056, 8417803.552894253, 8417862.813043687, 8417871.33040061, 8418547.766523132, 8419444.412396304, 8420225.577922435, 8421521.281689588, 8421977.886716861, 8423221.747952165, 8424521.637517508, 8427687.5, 8428142.679716235, 8429748.4375, 8430430.953326918, 8430570.3125, 8431124.431661228, 8433046.875, 8433625.94585045, 8445484.375, 8449654.57991513, 8454042.990486369, 8462992.422547638, 8484409.247518698, 8486795.3125, 8492984.745435294, 8503523.092288958, 8508543.09488784, 8516751.570599718, 8516962.410773179, 8518834.28286294, 8519743.75, 8519761.000162184, 8519880.148841972, 8523420.678963218, 8526458.582208404, 8527220.914099896, 8527664.891247407, 8527912.5, 8528043.75, 8528047.394557556, 8528125.506791055, 8528272.289712187, 8528307.259592026, 8528443.75, 8528472.587704819, 8528527.113591954, 8528797.072764842, 8528825.0, 8529132.8125, 8529260.919164222, 8529627.175781641, 8529740.424290404, 8530095.3125, 8530265.641697185, 8530556.25, 8530615.657227121, 8530646.83065566, 8530722.80276467, 8530861.693691079, 8530958.366218073, 8530960.66242633, 8530986.665977363, 8531007.329478346, 8531690.625, 8531956.650622552, 8531961.868906774, 8531975.793896135, 8532892.111790352, 8533061.372437404, 8533195.762700133, 8533376.5625, 8533640.333654221, 8533948.4375, 8533955.526258577, 8534065.625, 8534074.013484417, 8534248.889889935, 8534264.981831834, 8534285.9375, 8534337.5, 8534340.625, 8534345.3125, 8534403.125, 8534550.172821365, 8534558.866649425, 8534702.31455742, 8534714.83422266, 8534790.625, 8534804.641972378, 8534832.8125, 8534888.155487543, 8534898.4375, 8535052.134931186, 8535083.813176591, 8535427.946542537, 8535475.0, 8535507.412735626, 8535938.946823936, 8536017.353022847, 8536290.625, 8536304.265110444, 8536396.09530328, 8536425.679600593, 8536518.236452656, 8536659.375, 8536745.921640672, 8536752.862372776, 8536895.49162417, 8537003.125, 8537010.9375, 8537104.058066508, 8537132.8125, 8537329.532901524, 8537360.148292916, 8537392.756970026, 8537423.32613747, 8537425.637709279, 8537432.644439232, 8537458.07328393, 8537500.611779483, 8537504.798108362, 8537528.125, 8537541.345682368, 8537553.351707974, 8537557.140668243, 8537560.996044884, 8537606.25, 8537675.0, 8537685.765775405, 8537852.51137687, 8537971.778649105, 8537986.946979096, 8537993.033514492, 8537999.519084724, 8538030.666627275, 8538054.34892029, 8538074.995667929, 8538216.321867652, 8538418.428450953, 8538423.4375, 8538487.225603066, 8538537.587363482, 8538595.138822315, 8538608.696667373, 8538615.625, 8538621.881989792, 8538675.0, 8538676.5625, 8538941.90697931, 8539068.75, 8539131.99878907, 8539324.873240579, 8539502.920978073, 8539523.614151405, 8539564.840358019, 8539582.8125, 8539588.150311477, 8539652.765135946, 8539745.016246213, 8539871.875, 8539912.57015807, 8540014.95292767, 8540061.45761764, 8540095.15828393, 8540273.083891604, 8540309.969727296, 8540398.219937518, 8540731.133614808, 8541589.941805303, 8541726.402368328, 8542529.6875, 8542551.5625, 8542685.983392024, 8543259.94273423, 8543374.096450994, 8543692.1875, 8543743.75, 8543966.300696602, 8544148.363900708, 8544218.75, 8546229.26449691, 8546476.273801792, 8546709.46350094, 8546734.392756531, 8547259.375, 8547922.30401824, 8548013.760838637, 8548026.54891515, 8548105.277739406, 8548114.578863045, 8548482.8125, 8548512.499530904, 8548859.188576413, 8549227.128534233, 8549401.95223995, 8549459.814133184, 8550039.8327259, 8550345.3125, 8553213.642909648, 8553226.921089018, 8553279.46421949, 8554061.620067425, 8554285.033150496, 8554665.625, 8554806.25, 8555012.5, 8555163.638811918, 8555269.703091385, 8555468.508397954, 8555565.150800044, 8555629.329428952, 8555872.932981445, 8556045.117166819, 8556143.75, 8556646.875, 8556942.1875, 8557365.625, 8560212.470268846, 8563982.8125, 8566377.794656513, 8566420.078891158, 8566854.331149474, 8566902.365261408, 8566943.080111483, 8567905.39373193, 8571312.77491465, 8572290.12338685, 8572478.90593735, 8573065.411363222, 8576248.42545841, 8578796.895809015, 8579014.880043011, 8579471.174173607, 8580141.26857481, 8581951.72037929, 8582267.334383518, 8582393.696816463, 8582425.743868709, 8582482.205480758, 8582506.750058211, 8582699.261976667, 8583067.91802182, 8583611.900408378, 8583844.745727826, 8584901.614699183, 8585357.767551478, 8585448.842919502, 8585469.908370087, 8585699.072686087, 8585818.344252571, 8586034.19526156, 8586561.41949185, 8588705.56726405, 8589509.733143369, 8589815.625, 8590390.953575911, 8590521.875, 8591397.738787787, 8591450.960498737, 8591665.073363818, 8592163.182991074, 8592349.643420063, 8592386.831666524, 8592552.687972197, 8592610.9375, 8592621.561975632, 8592839.46591422, 8595003.180071572, 8595034.818033075, 8595518.746568745, 8595985.198515289, 8596613.832403319, 8597243.14433604, 8597355.086422462, 8597381.341534039, 8597536.45050609, 8597554.874900712, 8597809.650707318, 8597874.850865917, 8598126.080830341, 8598246.83773454, 8598327.886251204, 8598494.416173303, 8598843.75, 8598890.625, 8599358.281719973, 8599404.348701363, 8599728.951582976, 8599757.881186388, 8599784.485192558, 8599916.081693348, 8600298.490078684, 8600810.9375, 8601064.967777044, 8601606.25, 8601698.14613399, 8601939.0625, 8602261.74270812, 8602433.314040536, 8602619.129346663, 8602664.546865802, 8602843.34850808, 8603012.5, 8603041.93094962, 8603044.188343633, 8603140.625, 8603170.792741295, 8603194.599678945, 8603640.625, 8604110.9375, 8604151.375866374, 8604163.837646298, 8604422.818087662, 8604479.417885246, 8604668.75, 8605174.509956768, 8605220.727667784, 8605355.814938135, 8605558.912512185, 8606038.613093995, 8606076.5625, 8606109.375, 8606567.1875, 8606641.467087036, 8606765.625, 8606820.29934087, 8606892.535596889, 8606948.934906589, 8607110.7837334, 8608123.324382784, 8608422.570403527, 8608493.435015218, 8608921.517540736, 8610243.308813915, 8610496.181780044, 8610803.294236656, 8611273.4375, 8612602.503753748, 8615033.986694004, 8616915.625, 8618773.4375, 8619590.625, 8619664.903032696, 8619734.375, 8619992.1875, 8620005.813415704, 8620056.25, 8620141.090741409, 8620698.222610284, 8620998.921512911, 8621001.5625, 8621830.461851783, 8622023.4375, 8622268.75, 8622370.074425614, 8623932.53152588, 8626604.6875, 8627737.8894395, 8627790.822716888, 8628048.57428699, 8628519.006204959, 8628822.277870929, 8635535.56334534, 8635738.958507413, 8637002.629491124, 8640664.0625, 8640804.67190411, 8641725.355438845, 8643305.919806536, 8643540.625, 8644601.37796914, 8647068.658624567, 8647170.90224031, 8647192.1875, 8647683.269193044, 8647700.0, 8654289.0625, 8656032.069479898, 8656056.340322217, 8664586.4736067, 8665624.4156055, 8672429.879671047, 8672548.344451291, 8673626.5625, 8674177.841096226, 8675050.75455455, 8675214.727637382, 8676485.632762313, 8676516.679364799, 8676816.404284518, 8677251.5625, 8677424.186539812, 8677557.621883508, 8678150.520612884, 8678166.041050091, 8679204.6875, 8679789.262718368, 8681025.299945926, 8681796.22500851, 8682721.44894345, 8683121.875, 8683564.0625, 8689440.625, 8689443.57003275, 8689512.960486988, 8689557.319261542, 8690240.78162648, 8690868.555626681, 8690871.619405245, 8691853.125, 8692162.136684412, 8692987.365996053, 8693084.927127503, 8693089.0625, 8693254.64910283, 8693318.835590767, 8693392.145027628, 8693890.546766393, 8695293.599492582, 8695332.518635457, 8695459.375, 8696780.0822449, 8700202.275192887, 8701873.616962923, 8702966.315160742, 8703534.082987078, 8703626.80560747, 8704739.832370393, 8704978.116105344, 8705548.489077203, 8707859.733117033, 8708457.8125, 8708645.3125, 8708707.858662056, 8708823.792520655, 8708908.931326548, 8709270.826948557, 8709626.942128932, 8709721.480915185, 8710638.185273785, 8711406.703106545, 8712364.959585035, 8712910.9375, 8714775.864039585, 8714794.867030708, 8715392.881285125, 8715565.625, 8716096.875, 8719176.5625, 8719266.230442107, 8720237.5, 8722860.9375, 8722872.216263818, 8722943.991565665, 8723239.0625, 8723284.375, 8723590.625, 8723766.51832871, 8723807.8125, 8723831.861376274, 8723901.167770399, 8723924.582567047, 8724602.159977734, 8724693.126963053, 8724840.625, 8724876.038787765, 8724914.469887892, 8725120.3125, 8725293.75, 8725824.467591811, 8727085.9375, 8727206.25, 8727476.5625, 8727487.460948601, 8727602.459195647, 8727676.5625, 8728109.056751614, 8728141.74572191, 8728154.623079965, 8728254.879941355, 8728393.336168021, 8728583.01144534, 8728674.690101271, 8728773.115665935, 8728791.148050869, ...], [74.49414649514388, 71.13308941626941, 53.8251856290619, 14.142431546383719, 12.544839213639223, 60.24949352834942, 25.03757341822758, 48.6907197380132, 52.85057753962042, 13.465963611227563, 125.8294955980322, 49.99928342380431, 45.329128822556015, 21.382618960991827, 59.10683477923298, 21.089124223694718, 28.663511335269362, 79.12032335764029, 39.370221664589735, 5.178576647331584, 97.32594622160113, 6.91673490523192, 8.477381356718844, 51.287183743105345, 6.099487583661784, 70.29446170336945, 45.91581630272233, 72.69788794144374, 162.10978854793092, 12.746213440280458, 7.698243206061493, 27.35191077533862, 14.164896421962242, 6.734326174800126, 32.951556410563875, 17.649050837854492, 8.378118195487245, 70.8506678763962, 30.809848290463634, 28.234485453165966, 65.1607958463097, 10.554528069668164, 15.840889344340908, 46.44308833963567, 31.892971466125342, 5.552948509102406, 12.102534448765386, 8.503693371137487, 64.14912747148199, 5.4637914361517925, 42.16585218924054, 86.41795690171352, 24.60748726032623, 105.00969971377684, 62.639488977654864, 49.64324936840219, 8.45271215881986, 51.58016319959485, 33.05106093594555, 70.18156605182723, 8.384800849663819, 8.908763979107356, 18.12085420102109, 183.8913007982782, 18.666293115815257, 76.75727218100766, 20.29904637386315, 52.7521967239657, 8.86263471517718, 59.21360279258158, 5.691400580180947, 70.4761576834562, 52.69991225134838, 23.208871399224826, 10.107024092525233, 136.93519206027636, 29.31576351361979, 11.143005452962035, 20.114491815098262, 18.659733221034855, 40.31057839857719, 97.99888196838533, 121.80999502304789, 49.74658957376661, 84.50446993758315, 47.96325820578018, 5.369481948169031, 56.21898419816287, 32.48234713316556, 21.1912295923351, 53.349826751678115, 8.423087981325931, 16.710824429324287, 5.142297790672674, 23.66230344346674, 22.92124366050999, 53.11681632169107, 44.20184006594861, 9.806826963073611, 8.661474864922232, 48.16202782171598, 43.47171379535536, 89.55378529052004, 12.932399589987646, 53.44066502059921, 39.92754189241606, 20.001624480389292, 12.373648907617017, 33.198369009059675, 85.29464927674942, 63.98508077452629, 13.681698588079975, 11.605080808971728, 50.55273744275782, 104.03210121591304, 72.80389726478587, 13.113796542161182, 80.58535481495862, 61.627977804849024, 34.85389339059143, 68.95983822989207, 12.055907396460348, 9.21154675264862, 58.53179871851212, 34.59384588264868, 29.016576452969716, 5.154026081009739, 33.11540512289814, 49.59012461485415, 10.946143767638212, 79.77297575433427, 11.727583267705313, 58.47621811526861, 24.77474092528538, 9.822052057866573, 51.97344699324717, 88.1514688144878, 113.78791414728579, 12.447179715520049, 61.02555427109107, 50.47017720341036, 54.75840423966575, 48.73164494756944, 86.79835238641144, 11.342376865153717, 21.78091045610404, 69.9479319444568, 97.05368578555338, 82.38603620753703, 9.366779610401741, 8.695169940322486, 44.16877577820463, 14.279676381173214, 62.92177700542808, 8.179290606132405, 102.55913177176451, 75.88512017530009, 9.02076067592005, 52.069630027199366, 12.673647802477157, 17.54529646308356, 15.625418018989636, 27.49934285134072, 39.70884689766851, 10.18187033850854, 82.51976208281579, 18.411306999580784, 10.782380993618867, 16.9796749445588, 128.0174658389042, 38.24305632299891, 12.794647467620582, 19.69870709776275, 8.262759802502169, 6.432004455229934, 7.821963510035364, 42.88601258341759, 8.816771610487656, 12.394229389132803, 40.97293039599776, 14.413247271113303, 67.3463935799829, 21.826118851320274, 55.911129037889864, 11.912754813208808, 86.80481813687913, 23.61537741480829, 5.525564789306872, 65.4331248640859, 58.22774306577518, 48.78421557529868, 19.966651869307654, 13.493829926732142, 105.18120661232949, 5.555796664956124, 51.13591688043582, 183.19417722529883, 71.88799704413906, 80.2728977172767, 23.003915928594832, 90.96983812432123, 99.60242277416509, 56.695640653212806, 31.84694793087277, 58.42147740029811, 5.433788796684975, 59.603561472247485, 21.357857453223325, 26.21586617745891, 78.23811640895977, 64.92115137030781, 15.288338082665817, 72.41330113298383, 7.2351306495665835, 44.028912143223664, 12.30206729942838, 52.23085265096455, 20.162973501319392, 8.31432227405975, 65.67853811723425, 49.212228407904554, 18.84538106872655, 50.75146036317752, 11.6245551564338, 39.091894812264925, 24.597224949547797, 11.006866805660794, 23.510541650325262, 55.33455607028056, 26.50260414710462, 29.212641097982633, 28.721068348324394, 7.615499221604705, 5.621152281419955, 44.188041346475565, 65.12687727212773, 11.048853067976347, 6.888417027352793, 14.277283090151693, 51.64370838724501, 50.882571831339654, 40.01640673961584, 21.164022684809456, 10.964558791166668, 31.906473798422418, 12.57115123056723, 57.96976163428297, 14.200967932790896, 87.569278731456, 10.727379148628732, 11.677671051464754, 208.159759994564, 24.209206998425376, 20.78946009315165, 14.006322837204898, 127.24772726125578, 19.824849334803663, 22.71626742133482, 134.13340285613646, 84.7490030076766, 19.028159609458758, 23.94939398786453, 26.80640906899002, 20.53019588166907, 44.26665814168855, 85.82114103454288, 14.753564559785861, 70.38176425285263, 14.511475810402674, 11.491698079099951, 20.931255501980235, 5.969881051545026, 15.94163955262936, 25.46087903262762, 13.440242036887714, 17.294183797073458, 47.949190673331714, 8.291380864700239, 7.403717523853669, 81.48412196448331, 34.63410720419042, 59.711551804988765, 24.00167132691507, 21.912194425507316, 27.24069051147457, 36.504183730194555, 20.62481605587011, 34.13460787317023, 46.77566630214811, 30.726136406583077, 181.4532486891623, 96.42714997205701, 44.10884613004225, 96.70608798399263, 24.302383396671317, 26.631550535402468, 72.94365450312668, 114.37859886969046, 68.63783837562289, 153.52043648698051, 10.96664553193784, 25.956022066516606, 19.84106365629248, 49.18795124895613, 20.31413782304292, 173.43857705715234, 69.29718857720692, 6.589236760748899, 57.989499969588344, 68.80000744960488, 9.114659743906639, 19.08719818122429, 5.0307825859545625, 17.32860622268869, 17.345547546958564, 67.40691935377917, 61.42961190803958, 38.06352368420757, 55.91721249235448, 97.79550989864491, 54.12158718185922, 143.5369647722596, 113.4102780474121, 26.648801088151483, 16.372726766644384, 15.952729222902128, 36.829816205565805, 20.741558582494697, 55.12976696410363, 89.99370834313326, 27.914787140915475, 21.291254167148434, 5.070907765439116, 16.596480639705412, 94.15047420845079, 60.584941912192605, 6.236140173218815, 32.31259544031069, 75.58261842745956, 47.38470857159744, 61.95904931778889, 67.27791497762517, 36.711962709428335, 31.678556958429066, 13.86035251604883, 35.31094498823963, 10.294588240854997, 86.35965705501678, 7.2322106060439255, 55.4282906997951, 25.551172873536586, 10.138171540031092, 15.735839040022004, 67.01589225593467, 94.77683290571692, 19.37288235891438, 49.28759316226524, 38.15245837718622, 21.824137634605265, 46.71983082633784, 16.707335148628538, 13.366574810077699, 89.50266952190292, 90.49727399048535, 15.919510867782016, 114.68511325581707, 24.723366669241713, 115.70976782275218, 18.49333518623707, 38.88428935812744, 11.303061002380632, 10.299311780927674, 14.945251513770298, 9.67184912100233, 63.033319543710334, 5.311018979348471, 81.01147107706909, 18.993522481664858, 88.06283900645205, 90.07983866078675, 12.322712660827044, 8.401270162933036, 10.563391883325835, 11.81742289739618, 10.501993397068235, 42.51166051238724, 18.929650177697365, 74.89913719691967, 36.920099951353365, 71.1551189597763, 23.056361657209344, 13.314361465092247, 62.764299761453046, 32.62034036408441, 11.19699554542299, 109.18539824068361, 48.161181271840746, 28.235231633186736, 51.871993592634766, 29.153386148479406, 56.30620665576009, 8.291598794033709, 68.96348014356451, 37.43924856962959, 12.06300786693578, 29.427090906718835, 34.983950677163286, 62.689570113952506, 5.832473879677072, 53.83994973919361, 64.92533665389696, 5.375426681593692, 52.03700510393384, 24.36145307190016, 43.697715146240384, 67.33089586210707, 19.81650308208202, 15.498410159910149, 46.58096653887075, 62.511990339465434, 23.36661961009246, 16.819752562470924, 49.41371479042342, 14.388656805414097, 106.83324449627503, 14.673129869060292, 6.422136330358374, 29.104038361375984, 33.0571090850455, 13.846658302135332, 81.23836158085032, 16.287208810516116, 10.889386408477053, 56.25348094049353, 7.086001085999981, 84.19943274704633, 17.03272753456294, 7.874990069775292, 7.359830653537342, 9.245742390120126, 12.657509731677438, 24.53347114657216, 47.773834433447256, 44.836684928088474, 5.698536588331347, 18.36821962424715, 20.51403853453053, 32.14401165956008, 99.85389025348907, 108.57365661410296, 63.14831684062967, 42.384691096888645, 33.57508499529388, 15.566237953720737, 16.835922301027413, 11.202533687643779, 27.784542315524533, 9.177679366823742, 151.59404818728643, 48.81125257153564, 15.136676442996551, 223.38615061674383, 33.201654982547026, 11.4286421597677, 18.940184468506775, 110.98773259003111, 29.260239389501628, 21.568519532483077, 65.37187513766438, 42.93162917863073, 44.687119755076964, 141.49797495837228, 7.230770918308612, 5.239979559193711, 31.63522540086247, 79.89337824484292, 5.228010721426868, 9.415547665336105, 92.83981245230837, 75.75417091892096, 67.619489852429, 54.46978615892257, 89.72672829615719, 35.41292533765373, 29.233422175727146, 40.651869207202104, 6.0559261881433715, 14.800758753291845, 29.55061007834834, 12.759212751939845, 9.653166626151275, 15.351095494005419, 6.409121292284862, 18.145785239021237, 130.95369153376544, 26.807069653468318, 37.3776462369306, 5.249696427105993, 78.46210012742267, 25.62527495464982, 10.228058506550948, 54.277301662536864, 39.872527856268434, 55.7226108592434, 108.3573415110615, 65.49007641341326, 47.30668947634642, 63.75891391831806, 18.695333650711298, 18.53330416769581, 9.585840334458489, 26.094791545171688, 76.20096080672987, 51.483180875761064, 14.160620912161049, 7.238665960900141, 114.15099491814495, 10.37127607976207, 12.880964624509232, 63.10222370187553, 12.169624599957993, 42.45073461812238, 24.57245593050813, 26.243641283765314, 70.28577858790115, 82.37851866752298, 7.257144333538164, 53.534304241682804, 23.79333166900777, 72.06691389542027, 17.80404787682866, 66.41010384433423, 8.859274904142845, 68.25892939892148, 26.56484019830043, 19.24372310196535, 59.590681292673366, 9.225887565945182, 66.94209433680435, 6.839785312838804, 142.17617604180148, 110.51851813067975, 14.972471888277953, 49.95707369056234, 57.76861567155783, 90.31427594803927, 6.776081400968993, 11.934477347861678, 11.753275117016177, 10.079740480438527, 12.219172413294746, 31.47075435558233, 68.75822417330092, 102.38819962577769, 17.37651051087603, 15.83307130104568, 15.782208868357273, 44.55516196680131, 29.001720140940495, 10.016715914208973, 167.67185415297183, 11.451567034661727, 75.31899673985325, 76.07760396404773, 14.87207956111702, 17.939958596645187, 25.10768514878152, 43.68187175653482, 79.54330349764359, 52.56570451654121, 9.358802499162785, 19.318571022254307, 12.971587523686628, 6.008080423838159, 119.83869105904054, 26.722536252871684, 26.488771678858818, 13.372787498300152, 53.7023750871002, 11.817509310234698, 10.266375733723946, 45.30999622075619, 14.660583795017573, 16.906442441445694, 16.98870600983818, 45.14560960518627, 23.86192040870454, 56.698927899380976, 7.93765695360266, 35.32225945290093, 27.718575069124924, 11.917003072917774, 22.793852727899377, 176.7320729587446, 82.00863136745821, 90.3635406379939, 70.23607264507332, 59.93012277401272, 11.409027484127407, 13.303233811498222, 17.368475433255494, 19.01192884309731, 103.82002090270495, 121.7098168494243, 97.32550294889492, 5.220449720916595, 79.2963332105847, 32.59148488849609, 10.350091761007619, 25.43822472324056, 55.93974742020018, 13.627573706276767, 134.49678316551942, 11.396676337710513, 52.06861864151933, 50.116068531054026, 5.429267503619489, 18.36899791859411, 5.379197916558225, 46.76121776151238, 98.69081919103884, 38.97615969659036, 6.7998020892974385, 115.64073157547003, 40.69870052541137, 26.05528366344214, 134.08049106402453, 14.383270110306821, 5.65830661251365, 17.670632336961656, 5.0668768084616405, 5.423425788921051, 9.193229259401836, 7.7003629929320425, 5.6488101951546446, 21.705910519841353, 93.72469788350521, 18.648614507103474, 15.882266835934322, 12.878849910435632, 9.381401685865178, 58.490354506625096, 41.78402067026784, 5.801382446131855, 21.85867141927647, 68.90809808559818, 26.748662030749102, 19.574980296433456, 7.00052277834859, 20.699865600643037, 9.060633976565539, 86.00052204489126, 18.485181385335007, 5.386322161120309, 41.479774704662326, 13.989521408942144, 15.285292479152156, 75.74071370025223, 12.862803074279727, 59.59911971559352, 11.138649902612956, 50.994066995090826, 83.84181279375701, 13.970221573167438, 33.975611114141024, 18.846427014403222, 21.115592898169854, 25.059366203295298, 15.660468036241964, 19.056847160737263, 60.81173409095343, 23.54551700693115, 102.7170216027564, 23.79871258519519, 68.90475730332265, 11.23916817644276, 19.4341778408945, 63.01664788137044, 25.810497161322388, 10.616591316530762, 12.20472626065975, 24.864157894865308, 26.418448883233914, 6.019822164116009, 38.625574019424015, 44.391008414760556, 66.52125568806277, 11.20020473445167, 12.148495760561401, 53.39095369461024, 114.68752570553026, 78.14578560832537, 54.431616452627416, 17.076920640035436, 61.70867778857692, 16.292599384159764, 19.570907603034083, 9.407373861715655, 5.707889012988195, 96.01234972280919, 16.87482627535191, 9.08872392513095, 8.279406470582881, 5.562429263513329, 5.985671377641469, 31.90892118147892, 7.603068027875428, 7.537174953625151, 27.184525656790303, 16.668991417937747, 53.71540660936459, 47.26098638925756, 78.05260612681319, 22.334570669420867, 16.51049080733802, 6.452650552900164, 60.750495032544684, 18.22729900926813, 29.057578412369935, 34.1895565592681, 46.54436203468389, 51.57812052023162, 31.87675076799982, 80.94055313558107, 126.84171310502441, 30.68747698616806, 5.777570075517187, 6.0680191342215055, 35.55675549439198, 55.849231368750296, 37.52201668204531, 67.32901673492901, 27.949725548362032, 72.04313803668884, 23.37073231725488, 14.12007004310773, 82.64445429072217, 5.430075965312741, 12.883658362136288, 5.366718440816373, 29.246090271069583, 6.66733157361181, 8.747764809581733, 65.2675871373737, 131.91867756264682, 68.33439803809937, 19.35416527219209, 31.21539932177818, 26.184722393702934, 7.661355788491274, 15.532562653956811, 32.922517602826964, 18.811404063707236, 25.8902223374999, 12.01098798647936, 10.141625165595737, 52.70916754575811, 13.061320153589524, 5.3228684704113585, 5.94396427253223, 139.94434581217035, 97.71665918602895, 22.505911942524104, 27.09823116179385, 22.487833083587326, 25.41891161008469, 5.556939513510401, 27.292974136081973, 16.50825283546803, 31.872616394180493, 16.361586140176342, 65.2851589110712, 10.186872813207478, 30.512479688336636, 26.166552004214406, 60.04157170462342, 23.053950483397568, 7.962175769928259, 13.501885521904228, 47.25926377878543, 13.869060222070008, 16.739879139065653, 39.613352373288016, 16.94994307957814, 7.120549976852831, 19.39995219371743, 24.686707269695003, 7.9903134247629, 16.716504053047192, 7.1457228618504525, 133.11920877284757, 13.732158059189793, 16.107960793415966, 25.890212323714408, 6.4141462092831105, 96.08589348280448, 24.565995697787855, 7.863366730460314, 65.32978578423234, 41.49252310948792, 11.949921899813184, 31.540317301624185, 63.25122314173137, 5.819080011691426, 15.378831410349695, 11.138050033481456, 15.145774741506917, 29.134100678528185, 5.578691051515163, 59.6341795367651, 22.36411976677723, 135.63436716575947, 19.260474515952616, 5.1772090704178835, 36.478060419527594, 11.97979185774503, 22.53547400723724, 60.52950867201848, 5.79523850578068, 16.924708584189325, 78.32100126619872, 11.971634484670327, 6.6290792261425775, 46.20499857289401, 56.08314913196725, 25.315558196605018, 14.148553887048461, 75.60973328564508, 30.928161751914722, 83.32878423069481, 21.59300266199357, 5.106716031622495, 13.507485879155496, 8.968736723998003, 22.01309921860512, 61.87864243738854, 82.72258657140321, 64.917520386213, 136.26582517540604, 45.60440233632383, 23.656522006930167, 90.25941728867367, 17.250097005797038, 77.38789389449991, 10.955383685351629, 71.7897888376857, 6.228205985573788, 25.28161719129544, 13.490062353991796, 12.826281132602848, 5.9542804323485905, 32.018617889075564, 13.005810134375512, 22.68469299067136, 58.67766037685405, 35.352725341900005, 29.31737066439789, 26.43904801553144, 96.4821257615036, 98.57849917324386, 29.775725528683125, 33.885213852195925, 23.05663199865871, 33.8087769044975, 17.174842641582472, 64.8208016607164, 63.790150629188304, 49.63189802775454, 102.65672862953085, 56.383102778756786, 23.996851741026102, 75.86622152205067, 9.68393675653626, 11.4514847614882, 6.508749723060534, 72.58688039112461, 16.737047164423636, 22.847583509643083, 7.094380879258914, 29.23124275289895, 105.22370353395534, 11.103416613405967, 9.65118777257016, 5.3307330564600655, 106.32510433373835, 10.851024159838193, 38.32528333786678, 12.194276758675786, 96.33775140610489, 32.539232425611004, 52.58294378196358, 104.196751112531, 10.13592390021121, 6.097542567287587, 17.472582078178526, 6.399224920874232, 79.69828832030818, 34.38850965874529, 52.91646486893208, 126.56504194239297, 119.05383639748388, 56.813380896770525, 13.8946485803298, 47.0482776133568, 19.067330304670474, 33.56198275416901, 54.40759608775255, 52.46501928609906, 28.023975190365654, 11.824208869547729, 80.07610590434412, 15.763821114348044, 63.39364018946745, 103.65510041832039, 52.95300806961518, 37.585122604209815, 36.12897430762434, 37.17223033046549, 73.5633770701283, 17.04476054690455, 13.344602531796104, 12.84494388377891, 37.69655256905149, 40.63510756062391, 66.93585940172534, 38.752834201504164, 14.45421788840402, 12.116349830931773, 50.66700300458696, 11.068215302834696, 40.18192490719211, 14.785729013639443, 75.17454232975561, 82.21103297617763, 86.60246531857844, 53.729818150134655, 5.974535652039651, 27.628936265598014, 15.672699646406766, 12.410187566009856, 121.2519773786463, 15.700279583109516, 21.063083534967355, 14.907715195222636, 75.54658823146573, 7.218883003754144, 92.34058865056278, 106.40369385871576, 5.343505979211169, 78.01274422072983, 13.483004641745795, 13.742190889363865, 38.068670759032734, 28.05096030618754, 44.51381425219428, 76.92849856760608, 21.67409783526194, 62.05892370132009, 12.813499452585502, 61.02397116455931, 40.88152880530488, 57.6956727076341, 77.70270261073037, 35.46441762048066, 24.462663880171448, 49.31340996133161, 72.80242151042808, 6.54195190655155, 10.947833521613934, 106.4246913613558, 38.73203825694064, 78.0828974722857, 25.686668729652073, 72.12278014594061, 12.239813922938508, 107.42100983193862, 22.358285914862716, 5.562798115623973, 20.347682101659732, 37.38566314176209, 35.452977892908656, 16.760631805921754, 87.87358853072465, 58.77834641547305, 13.238155410662944, 106.52254890511819, 33.01795181359093, 35.89947989124161, 116.9310439833182, 12.893782095298027, 56.01385130651891, 23.52040928339887, 87.56894524713161, 27.31193026951732, 11.442445261622742, 35.183059275238605, 9.505485325882415, 56.6469377622699, 57.39847267458119, 47.78889166103699, ...])
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);
([2889804.6875, 2922321.875, 3103442.1875, 3182402.8982687527, 3224337.1451907605, 3373150.0, 3398887.492024558, 3411985.9375, 3412814.998362398, 3417372.987804885, 3444809.375, 3459406.25, 3493704.6875, 3518604.803442286, 3524881.25, 3529408.833526779, 3606482.8125, 3618926.5625, 3630025.0, 3630100.5585258496, 3632445.3125, 3645456.9719375577, 3645655.031688058, 3647025.0, 3647682.9213054273, 3650064.0625, 3815966.9122230355, 3817373.4375, 3873821.830709889, 3923985.211189821, 3972206.5052530942, 3979732.750310936, 3982877.905146628, 3988976.414557925, 4016149.0233603395, 4016614.6283826223, 4018642.3566844645, 4024876.5625, 4025585.126701757, 4037864.047658693, 4041347.8592312345, 4044210.5369960577, 4045420.530016161, 4048665.625, 4051124.7784650666, 4051255.0901834667, 4052134.9203804927, 4053678.514178989, 4063909.2279106677, 4064954.73459245, 4067633.5988790337, 4069752.3038099515, 4075803.4288710696, 4079743.4662133097, 4082069.797783094, 4082404.462738134, 4085273.7389837527, 4101672.1368886265, 4148931.092587933, 4157616.7381027984, 4182650.1812355886, 4198671.328963109, 4226853.766747027, 4227560.9375, 4243375.723225854, 4249830.943525776, 4265879.663993593, 4267071.875, 4267132.2006931985, 4267650.3194996705, 4268582.56845798, 4268774.842393889, 4269170.3125, 4309600.342385433, 4315514.856499323, 4335106.059635056, 4336657.8125, 4497212.509765603, 4770633.114304443, 4772208.534782791, 5001477.878868128, 5007620.944633265, 5008979.6875, 7237681.25, 7261881.25, 7264315.625, 7272141.407839194, 7275032.7804302275, 7503425.646329417, 7505979.15669692, 7538232.8125, 7539750.249520695, 7574736.335328502, 7578703.668844052, 7584414.158827801, 7585637.132163214, 7586717.1875, 7592265.625, 7592919.26339662, 7593538.14748629, 7594654.156365068, 7621864.0625, 7642407.507117025, 7650349.349686567, 7659054.6875, 7677668.75, 7693986.8362515615, 7698570.986045827, 7699142.1875, 7705043.368509559, 7707330.328513351, 7707837.9590133745, 7708000.285351237, 7710163.481724535, 7711478.125, 7712522.393436262, 7713819.733127728, 7714541.908127555, 7715146.678879405, 7715459.500872557, 7716998.454544315, 7717063.022430971, 7720062.354766521, 7720676.5625, 7721179.6875, 7723778.125, 7723830.75652749, 7726663.826422844, 7740894.826551147, 7752995.193150863, 7753274.904475917, 7753915.977634228, 7753937.5, 7755204.463648768, 7779363.028367239, 7786935.520941226, 7795121.364686916, 7795610.157266529, 7798035.081829372, 7798239.0625, 7801079.26180351, 7802032.989865215, 7809765.625, 7810107.8125, 7816482.945631041, 7816490.153375601, 7816690.061686517, 7816901.272789795, 7843487.5, 7851468.791543826, 7893392.887725944, 7893692.696668393, 7901545.127302763, 7907125.0, 7908031.041455227, 7908770.3125, 7911707.8125, 7912127.733254877, 7915110.792543314, 7917400.805650999, 7920056.798472315, 7922289.231061183, 7922428.070971295, 7922710.228863105, 7924369.609471562, 7924551.516731656, 7925145.998421525, 7925329.454735654, 7926066.073534263, 7926878.204881096, 7927525.0, 7928221.168781405, 7928594.611609806, 7928599.954687512, 7930409.014351437, 7930586.504295998, 7945667.091667087, 7946924.3214601595, 7946952.245422749, 7947854.6875, 7948117.041638592, 7948153.984655005, 7952567.5497804675, 7953354.6875, 7953391.07520732, 7953922.947654597, 7954213.751828417, 7954929.531663193, 7957021.875, 7957464.427843477, 7957525.0, 7957847.769536957, 7958561.931719407, 7959327.810226547, 7959400.459334453, 7959448.4375, 7960279.6875, 7960542.17742085, 7960994.171691013, 7961069.95169468, 7962601.167203381, 7962723.4375, 7963761.471881562, 7963795.3125, 7964785.9375, 7967418.081540769, 7974510.820562999, 7975470.665774955, 7976656.121242296, 7980537.5, 7985387.366005708, 7995264.150612932, 7995267.1875, 7995334.790494614, 7995520.604528807, 7995912.246961637, 7997516.285643879, 8001225.917954785, 8006646.927100161, 8014564.522885187, 8016268.75, 8029119.010665385, 8029862.5, 8038347.17119849, 8048354.6875, 8053218.122974601, 8054921.796289809, 8063355.930960044, 8098414.0625, 8130867.131405144, 8141084.375, 8141947.425271318, 8143365.65877458, 8143415.752774913, 8143531.25, 8143607.343365793, 8144009.323959197, 8147069.34504776, 8147315.439088314, 8150698.4375, 8151803.125, 8152350.0, 8157309.193809257, 8157309.2680538, 8158529.998694644, 8162816.386598914, 8163923.4375, 8164597.577313065, 8164602.3308291705, 8166185.665339798, 8166505.012991613, 8166973.406083699, 8167012.2350635715, 8168432.238946805, 8169093.480914185, 8169788.769844333, 8170433.689753072, 8170440.239456674, 8170496.095847655, 8170562.5, 8170983.68424144, 8171021.590394253, 8171307.290243509, 8171668.147733805, 8171936.224611442, 8172325.0, 8173711.344476547, 8174436.925143816, 8174892.069907307, 8176084.596024195, 8176171.999926254, 8176230.030918565, 8177576.802282838, 8179787.110359824, 8180699.54117315, 8181086.442680834, 8183068.75, 8183609.384072529, 8183916.599973559, 8184189.90507631, 8185792.1875, 8194637.5, 8195261.6729085725, 8197051.799732388, 8197470.24408538, 8198767.185509488, 8199207.2208187245, 8200330.996085569, 8200490.165884241, 8200742.540750982, 8201334.952454946, 8201973.4375, 8202677.9016753975, 8202682.5509186415, 8204757.6730006, 8207145.208887096, 8207393.75, 8207942.1875, 8212792.886636778, 8212834.375, 8213273.331954922, 8213301.529105237, 8224693.066745396, 8232053.125, 8236276.172552209, 8237721.875, 8240079.378056695, 8240264.684565477, 8246315.625, 8246755.774027414, 8248057.544540426, 8248717.969482487, 8250480.601518661, 8266356.761214189, 8267306.764171839, 8267468.75, 8282203.125, 8290615.625, 8292731.026805542, 8293835.9375, 8293840.625, 8296768.050316417, 8301939.367110508, 8302618.42833925, 8308673.768347108, 8311387.5006102845, 8312975.0, 8314788.483710156, 8318061.84245213, 8320130.339435882, 8320341.954522341, 8321662.023774249, 8321725.110311103, 8322503.50058899, 8324473.4375, 8325926.289558375, 8327418.500156293, 8327840.625, 8328210.987115761, 8328451.493809916, 8328991.678165932, 8329588.961312863, 8329595.3125, 8330938.842940804, 8330949.684145524, 8331050.0, 8331171.267468334, 8331265.400813128, 8331278.530230116, 8331925.0, 8332960.766487326, 8333424.258950973, 8334376.756379976, 8334701.535082657, 8335349.731357862, 8335596.718989288, 8338163.473146832, 8338969.404880666, 8340721.407556753, 8340773.048444242, 8341123.963787923, 8341168.26473178, 8341221.774265922, 8341710.9375, 8341753.631716822, 8343061.4562423965, 8343074.060344704, 8343664.0625, 8345260.073068818, 8345754.432592488, 8346090.7343624, 8346099.39639139, 8346728.125981435, 8346933.189438472, 8347163.968784073, 8347227.194567166, 8347773.4375, 8347861.7066976875, 8348237.5, 8348268.036407338, 8350289.712630325, 8350512.710766268, 8350768.356250854, 8354866.025576992, 8355807.37156258, 8358145.3125, 8359635.1353863245, 8360108.705406907, 8362762.5, 8362918.286702526, 8363292.133237621, 8363515.94595699, 8363557.8125, 8364984.375, 8365048.481381088, 8365242.1875, 8365251.5625, 8365278.309258197, 8365330.09198774, 8365341.5622017225, 8365434.012018645, 8365440.634483613, 8365443.75, 8365478.125, 8365483.338443653, 8365580.83030524, 8365581.25, 8365589.0625, 8365631.496852989, 8365633.996479735, 8365653.125, 8365680.633752178, 8365743.75, 8366291.9338522935, 8366312.238319918, 8366500.0, 8366508.6887259055, 8366626.944837292, 8366642.1875, 8366839.0625, 8367255.919321489, 8367267.295340842, 8367629.6875, 8367646.692333354, 8367788.778646623, 8368034.302759314, 8368177.697733677, 8370938.710106506, 8371735.717834835, 8371815.304684257, 8371980.3041762225, 8372167.500804384, 8372171.716984969, 8372356.677939689, 8372359.238401343, 8372839.0625, 8373927.020786404, 8374553.818653941, 8375910.210335895, 8376573.334425352, 8377403.923786988, 8377527.186792973, 8377882.8125, 8378297.926767612, 8378407.6825393755, 8378445.212591125, 8378659.736348338, 8378688.923523487, 8378714.0625, 8378782.8125, 8379401.931304151, 8379893.75, 8379894.821051161, 8380373.668067813, 8380497.36708118, 8381496.018732645, 8381821.3883421, 8381929.499925368, 8382595.3125, 8382651.5625, 8383873.487779066, 8384133.876723971, 8384453.33181713, 8385632.996859797, 8385771.074344867, 8387035.9375, 8387161.779854175, 8387210.445027338, 8387376.5625, 8388026.53313086, 8388258.923756806, 8388490.579341339, 8389558.21266172, 8389642.001874914, 8389837.5, 8390232.763734736, 8391049.376022542, 8391312.597865146, 8391662.34373862, 8392043.75, 8392145.3125, 8392175.0, 8392179.67619273, 8392187.254905855, 8392197.74521772, 8392268.782704087, 8392298.122329166, 8392304.650075719, 8393078.125, 8393374.27910493, 8393394.10750522, 8393593.85346378, 8394354.171401728, 8394426.016365746, 8394429.6875, 8394694.670645425, 8395209.67314473, 8399104.849300211, 8403583.98417802, 8403852.958828725, 8406000.899044944, 8406821.875, 8406949.797684034, 8407098.4375, 8407577.033403913, 8407775.20955259, 8407896.19282383, 8408229.590898363, 8408274.164890429, 8408539.766436836, 8409025.286326002, 8412373.301237805, 8412837.5, 8414007.8125, 8414043.528840056, 8417803.552894253, 8417862.813043687, 8417871.33040061, 8418547.766523132, 8419444.412396304, 8420225.577922435, 8421521.281689588, 8421977.886716861, 8423221.747952165, 8424521.637517508, 8427687.5, 8428142.679716235, 8429748.4375, 8430430.953326918, 8430570.3125, 8431124.431661228, 8433046.875, 8433625.94585045, 8445484.375, 8449654.57991513, 8454042.990486369, 8462992.422547638, 8484409.247518698, 8486795.3125, 8492984.745435294, 8503523.092288958, 8508543.09488784, 8516751.570599718, 8516962.410773179, 8518834.28286294, 8519743.75, 8519761.000162184, 8519880.148841972, 8523420.678963218, 8526458.582208404, 8527220.914099896, 8527664.891247407, 8527912.5, 8528043.75, 8528047.394557556, 8528125.506791055, 8528272.289712187, 8528307.259592026, 8528443.75, 8528472.587704819, 8528527.113591954, 8528797.072764842, 8528825.0, 8529132.8125, 8529260.919164222, 8529627.175781641, 8529740.424290404, 8530095.3125, 8530265.641697185, 8530556.25, 8530615.657227121, 8530646.83065566, 8530722.80276467, 8530861.693691079, 8530958.366218073, 8530960.66242633, 8530986.665977363, 8531007.329478346, 8531690.625, 8531956.650622552, 8531961.868906774, 8531975.793896135, 8532892.111790352, 8533061.372437404, 8533195.762700133, 8533376.5625, 8533640.333654221, 8533948.4375, 8533955.526258577, 8534065.625, 8534074.013484417, 8534248.889889935, 8534264.981831834, 8534285.9375, 8534337.5, 8534340.625, 8534345.3125, 8534403.125, 8534550.172821365, 8534558.866649425, 8534702.31455742, 8534714.83422266, 8534790.625, 8534804.641972378, 8534832.8125, 8534888.155487543, 8534898.4375, 8535052.134931186, 8535083.813176591, 8535427.946542537, 8535475.0, 8535507.412735626, 8535938.946823936, 8536017.353022847, 8536290.625, 8536304.265110444, 8536396.09530328, 8536425.679600593, 8536518.236452656, 8536659.375, 8536745.921640672, 8536752.862372776, 8536895.49162417, 8537003.125, 8537010.9375, 8537104.058066508, 8537132.8125, 8537329.532901524, 8537360.148292916, 8537392.756970026, 8537423.32613747, 8537425.637709279, 8537432.644439232, 8537458.07328393, 8537500.611779483, 8537504.798108362, 8537528.125, 8537541.345682368, 8537553.351707974, 8537557.140668243, 8537560.996044884, 8537606.25, 8537675.0, 8537685.765775405, 8537852.51137687, 8537971.778649105, 8537986.946979096, 8537993.033514492, 8537999.519084724, 8538030.666627275, 8538054.34892029, 8538074.995667929, 8538216.321867652, 8538418.428450953, 8538423.4375, 8538487.225603066, 8538537.587363482, 8538595.138822315, 8538608.696667373, 8538615.625, 8538621.881989792, 8538675.0, 8538676.5625, 8538941.90697931, 8539068.75, 8539131.99878907, 8539324.873240579, 8539502.920978073, 8539523.614151405, 8539564.840358019, 8539582.8125, 8539588.150311477, 8539652.765135946, 8539745.016246213, 8539871.875, 8539912.57015807, 8540014.95292767, 8540061.45761764, 8540095.15828393, 8540273.083891604, 8540309.969727296, 8540398.219937518, 8540731.133614808, 8541589.941805303, 8541726.402368328, 8542529.6875, 8542551.5625, 8542685.983392024, 8543259.94273423, 8543374.096450994, 8543692.1875, 8543743.75, 8543966.300696602, 8544148.363900708, 8544218.75, 8546229.26449691, 8546476.273801792, 8546709.46350094, 8546734.392756531, 8547259.375, 8547922.30401824, 8548013.760838637, 8548026.54891515, 8548105.277739406, 8548114.578863045, 8548482.8125, 8548512.499530904, 8548859.188576413, 8549227.128534233, 8549401.95223995, 8549459.814133184, 8550039.8327259, 8550345.3125, 8553213.642909648, 8553226.921089018, 8553279.46421949, 8554061.620067425, 8554285.033150496, 8554665.625, 8554806.25, 8555012.5, 8555163.638811918, 8555269.703091385, 8555468.508397954, 8555565.150800044, 8555629.329428952, 8555872.932981445, 8556045.117166819, 8556143.75, 8556646.875, 8556942.1875, 8557365.625, 8560212.470268846, 8563982.8125, 8566377.794656513, 8566420.078891158, 8566854.331149474, 8566902.365261408, 8566943.080111483, 8567905.39373193, 8571312.77491465, 8572290.12338685, 8572478.90593735, 8573065.411363222, 8576248.42545841, 8578796.895809015, 8579014.880043011, 8579471.174173607, 8580141.26857481, 8581951.72037929, 8582267.334383518, 8582393.696816463, 8582425.743868709, 8582482.205480758, 8582506.750058211, 8582699.261976667, 8583067.91802182, 8583611.900408378, 8583844.745727826, 8584901.614699183, 8585357.767551478, 8585448.842919502, 8585469.908370087, 8585699.072686087, 8585818.344252571, 8586034.19526156, 8586561.41949185, 8588705.56726405, 8589509.733143369, 8589815.625, 8590390.953575911, 8590521.875, 8591397.738787787, 8591450.960498737, 8591665.073363818, 8592163.182991074, 8592349.643420063, 8592386.831666524, 8592552.687972197, 8592610.9375, 8592621.561975632, 8592839.46591422, 8595003.180071572, 8595034.818033075, 8595518.746568745, 8595985.198515289, 8596613.832403319, 8597243.14433604, 8597355.086422462, 8597381.341534039, 8597536.45050609, 8597554.874900712, 8597809.650707318, 8597874.850865917, 8598126.080830341, 8598246.83773454, 8598327.886251204, 8598494.416173303, 8598843.75, 8598890.625, 8599358.281719973, 8599404.348701363, 8599728.951582976, 8599757.881186388, 8599784.485192558, 8599916.081693348, 8600298.490078684, 8600810.9375, 8601064.967777044, 8601606.25, 8601698.14613399, 8601939.0625, 8602261.74270812, 8602433.314040536, 8602619.129346663, 8602664.546865802, 8602843.34850808, 8603012.5, 8603041.93094962, 8603044.188343633, 8603140.625, 8603170.792741295, 8603194.599678945, 8603640.625, 8604110.9375, 8604151.375866374, 8604163.837646298, 8604422.818087662, 8604479.417885246, 8604668.75, 8605174.509956768, 8605220.727667784, 8605355.814938135, 8605558.912512185, 8606038.613093995, 8606076.5625, 8606109.375, 8606567.1875, 8606641.467087036, 8606765.625, 8606820.29934087, 8606892.535596889, 8606948.934906589, 8607110.7837334, 8608123.324382784, 8608422.570403527, 8608493.435015218, 8608921.517540736, 8610243.308813915, 8610496.181780044, 8610803.294236656, 8611273.4375, 8612602.503753748, 8615033.986694004, 8616915.625, 8618773.4375, 8619590.625, 8619664.903032696, 8619734.375, 8619992.1875, 8620005.813415704, 8620056.25, 8620141.090741409, 8620698.222610284, 8620998.921512911, 8621001.5625, 8621830.461851783, 8622023.4375, 8622268.75, 8622370.074425614, 8623932.53152588, 8626604.6875, 8627737.8894395, 8627790.822716888, 8628048.57428699, 8628519.006204959, 8628822.277870929, 8635535.56334534, 8635738.958507413, 8637002.629491124, 8640664.0625, 8640804.67190411, 8641725.355438845, 8643305.919806536, 8643540.625, 8644601.37796914, 8647068.658624567, 8647170.90224031, 8647192.1875, 8647683.269193044, 8647700.0, 8654289.0625, 8656032.069479898, 8656056.340322217, 8664586.4736067, 8665624.4156055, 8672429.879671047, 8672548.344451291, 8673626.5625, 8674177.841096226, 8675050.75455455, 8675214.727637382, 8676485.632762313, 8676516.679364799, 8676816.404284518, 8677251.5625, 8677424.186539812, 8677557.621883508, 8678150.520612884, 8678166.041050091, 8679204.6875, 8679789.262718368, 8681025.299945926, 8681796.22500851, 8682721.44894345, 8683121.875, 8683564.0625, 8689440.625, 8689443.57003275, 8689512.960486988, 8689557.319261542, 8690240.78162648, 8690868.555626681, 8690871.619405245, 8691853.125, 8692162.136684412, 8692987.365996053, 8693084.927127503, 8693089.0625, 8693254.64910283, 8693318.835590767, 8693392.145027628, 8693890.546766393, 8695293.599492582, 8695332.518635457, 8695459.375, 8696780.0822449, 8700202.275192887, 8701873.616962923, 8702966.315160742, 8703534.082987078, 8703626.80560747, 8704739.832370393, 8704978.116105344, 8705548.489077203, 8707859.733117033, 8708457.8125, 8708645.3125, 8708707.858662056, 8708823.792520655, 8708908.931326548, 8709270.826948557, 8709626.942128932, 8709721.480915185, 8710638.185273785, 8711406.703106545, 8712364.959585035, 8712910.9375, 8714775.864039585, 8714794.867030708, 8715392.881285125, 8715565.625, 8716096.875, 8719176.5625, 8719266.230442107, 8720237.5, 8722860.9375, 8722872.216263818, 8722943.991565665, 8723239.0625, 8723284.375, 8723590.625, 8723766.51832871, 8723807.8125, 8723831.861376274, 8723901.167770399, 8723924.582567047, 8724602.159977734, 8724693.126963053, 8724840.625, 8724876.038787765, 8724914.469887892, 8725120.3125, 8725293.75, 8725824.467591811, 8727085.9375, 8727206.25, 8727476.5625, 8727487.460948601, 8727602.459195647, 8727676.5625, 8728109.056751614, 8728141.74572191, 8728154.623079965, 8728254.879941355, 8728393.336168021, 8728583.01144534, 8728674.690101271, 8728773.115665935, 8728791.148050869, ...], [74.49414649514388, 71.13308941626941, 53.8251856290619, 14.142431546383719, 12.544839213639223, 60.24949352834942, 25.03757341822758, 48.6907197380132, 52.85057753962042, 13.465963611227563, 125.8294955980322, 49.99928342380431, 45.329128822556015, 21.382618960991827, 59.10683477923298, 21.089124223694718, 28.663511335269362, 79.12032335764029, 39.370221664589735, 5.178576647331584, 97.32594622160113, 6.91673490523192, 8.477381356718844, 51.287183743105345, 6.099487583661784, 70.29446170336945, 45.91581630272233, 72.69788794144374, 162.10978854793092, 12.746213440280458, 7.698243206061493, 27.35191077533862, 14.164896421962242, 6.734326174800126, 32.951556410563875, 17.649050837854492, 8.378118195487245, 70.8506678763962, 30.809848290463634, 28.234485453165966, 65.1607958463097, 10.554528069668164, 15.840889344340908, 46.44308833963567, 31.892971466125342, 5.552948509102406, 12.102534448765386, 8.503693371137487, 64.14912747148199, 5.4637914361517925, 42.16585218924054, 86.41795690171352, 24.60748726032623, 105.00969971377684, 62.639488977654864, 49.64324936840219, 8.45271215881986, 51.58016319959485, 33.05106093594555, 70.18156605182723, 8.384800849663819, 8.908763979107356, 18.12085420102109, 183.8913007982782, 18.666293115815257, 76.75727218100766, 20.29904637386315, 52.7521967239657, 8.86263471517718, 59.21360279258158, 5.691400580180947, 70.4761576834562, 52.69991225134838, 23.208871399224826, 10.107024092525233, 136.93519206027636, 29.31576351361979, 11.143005452962035, 20.114491815098262, 18.659733221034855, 40.31057839857719, 97.99888196838533, 121.80999502304789, 49.74658957376661, 84.50446993758315, 47.96325820578018, 5.369481948169031, 56.21898419816287, 32.48234713316556, 21.1912295923351, 53.349826751678115, 8.423087981325931, 16.710824429324287, 5.142297790672674, 23.66230344346674, 22.92124366050999, 53.11681632169107, 44.20184006594861, 9.806826963073611, 8.661474864922232, 48.16202782171598, 43.47171379535536, 89.55378529052004, 12.932399589987646, 53.44066502059921, 39.92754189241606, 20.001624480389292, 12.373648907617017, 33.198369009059675, 85.29464927674942, 63.98508077452629, 13.681698588079975, 11.605080808971728, 50.55273744275782, 104.03210121591304, 72.80389726478587, 13.113796542161182, 80.58535481495862, 61.627977804849024, 34.85389339059143, 68.95983822989207, 12.055907396460348, 9.21154675264862, 58.53179871851212, 34.59384588264868, 29.016576452969716, 5.154026081009739, 33.11540512289814, 49.59012461485415, 10.946143767638212, 79.77297575433427, 11.727583267705313, 58.47621811526861, 24.77474092528538, 9.822052057866573, 51.97344699324717, 88.1514688144878, 113.78791414728579, 12.447179715520049, 61.02555427109107, 50.47017720341036, 54.75840423966575, 48.73164494756944, 86.79835238641144, 11.342376865153717, 21.78091045610404, 69.9479319444568, 97.05368578555338, 82.38603620753703, 9.366779610401741, 8.695169940322486, 44.16877577820463, 14.279676381173214, 62.92177700542808, 8.179290606132405, 102.55913177176451, 75.88512017530009, 9.02076067592005, 52.069630027199366, 12.673647802477157, 17.54529646308356, 15.625418018989636, 27.49934285134072, 39.70884689766851, 10.18187033850854, 82.51976208281579, 18.411306999580784, 10.782380993618867, 16.9796749445588, 128.0174658389042, 38.24305632299891, 12.794647467620582, 19.69870709776275, 8.262759802502169, 6.432004455229934, 7.821963510035364, 42.88601258341759, 8.816771610487656, 12.394229389132803, 40.97293039599776, 14.413247271113303, 67.3463935799829, 21.826118851320274, 55.911129037889864, 11.912754813208808, 86.80481813687913, 23.61537741480829, 5.525564789306872, 65.4331248640859, 58.22774306577518, 48.78421557529868, 19.966651869307654, 13.493829926732142, 105.18120661232949, 5.555796664956124, 51.13591688043582, 183.19417722529883, 71.88799704413906, 80.2728977172767, 23.003915928594832, 90.96983812432123, 99.60242277416509, 56.695640653212806, 31.84694793087277, 58.42147740029811, 5.433788796684975, 59.603561472247485, 21.357857453223325, 26.21586617745891, 78.23811640895977, 64.92115137030781, 15.288338082665817, 72.41330113298383, 7.2351306495665835, 44.028912143223664, 12.30206729942838, 52.23085265096455, 20.162973501319392, 8.31432227405975, 65.67853811723425, 49.212228407904554, 18.84538106872655, 50.75146036317752, 11.6245551564338, 39.091894812264925, 24.597224949547797, 11.006866805660794, 23.510541650325262, 55.33455607028056, 26.50260414710462, 29.212641097982633, 28.721068348324394, 7.615499221604705, 5.621152281419955, 44.188041346475565, 65.12687727212773, 11.048853067976347, 6.888417027352793, 14.277283090151693, 51.64370838724501, 50.882571831339654, 40.01640673961584, 21.164022684809456, 10.964558791166668, 31.906473798422418, 12.57115123056723, 57.96976163428297, 14.200967932790896, 87.569278731456, 10.727379148628732, 11.677671051464754, 208.159759994564, 24.209206998425376, 20.78946009315165, 14.006322837204898, 127.24772726125578, 19.824849334803663, 22.71626742133482, 134.13340285613646, 84.7490030076766, 19.028159609458758, 23.94939398786453, 26.80640906899002, 20.53019588166907, 44.26665814168855, 85.82114103454288, 14.753564559785861, 70.38176425285263, 14.511475810402674, 11.491698079099951, 20.931255501980235, 5.969881051545026, 15.94163955262936, 25.46087903262762, 13.440242036887714, 17.294183797073458, 47.949190673331714, 8.291380864700239, 7.403717523853669, 81.48412196448331, 34.63410720419042, 59.711551804988765, 24.00167132691507, 21.912194425507316, 27.24069051147457, 36.504183730194555, 20.62481605587011, 34.13460787317023, 46.77566630214811, 30.726136406583077, 181.4532486891623, 96.42714997205701, 44.10884613004225, 96.70608798399263, 24.302383396671317, 26.631550535402468, 72.94365450312668, 114.37859886969046, 68.63783837562289, 153.52043648698051, 10.96664553193784, 25.956022066516606, 19.84106365629248, 49.18795124895613, 20.31413782304292, 173.43857705715234, 69.29718857720692, 6.589236760748899, 57.989499969588344, 68.80000744960488, 9.114659743906639, 19.08719818122429, 5.0307825859545625, 17.32860622268869, 17.345547546958564, 67.40691935377917, 61.42961190803958, 38.06352368420757, 55.91721249235448, 97.79550989864491, 54.12158718185922, 143.5369647722596, 113.4102780474121, 26.648801088151483, 16.372726766644384, 15.952729222902128, 36.829816205565805, 20.741558582494697, 55.12976696410363, 89.99370834313326, 27.914787140915475, 21.291254167148434, 5.070907765439116, 16.596480639705412, 94.15047420845079, 60.584941912192605, 6.236140173218815, 32.31259544031069, 75.58261842745956, 47.38470857159744, 61.95904931778889, 67.27791497762517, 36.711962709428335, 31.678556958429066, 13.86035251604883, 35.31094498823963, 10.294588240854997, 86.35965705501678, 7.2322106060439255, 55.4282906997951, 25.551172873536586, 10.138171540031092, 15.735839040022004, 67.01589225593467, 94.77683290571692, 19.37288235891438, 49.28759316226524, 38.15245837718622, 21.824137634605265, 46.71983082633784, 16.707335148628538, 13.366574810077699, 89.50266952190292, 90.49727399048535, 15.919510867782016, 114.68511325581707, 24.723366669241713, 115.70976782275218, 18.49333518623707, 38.88428935812744, 11.303061002380632, 10.299311780927674, 14.945251513770298, 9.67184912100233, 63.033319543710334, 5.311018979348471, 81.01147107706909, 18.993522481664858, 88.06283900645205, 90.07983866078675, 12.322712660827044, 8.401270162933036, 10.563391883325835, 11.81742289739618, 10.501993397068235, 42.51166051238724, 18.929650177697365, 74.89913719691967, 36.920099951353365, 71.1551189597763, 23.056361657209344, 13.314361465092247, 62.764299761453046, 32.62034036408441, 11.19699554542299, 109.18539824068361, 48.161181271840746, 28.235231633186736, 51.871993592634766, 29.153386148479406, 56.30620665576009, 8.291598794033709, 68.96348014356451, 37.43924856962959, 12.06300786693578, 29.427090906718835, 34.983950677163286, 62.689570113952506, 5.832473879677072, 53.83994973919361, 64.92533665389696, 5.375426681593692, 52.03700510393384, 24.36145307190016, 43.697715146240384, 67.33089586210707, 19.81650308208202, 15.498410159910149, 46.58096653887075, 62.511990339465434, 23.36661961009246, 16.819752562470924, 49.41371479042342, 14.388656805414097, 106.83324449627503, 14.673129869060292, 6.422136330358374, 29.104038361375984, 33.0571090850455, 13.846658302135332, 81.23836158085032, 16.287208810516116, 10.889386408477053, 56.25348094049353, 7.086001085999981, 84.19943274704633, 17.03272753456294, 7.874990069775292, 7.359830653537342, 9.245742390120126, 12.657509731677438, 24.53347114657216, 47.773834433447256, 44.836684928088474, 5.698536588331347, 18.36821962424715, 20.51403853453053, 32.14401165956008, 99.85389025348907, 108.57365661410296, 63.14831684062967, 42.384691096888645, 33.57508499529388, 15.566237953720737, 16.835922301027413, 11.202533687643779, 27.784542315524533, 9.177679366823742, 151.59404818728643, 48.81125257153564, 15.136676442996551, 223.38615061674383, 33.201654982547026, 11.4286421597677, 18.940184468506775, 110.98773259003111, 29.260239389501628, 21.568519532483077, 65.37187513766438, 42.93162917863073, 44.687119755076964, 141.49797495837228, 7.230770918308612, 5.239979559193711, 31.63522540086247, 79.89337824484292, 5.228010721426868, 9.415547665336105, 92.83981245230837, 75.75417091892096, 67.619489852429, 54.46978615892257, 89.72672829615719, 35.41292533765373, 29.233422175727146, 40.651869207202104, 6.0559261881433715, 14.800758753291845, 29.55061007834834, 12.759212751939845, 9.653166626151275, 15.351095494005419, 6.409121292284862, 18.145785239021237, 130.95369153376544, 26.807069653468318, 37.3776462369306, 5.249696427105993, 78.46210012742267, 25.62527495464982, 10.228058506550948, 54.277301662536864, 39.872527856268434, 55.7226108592434, 108.3573415110615, 65.49007641341326, 47.30668947634642, 63.75891391831806, 18.695333650711298, 18.53330416769581, 9.585840334458489, 26.094791545171688, 76.20096080672987, 51.483180875761064, 14.160620912161049, 7.238665960900141, 114.15099491814495, 10.37127607976207, 12.880964624509232, 63.10222370187553, 12.169624599957993, 42.45073461812238, 24.57245593050813, 26.243641283765314, 70.28577858790115, 82.37851866752298, 7.257144333538164, 53.534304241682804, 23.79333166900777, 72.06691389542027, 17.80404787682866, 66.41010384433423, 8.859274904142845, 68.25892939892148, 26.56484019830043, 19.24372310196535, 59.590681292673366, 9.225887565945182, 66.94209433680435, 6.839785312838804, 142.17617604180148, 110.51851813067975, 14.972471888277953, 49.95707369056234, 57.76861567155783, 90.31427594803927, 6.776081400968993, 11.934477347861678, 11.753275117016177, 10.079740480438527, 12.219172413294746, 31.47075435558233, 68.75822417330092, 102.38819962577769, 17.37651051087603, 15.83307130104568, 15.782208868357273, 44.55516196680131, 29.001720140940495, 10.016715914208973, 167.67185415297183, 11.451567034661727, 75.31899673985325, 76.07760396404773, 14.87207956111702, 17.939958596645187, 25.10768514878152, 43.68187175653482, 79.54330349764359, 52.56570451654121, 9.358802499162785, 19.318571022254307, 12.971587523686628, 6.008080423838159, 119.83869105904054, 26.722536252871684, 26.488771678858818, 13.372787498300152, 53.7023750871002, 11.817509310234698, 10.266375733723946, 45.30999622075619, 14.660583795017573, 16.906442441445694, 16.98870600983818, 45.14560960518627, 23.86192040870454, 56.698927899380976, 7.93765695360266, 35.32225945290093, 27.718575069124924, 11.917003072917774, 22.793852727899377, 176.7320729587446, 82.00863136745821, 90.3635406379939, 70.23607264507332, 59.93012277401272, 11.409027484127407, 13.303233811498222, 17.368475433255494, 19.01192884309731, 103.82002090270495, 121.7098168494243, 97.32550294889492, 5.220449720916595, 79.2963332105847, 32.59148488849609, 10.350091761007619, 25.43822472324056, 55.93974742020018, 13.627573706276767, 134.49678316551942, 11.396676337710513, 52.06861864151933, 50.116068531054026, 5.429267503619489, 18.36899791859411, 5.379197916558225, 46.76121776151238, 98.69081919103884, 38.97615969659036, 6.7998020892974385, 115.64073157547003, 40.69870052541137, 26.05528366344214, 134.08049106402453, 14.383270110306821, 5.65830661251365, 17.670632336961656, 5.0668768084616405, 5.423425788921051, 9.193229259401836, 7.7003629929320425, 5.6488101951546446, 21.705910519841353, 93.72469788350521, 18.648614507103474, 15.882266835934322, 12.878849910435632, 9.381401685865178, 58.490354506625096, 41.78402067026784, 5.801382446131855, 21.85867141927647, 68.90809808559818, 26.748662030749102, 19.574980296433456, 7.00052277834859, 20.699865600643037, 9.060633976565539, 86.00052204489126, 18.485181385335007, 5.386322161120309, 41.479774704662326, 13.989521408942144, 15.285292479152156, 75.74071370025223, 12.862803074279727, 59.59911971559352, 11.138649902612956, 50.994066995090826, 83.84181279375701, 13.970221573167438, 33.975611114141024, 18.846427014403222, 21.115592898169854, 25.059366203295298, 15.660468036241964, 19.056847160737263, 60.81173409095343, 23.54551700693115, 102.7170216027564, 23.79871258519519, 68.90475730332265, 11.23916817644276, 19.4341778408945, 63.01664788137044, 25.810497161322388, 10.616591316530762, 12.20472626065975, 24.864157894865308, 26.418448883233914, 6.019822164116009, 38.625574019424015, 44.391008414760556, 66.52125568806277, 11.20020473445167, 12.148495760561401, 53.39095369461024, 114.68752570553026, 78.14578560832537, 54.431616452627416, 17.076920640035436, 61.70867778857692, 16.292599384159764, 19.570907603034083, 9.407373861715655, 5.707889012988195, 96.01234972280919, 16.87482627535191, 9.08872392513095, 8.279406470582881, 5.562429263513329, 5.985671377641469, 31.90892118147892, 7.603068027875428, 7.537174953625151, 27.184525656790303, 16.668991417937747, 53.71540660936459, 47.26098638925756, 78.05260612681319, 22.334570669420867, 16.51049080733802, 6.452650552900164, 60.750495032544684, 18.22729900926813, 29.057578412369935, 34.1895565592681, 46.54436203468389, 51.57812052023162, 31.87675076799982, 80.94055313558107, 126.84171310502441, 30.68747698616806, 5.777570075517187, 6.0680191342215055, 35.55675549439198, 55.849231368750296, 37.52201668204531, 67.32901673492901, 27.949725548362032, 72.04313803668884, 23.37073231725488, 14.12007004310773, 82.64445429072217, 5.430075965312741, 12.883658362136288, 5.366718440816373, 29.246090271069583, 6.66733157361181, 8.747764809581733, 65.2675871373737, 131.91867756264682, 68.33439803809937, 19.35416527219209, 31.21539932177818, 26.184722393702934, 7.661355788491274, 15.532562653956811, 32.922517602826964, 18.811404063707236, 25.8902223374999, 12.01098798647936, 10.141625165595737, 52.70916754575811, 13.061320153589524, 5.3228684704113585, 5.94396427253223, 139.94434581217035, 97.71665918602895, 22.505911942524104, 27.09823116179385, 22.487833083587326, 25.41891161008469, 5.556939513510401, 27.292974136081973, 16.50825283546803, 31.872616394180493, 16.361586140176342, 65.2851589110712, 10.186872813207478, 30.512479688336636, 26.166552004214406, 60.04157170462342, 23.053950483397568, 7.962175769928259, 13.501885521904228, 47.25926377878543, 13.869060222070008, 16.739879139065653, 39.613352373288016, 16.94994307957814, 7.120549976852831, 19.39995219371743, 24.686707269695003, 7.9903134247629, 16.716504053047192, 7.1457228618504525, 133.11920877284757, 13.732158059189793, 16.107960793415966, 25.890212323714408, 6.4141462092831105, 96.08589348280448, 24.565995697787855, 7.863366730460314, 65.32978578423234, 41.49252310948792, 11.949921899813184, 31.540317301624185, 63.25122314173137, 5.819080011691426, 15.378831410349695, 11.138050033481456, 15.145774741506917, 29.134100678528185, 5.578691051515163, 59.6341795367651, 22.36411976677723, 135.63436716575947, 19.260474515952616, 5.1772090704178835, 36.478060419527594, 11.97979185774503, 22.53547400723724, 60.52950867201848, 5.79523850578068, 16.924708584189325, 78.32100126619872, 11.971634484670327, 6.6290792261425775, 46.20499857289401, 56.08314913196725, 25.315558196605018, 14.148553887048461, 75.60973328564508, 30.928161751914722, 83.32878423069481, 21.59300266199357, 5.106716031622495, 13.507485879155496, 8.968736723998003, 22.01309921860512, 61.87864243738854, 82.72258657140321, 64.917520386213, 136.26582517540604, 45.60440233632383, 23.656522006930167, 90.25941728867367, 17.250097005797038, 77.38789389449991, 10.955383685351629, 71.7897888376857, 6.228205985573788, 25.28161719129544, 13.490062353991796, 12.826281132602848, 5.9542804323485905, 32.018617889075564, 13.005810134375512, 22.68469299067136, 58.67766037685405, 35.352725341900005, 29.31737066439789, 26.43904801553144, 96.4821257615036, 98.57849917324386, 29.775725528683125, 33.885213852195925, 23.05663199865871, 33.8087769044975, 17.174842641582472, 64.8208016607164, 63.790150629188304, 49.63189802775454, 102.65672862953085, 56.383102778756786, 23.996851741026102, 75.86622152205067, 9.68393675653626, 11.4514847614882, 6.508749723060534, 72.58688039112461, 16.737047164423636, 22.847583509643083, 7.094380879258914, 29.23124275289895, 105.22370353395534, 11.103416613405967, 9.65118777257016, 5.3307330564600655, 106.32510433373835, 10.851024159838193, 38.32528333786678, 12.194276758675786, 96.33775140610489, 32.539232425611004, 52.58294378196358, 104.196751112531, 10.13592390021121, 6.097542567287587, 17.472582078178526, 6.399224920874232, 79.69828832030818, 34.38850965874529, 52.91646486893208, 126.56504194239297, 119.05383639748388, 56.813380896770525, 13.8946485803298, 47.0482776133568, 19.067330304670474, 33.56198275416901, 54.40759608775255, 52.46501928609906, 28.023975190365654, 11.824208869547729, 80.07610590434412, 15.763821114348044, 63.39364018946745, 103.65510041832039, 52.95300806961518, 37.585122604209815, 36.12897430762434, 37.17223033046549, 73.5633770701283, 17.04476054690455, 13.344602531796104, 12.84494388377891, 37.69655256905149, 40.63510756062391, 66.93585940172534, 38.752834201504164, 14.45421788840402, 12.116349830931773, 50.66700300458696, 11.068215302834696, 40.18192490719211, 14.785729013639443, 75.17454232975561, 82.21103297617763, 86.60246531857844, 53.729818150134655, 5.974535652039651, 27.628936265598014, 15.672699646406766, 12.410187566009856, 121.2519773786463, 15.700279583109516, 21.063083534967355, 14.907715195222636, 75.54658823146573, 7.218883003754144, 92.34058865056278, 106.40369385871576, 5.343505979211169, 78.01274422072983, 13.483004641745795, 13.742190889363865, 38.068670759032734, 28.05096030618754, 44.51381425219428, 76.92849856760608, 21.67409783526194, 62.05892370132009, 12.813499452585502, 61.02397116455931, 40.88152880530488, 57.6956727076341, 77.70270261073037, 35.46441762048066, 24.462663880171448, 49.31340996133161, 72.80242151042808, 6.54195190655155, 10.947833521613934, 106.4246913613558, 38.73203825694064, 78.0828974722857, 25.686668729652073, 72.12278014594061, 12.239813922938508, 107.42100983193862, 22.358285914862716, 5.562798115623973, 20.347682101659732, 37.38566314176209, 35.452977892908656, 16.760631805921754, 87.87358853072465, 58.77834641547305, 13.238155410662944, 106.52254890511819, 33.01795181359093, 35.89947989124161, 116.9310439833182, 12.893782095298027, 56.01385130651891, 23.52040928339887, 87.56894524713161, 27.31193026951732, 11.442445261622742, 35.183059275238605, 9.505485325882415, 56.6469377622699, 57.39847267458119, 47.78889166103699, ...])
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)