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 = 47270
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);
([3886516.5857592877, 3915059.375, 4012579.964078665, 4073967.1718105273, 4141618.3043125714, 4276350.187118473, 4276923.212093011, 4282064.0625, 4282099.194070748, 4285299.741063356, 4288205.39356049, 4291496.577961505, 4328030.659380638, 4331435.591527663, 4355718.75, 4412287.5, 4478375.698490111, 4480905.84242876, 4519680.83106024, 4569764.945855726, 4580291.909393995, 4624041.506099619, 4631670.371631174, 4659739.618688439, 4661423.989457216, 4666271.673699736, 4688610.227148999, 4720003.706359455, 4720503.125, 7726018.339119938, 7734897.228219802, 7739763.668149903, 7742239.136672677, 7986474.419456005, 8009072.679593718, 8015253.125, 8027441.843092257, 8028478.404275816, 8028505.1844622595, 8029228.125, 8029767.1875, 8030807.455236631, 8031297.7101317765, 8046257.906353066, 8048796.336404298, 8048810.071639356, 8048965.625, 8051075.839032956, 8051436.935633401, 8051613.82165339, 8052321.501967337, 8057760.9375, 8057943.189347216, 8058523.754914004, 8060671.412794742, 8060793.941513675, 8061834.375, 8063072.997189322, 8063131.525482287, 8063178.125, 8063564.0625, 8064753.055808273, 8066932.124861362, 8067089.313781884, 8067094.471899524, 8067142.404742354, 8068879.180113114, 8070396.136747729, 8074941.010601409, 8090283.849297478, 8093606.041869508, 8103793.75, 8105778.125, 8108599.392902198, 8229153.2299825, 8229943.218054411, 8230047.482132742, 8230094.902205475, 8230695.3125, 8231101.652223508, 8231104.6875, 8231773.4375, 8231986.641338936, 8232192.849019939, 8232207.306028311, 8232637.5, 8232898.4375, 8234902.642571378, 8244016.817094787, 8247314.927402067, 8247503.001516123, 8248378.125, 8248529.358986408, 8248629.6875, 8249973.765761722, 8250556.733579549, 8250998.859063237, 8251346.308378494, 8251486.297726287, 8252001.5625, 8252419.38791034, 8253239.04043732, 8253339.220411489, 8256348.649754914, 8257405.910719547, 8259413.791162759, 8259765.625, 8262543.299498789, 8263007.653732728, 8264460.845816385, 8264587.5, 8266006.25, 8269626.396517515, 8270340.304132788, 8275949.017617458, 8280846.875, 8297008.064275289, 8301596.556560012, 8305614.310243763, 8306411.518607405, 8320336.815027184, 8323634.101395859, 8327508.983040549, 8328040.419725776, 8329478.660787707, 8329825.913347428, 8331100.0, 8335976.939934372, 8336125.7264921395, 8336512.5, 8337184.689619694, 8337320.796896651, 8337594.443168844, 8337735.653827834, 8337811.1339547355, 8337944.34173832, 8338009.041274783, 8338099.881723413, 8338173.091694597, 8338205.642294515, 8338454.6875, 8338506.645535731, 8338518.943359012, 8338615.89376912, 8338773.346090288, 8338821.871966378, 8338835.196567238, 8338874.133356345, 8339065.500910137, 8339354.6875, 8339573.432278456, 8339889.0625, 8339943.544856939, 8340330.28643165, 8340470.3125, 8340575.406434416, 8344758.186402525, 8345287.720072621, 8345370.790362598, 8345589.0625, 8346697.311106316, 8346842.482920598, 8346887.5, 8347163.7186354585, 8347583.232838614, 8347629.184158862, 8347921.75615565, 8348220.3125, 8348252.072283707, 8348876.624459901, 8349359.197157675, 8349649.661672323, 8349903.587420115, 8350237.102615106, 8350984.014605108, 8351228.8904560115, 8351527.462495379, 8351649.260739006, 8353167.02208731, 8353176.5625, 8353670.202231747, 8354141.870584513, 8354270.768905105, 8354710.419183989, 8354843.359001728, 8354871.20202712, 8355184.919776371, 8355403.125, 8355437.678603193, 8355542.827656297, 8355789.3686133735, 8356150.013177247, 8356206.769144752, 8356251.3331921585, 8356295.46567726, 8356628.125, 8356644.894426673, 8356656.869476956, 8356783.753281812, 8356856.25, 8357590.278774353, 8357847.771153724, 8362603.125, 8362680.304393621, 8362858.044414924, 8363002.486478863, 8363403.062831888, 8364047.542154927, 8364391.136084032, 8364604.309145993, 8364707.394489868, 8365005.617234019, 8365101.41240677, 8365953.598553132, 8366302.448756541, 8367987.5, 8378478.961933587, 8378745.570510194, 8379126.249648369, 8379407.292436539, 8379892.723469065, 8380031.25, 8380060.661518178, 8380437.480586793, 8380638.626630258, 8381172.887973807, 8381387.5, 8381599.678804808, 8382017.327258359, 8382062.079898668, 8382264.656101415, 8383878.125, 8385349.116119206, 8385757.159636871, 8385766.3817876335, 8386933.802239148, 8387304.6875, 8387838.913484884, 8388191.442914323, 8388524.380263574, 8389588.705123197, 8389588.740086466, 8389896.952170352, 8390028.125, 8390148.86266088, 8390294.694026036, 8390319.804841844, 8390612.048225936, 8390823.470052913, 8390979.603762927, 8391604.225438103, 8391626.582103055, 8392020.3125, 8393061.238908468, 8393718.639479859, 8393829.573364459, 8393927.732630484, 8394156.673053842, 8394182.744612083, 8394242.781337976, 8394666.081947576, 8394803.1800383, 8395170.3125, 8395261.115644272, 8395308.290726008, 8395589.415243639, 8395612.5, 8395664.0625, 8395692.1875, 8395706.027063336, 8395748.4375, 8395871.875, 8396027.509846544, 8396169.435485901, 8396217.253508251, 8396298.008570742, 8396348.062267601, 8396348.4375, 8396374.380648352, 8396419.0852686, 8396514.0625, 8396525.86659781, 8396627.310904339, 8396767.38018292, 8396894.876419632, 8396922.314691382, 8397062.01131588, 8397117.1875, 8397281.091733765, 8397343.354655115, 8397372.16062686, 8397521.875, 8397535.536184369, 8397661.092516167, 8397687.169386355, 8397808.172837207, 8397819.051902896, 8397918.258403882, 8397976.154517401, 8398011.063958643, 8398021.503066713, 8398027.525166359, 8398037.869269257, 8398050.398117732, 8398471.875, 8398529.319332771, 8398540.625, 8398759.313777171, 8398880.992409548, 8399057.177387225, 8399558.636808544, 8399724.28307117, 8399909.375, 8399921.742930232, 8400101.5625, 8400291.517185012, 8400375.0, 8400480.857701303, 8400505.11078118, 8400537.5, 8400964.7048234, 8401087.721987132, 8401187.496884221, 8401449.509541001, 8401567.994726865, 8401721.800070833, 8401777.59293345, 8402245.46362218, 8402282.268159444, 8402425.835054034, 8402828.660492422, 8403042.1875, 8403388.467400584, 8403421.875, 8403655.895027842, 8403810.468209881, 8403821.073251577, 8404415.625, 8405039.502579454, 8405366.748979213, 8405981.72363263, 8406028.342239851, 8406131.812924925, 8406584.375, 8406837.18512352, 8408038.032283535, 8408087.653739609, 8408304.520014752, 8412218.211062575, 8412478.119690944, 8413945.813708216, 8417987.056419691, 8418526.491706979, 8418595.3125, 8420215.955295991, 8420256.568345694, 8427234.375, 8435967.1875, 8484554.6875, 8497213.945740849, 8506098.4375, 8515086.706583686, 8541869.525082784, 8547506.25, 8586458.4810294, 8589604.6875, 8591175.049460653, 8593571.875, 8601565.345832959, 8607690.598256955, 8616595.150020834, 8636367.68779615, 8637437.5, 8637457.471102891, 8655194.90149318, 8655582.331367802, 8656876.204856064, 8666469.947166676, 8667332.948394725, 8668480.396530895, 8669265.604364524, 8674151.5625, 8675384.375, 8676522.87141344, 8677045.3125, 8677410.9375, 8677888.144063465, 8678299.59400435, 8678428.727549773, 8678486.945978317, 8678552.422469838, 8678740.43395565, 8679169.778999712, 8679496.875, 8680525.54768818, 8680671.875, 8680879.608149605, 8680998.4375, 8681203.125, 8681453.16047611, 8681461.763557047, 8681483.912530368, 8681573.779374352, 8681710.904453857, 8681864.70159142, 8681888.62667475, 8681915.13133995, 8681985.173103388, 8682010.400267744, 8682013.934507271, 8682019.674661838, 8682019.776650108, 8682021.787329363, 8682035.074372165, 8682048.160093093, 8682112.701439993, 8682249.703143725, 8682260.612208813, 8682329.410093099, 8682469.5838979, 8682594.48651594, 8682623.4375, 8682633.452317787, 8682721.43910852, 8682732.8125, 8682808.833086682, 8682810.379829071, 8682996.2667203, 8683192.988685891, 8683215.34063404, 8683556.595773684, 8683635.327799354, 8683671.026776081, 8683854.6875, 8684053.317686545, 8684237.417565653, 8685728.973594947, 8685758.253081782, 8685940.465673642, 8685971.875, 8686062.991396109, 8686843.438359132, 8686916.47847475, 8687455.436060136, 8687959.798469704, 8688131.552149957, 8688338.726806303, 8688462.02741237, 8688537.219525967, 8688574.22757977, 8689031.240653027, 8689076.82008288, 8689082.8125, 8689125.118455188, 8689473.326402059, 8689623.079916764, 8689675.338309936, 8689692.1875, 8689728.329897067, 8689781.25, 8690220.106292862, 8690250.870859377, 8690329.297343094, 8690339.0625, 8690918.706408253, 8691348.317931369, 8691441.62887951, 8692239.003148442, 8692277.999223283, 8695792.395701049, 8696156.25, 8696167.938229866, 8696178.679731445, 8696217.1875, 8696356.62742152, 8696828.125, 8696876.028370349, 8697051.396846112, 8697129.6875, 8697145.3125, 8697160.9375, 8697235.751168625, 8697332.8125, 8697502.69338827, 8697524.80573808, 8697645.918300554, 8697775.0, 8697793.522797458, 8697800.049211083, 8697863.558344558, 8697901.5625, 8697979.6875, 8698048.714868687, 8698079.324444916, 8698107.940946156, 8698146.623466996, 8698245.20987914, 8698274.138222493, 8698392.1875, 8698563.301247735, 8698566.743894964, 8698626.5625, 8698635.139945587, 8698690.06882959, 8698692.574087782, 8698737.5, 8698750.0, 8698813.170609493, 8698832.15177907, 8698845.3125, 8698854.732389774, 8698910.9375, 8698934.822774986, 8698986.618392494, 8698996.875, 8699098.4375, 8699114.0625, 8699157.8125, 8699172.77517077, 8699260.866785761, 8699340.625, 8699342.7737978, 8699413.147612095, 8699420.183750175, 8699429.130359104, 8699506.25, 8699523.028052308, 8699535.730042359, 8699540.57205462, 8699547.617466131, 8699548.401316809, 8699554.6875, 8699555.666683812, 8699558.748426564, 8699559.611240251, 8699569.609458875, 8699587.489365662, 8699593.75, 8699610.22566076, 8699613.790393073, 8699684.375, 8699714.35925401, 8699718.75, 8699809.375, 8699816.900051601, 8699829.893499432, 8699866.909275124, 8699882.8125, 8699939.451279549, 8700033.515797192, 8700039.0625, 8700110.449939765, 8700123.4375, 8700131.25, 8700184.178909495, 8700218.75, 8700228.02606023, 8700288.595344434, 8700288.831789078, 8700309.268822063, 8700364.095309215, 8700370.60692273, 8700373.4375, 8700375.0, 8700459.485147607, 8700494.11155967, 8700499.025326591, 8700509.375, 8700531.93401576, 8700540.699109092, 8700549.233531985, 8700592.1875, 8700607.8125, 8700608.236249974, 8700616.66770304, 8700650.0, 8700653.077622132, 8700664.226468053, 8700665.625, 8700668.75, 8700678.125, 8700745.3125, 8700776.5625, 8700781.78736909, 8700787.305355975, 8700854.539342564, 8700882.286800345, 8700907.742101768, 8700910.534323253, 8700953.125, 8700960.913470633, 8700961.414487425, 8700962.5, 8700965.045915043, 8700992.1875, 8701021.875, 8701024.216488102, 8701064.849712368, 8701073.4375, 8701089.023924192, 8701110.503093366, 8701219.48936397, 8701241.326930404, 8701271.245169625, 8701285.11452936, 8701329.63672081, 8701348.016979747, 8701373.4375, 8701387.030002713, 8701423.4375, 8701427.505359381, 8701436.613856973, 8701499.184226533, 8701501.277968809, 8701538.52933716, 8701598.96667265, 8701599.543763, 8701601.114145197, 8701608.694826033, 8701620.292021878, 8701647.733372873, 8701651.5625, 8701674.811362937, 8701675.527396047, 8701702.37315701, 8701732.328706603, 8701751.5625, 8701758.39413033, 8701788.452058282, 8701815.404177178, 8701817.039614782, 8701823.052204585, 8701823.4375, 8701843.63005656, 8701847.22215263, 8701857.542474922, 8701878.562270466, 8701886.141464382, 8701901.5625, 8701911.47230181, 8701915.53691902, 8701917.1875, 8701925.81142615, 8701927.830145786, 8701942.684697403, 8701945.3125, 8701947.342928343, 8701949.366759948, 8701963.883637896, 8701967.1875, 8701973.634693751, 8701984.105147488, 8701989.0625, 8701991.511716625, 8702015.318266204, 8702045.3125, 8702049.962797012, 8702052.775142806, 8702053.69554712, 8702059.222405182, 8702064.0625, 8702070.005119119, 8702079.658083871, 8702080.035873448, 8702102.950566692, 8702110.9375, 8702112.253657902, 8702112.731102694, 8702115.534792418, 8702119.831011666, 8702167.1875, 8702167.83630061, 8702173.832053851, 8702194.493425926, 8702208.196230102, 8702218.523756018, 8702236.61058948, 8702245.3125, 8702267.176522871, 8702267.1875, 8702268.012435531, 8702268.75, 8702276.501442948, 8702282.8125, 8702315.625, 8702337.570148325, 8702354.49982363, 8702376.020223375, 8702401.319620263, 8702409.481463516, 8702411.47261931, 8702418.4258822, 8702437.157832596, 8702447.918864997, 8702448.581989955, 8702459.375, 8702488.96401326, 8702497.364216294, 8702522.791665128, 8702523.791126052, 8702543.75, 8702552.804530758, 8702559.247326864, 8702570.181711964, 8702574.58767783, 8702605.97005574, 8702623.981594793, 8702631.849559873, 8702632.609091701, 8702636.643200945, 8702640.83265914, 8702660.880764978, 8702665.625, 8702673.183061015, 8702678.125, 8702690.625, 8702696.496067066, 8702696.797249535, 8702705.738258442, 8702707.72989688, 8702715.048821919, 8702717.1875, 8702731.626006914, 8702732.746485686, 8702742.072238699, 8702765.975028485, 8702774.500794182, 8702779.6875, 8702785.158285648, 8702786.29004224, 8702813.109722314, 8702814.956777142, 8702821.427264648, 8702841.035419662, 8702854.611290844, 8702866.437858695, 8702877.07188994, 8702940.811668087, 8702941.881998224, 8702946.875, 8702975.223295515, 8702976.417843575, 8702983.897924332, 8702996.875, 8703005.754213242, 8703012.50597178, 8703019.524943197, 8703036.441358427, 8703047.356829846, 8703087.5, 8703090.362917671, 8703121.65609213, 8703156.620059462, 8703160.9375, 8703203.192794539, 8703212.5, 8703215.22530806, 8703228.125, 8703228.886071391, 8703235.324023943, 8703248.4375, 8703249.734258192, 8703249.8827017, 8703252.753424205, 8703253.125, 8703256.25, 8703270.3125, 8703277.409267435, 8703284.375, 8703289.5970234, 8703293.75, 8703303.125, 8703309.861660868, 8703325.977303013, 8703344.18908019, 8703348.4375, 8703359.375, 8703365.385172566, 8703368.75, 8703396.73342074, 8703412.5, 8703417.779363794, 8703419.208282828, 8703421.875, 8703427.936753942, 8703439.047730777, 8703443.75, 8703447.6174945, 8703481.25, 8703513.926982947, 8703539.841504278, 8703543.14280061, 8703548.4375, 8703561.39069567, 8703563.447168866, 8703565.625, 8703568.298425596, 8703570.895750342, 8703576.558715984, 8703593.75, 8703595.77790748, 8703600.0, 8703611.905824013, 8703624.210905531, 8703626.5625, 8703636.531566259, 8703671.757749163, 8703673.706776615, 8703692.0355826, 8703693.75, 8703696.875, 8703697.855912888, 8703699.54003643, 8703717.021436496, 8703729.14971595, 8703730.421257949, 8703791.17311733, 8703795.234532425, 8703796.618227718, 8703818.030906048, 8703818.75, 8703820.3125, 8703830.750484431, 8703839.0625, 8703892.1875, 8703910.471625084, 8703922.340744764, 8703925.0, 8703934.006509284, 8703937.801348647, 8703940.576324211, 8703948.4375, 8703975.0, 8703975.910246478, 8703976.963916859, 8704015.625, 8704024.213065289, 8704033.149743902, 8704037.842715768, 8704068.197049357, 8704077.856137734, 8704092.746825587, 8704115.34455115, 8704136.831273155, 8704150.0, 8704168.75, 8704201.5625, 8704239.0625, 8704249.655046754, 8704317.326440409, 8704361.009526476, 8704405.031393735, 8704425.761416564, 8704473.416726457, 8704540.625, 8704645.3125, 8704692.1875, 8704695.619145663, 8704889.175027667, 8704895.3125, 8704919.856752038, 8705883.223741619, 8708369.718977895, 8708385.485575072, 8711480.75844842, 8711961.761747729, 8712397.42996597, 8712608.071499765, 8712754.570134785, 8713187.5, 8713535.35297533, 8713662.342959218, 8717041.751869738, 8717112.597347038, 8718234.375, 8718624.935810063, 8719469.885272149, 8719648.198047007, 8720096.18198917, 8720108.166194296, 8721426.5625, 8721710.338023497, 8721766.207094224, 8721820.095688853, 8721854.61744439, 8722699.219731392, 8722921.875, 8723093.75, 8723364.700985797, 8723600.748872517, 8723787.805508519, 8723862.291125096, 8724472.711418645, 8724645.3125, 8724898.28165237, 8725420.769547157, 8725467.1875, 8725535.20277448, 8725562.483355545, 8725787.760524053, 8725828.974464944, 8725887.5, 8726032.8125, 8726128.016482787, 8726185.002405202, 8726802.918211818, 8727430.313343685, 8727603.663724238, 8727878.125, 8728569.522942076, 8728811.747844145, 8729010.541692456, 8729103.106470726, 8729348.3449253, 8729365.446698356, 8729449.858352073, 8729561.245226303, 8729830.225146098, 8729841.227904426, 8729852.445305377, 8729871.875, 8729988.26626279, 8730005.187108625, 8730042.73794943, 8730065.625, 8730481.357225545, 8730565.625, 8730591.345782615, 8730604.6875, 8730648.033457933, 8730720.3125, 8730743.690386267, 8730893.75, 8731140.057994874, 8731297.382756379, 8731302.262212053, 8731318.75, 8731605.965107722, 8731613.083845384, 8731634.056172522, 8731671.875, 8731818.336615602, 8731971.614269864, 8732160.9375, 8732222.324176056, 8732518.75, 8732615.625, 8732704.6875, 8732973.918584276, 8733189.761251811, 8733409.107255612, 8733440.888882045, 8733580.587179136, 8733589.617422381, 8733596.875, 8733653.125, 8733683.325726172, 8733760.551059268, 8733845.66611504, 8733912.472379731, 8734024.245829942, 8734169.969952371, 8734488.442806127, 8734598.401753498, 8734721.875, 8734743.253170053, 8734785.9375, 8734816.683203341, 8734864.51209687, 8734954.6875, 8734978.125, 8735002.604968514, 8735237.446480643, 8735326.700160794, 8735381.25, 8735420.117300075, 8735471.476038603, 8735534.375, 8735618.207690878, 8735666.559302986, 8735761.40751003, 8735838.409279488, 8735842.395693887, 8735887.02214193, 8735945.302585732, 8735952.833537657, 8736266.31203204, 8736627.61851489, 8736888.691559508, 8736923.4375, 8737098.281030746, 8737142.150219427, 8737149.936476065, 8737165.373263989, 8737176.5625, 8737243.533184927, 8737257.168566948, 8737320.552241683, 8737387.602447314, 8737455.997739147, ...], [69.26584771535191, 79.57443805001225, 80.07721430975315, 109.19951421275263, 22.052564582652238, 49.95674230941816, 14.146748919543311, 75.32613949879467, 30.40907691640432, 38.4931924540277, 94.2244725282876, 13.918546258844467, 6.398327612999549, 128.17519303581784, 41.89251684929629, 34.49353565644574, 141.72201245775398, 10.545281155795983, 22.34171574357336, 19.8746226642811, 190.0339362565064, 50.287034033737704, 11.221407845050193, 24.523513698412465, 17.565934600021027, 6.242096179586295, 10.173403075195713, 17.742661040009928, 85.1949066027442, 22.430703433020668, 9.649064356108141, 13.62501929379101, 13.210173301413363, 67.9725983158079, 19.255838319220317, 45.42341561389201, 10.628913455100811, 27.027710541240893, 12.004813161435779, 64.69386326480381, 61.698120948013376, 63.234523354543704, 8.783798199782536, 30.71411967885505, 21.116537940522186, 9.999202623353169, 52.55282101339855, 8.786414785333884, 38.602097308688684, 78.5188133956475, 13.687771767099031, 55.405947643552324, 63.68437631624629, 11.66294713453208, 13.430762687755248, 9.49876454944727, 78.45839524387999, 22.109940821207463, 16.106904119244547, 29.50790351458977, 42.14194841106651, 14.684182134388703, 19.80542937768803, 7.696722818998335, 36.71949887098279, 71.54721655034683, 21.41972725098956, 19.405586731773575, 11.789126584446622, 13.25619980592407, 24.999743591497417, 45.73296206489848, 52.576747293577604, 68.89365057549567, 74.37740604573492, 5.775642073141251, 60.27767663474071, 7.461289147523651, 75.22139060150731, 11.27090756771883, 56.794111124783356, 80.93458835193206, 10.00703766117038, 13.446516604664025, 13.30835648049175, 40.16411491245418, 58.27005111436415, 10.448999330605819, 13.695564977659771, 25.72650633970047, 12.545148446343902, 79.81248545582108, 56.98591243629616, 54.64501203033514, 101.44529161743962, 22.12419097789364, 93.98672245532384, 5.506198357062712, 25.230988120002273, 73.71059961750399, 101.24937216342842, 28.095528049809328, 9.468593515307317, 73.87631284272793, 19.101378059531825, 10.728518511171982, 86.63436502621506, 64.97902895015517, 89.43833630594699, 26.83433562395013, 89.16267554374359, 106.45594176807538, 145.54305627270818, 108.27315687608368, 17.735100376061364, 44.9977945819571, 18.863527960309, 54.46244297949791, 11.538361651202857, 31.505891434097922, 25.019418743617877, 6.0601015490447665, 58.70481892440753, 36.836927393562945, 17.47071687533748, 23.668258276021497, 64.0388252448025, 11.77378501241908, 10.03183236117848, 78.58903018138713, 31.85551273803133, 37.90959558420533, 18.460131881638517, 24.15194276680588, 6.803371419780002, 12.198459962681024, 13.87436133713475, 39.07743209523843, 90.02236015270569, 6.647958722645704, 35.28064500209346, 7.752847760630263, 11.444015993214368, 6.530064987247387, 26.83903500075783, 11.122968365159187, 19.38498666952077, 20.76578478420361, 13.16556326192293, 52.89905266300557, 70.28194111069122, 61.89943492204369, 25.04306245512744, 11.323986311159032, 31.38662343759098, 22.754227081898637, 23.603336236717603, 15.85236759703242, 15.13546452430202, 48.96989142542638, 25.374280509486976, 20.584261747132206, 46.892010980921405, 23.206150102013627, 16.82875213795356, 13.316904748281457, 26.377885416601313, 45.53303918064794, 17.320428281615477, 9.384349093620608, 126.39223760212717, 23.273201088730403, 8.54724962842281, 5.905530168418143, 23.008764246418647, 18.96633143425133, 5.578414865003021, 41.35920494558593, 14.346412288670846, 62.57085401318101, 26.519997446997603, 23.53704804501444, 25.324243159132912, 27.502104232066284, 10.567008893777071, 19.744126707510713, 16.37684631831727, 50.2301452814928, 40.51500810828593, 9.938477359373417, 16.906513458460726, 8.2935579883089, 5.484498904584667, 36.87547867756498, 15.559363893877961, 29.280799248535637, 13.556167630848902, 17.97892402841811, 43.065387117625825, 99.25029454587438, 10.62647496223271, 46.42789003109442, 59.74151154729882, 17.962649040317046, 5.959859777641103, 39.67969137555819, 82.57601417833274, 18.286432111338318, 9.804482597732376, 106.5612520866944, 5.382730772521063, 13.239071320230039, 48.11605013343056, 17.116679992469304, 19.898394097068934, 60.21480415786552, 11.893719855664694, 16.025435989658373, 18.406629822821504, 63.19843024353442, 17.239761870139347, 56.35784183532068, 28.721737744454217, 73.37278244678812, 22.619852687748516, 8.015891835394857, 30.778093592569974, 10.660217226338137, 16.740647076917675, 13.550329105327013, 137.1661229073412, 91.49116972832178, 7.3120480075544325, 7.383025252797454, 56.379677088112864, 19.79642434020755, 91.16175327805101, 105.67169801393793, 145.81490643926844, 20.376408560364162, 60.26285375495915, 69.32441906075108, 67.59583498586554, 42.039935760709284, 16.85430832750039, 18.90957708622337, 13.30512097147614, 10.488063986514016, 5.942245451697041, 26.97147782664489, 82.3472094141816, 11.158486508009375, 44.39348376854853, 5.21116950828178, 26.515797362630146, 161.02054327653167, 6.687622147351478, 67.43462836610594, 14.688915567902821, 69.04326455272962, 53.42242401782035, 33.4610209162029, 40.26479504878119, 15.66695951635644, 5.850233057877275, 11.727785837340766, 47.0783069067474, 57.237430920093225, 78.52808005945536, 24.78769633255146, 49.75256433706869, 82.79136989657815, 25.88699412545481, 51.52714354533241, 48.448434119107375, 8.072069650564833, 54.400392599191306, 77.87890597730376, 13.346011665581177, 17.645198891541106, 41.91679144098741, 98.96427623253936, 25.319868490522147, 22.009137805043753, 56.53003936870355, 50.39708864463837, 8.044021171801884, 32.20710235602529, 14.37073899299062, 116.04961930247205, 131.02954008581128, 66.6711394419542, 22.537452976925998, 7.660283419181589, 48.389967546155304, 55.799463065315834, 6.535481978743932, 42.13507631311393, 73.56822824388193, 139.11629128735268, 13.691031015471108, 6.1942759246742405, 16.564372477941337, 127.60661031629914, 54.68890793710483, 22.917376490836272, 85.88736201041422, 27.36926957428833, 123.91176469254133, 20.243450042037825, 5.761307476342812, 116.54826010554979, 43.390799066605865, 33.60485345830372, 84.14546224951815, 19.94720332418677, 94.53765808704644, 63.243531228593184, 5.414906021380359, 29.461600455599246, 61.51242529163426, 15.860978571933876, 86.38004637605167, 8.043194496389901, 12.677361684044236, 22.402131929672805, 85.79786358766054, 17.976167422894413, 132.29520860623967, 19.489210356860397, 13.839214395884724, 60.69758138271122, 8.874264415549339, 70.0935588847613, 20.711864016111004, 66.20701253835846, 7.903694498777333, 51.018033640388495, 5.140020233929441, 8.067538902073027, 95.33467387544671, 100.6675529931583, 8.60852303312974, 53.915177916988654, 27.36430865464928, 8.589654191922957, 9.464872222184768, 42.25987936952649, 31.41650957429942, 42.54024640574423, 75.16640965413539, 21.816172596677504, 59.56223696341909, 53.74854704867976, 6.123134058324393, 104.59069962510078, 61.29658214494781, 32.241907546987335, 45.476034490944315, 10.94998074142264, 32.9279985342588, 18.992692537391502, 19.03649503686513, 28.97126216706028, 65.48622934827819, 93.19736774186529, 15.133442135896583, 30.662144216010102, 83.74552955494124, 14.840547855621463, 7.079385931384367, 17.266448278327843, 81.89222800810451, 10.632956006597956, 6.046376148560932, 40.841107978193904, 23.041325981679993, 20.352056989149922, 5.29530348827849, 12.452090842666598, 7.116037762941574, 110.24434339471003, 95.37308855625896, 76.01075566497255, 44.98435281742044, 53.43206573205228, 21.304282407057496, 22.485061899938145, 15.162967414102269, 19.012035840397584, 25.296046150616768, 25.24997471756334, 30.931284134044766, 80.53822178412766, 129.0826730058581, 58.611802352855925, 29.535423399685357, 61.54227799800946, 88.01846413556883, 7.616119381862169, 110.53499916414998, 22.260991532785052, 26.25167116364609, 27.887249427085884, 21.86525204189751, 91.52582094556857, 26.089235434663518, 14.759630570081937, 26.029223185915864, 26.228283727661566, 20.22011338912076, 87.18904173290623, 129.8106997394474, 12.519516882372805, 40.80213305172339, 47.48019583639103, 6.230407375989062, 75.14731501865714, 24.04369193571773, 85.31134861620666, 72.03752337841907, 42.94233709934383, 18.108442174144272, 58.288897985366454, 112.73941508383953, 6.659934489528636, 6.98218724095877, 35.257200076098506, 12.66314272260295, 56.437826693665826, 6.124810199395037, 13.035318225286977, 52.27929069802733, 81.3804205682855, 22.38102169857069, 26.99412008526198, 20.216185907357048, 67.55494069768409, 25.730930457818406, 29.585624425626687, 51.84904415225944, 7.494281765934501, 19.6339172885573, 28.303725834391432, 11.861096304452929, 43.19222791741396, 5.910694889769437, 21.77098228689106, 10.715891662378121, 26.24671460491783, 5.1303024786076366, 11.55569857148002, 139.41626432711476, 101.11460626919397, 28.000232144383276, 13.73378302006636, 16.409479063863895, 60.853928040911384, 6.519697592430668, 30.182924754116044, 5.03808599639628, 10.195087272677275, 177.49935843126968, 54.82347818828744, 7.587547017723311, 19.3804229608618, 20.92760398619728, 41.535560291890995, 56.153621010655606, 11.469517561112054, 84.17779814470705, 34.507584571038855, 50.805566638191706, 49.78174433660407, 12.072724051546539, 50.68651033508808, 8.917216107351807, 89.63715263186982, 30.376410427240476, 34.23436712191604, 42.576602991880755, 6.243940318756225, 89.78802612004637, 22.203560002173077, 5.922664701555713, 29.206658156791946, 61.9132425581515, 24.727407572392917, 38.36822147909201, 8.938631717152235, 33.88135880803674, 74.95162228575717, 11.590815877203758, 62.224816846994116, 90.44316572768429, 51.50341065440469, 37.76211847869947, 50.51844706625175, 76.8455087945435, 56.49214332757372, 41.95401180341622, 39.063419719445626, 44.5727038158206, 13.174796789471785, 30.021127074895713, 35.919922327759025, 50.77881630736302, 23.625409478526976, 10.23127662090495, 46.021862481616395, 11.198604902049835, 82.77126861221349, 43.12640277618989, 107.36993209706566, 66.38573671384084, 46.42727604680901, 95.72644510147309, 60.43437274752899, 43.810965627700625, 52.10236009962985, 166.3445305797581, 17.772807844191213, 103.4270388843884, 170.78163193331616, 8.900910066683535, 157.82286340922562, 22.446610454103812, 9.161937395701841, 9.28703254436169, 20.800416222293574, 27.828430563465528, 28.848771063494965, 47.92100792852244, 29.183184412002227, 91.91757422928286, 58.53411985985382, 28.316189958528636, 28.976912602931645, 41.25700820146876, 233.21803693664506, 56.82751291453719, 30.239122190812008, 44.320174102113775, 55.014493573052654, 56.72262024570284, 11.465723193551998, 91.6455641439512, 83.29952647401242, 7.227543000297007, 7.879087004341469, 41.14296328624656, 17.17385744186687, 46.556393457595654, 83.29219020895852, 34.832257466932646, 37.19702127606474, 35.96565202694503, 21.827119731442618, 24.678090088464465, 26.588424327014444, 15.068054980755747, 127.47263014646296, 45.42739005907217, 112.82340920845897, 128.59242331635272, 20.05741054426494, 5.1102040499094, 44.744967225967315, 18.3985239487113, 23.21463121299818, 19.191531153072106, 51.68159943429151, 51.93765072633828, 19.192900923263178, 10.402044841910001, 42.14933158059756, 62.27623974907837, 8.375232399271978, 131.62155032810986, 45.01337930321788, 72.47213888677541, 71.41649444939688, 79.01833766966405, 21.712928252384266, 89.12531209569899, 188.80051647583588, 28.190460316662, 14.679805812294182, 22.516582295120923, 84.46335476047605, 155.75926735303034, 110.72192820059091, 104.56501283474373, 13.114546773105245, 55.066776007625386, 64.39480958826698, 19.065150755677926, 19.125864111626914, 42.43471772578382, 72.6429706235913, 83.07730572408418, 18.779487431529915, 12.436272470300691, 60.8044784145886, 37.054844191742895, 31.64990031970334, 22.324367955236923, 48.347010645741506, 34.51392930304564, 110.26388374323753, 13.009901801921252, 8.679855378846332, 10.054163648184737, 83.26125690006694, 29.95889996837535, 183.23190517287995, 14.404255794186334, 44.32637273546972, 104.3830793563967, 28.12588037381826, 143.61017285641122, 37.152454302940775, 64.03115070347812, 14.314920721382943, 19.301717496496657, 21.656307668724104, 41.91281856432356, 8.620124262203241, 68.60380500789888, 72.47236330680279, 25.909892472902502, 7.023723223722421, 99.78554865050262, 9.232002458706413, 12.547787611970643, 24.141332979568027, 16.918947926165803, 11.462219483125196, 77.73146377377613, 5.109129497904403, 72.79844342285958, 55.64520077943487, 19.307557537022433, 60.262875992945496, 102.3869801931168, 68.10798342681707, 8.550562193893226, 6.024633651517396, 70.16171760115733, 50.9961874410033, 13.944318341340022, 44.23159038326462, 81.70045849352368, 12.869088492641575, 23.66510614574347, 71.73845445198576, 104.75458582348242, 6.433611781418414, 26.78643521313547, 7.548963658449525, 31.5325764291046, 46.90780317865772, 38.72178298007033, 101.07828610362901, 25.499127164373633, 52.35954343870451, 24.461230151632893, 5.298279636841603, 20.81079087155433, 13.299700096408618, 34.74326977767589, 18.166425474061366, 61.7725801863973, 30.641311806833247, 91.92981154640862, 45.92381114397317, 7.866284832054869, 122.1215799487805, 23.324028472138373, 82.57228639132245, 52.03088681223069, 47.13965606143805, 42.03842824905986, 75.73403521137732, 86.11647763686985, 47.63584906423179, 33.14426192613924, 13.211732655703628, 55.66024683407994, 18.96550057986951, 17.466810359507026, 126.9417541275526, 23.22665179505187, 66.59005958601605, 11.361322846801105, 58.138858067215054, 14.578957206095716, 17.20397419480897, 8.839131790490626, 5.633911792496087, 57.18147964748094, 8.124079252775678, 109.36094727533228, 14.465387196050425, 10.53908044207008, 24.010351666755295, 5.988231809967311, 5.05179449815784, 91.13632894878252, 12.444664741345033, 95.58871937230776, 103.99868890994875, 86.3427762220976, 62.06178314514489, 89.19309091704133, 49.988819025009, 9.030307952812525, 75.83757950751306, 15.268785078859734, 51.034869183641256, 13.12214439301494, 90.55403720586679, 7.223929317292474, 8.251973660213787, 26.43703704709591, 11.722762169894612, 13.328221639991808, 193.8987315670844, 6.930652483245977, 62.75928286150724, 25.864250820990527, 45.02193665090508, 39.59952341942713, 35.44204987697837, 8.246683654048397, 184.81127577086545, 6.869649675661203, 6.801354532307545, 5.195707904735869, 123.48271714894938, 45.40932517021863, 5.286639738083032, 10.455785077000064, 33.89845928419611, 47.08743637024641, 14.964320005470348, 5.183811176187086, 17.286663351854045, 5.850513008076435, 31.713597491197678, 24.247479904621628, 50.39170148944349, 25.36245060962453, 86.48347199706721, 121.03983598696577, 55.389827089988856, 22.55570034414882, 80.94134558057043, 112.33314574313772, 19.615667149908568, 75.04602192325633, 81.07198343509266, 10.949181645420795, 10.592666770481744, 61.105753729216275, 92.31811514192661, 59.26234470655345, 61.71157879994439, 133.7367209851503, 7.269427124898079, 51.246199192990595, 50.397413313084456, 6.330706854602944, 20.683328201200453, 16.92866540639968, 84.05845632427629, 42.2605339443226, 11.842750147568939, 52.80455087732921, 26.009815906588855, 47.15645834788644, 7.832315471018494, 7.777850210496636, 53.02391167212644, 5.4537444026787085, 9.318946106859942, 59.68258373379347, 18.80165267667467, 30.226690514202087, 75.02602908612134, 6.616557990425041, 20.486471868044447, 28.73275589560589, 21.505626321766044, 6.192464800594228, 78.71418483997736, 8.976686900292366, 45.62856779782057, 18.91028291978731, 58.098867872980605, 103.41295051310247, 61.90337650945557, 28.76055802550289, 85.86605715240474, 44.632552835199185, 148.9310486395116, 26.404153151659923, 17.113234366427747, 7.5492006129738085, 58.910379308121065, 28.696835920788725, 20.716085088085194, 74.00252958656522, 25.626930390173722, 89.18410676436855, 12.507662934715967, 27.953264232076513, 26.720189016449105, 41.3250519248443, 17.977027539005938, 38.40877928925866, 44.43546839252505, 5.325091596858714, 182.22881829215467, 49.49933173427383, 21.84040726184508, 23.02911236773043, 122.25295865629236, 46.48934381912201, 5.836619111364482, 8.26100340214397, 93.04603485424417, 37.317845114426746, 90.32870732199262, 16.729473992267486, 52.50041176054976, 5.267382934403948, 11.699199196046479, 11.70926584283615, 13.183328969917156, 114.18085873914549, 5.856558114020477, 13.97044753750662, 7.378043232026054, 81.45469701353153, 35.12548734958115, 72.58437612118357, 50.12673982597035, 5.5165698530812595, 129.58037371900747, 15.223336160202829, 16.43712480194, 19.896035103060875, 126.45078639159372, 55.68958277645643, 67.38003798700922, 88.44246618367816, 7.204462028066062, 8.346993963209117, 41.15214153724681, 5.154881692437397, 6.320592589803615, 10.311490848713936, 60.93536115053772, 98.887102358763, 19.405586731773575, 9.84931301136183, 9.560444027594981, 56.130001392891266, 55.730916728084836, 20.689419033581906, 35.174711366205926, 22.16018978995423, 5.132588142333002, 57.48619341622087, 21.28820367968894, 7.455695352799066, 24.556233957997943, 52.38728774921488, 107.26100279099384, 43.64940227113331, 7.399911935743767, 12.178309292805183, 24.874893157777638, 14.681048217682717, 12.61884151928426, 50.86922389028377, 52.48234928544635, 18.099885660315017, 16.26005281970341, 6.12045625899283, 24.988977528186922, 66.70707232668832, 32.91156356988192, 25.785029688979495, 20.45972453478079, 114.3610155509786, 5.3173602851560515, 14.878445803137556, 9.561854189222142, 5.185628741205166, 45.544407925401345, 58.72513881612284, 62.18330621573251, 18.029115543060573, 65.52282075922189, 26.70013552302353, 189.90275664527235, 47.60908128982793, 5.315575300547961, 11.26981788772802, 85.54351931489984, 44.700712447895285, 26.819060718801005, 7.07535730268091, 26.00872281344624, 6.12069552005562, 13.161827276972044, 6.89015232935409, 10.209016434641725, 80.43938647377546, 17.239656293437577, 27.5976398924014, 27.76291786542447, 91.38100761726626, 18.12642687483048, 47.548654811985735, 7.886539931480722, 82.72548178527835, 5.061621948088297, 157.4056016301874, 27.39823582227336, 31.510586055364797, 29.074941012942894, 17.30885585154204, 12.431343092212495, 41.54620536887203, 49.29755793347881, 15.81646256468435, 47.25865343506066, 39.5782545916548, 38.029917102193636, 63.90367825093995, 45.602613857678534, 11.910749208230257, 111.64980699843616, 71.78931038189052, 48.12649025447088, 11.973300298630415, 12.429211209703219, 5.916423023413965, 5.171553125821559, 20.00934247532549, 12.122087115032949, 76.71730368045046, 98.62450533339887, 57.22950638765849, 10.573010673997437, 11.740668232642545, 15.082975748113125, 12.679963296922, 43.9633996589988, 43.44133226692717, 15.469318476193095, 55.34693729995912, 55.07794424752562, 65.36410825485949, 10.421433623393822, 49.953903609970496, 112.20478183806951, 67.25392795681604, 8.029474730059734, 27.508607804379746, 121.2544179549594, 63.81055353172542, 14.246273517132796, 9.015400392699952, 45.49119482653433, 5.378139006532645, 12.988141821442484, 9.763176439263868, 20.089672362742405, 15.799226395259987, 13.38709941680496, 11.112245446470226, 10.700771973897858, 6.162582355275955, 21.428650826992023, 40.155051965887644, 69.7141335473303, 105.34543681311152, 116.62411458266817, 9.278261550889166, 14.061617888811734, 128.7659643337188, 5.197933094504755, 20.168171689190967, 8.417560567122585, 54.48995617842425, 24.38031800862211, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3886516.5857592877, 3915059.375, 4012579.964078665, 4073967.1718105273, 4141618.3043125714, 4276350.187118473, 4276923.212093011, 4282064.0625, 4282099.194070748, 4285299.741063356, 4288205.39356049, 4291496.577961505, 4328030.659380638, 4331435.591527663, 4355718.75, 4412287.5, 4478375.698490111, 4480905.84242876, 4519680.83106024, 4569764.945855726, 4580291.909393995, 4624041.506099619, 4631670.371631174, 4659739.618688439, 4661423.989457216, 4666271.673699736, 4688610.227148999, 4720003.706359455, 4720503.125, 7726018.339119938, 7734897.228219802, 7739763.668149903, 7742239.136672677, 7986474.419456005, 8009072.679593718, 8015253.125, 8027441.843092257, 8028478.404275816, 8028505.1844622595, 8029228.125, 8029767.1875, 8030807.455236631, 8031297.7101317765, 8046257.906353066, 8048796.336404298, 8048810.071639356, 8048965.625, 8051075.839032956, 8051436.935633401, 8051613.82165339, 8052321.501967337, 8057760.9375, 8057943.189347216, 8058523.754914004, 8060671.412794742, 8060793.941513675, 8061834.375, 8063072.997189322, 8063131.525482287, 8063178.125, 8063564.0625, 8064753.055808273, 8066932.124861362, 8067089.313781884, 8067094.471899524, 8067142.404742354, 8068879.180113114, 8070396.136747729, 8074941.010601409, 8090283.849297478, 8093606.041869508, 8103793.75, 8105778.125, 8108599.392902198, 8229153.2299825, 8229943.218054411, 8230047.482132742, 8230094.902205475, 8230695.3125, 8231101.652223508, 8231104.6875, 8231773.4375, 8231986.641338936, 8232192.849019939, 8232207.306028311, 8232637.5, 8232898.4375, 8234902.642571378, 8244016.817094787, 8247314.927402067, 8247503.001516123, 8248378.125, 8248529.358986408, 8248629.6875, 8249973.765761722, 8250556.733579549, 8250998.859063237, 8251346.308378494, 8251486.297726287, 8252001.5625, 8252419.38791034, 8253239.04043732, 8253339.220411489, 8256348.649754914, 8257405.910719547, 8259413.791162759, 8259765.625, 8262543.299498789, 8263007.653732728, 8264460.845816385, 8264587.5, 8266006.25, 8269626.396517515, 8270340.304132788, 8275949.017617458, 8280846.875, 8297008.064275289, 8301596.556560012, 8305614.310243763, 8306411.518607405, 8320336.815027184, 8323634.101395859, 8327508.983040549, 8328040.419725776, 8329478.660787707, 8329825.913347428, 8331100.0, 8335976.939934372, 8336125.7264921395, 8336512.5, 8337184.689619694, 8337320.796896651, 8337594.443168844, 8337735.653827834, 8337811.1339547355, 8337944.34173832, 8338009.041274783, 8338099.881723413, 8338173.091694597, 8338205.642294515, 8338454.6875, 8338506.645535731, 8338518.943359012, 8338615.89376912, 8338773.346090288, 8338821.871966378, 8338835.196567238, 8338874.133356345, 8339065.500910137, 8339354.6875, 8339573.432278456, 8339889.0625, 8339943.544856939, 8340330.28643165, 8340470.3125, 8340575.406434416, 8344758.186402525, 8345287.720072621, 8345370.790362598, 8345589.0625, 8346697.311106316, 8346842.482920598, 8346887.5, 8347163.7186354585, 8347583.232838614, 8347629.184158862, 8347921.75615565, 8348220.3125, 8348252.072283707, 8348876.624459901, 8349359.197157675, 8349649.661672323, 8349903.587420115, 8350237.102615106, 8350984.014605108, 8351228.8904560115, 8351527.462495379, 8351649.260739006, 8353167.02208731, 8353176.5625, 8353670.202231747, 8354141.870584513, 8354270.768905105, 8354710.419183989, 8354843.359001728, 8354871.20202712, 8355184.919776371, 8355403.125, 8355437.678603193, 8355542.827656297, 8355789.3686133735, 8356150.013177247, 8356206.769144752, 8356251.3331921585, 8356295.46567726, 8356628.125, 8356644.894426673, 8356656.869476956, 8356783.753281812, 8356856.25, 8357590.278774353, 8357847.771153724, 8362603.125, 8362680.304393621, 8362858.044414924, 8363002.486478863, 8363403.062831888, 8364047.542154927, 8364391.136084032, 8364604.309145993, 8364707.394489868, 8365005.617234019, 8365101.41240677, 8365953.598553132, 8366302.448756541, 8367987.5, 8378478.961933587, 8378745.570510194, 8379126.249648369, 8379407.292436539, 8379892.723469065, 8380031.25, 8380060.661518178, 8380437.480586793, 8380638.626630258, 8381172.887973807, 8381387.5, 8381599.678804808, 8382017.327258359, 8382062.079898668, 8382264.656101415, 8383878.125, 8385349.116119206, 8385757.159636871, 8385766.3817876335, 8386933.802239148, 8387304.6875, 8387838.913484884, 8388191.442914323, 8388524.380263574, 8389588.705123197, 8389588.740086466, 8389896.952170352, 8390028.125, 8390148.86266088, 8390294.694026036, 8390319.804841844, 8390612.048225936, 8390823.470052913, 8390979.603762927, 8391604.225438103, 8391626.582103055, 8392020.3125, 8393061.238908468, 8393718.639479859, 8393829.573364459, 8393927.732630484, 8394156.673053842, 8394182.744612083, 8394242.781337976, 8394666.081947576, 8394803.1800383, 8395170.3125, 8395261.115644272, 8395308.290726008, 8395589.415243639, 8395612.5, 8395664.0625, 8395692.1875, 8395706.027063336, 8395748.4375, 8395871.875, 8396027.509846544, 8396169.435485901, 8396217.253508251, 8396298.008570742, 8396348.062267601, 8396348.4375, 8396374.380648352, 8396419.0852686, 8396514.0625, 8396525.86659781, 8396627.310904339, 8396767.38018292, 8396894.876419632, 8396922.314691382, 8397062.01131588, 8397117.1875, 8397281.091733765, 8397343.354655115, 8397372.16062686, 8397521.875, 8397535.536184369, 8397661.092516167, 8397687.169386355, 8397808.172837207, 8397819.051902896, 8397918.258403882, 8397976.154517401, 8398011.063958643, 8398021.503066713, 8398027.525166359, 8398037.869269257, 8398050.398117732, 8398471.875, 8398529.319332771, 8398540.625, 8398759.313777171, 8398880.992409548, 8399057.177387225, 8399558.636808544, 8399724.28307117, 8399909.375, 8399921.742930232, 8400101.5625, 8400291.517185012, 8400375.0, 8400480.857701303, 8400505.11078118, 8400537.5, 8400964.7048234, 8401087.721987132, 8401187.496884221, 8401449.509541001, 8401567.994726865, 8401721.800070833, 8401777.59293345, 8402245.46362218, 8402282.268159444, 8402425.835054034, 8402828.660492422, 8403042.1875, 8403388.467400584, 8403421.875, 8403655.895027842, 8403810.468209881, 8403821.073251577, 8404415.625, 8405039.502579454, 8405366.748979213, 8405981.72363263, 8406028.342239851, 8406131.812924925, 8406584.375, 8406837.18512352, 8408038.032283535, 8408087.653739609, 8408304.520014752, 8412218.211062575, 8412478.119690944, 8413945.813708216, 8417987.056419691, 8418526.491706979, 8418595.3125, 8420215.955295991, 8420256.568345694, 8427234.375, 8435967.1875, 8484554.6875, 8497213.945740849, 8506098.4375, 8515086.706583686, 8541869.525082784, 8547506.25, 8586458.4810294, 8589604.6875, 8591175.049460653, 8593571.875, 8601565.345832959, 8607690.598256955, 8616595.150020834, 8636367.68779615, 8637437.5, 8637457.471102891, 8655194.90149318, 8655582.331367802, 8656876.204856064, 8666469.947166676, 8667332.948394725, 8668480.396530895, 8669265.604364524, 8674151.5625, 8675384.375, 8676522.87141344, 8677045.3125, 8677410.9375, 8677888.144063465, 8678299.59400435, 8678428.727549773, 8678486.945978317, 8678552.422469838, 8678740.43395565, 8679169.778999712, 8679496.875, 8680525.54768818, 8680671.875, 8680879.608149605, 8680998.4375, 8681203.125, 8681453.16047611, 8681461.763557047, 8681483.912530368, 8681573.779374352, 8681710.904453857, 8681864.70159142, 8681888.62667475, 8681915.13133995, 8681985.173103388, 8682010.400267744, 8682013.934507271, 8682019.674661838, 8682019.776650108, 8682021.787329363, 8682035.074372165, 8682048.160093093, 8682112.701439993, 8682249.703143725, 8682260.612208813, 8682329.410093099, 8682469.5838979, 8682594.48651594, 8682623.4375, 8682633.452317787, 8682721.43910852, 8682732.8125, 8682808.833086682, 8682810.379829071, 8682996.2667203, 8683192.988685891, 8683215.34063404, 8683556.595773684, 8683635.327799354, 8683671.026776081, 8683854.6875, 8684053.317686545, 8684237.417565653, 8685728.973594947, 8685758.253081782, 8685940.465673642, 8685971.875, 8686062.991396109, 8686843.438359132, 8686916.47847475, 8687455.436060136, 8687959.798469704, 8688131.552149957, 8688338.726806303, 8688462.02741237, 8688537.219525967, 8688574.22757977, 8689031.240653027, 8689076.82008288, 8689082.8125, 8689125.118455188, 8689473.326402059, 8689623.079916764, 8689675.338309936, 8689692.1875, 8689728.329897067, 8689781.25, 8690220.106292862, 8690250.870859377, 8690329.297343094, 8690339.0625, 8690918.706408253, 8691348.317931369, 8691441.62887951, 8692239.003148442, 8692277.999223283, 8695792.395701049, 8696156.25, 8696167.938229866, 8696178.679731445, 8696217.1875, 8696356.62742152, 8696828.125, 8696876.028370349, 8697051.396846112, 8697129.6875, 8697145.3125, 8697160.9375, 8697235.751168625, 8697332.8125, 8697502.69338827, 8697524.80573808, 8697645.918300554, 8697775.0, 8697793.522797458, 8697800.049211083, 8697863.558344558, 8697901.5625, 8697979.6875, 8698048.714868687, 8698079.324444916, 8698107.940946156, 8698146.623466996, 8698245.20987914, 8698274.138222493, 8698392.1875, 8698563.301247735, 8698566.743894964, 8698626.5625, 8698635.139945587, 8698690.06882959, 8698692.574087782, 8698737.5, 8698750.0, 8698813.170609493, 8698832.15177907, 8698845.3125, 8698854.732389774, 8698910.9375, 8698934.822774986, 8698986.618392494, 8698996.875, 8699098.4375, 8699114.0625, 8699157.8125, 8699172.77517077, 8699260.866785761, 8699340.625, 8699342.7737978, 8699413.147612095, 8699420.183750175, 8699429.130359104, 8699506.25, 8699523.028052308, 8699535.730042359, 8699540.57205462, 8699547.617466131, 8699548.401316809, 8699554.6875, 8699555.666683812, 8699558.748426564, 8699559.611240251, 8699569.609458875, 8699587.489365662, 8699593.75, 8699610.22566076, 8699613.790393073, 8699684.375, 8699714.35925401, 8699718.75, 8699809.375, 8699816.900051601, 8699829.893499432, 8699866.909275124, 8699882.8125, 8699939.451279549, 8700033.515797192, 8700039.0625, 8700110.449939765, 8700123.4375, 8700131.25, 8700184.178909495, 8700218.75, 8700228.02606023, 8700288.595344434, 8700288.831789078, 8700309.268822063, 8700364.095309215, 8700370.60692273, 8700373.4375, 8700375.0, 8700459.485147607, 8700494.11155967, 8700499.025326591, 8700509.375, 8700531.93401576, 8700540.699109092, 8700549.233531985, 8700592.1875, 8700607.8125, 8700608.236249974, 8700616.66770304, 8700650.0, 8700653.077622132, 8700664.226468053, 8700665.625, 8700668.75, 8700678.125, 8700745.3125, 8700776.5625, 8700781.78736909, 8700787.305355975, 8700854.539342564, 8700882.286800345, 8700907.742101768, 8700910.534323253, 8700953.125, 8700960.913470633, 8700961.414487425, 8700962.5, 8700965.045915043, 8700992.1875, 8701021.875, 8701024.216488102, 8701064.849712368, 8701073.4375, 8701089.023924192, 8701110.503093366, 8701219.48936397, 8701241.326930404, 8701271.245169625, 8701285.11452936, 8701329.63672081, 8701348.016979747, 8701373.4375, 8701387.030002713, 8701423.4375, 8701427.505359381, 8701436.613856973, 8701499.184226533, 8701501.277968809, 8701538.52933716, 8701598.96667265, 8701599.543763, 8701601.114145197, 8701608.694826033, 8701620.292021878, 8701647.733372873, 8701651.5625, 8701674.811362937, 8701675.527396047, 8701702.37315701, 8701732.328706603, 8701751.5625, 8701758.39413033, 8701788.452058282, 8701815.404177178, 8701817.039614782, 8701823.052204585, 8701823.4375, 8701843.63005656, 8701847.22215263, 8701857.542474922, 8701878.562270466, 8701886.141464382, 8701901.5625, 8701911.47230181, 8701915.53691902, 8701917.1875, 8701925.81142615, 8701927.830145786, 8701942.684697403, 8701945.3125, 8701947.342928343, 8701949.366759948, 8701963.883637896, 8701967.1875, 8701973.634693751, 8701984.105147488, 8701989.0625, 8701991.511716625, 8702015.318266204, 8702045.3125, 8702049.962797012, 8702052.775142806, 8702053.69554712, 8702059.222405182, 8702064.0625, 8702070.005119119, 8702079.658083871, 8702080.035873448, 8702102.950566692, 8702110.9375, 8702112.253657902, 8702112.731102694, 8702115.534792418, 8702119.831011666, 8702167.1875, 8702167.83630061, 8702173.832053851, 8702194.493425926, 8702208.196230102, 8702218.523756018, 8702236.61058948, 8702245.3125, 8702267.176522871, 8702267.1875, 8702268.012435531, 8702268.75, 8702276.501442948, 8702282.8125, 8702315.625, 8702337.570148325, 8702354.49982363, 8702376.020223375, 8702401.319620263, 8702409.481463516, 8702411.47261931, 8702418.4258822, 8702437.157832596, 8702447.918864997, 8702448.581989955, 8702459.375, 8702488.96401326, 8702497.364216294, 8702522.791665128, 8702523.791126052, 8702543.75, 8702552.804530758, 8702559.247326864, 8702570.181711964, 8702574.58767783, 8702605.97005574, 8702623.981594793, 8702631.849559873, 8702632.609091701, 8702636.643200945, 8702640.83265914, 8702660.880764978, 8702665.625, 8702673.183061015, 8702678.125, 8702690.625, 8702696.496067066, 8702696.797249535, 8702705.738258442, 8702707.72989688, 8702715.048821919, 8702717.1875, 8702731.626006914, 8702732.746485686, 8702742.072238699, 8702765.975028485, 8702774.500794182, 8702779.6875, 8702785.158285648, 8702786.29004224, 8702813.109722314, 8702814.956777142, 8702821.427264648, 8702841.035419662, 8702854.611290844, 8702866.437858695, 8702877.07188994, 8702940.811668087, 8702941.881998224, 8702946.875, 8702975.223295515, 8702976.417843575, 8702983.897924332, 8702996.875, 8703005.754213242, 8703012.50597178, 8703019.524943197, 8703036.441358427, 8703047.356829846, 8703087.5, 8703090.362917671, 8703121.65609213, 8703156.620059462, 8703160.9375, 8703203.192794539, 8703212.5, 8703215.22530806, 8703228.125, 8703228.886071391, 8703235.324023943, 8703248.4375, 8703249.734258192, 8703249.8827017, 8703252.753424205, 8703253.125, 8703256.25, 8703270.3125, 8703277.409267435, 8703284.375, 8703289.5970234, 8703293.75, 8703303.125, 8703309.861660868, 8703325.977303013, 8703344.18908019, 8703348.4375, 8703359.375, 8703365.385172566, 8703368.75, 8703396.73342074, 8703412.5, 8703417.779363794, 8703419.208282828, 8703421.875, 8703427.936753942, 8703439.047730777, 8703443.75, 8703447.6174945, 8703481.25, 8703513.926982947, 8703539.841504278, 8703543.14280061, 8703548.4375, 8703561.39069567, 8703563.447168866, 8703565.625, 8703568.298425596, 8703570.895750342, 8703576.558715984, 8703593.75, 8703595.77790748, 8703600.0, 8703611.905824013, 8703624.210905531, 8703626.5625, 8703636.531566259, 8703671.757749163, 8703673.706776615, 8703692.0355826, 8703693.75, 8703696.875, 8703697.855912888, 8703699.54003643, 8703717.021436496, 8703729.14971595, 8703730.421257949, 8703791.17311733, 8703795.234532425, 8703796.618227718, 8703818.030906048, 8703818.75, 8703820.3125, 8703830.750484431, 8703839.0625, 8703892.1875, 8703910.471625084, 8703922.340744764, 8703925.0, 8703934.006509284, 8703937.801348647, 8703940.576324211, 8703948.4375, 8703975.0, 8703975.910246478, 8703976.963916859, 8704015.625, 8704024.213065289, 8704033.149743902, 8704037.842715768, 8704068.197049357, 8704077.856137734, 8704092.746825587, 8704115.34455115, 8704136.831273155, 8704150.0, 8704168.75, 8704201.5625, 8704239.0625, 8704249.655046754, 8704317.326440409, 8704361.009526476, 8704405.031393735, 8704425.761416564, 8704473.416726457, 8704540.625, 8704645.3125, 8704692.1875, 8704695.619145663, 8704889.175027667, 8704895.3125, 8704919.856752038, 8705883.223741619, 8708369.718977895, 8708385.485575072, 8711480.75844842, 8711961.761747729, 8712397.42996597, 8712608.071499765, 8712754.570134785, 8713187.5, 8713535.35297533, 8713662.342959218, 8717041.751869738, 8717112.597347038, 8718234.375, 8718624.935810063, 8719469.885272149, 8719648.198047007, 8720096.18198917, 8720108.166194296, 8721426.5625, 8721710.338023497, 8721766.207094224, 8721820.095688853, 8721854.61744439, 8722699.219731392, 8722921.875, 8723093.75, 8723364.700985797, 8723600.748872517, 8723787.805508519, 8723862.291125096, 8724472.711418645, 8724645.3125, 8724898.28165237, 8725420.769547157, 8725467.1875, 8725535.20277448, 8725562.483355545, 8725787.760524053, 8725828.974464944, 8725887.5, 8726032.8125, 8726128.016482787, 8726185.002405202, 8726802.918211818, 8727430.313343685, 8727603.663724238, 8727878.125, 8728569.522942076, 8728811.747844145, 8729010.541692456, 8729103.106470726, 8729348.3449253, 8729365.446698356, 8729449.858352073, 8729561.245226303, 8729830.225146098, 8729841.227904426, 8729852.445305377, 8729871.875, 8729988.26626279, 8730005.187108625, 8730042.73794943, 8730065.625, 8730481.357225545, 8730565.625, 8730591.345782615, 8730604.6875, 8730648.033457933, 8730720.3125, 8730743.690386267, 8730893.75, 8731140.057994874, 8731297.382756379, 8731302.262212053, 8731318.75, 8731605.965107722, 8731613.083845384, 8731634.056172522, 8731671.875, 8731818.336615602, 8731971.614269864, 8732160.9375, 8732222.324176056, 8732518.75, 8732615.625, 8732704.6875, 8732973.918584276, 8733189.761251811, 8733409.107255612, 8733440.888882045, 8733580.587179136, 8733589.617422381, 8733596.875, 8733653.125, 8733683.325726172, 8733760.551059268, 8733845.66611504, 8733912.472379731, 8734024.245829942, 8734169.969952371, 8734488.442806127, 8734598.401753498, 8734721.875, 8734743.253170053, 8734785.9375, 8734816.683203341, 8734864.51209687, 8734954.6875, 8734978.125, 8735002.604968514, 8735237.446480643, 8735326.700160794, 8735381.25, 8735420.117300075, 8735471.476038603, 8735534.375, 8735618.207690878, 8735666.559302986, 8735761.40751003, 8735838.409279488, 8735842.395693887, 8735887.02214193, 8735945.302585732, 8735952.833537657, 8736266.31203204, 8736627.61851489, 8736888.691559508, 8736923.4375, 8737098.281030746, 8737142.150219427, 8737149.936476065, 8737165.373263989, 8737176.5625, 8737243.533184927, 8737257.168566948, 8737320.552241683, 8737387.602447314, 8737455.997739147, ...], [69.26584771535191, 79.57443805001225, 80.07721430975315, 109.19951421275263, 22.052564582652238, 49.95674230941816, 14.146748919543311, 75.32613949879467, 30.40907691640432, 38.4931924540277, 94.2244725282876, 13.918546258844467, 6.398327612999549, 128.17519303581784, 41.89251684929629, 34.49353565644574, 141.72201245775398, 10.545281155795983, 22.34171574357336, 19.8746226642811, 190.0339362565064, 50.287034033737704, 11.221407845050193, 24.523513698412465, 17.565934600021027, 6.242096179586295, 10.173403075195713, 17.742661040009928, 85.1949066027442, 22.430703433020668, 9.649064356108141, 13.62501929379101, 13.210173301413363, 67.9725983158079, 19.255838319220317, 45.42341561389201, 10.628913455100811, 27.027710541240893, 12.004813161435779, 64.69386326480381, 61.698120948013376, 63.234523354543704, 8.783798199782536, 30.71411967885505, 21.116537940522186, 9.999202623353169, 52.55282101339855, 8.786414785333884, 38.602097308688684, 78.5188133956475, 13.687771767099031, 55.405947643552324, 63.68437631624629, 11.66294713453208, 13.430762687755248, 9.49876454944727, 78.45839524387999, 22.109940821207463, 16.106904119244547, 29.50790351458977, 42.14194841106651, 14.684182134388703, 19.80542937768803, 7.696722818998335, 36.71949887098279, 71.54721655034683, 21.41972725098956, 19.405586731773575, 11.789126584446622, 13.25619980592407, 24.999743591497417, 45.73296206489848, 52.576747293577604, 68.89365057549567, 74.37740604573492, 5.775642073141251, 60.27767663474071, 7.461289147523651, 75.22139060150731, 11.27090756771883, 56.794111124783356, 80.93458835193206, 10.00703766117038, 13.446516604664025, 13.30835648049175, 40.16411491245418, 58.27005111436415, 10.448999330605819, 13.695564977659771, 25.72650633970047, 12.545148446343902, 79.81248545582108, 56.98591243629616, 54.64501203033514, 101.44529161743962, 22.12419097789364, 93.98672245532384, 5.506198357062712, 25.230988120002273, 73.71059961750399, 101.24937216342842, 28.095528049809328, 9.468593515307317, 73.87631284272793, 19.101378059531825, 10.728518511171982, 86.63436502621506, 64.97902895015517, 89.43833630594699, 26.83433562395013, 89.16267554374359, 106.45594176807538, 145.54305627270818, 108.27315687608368, 17.735100376061364, 44.9977945819571, 18.863527960309, 54.46244297949791, 11.538361651202857, 31.505891434097922, 25.019418743617877, 6.0601015490447665, 58.70481892440753, 36.836927393562945, 17.47071687533748, 23.668258276021497, 64.0388252448025, 11.77378501241908, 10.03183236117848, 78.58903018138713, 31.85551273803133, 37.90959558420533, 18.460131881638517, 24.15194276680588, 6.803371419780002, 12.198459962681024, 13.87436133713475, 39.07743209523843, 90.02236015270569, 6.647958722645704, 35.28064500209346, 7.752847760630263, 11.444015993214368, 6.530064987247387, 26.83903500075783, 11.122968365159187, 19.38498666952077, 20.76578478420361, 13.16556326192293, 52.89905266300557, 70.28194111069122, 61.89943492204369, 25.04306245512744, 11.323986311159032, 31.38662343759098, 22.754227081898637, 23.603336236717603, 15.85236759703242, 15.13546452430202, 48.96989142542638, 25.374280509486976, 20.584261747132206, 46.892010980921405, 23.206150102013627, 16.82875213795356, 13.316904748281457, 26.377885416601313, 45.53303918064794, 17.320428281615477, 9.384349093620608, 126.39223760212717, 23.273201088730403, 8.54724962842281, 5.905530168418143, 23.008764246418647, 18.96633143425133, 5.578414865003021, 41.35920494558593, 14.346412288670846, 62.57085401318101, 26.519997446997603, 23.53704804501444, 25.324243159132912, 27.502104232066284, 10.567008893777071, 19.744126707510713, 16.37684631831727, 50.2301452814928, 40.51500810828593, 9.938477359373417, 16.906513458460726, 8.2935579883089, 5.484498904584667, 36.87547867756498, 15.559363893877961, 29.280799248535637, 13.556167630848902, 17.97892402841811, 43.065387117625825, 99.25029454587438, 10.62647496223271, 46.42789003109442, 59.74151154729882, 17.962649040317046, 5.959859777641103, 39.67969137555819, 82.57601417833274, 18.286432111338318, 9.804482597732376, 106.5612520866944, 5.382730772521063, 13.239071320230039, 48.11605013343056, 17.116679992469304, 19.898394097068934, 60.21480415786552, 11.893719855664694, 16.025435989658373, 18.406629822821504, 63.19843024353442, 17.239761870139347, 56.35784183532068, 28.721737744454217, 73.37278244678812, 22.619852687748516, 8.015891835394857, 30.778093592569974, 10.660217226338137, 16.740647076917675, 13.550329105327013, 137.1661229073412, 91.49116972832178, 7.3120480075544325, 7.383025252797454, 56.379677088112864, 19.79642434020755, 91.16175327805101, 105.67169801393793, 145.81490643926844, 20.376408560364162, 60.26285375495915, 69.32441906075108, 67.59583498586554, 42.039935760709284, 16.85430832750039, 18.90957708622337, 13.30512097147614, 10.488063986514016, 5.942245451697041, 26.97147782664489, 82.3472094141816, 11.158486508009375, 44.39348376854853, 5.21116950828178, 26.515797362630146, 161.02054327653167, 6.687622147351478, 67.43462836610594, 14.688915567902821, 69.04326455272962, 53.42242401782035, 33.4610209162029, 40.26479504878119, 15.66695951635644, 5.850233057877275, 11.727785837340766, 47.0783069067474, 57.237430920093225, 78.52808005945536, 24.78769633255146, 49.75256433706869, 82.79136989657815, 25.88699412545481, 51.52714354533241, 48.448434119107375, 8.072069650564833, 54.400392599191306, 77.87890597730376, 13.346011665581177, 17.645198891541106, 41.91679144098741, 98.96427623253936, 25.319868490522147, 22.009137805043753, 56.53003936870355, 50.39708864463837, 8.044021171801884, 32.20710235602529, 14.37073899299062, 116.04961930247205, 131.02954008581128, 66.6711394419542, 22.537452976925998, 7.660283419181589, 48.389967546155304, 55.799463065315834, 6.535481978743932, 42.13507631311393, 73.56822824388193, 139.11629128735268, 13.691031015471108, 6.1942759246742405, 16.564372477941337, 127.60661031629914, 54.68890793710483, 22.917376490836272, 85.88736201041422, 27.36926957428833, 123.91176469254133, 20.243450042037825, 5.761307476342812, 116.54826010554979, 43.390799066605865, 33.60485345830372, 84.14546224951815, 19.94720332418677, 94.53765808704644, 63.243531228593184, 5.414906021380359, 29.461600455599246, 61.51242529163426, 15.860978571933876, 86.38004637605167, 8.043194496389901, 12.677361684044236, 22.402131929672805, 85.79786358766054, 17.976167422894413, 132.29520860623967, 19.489210356860397, 13.839214395884724, 60.69758138271122, 8.874264415549339, 70.0935588847613, 20.711864016111004, 66.20701253835846, 7.903694498777333, 51.018033640388495, 5.140020233929441, 8.067538902073027, 95.33467387544671, 100.6675529931583, 8.60852303312974, 53.915177916988654, 27.36430865464928, 8.589654191922957, 9.464872222184768, 42.25987936952649, 31.41650957429942, 42.54024640574423, 75.16640965413539, 21.816172596677504, 59.56223696341909, 53.74854704867976, 6.123134058324393, 104.59069962510078, 61.29658214494781, 32.241907546987335, 45.476034490944315, 10.94998074142264, 32.9279985342588, 18.992692537391502, 19.03649503686513, 28.97126216706028, 65.48622934827819, 93.19736774186529, 15.133442135896583, 30.662144216010102, 83.74552955494124, 14.840547855621463, 7.079385931384367, 17.266448278327843, 81.89222800810451, 10.632956006597956, 6.046376148560932, 40.841107978193904, 23.041325981679993, 20.352056989149922, 5.29530348827849, 12.452090842666598, 7.116037762941574, 110.24434339471003, 95.37308855625896, 76.01075566497255, 44.98435281742044, 53.43206573205228, 21.304282407057496, 22.485061899938145, 15.162967414102269, 19.012035840397584, 25.296046150616768, 25.24997471756334, 30.931284134044766, 80.53822178412766, 129.0826730058581, 58.611802352855925, 29.535423399685357, 61.54227799800946, 88.01846413556883, 7.616119381862169, 110.53499916414998, 22.260991532785052, 26.25167116364609, 27.887249427085884, 21.86525204189751, 91.52582094556857, 26.089235434663518, 14.759630570081937, 26.029223185915864, 26.228283727661566, 20.22011338912076, 87.18904173290623, 129.8106997394474, 12.519516882372805, 40.80213305172339, 47.48019583639103, 6.230407375989062, 75.14731501865714, 24.04369193571773, 85.31134861620666, 72.03752337841907, 42.94233709934383, 18.108442174144272, 58.288897985366454, 112.73941508383953, 6.659934489528636, 6.98218724095877, 35.257200076098506, 12.66314272260295, 56.437826693665826, 6.124810199395037, 13.035318225286977, 52.27929069802733, 81.3804205682855, 22.38102169857069, 26.99412008526198, 20.216185907357048, 67.55494069768409, 25.730930457818406, 29.585624425626687, 51.84904415225944, 7.494281765934501, 19.6339172885573, 28.303725834391432, 11.861096304452929, 43.19222791741396, 5.910694889769437, 21.77098228689106, 10.715891662378121, 26.24671460491783, 5.1303024786076366, 11.55569857148002, 139.41626432711476, 101.11460626919397, 28.000232144383276, 13.73378302006636, 16.409479063863895, 60.853928040911384, 6.519697592430668, 30.182924754116044, 5.03808599639628, 10.195087272677275, 177.49935843126968, 54.82347818828744, 7.587547017723311, 19.3804229608618, 20.92760398619728, 41.535560291890995, 56.153621010655606, 11.469517561112054, 84.17779814470705, 34.507584571038855, 50.805566638191706, 49.78174433660407, 12.072724051546539, 50.68651033508808, 8.917216107351807, 89.63715263186982, 30.376410427240476, 34.23436712191604, 42.576602991880755, 6.243940318756225, 89.78802612004637, 22.203560002173077, 5.922664701555713, 29.206658156791946, 61.9132425581515, 24.727407572392917, 38.36822147909201, 8.938631717152235, 33.88135880803674, 74.95162228575717, 11.590815877203758, 62.224816846994116, 90.44316572768429, 51.50341065440469, 37.76211847869947, 50.51844706625175, 76.8455087945435, 56.49214332757372, 41.95401180341622, 39.063419719445626, 44.5727038158206, 13.174796789471785, 30.021127074895713, 35.919922327759025, 50.77881630736302, 23.625409478526976, 10.23127662090495, 46.021862481616395, 11.198604902049835, 82.77126861221349, 43.12640277618989, 107.36993209706566, 66.38573671384084, 46.42727604680901, 95.72644510147309, 60.43437274752899, 43.810965627700625, 52.10236009962985, 166.3445305797581, 17.772807844191213, 103.4270388843884, 170.78163193331616, 8.900910066683535, 157.82286340922562, 22.446610454103812, 9.161937395701841, 9.28703254436169, 20.800416222293574, 27.828430563465528, 28.848771063494965, 47.92100792852244, 29.183184412002227, 91.91757422928286, 58.53411985985382, 28.316189958528636, 28.976912602931645, 41.25700820146876, 233.21803693664506, 56.82751291453719, 30.239122190812008, 44.320174102113775, 55.014493573052654, 56.72262024570284, 11.465723193551998, 91.6455641439512, 83.29952647401242, 7.227543000297007, 7.879087004341469, 41.14296328624656, 17.17385744186687, 46.556393457595654, 83.29219020895852, 34.832257466932646, 37.19702127606474, 35.96565202694503, 21.827119731442618, 24.678090088464465, 26.588424327014444, 15.068054980755747, 127.47263014646296, 45.42739005907217, 112.82340920845897, 128.59242331635272, 20.05741054426494, 5.1102040499094, 44.744967225967315, 18.3985239487113, 23.21463121299818, 19.191531153072106, 51.68159943429151, 51.93765072633828, 19.192900923263178, 10.402044841910001, 42.14933158059756, 62.27623974907837, 8.375232399271978, 131.62155032810986, 45.01337930321788, 72.47213888677541, 71.41649444939688, 79.01833766966405, 21.712928252384266, 89.12531209569899, 188.80051647583588, 28.190460316662, 14.679805812294182, 22.516582295120923, 84.46335476047605, 155.75926735303034, 110.72192820059091, 104.56501283474373, 13.114546773105245, 55.066776007625386, 64.39480958826698, 19.065150755677926, 19.125864111626914, 42.43471772578382, 72.6429706235913, 83.07730572408418, 18.779487431529915, 12.436272470300691, 60.8044784145886, 37.054844191742895, 31.64990031970334, 22.324367955236923, 48.347010645741506, 34.51392930304564, 110.26388374323753, 13.009901801921252, 8.679855378846332, 10.054163648184737, 83.26125690006694, 29.95889996837535, 183.23190517287995, 14.404255794186334, 44.32637273546972, 104.3830793563967, 28.12588037381826, 143.61017285641122, 37.152454302940775, 64.03115070347812, 14.314920721382943, 19.301717496496657, 21.656307668724104, 41.91281856432356, 8.620124262203241, 68.60380500789888, 72.47236330680279, 25.909892472902502, 7.023723223722421, 99.78554865050262, 9.232002458706413, 12.547787611970643, 24.141332979568027, 16.918947926165803, 11.462219483125196, 77.73146377377613, 5.109129497904403, 72.79844342285958, 55.64520077943487, 19.307557537022433, 60.262875992945496, 102.3869801931168, 68.10798342681707, 8.550562193893226, 6.024633651517396, 70.16171760115733, 50.9961874410033, 13.944318341340022, 44.23159038326462, 81.70045849352368, 12.869088492641575, 23.66510614574347, 71.73845445198576, 104.75458582348242, 6.433611781418414, 26.78643521313547, 7.548963658449525, 31.5325764291046, 46.90780317865772, 38.72178298007033, 101.07828610362901, 25.499127164373633, 52.35954343870451, 24.461230151632893, 5.298279636841603, 20.81079087155433, 13.299700096408618, 34.74326977767589, 18.166425474061366, 61.7725801863973, 30.641311806833247, 91.92981154640862, 45.92381114397317, 7.866284832054869, 122.1215799487805, 23.324028472138373, 82.57228639132245, 52.03088681223069, 47.13965606143805, 42.03842824905986, 75.73403521137732, 86.11647763686985, 47.63584906423179, 33.14426192613924, 13.211732655703628, 55.66024683407994, 18.96550057986951, 17.466810359507026, 126.9417541275526, 23.22665179505187, 66.59005958601605, 11.361322846801105, 58.138858067215054, 14.578957206095716, 17.20397419480897, 8.839131790490626, 5.633911792496087, 57.18147964748094, 8.124079252775678, 109.36094727533228, 14.465387196050425, 10.53908044207008, 24.010351666755295, 5.988231809967311, 5.05179449815784, 91.13632894878252, 12.444664741345033, 95.58871937230776, 103.99868890994875, 86.3427762220976, 62.06178314514489, 89.19309091704133, 49.988819025009, 9.030307952812525, 75.83757950751306, 15.268785078859734, 51.034869183641256, 13.12214439301494, 90.55403720586679, 7.223929317292474, 8.251973660213787, 26.43703704709591, 11.722762169894612, 13.328221639991808, 193.8987315670844, 6.930652483245977, 62.75928286150724, 25.864250820990527, 45.02193665090508, 39.59952341942713, 35.44204987697837, 8.246683654048397, 184.81127577086545, 6.869649675661203, 6.801354532307545, 5.195707904735869, 123.48271714894938, 45.40932517021863, 5.286639738083032, 10.455785077000064, 33.89845928419611, 47.08743637024641, 14.964320005470348, 5.183811176187086, 17.286663351854045, 5.850513008076435, 31.713597491197678, 24.247479904621628, 50.39170148944349, 25.36245060962453, 86.48347199706721, 121.03983598696577, 55.389827089988856, 22.55570034414882, 80.94134558057043, 112.33314574313772, 19.615667149908568, 75.04602192325633, 81.07198343509266, 10.949181645420795, 10.592666770481744, 61.105753729216275, 92.31811514192661, 59.26234470655345, 61.71157879994439, 133.7367209851503, 7.269427124898079, 51.246199192990595, 50.397413313084456, 6.330706854602944, 20.683328201200453, 16.92866540639968, 84.05845632427629, 42.2605339443226, 11.842750147568939, 52.80455087732921, 26.009815906588855, 47.15645834788644, 7.832315471018494, 7.777850210496636, 53.02391167212644, 5.4537444026787085, 9.318946106859942, 59.68258373379347, 18.80165267667467, 30.226690514202087, 75.02602908612134, 6.616557990425041, 20.486471868044447, 28.73275589560589, 21.505626321766044, 6.192464800594228, 78.71418483997736, 8.976686900292366, 45.62856779782057, 18.91028291978731, 58.098867872980605, 103.41295051310247, 61.90337650945557, 28.76055802550289, 85.86605715240474, 44.632552835199185, 148.9310486395116, 26.404153151659923, 17.113234366427747, 7.5492006129738085, 58.910379308121065, 28.696835920788725, 20.716085088085194, 74.00252958656522, 25.626930390173722, 89.18410676436855, 12.507662934715967, 27.953264232076513, 26.720189016449105, 41.3250519248443, 17.977027539005938, 38.40877928925866, 44.43546839252505, 5.325091596858714, 182.22881829215467, 49.49933173427383, 21.84040726184508, 23.02911236773043, 122.25295865629236, 46.48934381912201, 5.836619111364482, 8.26100340214397, 93.04603485424417, 37.317845114426746, 90.32870732199262, 16.729473992267486, 52.50041176054976, 5.267382934403948, 11.699199196046479, 11.70926584283615, 13.183328969917156, 114.18085873914549, 5.856558114020477, 13.97044753750662, 7.378043232026054, 81.45469701353153, 35.12548734958115, 72.58437612118357, 50.12673982597035, 5.5165698530812595, 129.58037371900747, 15.223336160202829, 16.43712480194, 19.896035103060875, 126.45078639159372, 55.68958277645643, 67.38003798700922, 88.44246618367816, 7.204462028066062, 8.346993963209117, 41.15214153724681, 5.154881692437397, 6.320592589803615, 10.311490848713936, 60.93536115053772, 98.887102358763, 19.405586731773575, 9.84931301136183, 9.560444027594981, 56.130001392891266, 55.730916728084836, 20.689419033581906, 35.174711366205926, 22.16018978995423, 5.132588142333002, 57.48619341622087, 21.28820367968894, 7.455695352799066, 24.556233957997943, 52.38728774921488, 107.26100279099384, 43.64940227113331, 7.399911935743767, 12.178309292805183, 24.874893157777638, 14.681048217682717, 12.61884151928426, 50.86922389028377, 52.48234928544635, 18.099885660315017, 16.26005281970341, 6.12045625899283, 24.988977528186922, 66.70707232668832, 32.91156356988192, 25.785029688979495, 20.45972453478079, 114.3610155509786, 5.3173602851560515, 14.878445803137556, 9.561854189222142, 5.185628741205166, 45.544407925401345, 58.72513881612284, 62.18330621573251, 18.029115543060573, 65.52282075922189, 26.70013552302353, 189.90275664527235, 47.60908128982793, 5.315575300547961, 11.26981788772802, 85.54351931489984, 44.700712447895285, 26.819060718801005, 7.07535730268091, 26.00872281344624, 6.12069552005562, 13.161827276972044, 6.89015232935409, 10.209016434641725, 80.43938647377546, 17.239656293437577, 27.5976398924014, 27.76291786542447, 91.38100761726626, 18.12642687483048, 47.548654811985735, 7.886539931480722, 82.72548178527835, 5.061621948088297, 157.4056016301874, 27.39823582227336, 31.510586055364797, 29.074941012942894, 17.30885585154204, 12.431343092212495, 41.54620536887203, 49.29755793347881, 15.81646256468435, 47.25865343506066, 39.5782545916548, 38.029917102193636, 63.90367825093995, 45.602613857678534, 11.910749208230257, 111.64980699843616, 71.78931038189052, 48.12649025447088, 11.973300298630415, 12.429211209703219, 5.916423023413965, 5.171553125821559, 20.00934247532549, 12.122087115032949, 76.71730368045046, 98.62450533339887, 57.22950638765849, 10.573010673997437, 11.740668232642545, 15.082975748113125, 12.679963296922, 43.9633996589988, 43.44133226692717, 15.469318476193095, 55.34693729995912, 55.07794424752562, 65.36410825485949, 10.421433623393822, 49.953903609970496, 112.20478183806951, 67.25392795681604, 8.029474730059734, 27.508607804379746, 121.2544179549594, 63.81055353172542, 14.246273517132796, 9.015400392699952, 45.49119482653433, 5.378139006532645, 12.988141821442484, 9.763176439263868, 20.089672362742405, 15.799226395259987, 13.38709941680496, 11.112245446470226, 10.700771973897858, 6.162582355275955, 21.428650826992023, 40.155051965887644, 69.7141335473303, 105.34543681311152, 116.62411458266817, 9.278261550889166, 14.061617888811734, 128.7659643337188, 5.197933094504755, 20.168171689190967, 8.417560567122585, 54.48995617842425, 24.38031800862211, ...])
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);
([3886516.5857592877, 3915059.375, 4012579.964078665, 4073967.1718105273, 4141618.3043125714, 4276350.187118473, 4276923.212093011, 4282064.0625, 4282099.194070748, 4285299.741063356, 4288205.39356049, 4291496.577961505, 4328030.659380638, 4331435.591527663, 4355718.75, 4412287.5, 4478375.698490111, 4480905.84242876, 4519680.83106024, 4569764.945855726, 4580291.909393995, 4624041.506099619, 4631670.371631174, 4659739.618688439, 4661423.989457216, 4666271.673699736, 4688610.227148999, 4720003.706359455, 4720503.125, 7726018.339119938, 7734897.228219802, 7739763.668149903, 7742239.136672677, 7986474.419456005, 8009072.679593718, 8015253.125, 8027441.843092257, 8028478.404275816, 8028505.1844622595, 8029228.125, 8029767.1875, 8030807.455236631, 8031297.7101317765, 8046257.906353066, 8048796.336404298, 8048810.071639356, 8048965.625, 8051075.839032956, 8051436.935633401, 8051613.82165339, 8052321.501967337, 8057760.9375, 8057943.189347216, 8058523.754914004, 8060671.412794742, 8060793.941513675, 8061834.375, 8063072.997189322, 8063131.525482287, 8063178.125, 8063564.0625, 8064753.055808273, 8066932.124861362, 8067089.313781884, 8067094.471899524, 8067142.404742354, 8068879.180113114, 8070396.136747729, 8074941.010601409, 8090283.849297478, 8093606.041869508, 8103793.75, 8105778.125, 8108599.392902198, 8229153.2299825, 8229943.218054411, 8230047.482132742, 8230094.902205475, 8230695.3125, 8231101.652223508, 8231104.6875, 8231773.4375, 8231986.641338936, 8232192.849019939, 8232207.306028311, 8232637.5, 8232898.4375, 8234902.642571378, 8244016.817094787, 8247314.927402067, 8247503.001516123, 8248378.125, 8248529.358986408, 8248629.6875, 8249973.765761722, 8250556.733579549, 8250998.859063237, 8251346.308378494, 8251486.297726287, 8252001.5625, 8252419.38791034, 8253239.04043732, 8253339.220411489, 8256348.649754914, 8257405.910719547, 8259413.791162759, 8259765.625, 8262543.299498789, 8263007.653732728, 8264460.845816385, 8264587.5, 8266006.25, 8269626.396517515, 8270340.304132788, 8275949.017617458, 8280846.875, 8297008.064275289, 8301596.556560012, 8305614.310243763, 8306411.518607405, 8320336.815027184, 8323634.101395859, 8327508.983040549, 8328040.419725776, 8329478.660787707, 8329825.913347428, 8331100.0, 8335976.939934372, 8336125.7264921395, 8336512.5, 8337184.689619694, 8337320.796896651, 8337594.443168844, 8337735.653827834, 8337811.1339547355, 8337944.34173832, 8338009.041274783, 8338099.881723413, 8338173.091694597, 8338205.642294515, 8338454.6875, 8338506.645535731, 8338518.943359012, 8338615.89376912, 8338773.346090288, 8338821.871966378, 8338835.196567238, 8338874.133356345, 8339065.500910137, 8339354.6875, 8339573.432278456, 8339889.0625, 8339943.544856939, 8340330.28643165, 8340470.3125, 8340575.406434416, 8344758.186402525, 8345287.720072621, 8345370.790362598, 8345589.0625, 8346697.311106316, 8346842.482920598, 8346887.5, 8347163.7186354585, 8347583.232838614, 8347629.184158862, 8347921.75615565, 8348220.3125, 8348252.072283707, 8348876.624459901, 8349359.197157675, 8349649.661672323, 8349903.587420115, 8350237.102615106, 8350984.014605108, 8351228.8904560115, 8351527.462495379, 8351649.260739006, 8353167.02208731, 8353176.5625, 8353670.202231747, 8354141.870584513, 8354270.768905105, 8354710.419183989, 8354843.359001728, 8354871.20202712, 8355184.919776371, 8355403.125, 8355437.678603193, 8355542.827656297, 8355789.3686133735, 8356150.013177247, 8356206.769144752, 8356251.3331921585, 8356295.46567726, 8356628.125, 8356644.894426673, 8356656.869476956, 8356783.753281812, 8356856.25, 8357590.278774353, 8357847.771153724, 8362603.125, 8362680.304393621, 8362858.044414924, 8363002.486478863, 8363403.062831888, 8364047.542154927, 8364391.136084032, 8364604.309145993, 8364707.394489868, 8365005.617234019, 8365101.41240677, 8365953.598553132, 8366302.448756541, 8367987.5, 8378478.961933587, 8378745.570510194, 8379126.249648369, 8379407.292436539, 8379892.723469065, 8380031.25, 8380060.661518178, 8380437.480586793, 8380638.626630258, 8381172.887973807, 8381387.5, 8381599.678804808, 8382017.327258359, 8382062.079898668, 8382264.656101415, 8383878.125, 8385349.116119206, 8385757.159636871, 8385766.3817876335, 8386933.802239148, 8387304.6875, 8387838.913484884, 8388191.442914323, 8388524.380263574, 8389588.705123197, 8389588.740086466, 8389896.952170352, 8390028.125, 8390148.86266088, 8390294.694026036, 8390319.804841844, 8390612.048225936, 8390823.470052913, 8390979.603762927, 8391604.225438103, 8391626.582103055, 8392020.3125, 8393061.238908468, 8393718.639479859, 8393829.573364459, 8393927.732630484, 8394156.673053842, 8394182.744612083, 8394242.781337976, 8394666.081947576, 8394803.1800383, 8395170.3125, 8395261.115644272, 8395308.290726008, 8395589.415243639, 8395612.5, 8395664.0625, 8395692.1875, 8395706.027063336, 8395748.4375, 8395871.875, 8396027.509846544, 8396169.435485901, 8396217.253508251, 8396298.008570742, 8396348.062267601, 8396348.4375, 8396374.380648352, 8396419.0852686, 8396514.0625, 8396525.86659781, 8396627.310904339, 8396767.38018292, 8396894.876419632, 8396922.314691382, 8397062.01131588, 8397117.1875, 8397281.091733765, 8397343.354655115, 8397372.16062686, 8397521.875, 8397535.536184369, 8397661.092516167, 8397687.169386355, 8397808.172837207, 8397819.051902896, 8397918.258403882, 8397976.154517401, 8398011.063958643, 8398021.503066713, 8398027.525166359, 8398037.869269257, 8398050.398117732, 8398471.875, 8398529.319332771, 8398540.625, 8398759.313777171, 8398880.992409548, 8399057.177387225, 8399558.636808544, 8399724.28307117, 8399909.375, 8399921.742930232, 8400101.5625, 8400291.517185012, 8400375.0, 8400480.857701303, 8400505.11078118, 8400537.5, 8400964.7048234, 8401087.721987132, 8401187.496884221, 8401449.509541001, 8401567.994726865, 8401721.800070833, 8401777.59293345, 8402245.46362218, 8402282.268159444, 8402425.835054034, 8402828.660492422, 8403042.1875, 8403388.467400584, 8403421.875, 8403655.895027842, 8403810.468209881, 8403821.073251577, 8404415.625, 8405039.502579454, 8405366.748979213, 8405981.72363263, 8406028.342239851, 8406131.812924925, 8406584.375, 8406837.18512352, 8408038.032283535, 8408087.653739609, 8408304.520014752, 8412218.211062575, 8412478.119690944, 8413945.813708216, 8417987.056419691, 8418526.491706979, 8418595.3125, 8420215.955295991, 8420256.568345694, 8427234.375, 8435967.1875, 8484554.6875, 8497213.945740849, 8506098.4375, 8515086.706583686, 8541869.525082784, 8547506.25, 8586458.4810294, 8589604.6875, 8591175.049460653, 8593571.875, 8601565.345832959, 8607690.598256955, 8616595.150020834, 8636367.68779615, 8637437.5, 8637457.471102891, 8655194.90149318, 8655582.331367802, 8656876.204856064, 8666469.947166676, 8667332.948394725, 8668480.396530895, 8669265.604364524, 8674151.5625, 8675384.375, 8676522.87141344, 8677045.3125, 8677410.9375, 8677888.144063465, 8678299.59400435, 8678428.727549773, 8678486.945978317, 8678552.422469838, 8678740.43395565, 8679169.778999712, 8679496.875, 8680525.54768818, 8680671.875, 8680879.608149605, 8680998.4375, 8681203.125, 8681453.16047611, 8681461.763557047, 8681483.912530368, 8681573.779374352, 8681710.904453857, 8681864.70159142, 8681888.62667475, 8681915.13133995, 8681985.173103388, 8682010.400267744, 8682013.934507271, 8682019.674661838, 8682019.776650108, 8682021.787329363, 8682035.074372165, 8682048.160093093, 8682112.701439993, 8682249.703143725, 8682260.612208813, 8682329.410093099, 8682469.5838979, 8682594.48651594, 8682623.4375, 8682633.452317787, 8682721.43910852, 8682732.8125, 8682808.833086682, 8682810.379829071, 8682996.2667203, 8683192.988685891, 8683215.34063404, 8683556.595773684, 8683635.327799354, 8683671.026776081, 8683854.6875, 8684053.317686545, 8684237.417565653, 8685728.973594947, 8685758.253081782, 8685940.465673642, 8685971.875, 8686062.991396109, 8686843.438359132, 8686916.47847475, 8687455.436060136, 8687959.798469704, 8688131.552149957, 8688338.726806303, 8688462.02741237, 8688537.219525967, 8688574.22757977, 8689031.240653027, 8689076.82008288, 8689082.8125, 8689125.118455188, 8689473.326402059, 8689623.079916764, 8689675.338309936, 8689692.1875, 8689728.329897067, 8689781.25, 8690220.106292862, 8690250.870859377, 8690329.297343094, 8690339.0625, 8690918.706408253, 8691348.317931369, 8691441.62887951, 8692239.003148442, 8692277.999223283, 8695792.395701049, 8696156.25, 8696167.938229866, 8696178.679731445, 8696217.1875, 8696356.62742152, 8696828.125, 8696876.028370349, 8697051.396846112, 8697129.6875, 8697145.3125, 8697160.9375, 8697235.751168625, 8697332.8125, 8697502.69338827, 8697524.80573808, 8697645.918300554, 8697775.0, 8697793.522797458, 8697800.049211083, 8697863.558344558, 8697901.5625, 8697979.6875, 8698048.714868687, 8698079.324444916, 8698107.940946156, 8698146.623466996, 8698245.20987914, 8698274.138222493, 8698392.1875, 8698563.301247735, 8698566.743894964, 8698626.5625, 8698635.139945587, 8698690.06882959, 8698692.574087782, 8698737.5, 8698750.0, 8698813.170609493, 8698832.15177907, 8698845.3125, 8698854.732389774, 8698910.9375, 8698934.822774986, 8698986.618392494, 8698996.875, 8699098.4375, 8699114.0625, 8699157.8125, 8699172.77517077, 8699260.866785761, 8699340.625, 8699342.7737978, 8699413.147612095, 8699420.183750175, 8699429.130359104, 8699506.25, 8699523.028052308, 8699535.730042359, 8699540.57205462, 8699547.617466131, 8699548.401316809, 8699554.6875, 8699555.666683812, 8699558.748426564, 8699559.611240251, 8699569.609458875, 8699587.489365662, 8699593.75, 8699610.22566076, 8699613.790393073, 8699684.375, 8699714.35925401, 8699718.75, 8699809.375, 8699816.900051601, 8699829.893499432, 8699866.909275124, 8699882.8125, 8699939.451279549, 8700033.515797192, 8700039.0625, 8700110.449939765, 8700123.4375, 8700131.25, 8700184.178909495, 8700218.75, 8700228.02606023, 8700288.595344434, 8700288.831789078, 8700309.268822063, 8700364.095309215, 8700370.60692273, 8700373.4375, 8700375.0, 8700459.485147607, 8700494.11155967, 8700499.025326591, 8700509.375, 8700531.93401576, 8700540.699109092, 8700549.233531985, 8700592.1875, 8700607.8125, 8700608.236249974, 8700616.66770304, 8700650.0, 8700653.077622132, 8700664.226468053, 8700665.625, 8700668.75, 8700678.125, 8700745.3125, 8700776.5625, 8700781.78736909, 8700787.305355975, 8700854.539342564, 8700882.286800345, 8700907.742101768, 8700910.534323253, 8700953.125, 8700960.913470633, 8700961.414487425, 8700962.5, 8700965.045915043, 8700992.1875, 8701021.875, 8701024.216488102, 8701064.849712368, 8701073.4375, 8701089.023924192, 8701110.503093366, 8701219.48936397, 8701241.326930404, 8701271.245169625, 8701285.11452936, 8701329.63672081, 8701348.016979747, 8701373.4375, 8701387.030002713, 8701423.4375, 8701427.505359381, 8701436.613856973, 8701499.184226533, 8701501.277968809, 8701538.52933716, 8701598.96667265, 8701599.543763, 8701601.114145197, 8701608.694826033, 8701620.292021878, 8701647.733372873, 8701651.5625, 8701674.811362937, 8701675.527396047, 8701702.37315701, 8701732.328706603, 8701751.5625, 8701758.39413033, 8701788.452058282, 8701815.404177178, 8701817.039614782, 8701823.052204585, 8701823.4375, 8701843.63005656, 8701847.22215263, 8701857.542474922, 8701878.562270466, 8701886.141464382, 8701901.5625, 8701911.47230181, 8701915.53691902, 8701917.1875, 8701925.81142615, 8701927.830145786, 8701942.684697403, 8701945.3125, 8701947.342928343, 8701949.366759948, 8701963.883637896, 8701967.1875, 8701973.634693751, 8701984.105147488, 8701989.0625, 8701991.511716625, 8702015.318266204, 8702045.3125, 8702049.962797012, 8702052.775142806, 8702053.69554712, 8702059.222405182, 8702064.0625, 8702070.005119119, 8702079.658083871, 8702080.035873448, 8702102.950566692, 8702110.9375, 8702112.253657902, 8702112.731102694, 8702115.534792418, 8702119.831011666, 8702167.1875, 8702167.83630061, 8702173.832053851, 8702194.493425926, 8702208.196230102, 8702218.523756018, 8702236.61058948, 8702245.3125, 8702267.176522871, 8702267.1875, 8702268.012435531, 8702268.75, 8702276.501442948, 8702282.8125, 8702315.625, 8702337.570148325, 8702354.49982363, 8702376.020223375, 8702401.319620263, 8702409.481463516, 8702411.47261931, 8702418.4258822, 8702437.157832596, 8702447.918864997, 8702448.581989955, 8702459.375, 8702488.96401326, 8702497.364216294, 8702522.791665128, 8702523.791126052, 8702543.75, 8702552.804530758, 8702559.247326864, 8702570.181711964, 8702574.58767783, 8702605.97005574, 8702623.981594793, 8702631.849559873, 8702632.609091701, 8702636.643200945, 8702640.83265914, 8702660.880764978, 8702665.625, 8702673.183061015, 8702678.125, 8702690.625, 8702696.496067066, 8702696.797249535, 8702705.738258442, 8702707.72989688, 8702715.048821919, 8702717.1875, 8702731.626006914, 8702732.746485686, 8702742.072238699, 8702765.975028485, 8702774.500794182, 8702779.6875, 8702785.158285648, 8702786.29004224, 8702813.109722314, 8702814.956777142, 8702821.427264648, 8702841.035419662, 8702854.611290844, 8702866.437858695, 8702877.07188994, 8702940.811668087, 8702941.881998224, 8702946.875, 8702975.223295515, 8702976.417843575, 8702983.897924332, 8702996.875, 8703005.754213242, 8703012.50597178, 8703019.524943197, 8703036.441358427, 8703047.356829846, 8703087.5, 8703090.362917671, 8703121.65609213, 8703156.620059462, 8703160.9375, 8703203.192794539, 8703212.5, 8703215.22530806, 8703228.125, 8703228.886071391, 8703235.324023943, 8703248.4375, 8703249.734258192, 8703249.8827017, 8703252.753424205, 8703253.125, 8703256.25, 8703270.3125, 8703277.409267435, 8703284.375, 8703289.5970234, 8703293.75, 8703303.125, 8703309.861660868, 8703325.977303013, 8703344.18908019, 8703348.4375, 8703359.375, 8703365.385172566, 8703368.75, 8703396.73342074, 8703412.5, 8703417.779363794, 8703419.208282828, 8703421.875, 8703427.936753942, 8703439.047730777, 8703443.75, 8703447.6174945, 8703481.25, 8703513.926982947, 8703539.841504278, 8703543.14280061, 8703548.4375, 8703561.39069567, 8703563.447168866, 8703565.625, 8703568.298425596, 8703570.895750342, 8703576.558715984, 8703593.75, 8703595.77790748, 8703600.0, 8703611.905824013, 8703624.210905531, 8703626.5625, 8703636.531566259, 8703671.757749163, 8703673.706776615, 8703692.0355826, 8703693.75, 8703696.875, 8703697.855912888, 8703699.54003643, 8703717.021436496, 8703729.14971595, 8703730.421257949, 8703791.17311733, 8703795.234532425, 8703796.618227718, 8703818.030906048, 8703818.75, 8703820.3125, 8703830.750484431, 8703839.0625, 8703892.1875, 8703910.471625084, 8703922.340744764, 8703925.0, 8703934.006509284, 8703937.801348647, 8703940.576324211, 8703948.4375, 8703975.0, 8703975.910246478, 8703976.963916859, 8704015.625, 8704024.213065289, 8704033.149743902, 8704037.842715768, 8704068.197049357, 8704077.856137734, 8704092.746825587, 8704115.34455115, 8704136.831273155, 8704150.0, 8704168.75, 8704201.5625, 8704239.0625, 8704249.655046754, 8704317.326440409, 8704361.009526476, 8704405.031393735, 8704425.761416564, 8704473.416726457, 8704540.625, 8704645.3125, 8704692.1875, 8704695.619145663, 8704889.175027667, 8704895.3125, 8704919.856752038, 8705883.223741619, 8708369.718977895, 8708385.485575072, 8711480.75844842, 8711961.761747729, 8712397.42996597, 8712608.071499765, 8712754.570134785, 8713187.5, 8713535.35297533, 8713662.342959218, 8717041.751869738, 8717112.597347038, 8718234.375, 8718624.935810063, 8719469.885272149, 8719648.198047007, 8720096.18198917, 8720108.166194296, 8721426.5625, 8721710.338023497, 8721766.207094224, 8721820.095688853, 8721854.61744439, 8722699.219731392, 8722921.875, 8723093.75, 8723364.700985797, 8723600.748872517, 8723787.805508519, 8723862.291125096, 8724472.711418645, 8724645.3125, 8724898.28165237, 8725420.769547157, 8725467.1875, 8725535.20277448, 8725562.483355545, 8725787.760524053, 8725828.974464944, 8725887.5, 8726032.8125, 8726128.016482787, 8726185.002405202, 8726802.918211818, 8727430.313343685, 8727603.663724238, 8727878.125, 8728569.522942076, 8728811.747844145, 8729010.541692456, 8729103.106470726, 8729348.3449253, 8729365.446698356, 8729449.858352073, 8729561.245226303, 8729830.225146098, 8729841.227904426, 8729852.445305377, 8729871.875, 8729988.26626279, 8730005.187108625, 8730042.73794943, 8730065.625, 8730481.357225545, 8730565.625, 8730591.345782615, 8730604.6875, 8730648.033457933, 8730720.3125, 8730743.690386267, 8730893.75, 8731140.057994874, 8731297.382756379, 8731302.262212053, 8731318.75, 8731605.965107722, 8731613.083845384, 8731634.056172522, 8731671.875, 8731818.336615602, 8731971.614269864, 8732160.9375, 8732222.324176056, 8732518.75, 8732615.625, 8732704.6875, 8732973.918584276, 8733189.761251811, 8733409.107255612, 8733440.888882045, 8733580.587179136, 8733589.617422381, 8733596.875, 8733653.125, 8733683.325726172, 8733760.551059268, 8733845.66611504, 8733912.472379731, 8734024.245829942, 8734169.969952371, 8734488.442806127, 8734598.401753498, 8734721.875, 8734743.253170053, 8734785.9375, 8734816.683203341, 8734864.51209687, 8734954.6875, 8734978.125, 8735002.604968514, 8735237.446480643, 8735326.700160794, 8735381.25, 8735420.117300075, 8735471.476038603, 8735534.375, 8735618.207690878, 8735666.559302986, 8735761.40751003, 8735838.409279488, 8735842.395693887, 8735887.02214193, 8735945.302585732, 8735952.833537657, 8736266.31203204, 8736627.61851489, 8736888.691559508, 8736923.4375, 8737098.281030746, 8737142.150219427, 8737149.936476065, 8737165.373263989, 8737176.5625, 8737243.533184927, 8737257.168566948, 8737320.552241683, 8737387.602447314, 8737455.997739147, ...], [69.26584771535191, 79.57443805001225, 80.07721430975315, 109.19951421275263, 22.052564582652238, 49.95674230941816, 14.146748919543311, 75.32613949879467, 30.40907691640432, 38.4931924540277, 94.2244725282876, 13.918546258844467, 6.398327612999549, 128.17519303581784, 41.89251684929629, 34.49353565644574, 141.72201245775398, 10.545281155795983, 22.34171574357336, 19.8746226642811, 190.0339362565064, 50.287034033737704, 11.221407845050193, 24.523513698412465, 17.565934600021027, 6.242096179586295, 10.173403075195713, 17.742661040009928, 85.1949066027442, 22.430703433020668, 9.649064356108141, 13.62501929379101, 13.210173301413363, 67.9725983158079, 19.255838319220317, 45.42341561389201, 10.628913455100811, 27.027710541240893, 12.004813161435779, 64.69386326480381, 61.698120948013376, 63.234523354543704, 8.783798199782536, 30.71411967885505, 21.116537940522186, 9.999202623353169, 52.55282101339855, 8.786414785333884, 38.602097308688684, 78.5188133956475, 13.687771767099031, 55.405947643552324, 63.68437631624629, 11.66294713453208, 13.430762687755248, 9.49876454944727, 78.45839524387999, 22.109940821207463, 16.106904119244547, 29.50790351458977, 42.14194841106651, 14.684182134388703, 19.80542937768803, 7.696722818998335, 36.71949887098279, 71.54721655034683, 21.41972725098956, 19.405586731773575, 11.789126584446622, 13.25619980592407, 24.999743591497417, 45.73296206489848, 52.576747293577604, 68.89365057549567, 74.37740604573492, 5.775642073141251, 60.27767663474071, 7.461289147523651, 75.22139060150731, 11.27090756771883, 56.794111124783356, 80.93458835193206, 10.00703766117038, 13.446516604664025, 13.30835648049175, 40.16411491245418, 58.27005111436415, 10.448999330605819, 13.695564977659771, 25.72650633970047, 12.545148446343902, 79.81248545582108, 56.98591243629616, 54.64501203033514, 101.44529161743962, 22.12419097789364, 93.98672245532384, 5.506198357062712, 25.230988120002273, 73.71059961750399, 101.24937216342842, 28.095528049809328, 9.468593515307317, 73.87631284272793, 19.101378059531825, 10.728518511171982, 86.63436502621506, 64.97902895015517, 89.43833630594699, 26.83433562395013, 89.16267554374359, 106.45594176807538, 145.54305627270818, 108.27315687608368, 17.735100376061364, 44.9977945819571, 18.863527960309, 54.46244297949791, 11.538361651202857, 31.505891434097922, 25.019418743617877, 6.0601015490447665, 58.70481892440753, 36.836927393562945, 17.47071687533748, 23.668258276021497, 64.0388252448025, 11.77378501241908, 10.03183236117848, 78.58903018138713, 31.85551273803133, 37.90959558420533, 18.460131881638517, 24.15194276680588, 6.803371419780002, 12.198459962681024, 13.87436133713475, 39.07743209523843, 90.02236015270569, 6.647958722645704, 35.28064500209346, 7.752847760630263, 11.444015993214368, 6.530064987247387, 26.83903500075783, 11.122968365159187, 19.38498666952077, 20.76578478420361, 13.16556326192293, 52.89905266300557, 70.28194111069122, 61.89943492204369, 25.04306245512744, 11.323986311159032, 31.38662343759098, 22.754227081898637, 23.603336236717603, 15.85236759703242, 15.13546452430202, 48.96989142542638, 25.374280509486976, 20.584261747132206, 46.892010980921405, 23.206150102013627, 16.82875213795356, 13.316904748281457, 26.377885416601313, 45.53303918064794, 17.320428281615477, 9.384349093620608, 126.39223760212717, 23.273201088730403, 8.54724962842281, 5.905530168418143, 23.008764246418647, 18.96633143425133, 5.578414865003021, 41.35920494558593, 14.346412288670846, 62.57085401318101, 26.519997446997603, 23.53704804501444, 25.324243159132912, 27.502104232066284, 10.567008893777071, 19.744126707510713, 16.37684631831727, 50.2301452814928, 40.51500810828593, 9.938477359373417, 16.906513458460726, 8.2935579883089, 5.484498904584667, 36.87547867756498, 15.559363893877961, 29.280799248535637, 13.556167630848902, 17.97892402841811, 43.065387117625825, 99.25029454587438, 10.62647496223271, 46.42789003109442, 59.74151154729882, 17.962649040317046, 5.959859777641103, 39.67969137555819, 82.57601417833274, 18.286432111338318, 9.804482597732376, 106.5612520866944, 5.382730772521063, 13.239071320230039, 48.11605013343056, 17.116679992469304, 19.898394097068934, 60.21480415786552, 11.893719855664694, 16.025435989658373, 18.406629822821504, 63.19843024353442, 17.239761870139347, 56.35784183532068, 28.721737744454217, 73.37278244678812, 22.619852687748516, 8.015891835394857, 30.778093592569974, 10.660217226338137, 16.740647076917675, 13.550329105327013, 137.1661229073412, 91.49116972832178, 7.3120480075544325, 7.383025252797454, 56.379677088112864, 19.79642434020755, 91.16175327805101, 105.67169801393793, 145.81490643926844, 20.376408560364162, 60.26285375495915, 69.32441906075108, 67.59583498586554, 42.039935760709284, 16.85430832750039, 18.90957708622337, 13.30512097147614, 10.488063986514016, 5.942245451697041, 26.97147782664489, 82.3472094141816, 11.158486508009375, 44.39348376854853, 5.21116950828178, 26.515797362630146, 161.02054327653167, 6.687622147351478, 67.43462836610594, 14.688915567902821, 69.04326455272962, 53.42242401782035, 33.4610209162029, 40.26479504878119, 15.66695951635644, 5.850233057877275, 11.727785837340766, 47.0783069067474, 57.237430920093225, 78.52808005945536, 24.78769633255146, 49.75256433706869, 82.79136989657815, 25.88699412545481, 51.52714354533241, 48.448434119107375, 8.072069650564833, 54.400392599191306, 77.87890597730376, 13.346011665581177, 17.645198891541106, 41.91679144098741, 98.96427623253936, 25.319868490522147, 22.009137805043753, 56.53003936870355, 50.39708864463837, 8.044021171801884, 32.20710235602529, 14.37073899299062, 116.04961930247205, 131.02954008581128, 66.6711394419542, 22.537452976925998, 7.660283419181589, 48.389967546155304, 55.799463065315834, 6.535481978743932, 42.13507631311393, 73.56822824388193, 139.11629128735268, 13.691031015471108, 6.1942759246742405, 16.564372477941337, 127.60661031629914, 54.68890793710483, 22.917376490836272, 85.88736201041422, 27.36926957428833, 123.91176469254133, 20.243450042037825, 5.761307476342812, 116.54826010554979, 43.390799066605865, 33.60485345830372, 84.14546224951815, 19.94720332418677, 94.53765808704644, 63.243531228593184, 5.414906021380359, 29.461600455599246, 61.51242529163426, 15.860978571933876, 86.38004637605167, 8.043194496389901, 12.677361684044236, 22.402131929672805, 85.79786358766054, 17.976167422894413, 132.29520860623967, 19.489210356860397, 13.839214395884724, 60.69758138271122, 8.874264415549339, 70.0935588847613, 20.711864016111004, 66.20701253835846, 7.903694498777333, 51.018033640388495, 5.140020233929441, 8.067538902073027, 95.33467387544671, 100.6675529931583, 8.60852303312974, 53.915177916988654, 27.36430865464928, 8.589654191922957, 9.464872222184768, 42.25987936952649, 31.41650957429942, 42.54024640574423, 75.16640965413539, 21.816172596677504, 59.56223696341909, 53.74854704867976, 6.123134058324393, 104.59069962510078, 61.29658214494781, 32.241907546987335, 45.476034490944315, 10.94998074142264, 32.9279985342588, 18.992692537391502, 19.03649503686513, 28.97126216706028, 65.48622934827819, 93.19736774186529, 15.133442135896583, 30.662144216010102, 83.74552955494124, 14.840547855621463, 7.079385931384367, 17.266448278327843, 81.89222800810451, 10.632956006597956, 6.046376148560932, 40.841107978193904, 23.041325981679993, 20.352056989149922, 5.29530348827849, 12.452090842666598, 7.116037762941574, 110.24434339471003, 95.37308855625896, 76.01075566497255, 44.98435281742044, 53.43206573205228, 21.304282407057496, 22.485061899938145, 15.162967414102269, 19.012035840397584, 25.296046150616768, 25.24997471756334, 30.931284134044766, 80.53822178412766, 129.0826730058581, 58.611802352855925, 29.535423399685357, 61.54227799800946, 88.01846413556883, 7.616119381862169, 110.53499916414998, 22.260991532785052, 26.25167116364609, 27.887249427085884, 21.86525204189751, 91.52582094556857, 26.089235434663518, 14.759630570081937, 26.029223185915864, 26.228283727661566, 20.22011338912076, 87.18904173290623, 129.8106997394474, 12.519516882372805, 40.80213305172339, 47.48019583639103, 6.230407375989062, 75.14731501865714, 24.04369193571773, 85.31134861620666, 72.03752337841907, 42.94233709934383, 18.108442174144272, 58.288897985366454, 112.73941508383953, 6.659934489528636, 6.98218724095877, 35.257200076098506, 12.66314272260295, 56.437826693665826, 6.124810199395037, 13.035318225286977, 52.27929069802733, 81.3804205682855, 22.38102169857069, 26.99412008526198, 20.216185907357048, 67.55494069768409, 25.730930457818406, 29.585624425626687, 51.84904415225944, 7.494281765934501, 19.6339172885573, 28.303725834391432, 11.861096304452929, 43.19222791741396, 5.910694889769437, 21.77098228689106, 10.715891662378121, 26.24671460491783, 5.1303024786076366, 11.55569857148002, 139.41626432711476, 101.11460626919397, 28.000232144383276, 13.73378302006636, 16.409479063863895, 60.853928040911384, 6.519697592430668, 30.182924754116044, 5.03808599639628, 10.195087272677275, 177.49935843126968, 54.82347818828744, 7.587547017723311, 19.3804229608618, 20.92760398619728, 41.535560291890995, 56.153621010655606, 11.469517561112054, 84.17779814470705, 34.507584571038855, 50.805566638191706, 49.78174433660407, 12.072724051546539, 50.68651033508808, 8.917216107351807, 89.63715263186982, 30.376410427240476, 34.23436712191604, 42.576602991880755, 6.243940318756225, 89.78802612004637, 22.203560002173077, 5.922664701555713, 29.206658156791946, 61.9132425581515, 24.727407572392917, 38.36822147909201, 8.938631717152235, 33.88135880803674, 74.95162228575717, 11.590815877203758, 62.224816846994116, 90.44316572768429, 51.50341065440469, 37.76211847869947, 50.51844706625175, 76.8455087945435, 56.49214332757372, 41.95401180341622, 39.063419719445626, 44.5727038158206, 13.174796789471785, 30.021127074895713, 35.919922327759025, 50.77881630736302, 23.625409478526976, 10.23127662090495, 46.021862481616395, 11.198604902049835, 82.77126861221349, 43.12640277618989, 107.36993209706566, 66.38573671384084, 46.42727604680901, 95.72644510147309, 60.43437274752899, 43.810965627700625, 52.10236009962985, 166.3445305797581, 17.772807844191213, 103.4270388843884, 170.78163193331616, 8.900910066683535, 157.82286340922562, 22.446610454103812, 9.161937395701841, 9.28703254436169, 20.800416222293574, 27.828430563465528, 28.848771063494965, 47.92100792852244, 29.183184412002227, 91.91757422928286, 58.53411985985382, 28.316189958528636, 28.976912602931645, 41.25700820146876, 233.21803693664506, 56.82751291453719, 30.239122190812008, 44.320174102113775, 55.014493573052654, 56.72262024570284, 11.465723193551998, 91.6455641439512, 83.29952647401242, 7.227543000297007, 7.879087004341469, 41.14296328624656, 17.17385744186687, 46.556393457595654, 83.29219020895852, 34.832257466932646, 37.19702127606474, 35.96565202694503, 21.827119731442618, 24.678090088464465, 26.588424327014444, 15.068054980755747, 127.47263014646296, 45.42739005907217, 112.82340920845897, 128.59242331635272, 20.05741054426494, 5.1102040499094, 44.744967225967315, 18.3985239487113, 23.21463121299818, 19.191531153072106, 51.68159943429151, 51.93765072633828, 19.192900923263178, 10.402044841910001, 42.14933158059756, 62.27623974907837, 8.375232399271978, 131.62155032810986, 45.01337930321788, 72.47213888677541, 71.41649444939688, 79.01833766966405, 21.712928252384266, 89.12531209569899, 188.80051647583588, 28.190460316662, 14.679805812294182, 22.516582295120923, 84.46335476047605, 155.75926735303034, 110.72192820059091, 104.56501283474373, 13.114546773105245, 55.066776007625386, 64.39480958826698, 19.065150755677926, 19.125864111626914, 42.43471772578382, 72.6429706235913, 83.07730572408418, 18.779487431529915, 12.436272470300691, 60.8044784145886, 37.054844191742895, 31.64990031970334, 22.324367955236923, 48.347010645741506, 34.51392930304564, 110.26388374323753, 13.009901801921252, 8.679855378846332, 10.054163648184737, 83.26125690006694, 29.95889996837535, 183.23190517287995, 14.404255794186334, 44.32637273546972, 104.3830793563967, 28.12588037381826, 143.61017285641122, 37.152454302940775, 64.03115070347812, 14.314920721382943, 19.301717496496657, 21.656307668724104, 41.91281856432356, 8.620124262203241, 68.60380500789888, 72.47236330680279, 25.909892472902502, 7.023723223722421, 99.78554865050262, 9.232002458706413, 12.547787611970643, 24.141332979568027, 16.918947926165803, 11.462219483125196, 77.73146377377613, 5.109129497904403, 72.79844342285958, 55.64520077943487, 19.307557537022433, 60.262875992945496, 102.3869801931168, 68.10798342681707, 8.550562193893226, 6.024633651517396, 70.16171760115733, 50.9961874410033, 13.944318341340022, 44.23159038326462, 81.70045849352368, 12.869088492641575, 23.66510614574347, 71.73845445198576, 104.75458582348242, 6.433611781418414, 26.78643521313547, 7.548963658449525, 31.5325764291046, 46.90780317865772, 38.72178298007033, 101.07828610362901, 25.499127164373633, 52.35954343870451, 24.461230151632893, 5.298279636841603, 20.81079087155433, 13.299700096408618, 34.74326977767589, 18.166425474061366, 61.7725801863973, 30.641311806833247, 91.92981154640862, 45.92381114397317, 7.866284832054869, 122.1215799487805, 23.324028472138373, 82.57228639132245, 52.03088681223069, 47.13965606143805, 42.03842824905986, 75.73403521137732, 86.11647763686985, 47.63584906423179, 33.14426192613924, 13.211732655703628, 55.66024683407994, 18.96550057986951, 17.466810359507026, 126.9417541275526, 23.22665179505187, 66.59005958601605, 11.361322846801105, 58.138858067215054, 14.578957206095716, 17.20397419480897, 8.839131790490626, 5.633911792496087, 57.18147964748094, 8.124079252775678, 109.36094727533228, 14.465387196050425, 10.53908044207008, 24.010351666755295, 5.988231809967311, 5.05179449815784, 91.13632894878252, 12.444664741345033, 95.58871937230776, 103.99868890994875, 86.3427762220976, 62.06178314514489, 89.19309091704133, 49.988819025009, 9.030307952812525, 75.83757950751306, 15.268785078859734, 51.034869183641256, 13.12214439301494, 90.55403720586679, 7.223929317292474, 8.251973660213787, 26.43703704709591, 11.722762169894612, 13.328221639991808, 193.8987315670844, 6.930652483245977, 62.75928286150724, 25.864250820990527, 45.02193665090508, 39.59952341942713, 35.44204987697837, 8.246683654048397, 184.81127577086545, 6.869649675661203, 6.801354532307545, 5.195707904735869, 123.48271714894938, 45.40932517021863, 5.286639738083032, 10.455785077000064, 33.89845928419611, 47.08743637024641, 14.964320005470348, 5.183811176187086, 17.286663351854045, 5.850513008076435, 31.713597491197678, 24.247479904621628, 50.39170148944349, 25.36245060962453, 86.48347199706721, 121.03983598696577, 55.389827089988856, 22.55570034414882, 80.94134558057043, 112.33314574313772, 19.615667149908568, 75.04602192325633, 81.07198343509266, 10.949181645420795, 10.592666770481744, 61.105753729216275, 92.31811514192661, 59.26234470655345, 61.71157879994439, 133.7367209851503, 7.269427124898079, 51.246199192990595, 50.397413313084456, 6.330706854602944, 20.683328201200453, 16.92866540639968, 84.05845632427629, 42.2605339443226, 11.842750147568939, 52.80455087732921, 26.009815906588855, 47.15645834788644, 7.832315471018494, 7.777850210496636, 53.02391167212644, 5.4537444026787085, 9.318946106859942, 59.68258373379347, 18.80165267667467, 30.226690514202087, 75.02602908612134, 6.616557990425041, 20.486471868044447, 28.73275589560589, 21.505626321766044, 6.192464800594228, 78.71418483997736, 8.976686900292366, 45.62856779782057, 18.91028291978731, 58.098867872980605, 103.41295051310247, 61.90337650945557, 28.76055802550289, 85.86605715240474, 44.632552835199185, 148.9310486395116, 26.404153151659923, 17.113234366427747, 7.5492006129738085, 58.910379308121065, 28.696835920788725, 20.716085088085194, 74.00252958656522, 25.626930390173722, 89.18410676436855, 12.507662934715967, 27.953264232076513, 26.720189016449105, 41.3250519248443, 17.977027539005938, 38.40877928925866, 44.43546839252505, 5.325091596858714, 182.22881829215467, 49.49933173427383, 21.84040726184508, 23.02911236773043, 122.25295865629236, 46.48934381912201, 5.836619111364482, 8.26100340214397, 93.04603485424417, 37.317845114426746, 90.32870732199262, 16.729473992267486, 52.50041176054976, 5.267382934403948, 11.699199196046479, 11.70926584283615, 13.183328969917156, 114.18085873914549, 5.856558114020477, 13.97044753750662, 7.378043232026054, 81.45469701353153, 35.12548734958115, 72.58437612118357, 50.12673982597035, 5.5165698530812595, 129.58037371900747, 15.223336160202829, 16.43712480194, 19.896035103060875, 126.45078639159372, 55.68958277645643, 67.38003798700922, 88.44246618367816, 7.204462028066062, 8.346993963209117, 41.15214153724681, 5.154881692437397, 6.320592589803615, 10.311490848713936, 60.93536115053772, 98.887102358763, 19.405586731773575, 9.84931301136183, 9.560444027594981, 56.130001392891266, 55.730916728084836, 20.689419033581906, 35.174711366205926, 22.16018978995423, 5.132588142333002, 57.48619341622087, 21.28820367968894, 7.455695352799066, 24.556233957997943, 52.38728774921488, 107.26100279099384, 43.64940227113331, 7.399911935743767, 12.178309292805183, 24.874893157777638, 14.681048217682717, 12.61884151928426, 50.86922389028377, 52.48234928544635, 18.099885660315017, 16.26005281970341, 6.12045625899283, 24.988977528186922, 66.70707232668832, 32.91156356988192, 25.785029688979495, 20.45972453478079, 114.3610155509786, 5.3173602851560515, 14.878445803137556, 9.561854189222142, 5.185628741205166, 45.544407925401345, 58.72513881612284, 62.18330621573251, 18.029115543060573, 65.52282075922189, 26.70013552302353, 189.90275664527235, 47.60908128982793, 5.315575300547961, 11.26981788772802, 85.54351931489984, 44.700712447895285, 26.819060718801005, 7.07535730268091, 26.00872281344624, 6.12069552005562, 13.161827276972044, 6.89015232935409, 10.209016434641725, 80.43938647377546, 17.239656293437577, 27.5976398924014, 27.76291786542447, 91.38100761726626, 18.12642687483048, 47.548654811985735, 7.886539931480722, 82.72548178527835, 5.061621948088297, 157.4056016301874, 27.39823582227336, 31.510586055364797, 29.074941012942894, 17.30885585154204, 12.431343092212495, 41.54620536887203, 49.29755793347881, 15.81646256468435, 47.25865343506066, 39.5782545916548, 38.029917102193636, 63.90367825093995, 45.602613857678534, 11.910749208230257, 111.64980699843616, 71.78931038189052, 48.12649025447088, 11.973300298630415, 12.429211209703219, 5.916423023413965, 5.171553125821559, 20.00934247532549, 12.122087115032949, 76.71730368045046, 98.62450533339887, 57.22950638765849, 10.573010673997437, 11.740668232642545, 15.082975748113125, 12.679963296922, 43.9633996589988, 43.44133226692717, 15.469318476193095, 55.34693729995912, 55.07794424752562, 65.36410825485949, 10.421433623393822, 49.953903609970496, 112.20478183806951, 67.25392795681604, 8.029474730059734, 27.508607804379746, 121.2544179549594, 63.81055353172542, 14.246273517132796, 9.015400392699952, 45.49119482653433, 5.378139006532645, 12.988141821442484, 9.763176439263868, 20.089672362742405, 15.799226395259987, 13.38709941680496, 11.112245446470226, 10.700771973897858, 6.162582355275955, 21.428650826992023, 40.155051965887644, 69.7141335473303, 105.34543681311152, 116.62411458266817, 9.278261550889166, 14.061617888811734, 128.7659643337188, 5.197933094504755, 20.168171689190967, 8.417560567122585, 54.48995617842425, 24.38031800862211, ...])
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)