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 = 44909
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);
([7118265.625, 7119238.202848222, 7119333.6565524405, 7119415.979996225, 7119689.0625, 7122841.875630068, 7144115.625, 7151233.681298412, 7152175.290767774, 7152238.87268487, 7152935.7780408645, 7154155.883723197, 7154975.53347423, 7157221.488454798, 7159157.363203467, 7161762.466295201, 7161814.9255578825, 7161852.284480692, 7163064.618187501, 7163896.535749728, 7167175.0596109275, 7168304.836164867, 7169500.671693537, 7169603.125, 7169649.237537343, 7169666.290024146, 7169992.800138057, 7170007.541135008, 7170013.53400208, 7170262.5, 7170331.310227725, 7170668.54202983, 7171172.021021823, 7171475.054669337, 7174257.586630715, 7175769.38983435, 7175770.022125158, 7175772.608914403, 7175836.783785085, 7180459.375, 7181446.730225514, 7189639.3209383255, 7190257.288570732, 7190745.763962965, 7196051.5625, 7216730.896828776, 7251710.9375, 7252417.611306774, 7253401.416019167, 7286038.567404351, 7286233.767925462, 7288381.178462876, 7313963.291845653, 7314305.332260468, 7678318.453053382, 7688735.1950848615, 8648645.3125, 8707615.526944928, 8716856.758684533, 8766209.31777781, 8766810.913824981, 8773589.617316056, 8783485.9375, 8791344.653122649, 8793434.166411538, 8796380.491176348, 8822885.619075298, 8828544.176997567, 8839559.114459772, 8842893.75, 8844403.490207776, 8844946.026353046, 8846542.39338573, 8847200.700963957, 8848739.578959333, 8866938.218544299, 8868123.319875855, 8872013.388223624, 8872381.25, 8875945.43284066, 8885236.482408581, 8888977.449994069, 8893320.818798756, 8898250.0, 8898788.738610143, 8899473.365310052, 8910434.375, 8916080.710006587, 8920440.268306099, 8920456.243114121, 8924443.75, 8925944.32073956, 8926878.735553294, 8930298.4375, 8931190.262847388, 8931672.914231041, 8932013.229568165, 8932426.816944009, 8932839.306993967, 8933034.375, 8933727.08764367, 8933901.943776127, 8934399.711008348, 8934413.59907763, 8935346.153304344, 8935863.234648045, 8942710.095900407, 8963045.596426267, 8973242.408583902, 8973301.925808193, 8989539.0625, 8993599.278277235, 8994878.763088264, 8995419.856290504, 8997285.507306626, 8997388.989746276, 8999108.648935046, 9000346.700389715, 9003040.351301534, 9003057.8125, 9005744.731592301, 9007951.5625, 9009309.882168215, 9009883.06220802, 9010531.25, 9011493.449898385, 9012207.043159584, 9012474.884986145, 9012895.611671261, 9013441.45672097, 9013968.792604866, 9014014.0625, 9014318.152238104, 9015481.25, 9040484.832771616, 9040498.91605048, 9041445.3125, 9042344.990058044, 9043235.026208475, 9044320.258628909, 9045738.684106728, 9047154.708400322, 9053921.594469907, 9054185.525332633, 9062342.131226145, 9080274.722406097, 9091474.580773888, 9092441.391676245, 9093424.332098193, 9093439.0625, 9094109.375, 9094596.875, 9115705.18812621, 9117109.375, 9119849.972404648, 9125234.366917841, 9125646.875, 9126309.375, 9126676.591026736, 9127209.375, 9128826.98159758, 9130551.963202266, 9131304.6875, 9132105.692892518, 9132625.0, 9132750.71075831, 9133904.6875, 9134160.246498449, 9134616.524103802, 9135989.425274087, 9136134.08992014, 9136274.771460123, 9136326.854597671, 9137139.0625, 9137332.8125, 9145346.685919318, 9148027.93934582, 9148893.098046271, 9149183.685361514, 9151164.409563866, 9151985.81701475, 9152998.4375, 9153813.033894971, 9155858.86552203, 9157271.364704445, 9157404.6875, 9159212.635937696, 9159676.353312943, 9160539.0625, 9162630.80413792, 9164458.533883618, 9166983.059656214, 9167308.033164574, 9167700.038862482, 9168071.875, 9169130.055330917, 9169140.51864855, 9169287.285961248, 9170175.0, 9170617.831252046, 9171272.35972688, 9171492.202948343, 9171531.826665852, 9172250.0, 9172296.875, 9173127.826635767, 9173157.553379279, 9173212.887816017, 9173578.96898692, 9174896.497403175, 9175249.722009411, 9175757.998102825, 9178506.25, 9179484.748954706, 9183021.339296784, 9184154.316825105, 9188918.75, 9189988.65169519, 9190162.5, 9193131.25, 9193380.40669406, 9193892.900347361, 9193933.419731809, 9194177.395804591, 9195695.180442097, 9195798.4375, 9195806.60154295, 9196242.1875, 9196373.643132871, 9196831.25, 9197673.695012728, 9197969.329218853, 9200807.189941483, 9204261.93313182, 9204802.772350807, 9205329.391484631, 9207059.375, 9207112.11876235, 9208803.987445837, 9212516.349713923, 9219764.286546798, 9219774.693207685, 9219803.822151337, 9222604.950215846, 9225918.795433007, 9229778.862081656, 9253585.585750742, 9256613.684481196, 9258027.787090493, 9260190.493207302, 9260355.884708345, 9261248.948134439, 9261538.340594742, 9262253.125, 9262956.046264105, 9264567.1875, 9264597.591582766, 9267276.5625, 9267515.428422563, 9267589.02154837, 9267589.682360228, 9267652.713871924, 9267840.131546699, 9267918.642817786, 9268090.632152028, 9268241.449162321, 9268392.1875, 9268591.862171365, 9268759.261456532, 9269506.321870595, 9269906.25, 9269926.35360789, 9270026.940531798, 9270040.625, 9270349.636291577, 9270768.083453987, 9270947.10332918, 9271564.538789105, 9271610.9375, 9271793.62397399, 9272022.07146158, 9272157.8125, 9273812.5, 9273906.840970706, 9274524.368721053, 9276637.5, 9276645.129409866, 9277742.347793063, 9277865.275665002, 9281962.35323532, 9283735.816782508, 9283885.9375, 9285945.248348169, 9291817.1875, 9291821.875, 9302925.99569314, 9303937.302714776, 9318773.146738514, 9335990.422334863, 9337479.432007313, 9342782.8125, 9346935.275521046, 9347914.609182741, 9350441.314358197, 9351275.960161518, 9353153.590231491, 9353779.740715107, 9355348.40138618, 9356306.894711494, 9360553.235751072, 9361066.670910759, 9362243.47806534, 9362296.322483428, 9364664.962141942, 9364727.608625809, 9365542.1875, 9365993.211233575, 9367324.734771155, 9375978.125, 9376067.1875, 9377740.372940058, 9380983.932310041, 9381286.771670822, 9381481.25, 9389433.994550018, 9389450.280934509, 9393650.699228153, 9395490.625, 9408896.052503044, 9411417.389475131, 9411803.108705265, 9417682.8125, 9425257.115251238, 9448894.463620335, 9449838.608026931, 9452305.562199201, 9453293.491226094, 9453348.857921999, 9454132.8125, 9470727.295017762, 9518279.972621623, 9528650.59716491, 9529766.1143855, 9542520.3125, 9547857.451631464, 9547861.52314115, 9550211.744707935, 9552030.828051386, 9555404.323153634, 9556004.6875, 9559509.054032115, 9564802.806820434, 9577763.10597496, 9579838.758869119, 9581758.440529346, 9585327.830030793, 9604681.567389373, 9614407.8125, 9629311.649026934, 9629752.16146038, 9631662.184370598, 9632247.206092956, 9638629.18356301, 9640825.0, 9642144.147182204, 9642938.225020051, 9646098.08215409, 9646350.0, 9647790.533056747, 9647803.125, 9648263.233980779, 9648333.916650506, 9648532.434521416, 9648691.220520567, 9648994.95661623, 9649066.409507383, 9649113.007005993, 9649141.744484497, 9649686.371652544, 9649723.4375, 9649891.02451154, 9650529.6875, 9650887.45358896, 9651893.866299879, 9652070.320204278, 9652465.625, 9655303.993466552, 9658296.87239597, 9659220.792203384, 9692225.763969563, 9705896.839897146, 9706167.1875, 9706468.081600094, 9706874.904401334, 9707071.39971903, 9707189.0625, 9708271.875, 9723650.0, 9734240.30810689, 9734241.843185727, 9738856.99580355, 9740381.25, 9743928.125, 9744019.347370854, 9744827.331047134, 9748226.44710257, 9748771.875, 9749675.0, 9749760.651739616, 9753384.370435435, 9753660.9123236, 9756233.76479879, 9758594.363871403, 9764065.29920183, 9766887.313304562, 9775590.765392082, 9775658.639873983, 9775712.482870644, 9778144.827156983, 9781207.941566288, 9782104.6875, 9785910.789479595, 9789876.311899465, 9790113.304086378, 9791493.37239671, 9811268.711808393, 9815849.778242152, 9815860.31879472, 9819727.949103272, 9821253.342344288, 9821274.06003821, 9822445.073418906, 9826958.300739042, 9828212.5, 9828250.680497501, 9828762.5, 9829354.749691952, 9829457.847728863, 9829735.394853879, 9831532.407891497, 9831790.55772628, 9832131.257056545, 9832335.625766864, 9832354.318080537, 9832633.831468942, 9834535.747821303, 9834690.481330385, 9834715.606537715, 9835982.8125, 9836680.118517205, 9837323.4375, 9851572.363916926, 9851710.460770378, 9852994.87119049, 9853219.068453047, 9855317.084759835, 9869178.125, 9882487.407057378, 9895649.852721918, 9899173.4375, 9917909.00431177, 9920491.320095275, 9928298.004658416, 9928921.875, 9929575.464413261, 9932038.464883795, 9932246.442379408, 9940541.862521546, 9940572.769502228, 9946761.895825267, 9954947.310928557, 9964968.766829405, 9965552.931024538, 9988860.140491746, 10001334.99203771, 10005852.541998835, 10022482.317467077, 10022988.362120071, 10032888.601784842, 10041766.65435465, 10053550.0, 10059064.0625, 10090639.789051414, 10109698.22311756, 10109825.990262961, 10127547.17922127, 10140416.569404392, 10140714.735707413, 10142475.0, 10176466.078921454, 10176999.495237991, 10185262.609837819, 10185905.030965682, 10233421.767487844, 10272079.6875, 10274667.19167548, 10276554.6875, 10297014.551806899, 10305440.9017515, 10319974.122717505, 10333304.6875, 10435832.8125, 10435844.889692638, 10481424.761698583, 10501401.496329853, 10530854.253293093, 10532562.92698324, 10579836.812403752, 10604106.30328759, 10608787.5, 10617496.875, 10661516.519846478, 10668170.3125, 10669082.8125, 10676880.327748794, 10702458.520207439, 10783343.050502686, 10798491.238527928, 10818453.98444451, 10866939.821616845, 10882404.6875, 10901171.206823735, 10968530.678211518, 10975607.8125, 11033880.337966312, 11033925.055164732, 11052493.894903839, 11072259.676723605, 11098381.61242962, 11105624.530508807, 11144150.0, 11144179.6875, 11145332.804854024, 11180554.897335067, 11186057.1081823, 11208632.8125, 11208852.53578779, 11231540.625, 11236464.96642258, 11245547.183013566, 11262915.580133691, 11266314.357579304, 11427664.956158144, 11427670.087071154, 11523103.658393117, 11525439.371265652, 11533446.185833799, 11693495.069720227, 11703796.378610509, 11719632.1433003, 11723122.6248624, 11768917.15345761, 11822923.4375, 11825491.300324973, 11832944.58551256, 11903983.790294543, 11944320.3125, 11949188.387445536, 11983610.9375, 12049817.736067217, 12063485.63067429, 12065235.557894487, 12091336.952239648, 12096726.610958671, 12110982.8125, 12120412.5, 12139179.6875, 12157432.8125, 12173863.13356792, 12173867.116347203, 12186204.204646517, 12192252.720585639, 12201424.90700988, 12210475.06178653, 12269992.936344573, 12288715.139646862, 12305451.5625, 12311099.536506921, 12325960.192202399, 12330428.125, 12369207.075293195, 12417692.668076815, 12423424.55331036, 12423442.750292763, 12424159.268894106, 12456466.372428525, 12481993.998077696, 12484382.185624832, 12561894.995036954, 12561919.406172559, 12566662.498470142, 12672090.625, 12675332.8125, 12683187.5, 12748701.5625, 12753542.660695398, 12761901.22141186, 12785000.834585516, 12786757.475689959, 12791376.247609397, 12879749.659129104, 12895151.575628903, 13033970.98613638, 13056677.535691539, 13227918.319357583, 13503951.24459847, 15373596.304320095, 15412706.557478622, 15423285.9375, 15460611.234167498, 15472915.487351885, 15495136.938718637, 15512686.464841943, 15519825.895663464, 15519896.567928517, 15525978.58756452, 15526961.871046623, 15531991.370915763, 15540875.467244359, 15545367.896247374, 15545757.523374284, 15552429.6875, 15555033.68582217, 15556870.859631542, 15557021.875, 15557379.603792146, 15558687.11766007, 15561923.623111514, 15562511.258323548, 15565801.5625, 15568502.318712864, 15569970.3125, 15570735.9375, 15571607.725902423, 15571802.740098814, 15571839.0625, 15572047.88289541, 15572101.132808391, 15572505.497125745, 15572829.6875, 15572871.049630702, 15573273.4375, 15574459.375, 15574880.838543504, 15574891.612477804, 15575081.123123232, 15575239.808239091, 15575353.94870593, 15575435.9375, 15575751.690523135, 15577128.125, 15577339.91587015, 15577886.062757272, 15578192.825172415, 15578409.375, 15579079.6875, 15579456.70991912, 15579704.309455644, 15581201.396914264, 15581367.491329113, 15581811.835391186, 15581881.25, 15581907.060386755, 15581977.21471224, 15583618.242060214, 15583901.5625, 15585017.23562343, 15585427.674577551, 15585842.118927939, 15585944.183663173, 15586331.623880934, 15586460.099170009, 15588232.141708646, 15589014.0625, 15590143.091976639, 15591245.286598194, 15592820.513375454, 15595563.143279424, 15595771.770125167, 15596037.10639912, 15598401.5625, 15599242.1875, 15600406.25, 15600697.174173633, 15600760.128196765, 15602275.521023534, 15603570.3125, 15605756.96709617, 15610381.65009145, 15611320.474107472, 15611326.644265786, 15611987.285003249, 15612179.072809298, 15612212.499189839, 15612242.543499898, 15612674.974297125, 15613226.5625, 15615204.194036879, 15615304.904237933, 15616078.967749799, 15624262.620050423, 15627687.433381613, 15629321.528633196, 15629400.453067094, 15629424.88043879, 15629748.185152251, 15629754.375654666, 15629761.9928522, 15629870.975619858, 15631015.625, 15632736.650960015, 15633418.007615974, 15633622.022720426, 15633871.875, 15633879.6875, 15635169.924128449, 15635172.713703543, 15635429.471309057, 15635648.027218264, 15635832.656695755, 15636293.75, 15636649.373238126, 15636830.620022204, 15636846.875, 15636948.88811673, 15637045.353017895, 15637049.800920518, 15637508.80743661, 15637663.625001097, 15637681.728756957, 15637760.572594844, 15637769.8562788, 15637804.295884384, 15638311.074777577, 15638606.25, 15638663.753938815, 15638755.404286698, 15639246.151300544, 15639872.959192334, 15639960.9375, 15640341.532590555, 15640573.4375, 15640740.502639359, 15640754.786133789, 15640871.12006129, 15640967.754234772, 15641037.5, 15641050.831812268, 15642006.000353742, 15642371.875, 15643895.73507776, 15644329.6875, 15645778.552014558, 15646138.475627482, 15646249.621308016, 15647629.254363872, 15648395.3125, 15648424.365146914, 15650585.94695008, 15650916.86446717, 15651442.1875, 15651569.592952516, 15651756.812711533, 15651777.191807197, 15651802.519724935, 15652172.16133673, 15652224.27451123, 15652379.377536064, 15653228.340283802, 15653799.680646433, 15653893.75, 15653995.14768219, 15654243.511079703, 15654429.6875, 15654566.609331395, 15654598.4375, 15654616.625684673, 15654619.820457432, 15655581.054869786, 15655682.8125, 15655767.922984688, 15655806.960909018, 15656485.548790567, 15656588.251861647, 15656969.545278883, 15657307.952905992, 15657809.763726017, 15657818.564340008, 15657888.551469268, 15658048.805393673, 15658302.990157254, 15658446.817873353, 15658568.75, 15658829.111816548, 15658856.70015536, 15659970.3125, 15659971.251173962, 15660818.12407693, 15661486.47884291, 15661563.645042703, 15661707.8125, 15662212.046814805, 15662240.625, 15662343.049367853, 15662361.963526694, 15663367.924372384, 15663472.903059203, 15663825.988411846, 15663951.485401614, 15663965.188958544, 15663990.345557619, 15664060.210257554, 15664075.0, 15664108.098462066, 15664348.995349195, 15664591.348134244, 15664636.911607042, 15664879.95504374, 15664887.325129379, 15665118.122013435, 15665222.786504393, 15665337.237692304, 15665377.54235163, 15665559.298850138, 15665613.831382396, 15665732.8125, 15665775.94333785, 15665992.311866168, 15666134.375, 15666361.102627931, 15666594.298404526, 15666623.4375, 15666795.3125, 15667274.91607318, 15667287.382283106, 15667420.246912163, 15667420.3125, 15667513.445323663, 15667853.125, 15667898.111059973, 15668065.023065574, 15668220.3125, 15668248.286075076, 15668574.874796985, 15668691.021405937, 15669357.65891287, 15669414.630277062, 15669853.663327023, 15670048.545060042, 15670059.013055788, 15670323.4375, 15670848.677807521, 15670943.75, 15671016.766307041, 15671492.745190168, 15671602.430862688, 15671606.25, 15671674.09648064, 15671740.611053346, 15672260.9375, 15672265.123280244, 15672503.125, 15673153.787102234, 15673574.411065688, 15673612.5, 15673707.8125, 15673816.450409278, 15673943.2782761, 15674054.812548356, 15674064.800768156, 15674334.541767932, 15674584.196455663, 15674606.403027436, 15674690.43178003, 15674980.353152301, 15675048.643523289, 15675277.937796082, 15675301.578134637, 15675608.405432492, 15675617.573913775, 15675884.541695787, 15676077.072325641, 15676304.6875, 15676437.5, 15676621.503949648, 15676630.544732926, 15676851.5625, 15676891.615525616, 15676901.018711565, 15676979.472040651, 15676989.87509484, 15677185.9375, 15677214.0625, 15677710.474348966, 15677812.628489634, 15678054.202352617, 15678350.272395432, 15678459.61226869, 15678520.8101455, 15678734.266635297, 15678829.317575885, 15678976.449769584, 15679065.625, 15679609.814638693, 15679673.4375, 15679906.043110723, 15679951.143391768, 15680353.125, 15680529.021648284, 15680661.229954561, 15680690.478897091, 15680746.846307466, 15680912.32818192, 15680983.970355362, 15680998.08540159, 15681024.41770719, 15681050.15060778, 15681126.049298443, 15681233.288725616, 15681628.92457441, 15681776.5625, 15681944.708670072, 15682073.475575466, 15682085.415930256, 15682146.253948472, 15682325.786311457, 15682348.434300995, 15682644.590357745, 15682653.591075337, 15682671.875, 15682748.690001834, 15682792.024390532, 15682798.033193763, 15682873.709556643, 15683606.264068805, 15683704.423166541, 15683858.0443718, 15683915.398668157, 15684261.982821025, 15684298.64976598, 15684512.5, 15684912.180023301, 15685039.86091822, 15685440.5299784, 15685512.910765007, 15685560.706939938, 15685564.768100057, 15686031.306672052, 15686052.019345846, 15686268.00236328, 15686748.4375, 15686754.02700268, 15686829.241501523, 15686831.25, 15686873.434778493, 15687224.664917344, 15687390.625, 15687804.197014429, 15688166.708043642, 15688231.257966435, 15688592.1875, 15688700.602523351, 15688773.921249492, 15688775.357893873, 15688916.956242545, 15689102.37488906, 15689224.758829072, 15689434.375, 15689446.078558004, 15689536.30443813, 15689685.507505275, 15689815.610904599, 15689863.845936887, 15689865.940236084, 15690190.648845032, 15690220.265518997, 15690275.835268835, 15690403.174799243, 15690665.625, 15690714.185178759, 15690766.178991687, 15690865.51390806, 15690874.262200978, 15691060.50989243, 15691134.300846612, 15691334.222769545, 15691359.383897392, 15691416.930901492, 15691467.1875, 15691546.498672124, 15691563.058662035, 15691597.907529833, 15691601.424145468, 15691645.3125, 15692201.292912435, 15692316.158087857, 15692495.8640354, 15692766.128766904, 15692856.039276486, 15692876.5625, ...], [93.63403420202364, 54.49832765197184, 28.282641341897097, 63.500929866327915, 68.49063142692745, 94.62884918413991, 42.03070510004014, 117.85454486414932, 18.327139077061474, 5.03835963630791, 5.696684205440153, 154.10775926098773, 12.078274141000874, 109.43536648086994, 24.471273922905745, 14.814580093861371, 19.710297559641734, 11.752805940470228, 108.09334763091185, 29.349821299354815, 15.173692756896235, 7.657907036573282, 12.36959592778576, 43.371551509063366, 8.76039740485785, 75.57867803758482, 36.89140665966143, 24.12353782059664, 15.860158198579038, 54.159890069841424, 24.567631818823624, 31.319717437553603, 15.52890317789703, 15.154059602445162, 18.353627469173865, 24.745532596539743, 138.47074936279526, 62.852786735540036, 29.469207842581454, 55.70089560609215, 67.13139158376666, 46.23735240541546, 10.396896725137392, 9.744728369769767, 28.543346880987585, 42.95043956926842, 40.56872406046311, 36.32094373758274, 25.932066355639886, 21.542163664302986, 80.8967691510325, 14.675678135267857, 67.26107001115908, 18.140286428816868, 34.09474089779992, 51.97600401149129, 38.368522454454215, 116.80387776571582, 41.741924816565536, 11.039427481723584, 5.397569729356502, 12.12186869931031, 37.9701370710413, 27.135813176603634, 24.993118855355902, 7.350054421658101, 23.518210477173675, 11.867871946168922, 31.963202077867557, 51.32948315598983, 16.543826252586353, 12.462868834089182, 11.465527342005263, 26.39251978635617, 9.809934855989267, 6.166150912988034, 26.397993866763628, 19.914555256694594, 31.4414281911959, 18.760063252671756, 18.816356698663427, 70.71827674452628, 9.799637941243013, 59.91672509983342, 23.450304173660662, 11.016713421048246, 61.74840647589785, 17.250645743891013, 23.05259747145942, 40.780099804715, 75.35913872822091, 23.105169369175005, 5.648738621511735, 96.72112771220748, 34.168209841465064, 14.697256365005833, 32.39672238479591, 23.29676576650232, 62.48519869215766, 97.50831466882549, 12.061389647034844, 8.49904736447797, 23.89238394631229, 49.2057486450546, 89.23564018641463, 11.487063134244341, 27.892428750203607, 34.37449621880467, 50.80129002562288, 7.220345489967953, 64.65477622145814, 172.78510106814934, 5.180493505108587, 6.041908429783785, 71.284815432492, 27.16380547027592, 10.155315182954524, 6.245386828342327, 13.99172764034553, 33.15186921844199, 8.884190049332728, 55.495295544870714, 17.305502340784766, 47.350649499946584, 31.20171665474371, 7.0447370252156825, 38.63244285346596, 107.38646593334607, 16.21919095489798, 12.735515863318172, 11.1949604203841, 44.323573611115584, 50.533466031702204, 34.30005250001153, 38.037097237525316, 19.46910935951705, 37.713668427703304, 17.475965496765127, 18.182051103974302, 76.02495955781619, 78.82428977908431, 9.349138322772207, 63.30425833325914, 13.4649629731522, 11.04087181659741, 9.107216621734645, 50.35437573287764, 6.36917844365351, 26.71357344532618, 39.45391930203815, 31.16844765488717, 32.04189836393585, 26.81721932208303, 65.28202793328424, 27.990153939427163, 69.76478205625423, 35.310904927729595, 35.20501582014393, 7.128970713551159, 55.26026474556241, 31.25721727016059, 30.00680104767046, 32.40143521709552, 53.1658922221892, 43.5172374537295, 90.80290714751153, 62.95664322089712, 25.286708966800337, 12.988006432440194, 45.35357914919124, 9.101449240408428, 7.522618558536605, 18.416364169080232, 83.79733058957257, 75.20102297151718, 5.694829159268138, 9.17920528704002, 25.509113563588297, 21.045163430655528, 17.76165922743011, 53.738178120528644, 78.5459939511149, 17.45966061784217, 7.428807082301028, 39.154123162531135, 41.930703249167536, 9.449053478146272, 24.98446635740744, 58.39353175395259, 10.495655431542572, 30.28888129045663, 34.765007653097776, 15.85502867137219, 127.01911042924607, 45.24308354303073, 8.49116683016327, 9.243067344884214, 124.50263701127682, 48.41502296474674, 53.720084398320196, 17.16659253966185, 43.958475462698125, 12.167012454357693, 62.33966518482497, 74.00136185994296, 23.7716588210575, 8.154143908331442, 16.65908268085082, 19.55904061683641, 13.674264934711312, 10.719318790454079, 62.969152343320914, 34.3946995118915, 16.790673646133236, 21.144184804986544, 22.88808173770732, 40.959433644080164, 7.0174943978550575, 33.09591365645506, 96.55955619076778, 84.31852623825505, 22.348360871000175, 66.34206581811623, 12.81723415822865, 10.927327629682976, 97.5672486564388, 5.729502468633168, 52.69628454818772, 48.877193869572885, 65.5470506586348, 7.190830192254847, 37.1330761929907, 21.172752198424103, 147.71027534807504, 20.793829691964127, 91.13064857112343, 40.53351853096979, 13.663518502570058, 45.23214868889155, 10.029878204864156, 53.86273706321614, 20.340310411222397, 18.487106259015377, 6.115852192391817, 26.666708925680048, 27.206518974519234, 82.26502235554509, 32.69734831343969, 7.48542891479989, 94.27022910790203, 140.44967271317554, 7.262478915682602, 16.437514391158558, 29.984938975406582, 25.063529855978334, 92.81338186508987, 38.99410138162088, 43.940310712782626, 57.11657276852941, 111.55233801702666, 17.981341948074355, 60.40508349140534, 22.80382158375662, 31.973446594490767, 46.22076044180538, 12.717483711010606, 32.00482937370426, 38.562267415772666, 42.70925920181436, 76.54206147913924, 66.09484765213871, 24.988728810230302, 24.375856621958604, 60.02017958559456, 118.35059969109973, 61.3511222762198, 6.809963225009473, 63.08679366094833, 30.43986986185211, 129.25232993995104, 15.747219482115737, 57.79988436199489, 45.651441420482506, 34.10026405945099, 6.643697766495033, 84.74862759781723, 98.28687462657005, 49.210764560291864, 34.994847481884676, 10.905799911679251, 84.05149776651119, 44.980925278535175, 59.030896624987236, 150.74979762328218, 30.373158878094774, 7.4103382870978995, 7.533408200595679, 23.86947257469177, 52.452499445130464, 24.3364113605353, 66.00354485391534, 123.42154281374087, 28.293357334041957, 18.43441756402903, 30.244954294825874, 11.942094777166336, 15.148295425846852, 63.53192582270752, 9.943326355990092, 78.40480899365056, 51.45226479188239, 7.507758126822879, 150.81066811911728, 116.93746706670385, 8.929877684292007, 52.30991694520384, 21.114908976897436, 23.446166433197448, 48.717822647207605, 75.31242317105658, 14.060579707574579, 8.983179199191255, 19.482340881553124, 38.26354651023059, 130.25086051526253, 34.29603921618941, 12.430268619357646, 55.59500231276837, 32.004364024921955, 11.458797948472084, 64.21971255437582, 57.45825892055848, 19.727886603267645, 8.703811309711142, 94.8642010946629, 65.20117984424334, 63.11344009578141, 61.752423117907405, 49.4771638448933, 37.672144586409885, 22.485433013915383, 136.1570257173636, 17.204923739501364, 144.24868929655383, 19.036614128388077, 17.768791412402358, 32.71766956951446, 89.89439847194637, 10.60227118975212, 37.71640884645427, 140.17821134576465, 19.110642123604723, 27.373236268475004, 8.132283865484714, 12.757711536462947, 13.924989551255814, 109.85538593375378, 80.42542590595932, 97.49464068277693, 12.213617896706067, 141.24675276708209, 8.469785271169231, 103.55599185134179, 30.529475092355444, 16.707471423357834, 61.31849121494807, 9.047986482885783, 45.541361636480865, 26.829882790981472, 68.44997875835536, 59.5069754390325, 24.517690651268385, 10.584185112243443, 17.82947404548985, 70.63937371628458, 83.15096338172103, 17.30457771540114, 65.74652752124605, 16.902241080814704, 30.590723810331724, 7.754421192231545, 52.527360170781044, 49.477486763614834, 19.154059512418808, 7.123478351472826, 52.28557110283556, 8.80625607070212, 20.144143065498007, 5.306138564593218, 51.60874390567375, 5.811387512738934, 30.04689243275827, 99.93526353138283, 35.00273169380969, 10.458063524518941, 91.7549327821117, 92.68711541748507, 107.06056255534995, 7.492507717616638, 147.77181130066194, 6.3662596007659165, 44.897078054898735, 67.86513334647613, 7.287865171988044, 12.587150024408954, 48.116974932448166, 34.53510013212965, 148.86301100739468, 23.93435327686818, 40.233107414696875, 7.114849236898948, 6.3955099914645945, 46.208237141612855, 8.1214900771498, 10.84791233579453, 23.268192607424314, 12.725136086618873, 28.190282042273868, 21.788593506456753, 6.283643850210675, 123.8308857444579, 45.85182111239202, 19.841960893158777, 22.217391682984122, 18.588105553171275, 36.52282177782571, 49.34570660732507, 27.26024226907193, 28.862045176700924, 87.16468371907075, 6.894499178142515, 14.10235052886882, 41.855766037599835, 32.49384253462351, 9.981714480860548, 29.86779945429358, 15.18397563569248, 9.361369874075836, 27.900955644096957, 92.2309468680331, 7.579085812048346, 5.614434644576035, 13.873038390549672, 22.902736242709715, 8.910540104619507, 7.536045169275083, 10.910329835011716, 14.871603690712554, 29.046684305043076, 22.502691829643872, 66.60091241126703, 6.566565348850382, 13.390233172632062, 8.066223655780206, 42.34048306599006, 26.646262137533324, 35.97798073841539, 26.81275991248374, 31.558294169755477, 59.1191805096598, 13.694724903553675, 5.181872321275266, 133.6155852255474, 49.874110746526526, 24.905352170458826, 94.24732387993382, 62.044504903548294, 51.9115815360835, 7.962325342156813, 6.193768244082178, 58.230314034112965, 30.81705996657491, 8.18659614078788, 19.749224628714465, 70.24533381413889, 63.66413678570788, 59.01577433284221, 68.68861342048197, 21.894148063121385, 8.917916194667619, 39.5273815719472, 82.66574628072378, 10.031897524326896, 25.30248008715607, 29.151558025693312, 9.602605967583523, 71.08510295283688, 16.59772443744345, 33.39974845648164, 17.008926849595554, 13.256698416179951, 11.3038430694854, 140.01216202228906, 110.80824026031203, 36.81231628267087, 31.422823996745052, 30.259945055610366, 83.1471560821739, 23.939001418743697, 18.4065820393785, 64.50437832769705, 40.132861991391074, 22.29932332601656, 8.164455444472997, 27.28066414391464, 54.561462998006675, 8.52606231373824, 35.36850956440598, 15.14858257981782, 42.39861395630423, 62.705615204559706, 19.969214947658713, 47.25474970654244, 32.623809530713366, 43.62576986207358, 45.60605593907708, 28.8786337832548, 7.841311520802114, 42.438059783651475, 18.92049374887158, 101.24790327475527, 12.887899735708917, 74.02496891596353, 55.6924280130855, 43.40926497040371, 8.31596639427574, 56.45916865551378, 47.196924015080185, 11.745762965846446, 15.689903131006268, 31.263650163973, 62.651257441891744, 28.37456784517161, 11.47233631581396, 13.503992820871382, 58.10966735990891, 32.792415926516455, 76.14076320559565, 51.634735444696915, 7.71857402198398, 11.058294643746331, 6.823882277537553, 44.895592309674434, 49.301596109863375, 43.699854938427386, 5.5482559441027, 28.69998564622999, 7.517726814670047, 10.431372242855005, 19.956419755894522, 5.656920468135814, 52.16030236385623, 44.260274253858746, 23.578502235504384, 35.82765019756705, 8.881529658275728, 75.53126445004605, 25.782944524800016, 75.77874117130214, 33.81415393164173, 78.22275440107705, 49.82645934725181, 12.887979601715472, 144.48256512546573, 39.31769727972122, 44.40771108953883, 35.59198779114901, 31.35729473545456, 43.464273538860034, 16.445477878875828, 48.263305733368114, 64.45116528303292, 73.79681974160735, 7.137788730118124, 5.3682538090418355, 8.045573619489522, 64.85948217170991, 21.8651740533183, 10.13332900782954, 57.27870766416291, 19.41363662156479, 59.48724163254786, 49.54349955756682, 12.138288878932991, 23.32961438875706, 18.04497856376776, 15.979623959848412, 32.07546669820003, 10.66527937700483, 15.74503864223558, 14.935681522544204, 73.28257629240132, 69.03353532163975, 57.068781255857886, 32.98580808866067, 68.08632936911329, 68.85270023636795, 19.485565528198126, 19.41568191394403, 74.47495337880935, 19.826137337661166, 13.857231202044016, 78.58854750022437, 77.92186333063796, 107.40881849832753, 23.52473637327845, 32.48837718424456, 23.509838030325223, 31.982169135599932, 5.547654095458736, 14.4415909224045, 6.198796730936586, 17.421525017520224, 52.34205882290305, 29.208926483449865, 103.08655375571622, 10.268926945084198, 81.24798787287443, 5.73715426996293, 12.45145803338183, 13.943231726375268, 30.24851402792405, 6.384223817876328, 21.66107918201635, 45.85276458012147, 5.529031680201074, 13.660269837731745, 8.387232883471286, 5.13741850203176, 117.07897136724056, 12.558792077425737, 49.31604882878465, 62.917344343488494, 26.92191881214261, 5.786039405839942, 65.13715588122997, 59.64010873124709, 22.22435761249269, 45.04922930038012, 35.50164211469526, 56.72046793547904, 36.839928846968554, 97.85489150108067, 7.017335648998964, 10.333958574054554, 68.47853051326332, 6.16924177616347, 7.931053116092283, 29.966044786981442, 6.5073490067989415, 46.04935049631808, 6.629736966637775, 21.78561694799864, 12.035559636479498, 40.60137776144858, 41.539879302376434, 5.98048443330134, 21.9526575829062, 25.63427227148214, 14.820609816423676, 5.319652330423546, 46.13486103748546, 5.268406920666848, 49.196953638486725, 13.304353301903438, 50.315757659460786, 11.203769280437758, 22.00234225153765, 65.59455679363498, 38.756224230342745, 5.635068491350526, 6.363243193907907, 8.82204910297337, 34.148845917898306, 10.23445515144001, 6.085409792400443, 11.456907901768176, 6.35204345195161, 7.565741612340606, 22.624480214434687, 49.940443729801444, 49.40598287287365, 35.89545662772902, 43.79776945801528, 6.612019765893403, 21.922484603362136, 57.29836064361732, 12.470133659891795, 22.860392655939386, 9.47189482602451, 16.328824852696528, 8.176064220839594, 6.968728801240337, 35.26205985949612, 5.971019558506893, 28.026092320347608, 58.730205250403635, 15.552801262724476, 41.62738498177339, 8.788910597798935, 11.32068539386923, 33.48903811219849, 48.98597212055164, 35.142534154488544, 26.366088941044765, 5.388913852424751, 28.961608930270465, 21.422092234360807, 61.68731583437125, 57.259174084668125, 10.017541837164318, 28.74912899998258, 13.575912282868408, 54.22557922870748, 77.4256401996129, 9.023270795535, 19.517661791799455, 8.175467645328546, 13.578668232592365, 14.379147074699455, 47.463498575494135, 29.12505421084404, 7.979345190834178, 40.55335388967812, 28.78176069566276, 10.988648430632816, 19.20165182472545, 33.50860726504509, 22.140094018369584, 24.197437149210792, 42.527068927047104, 8.059206551804477, 5.906011729339294, 32.40677992735682, 72.50295463442076, 23.641996914468024, 73.94350930658268, 19.518419459468486, 45.40941744977324, 64.65012119721413, 43.70840344098539, 49.98370282205571, 77.66260866286304, 21.712149403651576, 74.1093756883831, 17.35191736373489, 61.41547882415343, 12.735734142573618, 60.26223400482127, 37.08592780193459, 41.397586441804606, 61.46935479263918, 80.00453678059115, 20.668168509346955, 99.65051757575807, 22.18708303698783, 35.97166544897081, 25.490693355289558, 11.142510081836797, 34.82930434316579, 41.14668671546045, 12.762453964851899, 35.732041898252106, 18.04121151942886, 54.3832426812628, 71.28593683221072, 5.37144509857907, 69.43565413239983, 100.77572111994925, 13.849608444738662, 32.35800917741977, 33.46481547610986, 35.38254669774694, 56.89432896863038, 10.330125414173526, 32.276541449588585, 44.69163155232204, 13.347892531505838, 18.04803451266011, 54.00165252479445, 12.511572087561563, 55.03796702709563, 13.64154172063336, 7.899864644615373, 21.8830140105986, 9.453014818138032, 62.01938010566987, 63.52768098099337, 21.383764052052086, 24.73470650104952, 9.219930515193898, 37.863169778984776, 66.8452433222875, 68.3434462369894, 38.95957672273465, 69.21431088259735, 37.88635747771552, 26.75404453856335, 9.835317019440136, 20.204360723818642, 53.41020646941612, 45.562156637001166, 80.3910154325867, 19.700771230243802, 62.670415200925746, 12.514716395288161, 40.25382261688442, 13.12761490499158, 86.6006434507101, 22.155763824914466, 24.01693726743007, 28.017045624719167, 42.228224915118275, 9.585500479634645, 5.743205271710279, 8.709970033379742, 36.35840695108422, 28.412526384238703, 33.36022220390778, 93.7350376667944, 109.72348892747547, 24.24445242086658, 7.405273700871901, 27.103988099713852, 5.389711519577672, 48.91439230186627, 13.011121837183527, 29.654623980083514, 29.545557967436064, 9.475043306739787, 49.57792787071515, 61.5700003768801, 32.01420894129329, 102.1391820826152, 33.546610453023646, 49.0381591266632, 68.36219499417633, 10.283007365531258, 85.36530601666837, 102.7370591830555, 6.971727776645121, 62.219486977894135, 13.404933686785878, 26.273687698485304, 5.974686728775307, 14.386730937104854, 17.660438900157608, 19.64070634671106, 6.099356395000053, 5.194297713946373, 58.089636713818045, 5.298568354326466, 51.79517790328004, 28.573943624958154, 5.743194605379154, 35.30052835491706, 57.79758228047619, 9.958570304493563, 7.598201193192202, 49.2668633480726, 12.955038232721677, 34.98039442161133, 18.253188671583395, 84.0049717828832, 66.9871814000249, 98.47451532783165, 128.54510418215816, 20.509080868635024, 25.218016742783536, 18.77174472110854, 15.61767831178117, 9.184862887036353, 61.49777239108442, 21.014903799142928, 24.850032097534573, 21.272818582316006, 25.307055323558522, 5.533839821365189, 9.888697518377885, 32.60057282170904, 11.398658369471928, 63.67027032706625, 76.3977343216966, 30.90476119957326, 12.32740784465453, 23.986250374173167, 30.231408028954366, 13.133154766036318, 54.86360210210522, 5.284477944068951, 19.316440066888433, 67.13269684019362, 60.06107655859718, 50.8079413724455, 6.5074235213084615, 10.445558614196857, 9.572862840744863, 14.371096874879376, 8.568523941694242, 12.028342817944463, 13.696993358212872, 26.47901046293129, 30.783838188486747, 52.608585153833594, 34.235071817030814, 86.00260047480492, 9.000499953664672, 55.28183510944697, 26.294382846773424, 58.12229487591966, 25.93804119939399, 27.969368224753953, 31.14604904295446, 26.04025748820513, 14.207270152332406, 13.10617773808691, 15.548406549643921, 21.362410808374708, 17.13149042452984, 7.920516620500615, 64.40269084535562, 34.96135351501801, 7.617067226572811, 71.29919425195894, 69.1536057554903, 5.316009921068386, 28.46196786389429, 8.787304043433156, 61.139593858004, 54.90456883057138, 52.65744451198782, 14.354239618958706, 53.65227333300662, 39.914554709337494, 7.125154835313464, 6.446437894106594, 22.971463419134196, 36.16903362463048, 6.035919210409122, 63.72399624377129, 62.678734026652755, 5.157975927482936, 26.756765220244457, 26.77722273365104, 9.704683954814243, 8.168303858584913, 10.008957526409095, 48.25867167195377, 17.024862755581307, 5.430566769448984, 72.4384062761014, 178.34053064295426, 5.2328318453047435, 45.25239613229111, 26.747296182924615, 58.25593885474204, 51.897772227251096, 13.352179566443105, 27.34608319466641, 78.03681743353407, 66.28213894939502, 42.302030909803214, 14.860062005762565, 16.50700026547367, 10.784503617845473, 11.107307365948074, 15.371780287476138, 43.52941651007562, 96.3876689881566, 26.26610961082272, 13.521952212280121, 6.086634644592949, 49.9780790148648, 100.90690431676396, 20.31051930689077, 5.810512232523713, 13.059029218402266, 11.206448729414094, 77.89439799815345, 85.59221839865789, 9.848309692931194, 14.53433616325414, 11.428267527720854, 74.31375512695273, 11.013745253508091, 5.926257119058775, 7.123792476536585, 25.599181920470564, 72.42494798794195, 19.619152597792876, 17.60582354814521, 18.1992272109666, 26.061273088897003, 53.78073066728602, 9.11340038893413, 22.334110635661713, 30.05037708964923, 9.797078143768259, 8.178200495677077, 51.84489635374642, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7118265.625, 7119238.202848222, 7119333.6565524405, 7119415.979996225, 7119689.0625, 7122841.875630068, 7144115.625, 7151233.681298412, 7152175.290767774, 7152238.87268487, 7152935.7780408645, 7154155.883723197, 7154975.53347423, 7157221.488454798, 7159157.363203467, 7161762.466295201, 7161814.9255578825, 7161852.284480692, 7163064.618187501, 7163896.535749728, 7167175.0596109275, 7168304.836164867, 7169500.671693537, 7169603.125, 7169649.237537343, 7169666.290024146, 7169992.800138057, 7170007.541135008, 7170013.53400208, 7170262.5, 7170331.310227725, 7170668.54202983, 7171172.021021823, 7171475.054669337, 7174257.586630715, 7175769.38983435, 7175770.022125158, 7175772.608914403, 7175836.783785085, 7180459.375, 7181446.730225514, 7189639.3209383255, 7190257.288570732, 7190745.763962965, 7196051.5625, 7216730.896828776, 7251710.9375, 7252417.611306774, 7253401.416019167, 7286038.567404351, 7286233.767925462, 7288381.178462876, 7313963.291845653, 7314305.332260468, 7678318.453053382, 7688735.1950848615, 8648645.3125, 8707615.526944928, 8716856.758684533, 8766209.31777781, 8766810.913824981, 8773589.617316056, 8783485.9375, 8791344.653122649, 8793434.166411538, 8796380.491176348, 8822885.619075298, 8828544.176997567, 8839559.114459772, 8842893.75, 8844403.490207776, 8844946.026353046, 8846542.39338573, 8847200.700963957, 8848739.578959333, 8866938.218544299, 8868123.319875855, 8872013.388223624, 8872381.25, 8875945.43284066, 8885236.482408581, 8888977.449994069, 8893320.818798756, 8898250.0, 8898788.738610143, 8899473.365310052, 8910434.375, 8916080.710006587, 8920440.268306099, 8920456.243114121, 8924443.75, 8925944.32073956, 8926878.735553294, 8930298.4375, 8931190.262847388, 8931672.914231041, 8932013.229568165, 8932426.816944009, 8932839.306993967, 8933034.375, 8933727.08764367, 8933901.943776127, 8934399.711008348, 8934413.59907763, 8935346.153304344, 8935863.234648045, 8942710.095900407, 8963045.596426267, 8973242.408583902, 8973301.925808193, 8989539.0625, 8993599.278277235, 8994878.763088264, 8995419.856290504, 8997285.507306626, 8997388.989746276, 8999108.648935046, 9000346.700389715, 9003040.351301534, 9003057.8125, 9005744.731592301, 9007951.5625, 9009309.882168215, 9009883.06220802, 9010531.25, 9011493.449898385, 9012207.043159584, 9012474.884986145, 9012895.611671261, 9013441.45672097, 9013968.792604866, 9014014.0625, 9014318.152238104, 9015481.25, 9040484.832771616, 9040498.91605048, 9041445.3125, 9042344.990058044, 9043235.026208475, 9044320.258628909, 9045738.684106728, 9047154.708400322, 9053921.594469907, 9054185.525332633, 9062342.131226145, 9080274.722406097, 9091474.580773888, 9092441.391676245, 9093424.332098193, 9093439.0625, 9094109.375, 9094596.875, 9115705.18812621, 9117109.375, 9119849.972404648, 9125234.366917841, 9125646.875, 9126309.375, 9126676.591026736, 9127209.375, 9128826.98159758, 9130551.963202266, 9131304.6875, 9132105.692892518, 9132625.0, 9132750.71075831, 9133904.6875, 9134160.246498449, 9134616.524103802, 9135989.425274087, 9136134.08992014, 9136274.771460123, 9136326.854597671, 9137139.0625, 9137332.8125, 9145346.685919318, 9148027.93934582, 9148893.098046271, 9149183.685361514, 9151164.409563866, 9151985.81701475, 9152998.4375, 9153813.033894971, 9155858.86552203, 9157271.364704445, 9157404.6875, 9159212.635937696, 9159676.353312943, 9160539.0625, 9162630.80413792, 9164458.533883618, 9166983.059656214, 9167308.033164574, 9167700.038862482, 9168071.875, 9169130.055330917, 9169140.51864855, 9169287.285961248, 9170175.0, 9170617.831252046, 9171272.35972688, 9171492.202948343, 9171531.826665852, 9172250.0, 9172296.875, 9173127.826635767, 9173157.553379279, 9173212.887816017, 9173578.96898692, 9174896.497403175, 9175249.722009411, 9175757.998102825, 9178506.25, 9179484.748954706, 9183021.339296784, 9184154.316825105, 9188918.75, 9189988.65169519, 9190162.5, 9193131.25, 9193380.40669406, 9193892.900347361, 9193933.419731809, 9194177.395804591, 9195695.180442097, 9195798.4375, 9195806.60154295, 9196242.1875, 9196373.643132871, 9196831.25, 9197673.695012728, 9197969.329218853, 9200807.189941483, 9204261.93313182, 9204802.772350807, 9205329.391484631, 9207059.375, 9207112.11876235, 9208803.987445837, 9212516.349713923, 9219764.286546798, 9219774.693207685, 9219803.822151337, 9222604.950215846, 9225918.795433007, 9229778.862081656, 9253585.585750742, 9256613.684481196, 9258027.787090493, 9260190.493207302, 9260355.884708345, 9261248.948134439, 9261538.340594742, 9262253.125, 9262956.046264105, 9264567.1875, 9264597.591582766, 9267276.5625, 9267515.428422563, 9267589.02154837, 9267589.682360228, 9267652.713871924, 9267840.131546699, 9267918.642817786, 9268090.632152028, 9268241.449162321, 9268392.1875, 9268591.862171365, 9268759.261456532, 9269506.321870595, 9269906.25, 9269926.35360789, 9270026.940531798, 9270040.625, 9270349.636291577, 9270768.083453987, 9270947.10332918, 9271564.538789105, 9271610.9375, 9271793.62397399, 9272022.07146158, 9272157.8125, 9273812.5, 9273906.840970706, 9274524.368721053, 9276637.5, 9276645.129409866, 9277742.347793063, 9277865.275665002, 9281962.35323532, 9283735.816782508, 9283885.9375, 9285945.248348169, 9291817.1875, 9291821.875, 9302925.99569314, 9303937.302714776, 9318773.146738514, 9335990.422334863, 9337479.432007313, 9342782.8125, 9346935.275521046, 9347914.609182741, 9350441.314358197, 9351275.960161518, 9353153.590231491, 9353779.740715107, 9355348.40138618, 9356306.894711494, 9360553.235751072, 9361066.670910759, 9362243.47806534, 9362296.322483428, 9364664.962141942, 9364727.608625809, 9365542.1875, 9365993.211233575, 9367324.734771155, 9375978.125, 9376067.1875, 9377740.372940058, 9380983.932310041, 9381286.771670822, 9381481.25, 9389433.994550018, 9389450.280934509, 9393650.699228153, 9395490.625, 9408896.052503044, 9411417.389475131, 9411803.108705265, 9417682.8125, 9425257.115251238, 9448894.463620335, 9449838.608026931, 9452305.562199201, 9453293.491226094, 9453348.857921999, 9454132.8125, 9470727.295017762, 9518279.972621623, 9528650.59716491, 9529766.1143855, 9542520.3125, 9547857.451631464, 9547861.52314115, 9550211.744707935, 9552030.828051386, 9555404.323153634, 9556004.6875, 9559509.054032115, 9564802.806820434, 9577763.10597496, 9579838.758869119, 9581758.440529346, 9585327.830030793, 9604681.567389373, 9614407.8125, 9629311.649026934, 9629752.16146038, 9631662.184370598, 9632247.206092956, 9638629.18356301, 9640825.0, 9642144.147182204, 9642938.225020051, 9646098.08215409, 9646350.0, 9647790.533056747, 9647803.125, 9648263.233980779, 9648333.916650506, 9648532.434521416, 9648691.220520567, 9648994.95661623, 9649066.409507383, 9649113.007005993, 9649141.744484497, 9649686.371652544, 9649723.4375, 9649891.02451154, 9650529.6875, 9650887.45358896, 9651893.866299879, 9652070.320204278, 9652465.625, 9655303.993466552, 9658296.87239597, 9659220.792203384, 9692225.763969563, 9705896.839897146, 9706167.1875, 9706468.081600094, 9706874.904401334, 9707071.39971903, 9707189.0625, 9708271.875, 9723650.0, 9734240.30810689, 9734241.843185727, 9738856.99580355, 9740381.25, 9743928.125, 9744019.347370854, 9744827.331047134, 9748226.44710257, 9748771.875, 9749675.0, 9749760.651739616, 9753384.370435435, 9753660.9123236, 9756233.76479879, 9758594.363871403, 9764065.29920183, 9766887.313304562, 9775590.765392082, 9775658.639873983, 9775712.482870644, 9778144.827156983, 9781207.941566288, 9782104.6875, 9785910.789479595, 9789876.311899465, 9790113.304086378, 9791493.37239671, 9811268.711808393, 9815849.778242152, 9815860.31879472, 9819727.949103272, 9821253.342344288, 9821274.06003821, 9822445.073418906, 9826958.300739042, 9828212.5, 9828250.680497501, 9828762.5, 9829354.749691952, 9829457.847728863, 9829735.394853879, 9831532.407891497, 9831790.55772628, 9832131.257056545, 9832335.625766864, 9832354.318080537, 9832633.831468942, 9834535.747821303, 9834690.481330385, 9834715.606537715, 9835982.8125, 9836680.118517205, 9837323.4375, 9851572.363916926, 9851710.460770378, 9852994.87119049, 9853219.068453047, 9855317.084759835, 9869178.125, 9882487.407057378, 9895649.852721918, 9899173.4375, 9917909.00431177, 9920491.320095275, 9928298.004658416, 9928921.875, 9929575.464413261, 9932038.464883795, 9932246.442379408, 9940541.862521546, 9940572.769502228, 9946761.895825267, 9954947.310928557, 9964968.766829405, 9965552.931024538, 9988860.140491746, 10001334.99203771, 10005852.541998835, 10022482.317467077, 10022988.362120071, 10032888.601784842, 10041766.65435465, 10053550.0, 10059064.0625, 10090639.789051414, 10109698.22311756, 10109825.990262961, 10127547.17922127, 10140416.569404392, 10140714.735707413, 10142475.0, 10176466.078921454, 10176999.495237991, 10185262.609837819, 10185905.030965682, 10233421.767487844, 10272079.6875, 10274667.19167548, 10276554.6875, 10297014.551806899, 10305440.9017515, 10319974.122717505, 10333304.6875, 10435832.8125, 10435844.889692638, 10481424.761698583, 10501401.496329853, 10530854.253293093, 10532562.92698324, 10579836.812403752, 10604106.30328759, 10608787.5, 10617496.875, 10661516.519846478, 10668170.3125, 10669082.8125, 10676880.327748794, 10702458.520207439, 10783343.050502686, 10798491.238527928, 10818453.98444451, 10866939.821616845, 10882404.6875, 10901171.206823735, 10968530.678211518, 10975607.8125, 11033880.337966312, 11033925.055164732, 11052493.894903839, 11072259.676723605, 11098381.61242962, 11105624.530508807, 11144150.0, 11144179.6875, 11145332.804854024, 11180554.897335067, 11186057.1081823, 11208632.8125, 11208852.53578779, 11231540.625, 11236464.96642258, 11245547.183013566, 11262915.580133691, 11266314.357579304, 11427664.956158144, 11427670.087071154, 11523103.658393117, 11525439.371265652, 11533446.185833799, 11693495.069720227, 11703796.378610509, 11719632.1433003, 11723122.6248624, 11768917.15345761, 11822923.4375, 11825491.300324973, 11832944.58551256, 11903983.790294543, 11944320.3125, 11949188.387445536, 11983610.9375, 12049817.736067217, 12063485.63067429, 12065235.557894487, 12091336.952239648, 12096726.610958671, 12110982.8125, 12120412.5, 12139179.6875, 12157432.8125, 12173863.13356792, 12173867.116347203, 12186204.204646517, 12192252.720585639, 12201424.90700988, 12210475.06178653, 12269992.936344573, 12288715.139646862, 12305451.5625, 12311099.536506921, 12325960.192202399, 12330428.125, 12369207.075293195, 12417692.668076815, 12423424.55331036, 12423442.750292763, 12424159.268894106, 12456466.372428525, 12481993.998077696, 12484382.185624832, 12561894.995036954, 12561919.406172559, 12566662.498470142, 12672090.625, 12675332.8125, 12683187.5, 12748701.5625, 12753542.660695398, 12761901.22141186, 12785000.834585516, 12786757.475689959, 12791376.247609397, 12879749.659129104, 12895151.575628903, 13033970.98613638, 13056677.535691539, 13227918.319357583, 13503951.24459847, 15373596.304320095, 15412706.557478622, 15423285.9375, 15460611.234167498, 15472915.487351885, 15495136.938718637, 15512686.464841943, 15519825.895663464, 15519896.567928517, 15525978.58756452, 15526961.871046623, 15531991.370915763, 15540875.467244359, 15545367.896247374, 15545757.523374284, 15552429.6875, 15555033.68582217, 15556870.859631542, 15557021.875, 15557379.603792146, 15558687.11766007, 15561923.623111514, 15562511.258323548, 15565801.5625, 15568502.318712864, 15569970.3125, 15570735.9375, 15571607.725902423, 15571802.740098814, 15571839.0625, 15572047.88289541, 15572101.132808391, 15572505.497125745, 15572829.6875, 15572871.049630702, 15573273.4375, 15574459.375, 15574880.838543504, 15574891.612477804, 15575081.123123232, 15575239.808239091, 15575353.94870593, 15575435.9375, 15575751.690523135, 15577128.125, 15577339.91587015, 15577886.062757272, 15578192.825172415, 15578409.375, 15579079.6875, 15579456.70991912, 15579704.309455644, 15581201.396914264, 15581367.491329113, 15581811.835391186, 15581881.25, 15581907.060386755, 15581977.21471224, 15583618.242060214, 15583901.5625, 15585017.23562343, 15585427.674577551, 15585842.118927939, 15585944.183663173, 15586331.623880934, 15586460.099170009, 15588232.141708646, 15589014.0625, 15590143.091976639, 15591245.286598194, 15592820.513375454, 15595563.143279424, 15595771.770125167, 15596037.10639912, 15598401.5625, 15599242.1875, 15600406.25, 15600697.174173633, 15600760.128196765, 15602275.521023534, 15603570.3125, 15605756.96709617, 15610381.65009145, 15611320.474107472, 15611326.644265786, 15611987.285003249, 15612179.072809298, 15612212.499189839, 15612242.543499898, 15612674.974297125, 15613226.5625, 15615204.194036879, 15615304.904237933, 15616078.967749799, 15624262.620050423, 15627687.433381613, 15629321.528633196, 15629400.453067094, 15629424.88043879, 15629748.185152251, 15629754.375654666, 15629761.9928522, 15629870.975619858, 15631015.625, 15632736.650960015, 15633418.007615974, 15633622.022720426, 15633871.875, 15633879.6875, 15635169.924128449, 15635172.713703543, 15635429.471309057, 15635648.027218264, 15635832.656695755, 15636293.75, 15636649.373238126, 15636830.620022204, 15636846.875, 15636948.88811673, 15637045.353017895, 15637049.800920518, 15637508.80743661, 15637663.625001097, 15637681.728756957, 15637760.572594844, 15637769.8562788, 15637804.295884384, 15638311.074777577, 15638606.25, 15638663.753938815, 15638755.404286698, 15639246.151300544, 15639872.959192334, 15639960.9375, 15640341.532590555, 15640573.4375, 15640740.502639359, 15640754.786133789, 15640871.12006129, 15640967.754234772, 15641037.5, 15641050.831812268, 15642006.000353742, 15642371.875, 15643895.73507776, 15644329.6875, 15645778.552014558, 15646138.475627482, 15646249.621308016, 15647629.254363872, 15648395.3125, 15648424.365146914, 15650585.94695008, 15650916.86446717, 15651442.1875, 15651569.592952516, 15651756.812711533, 15651777.191807197, 15651802.519724935, 15652172.16133673, 15652224.27451123, 15652379.377536064, 15653228.340283802, 15653799.680646433, 15653893.75, 15653995.14768219, 15654243.511079703, 15654429.6875, 15654566.609331395, 15654598.4375, 15654616.625684673, 15654619.820457432, 15655581.054869786, 15655682.8125, 15655767.922984688, 15655806.960909018, 15656485.548790567, 15656588.251861647, 15656969.545278883, 15657307.952905992, 15657809.763726017, 15657818.564340008, 15657888.551469268, 15658048.805393673, 15658302.990157254, 15658446.817873353, 15658568.75, 15658829.111816548, 15658856.70015536, 15659970.3125, 15659971.251173962, 15660818.12407693, 15661486.47884291, 15661563.645042703, 15661707.8125, 15662212.046814805, 15662240.625, 15662343.049367853, 15662361.963526694, 15663367.924372384, 15663472.903059203, 15663825.988411846, 15663951.485401614, 15663965.188958544, 15663990.345557619, 15664060.210257554, 15664075.0, 15664108.098462066, 15664348.995349195, 15664591.348134244, 15664636.911607042, 15664879.95504374, 15664887.325129379, 15665118.122013435, 15665222.786504393, 15665337.237692304, 15665377.54235163, 15665559.298850138, 15665613.831382396, 15665732.8125, 15665775.94333785, 15665992.311866168, 15666134.375, 15666361.102627931, 15666594.298404526, 15666623.4375, 15666795.3125, 15667274.91607318, 15667287.382283106, 15667420.246912163, 15667420.3125, 15667513.445323663, 15667853.125, 15667898.111059973, 15668065.023065574, 15668220.3125, 15668248.286075076, 15668574.874796985, 15668691.021405937, 15669357.65891287, 15669414.630277062, 15669853.663327023, 15670048.545060042, 15670059.013055788, 15670323.4375, 15670848.677807521, 15670943.75, 15671016.766307041, 15671492.745190168, 15671602.430862688, 15671606.25, 15671674.09648064, 15671740.611053346, 15672260.9375, 15672265.123280244, 15672503.125, 15673153.787102234, 15673574.411065688, 15673612.5, 15673707.8125, 15673816.450409278, 15673943.2782761, 15674054.812548356, 15674064.800768156, 15674334.541767932, 15674584.196455663, 15674606.403027436, 15674690.43178003, 15674980.353152301, 15675048.643523289, 15675277.937796082, 15675301.578134637, 15675608.405432492, 15675617.573913775, 15675884.541695787, 15676077.072325641, 15676304.6875, 15676437.5, 15676621.503949648, 15676630.544732926, 15676851.5625, 15676891.615525616, 15676901.018711565, 15676979.472040651, 15676989.87509484, 15677185.9375, 15677214.0625, 15677710.474348966, 15677812.628489634, 15678054.202352617, 15678350.272395432, 15678459.61226869, 15678520.8101455, 15678734.266635297, 15678829.317575885, 15678976.449769584, 15679065.625, 15679609.814638693, 15679673.4375, 15679906.043110723, 15679951.143391768, 15680353.125, 15680529.021648284, 15680661.229954561, 15680690.478897091, 15680746.846307466, 15680912.32818192, 15680983.970355362, 15680998.08540159, 15681024.41770719, 15681050.15060778, 15681126.049298443, 15681233.288725616, 15681628.92457441, 15681776.5625, 15681944.708670072, 15682073.475575466, 15682085.415930256, 15682146.253948472, 15682325.786311457, 15682348.434300995, 15682644.590357745, 15682653.591075337, 15682671.875, 15682748.690001834, 15682792.024390532, 15682798.033193763, 15682873.709556643, 15683606.264068805, 15683704.423166541, 15683858.0443718, 15683915.398668157, 15684261.982821025, 15684298.64976598, 15684512.5, 15684912.180023301, 15685039.86091822, 15685440.5299784, 15685512.910765007, 15685560.706939938, 15685564.768100057, 15686031.306672052, 15686052.019345846, 15686268.00236328, 15686748.4375, 15686754.02700268, 15686829.241501523, 15686831.25, 15686873.434778493, 15687224.664917344, 15687390.625, 15687804.197014429, 15688166.708043642, 15688231.257966435, 15688592.1875, 15688700.602523351, 15688773.921249492, 15688775.357893873, 15688916.956242545, 15689102.37488906, 15689224.758829072, 15689434.375, 15689446.078558004, 15689536.30443813, 15689685.507505275, 15689815.610904599, 15689863.845936887, 15689865.940236084, 15690190.648845032, 15690220.265518997, 15690275.835268835, 15690403.174799243, 15690665.625, 15690714.185178759, 15690766.178991687, 15690865.51390806, 15690874.262200978, 15691060.50989243, 15691134.300846612, 15691334.222769545, 15691359.383897392, 15691416.930901492, 15691467.1875, 15691546.498672124, 15691563.058662035, 15691597.907529833, 15691601.424145468, 15691645.3125, 15692201.292912435, 15692316.158087857, 15692495.8640354, 15692766.128766904, 15692856.039276486, 15692876.5625, ...], [93.63403420202364, 54.49832765197184, 28.282641341897097, 63.500929866327915, 68.49063142692745, 94.62884918413991, 42.03070510004014, 117.85454486414932, 18.327139077061474, 5.03835963630791, 5.696684205440153, 154.10775926098773, 12.078274141000874, 109.43536648086994, 24.471273922905745, 14.814580093861371, 19.710297559641734, 11.752805940470228, 108.09334763091185, 29.349821299354815, 15.173692756896235, 7.657907036573282, 12.36959592778576, 43.371551509063366, 8.76039740485785, 75.57867803758482, 36.89140665966143, 24.12353782059664, 15.860158198579038, 54.159890069841424, 24.567631818823624, 31.319717437553603, 15.52890317789703, 15.154059602445162, 18.353627469173865, 24.745532596539743, 138.47074936279526, 62.852786735540036, 29.469207842581454, 55.70089560609215, 67.13139158376666, 46.23735240541546, 10.396896725137392, 9.744728369769767, 28.543346880987585, 42.95043956926842, 40.56872406046311, 36.32094373758274, 25.932066355639886, 21.542163664302986, 80.8967691510325, 14.675678135267857, 67.26107001115908, 18.140286428816868, 34.09474089779992, 51.97600401149129, 38.368522454454215, 116.80387776571582, 41.741924816565536, 11.039427481723584, 5.397569729356502, 12.12186869931031, 37.9701370710413, 27.135813176603634, 24.993118855355902, 7.350054421658101, 23.518210477173675, 11.867871946168922, 31.963202077867557, 51.32948315598983, 16.543826252586353, 12.462868834089182, 11.465527342005263, 26.39251978635617, 9.809934855989267, 6.166150912988034, 26.397993866763628, 19.914555256694594, 31.4414281911959, 18.760063252671756, 18.816356698663427, 70.71827674452628, 9.799637941243013, 59.91672509983342, 23.450304173660662, 11.016713421048246, 61.74840647589785, 17.250645743891013, 23.05259747145942, 40.780099804715, 75.35913872822091, 23.105169369175005, 5.648738621511735, 96.72112771220748, 34.168209841465064, 14.697256365005833, 32.39672238479591, 23.29676576650232, 62.48519869215766, 97.50831466882549, 12.061389647034844, 8.49904736447797, 23.89238394631229, 49.2057486450546, 89.23564018641463, 11.487063134244341, 27.892428750203607, 34.37449621880467, 50.80129002562288, 7.220345489967953, 64.65477622145814, 172.78510106814934, 5.180493505108587, 6.041908429783785, 71.284815432492, 27.16380547027592, 10.155315182954524, 6.245386828342327, 13.99172764034553, 33.15186921844199, 8.884190049332728, 55.495295544870714, 17.305502340784766, 47.350649499946584, 31.20171665474371, 7.0447370252156825, 38.63244285346596, 107.38646593334607, 16.21919095489798, 12.735515863318172, 11.1949604203841, 44.323573611115584, 50.533466031702204, 34.30005250001153, 38.037097237525316, 19.46910935951705, 37.713668427703304, 17.475965496765127, 18.182051103974302, 76.02495955781619, 78.82428977908431, 9.349138322772207, 63.30425833325914, 13.4649629731522, 11.04087181659741, 9.107216621734645, 50.35437573287764, 6.36917844365351, 26.71357344532618, 39.45391930203815, 31.16844765488717, 32.04189836393585, 26.81721932208303, 65.28202793328424, 27.990153939427163, 69.76478205625423, 35.310904927729595, 35.20501582014393, 7.128970713551159, 55.26026474556241, 31.25721727016059, 30.00680104767046, 32.40143521709552, 53.1658922221892, 43.5172374537295, 90.80290714751153, 62.95664322089712, 25.286708966800337, 12.988006432440194, 45.35357914919124, 9.101449240408428, 7.522618558536605, 18.416364169080232, 83.79733058957257, 75.20102297151718, 5.694829159268138, 9.17920528704002, 25.509113563588297, 21.045163430655528, 17.76165922743011, 53.738178120528644, 78.5459939511149, 17.45966061784217, 7.428807082301028, 39.154123162531135, 41.930703249167536, 9.449053478146272, 24.98446635740744, 58.39353175395259, 10.495655431542572, 30.28888129045663, 34.765007653097776, 15.85502867137219, 127.01911042924607, 45.24308354303073, 8.49116683016327, 9.243067344884214, 124.50263701127682, 48.41502296474674, 53.720084398320196, 17.16659253966185, 43.958475462698125, 12.167012454357693, 62.33966518482497, 74.00136185994296, 23.7716588210575, 8.154143908331442, 16.65908268085082, 19.55904061683641, 13.674264934711312, 10.719318790454079, 62.969152343320914, 34.3946995118915, 16.790673646133236, 21.144184804986544, 22.88808173770732, 40.959433644080164, 7.0174943978550575, 33.09591365645506, 96.55955619076778, 84.31852623825505, 22.348360871000175, 66.34206581811623, 12.81723415822865, 10.927327629682976, 97.5672486564388, 5.729502468633168, 52.69628454818772, 48.877193869572885, 65.5470506586348, 7.190830192254847, 37.1330761929907, 21.172752198424103, 147.71027534807504, 20.793829691964127, 91.13064857112343, 40.53351853096979, 13.663518502570058, 45.23214868889155, 10.029878204864156, 53.86273706321614, 20.340310411222397, 18.487106259015377, 6.115852192391817, 26.666708925680048, 27.206518974519234, 82.26502235554509, 32.69734831343969, 7.48542891479989, 94.27022910790203, 140.44967271317554, 7.262478915682602, 16.437514391158558, 29.984938975406582, 25.063529855978334, 92.81338186508987, 38.99410138162088, 43.940310712782626, 57.11657276852941, 111.55233801702666, 17.981341948074355, 60.40508349140534, 22.80382158375662, 31.973446594490767, 46.22076044180538, 12.717483711010606, 32.00482937370426, 38.562267415772666, 42.70925920181436, 76.54206147913924, 66.09484765213871, 24.988728810230302, 24.375856621958604, 60.02017958559456, 118.35059969109973, 61.3511222762198, 6.809963225009473, 63.08679366094833, 30.43986986185211, 129.25232993995104, 15.747219482115737, 57.79988436199489, 45.651441420482506, 34.10026405945099, 6.643697766495033, 84.74862759781723, 98.28687462657005, 49.210764560291864, 34.994847481884676, 10.905799911679251, 84.05149776651119, 44.980925278535175, 59.030896624987236, 150.74979762328218, 30.373158878094774, 7.4103382870978995, 7.533408200595679, 23.86947257469177, 52.452499445130464, 24.3364113605353, 66.00354485391534, 123.42154281374087, 28.293357334041957, 18.43441756402903, 30.244954294825874, 11.942094777166336, 15.148295425846852, 63.53192582270752, 9.943326355990092, 78.40480899365056, 51.45226479188239, 7.507758126822879, 150.81066811911728, 116.93746706670385, 8.929877684292007, 52.30991694520384, 21.114908976897436, 23.446166433197448, 48.717822647207605, 75.31242317105658, 14.060579707574579, 8.983179199191255, 19.482340881553124, 38.26354651023059, 130.25086051526253, 34.29603921618941, 12.430268619357646, 55.59500231276837, 32.004364024921955, 11.458797948472084, 64.21971255437582, 57.45825892055848, 19.727886603267645, 8.703811309711142, 94.8642010946629, 65.20117984424334, 63.11344009578141, 61.752423117907405, 49.4771638448933, 37.672144586409885, 22.485433013915383, 136.1570257173636, 17.204923739501364, 144.24868929655383, 19.036614128388077, 17.768791412402358, 32.71766956951446, 89.89439847194637, 10.60227118975212, 37.71640884645427, 140.17821134576465, 19.110642123604723, 27.373236268475004, 8.132283865484714, 12.757711536462947, 13.924989551255814, 109.85538593375378, 80.42542590595932, 97.49464068277693, 12.213617896706067, 141.24675276708209, 8.469785271169231, 103.55599185134179, 30.529475092355444, 16.707471423357834, 61.31849121494807, 9.047986482885783, 45.541361636480865, 26.829882790981472, 68.44997875835536, 59.5069754390325, 24.517690651268385, 10.584185112243443, 17.82947404548985, 70.63937371628458, 83.15096338172103, 17.30457771540114, 65.74652752124605, 16.902241080814704, 30.590723810331724, 7.754421192231545, 52.527360170781044, 49.477486763614834, 19.154059512418808, 7.123478351472826, 52.28557110283556, 8.80625607070212, 20.144143065498007, 5.306138564593218, 51.60874390567375, 5.811387512738934, 30.04689243275827, 99.93526353138283, 35.00273169380969, 10.458063524518941, 91.7549327821117, 92.68711541748507, 107.06056255534995, 7.492507717616638, 147.77181130066194, 6.3662596007659165, 44.897078054898735, 67.86513334647613, 7.287865171988044, 12.587150024408954, 48.116974932448166, 34.53510013212965, 148.86301100739468, 23.93435327686818, 40.233107414696875, 7.114849236898948, 6.3955099914645945, 46.208237141612855, 8.1214900771498, 10.84791233579453, 23.268192607424314, 12.725136086618873, 28.190282042273868, 21.788593506456753, 6.283643850210675, 123.8308857444579, 45.85182111239202, 19.841960893158777, 22.217391682984122, 18.588105553171275, 36.52282177782571, 49.34570660732507, 27.26024226907193, 28.862045176700924, 87.16468371907075, 6.894499178142515, 14.10235052886882, 41.855766037599835, 32.49384253462351, 9.981714480860548, 29.86779945429358, 15.18397563569248, 9.361369874075836, 27.900955644096957, 92.2309468680331, 7.579085812048346, 5.614434644576035, 13.873038390549672, 22.902736242709715, 8.910540104619507, 7.536045169275083, 10.910329835011716, 14.871603690712554, 29.046684305043076, 22.502691829643872, 66.60091241126703, 6.566565348850382, 13.390233172632062, 8.066223655780206, 42.34048306599006, 26.646262137533324, 35.97798073841539, 26.81275991248374, 31.558294169755477, 59.1191805096598, 13.694724903553675, 5.181872321275266, 133.6155852255474, 49.874110746526526, 24.905352170458826, 94.24732387993382, 62.044504903548294, 51.9115815360835, 7.962325342156813, 6.193768244082178, 58.230314034112965, 30.81705996657491, 8.18659614078788, 19.749224628714465, 70.24533381413889, 63.66413678570788, 59.01577433284221, 68.68861342048197, 21.894148063121385, 8.917916194667619, 39.5273815719472, 82.66574628072378, 10.031897524326896, 25.30248008715607, 29.151558025693312, 9.602605967583523, 71.08510295283688, 16.59772443744345, 33.39974845648164, 17.008926849595554, 13.256698416179951, 11.3038430694854, 140.01216202228906, 110.80824026031203, 36.81231628267087, 31.422823996745052, 30.259945055610366, 83.1471560821739, 23.939001418743697, 18.4065820393785, 64.50437832769705, 40.132861991391074, 22.29932332601656, 8.164455444472997, 27.28066414391464, 54.561462998006675, 8.52606231373824, 35.36850956440598, 15.14858257981782, 42.39861395630423, 62.705615204559706, 19.969214947658713, 47.25474970654244, 32.623809530713366, 43.62576986207358, 45.60605593907708, 28.8786337832548, 7.841311520802114, 42.438059783651475, 18.92049374887158, 101.24790327475527, 12.887899735708917, 74.02496891596353, 55.6924280130855, 43.40926497040371, 8.31596639427574, 56.45916865551378, 47.196924015080185, 11.745762965846446, 15.689903131006268, 31.263650163973, 62.651257441891744, 28.37456784517161, 11.47233631581396, 13.503992820871382, 58.10966735990891, 32.792415926516455, 76.14076320559565, 51.634735444696915, 7.71857402198398, 11.058294643746331, 6.823882277537553, 44.895592309674434, 49.301596109863375, 43.699854938427386, 5.5482559441027, 28.69998564622999, 7.517726814670047, 10.431372242855005, 19.956419755894522, 5.656920468135814, 52.16030236385623, 44.260274253858746, 23.578502235504384, 35.82765019756705, 8.881529658275728, 75.53126445004605, 25.782944524800016, 75.77874117130214, 33.81415393164173, 78.22275440107705, 49.82645934725181, 12.887979601715472, 144.48256512546573, 39.31769727972122, 44.40771108953883, 35.59198779114901, 31.35729473545456, 43.464273538860034, 16.445477878875828, 48.263305733368114, 64.45116528303292, 73.79681974160735, 7.137788730118124, 5.3682538090418355, 8.045573619489522, 64.85948217170991, 21.8651740533183, 10.13332900782954, 57.27870766416291, 19.41363662156479, 59.48724163254786, 49.54349955756682, 12.138288878932991, 23.32961438875706, 18.04497856376776, 15.979623959848412, 32.07546669820003, 10.66527937700483, 15.74503864223558, 14.935681522544204, 73.28257629240132, 69.03353532163975, 57.068781255857886, 32.98580808866067, 68.08632936911329, 68.85270023636795, 19.485565528198126, 19.41568191394403, 74.47495337880935, 19.826137337661166, 13.857231202044016, 78.58854750022437, 77.92186333063796, 107.40881849832753, 23.52473637327845, 32.48837718424456, 23.509838030325223, 31.982169135599932, 5.547654095458736, 14.4415909224045, 6.198796730936586, 17.421525017520224, 52.34205882290305, 29.208926483449865, 103.08655375571622, 10.268926945084198, 81.24798787287443, 5.73715426996293, 12.45145803338183, 13.943231726375268, 30.24851402792405, 6.384223817876328, 21.66107918201635, 45.85276458012147, 5.529031680201074, 13.660269837731745, 8.387232883471286, 5.13741850203176, 117.07897136724056, 12.558792077425737, 49.31604882878465, 62.917344343488494, 26.92191881214261, 5.786039405839942, 65.13715588122997, 59.64010873124709, 22.22435761249269, 45.04922930038012, 35.50164211469526, 56.72046793547904, 36.839928846968554, 97.85489150108067, 7.017335648998964, 10.333958574054554, 68.47853051326332, 6.16924177616347, 7.931053116092283, 29.966044786981442, 6.5073490067989415, 46.04935049631808, 6.629736966637775, 21.78561694799864, 12.035559636479498, 40.60137776144858, 41.539879302376434, 5.98048443330134, 21.9526575829062, 25.63427227148214, 14.820609816423676, 5.319652330423546, 46.13486103748546, 5.268406920666848, 49.196953638486725, 13.304353301903438, 50.315757659460786, 11.203769280437758, 22.00234225153765, 65.59455679363498, 38.756224230342745, 5.635068491350526, 6.363243193907907, 8.82204910297337, 34.148845917898306, 10.23445515144001, 6.085409792400443, 11.456907901768176, 6.35204345195161, 7.565741612340606, 22.624480214434687, 49.940443729801444, 49.40598287287365, 35.89545662772902, 43.79776945801528, 6.612019765893403, 21.922484603362136, 57.29836064361732, 12.470133659891795, 22.860392655939386, 9.47189482602451, 16.328824852696528, 8.176064220839594, 6.968728801240337, 35.26205985949612, 5.971019558506893, 28.026092320347608, 58.730205250403635, 15.552801262724476, 41.62738498177339, 8.788910597798935, 11.32068539386923, 33.48903811219849, 48.98597212055164, 35.142534154488544, 26.366088941044765, 5.388913852424751, 28.961608930270465, 21.422092234360807, 61.68731583437125, 57.259174084668125, 10.017541837164318, 28.74912899998258, 13.575912282868408, 54.22557922870748, 77.4256401996129, 9.023270795535, 19.517661791799455, 8.175467645328546, 13.578668232592365, 14.379147074699455, 47.463498575494135, 29.12505421084404, 7.979345190834178, 40.55335388967812, 28.78176069566276, 10.988648430632816, 19.20165182472545, 33.50860726504509, 22.140094018369584, 24.197437149210792, 42.527068927047104, 8.059206551804477, 5.906011729339294, 32.40677992735682, 72.50295463442076, 23.641996914468024, 73.94350930658268, 19.518419459468486, 45.40941744977324, 64.65012119721413, 43.70840344098539, 49.98370282205571, 77.66260866286304, 21.712149403651576, 74.1093756883831, 17.35191736373489, 61.41547882415343, 12.735734142573618, 60.26223400482127, 37.08592780193459, 41.397586441804606, 61.46935479263918, 80.00453678059115, 20.668168509346955, 99.65051757575807, 22.18708303698783, 35.97166544897081, 25.490693355289558, 11.142510081836797, 34.82930434316579, 41.14668671546045, 12.762453964851899, 35.732041898252106, 18.04121151942886, 54.3832426812628, 71.28593683221072, 5.37144509857907, 69.43565413239983, 100.77572111994925, 13.849608444738662, 32.35800917741977, 33.46481547610986, 35.38254669774694, 56.89432896863038, 10.330125414173526, 32.276541449588585, 44.69163155232204, 13.347892531505838, 18.04803451266011, 54.00165252479445, 12.511572087561563, 55.03796702709563, 13.64154172063336, 7.899864644615373, 21.8830140105986, 9.453014818138032, 62.01938010566987, 63.52768098099337, 21.383764052052086, 24.73470650104952, 9.219930515193898, 37.863169778984776, 66.8452433222875, 68.3434462369894, 38.95957672273465, 69.21431088259735, 37.88635747771552, 26.75404453856335, 9.835317019440136, 20.204360723818642, 53.41020646941612, 45.562156637001166, 80.3910154325867, 19.700771230243802, 62.670415200925746, 12.514716395288161, 40.25382261688442, 13.12761490499158, 86.6006434507101, 22.155763824914466, 24.01693726743007, 28.017045624719167, 42.228224915118275, 9.585500479634645, 5.743205271710279, 8.709970033379742, 36.35840695108422, 28.412526384238703, 33.36022220390778, 93.7350376667944, 109.72348892747547, 24.24445242086658, 7.405273700871901, 27.103988099713852, 5.389711519577672, 48.91439230186627, 13.011121837183527, 29.654623980083514, 29.545557967436064, 9.475043306739787, 49.57792787071515, 61.5700003768801, 32.01420894129329, 102.1391820826152, 33.546610453023646, 49.0381591266632, 68.36219499417633, 10.283007365531258, 85.36530601666837, 102.7370591830555, 6.971727776645121, 62.219486977894135, 13.404933686785878, 26.273687698485304, 5.974686728775307, 14.386730937104854, 17.660438900157608, 19.64070634671106, 6.099356395000053, 5.194297713946373, 58.089636713818045, 5.298568354326466, 51.79517790328004, 28.573943624958154, 5.743194605379154, 35.30052835491706, 57.79758228047619, 9.958570304493563, 7.598201193192202, 49.2668633480726, 12.955038232721677, 34.98039442161133, 18.253188671583395, 84.0049717828832, 66.9871814000249, 98.47451532783165, 128.54510418215816, 20.509080868635024, 25.218016742783536, 18.77174472110854, 15.61767831178117, 9.184862887036353, 61.49777239108442, 21.014903799142928, 24.850032097534573, 21.272818582316006, 25.307055323558522, 5.533839821365189, 9.888697518377885, 32.60057282170904, 11.398658369471928, 63.67027032706625, 76.3977343216966, 30.90476119957326, 12.32740784465453, 23.986250374173167, 30.231408028954366, 13.133154766036318, 54.86360210210522, 5.284477944068951, 19.316440066888433, 67.13269684019362, 60.06107655859718, 50.8079413724455, 6.5074235213084615, 10.445558614196857, 9.572862840744863, 14.371096874879376, 8.568523941694242, 12.028342817944463, 13.696993358212872, 26.47901046293129, 30.783838188486747, 52.608585153833594, 34.235071817030814, 86.00260047480492, 9.000499953664672, 55.28183510944697, 26.294382846773424, 58.12229487591966, 25.93804119939399, 27.969368224753953, 31.14604904295446, 26.04025748820513, 14.207270152332406, 13.10617773808691, 15.548406549643921, 21.362410808374708, 17.13149042452984, 7.920516620500615, 64.40269084535562, 34.96135351501801, 7.617067226572811, 71.29919425195894, 69.1536057554903, 5.316009921068386, 28.46196786389429, 8.787304043433156, 61.139593858004, 54.90456883057138, 52.65744451198782, 14.354239618958706, 53.65227333300662, 39.914554709337494, 7.125154835313464, 6.446437894106594, 22.971463419134196, 36.16903362463048, 6.035919210409122, 63.72399624377129, 62.678734026652755, 5.157975927482936, 26.756765220244457, 26.77722273365104, 9.704683954814243, 8.168303858584913, 10.008957526409095, 48.25867167195377, 17.024862755581307, 5.430566769448984, 72.4384062761014, 178.34053064295426, 5.2328318453047435, 45.25239613229111, 26.747296182924615, 58.25593885474204, 51.897772227251096, 13.352179566443105, 27.34608319466641, 78.03681743353407, 66.28213894939502, 42.302030909803214, 14.860062005762565, 16.50700026547367, 10.784503617845473, 11.107307365948074, 15.371780287476138, 43.52941651007562, 96.3876689881566, 26.26610961082272, 13.521952212280121, 6.086634644592949, 49.9780790148648, 100.90690431676396, 20.31051930689077, 5.810512232523713, 13.059029218402266, 11.206448729414094, 77.89439799815345, 85.59221839865789, 9.848309692931194, 14.53433616325414, 11.428267527720854, 74.31375512695273, 11.013745253508091, 5.926257119058775, 7.123792476536585, 25.599181920470564, 72.42494798794195, 19.619152597792876, 17.60582354814521, 18.1992272109666, 26.061273088897003, 53.78073066728602, 9.11340038893413, 22.334110635661713, 30.05037708964923, 9.797078143768259, 8.178200495677077, 51.84489635374642, ...])
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);
([7118265.625, 7119238.202848222, 7119333.6565524405, 7119415.979996225, 7119689.0625, 7122841.875630068, 7144115.625, 7151233.681298412, 7152175.290767774, 7152238.87268487, 7152935.7780408645, 7154155.883723197, 7154975.53347423, 7157221.488454798, 7159157.363203467, 7161762.466295201, 7161814.9255578825, 7161852.284480692, 7163064.618187501, 7163896.535749728, 7167175.0596109275, 7168304.836164867, 7169500.671693537, 7169603.125, 7169649.237537343, 7169666.290024146, 7169992.800138057, 7170007.541135008, 7170013.53400208, 7170262.5, 7170331.310227725, 7170668.54202983, 7171172.021021823, 7171475.054669337, 7174257.586630715, 7175769.38983435, 7175770.022125158, 7175772.608914403, 7175836.783785085, 7180459.375, 7181446.730225514, 7189639.3209383255, 7190257.288570732, 7190745.763962965, 7196051.5625, 7216730.896828776, 7251710.9375, 7252417.611306774, 7253401.416019167, 7286038.567404351, 7286233.767925462, 7288381.178462876, 7313963.291845653, 7314305.332260468, 7678318.453053382, 7688735.1950848615, 8648645.3125, 8707615.526944928, 8716856.758684533, 8766209.31777781, 8766810.913824981, 8773589.617316056, 8783485.9375, 8791344.653122649, 8793434.166411538, 8796380.491176348, 8822885.619075298, 8828544.176997567, 8839559.114459772, 8842893.75, 8844403.490207776, 8844946.026353046, 8846542.39338573, 8847200.700963957, 8848739.578959333, 8866938.218544299, 8868123.319875855, 8872013.388223624, 8872381.25, 8875945.43284066, 8885236.482408581, 8888977.449994069, 8893320.818798756, 8898250.0, 8898788.738610143, 8899473.365310052, 8910434.375, 8916080.710006587, 8920440.268306099, 8920456.243114121, 8924443.75, 8925944.32073956, 8926878.735553294, 8930298.4375, 8931190.262847388, 8931672.914231041, 8932013.229568165, 8932426.816944009, 8932839.306993967, 8933034.375, 8933727.08764367, 8933901.943776127, 8934399.711008348, 8934413.59907763, 8935346.153304344, 8935863.234648045, 8942710.095900407, 8963045.596426267, 8973242.408583902, 8973301.925808193, 8989539.0625, 8993599.278277235, 8994878.763088264, 8995419.856290504, 8997285.507306626, 8997388.989746276, 8999108.648935046, 9000346.700389715, 9003040.351301534, 9003057.8125, 9005744.731592301, 9007951.5625, 9009309.882168215, 9009883.06220802, 9010531.25, 9011493.449898385, 9012207.043159584, 9012474.884986145, 9012895.611671261, 9013441.45672097, 9013968.792604866, 9014014.0625, 9014318.152238104, 9015481.25, 9040484.832771616, 9040498.91605048, 9041445.3125, 9042344.990058044, 9043235.026208475, 9044320.258628909, 9045738.684106728, 9047154.708400322, 9053921.594469907, 9054185.525332633, 9062342.131226145, 9080274.722406097, 9091474.580773888, 9092441.391676245, 9093424.332098193, 9093439.0625, 9094109.375, 9094596.875, 9115705.18812621, 9117109.375, 9119849.972404648, 9125234.366917841, 9125646.875, 9126309.375, 9126676.591026736, 9127209.375, 9128826.98159758, 9130551.963202266, 9131304.6875, 9132105.692892518, 9132625.0, 9132750.71075831, 9133904.6875, 9134160.246498449, 9134616.524103802, 9135989.425274087, 9136134.08992014, 9136274.771460123, 9136326.854597671, 9137139.0625, 9137332.8125, 9145346.685919318, 9148027.93934582, 9148893.098046271, 9149183.685361514, 9151164.409563866, 9151985.81701475, 9152998.4375, 9153813.033894971, 9155858.86552203, 9157271.364704445, 9157404.6875, 9159212.635937696, 9159676.353312943, 9160539.0625, 9162630.80413792, 9164458.533883618, 9166983.059656214, 9167308.033164574, 9167700.038862482, 9168071.875, 9169130.055330917, 9169140.51864855, 9169287.285961248, 9170175.0, 9170617.831252046, 9171272.35972688, 9171492.202948343, 9171531.826665852, 9172250.0, 9172296.875, 9173127.826635767, 9173157.553379279, 9173212.887816017, 9173578.96898692, 9174896.497403175, 9175249.722009411, 9175757.998102825, 9178506.25, 9179484.748954706, 9183021.339296784, 9184154.316825105, 9188918.75, 9189988.65169519, 9190162.5, 9193131.25, 9193380.40669406, 9193892.900347361, 9193933.419731809, 9194177.395804591, 9195695.180442097, 9195798.4375, 9195806.60154295, 9196242.1875, 9196373.643132871, 9196831.25, 9197673.695012728, 9197969.329218853, 9200807.189941483, 9204261.93313182, 9204802.772350807, 9205329.391484631, 9207059.375, 9207112.11876235, 9208803.987445837, 9212516.349713923, 9219764.286546798, 9219774.693207685, 9219803.822151337, 9222604.950215846, 9225918.795433007, 9229778.862081656, 9253585.585750742, 9256613.684481196, 9258027.787090493, 9260190.493207302, 9260355.884708345, 9261248.948134439, 9261538.340594742, 9262253.125, 9262956.046264105, 9264567.1875, 9264597.591582766, 9267276.5625, 9267515.428422563, 9267589.02154837, 9267589.682360228, 9267652.713871924, 9267840.131546699, 9267918.642817786, 9268090.632152028, 9268241.449162321, 9268392.1875, 9268591.862171365, 9268759.261456532, 9269506.321870595, 9269906.25, 9269926.35360789, 9270026.940531798, 9270040.625, 9270349.636291577, 9270768.083453987, 9270947.10332918, 9271564.538789105, 9271610.9375, 9271793.62397399, 9272022.07146158, 9272157.8125, 9273812.5, 9273906.840970706, 9274524.368721053, 9276637.5, 9276645.129409866, 9277742.347793063, 9277865.275665002, 9281962.35323532, 9283735.816782508, 9283885.9375, 9285945.248348169, 9291817.1875, 9291821.875, 9302925.99569314, 9303937.302714776, 9318773.146738514, 9335990.422334863, 9337479.432007313, 9342782.8125, 9346935.275521046, 9347914.609182741, 9350441.314358197, 9351275.960161518, 9353153.590231491, 9353779.740715107, 9355348.40138618, 9356306.894711494, 9360553.235751072, 9361066.670910759, 9362243.47806534, 9362296.322483428, 9364664.962141942, 9364727.608625809, 9365542.1875, 9365993.211233575, 9367324.734771155, 9375978.125, 9376067.1875, 9377740.372940058, 9380983.932310041, 9381286.771670822, 9381481.25, 9389433.994550018, 9389450.280934509, 9393650.699228153, 9395490.625, 9408896.052503044, 9411417.389475131, 9411803.108705265, 9417682.8125, 9425257.115251238, 9448894.463620335, 9449838.608026931, 9452305.562199201, 9453293.491226094, 9453348.857921999, 9454132.8125, 9470727.295017762, 9518279.972621623, 9528650.59716491, 9529766.1143855, 9542520.3125, 9547857.451631464, 9547861.52314115, 9550211.744707935, 9552030.828051386, 9555404.323153634, 9556004.6875, 9559509.054032115, 9564802.806820434, 9577763.10597496, 9579838.758869119, 9581758.440529346, 9585327.830030793, 9604681.567389373, 9614407.8125, 9629311.649026934, 9629752.16146038, 9631662.184370598, 9632247.206092956, 9638629.18356301, 9640825.0, 9642144.147182204, 9642938.225020051, 9646098.08215409, 9646350.0, 9647790.533056747, 9647803.125, 9648263.233980779, 9648333.916650506, 9648532.434521416, 9648691.220520567, 9648994.95661623, 9649066.409507383, 9649113.007005993, 9649141.744484497, 9649686.371652544, 9649723.4375, 9649891.02451154, 9650529.6875, 9650887.45358896, 9651893.866299879, 9652070.320204278, 9652465.625, 9655303.993466552, 9658296.87239597, 9659220.792203384, 9692225.763969563, 9705896.839897146, 9706167.1875, 9706468.081600094, 9706874.904401334, 9707071.39971903, 9707189.0625, 9708271.875, 9723650.0, 9734240.30810689, 9734241.843185727, 9738856.99580355, 9740381.25, 9743928.125, 9744019.347370854, 9744827.331047134, 9748226.44710257, 9748771.875, 9749675.0, 9749760.651739616, 9753384.370435435, 9753660.9123236, 9756233.76479879, 9758594.363871403, 9764065.29920183, 9766887.313304562, 9775590.765392082, 9775658.639873983, 9775712.482870644, 9778144.827156983, 9781207.941566288, 9782104.6875, 9785910.789479595, 9789876.311899465, 9790113.304086378, 9791493.37239671, 9811268.711808393, 9815849.778242152, 9815860.31879472, 9819727.949103272, 9821253.342344288, 9821274.06003821, 9822445.073418906, 9826958.300739042, 9828212.5, 9828250.680497501, 9828762.5, 9829354.749691952, 9829457.847728863, 9829735.394853879, 9831532.407891497, 9831790.55772628, 9832131.257056545, 9832335.625766864, 9832354.318080537, 9832633.831468942, 9834535.747821303, 9834690.481330385, 9834715.606537715, 9835982.8125, 9836680.118517205, 9837323.4375, 9851572.363916926, 9851710.460770378, 9852994.87119049, 9853219.068453047, 9855317.084759835, 9869178.125, 9882487.407057378, 9895649.852721918, 9899173.4375, 9917909.00431177, 9920491.320095275, 9928298.004658416, 9928921.875, 9929575.464413261, 9932038.464883795, 9932246.442379408, 9940541.862521546, 9940572.769502228, 9946761.895825267, 9954947.310928557, 9964968.766829405, 9965552.931024538, 9988860.140491746, 10001334.99203771, 10005852.541998835, 10022482.317467077, 10022988.362120071, 10032888.601784842, 10041766.65435465, 10053550.0, 10059064.0625, 10090639.789051414, 10109698.22311756, 10109825.990262961, 10127547.17922127, 10140416.569404392, 10140714.735707413, 10142475.0, 10176466.078921454, 10176999.495237991, 10185262.609837819, 10185905.030965682, 10233421.767487844, 10272079.6875, 10274667.19167548, 10276554.6875, 10297014.551806899, 10305440.9017515, 10319974.122717505, 10333304.6875, 10435832.8125, 10435844.889692638, 10481424.761698583, 10501401.496329853, 10530854.253293093, 10532562.92698324, 10579836.812403752, 10604106.30328759, 10608787.5, 10617496.875, 10661516.519846478, 10668170.3125, 10669082.8125, 10676880.327748794, 10702458.520207439, 10783343.050502686, 10798491.238527928, 10818453.98444451, 10866939.821616845, 10882404.6875, 10901171.206823735, 10968530.678211518, 10975607.8125, 11033880.337966312, 11033925.055164732, 11052493.894903839, 11072259.676723605, 11098381.61242962, 11105624.530508807, 11144150.0, 11144179.6875, 11145332.804854024, 11180554.897335067, 11186057.1081823, 11208632.8125, 11208852.53578779, 11231540.625, 11236464.96642258, 11245547.183013566, 11262915.580133691, 11266314.357579304, 11427664.956158144, 11427670.087071154, 11523103.658393117, 11525439.371265652, 11533446.185833799, 11693495.069720227, 11703796.378610509, 11719632.1433003, 11723122.6248624, 11768917.15345761, 11822923.4375, 11825491.300324973, 11832944.58551256, 11903983.790294543, 11944320.3125, 11949188.387445536, 11983610.9375, 12049817.736067217, 12063485.63067429, 12065235.557894487, 12091336.952239648, 12096726.610958671, 12110982.8125, 12120412.5, 12139179.6875, 12157432.8125, 12173863.13356792, 12173867.116347203, 12186204.204646517, 12192252.720585639, 12201424.90700988, 12210475.06178653, 12269992.936344573, 12288715.139646862, 12305451.5625, 12311099.536506921, 12325960.192202399, 12330428.125, 12369207.075293195, 12417692.668076815, 12423424.55331036, 12423442.750292763, 12424159.268894106, 12456466.372428525, 12481993.998077696, 12484382.185624832, 12561894.995036954, 12561919.406172559, 12566662.498470142, 12672090.625, 12675332.8125, 12683187.5, 12748701.5625, 12753542.660695398, 12761901.22141186, 12785000.834585516, 12786757.475689959, 12791376.247609397, 12879749.659129104, 12895151.575628903, 13033970.98613638, 13056677.535691539, 13227918.319357583, 13503951.24459847, 15373596.304320095, 15412706.557478622, 15423285.9375, 15460611.234167498, 15472915.487351885, 15495136.938718637, 15512686.464841943, 15519825.895663464, 15519896.567928517, 15525978.58756452, 15526961.871046623, 15531991.370915763, 15540875.467244359, 15545367.896247374, 15545757.523374284, 15552429.6875, 15555033.68582217, 15556870.859631542, 15557021.875, 15557379.603792146, 15558687.11766007, 15561923.623111514, 15562511.258323548, 15565801.5625, 15568502.318712864, 15569970.3125, 15570735.9375, 15571607.725902423, 15571802.740098814, 15571839.0625, 15572047.88289541, 15572101.132808391, 15572505.497125745, 15572829.6875, 15572871.049630702, 15573273.4375, 15574459.375, 15574880.838543504, 15574891.612477804, 15575081.123123232, 15575239.808239091, 15575353.94870593, 15575435.9375, 15575751.690523135, 15577128.125, 15577339.91587015, 15577886.062757272, 15578192.825172415, 15578409.375, 15579079.6875, 15579456.70991912, 15579704.309455644, 15581201.396914264, 15581367.491329113, 15581811.835391186, 15581881.25, 15581907.060386755, 15581977.21471224, 15583618.242060214, 15583901.5625, 15585017.23562343, 15585427.674577551, 15585842.118927939, 15585944.183663173, 15586331.623880934, 15586460.099170009, 15588232.141708646, 15589014.0625, 15590143.091976639, 15591245.286598194, 15592820.513375454, 15595563.143279424, 15595771.770125167, 15596037.10639912, 15598401.5625, 15599242.1875, 15600406.25, 15600697.174173633, 15600760.128196765, 15602275.521023534, 15603570.3125, 15605756.96709617, 15610381.65009145, 15611320.474107472, 15611326.644265786, 15611987.285003249, 15612179.072809298, 15612212.499189839, 15612242.543499898, 15612674.974297125, 15613226.5625, 15615204.194036879, 15615304.904237933, 15616078.967749799, 15624262.620050423, 15627687.433381613, 15629321.528633196, 15629400.453067094, 15629424.88043879, 15629748.185152251, 15629754.375654666, 15629761.9928522, 15629870.975619858, 15631015.625, 15632736.650960015, 15633418.007615974, 15633622.022720426, 15633871.875, 15633879.6875, 15635169.924128449, 15635172.713703543, 15635429.471309057, 15635648.027218264, 15635832.656695755, 15636293.75, 15636649.373238126, 15636830.620022204, 15636846.875, 15636948.88811673, 15637045.353017895, 15637049.800920518, 15637508.80743661, 15637663.625001097, 15637681.728756957, 15637760.572594844, 15637769.8562788, 15637804.295884384, 15638311.074777577, 15638606.25, 15638663.753938815, 15638755.404286698, 15639246.151300544, 15639872.959192334, 15639960.9375, 15640341.532590555, 15640573.4375, 15640740.502639359, 15640754.786133789, 15640871.12006129, 15640967.754234772, 15641037.5, 15641050.831812268, 15642006.000353742, 15642371.875, 15643895.73507776, 15644329.6875, 15645778.552014558, 15646138.475627482, 15646249.621308016, 15647629.254363872, 15648395.3125, 15648424.365146914, 15650585.94695008, 15650916.86446717, 15651442.1875, 15651569.592952516, 15651756.812711533, 15651777.191807197, 15651802.519724935, 15652172.16133673, 15652224.27451123, 15652379.377536064, 15653228.340283802, 15653799.680646433, 15653893.75, 15653995.14768219, 15654243.511079703, 15654429.6875, 15654566.609331395, 15654598.4375, 15654616.625684673, 15654619.820457432, 15655581.054869786, 15655682.8125, 15655767.922984688, 15655806.960909018, 15656485.548790567, 15656588.251861647, 15656969.545278883, 15657307.952905992, 15657809.763726017, 15657818.564340008, 15657888.551469268, 15658048.805393673, 15658302.990157254, 15658446.817873353, 15658568.75, 15658829.111816548, 15658856.70015536, 15659970.3125, 15659971.251173962, 15660818.12407693, 15661486.47884291, 15661563.645042703, 15661707.8125, 15662212.046814805, 15662240.625, 15662343.049367853, 15662361.963526694, 15663367.924372384, 15663472.903059203, 15663825.988411846, 15663951.485401614, 15663965.188958544, 15663990.345557619, 15664060.210257554, 15664075.0, 15664108.098462066, 15664348.995349195, 15664591.348134244, 15664636.911607042, 15664879.95504374, 15664887.325129379, 15665118.122013435, 15665222.786504393, 15665337.237692304, 15665377.54235163, 15665559.298850138, 15665613.831382396, 15665732.8125, 15665775.94333785, 15665992.311866168, 15666134.375, 15666361.102627931, 15666594.298404526, 15666623.4375, 15666795.3125, 15667274.91607318, 15667287.382283106, 15667420.246912163, 15667420.3125, 15667513.445323663, 15667853.125, 15667898.111059973, 15668065.023065574, 15668220.3125, 15668248.286075076, 15668574.874796985, 15668691.021405937, 15669357.65891287, 15669414.630277062, 15669853.663327023, 15670048.545060042, 15670059.013055788, 15670323.4375, 15670848.677807521, 15670943.75, 15671016.766307041, 15671492.745190168, 15671602.430862688, 15671606.25, 15671674.09648064, 15671740.611053346, 15672260.9375, 15672265.123280244, 15672503.125, 15673153.787102234, 15673574.411065688, 15673612.5, 15673707.8125, 15673816.450409278, 15673943.2782761, 15674054.812548356, 15674064.800768156, 15674334.541767932, 15674584.196455663, 15674606.403027436, 15674690.43178003, 15674980.353152301, 15675048.643523289, 15675277.937796082, 15675301.578134637, 15675608.405432492, 15675617.573913775, 15675884.541695787, 15676077.072325641, 15676304.6875, 15676437.5, 15676621.503949648, 15676630.544732926, 15676851.5625, 15676891.615525616, 15676901.018711565, 15676979.472040651, 15676989.87509484, 15677185.9375, 15677214.0625, 15677710.474348966, 15677812.628489634, 15678054.202352617, 15678350.272395432, 15678459.61226869, 15678520.8101455, 15678734.266635297, 15678829.317575885, 15678976.449769584, 15679065.625, 15679609.814638693, 15679673.4375, 15679906.043110723, 15679951.143391768, 15680353.125, 15680529.021648284, 15680661.229954561, 15680690.478897091, 15680746.846307466, 15680912.32818192, 15680983.970355362, 15680998.08540159, 15681024.41770719, 15681050.15060778, 15681126.049298443, 15681233.288725616, 15681628.92457441, 15681776.5625, 15681944.708670072, 15682073.475575466, 15682085.415930256, 15682146.253948472, 15682325.786311457, 15682348.434300995, 15682644.590357745, 15682653.591075337, 15682671.875, 15682748.690001834, 15682792.024390532, 15682798.033193763, 15682873.709556643, 15683606.264068805, 15683704.423166541, 15683858.0443718, 15683915.398668157, 15684261.982821025, 15684298.64976598, 15684512.5, 15684912.180023301, 15685039.86091822, 15685440.5299784, 15685512.910765007, 15685560.706939938, 15685564.768100057, 15686031.306672052, 15686052.019345846, 15686268.00236328, 15686748.4375, 15686754.02700268, 15686829.241501523, 15686831.25, 15686873.434778493, 15687224.664917344, 15687390.625, 15687804.197014429, 15688166.708043642, 15688231.257966435, 15688592.1875, 15688700.602523351, 15688773.921249492, 15688775.357893873, 15688916.956242545, 15689102.37488906, 15689224.758829072, 15689434.375, 15689446.078558004, 15689536.30443813, 15689685.507505275, 15689815.610904599, 15689863.845936887, 15689865.940236084, 15690190.648845032, 15690220.265518997, 15690275.835268835, 15690403.174799243, 15690665.625, 15690714.185178759, 15690766.178991687, 15690865.51390806, 15690874.262200978, 15691060.50989243, 15691134.300846612, 15691334.222769545, 15691359.383897392, 15691416.930901492, 15691467.1875, 15691546.498672124, 15691563.058662035, 15691597.907529833, 15691601.424145468, 15691645.3125, 15692201.292912435, 15692316.158087857, 15692495.8640354, 15692766.128766904, 15692856.039276486, 15692876.5625, ...], [93.63403420202364, 54.49832765197184, 28.282641341897097, 63.500929866327915, 68.49063142692745, 94.62884918413991, 42.03070510004014, 117.85454486414932, 18.327139077061474, 5.03835963630791, 5.696684205440153, 154.10775926098773, 12.078274141000874, 109.43536648086994, 24.471273922905745, 14.814580093861371, 19.710297559641734, 11.752805940470228, 108.09334763091185, 29.349821299354815, 15.173692756896235, 7.657907036573282, 12.36959592778576, 43.371551509063366, 8.76039740485785, 75.57867803758482, 36.89140665966143, 24.12353782059664, 15.860158198579038, 54.159890069841424, 24.567631818823624, 31.319717437553603, 15.52890317789703, 15.154059602445162, 18.353627469173865, 24.745532596539743, 138.47074936279526, 62.852786735540036, 29.469207842581454, 55.70089560609215, 67.13139158376666, 46.23735240541546, 10.396896725137392, 9.744728369769767, 28.543346880987585, 42.95043956926842, 40.56872406046311, 36.32094373758274, 25.932066355639886, 21.542163664302986, 80.8967691510325, 14.675678135267857, 67.26107001115908, 18.140286428816868, 34.09474089779992, 51.97600401149129, 38.368522454454215, 116.80387776571582, 41.741924816565536, 11.039427481723584, 5.397569729356502, 12.12186869931031, 37.9701370710413, 27.135813176603634, 24.993118855355902, 7.350054421658101, 23.518210477173675, 11.867871946168922, 31.963202077867557, 51.32948315598983, 16.543826252586353, 12.462868834089182, 11.465527342005263, 26.39251978635617, 9.809934855989267, 6.166150912988034, 26.397993866763628, 19.914555256694594, 31.4414281911959, 18.760063252671756, 18.816356698663427, 70.71827674452628, 9.799637941243013, 59.91672509983342, 23.450304173660662, 11.016713421048246, 61.74840647589785, 17.250645743891013, 23.05259747145942, 40.780099804715, 75.35913872822091, 23.105169369175005, 5.648738621511735, 96.72112771220748, 34.168209841465064, 14.697256365005833, 32.39672238479591, 23.29676576650232, 62.48519869215766, 97.50831466882549, 12.061389647034844, 8.49904736447797, 23.89238394631229, 49.2057486450546, 89.23564018641463, 11.487063134244341, 27.892428750203607, 34.37449621880467, 50.80129002562288, 7.220345489967953, 64.65477622145814, 172.78510106814934, 5.180493505108587, 6.041908429783785, 71.284815432492, 27.16380547027592, 10.155315182954524, 6.245386828342327, 13.99172764034553, 33.15186921844199, 8.884190049332728, 55.495295544870714, 17.305502340784766, 47.350649499946584, 31.20171665474371, 7.0447370252156825, 38.63244285346596, 107.38646593334607, 16.21919095489798, 12.735515863318172, 11.1949604203841, 44.323573611115584, 50.533466031702204, 34.30005250001153, 38.037097237525316, 19.46910935951705, 37.713668427703304, 17.475965496765127, 18.182051103974302, 76.02495955781619, 78.82428977908431, 9.349138322772207, 63.30425833325914, 13.4649629731522, 11.04087181659741, 9.107216621734645, 50.35437573287764, 6.36917844365351, 26.71357344532618, 39.45391930203815, 31.16844765488717, 32.04189836393585, 26.81721932208303, 65.28202793328424, 27.990153939427163, 69.76478205625423, 35.310904927729595, 35.20501582014393, 7.128970713551159, 55.26026474556241, 31.25721727016059, 30.00680104767046, 32.40143521709552, 53.1658922221892, 43.5172374537295, 90.80290714751153, 62.95664322089712, 25.286708966800337, 12.988006432440194, 45.35357914919124, 9.101449240408428, 7.522618558536605, 18.416364169080232, 83.79733058957257, 75.20102297151718, 5.694829159268138, 9.17920528704002, 25.509113563588297, 21.045163430655528, 17.76165922743011, 53.738178120528644, 78.5459939511149, 17.45966061784217, 7.428807082301028, 39.154123162531135, 41.930703249167536, 9.449053478146272, 24.98446635740744, 58.39353175395259, 10.495655431542572, 30.28888129045663, 34.765007653097776, 15.85502867137219, 127.01911042924607, 45.24308354303073, 8.49116683016327, 9.243067344884214, 124.50263701127682, 48.41502296474674, 53.720084398320196, 17.16659253966185, 43.958475462698125, 12.167012454357693, 62.33966518482497, 74.00136185994296, 23.7716588210575, 8.154143908331442, 16.65908268085082, 19.55904061683641, 13.674264934711312, 10.719318790454079, 62.969152343320914, 34.3946995118915, 16.790673646133236, 21.144184804986544, 22.88808173770732, 40.959433644080164, 7.0174943978550575, 33.09591365645506, 96.55955619076778, 84.31852623825505, 22.348360871000175, 66.34206581811623, 12.81723415822865, 10.927327629682976, 97.5672486564388, 5.729502468633168, 52.69628454818772, 48.877193869572885, 65.5470506586348, 7.190830192254847, 37.1330761929907, 21.172752198424103, 147.71027534807504, 20.793829691964127, 91.13064857112343, 40.53351853096979, 13.663518502570058, 45.23214868889155, 10.029878204864156, 53.86273706321614, 20.340310411222397, 18.487106259015377, 6.115852192391817, 26.666708925680048, 27.206518974519234, 82.26502235554509, 32.69734831343969, 7.48542891479989, 94.27022910790203, 140.44967271317554, 7.262478915682602, 16.437514391158558, 29.984938975406582, 25.063529855978334, 92.81338186508987, 38.99410138162088, 43.940310712782626, 57.11657276852941, 111.55233801702666, 17.981341948074355, 60.40508349140534, 22.80382158375662, 31.973446594490767, 46.22076044180538, 12.717483711010606, 32.00482937370426, 38.562267415772666, 42.70925920181436, 76.54206147913924, 66.09484765213871, 24.988728810230302, 24.375856621958604, 60.02017958559456, 118.35059969109973, 61.3511222762198, 6.809963225009473, 63.08679366094833, 30.43986986185211, 129.25232993995104, 15.747219482115737, 57.79988436199489, 45.651441420482506, 34.10026405945099, 6.643697766495033, 84.74862759781723, 98.28687462657005, 49.210764560291864, 34.994847481884676, 10.905799911679251, 84.05149776651119, 44.980925278535175, 59.030896624987236, 150.74979762328218, 30.373158878094774, 7.4103382870978995, 7.533408200595679, 23.86947257469177, 52.452499445130464, 24.3364113605353, 66.00354485391534, 123.42154281374087, 28.293357334041957, 18.43441756402903, 30.244954294825874, 11.942094777166336, 15.148295425846852, 63.53192582270752, 9.943326355990092, 78.40480899365056, 51.45226479188239, 7.507758126822879, 150.81066811911728, 116.93746706670385, 8.929877684292007, 52.30991694520384, 21.114908976897436, 23.446166433197448, 48.717822647207605, 75.31242317105658, 14.060579707574579, 8.983179199191255, 19.482340881553124, 38.26354651023059, 130.25086051526253, 34.29603921618941, 12.430268619357646, 55.59500231276837, 32.004364024921955, 11.458797948472084, 64.21971255437582, 57.45825892055848, 19.727886603267645, 8.703811309711142, 94.8642010946629, 65.20117984424334, 63.11344009578141, 61.752423117907405, 49.4771638448933, 37.672144586409885, 22.485433013915383, 136.1570257173636, 17.204923739501364, 144.24868929655383, 19.036614128388077, 17.768791412402358, 32.71766956951446, 89.89439847194637, 10.60227118975212, 37.71640884645427, 140.17821134576465, 19.110642123604723, 27.373236268475004, 8.132283865484714, 12.757711536462947, 13.924989551255814, 109.85538593375378, 80.42542590595932, 97.49464068277693, 12.213617896706067, 141.24675276708209, 8.469785271169231, 103.55599185134179, 30.529475092355444, 16.707471423357834, 61.31849121494807, 9.047986482885783, 45.541361636480865, 26.829882790981472, 68.44997875835536, 59.5069754390325, 24.517690651268385, 10.584185112243443, 17.82947404548985, 70.63937371628458, 83.15096338172103, 17.30457771540114, 65.74652752124605, 16.902241080814704, 30.590723810331724, 7.754421192231545, 52.527360170781044, 49.477486763614834, 19.154059512418808, 7.123478351472826, 52.28557110283556, 8.80625607070212, 20.144143065498007, 5.306138564593218, 51.60874390567375, 5.811387512738934, 30.04689243275827, 99.93526353138283, 35.00273169380969, 10.458063524518941, 91.7549327821117, 92.68711541748507, 107.06056255534995, 7.492507717616638, 147.77181130066194, 6.3662596007659165, 44.897078054898735, 67.86513334647613, 7.287865171988044, 12.587150024408954, 48.116974932448166, 34.53510013212965, 148.86301100739468, 23.93435327686818, 40.233107414696875, 7.114849236898948, 6.3955099914645945, 46.208237141612855, 8.1214900771498, 10.84791233579453, 23.268192607424314, 12.725136086618873, 28.190282042273868, 21.788593506456753, 6.283643850210675, 123.8308857444579, 45.85182111239202, 19.841960893158777, 22.217391682984122, 18.588105553171275, 36.52282177782571, 49.34570660732507, 27.26024226907193, 28.862045176700924, 87.16468371907075, 6.894499178142515, 14.10235052886882, 41.855766037599835, 32.49384253462351, 9.981714480860548, 29.86779945429358, 15.18397563569248, 9.361369874075836, 27.900955644096957, 92.2309468680331, 7.579085812048346, 5.614434644576035, 13.873038390549672, 22.902736242709715, 8.910540104619507, 7.536045169275083, 10.910329835011716, 14.871603690712554, 29.046684305043076, 22.502691829643872, 66.60091241126703, 6.566565348850382, 13.390233172632062, 8.066223655780206, 42.34048306599006, 26.646262137533324, 35.97798073841539, 26.81275991248374, 31.558294169755477, 59.1191805096598, 13.694724903553675, 5.181872321275266, 133.6155852255474, 49.874110746526526, 24.905352170458826, 94.24732387993382, 62.044504903548294, 51.9115815360835, 7.962325342156813, 6.193768244082178, 58.230314034112965, 30.81705996657491, 8.18659614078788, 19.749224628714465, 70.24533381413889, 63.66413678570788, 59.01577433284221, 68.68861342048197, 21.894148063121385, 8.917916194667619, 39.5273815719472, 82.66574628072378, 10.031897524326896, 25.30248008715607, 29.151558025693312, 9.602605967583523, 71.08510295283688, 16.59772443744345, 33.39974845648164, 17.008926849595554, 13.256698416179951, 11.3038430694854, 140.01216202228906, 110.80824026031203, 36.81231628267087, 31.422823996745052, 30.259945055610366, 83.1471560821739, 23.939001418743697, 18.4065820393785, 64.50437832769705, 40.132861991391074, 22.29932332601656, 8.164455444472997, 27.28066414391464, 54.561462998006675, 8.52606231373824, 35.36850956440598, 15.14858257981782, 42.39861395630423, 62.705615204559706, 19.969214947658713, 47.25474970654244, 32.623809530713366, 43.62576986207358, 45.60605593907708, 28.8786337832548, 7.841311520802114, 42.438059783651475, 18.92049374887158, 101.24790327475527, 12.887899735708917, 74.02496891596353, 55.6924280130855, 43.40926497040371, 8.31596639427574, 56.45916865551378, 47.196924015080185, 11.745762965846446, 15.689903131006268, 31.263650163973, 62.651257441891744, 28.37456784517161, 11.47233631581396, 13.503992820871382, 58.10966735990891, 32.792415926516455, 76.14076320559565, 51.634735444696915, 7.71857402198398, 11.058294643746331, 6.823882277537553, 44.895592309674434, 49.301596109863375, 43.699854938427386, 5.5482559441027, 28.69998564622999, 7.517726814670047, 10.431372242855005, 19.956419755894522, 5.656920468135814, 52.16030236385623, 44.260274253858746, 23.578502235504384, 35.82765019756705, 8.881529658275728, 75.53126445004605, 25.782944524800016, 75.77874117130214, 33.81415393164173, 78.22275440107705, 49.82645934725181, 12.887979601715472, 144.48256512546573, 39.31769727972122, 44.40771108953883, 35.59198779114901, 31.35729473545456, 43.464273538860034, 16.445477878875828, 48.263305733368114, 64.45116528303292, 73.79681974160735, 7.137788730118124, 5.3682538090418355, 8.045573619489522, 64.85948217170991, 21.8651740533183, 10.13332900782954, 57.27870766416291, 19.41363662156479, 59.48724163254786, 49.54349955756682, 12.138288878932991, 23.32961438875706, 18.04497856376776, 15.979623959848412, 32.07546669820003, 10.66527937700483, 15.74503864223558, 14.935681522544204, 73.28257629240132, 69.03353532163975, 57.068781255857886, 32.98580808866067, 68.08632936911329, 68.85270023636795, 19.485565528198126, 19.41568191394403, 74.47495337880935, 19.826137337661166, 13.857231202044016, 78.58854750022437, 77.92186333063796, 107.40881849832753, 23.52473637327845, 32.48837718424456, 23.509838030325223, 31.982169135599932, 5.547654095458736, 14.4415909224045, 6.198796730936586, 17.421525017520224, 52.34205882290305, 29.208926483449865, 103.08655375571622, 10.268926945084198, 81.24798787287443, 5.73715426996293, 12.45145803338183, 13.943231726375268, 30.24851402792405, 6.384223817876328, 21.66107918201635, 45.85276458012147, 5.529031680201074, 13.660269837731745, 8.387232883471286, 5.13741850203176, 117.07897136724056, 12.558792077425737, 49.31604882878465, 62.917344343488494, 26.92191881214261, 5.786039405839942, 65.13715588122997, 59.64010873124709, 22.22435761249269, 45.04922930038012, 35.50164211469526, 56.72046793547904, 36.839928846968554, 97.85489150108067, 7.017335648998964, 10.333958574054554, 68.47853051326332, 6.16924177616347, 7.931053116092283, 29.966044786981442, 6.5073490067989415, 46.04935049631808, 6.629736966637775, 21.78561694799864, 12.035559636479498, 40.60137776144858, 41.539879302376434, 5.98048443330134, 21.9526575829062, 25.63427227148214, 14.820609816423676, 5.319652330423546, 46.13486103748546, 5.268406920666848, 49.196953638486725, 13.304353301903438, 50.315757659460786, 11.203769280437758, 22.00234225153765, 65.59455679363498, 38.756224230342745, 5.635068491350526, 6.363243193907907, 8.82204910297337, 34.148845917898306, 10.23445515144001, 6.085409792400443, 11.456907901768176, 6.35204345195161, 7.565741612340606, 22.624480214434687, 49.940443729801444, 49.40598287287365, 35.89545662772902, 43.79776945801528, 6.612019765893403, 21.922484603362136, 57.29836064361732, 12.470133659891795, 22.860392655939386, 9.47189482602451, 16.328824852696528, 8.176064220839594, 6.968728801240337, 35.26205985949612, 5.971019558506893, 28.026092320347608, 58.730205250403635, 15.552801262724476, 41.62738498177339, 8.788910597798935, 11.32068539386923, 33.48903811219849, 48.98597212055164, 35.142534154488544, 26.366088941044765, 5.388913852424751, 28.961608930270465, 21.422092234360807, 61.68731583437125, 57.259174084668125, 10.017541837164318, 28.74912899998258, 13.575912282868408, 54.22557922870748, 77.4256401996129, 9.023270795535, 19.517661791799455, 8.175467645328546, 13.578668232592365, 14.379147074699455, 47.463498575494135, 29.12505421084404, 7.979345190834178, 40.55335388967812, 28.78176069566276, 10.988648430632816, 19.20165182472545, 33.50860726504509, 22.140094018369584, 24.197437149210792, 42.527068927047104, 8.059206551804477, 5.906011729339294, 32.40677992735682, 72.50295463442076, 23.641996914468024, 73.94350930658268, 19.518419459468486, 45.40941744977324, 64.65012119721413, 43.70840344098539, 49.98370282205571, 77.66260866286304, 21.712149403651576, 74.1093756883831, 17.35191736373489, 61.41547882415343, 12.735734142573618, 60.26223400482127, 37.08592780193459, 41.397586441804606, 61.46935479263918, 80.00453678059115, 20.668168509346955, 99.65051757575807, 22.18708303698783, 35.97166544897081, 25.490693355289558, 11.142510081836797, 34.82930434316579, 41.14668671546045, 12.762453964851899, 35.732041898252106, 18.04121151942886, 54.3832426812628, 71.28593683221072, 5.37144509857907, 69.43565413239983, 100.77572111994925, 13.849608444738662, 32.35800917741977, 33.46481547610986, 35.38254669774694, 56.89432896863038, 10.330125414173526, 32.276541449588585, 44.69163155232204, 13.347892531505838, 18.04803451266011, 54.00165252479445, 12.511572087561563, 55.03796702709563, 13.64154172063336, 7.899864644615373, 21.8830140105986, 9.453014818138032, 62.01938010566987, 63.52768098099337, 21.383764052052086, 24.73470650104952, 9.219930515193898, 37.863169778984776, 66.8452433222875, 68.3434462369894, 38.95957672273465, 69.21431088259735, 37.88635747771552, 26.75404453856335, 9.835317019440136, 20.204360723818642, 53.41020646941612, 45.562156637001166, 80.3910154325867, 19.700771230243802, 62.670415200925746, 12.514716395288161, 40.25382261688442, 13.12761490499158, 86.6006434507101, 22.155763824914466, 24.01693726743007, 28.017045624719167, 42.228224915118275, 9.585500479634645, 5.743205271710279, 8.709970033379742, 36.35840695108422, 28.412526384238703, 33.36022220390778, 93.7350376667944, 109.72348892747547, 24.24445242086658, 7.405273700871901, 27.103988099713852, 5.389711519577672, 48.91439230186627, 13.011121837183527, 29.654623980083514, 29.545557967436064, 9.475043306739787, 49.57792787071515, 61.5700003768801, 32.01420894129329, 102.1391820826152, 33.546610453023646, 49.0381591266632, 68.36219499417633, 10.283007365531258, 85.36530601666837, 102.7370591830555, 6.971727776645121, 62.219486977894135, 13.404933686785878, 26.273687698485304, 5.974686728775307, 14.386730937104854, 17.660438900157608, 19.64070634671106, 6.099356395000053, 5.194297713946373, 58.089636713818045, 5.298568354326466, 51.79517790328004, 28.573943624958154, 5.743194605379154, 35.30052835491706, 57.79758228047619, 9.958570304493563, 7.598201193192202, 49.2668633480726, 12.955038232721677, 34.98039442161133, 18.253188671583395, 84.0049717828832, 66.9871814000249, 98.47451532783165, 128.54510418215816, 20.509080868635024, 25.218016742783536, 18.77174472110854, 15.61767831178117, 9.184862887036353, 61.49777239108442, 21.014903799142928, 24.850032097534573, 21.272818582316006, 25.307055323558522, 5.533839821365189, 9.888697518377885, 32.60057282170904, 11.398658369471928, 63.67027032706625, 76.3977343216966, 30.90476119957326, 12.32740784465453, 23.986250374173167, 30.231408028954366, 13.133154766036318, 54.86360210210522, 5.284477944068951, 19.316440066888433, 67.13269684019362, 60.06107655859718, 50.8079413724455, 6.5074235213084615, 10.445558614196857, 9.572862840744863, 14.371096874879376, 8.568523941694242, 12.028342817944463, 13.696993358212872, 26.47901046293129, 30.783838188486747, 52.608585153833594, 34.235071817030814, 86.00260047480492, 9.000499953664672, 55.28183510944697, 26.294382846773424, 58.12229487591966, 25.93804119939399, 27.969368224753953, 31.14604904295446, 26.04025748820513, 14.207270152332406, 13.10617773808691, 15.548406549643921, 21.362410808374708, 17.13149042452984, 7.920516620500615, 64.40269084535562, 34.96135351501801, 7.617067226572811, 71.29919425195894, 69.1536057554903, 5.316009921068386, 28.46196786389429, 8.787304043433156, 61.139593858004, 54.90456883057138, 52.65744451198782, 14.354239618958706, 53.65227333300662, 39.914554709337494, 7.125154835313464, 6.446437894106594, 22.971463419134196, 36.16903362463048, 6.035919210409122, 63.72399624377129, 62.678734026652755, 5.157975927482936, 26.756765220244457, 26.77722273365104, 9.704683954814243, 8.168303858584913, 10.008957526409095, 48.25867167195377, 17.024862755581307, 5.430566769448984, 72.4384062761014, 178.34053064295426, 5.2328318453047435, 45.25239613229111, 26.747296182924615, 58.25593885474204, 51.897772227251096, 13.352179566443105, 27.34608319466641, 78.03681743353407, 66.28213894939502, 42.302030909803214, 14.860062005762565, 16.50700026547367, 10.784503617845473, 11.107307365948074, 15.371780287476138, 43.52941651007562, 96.3876689881566, 26.26610961082272, 13.521952212280121, 6.086634644592949, 49.9780790148648, 100.90690431676396, 20.31051930689077, 5.810512232523713, 13.059029218402266, 11.206448729414094, 77.89439799815345, 85.59221839865789, 9.848309692931194, 14.53433616325414, 11.428267527720854, 74.31375512695273, 11.013745253508091, 5.926257119058775, 7.123792476536585, 25.599181920470564, 72.42494798794195, 19.619152597792876, 17.60582354814521, 18.1992272109666, 26.061273088897003, 53.78073066728602, 9.11340038893413, 22.334110635661713, 30.05037708964923, 9.797078143768259, 8.178200495677077, 51.84489635374642, ...])
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)