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 = 48172
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);
([4823115.938167311, 6264334.2983354945, 6301015.251562012, 6308650.857590015, 6309099.762966569, 6309130.969850574, 6309748.714567522, 6312439.472258157, 6328860.866114781, 6422488.514484805, 6438986.832136285, 6540933.281371189, 6566781.777111698, 6600707.353896482, 6602497.474721404, 6623628.125, 6625233.074252047, 6631532.8125, 6634028.862475703, 6651275.0, 6658826.5625, 6658848.934438858, 6672708.351012113, 6695156.436161531, 6703409.375, 6709737.775603135, 6710127.952563439, 6710318.531468532, 6710348.2832115665, 6742019.329776451, 6746401.018632285, 6783175.0, 6784064.294037673, 6784562.46538518, 6792017.086099212, 6793268.300914091, 6796479.6875, 6801896.1530522, 6803446.144263219, 6819269.547097204, 6895674.865177762, 6904049.261744158, 6907599.959753087, 6908786.978148374, 6909442.236632201, 6936079.3984624585, 7007828.908924713, 7023854.228361798, 7023916.4811014235, 7045299.818785629, 7089767.595644784, 7094106.25, 7096283.344313903, 7122635.087324577, 7128580.670142057, 7167749.977477012, 7181028.125, 7244965.625, 7255771.915090738, 7259106.25, 7275485.9375, 7355802.169935525, 7369818.1325951675, 7370334.478654546, 7375898.312113335, 7418268.75, 7424942.258913104, 7424982.358839042, 7427170.3125, 7449691.248086162, 7478305.972593111, 7493204.6875, 7496249.018071155, 7499448.612772483, 7561415.456720144, 7561932.426058046, 7625650.054369326, 7626080.791885031, 7628204.6875, 7628209.67590074, 7628975.10280254, 7630166.066337441, 7634742.1875, 7635094.733395689, 7635983.259408717, 7639745.496180751, 7641871.615461015, 8106287.334840901, 8115201.556092584, 8117053.587090587, 8346300.905453578, 8373219.8033918, 8373720.906121174, 8374700.337587398, 8374729.772882203, 8375731.040408025, 8380137.25678881, 8417013.980185905, 8470601.350292843, 8607740.565129723, 8615017.1875, 8615953.706118023, 8682235.9375, 8696599.092584811, 8697829.511255343, 8706695.637179313, 8710976.5625, 8729943.844770886, 8734507.8125, 8749147.85417831, 8751777.931059642, 8752189.998949733, 8752201.473729739, 8752231.98886275, 8754045.821333844, 8757387.5, 8757397.205343833, 8757721.875, 8758197.807313299, 8761303.90215597, 8769963.101980196, 8769992.079658654, 8771479.350605996, 8773057.93138131, 8773232.484210754, 8773443.553631082, 8773679.186985046, 8773702.851902677, 8774466.110022962, 8774604.485516595, 8774628.06256209, 8774719.414299456, 8775876.419720437, 8776134.140363501, 8776405.015680533, 8776717.913574914, 8779094.682331897, 8793922.345172552, 8805411.195086012, 8806845.536702367, 8810571.731970305, 8811019.829093289, 8813118.483495811, 8818240.333340647, 8819069.725282317, 8820383.947387295, 8821434.107703712, 8824091.0577049, 8824550.184057103, 8825034.664173374, 8825155.5437603, 8825267.1875, 8825490.34893128, 9059171.529562904, 9072990.730476364, 9087371.933157125, 9087431.940492146, 9102964.0625, 9116031.750868654, 9217782.862545384, 9249698.431261111, 9251128.716019308, 9298676.210182434, 9357150.0, 9357150.613966046, 9363706.667150838, 9368015.977266692, 9424937.854531758, 9427445.3125, 9428439.051716086, 9428669.805017883, 9435916.698811125, 9443094.55648406, 9443379.630900253, 9443555.733075205, 9444758.009195121, 9445228.125, 9447034.361329574, 9447293.75, 9447426.5625, 9447485.605018776, 9447509.908586502, 9447516.440892784, 9447710.537340932, 9447938.856670666, 9448067.113772634, 9448270.394651232, 9448329.071955986, 9448331.18405154, 9448337.5, 9448341.80987318, 9448730.450933306, 9448806.25, 9448825.783938618, 9448838.405200945, 9448851.982118132, 9448893.75, 9449018.75, 9449187.015414024, 9449302.025467781, 9449434.828956334, 9449456.099747509, 9449479.907852506, 9449591.164171929, 9449834.30185355, 9449834.519677533, 9449856.900371531, 9450026.588864272, 9450332.854357805, 9450563.88592575, 9450596.130168494, 9450635.07599371, 9450677.097883357, 9450740.890004696, 9450804.6875, 9450856.793600488, 9450864.297559412, 9451287.192127785, 9451503.45890075, 9451842.1875, 9452234.300339663, 9452546.318051977, 9454301.5625, 9458855.758519288, 9487209.979318159, 9488749.055504434, 9488755.261276962, 9491209.843443383, 9493766.672432363, 9497358.58061058, 9504777.348345105, 9545149.519820098, 9547523.478428423, 9549319.661639666, 9565589.281360079, 9585099.373572024, 9585394.873692797, 9595764.736532202, 9604762.328140508, 9609240.12158048, 9615236.245683672, 9615932.799791737, 9618356.96771202, 9618602.149036309, 9619656.664774692, 9630152.661084637, 9632576.61937491, 9633250.435668422, 9633933.912504643, 9637729.269894412, 9639965.625, 9643162.755161863, 9643798.87008926, 9663819.849265441, 9672268.224408068, 9692756.712834861, 9694437.288531259, 9695106.993379733, 9699490.439716596, 9708641.270784892, 9745956.25, 9747050.0, 9763865.917216642, 9769111.811365232, 9789531.518804338, 9793927.348417552, 9797110.9375, 9797525.0, 9797715.625, 9798112.5, 9799111.567677656, 9800095.3125, 9800115.29808968, 9800573.734954465, 9803203.539345209, 9805040.809526166, 9806477.687395247, 9809490.625, 9813540.657262972, 9813927.123783488, 9814157.296057118, 9814373.402800908, 9814837.598997323, 9814944.417151693, 9825896.828510039, 9827068.531568041, 9828312.5, 9834593.75, 9839417.016029386, 9839907.232981505, 9841577.261275839, 9842501.712292276, 9860396.677541172, 9869129.6875, 9872654.6875, 9874680.101233829, 9874756.25, 9874764.0625, 9874771.875, 9874849.772983445, 9874901.111605147, 9874927.385982914, 9874953.769706273, 9875220.852883935, 9875414.224684244, 9875445.032374399, 9875510.019493217, 9875642.114874043, 9875893.878897706, 9875989.0625, 9876220.3125, 9876239.0625, 9876321.659130111, 9876401.824739443, 9876863.966186035, 9880451.772341598, 9883410.9375, 9885224.70686586, 9885498.423686076, 9887137.5, 9888750.791206492, 9901866.535177017, 9909005.376769388, 9912093.75, 9913289.036711378, 9913741.872701073, 9914403.1222368, 9920814.56626323, 9921157.8125, 9923611.534832638, 9934173.4375, 9938307.679763677, 9940048.933106873, 9940076.5625, 9940167.179002816, 9941519.779582534, 9941616.304982776, 9945642.792638306, 9945807.515532814, 9945879.6875, 9946131.25, 9946155.073020546, 9946445.899263334, 9946653.544220371, 9958681.926681127, 9961086.440369265, 9961149.38914201, 9968926.892012542, 9994003.125, 10033424.59024872, 10037559.854481056, 10045684.420359213, 10047550.0, 10057219.979267512, 10060714.667281222, 10062357.098936837, 10062543.556623219, 10063327.858445935, 10064978.125, 10066810.57488774, 10066907.653428217, 10067426.243801458, 10068651.673743645, 10069034.191160599, 10070958.877889886, 10071268.521791557, 10072287.275073225, 10130819.773493992, 10144602.635916991, 10156445.301798945, 10161963.422052259, 10163314.32622877, 10164590.077030545, 10165098.089832222, 10165816.508369397, 10173930.052194541, 10174019.710990157, 10175118.543691961, 10175322.196526665, 10175499.54847649, 10176951.228198191, 10176982.8125, 10177395.11962022, 10179518.799308648, 10184230.210730322, 10185121.529580312, 10211040.835276721, 10219283.149224913, 10228189.73281944, 10232465.82411634, 10234354.348011263, 10237220.976356484, 10241794.106137127, 10243122.223518405, 10243138.796936193, 10268522.586805802, 10269822.97873757, 10277437.446108384, 10283459.901337583, 10284217.1875, 10287558.377018047, 10289451.484747412, 10295857.4926367, 10298059.375, 10302332.285415871, 10305813.310267055, 10307398.525475267, 10309241.758785669, 10313708.913410986, 10314004.452808492, 10314263.111582326, 10319543.103077348, 10322006.132803317, 10324468.482137563, 10329335.9375, 10337571.63787921, 10338485.9375, 10338796.141123537, 10340701.06791971, 10341439.62193436, 10341664.108329745, 10341681.203202099, 10341730.335019132, 10349718.368329298, 10359297.852781532, 10359443.75, 10359732.985958729, 10360540.840504153, 10361705.701428706, 10365204.61138177, 10365457.257048976, 10365849.851873081, 10367482.082313005, 10368745.517803805, 10369520.265897615, 10370617.993169269, 10371323.4375, 10371370.3125, 10372430.778564189, 10372767.900796903, 10372957.262503259, 10372997.782534238, 10373861.7498245, 10373876.5625, 10375298.4375, 10376035.660092955, 10376372.561601574, 10378283.763139402, 10385316.929588271, 10386625.0, 10389596.641185334, 10393637.5, 10393807.8125, 10393826.337262, 10394209.30406682, 10394210.9375, 10394485.927205535, 10394585.9375, 10394791.291986676, 10394974.257733159, 10395340.625, 10395418.369979661, 10396343.632633826, 10396630.780059531, 10397192.1875, 10397435.763402551, 10397573.4375, 10398020.3125, 10398118.75, 10398526.660516895, 10398528.125, 10398735.930101829, 10398897.799769381, 10399534.092485353, 10400265.08930357, 10401932.364882674, 10401952.627864389, 10401954.102794448, 10402172.408304099, 10402637.43156044, 10402698.639407756, 10402754.438126259, 10402843.75, 10402863.87749822, 10402872.258072626, 10402874.280253712, 10402879.31555294, 10402925.0, 10402938.541927233, 10402958.054325432, 10403200.994983258, 10403277.842201894, 10403332.640142605, 10403396.875, 10403433.79070912, 10403491.907223798, 10403598.156711956, 10403609.048019757, 10403627.79869884, 10403646.61726053, 10403647.056135941, 10403690.625, 10403721.437348073, 10403791.778845575, 10403805.751841089, 10403829.57449659, 10403855.982116628, 10403868.20921113, 10403870.873965118, 10403950.513161499, 10403971.875, 10403971.875, 10403987.5, 10403990.804516627, 10404006.652617775, 10404049.992698219, 10404060.9375, 10404079.236910652, 10404142.413163094, 10404167.1875, 10404167.537926568, 10404185.961683996, 10404197.969302744, 10404198.415115373, 10404215.058963867, 10404233.240418086, 10404256.25, 10404317.1875, 10404332.894381473, 10404342.67645102, 10404347.075123345, 10404354.6875, 10404378.664714294, 10404406.36169548, 10404424.543475991, 10404424.575485816, 10404430.476063697, 10404439.72648307, 10404452.575980386, 10404456.66363128, 10404461.743918754, 10404467.549784392, 10404467.9549538, 10404474.160277966, 10404474.388448842, 10404477.338276159, 10404482.146196594, 10404497.427736297, 10404497.909855997, 10404505.665716678, 10404528.703695362, 10404537.148704149, 10404548.678842725, 10404564.0625, 10404568.495012056, 10404569.621793786, 10404569.700441103, 10404622.380850095, 10404624.910781097, 10404635.283787707, 10404637.231760371, 10404651.046018666, 10404665.065603893, 10404669.276953096, 10404670.37857087, 10404673.222981222, 10404706.222987266, 10404713.359300034, 10404725.101327598, 10404737.421327498, 10404748.4375, 10404767.662472319, 10404771.875, 10404789.150945993, 10404793.322052905, 10404806.25, 10404807.814918775, 10404814.65551163, 10404825.0, 10404826.17754536, 10404839.502846798, 10404842.13729499, 10404848.19337355, 10404857.52379837, 10404862.525974542, 10404880.630737767, 10404881.36537403, 10404895.43392394, 10404895.945350125, 10404905.388791248, 10404912.73966698, 10404930.176100472, 10404931.25, 10404937.890221836, 10404944.658387871, 10404954.707238544, 10404957.8125, 10404993.529673304, 10404994.418056816, 10405007.21847986, 10405009.213404965, 10405023.348155394, 10405034.330719827, 10405040.625, 10405068.088021288, 10405068.623272352, 10405085.729678709, 10405091.065638056, 10405095.431661664, 10405111.564160913, 10405116.582460582, 10405122.522907987, 10405131.324060816, 10405136.242534589, 10405163.385791417, 10405170.277082602, 10405172.453763952, 10405238.805789532, 10405241.111516522, 10405252.077517113, 10405253.04122592, 10405259.84490579, 10405267.1875, 10405315.427824887, 10405316.323122956, 10405355.95589682, 10405364.0625, 10405376.5625, 10405377.97874996, 10405397.472052516, 10405438.71523081, 10405510.038313191, 10405515.625, 10405540.120287195, 10405566.143859807, 10405595.91960086, 10405596.07591872, 10405608.126744855, 10405622.85612193, 10405675.778328456, 10405679.15630874, 10405905.054302713, 10405925.976996277, 10405932.752473472, 10405934.29762729, 10405953.125, 10405971.926827725, 10406153.187262893, 10406195.3125, 10406210.9375, 10406230.460267428, 10406318.867623847, 10406335.9375, 10406355.445036108, 10406357.982608065, 10406361.77341633, 10406373.4375, 10406389.0625, 10406400.271878304, 10406468.182983108, 10406474.756631248, 10406500.253283296, 10406531.25, 10406604.99556959, 10406783.47809054, 10406813.656155033, 10406908.605533957, 10406950.341613699, 10407154.20874897, 10407161.378598632, 10407304.333946295, 10407528.463148868, 10408145.298274567, 10408651.285058785, 10409895.55686631, 10409897.926081982, 10410079.07975289, 10410376.110554045, 10410499.200807054, 10410526.5625, 10410656.421068922, 10412456.670132231, 10412898.490693802, 10413356.051100526, 10420375.476765422, 10421401.192072375, 10421412.965813123, 10440406.25, 10540421.875, 10540488.135076068, 10547288.45767887, 10563068.75, 10586236.050081564, 10601914.924958453, 10605121.78501831, 10605255.089784324, 10605582.8125, 10606567.712658085, 10607201.568752402, 10608043.828125907, 10610335.9375, 10610444.867375612, 10614979.6875, 10627114.65083483, 10636258.390240906, 10668337.671236608, 10689036.900632747, 10718329.6875, 10766789.0625, 10783315.239626989, 10795404.607071187, 10805274.087243982, 10809190.62461646, 10814679.872487882, 10843732.75124901, 10848490.625, 10849124.666311305, 10850932.01481164, 10854445.3125, 10855105.187022518, 10856038.620966543, 10858667.80286451, 10859325.0, 10859355.299744194, 10859383.491599714, 10859431.115370974, 10859647.172534788, 10859694.408533342, 10860371.875, 10860445.123927189, 10860568.75, 10861040.204901556, 10861380.057576515, 10861520.3125, 10861695.931755386, 10861818.682378944, 10861919.341857314, 10861995.286763625, 10862315.625, 10862435.9375, 10862502.903362919, 10862514.0625, 10862643.178539392, 10862863.322039891, 10863615.625, 10864046.875, 10864665.18985747, 10866205.42107014, 10866940.152699502, 10867739.0625, 10868006.954338918, 10868331.25, 10869548.924341815, 10869643.069363594, 10871453.26698773, 10871459.191861728, 10871662.557084814, 10872205.448271949, 10882276.53928216, 10883222.967635524, 10883854.933589824, 10889020.667728327, 10890135.12649103, 10892350.896999665, 10892780.288930405, 10896224.020789513, 10897352.782485276, 10901220.3125, 10901760.9375, 10902131.25, 10902181.113630556, 10906014.863925837, 10906470.3125, 10906938.958858885, 10907224.799209343, 10908157.8125, 10908823.4375, 10910001.974195458, 10915695.181704741, 10916840.836028742, 10922144.315205343, 10922221.875, 10923045.537150986, 10923198.372509522, 10924171.875, 10924184.349139554, 10925538.826086484, 10926209.375, 10926753.484262085, 10926781.796671264, 10926813.440863773, 10927313.265209554, 10927381.283900626, 10929692.434939768, 10933051.456598341, 10936632.693584666, 10936839.0625, 10936933.210868176, 10938000.925992947, 10943183.441035239, 10947058.200700141, 10947512.5, 10948588.447263552, 10967914.782808958, 10987818.615080126, 11024029.6875, 11028754.489430487, 11038096.379706195, 11039390.324184502, 11039417.688660063, 11045823.797874263, 11047366.152243406, 11063973.05996913, 11064271.875, 11066626.07629252, 11067702.23226307, 11071334.395307187, 11071409.547924103, 11072056.910683265, 11072063.893847419, 11079838.638454873, 11080882.8125, 11083137.325708047, 11090595.3125, 11093843.160411017, 11093848.487602599, 11099566.714296885, 11099702.387900358, 11101979.962190166, 11106559.375, 11110361.371247932, 11110897.907546287, 11113882.8125, 11114839.482158849, 11118026.40537961, 11118084.427920453, 11119170.87802913, 11119938.899312615, 11120285.22881879, 11120296.918431133, 11121009.124608457, 11121698.188788457, 11121737.5, 11123315.902047405, 11123669.660135102, 11125970.94080678, 11126183.682368865, 11126575.2323544, 11126790.040213516, 11127863.207288513, 11129738.240872875, 11130534.375, 11130771.875, 11130940.080834983, 11131140.010553677, 11131368.130634889, 11131648.290370166, 11132219.046927735, 11132848.4375, 11134372.033694154, 11134487.5, 11142230.300150055, 11142693.75, 11142796.875, 11144060.142256338, 11144063.390902402, 11144186.785705267, 11144402.886354322, 11145107.105452886, 11145310.080832154, 11145381.491613531, 11145692.1875, 11145708.22553994, 11145834.744298326, 11146703.125, 11149998.4375, 11151036.792841872, 11151326.377780765, 11151441.897650104, 11152405.982256854, 11155229.375550237, 11156065.625, 11156203.125, 11156313.56434318, 11156528.968140768, 11157153.125, 11157588.802614864, 11158900.155920042, 11159322.626408078, 11159633.679634443, 11159820.360834174, 11161515.465296391, 11162884.090260997, 11162928.683535611, 11163481.25, 11165876.938575668, 11167507.742713783, 11169935.9375, 11171038.292490302, 11171949.683315324, 11172337.709705671, 11172596.238748541, 11172865.625, 11173602.43166931, 11174110.81872352, 11174173.669050714, 11174901.901590066, 11174912.028940966, 11175374.832668338, 11176891.865505438, 11177981.146305365, 11178300.0, 11178522.178311555, 11182146.782748943, 11182499.911070656, 11182622.918174226, 11182985.457394596, 11183133.621819448, 11183242.1875, 11183251.47554142, 11183785.296291586, 11184635.9375, 11184663.678151565, 11184679.6875, 11185809.375, 11186301.04619309, 11186494.325180646, 11189974.56629668, 11189975.445892014, 11193085.480941119, 11195526.8574365, 11195719.01794053, 11204439.999994297, 11213650.0, 11213676.591558592, 11220493.75, 11220500.785879675, 11224228.189372705, 11226111.51257825, 11227143.065995155, 11227496.379458837, 11227501.5625, 11228962.340982486, 11229407.8125, 11231298.515306115, 11232448.667353421, 11234032.488587826, 11240466.26935896, 11240684.709858073, 11240759.401042322, 11241512.5, 11241682.8125, 11248869.359245265, 11249242.480831541, 11255944.196454588, 11257803.148997992, 11258182.5575104, 11258835.360127244, 11258919.217300018, 11259361.324645586, 11259398.4375, 11259931.25, 11260163.274920724, 11261273.4375, 11264939.243451186, 11264989.354579424, 11265491.09382776, 11265523.4375, 11265566.664258936, 11265875.0, 11266145.724237323, 11267009.375, 11267267.091927804, 11267305.573010638, 11267940.883603131, 11268049.798623938, 11268092.898497596, 11268129.947285242, 11268316.14492441, 11268409.398836613, 11268457.456109663, 11268640.694061825, 11268804.402474651, 11269358.847653767, 11269756.047574388, 11269810.25992305, 11271674.479943687, 11271725.467734588, 11271986.181963468, 11272132.462731287, 11272276.5625, 11273231.156418484, 11273618.916216813, 11274533.674591465, 11274574.912126366, 11274913.98135401, 11275306.67737726, 11277837.5, 11278440.012178997, 11280510.510331253, ...], [16.286545386650022, 53.923494152541934, 70.83634880997857, 10.179692313968895, 55.16384380198825, 24.00766075988227, 44.30974084943708, 11.83487717017551, 43.5964877947968, 21.02713185611892, 19.96747428227783, 60.8146406954755, 33.55459463771104, 13.440869372326238, 13.204396525710475, 139.3031215624745, 5.350971692052976, 59.91986318504494, 5.755357436862657, 86.46424965156896, 29.842679585572, 7.793436233087106, 61.81633142805105, 7.171263092429429, 67.75945449852713, 27.757746363749614, 99.25505854737055, 136.33273541236508, 96.19420298700271, 7.8273162338141145, 13.207487184816458, 74.21259508704033, 11.986763449854806, 11.07402925272149, 14.568607123364524, 22.01648948775349, 91.08265790811262, 44.42889094376174, 19.463646560250503, 10.110522289501455, 14.45137978009301, 100.31517358694843, 5.704201365401455, 13.266595352755608, 13.181012012378996, 73.64286393188053, 7.913716479831127, 5.7807714881027, 12.794211115034907, 5.604096977344895, 34.74077308737404, 81.6707950026975, 6.573819498934247, 8.70297385745853, 10.328069373526413, 92.2696416945357, 29.912144633895217, 47.51262174927876, 30.606809724629926, 48.34328999598425, 65.83746751383791, 9.903891158020897, 13.015605732412993, 6.28038380246787, 161.50952035284067, 68.57062234160959, 6.77784788218319, 89.91139996575495, 68.07472388684118, 84.9176953702648, 29.68560501860999, 40.7014699834117, 12.175136386383178, 79.7122662260108, 14.336685502982347, 68.33737851705385, 11.213766455704636, 48.14160551846666, 76.46608031070649, 11.633029685237625, 15.348377390540092, 8.53461878861026, 68.9937396083665, 41.99044657448836, 16.970874896489093, 61.94690005844466, 24.281710099824505, 20.68738551710483, 8.28319188104315, 11.935942288918884, 15.588074476446707, 47.12638159058594, 17.81776481658104, 5.72858517763571, 8.332250919005421, 7.529150988388183, 47.130944026621584, 14.63678173065013, 8.17745852459362, 11.035397683721824, 43.47602929265381, 12.1762753445329, 50.00510708993433, 9.954400111004038, 25.471670345346126, 5.727737810854112, 45.104347445674954, 19.450673800227825, 45.64540260410118, 50.275185997975946, 5.391111273530531, 26.074629467400378, 16.71457177240385, 8.720189890951096, 7.7982607077947845, 52.47906769257361, 30.962787719643753, 55.86092339414791, 20.285804942665116, 12.607058940329933, 49.80079690977411, 10.963226305920946, 23.290640485760854, 15.41485362345818, 7.037748012807802, 14.242384438882743, 10.426182850163748, 16.101945328539053, 9.778201664590627, 16.913824705659906, 11.03149494383986, 18.26762547526532, 8.212489230385502, 65.99824237192183, 7.726410307710787, 10.031373733450259, 10.267478432235194, 11.951793655097912, 16.023472146166256, 8.408807934287196, 10.911267198534105, 8.953573677823666, 16.363609941875435, 5.158624232271885, 7.403815975081626, 38.04093646147919, 5.916460936637378, 16.894499200997814, 9.492038789344367, 11.611930902295022, 58.88731309611903, 42.17328191572259, 79.80453807201772, 19.860947240035138, 15.359376718939485, 6.775172995900138, 5.027148955385985, 64.14255187735174, 7.259647964326568, 13.81293841810334, 28.40215393343847, 26.7846924412124, 82.96533652100001, 40.98452307810825, 5.860849475910783, 9.710927970164414, 13.64798382715277, 100.71491487393084, 62.461573133063965, 107.06985936399845, 33.797950658285345, 13.357131666473078, 67.90475383196761, 27.452688785466798, 5.508507700873915, 7.675962659005896, 101.25163280588976, 9.31987074506706, 84.94903525946008, 51.44344409428888, 6.226086195667154, 87.35155061159871, 12.697844124436395, 8.085726063385435, 14.492365713686318, 49.68321193997471, 6.780019004159879, 5.887534805653188, 67.06605333710947, 29.71877845130752, 13.674176303438461, 12.575369020498055, 78.93222739779912, 12.622812389333005, 13.872640582132522, 28.92983237057559, 68.56487337401876, 50.98037887591757, 19.53700464601218, 9.756156977654692, 24.42387624127856, 25.87261843528269, 11.490532820660631, 6.575068531788896, 27.156872183411583, 15.523198973084416, 36.07511423842739, 9.353795591037176, 6.272501323305395, 9.186432906428111, 64.2577490869407, 6.360021608069253, 69.04191482168504, 27.879516625333082, 96.22393301099927, 7.27207589486786, 15.920120244148327, 13.884953364171933, 118.85457052204907, 64.54876780395861, 42.280164016689604, 5.8923275644767275, 55.7535555628641, 6.997983817954514, 25.47384640684765, 22.717940711218162, 17.696635099237863, 9.761613290620806, 13.284967890673082, 10.077954841671314, 19.11573600299053, 76.7516831363066, 11.192288919856136, 11.58144288654794, 21.131637354424406, 20.572991667843286, 13.49682245125198, 32.97197838678487, 20.810214727773555, 41.66889710608618, 20.479280478401417, 6.485100942812653, 23.126694483837802, 17.774267277029196, 5.256904194725214, 62.874112541501006, 8.31688448403189, 16.91035810396417, 18.38603836742203, 7.458871534294883, 62.44369719231643, 9.556896844885253, 7.767568140927226, 21.867866398326868, 10.394827807708408, 44.17427929919771, 16.463127838742608, 71.4875059278257, 19.633927069769342, 18.146904930487338, 44.68993618387844, 54.776620318236326, 5.835922880782719, 6.384301001866482, 18.049852857835067, 7.344598265119815, 50.83497273870787, 76.76825696923292, 44.17438826706545, 61.85281920174069, 12.279815910771145, 30.207198519490653, 13.826487697463461, 5.47468011628929, 16.79713442261458, 6.800913553084766, 27.449516713538756, 69.74770846000777, 9.35883314572788, 8.607507999244218, 13.281237318635636, 27.856220400223783, 24.392734549700513, 5.491149058184841, 14.767223555444332, 10.802626504689195, 57.03006788708773, 41.63220878700433, 9.1905048781754, 48.807633792951755, 14.089985242383943, 5.716357970015763, 9.169840936905167, 74.55259328671451, 75.85184104105441, 49.03499101297081, 28.84165983871987, 76.76337846257417, 55.958590317478546, 10.790484908490885, 55.10410035326032, 19.399703235029595, 12.31100556806382, 9.83433446905575, 96.27383056145874, 7.049711935811247, 18.138560837519638, 27.166062017606194, 15.456672783850696, 113.27857537532249, 69.30799810037844, 60.10279261648848, 64.70730326069958, 16.045052325508713, 14.586688080455898, 15.806568347506962, 35.86168639110192, 77.59662193653818, 28.2543870621281, 64.20371732164355, 84.99779930842449, 20.097224449082923, 26.47951539896524, 59.68835398312723, 28.024461635694696, 50.12894612903298, 7.602238586140779, 12.018390668561457, 48.40845317119168, 17.840663942690426, 79.66305550748524, 70.06159942340321, 12.002112992515771, 53.32070587255326, 14.909220743958358, 26.288021020239157, 18.371548837263283, 17.889078386106895, 19.491569056460172, 45.50831724703983, 40.083278270948306, 16.64728123015546, 26.109624278955714, 16.82284077387642, 9.977595584031537, 27.10065269200107, 13.03235125042042, 16.36617798786432, 35.590490739404785, 37.808916951112515, 17.149577940776375, 17.068621424065743, 46.94483592494969, 5.685873411939559, 16.89057486734135, 86.0068715906651, 5.603434905733625, 24.187580057003125, 29.125098186543575, 19.161278327064313, 38.569103372363145, 67.021764947825, 29.554707145041604, 56.93689831509618, 66.0468851342483, 32.53770617680956, 7.523862138876498, 33.54313764188931, 58.26860086099633, 40.902806440257145, 21.877246413808358, 16.05197588564893, 13.196561310508828, 18.15958730981823, 8.816369752142554, 5.477640427145743, 88.36675282232771, 23.72174028638754, 17.50891645688884, 16.48089570713012, 23.32225400125445, 47.473909132282174, 43.84030407729924, 8.312825829192413, 7.804117801817535, 16.24496949172619, 11.473098568730444, 6.832646051548384, 28.760819308798077, 63.473503651421694, 8.114854418549006, 6.3548807033919745, 11.734074195167944, 13.247259501302212, 33.11866947347561, 12.458289543922314, 15.547810264628549, 14.740002780090085, 17.41569968335802, 29.6174573831991, 56.49142277912189, 108.54608224349252, 55.364416947803285, 63.732478853959336, 31.269487737510957, 11.24495307207302, 15.845653466646485, 27.70694937567919, 8.05668703823646, 24.622422884085903, 17.92930961993891, 62.960250649329524, 21.00248829255419, 49.04818947871675, 52.143721681420296, 22.416697886507407, 66.18527875565381, 5.761604453916808, 18.72322643374722, 43.250420942766915, 45.40005999695454, 11.05533814285596, 31.970385290726206, 7.024610647259579, 7.999815255795438, 60.12344172736853, 56.64296453612223, 5.349360853263117, 13.1949604433657, 14.659108094531657, 36.576568959559275, 44.915110173268744, 27.521994920176297, 108.0801145992545, 56.3934315259546, 19.263956169657302, 113.77196862706177, 70.35007079558487, 27.61476172834439, 15.405235663804415, 58.83138668845426, 7.968141250219315, 16.896876042169744, 82.06360157424527, 38.41794933383291, 24.043690031582344, 9.988314940447422, 26.60618138685121, 35.062182919890056, 56.72677527256289, 93.18573672808554, 74.40319722828649, 35.33352719499207, 5.19772126432055, 70.68113635274565, 54.83192822980092, 5.93850952265504, 33.100722136519316, 31.603827780462336, 12.70814072629288, 68.47310070761381, 9.029496137978441, 6.468849107603254, 8.963323266571404, 48.22685491564729, 14.31700745743625, 29.96954467070258, 52.56389057444366, 49.03916663482423, 9.41568034185175, 29.16533779777661, 28.37942151260027, 20.07204486069549, 8.142623276603354, 5.894073129184717, 33.363048508590815, 78.84317775179082, 6.39918006465443, 17.45621290185941, 5.339581965671445, 5.829072302235259, 30.50868275550379, 31.448134582650347, 9.179723879401635, 51.637701415414135, 59.9320005632379, 14.54892604556343, 29.422476018214976, 32.3742383080056, 16.146292230196973, 22.481073304007857, 84.02488201980752, 86.9184419064576, 38.54848126468959, 20.691538106931535, 39.908135740761495, 10.71545859286666, 13.826274287693806, 82.11754773653215, 41.944441970497834, 15.679990719931162, 41.63219807594441, 8.98686881398109, 10.543866337094673, 8.942940104433877, 5.241993528061006, 17.3015626739098, 21.09563582113138, 14.096939286084039, 17.339755385389786, 59.44853480931119, 69.68961418494682, 29.7461538655362, 19.113495859584816, 8.511617745764621, 14.91375129920083, 33.68271665173314, 127.22043780341677, 6.523057463822383, 51.808893588489696, 8.481009960302927, 15.03449570817567, 29.70405428345985, 53.199298308126174, 6.19823797696655, 8.5266185106241, 84.38186999684855, 54.33463598667895, 5.711989054593263, 8.56325296812076, 11.455615811575095, 64.38322048018529, 9.833648573176594, 18.331815311124203, 66.39950354327549, 8.996517889334568, 10.100896295808676, 18.26554482466759, 10.365825294330863, 5.214089644869618, 24.1980164628921, 5.9715888478743295, 12.584628423523098, 59.14568763647681, 20.44809671511884, 98.83542191493264, 72.81503511286179, 14.67239060327802, 7.422930827543809, 14.013651918060836, 7.826869800301073, 54.51295054812053, 77.96498897158769, 41.58747410268625, 104.54172216870512, 51.32704760525116, 20.443631202993956, 80.77567492759756, 6.473195747776643, 17.650562161268063, 14.009005103215054, 8.031116409188863, 13.16626538236517, 17.419269076835505, 6.497498536180739, 30.80935658589762, 28.00120634601281, 21.77369921771504, 63.53007573371785, 11.006923638831605, 79.56108587337408, 37.9945360794521, 71.24194737703787, 15.28969211766148, 31.252647344571322, 57.25369183971839, 11.131489609616025, 6.8879676921537465, 51.798098584045974, 9.025815907251756, 8.534027148624197, 15.184037722058708, 6.449491312579497, 5.519231096118, 9.353463112137558, 36.1712934158722, 19.84294874085122, 14.688303409731894, 25.096120880043753, 17.79677092477671, 9.542624545517292, 5.358947721249114, 54.40830145391691, 7.227951625941203, 12.922897557088845, 77.42422328100923, 31.39668539796346, 17.855368839683038, 29.93016569256154, 20.603813557392254, 5.605166432867324, 10.990869255268565, 5.810711160707664, 35.77543921521737, 52.79106291609109, 8.220679593495637, 75.03171288448664, 5.6388954438674865, 15.416019842712688, 110.72479544211586, 5.888391837779194, 18.16064184037377, 24.882148456620147, 99.70665936489206, 6.3859975069796855, 7.112172519543047, 17.726870607926028, 8.155334831904364, 40.10176639165472, 42.53020542421089, 71.64325974288332, 43.39429123167685, 59.02415320033394, 37.6877665180997, 18.493702908002852, 19.237466010726358, 44.91703841894313, 40.07837476902032, 14.411910062686806, 26.672612657473405, 6.224298253449012, 18.261141544236622, 78.36508335692126, 62.399834018051436, 49.355040399132264, 9.903539619420881, 10.072717889759026, 18.63026606862112, 20.717985990902214, 6.010179632821027, 7.421785984690013, 16.551886481159368, 64.94835687805673, 23.98746693650429, 9.266825991039081, 42.48681557639785, 7.622091067483164, 15.184258542328992, 66.02937141687241, 46.04311294133972, 10.083162173966478, 9.432881341127768, 85.13703840603932, 18.90910834843212, 7.665943820152287, 12.745557972180814, 69.67077517089413, 47.457860689634494, 100.80327576718803, 42.51708775422533, 8.161940532125334, 15.580175690711702, 68.51969837301434, 50.106387394693506, 16.339376381486503, 9.009928523845932, 140.6646357302743, 7.731650218934652, 29.08146728081433, 6.5585342159224975, 18.087080695911922, 7.21327124507345, 28.246411694327627, 5.237446069087783, 15.962597825856962, 124.67001420463878, 10.294329052683889, 61.07912142097208, 21.463280480864185, 37.646931425105905, 87.67472494854397, 16.82766071320524, 8.314908848334575, 14.233976068567806, 17.134486104488683, 22.89096625248358, 43.924846982554456, 42.03954120569861, 42.38960963198897, 5.364164796804734, 69.81828532719793, 49.32894753951838, 8.347023343382357, 68.02915438479825, 26.86356757522422, 66.63571552894821, 52.733629940255796, 57.54496076368347, 46.01081590052256, 9.398348397781193, 35.97157942522679, 5.034121710540332, 31.160512112245975, 67.87773327741029, 5.646826228335365, 7.167204011430655, 8.87128797379085, 105.36126198829282, 31.555832605485644, 13.651342339824794, 9.264309552724788, 83.22762229476712, 37.582257809448365, 15.696813337993529, 27.36876327038529, 79.31847836805314, 23.32974674506316, 18.961658925737282, 72.74947997481684, 7.794482993227443, 7.450985187341259, 80.16490316816913, 34.32328577554388, 37.2182614321407, 12.385825873593436, 96.84758027296631, 7.201924408877383, 110.35658216090556, 68.34088872381052, 20.58038750715858, 98.52612414542475, 81.49228050845846, 14.483184016993363, 62.45165973569503, 6.8937713430284475, 5.529807653820992, 17.806909287536882, 15.000338674759242, 69.21463136801762, 53.0118347016996, 10.798088009786651, 46.24457161492148, 59.37306274602153, 7.930323686786681, 80.19933983059951, 65.09725479686742, 8.988708763446546, 27.72651008328606, 37.72041208112952, 58.036907898487534, 52.26596419359708, 46.907149286868766, 36.17546478303492, 115.18001101777126, 7.655412400785783, 7.074128188384725, 7.624015603021811, 18.93243385414521, 15.365934079724793, 7.003183563664237, 61.85495055780829, 11.732389080976342, 86.39871373900911, 19.98706832568011, 65.79859783328342, 17.754427219284704, 23.22245248188775, 65.5243934568866, 67.30840307479227, 84.33492763300909, 83.94722593983293, 5.268143194002383, 78.80773123393617, 114.78975919143916, 9.167204424650091, 67.53850320574509, 67.59403893573632, 14.130619907487336, 17.48507637624003, 24.45530551130712, 42.39139796162111, 112.42311560687222, 76.47020108447401, 27.30172982252644, 66.22533013262277, 28.02309588375559, 24.598435459846815, 35.9102210183775, 7.738559042281637, 30.733928112466515, 20.35986085418029, 8.737416596735015, 47.12129995465116, 8.42191052004281, 7.565378744551696, 66.41866617533945, 35.01044848477735, 19.087710384652613, 12.967112614721891, 27.74414925395478, 16.66105974367336, 43.24348657385018, 61.97211907244056, 24.663258274648975, 26.11634952804142, 35.08121490036684, 10.831609568941909, 123.0662446193957, 115.62131967855774, 6.568630939631552, 152.91751900863738, 9.820906179368343, 80.35754808420413, 103.56225396581587, 183.1879260217064, 12.365376234522568, 6.767567523939154, 5.405126161122421, 13.752043872129429, 10.873942202660512, 28.102969736324013, 73.48376448993096, 25.501272840621017, 86.75850190157273, 10.316253437997492, 5.246549728651892, 63.75406363418441, 27.070854773389176, 16.103186087975036, 57.03918963518543, 17.277759356154252, 6.034669634742344, 33.045789764029166, 15.95181261596474, 75.74215400062988, 14.491970125714705, 12.143937704529163, 57.04006312728649, 63.59015192940314, 15.109673492381617, 10.757654503685279, 20.457000137403693, 81.71540142747905, 66.86841048345607, 5.884538181413946, 5.861979787766201, 10.193935290637214, 53.39647846048041, 86.07070980735101, 18.55623496644379, 8.721499447083467, 42.84942828380265, 63.671294085112045, 21.063560830886633, 20.422667167887262, 6.394194045984117, 66.27659379270708, 7.714281807762325, 77.02475549212637, 15.582962757111476, 51.71732819170476, 5.1798796867633286, 85.54595727928738, 42.555696645727906, 18.9794019397235, 38.14613682688659, 19.592240539411694, 14.103758082098278, 10.177220402681634, 31.75545481551641, 23.805645651885996, 58.58441085933841, 9.70690670124068, 6.839543857920363, 72.68235149837378, 108.25477990265901, 19.64873919840366, 6.727180741466719, 23.881266860018663, 24.17171267144598, 5.236497541136369, 81.55297596588926, 88.66896905131401, 69.38412143291056, 8.78917329133059, 91.24361677943448, 35.86477153979212, 63.03244055151775, 10.059355307544978, 10.190757463860928, 11.20410612008557, 34.29170175983797, 57.60113777209158, 14.374868620481625, 45.348259053208906, 45.683660191056056, 44.97693036343155, 92.5523933499845, 6.011525317695458, 23.539932222405497, 74.10416612484939, 20.233691507518003, 36.06402034478121, 50.67034851365844, 143.09175184724694, 20.381143991631706, 21.599821459673123, 22.775552547775447, 25.60746703520998, 23.47379930927681, 83.83103392129348, 46.75520664160922, 9.60175109312911, 60.18001751992078, 66.02083511061784, 29.865442924073065, 32.54502049193154, 42.72969668325588, 42.78460621399804, 14.620108873096608, 12.955260671070198, 52.21707421733807, 10.575769871585685, 55.11858934402989, 29.231831266993026, 32.188983590469064, 5.8578008512113335, 22.180960100592177, 11.90436946251522, 56.079159754782054, 50.583760836505846, 5.103766519575093, 12.996244941547994, 40.75752707898839, 38.2558843844688, 45.580789579300514, 5.114244178488143, 13.678775911035867, 12.163714689706891, 8.813056858612628, 13.33827434953108, 78.67861011629877, 10.887927833160425, 61.03771518431944, 11.25154031871926, 16.689736048692186, 13.835647409666782, 8.659493185187731, 56.51380087181772, 89.80716318423168, 103.89732611531991, 58.3149399653766, 8.637366881945704, 16.191311912059227, 5.555147952804153, 9.351777599892216, 51.24321745434547, 6.196907112465779, 11.94615211046136, 16.65563352571837, 91.2212282436957, 34.04020558298534, 7.341229528732672, 49.68410968381469, 15.679185088639903, 9.591218917563715, 29.55610960686576, 62.099277708362294, 21.264349383284085, 46.92120601483049, 8.51701240551101, 72.23267111305773, 108.32980575289092, 12.866113866815613, 11.557501070543655, 25.09794490984243, 18.581697494804363, 11.559590661138383, 35.00633830268028, 19.635780958837046, 17.456848626315615, 6.777372996115669, 10.709620438166594, 5.673998594530128, 10.825387450301449, 12.86466530244139, 8.029463254481906, 5.3057572578950705, 17.89038417861485, 7.481448459537988, 34.90717415837673, 6.078421328417525, 6.288429580029001, 58.13935790336464, 14.469808919936101, 8.244127111314386, 11.868601916298864, 35.670716671359216, 20.436933190487817, 22.251757450610167, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4823115.938167311, 6264334.2983354945, 6301015.251562012, 6308650.857590015, 6309099.762966569, 6309130.969850574, 6309748.714567522, 6312439.472258157, 6328860.866114781, 6422488.514484805, 6438986.832136285, 6540933.281371189, 6566781.777111698, 6600707.353896482, 6602497.474721404, 6623628.125, 6625233.074252047, 6631532.8125, 6634028.862475703, 6651275.0, 6658826.5625, 6658848.934438858, 6672708.351012113, 6695156.436161531, 6703409.375, 6709737.775603135, 6710127.952563439, 6710318.531468532, 6710348.2832115665, 6742019.329776451, 6746401.018632285, 6783175.0, 6784064.294037673, 6784562.46538518, 6792017.086099212, 6793268.300914091, 6796479.6875, 6801896.1530522, 6803446.144263219, 6819269.547097204, 6895674.865177762, 6904049.261744158, 6907599.959753087, 6908786.978148374, 6909442.236632201, 6936079.3984624585, 7007828.908924713, 7023854.228361798, 7023916.4811014235, 7045299.818785629, 7089767.595644784, 7094106.25, 7096283.344313903, 7122635.087324577, 7128580.670142057, 7167749.977477012, 7181028.125, 7244965.625, 7255771.915090738, 7259106.25, 7275485.9375, 7355802.169935525, 7369818.1325951675, 7370334.478654546, 7375898.312113335, 7418268.75, 7424942.258913104, 7424982.358839042, 7427170.3125, 7449691.248086162, 7478305.972593111, 7493204.6875, 7496249.018071155, 7499448.612772483, 7561415.456720144, 7561932.426058046, 7625650.054369326, 7626080.791885031, 7628204.6875, 7628209.67590074, 7628975.10280254, 7630166.066337441, 7634742.1875, 7635094.733395689, 7635983.259408717, 7639745.496180751, 7641871.615461015, 8106287.334840901, 8115201.556092584, 8117053.587090587, 8346300.905453578, 8373219.8033918, 8373720.906121174, 8374700.337587398, 8374729.772882203, 8375731.040408025, 8380137.25678881, 8417013.980185905, 8470601.350292843, 8607740.565129723, 8615017.1875, 8615953.706118023, 8682235.9375, 8696599.092584811, 8697829.511255343, 8706695.637179313, 8710976.5625, 8729943.844770886, 8734507.8125, 8749147.85417831, 8751777.931059642, 8752189.998949733, 8752201.473729739, 8752231.98886275, 8754045.821333844, 8757387.5, 8757397.205343833, 8757721.875, 8758197.807313299, 8761303.90215597, 8769963.101980196, 8769992.079658654, 8771479.350605996, 8773057.93138131, 8773232.484210754, 8773443.553631082, 8773679.186985046, 8773702.851902677, 8774466.110022962, 8774604.485516595, 8774628.06256209, 8774719.414299456, 8775876.419720437, 8776134.140363501, 8776405.015680533, 8776717.913574914, 8779094.682331897, 8793922.345172552, 8805411.195086012, 8806845.536702367, 8810571.731970305, 8811019.829093289, 8813118.483495811, 8818240.333340647, 8819069.725282317, 8820383.947387295, 8821434.107703712, 8824091.0577049, 8824550.184057103, 8825034.664173374, 8825155.5437603, 8825267.1875, 8825490.34893128, 9059171.529562904, 9072990.730476364, 9087371.933157125, 9087431.940492146, 9102964.0625, 9116031.750868654, 9217782.862545384, 9249698.431261111, 9251128.716019308, 9298676.210182434, 9357150.0, 9357150.613966046, 9363706.667150838, 9368015.977266692, 9424937.854531758, 9427445.3125, 9428439.051716086, 9428669.805017883, 9435916.698811125, 9443094.55648406, 9443379.630900253, 9443555.733075205, 9444758.009195121, 9445228.125, 9447034.361329574, 9447293.75, 9447426.5625, 9447485.605018776, 9447509.908586502, 9447516.440892784, 9447710.537340932, 9447938.856670666, 9448067.113772634, 9448270.394651232, 9448329.071955986, 9448331.18405154, 9448337.5, 9448341.80987318, 9448730.450933306, 9448806.25, 9448825.783938618, 9448838.405200945, 9448851.982118132, 9448893.75, 9449018.75, 9449187.015414024, 9449302.025467781, 9449434.828956334, 9449456.099747509, 9449479.907852506, 9449591.164171929, 9449834.30185355, 9449834.519677533, 9449856.900371531, 9450026.588864272, 9450332.854357805, 9450563.88592575, 9450596.130168494, 9450635.07599371, 9450677.097883357, 9450740.890004696, 9450804.6875, 9450856.793600488, 9450864.297559412, 9451287.192127785, 9451503.45890075, 9451842.1875, 9452234.300339663, 9452546.318051977, 9454301.5625, 9458855.758519288, 9487209.979318159, 9488749.055504434, 9488755.261276962, 9491209.843443383, 9493766.672432363, 9497358.58061058, 9504777.348345105, 9545149.519820098, 9547523.478428423, 9549319.661639666, 9565589.281360079, 9585099.373572024, 9585394.873692797, 9595764.736532202, 9604762.328140508, 9609240.12158048, 9615236.245683672, 9615932.799791737, 9618356.96771202, 9618602.149036309, 9619656.664774692, 9630152.661084637, 9632576.61937491, 9633250.435668422, 9633933.912504643, 9637729.269894412, 9639965.625, 9643162.755161863, 9643798.87008926, 9663819.849265441, 9672268.224408068, 9692756.712834861, 9694437.288531259, 9695106.993379733, 9699490.439716596, 9708641.270784892, 9745956.25, 9747050.0, 9763865.917216642, 9769111.811365232, 9789531.518804338, 9793927.348417552, 9797110.9375, 9797525.0, 9797715.625, 9798112.5, 9799111.567677656, 9800095.3125, 9800115.29808968, 9800573.734954465, 9803203.539345209, 9805040.809526166, 9806477.687395247, 9809490.625, 9813540.657262972, 9813927.123783488, 9814157.296057118, 9814373.402800908, 9814837.598997323, 9814944.417151693, 9825896.828510039, 9827068.531568041, 9828312.5, 9834593.75, 9839417.016029386, 9839907.232981505, 9841577.261275839, 9842501.712292276, 9860396.677541172, 9869129.6875, 9872654.6875, 9874680.101233829, 9874756.25, 9874764.0625, 9874771.875, 9874849.772983445, 9874901.111605147, 9874927.385982914, 9874953.769706273, 9875220.852883935, 9875414.224684244, 9875445.032374399, 9875510.019493217, 9875642.114874043, 9875893.878897706, 9875989.0625, 9876220.3125, 9876239.0625, 9876321.659130111, 9876401.824739443, 9876863.966186035, 9880451.772341598, 9883410.9375, 9885224.70686586, 9885498.423686076, 9887137.5, 9888750.791206492, 9901866.535177017, 9909005.376769388, 9912093.75, 9913289.036711378, 9913741.872701073, 9914403.1222368, 9920814.56626323, 9921157.8125, 9923611.534832638, 9934173.4375, 9938307.679763677, 9940048.933106873, 9940076.5625, 9940167.179002816, 9941519.779582534, 9941616.304982776, 9945642.792638306, 9945807.515532814, 9945879.6875, 9946131.25, 9946155.073020546, 9946445.899263334, 9946653.544220371, 9958681.926681127, 9961086.440369265, 9961149.38914201, 9968926.892012542, 9994003.125, 10033424.59024872, 10037559.854481056, 10045684.420359213, 10047550.0, 10057219.979267512, 10060714.667281222, 10062357.098936837, 10062543.556623219, 10063327.858445935, 10064978.125, 10066810.57488774, 10066907.653428217, 10067426.243801458, 10068651.673743645, 10069034.191160599, 10070958.877889886, 10071268.521791557, 10072287.275073225, 10130819.773493992, 10144602.635916991, 10156445.301798945, 10161963.422052259, 10163314.32622877, 10164590.077030545, 10165098.089832222, 10165816.508369397, 10173930.052194541, 10174019.710990157, 10175118.543691961, 10175322.196526665, 10175499.54847649, 10176951.228198191, 10176982.8125, 10177395.11962022, 10179518.799308648, 10184230.210730322, 10185121.529580312, 10211040.835276721, 10219283.149224913, 10228189.73281944, 10232465.82411634, 10234354.348011263, 10237220.976356484, 10241794.106137127, 10243122.223518405, 10243138.796936193, 10268522.586805802, 10269822.97873757, 10277437.446108384, 10283459.901337583, 10284217.1875, 10287558.377018047, 10289451.484747412, 10295857.4926367, 10298059.375, 10302332.285415871, 10305813.310267055, 10307398.525475267, 10309241.758785669, 10313708.913410986, 10314004.452808492, 10314263.111582326, 10319543.103077348, 10322006.132803317, 10324468.482137563, 10329335.9375, 10337571.63787921, 10338485.9375, 10338796.141123537, 10340701.06791971, 10341439.62193436, 10341664.108329745, 10341681.203202099, 10341730.335019132, 10349718.368329298, 10359297.852781532, 10359443.75, 10359732.985958729, 10360540.840504153, 10361705.701428706, 10365204.61138177, 10365457.257048976, 10365849.851873081, 10367482.082313005, 10368745.517803805, 10369520.265897615, 10370617.993169269, 10371323.4375, 10371370.3125, 10372430.778564189, 10372767.900796903, 10372957.262503259, 10372997.782534238, 10373861.7498245, 10373876.5625, 10375298.4375, 10376035.660092955, 10376372.561601574, 10378283.763139402, 10385316.929588271, 10386625.0, 10389596.641185334, 10393637.5, 10393807.8125, 10393826.337262, 10394209.30406682, 10394210.9375, 10394485.927205535, 10394585.9375, 10394791.291986676, 10394974.257733159, 10395340.625, 10395418.369979661, 10396343.632633826, 10396630.780059531, 10397192.1875, 10397435.763402551, 10397573.4375, 10398020.3125, 10398118.75, 10398526.660516895, 10398528.125, 10398735.930101829, 10398897.799769381, 10399534.092485353, 10400265.08930357, 10401932.364882674, 10401952.627864389, 10401954.102794448, 10402172.408304099, 10402637.43156044, 10402698.639407756, 10402754.438126259, 10402843.75, 10402863.87749822, 10402872.258072626, 10402874.280253712, 10402879.31555294, 10402925.0, 10402938.541927233, 10402958.054325432, 10403200.994983258, 10403277.842201894, 10403332.640142605, 10403396.875, 10403433.79070912, 10403491.907223798, 10403598.156711956, 10403609.048019757, 10403627.79869884, 10403646.61726053, 10403647.056135941, 10403690.625, 10403721.437348073, 10403791.778845575, 10403805.751841089, 10403829.57449659, 10403855.982116628, 10403868.20921113, 10403870.873965118, 10403950.513161499, 10403971.875, 10403971.875, 10403987.5, 10403990.804516627, 10404006.652617775, 10404049.992698219, 10404060.9375, 10404079.236910652, 10404142.413163094, 10404167.1875, 10404167.537926568, 10404185.961683996, 10404197.969302744, 10404198.415115373, 10404215.058963867, 10404233.240418086, 10404256.25, 10404317.1875, 10404332.894381473, 10404342.67645102, 10404347.075123345, 10404354.6875, 10404378.664714294, 10404406.36169548, 10404424.543475991, 10404424.575485816, 10404430.476063697, 10404439.72648307, 10404452.575980386, 10404456.66363128, 10404461.743918754, 10404467.549784392, 10404467.9549538, 10404474.160277966, 10404474.388448842, 10404477.338276159, 10404482.146196594, 10404497.427736297, 10404497.909855997, 10404505.665716678, 10404528.703695362, 10404537.148704149, 10404548.678842725, 10404564.0625, 10404568.495012056, 10404569.621793786, 10404569.700441103, 10404622.380850095, 10404624.910781097, 10404635.283787707, 10404637.231760371, 10404651.046018666, 10404665.065603893, 10404669.276953096, 10404670.37857087, 10404673.222981222, 10404706.222987266, 10404713.359300034, 10404725.101327598, 10404737.421327498, 10404748.4375, 10404767.662472319, 10404771.875, 10404789.150945993, 10404793.322052905, 10404806.25, 10404807.814918775, 10404814.65551163, 10404825.0, 10404826.17754536, 10404839.502846798, 10404842.13729499, 10404848.19337355, 10404857.52379837, 10404862.525974542, 10404880.630737767, 10404881.36537403, 10404895.43392394, 10404895.945350125, 10404905.388791248, 10404912.73966698, 10404930.176100472, 10404931.25, 10404937.890221836, 10404944.658387871, 10404954.707238544, 10404957.8125, 10404993.529673304, 10404994.418056816, 10405007.21847986, 10405009.213404965, 10405023.348155394, 10405034.330719827, 10405040.625, 10405068.088021288, 10405068.623272352, 10405085.729678709, 10405091.065638056, 10405095.431661664, 10405111.564160913, 10405116.582460582, 10405122.522907987, 10405131.324060816, 10405136.242534589, 10405163.385791417, 10405170.277082602, 10405172.453763952, 10405238.805789532, 10405241.111516522, 10405252.077517113, 10405253.04122592, 10405259.84490579, 10405267.1875, 10405315.427824887, 10405316.323122956, 10405355.95589682, 10405364.0625, 10405376.5625, 10405377.97874996, 10405397.472052516, 10405438.71523081, 10405510.038313191, 10405515.625, 10405540.120287195, 10405566.143859807, 10405595.91960086, 10405596.07591872, 10405608.126744855, 10405622.85612193, 10405675.778328456, 10405679.15630874, 10405905.054302713, 10405925.976996277, 10405932.752473472, 10405934.29762729, 10405953.125, 10405971.926827725, 10406153.187262893, 10406195.3125, 10406210.9375, 10406230.460267428, 10406318.867623847, 10406335.9375, 10406355.445036108, 10406357.982608065, 10406361.77341633, 10406373.4375, 10406389.0625, 10406400.271878304, 10406468.182983108, 10406474.756631248, 10406500.253283296, 10406531.25, 10406604.99556959, 10406783.47809054, 10406813.656155033, 10406908.605533957, 10406950.341613699, 10407154.20874897, 10407161.378598632, 10407304.333946295, 10407528.463148868, 10408145.298274567, 10408651.285058785, 10409895.55686631, 10409897.926081982, 10410079.07975289, 10410376.110554045, 10410499.200807054, 10410526.5625, 10410656.421068922, 10412456.670132231, 10412898.490693802, 10413356.051100526, 10420375.476765422, 10421401.192072375, 10421412.965813123, 10440406.25, 10540421.875, 10540488.135076068, 10547288.45767887, 10563068.75, 10586236.050081564, 10601914.924958453, 10605121.78501831, 10605255.089784324, 10605582.8125, 10606567.712658085, 10607201.568752402, 10608043.828125907, 10610335.9375, 10610444.867375612, 10614979.6875, 10627114.65083483, 10636258.390240906, 10668337.671236608, 10689036.900632747, 10718329.6875, 10766789.0625, 10783315.239626989, 10795404.607071187, 10805274.087243982, 10809190.62461646, 10814679.872487882, 10843732.75124901, 10848490.625, 10849124.666311305, 10850932.01481164, 10854445.3125, 10855105.187022518, 10856038.620966543, 10858667.80286451, 10859325.0, 10859355.299744194, 10859383.491599714, 10859431.115370974, 10859647.172534788, 10859694.408533342, 10860371.875, 10860445.123927189, 10860568.75, 10861040.204901556, 10861380.057576515, 10861520.3125, 10861695.931755386, 10861818.682378944, 10861919.341857314, 10861995.286763625, 10862315.625, 10862435.9375, 10862502.903362919, 10862514.0625, 10862643.178539392, 10862863.322039891, 10863615.625, 10864046.875, 10864665.18985747, 10866205.42107014, 10866940.152699502, 10867739.0625, 10868006.954338918, 10868331.25, 10869548.924341815, 10869643.069363594, 10871453.26698773, 10871459.191861728, 10871662.557084814, 10872205.448271949, 10882276.53928216, 10883222.967635524, 10883854.933589824, 10889020.667728327, 10890135.12649103, 10892350.896999665, 10892780.288930405, 10896224.020789513, 10897352.782485276, 10901220.3125, 10901760.9375, 10902131.25, 10902181.113630556, 10906014.863925837, 10906470.3125, 10906938.958858885, 10907224.799209343, 10908157.8125, 10908823.4375, 10910001.974195458, 10915695.181704741, 10916840.836028742, 10922144.315205343, 10922221.875, 10923045.537150986, 10923198.372509522, 10924171.875, 10924184.349139554, 10925538.826086484, 10926209.375, 10926753.484262085, 10926781.796671264, 10926813.440863773, 10927313.265209554, 10927381.283900626, 10929692.434939768, 10933051.456598341, 10936632.693584666, 10936839.0625, 10936933.210868176, 10938000.925992947, 10943183.441035239, 10947058.200700141, 10947512.5, 10948588.447263552, 10967914.782808958, 10987818.615080126, 11024029.6875, 11028754.489430487, 11038096.379706195, 11039390.324184502, 11039417.688660063, 11045823.797874263, 11047366.152243406, 11063973.05996913, 11064271.875, 11066626.07629252, 11067702.23226307, 11071334.395307187, 11071409.547924103, 11072056.910683265, 11072063.893847419, 11079838.638454873, 11080882.8125, 11083137.325708047, 11090595.3125, 11093843.160411017, 11093848.487602599, 11099566.714296885, 11099702.387900358, 11101979.962190166, 11106559.375, 11110361.371247932, 11110897.907546287, 11113882.8125, 11114839.482158849, 11118026.40537961, 11118084.427920453, 11119170.87802913, 11119938.899312615, 11120285.22881879, 11120296.918431133, 11121009.124608457, 11121698.188788457, 11121737.5, 11123315.902047405, 11123669.660135102, 11125970.94080678, 11126183.682368865, 11126575.2323544, 11126790.040213516, 11127863.207288513, 11129738.240872875, 11130534.375, 11130771.875, 11130940.080834983, 11131140.010553677, 11131368.130634889, 11131648.290370166, 11132219.046927735, 11132848.4375, 11134372.033694154, 11134487.5, 11142230.300150055, 11142693.75, 11142796.875, 11144060.142256338, 11144063.390902402, 11144186.785705267, 11144402.886354322, 11145107.105452886, 11145310.080832154, 11145381.491613531, 11145692.1875, 11145708.22553994, 11145834.744298326, 11146703.125, 11149998.4375, 11151036.792841872, 11151326.377780765, 11151441.897650104, 11152405.982256854, 11155229.375550237, 11156065.625, 11156203.125, 11156313.56434318, 11156528.968140768, 11157153.125, 11157588.802614864, 11158900.155920042, 11159322.626408078, 11159633.679634443, 11159820.360834174, 11161515.465296391, 11162884.090260997, 11162928.683535611, 11163481.25, 11165876.938575668, 11167507.742713783, 11169935.9375, 11171038.292490302, 11171949.683315324, 11172337.709705671, 11172596.238748541, 11172865.625, 11173602.43166931, 11174110.81872352, 11174173.669050714, 11174901.901590066, 11174912.028940966, 11175374.832668338, 11176891.865505438, 11177981.146305365, 11178300.0, 11178522.178311555, 11182146.782748943, 11182499.911070656, 11182622.918174226, 11182985.457394596, 11183133.621819448, 11183242.1875, 11183251.47554142, 11183785.296291586, 11184635.9375, 11184663.678151565, 11184679.6875, 11185809.375, 11186301.04619309, 11186494.325180646, 11189974.56629668, 11189975.445892014, 11193085.480941119, 11195526.8574365, 11195719.01794053, 11204439.999994297, 11213650.0, 11213676.591558592, 11220493.75, 11220500.785879675, 11224228.189372705, 11226111.51257825, 11227143.065995155, 11227496.379458837, 11227501.5625, 11228962.340982486, 11229407.8125, 11231298.515306115, 11232448.667353421, 11234032.488587826, 11240466.26935896, 11240684.709858073, 11240759.401042322, 11241512.5, 11241682.8125, 11248869.359245265, 11249242.480831541, 11255944.196454588, 11257803.148997992, 11258182.5575104, 11258835.360127244, 11258919.217300018, 11259361.324645586, 11259398.4375, 11259931.25, 11260163.274920724, 11261273.4375, 11264939.243451186, 11264989.354579424, 11265491.09382776, 11265523.4375, 11265566.664258936, 11265875.0, 11266145.724237323, 11267009.375, 11267267.091927804, 11267305.573010638, 11267940.883603131, 11268049.798623938, 11268092.898497596, 11268129.947285242, 11268316.14492441, 11268409.398836613, 11268457.456109663, 11268640.694061825, 11268804.402474651, 11269358.847653767, 11269756.047574388, 11269810.25992305, 11271674.479943687, 11271725.467734588, 11271986.181963468, 11272132.462731287, 11272276.5625, 11273231.156418484, 11273618.916216813, 11274533.674591465, 11274574.912126366, 11274913.98135401, 11275306.67737726, 11277837.5, 11278440.012178997, 11280510.510331253, ...], [16.286545386650022, 53.923494152541934, 70.83634880997857, 10.179692313968895, 55.16384380198825, 24.00766075988227, 44.30974084943708, 11.83487717017551, 43.5964877947968, 21.02713185611892, 19.96747428227783, 60.8146406954755, 33.55459463771104, 13.440869372326238, 13.204396525710475, 139.3031215624745, 5.350971692052976, 59.91986318504494, 5.755357436862657, 86.46424965156896, 29.842679585572, 7.793436233087106, 61.81633142805105, 7.171263092429429, 67.75945449852713, 27.757746363749614, 99.25505854737055, 136.33273541236508, 96.19420298700271, 7.8273162338141145, 13.207487184816458, 74.21259508704033, 11.986763449854806, 11.07402925272149, 14.568607123364524, 22.01648948775349, 91.08265790811262, 44.42889094376174, 19.463646560250503, 10.110522289501455, 14.45137978009301, 100.31517358694843, 5.704201365401455, 13.266595352755608, 13.181012012378996, 73.64286393188053, 7.913716479831127, 5.7807714881027, 12.794211115034907, 5.604096977344895, 34.74077308737404, 81.6707950026975, 6.573819498934247, 8.70297385745853, 10.328069373526413, 92.2696416945357, 29.912144633895217, 47.51262174927876, 30.606809724629926, 48.34328999598425, 65.83746751383791, 9.903891158020897, 13.015605732412993, 6.28038380246787, 161.50952035284067, 68.57062234160959, 6.77784788218319, 89.91139996575495, 68.07472388684118, 84.9176953702648, 29.68560501860999, 40.7014699834117, 12.175136386383178, 79.7122662260108, 14.336685502982347, 68.33737851705385, 11.213766455704636, 48.14160551846666, 76.46608031070649, 11.633029685237625, 15.348377390540092, 8.53461878861026, 68.9937396083665, 41.99044657448836, 16.970874896489093, 61.94690005844466, 24.281710099824505, 20.68738551710483, 8.28319188104315, 11.935942288918884, 15.588074476446707, 47.12638159058594, 17.81776481658104, 5.72858517763571, 8.332250919005421, 7.529150988388183, 47.130944026621584, 14.63678173065013, 8.17745852459362, 11.035397683721824, 43.47602929265381, 12.1762753445329, 50.00510708993433, 9.954400111004038, 25.471670345346126, 5.727737810854112, 45.104347445674954, 19.450673800227825, 45.64540260410118, 50.275185997975946, 5.391111273530531, 26.074629467400378, 16.71457177240385, 8.720189890951096, 7.7982607077947845, 52.47906769257361, 30.962787719643753, 55.86092339414791, 20.285804942665116, 12.607058940329933, 49.80079690977411, 10.963226305920946, 23.290640485760854, 15.41485362345818, 7.037748012807802, 14.242384438882743, 10.426182850163748, 16.101945328539053, 9.778201664590627, 16.913824705659906, 11.03149494383986, 18.26762547526532, 8.212489230385502, 65.99824237192183, 7.726410307710787, 10.031373733450259, 10.267478432235194, 11.951793655097912, 16.023472146166256, 8.408807934287196, 10.911267198534105, 8.953573677823666, 16.363609941875435, 5.158624232271885, 7.403815975081626, 38.04093646147919, 5.916460936637378, 16.894499200997814, 9.492038789344367, 11.611930902295022, 58.88731309611903, 42.17328191572259, 79.80453807201772, 19.860947240035138, 15.359376718939485, 6.775172995900138, 5.027148955385985, 64.14255187735174, 7.259647964326568, 13.81293841810334, 28.40215393343847, 26.7846924412124, 82.96533652100001, 40.98452307810825, 5.860849475910783, 9.710927970164414, 13.64798382715277, 100.71491487393084, 62.461573133063965, 107.06985936399845, 33.797950658285345, 13.357131666473078, 67.90475383196761, 27.452688785466798, 5.508507700873915, 7.675962659005896, 101.25163280588976, 9.31987074506706, 84.94903525946008, 51.44344409428888, 6.226086195667154, 87.35155061159871, 12.697844124436395, 8.085726063385435, 14.492365713686318, 49.68321193997471, 6.780019004159879, 5.887534805653188, 67.06605333710947, 29.71877845130752, 13.674176303438461, 12.575369020498055, 78.93222739779912, 12.622812389333005, 13.872640582132522, 28.92983237057559, 68.56487337401876, 50.98037887591757, 19.53700464601218, 9.756156977654692, 24.42387624127856, 25.87261843528269, 11.490532820660631, 6.575068531788896, 27.156872183411583, 15.523198973084416, 36.07511423842739, 9.353795591037176, 6.272501323305395, 9.186432906428111, 64.2577490869407, 6.360021608069253, 69.04191482168504, 27.879516625333082, 96.22393301099927, 7.27207589486786, 15.920120244148327, 13.884953364171933, 118.85457052204907, 64.54876780395861, 42.280164016689604, 5.8923275644767275, 55.7535555628641, 6.997983817954514, 25.47384640684765, 22.717940711218162, 17.696635099237863, 9.761613290620806, 13.284967890673082, 10.077954841671314, 19.11573600299053, 76.7516831363066, 11.192288919856136, 11.58144288654794, 21.131637354424406, 20.572991667843286, 13.49682245125198, 32.97197838678487, 20.810214727773555, 41.66889710608618, 20.479280478401417, 6.485100942812653, 23.126694483837802, 17.774267277029196, 5.256904194725214, 62.874112541501006, 8.31688448403189, 16.91035810396417, 18.38603836742203, 7.458871534294883, 62.44369719231643, 9.556896844885253, 7.767568140927226, 21.867866398326868, 10.394827807708408, 44.17427929919771, 16.463127838742608, 71.4875059278257, 19.633927069769342, 18.146904930487338, 44.68993618387844, 54.776620318236326, 5.835922880782719, 6.384301001866482, 18.049852857835067, 7.344598265119815, 50.83497273870787, 76.76825696923292, 44.17438826706545, 61.85281920174069, 12.279815910771145, 30.207198519490653, 13.826487697463461, 5.47468011628929, 16.79713442261458, 6.800913553084766, 27.449516713538756, 69.74770846000777, 9.35883314572788, 8.607507999244218, 13.281237318635636, 27.856220400223783, 24.392734549700513, 5.491149058184841, 14.767223555444332, 10.802626504689195, 57.03006788708773, 41.63220878700433, 9.1905048781754, 48.807633792951755, 14.089985242383943, 5.716357970015763, 9.169840936905167, 74.55259328671451, 75.85184104105441, 49.03499101297081, 28.84165983871987, 76.76337846257417, 55.958590317478546, 10.790484908490885, 55.10410035326032, 19.399703235029595, 12.31100556806382, 9.83433446905575, 96.27383056145874, 7.049711935811247, 18.138560837519638, 27.166062017606194, 15.456672783850696, 113.27857537532249, 69.30799810037844, 60.10279261648848, 64.70730326069958, 16.045052325508713, 14.586688080455898, 15.806568347506962, 35.86168639110192, 77.59662193653818, 28.2543870621281, 64.20371732164355, 84.99779930842449, 20.097224449082923, 26.47951539896524, 59.68835398312723, 28.024461635694696, 50.12894612903298, 7.602238586140779, 12.018390668561457, 48.40845317119168, 17.840663942690426, 79.66305550748524, 70.06159942340321, 12.002112992515771, 53.32070587255326, 14.909220743958358, 26.288021020239157, 18.371548837263283, 17.889078386106895, 19.491569056460172, 45.50831724703983, 40.083278270948306, 16.64728123015546, 26.109624278955714, 16.82284077387642, 9.977595584031537, 27.10065269200107, 13.03235125042042, 16.36617798786432, 35.590490739404785, 37.808916951112515, 17.149577940776375, 17.068621424065743, 46.94483592494969, 5.685873411939559, 16.89057486734135, 86.0068715906651, 5.603434905733625, 24.187580057003125, 29.125098186543575, 19.161278327064313, 38.569103372363145, 67.021764947825, 29.554707145041604, 56.93689831509618, 66.0468851342483, 32.53770617680956, 7.523862138876498, 33.54313764188931, 58.26860086099633, 40.902806440257145, 21.877246413808358, 16.05197588564893, 13.196561310508828, 18.15958730981823, 8.816369752142554, 5.477640427145743, 88.36675282232771, 23.72174028638754, 17.50891645688884, 16.48089570713012, 23.32225400125445, 47.473909132282174, 43.84030407729924, 8.312825829192413, 7.804117801817535, 16.24496949172619, 11.473098568730444, 6.832646051548384, 28.760819308798077, 63.473503651421694, 8.114854418549006, 6.3548807033919745, 11.734074195167944, 13.247259501302212, 33.11866947347561, 12.458289543922314, 15.547810264628549, 14.740002780090085, 17.41569968335802, 29.6174573831991, 56.49142277912189, 108.54608224349252, 55.364416947803285, 63.732478853959336, 31.269487737510957, 11.24495307207302, 15.845653466646485, 27.70694937567919, 8.05668703823646, 24.622422884085903, 17.92930961993891, 62.960250649329524, 21.00248829255419, 49.04818947871675, 52.143721681420296, 22.416697886507407, 66.18527875565381, 5.761604453916808, 18.72322643374722, 43.250420942766915, 45.40005999695454, 11.05533814285596, 31.970385290726206, 7.024610647259579, 7.999815255795438, 60.12344172736853, 56.64296453612223, 5.349360853263117, 13.1949604433657, 14.659108094531657, 36.576568959559275, 44.915110173268744, 27.521994920176297, 108.0801145992545, 56.3934315259546, 19.263956169657302, 113.77196862706177, 70.35007079558487, 27.61476172834439, 15.405235663804415, 58.83138668845426, 7.968141250219315, 16.896876042169744, 82.06360157424527, 38.41794933383291, 24.043690031582344, 9.988314940447422, 26.60618138685121, 35.062182919890056, 56.72677527256289, 93.18573672808554, 74.40319722828649, 35.33352719499207, 5.19772126432055, 70.68113635274565, 54.83192822980092, 5.93850952265504, 33.100722136519316, 31.603827780462336, 12.70814072629288, 68.47310070761381, 9.029496137978441, 6.468849107603254, 8.963323266571404, 48.22685491564729, 14.31700745743625, 29.96954467070258, 52.56389057444366, 49.03916663482423, 9.41568034185175, 29.16533779777661, 28.37942151260027, 20.07204486069549, 8.142623276603354, 5.894073129184717, 33.363048508590815, 78.84317775179082, 6.39918006465443, 17.45621290185941, 5.339581965671445, 5.829072302235259, 30.50868275550379, 31.448134582650347, 9.179723879401635, 51.637701415414135, 59.9320005632379, 14.54892604556343, 29.422476018214976, 32.3742383080056, 16.146292230196973, 22.481073304007857, 84.02488201980752, 86.9184419064576, 38.54848126468959, 20.691538106931535, 39.908135740761495, 10.71545859286666, 13.826274287693806, 82.11754773653215, 41.944441970497834, 15.679990719931162, 41.63219807594441, 8.98686881398109, 10.543866337094673, 8.942940104433877, 5.241993528061006, 17.3015626739098, 21.09563582113138, 14.096939286084039, 17.339755385389786, 59.44853480931119, 69.68961418494682, 29.7461538655362, 19.113495859584816, 8.511617745764621, 14.91375129920083, 33.68271665173314, 127.22043780341677, 6.523057463822383, 51.808893588489696, 8.481009960302927, 15.03449570817567, 29.70405428345985, 53.199298308126174, 6.19823797696655, 8.5266185106241, 84.38186999684855, 54.33463598667895, 5.711989054593263, 8.56325296812076, 11.455615811575095, 64.38322048018529, 9.833648573176594, 18.331815311124203, 66.39950354327549, 8.996517889334568, 10.100896295808676, 18.26554482466759, 10.365825294330863, 5.214089644869618, 24.1980164628921, 5.9715888478743295, 12.584628423523098, 59.14568763647681, 20.44809671511884, 98.83542191493264, 72.81503511286179, 14.67239060327802, 7.422930827543809, 14.013651918060836, 7.826869800301073, 54.51295054812053, 77.96498897158769, 41.58747410268625, 104.54172216870512, 51.32704760525116, 20.443631202993956, 80.77567492759756, 6.473195747776643, 17.650562161268063, 14.009005103215054, 8.031116409188863, 13.16626538236517, 17.419269076835505, 6.497498536180739, 30.80935658589762, 28.00120634601281, 21.77369921771504, 63.53007573371785, 11.006923638831605, 79.56108587337408, 37.9945360794521, 71.24194737703787, 15.28969211766148, 31.252647344571322, 57.25369183971839, 11.131489609616025, 6.8879676921537465, 51.798098584045974, 9.025815907251756, 8.534027148624197, 15.184037722058708, 6.449491312579497, 5.519231096118, 9.353463112137558, 36.1712934158722, 19.84294874085122, 14.688303409731894, 25.096120880043753, 17.79677092477671, 9.542624545517292, 5.358947721249114, 54.40830145391691, 7.227951625941203, 12.922897557088845, 77.42422328100923, 31.39668539796346, 17.855368839683038, 29.93016569256154, 20.603813557392254, 5.605166432867324, 10.990869255268565, 5.810711160707664, 35.77543921521737, 52.79106291609109, 8.220679593495637, 75.03171288448664, 5.6388954438674865, 15.416019842712688, 110.72479544211586, 5.888391837779194, 18.16064184037377, 24.882148456620147, 99.70665936489206, 6.3859975069796855, 7.112172519543047, 17.726870607926028, 8.155334831904364, 40.10176639165472, 42.53020542421089, 71.64325974288332, 43.39429123167685, 59.02415320033394, 37.6877665180997, 18.493702908002852, 19.237466010726358, 44.91703841894313, 40.07837476902032, 14.411910062686806, 26.672612657473405, 6.224298253449012, 18.261141544236622, 78.36508335692126, 62.399834018051436, 49.355040399132264, 9.903539619420881, 10.072717889759026, 18.63026606862112, 20.717985990902214, 6.010179632821027, 7.421785984690013, 16.551886481159368, 64.94835687805673, 23.98746693650429, 9.266825991039081, 42.48681557639785, 7.622091067483164, 15.184258542328992, 66.02937141687241, 46.04311294133972, 10.083162173966478, 9.432881341127768, 85.13703840603932, 18.90910834843212, 7.665943820152287, 12.745557972180814, 69.67077517089413, 47.457860689634494, 100.80327576718803, 42.51708775422533, 8.161940532125334, 15.580175690711702, 68.51969837301434, 50.106387394693506, 16.339376381486503, 9.009928523845932, 140.6646357302743, 7.731650218934652, 29.08146728081433, 6.5585342159224975, 18.087080695911922, 7.21327124507345, 28.246411694327627, 5.237446069087783, 15.962597825856962, 124.67001420463878, 10.294329052683889, 61.07912142097208, 21.463280480864185, 37.646931425105905, 87.67472494854397, 16.82766071320524, 8.314908848334575, 14.233976068567806, 17.134486104488683, 22.89096625248358, 43.924846982554456, 42.03954120569861, 42.38960963198897, 5.364164796804734, 69.81828532719793, 49.32894753951838, 8.347023343382357, 68.02915438479825, 26.86356757522422, 66.63571552894821, 52.733629940255796, 57.54496076368347, 46.01081590052256, 9.398348397781193, 35.97157942522679, 5.034121710540332, 31.160512112245975, 67.87773327741029, 5.646826228335365, 7.167204011430655, 8.87128797379085, 105.36126198829282, 31.555832605485644, 13.651342339824794, 9.264309552724788, 83.22762229476712, 37.582257809448365, 15.696813337993529, 27.36876327038529, 79.31847836805314, 23.32974674506316, 18.961658925737282, 72.74947997481684, 7.794482993227443, 7.450985187341259, 80.16490316816913, 34.32328577554388, 37.2182614321407, 12.385825873593436, 96.84758027296631, 7.201924408877383, 110.35658216090556, 68.34088872381052, 20.58038750715858, 98.52612414542475, 81.49228050845846, 14.483184016993363, 62.45165973569503, 6.8937713430284475, 5.529807653820992, 17.806909287536882, 15.000338674759242, 69.21463136801762, 53.0118347016996, 10.798088009786651, 46.24457161492148, 59.37306274602153, 7.930323686786681, 80.19933983059951, 65.09725479686742, 8.988708763446546, 27.72651008328606, 37.72041208112952, 58.036907898487534, 52.26596419359708, 46.907149286868766, 36.17546478303492, 115.18001101777126, 7.655412400785783, 7.074128188384725, 7.624015603021811, 18.93243385414521, 15.365934079724793, 7.003183563664237, 61.85495055780829, 11.732389080976342, 86.39871373900911, 19.98706832568011, 65.79859783328342, 17.754427219284704, 23.22245248188775, 65.5243934568866, 67.30840307479227, 84.33492763300909, 83.94722593983293, 5.268143194002383, 78.80773123393617, 114.78975919143916, 9.167204424650091, 67.53850320574509, 67.59403893573632, 14.130619907487336, 17.48507637624003, 24.45530551130712, 42.39139796162111, 112.42311560687222, 76.47020108447401, 27.30172982252644, 66.22533013262277, 28.02309588375559, 24.598435459846815, 35.9102210183775, 7.738559042281637, 30.733928112466515, 20.35986085418029, 8.737416596735015, 47.12129995465116, 8.42191052004281, 7.565378744551696, 66.41866617533945, 35.01044848477735, 19.087710384652613, 12.967112614721891, 27.74414925395478, 16.66105974367336, 43.24348657385018, 61.97211907244056, 24.663258274648975, 26.11634952804142, 35.08121490036684, 10.831609568941909, 123.0662446193957, 115.62131967855774, 6.568630939631552, 152.91751900863738, 9.820906179368343, 80.35754808420413, 103.56225396581587, 183.1879260217064, 12.365376234522568, 6.767567523939154, 5.405126161122421, 13.752043872129429, 10.873942202660512, 28.102969736324013, 73.48376448993096, 25.501272840621017, 86.75850190157273, 10.316253437997492, 5.246549728651892, 63.75406363418441, 27.070854773389176, 16.103186087975036, 57.03918963518543, 17.277759356154252, 6.034669634742344, 33.045789764029166, 15.95181261596474, 75.74215400062988, 14.491970125714705, 12.143937704529163, 57.04006312728649, 63.59015192940314, 15.109673492381617, 10.757654503685279, 20.457000137403693, 81.71540142747905, 66.86841048345607, 5.884538181413946, 5.861979787766201, 10.193935290637214, 53.39647846048041, 86.07070980735101, 18.55623496644379, 8.721499447083467, 42.84942828380265, 63.671294085112045, 21.063560830886633, 20.422667167887262, 6.394194045984117, 66.27659379270708, 7.714281807762325, 77.02475549212637, 15.582962757111476, 51.71732819170476, 5.1798796867633286, 85.54595727928738, 42.555696645727906, 18.9794019397235, 38.14613682688659, 19.592240539411694, 14.103758082098278, 10.177220402681634, 31.75545481551641, 23.805645651885996, 58.58441085933841, 9.70690670124068, 6.839543857920363, 72.68235149837378, 108.25477990265901, 19.64873919840366, 6.727180741466719, 23.881266860018663, 24.17171267144598, 5.236497541136369, 81.55297596588926, 88.66896905131401, 69.38412143291056, 8.78917329133059, 91.24361677943448, 35.86477153979212, 63.03244055151775, 10.059355307544978, 10.190757463860928, 11.20410612008557, 34.29170175983797, 57.60113777209158, 14.374868620481625, 45.348259053208906, 45.683660191056056, 44.97693036343155, 92.5523933499845, 6.011525317695458, 23.539932222405497, 74.10416612484939, 20.233691507518003, 36.06402034478121, 50.67034851365844, 143.09175184724694, 20.381143991631706, 21.599821459673123, 22.775552547775447, 25.60746703520998, 23.47379930927681, 83.83103392129348, 46.75520664160922, 9.60175109312911, 60.18001751992078, 66.02083511061784, 29.865442924073065, 32.54502049193154, 42.72969668325588, 42.78460621399804, 14.620108873096608, 12.955260671070198, 52.21707421733807, 10.575769871585685, 55.11858934402989, 29.231831266993026, 32.188983590469064, 5.8578008512113335, 22.180960100592177, 11.90436946251522, 56.079159754782054, 50.583760836505846, 5.103766519575093, 12.996244941547994, 40.75752707898839, 38.2558843844688, 45.580789579300514, 5.114244178488143, 13.678775911035867, 12.163714689706891, 8.813056858612628, 13.33827434953108, 78.67861011629877, 10.887927833160425, 61.03771518431944, 11.25154031871926, 16.689736048692186, 13.835647409666782, 8.659493185187731, 56.51380087181772, 89.80716318423168, 103.89732611531991, 58.3149399653766, 8.637366881945704, 16.191311912059227, 5.555147952804153, 9.351777599892216, 51.24321745434547, 6.196907112465779, 11.94615211046136, 16.65563352571837, 91.2212282436957, 34.04020558298534, 7.341229528732672, 49.68410968381469, 15.679185088639903, 9.591218917563715, 29.55610960686576, 62.099277708362294, 21.264349383284085, 46.92120601483049, 8.51701240551101, 72.23267111305773, 108.32980575289092, 12.866113866815613, 11.557501070543655, 25.09794490984243, 18.581697494804363, 11.559590661138383, 35.00633830268028, 19.635780958837046, 17.456848626315615, 6.777372996115669, 10.709620438166594, 5.673998594530128, 10.825387450301449, 12.86466530244139, 8.029463254481906, 5.3057572578950705, 17.89038417861485, 7.481448459537988, 34.90717415837673, 6.078421328417525, 6.288429580029001, 58.13935790336464, 14.469808919936101, 8.244127111314386, 11.868601916298864, 35.670716671359216, 20.436933190487817, 22.251757450610167, ...])
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);
([4823115.938167311, 6264334.2983354945, 6301015.251562012, 6308650.857590015, 6309099.762966569, 6309130.969850574, 6309748.714567522, 6312439.472258157, 6328860.866114781, 6422488.514484805, 6438986.832136285, 6540933.281371189, 6566781.777111698, 6600707.353896482, 6602497.474721404, 6623628.125, 6625233.074252047, 6631532.8125, 6634028.862475703, 6651275.0, 6658826.5625, 6658848.934438858, 6672708.351012113, 6695156.436161531, 6703409.375, 6709737.775603135, 6710127.952563439, 6710318.531468532, 6710348.2832115665, 6742019.329776451, 6746401.018632285, 6783175.0, 6784064.294037673, 6784562.46538518, 6792017.086099212, 6793268.300914091, 6796479.6875, 6801896.1530522, 6803446.144263219, 6819269.547097204, 6895674.865177762, 6904049.261744158, 6907599.959753087, 6908786.978148374, 6909442.236632201, 6936079.3984624585, 7007828.908924713, 7023854.228361798, 7023916.4811014235, 7045299.818785629, 7089767.595644784, 7094106.25, 7096283.344313903, 7122635.087324577, 7128580.670142057, 7167749.977477012, 7181028.125, 7244965.625, 7255771.915090738, 7259106.25, 7275485.9375, 7355802.169935525, 7369818.1325951675, 7370334.478654546, 7375898.312113335, 7418268.75, 7424942.258913104, 7424982.358839042, 7427170.3125, 7449691.248086162, 7478305.972593111, 7493204.6875, 7496249.018071155, 7499448.612772483, 7561415.456720144, 7561932.426058046, 7625650.054369326, 7626080.791885031, 7628204.6875, 7628209.67590074, 7628975.10280254, 7630166.066337441, 7634742.1875, 7635094.733395689, 7635983.259408717, 7639745.496180751, 7641871.615461015, 8106287.334840901, 8115201.556092584, 8117053.587090587, 8346300.905453578, 8373219.8033918, 8373720.906121174, 8374700.337587398, 8374729.772882203, 8375731.040408025, 8380137.25678881, 8417013.980185905, 8470601.350292843, 8607740.565129723, 8615017.1875, 8615953.706118023, 8682235.9375, 8696599.092584811, 8697829.511255343, 8706695.637179313, 8710976.5625, 8729943.844770886, 8734507.8125, 8749147.85417831, 8751777.931059642, 8752189.998949733, 8752201.473729739, 8752231.98886275, 8754045.821333844, 8757387.5, 8757397.205343833, 8757721.875, 8758197.807313299, 8761303.90215597, 8769963.101980196, 8769992.079658654, 8771479.350605996, 8773057.93138131, 8773232.484210754, 8773443.553631082, 8773679.186985046, 8773702.851902677, 8774466.110022962, 8774604.485516595, 8774628.06256209, 8774719.414299456, 8775876.419720437, 8776134.140363501, 8776405.015680533, 8776717.913574914, 8779094.682331897, 8793922.345172552, 8805411.195086012, 8806845.536702367, 8810571.731970305, 8811019.829093289, 8813118.483495811, 8818240.333340647, 8819069.725282317, 8820383.947387295, 8821434.107703712, 8824091.0577049, 8824550.184057103, 8825034.664173374, 8825155.5437603, 8825267.1875, 8825490.34893128, 9059171.529562904, 9072990.730476364, 9087371.933157125, 9087431.940492146, 9102964.0625, 9116031.750868654, 9217782.862545384, 9249698.431261111, 9251128.716019308, 9298676.210182434, 9357150.0, 9357150.613966046, 9363706.667150838, 9368015.977266692, 9424937.854531758, 9427445.3125, 9428439.051716086, 9428669.805017883, 9435916.698811125, 9443094.55648406, 9443379.630900253, 9443555.733075205, 9444758.009195121, 9445228.125, 9447034.361329574, 9447293.75, 9447426.5625, 9447485.605018776, 9447509.908586502, 9447516.440892784, 9447710.537340932, 9447938.856670666, 9448067.113772634, 9448270.394651232, 9448329.071955986, 9448331.18405154, 9448337.5, 9448341.80987318, 9448730.450933306, 9448806.25, 9448825.783938618, 9448838.405200945, 9448851.982118132, 9448893.75, 9449018.75, 9449187.015414024, 9449302.025467781, 9449434.828956334, 9449456.099747509, 9449479.907852506, 9449591.164171929, 9449834.30185355, 9449834.519677533, 9449856.900371531, 9450026.588864272, 9450332.854357805, 9450563.88592575, 9450596.130168494, 9450635.07599371, 9450677.097883357, 9450740.890004696, 9450804.6875, 9450856.793600488, 9450864.297559412, 9451287.192127785, 9451503.45890075, 9451842.1875, 9452234.300339663, 9452546.318051977, 9454301.5625, 9458855.758519288, 9487209.979318159, 9488749.055504434, 9488755.261276962, 9491209.843443383, 9493766.672432363, 9497358.58061058, 9504777.348345105, 9545149.519820098, 9547523.478428423, 9549319.661639666, 9565589.281360079, 9585099.373572024, 9585394.873692797, 9595764.736532202, 9604762.328140508, 9609240.12158048, 9615236.245683672, 9615932.799791737, 9618356.96771202, 9618602.149036309, 9619656.664774692, 9630152.661084637, 9632576.61937491, 9633250.435668422, 9633933.912504643, 9637729.269894412, 9639965.625, 9643162.755161863, 9643798.87008926, 9663819.849265441, 9672268.224408068, 9692756.712834861, 9694437.288531259, 9695106.993379733, 9699490.439716596, 9708641.270784892, 9745956.25, 9747050.0, 9763865.917216642, 9769111.811365232, 9789531.518804338, 9793927.348417552, 9797110.9375, 9797525.0, 9797715.625, 9798112.5, 9799111.567677656, 9800095.3125, 9800115.29808968, 9800573.734954465, 9803203.539345209, 9805040.809526166, 9806477.687395247, 9809490.625, 9813540.657262972, 9813927.123783488, 9814157.296057118, 9814373.402800908, 9814837.598997323, 9814944.417151693, 9825896.828510039, 9827068.531568041, 9828312.5, 9834593.75, 9839417.016029386, 9839907.232981505, 9841577.261275839, 9842501.712292276, 9860396.677541172, 9869129.6875, 9872654.6875, 9874680.101233829, 9874756.25, 9874764.0625, 9874771.875, 9874849.772983445, 9874901.111605147, 9874927.385982914, 9874953.769706273, 9875220.852883935, 9875414.224684244, 9875445.032374399, 9875510.019493217, 9875642.114874043, 9875893.878897706, 9875989.0625, 9876220.3125, 9876239.0625, 9876321.659130111, 9876401.824739443, 9876863.966186035, 9880451.772341598, 9883410.9375, 9885224.70686586, 9885498.423686076, 9887137.5, 9888750.791206492, 9901866.535177017, 9909005.376769388, 9912093.75, 9913289.036711378, 9913741.872701073, 9914403.1222368, 9920814.56626323, 9921157.8125, 9923611.534832638, 9934173.4375, 9938307.679763677, 9940048.933106873, 9940076.5625, 9940167.179002816, 9941519.779582534, 9941616.304982776, 9945642.792638306, 9945807.515532814, 9945879.6875, 9946131.25, 9946155.073020546, 9946445.899263334, 9946653.544220371, 9958681.926681127, 9961086.440369265, 9961149.38914201, 9968926.892012542, 9994003.125, 10033424.59024872, 10037559.854481056, 10045684.420359213, 10047550.0, 10057219.979267512, 10060714.667281222, 10062357.098936837, 10062543.556623219, 10063327.858445935, 10064978.125, 10066810.57488774, 10066907.653428217, 10067426.243801458, 10068651.673743645, 10069034.191160599, 10070958.877889886, 10071268.521791557, 10072287.275073225, 10130819.773493992, 10144602.635916991, 10156445.301798945, 10161963.422052259, 10163314.32622877, 10164590.077030545, 10165098.089832222, 10165816.508369397, 10173930.052194541, 10174019.710990157, 10175118.543691961, 10175322.196526665, 10175499.54847649, 10176951.228198191, 10176982.8125, 10177395.11962022, 10179518.799308648, 10184230.210730322, 10185121.529580312, 10211040.835276721, 10219283.149224913, 10228189.73281944, 10232465.82411634, 10234354.348011263, 10237220.976356484, 10241794.106137127, 10243122.223518405, 10243138.796936193, 10268522.586805802, 10269822.97873757, 10277437.446108384, 10283459.901337583, 10284217.1875, 10287558.377018047, 10289451.484747412, 10295857.4926367, 10298059.375, 10302332.285415871, 10305813.310267055, 10307398.525475267, 10309241.758785669, 10313708.913410986, 10314004.452808492, 10314263.111582326, 10319543.103077348, 10322006.132803317, 10324468.482137563, 10329335.9375, 10337571.63787921, 10338485.9375, 10338796.141123537, 10340701.06791971, 10341439.62193436, 10341664.108329745, 10341681.203202099, 10341730.335019132, 10349718.368329298, 10359297.852781532, 10359443.75, 10359732.985958729, 10360540.840504153, 10361705.701428706, 10365204.61138177, 10365457.257048976, 10365849.851873081, 10367482.082313005, 10368745.517803805, 10369520.265897615, 10370617.993169269, 10371323.4375, 10371370.3125, 10372430.778564189, 10372767.900796903, 10372957.262503259, 10372997.782534238, 10373861.7498245, 10373876.5625, 10375298.4375, 10376035.660092955, 10376372.561601574, 10378283.763139402, 10385316.929588271, 10386625.0, 10389596.641185334, 10393637.5, 10393807.8125, 10393826.337262, 10394209.30406682, 10394210.9375, 10394485.927205535, 10394585.9375, 10394791.291986676, 10394974.257733159, 10395340.625, 10395418.369979661, 10396343.632633826, 10396630.780059531, 10397192.1875, 10397435.763402551, 10397573.4375, 10398020.3125, 10398118.75, 10398526.660516895, 10398528.125, 10398735.930101829, 10398897.799769381, 10399534.092485353, 10400265.08930357, 10401932.364882674, 10401952.627864389, 10401954.102794448, 10402172.408304099, 10402637.43156044, 10402698.639407756, 10402754.438126259, 10402843.75, 10402863.87749822, 10402872.258072626, 10402874.280253712, 10402879.31555294, 10402925.0, 10402938.541927233, 10402958.054325432, 10403200.994983258, 10403277.842201894, 10403332.640142605, 10403396.875, 10403433.79070912, 10403491.907223798, 10403598.156711956, 10403609.048019757, 10403627.79869884, 10403646.61726053, 10403647.056135941, 10403690.625, 10403721.437348073, 10403791.778845575, 10403805.751841089, 10403829.57449659, 10403855.982116628, 10403868.20921113, 10403870.873965118, 10403950.513161499, 10403971.875, 10403971.875, 10403987.5, 10403990.804516627, 10404006.652617775, 10404049.992698219, 10404060.9375, 10404079.236910652, 10404142.413163094, 10404167.1875, 10404167.537926568, 10404185.961683996, 10404197.969302744, 10404198.415115373, 10404215.058963867, 10404233.240418086, 10404256.25, 10404317.1875, 10404332.894381473, 10404342.67645102, 10404347.075123345, 10404354.6875, 10404378.664714294, 10404406.36169548, 10404424.543475991, 10404424.575485816, 10404430.476063697, 10404439.72648307, 10404452.575980386, 10404456.66363128, 10404461.743918754, 10404467.549784392, 10404467.9549538, 10404474.160277966, 10404474.388448842, 10404477.338276159, 10404482.146196594, 10404497.427736297, 10404497.909855997, 10404505.665716678, 10404528.703695362, 10404537.148704149, 10404548.678842725, 10404564.0625, 10404568.495012056, 10404569.621793786, 10404569.700441103, 10404622.380850095, 10404624.910781097, 10404635.283787707, 10404637.231760371, 10404651.046018666, 10404665.065603893, 10404669.276953096, 10404670.37857087, 10404673.222981222, 10404706.222987266, 10404713.359300034, 10404725.101327598, 10404737.421327498, 10404748.4375, 10404767.662472319, 10404771.875, 10404789.150945993, 10404793.322052905, 10404806.25, 10404807.814918775, 10404814.65551163, 10404825.0, 10404826.17754536, 10404839.502846798, 10404842.13729499, 10404848.19337355, 10404857.52379837, 10404862.525974542, 10404880.630737767, 10404881.36537403, 10404895.43392394, 10404895.945350125, 10404905.388791248, 10404912.73966698, 10404930.176100472, 10404931.25, 10404937.890221836, 10404944.658387871, 10404954.707238544, 10404957.8125, 10404993.529673304, 10404994.418056816, 10405007.21847986, 10405009.213404965, 10405023.348155394, 10405034.330719827, 10405040.625, 10405068.088021288, 10405068.623272352, 10405085.729678709, 10405091.065638056, 10405095.431661664, 10405111.564160913, 10405116.582460582, 10405122.522907987, 10405131.324060816, 10405136.242534589, 10405163.385791417, 10405170.277082602, 10405172.453763952, 10405238.805789532, 10405241.111516522, 10405252.077517113, 10405253.04122592, 10405259.84490579, 10405267.1875, 10405315.427824887, 10405316.323122956, 10405355.95589682, 10405364.0625, 10405376.5625, 10405377.97874996, 10405397.472052516, 10405438.71523081, 10405510.038313191, 10405515.625, 10405540.120287195, 10405566.143859807, 10405595.91960086, 10405596.07591872, 10405608.126744855, 10405622.85612193, 10405675.778328456, 10405679.15630874, 10405905.054302713, 10405925.976996277, 10405932.752473472, 10405934.29762729, 10405953.125, 10405971.926827725, 10406153.187262893, 10406195.3125, 10406210.9375, 10406230.460267428, 10406318.867623847, 10406335.9375, 10406355.445036108, 10406357.982608065, 10406361.77341633, 10406373.4375, 10406389.0625, 10406400.271878304, 10406468.182983108, 10406474.756631248, 10406500.253283296, 10406531.25, 10406604.99556959, 10406783.47809054, 10406813.656155033, 10406908.605533957, 10406950.341613699, 10407154.20874897, 10407161.378598632, 10407304.333946295, 10407528.463148868, 10408145.298274567, 10408651.285058785, 10409895.55686631, 10409897.926081982, 10410079.07975289, 10410376.110554045, 10410499.200807054, 10410526.5625, 10410656.421068922, 10412456.670132231, 10412898.490693802, 10413356.051100526, 10420375.476765422, 10421401.192072375, 10421412.965813123, 10440406.25, 10540421.875, 10540488.135076068, 10547288.45767887, 10563068.75, 10586236.050081564, 10601914.924958453, 10605121.78501831, 10605255.089784324, 10605582.8125, 10606567.712658085, 10607201.568752402, 10608043.828125907, 10610335.9375, 10610444.867375612, 10614979.6875, 10627114.65083483, 10636258.390240906, 10668337.671236608, 10689036.900632747, 10718329.6875, 10766789.0625, 10783315.239626989, 10795404.607071187, 10805274.087243982, 10809190.62461646, 10814679.872487882, 10843732.75124901, 10848490.625, 10849124.666311305, 10850932.01481164, 10854445.3125, 10855105.187022518, 10856038.620966543, 10858667.80286451, 10859325.0, 10859355.299744194, 10859383.491599714, 10859431.115370974, 10859647.172534788, 10859694.408533342, 10860371.875, 10860445.123927189, 10860568.75, 10861040.204901556, 10861380.057576515, 10861520.3125, 10861695.931755386, 10861818.682378944, 10861919.341857314, 10861995.286763625, 10862315.625, 10862435.9375, 10862502.903362919, 10862514.0625, 10862643.178539392, 10862863.322039891, 10863615.625, 10864046.875, 10864665.18985747, 10866205.42107014, 10866940.152699502, 10867739.0625, 10868006.954338918, 10868331.25, 10869548.924341815, 10869643.069363594, 10871453.26698773, 10871459.191861728, 10871662.557084814, 10872205.448271949, 10882276.53928216, 10883222.967635524, 10883854.933589824, 10889020.667728327, 10890135.12649103, 10892350.896999665, 10892780.288930405, 10896224.020789513, 10897352.782485276, 10901220.3125, 10901760.9375, 10902131.25, 10902181.113630556, 10906014.863925837, 10906470.3125, 10906938.958858885, 10907224.799209343, 10908157.8125, 10908823.4375, 10910001.974195458, 10915695.181704741, 10916840.836028742, 10922144.315205343, 10922221.875, 10923045.537150986, 10923198.372509522, 10924171.875, 10924184.349139554, 10925538.826086484, 10926209.375, 10926753.484262085, 10926781.796671264, 10926813.440863773, 10927313.265209554, 10927381.283900626, 10929692.434939768, 10933051.456598341, 10936632.693584666, 10936839.0625, 10936933.210868176, 10938000.925992947, 10943183.441035239, 10947058.200700141, 10947512.5, 10948588.447263552, 10967914.782808958, 10987818.615080126, 11024029.6875, 11028754.489430487, 11038096.379706195, 11039390.324184502, 11039417.688660063, 11045823.797874263, 11047366.152243406, 11063973.05996913, 11064271.875, 11066626.07629252, 11067702.23226307, 11071334.395307187, 11071409.547924103, 11072056.910683265, 11072063.893847419, 11079838.638454873, 11080882.8125, 11083137.325708047, 11090595.3125, 11093843.160411017, 11093848.487602599, 11099566.714296885, 11099702.387900358, 11101979.962190166, 11106559.375, 11110361.371247932, 11110897.907546287, 11113882.8125, 11114839.482158849, 11118026.40537961, 11118084.427920453, 11119170.87802913, 11119938.899312615, 11120285.22881879, 11120296.918431133, 11121009.124608457, 11121698.188788457, 11121737.5, 11123315.902047405, 11123669.660135102, 11125970.94080678, 11126183.682368865, 11126575.2323544, 11126790.040213516, 11127863.207288513, 11129738.240872875, 11130534.375, 11130771.875, 11130940.080834983, 11131140.010553677, 11131368.130634889, 11131648.290370166, 11132219.046927735, 11132848.4375, 11134372.033694154, 11134487.5, 11142230.300150055, 11142693.75, 11142796.875, 11144060.142256338, 11144063.390902402, 11144186.785705267, 11144402.886354322, 11145107.105452886, 11145310.080832154, 11145381.491613531, 11145692.1875, 11145708.22553994, 11145834.744298326, 11146703.125, 11149998.4375, 11151036.792841872, 11151326.377780765, 11151441.897650104, 11152405.982256854, 11155229.375550237, 11156065.625, 11156203.125, 11156313.56434318, 11156528.968140768, 11157153.125, 11157588.802614864, 11158900.155920042, 11159322.626408078, 11159633.679634443, 11159820.360834174, 11161515.465296391, 11162884.090260997, 11162928.683535611, 11163481.25, 11165876.938575668, 11167507.742713783, 11169935.9375, 11171038.292490302, 11171949.683315324, 11172337.709705671, 11172596.238748541, 11172865.625, 11173602.43166931, 11174110.81872352, 11174173.669050714, 11174901.901590066, 11174912.028940966, 11175374.832668338, 11176891.865505438, 11177981.146305365, 11178300.0, 11178522.178311555, 11182146.782748943, 11182499.911070656, 11182622.918174226, 11182985.457394596, 11183133.621819448, 11183242.1875, 11183251.47554142, 11183785.296291586, 11184635.9375, 11184663.678151565, 11184679.6875, 11185809.375, 11186301.04619309, 11186494.325180646, 11189974.56629668, 11189975.445892014, 11193085.480941119, 11195526.8574365, 11195719.01794053, 11204439.999994297, 11213650.0, 11213676.591558592, 11220493.75, 11220500.785879675, 11224228.189372705, 11226111.51257825, 11227143.065995155, 11227496.379458837, 11227501.5625, 11228962.340982486, 11229407.8125, 11231298.515306115, 11232448.667353421, 11234032.488587826, 11240466.26935896, 11240684.709858073, 11240759.401042322, 11241512.5, 11241682.8125, 11248869.359245265, 11249242.480831541, 11255944.196454588, 11257803.148997992, 11258182.5575104, 11258835.360127244, 11258919.217300018, 11259361.324645586, 11259398.4375, 11259931.25, 11260163.274920724, 11261273.4375, 11264939.243451186, 11264989.354579424, 11265491.09382776, 11265523.4375, 11265566.664258936, 11265875.0, 11266145.724237323, 11267009.375, 11267267.091927804, 11267305.573010638, 11267940.883603131, 11268049.798623938, 11268092.898497596, 11268129.947285242, 11268316.14492441, 11268409.398836613, 11268457.456109663, 11268640.694061825, 11268804.402474651, 11269358.847653767, 11269756.047574388, 11269810.25992305, 11271674.479943687, 11271725.467734588, 11271986.181963468, 11272132.462731287, 11272276.5625, 11273231.156418484, 11273618.916216813, 11274533.674591465, 11274574.912126366, 11274913.98135401, 11275306.67737726, 11277837.5, 11278440.012178997, 11280510.510331253, ...], [16.286545386650022, 53.923494152541934, 70.83634880997857, 10.179692313968895, 55.16384380198825, 24.00766075988227, 44.30974084943708, 11.83487717017551, 43.5964877947968, 21.02713185611892, 19.96747428227783, 60.8146406954755, 33.55459463771104, 13.440869372326238, 13.204396525710475, 139.3031215624745, 5.350971692052976, 59.91986318504494, 5.755357436862657, 86.46424965156896, 29.842679585572, 7.793436233087106, 61.81633142805105, 7.171263092429429, 67.75945449852713, 27.757746363749614, 99.25505854737055, 136.33273541236508, 96.19420298700271, 7.8273162338141145, 13.207487184816458, 74.21259508704033, 11.986763449854806, 11.07402925272149, 14.568607123364524, 22.01648948775349, 91.08265790811262, 44.42889094376174, 19.463646560250503, 10.110522289501455, 14.45137978009301, 100.31517358694843, 5.704201365401455, 13.266595352755608, 13.181012012378996, 73.64286393188053, 7.913716479831127, 5.7807714881027, 12.794211115034907, 5.604096977344895, 34.74077308737404, 81.6707950026975, 6.573819498934247, 8.70297385745853, 10.328069373526413, 92.2696416945357, 29.912144633895217, 47.51262174927876, 30.606809724629926, 48.34328999598425, 65.83746751383791, 9.903891158020897, 13.015605732412993, 6.28038380246787, 161.50952035284067, 68.57062234160959, 6.77784788218319, 89.91139996575495, 68.07472388684118, 84.9176953702648, 29.68560501860999, 40.7014699834117, 12.175136386383178, 79.7122662260108, 14.336685502982347, 68.33737851705385, 11.213766455704636, 48.14160551846666, 76.46608031070649, 11.633029685237625, 15.348377390540092, 8.53461878861026, 68.9937396083665, 41.99044657448836, 16.970874896489093, 61.94690005844466, 24.281710099824505, 20.68738551710483, 8.28319188104315, 11.935942288918884, 15.588074476446707, 47.12638159058594, 17.81776481658104, 5.72858517763571, 8.332250919005421, 7.529150988388183, 47.130944026621584, 14.63678173065013, 8.17745852459362, 11.035397683721824, 43.47602929265381, 12.1762753445329, 50.00510708993433, 9.954400111004038, 25.471670345346126, 5.727737810854112, 45.104347445674954, 19.450673800227825, 45.64540260410118, 50.275185997975946, 5.391111273530531, 26.074629467400378, 16.71457177240385, 8.720189890951096, 7.7982607077947845, 52.47906769257361, 30.962787719643753, 55.86092339414791, 20.285804942665116, 12.607058940329933, 49.80079690977411, 10.963226305920946, 23.290640485760854, 15.41485362345818, 7.037748012807802, 14.242384438882743, 10.426182850163748, 16.101945328539053, 9.778201664590627, 16.913824705659906, 11.03149494383986, 18.26762547526532, 8.212489230385502, 65.99824237192183, 7.726410307710787, 10.031373733450259, 10.267478432235194, 11.951793655097912, 16.023472146166256, 8.408807934287196, 10.911267198534105, 8.953573677823666, 16.363609941875435, 5.158624232271885, 7.403815975081626, 38.04093646147919, 5.916460936637378, 16.894499200997814, 9.492038789344367, 11.611930902295022, 58.88731309611903, 42.17328191572259, 79.80453807201772, 19.860947240035138, 15.359376718939485, 6.775172995900138, 5.027148955385985, 64.14255187735174, 7.259647964326568, 13.81293841810334, 28.40215393343847, 26.7846924412124, 82.96533652100001, 40.98452307810825, 5.860849475910783, 9.710927970164414, 13.64798382715277, 100.71491487393084, 62.461573133063965, 107.06985936399845, 33.797950658285345, 13.357131666473078, 67.90475383196761, 27.452688785466798, 5.508507700873915, 7.675962659005896, 101.25163280588976, 9.31987074506706, 84.94903525946008, 51.44344409428888, 6.226086195667154, 87.35155061159871, 12.697844124436395, 8.085726063385435, 14.492365713686318, 49.68321193997471, 6.780019004159879, 5.887534805653188, 67.06605333710947, 29.71877845130752, 13.674176303438461, 12.575369020498055, 78.93222739779912, 12.622812389333005, 13.872640582132522, 28.92983237057559, 68.56487337401876, 50.98037887591757, 19.53700464601218, 9.756156977654692, 24.42387624127856, 25.87261843528269, 11.490532820660631, 6.575068531788896, 27.156872183411583, 15.523198973084416, 36.07511423842739, 9.353795591037176, 6.272501323305395, 9.186432906428111, 64.2577490869407, 6.360021608069253, 69.04191482168504, 27.879516625333082, 96.22393301099927, 7.27207589486786, 15.920120244148327, 13.884953364171933, 118.85457052204907, 64.54876780395861, 42.280164016689604, 5.8923275644767275, 55.7535555628641, 6.997983817954514, 25.47384640684765, 22.717940711218162, 17.696635099237863, 9.761613290620806, 13.284967890673082, 10.077954841671314, 19.11573600299053, 76.7516831363066, 11.192288919856136, 11.58144288654794, 21.131637354424406, 20.572991667843286, 13.49682245125198, 32.97197838678487, 20.810214727773555, 41.66889710608618, 20.479280478401417, 6.485100942812653, 23.126694483837802, 17.774267277029196, 5.256904194725214, 62.874112541501006, 8.31688448403189, 16.91035810396417, 18.38603836742203, 7.458871534294883, 62.44369719231643, 9.556896844885253, 7.767568140927226, 21.867866398326868, 10.394827807708408, 44.17427929919771, 16.463127838742608, 71.4875059278257, 19.633927069769342, 18.146904930487338, 44.68993618387844, 54.776620318236326, 5.835922880782719, 6.384301001866482, 18.049852857835067, 7.344598265119815, 50.83497273870787, 76.76825696923292, 44.17438826706545, 61.85281920174069, 12.279815910771145, 30.207198519490653, 13.826487697463461, 5.47468011628929, 16.79713442261458, 6.800913553084766, 27.449516713538756, 69.74770846000777, 9.35883314572788, 8.607507999244218, 13.281237318635636, 27.856220400223783, 24.392734549700513, 5.491149058184841, 14.767223555444332, 10.802626504689195, 57.03006788708773, 41.63220878700433, 9.1905048781754, 48.807633792951755, 14.089985242383943, 5.716357970015763, 9.169840936905167, 74.55259328671451, 75.85184104105441, 49.03499101297081, 28.84165983871987, 76.76337846257417, 55.958590317478546, 10.790484908490885, 55.10410035326032, 19.399703235029595, 12.31100556806382, 9.83433446905575, 96.27383056145874, 7.049711935811247, 18.138560837519638, 27.166062017606194, 15.456672783850696, 113.27857537532249, 69.30799810037844, 60.10279261648848, 64.70730326069958, 16.045052325508713, 14.586688080455898, 15.806568347506962, 35.86168639110192, 77.59662193653818, 28.2543870621281, 64.20371732164355, 84.99779930842449, 20.097224449082923, 26.47951539896524, 59.68835398312723, 28.024461635694696, 50.12894612903298, 7.602238586140779, 12.018390668561457, 48.40845317119168, 17.840663942690426, 79.66305550748524, 70.06159942340321, 12.002112992515771, 53.32070587255326, 14.909220743958358, 26.288021020239157, 18.371548837263283, 17.889078386106895, 19.491569056460172, 45.50831724703983, 40.083278270948306, 16.64728123015546, 26.109624278955714, 16.82284077387642, 9.977595584031537, 27.10065269200107, 13.03235125042042, 16.36617798786432, 35.590490739404785, 37.808916951112515, 17.149577940776375, 17.068621424065743, 46.94483592494969, 5.685873411939559, 16.89057486734135, 86.0068715906651, 5.603434905733625, 24.187580057003125, 29.125098186543575, 19.161278327064313, 38.569103372363145, 67.021764947825, 29.554707145041604, 56.93689831509618, 66.0468851342483, 32.53770617680956, 7.523862138876498, 33.54313764188931, 58.26860086099633, 40.902806440257145, 21.877246413808358, 16.05197588564893, 13.196561310508828, 18.15958730981823, 8.816369752142554, 5.477640427145743, 88.36675282232771, 23.72174028638754, 17.50891645688884, 16.48089570713012, 23.32225400125445, 47.473909132282174, 43.84030407729924, 8.312825829192413, 7.804117801817535, 16.24496949172619, 11.473098568730444, 6.832646051548384, 28.760819308798077, 63.473503651421694, 8.114854418549006, 6.3548807033919745, 11.734074195167944, 13.247259501302212, 33.11866947347561, 12.458289543922314, 15.547810264628549, 14.740002780090085, 17.41569968335802, 29.6174573831991, 56.49142277912189, 108.54608224349252, 55.364416947803285, 63.732478853959336, 31.269487737510957, 11.24495307207302, 15.845653466646485, 27.70694937567919, 8.05668703823646, 24.622422884085903, 17.92930961993891, 62.960250649329524, 21.00248829255419, 49.04818947871675, 52.143721681420296, 22.416697886507407, 66.18527875565381, 5.761604453916808, 18.72322643374722, 43.250420942766915, 45.40005999695454, 11.05533814285596, 31.970385290726206, 7.024610647259579, 7.999815255795438, 60.12344172736853, 56.64296453612223, 5.349360853263117, 13.1949604433657, 14.659108094531657, 36.576568959559275, 44.915110173268744, 27.521994920176297, 108.0801145992545, 56.3934315259546, 19.263956169657302, 113.77196862706177, 70.35007079558487, 27.61476172834439, 15.405235663804415, 58.83138668845426, 7.968141250219315, 16.896876042169744, 82.06360157424527, 38.41794933383291, 24.043690031582344, 9.988314940447422, 26.60618138685121, 35.062182919890056, 56.72677527256289, 93.18573672808554, 74.40319722828649, 35.33352719499207, 5.19772126432055, 70.68113635274565, 54.83192822980092, 5.93850952265504, 33.100722136519316, 31.603827780462336, 12.70814072629288, 68.47310070761381, 9.029496137978441, 6.468849107603254, 8.963323266571404, 48.22685491564729, 14.31700745743625, 29.96954467070258, 52.56389057444366, 49.03916663482423, 9.41568034185175, 29.16533779777661, 28.37942151260027, 20.07204486069549, 8.142623276603354, 5.894073129184717, 33.363048508590815, 78.84317775179082, 6.39918006465443, 17.45621290185941, 5.339581965671445, 5.829072302235259, 30.50868275550379, 31.448134582650347, 9.179723879401635, 51.637701415414135, 59.9320005632379, 14.54892604556343, 29.422476018214976, 32.3742383080056, 16.146292230196973, 22.481073304007857, 84.02488201980752, 86.9184419064576, 38.54848126468959, 20.691538106931535, 39.908135740761495, 10.71545859286666, 13.826274287693806, 82.11754773653215, 41.944441970497834, 15.679990719931162, 41.63219807594441, 8.98686881398109, 10.543866337094673, 8.942940104433877, 5.241993528061006, 17.3015626739098, 21.09563582113138, 14.096939286084039, 17.339755385389786, 59.44853480931119, 69.68961418494682, 29.7461538655362, 19.113495859584816, 8.511617745764621, 14.91375129920083, 33.68271665173314, 127.22043780341677, 6.523057463822383, 51.808893588489696, 8.481009960302927, 15.03449570817567, 29.70405428345985, 53.199298308126174, 6.19823797696655, 8.5266185106241, 84.38186999684855, 54.33463598667895, 5.711989054593263, 8.56325296812076, 11.455615811575095, 64.38322048018529, 9.833648573176594, 18.331815311124203, 66.39950354327549, 8.996517889334568, 10.100896295808676, 18.26554482466759, 10.365825294330863, 5.214089644869618, 24.1980164628921, 5.9715888478743295, 12.584628423523098, 59.14568763647681, 20.44809671511884, 98.83542191493264, 72.81503511286179, 14.67239060327802, 7.422930827543809, 14.013651918060836, 7.826869800301073, 54.51295054812053, 77.96498897158769, 41.58747410268625, 104.54172216870512, 51.32704760525116, 20.443631202993956, 80.77567492759756, 6.473195747776643, 17.650562161268063, 14.009005103215054, 8.031116409188863, 13.16626538236517, 17.419269076835505, 6.497498536180739, 30.80935658589762, 28.00120634601281, 21.77369921771504, 63.53007573371785, 11.006923638831605, 79.56108587337408, 37.9945360794521, 71.24194737703787, 15.28969211766148, 31.252647344571322, 57.25369183971839, 11.131489609616025, 6.8879676921537465, 51.798098584045974, 9.025815907251756, 8.534027148624197, 15.184037722058708, 6.449491312579497, 5.519231096118, 9.353463112137558, 36.1712934158722, 19.84294874085122, 14.688303409731894, 25.096120880043753, 17.79677092477671, 9.542624545517292, 5.358947721249114, 54.40830145391691, 7.227951625941203, 12.922897557088845, 77.42422328100923, 31.39668539796346, 17.855368839683038, 29.93016569256154, 20.603813557392254, 5.605166432867324, 10.990869255268565, 5.810711160707664, 35.77543921521737, 52.79106291609109, 8.220679593495637, 75.03171288448664, 5.6388954438674865, 15.416019842712688, 110.72479544211586, 5.888391837779194, 18.16064184037377, 24.882148456620147, 99.70665936489206, 6.3859975069796855, 7.112172519543047, 17.726870607926028, 8.155334831904364, 40.10176639165472, 42.53020542421089, 71.64325974288332, 43.39429123167685, 59.02415320033394, 37.6877665180997, 18.493702908002852, 19.237466010726358, 44.91703841894313, 40.07837476902032, 14.411910062686806, 26.672612657473405, 6.224298253449012, 18.261141544236622, 78.36508335692126, 62.399834018051436, 49.355040399132264, 9.903539619420881, 10.072717889759026, 18.63026606862112, 20.717985990902214, 6.010179632821027, 7.421785984690013, 16.551886481159368, 64.94835687805673, 23.98746693650429, 9.266825991039081, 42.48681557639785, 7.622091067483164, 15.184258542328992, 66.02937141687241, 46.04311294133972, 10.083162173966478, 9.432881341127768, 85.13703840603932, 18.90910834843212, 7.665943820152287, 12.745557972180814, 69.67077517089413, 47.457860689634494, 100.80327576718803, 42.51708775422533, 8.161940532125334, 15.580175690711702, 68.51969837301434, 50.106387394693506, 16.339376381486503, 9.009928523845932, 140.6646357302743, 7.731650218934652, 29.08146728081433, 6.5585342159224975, 18.087080695911922, 7.21327124507345, 28.246411694327627, 5.237446069087783, 15.962597825856962, 124.67001420463878, 10.294329052683889, 61.07912142097208, 21.463280480864185, 37.646931425105905, 87.67472494854397, 16.82766071320524, 8.314908848334575, 14.233976068567806, 17.134486104488683, 22.89096625248358, 43.924846982554456, 42.03954120569861, 42.38960963198897, 5.364164796804734, 69.81828532719793, 49.32894753951838, 8.347023343382357, 68.02915438479825, 26.86356757522422, 66.63571552894821, 52.733629940255796, 57.54496076368347, 46.01081590052256, 9.398348397781193, 35.97157942522679, 5.034121710540332, 31.160512112245975, 67.87773327741029, 5.646826228335365, 7.167204011430655, 8.87128797379085, 105.36126198829282, 31.555832605485644, 13.651342339824794, 9.264309552724788, 83.22762229476712, 37.582257809448365, 15.696813337993529, 27.36876327038529, 79.31847836805314, 23.32974674506316, 18.961658925737282, 72.74947997481684, 7.794482993227443, 7.450985187341259, 80.16490316816913, 34.32328577554388, 37.2182614321407, 12.385825873593436, 96.84758027296631, 7.201924408877383, 110.35658216090556, 68.34088872381052, 20.58038750715858, 98.52612414542475, 81.49228050845846, 14.483184016993363, 62.45165973569503, 6.8937713430284475, 5.529807653820992, 17.806909287536882, 15.000338674759242, 69.21463136801762, 53.0118347016996, 10.798088009786651, 46.24457161492148, 59.37306274602153, 7.930323686786681, 80.19933983059951, 65.09725479686742, 8.988708763446546, 27.72651008328606, 37.72041208112952, 58.036907898487534, 52.26596419359708, 46.907149286868766, 36.17546478303492, 115.18001101777126, 7.655412400785783, 7.074128188384725, 7.624015603021811, 18.93243385414521, 15.365934079724793, 7.003183563664237, 61.85495055780829, 11.732389080976342, 86.39871373900911, 19.98706832568011, 65.79859783328342, 17.754427219284704, 23.22245248188775, 65.5243934568866, 67.30840307479227, 84.33492763300909, 83.94722593983293, 5.268143194002383, 78.80773123393617, 114.78975919143916, 9.167204424650091, 67.53850320574509, 67.59403893573632, 14.130619907487336, 17.48507637624003, 24.45530551130712, 42.39139796162111, 112.42311560687222, 76.47020108447401, 27.30172982252644, 66.22533013262277, 28.02309588375559, 24.598435459846815, 35.9102210183775, 7.738559042281637, 30.733928112466515, 20.35986085418029, 8.737416596735015, 47.12129995465116, 8.42191052004281, 7.565378744551696, 66.41866617533945, 35.01044848477735, 19.087710384652613, 12.967112614721891, 27.74414925395478, 16.66105974367336, 43.24348657385018, 61.97211907244056, 24.663258274648975, 26.11634952804142, 35.08121490036684, 10.831609568941909, 123.0662446193957, 115.62131967855774, 6.568630939631552, 152.91751900863738, 9.820906179368343, 80.35754808420413, 103.56225396581587, 183.1879260217064, 12.365376234522568, 6.767567523939154, 5.405126161122421, 13.752043872129429, 10.873942202660512, 28.102969736324013, 73.48376448993096, 25.501272840621017, 86.75850190157273, 10.316253437997492, 5.246549728651892, 63.75406363418441, 27.070854773389176, 16.103186087975036, 57.03918963518543, 17.277759356154252, 6.034669634742344, 33.045789764029166, 15.95181261596474, 75.74215400062988, 14.491970125714705, 12.143937704529163, 57.04006312728649, 63.59015192940314, 15.109673492381617, 10.757654503685279, 20.457000137403693, 81.71540142747905, 66.86841048345607, 5.884538181413946, 5.861979787766201, 10.193935290637214, 53.39647846048041, 86.07070980735101, 18.55623496644379, 8.721499447083467, 42.84942828380265, 63.671294085112045, 21.063560830886633, 20.422667167887262, 6.394194045984117, 66.27659379270708, 7.714281807762325, 77.02475549212637, 15.582962757111476, 51.71732819170476, 5.1798796867633286, 85.54595727928738, 42.555696645727906, 18.9794019397235, 38.14613682688659, 19.592240539411694, 14.103758082098278, 10.177220402681634, 31.75545481551641, 23.805645651885996, 58.58441085933841, 9.70690670124068, 6.839543857920363, 72.68235149837378, 108.25477990265901, 19.64873919840366, 6.727180741466719, 23.881266860018663, 24.17171267144598, 5.236497541136369, 81.55297596588926, 88.66896905131401, 69.38412143291056, 8.78917329133059, 91.24361677943448, 35.86477153979212, 63.03244055151775, 10.059355307544978, 10.190757463860928, 11.20410612008557, 34.29170175983797, 57.60113777209158, 14.374868620481625, 45.348259053208906, 45.683660191056056, 44.97693036343155, 92.5523933499845, 6.011525317695458, 23.539932222405497, 74.10416612484939, 20.233691507518003, 36.06402034478121, 50.67034851365844, 143.09175184724694, 20.381143991631706, 21.599821459673123, 22.775552547775447, 25.60746703520998, 23.47379930927681, 83.83103392129348, 46.75520664160922, 9.60175109312911, 60.18001751992078, 66.02083511061784, 29.865442924073065, 32.54502049193154, 42.72969668325588, 42.78460621399804, 14.620108873096608, 12.955260671070198, 52.21707421733807, 10.575769871585685, 55.11858934402989, 29.231831266993026, 32.188983590469064, 5.8578008512113335, 22.180960100592177, 11.90436946251522, 56.079159754782054, 50.583760836505846, 5.103766519575093, 12.996244941547994, 40.75752707898839, 38.2558843844688, 45.580789579300514, 5.114244178488143, 13.678775911035867, 12.163714689706891, 8.813056858612628, 13.33827434953108, 78.67861011629877, 10.887927833160425, 61.03771518431944, 11.25154031871926, 16.689736048692186, 13.835647409666782, 8.659493185187731, 56.51380087181772, 89.80716318423168, 103.89732611531991, 58.3149399653766, 8.637366881945704, 16.191311912059227, 5.555147952804153, 9.351777599892216, 51.24321745434547, 6.196907112465779, 11.94615211046136, 16.65563352571837, 91.2212282436957, 34.04020558298534, 7.341229528732672, 49.68410968381469, 15.679185088639903, 9.591218917563715, 29.55610960686576, 62.099277708362294, 21.264349383284085, 46.92120601483049, 8.51701240551101, 72.23267111305773, 108.32980575289092, 12.866113866815613, 11.557501070543655, 25.09794490984243, 18.581697494804363, 11.559590661138383, 35.00633830268028, 19.635780958837046, 17.456848626315615, 6.777372996115669, 10.709620438166594, 5.673998594530128, 10.825387450301449, 12.86466530244139, 8.029463254481906, 5.3057572578950705, 17.89038417861485, 7.481448459537988, 34.90717415837673, 6.078421328417525, 6.288429580029001, 58.13935790336464, 14.469808919936101, 8.244127111314386, 11.868601916298864, 35.670716671359216, 20.436933190487817, 22.251757450610167, ...])
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)