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 = 45892
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);
([3285198.4629783393, 3369284.983114997, 3775379.2647522795, 3858067.4466457055, 4011015.362763904, 4162621.002027576, 4252063.134352223, 4347978.125, 5040314.298622695, 5177886.9528017305, 5178740.467607529, 5179168.75, 5201054.409704971, 5204050.0, 5288569.124132012, 5303905.739010911, 5348660.9375, 5349359.816425814, 5349932.8125, 5351950.446476071, 5352038.568216254, 5354594.333485776, 5420493.921912087, 5424768.160397593, 5425886.835788411, 5432273.867442411, 5435273.341339589, 5450370.031905133, 5450401.647101783, 5460567.051882991, 5464823.432484782, 5465798.42361362, 5466740.625, 5467320.3125, 5471315.3510883525, 5472374.722593153, 5472721.613274806, 5472732.8125, 5473496.875, 5473731.590521847, 5475587.5, 5480171.494954115, 5488503.178222159, 5489804.6875, 5498265.037894263, 5500345.006377761, 5502010.873888382, 5502969.804854599, 5509692.04484673, 5510790.625, 5513855.401628972, 5514971.610257741, 5537814.529478685, 5538126.2502677245, 5568957.3028461505, 5580350.0, 5584652.30738931, 5586029.346990253, 5586781.25, 5607581.005850938, 5615011.968849334, 5642130.025376923, 5652784.598686263, 5653998.4375, 5655606.363994017, 5655609.1681683585, 5655975.004181344, 5657070.3565638475, 5657102.589696102, 5657451.5625, 5663184.375, 5687754.6875, 5702589.031802897, 5702955.271674296, 5704313.639785847, 5705527.753538113, 5707248.4375, 5707477.204309262, 5708321.562061244, 5711323.589973894, 5715625.0, 5717172.7164390525, 5729588.9026930975, 5732628.057837425, 5747615.640119981, 5750992.1875, 5751218.75, 5753693.75, 5753719.895793456, 5753938.512815441, 5754434.375, 5754920.213161607, 5755804.6875, 5755919.964697109, 5755943.899375559, 5756142.306675091, 5756695.155671225, 5756821.469178521, 5757645.810164051, 5757753.125, 5757801.861331102, 5758054.879502163, 5758120.063758023, 5759038.989898225, 5760110.9375, 5760603.704999656, 5765513.93682116, 5767852.37170957, 5771384.567814667, 5771846.8157516485, 5774062.898424844, 5775055.454901185, 5789675.3564028265, 5792895.3125, 5794583.428778863, 5795259.706054673, 5795710.19511568, 5796666.070323002, 5797480.7078048205, 5799289.0625, 5801552.470103209, 5803535.713878737, 5804894.238762663, 5806853.028794273, 5807179.4139913265, 5808799.736441091, 5816431.25, 5817921.608714023, 5818757.8125, 5818899.258997353, 5819061.671083435, 5819923.794648047, 5820460.2478873255, 5820760.9375, 5821431.25, 5827047.327689065, 5843793.75, 5852050.673799233, 5857284.375, 5857777.478403375, 5860721.961035136, 5862215.530892761, 5862310.9375, 5862385.733772816, 5862678.110473113, 5863368.433801027, 5864460.9375, 5865313.025086094, 5865335.9375, 5865713.451391527, 5865728.100529126, 5866190.625, 5866590.625, 5866607.759168861, 5867081.25, 5868024.185900578, 5868048.512332635, 5868054.535627193, 5868293.184641077, 5869338.272327347, 5869570.3125, 5869635.310687477, 5869787.115381829, 5870162.729677744, 5870440.625, 5870443.914999524, 5870466.507377523, 5870479.569366187, 5870597.270970097, 5870709.165256523, 5870753.125, 5870790.493464575, 5870964.187322739, 5871109.878629473, 5871384.854818645, 5871560.671742575, 5871707.099434323, 5871710.8972527115, 5872510.252736784, 5872690.377436743, 5872851.0129712345, 5873037.583125427, 5873677.945648969, 5873680.011107515, 5873743.120296633, 5873779.352480939, 5873867.527788308, 5873896.875, 5873981.7557235975, 5875160.554077217, 5875366.47543318, 5875639.0625, 5876392.1875, 5876449.852520202, 5876458.1903674, 5876709.375, 5876747.398207836, 5877035.9375, 5877080.510937018, 5877118.75, 5877284.56507085, 5877288.356876184, 5877343.78417978, 5877576.257011291, 5877854.057807133, 5877854.6875, 5877909.245953267, 5877913.597991112, 5877923.855192369, 5877925.54421917, 5878125.371196866, 5878160.668984265, 5878409.200725702, 5880478.617926764, 5881581.969995436, 5883264.833364005, 5883643.122162271, 5883712.5, 5884300.760525872, 5884485.9375, 5884704.6875, 5885440.392217447, 5888850.065370997, 5892675.0, 5894336.25705022, 5898112.681057098, 5898641.859010122, 5902501.33727833, 5904060.9375, 5906939.571187393, 5908154.6875, 5908223.210666341, 5908411.783154545, 5910240.142850592, 5911948.217528807, 5911954.6875, 5914512.284931238, 5914710.139818774, 5914953.99866202, 5916241.736317701, 5916480.724958584, 5916841.601615109, 5917199.94283468, 5918156.041684994, 5919221.924881412, 5919960.9375, 5919966.810028916, 5920738.610601089, 5921080.6850307975, 5921157.993579003, 5921226.537916336, 5921271.875, 5921359.375, 5921810.211494575, 5921904.6875, 5922634.673854293, 5923103.125, 5923781.25, 5924693.371922647, 5924899.004775233, 5925121.268068055, 5925889.219816398, 5926364.705888544, 5926461.194618694, 5927634.25379168, 5928119.552443082, 5928563.063941778, 5928943.369573422, 5929179.6875, 5929337.288644578, 5929404.6875, 5929952.837162269, 5929971.875, 5930633.894256115, 5930655.788085992, 5930785.3855582075, 5930938.49965701, 5930965.625, 5931033.844672906, 5931143.588421486, 5931329.057368577, 5931643.3851484265, 5931661.223242898, 5931705.995173513, 5931715.625, 5931727.3145627985, 5932520.627613294, 5932869.427021353, 5933013.8511403585, 5933775.780848034, 5934045.3125, 5934967.43451478, 5934967.989887493, 5936604.886621965, 5936698.967227415, 5936878.903886533, 5936964.0625, 5937548.260928697, 5938707.8125, 5939096.875, 5939391.399596517, 5939440.625, 5939727.972167629, 5940550.0, 5940565.46404178, 5940910.60632355, 5941443.75, 5943621.909427011, 5944272.877646256, 5957187.0642735595, 5972970.3125, 5973856.980272584, 5978323.804974219, 5978330.989594038, 5987609.343960705, 5989351.971935569, 5991072.280204144, 5991362.767562305, 5991568.810523432, 5991647.044018847, 5991698.8773213755, 5991707.158465012, 5992202.4310909705, 5992975.952811414, 5993228.587091573, 5993436.65245019, 5993573.4375, 5993706.090003573, 5993850.872566113, 5993852.018723404, 5993853.021658854, 5993896.875, 5994015.780503446, 5994038.282286241, 5994078.3569280645, 5994209.589381017, 5994596.145655878, 5995317.1875, 5995503.125, 5995954.6875, 5995957.8125, 5995981.101725444, 5996068.980888747, 5997101.521539798, 6035009.77452956, 6040834.473911427, 6040980.520364395, 6041926.5625, 6042108.398342654, 6044063.210218923, 6044187.5, 6045368.600650884, 6045749.27400598, 6048427.330568254, 6049836.853279519, 6052868.777344232, 6053396.875, 6054088.788479574, 6054732.08640674, 6057811.4394673845, 6057885.564177695, 6057950.35186447, 6058337.938314855, 6058650.992465037, 6058676.5625, 6061153.125, 6061167.403790326, 6070005.439729776, 6077218.75, 6080289.430373757, 6082583.343946243, 6083239.0625, 6083255.188508115, 6084235.034304889, 6088304.6875, 6089972.871058915, 6092620.3125, 6093256.25, 6095721.875, 6095959.619390045, 6096590.803773002, 6096676.5625, 6097317.385023088, 6097343.956187683, 6097881.25, 6097985.822680089, 6098031.25, 6098073.512754824, 6098484.375, 6098525.742870649, 6098687.5, 6098928.016062042, 6098965.625, 6098977.543162437, 6099051.5625, 6099051.586662025, 6099293.75, 6099299.491801311, 6099609.136123416, 6099687.576713581, 6099727.277297328, 6099830.010529376, 6100275.000892704, 6100319.07026093, 6100365.720101593, 6100495.445341476, 6100559.684842276, 6100857.580364848, 6100866.10799972, 6101399.013754848, 6101470.076289153, 6102563.796151317, 6102666.867429476, 6102708.0286867535, 6102761.13293383, 6103040.625, 6103126.5625, 6103320.3125, 6103535.653222467, 6103598.38639876, 6103608.586195924, 6103669.009134404, 6103690.625, 6103736.6037015915, 6103742.746348157, 6103806.25, 6103871.8564381795, 6103934.330417898, 6103974.782664297, 6104025.731411273, 6104180.461009931, 6104193.75, 6104229.6875, 6104240.625, 6104251.5625, 6104409.55131467, 6104560.9375, 6104757.8125, 6104794.079409429, 6104800.0, 6104996.875, 6105015.523452781, 6105203.125, 6105224.608508404, 6105227.962795554, 6105260.438961821, 6105346.186303647, 6105354.926436081, 6105380.422479245, 6105398.586348434, 6105425.0, 6105526.010284801, 6105842.657605298, 6105893.75, 6105940.329279224, 6106030.111946853, 6106111.967657634, 6106258.263611898, 6106261.293529768, 6106416.60036075, 6106529.6875, 6106894.9875534745, 6107249.136591525, 6107301.700807045, 6107314.244591126, 6107945.599985811, 6108021.875, 6108231.121344233, 6108246.105124939, 6108310.203460841, 6108842.361227068, 6110901.264294565, 6112787.053101653, 6114010.961075721, 6114072.726803913, 6116200.43858284, 6119893.75, 6121105.858741253, 6121143.75, 6121924.940533742, 6122851.5625, 6122964.554716234, 6123755.366712404, 6125750.0, 6125994.824815766, 6126323.432304542, 6128169.719063239, 6129557.682307659, 6129682.624401243, 6129814.704223555, 6131853.125, 6132785.652618392, 6133130.337083076, 6134432.467373329, 6134728.125, 6134781.864374768, 6135407.8125, 6135765.1762628, 6136662.5, 6136695.5543617075, 6136734.560696863, 6136805.583970213, 6136811.158291256, 6137618.7621170515, 6138209.375, 6138498.249505951, 6138716.715716068, 6140919.710506897, 6141628.702340705, 6142025.0, 6142976.209148602, 6143169.285814389, 6143613.170438741, 6143630.350166679, 6143741.329546894, 6143920.971824039, 6144441.089778496, 6144607.535092572, 6144648.4375, 6145079.7401764775, 6145133.740588129, 6145425.911921725, 6145573.4375, 6146358.640736105, 6147318.09003908, 6147530.705614602, 6147546.219721966, 6148813.674512537, 6154187.614771528, 6159275.863491576, 6159503.125, 6159595.279038089, 6159695.3125, 6159703.847267239, 6160351.5625, 6160367.881649338, 6160571.875, 6160599.156353008, 6160667.936344214, 6160718.258223206, 6160721.123806868, 6160817.1875, 6161323.057933785, 6161431.137923726, 6162056.616884552, 6163192.2661114475, 6164429.201611598, 6164981.277516905, 6165082.535165881, 6166822.48557803, 6168037.5, 6169863.962512989, 6169935.958846807, 6171063.406327233, 6171975.899801953, 6174106.368101591, 6174649.093728867, 6174747.789747464, 6175217.165456527, 6175416.978846292, 6176484.375, 6176525.777542427, 6177049.719918158, 6177427.199898464, 6177551.5625, 6177831.661849961, 6178184.375, 6178461.461944498, 6178595.8248598, 6178644.329634005, 6179589.847847832, 6180824.927675571, 6181059.375, 6181479.259092222, 6182996.527197712, 6183937.5, 6184626.414619676, 6185079.382067725, 6185590.089226369, 6186185.238678454, 6187065.590593268, 6187863.183380059, 6188582.76815981, 6189537.22357461, 6190232.410616448, 6190883.892930017, 6191868.601029933, 6192165.724011511, 6194694.489703797, 6195479.666255324, 6195501.5625, 6200346.875, 6201155.025474744, 6207954.6875, 6208698.870364727, 6213535.9375, 6213715.55971587, 6214143.736636068, 6214969.876846979, 6215315.625, 6215765.774342071, 6216211.954679018, 6216313.978914161, 6216910.630772593, 6217026.651094058, 6217068.75, 6217079.6875, 6217170.339408852, 6217259.418025165, 6217403.024149591, 6217444.876437824, 6217477.319338874, 6217480.213737459, 6217492.1875, 6217500.119232283, 6217703.796532034, 6217715.625, 6217787.5, 6217887.5, 6217904.410092704, 6218000.757875325, 6218019.785215274, 6218102.694286745, 6218130.154481723, 6218188.610708526, 6218251.5625, 6218308.2985466765, 6218325.95849407, 6218382.615201265, 6218437.5, 6218535.9375, 6218625.754756819, 6218659.293240592, 6218665.837708183, 6218684.375, 6218731.129014369, 6218795.859435867, 6218921.875, 6218926.5625, 6219000.441545924, 6219028.6415940765, 6219039.0625, 6219046.9855223335, 6219047.413365347, 6219068.501798186, 6219093.614772669, 6219114.053476822, 6219199.770509042, 6219206.25, 6219224.779308199, 6219267.387706723, 6219313.519686419, 6219340.051263233, 6219440.900126738, 6219447.210920697, 6219507.8125, 6219515.006204879, 6219532.8125, 6219649.214977566, 6219762.262313964, 6219807.8125, 6219826.5625, 6219884.375, 6219938.270319409, 6219956.25, 6220015.625, 6220059.00405623, 6220065.625, 6220081.25, 6220097.314857992, 6220104.162307969, 6220113.604929093, 6220159.375, 6220166.638796872, 6220222.247822867, 6220250.571634843, 6220260.542069128, 6220289.0625, 6220306.25, 6220379.728508874, 6220422.436685217, 6220426.5625, 6220434.008838424, 6220460.729582738, 6220520.3125, 6220544.855939825, 6220588.751520605, 6220629.117869925, 6220684.375, 6220694.416195646, 6220748.508063066, 6220848.4375, 6220862.534284073, 6220939.8092569215, 6221034.542142419, 6221051.5625, 6221079.868404854, 6221090.387947905, 6221107.076339977, 6221125.98808795, 6221137.776499647, 6221148.767024802, 6221179.6875, 6221193.101353521, 6221222.42034084, 6221296.103055304, 6221318.348679231, 6221653.358817402, 6221790.625, 6221842.1875, 6221843.546350934, 6222046.875, 6222050.732719901, 6222132.218760425, 6222186.239987023, 6222198.4375, 6222807.8125, 6222872.967948763, 6222934.812220311, 6223017.1875, 6223090.502355713, 6223376.449390445, 6223387.682278759, 6224011.978543639, 6224071.129909568, 6224617.10556711, 6224630.197606656, 6225132.548174309, 6225415.730117132, 6225687.5, 6225737.0064134635, 6226170.436482884, 6226174.936665313, 6227185.031194572, 6227389.267395159, 6227444.04742776, 6228290.898215171, 6228340.625, 6228892.731002795, 6230181.989001495, 6230209.907737773, 6230589.0625, 6234157.964253279, 6239101.0848882245, 6241517.165337548, 6243304.4009158565, 6256078.1407502955, 6264538.254487301, 6265200.0, 6273551.283218764, 6274202.061413272, 6275270.3125, 6275391.817048119, 6276022.218674214, 6276200.0, 6276267.164565279, 6277342.1875, 6277681.042451827, 6277740.625, 6277811.985977055, 6277991.422988207, 6278207.5921129575, 6279701.5625, 6280006.9623395745, 6286805.605326006, 6288721.875, 6321950.0, 6324398.4375, 6324476.595157276, 6325883.983746078, 6327106.857969267, 6327253.543326643, 6327669.056843361, 6328501.5625, 6329010.404874542, 6329685.9375, 6329688.26571763, 6329748.410845992, 6331481.25, 6333103.125, 6333104.6875, 6333231.25, 6333512.096147658, 6334076.0966816535, 6334125.911500805, 6334153.347268938, 6334156.299899222, 6334259.375, 6334266.310837384, 6334269.868103537, 6337593.411717778, 6342509.368953577, 6342760.074619459, 6344778.956903538, 6372720.406017907, 6375202.254097181, 6379767.521170097, 6380610.9375, 6384665.251232219, 6388489.041068641, 6395134.630593305, 6398118.058530055, 6398371.042325517, 6398885.9375, 6398957.8125, 6398989.416477436, 6399127.827931738, 6399633.183050277, 6400034.390091298, 6400112.5, 6400176.86802675, 6400244.888426087, 6400320.149551693, 6400353.125, 6400542.294165029, 6400738.019312203, 6400747.4140640255, 6400760.827221068, 6400981.25, 6401105.909546942, 6401280.275188478, 6401512.761822074, 6401547.710102401, 6401552.501749555, 6401556.25, 6401971.485433948, 6402002.738411438, 6402162.584714561, 6402175.9755020235, 6402226.5625, 6402355.913737945, 6402601.087840355, 6402616.203326768, 6402695.464842473, 6402734.313647046, 6402734.375, 6402741.7371137105, 6402787.45639708, 6402798.4375, 6402800.530473837, 6402823.4375, 6402826.012255165, 6402835.9375, 6402841.791855918, 6402857.192857489, 6402881.200072327, 6402892.79473463, 6402895.3125, 6402930.673329641, 6402940.204070644, 6403031.25, 6403043.75, 6403104.6875, 6403121.484456549, 6403210.9375, 6403222.522838495, 6403241.872900552, 6403358.504604641, 6403468.75, 6403471.875, 6403472.483668983, 6403493.376089564, 6403606.25, 6403617.1875, 6403643.698058494, 6403815.625, 6403815.625, 6403843.0456636, 6403925.726659091, 6403976.836230285, 6403993.4577873815, 6404109.658408993, 6404176.165715389, 6404177.551522649, 6404230.336014197, 6404246.551245634, 6404257.606406353, 6404355.444625844, 6404446.071357911, 6404536.099805966, 6404885.876115256, 6404954.6875, 6404962.5, 6405040.623029581, 6405050.381854097, 6405052.104164734, 6405122.194334129, 6405245.3125, 6405260.655756318, 6405277.212024506, 6405629.5440153545, 6405663.392554618, 6405741.931689742, 6405885.9375, 6406192.1875, 6406198.772243363, 6406273.749087207, 6407364.0625, 6407892.1875, 6408839.224550898, 6409387.5, 6412972.27454569, 6417635.9375, 6419476.130655465, 6431107.074681256, 6436807.8125, 6439061.529161352, 6440403.974625336, 6442391.11569408, 6443146.875, 6451823.912708235, 6453993.640311359, 6454648.333375637, 6454858.839942342, 6455456.25, 6455760.62023423, 6456281.495146699, 6456303.718419072, 6456493.75, 6456799.739272536, 6457437.5, 6458636.327799541, 6459853.305757533, 6460164.255257754, 6461057.551794357, 6461249.93625632, 6461644.957562274, 6462084.413626055, 6464534.092777944, 6464964.566850924, 6465973.519250332, 6466404.060225573, 6466455.511808397, 6468893.697277742, 6474270.116827194, 6474859.2116843285, 6487149.3044045, 6488618.74389371, 6489188.320990944, 6489204.6875, 6490036.254271501, 6490262.5, 6490428.144076591, 6492428.690446681, 6492680.97014903, 6492803.125, 6492847.138485209, 6493009.530809658, 6493193.535946419, 6493208.07130299, 6493381.369001731, 6494162.769462684, 6494270.3125, 6494624.669191013, 6495831.25, 6495874.70561032, 6496360.9375, 6496743.75, 6497457.8125, 6497912.5, 6498710.911906974, 6499277.201153349, 6499437.5, 6500064.52143751, 6500236.503304451, 6501670.3125, 6501994.186678507, 6502707.65341909, 6504014.0162610635, 6505233.437633324, 6506020.584753145, 6506956.096950454, 6507103.125, 6507414.0625, 6508349.494075942, 6508425.586979685, 6508472.267241398, 6509042.676685819, 6510307.808284692, 6510415.652819152, 6510597.7319505345, 6510657.8125, 6511140.6029246375, 6511247.7906365665, 6511362.5, 6511447.081287489, 6511471.800155842, 6511593.013539189, 6511632.483202192, 6511659.788556271, 6511921.740902711, 6511962.489417142, 6512068.1510740975, 6512186.847343276, 6512210.9375, 6512259.113449476, 6512306.25, 6512360.9375, 6512367.1875, 6512593.192508479, ...], [11.167765992438625, 5.994173172650627, 8.99781833168845, 5.545791289521856, 9.119092496265877, 43.486201373268926, 76.22595411083887, 59.895444876677026, 11.51799181297113, 21.034848036561268, 25.76097144379363, 38.36656888981212, 103.13999728600113, 65.37442696954206, 16.589063339154595, 16.05689467386483, 128.27324782206352, 6.854954205028232, 50.47750331184528, 16.96853479055832, 60.33132477868486, 12.181210463714454, 5.469193895463918, 46.24279250127135, 6.957150935850545, 16.879752090780645, 18.41922200715765, 24.001821025577826, 9.40397812960081, 26.105148063034022, 60.230998133505416, 14.888843890591591, 47.68753880293663, 43.293355287581406, 33.64819495445199, 32.39333404413367, 24.252279408154628, 38.59630844835279, 48.02491150842397, 89.0523301301717, 52.66676892849723, 10.581451503047443, 5.166602949414526, 70.14010035889801, 8.879849828617903, 6.440151231356528, 66.80359018423655, 5.5865640162850765, 115.55251747278704, 65.55034308458241, 18.603265208647784, 52.2160288163418, 17.548485553771094, 58.16621881453074, 13.299683947850594, 86.6846223970683, 6.366131944731139, 10.634148508066936, 36.97270905455439, 9.133154867551601, 32.385365600171546, 53.33234842507261, 5.959125104887182, 41.85956926603677, 15.394562808326965, 111.50887735605062, 11.134248808302042, 15.11216276614815, 21.148008703404678, 89.86464847925146, 49.08189463683943, 39.20551282933996, 27.93148655850619, 17.759828018126118, 10.525560339364063, 70.08116091330848, 123.5467557443853, 7.85312527550709, 23.586862076654086, 20.2381629447419, 73.3672176099794, 16.64481161849116, 25.72347872470029, 64.51396666877503, 12.210041602432078, 62.976140395002616, 113.57269013523344, 32.9662121922697, 9.002271238362104, 21.01138620848032, 34.97178362767908, 8.23473495139894, 87.4955910415108, 23.15874526849017, 7.161279473923511, 14.658563365449567, 7.547483449805596, 10.547567996128077, 21.85728373407281, 31.594904031471355, 9.597544793169911, 70.93445694175644, 24.428344071407075, 23.821572301745608, 31.347021859052106, 25.96300958078351, 88.95924249122218, 135.17637491457918, 15.731149469107542, 14.72039098048333, 16.71391987519537, 22.683603939173405, 8.484491996353231, 47.83085323514314, 17.95878178621011, 135.4962858530829, 19.373854666230866, 52.615345315683626, 10.374244963974851, 47.17627101299372, 7.382385666577819, 74.94962623334163, 79.56041941471624, 10.980588604032647, 68.27385521573184, 88.57878624251904, 68.28753918959919, 94.94337878786062, 56.78146513743733, 7.355549622743587, 6.608582844958864, 11.735949565703285, 10.197447223367698, 101.51065828534175, 67.50361427102108, 29.161844596577737, 47.170168734593915, 18.33038983354766, 61.37147817089412, 20.145578785665258, 57.06026571986541, 82.73665893944298, 52.397537206583046, 11.79154919040927, 61.40443200713307, 18.40795758580723, 55.40881289490894, 12.061273207073762, 70.94365028989314, 13.031709375609509, 25.189986942180415, 66.60168099145302, 59.86383122435079, 99.59420384766125, 44.41951505898231, 19.149396790946167, 15.234619631744513, 25.847179799547888, 79.52333034659111, 39.02408152864141, 35.722517506579244, 18.754682334835557, 10.57541402335002, 15.895699121893058, 62.36137432914244, 22.700248588408055, 8.815695203488241, 139.1977414877558, 15.016597154631297, 39.29488987678391, 67.9712683391272, 178.1607893404606, 83.67703907253403, 12.018123170814254, 9.772983673736928, 37.11322091322538, 7.94235530091222, 27.7526652255786, 29.20940387364115, 33.0805909925015, 5.377873541578584, 20.61609254594185, 34.73083396761261, 27.745931215566337, 10.268032527264618, 13.801802750599903, 28.50292738098766, 50.55280317921644, 12.02231329011636, 78.03579629934448, 49.939996820864664, 29.56798815623338, 64.6702325016491, 12.332709108061316, 38.788943779119435, 97.90904973111925, 12.057476613046395, 49.4500834317663, 81.21481842550637, 31.61904126862045, 95.83692896122781, 19.660940644725674, 18.17551382214446, 67.71275492631116, 8.850250442802759, 47.386968026103865, 22.03810265203942, 31.676803157115607, 16.8147723325328, 49.450658337324995, 191.74297819012355, 24.161416651086565, 25.501540862169044, 38.02199195802059, 18.64384744402412, 42.82567427045377, 18.247360008650674, 106.11370135612957, 36.59471764187529, 31.494107323043455, 81.12444196016256, 14.122751207989293, 68.07088941684204, 49.016455514308355, 193.10672271793635, 15.679646912129575, 77.43508480217596, 73.71683012066393, 99.21751938854587, 12.765555362559502, 46.05721955305988, 5.160112227912708, 5.317943751040292, 5.898488793859125, 6.720371497048087, 31.596949224990162, 10.80739569261914, 71.8555733506222, 42.58485376636329, 20.510317499311515, 49.344167538395936, 20.99424880228567, 27.44245113729351, 14.245991840362759, 11.206580162812967, 34.65210951701972, 7.025639555599868, 21.986740228073447, 13.15156425854878, 120.60644848160084, 126.7122295545089, 59.98092508329536, 69.85517911668165, 69.52549135031907, 56.065698077936446, 15.722669827182592, 70.11978981815199, 29.897264979479463, 22.802141891928418, 28.308089645859788, 20.488836236175494, 17.289923289666127, 27.02956175356454, 144.14496348718697, 6.739547141918673, 19.23963258933557, 6.148775551009693, 107.73078789335399, 40.55883303930025, 24.953183878623474, 67.99015069898186, 13.947261892967875, 54.88417053099819, 36.12677973153594, 10.475086995810791, 30.40109566300429, 6.656111346032595, 100.18609025870299, 10.388943395142972, 25.696051474462728, 5.580109643582139, 23.13315528006377, 11.605782154655063, 17.738839453767078, 100.90252940630502, 49.1329524118739, 16.29597072141399, 33.44218042989581, 9.158860073791278, 67.97916167884206, 89.16375473078003, 26.40903755425009, 12.665967130387909, 15.758971006535061, 8.588087673253924, 7.34244353310161, 28.873937825747884, 56.65311326964907, 73.81517674215696, 56.561546487481365, 83.20106752188846, 46.436065895547536, 25.832143146601535, 68.22485772430574, 60.83276810642409, 23.360510297107776, 52.961077004509974, 15.074373017737194, 249.78506101785212, 53.843180593126135, 100.17101823671965, 22.871664236417313, 11.755160387046532, 10.743691129143924, 34.05990537731668, 11.834262519274754, 16.749218506515714, 9.568375357717605, 11.223645224617492, 11.40258716505407, 38.984449509509034, 7.382656670760119, 5.43275108204766, 28.324834795855296, 5.2582649989346315, 5.027544689642794, 131.67735387960863, 14.364838539212924, 12.83431565956011, 17.12745145299579, 14.561726976461497, 61.09919501196565, 57.95000041492255, 242.31535599797792, 15.905898168121928, 157.315978491466, 31.48366682052554, 92.26112317916781, 154.93516600784147, 79.41466782023548, 62.32957246074939, 25.90375326627038, 26.189199176168252, 33.19362701464937, 17.335111020141724, 202.84314061827746, 25.574859543307028, 72.92637536927036, 15.071642811620311, 35.54012875186716, 94.48231425248065, 55.641789826210086, 7.360193182481817, 18.985304158719387, 12.941406351902426, 15.046767265045444, 61.898133446758145, 194.28577282871223, 25.009501401437355, 12.014800757674747, 7.0266567817168815, 11.726158421452906, 79.6656735597184, 52.95593862911726, 52.780250877171746, 99.86108583610694, 15.83539357699246, 7.9000230744962225, 104.77197607303819, 112.47037265300443, 51.20725199369299, 34.67179774643157, 6.141796746231984, 19.17037299354837, 81.77513566293358, 26.588508010086212, 68.2101093714149, 41.10017947035349, 127.18130713577148, 96.6812964328656, 15.66969567379853, 100.44268452074982, 34.655787689727305, 15.790299728730817, 110.67104730682121, 50.42423869093301, 57.67433707722475, 28.90724936472696, 102.55705251199613, 6.921467023368521, 125.1073452459359, 107.97503385912592, 45.51671773138237, 136.04601312416477, 107.1934756957133, 33.802185864776305, 56.43164261340922, 21.41170197139399, 6.7167356985047055, 15.242195951886034, 19.08025943754057, 37.897107524367996, 30.35290183639153, 16.32097504225808, 47.7084867276574, 51.77401647186056, 7.719283110767899, 79.2737625073702, 30.413836594889034, 104.87208682366388, 21.46959261967567, 95.57107145583088, 40.615718053152676, 105.12957631255985, 72.0794617667548, 146.73739231272967, 28.648570376225294, 85.00561170606842, 149.63353166999252, 158.28167274609928, 71.88722784661712, 11.55844004084042, 144.21708598819058, 18.28014763099373, 17.60693426815381, 103.54357445191445, 28.162691019306006, 11.058729871104083, 14.17314552068622, 12.502356304186723, 19.024985529309287, 61.7216227697006, 123.23729610387566, 36.46672150857836, 37.380915321964615, 6.106628333613477, 37.994179889057705, 56.571055146930206, 16.365672299298872, 52.48993035677087, 89.82225340989393, 26.66640284860754, 35.15971848613108, 150.40421468892202, 6.246920235176248, 21.507695081176987, 12.756165631182611, 15.937775956860554, 145.44842692802044, 15.540916290986184, 29.166769939902935, 34.95844379547765, 17.097623276453646, 68.646057051055, 9.093275150838608, 15.648925654186236, 43.58015311115716, 9.744380385662412, 15.864300236417225, 242.59813563375064, 63.8535226867549, 23.437230171739714, 98.89539430727376, 15.270870987503589, 15.684157662886498, 32.81531016291685, 142.094024653826, 55.57139325243675, 5.22409713105882, 45.88108413598931, 34.36470593612708, 7.498828937878657, 84.16316675612343, 8.299084033379355, 28.8137434427083, 57.88525929798552, 41.93665610476861, 22.651065841802236, 34.42457677434238, 73.83293709311992, 31.361286291783117, 14.466187212665758, 7.868872274582386, 66.95100029210211, 63.849189406987776, 14.92174367464262, 5.4368592977584544, 15.938209876319288, 61.149080429979435, 9.94014475517896, 91.92939134953767, 20.7039403663375, 56.89678695798081, 29.01687908865093, 30.61618598435914, 17.946817631273387, 97.98402307616686, 10.491961216886558, 89.37243838740447, 28.514368429206076, 156.63107609100985, 10.225031213733518, 7.685095068066544, 9.341669884360579, 74.41165459257235, 5.603727834205908, 66.89374666010957, 68.10636460439164, 12.168415100835118, 172.92868105293505, 23.092362129544817, 14.577336477242262, 5.491297624275378, 75.88476354285078, 39.661521968598294, 8.66899251646109, 17.0682926905714, 24.043684984195952, 97.75448163410289, 29.64524479951571, 77.55444647430521, 12.931736433904339, 52.65409205734039, 69.66720105293766, 27.716956248724408, 13.206106738103971, 18.28230311194571, 22.68832795900905, 61.13081608839741, 7.9485605649251285, 91.52226022287307, 65.26139608988552, 205.21259959107053, 16.46722815667915, 119.38237749136069, 18.4667634564984, 55.458687589395296, 24.49084206374964, 18.84682048260464, 13.348624023259237, 114.07578615481415, 69.79798070694433, 15.145588194633136, 23.075886389029428, 16.552300349275104, 15.249851116996398, 13.364861252994297, 11.170991625413745, 13.98025483721369, 5.5634662477801085, 125.27502359423691, 26.692799057645693, 13.757955666757105, 90.20644027973701, 12.90149800157747, 87.74460574635232, 5.864185374380242, 59.715072855704534, 28.095895499095977, 24.99217539879312, 65.73048556988276, 17.10943309380687, 13.971602093671823, 8.65508907280764, 83.34116667519268, 16.78401808615522, 37.96360612066651, 107.81673501379133, 48.94299928029964, 23.484524713214775, 69.52632051323829, 6.258103738641302, 71.49315886623101, 43.630805796528215, 143.99883363813996, 34.28056192157386, 77.94757822337495, 9.0858394549182, 21.14351067345422, 20.717642261669894, 95.17219496372863, 18.394265104622722, 27.676855218627615, 10.721480640228265, 58.2996342349294, 56.46615748027228, 32.11183039116807, 6.783435754340083, 6.920750013192857, 6.0858927402767575, 49.63819974809934, 55.39134806062276, 6.832910016669443, 82.60739829559799, 94.27054938172193, 111.7099385893606, 7.579794966480853, 110.61475862890416, 136.34434791661087, 33.542731678263216, 5.7163289154876145, 5.774703710572744, 8.24286486818148, 64.52179296153167, 19.828384892277555, 28.69712731897123, 30.088043096900538, 8.300858621978739, 5.817170633724906, 10.973647060116756, 24.80152597277074, 7.9020078604283555, 9.819880906243775, 86.08863816649163, 19.65740272204274, 23.06352067152344, 55.882075445984036, 37.06090379097927, 44.337210390182776, 31.245590756544146, 53.043826078276766, 5.032768777662617, 13.51989808066114, 11.945527504934617, 89.00334680086542, 33.781551850328135, 17.186213124225738, 124.72410410670344, 163.94707171398204, 30.448987940518915, 83.1975020637923, 118.66528957498919, 67.06577670460668, 102.52375473710525, 82.48019985677858, 30.634838328976358, 108.94956562023826, 34.335104224548886, 71.57824856643508, 32.97627805243671, 5.307315732776001, 88.02348714601598, 5.043411368149583, 122.06062807083319, 24.435736678373154, 37.455653045468985, 14.907228463904286, 14.133446477639342, 53.77734443921045, 45.99180326498983, 7.175093561701329, 31.82433515358038, 22.466705900948625, 5.963728767558352, 8.47258245725581, 40.498791403525786, 20.38462020169103, 55.84161725378755, 14.558477952187928, 105.83658913515504, 86.82536090654348, 85.44853498745435, 33.38320538693794, 31.051374598977844, 29.015344191081002, 69.7612490331973, 30.918875173461586, 101.1850510784962, 81.67145237417768, 9.733248994084173, 5.894937387337596, 10.480638540266929, 54.688179042768795, 13.19460985128335, 5.635008017119327, 58.163693263250565, 57.277654051599725, 31.015232309523476, 67.29709869804316, 14.311507962566768, 17.62388813469717, 38.23283773675866, 6.692542577697489, 25.00282949422272, 71.12309759290562, 47.117725862089, 96.64612831271086, 8.892108593205501, 53.79231674462336, 18.280108457258354, 67.32282779662441, 82.40382773630873, 15.073814494289504, 25.599126673082782, 7.166092559455431, 40.14629811594377, 15.678983080565535, 107.21278698437192, 180.77231084778816, 30.417270485701888, 7.196082685013141, 7.726933942336805, 43.84213376583751, 10.24553060281184, 82.26575437078202, 24.094677746710815, 55.79858442057726, 6.112756425421403, 41.74064079318468, 61.440839374761794, 62.5528992399496, 41.248054434976474, 8.716192794757834, 46.15339048317904, 11.63589297959777, 41.39905461195945, 64.68966476730338, 36.68831590730808, 38.93709029580769, 54.13749373997112, 93.89657474868504, 8.227655305759592, 59.10435805469586, 10.399976474598335, 19.35314540197199, 14.638152583235009, 81.47246435659744, 10.7382422675066, 57.50238432394576, 31.907320973531785, 21.557317423548504, 32.51469437148875, 27.331363071842613, 55.24724780134737, 8.397985171442414, 5.965732723321015, 16.09626904929696, 171.46533525425323, 91.90891454184688, 12.51954533976629, 7.268906626474883, 154.85789521636784, 15.553288794932273, 10.455104795175478, 55.932267597862854, 98.06955198104042, 9.344756540730542, 56.609138566659105, 46.0974497345643, 96.80234795575521, 31.19065365340428, 75.55903975420989, 5.384498360720965, 7.732455402312103, 107.53273729686458, 20.674888114877987, 38.58459125240605, 7.5298572054440935, 35.364236690175964, 74.70976199189852, 8.759038657559207, 34.95003448107767, 103.02530838087948, 41.76121619549512, 76.78027195935252, 98.33639021166479, 41.87768428884525, 61.613408926511134, 171.62006573358892, 35.70982926794746, 17.90672324710678, 11.851240316870392, 36.11712011181451, 114.57271640860955, 171.1990945062358, 76.64597375042555, 26.880604323155225, 27.998453899795866, 69.02528249432709, 50.490318124537474, 67.84420570746572, 34.58925279405561, 88.75071176310838, 68.49333764138034, 54.39932435677701, 11.493858489745183, 45.63769618026612, 68.96771653303696, 9.987487761237192, 22.066306880541923, 175.50173794975024, 123.69868125984078, 18.503875213098954, 7.934646532059808, 22.287044944127157, 79.95080840261727, 22.895325197353785, 47.22514573075997, 90.84380944842968, 14.22315405920606, 11.552186130844747, 110.60239852132554, 18.71236867425214, 55.28569278385374, 34.97435907166337, 16.487371946853287, 9.092242045170783, 8.492758299364745, 9.344196400541472, 49.64380169811082, 39.91956896211545, 22.285484144446052, 8.20224712226703, 62.919293839355625, 15.36427359974295, 7.802521783952456, 24.814997293620106, 46.01378525588341, 112.53711083914229, 5.157507772849966, 21.442429240345906, 7.192020625527203, 10.153786366660121, 74.60251539423314, 40.342355630758746, 13.639028758275323, 44.168463321442125, 15.274541406941047, 26.70113368634747, 110.83150512753973, 71.96077728683832, 191.9517795416683, 38.76561367660278, 9.463627192431897, 38.927739522672, 75.29713374624721, 22.00272469220647, 27.690474886539512, 32.53673811893415, 9.824201267857223, 29.430730756189227, 13.190511940238869, 39.95853513902815, 22.601350687943146, 76.006569148036, 19.896699300362656, 37.67242525385859, 89.18432596881163, 20.760912637470817, 50.08985216215073, 33.89468032625714, 62.03730284374266, 48.03880530575865, 13.636163136700155, 80.70330523890902, 6.15816331706293, 53.318489465836805, 34.10327723887682, 49.357750007183284, 59.996857259204106, 12.234087026389899, 91.14502681698755, 38.4560654461748, 55.61246719980645, 107.08472710339885, 36.688463174547834, 63.23214270210749, 77.07273614191129, 6.167072119616306, 11.584332558921512, 91.56225509604485, 11.601604827969807, 22.588465061949375, 37.95611823432695, 18.16456917951693, 5.448040128892498, 10.8201573832075, 59.14367912357555, 5.368615262005441, 53.05176736722092, 115.81446815254836, 86.85091129332369, 39.31470183014757, 28.486226457617125, 11.782079504709358, 12.094946878563853, 8.462988028705087, 103.5740145456878, 168.14213033605625, 9.948458923811236, 14.421432993131683, 12.883517578039589, 68.97634038324651, 29.080388251201313, 49.07680518616933, 107.76555777506633, 45.20765264463321, 38.386890023589984, 31.18921563832378, 15.597370072689232, 80.51824187089592, 22.239019476600184, 31.439489445456427, 23.00371440978557, 7.931480273468578, 60.1439207675294, 151.57115305716073, 58.89159031398661, 11.992341753639897, 31.82410337579211, 116.29285540862153, 61.35104442519757, 37.15671781735755, 28.97214157219102, 118.96697089321552, 7.040476941197936, 7.187419649243679, 29.959779416707082, 94.10522562395504, 6.061399123839524, 38.44274145584228, 138.11250840539307, 5.405429474711501, 8.391210879726218, 64.5830052640004, 137.50982375253798, 5.684535144878668, 8.307109599615151, 89.6694310493611, 8.57259805014046, 84.23005755348483, 6.1910714476851645, 6.014556638661346, 7.1076612036266855, 7.07094796231667, 107.79298288954175, 19.741171130130812, 106.94961320546328, 19.380565098351333, 60.96678119459378, 26.203153382708308, 55.920687649294315, 19.42599709606978, 12.143767380760318, 132.64247823190667, 36.18729778286962, 16.050843067986737, 223.50759914803155, 14.18392015276814, 23.875526143806862, 11.318952171922863, 12.357583070283399, 109.21405831320769, 23.365018400080388, 31.116803160627057, 34.82964941687646, 42.25516414945883, 48.954886826148545, 73.48297572626277, 88.54191732888218, 22.34319090637007, 142.03567531923773, 84.72023588441321, 17.03628547438558, 37.83581218515184, 52.47175164615574, 30.290109445781912, 206.22207287525475, 62.77452757863533, 25.05130648407241, 9.572730620027542, 62.55830111881071, 41.30778886410966, 74.71242408047115, 5.675298817067701, 144.41255502458642, 9.68665351617963, 106.22698584708311, 92.16077762659773, 30.27973693991389, 109.35947486923293, 81.39950763146304, 40.19297257633258, 6.3902553362135786, 119.8127161709108, 9.512142355136119, 8.247391109378707, 6.624875757972725, 35.67597570399131, 5.845226980107376, 26.12958158544126, 17.200404728162827, 125.52610785763495, 8.834449331409125, 32.91304081376454, 34.36952251802846, 114.40511366516893, 96.06417592796504, 199.58845985215723, 5.438336552237611, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3285198.4629783393, 3369284.983114997, 3775379.2647522795, 3858067.4466457055, 4011015.362763904, 4162621.002027576, 4252063.134352223, 4347978.125, 5040314.298622695, 5177886.9528017305, 5178740.467607529, 5179168.75, 5201054.409704971, 5204050.0, 5288569.124132012, 5303905.739010911, 5348660.9375, 5349359.816425814, 5349932.8125, 5351950.446476071, 5352038.568216254, 5354594.333485776, 5420493.921912087, 5424768.160397593, 5425886.835788411, 5432273.867442411, 5435273.341339589, 5450370.031905133, 5450401.647101783, 5460567.051882991, 5464823.432484782, 5465798.42361362, 5466740.625, 5467320.3125, 5471315.3510883525, 5472374.722593153, 5472721.613274806, 5472732.8125, 5473496.875, 5473731.590521847, 5475587.5, 5480171.494954115, 5488503.178222159, 5489804.6875, 5498265.037894263, 5500345.006377761, 5502010.873888382, 5502969.804854599, 5509692.04484673, 5510790.625, 5513855.401628972, 5514971.610257741, 5537814.529478685, 5538126.2502677245, 5568957.3028461505, 5580350.0, 5584652.30738931, 5586029.346990253, 5586781.25, 5607581.005850938, 5615011.968849334, 5642130.025376923, 5652784.598686263, 5653998.4375, 5655606.363994017, 5655609.1681683585, 5655975.004181344, 5657070.3565638475, 5657102.589696102, 5657451.5625, 5663184.375, 5687754.6875, 5702589.031802897, 5702955.271674296, 5704313.639785847, 5705527.753538113, 5707248.4375, 5707477.204309262, 5708321.562061244, 5711323.589973894, 5715625.0, 5717172.7164390525, 5729588.9026930975, 5732628.057837425, 5747615.640119981, 5750992.1875, 5751218.75, 5753693.75, 5753719.895793456, 5753938.512815441, 5754434.375, 5754920.213161607, 5755804.6875, 5755919.964697109, 5755943.899375559, 5756142.306675091, 5756695.155671225, 5756821.469178521, 5757645.810164051, 5757753.125, 5757801.861331102, 5758054.879502163, 5758120.063758023, 5759038.989898225, 5760110.9375, 5760603.704999656, 5765513.93682116, 5767852.37170957, 5771384.567814667, 5771846.8157516485, 5774062.898424844, 5775055.454901185, 5789675.3564028265, 5792895.3125, 5794583.428778863, 5795259.706054673, 5795710.19511568, 5796666.070323002, 5797480.7078048205, 5799289.0625, 5801552.470103209, 5803535.713878737, 5804894.238762663, 5806853.028794273, 5807179.4139913265, 5808799.736441091, 5816431.25, 5817921.608714023, 5818757.8125, 5818899.258997353, 5819061.671083435, 5819923.794648047, 5820460.2478873255, 5820760.9375, 5821431.25, 5827047.327689065, 5843793.75, 5852050.673799233, 5857284.375, 5857777.478403375, 5860721.961035136, 5862215.530892761, 5862310.9375, 5862385.733772816, 5862678.110473113, 5863368.433801027, 5864460.9375, 5865313.025086094, 5865335.9375, 5865713.451391527, 5865728.100529126, 5866190.625, 5866590.625, 5866607.759168861, 5867081.25, 5868024.185900578, 5868048.512332635, 5868054.535627193, 5868293.184641077, 5869338.272327347, 5869570.3125, 5869635.310687477, 5869787.115381829, 5870162.729677744, 5870440.625, 5870443.914999524, 5870466.507377523, 5870479.569366187, 5870597.270970097, 5870709.165256523, 5870753.125, 5870790.493464575, 5870964.187322739, 5871109.878629473, 5871384.854818645, 5871560.671742575, 5871707.099434323, 5871710.8972527115, 5872510.252736784, 5872690.377436743, 5872851.0129712345, 5873037.583125427, 5873677.945648969, 5873680.011107515, 5873743.120296633, 5873779.352480939, 5873867.527788308, 5873896.875, 5873981.7557235975, 5875160.554077217, 5875366.47543318, 5875639.0625, 5876392.1875, 5876449.852520202, 5876458.1903674, 5876709.375, 5876747.398207836, 5877035.9375, 5877080.510937018, 5877118.75, 5877284.56507085, 5877288.356876184, 5877343.78417978, 5877576.257011291, 5877854.057807133, 5877854.6875, 5877909.245953267, 5877913.597991112, 5877923.855192369, 5877925.54421917, 5878125.371196866, 5878160.668984265, 5878409.200725702, 5880478.617926764, 5881581.969995436, 5883264.833364005, 5883643.122162271, 5883712.5, 5884300.760525872, 5884485.9375, 5884704.6875, 5885440.392217447, 5888850.065370997, 5892675.0, 5894336.25705022, 5898112.681057098, 5898641.859010122, 5902501.33727833, 5904060.9375, 5906939.571187393, 5908154.6875, 5908223.210666341, 5908411.783154545, 5910240.142850592, 5911948.217528807, 5911954.6875, 5914512.284931238, 5914710.139818774, 5914953.99866202, 5916241.736317701, 5916480.724958584, 5916841.601615109, 5917199.94283468, 5918156.041684994, 5919221.924881412, 5919960.9375, 5919966.810028916, 5920738.610601089, 5921080.6850307975, 5921157.993579003, 5921226.537916336, 5921271.875, 5921359.375, 5921810.211494575, 5921904.6875, 5922634.673854293, 5923103.125, 5923781.25, 5924693.371922647, 5924899.004775233, 5925121.268068055, 5925889.219816398, 5926364.705888544, 5926461.194618694, 5927634.25379168, 5928119.552443082, 5928563.063941778, 5928943.369573422, 5929179.6875, 5929337.288644578, 5929404.6875, 5929952.837162269, 5929971.875, 5930633.894256115, 5930655.788085992, 5930785.3855582075, 5930938.49965701, 5930965.625, 5931033.844672906, 5931143.588421486, 5931329.057368577, 5931643.3851484265, 5931661.223242898, 5931705.995173513, 5931715.625, 5931727.3145627985, 5932520.627613294, 5932869.427021353, 5933013.8511403585, 5933775.780848034, 5934045.3125, 5934967.43451478, 5934967.989887493, 5936604.886621965, 5936698.967227415, 5936878.903886533, 5936964.0625, 5937548.260928697, 5938707.8125, 5939096.875, 5939391.399596517, 5939440.625, 5939727.972167629, 5940550.0, 5940565.46404178, 5940910.60632355, 5941443.75, 5943621.909427011, 5944272.877646256, 5957187.0642735595, 5972970.3125, 5973856.980272584, 5978323.804974219, 5978330.989594038, 5987609.343960705, 5989351.971935569, 5991072.280204144, 5991362.767562305, 5991568.810523432, 5991647.044018847, 5991698.8773213755, 5991707.158465012, 5992202.4310909705, 5992975.952811414, 5993228.587091573, 5993436.65245019, 5993573.4375, 5993706.090003573, 5993850.872566113, 5993852.018723404, 5993853.021658854, 5993896.875, 5994015.780503446, 5994038.282286241, 5994078.3569280645, 5994209.589381017, 5994596.145655878, 5995317.1875, 5995503.125, 5995954.6875, 5995957.8125, 5995981.101725444, 5996068.980888747, 5997101.521539798, 6035009.77452956, 6040834.473911427, 6040980.520364395, 6041926.5625, 6042108.398342654, 6044063.210218923, 6044187.5, 6045368.600650884, 6045749.27400598, 6048427.330568254, 6049836.853279519, 6052868.777344232, 6053396.875, 6054088.788479574, 6054732.08640674, 6057811.4394673845, 6057885.564177695, 6057950.35186447, 6058337.938314855, 6058650.992465037, 6058676.5625, 6061153.125, 6061167.403790326, 6070005.439729776, 6077218.75, 6080289.430373757, 6082583.343946243, 6083239.0625, 6083255.188508115, 6084235.034304889, 6088304.6875, 6089972.871058915, 6092620.3125, 6093256.25, 6095721.875, 6095959.619390045, 6096590.803773002, 6096676.5625, 6097317.385023088, 6097343.956187683, 6097881.25, 6097985.822680089, 6098031.25, 6098073.512754824, 6098484.375, 6098525.742870649, 6098687.5, 6098928.016062042, 6098965.625, 6098977.543162437, 6099051.5625, 6099051.586662025, 6099293.75, 6099299.491801311, 6099609.136123416, 6099687.576713581, 6099727.277297328, 6099830.010529376, 6100275.000892704, 6100319.07026093, 6100365.720101593, 6100495.445341476, 6100559.684842276, 6100857.580364848, 6100866.10799972, 6101399.013754848, 6101470.076289153, 6102563.796151317, 6102666.867429476, 6102708.0286867535, 6102761.13293383, 6103040.625, 6103126.5625, 6103320.3125, 6103535.653222467, 6103598.38639876, 6103608.586195924, 6103669.009134404, 6103690.625, 6103736.6037015915, 6103742.746348157, 6103806.25, 6103871.8564381795, 6103934.330417898, 6103974.782664297, 6104025.731411273, 6104180.461009931, 6104193.75, 6104229.6875, 6104240.625, 6104251.5625, 6104409.55131467, 6104560.9375, 6104757.8125, 6104794.079409429, 6104800.0, 6104996.875, 6105015.523452781, 6105203.125, 6105224.608508404, 6105227.962795554, 6105260.438961821, 6105346.186303647, 6105354.926436081, 6105380.422479245, 6105398.586348434, 6105425.0, 6105526.010284801, 6105842.657605298, 6105893.75, 6105940.329279224, 6106030.111946853, 6106111.967657634, 6106258.263611898, 6106261.293529768, 6106416.60036075, 6106529.6875, 6106894.9875534745, 6107249.136591525, 6107301.700807045, 6107314.244591126, 6107945.599985811, 6108021.875, 6108231.121344233, 6108246.105124939, 6108310.203460841, 6108842.361227068, 6110901.264294565, 6112787.053101653, 6114010.961075721, 6114072.726803913, 6116200.43858284, 6119893.75, 6121105.858741253, 6121143.75, 6121924.940533742, 6122851.5625, 6122964.554716234, 6123755.366712404, 6125750.0, 6125994.824815766, 6126323.432304542, 6128169.719063239, 6129557.682307659, 6129682.624401243, 6129814.704223555, 6131853.125, 6132785.652618392, 6133130.337083076, 6134432.467373329, 6134728.125, 6134781.864374768, 6135407.8125, 6135765.1762628, 6136662.5, 6136695.5543617075, 6136734.560696863, 6136805.583970213, 6136811.158291256, 6137618.7621170515, 6138209.375, 6138498.249505951, 6138716.715716068, 6140919.710506897, 6141628.702340705, 6142025.0, 6142976.209148602, 6143169.285814389, 6143613.170438741, 6143630.350166679, 6143741.329546894, 6143920.971824039, 6144441.089778496, 6144607.535092572, 6144648.4375, 6145079.7401764775, 6145133.740588129, 6145425.911921725, 6145573.4375, 6146358.640736105, 6147318.09003908, 6147530.705614602, 6147546.219721966, 6148813.674512537, 6154187.614771528, 6159275.863491576, 6159503.125, 6159595.279038089, 6159695.3125, 6159703.847267239, 6160351.5625, 6160367.881649338, 6160571.875, 6160599.156353008, 6160667.936344214, 6160718.258223206, 6160721.123806868, 6160817.1875, 6161323.057933785, 6161431.137923726, 6162056.616884552, 6163192.2661114475, 6164429.201611598, 6164981.277516905, 6165082.535165881, 6166822.48557803, 6168037.5, 6169863.962512989, 6169935.958846807, 6171063.406327233, 6171975.899801953, 6174106.368101591, 6174649.093728867, 6174747.789747464, 6175217.165456527, 6175416.978846292, 6176484.375, 6176525.777542427, 6177049.719918158, 6177427.199898464, 6177551.5625, 6177831.661849961, 6178184.375, 6178461.461944498, 6178595.8248598, 6178644.329634005, 6179589.847847832, 6180824.927675571, 6181059.375, 6181479.259092222, 6182996.527197712, 6183937.5, 6184626.414619676, 6185079.382067725, 6185590.089226369, 6186185.238678454, 6187065.590593268, 6187863.183380059, 6188582.76815981, 6189537.22357461, 6190232.410616448, 6190883.892930017, 6191868.601029933, 6192165.724011511, 6194694.489703797, 6195479.666255324, 6195501.5625, 6200346.875, 6201155.025474744, 6207954.6875, 6208698.870364727, 6213535.9375, 6213715.55971587, 6214143.736636068, 6214969.876846979, 6215315.625, 6215765.774342071, 6216211.954679018, 6216313.978914161, 6216910.630772593, 6217026.651094058, 6217068.75, 6217079.6875, 6217170.339408852, 6217259.418025165, 6217403.024149591, 6217444.876437824, 6217477.319338874, 6217480.213737459, 6217492.1875, 6217500.119232283, 6217703.796532034, 6217715.625, 6217787.5, 6217887.5, 6217904.410092704, 6218000.757875325, 6218019.785215274, 6218102.694286745, 6218130.154481723, 6218188.610708526, 6218251.5625, 6218308.2985466765, 6218325.95849407, 6218382.615201265, 6218437.5, 6218535.9375, 6218625.754756819, 6218659.293240592, 6218665.837708183, 6218684.375, 6218731.129014369, 6218795.859435867, 6218921.875, 6218926.5625, 6219000.441545924, 6219028.6415940765, 6219039.0625, 6219046.9855223335, 6219047.413365347, 6219068.501798186, 6219093.614772669, 6219114.053476822, 6219199.770509042, 6219206.25, 6219224.779308199, 6219267.387706723, 6219313.519686419, 6219340.051263233, 6219440.900126738, 6219447.210920697, 6219507.8125, 6219515.006204879, 6219532.8125, 6219649.214977566, 6219762.262313964, 6219807.8125, 6219826.5625, 6219884.375, 6219938.270319409, 6219956.25, 6220015.625, 6220059.00405623, 6220065.625, 6220081.25, 6220097.314857992, 6220104.162307969, 6220113.604929093, 6220159.375, 6220166.638796872, 6220222.247822867, 6220250.571634843, 6220260.542069128, 6220289.0625, 6220306.25, 6220379.728508874, 6220422.436685217, 6220426.5625, 6220434.008838424, 6220460.729582738, 6220520.3125, 6220544.855939825, 6220588.751520605, 6220629.117869925, 6220684.375, 6220694.416195646, 6220748.508063066, 6220848.4375, 6220862.534284073, 6220939.8092569215, 6221034.542142419, 6221051.5625, 6221079.868404854, 6221090.387947905, 6221107.076339977, 6221125.98808795, 6221137.776499647, 6221148.767024802, 6221179.6875, 6221193.101353521, 6221222.42034084, 6221296.103055304, 6221318.348679231, 6221653.358817402, 6221790.625, 6221842.1875, 6221843.546350934, 6222046.875, 6222050.732719901, 6222132.218760425, 6222186.239987023, 6222198.4375, 6222807.8125, 6222872.967948763, 6222934.812220311, 6223017.1875, 6223090.502355713, 6223376.449390445, 6223387.682278759, 6224011.978543639, 6224071.129909568, 6224617.10556711, 6224630.197606656, 6225132.548174309, 6225415.730117132, 6225687.5, 6225737.0064134635, 6226170.436482884, 6226174.936665313, 6227185.031194572, 6227389.267395159, 6227444.04742776, 6228290.898215171, 6228340.625, 6228892.731002795, 6230181.989001495, 6230209.907737773, 6230589.0625, 6234157.964253279, 6239101.0848882245, 6241517.165337548, 6243304.4009158565, 6256078.1407502955, 6264538.254487301, 6265200.0, 6273551.283218764, 6274202.061413272, 6275270.3125, 6275391.817048119, 6276022.218674214, 6276200.0, 6276267.164565279, 6277342.1875, 6277681.042451827, 6277740.625, 6277811.985977055, 6277991.422988207, 6278207.5921129575, 6279701.5625, 6280006.9623395745, 6286805.605326006, 6288721.875, 6321950.0, 6324398.4375, 6324476.595157276, 6325883.983746078, 6327106.857969267, 6327253.543326643, 6327669.056843361, 6328501.5625, 6329010.404874542, 6329685.9375, 6329688.26571763, 6329748.410845992, 6331481.25, 6333103.125, 6333104.6875, 6333231.25, 6333512.096147658, 6334076.0966816535, 6334125.911500805, 6334153.347268938, 6334156.299899222, 6334259.375, 6334266.310837384, 6334269.868103537, 6337593.411717778, 6342509.368953577, 6342760.074619459, 6344778.956903538, 6372720.406017907, 6375202.254097181, 6379767.521170097, 6380610.9375, 6384665.251232219, 6388489.041068641, 6395134.630593305, 6398118.058530055, 6398371.042325517, 6398885.9375, 6398957.8125, 6398989.416477436, 6399127.827931738, 6399633.183050277, 6400034.390091298, 6400112.5, 6400176.86802675, 6400244.888426087, 6400320.149551693, 6400353.125, 6400542.294165029, 6400738.019312203, 6400747.4140640255, 6400760.827221068, 6400981.25, 6401105.909546942, 6401280.275188478, 6401512.761822074, 6401547.710102401, 6401552.501749555, 6401556.25, 6401971.485433948, 6402002.738411438, 6402162.584714561, 6402175.9755020235, 6402226.5625, 6402355.913737945, 6402601.087840355, 6402616.203326768, 6402695.464842473, 6402734.313647046, 6402734.375, 6402741.7371137105, 6402787.45639708, 6402798.4375, 6402800.530473837, 6402823.4375, 6402826.012255165, 6402835.9375, 6402841.791855918, 6402857.192857489, 6402881.200072327, 6402892.79473463, 6402895.3125, 6402930.673329641, 6402940.204070644, 6403031.25, 6403043.75, 6403104.6875, 6403121.484456549, 6403210.9375, 6403222.522838495, 6403241.872900552, 6403358.504604641, 6403468.75, 6403471.875, 6403472.483668983, 6403493.376089564, 6403606.25, 6403617.1875, 6403643.698058494, 6403815.625, 6403815.625, 6403843.0456636, 6403925.726659091, 6403976.836230285, 6403993.4577873815, 6404109.658408993, 6404176.165715389, 6404177.551522649, 6404230.336014197, 6404246.551245634, 6404257.606406353, 6404355.444625844, 6404446.071357911, 6404536.099805966, 6404885.876115256, 6404954.6875, 6404962.5, 6405040.623029581, 6405050.381854097, 6405052.104164734, 6405122.194334129, 6405245.3125, 6405260.655756318, 6405277.212024506, 6405629.5440153545, 6405663.392554618, 6405741.931689742, 6405885.9375, 6406192.1875, 6406198.772243363, 6406273.749087207, 6407364.0625, 6407892.1875, 6408839.224550898, 6409387.5, 6412972.27454569, 6417635.9375, 6419476.130655465, 6431107.074681256, 6436807.8125, 6439061.529161352, 6440403.974625336, 6442391.11569408, 6443146.875, 6451823.912708235, 6453993.640311359, 6454648.333375637, 6454858.839942342, 6455456.25, 6455760.62023423, 6456281.495146699, 6456303.718419072, 6456493.75, 6456799.739272536, 6457437.5, 6458636.327799541, 6459853.305757533, 6460164.255257754, 6461057.551794357, 6461249.93625632, 6461644.957562274, 6462084.413626055, 6464534.092777944, 6464964.566850924, 6465973.519250332, 6466404.060225573, 6466455.511808397, 6468893.697277742, 6474270.116827194, 6474859.2116843285, 6487149.3044045, 6488618.74389371, 6489188.320990944, 6489204.6875, 6490036.254271501, 6490262.5, 6490428.144076591, 6492428.690446681, 6492680.97014903, 6492803.125, 6492847.138485209, 6493009.530809658, 6493193.535946419, 6493208.07130299, 6493381.369001731, 6494162.769462684, 6494270.3125, 6494624.669191013, 6495831.25, 6495874.70561032, 6496360.9375, 6496743.75, 6497457.8125, 6497912.5, 6498710.911906974, 6499277.201153349, 6499437.5, 6500064.52143751, 6500236.503304451, 6501670.3125, 6501994.186678507, 6502707.65341909, 6504014.0162610635, 6505233.437633324, 6506020.584753145, 6506956.096950454, 6507103.125, 6507414.0625, 6508349.494075942, 6508425.586979685, 6508472.267241398, 6509042.676685819, 6510307.808284692, 6510415.652819152, 6510597.7319505345, 6510657.8125, 6511140.6029246375, 6511247.7906365665, 6511362.5, 6511447.081287489, 6511471.800155842, 6511593.013539189, 6511632.483202192, 6511659.788556271, 6511921.740902711, 6511962.489417142, 6512068.1510740975, 6512186.847343276, 6512210.9375, 6512259.113449476, 6512306.25, 6512360.9375, 6512367.1875, 6512593.192508479, ...], [11.167765992438625, 5.994173172650627, 8.99781833168845, 5.545791289521856, 9.119092496265877, 43.486201373268926, 76.22595411083887, 59.895444876677026, 11.51799181297113, 21.034848036561268, 25.76097144379363, 38.36656888981212, 103.13999728600113, 65.37442696954206, 16.589063339154595, 16.05689467386483, 128.27324782206352, 6.854954205028232, 50.47750331184528, 16.96853479055832, 60.33132477868486, 12.181210463714454, 5.469193895463918, 46.24279250127135, 6.957150935850545, 16.879752090780645, 18.41922200715765, 24.001821025577826, 9.40397812960081, 26.105148063034022, 60.230998133505416, 14.888843890591591, 47.68753880293663, 43.293355287581406, 33.64819495445199, 32.39333404413367, 24.252279408154628, 38.59630844835279, 48.02491150842397, 89.0523301301717, 52.66676892849723, 10.581451503047443, 5.166602949414526, 70.14010035889801, 8.879849828617903, 6.440151231356528, 66.80359018423655, 5.5865640162850765, 115.55251747278704, 65.55034308458241, 18.603265208647784, 52.2160288163418, 17.548485553771094, 58.16621881453074, 13.299683947850594, 86.6846223970683, 6.366131944731139, 10.634148508066936, 36.97270905455439, 9.133154867551601, 32.385365600171546, 53.33234842507261, 5.959125104887182, 41.85956926603677, 15.394562808326965, 111.50887735605062, 11.134248808302042, 15.11216276614815, 21.148008703404678, 89.86464847925146, 49.08189463683943, 39.20551282933996, 27.93148655850619, 17.759828018126118, 10.525560339364063, 70.08116091330848, 123.5467557443853, 7.85312527550709, 23.586862076654086, 20.2381629447419, 73.3672176099794, 16.64481161849116, 25.72347872470029, 64.51396666877503, 12.210041602432078, 62.976140395002616, 113.57269013523344, 32.9662121922697, 9.002271238362104, 21.01138620848032, 34.97178362767908, 8.23473495139894, 87.4955910415108, 23.15874526849017, 7.161279473923511, 14.658563365449567, 7.547483449805596, 10.547567996128077, 21.85728373407281, 31.594904031471355, 9.597544793169911, 70.93445694175644, 24.428344071407075, 23.821572301745608, 31.347021859052106, 25.96300958078351, 88.95924249122218, 135.17637491457918, 15.731149469107542, 14.72039098048333, 16.71391987519537, 22.683603939173405, 8.484491996353231, 47.83085323514314, 17.95878178621011, 135.4962858530829, 19.373854666230866, 52.615345315683626, 10.374244963974851, 47.17627101299372, 7.382385666577819, 74.94962623334163, 79.56041941471624, 10.980588604032647, 68.27385521573184, 88.57878624251904, 68.28753918959919, 94.94337878786062, 56.78146513743733, 7.355549622743587, 6.608582844958864, 11.735949565703285, 10.197447223367698, 101.51065828534175, 67.50361427102108, 29.161844596577737, 47.170168734593915, 18.33038983354766, 61.37147817089412, 20.145578785665258, 57.06026571986541, 82.73665893944298, 52.397537206583046, 11.79154919040927, 61.40443200713307, 18.40795758580723, 55.40881289490894, 12.061273207073762, 70.94365028989314, 13.031709375609509, 25.189986942180415, 66.60168099145302, 59.86383122435079, 99.59420384766125, 44.41951505898231, 19.149396790946167, 15.234619631744513, 25.847179799547888, 79.52333034659111, 39.02408152864141, 35.722517506579244, 18.754682334835557, 10.57541402335002, 15.895699121893058, 62.36137432914244, 22.700248588408055, 8.815695203488241, 139.1977414877558, 15.016597154631297, 39.29488987678391, 67.9712683391272, 178.1607893404606, 83.67703907253403, 12.018123170814254, 9.772983673736928, 37.11322091322538, 7.94235530091222, 27.7526652255786, 29.20940387364115, 33.0805909925015, 5.377873541578584, 20.61609254594185, 34.73083396761261, 27.745931215566337, 10.268032527264618, 13.801802750599903, 28.50292738098766, 50.55280317921644, 12.02231329011636, 78.03579629934448, 49.939996820864664, 29.56798815623338, 64.6702325016491, 12.332709108061316, 38.788943779119435, 97.90904973111925, 12.057476613046395, 49.4500834317663, 81.21481842550637, 31.61904126862045, 95.83692896122781, 19.660940644725674, 18.17551382214446, 67.71275492631116, 8.850250442802759, 47.386968026103865, 22.03810265203942, 31.676803157115607, 16.8147723325328, 49.450658337324995, 191.74297819012355, 24.161416651086565, 25.501540862169044, 38.02199195802059, 18.64384744402412, 42.82567427045377, 18.247360008650674, 106.11370135612957, 36.59471764187529, 31.494107323043455, 81.12444196016256, 14.122751207989293, 68.07088941684204, 49.016455514308355, 193.10672271793635, 15.679646912129575, 77.43508480217596, 73.71683012066393, 99.21751938854587, 12.765555362559502, 46.05721955305988, 5.160112227912708, 5.317943751040292, 5.898488793859125, 6.720371497048087, 31.596949224990162, 10.80739569261914, 71.8555733506222, 42.58485376636329, 20.510317499311515, 49.344167538395936, 20.99424880228567, 27.44245113729351, 14.245991840362759, 11.206580162812967, 34.65210951701972, 7.025639555599868, 21.986740228073447, 13.15156425854878, 120.60644848160084, 126.7122295545089, 59.98092508329536, 69.85517911668165, 69.52549135031907, 56.065698077936446, 15.722669827182592, 70.11978981815199, 29.897264979479463, 22.802141891928418, 28.308089645859788, 20.488836236175494, 17.289923289666127, 27.02956175356454, 144.14496348718697, 6.739547141918673, 19.23963258933557, 6.148775551009693, 107.73078789335399, 40.55883303930025, 24.953183878623474, 67.99015069898186, 13.947261892967875, 54.88417053099819, 36.12677973153594, 10.475086995810791, 30.40109566300429, 6.656111346032595, 100.18609025870299, 10.388943395142972, 25.696051474462728, 5.580109643582139, 23.13315528006377, 11.605782154655063, 17.738839453767078, 100.90252940630502, 49.1329524118739, 16.29597072141399, 33.44218042989581, 9.158860073791278, 67.97916167884206, 89.16375473078003, 26.40903755425009, 12.665967130387909, 15.758971006535061, 8.588087673253924, 7.34244353310161, 28.873937825747884, 56.65311326964907, 73.81517674215696, 56.561546487481365, 83.20106752188846, 46.436065895547536, 25.832143146601535, 68.22485772430574, 60.83276810642409, 23.360510297107776, 52.961077004509974, 15.074373017737194, 249.78506101785212, 53.843180593126135, 100.17101823671965, 22.871664236417313, 11.755160387046532, 10.743691129143924, 34.05990537731668, 11.834262519274754, 16.749218506515714, 9.568375357717605, 11.223645224617492, 11.40258716505407, 38.984449509509034, 7.382656670760119, 5.43275108204766, 28.324834795855296, 5.2582649989346315, 5.027544689642794, 131.67735387960863, 14.364838539212924, 12.83431565956011, 17.12745145299579, 14.561726976461497, 61.09919501196565, 57.95000041492255, 242.31535599797792, 15.905898168121928, 157.315978491466, 31.48366682052554, 92.26112317916781, 154.93516600784147, 79.41466782023548, 62.32957246074939, 25.90375326627038, 26.189199176168252, 33.19362701464937, 17.335111020141724, 202.84314061827746, 25.574859543307028, 72.92637536927036, 15.071642811620311, 35.54012875186716, 94.48231425248065, 55.641789826210086, 7.360193182481817, 18.985304158719387, 12.941406351902426, 15.046767265045444, 61.898133446758145, 194.28577282871223, 25.009501401437355, 12.014800757674747, 7.0266567817168815, 11.726158421452906, 79.6656735597184, 52.95593862911726, 52.780250877171746, 99.86108583610694, 15.83539357699246, 7.9000230744962225, 104.77197607303819, 112.47037265300443, 51.20725199369299, 34.67179774643157, 6.141796746231984, 19.17037299354837, 81.77513566293358, 26.588508010086212, 68.2101093714149, 41.10017947035349, 127.18130713577148, 96.6812964328656, 15.66969567379853, 100.44268452074982, 34.655787689727305, 15.790299728730817, 110.67104730682121, 50.42423869093301, 57.67433707722475, 28.90724936472696, 102.55705251199613, 6.921467023368521, 125.1073452459359, 107.97503385912592, 45.51671773138237, 136.04601312416477, 107.1934756957133, 33.802185864776305, 56.43164261340922, 21.41170197139399, 6.7167356985047055, 15.242195951886034, 19.08025943754057, 37.897107524367996, 30.35290183639153, 16.32097504225808, 47.7084867276574, 51.77401647186056, 7.719283110767899, 79.2737625073702, 30.413836594889034, 104.87208682366388, 21.46959261967567, 95.57107145583088, 40.615718053152676, 105.12957631255985, 72.0794617667548, 146.73739231272967, 28.648570376225294, 85.00561170606842, 149.63353166999252, 158.28167274609928, 71.88722784661712, 11.55844004084042, 144.21708598819058, 18.28014763099373, 17.60693426815381, 103.54357445191445, 28.162691019306006, 11.058729871104083, 14.17314552068622, 12.502356304186723, 19.024985529309287, 61.7216227697006, 123.23729610387566, 36.46672150857836, 37.380915321964615, 6.106628333613477, 37.994179889057705, 56.571055146930206, 16.365672299298872, 52.48993035677087, 89.82225340989393, 26.66640284860754, 35.15971848613108, 150.40421468892202, 6.246920235176248, 21.507695081176987, 12.756165631182611, 15.937775956860554, 145.44842692802044, 15.540916290986184, 29.166769939902935, 34.95844379547765, 17.097623276453646, 68.646057051055, 9.093275150838608, 15.648925654186236, 43.58015311115716, 9.744380385662412, 15.864300236417225, 242.59813563375064, 63.8535226867549, 23.437230171739714, 98.89539430727376, 15.270870987503589, 15.684157662886498, 32.81531016291685, 142.094024653826, 55.57139325243675, 5.22409713105882, 45.88108413598931, 34.36470593612708, 7.498828937878657, 84.16316675612343, 8.299084033379355, 28.8137434427083, 57.88525929798552, 41.93665610476861, 22.651065841802236, 34.42457677434238, 73.83293709311992, 31.361286291783117, 14.466187212665758, 7.868872274582386, 66.95100029210211, 63.849189406987776, 14.92174367464262, 5.4368592977584544, 15.938209876319288, 61.149080429979435, 9.94014475517896, 91.92939134953767, 20.7039403663375, 56.89678695798081, 29.01687908865093, 30.61618598435914, 17.946817631273387, 97.98402307616686, 10.491961216886558, 89.37243838740447, 28.514368429206076, 156.63107609100985, 10.225031213733518, 7.685095068066544, 9.341669884360579, 74.41165459257235, 5.603727834205908, 66.89374666010957, 68.10636460439164, 12.168415100835118, 172.92868105293505, 23.092362129544817, 14.577336477242262, 5.491297624275378, 75.88476354285078, 39.661521968598294, 8.66899251646109, 17.0682926905714, 24.043684984195952, 97.75448163410289, 29.64524479951571, 77.55444647430521, 12.931736433904339, 52.65409205734039, 69.66720105293766, 27.716956248724408, 13.206106738103971, 18.28230311194571, 22.68832795900905, 61.13081608839741, 7.9485605649251285, 91.52226022287307, 65.26139608988552, 205.21259959107053, 16.46722815667915, 119.38237749136069, 18.4667634564984, 55.458687589395296, 24.49084206374964, 18.84682048260464, 13.348624023259237, 114.07578615481415, 69.79798070694433, 15.145588194633136, 23.075886389029428, 16.552300349275104, 15.249851116996398, 13.364861252994297, 11.170991625413745, 13.98025483721369, 5.5634662477801085, 125.27502359423691, 26.692799057645693, 13.757955666757105, 90.20644027973701, 12.90149800157747, 87.74460574635232, 5.864185374380242, 59.715072855704534, 28.095895499095977, 24.99217539879312, 65.73048556988276, 17.10943309380687, 13.971602093671823, 8.65508907280764, 83.34116667519268, 16.78401808615522, 37.96360612066651, 107.81673501379133, 48.94299928029964, 23.484524713214775, 69.52632051323829, 6.258103738641302, 71.49315886623101, 43.630805796528215, 143.99883363813996, 34.28056192157386, 77.94757822337495, 9.0858394549182, 21.14351067345422, 20.717642261669894, 95.17219496372863, 18.394265104622722, 27.676855218627615, 10.721480640228265, 58.2996342349294, 56.46615748027228, 32.11183039116807, 6.783435754340083, 6.920750013192857, 6.0858927402767575, 49.63819974809934, 55.39134806062276, 6.832910016669443, 82.60739829559799, 94.27054938172193, 111.7099385893606, 7.579794966480853, 110.61475862890416, 136.34434791661087, 33.542731678263216, 5.7163289154876145, 5.774703710572744, 8.24286486818148, 64.52179296153167, 19.828384892277555, 28.69712731897123, 30.088043096900538, 8.300858621978739, 5.817170633724906, 10.973647060116756, 24.80152597277074, 7.9020078604283555, 9.819880906243775, 86.08863816649163, 19.65740272204274, 23.06352067152344, 55.882075445984036, 37.06090379097927, 44.337210390182776, 31.245590756544146, 53.043826078276766, 5.032768777662617, 13.51989808066114, 11.945527504934617, 89.00334680086542, 33.781551850328135, 17.186213124225738, 124.72410410670344, 163.94707171398204, 30.448987940518915, 83.1975020637923, 118.66528957498919, 67.06577670460668, 102.52375473710525, 82.48019985677858, 30.634838328976358, 108.94956562023826, 34.335104224548886, 71.57824856643508, 32.97627805243671, 5.307315732776001, 88.02348714601598, 5.043411368149583, 122.06062807083319, 24.435736678373154, 37.455653045468985, 14.907228463904286, 14.133446477639342, 53.77734443921045, 45.99180326498983, 7.175093561701329, 31.82433515358038, 22.466705900948625, 5.963728767558352, 8.47258245725581, 40.498791403525786, 20.38462020169103, 55.84161725378755, 14.558477952187928, 105.83658913515504, 86.82536090654348, 85.44853498745435, 33.38320538693794, 31.051374598977844, 29.015344191081002, 69.7612490331973, 30.918875173461586, 101.1850510784962, 81.67145237417768, 9.733248994084173, 5.894937387337596, 10.480638540266929, 54.688179042768795, 13.19460985128335, 5.635008017119327, 58.163693263250565, 57.277654051599725, 31.015232309523476, 67.29709869804316, 14.311507962566768, 17.62388813469717, 38.23283773675866, 6.692542577697489, 25.00282949422272, 71.12309759290562, 47.117725862089, 96.64612831271086, 8.892108593205501, 53.79231674462336, 18.280108457258354, 67.32282779662441, 82.40382773630873, 15.073814494289504, 25.599126673082782, 7.166092559455431, 40.14629811594377, 15.678983080565535, 107.21278698437192, 180.77231084778816, 30.417270485701888, 7.196082685013141, 7.726933942336805, 43.84213376583751, 10.24553060281184, 82.26575437078202, 24.094677746710815, 55.79858442057726, 6.112756425421403, 41.74064079318468, 61.440839374761794, 62.5528992399496, 41.248054434976474, 8.716192794757834, 46.15339048317904, 11.63589297959777, 41.39905461195945, 64.68966476730338, 36.68831590730808, 38.93709029580769, 54.13749373997112, 93.89657474868504, 8.227655305759592, 59.10435805469586, 10.399976474598335, 19.35314540197199, 14.638152583235009, 81.47246435659744, 10.7382422675066, 57.50238432394576, 31.907320973531785, 21.557317423548504, 32.51469437148875, 27.331363071842613, 55.24724780134737, 8.397985171442414, 5.965732723321015, 16.09626904929696, 171.46533525425323, 91.90891454184688, 12.51954533976629, 7.268906626474883, 154.85789521636784, 15.553288794932273, 10.455104795175478, 55.932267597862854, 98.06955198104042, 9.344756540730542, 56.609138566659105, 46.0974497345643, 96.80234795575521, 31.19065365340428, 75.55903975420989, 5.384498360720965, 7.732455402312103, 107.53273729686458, 20.674888114877987, 38.58459125240605, 7.5298572054440935, 35.364236690175964, 74.70976199189852, 8.759038657559207, 34.95003448107767, 103.02530838087948, 41.76121619549512, 76.78027195935252, 98.33639021166479, 41.87768428884525, 61.613408926511134, 171.62006573358892, 35.70982926794746, 17.90672324710678, 11.851240316870392, 36.11712011181451, 114.57271640860955, 171.1990945062358, 76.64597375042555, 26.880604323155225, 27.998453899795866, 69.02528249432709, 50.490318124537474, 67.84420570746572, 34.58925279405561, 88.75071176310838, 68.49333764138034, 54.39932435677701, 11.493858489745183, 45.63769618026612, 68.96771653303696, 9.987487761237192, 22.066306880541923, 175.50173794975024, 123.69868125984078, 18.503875213098954, 7.934646532059808, 22.287044944127157, 79.95080840261727, 22.895325197353785, 47.22514573075997, 90.84380944842968, 14.22315405920606, 11.552186130844747, 110.60239852132554, 18.71236867425214, 55.28569278385374, 34.97435907166337, 16.487371946853287, 9.092242045170783, 8.492758299364745, 9.344196400541472, 49.64380169811082, 39.91956896211545, 22.285484144446052, 8.20224712226703, 62.919293839355625, 15.36427359974295, 7.802521783952456, 24.814997293620106, 46.01378525588341, 112.53711083914229, 5.157507772849966, 21.442429240345906, 7.192020625527203, 10.153786366660121, 74.60251539423314, 40.342355630758746, 13.639028758275323, 44.168463321442125, 15.274541406941047, 26.70113368634747, 110.83150512753973, 71.96077728683832, 191.9517795416683, 38.76561367660278, 9.463627192431897, 38.927739522672, 75.29713374624721, 22.00272469220647, 27.690474886539512, 32.53673811893415, 9.824201267857223, 29.430730756189227, 13.190511940238869, 39.95853513902815, 22.601350687943146, 76.006569148036, 19.896699300362656, 37.67242525385859, 89.18432596881163, 20.760912637470817, 50.08985216215073, 33.89468032625714, 62.03730284374266, 48.03880530575865, 13.636163136700155, 80.70330523890902, 6.15816331706293, 53.318489465836805, 34.10327723887682, 49.357750007183284, 59.996857259204106, 12.234087026389899, 91.14502681698755, 38.4560654461748, 55.61246719980645, 107.08472710339885, 36.688463174547834, 63.23214270210749, 77.07273614191129, 6.167072119616306, 11.584332558921512, 91.56225509604485, 11.601604827969807, 22.588465061949375, 37.95611823432695, 18.16456917951693, 5.448040128892498, 10.8201573832075, 59.14367912357555, 5.368615262005441, 53.05176736722092, 115.81446815254836, 86.85091129332369, 39.31470183014757, 28.486226457617125, 11.782079504709358, 12.094946878563853, 8.462988028705087, 103.5740145456878, 168.14213033605625, 9.948458923811236, 14.421432993131683, 12.883517578039589, 68.97634038324651, 29.080388251201313, 49.07680518616933, 107.76555777506633, 45.20765264463321, 38.386890023589984, 31.18921563832378, 15.597370072689232, 80.51824187089592, 22.239019476600184, 31.439489445456427, 23.00371440978557, 7.931480273468578, 60.1439207675294, 151.57115305716073, 58.89159031398661, 11.992341753639897, 31.82410337579211, 116.29285540862153, 61.35104442519757, 37.15671781735755, 28.97214157219102, 118.96697089321552, 7.040476941197936, 7.187419649243679, 29.959779416707082, 94.10522562395504, 6.061399123839524, 38.44274145584228, 138.11250840539307, 5.405429474711501, 8.391210879726218, 64.5830052640004, 137.50982375253798, 5.684535144878668, 8.307109599615151, 89.6694310493611, 8.57259805014046, 84.23005755348483, 6.1910714476851645, 6.014556638661346, 7.1076612036266855, 7.07094796231667, 107.79298288954175, 19.741171130130812, 106.94961320546328, 19.380565098351333, 60.96678119459378, 26.203153382708308, 55.920687649294315, 19.42599709606978, 12.143767380760318, 132.64247823190667, 36.18729778286962, 16.050843067986737, 223.50759914803155, 14.18392015276814, 23.875526143806862, 11.318952171922863, 12.357583070283399, 109.21405831320769, 23.365018400080388, 31.116803160627057, 34.82964941687646, 42.25516414945883, 48.954886826148545, 73.48297572626277, 88.54191732888218, 22.34319090637007, 142.03567531923773, 84.72023588441321, 17.03628547438558, 37.83581218515184, 52.47175164615574, 30.290109445781912, 206.22207287525475, 62.77452757863533, 25.05130648407241, 9.572730620027542, 62.55830111881071, 41.30778886410966, 74.71242408047115, 5.675298817067701, 144.41255502458642, 9.68665351617963, 106.22698584708311, 92.16077762659773, 30.27973693991389, 109.35947486923293, 81.39950763146304, 40.19297257633258, 6.3902553362135786, 119.8127161709108, 9.512142355136119, 8.247391109378707, 6.624875757972725, 35.67597570399131, 5.845226980107376, 26.12958158544126, 17.200404728162827, 125.52610785763495, 8.834449331409125, 32.91304081376454, 34.36952251802846, 114.40511366516893, 96.06417592796504, 199.58845985215723, 5.438336552237611, ...])
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);
([3285198.4629783393, 3369284.983114997, 3775379.2647522795, 3858067.4466457055, 4011015.362763904, 4162621.002027576, 4252063.134352223, 4347978.125, 5040314.298622695, 5177886.9528017305, 5178740.467607529, 5179168.75, 5201054.409704971, 5204050.0, 5288569.124132012, 5303905.739010911, 5348660.9375, 5349359.816425814, 5349932.8125, 5351950.446476071, 5352038.568216254, 5354594.333485776, 5420493.921912087, 5424768.160397593, 5425886.835788411, 5432273.867442411, 5435273.341339589, 5450370.031905133, 5450401.647101783, 5460567.051882991, 5464823.432484782, 5465798.42361362, 5466740.625, 5467320.3125, 5471315.3510883525, 5472374.722593153, 5472721.613274806, 5472732.8125, 5473496.875, 5473731.590521847, 5475587.5, 5480171.494954115, 5488503.178222159, 5489804.6875, 5498265.037894263, 5500345.006377761, 5502010.873888382, 5502969.804854599, 5509692.04484673, 5510790.625, 5513855.401628972, 5514971.610257741, 5537814.529478685, 5538126.2502677245, 5568957.3028461505, 5580350.0, 5584652.30738931, 5586029.346990253, 5586781.25, 5607581.005850938, 5615011.968849334, 5642130.025376923, 5652784.598686263, 5653998.4375, 5655606.363994017, 5655609.1681683585, 5655975.004181344, 5657070.3565638475, 5657102.589696102, 5657451.5625, 5663184.375, 5687754.6875, 5702589.031802897, 5702955.271674296, 5704313.639785847, 5705527.753538113, 5707248.4375, 5707477.204309262, 5708321.562061244, 5711323.589973894, 5715625.0, 5717172.7164390525, 5729588.9026930975, 5732628.057837425, 5747615.640119981, 5750992.1875, 5751218.75, 5753693.75, 5753719.895793456, 5753938.512815441, 5754434.375, 5754920.213161607, 5755804.6875, 5755919.964697109, 5755943.899375559, 5756142.306675091, 5756695.155671225, 5756821.469178521, 5757645.810164051, 5757753.125, 5757801.861331102, 5758054.879502163, 5758120.063758023, 5759038.989898225, 5760110.9375, 5760603.704999656, 5765513.93682116, 5767852.37170957, 5771384.567814667, 5771846.8157516485, 5774062.898424844, 5775055.454901185, 5789675.3564028265, 5792895.3125, 5794583.428778863, 5795259.706054673, 5795710.19511568, 5796666.070323002, 5797480.7078048205, 5799289.0625, 5801552.470103209, 5803535.713878737, 5804894.238762663, 5806853.028794273, 5807179.4139913265, 5808799.736441091, 5816431.25, 5817921.608714023, 5818757.8125, 5818899.258997353, 5819061.671083435, 5819923.794648047, 5820460.2478873255, 5820760.9375, 5821431.25, 5827047.327689065, 5843793.75, 5852050.673799233, 5857284.375, 5857777.478403375, 5860721.961035136, 5862215.530892761, 5862310.9375, 5862385.733772816, 5862678.110473113, 5863368.433801027, 5864460.9375, 5865313.025086094, 5865335.9375, 5865713.451391527, 5865728.100529126, 5866190.625, 5866590.625, 5866607.759168861, 5867081.25, 5868024.185900578, 5868048.512332635, 5868054.535627193, 5868293.184641077, 5869338.272327347, 5869570.3125, 5869635.310687477, 5869787.115381829, 5870162.729677744, 5870440.625, 5870443.914999524, 5870466.507377523, 5870479.569366187, 5870597.270970097, 5870709.165256523, 5870753.125, 5870790.493464575, 5870964.187322739, 5871109.878629473, 5871384.854818645, 5871560.671742575, 5871707.099434323, 5871710.8972527115, 5872510.252736784, 5872690.377436743, 5872851.0129712345, 5873037.583125427, 5873677.945648969, 5873680.011107515, 5873743.120296633, 5873779.352480939, 5873867.527788308, 5873896.875, 5873981.7557235975, 5875160.554077217, 5875366.47543318, 5875639.0625, 5876392.1875, 5876449.852520202, 5876458.1903674, 5876709.375, 5876747.398207836, 5877035.9375, 5877080.510937018, 5877118.75, 5877284.56507085, 5877288.356876184, 5877343.78417978, 5877576.257011291, 5877854.057807133, 5877854.6875, 5877909.245953267, 5877913.597991112, 5877923.855192369, 5877925.54421917, 5878125.371196866, 5878160.668984265, 5878409.200725702, 5880478.617926764, 5881581.969995436, 5883264.833364005, 5883643.122162271, 5883712.5, 5884300.760525872, 5884485.9375, 5884704.6875, 5885440.392217447, 5888850.065370997, 5892675.0, 5894336.25705022, 5898112.681057098, 5898641.859010122, 5902501.33727833, 5904060.9375, 5906939.571187393, 5908154.6875, 5908223.210666341, 5908411.783154545, 5910240.142850592, 5911948.217528807, 5911954.6875, 5914512.284931238, 5914710.139818774, 5914953.99866202, 5916241.736317701, 5916480.724958584, 5916841.601615109, 5917199.94283468, 5918156.041684994, 5919221.924881412, 5919960.9375, 5919966.810028916, 5920738.610601089, 5921080.6850307975, 5921157.993579003, 5921226.537916336, 5921271.875, 5921359.375, 5921810.211494575, 5921904.6875, 5922634.673854293, 5923103.125, 5923781.25, 5924693.371922647, 5924899.004775233, 5925121.268068055, 5925889.219816398, 5926364.705888544, 5926461.194618694, 5927634.25379168, 5928119.552443082, 5928563.063941778, 5928943.369573422, 5929179.6875, 5929337.288644578, 5929404.6875, 5929952.837162269, 5929971.875, 5930633.894256115, 5930655.788085992, 5930785.3855582075, 5930938.49965701, 5930965.625, 5931033.844672906, 5931143.588421486, 5931329.057368577, 5931643.3851484265, 5931661.223242898, 5931705.995173513, 5931715.625, 5931727.3145627985, 5932520.627613294, 5932869.427021353, 5933013.8511403585, 5933775.780848034, 5934045.3125, 5934967.43451478, 5934967.989887493, 5936604.886621965, 5936698.967227415, 5936878.903886533, 5936964.0625, 5937548.260928697, 5938707.8125, 5939096.875, 5939391.399596517, 5939440.625, 5939727.972167629, 5940550.0, 5940565.46404178, 5940910.60632355, 5941443.75, 5943621.909427011, 5944272.877646256, 5957187.0642735595, 5972970.3125, 5973856.980272584, 5978323.804974219, 5978330.989594038, 5987609.343960705, 5989351.971935569, 5991072.280204144, 5991362.767562305, 5991568.810523432, 5991647.044018847, 5991698.8773213755, 5991707.158465012, 5992202.4310909705, 5992975.952811414, 5993228.587091573, 5993436.65245019, 5993573.4375, 5993706.090003573, 5993850.872566113, 5993852.018723404, 5993853.021658854, 5993896.875, 5994015.780503446, 5994038.282286241, 5994078.3569280645, 5994209.589381017, 5994596.145655878, 5995317.1875, 5995503.125, 5995954.6875, 5995957.8125, 5995981.101725444, 5996068.980888747, 5997101.521539798, 6035009.77452956, 6040834.473911427, 6040980.520364395, 6041926.5625, 6042108.398342654, 6044063.210218923, 6044187.5, 6045368.600650884, 6045749.27400598, 6048427.330568254, 6049836.853279519, 6052868.777344232, 6053396.875, 6054088.788479574, 6054732.08640674, 6057811.4394673845, 6057885.564177695, 6057950.35186447, 6058337.938314855, 6058650.992465037, 6058676.5625, 6061153.125, 6061167.403790326, 6070005.439729776, 6077218.75, 6080289.430373757, 6082583.343946243, 6083239.0625, 6083255.188508115, 6084235.034304889, 6088304.6875, 6089972.871058915, 6092620.3125, 6093256.25, 6095721.875, 6095959.619390045, 6096590.803773002, 6096676.5625, 6097317.385023088, 6097343.956187683, 6097881.25, 6097985.822680089, 6098031.25, 6098073.512754824, 6098484.375, 6098525.742870649, 6098687.5, 6098928.016062042, 6098965.625, 6098977.543162437, 6099051.5625, 6099051.586662025, 6099293.75, 6099299.491801311, 6099609.136123416, 6099687.576713581, 6099727.277297328, 6099830.010529376, 6100275.000892704, 6100319.07026093, 6100365.720101593, 6100495.445341476, 6100559.684842276, 6100857.580364848, 6100866.10799972, 6101399.013754848, 6101470.076289153, 6102563.796151317, 6102666.867429476, 6102708.0286867535, 6102761.13293383, 6103040.625, 6103126.5625, 6103320.3125, 6103535.653222467, 6103598.38639876, 6103608.586195924, 6103669.009134404, 6103690.625, 6103736.6037015915, 6103742.746348157, 6103806.25, 6103871.8564381795, 6103934.330417898, 6103974.782664297, 6104025.731411273, 6104180.461009931, 6104193.75, 6104229.6875, 6104240.625, 6104251.5625, 6104409.55131467, 6104560.9375, 6104757.8125, 6104794.079409429, 6104800.0, 6104996.875, 6105015.523452781, 6105203.125, 6105224.608508404, 6105227.962795554, 6105260.438961821, 6105346.186303647, 6105354.926436081, 6105380.422479245, 6105398.586348434, 6105425.0, 6105526.010284801, 6105842.657605298, 6105893.75, 6105940.329279224, 6106030.111946853, 6106111.967657634, 6106258.263611898, 6106261.293529768, 6106416.60036075, 6106529.6875, 6106894.9875534745, 6107249.136591525, 6107301.700807045, 6107314.244591126, 6107945.599985811, 6108021.875, 6108231.121344233, 6108246.105124939, 6108310.203460841, 6108842.361227068, 6110901.264294565, 6112787.053101653, 6114010.961075721, 6114072.726803913, 6116200.43858284, 6119893.75, 6121105.858741253, 6121143.75, 6121924.940533742, 6122851.5625, 6122964.554716234, 6123755.366712404, 6125750.0, 6125994.824815766, 6126323.432304542, 6128169.719063239, 6129557.682307659, 6129682.624401243, 6129814.704223555, 6131853.125, 6132785.652618392, 6133130.337083076, 6134432.467373329, 6134728.125, 6134781.864374768, 6135407.8125, 6135765.1762628, 6136662.5, 6136695.5543617075, 6136734.560696863, 6136805.583970213, 6136811.158291256, 6137618.7621170515, 6138209.375, 6138498.249505951, 6138716.715716068, 6140919.710506897, 6141628.702340705, 6142025.0, 6142976.209148602, 6143169.285814389, 6143613.170438741, 6143630.350166679, 6143741.329546894, 6143920.971824039, 6144441.089778496, 6144607.535092572, 6144648.4375, 6145079.7401764775, 6145133.740588129, 6145425.911921725, 6145573.4375, 6146358.640736105, 6147318.09003908, 6147530.705614602, 6147546.219721966, 6148813.674512537, 6154187.614771528, 6159275.863491576, 6159503.125, 6159595.279038089, 6159695.3125, 6159703.847267239, 6160351.5625, 6160367.881649338, 6160571.875, 6160599.156353008, 6160667.936344214, 6160718.258223206, 6160721.123806868, 6160817.1875, 6161323.057933785, 6161431.137923726, 6162056.616884552, 6163192.2661114475, 6164429.201611598, 6164981.277516905, 6165082.535165881, 6166822.48557803, 6168037.5, 6169863.962512989, 6169935.958846807, 6171063.406327233, 6171975.899801953, 6174106.368101591, 6174649.093728867, 6174747.789747464, 6175217.165456527, 6175416.978846292, 6176484.375, 6176525.777542427, 6177049.719918158, 6177427.199898464, 6177551.5625, 6177831.661849961, 6178184.375, 6178461.461944498, 6178595.8248598, 6178644.329634005, 6179589.847847832, 6180824.927675571, 6181059.375, 6181479.259092222, 6182996.527197712, 6183937.5, 6184626.414619676, 6185079.382067725, 6185590.089226369, 6186185.238678454, 6187065.590593268, 6187863.183380059, 6188582.76815981, 6189537.22357461, 6190232.410616448, 6190883.892930017, 6191868.601029933, 6192165.724011511, 6194694.489703797, 6195479.666255324, 6195501.5625, 6200346.875, 6201155.025474744, 6207954.6875, 6208698.870364727, 6213535.9375, 6213715.55971587, 6214143.736636068, 6214969.876846979, 6215315.625, 6215765.774342071, 6216211.954679018, 6216313.978914161, 6216910.630772593, 6217026.651094058, 6217068.75, 6217079.6875, 6217170.339408852, 6217259.418025165, 6217403.024149591, 6217444.876437824, 6217477.319338874, 6217480.213737459, 6217492.1875, 6217500.119232283, 6217703.796532034, 6217715.625, 6217787.5, 6217887.5, 6217904.410092704, 6218000.757875325, 6218019.785215274, 6218102.694286745, 6218130.154481723, 6218188.610708526, 6218251.5625, 6218308.2985466765, 6218325.95849407, 6218382.615201265, 6218437.5, 6218535.9375, 6218625.754756819, 6218659.293240592, 6218665.837708183, 6218684.375, 6218731.129014369, 6218795.859435867, 6218921.875, 6218926.5625, 6219000.441545924, 6219028.6415940765, 6219039.0625, 6219046.9855223335, 6219047.413365347, 6219068.501798186, 6219093.614772669, 6219114.053476822, 6219199.770509042, 6219206.25, 6219224.779308199, 6219267.387706723, 6219313.519686419, 6219340.051263233, 6219440.900126738, 6219447.210920697, 6219507.8125, 6219515.006204879, 6219532.8125, 6219649.214977566, 6219762.262313964, 6219807.8125, 6219826.5625, 6219884.375, 6219938.270319409, 6219956.25, 6220015.625, 6220059.00405623, 6220065.625, 6220081.25, 6220097.314857992, 6220104.162307969, 6220113.604929093, 6220159.375, 6220166.638796872, 6220222.247822867, 6220250.571634843, 6220260.542069128, 6220289.0625, 6220306.25, 6220379.728508874, 6220422.436685217, 6220426.5625, 6220434.008838424, 6220460.729582738, 6220520.3125, 6220544.855939825, 6220588.751520605, 6220629.117869925, 6220684.375, 6220694.416195646, 6220748.508063066, 6220848.4375, 6220862.534284073, 6220939.8092569215, 6221034.542142419, 6221051.5625, 6221079.868404854, 6221090.387947905, 6221107.076339977, 6221125.98808795, 6221137.776499647, 6221148.767024802, 6221179.6875, 6221193.101353521, 6221222.42034084, 6221296.103055304, 6221318.348679231, 6221653.358817402, 6221790.625, 6221842.1875, 6221843.546350934, 6222046.875, 6222050.732719901, 6222132.218760425, 6222186.239987023, 6222198.4375, 6222807.8125, 6222872.967948763, 6222934.812220311, 6223017.1875, 6223090.502355713, 6223376.449390445, 6223387.682278759, 6224011.978543639, 6224071.129909568, 6224617.10556711, 6224630.197606656, 6225132.548174309, 6225415.730117132, 6225687.5, 6225737.0064134635, 6226170.436482884, 6226174.936665313, 6227185.031194572, 6227389.267395159, 6227444.04742776, 6228290.898215171, 6228340.625, 6228892.731002795, 6230181.989001495, 6230209.907737773, 6230589.0625, 6234157.964253279, 6239101.0848882245, 6241517.165337548, 6243304.4009158565, 6256078.1407502955, 6264538.254487301, 6265200.0, 6273551.283218764, 6274202.061413272, 6275270.3125, 6275391.817048119, 6276022.218674214, 6276200.0, 6276267.164565279, 6277342.1875, 6277681.042451827, 6277740.625, 6277811.985977055, 6277991.422988207, 6278207.5921129575, 6279701.5625, 6280006.9623395745, 6286805.605326006, 6288721.875, 6321950.0, 6324398.4375, 6324476.595157276, 6325883.983746078, 6327106.857969267, 6327253.543326643, 6327669.056843361, 6328501.5625, 6329010.404874542, 6329685.9375, 6329688.26571763, 6329748.410845992, 6331481.25, 6333103.125, 6333104.6875, 6333231.25, 6333512.096147658, 6334076.0966816535, 6334125.911500805, 6334153.347268938, 6334156.299899222, 6334259.375, 6334266.310837384, 6334269.868103537, 6337593.411717778, 6342509.368953577, 6342760.074619459, 6344778.956903538, 6372720.406017907, 6375202.254097181, 6379767.521170097, 6380610.9375, 6384665.251232219, 6388489.041068641, 6395134.630593305, 6398118.058530055, 6398371.042325517, 6398885.9375, 6398957.8125, 6398989.416477436, 6399127.827931738, 6399633.183050277, 6400034.390091298, 6400112.5, 6400176.86802675, 6400244.888426087, 6400320.149551693, 6400353.125, 6400542.294165029, 6400738.019312203, 6400747.4140640255, 6400760.827221068, 6400981.25, 6401105.909546942, 6401280.275188478, 6401512.761822074, 6401547.710102401, 6401552.501749555, 6401556.25, 6401971.485433948, 6402002.738411438, 6402162.584714561, 6402175.9755020235, 6402226.5625, 6402355.913737945, 6402601.087840355, 6402616.203326768, 6402695.464842473, 6402734.313647046, 6402734.375, 6402741.7371137105, 6402787.45639708, 6402798.4375, 6402800.530473837, 6402823.4375, 6402826.012255165, 6402835.9375, 6402841.791855918, 6402857.192857489, 6402881.200072327, 6402892.79473463, 6402895.3125, 6402930.673329641, 6402940.204070644, 6403031.25, 6403043.75, 6403104.6875, 6403121.484456549, 6403210.9375, 6403222.522838495, 6403241.872900552, 6403358.504604641, 6403468.75, 6403471.875, 6403472.483668983, 6403493.376089564, 6403606.25, 6403617.1875, 6403643.698058494, 6403815.625, 6403815.625, 6403843.0456636, 6403925.726659091, 6403976.836230285, 6403993.4577873815, 6404109.658408993, 6404176.165715389, 6404177.551522649, 6404230.336014197, 6404246.551245634, 6404257.606406353, 6404355.444625844, 6404446.071357911, 6404536.099805966, 6404885.876115256, 6404954.6875, 6404962.5, 6405040.623029581, 6405050.381854097, 6405052.104164734, 6405122.194334129, 6405245.3125, 6405260.655756318, 6405277.212024506, 6405629.5440153545, 6405663.392554618, 6405741.931689742, 6405885.9375, 6406192.1875, 6406198.772243363, 6406273.749087207, 6407364.0625, 6407892.1875, 6408839.224550898, 6409387.5, 6412972.27454569, 6417635.9375, 6419476.130655465, 6431107.074681256, 6436807.8125, 6439061.529161352, 6440403.974625336, 6442391.11569408, 6443146.875, 6451823.912708235, 6453993.640311359, 6454648.333375637, 6454858.839942342, 6455456.25, 6455760.62023423, 6456281.495146699, 6456303.718419072, 6456493.75, 6456799.739272536, 6457437.5, 6458636.327799541, 6459853.305757533, 6460164.255257754, 6461057.551794357, 6461249.93625632, 6461644.957562274, 6462084.413626055, 6464534.092777944, 6464964.566850924, 6465973.519250332, 6466404.060225573, 6466455.511808397, 6468893.697277742, 6474270.116827194, 6474859.2116843285, 6487149.3044045, 6488618.74389371, 6489188.320990944, 6489204.6875, 6490036.254271501, 6490262.5, 6490428.144076591, 6492428.690446681, 6492680.97014903, 6492803.125, 6492847.138485209, 6493009.530809658, 6493193.535946419, 6493208.07130299, 6493381.369001731, 6494162.769462684, 6494270.3125, 6494624.669191013, 6495831.25, 6495874.70561032, 6496360.9375, 6496743.75, 6497457.8125, 6497912.5, 6498710.911906974, 6499277.201153349, 6499437.5, 6500064.52143751, 6500236.503304451, 6501670.3125, 6501994.186678507, 6502707.65341909, 6504014.0162610635, 6505233.437633324, 6506020.584753145, 6506956.096950454, 6507103.125, 6507414.0625, 6508349.494075942, 6508425.586979685, 6508472.267241398, 6509042.676685819, 6510307.808284692, 6510415.652819152, 6510597.7319505345, 6510657.8125, 6511140.6029246375, 6511247.7906365665, 6511362.5, 6511447.081287489, 6511471.800155842, 6511593.013539189, 6511632.483202192, 6511659.788556271, 6511921.740902711, 6511962.489417142, 6512068.1510740975, 6512186.847343276, 6512210.9375, 6512259.113449476, 6512306.25, 6512360.9375, 6512367.1875, 6512593.192508479, ...], [11.167765992438625, 5.994173172650627, 8.99781833168845, 5.545791289521856, 9.119092496265877, 43.486201373268926, 76.22595411083887, 59.895444876677026, 11.51799181297113, 21.034848036561268, 25.76097144379363, 38.36656888981212, 103.13999728600113, 65.37442696954206, 16.589063339154595, 16.05689467386483, 128.27324782206352, 6.854954205028232, 50.47750331184528, 16.96853479055832, 60.33132477868486, 12.181210463714454, 5.469193895463918, 46.24279250127135, 6.957150935850545, 16.879752090780645, 18.41922200715765, 24.001821025577826, 9.40397812960081, 26.105148063034022, 60.230998133505416, 14.888843890591591, 47.68753880293663, 43.293355287581406, 33.64819495445199, 32.39333404413367, 24.252279408154628, 38.59630844835279, 48.02491150842397, 89.0523301301717, 52.66676892849723, 10.581451503047443, 5.166602949414526, 70.14010035889801, 8.879849828617903, 6.440151231356528, 66.80359018423655, 5.5865640162850765, 115.55251747278704, 65.55034308458241, 18.603265208647784, 52.2160288163418, 17.548485553771094, 58.16621881453074, 13.299683947850594, 86.6846223970683, 6.366131944731139, 10.634148508066936, 36.97270905455439, 9.133154867551601, 32.385365600171546, 53.33234842507261, 5.959125104887182, 41.85956926603677, 15.394562808326965, 111.50887735605062, 11.134248808302042, 15.11216276614815, 21.148008703404678, 89.86464847925146, 49.08189463683943, 39.20551282933996, 27.93148655850619, 17.759828018126118, 10.525560339364063, 70.08116091330848, 123.5467557443853, 7.85312527550709, 23.586862076654086, 20.2381629447419, 73.3672176099794, 16.64481161849116, 25.72347872470029, 64.51396666877503, 12.210041602432078, 62.976140395002616, 113.57269013523344, 32.9662121922697, 9.002271238362104, 21.01138620848032, 34.97178362767908, 8.23473495139894, 87.4955910415108, 23.15874526849017, 7.161279473923511, 14.658563365449567, 7.547483449805596, 10.547567996128077, 21.85728373407281, 31.594904031471355, 9.597544793169911, 70.93445694175644, 24.428344071407075, 23.821572301745608, 31.347021859052106, 25.96300958078351, 88.95924249122218, 135.17637491457918, 15.731149469107542, 14.72039098048333, 16.71391987519537, 22.683603939173405, 8.484491996353231, 47.83085323514314, 17.95878178621011, 135.4962858530829, 19.373854666230866, 52.615345315683626, 10.374244963974851, 47.17627101299372, 7.382385666577819, 74.94962623334163, 79.56041941471624, 10.980588604032647, 68.27385521573184, 88.57878624251904, 68.28753918959919, 94.94337878786062, 56.78146513743733, 7.355549622743587, 6.608582844958864, 11.735949565703285, 10.197447223367698, 101.51065828534175, 67.50361427102108, 29.161844596577737, 47.170168734593915, 18.33038983354766, 61.37147817089412, 20.145578785665258, 57.06026571986541, 82.73665893944298, 52.397537206583046, 11.79154919040927, 61.40443200713307, 18.40795758580723, 55.40881289490894, 12.061273207073762, 70.94365028989314, 13.031709375609509, 25.189986942180415, 66.60168099145302, 59.86383122435079, 99.59420384766125, 44.41951505898231, 19.149396790946167, 15.234619631744513, 25.847179799547888, 79.52333034659111, 39.02408152864141, 35.722517506579244, 18.754682334835557, 10.57541402335002, 15.895699121893058, 62.36137432914244, 22.700248588408055, 8.815695203488241, 139.1977414877558, 15.016597154631297, 39.29488987678391, 67.9712683391272, 178.1607893404606, 83.67703907253403, 12.018123170814254, 9.772983673736928, 37.11322091322538, 7.94235530091222, 27.7526652255786, 29.20940387364115, 33.0805909925015, 5.377873541578584, 20.61609254594185, 34.73083396761261, 27.745931215566337, 10.268032527264618, 13.801802750599903, 28.50292738098766, 50.55280317921644, 12.02231329011636, 78.03579629934448, 49.939996820864664, 29.56798815623338, 64.6702325016491, 12.332709108061316, 38.788943779119435, 97.90904973111925, 12.057476613046395, 49.4500834317663, 81.21481842550637, 31.61904126862045, 95.83692896122781, 19.660940644725674, 18.17551382214446, 67.71275492631116, 8.850250442802759, 47.386968026103865, 22.03810265203942, 31.676803157115607, 16.8147723325328, 49.450658337324995, 191.74297819012355, 24.161416651086565, 25.501540862169044, 38.02199195802059, 18.64384744402412, 42.82567427045377, 18.247360008650674, 106.11370135612957, 36.59471764187529, 31.494107323043455, 81.12444196016256, 14.122751207989293, 68.07088941684204, 49.016455514308355, 193.10672271793635, 15.679646912129575, 77.43508480217596, 73.71683012066393, 99.21751938854587, 12.765555362559502, 46.05721955305988, 5.160112227912708, 5.317943751040292, 5.898488793859125, 6.720371497048087, 31.596949224990162, 10.80739569261914, 71.8555733506222, 42.58485376636329, 20.510317499311515, 49.344167538395936, 20.99424880228567, 27.44245113729351, 14.245991840362759, 11.206580162812967, 34.65210951701972, 7.025639555599868, 21.986740228073447, 13.15156425854878, 120.60644848160084, 126.7122295545089, 59.98092508329536, 69.85517911668165, 69.52549135031907, 56.065698077936446, 15.722669827182592, 70.11978981815199, 29.897264979479463, 22.802141891928418, 28.308089645859788, 20.488836236175494, 17.289923289666127, 27.02956175356454, 144.14496348718697, 6.739547141918673, 19.23963258933557, 6.148775551009693, 107.73078789335399, 40.55883303930025, 24.953183878623474, 67.99015069898186, 13.947261892967875, 54.88417053099819, 36.12677973153594, 10.475086995810791, 30.40109566300429, 6.656111346032595, 100.18609025870299, 10.388943395142972, 25.696051474462728, 5.580109643582139, 23.13315528006377, 11.605782154655063, 17.738839453767078, 100.90252940630502, 49.1329524118739, 16.29597072141399, 33.44218042989581, 9.158860073791278, 67.97916167884206, 89.16375473078003, 26.40903755425009, 12.665967130387909, 15.758971006535061, 8.588087673253924, 7.34244353310161, 28.873937825747884, 56.65311326964907, 73.81517674215696, 56.561546487481365, 83.20106752188846, 46.436065895547536, 25.832143146601535, 68.22485772430574, 60.83276810642409, 23.360510297107776, 52.961077004509974, 15.074373017737194, 249.78506101785212, 53.843180593126135, 100.17101823671965, 22.871664236417313, 11.755160387046532, 10.743691129143924, 34.05990537731668, 11.834262519274754, 16.749218506515714, 9.568375357717605, 11.223645224617492, 11.40258716505407, 38.984449509509034, 7.382656670760119, 5.43275108204766, 28.324834795855296, 5.2582649989346315, 5.027544689642794, 131.67735387960863, 14.364838539212924, 12.83431565956011, 17.12745145299579, 14.561726976461497, 61.09919501196565, 57.95000041492255, 242.31535599797792, 15.905898168121928, 157.315978491466, 31.48366682052554, 92.26112317916781, 154.93516600784147, 79.41466782023548, 62.32957246074939, 25.90375326627038, 26.189199176168252, 33.19362701464937, 17.335111020141724, 202.84314061827746, 25.574859543307028, 72.92637536927036, 15.071642811620311, 35.54012875186716, 94.48231425248065, 55.641789826210086, 7.360193182481817, 18.985304158719387, 12.941406351902426, 15.046767265045444, 61.898133446758145, 194.28577282871223, 25.009501401437355, 12.014800757674747, 7.0266567817168815, 11.726158421452906, 79.6656735597184, 52.95593862911726, 52.780250877171746, 99.86108583610694, 15.83539357699246, 7.9000230744962225, 104.77197607303819, 112.47037265300443, 51.20725199369299, 34.67179774643157, 6.141796746231984, 19.17037299354837, 81.77513566293358, 26.588508010086212, 68.2101093714149, 41.10017947035349, 127.18130713577148, 96.6812964328656, 15.66969567379853, 100.44268452074982, 34.655787689727305, 15.790299728730817, 110.67104730682121, 50.42423869093301, 57.67433707722475, 28.90724936472696, 102.55705251199613, 6.921467023368521, 125.1073452459359, 107.97503385912592, 45.51671773138237, 136.04601312416477, 107.1934756957133, 33.802185864776305, 56.43164261340922, 21.41170197139399, 6.7167356985047055, 15.242195951886034, 19.08025943754057, 37.897107524367996, 30.35290183639153, 16.32097504225808, 47.7084867276574, 51.77401647186056, 7.719283110767899, 79.2737625073702, 30.413836594889034, 104.87208682366388, 21.46959261967567, 95.57107145583088, 40.615718053152676, 105.12957631255985, 72.0794617667548, 146.73739231272967, 28.648570376225294, 85.00561170606842, 149.63353166999252, 158.28167274609928, 71.88722784661712, 11.55844004084042, 144.21708598819058, 18.28014763099373, 17.60693426815381, 103.54357445191445, 28.162691019306006, 11.058729871104083, 14.17314552068622, 12.502356304186723, 19.024985529309287, 61.7216227697006, 123.23729610387566, 36.46672150857836, 37.380915321964615, 6.106628333613477, 37.994179889057705, 56.571055146930206, 16.365672299298872, 52.48993035677087, 89.82225340989393, 26.66640284860754, 35.15971848613108, 150.40421468892202, 6.246920235176248, 21.507695081176987, 12.756165631182611, 15.937775956860554, 145.44842692802044, 15.540916290986184, 29.166769939902935, 34.95844379547765, 17.097623276453646, 68.646057051055, 9.093275150838608, 15.648925654186236, 43.58015311115716, 9.744380385662412, 15.864300236417225, 242.59813563375064, 63.8535226867549, 23.437230171739714, 98.89539430727376, 15.270870987503589, 15.684157662886498, 32.81531016291685, 142.094024653826, 55.57139325243675, 5.22409713105882, 45.88108413598931, 34.36470593612708, 7.498828937878657, 84.16316675612343, 8.299084033379355, 28.8137434427083, 57.88525929798552, 41.93665610476861, 22.651065841802236, 34.42457677434238, 73.83293709311992, 31.361286291783117, 14.466187212665758, 7.868872274582386, 66.95100029210211, 63.849189406987776, 14.92174367464262, 5.4368592977584544, 15.938209876319288, 61.149080429979435, 9.94014475517896, 91.92939134953767, 20.7039403663375, 56.89678695798081, 29.01687908865093, 30.61618598435914, 17.946817631273387, 97.98402307616686, 10.491961216886558, 89.37243838740447, 28.514368429206076, 156.63107609100985, 10.225031213733518, 7.685095068066544, 9.341669884360579, 74.41165459257235, 5.603727834205908, 66.89374666010957, 68.10636460439164, 12.168415100835118, 172.92868105293505, 23.092362129544817, 14.577336477242262, 5.491297624275378, 75.88476354285078, 39.661521968598294, 8.66899251646109, 17.0682926905714, 24.043684984195952, 97.75448163410289, 29.64524479951571, 77.55444647430521, 12.931736433904339, 52.65409205734039, 69.66720105293766, 27.716956248724408, 13.206106738103971, 18.28230311194571, 22.68832795900905, 61.13081608839741, 7.9485605649251285, 91.52226022287307, 65.26139608988552, 205.21259959107053, 16.46722815667915, 119.38237749136069, 18.4667634564984, 55.458687589395296, 24.49084206374964, 18.84682048260464, 13.348624023259237, 114.07578615481415, 69.79798070694433, 15.145588194633136, 23.075886389029428, 16.552300349275104, 15.249851116996398, 13.364861252994297, 11.170991625413745, 13.98025483721369, 5.5634662477801085, 125.27502359423691, 26.692799057645693, 13.757955666757105, 90.20644027973701, 12.90149800157747, 87.74460574635232, 5.864185374380242, 59.715072855704534, 28.095895499095977, 24.99217539879312, 65.73048556988276, 17.10943309380687, 13.971602093671823, 8.65508907280764, 83.34116667519268, 16.78401808615522, 37.96360612066651, 107.81673501379133, 48.94299928029964, 23.484524713214775, 69.52632051323829, 6.258103738641302, 71.49315886623101, 43.630805796528215, 143.99883363813996, 34.28056192157386, 77.94757822337495, 9.0858394549182, 21.14351067345422, 20.717642261669894, 95.17219496372863, 18.394265104622722, 27.676855218627615, 10.721480640228265, 58.2996342349294, 56.46615748027228, 32.11183039116807, 6.783435754340083, 6.920750013192857, 6.0858927402767575, 49.63819974809934, 55.39134806062276, 6.832910016669443, 82.60739829559799, 94.27054938172193, 111.7099385893606, 7.579794966480853, 110.61475862890416, 136.34434791661087, 33.542731678263216, 5.7163289154876145, 5.774703710572744, 8.24286486818148, 64.52179296153167, 19.828384892277555, 28.69712731897123, 30.088043096900538, 8.300858621978739, 5.817170633724906, 10.973647060116756, 24.80152597277074, 7.9020078604283555, 9.819880906243775, 86.08863816649163, 19.65740272204274, 23.06352067152344, 55.882075445984036, 37.06090379097927, 44.337210390182776, 31.245590756544146, 53.043826078276766, 5.032768777662617, 13.51989808066114, 11.945527504934617, 89.00334680086542, 33.781551850328135, 17.186213124225738, 124.72410410670344, 163.94707171398204, 30.448987940518915, 83.1975020637923, 118.66528957498919, 67.06577670460668, 102.52375473710525, 82.48019985677858, 30.634838328976358, 108.94956562023826, 34.335104224548886, 71.57824856643508, 32.97627805243671, 5.307315732776001, 88.02348714601598, 5.043411368149583, 122.06062807083319, 24.435736678373154, 37.455653045468985, 14.907228463904286, 14.133446477639342, 53.77734443921045, 45.99180326498983, 7.175093561701329, 31.82433515358038, 22.466705900948625, 5.963728767558352, 8.47258245725581, 40.498791403525786, 20.38462020169103, 55.84161725378755, 14.558477952187928, 105.83658913515504, 86.82536090654348, 85.44853498745435, 33.38320538693794, 31.051374598977844, 29.015344191081002, 69.7612490331973, 30.918875173461586, 101.1850510784962, 81.67145237417768, 9.733248994084173, 5.894937387337596, 10.480638540266929, 54.688179042768795, 13.19460985128335, 5.635008017119327, 58.163693263250565, 57.277654051599725, 31.015232309523476, 67.29709869804316, 14.311507962566768, 17.62388813469717, 38.23283773675866, 6.692542577697489, 25.00282949422272, 71.12309759290562, 47.117725862089, 96.64612831271086, 8.892108593205501, 53.79231674462336, 18.280108457258354, 67.32282779662441, 82.40382773630873, 15.073814494289504, 25.599126673082782, 7.166092559455431, 40.14629811594377, 15.678983080565535, 107.21278698437192, 180.77231084778816, 30.417270485701888, 7.196082685013141, 7.726933942336805, 43.84213376583751, 10.24553060281184, 82.26575437078202, 24.094677746710815, 55.79858442057726, 6.112756425421403, 41.74064079318468, 61.440839374761794, 62.5528992399496, 41.248054434976474, 8.716192794757834, 46.15339048317904, 11.63589297959777, 41.39905461195945, 64.68966476730338, 36.68831590730808, 38.93709029580769, 54.13749373997112, 93.89657474868504, 8.227655305759592, 59.10435805469586, 10.399976474598335, 19.35314540197199, 14.638152583235009, 81.47246435659744, 10.7382422675066, 57.50238432394576, 31.907320973531785, 21.557317423548504, 32.51469437148875, 27.331363071842613, 55.24724780134737, 8.397985171442414, 5.965732723321015, 16.09626904929696, 171.46533525425323, 91.90891454184688, 12.51954533976629, 7.268906626474883, 154.85789521636784, 15.553288794932273, 10.455104795175478, 55.932267597862854, 98.06955198104042, 9.344756540730542, 56.609138566659105, 46.0974497345643, 96.80234795575521, 31.19065365340428, 75.55903975420989, 5.384498360720965, 7.732455402312103, 107.53273729686458, 20.674888114877987, 38.58459125240605, 7.5298572054440935, 35.364236690175964, 74.70976199189852, 8.759038657559207, 34.95003448107767, 103.02530838087948, 41.76121619549512, 76.78027195935252, 98.33639021166479, 41.87768428884525, 61.613408926511134, 171.62006573358892, 35.70982926794746, 17.90672324710678, 11.851240316870392, 36.11712011181451, 114.57271640860955, 171.1990945062358, 76.64597375042555, 26.880604323155225, 27.998453899795866, 69.02528249432709, 50.490318124537474, 67.84420570746572, 34.58925279405561, 88.75071176310838, 68.49333764138034, 54.39932435677701, 11.493858489745183, 45.63769618026612, 68.96771653303696, 9.987487761237192, 22.066306880541923, 175.50173794975024, 123.69868125984078, 18.503875213098954, 7.934646532059808, 22.287044944127157, 79.95080840261727, 22.895325197353785, 47.22514573075997, 90.84380944842968, 14.22315405920606, 11.552186130844747, 110.60239852132554, 18.71236867425214, 55.28569278385374, 34.97435907166337, 16.487371946853287, 9.092242045170783, 8.492758299364745, 9.344196400541472, 49.64380169811082, 39.91956896211545, 22.285484144446052, 8.20224712226703, 62.919293839355625, 15.36427359974295, 7.802521783952456, 24.814997293620106, 46.01378525588341, 112.53711083914229, 5.157507772849966, 21.442429240345906, 7.192020625527203, 10.153786366660121, 74.60251539423314, 40.342355630758746, 13.639028758275323, 44.168463321442125, 15.274541406941047, 26.70113368634747, 110.83150512753973, 71.96077728683832, 191.9517795416683, 38.76561367660278, 9.463627192431897, 38.927739522672, 75.29713374624721, 22.00272469220647, 27.690474886539512, 32.53673811893415, 9.824201267857223, 29.430730756189227, 13.190511940238869, 39.95853513902815, 22.601350687943146, 76.006569148036, 19.896699300362656, 37.67242525385859, 89.18432596881163, 20.760912637470817, 50.08985216215073, 33.89468032625714, 62.03730284374266, 48.03880530575865, 13.636163136700155, 80.70330523890902, 6.15816331706293, 53.318489465836805, 34.10327723887682, 49.357750007183284, 59.996857259204106, 12.234087026389899, 91.14502681698755, 38.4560654461748, 55.61246719980645, 107.08472710339885, 36.688463174547834, 63.23214270210749, 77.07273614191129, 6.167072119616306, 11.584332558921512, 91.56225509604485, 11.601604827969807, 22.588465061949375, 37.95611823432695, 18.16456917951693, 5.448040128892498, 10.8201573832075, 59.14367912357555, 5.368615262005441, 53.05176736722092, 115.81446815254836, 86.85091129332369, 39.31470183014757, 28.486226457617125, 11.782079504709358, 12.094946878563853, 8.462988028705087, 103.5740145456878, 168.14213033605625, 9.948458923811236, 14.421432993131683, 12.883517578039589, 68.97634038324651, 29.080388251201313, 49.07680518616933, 107.76555777506633, 45.20765264463321, 38.386890023589984, 31.18921563832378, 15.597370072689232, 80.51824187089592, 22.239019476600184, 31.439489445456427, 23.00371440978557, 7.931480273468578, 60.1439207675294, 151.57115305716073, 58.89159031398661, 11.992341753639897, 31.82410337579211, 116.29285540862153, 61.35104442519757, 37.15671781735755, 28.97214157219102, 118.96697089321552, 7.040476941197936, 7.187419649243679, 29.959779416707082, 94.10522562395504, 6.061399123839524, 38.44274145584228, 138.11250840539307, 5.405429474711501, 8.391210879726218, 64.5830052640004, 137.50982375253798, 5.684535144878668, 8.307109599615151, 89.6694310493611, 8.57259805014046, 84.23005755348483, 6.1910714476851645, 6.014556638661346, 7.1076612036266855, 7.07094796231667, 107.79298288954175, 19.741171130130812, 106.94961320546328, 19.380565098351333, 60.96678119459378, 26.203153382708308, 55.920687649294315, 19.42599709606978, 12.143767380760318, 132.64247823190667, 36.18729778286962, 16.050843067986737, 223.50759914803155, 14.18392015276814, 23.875526143806862, 11.318952171922863, 12.357583070283399, 109.21405831320769, 23.365018400080388, 31.116803160627057, 34.82964941687646, 42.25516414945883, 48.954886826148545, 73.48297572626277, 88.54191732888218, 22.34319090637007, 142.03567531923773, 84.72023588441321, 17.03628547438558, 37.83581218515184, 52.47175164615574, 30.290109445781912, 206.22207287525475, 62.77452757863533, 25.05130648407241, 9.572730620027542, 62.55830111881071, 41.30778886410966, 74.71242408047115, 5.675298817067701, 144.41255502458642, 9.68665351617963, 106.22698584708311, 92.16077762659773, 30.27973693991389, 109.35947486923293, 81.39950763146304, 40.19297257633258, 6.3902553362135786, 119.8127161709108, 9.512142355136119, 8.247391109378707, 6.624875757972725, 35.67597570399131, 5.845226980107376, 26.12958158544126, 17.200404728162827, 125.52610785763495, 8.834449331409125, 32.91304081376454, 34.36952251802846, 114.40511366516893, 96.06417592796504, 199.58845985215723, 5.438336552237611, ...])
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)