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 = 45852
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);
([3036755.2872388773, 3085818.75, 3108071.7452315646, 3200913.591431123, 3202793.75, 3203743.359155985, 3253249.1377687687, 3254131.4010990104, 3268868.661717324, 3269254.6875, 3270852.8636588673, 3271127.575710763, 3271404.345984315, 3294670.717120175, 3302729.4398084935, 3350354.1182651226, 3422679.0680036563, 3457778.8757001157, 3559146.875, 3564000.0, 3565162.5, 3566243.9236780894, 3567268.3691703225, 3569689.0625, 3571891.496329569, 3572320.3125, 3577226.1926787524, 3577638.4638699666, 3602168.75, 3712404.848180919, 3713156.145740657, 3721503.2378525566, 3721509.410477956, 3723262.1973943366, 3839082.9722418226, 3843913.1717031174, 3864631.5003847396, 4047216.789364895, 6126044.982074411, 6387169.593156235, 6392468.682002479, 6392523.774899871, 6394632.8125, 6466999.287291529, 6467616.048030243, 6512045.3125, 6540928.0002363855, 6554838.413137145, 6555046.379156706, 6556584.375, 6558547.697601441, 6558592.073674829, 6564596.875, 6568455.963629963, 6570585.9375, 6585701.351113925, 6592589.888703165, 6596825.787155283, 6597834.375, 6598084.375, 6598517.1875, 6598795.815244642, 6598905.918689646, 6599714.0625, 6601101.067814666, 6601111.879087969, 6601867.762581809, 6602398.4375, 6606022.27467395, 6606078.004606941, 6614644.007349791, 6656596.494170323, 6680040.285011617, 6680066.785964673, 6682928.348655947, 6695389.0625, 6698373.4375, 6700280.181377694, 6700792.1875, 6703235.97010177, 6717975.741532109, 6756571.875, 6774462.5, 6826517.203024953, 6826751.453152925, 6827408.733965579, 6827882.552325256, 6828995.977535276, 6829464.703332052, 6829724.820990048, 6829868.920300126, 6830845.244580842, 6837602.82269469, 6845398.4375, 6846049.886524486, 6847795.3125, 6848126.5625, 6866349.514662566, 6873291.100074482, 6915277.177872623, 6918971.975135756, 6923635.012161627, 6928804.157584911, 6929618.75, 6934909.281378141, 6936370.395088286, 6961200.0, 6968055.669894614, 6971157.8125, 7005846.454017562, 7041162.695900527, 7061284.41644304, 7066732.8125, 7067232.403941757, 7067271.422826983, 7068061.955009229, 7068072.679470452, 7079966.89476465, 7080157.8125, 7083589.748622528, 7083619.330164126, 7084691.783255543, 7086202.225924505, 7090413.645126379, 7098668.75, 7099725.823978903, 7101623.804739429, 7105159.375, 7131078.125, 7132765.625, 7140108.523319279, 7160906.25, 7162870.3125, 7172399.907399884, 7175733.682084177, 7179805.7682656655, 7196030.8778376505, 7209157.669866312, 7209758.765598929, 7214870.3125, 7215571.007163845, 7215820.024979512, 7216421.415417091, 7216506.267670121, 7216804.483863093, 7216860.131954423, 7217003.882465005, 7218018.963417488, 7218146.848649471, 7218629.488850848, 7221866.8599780435, 7222039.221298346, 7222071.637982767, 7232287.5, 7235327.58914285, 7235765.565362578, 7245082.9469040325, 7246987.5, 7252804.615163809, 7252820.3125, 7253061.488972148, 7253587.5, 7257713.633730886, 7258641.3987951595, 7258843.524754622, 7259078.759467767, 7259438.079648388, 7259472.764422028, 7259803.491439035, 7259996.875, 7260065.42620609, 7260078.815245237, 7260140.472705852, 7260181.116612077, 7260259.051699412, 7261254.2765932465, 7261296.875, 7262353.125, 7263841.768476627, 7266173.554067449, 7267742.1875, 7268895.220406141, 7269265.093576602, 7269656.25, 7270192.000570158, 7271866.64739222, 7273062.7427847255, 7274033.327216255, 7275351.016936971, 7280741.212599812, 7281532.8125, 7282276.5625, 7283621.583018269, 7285975.470132445, 7286257.741641063, 7287070.3125, 7287308.453133288, 7287472.633668592, 7287565.062284342, 7288331.25, 7291275.0, 7292105.931921444, 7292428.125, 7292913.755464263, 7293236.649823163, 7294531.136185741, 7294776.52420869, 7294778.125, 7295164.093265641, 7295237.013983884, 7295950.0, 7314480.8615440205, 7314537.700889174, 7314773.4375, 7314887.037864522, 7315096.38250156, 7315330.634300744, 7315497.504406384, 7315641.848561004, 7315684.186559091, 7315788.960518052, 7315798.821744214, 7315849.851025213, 7315972.488600673, 7316207.8125, 7319068.57631012, 7319670.3125, 7593143.174345138, 7601585.923198475, 7601701.187544192, 7649735.571651781, 7951679.970778277, 7987305.832140379, 8038307.4453112325, 8044998.2704853555, 8119390.097629178, 8123953.46632079, 8155604.6875, 8175466.772100502, 8175658.739030631, 8175658.913861648, 8182328.125, 8215035.246375018, 8238235.9375, 8242010.967069397, 8251323.423285685, 8252843.75, 8259115.582778219, 8259350.0, 8259785.613532581, 8260238.192011237, 8261899.294056217, 8264154.830742605, 8264167.891624733, 8265641.778466579, 8268227.367952762, 8270181.03829787, 8271725.898813295, 8274374.501776048, 8274450.876782945, 8275539.059257582, 8276035.9375, 8276118.75, 8276307.423194356, 8276392.077358633, 8276478.8527979, 8276968.47537186, 8276988.736947103, 8277043.486441547, 8277049.87946833, 8277836.782973922, 8277850.8817675635, 8277859.375, 8277959.9311016975, 8278100.563733105, 8278387.374375276, 8278542.064426193, 8278606.711085241, 8278627.297822714, 8278662.520192288, 8278953.162909596, 8279616.541449025, 8280325.0, 8282705.493011663, 8282819.577384406, 8283001.206645079, 8284014.970247348, 8289153.788918388, 8293800.0, 8300030.512776776, 8300368.969250289, 8303167.940797261, 8303482.8125, 8303603.125, 8304154.6875, 8305471.502275762, 8326489.377178781, 8337323.190773398, 8341115.157137608, 8430968.148392832, 8431978.018199963, 8432006.25, 8439095.3125, 8443390.586744495, 8459361.849908924, 8460941.325393254, 8460953.888366947, 8461612.876221478, 8462442.1875, 8463757.478879876, 8463827.12023212, 8464600.0, 8464887.5, 8465420.3125, 8468404.644269044, 8468407.277488371, 8472179.673633741, 8473387.099584287, 8473561.65022998, 8496770.3125, 8497919.745400498, 8498243.75, 8499069.293408353, 8499316.559656035, 8500959.763899948, 8502119.895374225, 8502270.21518968, 8502776.5625, 8504426.427522853, 8506219.313886056, 8506410.528961321, 8507738.96420274, 8508669.611382604, 8508824.522992522, 8512494.406877045, 8512552.841762355, 8512589.403510947, 8516445.559627833, 8525021.648377381, 8525670.64122394, 8526563.667165129, 8526907.8125, 8526926.544515029, 8527069.570340898, 8527506.156873856, 8527535.9375, 8528867.049779303, 8529679.6875, 8530170.3125, 8531012.236559818, 8531051.04776743, 8531414.0625, 8531833.475813104, 8532649.040528614, 8532809.415822584, 8533184.375, 8533202.315225555, 8533299.023110837, 8533606.25, 8533985.9375, 8534140.625, 8534217.993208617, 8534498.4375, 8534569.206347289, 8534600.0, 8535153.825449226, 8535303.125, 8535389.469155706, 8535672.484924423, 8535774.855667137, 8537138.307700694, 8539155.751706777, 8539258.072583705, 8539565.625, 8540012.5, 8540089.356445182, 8540262.37217571, 8540264.962440802, 8540539.0625, 8540553.125, 8540668.510860452, 8541639.077402374, 8541904.6875, 8545826.534011513, 8545835.5900627, 8546097.601205466, 8546200.510600891, 8546349.024798857, 8546488.228580402, 8546650.0142236, 8547119.32600921, 8547482.512535421, 8547657.915011853, 8548328.397652298, 8548382.8125, 8548964.98360752, 8548970.3125, 8549066.708951406, 8549723.371841291, 8549801.5625, 8549879.6875, 8550183.671635846, 8550373.4375, 8550378.125, 8550574.432231361, 8550635.503348649, 8550699.927302813, 8550787.346868884, 8550882.824804509, 8551041.077801352, 8551394.970412262, 8551490.625, 8551948.4375, 8552209.375, 8552766.249068059, 8552887.207412507, 8554166.481833482, 8554643.823037794, 8554823.4375, 8555259.378091317, 8556426.5625, 8559479.6875, 8560322.057296522, 8561088.006621424, 8562704.255794622, 8564958.848740205, 8565380.57915484, 8567276.072984252, 8567706.25, 8568324.488643829, 8568870.3125, 8569254.866495991, 8569389.112749564, 8569439.592602853, 8569745.3125, 8570384.690784799, 8570617.1875, 8570907.8125, 8573134.375, 8574321.875, 8574837.827915762, 8576184.04699589, 8577209.375, 8579115.625, 8586665.53586135, 8588770.297198907, 8592989.0625, 8593106.507536052, 8593477.647064708, 8596258.770640688, 8597045.450765554, 8597515.819671802, 8597961.211426457, 8598059.386033542, 8599411.158362603, 8599706.935433576, 8600157.61059142, 8603543.75, 8604320.98309628, 8607301.299871903, 8607443.830218492, 8607573.688321892, 8609237.5, 8612466.170729803, 8614381.25, 8615920.3125, 8619819.115729973, 8623084.656053403, 8623090.341318678, 8624677.25778827, 8625376.399008673, 8625834.375, 8626191.000633804, 8635351.268008206, 8635429.6875, 8635482.623761492, 8635482.8125, 8635863.251680184, 8635875.99606052, 8636012.5, 8636182.555684185, 8640971.696493946, 8642415.103619326, 8643390.48229292, 8645889.779928796, 8646003.768517232, 8646471.485162359, 8647080.6689468, 8651404.544368966, 8653891.176867181, 8659663.455027359, 8665361.646829568, 8666010.9375, 8671049.214785188, 8671346.887094932, 8672814.0625, 8673481.42990732, 8673976.5625, 8673987.5, 8675623.4375, 8675929.6875, 8676076.5625, 8676126.411682736, 8677074.345063992, 8677120.224087048, 8681859.357591193, 8691660.54983616, 8691787.514102045, 8693143.378701443, 8693775.0, 8698064.0625, 8703404.64880344, 8710240.625, 8710956.25, 8711316.787588857, 8714634.285068322, 8715092.387422467, 8716242.1875, 8719080.1383039, 8719542.699558994, 8719795.453197258, 8720629.6875, 8720925.0, 8721243.86027799, 8721570.283863459, 8721669.766483167, 8721726.44942046, 8721850.0, 8722039.0625, 8722093.257353624, 8722472.397071846, 8722570.3125, 8723087.5, 8723339.0625, 8724271.875, 8726223.4375, 8726858.245672986, 8727821.93229167, 8728970.3125, 8735091.188936908, 8738023.920218324, 8751955.215474889, 8754982.336273624, 8755406.674550364, 8756940.625, 8757926.5625, 8768450.0, 8768838.351198945, 8775218.75, 8781889.0625, 8782331.015683997, 8783284.375, 8790492.252814528, 8796820.325295871, 8798553.440857781, 8803335.031634705, 8806378.747393496, 8817498.303605478, 8820979.698756838, 8827444.971383778, 8829470.860318648, 8830246.857992021, 8832467.1875, 8835373.4375, 8836316.63324872, 8837002.36831586, 8837759.507419832, 8840471.36241417, 8846475.0, 8846876.320875904, 8846950.50985295, 8847317.963425187, 8848318.75, 8849416.295404792, 8850316.859574271, 8854584.883971727, 8858036.357259845, 8858062.5, 8858366.630723823, 8858375.960472003, 8859093.624545896, 8859407.76192688, 8860047.925147507, 8860701.748502394, 8861056.592857676, 8861060.62933762, 8861250.0, 8862007.288004398, 8862655.595572622, 8862773.950824844, 8863449.74480488, 8863591.377620373, 8863892.358012777, 8864054.589150686, 8864057.258624323, 8864091.409238826, 8864500.829874918, 8864826.378792433, 8866646.234648706, 8866733.644713534, 8867159.265238693, 8867830.888935233, 8871089.0625, 8872248.4375, 8873732.8125, 8874075.0, 8874335.611950316, 8874377.119399764, 8874462.5, 8874978.555599092, 8875362.905864924, 8878390.104774099, 8883768.530063845, 8884376.946328972, 8885554.998430751, 8886711.074108118, 8887698.513813423, 8887712.939519178, 8887818.75, 8894001.610358927, 8894010.32489434, 8897926.29144827, 8898524.047624962, 8899062.115091896, 8902003.125, 8903406.191526383, 8906248.845929516, 8906250.0, 8908882.8125, 8913278.608498896, 8917667.652250724, 8920479.32450242, 8924470.260329375, 8926251.5625, 8928309.422724178, 8930127.894785082, 8930772.017518682, 8933421.875, 8934473.4375, 8936156.246663835, 8936158.758001214, 8937303.125, 8938738.60723408, 8940332.885025678, 8940979.6875, 8941540.625, 8943215.131934939, 8944986.04720585, 8945147.876241356, 8945465.460191317, 8945666.468677638, 8945996.6044806, 8946037.5, 8946820.531460045, 8946972.95889895, 8948196.648740197, 8949182.8125, 8950118.75, 8951846.365614273, 8953562.634090705, 8953742.1875, 8953804.6875, 8954074.437899278, 8954134.375, 8954445.003426649, 8954445.3125, 8954453.863612816, 8954457.8125, 8954779.126663303, 8954799.066422228, 8954864.46032297, 8954875.0, 8955207.8125, 8955231.526445014, 8955295.368019324, 8955467.13408063, 8955598.547326123, 8956129.55117745, 8956386.600130374, 8956388.418025937, 8956954.421948256, 8956993.75, 8957375.018720178, 8957431.99890986, 8957447.76766325, 8957467.79717046, 8957904.054598358, 8957960.9375, 8958059.375, 8958109.317541003, 8958135.9375, 8958165.690848306, 8958370.266736306, 8958383.56843261, 8958455.766361358, 8958626.510393698, 8958651.202064147, 8958805.717041539, 8958959.289901877, 8959063.542265212, 8959266.311638026, 8962088.002789194, 8962218.803114392, 8962234.806638956, 8962364.0625, 8962640.179421669, 8962826.194568232, 8963412.5, 8963582.068215162, 8967850.0, 8969012.433344018, 8971446.632378617, 8982117.119752755, 8982795.906335756, 8983921.60680925, 8985766.435302584, 8986736.723066352, 8987528.918539403, 8987548.182163384, 8987853.168869214, 8987903.693718132, 8988236.40388799, 8988320.773818532, 8988422.458870064, 8988853.125, 8988950.0, 8988991.310118735, 8989101.429079557, 8989145.3125, 8989260.836703856, 8989274.752660934, 8989287.034751847, 8989551.795614077, 8990131.582430532, 8990157.022110477, 8990240.625, 8990452.970138319, 8990490.625, 8990499.626352102, 8990645.3125, 8990706.25, 8990778.015941001, 8990857.760849109, 8990859.375, 8991085.9375, 8991527.062314114, 8992107.739849415, 8992315.473804409, 8992509.888544852, 8993195.3125, 8993803.079372972, 8993871.133723788, 8994393.75, 8995550.271072749, 8999449.015763741, 8999730.729636079, 9000553.125, 9003174.655683769, 9016117.350982083, 9016981.133760693, 9018693.66126736, 9019359.632105283, 9020088.752761707, 9022008.262354737, 9022037.177668983, 9022055.100143688, 9022121.728963736, 9022328.322091468, 9022700.691844715, 9023083.944226522, 9023085.958798483, 9023250.0, 9024051.328203201, 9024112.5, 9024689.0625, 9024742.12437204, 9024883.624509899, 9026276.904616434, 9026518.574103657, 9027355.91105356, 9027901.920925511, 9027940.705948899, 9029040.625, 9029112.11290898, 9030612.706170453, 9031500.550730998, 9031595.130058084, 9032463.58592524, 9032979.689033428, 9033897.93077296, 9037167.1875, 9037874.741238344, 9038708.31931727, 9041012.5, 9042571.612220684, 9043184.375, 9044487.5, 9044739.658806562, 9045348.4375, 9045924.18295919, 9045982.21021974, 9046335.9375, 9046580.195169844, 9047234.375, 9047837.045526931, 9048049.419782529, 9048503.99697923, 9048652.314567912, 9048677.440147901, 9048848.598823745, 9049524.675270153, 9053618.75, 9053710.687185034, 9053725.757053329, 9057609.246628217, 9057957.718169842, 9058697.021093436, 9064817.33276007, 9064887.184617275, 9064891.108537892, 9065806.25, 9066260.253910927, 9066978.319129523, 9068240.170735678, 9068366.569225674, 9070149.372846643, 9074184.375, 9075010.9375, 9075823.4375, 9077303.00959318, 9077810.9375, 9079500.982441949, 9080631.25, 9081052.21825747, 9081437.5, 9081626.572674317, 9081929.77090202, 9081961.49990879, 9082009.375, 9082306.936476497, 9082309.112715736, 9082406.25, 9082693.661539052, 9082723.4375, 9082801.5625, 9082808.311219634, 9082949.999883628, 9082993.75, 9083464.906640392, 9083549.333713036, 9083678.963658465, 9083770.260911744, 9083846.438724991, 9083868.564860316, 9083926.5625, 9083991.781355323, 9083992.49444082, 9084110.9375, 9084112.313516598, 9084237.488841336, 9084252.507020107, 9084314.891746499, 9084352.414645584, 9084529.576784102, 9084657.8125, 9084931.459842995, 9084956.352071151, 9084990.625, 9085010.477400377, 9085018.75, 9085232.356842572, 9085252.253250068, 9085262.821735982, 9085366.263293399, 9085373.376479693, 9085440.398956187, 9085447.72781522, 9085701.5625, 9085704.6875, 9085754.612283293, 9085870.25505734, 9085927.884625394, 9085935.9375, 9085984.985160632, 9086046.377200112, 9086056.236719431, 9086061.804752525, 9086122.004353259, 9086175.0, 9086182.7713489, 9086296.618177114, 9086299.293704579, 9086340.328498403, 9086352.40069367, 9086356.058748754, 9086421.56340741, 9086437.9513471, 9086465.603757458, 9086476.589159673, 9086501.5625, 9086519.336915012, 9086662.213304391, 9086683.883672476, 9086685.684975581, 9086786.755328324, 9086848.082047563, 9086932.056002388, 9086934.375, 9086962.231787479, 9087089.0625, 9087100.280892255, 9087126.525541207, 9087133.03311958, 9087142.368168565, 9087171.846381387, 9087200.825962348, 9087205.649854016, 9087236.349524608, 9087246.088777373, 9087299.533599883, 9087308.421408603, 9087368.6079978, 9087369.44568425, 9087376.904660266, 9087382.8125, 9087385.440855976, 9087410.629876224, 9087488.65859612, 9087627.865123961, 9087635.76914927, 9087725.054243132, 9087730.358249353, 9087785.9375, 9087789.251483923, 9087790.432437837, 9087812.5, 9087829.970433302, 9087864.621582592, 9087911.012052132, 9087938.415063674, 9087962.771203026, 9087989.0625, 9088011.574696502, 9088156.25, 9088168.865983523, 9088275.0, 9088328.117564525, 9088374.99044382, 9088459.375, 9088527.713909825, 9088563.789752007, 9088653.786563076, 9088960.9375, 9088966.571872497, 9088972.200797642, 9089045.530443413, 9089363.013838576, 9089632.577337887, 9089981.25, 9090163.976323778, 9090398.339572104, 9090412.5, 9091040.625, 9091151.114894116, 9091483.701766634, 9091611.830946824, 9091660.9375, 9091901.44577414, 9092039.0625, 9092140.647317719, 9092601.211657276, 9093125.976213712, 9093923.299276944, 9094724.126326194, 9094801.83873159, 9097458.742835399, 9099295.3125, 9100526.60264306, 9101034.239914894, 9101212.331200965, 9101289.609052708, 9101322.319305547, 9101875.0, 9101971.586376758, 9102029.404835386, 9102164.0625, 9102503.125, 9103168.75, 9103376.370489191, 9103735.262600057, 9104256.25, 9104727.85771874, 9104860.614009364, 9104868.75, 9105234.375, 9105720.021838266, 9106319.575155623, 9107305.837874247, 9108166.463960469, 9108227.105595041, ...], [66.47506251493301, 144.56730097555385, 48.070097979467654, 27.233882838152844, 86.86343880362202, 9.021430885658368, 5.6539960860897915, 15.550499706936794, 36.785903269294565, 82.86832266229774, 31.66808275044513, 27.846899077914728, 39.55598865041161, 57.65421585988994, 24.442725667672, 20.829172259474845, 5.769522000401293, 18.86007550200174, 76.741742863983, 75.76764964910862, 31.650924996761432, 20.984312781768708, 61.923665175715506, 114.52619655992217, 45.028773465125376, 55.80119426731069, 127.45370380000521, 20.562575871318845, 34.63206820845095, 21.139035897364106, 19.88737342378199, 68.19840741846849, 11.18361766749027, 6.70456089497466, 9.470227867551023, 9.972231994114498, 25.017119125557485, 25.280129050052615, 42.83826620322042, 6.627917858492273, 5.529789482819994, 6.832788596208807, 44.62278285474248, 12.77894168100218, 55.30771357463857, 61.80027864780061, 26.280856354749513, 20.122183291089648, 57.332027226716434, 84.18456196558449, 6.624265763311302, 14.524712058936908, 77.51746265309897, 13.951858499519735, 50.63994137669199, 74.416206901613, 66.63072196980077, 5.055063273445701, 51.76603323666174, 38.45092008775711, 44.83086233730816, 49.823433253704806, 30.179894405029383, 51.67707625946635, 7.433608681089425, 6.645569673188999, 34.50272579510698, 50.88044577680008, 40.860950915775625, 53.74246312558266, 5.045907588002096, 75.923099325712, 13.786738309670417, 10.553176881525571, 26.743870814427652, 43.394508272406526, 34.96295414580719, 82.4639166514937, 44.46805318431753, 11.179050723826213, 87.40386579430871, 90.10900688477578, 69.76529469694984, 11.152060321145274, 10.960986132778022, 8.84243262646915, 14.034644282924887, 71.59638879266173, 69.89385782175108, 8.194129318734037, 52.45370764617333, 27.24950260151031, 5.387041585630862, 39.83629080976964, 113.01279401598012, 36.09213535284251, 29.504987120732565, 13.366383541223344, 17.125106836634433, 6.348208264731082, 63.3229653407589, 5.423403857945974, 7.422197758907061, 52.02496380223364, 26.801136934851026, 11.259298931413493, 44.79195806653935, 10.327768336884244, 54.66266210417565, 74.24462777453348, 11.448369873919056, 12.219618366200413, 46.01918737766239, 71.17464748924714, 10.487552375215984, 21.05573445662419, 96.1404482295901, 23.843983168131068, 29.052430336984685, 12.401276411046183, 6.150583225439338, 13.596178384424702, 25.423659792165168, 22.358939013164374, 64.12302531407394, 31.400001881375506, 7.221454010465668, 32.48364458903404, 44.85177329455746, 92.17297367267912, 50.25381743627364, 92.35780490068242, 47.24528970447116, 26.818625371727585, 12.827024106438163, 94.61775796938433, 75.45251785711979, 7.0844556586501595, 25.360543518927383, 89.96662283862935, 9.997056530710823, 19.730889328718604, 27.837259729156987, 65.23504690409467, 38.98414836974089, 6.367817897877509, 12.561662004212955, 11.478523954493433, 6.263874898658349, 5.603148114337633, 13.824621241037354, 47.63252663441001, 57.894006957242894, 82.54761625631178, 133.08099490374198, 7.581809329068489, 42.97799810502188, 29.078906707437344, 6.475811371286516, 42.425263448665945, 8.6014508993656, 45.75357696333789, 53.43474421514489, 19.027071381685168, 45.080463393705436, 9.932433697400997, 48.962494452261375, 21.935297777589625, 9.661739029395507, 105.48522748915161, 25.13573338391967, 24.796166067295058, 34.40274194730155, 37.06803749645879, 41.66358895882632, 6.424551063293617, 68.39548905752864, 68.84385568899415, 22.34079714620696, 11.314932233220633, 29.503472003740335, 45.949415845863555, 13.240800827297766, 32.52610705623486, 48.17381439961019, 21.102121407577727, 6.113715903242473, 12.534818011190588, 37.709897887616066, 19.067539978875, 37.76907241061841, 102.30404922782537, 23.85370715126101, 6.138392513558659, 14.67813568685371, 77.15083402171942, 110.44399927120676, 6.612980471264506, 57.08328675438311, 51.972113486266835, 109.35123429086667, 23.522527695452112, 30.043473073110643, 12.558735584940504, 84.13997191813463, 26.46101598276414, 11.068377887607566, 39.72278910334286, 11.17613841676813, 5.033447690681695, 29.818235608282347, 18.177667227342987, 9.507246106159075, 52.28825758256031, 21.87932201205251, 21.56826012150079, 20.41168696851451, 12.27816698269752, 29.730200806392652, 32.8247104491783, 109.34177866495594, 56.366108960139165, 75.8223872979492, 61.60785877153778, 61.262278376154526, 14.318383537448717, 49.673400398557845, 8.003942257076437, 58.16940735789619, 37.17490642386049, 10.600273527664791, 11.601371009329638, 56.98733727082943, 13.70512289068992, 39.48237799896677, 13.251703717456902, 16.424370279673063, 67.54197841968936, 5.327886145022602, 16.869578911761728, 6.674808266875474, 43.44385055989321, 81.89819429662681, 57.46490593747794, 7.129246306295386, 22.00594589718119, 64.26948304910948, 27.71603165998722, 81.75652616530472, 33.6728820108344, 9.994177433298768, 41.42712258495089, 5.824655566429517, 43.92313294835432, 58.80859028245932, 28.884084727509524, 10.812176805687809, 70.2528943497087, 7.432458711102146, 92.95206080269021, 57.897274658724044, 94.40585614754957, 95.91638124152922, 81.72155132352664, 8.229179053104154, 19.45549137322726, 15.190614240030046, 5.517486322537998, 70.2322682943178, 62.28017255330385, 10.165705859491386, 63.56902211176665, 41.790181271423, 8.60430684218417, 12.630664127878738, 68.83957691207064, 26.30846857168938, 9.754283603468368, 8.71788553110155, 9.348535454362029, 85.60272381029509, 6.961384998716496, 47.06268119680905, 68.69977352416764, 18.00695298732329, 50.07302558982607, 89.40333532755737, 18.265119531858083, 67.65768059670852, 5.574520827207994, 5.543816917177509, 87.83414274987109, 52.205933127245046, 60.4164136591505, 68.68453530837073, 22.86420964223149, 16.29386487079886, 76.49605777733298, 13.414933671782343, 7.399234401109395, 33.152791441773864, 42.10514580307557, 58.46521558706134, 9.299264114844428, 20.11603582743833, 28.756691463322667, 12.575216368633809, 11.771512005062897, 66.12105121939713, 9.0643882385235, 19.93501180072852, 56.97881429149556, 44.517567885052244, 93.25003500294721, 46.73204453566163, 8.916588981330511, 40.63012736456112, 22.54756193438537, 18.59362141888137, 43.66152163703009, 6.979952315631869, 58.46370087651735, 182.40459181018917, 30.22585665785794, 24.093075705755503, 17.573346682868323, 104.36738632296371, 48.179184452250986, 60.65809420171627, 12.140544841602242, 9.008305257783913, 7.568067984861951, 19.696890150197593, 62.45299453903391, 69.6932422752501, 30.061854511017035, 70.98922203013613, 6.526541270233131, 15.393016212263781, 16.84932606496497, 29.866738639208513, 74.8592710178284, 91.29699845727819, 29.22021000400681, 9.25388183972789, 87.07073089036885, 6.736319677308515, 94.77097186275489, 44.637095944286244, 34.71588292779185, 84.67061765743215, 79.04124377763975, 18.261140961747536, 56.641654041952926, 11.19212032949855, 51.086289341176794, 18.874569032465217, 34.870953515133436, 60.703721348071156, 52.019983711515046, 53.744082190989964, 24.659362811331963, 31.019890082748496, 71.29808675342038, 41.182385331777354, 7.877876059044318, 68.53776955778683, 6.319980893479716, 12.236741699400561, 68.50421158076617, 10.122528152385964, 8.039549996173985, 48.42180254974914, 44.65416143415218, 58.79347346158586, 93.6786020475494, 26.231019827226273, 20.011521074015512, 53.285504291920034, 73.24374825167332, 14.102161597099546, 14.998616149914808, 53.8197320448321, 27.973231063790262, 23.08653508809703, 41.22658212322864, 26.174917909898355, 59.42014106034155, 12.495963905885722, 14.507948376740194, 9.871072889673012, 59.881720379108565, 9.419613460046994, 8.436222498546424, 50.526629774368104, 111.22125060501357, 68.91791142994452, 46.14858583160139, 62.540769327444494, 38.6110586813787, 38.909326292109476, 25.122780269548745, 129.71424866148544, 77.70642408119782, 20.84269973566929, 10.510748367762156, 62.33033740052559, 58.53584299048274, 7.607694085195682, 14.823184624491143, 62.53871262321784, 46.52263583959933, 75.46377990916922, 112.19529973518081, 8.64667953068177, 55.22716212450036, 8.79839307119173, 14.716789563280804, 93.7353848938763, 81.43026297506592, 44.892482274341944, 67.96229762870993, 15.685054091528194, 17.302386288791645, 5.51248903524894, 59.724158645364085, 6.636581285195373, 21.598327705780395, 47.007469918477994, 13.29505138666116, 80.42656711115626, 88.92151419501927, 15.136559821045548, 5.177893975019721, 86.97313180602701, 23.721374210602782, 49.084876569755224, 61.98667215970525, 30.054307453388954, 48.79401278206544, 6.830787135204564, 92.10197770829168, 42.29477022228282, 75.56777983126236, 10.991178350741697, 49.51620730400782, 30.480370304399628, 11.555615860801993, 10.45469434753554, 110.29116968321779, 86.61825853835751, 5.169920295438144, 23.430705661846, 14.983731549056598, 5.47132673851236, 12.39975805608499, 37.609911023658135, 73.75709436493156, 18.309165053503726, 24.24014987385609, 15.256341638133856, 9.552891424942286, 51.151834535045445, 17.529100097938752, 95.97718994932582, 60.28989507656663, 6.126975992482468, 23.711514811114743, 17.95736881399511, 12.42153094072089, 10.881426505692227, 77.80165997450011, 16.59670892309534, 22.830624634354123, 71.96341183157439, 10.844977921784155, 71.10223264011604, 22.007455949839525, 13.14769401147886, 59.40639816808016, 6.713295946755058, 22.702892301757537, 13.267868357762392, 7.084436875331862, 28.727699099855016, 14.453467974968557, 22.66723457647457, 6.029689601370309, 25.985140918951654, 92.29059552428113, 53.727166859563624, 7.321292191239013, 74.17771826246073, 57.0481168094542, 90.87721082095845, 50.22441568075178, 5.827412881950596, 66.3388697488267, 51.240921430156675, 70.4908319013822, 37.397295020667464, 58.59329846710849, 8.208401020595952, 52.05581673327603, 10.992267694990748, 7.596953326941073, 8.091688350878496, 14.995533629886571, 22.88081039112629, 92.46008604259907, 51.22926330719284, 91.33757917256952, 105.3909438378823, 31.58220857953367, 13.608787417878478, 26.86442772845642, 15.762511741352009, 77.37607689420823, 5.4814540370144655, 17.333440736483773, 71.27864244499484, 61.06447676930687, 90.80903026496344, 34.49179900068165, 45.154887603854405, 8.017502725762848, 10.955439625320837, 54.059396349006654, 41.118256212937645, 20.369903429355258, 8.583402851965113, 98.56837536506043, 69.0216441719082, 69.34038814482422, 74.5637482186623, 36.79642061726591, 11.879761927598013, 27.400482252739458, 59.18663284189722, 5.856919345070226, 5.641319369462905, 5.559265515113878, 5.898978764907192, 16.8510670437375, 29.893333266606817, 41.01449343696941, 57.868587261146885, 88.48894794183042, 74.49278831188282, 53.28287690462231, 10.780196770478884, 40.113610579825995, 11.231355714399646, 8.293355607733206, 11.660117222140071, 135.87026450304023, 15.305776302344519, 5.698289264542866, 14.984589508372263, 92.60159468070223, 8.599199772983418, 14.877076833143745, 61.51897267274632, 131.30812925715153, 20.96846374141755, 12.674036181995174, 8.357866907671372, 54.933976646049125, 47.883355293467616, 24.526196829005617, 20.158838894347156, 19.04266683554929, 55.368013856054034, 7.309585069318411, 15.979266118191628, 17.31579084568821, 6.321729803300002, 32.20954748896222, 34.11267561537797, 71.98422399358202, 15.211190636973534, 27.562345240377418, 21.37075623110499, 8.387450267682965, 15.365340830712075, 9.083753309516242, 61.72868423459761, 38.18494987150382, 6.187911445414019, 17.340691467235313, 9.124556926230555, 5.756391613648567, 5.134163165104015, 9.249605098761029, 7.414484840063889, 49.40682752600745, 25.432364432052587, 25.35929348681651, 27.204040438282156, 92.00173719993788, 26.528455285658175, 77.27633087380994, 44.03742860150379, 62.50840658843256, 44.32382605235282, 53.2984325804977, 8.121610730228083, 17.595315991608526, 55.47342954417072, 11.874801665142295, 11.827465825718605, 21.29368125917679, 58.41861061415517, 5.552003538737217, 41.588125859652095, 15.489079975832079, 15.240583266762346, 16.931024853000896, 57.545595614842455, 6.773098993651885, 13.027874741525926, 24.127695349110443, 24.528511340244933, 38.99125401682845, 55.44756188248981, 44.364937002448286, 50.75196522103056, 28.673203689228085, 60.76275726452376, 66.60243596900428, 5.9809271589475586, 6.222400318139432, 129.34679369227965, 44.13217572201097, 6.273246860884465, 10.78597296449254, 23.80823570787882, 89.74076994885809, 114.8152869805966, 14.928808751743821, 13.016642439376193, 53.973065806637386, 73.27153149882022, 15.225341731037386, 42.19744990339908, 35.564849755998935, 113.70603744983696, 28.15571522404978, 40.56007844188915, 9.195830445946315, 8.789534067237925, 10.72965118734169, 44.274189279657854, 15.847369424061513, 59.02615681676577, 72.89891347879336, 58.38300985706, 49.35464000294262, 13.47222213941221, 38.72767435390898, 73.12792688557678, 47.543496047221986, 10.349751903137744, 42.689982662391664, 23.635529953449385, 87.42123110103748, 99.79911323241315, 68.18076417210347, 53.453701025845355, 8.649738009336179, 16.71079572748453, 55.72904858240102, 44.32437463646128, 16.111426111794117, 17.94711407750284, 27.510427436878004, 27.04788749941551, 8.21577971367354, 12.187841519080282, 6.18906854005121, 77.95410033539636, 50.57033857271053, 15.013345294424234, 12.542093301047217, 12.883786534014142, 17.917348581297276, 46.68255254183918, 57.46576668950077, 36.22508502531601, 51.95149097940285, 84.18288704555016, 141.69960173913267, 27.650603539246667, 10.0643818161727, 5.779041310082784, 23.14404607250044, 23.008280275040182, 5.230469762443699, 6.25650637098227, 26.57640417085759, 94.16338391055434, 49.304007515229706, 85.59001193872777, 8.528833742093878, 64.16591103277085, 22.053725099230522, 22.920131931213458, 97.85461977751446, 12.703350312390356, 70.60766369570142, 27.271999699068953, 24.512429294936815, 11.02343928847524, 17.819086638718147, 5.794399411263445, 49.800137071070715, 19.11367283448596, 41.00687146423219, 19.813625673583555, 5.6164757091854955, 8.612109298802862, 17.077140713396876, 9.754515687597648, 72.80739858732946, 68.12543951585529, 63.93785138587352, 18.405919400512126, 42.752784223725214, 37.181851217110015, 26.679102048290673, 14.07573185115448, 68.63705184683863, 99.35285680494844, 108.58083251619915, 19.01476001835202, 52.601369773701286, 46.52109748858349, 36.20844369459878, 22.853470313404404, 92.04054150605151, 58.15700354268844, 14.541506239915053, 34.75655582969141, 39.93217156166435, 29.305866967420677, 32.55686642520426, 122.86275136477708, 97.69992140559643, 6.570724325504293, 54.02729959719385, 30.17486257409022, 80.56779401148341, 63.52771698057266, 16.086236565295692, 12.170334395138852, 5.190364275950696, 30.108086706848955, 65.98037060405203, 15.603524016011837, 26.42085992276075, 16.38267469835023, 9.558692451013755, 23.6271404038769, 5.979562986927804, 10.658678241507435, 7.759628569342337, 14.412645580962687, 23.3944029806438, 18.451186009297334, 13.51972595779184, 11.161161695735982, 45.533626270388105, 90.40004090008354, 80.84214740048402, 58.34459063389103, 12.664540509733948, 19.311992942650537, 21.54004337481287, 5.335930271243944, 35.85183604819103, 9.65404841177057, 15.25929415086581, 112.27503756003328, 33.69827295173358, 13.602580440812936, 7.274159994563325, 22.25819410164118, 54.72299685708094, 14.947357351173416, 32.61627360307518, 65.67221608435798, 15.746683196202794, 5.98479186528565, 53.08584948989627, 24.2381198549308, 110.98099977516836, 33.13488472797423, 87.25568611654626, 29.234673608249548, 74.47740902673637, 63.20785947999125, 53.180952353542835, 12.026211623006741, 82.26057932191594, 79.03759969002539, 17.15251909760665, 10.196390223807024, 19.2634020969088, 7.954831181766207, 25.45418246218964, 23.439909639811972, 61.43628847194205, 5.037350740802745, 5.2668394732294, 13.90066637473318, 23.914722398945706, 20.445923374631384, 127.31841247374932, 23.556217440953333, 17.172189778100268, 75.71956487332123, 8.813339255994142, 12.41656846797611, 21.961801893598892, 6.19212124160321, 54.820674031684504, 42.809042535471896, 29.69585660217995, 70.16078405126014, 83.48704706420956, 32.15131571315133, 27.06912609227147, 42.082019281622074, 26.230631416952804, 63.555109080470125, 9.340020975908834, 15.26922206757186, 7.277579568911667, 39.67232121661662, 7.314407690195764, 24.24476717022868, 58.339806090551875, 14.614727189041249, 58.594161744140614, 60.314935807287995, 17.25752206324739, 28.52292731379606, 49.50308526573437, 65.3448812081585, 19.98054118154194, 59.480072526309634, 27.543801717030302, 83.84614782586478, 86.24822886760086, 97.4382053071252, 10.54714546754169, 11.643944249828305, 86.86180480993512, 14.445569828678845, 6.2657895792585, 114.35688991112633, 5.371163253113275, 109.16076034393036, 88.58707898364669, 84.01508343682491, 98.47816569052185, 9.419227575016867, 42.09849414760937, 32.744563681450124, 35.46784287252851, 5.442543280867252, 6.909716732212432, 8.464374613298174, 19.32267183858022, 51.305788721490615, 63.576471828581475, 19.62868856437736, 43.17598048830075, 29.05691648844365, 5.458547388395422, 27.43743422236737, 5.600883023339615, 55.47868944918107, 47.09627750366761, 53.75020278901732, 195.38296492696153, 19.743970549697586, 115.38882085295035, 85.12402352126229, 5.704144037371082, 73.43412355331462, 26.1060410304454, 23.795531998781804, 8.785851602607709, 5.799963547970004, 66.26540016304436, 11.914972694330329, 14.861156266797051, 13.857048602789945, 37.707111962504726, 14.79200188361316, 80.41125758230973, 24.43680323604314, 10.754675479250286, 19.356346320877275, 5.684503441818319, 5.0838523311718955, 101.59956843620142, 24.16545620178782, 55.745277191547146, 43.66966389031811, 22.57370356220686, 64.76131264051759, 11.422355450105803, 9.30732118890009, 69.0147597872816, 26.891125859623045, 9.705914432316408, 7.910402917421859, 21.834955535275686, 12.234593574801847, 72.36984950088709, 92.92223984661592, 16.428528745498763, 106.24296810870152, 21.52664334427729, 6.229099233738323, 22.508441188617947, 48.56794292859572, 61.79653129324062, 6.774384322519673, 91.74432205950951, 51.5713958679236, 15.714318086874906, 14.255060225034113, 31.84288884364961, 16.141992827200394, 12.130642825531227, 77.74234204562146, 20.138469651921753, 16.086846139373037, 49.68913047583934, 100.54605497240749, 81.32145555917872, 11.313968635029493, 64.94604434806404, 23.239341737722995, 7.1189418919495315, 35.00220706678468, 81.45703313855213, 24.105203925563575, 18.249650715473916, 112.36383405184819, 47.55019269907273, 16.34798624522465, 42.224188698548275, 12.038593769104004, 24.615861772914595, 37.23420027016353, 164.86224422793867, 26.727731627968453, 61.52727470343174, 58.697253262951065, 13.471868843064714, 12.875385057599711, 12.885727038060955, 31.068885441339987, 26.412820690091078, 76.09834921282773, 33.30069163347791, 29.175484263410116, 10.32025851531744, 11.848210350133332, 12.407240432720227, 6.117303782784906, 6.964631783628116, 36.50508400640227, 19.001061799089992, 10.92292683825405, 84.80684515044025, 5.855558437186157, 8.536392425878315, 91.4822866696495, 23.897159962860687, 10.712871737353874, 61.275202336464, 139.31130000928252, 62.91873047381574, 32.897403546560156, 67.36495416396984, 102.71055999305611, 24.17787318314359, 8.122610807501216, 72.97375283623506, 31.20734435923202, 48.6523980586997, 19.412576859310505, 19.111338264797276, 15.082766546439103, 11.816072715943879, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3036755.2872388773, 3085818.75, 3108071.7452315646, 3200913.591431123, 3202793.75, 3203743.359155985, 3253249.1377687687, 3254131.4010990104, 3268868.661717324, 3269254.6875, 3270852.8636588673, 3271127.575710763, 3271404.345984315, 3294670.717120175, 3302729.4398084935, 3350354.1182651226, 3422679.0680036563, 3457778.8757001157, 3559146.875, 3564000.0, 3565162.5, 3566243.9236780894, 3567268.3691703225, 3569689.0625, 3571891.496329569, 3572320.3125, 3577226.1926787524, 3577638.4638699666, 3602168.75, 3712404.848180919, 3713156.145740657, 3721503.2378525566, 3721509.410477956, 3723262.1973943366, 3839082.9722418226, 3843913.1717031174, 3864631.5003847396, 4047216.789364895, 6126044.982074411, 6387169.593156235, 6392468.682002479, 6392523.774899871, 6394632.8125, 6466999.287291529, 6467616.048030243, 6512045.3125, 6540928.0002363855, 6554838.413137145, 6555046.379156706, 6556584.375, 6558547.697601441, 6558592.073674829, 6564596.875, 6568455.963629963, 6570585.9375, 6585701.351113925, 6592589.888703165, 6596825.787155283, 6597834.375, 6598084.375, 6598517.1875, 6598795.815244642, 6598905.918689646, 6599714.0625, 6601101.067814666, 6601111.879087969, 6601867.762581809, 6602398.4375, 6606022.27467395, 6606078.004606941, 6614644.007349791, 6656596.494170323, 6680040.285011617, 6680066.785964673, 6682928.348655947, 6695389.0625, 6698373.4375, 6700280.181377694, 6700792.1875, 6703235.97010177, 6717975.741532109, 6756571.875, 6774462.5, 6826517.203024953, 6826751.453152925, 6827408.733965579, 6827882.552325256, 6828995.977535276, 6829464.703332052, 6829724.820990048, 6829868.920300126, 6830845.244580842, 6837602.82269469, 6845398.4375, 6846049.886524486, 6847795.3125, 6848126.5625, 6866349.514662566, 6873291.100074482, 6915277.177872623, 6918971.975135756, 6923635.012161627, 6928804.157584911, 6929618.75, 6934909.281378141, 6936370.395088286, 6961200.0, 6968055.669894614, 6971157.8125, 7005846.454017562, 7041162.695900527, 7061284.41644304, 7066732.8125, 7067232.403941757, 7067271.422826983, 7068061.955009229, 7068072.679470452, 7079966.89476465, 7080157.8125, 7083589.748622528, 7083619.330164126, 7084691.783255543, 7086202.225924505, 7090413.645126379, 7098668.75, 7099725.823978903, 7101623.804739429, 7105159.375, 7131078.125, 7132765.625, 7140108.523319279, 7160906.25, 7162870.3125, 7172399.907399884, 7175733.682084177, 7179805.7682656655, 7196030.8778376505, 7209157.669866312, 7209758.765598929, 7214870.3125, 7215571.007163845, 7215820.024979512, 7216421.415417091, 7216506.267670121, 7216804.483863093, 7216860.131954423, 7217003.882465005, 7218018.963417488, 7218146.848649471, 7218629.488850848, 7221866.8599780435, 7222039.221298346, 7222071.637982767, 7232287.5, 7235327.58914285, 7235765.565362578, 7245082.9469040325, 7246987.5, 7252804.615163809, 7252820.3125, 7253061.488972148, 7253587.5, 7257713.633730886, 7258641.3987951595, 7258843.524754622, 7259078.759467767, 7259438.079648388, 7259472.764422028, 7259803.491439035, 7259996.875, 7260065.42620609, 7260078.815245237, 7260140.472705852, 7260181.116612077, 7260259.051699412, 7261254.2765932465, 7261296.875, 7262353.125, 7263841.768476627, 7266173.554067449, 7267742.1875, 7268895.220406141, 7269265.093576602, 7269656.25, 7270192.000570158, 7271866.64739222, 7273062.7427847255, 7274033.327216255, 7275351.016936971, 7280741.212599812, 7281532.8125, 7282276.5625, 7283621.583018269, 7285975.470132445, 7286257.741641063, 7287070.3125, 7287308.453133288, 7287472.633668592, 7287565.062284342, 7288331.25, 7291275.0, 7292105.931921444, 7292428.125, 7292913.755464263, 7293236.649823163, 7294531.136185741, 7294776.52420869, 7294778.125, 7295164.093265641, 7295237.013983884, 7295950.0, 7314480.8615440205, 7314537.700889174, 7314773.4375, 7314887.037864522, 7315096.38250156, 7315330.634300744, 7315497.504406384, 7315641.848561004, 7315684.186559091, 7315788.960518052, 7315798.821744214, 7315849.851025213, 7315972.488600673, 7316207.8125, 7319068.57631012, 7319670.3125, 7593143.174345138, 7601585.923198475, 7601701.187544192, 7649735.571651781, 7951679.970778277, 7987305.832140379, 8038307.4453112325, 8044998.2704853555, 8119390.097629178, 8123953.46632079, 8155604.6875, 8175466.772100502, 8175658.739030631, 8175658.913861648, 8182328.125, 8215035.246375018, 8238235.9375, 8242010.967069397, 8251323.423285685, 8252843.75, 8259115.582778219, 8259350.0, 8259785.613532581, 8260238.192011237, 8261899.294056217, 8264154.830742605, 8264167.891624733, 8265641.778466579, 8268227.367952762, 8270181.03829787, 8271725.898813295, 8274374.501776048, 8274450.876782945, 8275539.059257582, 8276035.9375, 8276118.75, 8276307.423194356, 8276392.077358633, 8276478.8527979, 8276968.47537186, 8276988.736947103, 8277043.486441547, 8277049.87946833, 8277836.782973922, 8277850.8817675635, 8277859.375, 8277959.9311016975, 8278100.563733105, 8278387.374375276, 8278542.064426193, 8278606.711085241, 8278627.297822714, 8278662.520192288, 8278953.162909596, 8279616.541449025, 8280325.0, 8282705.493011663, 8282819.577384406, 8283001.206645079, 8284014.970247348, 8289153.788918388, 8293800.0, 8300030.512776776, 8300368.969250289, 8303167.940797261, 8303482.8125, 8303603.125, 8304154.6875, 8305471.502275762, 8326489.377178781, 8337323.190773398, 8341115.157137608, 8430968.148392832, 8431978.018199963, 8432006.25, 8439095.3125, 8443390.586744495, 8459361.849908924, 8460941.325393254, 8460953.888366947, 8461612.876221478, 8462442.1875, 8463757.478879876, 8463827.12023212, 8464600.0, 8464887.5, 8465420.3125, 8468404.644269044, 8468407.277488371, 8472179.673633741, 8473387.099584287, 8473561.65022998, 8496770.3125, 8497919.745400498, 8498243.75, 8499069.293408353, 8499316.559656035, 8500959.763899948, 8502119.895374225, 8502270.21518968, 8502776.5625, 8504426.427522853, 8506219.313886056, 8506410.528961321, 8507738.96420274, 8508669.611382604, 8508824.522992522, 8512494.406877045, 8512552.841762355, 8512589.403510947, 8516445.559627833, 8525021.648377381, 8525670.64122394, 8526563.667165129, 8526907.8125, 8526926.544515029, 8527069.570340898, 8527506.156873856, 8527535.9375, 8528867.049779303, 8529679.6875, 8530170.3125, 8531012.236559818, 8531051.04776743, 8531414.0625, 8531833.475813104, 8532649.040528614, 8532809.415822584, 8533184.375, 8533202.315225555, 8533299.023110837, 8533606.25, 8533985.9375, 8534140.625, 8534217.993208617, 8534498.4375, 8534569.206347289, 8534600.0, 8535153.825449226, 8535303.125, 8535389.469155706, 8535672.484924423, 8535774.855667137, 8537138.307700694, 8539155.751706777, 8539258.072583705, 8539565.625, 8540012.5, 8540089.356445182, 8540262.37217571, 8540264.962440802, 8540539.0625, 8540553.125, 8540668.510860452, 8541639.077402374, 8541904.6875, 8545826.534011513, 8545835.5900627, 8546097.601205466, 8546200.510600891, 8546349.024798857, 8546488.228580402, 8546650.0142236, 8547119.32600921, 8547482.512535421, 8547657.915011853, 8548328.397652298, 8548382.8125, 8548964.98360752, 8548970.3125, 8549066.708951406, 8549723.371841291, 8549801.5625, 8549879.6875, 8550183.671635846, 8550373.4375, 8550378.125, 8550574.432231361, 8550635.503348649, 8550699.927302813, 8550787.346868884, 8550882.824804509, 8551041.077801352, 8551394.970412262, 8551490.625, 8551948.4375, 8552209.375, 8552766.249068059, 8552887.207412507, 8554166.481833482, 8554643.823037794, 8554823.4375, 8555259.378091317, 8556426.5625, 8559479.6875, 8560322.057296522, 8561088.006621424, 8562704.255794622, 8564958.848740205, 8565380.57915484, 8567276.072984252, 8567706.25, 8568324.488643829, 8568870.3125, 8569254.866495991, 8569389.112749564, 8569439.592602853, 8569745.3125, 8570384.690784799, 8570617.1875, 8570907.8125, 8573134.375, 8574321.875, 8574837.827915762, 8576184.04699589, 8577209.375, 8579115.625, 8586665.53586135, 8588770.297198907, 8592989.0625, 8593106.507536052, 8593477.647064708, 8596258.770640688, 8597045.450765554, 8597515.819671802, 8597961.211426457, 8598059.386033542, 8599411.158362603, 8599706.935433576, 8600157.61059142, 8603543.75, 8604320.98309628, 8607301.299871903, 8607443.830218492, 8607573.688321892, 8609237.5, 8612466.170729803, 8614381.25, 8615920.3125, 8619819.115729973, 8623084.656053403, 8623090.341318678, 8624677.25778827, 8625376.399008673, 8625834.375, 8626191.000633804, 8635351.268008206, 8635429.6875, 8635482.623761492, 8635482.8125, 8635863.251680184, 8635875.99606052, 8636012.5, 8636182.555684185, 8640971.696493946, 8642415.103619326, 8643390.48229292, 8645889.779928796, 8646003.768517232, 8646471.485162359, 8647080.6689468, 8651404.544368966, 8653891.176867181, 8659663.455027359, 8665361.646829568, 8666010.9375, 8671049.214785188, 8671346.887094932, 8672814.0625, 8673481.42990732, 8673976.5625, 8673987.5, 8675623.4375, 8675929.6875, 8676076.5625, 8676126.411682736, 8677074.345063992, 8677120.224087048, 8681859.357591193, 8691660.54983616, 8691787.514102045, 8693143.378701443, 8693775.0, 8698064.0625, 8703404.64880344, 8710240.625, 8710956.25, 8711316.787588857, 8714634.285068322, 8715092.387422467, 8716242.1875, 8719080.1383039, 8719542.699558994, 8719795.453197258, 8720629.6875, 8720925.0, 8721243.86027799, 8721570.283863459, 8721669.766483167, 8721726.44942046, 8721850.0, 8722039.0625, 8722093.257353624, 8722472.397071846, 8722570.3125, 8723087.5, 8723339.0625, 8724271.875, 8726223.4375, 8726858.245672986, 8727821.93229167, 8728970.3125, 8735091.188936908, 8738023.920218324, 8751955.215474889, 8754982.336273624, 8755406.674550364, 8756940.625, 8757926.5625, 8768450.0, 8768838.351198945, 8775218.75, 8781889.0625, 8782331.015683997, 8783284.375, 8790492.252814528, 8796820.325295871, 8798553.440857781, 8803335.031634705, 8806378.747393496, 8817498.303605478, 8820979.698756838, 8827444.971383778, 8829470.860318648, 8830246.857992021, 8832467.1875, 8835373.4375, 8836316.63324872, 8837002.36831586, 8837759.507419832, 8840471.36241417, 8846475.0, 8846876.320875904, 8846950.50985295, 8847317.963425187, 8848318.75, 8849416.295404792, 8850316.859574271, 8854584.883971727, 8858036.357259845, 8858062.5, 8858366.630723823, 8858375.960472003, 8859093.624545896, 8859407.76192688, 8860047.925147507, 8860701.748502394, 8861056.592857676, 8861060.62933762, 8861250.0, 8862007.288004398, 8862655.595572622, 8862773.950824844, 8863449.74480488, 8863591.377620373, 8863892.358012777, 8864054.589150686, 8864057.258624323, 8864091.409238826, 8864500.829874918, 8864826.378792433, 8866646.234648706, 8866733.644713534, 8867159.265238693, 8867830.888935233, 8871089.0625, 8872248.4375, 8873732.8125, 8874075.0, 8874335.611950316, 8874377.119399764, 8874462.5, 8874978.555599092, 8875362.905864924, 8878390.104774099, 8883768.530063845, 8884376.946328972, 8885554.998430751, 8886711.074108118, 8887698.513813423, 8887712.939519178, 8887818.75, 8894001.610358927, 8894010.32489434, 8897926.29144827, 8898524.047624962, 8899062.115091896, 8902003.125, 8903406.191526383, 8906248.845929516, 8906250.0, 8908882.8125, 8913278.608498896, 8917667.652250724, 8920479.32450242, 8924470.260329375, 8926251.5625, 8928309.422724178, 8930127.894785082, 8930772.017518682, 8933421.875, 8934473.4375, 8936156.246663835, 8936158.758001214, 8937303.125, 8938738.60723408, 8940332.885025678, 8940979.6875, 8941540.625, 8943215.131934939, 8944986.04720585, 8945147.876241356, 8945465.460191317, 8945666.468677638, 8945996.6044806, 8946037.5, 8946820.531460045, 8946972.95889895, 8948196.648740197, 8949182.8125, 8950118.75, 8951846.365614273, 8953562.634090705, 8953742.1875, 8953804.6875, 8954074.437899278, 8954134.375, 8954445.003426649, 8954445.3125, 8954453.863612816, 8954457.8125, 8954779.126663303, 8954799.066422228, 8954864.46032297, 8954875.0, 8955207.8125, 8955231.526445014, 8955295.368019324, 8955467.13408063, 8955598.547326123, 8956129.55117745, 8956386.600130374, 8956388.418025937, 8956954.421948256, 8956993.75, 8957375.018720178, 8957431.99890986, 8957447.76766325, 8957467.79717046, 8957904.054598358, 8957960.9375, 8958059.375, 8958109.317541003, 8958135.9375, 8958165.690848306, 8958370.266736306, 8958383.56843261, 8958455.766361358, 8958626.510393698, 8958651.202064147, 8958805.717041539, 8958959.289901877, 8959063.542265212, 8959266.311638026, 8962088.002789194, 8962218.803114392, 8962234.806638956, 8962364.0625, 8962640.179421669, 8962826.194568232, 8963412.5, 8963582.068215162, 8967850.0, 8969012.433344018, 8971446.632378617, 8982117.119752755, 8982795.906335756, 8983921.60680925, 8985766.435302584, 8986736.723066352, 8987528.918539403, 8987548.182163384, 8987853.168869214, 8987903.693718132, 8988236.40388799, 8988320.773818532, 8988422.458870064, 8988853.125, 8988950.0, 8988991.310118735, 8989101.429079557, 8989145.3125, 8989260.836703856, 8989274.752660934, 8989287.034751847, 8989551.795614077, 8990131.582430532, 8990157.022110477, 8990240.625, 8990452.970138319, 8990490.625, 8990499.626352102, 8990645.3125, 8990706.25, 8990778.015941001, 8990857.760849109, 8990859.375, 8991085.9375, 8991527.062314114, 8992107.739849415, 8992315.473804409, 8992509.888544852, 8993195.3125, 8993803.079372972, 8993871.133723788, 8994393.75, 8995550.271072749, 8999449.015763741, 8999730.729636079, 9000553.125, 9003174.655683769, 9016117.350982083, 9016981.133760693, 9018693.66126736, 9019359.632105283, 9020088.752761707, 9022008.262354737, 9022037.177668983, 9022055.100143688, 9022121.728963736, 9022328.322091468, 9022700.691844715, 9023083.944226522, 9023085.958798483, 9023250.0, 9024051.328203201, 9024112.5, 9024689.0625, 9024742.12437204, 9024883.624509899, 9026276.904616434, 9026518.574103657, 9027355.91105356, 9027901.920925511, 9027940.705948899, 9029040.625, 9029112.11290898, 9030612.706170453, 9031500.550730998, 9031595.130058084, 9032463.58592524, 9032979.689033428, 9033897.93077296, 9037167.1875, 9037874.741238344, 9038708.31931727, 9041012.5, 9042571.612220684, 9043184.375, 9044487.5, 9044739.658806562, 9045348.4375, 9045924.18295919, 9045982.21021974, 9046335.9375, 9046580.195169844, 9047234.375, 9047837.045526931, 9048049.419782529, 9048503.99697923, 9048652.314567912, 9048677.440147901, 9048848.598823745, 9049524.675270153, 9053618.75, 9053710.687185034, 9053725.757053329, 9057609.246628217, 9057957.718169842, 9058697.021093436, 9064817.33276007, 9064887.184617275, 9064891.108537892, 9065806.25, 9066260.253910927, 9066978.319129523, 9068240.170735678, 9068366.569225674, 9070149.372846643, 9074184.375, 9075010.9375, 9075823.4375, 9077303.00959318, 9077810.9375, 9079500.982441949, 9080631.25, 9081052.21825747, 9081437.5, 9081626.572674317, 9081929.77090202, 9081961.49990879, 9082009.375, 9082306.936476497, 9082309.112715736, 9082406.25, 9082693.661539052, 9082723.4375, 9082801.5625, 9082808.311219634, 9082949.999883628, 9082993.75, 9083464.906640392, 9083549.333713036, 9083678.963658465, 9083770.260911744, 9083846.438724991, 9083868.564860316, 9083926.5625, 9083991.781355323, 9083992.49444082, 9084110.9375, 9084112.313516598, 9084237.488841336, 9084252.507020107, 9084314.891746499, 9084352.414645584, 9084529.576784102, 9084657.8125, 9084931.459842995, 9084956.352071151, 9084990.625, 9085010.477400377, 9085018.75, 9085232.356842572, 9085252.253250068, 9085262.821735982, 9085366.263293399, 9085373.376479693, 9085440.398956187, 9085447.72781522, 9085701.5625, 9085704.6875, 9085754.612283293, 9085870.25505734, 9085927.884625394, 9085935.9375, 9085984.985160632, 9086046.377200112, 9086056.236719431, 9086061.804752525, 9086122.004353259, 9086175.0, 9086182.7713489, 9086296.618177114, 9086299.293704579, 9086340.328498403, 9086352.40069367, 9086356.058748754, 9086421.56340741, 9086437.9513471, 9086465.603757458, 9086476.589159673, 9086501.5625, 9086519.336915012, 9086662.213304391, 9086683.883672476, 9086685.684975581, 9086786.755328324, 9086848.082047563, 9086932.056002388, 9086934.375, 9086962.231787479, 9087089.0625, 9087100.280892255, 9087126.525541207, 9087133.03311958, 9087142.368168565, 9087171.846381387, 9087200.825962348, 9087205.649854016, 9087236.349524608, 9087246.088777373, 9087299.533599883, 9087308.421408603, 9087368.6079978, 9087369.44568425, 9087376.904660266, 9087382.8125, 9087385.440855976, 9087410.629876224, 9087488.65859612, 9087627.865123961, 9087635.76914927, 9087725.054243132, 9087730.358249353, 9087785.9375, 9087789.251483923, 9087790.432437837, 9087812.5, 9087829.970433302, 9087864.621582592, 9087911.012052132, 9087938.415063674, 9087962.771203026, 9087989.0625, 9088011.574696502, 9088156.25, 9088168.865983523, 9088275.0, 9088328.117564525, 9088374.99044382, 9088459.375, 9088527.713909825, 9088563.789752007, 9088653.786563076, 9088960.9375, 9088966.571872497, 9088972.200797642, 9089045.530443413, 9089363.013838576, 9089632.577337887, 9089981.25, 9090163.976323778, 9090398.339572104, 9090412.5, 9091040.625, 9091151.114894116, 9091483.701766634, 9091611.830946824, 9091660.9375, 9091901.44577414, 9092039.0625, 9092140.647317719, 9092601.211657276, 9093125.976213712, 9093923.299276944, 9094724.126326194, 9094801.83873159, 9097458.742835399, 9099295.3125, 9100526.60264306, 9101034.239914894, 9101212.331200965, 9101289.609052708, 9101322.319305547, 9101875.0, 9101971.586376758, 9102029.404835386, 9102164.0625, 9102503.125, 9103168.75, 9103376.370489191, 9103735.262600057, 9104256.25, 9104727.85771874, 9104860.614009364, 9104868.75, 9105234.375, 9105720.021838266, 9106319.575155623, 9107305.837874247, 9108166.463960469, 9108227.105595041, ...], [66.47506251493301, 144.56730097555385, 48.070097979467654, 27.233882838152844, 86.86343880362202, 9.021430885658368, 5.6539960860897915, 15.550499706936794, 36.785903269294565, 82.86832266229774, 31.66808275044513, 27.846899077914728, 39.55598865041161, 57.65421585988994, 24.442725667672, 20.829172259474845, 5.769522000401293, 18.86007550200174, 76.741742863983, 75.76764964910862, 31.650924996761432, 20.984312781768708, 61.923665175715506, 114.52619655992217, 45.028773465125376, 55.80119426731069, 127.45370380000521, 20.562575871318845, 34.63206820845095, 21.139035897364106, 19.88737342378199, 68.19840741846849, 11.18361766749027, 6.70456089497466, 9.470227867551023, 9.972231994114498, 25.017119125557485, 25.280129050052615, 42.83826620322042, 6.627917858492273, 5.529789482819994, 6.832788596208807, 44.62278285474248, 12.77894168100218, 55.30771357463857, 61.80027864780061, 26.280856354749513, 20.122183291089648, 57.332027226716434, 84.18456196558449, 6.624265763311302, 14.524712058936908, 77.51746265309897, 13.951858499519735, 50.63994137669199, 74.416206901613, 66.63072196980077, 5.055063273445701, 51.76603323666174, 38.45092008775711, 44.83086233730816, 49.823433253704806, 30.179894405029383, 51.67707625946635, 7.433608681089425, 6.645569673188999, 34.50272579510698, 50.88044577680008, 40.860950915775625, 53.74246312558266, 5.045907588002096, 75.923099325712, 13.786738309670417, 10.553176881525571, 26.743870814427652, 43.394508272406526, 34.96295414580719, 82.4639166514937, 44.46805318431753, 11.179050723826213, 87.40386579430871, 90.10900688477578, 69.76529469694984, 11.152060321145274, 10.960986132778022, 8.84243262646915, 14.034644282924887, 71.59638879266173, 69.89385782175108, 8.194129318734037, 52.45370764617333, 27.24950260151031, 5.387041585630862, 39.83629080976964, 113.01279401598012, 36.09213535284251, 29.504987120732565, 13.366383541223344, 17.125106836634433, 6.348208264731082, 63.3229653407589, 5.423403857945974, 7.422197758907061, 52.02496380223364, 26.801136934851026, 11.259298931413493, 44.79195806653935, 10.327768336884244, 54.66266210417565, 74.24462777453348, 11.448369873919056, 12.219618366200413, 46.01918737766239, 71.17464748924714, 10.487552375215984, 21.05573445662419, 96.1404482295901, 23.843983168131068, 29.052430336984685, 12.401276411046183, 6.150583225439338, 13.596178384424702, 25.423659792165168, 22.358939013164374, 64.12302531407394, 31.400001881375506, 7.221454010465668, 32.48364458903404, 44.85177329455746, 92.17297367267912, 50.25381743627364, 92.35780490068242, 47.24528970447116, 26.818625371727585, 12.827024106438163, 94.61775796938433, 75.45251785711979, 7.0844556586501595, 25.360543518927383, 89.96662283862935, 9.997056530710823, 19.730889328718604, 27.837259729156987, 65.23504690409467, 38.98414836974089, 6.367817897877509, 12.561662004212955, 11.478523954493433, 6.263874898658349, 5.603148114337633, 13.824621241037354, 47.63252663441001, 57.894006957242894, 82.54761625631178, 133.08099490374198, 7.581809329068489, 42.97799810502188, 29.078906707437344, 6.475811371286516, 42.425263448665945, 8.6014508993656, 45.75357696333789, 53.43474421514489, 19.027071381685168, 45.080463393705436, 9.932433697400997, 48.962494452261375, 21.935297777589625, 9.661739029395507, 105.48522748915161, 25.13573338391967, 24.796166067295058, 34.40274194730155, 37.06803749645879, 41.66358895882632, 6.424551063293617, 68.39548905752864, 68.84385568899415, 22.34079714620696, 11.314932233220633, 29.503472003740335, 45.949415845863555, 13.240800827297766, 32.52610705623486, 48.17381439961019, 21.102121407577727, 6.113715903242473, 12.534818011190588, 37.709897887616066, 19.067539978875, 37.76907241061841, 102.30404922782537, 23.85370715126101, 6.138392513558659, 14.67813568685371, 77.15083402171942, 110.44399927120676, 6.612980471264506, 57.08328675438311, 51.972113486266835, 109.35123429086667, 23.522527695452112, 30.043473073110643, 12.558735584940504, 84.13997191813463, 26.46101598276414, 11.068377887607566, 39.72278910334286, 11.17613841676813, 5.033447690681695, 29.818235608282347, 18.177667227342987, 9.507246106159075, 52.28825758256031, 21.87932201205251, 21.56826012150079, 20.41168696851451, 12.27816698269752, 29.730200806392652, 32.8247104491783, 109.34177866495594, 56.366108960139165, 75.8223872979492, 61.60785877153778, 61.262278376154526, 14.318383537448717, 49.673400398557845, 8.003942257076437, 58.16940735789619, 37.17490642386049, 10.600273527664791, 11.601371009329638, 56.98733727082943, 13.70512289068992, 39.48237799896677, 13.251703717456902, 16.424370279673063, 67.54197841968936, 5.327886145022602, 16.869578911761728, 6.674808266875474, 43.44385055989321, 81.89819429662681, 57.46490593747794, 7.129246306295386, 22.00594589718119, 64.26948304910948, 27.71603165998722, 81.75652616530472, 33.6728820108344, 9.994177433298768, 41.42712258495089, 5.824655566429517, 43.92313294835432, 58.80859028245932, 28.884084727509524, 10.812176805687809, 70.2528943497087, 7.432458711102146, 92.95206080269021, 57.897274658724044, 94.40585614754957, 95.91638124152922, 81.72155132352664, 8.229179053104154, 19.45549137322726, 15.190614240030046, 5.517486322537998, 70.2322682943178, 62.28017255330385, 10.165705859491386, 63.56902211176665, 41.790181271423, 8.60430684218417, 12.630664127878738, 68.83957691207064, 26.30846857168938, 9.754283603468368, 8.71788553110155, 9.348535454362029, 85.60272381029509, 6.961384998716496, 47.06268119680905, 68.69977352416764, 18.00695298732329, 50.07302558982607, 89.40333532755737, 18.265119531858083, 67.65768059670852, 5.574520827207994, 5.543816917177509, 87.83414274987109, 52.205933127245046, 60.4164136591505, 68.68453530837073, 22.86420964223149, 16.29386487079886, 76.49605777733298, 13.414933671782343, 7.399234401109395, 33.152791441773864, 42.10514580307557, 58.46521558706134, 9.299264114844428, 20.11603582743833, 28.756691463322667, 12.575216368633809, 11.771512005062897, 66.12105121939713, 9.0643882385235, 19.93501180072852, 56.97881429149556, 44.517567885052244, 93.25003500294721, 46.73204453566163, 8.916588981330511, 40.63012736456112, 22.54756193438537, 18.59362141888137, 43.66152163703009, 6.979952315631869, 58.46370087651735, 182.40459181018917, 30.22585665785794, 24.093075705755503, 17.573346682868323, 104.36738632296371, 48.179184452250986, 60.65809420171627, 12.140544841602242, 9.008305257783913, 7.568067984861951, 19.696890150197593, 62.45299453903391, 69.6932422752501, 30.061854511017035, 70.98922203013613, 6.526541270233131, 15.393016212263781, 16.84932606496497, 29.866738639208513, 74.8592710178284, 91.29699845727819, 29.22021000400681, 9.25388183972789, 87.07073089036885, 6.736319677308515, 94.77097186275489, 44.637095944286244, 34.71588292779185, 84.67061765743215, 79.04124377763975, 18.261140961747536, 56.641654041952926, 11.19212032949855, 51.086289341176794, 18.874569032465217, 34.870953515133436, 60.703721348071156, 52.019983711515046, 53.744082190989964, 24.659362811331963, 31.019890082748496, 71.29808675342038, 41.182385331777354, 7.877876059044318, 68.53776955778683, 6.319980893479716, 12.236741699400561, 68.50421158076617, 10.122528152385964, 8.039549996173985, 48.42180254974914, 44.65416143415218, 58.79347346158586, 93.6786020475494, 26.231019827226273, 20.011521074015512, 53.285504291920034, 73.24374825167332, 14.102161597099546, 14.998616149914808, 53.8197320448321, 27.973231063790262, 23.08653508809703, 41.22658212322864, 26.174917909898355, 59.42014106034155, 12.495963905885722, 14.507948376740194, 9.871072889673012, 59.881720379108565, 9.419613460046994, 8.436222498546424, 50.526629774368104, 111.22125060501357, 68.91791142994452, 46.14858583160139, 62.540769327444494, 38.6110586813787, 38.909326292109476, 25.122780269548745, 129.71424866148544, 77.70642408119782, 20.84269973566929, 10.510748367762156, 62.33033740052559, 58.53584299048274, 7.607694085195682, 14.823184624491143, 62.53871262321784, 46.52263583959933, 75.46377990916922, 112.19529973518081, 8.64667953068177, 55.22716212450036, 8.79839307119173, 14.716789563280804, 93.7353848938763, 81.43026297506592, 44.892482274341944, 67.96229762870993, 15.685054091528194, 17.302386288791645, 5.51248903524894, 59.724158645364085, 6.636581285195373, 21.598327705780395, 47.007469918477994, 13.29505138666116, 80.42656711115626, 88.92151419501927, 15.136559821045548, 5.177893975019721, 86.97313180602701, 23.721374210602782, 49.084876569755224, 61.98667215970525, 30.054307453388954, 48.79401278206544, 6.830787135204564, 92.10197770829168, 42.29477022228282, 75.56777983126236, 10.991178350741697, 49.51620730400782, 30.480370304399628, 11.555615860801993, 10.45469434753554, 110.29116968321779, 86.61825853835751, 5.169920295438144, 23.430705661846, 14.983731549056598, 5.47132673851236, 12.39975805608499, 37.609911023658135, 73.75709436493156, 18.309165053503726, 24.24014987385609, 15.256341638133856, 9.552891424942286, 51.151834535045445, 17.529100097938752, 95.97718994932582, 60.28989507656663, 6.126975992482468, 23.711514811114743, 17.95736881399511, 12.42153094072089, 10.881426505692227, 77.80165997450011, 16.59670892309534, 22.830624634354123, 71.96341183157439, 10.844977921784155, 71.10223264011604, 22.007455949839525, 13.14769401147886, 59.40639816808016, 6.713295946755058, 22.702892301757537, 13.267868357762392, 7.084436875331862, 28.727699099855016, 14.453467974968557, 22.66723457647457, 6.029689601370309, 25.985140918951654, 92.29059552428113, 53.727166859563624, 7.321292191239013, 74.17771826246073, 57.0481168094542, 90.87721082095845, 50.22441568075178, 5.827412881950596, 66.3388697488267, 51.240921430156675, 70.4908319013822, 37.397295020667464, 58.59329846710849, 8.208401020595952, 52.05581673327603, 10.992267694990748, 7.596953326941073, 8.091688350878496, 14.995533629886571, 22.88081039112629, 92.46008604259907, 51.22926330719284, 91.33757917256952, 105.3909438378823, 31.58220857953367, 13.608787417878478, 26.86442772845642, 15.762511741352009, 77.37607689420823, 5.4814540370144655, 17.333440736483773, 71.27864244499484, 61.06447676930687, 90.80903026496344, 34.49179900068165, 45.154887603854405, 8.017502725762848, 10.955439625320837, 54.059396349006654, 41.118256212937645, 20.369903429355258, 8.583402851965113, 98.56837536506043, 69.0216441719082, 69.34038814482422, 74.5637482186623, 36.79642061726591, 11.879761927598013, 27.400482252739458, 59.18663284189722, 5.856919345070226, 5.641319369462905, 5.559265515113878, 5.898978764907192, 16.8510670437375, 29.893333266606817, 41.01449343696941, 57.868587261146885, 88.48894794183042, 74.49278831188282, 53.28287690462231, 10.780196770478884, 40.113610579825995, 11.231355714399646, 8.293355607733206, 11.660117222140071, 135.87026450304023, 15.305776302344519, 5.698289264542866, 14.984589508372263, 92.60159468070223, 8.599199772983418, 14.877076833143745, 61.51897267274632, 131.30812925715153, 20.96846374141755, 12.674036181995174, 8.357866907671372, 54.933976646049125, 47.883355293467616, 24.526196829005617, 20.158838894347156, 19.04266683554929, 55.368013856054034, 7.309585069318411, 15.979266118191628, 17.31579084568821, 6.321729803300002, 32.20954748896222, 34.11267561537797, 71.98422399358202, 15.211190636973534, 27.562345240377418, 21.37075623110499, 8.387450267682965, 15.365340830712075, 9.083753309516242, 61.72868423459761, 38.18494987150382, 6.187911445414019, 17.340691467235313, 9.124556926230555, 5.756391613648567, 5.134163165104015, 9.249605098761029, 7.414484840063889, 49.40682752600745, 25.432364432052587, 25.35929348681651, 27.204040438282156, 92.00173719993788, 26.528455285658175, 77.27633087380994, 44.03742860150379, 62.50840658843256, 44.32382605235282, 53.2984325804977, 8.121610730228083, 17.595315991608526, 55.47342954417072, 11.874801665142295, 11.827465825718605, 21.29368125917679, 58.41861061415517, 5.552003538737217, 41.588125859652095, 15.489079975832079, 15.240583266762346, 16.931024853000896, 57.545595614842455, 6.773098993651885, 13.027874741525926, 24.127695349110443, 24.528511340244933, 38.99125401682845, 55.44756188248981, 44.364937002448286, 50.75196522103056, 28.673203689228085, 60.76275726452376, 66.60243596900428, 5.9809271589475586, 6.222400318139432, 129.34679369227965, 44.13217572201097, 6.273246860884465, 10.78597296449254, 23.80823570787882, 89.74076994885809, 114.8152869805966, 14.928808751743821, 13.016642439376193, 53.973065806637386, 73.27153149882022, 15.225341731037386, 42.19744990339908, 35.564849755998935, 113.70603744983696, 28.15571522404978, 40.56007844188915, 9.195830445946315, 8.789534067237925, 10.72965118734169, 44.274189279657854, 15.847369424061513, 59.02615681676577, 72.89891347879336, 58.38300985706, 49.35464000294262, 13.47222213941221, 38.72767435390898, 73.12792688557678, 47.543496047221986, 10.349751903137744, 42.689982662391664, 23.635529953449385, 87.42123110103748, 99.79911323241315, 68.18076417210347, 53.453701025845355, 8.649738009336179, 16.71079572748453, 55.72904858240102, 44.32437463646128, 16.111426111794117, 17.94711407750284, 27.510427436878004, 27.04788749941551, 8.21577971367354, 12.187841519080282, 6.18906854005121, 77.95410033539636, 50.57033857271053, 15.013345294424234, 12.542093301047217, 12.883786534014142, 17.917348581297276, 46.68255254183918, 57.46576668950077, 36.22508502531601, 51.95149097940285, 84.18288704555016, 141.69960173913267, 27.650603539246667, 10.0643818161727, 5.779041310082784, 23.14404607250044, 23.008280275040182, 5.230469762443699, 6.25650637098227, 26.57640417085759, 94.16338391055434, 49.304007515229706, 85.59001193872777, 8.528833742093878, 64.16591103277085, 22.053725099230522, 22.920131931213458, 97.85461977751446, 12.703350312390356, 70.60766369570142, 27.271999699068953, 24.512429294936815, 11.02343928847524, 17.819086638718147, 5.794399411263445, 49.800137071070715, 19.11367283448596, 41.00687146423219, 19.813625673583555, 5.6164757091854955, 8.612109298802862, 17.077140713396876, 9.754515687597648, 72.80739858732946, 68.12543951585529, 63.93785138587352, 18.405919400512126, 42.752784223725214, 37.181851217110015, 26.679102048290673, 14.07573185115448, 68.63705184683863, 99.35285680494844, 108.58083251619915, 19.01476001835202, 52.601369773701286, 46.52109748858349, 36.20844369459878, 22.853470313404404, 92.04054150605151, 58.15700354268844, 14.541506239915053, 34.75655582969141, 39.93217156166435, 29.305866967420677, 32.55686642520426, 122.86275136477708, 97.69992140559643, 6.570724325504293, 54.02729959719385, 30.17486257409022, 80.56779401148341, 63.52771698057266, 16.086236565295692, 12.170334395138852, 5.190364275950696, 30.108086706848955, 65.98037060405203, 15.603524016011837, 26.42085992276075, 16.38267469835023, 9.558692451013755, 23.6271404038769, 5.979562986927804, 10.658678241507435, 7.759628569342337, 14.412645580962687, 23.3944029806438, 18.451186009297334, 13.51972595779184, 11.161161695735982, 45.533626270388105, 90.40004090008354, 80.84214740048402, 58.34459063389103, 12.664540509733948, 19.311992942650537, 21.54004337481287, 5.335930271243944, 35.85183604819103, 9.65404841177057, 15.25929415086581, 112.27503756003328, 33.69827295173358, 13.602580440812936, 7.274159994563325, 22.25819410164118, 54.72299685708094, 14.947357351173416, 32.61627360307518, 65.67221608435798, 15.746683196202794, 5.98479186528565, 53.08584948989627, 24.2381198549308, 110.98099977516836, 33.13488472797423, 87.25568611654626, 29.234673608249548, 74.47740902673637, 63.20785947999125, 53.180952353542835, 12.026211623006741, 82.26057932191594, 79.03759969002539, 17.15251909760665, 10.196390223807024, 19.2634020969088, 7.954831181766207, 25.45418246218964, 23.439909639811972, 61.43628847194205, 5.037350740802745, 5.2668394732294, 13.90066637473318, 23.914722398945706, 20.445923374631384, 127.31841247374932, 23.556217440953333, 17.172189778100268, 75.71956487332123, 8.813339255994142, 12.41656846797611, 21.961801893598892, 6.19212124160321, 54.820674031684504, 42.809042535471896, 29.69585660217995, 70.16078405126014, 83.48704706420956, 32.15131571315133, 27.06912609227147, 42.082019281622074, 26.230631416952804, 63.555109080470125, 9.340020975908834, 15.26922206757186, 7.277579568911667, 39.67232121661662, 7.314407690195764, 24.24476717022868, 58.339806090551875, 14.614727189041249, 58.594161744140614, 60.314935807287995, 17.25752206324739, 28.52292731379606, 49.50308526573437, 65.3448812081585, 19.98054118154194, 59.480072526309634, 27.543801717030302, 83.84614782586478, 86.24822886760086, 97.4382053071252, 10.54714546754169, 11.643944249828305, 86.86180480993512, 14.445569828678845, 6.2657895792585, 114.35688991112633, 5.371163253113275, 109.16076034393036, 88.58707898364669, 84.01508343682491, 98.47816569052185, 9.419227575016867, 42.09849414760937, 32.744563681450124, 35.46784287252851, 5.442543280867252, 6.909716732212432, 8.464374613298174, 19.32267183858022, 51.305788721490615, 63.576471828581475, 19.62868856437736, 43.17598048830075, 29.05691648844365, 5.458547388395422, 27.43743422236737, 5.600883023339615, 55.47868944918107, 47.09627750366761, 53.75020278901732, 195.38296492696153, 19.743970549697586, 115.38882085295035, 85.12402352126229, 5.704144037371082, 73.43412355331462, 26.1060410304454, 23.795531998781804, 8.785851602607709, 5.799963547970004, 66.26540016304436, 11.914972694330329, 14.861156266797051, 13.857048602789945, 37.707111962504726, 14.79200188361316, 80.41125758230973, 24.43680323604314, 10.754675479250286, 19.356346320877275, 5.684503441818319, 5.0838523311718955, 101.59956843620142, 24.16545620178782, 55.745277191547146, 43.66966389031811, 22.57370356220686, 64.76131264051759, 11.422355450105803, 9.30732118890009, 69.0147597872816, 26.891125859623045, 9.705914432316408, 7.910402917421859, 21.834955535275686, 12.234593574801847, 72.36984950088709, 92.92223984661592, 16.428528745498763, 106.24296810870152, 21.52664334427729, 6.229099233738323, 22.508441188617947, 48.56794292859572, 61.79653129324062, 6.774384322519673, 91.74432205950951, 51.5713958679236, 15.714318086874906, 14.255060225034113, 31.84288884364961, 16.141992827200394, 12.130642825531227, 77.74234204562146, 20.138469651921753, 16.086846139373037, 49.68913047583934, 100.54605497240749, 81.32145555917872, 11.313968635029493, 64.94604434806404, 23.239341737722995, 7.1189418919495315, 35.00220706678468, 81.45703313855213, 24.105203925563575, 18.249650715473916, 112.36383405184819, 47.55019269907273, 16.34798624522465, 42.224188698548275, 12.038593769104004, 24.615861772914595, 37.23420027016353, 164.86224422793867, 26.727731627968453, 61.52727470343174, 58.697253262951065, 13.471868843064714, 12.875385057599711, 12.885727038060955, 31.068885441339987, 26.412820690091078, 76.09834921282773, 33.30069163347791, 29.175484263410116, 10.32025851531744, 11.848210350133332, 12.407240432720227, 6.117303782784906, 6.964631783628116, 36.50508400640227, 19.001061799089992, 10.92292683825405, 84.80684515044025, 5.855558437186157, 8.536392425878315, 91.4822866696495, 23.897159962860687, 10.712871737353874, 61.275202336464, 139.31130000928252, 62.91873047381574, 32.897403546560156, 67.36495416396984, 102.71055999305611, 24.17787318314359, 8.122610807501216, 72.97375283623506, 31.20734435923202, 48.6523980586997, 19.412576859310505, 19.111338264797276, 15.082766546439103, 11.816072715943879, ...])
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);
([3036755.2872388773, 3085818.75, 3108071.7452315646, 3200913.591431123, 3202793.75, 3203743.359155985, 3253249.1377687687, 3254131.4010990104, 3268868.661717324, 3269254.6875, 3270852.8636588673, 3271127.575710763, 3271404.345984315, 3294670.717120175, 3302729.4398084935, 3350354.1182651226, 3422679.0680036563, 3457778.8757001157, 3559146.875, 3564000.0, 3565162.5, 3566243.9236780894, 3567268.3691703225, 3569689.0625, 3571891.496329569, 3572320.3125, 3577226.1926787524, 3577638.4638699666, 3602168.75, 3712404.848180919, 3713156.145740657, 3721503.2378525566, 3721509.410477956, 3723262.1973943366, 3839082.9722418226, 3843913.1717031174, 3864631.5003847396, 4047216.789364895, 6126044.982074411, 6387169.593156235, 6392468.682002479, 6392523.774899871, 6394632.8125, 6466999.287291529, 6467616.048030243, 6512045.3125, 6540928.0002363855, 6554838.413137145, 6555046.379156706, 6556584.375, 6558547.697601441, 6558592.073674829, 6564596.875, 6568455.963629963, 6570585.9375, 6585701.351113925, 6592589.888703165, 6596825.787155283, 6597834.375, 6598084.375, 6598517.1875, 6598795.815244642, 6598905.918689646, 6599714.0625, 6601101.067814666, 6601111.879087969, 6601867.762581809, 6602398.4375, 6606022.27467395, 6606078.004606941, 6614644.007349791, 6656596.494170323, 6680040.285011617, 6680066.785964673, 6682928.348655947, 6695389.0625, 6698373.4375, 6700280.181377694, 6700792.1875, 6703235.97010177, 6717975.741532109, 6756571.875, 6774462.5, 6826517.203024953, 6826751.453152925, 6827408.733965579, 6827882.552325256, 6828995.977535276, 6829464.703332052, 6829724.820990048, 6829868.920300126, 6830845.244580842, 6837602.82269469, 6845398.4375, 6846049.886524486, 6847795.3125, 6848126.5625, 6866349.514662566, 6873291.100074482, 6915277.177872623, 6918971.975135756, 6923635.012161627, 6928804.157584911, 6929618.75, 6934909.281378141, 6936370.395088286, 6961200.0, 6968055.669894614, 6971157.8125, 7005846.454017562, 7041162.695900527, 7061284.41644304, 7066732.8125, 7067232.403941757, 7067271.422826983, 7068061.955009229, 7068072.679470452, 7079966.89476465, 7080157.8125, 7083589.748622528, 7083619.330164126, 7084691.783255543, 7086202.225924505, 7090413.645126379, 7098668.75, 7099725.823978903, 7101623.804739429, 7105159.375, 7131078.125, 7132765.625, 7140108.523319279, 7160906.25, 7162870.3125, 7172399.907399884, 7175733.682084177, 7179805.7682656655, 7196030.8778376505, 7209157.669866312, 7209758.765598929, 7214870.3125, 7215571.007163845, 7215820.024979512, 7216421.415417091, 7216506.267670121, 7216804.483863093, 7216860.131954423, 7217003.882465005, 7218018.963417488, 7218146.848649471, 7218629.488850848, 7221866.8599780435, 7222039.221298346, 7222071.637982767, 7232287.5, 7235327.58914285, 7235765.565362578, 7245082.9469040325, 7246987.5, 7252804.615163809, 7252820.3125, 7253061.488972148, 7253587.5, 7257713.633730886, 7258641.3987951595, 7258843.524754622, 7259078.759467767, 7259438.079648388, 7259472.764422028, 7259803.491439035, 7259996.875, 7260065.42620609, 7260078.815245237, 7260140.472705852, 7260181.116612077, 7260259.051699412, 7261254.2765932465, 7261296.875, 7262353.125, 7263841.768476627, 7266173.554067449, 7267742.1875, 7268895.220406141, 7269265.093576602, 7269656.25, 7270192.000570158, 7271866.64739222, 7273062.7427847255, 7274033.327216255, 7275351.016936971, 7280741.212599812, 7281532.8125, 7282276.5625, 7283621.583018269, 7285975.470132445, 7286257.741641063, 7287070.3125, 7287308.453133288, 7287472.633668592, 7287565.062284342, 7288331.25, 7291275.0, 7292105.931921444, 7292428.125, 7292913.755464263, 7293236.649823163, 7294531.136185741, 7294776.52420869, 7294778.125, 7295164.093265641, 7295237.013983884, 7295950.0, 7314480.8615440205, 7314537.700889174, 7314773.4375, 7314887.037864522, 7315096.38250156, 7315330.634300744, 7315497.504406384, 7315641.848561004, 7315684.186559091, 7315788.960518052, 7315798.821744214, 7315849.851025213, 7315972.488600673, 7316207.8125, 7319068.57631012, 7319670.3125, 7593143.174345138, 7601585.923198475, 7601701.187544192, 7649735.571651781, 7951679.970778277, 7987305.832140379, 8038307.4453112325, 8044998.2704853555, 8119390.097629178, 8123953.46632079, 8155604.6875, 8175466.772100502, 8175658.739030631, 8175658.913861648, 8182328.125, 8215035.246375018, 8238235.9375, 8242010.967069397, 8251323.423285685, 8252843.75, 8259115.582778219, 8259350.0, 8259785.613532581, 8260238.192011237, 8261899.294056217, 8264154.830742605, 8264167.891624733, 8265641.778466579, 8268227.367952762, 8270181.03829787, 8271725.898813295, 8274374.501776048, 8274450.876782945, 8275539.059257582, 8276035.9375, 8276118.75, 8276307.423194356, 8276392.077358633, 8276478.8527979, 8276968.47537186, 8276988.736947103, 8277043.486441547, 8277049.87946833, 8277836.782973922, 8277850.8817675635, 8277859.375, 8277959.9311016975, 8278100.563733105, 8278387.374375276, 8278542.064426193, 8278606.711085241, 8278627.297822714, 8278662.520192288, 8278953.162909596, 8279616.541449025, 8280325.0, 8282705.493011663, 8282819.577384406, 8283001.206645079, 8284014.970247348, 8289153.788918388, 8293800.0, 8300030.512776776, 8300368.969250289, 8303167.940797261, 8303482.8125, 8303603.125, 8304154.6875, 8305471.502275762, 8326489.377178781, 8337323.190773398, 8341115.157137608, 8430968.148392832, 8431978.018199963, 8432006.25, 8439095.3125, 8443390.586744495, 8459361.849908924, 8460941.325393254, 8460953.888366947, 8461612.876221478, 8462442.1875, 8463757.478879876, 8463827.12023212, 8464600.0, 8464887.5, 8465420.3125, 8468404.644269044, 8468407.277488371, 8472179.673633741, 8473387.099584287, 8473561.65022998, 8496770.3125, 8497919.745400498, 8498243.75, 8499069.293408353, 8499316.559656035, 8500959.763899948, 8502119.895374225, 8502270.21518968, 8502776.5625, 8504426.427522853, 8506219.313886056, 8506410.528961321, 8507738.96420274, 8508669.611382604, 8508824.522992522, 8512494.406877045, 8512552.841762355, 8512589.403510947, 8516445.559627833, 8525021.648377381, 8525670.64122394, 8526563.667165129, 8526907.8125, 8526926.544515029, 8527069.570340898, 8527506.156873856, 8527535.9375, 8528867.049779303, 8529679.6875, 8530170.3125, 8531012.236559818, 8531051.04776743, 8531414.0625, 8531833.475813104, 8532649.040528614, 8532809.415822584, 8533184.375, 8533202.315225555, 8533299.023110837, 8533606.25, 8533985.9375, 8534140.625, 8534217.993208617, 8534498.4375, 8534569.206347289, 8534600.0, 8535153.825449226, 8535303.125, 8535389.469155706, 8535672.484924423, 8535774.855667137, 8537138.307700694, 8539155.751706777, 8539258.072583705, 8539565.625, 8540012.5, 8540089.356445182, 8540262.37217571, 8540264.962440802, 8540539.0625, 8540553.125, 8540668.510860452, 8541639.077402374, 8541904.6875, 8545826.534011513, 8545835.5900627, 8546097.601205466, 8546200.510600891, 8546349.024798857, 8546488.228580402, 8546650.0142236, 8547119.32600921, 8547482.512535421, 8547657.915011853, 8548328.397652298, 8548382.8125, 8548964.98360752, 8548970.3125, 8549066.708951406, 8549723.371841291, 8549801.5625, 8549879.6875, 8550183.671635846, 8550373.4375, 8550378.125, 8550574.432231361, 8550635.503348649, 8550699.927302813, 8550787.346868884, 8550882.824804509, 8551041.077801352, 8551394.970412262, 8551490.625, 8551948.4375, 8552209.375, 8552766.249068059, 8552887.207412507, 8554166.481833482, 8554643.823037794, 8554823.4375, 8555259.378091317, 8556426.5625, 8559479.6875, 8560322.057296522, 8561088.006621424, 8562704.255794622, 8564958.848740205, 8565380.57915484, 8567276.072984252, 8567706.25, 8568324.488643829, 8568870.3125, 8569254.866495991, 8569389.112749564, 8569439.592602853, 8569745.3125, 8570384.690784799, 8570617.1875, 8570907.8125, 8573134.375, 8574321.875, 8574837.827915762, 8576184.04699589, 8577209.375, 8579115.625, 8586665.53586135, 8588770.297198907, 8592989.0625, 8593106.507536052, 8593477.647064708, 8596258.770640688, 8597045.450765554, 8597515.819671802, 8597961.211426457, 8598059.386033542, 8599411.158362603, 8599706.935433576, 8600157.61059142, 8603543.75, 8604320.98309628, 8607301.299871903, 8607443.830218492, 8607573.688321892, 8609237.5, 8612466.170729803, 8614381.25, 8615920.3125, 8619819.115729973, 8623084.656053403, 8623090.341318678, 8624677.25778827, 8625376.399008673, 8625834.375, 8626191.000633804, 8635351.268008206, 8635429.6875, 8635482.623761492, 8635482.8125, 8635863.251680184, 8635875.99606052, 8636012.5, 8636182.555684185, 8640971.696493946, 8642415.103619326, 8643390.48229292, 8645889.779928796, 8646003.768517232, 8646471.485162359, 8647080.6689468, 8651404.544368966, 8653891.176867181, 8659663.455027359, 8665361.646829568, 8666010.9375, 8671049.214785188, 8671346.887094932, 8672814.0625, 8673481.42990732, 8673976.5625, 8673987.5, 8675623.4375, 8675929.6875, 8676076.5625, 8676126.411682736, 8677074.345063992, 8677120.224087048, 8681859.357591193, 8691660.54983616, 8691787.514102045, 8693143.378701443, 8693775.0, 8698064.0625, 8703404.64880344, 8710240.625, 8710956.25, 8711316.787588857, 8714634.285068322, 8715092.387422467, 8716242.1875, 8719080.1383039, 8719542.699558994, 8719795.453197258, 8720629.6875, 8720925.0, 8721243.86027799, 8721570.283863459, 8721669.766483167, 8721726.44942046, 8721850.0, 8722039.0625, 8722093.257353624, 8722472.397071846, 8722570.3125, 8723087.5, 8723339.0625, 8724271.875, 8726223.4375, 8726858.245672986, 8727821.93229167, 8728970.3125, 8735091.188936908, 8738023.920218324, 8751955.215474889, 8754982.336273624, 8755406.674550364, 8756940.625, 8757926.5625, 8768450.0, 8768838.351198945, 8775218.75, 8781889.0625, 8782331.015683997, 8783284.375, 8790492.252814528, 8796820.325295871, 8798553.440857781, 8803335.031634705, 8806378.747393496, 8817498.303605478, 8820979.698756838, 8827444.971383778, 8829470.860318648, 8830246.857992021, 8832467.1875, 8835373.4375, 8836316.63324872, 8837002.36831586, 8837759.507419832, 8840471.36241417, 8846475.0, 8846876.320875904, 8846950.50985295, 8847317.963425187, 8848318.75, 8849416.295404792, 8850316.859574271, 8854584.883971727, 8858036.357259845, 8858062.5, 8858366.630723823, 8858375.960472003, 8859093.624545896, 8859407.76192688, 8860047.925147507, 8860701.748502394, 8861056.592857676, 8861060.62933762, 8861250.0, 8862007.288004398, 8862655.595572622, 8862773.950824844, 8863449.74480488, 8863591.377620373, 8863892.358012777, 8864054.589150686, 8864057.258624323, 8864091.409238826, 8864500.829874918, 8864826.378792433, 8866646.234648706, 8866733.644713534, 8867159.265238693, 8867830.888935233, 8871089.0625, 8872248.4375, 8873732.8125, 8874075.0, 8874335.611950316, 8874377.119399764, 8874462.5, 8874978.555599092, 8875362.905864924, 8878390.104774099, 8883768.530063845, 8884376.946328972, 8885554.998430751, 8886711.074108118, 8887698.513813423, 8887712.939519178, 8887818.75, 8894001.610358927, 8894010.32489434, 8897926.29144827, 8898524.047624962, 8899062.115091896, 8902003.125, 8903406.191526383, 8906248.845929516, 8906250.0, 8908882.8125, 8913278.608498896, 8917667.652250724, 8920479.32450242, 8924470.260329375, 8926251.5625, 8928309.422724178, 8930127.894785082, 8930772.017518682, 8933421.875, 8934473.4375, 8936156.246663835, 8936158.758001214, 8937303.125, 8938738.60723408, 8940332.885025678, 8940979.6875, 8941540.625, 8943215.131934939, 8944986.04720585, 8945147.876241356, 8945465.460191317, 8945666.468677638, 8945996.6044806, 8946037.5, 8946820.531460045, 8946972.95889895, 8948196.648740197, 8949182.8125, 8950118.75, 8951846.365614273, 8953562.634090705, 8953742.1875, 8953804.6875, 8954074.437899278, 8954134.375, 8954445.003426649, 8954445.3125, 8954453.863612816, 8954457.8125, 8954779.126663303, 8954799.066422228, 8954864.46032297, 8954875.0, 8955207.8125, 8955231.526445014, 8955295.368019324, 8955467.13408063, 8955598.547326123, 8956129.55117745, 8956386.600130374, 8956388.418025937, 8956954.421948256, 8956993.75, 8957375.018720178, 8957431.99890986, 8957447.76766325, 8957467.79717046, 8957904.054598358, 8957960.9375, 8958059.375, 8958109.317541003, 8958135.9375, 8958165.690848306, 8958370.266736306, 8958383.56843261, 8958455.766361358, 8958626.510393698, 8958651.202064147, 8958805.717041539, 8958959.289901877, 8959063.542265212, 8959266.311638026, 8962088.002789194, 8962218.803114392, 8962234.806638956, 8962364.0625, 8962640.179421669, 8962826.194568232, 8963412.5, 8963582.068215162, 8967850.0, 8969012.433344018, 8971446.632378617, 8982117.119752755, 8982795.906335756, 8983921.60680925, 8985766.435302584, 8986736.723066352, 8987528.918539403, 8987548.182163384, 8987853.168869214, 8987903.693718132, 8988236.40388799, 8988320.773818532, 8988422.458870064, 8988853.125, 8988950.0, 8988991.310118735, 8989101.429079557, 8989145.3125, 8989260.836703856, 8989274.752660934, 8989287.034751847, 8989551.795614077, 8990131.582430532, 8990157.022110477, 8990240.625, 8990452.970138319, 8990490.625, 8990499.626352102, 8990645.3125, 8990706.25, 8990778.015941001, 8990857.760849109, 8990859.375, 8991085.9375, 8991527.062314114, 8992107.739849415, 8992315.473804409, 8992509.888544852, 8993195.3125, 8993803.079372972, 8993871.133723788, 8994393.75, 8995550.271072749, 8999449.015763741, 8999730.729636079, 9000553.125, 9003174.655683769, 9016117.350982083, 9016981.133760693, 9018693.66126736, 9019359.632105283, 9020088.752761707, 9022008.262354737, 9022037.177668983, 9022055.100143688, 9022121.728963736, 9022328.322091468, 9022700.691844715, 9023083.944226522, 9023085.958798483, 9023250.0, 9024051.328203201, 9024112.5, 9024689.0625, 9024742.12437204, 9024883.624509899, 9026276.904616434, 9026518.574103657, 9027355.91105356, 9027901.920925511, 9027940.705948899, 9029040.625, 9029112.11290898, 9030612.706170453, 9031500.550730998, 9031595.130058084, 9032463.58592524, 9032979.689033428, 9033897.93077296, 9037167.1875, 9037874.741238344, 9038708.31931727, 9041012.5, 9042571.612220684, 9043184.375, 9044487.5, 9044739.658806562, 9045348.4375, 9045924.18295919, 9045982.21021974, 9046335.9375, 9046580.195169844, 9047234.375, 9047837.045526931, 9048049.419782529, 9048503.99697923, 9048652.314567912, 9048677.440147901, 9048848.598823745, 9049524.675270153, 9053618.75, 9053710.687185034, 9053725.757053329, 9057609.246628217, 9057957.718169842, 9058697.021093436, 9064817.33276007, 9064887.184617275, 9064891.108537892, 9065806.25, 9066260.253910927, 9066978.319129523, 9068240.170735678, 9068366.569225674, 9070149.372846643, 9074184.375, 9075010.9375, 9075823.4375, 9077303.00959318, 9077810.9375, 9079500.982441949, 9080631.25, 9081052.21825747, 9081437.5, 9081626.572674317, 9081929.77090202, 9081961.49990879, 9082009.375, 9082306.936476497, 9082309.112715736, 9082406.25, 9082693.661539052, 9082723.4375, 9082801.5625, 9082808.311219634, 9082949.999883628, 9082993.75, 9083464.906640392, 9083549.333713036, 9083678.963658465, 9083770.260911744, 9083846.438724991, 9083868.564860316, 9083926.5625, 9083991.781355323, 9083992.49444082, 9084110.9375, 9084112.313516598, 9084237.488841336, 9084252.507020107, 9084314.891746499, 9084352.414645584, 9084529.576784102, 9084657.8125, 9084931.459842995, 9084956.352071151, 9084990.625, 9085010.477400377, 9085018.75, 9085232.356842572, 9085252.253250068, 9085262.821735982, 9085366.263293399, 9085373.376479693, 9085440.398956187, 9085447.72781522, 9085701.5625, 9085704.6875, 9085754.612283293, 9085870.25505734, 9085927.884625394, 9085935.9375, 9085984.985160632, 9086046.377200112, 9086056.236719431, 9086061.804752525, 9086122.004353259, 9086175.0, 9086182.7713489, 9086296.618177114, 9086299.293704579, 9086340.328498403, 9086352.40069367, 9086356.058748754, 9086421.56340741, 9086437.9513471, 9086465.603757458, 9086476.589159673, 9086501.5625, 9086519.336915012, 9086662.213304391, 9086683.883672476, 9086685.684975581, 9086786.755328324, 9086848.082047563, 9086932.056002388, 9086934.375, 9086962.231787479, 9087089.0625, 9087100.280892255, 9087126.525541207, 9087133.03311958, 9087142.368168565, 9087171.846381387, 9087200.825962348, 9087205.649854016, 9087236.349524608, 9087246.088777373, 9087299.533599883, 9087308.421408603, 9087368.6079978, 9087369.44568425, 9087376.904660266, 9087382.8125, 9087385.440855976, 9087410.629876224, 9087488.65859612, 9087627.865123961, 9087635.76914927, 9087725.054243132, 9087730.358249353, 9087785.9375, 9087789.251483923, 9087790.432437837, 9087812.5, 9087829.970433302, 9087864.621582592, 9087911.012052132, 9087938.415063674, 9087962.771203026, 9087989.0625, 9088011.574696502, 9088156.25, 9088168.865983523, 9088275.0, 9088328.117564525, 9088374.99044382, 9088459.375, 9088527.713909825, 9088563.789752007, 9088653.786563076, 9088960.9375, 9088966.571872497, 9088972.200797642, 9089045.530443413, 9089363.013838576, 9089632.577337887, 9089981.25, 9090163.976323778, 9090398.339572104, 9090412.5, 9091040.625, 9091151.114894116, 9091483.701766634, 9091611.830946824, 9091660.9375, 9091901.44577414, 9092039.0625, 9092140.647317719, 9092601.211657276, 9093125.976213712, 9093923.299276944, 9094724.126326194, 9094801.83873159, 9097458.742835399, 9099295.3125, 9100526.60264306, 9101034.239914894, 9101212.331200965, 9101289.609052708, 9101322.319305547, 9101875.0, 9101971.586376758, 9102029.404835386, 9102164.0625, 9102503.125, 9103168.75, 9103376.370489191, 9103735.262600057, 9104256.25, 9104727.85771874, 9104860.614009364, 9104868.75, 9105234.375, 9105720.021838266, 9106319.575155623, 9107305.837874247, 9108166.463960469, 9108227.105595041, ...], [66.47506251493301, 144.56730097555385, 48.070097979467654, 27.233882838152844, 86.86343880362202, 9.021430885658368, 5.6539960860897915, 15.550499706936794, 36.785903269294565, 82.86832266229774, 31.66808275044513, 27.846899077914728, 39.55598865041161, 57.65421585988994, 24.442725667672, 20.829172259474845, 5.769522000401293, 18.86007550200174, 76.741742863983, 75.76764964910862, 31.650924996761432, 20.984312781768708, 61.923665175715506, 114.52619655992217, 45.028773465125376, 55.80119426731069, 127.45370380000521, 20.562575871318845, 34.63206820845095, 21.139035897364106, 19.88737342378199, 68.19840741846849, 11.18361766749027, 6.70456089497466, 9.470227867551023, 9.972231994114498, 25.017119125557485, 25.280129050052615, 42.83826620322042, 6.627917858492273, 5.529789482819994, 6.832788596208807, 44.62278285474248, 12.77894168100218, 55.30771357463857, 61.80027864780061, 26.280856354749513, 20.122183291089648, 57.332027226716434, 84.18456196558449, 6.624265763311302, 14.524712058936908, 77.51746265309897, 13.951858499519735, 50.63994137669199, 74.416206901613, 66.63072196980077, 5.055063273445701, 51.76603323666174, 38.45092008775711, 44.83086233730816, 49.823433253704806, 30.179894405029383, 51.67707625946635, 7.433608681089425, 6.645569673188999, 34.50272579510698, 50.88044577680008, 40.860950915775625, 53.74246312558266, 5.045907588002096, 75.923099325712, 13.786738309670417, 10.553176881525571, 26.743870814427652, 43.394508272406526, 34.96295414580719, 82.4639166514937, 44.46805318431753, 11.179050723826213, 87.40386579430871, 90.10900688477578, 69.76529469694984, 11.152060321145274, 10.960986132778022, 8.84243262646915, 14.034644282924887, 71.59638879266173, 69.89385782175108, 8.194129318734037, 52.45370764617333, 27.24950260151031, 5.387041585630862, 39.83629080976964, 113.01279401598012, 36.09213535284251, 29.504987120732565, 13.366383541223344, 17.125106836634433, 6.348208264731082, 63.3229653407589, 5.423403857945974, 7.422197758907061, 52.02496380223364, 26.801136934851026, 11.259298931413493, 44.79195806653935, 10.327768336884244, 54.66266210417565, 74.24462777453348, 11.448369873919056, 12.219618366200413, 46.01918737766239, 71.17464748924714, 10.487552375215984, 21.05573445662419, 96.1404482295901, 23.843983168131068, 29.052430336984685, 12.401276411046183, 6.150583225439338, 13.596178384424702, 25.423659792165168, 22.358939013164374, 64.12302531407394, 31.400001881375506, 7.221454010465668, 32.48364458903404, 44.85177329455746, 92.17297367267912, 50.25381743627364, 92.35780490068242, 47.24528970447116, 26.818625371727585, 12.827024106438163, 94.61775796938433, 75.45251785711979, 7.0844556586501595, 25.360543518927383, 89.96662283862935, 9.997056530710823, 19.730889328718604, 27.837259729156987, 65.23504690409467, 38.98414836974089, 6.367817897877509, 12.561662004212955, 11.478523954493433, 6.263874898658349, 5.603148114337633, 13.824621241037354, 47.63252663441001, 57.894006957242894, 82.54761625631178, 133.08099490374198, 7.581809329068489, 42.97799810502188, 29.078906707437344, 6.475811371286516, 42.425263448665945, 8.6014508993656, 45.75357696333789, 53.43474421514489, 19.027071381685168, 45.080463393705436, 9.932433697400997, 48.962494452261375, 21.935297777589625, 9.661739029395507, 105.48522748915161, 25.13573338391967, 24.796166067295058, 34.40274194730155, 37.06803749645879, 41.66358895882632, 6.424551063293617, 68.39548905752864, 68.84385568899415, 22.34079714620696, 11.314932233220633, 29.503472003740335, 45.949415845863555, 13.240800827297766, 32.52610705623486, 48.17381439961019, 21.102121407577727, 6.113715903242473, 12.534818011190588, 37.709897887616066, 19.067539978875, 37.76907241061841, 102.30404922782537, 23.85370715126101, 6.138392513558659, 14.67813568685371, 77.15083402171942, 110.44399927120676, 6.612980471264506, 57.08328675438311, 51.972113486266835, 109.35123429086667, 23.522527695452112, 30.043473073110643, 12.558735584940504, 84.13997191813463, 26.46101598276414, 11.068377887607566, 39.72278910334286, 11.17613841676813, 5.033447690681695, 29.818235608282347, 18.177667227342987, 9.507246106159075, 52.28825758256031, 21.87932201205251, 21.56826012150079, 20.41168696851451, 12.27816698269752, 29.730200806392652, 32.8247104491783, 109.34177866495594, 56.366108960139165, 75.8223872979492, 61.60785877153778, 61.262278376154526, 14.318383537448717, 49.673400398557845, 8.003942257076437, 58.16940735789619, 37.17490642386049, 10.600273527664791, 11.601371009329638, 56.98733727082943, 13.70512289068992, 39.48237799896677, 13.251703717456902, 16.424370279673063, 67.54197841968936, 5.327886145022602, 16.869578911761728, 6.674808266875474, 43.44385055989321, 81.89819429662681, 57.46490593747794, 7.129246306295386, 22.00594589718119, 64.26948304910948, 27.71603165998722, 81.75652616530472, 33.6728820108344, 9.994177433298768, 41.42712258495089, 5.824655566429517, 43.92313294835432, 58.80859028245932, 28.884084727509524, 10.812176805687809, 70.2528943497087, 7.432458711102146, 92.95206080269021, 57.897274658724044, 94.40585614754957, 95.91638124152922, 81.72155132352664, 8.229179053104154, 19.45549137322726, 15.190614240030046, 5.517486322537998, 70.2322682943178, 62.28017255330385, 10.165705859491386, 63.56902211176665, 41.790181271423, 8.60430684218417, 12.630664127878738, 68.83957691207064, 26.30846857168938, 9.754283603468368, 8.71788553110155, 9.348535454362029, 85.60272381029509, 6.961384998716496, 47.06268119680905, 68.69977352416764, 18.00695298732329, 50.07302558982607, 89.40333532755737, 18.265119531858083, 67.65768059670852, 5.574520827207994, 5.543816917177509, 87.83414274987109, 52.205933127245046, 60.4164136591505, 68.68453530837073, 22.86420964223149, 16.29386487079886, 76.49605777733298, 13.414933671782343, 7.399234401109395, 33.152791441773864, 42.10514580307557, 58.46521558706134, 9.299264114844428, 20.11603582743833, 28.756691463322667, 12.575216368633809, 11.771512005062897, 66.12105121939713, 9.0643882385235, 19.93501180072852, 56.97881429149556, 44.517567885052244, 93.25003500294721, 46.73204453566163, 8.916588981330511, 40.63012736456112, 22.54756193438537, 18.59362141888137, 43.66152163703009, 6.979952315631869, 58.46370087651735, 182.40459181018917, 30.22585665785794, 24.093075705755503, 17.573346682868323, 104.36738632296371, 48.179184452250986, 60.65809420171627, 12.140544841602242, 9.008305257783913, 7.568067984861951, 19.696890150197593, 62.45299453903391, 69.6932422752501, 30.061854511017035, 70.98922203013613, 6.526541270233131, 15.393016212263781, 16.84932606496497, 29.866738639208513, 74.8592710178284, 91.29699845727819, 29.22021000400681, 9.25388183972789, 87.07073089036885, 6.736319677308515, 94.77097186275489, 44.637095944286244, 34.71588292779185, 84.67061765743215, 79.04124377763975, 18.261140961747536, 56.641654041952926, 11.19212032949855, 51.086289341176794, 18.874569032465217, 34.870953515133436, 60.703721348071156, 52.019983711515046, 53.744082190989964, 24.659362811331963, 31.019890082748496, 71.29808675342038, 41.182385331777354, 7.877876059044318, 68.53776955778683, 6.319980893479716, 12.236741699400561, 68.50421158076617, 10.122528152385964, 8.039549996173985, 48.42180254974914, 44.65416143415218, 58.79347346158586, 93.6786020475494, 26.231019827226273, 20.011521074015512, 53.285504291920034, 73.24374825167332, 14.102161597099546, 14.998616149914808, 53.8197320448321, 27.973231063790262, 23.08653508809703, 41.22658212322864, 26.174917909898355, 59.42014106034155, 12.495963905885722, 14.507948376740194, 9.871072889673012, 59.881720379108565, 9.419613460046994, 8.436222498546424, 50.526629774368104, 111.22125060501357, 68.91791142994452, 46.14858583160139, 62.540769327444494, 38.6110586813787, 38.909326292109476, 25.122780269548745, 129.71424866148544, 77.70642408119782, 20.84269973566929, 10.510748367762156, 62.33033740052559, 58.53584299048274, 7.607694085195682, 14.823184624491143, 62.53871262321784, 46.52263583959933, 75.46377990916922, 112.19529973518081, 8.64667953068177, 55.22716212450036, 8.79839307119173, 14.716789563280804, 93.7353848938763, 81.43026297506592, 44.892482274341944, 67.96229762870993, 15.685054091528194, 17.302386288791645, 5.51248903524894, 59.724158645364085, 6.636581285195373, 21.598327705780395, 47.007469918477994, 13.29505138666116, 80.42656711115626, 88.92151419501927, 15.136559821045548, 5.177893975019721, 86.97313180602701, 23.721374210602782, 49.084876569755224, 61.98667215970525, 30.054307453388954, 48.79401278206544, 6.830787135204564, 92.10197770829168, 42.29477022228282, 75.56777983126236, 10.991178350741697, 49.51620730400782, 30.480370304399628, 11.555615860801993, 10.45469434753554, 110.29116968321779, 86.61825853835751, 5.169920295438144, 23.430705661846, 14.983731549056598, 5.47132673851236, 12.39975805608499, 37.609911023658135, 73.75709436493156, 18.309165053503726, 24.24014987385609, 15.256341638133856, 9.552891424942286, 51.151834535045445, 17.529100097938752, 95.97718994932582, 60.28989507656663, 6.126975992482468, 23.711514811114743, 17.95736881399511, 12.42153094072089, 10.881426505692227, 77.80165997450011, 16.59670892309534, 22.830624634354123, 71.96341183157439, 10.844977921784155, 71.10223264011604, 22.007455949839525, 13.14769401147886, 59.40639816808016, 6.713295946755058, 22.702892301757537, 13.267868357762392, 7.084436875331862, 28.727699099855016, 14.453467974968557, 22.66723457647457, 6.029689601370309, 25.985140918951654, 92.29059552428113, 53.727166859563624, 7.321292191239013, 74.17771826246073, 57.0481168094542, 90.87721082095845, 50.22441568075178, 5.827412881950596, 66.3388697488267, 51.240921430156675, 70.4908319013822, 37.397295020667464, 58.59329846710849, 8.208401020595952, 52.05581673327603, 10.992267694990748, 7.596953326941073, 8.091688350878496, 14.995533629886571, 22.88081039112629, 92.46008604259907, 51.22926330719284, 91.33757917256952, 105.3909438378823, 31.58220857953367, 13.608787417878478, 26.86442772845642, 15.762511741352009, 77.37607689420823, 5.4814540370144655, 17.333440736483773, 71.27864244499484, 61.06447676930687, 90.80903026496344, 34.49179900068165, 45.154887603854405, 8.017502725762848, 10.955439625320837, 54.059396349006654, 41.118256212937645, 20.369903429355258, 8.583402851965113, 98.56837536506043, 69.0216441719082, 69.34038814482422, 74.5637482186623, 36.79642061726591, 11.879761927598013, 27.400482252739458, 59.18663284189722, 5.856919345070226, 5.641319369462905, 5.559265515113878, 5.898978764907192, 16.8510670437375, 29.893333266606817, 41.01449343696941, 57.868587261146885, 88.48894794183042, 74.49278831188282, 53.28287690462231, 10.780196770478884, 40.113610579825995, 11.231355714399646, 8.293355607733206, 11.660117222140071, 135.87026450304023, 15.305776302344519, 5.698289264542866, 14.984589508372263, 92.60159468070223, 8.599199772983418, 14.877076833143745, 61.51897267274632, 131.30812925715153, 20.96846374141755, 12.674036181995174, 8.357866907671372, 54.933976646049125, 47.883355293467616, 24.526196829005617, 20.158838894347156, 19.04266683554929, 55.368013856054034, 7.309585069318411, 15.979266118191628, 17.31579084568821, 6.321729803300002, 32.20954748896222, 34.11267561537797, 71.98422399358202, 15.211190636973534, 27.562345240377418, 21.37075623110499, 8.387450267682965, 15.365340830712075, 9.083753309516242, 61.72868423459761, 38.18494987150382, 6.187911445414019, 17.340691467235313, 9.124556926230555, 5.756391613648567, 5.134163165104015, 9.249605098761029, 7.414484840063889, 49.40682752600745, 25.432364432052587, 25.35929348681651, 27.204040438282156, 92.00173719993788, 26.528455285658175, 77.27633087380994, 44.03742860150379, 62.50840658843256, 44.32382605235282, 53.2984325804977, 8.121610730228083, 17.595315991608526, 55.47342954417072, 11.874801665142295, 11.827465825718605, 21.29368125917679, 58.41861061415517, 5.552003538737217, 41.588125859652095, 15.489079975832079, 15.240583266762346, 16.931024853000896, 57.545595614842455, 6.773098993651885, 13.027874741525926, 24.127695349110443, 24.528511340244933, 38.99125401682845, 55.44756188248981, 44.364937002448286, 50.75196522103056, 28.673203689228085, 60.76275726452376, 66.60243596900428, 5.9809271589475586, 6.222400318139432, 129.34679369227965, 44.13217572201097, 6.273246860884465, 10.78597296449254, 23.80823570787882, 89.74076994885809, 114.8152869805966, 14.928808751743821, 13.016642439376193, 53.973065806637386, 73.27153149882022, 15.225341731037386, 42.19744990339908, 35.564849755998935, 113.70603744983696, 28.15571522404978, 40.56007844188915, 9.195830445946315, 8.789534067237925, 10.72965118734169, 44.274189279657854, 15.847369424061513, 59.02615681676577, 72.89891347879336, 58.38300985706, 49.35464000294262, 13.47222213941221, 38.72767435390898, 73.12792688557678, 47.543496047221986, 10.349751903137744, 42.689982662391664, 23.635529953449385, 87.42123110103748, 99.79911323241315, 68.18076417210347, 53.453701025845355, 8.649738009336179, 16.71079572748453, 55.72904858240102, 44.32437463646128, 16.111426111794117, 17.94711407750284, 27.510427436878004, 27.04788749941551, 8.21577971367354, 12.187841519080282, 6.18906854005121, 77.95410033539636, 50.57033857271053, 15.013345294424234, 12.542093301047217, 12.883786534014142, 17.917348581297276, 46.68255254183918, 57.46576668950077, 36.22508502531601, 51.95149097940285, 84.18288704555016, 141.69960173913267, 27.650603539246667, 10.0643818161727, 5.779041310082784, 23.14404607250044, 23.008280275040182, 5.230469762443699, 6.25650637098227, 26.57640417085759, 94.16338391055434, 49.304007515229706, 85.59001193872777, 8.528833742093878, 64.16591103277085, 22.053725099230522, 22.920131931213458, 97.85461977751446, 12.703350312390356, 70.60766369570142, 27.271999699068953, 24.512429294936815, 11.02343928847524, 17.819086638718147, 5.794399411263445, 49.800137071070715, 19.11367283448596, 41.00687146423219, 19.813625673583555, 5.6164757091854955, 8.612109298802862, 17.077140713396876, 9.754515687597648, 72.80739858732946, 68.12543951585529, 63.93785138587352, 18.405919400512126, 42.752784223725214, 37.181851217110015, 26.679102048290673, 14.07573185115448, 68.63705184683863, 99.35285680494844, 108.58083251619915, 19.01476001835202, 52.601369773701286, 46.52109748858349, 36.20844369459878, 22.853470313404404, 92.04054150605151, 58.15700354268844, 14.541506239915053, 34.75655582969141, 39.93217156166435, 29.305866967420677, 32.55686642520426, 122.86275136477708, 97.69992140559643, 6.570724325504293, 54.02729959719385, 30.17486257409022, 80.56779401148341, 63.52771698057266, 16.086236565295692, 12.170334395138852, 5.190364275950696, 30.108086706848955, 65.98037060405203, 15.603524016011837, 26.42085992276075, 16.38267469835023, 9.558692451013755, 23.6271404038769, 5.979562986927804, 10.658678241507435, 7.759628569342337, 14.412645580962687, 23.3944029806438, 18.451186009297334, 13.51972595779184, 11.161161695735982, 45.533626270388105, 90.40004090008354, 80.84214740048402, 58.34459063389103, 12.664540509733948, 19.311992942650537, 21.54004337481287, 5.335930271243944, 35.85183604819103, 9.65404841177057, 15.25929415086581, 112.27503756003328, 33.69827295173358, 13.602580440812936, 7.274159994563325, 22.25819410164118, 54.72299685708094, 14.947357351173416, 32.61627360307518, 65.67221608435798, 15.746683196202794, 5.98479186528565, 53.08584948989627, 24.2381198549308, 110.98099977516836, 33.13488472797423, 87.25568611654626, 29.234673608249548, 74.47740902673637, 63.20785947999125, 53.180952353542835, 12.026211623006741, 82.26057932191594, 79.03759969002539, 17.15251909760665, 10.196390223807024, 19.2634020969088, 7.954831181766207, 25.45418246218964, 23.439909639811972, 61.43628847194205, 5.037350740802745, 5.2668394732294, 13.90066637473318, 23.914722398945706, 20.445923374631384, 127.31841247374932, 23.556217440953333, 17.172189778100268, 75.71956487332123, 8.813339255994142, 12.41656846797611, 21.961801893598892, 6.19212124160321, 54.820674031684504, 42.809042535471896, 29.69585660217995, 70.16078405126014, 83.48704706420956, 32.15131571315133, 27.06912609227147, 42.082019281622074, 26.230631416952804, 63.555109080470125, 9.340020975908834, 15.26922206757186, 7.277579568911667, 39.67232121661662, 7.314407690195764, 24.24476717022868, 58.339806090551875, 14.614727189041249, 58.594161744140614, 60.314935807287995, 17.25752206324739, 28.52292731379606, 49.50308526573437, 65.3448812081585, 19.98054118154194, 59.480072526309634, 27.543801717030302, 83.84614782586478, 86.24822886760086, 97.4382053071252, 10.54714546754169, 11.643944249828305, 86.86180480993512, 14.445569828678845, 6.2657895792585, 114.35688991112633, 5.371163253113275, 109.16076034393036, 88.58707898364669, 84.01508343682491, 98.47816569052185, 9.419227575016867, 42.09849414760937, 32.744563681450124, 35.46784287252851, 5.442543280867252, 6.909716732212432, 8.464374613298174, 19.32267183858022, 51.305788721490615, 63.576471828581475, 19.62868856437736, 43.17598048830075, 29.05691648844365, 5.458547388395422, 27.43743422236737, 5.600883023339615, 55.47868944918107, 47.09627750366761, 53.75020278901732, 195.38296492696153, 19.743970549697586, 115.38882085295035, 85.12402352126229, 5.704144037371082, 73.43412355331462, 26.1060410304454, 23.795531998781804, 8.785851602607709, 5.799963547970004, 66.26540016304436, 11.914972694330329, 14.861156266797051, 13.857048602789945, 37.707111962504726, 14.79200188361316, 80.41125758230973, 24.43680323604314, 10.754675479250286, 19.356346320877275, 5.684503441818319, 5.0838523311718955, 101.59956843620142, 24.16545620178782, 55.745277191547146, 43.66966389031811, 22.57370356220686, 64.76131264051759, 11.422355450105803, 9.30732118890009, 69.0147597872816, 26.891125859623045, 9.705914432316408, 7.910402917421859, 21.834955535275686, 12.234593574801847, 72.36984950088709, 92.92223984661592, 16.428528745498763, 106.24296810870152, 21.52664334427729, 6.229099233738323, 22.508441188617947, 48.56794292859572, 61.79653129324062, 6.774384322519673, 91.74432205950951, 51.5713958679236, 15.714318086874906, 14.255060225034113, 31.84288884364961, 16.141992827200394, 12.130642825531227, 77.74234204562146, 20.138469651921753, 16.086846139373037, 49.68913047583934, 100.54605497240749, 81.32145555917872, 11.313968635029493, 64.94604434806404, 23.239341737722995, 7.1189418919495315, 35.00220706678468, 81.45703313855213, 24.105203925563575, 18.249650715473916, 112.36383405184819, 47.55019269907273, 16.34798624522465, 42.224188698548275, 12.038593769104004, 24.615861772914595, 37.23420027016353, 164.86224422793867, 26.727731627968453, 61.52727470343174, 58.697253262951065, 13.471868843064714, 12.875385057599711, 12.885727038060955, 31.068885441339987, 26.412820690091078, 76.09834921282773, 33.30069163347791, 29.175484263410116, 10.32025851531744, 11.848210350133332, 12.407240432720227, 6.117303782784906, 6.964631783628116, 36.50508400640227, 19.001061799089992, 10.92292683825405, 84.80684515044025, 5.855558437186157, 8.536392425878315, 91.4822866696495, 23.897159962860687, 10.712871737353874, 61.275202336464, 139.31130000928252, 62.91873047381574, 32.897403546560156, 67.36495416396984, 102.71055999305611, 24.17787318314359, 8.122610807501216, 72.97375283623506, 31.20734435923202, 48.6523980586997, 19.412576859310505, 19.111338264797276, 15.082766546439103, 11.816072715943879, ...])
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)