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 = 47198
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);
([3131359.1520729447, 3179854.611333928, 3183373.794182924, 3236763.828316866, 3273739.6620357535, 3391947.996413137, 3397543.1671781195, 3533486.8691928266, 3545377.8794673146, 3548994.212764643, 3551499.2131674765, 3558149.1741025564, 3561576.403328971, 3574517.1608712496, 3593735.788357931, 3595550.1910744943, 3650782.839103879, 3761213.5133177973, 3787842.5834791334, 6322634.375, 7142141.731284403, 7637717.928473163, 7642798.4375, 7643816.405179084, 7662448.035822197, 7668379.95439379, 7680241.006234716, 7689718.40806842, 7690829.6875, 7724467.1875, 7773707.589867441, 7775912.917115873, 7783633.779069546, 8045646.040470746, 8045664.0625, 8070692.1875, 8073571.875, 8074392.130542338, 8074829.059585576, 8078254.276536249, 8078638.451134439, 8079103.383875359, 8084535.304245497, 8086819.026799363, 8106245.3125, 8111633.819824484, 8112473.4375, 8112721.875, 8112813.738743326, 8112911.993517706, 8113176.264378859, 8113373.564932467, 8113708.293888502, 8114207.949412817, 8114296.774761101, 8115096.5632405365, 8119457.8125, 8121062.5, 8125287.59184007, 8127696.875, 8128273.4375, 8130889.212644233, 8131382.090365128, 8131582.863662875, 8131743.660723684, 8132206.25, 8133114.209603175, 8133500.586339278, 8133736.099052501, 8136104.6875, 8137237.719445374, 8137284.6658547595, 8139729.6875, 8144248.408285552, 8145300.328884231, 8150517.765629594, 8159278.868960206, 8160247.140470036, 8161237.5, 8161564.647373969, 8161656.25, 8162220.3125, 8169693.75, 8173671.7825593185, 8173679.449559369, 8174223.4375, 8174672.287001474, 8174722.930404769, 8175240.625, 8175572.720678776, 8176034.375, 8177954.619160015, 8178756.25, 8180147.250315803, 8183946.258280161, 8184754.101428421, 8185417.809769585, 8187435.886246366, 8190458.777556634, 8191779.6875, 8192463.072415261, 8192698.6126763495, 8193131.190097927, 8195788.939012743, 8198216.145629623, 8198368.75, 8198952.35918331, 8199957.845914963, 8200499.902257179, 8200601.860681791, 8202425.0, 8203264.0625, 8210337.225325945, 8211946.539459334, 8214582.8125, 8217810.9375, 8218340.13795565, 8218418.713865021, 8219507.8125, 8223169.861797256, 8223919.126010043, 8227401.3662503045, 8227596.509296544, 8227896.369062357, 8228328.125, 8229844.173432334, 8229846.875, 8230398.101577994, 8230610.905083445, 8230813.429258026, 8230927.701695114, 8231112.287595964, 8231187.394048479, 8231589.916052682, 8231635.456636816, 8232512.804715663, 8232793.75, 8233231.212337646, 8234407.632605518, 8234778.125, 8237750.921952856, 8238400.189629125, 8238462.5, 8239718.027650945, 8240009.915106359, 8240715.635334357, 8241152.930247256, 8241666.648894728, 8242242.1875, 8242395.3125, 8242465.424152977, 8244078.339514927, 8245462.404129115, 8245480.21697857, 8249210.671881616, 8254256.25, 8255618.708444595, 8256836.546378144, 8259335.421820217, 8259924.972184667, 8260278.054605853, 8269476.5625, 8271791.789132961, 8275107.222215039, 8298725.430084546, 8304617.723185804, 8336084.880408136, 8340349.664317401, 8346351.590871507, 8363069.345511196, 8370332.929405029, 8372976.5625, 8373413.290125008, 8373573.4375, 8374767.006971601, 8375396.875, 8375929.6875, 8376275.919477411, 8376676.431556125, 8376975.0, 8376976.5625, 8377053.661330641, 8377092.30641265, 8377335.9375, 8377449.888441958, 8377702.488407256, 8378322.147026007, 8378546.0649895435, 8378788.319015232, 8380068.75, 8380278.299043817, 8382617.616610229, 8383577.935273301, 8386927.461880639, 8392014.0625, 8401613.06450552, 8402718.75, 8403103.074179769, 8404224.78523346, 8406241.389504477, 8408400.0, 8409763.391165098, 8410846.875, 8415009.117026312, 8416103.125, 8416276.5625, 8416771.251767421, 8417089.153411213, 8420420.744246863, 8422239.206815, 8424219.39785427, 8424929.016328707, 8425839.205440314, 8430233.661079412, 8440208.484505797, 8448704.225383254, 8450131.546847181, 8450186.521927543, 8450188.15094285, 8450474.468840973, 8454251.243117113, 8455117.1875, 8462900.774260059, 8462913.550587187, 8465449.923920603, 8470963.929467946, 8473383.89113832, 8483280.86725666, 8484034.901380064, 8484318.75, 8484346.875, 8485385.494779857, 8486114.30937057, 8486585.226228893, 8486663.914186435, 8486877.823371122, 8487023.4375, 8487291.598967751, 8487907.482663296, 8487932.860651424, 8488080.920425931, 8490070.496601116, 8492589.135798745, 8493273.517269809, 8493592.491183965, 8493972.903648434, 8494146.396065148, 8494644.448609848, 8494795.977693155, 8495059.375, 8495637.220066225, 8496256.911926206, 8496469.705161616, 8497120.698118223, 8497514.666401856, 8497923.4375, 8498096.875, 8499839.48528866, 8500304.4966476, 8500522.505489057, 8500850.0, 8500971.875, 8500977.596901193, 8501337.5, 8501741.750252299, 8501908.59515998, 8502190.625, 8502461.096834147, 8502718.126055188, 8502754.6875, 8503043.291826162, 8504150.840395547, 8504153.125, 8504580.39541168, 8504581.25, 8504630.544951918, 8504763.803440213, 8504775.0, 8504870.3125, 8505183.161988681, 8505579.58647607, 8505582.8125, 8505792.1875, 8505859.375, 8505984.375, 8506028.215958841, 8506028.961993119, 8506232.8125, 8506318.67650334, 8506411.102918228, 8506484.242530731, 8506526.125705266, 8506554.6875, 8506565.558063397, 8506633.759884456, 8506732.848054951, 8506748.43818875, 8506792.1875, 8506804.6875, 8506894.001934234, 8506963.88009165, 8506965.43526999, 8507123.4375, 8507275.0, 8507425.577300042, 8507564.978706451, 8507577.234249188, 8507670.3125, 8508417.720660305, 8508450.809223121, 8508465.76880758, 8508642.1875, 8508660.899451004, 8508716.08563134, 8508846.586733844, 8508867.1875, 8508983.899060754, 8509139.73808019, 8509213.169197585, 8509314.168824539, 8509392.138087386, 8509392.473373871, 8509404.871717049, 8509512.082977436, 8509571.086282667, 8509598.942451624, 8509610.9375, 8509705.132227266, 8509747.9384391, 8509761.811216129, 8509809.375, 8509862.5, 8510013.068282507, 8510089.081715044, 8510104.647194454, 8510186.378044795, 8510221.758003335, 8510268.188439425, 8510303.125, 8510323.559964513, 8510392.76408327, 8510409.961862903, 8510456.46566967, 8510516.33575297, 8510590.625, 8510731.979366735, 8510905.418963926, 8511218.75, 8511284.173211617, 8511304.6875, 8511400.0, 8511559.836025713, 8511630.64133503, 8511660.9375, 8511678.125, 8511724.565097434, 8511729.6875, 8511890.625, 8512010.20667114, 8512045.671767635, 8512058.83738211, 8512127.87521186, 8512179.6875, 8512281.034595525, 8512289.0625, 8512318.305440126, 8512340.520443287, 8512400.463848554, 8512467.338952757, 8512523.707275435, 8512526.5625, 8512543.058641728, 8512709.531495344, 8512852.82633354, 8512919.539722718, 8512929.725200955, 8512959.761018375, 8512998.4375, 8513031.25, 8513042.099366264, 8513134.375, 8513153.329456264, 8513153.812463231, 8513182.391373087, 8513256.25, 8513396.875, 8513514.061576026, 8513537.435930006, 8513543.75, 8513643.899557013, 8513656.25, 8513784.835877243, 8513876.5625, 8513879.628875894, 8514208.184123205, 8514421.652827088, 8514456.38197616, 8514617.1875, 8514633.923788788, 8514661.009345332, 8514809.396789113, 8514849.72962177, 8514856.25, 8514860.52992706, 8514860.9375, 8514895.686117165, 8514973.4375, 8515402.05066092, 8515428.125, 8515453.2228995, 8515712.186395522, 8515727.512154134, 8515743.897997132, 8515759.925220113, 8515777.840809472, 8515804.6875, 8515984.626756366, 8516282.050556943, 8516322.495864278, 8516395.814892909, 8516860.436047211, 8516960.169456463, 8517007.021530388, 8517021.7450954, 8517109.207552921, 8517310.446560288, 8517431.555964757, 8517523.4375, 8517549.54899259, 8517752.514229389, 8517800.180802617, 8518010.389036179, 8518035.328014215, 8518045.3125, 8518065.073041927, 8518177.47338431, 8518195.3125, 8518202.2301675, 8518249.198213512, 8518321.875, 8518362.403454244, 8518367.1875, 8518380.411540804, 8518399.738119218, 8518435.601916779, 8518460.922831224, 8518517.1875, 8518590.625, 8518689.551656604, 8518701.793686748, 8519005.974416321, 8519021.690812197, 8519156.308890298, 8519170.0464264, 8519191.9738508, 8519225.0, 8519225.983898742, 8519282.15233218, 8519293.75, 8519356.267335245, 8519538.665119119, 8519545.826790124, 8519548.237941604, 8519628.77103391, 8520138.489920309, 8520386.092984661, 8520414.475494143, 8520439.0625, 8520647.643847194, 8520660.432659596, 8520803.725409316, 8520871.11839552, 8520939.986299187, 8520942.99242106, 8521006.616852563, 8521008.864975128, 8521215.332775943, 8521224.727290463, 8521307.8125, 8521330.120779091, 8521435.336587345, 8521568.818180377, 8521651.910082767, 8521747.768266715, 8522252.181525875, 8522499.925203174, 8522768.63991176, 8522775.018299853, 8522871.283400448, 8523014.0625, 8523084.319286343, 8523132.088493459, 8523245.3125, 8523608.415905494, 8524039.884154212, 8524628.008545414, 8524628.125, 8525100.585988903, 8525851.816582743, 8526352.67152533, 8526391.61383094, 8526403.847961122, 8526447.528620774, 8526578.125, 8526609.2703793, 8526885.147076933, 8527130.23304594, 8527190.110928627, 8527204.6875, 8527451.555179598, 8527977.113033727, 8528061.741692862, 8528400.0, 8528426.108796107, 8528546.893062618, 8528695.3125, 8528824.37491481, 8528961.283858148, 8529353.125, 8529582.341350464, 8529593.895633517, 8530007.381164987, 8531001.51034045, 8531064.0625, 8533101.5625, 8533157.66258668, 8533506.25, 8533825.0, 8533873.76422691, 8534501.5625, 8534796.816181447, 8534949.245025724, 8535110.9375, 8535848.439334195, 8539529.177731566, 8546869.545922674, 8547076.423324866, 8548218.231979549, 8550231.25, 8550473.4375, 8550796.262275321, 8551417.16601173, 8552054.50183999, 8552110.9375, 8552193.75, 8552673.964065459, 8552867.1875, 8553212.255499138, 8553482.8125, 8553548.016191758, 8553750.0, 8553826.133201301, 8553870.3125, 8553935.9375, 8554025.0, 8554290.412662553, 8554328.735377707, 8554370.854073957, 8554487.943249261, 8554569.231040826, 8554722.183504706, 8554785.786206087, 8555075.0, 8555134.506463775, 8555231.728092263, 8555356.25, 8555370.3125, 8555457.680667486, 8555524.876680087, 8555556.885878228, 8555699.594880922, 8555795.559614418, 8555803.063063009, 8555819.923000516, 8555981.25, 8556098.4375, 8556141.212975798, 8556151.419674879, 8556341.292003702, 8556411.769985856, 8556470.42274096, 8556526.557923047, 8556540.40518989, 8556615.625, 8556639.038265599, 8556678.440785157, 8556785.437795686, 8556801.269633986, 8556906.166387672, 8556925.808852226, 8556964.0625, 8556967.029310435, 8556986.041924244, 8557016.46368082, 8557023.4375, 8557056.02079745, 8557246.179585773, 8557379.6875, 8557440.269482914, 8557579.445806134, 8557606.703429379, 8557840.286739636, 8557909.726110606, 8557913.89103578, 8557960.9375, 8557974.025911992, 8558035.4938769, 8558121.875, 8558190.461429495, 8558191.148819001, 8558246.72045994, 8558326.5625, 8558340.625, 8558445.3125, 8558465.062104123, 8558481.872946313, 8558525.0, 8558581.25, 8558586.36368202, 8558638.432615414, 8558670.3125, 8558706.094508663, 8558891.96525522, 8558916.926298399, 8559154.6875, 8559217.1875, 8559321.837219847, 8559440.215685861, 8559446.875, 8559457.295798695, 8559468.75, 8559484.24053298, 8559500.0, 8559613.245460166, 8559683.01165456, 8559709.763285235, 8559729.100027936, 8559820.3125, 8559852.42535364, 8559852.830833469, 8559892.590921309, 8559968.690853631, 8559969.457058355, 8559999.418604264, 8560016.91894884, 8560154.6875, 8560164.847468369, 8560168.297105096, 8560196.785079652, 8560227.134919027, 8560247.41273477, 8560303.848320615, 8560323.733007189, 8560491.866414692, 8560517.702655546, 8560521.029811326, 8560566.034570482, 8560575.98315851, 8560660.352364557, 8560745.904365618, 8560746.875, 8560766.890297212, 8560798.683012111, 8560809.395218423, 8560870.698570939, 8560873.4375, 8560879.6875, 8560904.621180363, 8560997.447034232, 8561036.308781905, 8561051.5625, 8561053.467556218, 8561077.878433116, 8561117.1875, 8561146.555252071, 8561187.5, 8561206.25, 8561230.755579395, 8561238.654490586, 8561257.8125, 8561275.724873956, 8561280.281027822, 8561284.814330414, 8561292.1875, 8561305.724443365, 8561334.569731684, 8561337.70913994, 8561371.560943728, 8561390.967295595, 8561396.015380649, 8561436.984652435, 8561438.461299421, 8561455.749833487, 8561463.266350504, 8561468.231855765, 8561468.75, 8561487.5, 8561493.41441098, 8561509.375, 8561593.727424629, 8561593.75, 8561610.6012415, 8561664.872317761, 8561683.459455634, 8561715.868405806, 8561736.988463232, 8561740.126998844, 8561740.171191322, 8561750.0, 8561754.027712284, 8561764.0625, 8561771.749223283, 8561778.125, 8561787.488334564, 8561790.625, 8561800.749455048, 8561801.5625, 8561806.077175943, 8561807.555594634, 8561846.875, 8561880.367384443, 8561881.614401693, 8561890.928398179, 8561900.0, 8561921.17776489, 8561930.456015866, 8561934.130144114, 8561960.9375, 8561985.9375, 8562057.926904727, 8562070.3125, 8562074.684419636, 8562096.829491775, 8562105.249334656, 8562111.026235813, 8562130.149854736, 8562198.249200752, 8562236.22165998, 8562238.014629241, 8562282.8125, 8562283.830894, 8562307.310883667, 8562332.486201342, 8562338.744128153, 8562339.0625, 8562382.302739697, 8562391.423382709, 8562449.67141578, 8562459.49734305, 8562472.75782597, 8562493.503876971, 8562498.108036494, 8562583.510417065, 8562585.191762537, 8562592.1875, 8562618.651600162, 8562632.8125, 8562637.165433852, 8562658.331461657, 8562672.162368642, 8562683.857544294, 8562684.450640889, 8562688.700325917, 8562729.42913656, 8562732.309875863, 8562739.0625, 8562756.60907261, 8562759.375, 8562782.330808606, 8562803.125, 8562880.23478991, 8562882.8125, 8562911.848574502, 8562929.0025035, 8562932.8125, 8562942.1875, 8562948.4375, 8562950.434161006, 8562954.6875, 8562980.030252805, 8562993.334314512, 8563015.511091959, 8563039.645684632, 8563040.625, 8563043.454784226, 8563070.3125, 8563112.43885889, 8563121.874929499, 8563132.8125, 8563162.5, 8563176.5625, 8563185.56768341, 8563212.59122083, 8563218.309525954, 8563221.06778201, 8563238.211859064, 8563243.516497403, 8563250.0, 8563292.202850604, 8563303.125, 8563321.459529135, 8563353.125, 8563356.25, 8563356.802997654, 8563363.822486931, 8563382.350801144, 8563384.375, 8563388.549088595, 8563435.286528884, 8563446.231512504, 8563487.5, 8563497.477977451, 8563525.313760404, 8563544.22512918, 8563560.358750846, 8563575.99427965, 8563618.567080574, 8563663.638104113, 8563669.026784247, 8563687.792886423, 8563696.458417889, 8563701.95843812, 8563704.86086434, 8563712.955865227, 8563790.48974179, 8563806.25, 8563830.1722946, 8563848.4375, 8563883.832673071, 8563910.511798576, 8563925.0, 8563930.478397327, 8563940.94389023, 8563970.014850391, 8563970.3125, 8563974.95253204, 8563992.306993729, 8563995.090740046, 8563998.174531607, 8564044.396158148, 8564071.875, 8564073.394849662, 8564107.088087361, 8564116.743147682, 8564267.1875, 8564277.593437742, 8564282.70292584, 8564290.46767435, 8564303.334036624, 8564371.569191933, 8564381.26650927, 8564447.214996293, 8564447.754684983, 8564458.928985875, 8564462.5, 8564533.830994232, 8564551.827413337, 8564564.708402453, 8564623.740384301, 8564658.565930225, 8564659.375, 8564660.935838902, 8564670.006734189, 8564681.25, 8564689.268287312, 8564692.065252222, 8564760.9375, 8564764.643091511, 8564840.625, 8564874.51105643, 8564880.880024752, 8564928.125, 8564936.742732283, 8564937.5, 8564957.642542746, 8565000.558550857, 8565019.355720848, 8565040.319599185, 8565080.577300511, 8565100.0, 8565109.31769873, 8565142.825793311, 8565226.750652708, 8565269.13662937, 8565310.283543484, 8565323.558079459, 8565332.697202168, 8565342.135383723, 8565357.8125, 8565400.820747811, 8565412.305252783, 8565451.5625, 8565542.13974787, 8565714.0625, 8565726.5625, 8565765.741569594, 8565885.9375, 8565893.75, 8565897.124662032, 8565918.75, 8565932.8125, 8565979.473133903, 8565998.139718955, 8566008.999450043, 8566018.599425392, 8566120.432274394, 8566140.260709492, 8566145.866303897, 8566159.142529463, 8566203.711862179, 8566214.0625, 8566257.289488949, 8566278.125, 8566404.025191544, 8566412.5, 8566451.403486896, 8566451.702019135, 8566467.843910938, 8566514.0625, 8566537.45917417, 8566542.616094343, 8566579.83282089, 8566591.140957316, 8566609.004200563, 8566613.433230646, 8566676.5625, 8566737.128520919, 8566740.27936928, 8566778.948642474, 8566815.241920479, 8566826.228306754, 8566832.8125, 8566835.236544596, 8566867.219928827, 8566879.404614173, 8566893.758820513, 8566894.943685042, 8566909.375, 8566987.260651235, 8567048.812203651, 8567074.520489285, 8567120.3125, 8567199.230103878, 8567203.408507423, 8567259.333465543, 8567273.4375, 8567285.9375, 8567350.0, 8567365.644134142, 8567420.779462263, 8567455.630702216, 8567466.585035773, 8567471.062701236, 8567479.6875, 8567508.380331978, 8567576.82921598, 8567649.945404323, 8567769.277162302, 8567783.30087841, 8567885.9375, 8567932.180734992, 8567942.961393528, 8567979.6875, 8568033.979506984, 8568034.375, 8568046.013121275, 8568053.568976754, 8568078.125, 8568106.968961334, 8568221.875, 8568286.094982004, 8568350.0, 8568393.75, 8568416.460814182, 8568459.95125754, 8568478.125, 8568534.375, 8568619.137002492, 8568620.3125, 8568712.696959268, 8568723.4375, 8568734.375, 8568910.880257066, 8568921.158725914, 8569016.457437929, 8569122.336147498, 8569226.5625, 8569342.392362282, 8569354.6875, 8569630.251885373, 8569662.5, 8569734.375, 8570192.1875, 8570209.810655996, 8570211.961964553, 8570318.289517483, 8570389.0625, 8570470.401042191, 8570970.69317719, 8571254.780060168, ...], [52.86246983544086, 14.658935333449671, 108.94814579984906, 8.166501779433048, 23.161354093560675, 10.501800873844093, 7.405218321543651, 12.98152557841786, 33.23652914166916, 5.736856444402095, 44.31552977243042, 11.485640108492479, 64.45073066238575, 7.593634829231498, 67.10253736163695, 15.723497394248243, 5.708453243678054, 21.01612136540067, 6.13026885854012, 45.90998504425649, 38.62048455901729, 31.539248995956402, 61.70291693168952, 12.614073050920435, 25.822240639717585, 9.567755257519861, 36.62324658586654, 5.68533673824392, 42.43767319193029, 32.841678531268194, 24.792007803357745, 9.71089374187052, 10.308578341215135, 38.60081646385838, 55.943818317819975, 42.13576072590064, 38.70345100242208, 14.72876847788944, 37.85609969894439, 10.54085212805381, 13.031050671856626, 22.965025468228102, 13.46335435209835, 16.996843130738366, 28.713170435794964, 13.177431440407327, 57.35826064063632, 43.492062315224246, 8.122481563603609, 5.033110834659193, 23.77477117977931, 21.14393251992724, 37.0392589460161, 80.91579588322037, 65.4185712932697, 23.60168407458866, 40.40249548081816, 102.09032154055218, 5.8208070412979245, 90.66311785625373, 91.82751430284993, 8.367604752081755, 19.530650864352957, 11.208630580431509, 18.868046284391625, 94.37809623222644, 82.66359283963561, 40.24256938429045, 11.389975494420401, 74.3528544218556, 24.571104098596685, 16.179527131724104, 54.2057289928195, 27.959493564924344, 20.697986672570252, 36.28802699462902, 18.850590902905807, 74.34154775033245, 74.89943796849806, 112.70264940525999, 89.12036694466514, 82.54995053990162, 31.39320196356182, 14.600498450560739, 35.82290126923198, 47.06974637319637, 16.78481373275258, 10.417923823730339, 46.767119481089736, 22.787044070881542, 31.7899231919482, 27.242017509786272, 57.287008570593315, 12.683465817979265, 13.017354786936652, 65.55402077587821, 17.99656134854254, 70.62720774720306, 20.573171174541557, 60.31488421714751, 17.688402989124498, 11.413022003901316, 93.27659330367176, 23.058261745114045, 86.25892166310283, 88.07588079859433, 29.727389867014733, 6.492342107017763, 24.04298946271645, 30.110659691312165, 71.8219937683258, 46.38029729146527, 68.11764726164044, 18.197094324607573, 40.943989260343855, 54.68454390492141, 21.62332068558902, 27.82933232127407, 42.50692612115676, 29.85784198537117, 11.771115911668794, 14.242780936181052, 22.946248748342928, 21.43407286480444, 119.15907506006391, 33.487293178660565, 32.85291032815074, 9.062645039239783, 6.084734655203827, 20.259508870773814, 22.293884510750733, 26.071796439777692, 17.734192332703667, 12.78803672284737, 30.969600377541227, 16.245781753488572, 28.84004115064973, 47.62704908585562, 53.94322100023248, 64.12671047390612, 10.255130619365225, 20.771120959201596, 49.78634559941817, 74.27094132173889, 7.8110089682244235, 5.814745315859299, 10.836355143708202, 58.41515714757344, 135.86161121601083, 53.89717186586431, 21.900416432536396, 140.48283324597978, 7.096476116551101, 35.63604348294145, 90.21468779225512, 121.6924517598421, 27.728382396963603, 17.91239785165759, 50.82613598857129, 106.37755826902738, 6.749533828744615, 90.70381435813985, 22.57061697966309, 30.088994520313438, 67.61098867732117, 10.657020029365173, 12.021681792954762, 13.799788467045191, 8.301637854698802, 78.69050127407326, 66.45084357376167, 67.90087496629931, 68.73730983378798, 38.01384897813278, 21.007740053164696, 30.230836210952052, 69.79433956682308, 56.47237442926925, 193.80283926689552, 35.06810722694432, 56.15274252472553, 6.145707080622377, 21.215062426815805, 97.43685425978299, 26.49850777275911, 82.3578020718924, 9.572519563911298, 40.17617321898183, 6.014051596446306, 41.44657652881894, 15.649147196838133, 50.03465370351628, 81.00226528374274, 12.900450663301147, 86.13091989590863, 17.640784854197484, 149.655798846611, 27.5578284996407, 92.26915110371272, 89.49925286173406, 101.74152782041037, 29.657260606060596, 69.41405354137301, 129.24580674464895, 98.84927393130121, 79.02586041443963, 20.345982633667518, 15.299724676005273, 16.889380949625142, 5.5401258392437045, 35.55300303121578, 43.172675734829156, 15.515836065037556, 27.201005403044405, 18.31849746027543, 48.03582379054835, 5.547663029816035, 12.183175122826869, 22.779180433050545, 11.864927877080216, 8.124607515806504, 83.94781504125089, 19.03047242284035, 19.920603055802815, 7.575950899188276, 10.925946664914122, 61.64099474125641, 36.52717225956107, 21.8328265165798, 51.36256724071695, 80.2553298087184, 22.084183109144114, 114.15839318525505, 64.73759340049094, 45.897791542718366, 8.133261720134339, 46.05295962435746, 8.878852077009178, 46.733686938307436, 11.203814021286316, 10.64888185861436, 14.112441580539762, 36.40991170191648, 9.399776320687499, 163.0687752320561, 23.625137346181432, 105.81599808831821, 77.32451553114973, 9.965233162269975, 32.13467837637517, 59.730873591649825, 18.25203338122374, 31.279082632916122, 154.78941440762244, 59.66821886206491, 166.09177061406808, 50.009918170528486, 149.726226813027, 100.81042877434142, 9.928214342849229, 78.4931899851781, 34.14543013445012, 26.396081914559176, 47.42186510094336, 151.18730252211014, 265.19774771094774, 84.88840921178145, 15.585706793971536, 12.998942036616693, 55.82081244202293, 78.55169231919048, 12.756306068462314, 199.79925115815576, 55.90531588988803, 31.052050007784363, 7.945891876269287, 7.512152611919344, 56.40890035565287, 46.03364252821407, 11.721764219302981, 10.973388012323927, 42.32666930925596, 65.85759881541641, 56.03697630662058, 67.26836992360708, 11.272921345860775, 19.504314093120684, 40.07885931622057, 14.668583908856826, 135.22477505176755, 6.074431066284633, 13.502549110110463, 141.3111276305643, 14.692372017156744, 26.81140202137685, 9.361648933267135, 42.24951779211041, 44.73782890640051, 32.17037436879259, 6.814867624981138, 9.181786491300466, 39.84933837767111, 75.36040060795281, 28.980793431639096, 5.42101198954264, 52.29220885176053, 5.652320233578012, 115.43624471992695, 16.14877766159429, 7.924722097130294, 18.49492958007818, 38.096815062240545, 14.798440928884132, 17.045550683192996, 8.139801514409564, 34.99643126895086, 116.3921835822113, 12.378104995582737, 47.90476241668587, 11.29806783794737, 107.3615484838264, 8.443767921795816, 56.29890543900626, 10.532957859564622, 35.126369015089146, 9.798275641805212, 118.15968311963607, 7.772417868887622, 85.45743519641005, 85.5794979275733, 31.370838091803787, 60.02457409652654, 17.663480588796496, 15.015257471285437, 42.26785914696386, 109.48516675245548, 44.11213707998553, 5.583714733493647, 41.12294645510031, 15.42977757292127, 17.713632580068662, 38.882305444541565, 15.832612998341064, 12.455936568891039, 46.770098495402664, 19.580654932558634, 39.40213905067567, 95.6919393858944, 36.66870877864647, 68.26255093416079, 81.10521370276516, 9.754224386950389, 13.037975008769536, 43.71582618643493, 39.59471047278137, 8.988884786861163, 93.04598974678653, 112.44832102220948, 19.462932503902724, 7.7385612194590685, 21.12587383334193, 58.24325459531722, 66.63676774515969, 92.57544447282746, 73.50058627587939, 28.24791146690123, 26.615662723783885, 11.939384615556236, 15.552007522394769, 22.28099500408791, 60.78039556098446, 19.77532366089308, 12.44275895823862, 41.76666411341282, 7.916232830749676, 388.79300229611215, 11.789911544474043, 58.43508615216855, 88.95852093521592, 26.895393876109775, 66.24265346829743, 7.6788986808478095, 78.10800281718123, 8.999012181743408, 59.85229803901764, 97.22024180267394, 28.50692713040075, 27.318194028814535, 176.42991826342362, 15.543931796589979, 32.85358673507274, 28.99521418240844, 71.3393504811481, 14.722672631615817, 18.85891038755326, 78.57645993127521, 15.46958904339113, 61.565384600504444, 10.488785926248765, 5.945686766038455, 9.349895306836586, 5.520100562712959, 35.52764665303601, 22.467472636372253, 46.72057506326345, 35.93543519745389, 47.51588500052, 11.987313186037104, 52.549776929267736, 15.32826464961626, 57.69102373566269, 10.288201620011447, 15.53729553844286, 105.25145256558314, 23.954808427421646, 134.73439291059537, 15.996549296655058, 44.95059587668778, 18.182317077020954, 8.571407580157732, 6.995591882211986, 10.107540040465286, 19.010525610490067, 5.928171928305122, 14.339508730511865, 10.438241060977363, 16.251788804090552, 61.50175409108081, 7.447873680562432, 35.03063467389808, 6.800147323264918, 70.38013837183975, 5.66903643861376, 57.14301328887435, 13.185962542727841, 20.103180937484744, 43.99614533421226, 5.652080736391008, 82.33161575118693, 49.03135151744887, 41.4320397121686, 49.96642900430061, 12.485733893241635, 14.029209265783525, 13.80009009032472, 93.88550249956751, 81.15495255267965, 142.07333360699366, 12.788877914040512, 5.544406960851973, 39.90605092751614, 25.352102971041056, 7.137018652486188, 154.55843871773382, 93.49449514667214, 77.76990879294536, 65.77940632439048, 20.031459499026322, 77.13519075266503, 32.24432722261275, 43.90493026269114, 35.04585492491039, 25.12453119452643, 98.10607891591593, 94.43701566928772, 11.37975920137034, 19.851962002381164, 73.85430896404573, 15.08644215463588, 13.312808828748766, 52.163883218626964, 19.265664946742117, 16.59969116630778, 5.660182348825977, 7.741539145483354, 6.0366198006722085, 12.245363602051007, 7.507494032098404, 82.08121489283171, 118.51160047893538, 10.302562180436109, 9.389726674252367, 5.212368648391881, 77.85074615811976, 8.643507179151495, 83.74091308008944, 64.63329787990097, 241.95503685441702, 32.82107749586479, 109.75454442103619, 27.468746519607407, 63.78216875703535, 71.25805029734333, 17.878300720275693, 10.138403394108108, 26.417302162928205, 52.46386381779131, 17.770918163494308, 18.320640033767628, 27.76169166595607, 21.223150366544942, 36.20795208102167, 12.330264524804253, 37.02428469562288, 26.614586418187987, 12.574382327917412, 12.102872636030169, 21.353869905357943, 48.6413752260384, 31.125622058500856, 32.51634839991167, 19.252815072404424, 72.01078789830147, 13.012238648637968, 15.01080551914218, 59.90118001157165, 20.329906688797855, 85.37751956739596, 52.2323463649045, 29.23427297069933, 24.7141873799914, 13.518121341341388, 117.65175811442765, 75.62119451590075, 77.14967015075507, 14.399322817388526, 64.78873535315797, 54.79864049349771, 13.907608727809624, 36.56485773052361, 58.25709098153405, 44.989023708316154, 60.56452736650958, 6.487378795334663, 93.71750692107503, 19.19071369743638, 10.916919070506129, 16.746337424205933, 68.17358596823891, 69.81981374179733, 20.437779470274382, 35.587782920405694, 14.278126033781236, 57.20616655670295, 34.102671342469904, 110.79832958718796, 35.627462703359825, 33.06189864247934, 36.25535937341684, 46.081716217340784, 62.03984077252687, 81.05995220423448, 33.061175311034894, 29.322847868274568, 41.008716696382784, 9.158089540954288, 111.97033968921133, 9.83555379899748, 5.847521394316218, 59.85533412344944, 38.111447915917466, 54.74523698611666, 65.08768370624844, 6.283951985950698, 74.94090369276623, 161.49981973197526, 34.416762018882345, 14.461756873085136, 184.4858520425491, 43.08639756305968, 22.494851834721153, 70.65544383359779, 57.29637254501836, 5.193610936902974, 70.49605303376491, 58.67339464240138, 17.783082283897084, 25.990000836589903, 18.285434846806414, 12.737344922610392, 49.31116256075631, 28.434818017394033, 24.83211016666092, 83.47594576839234, 28.05405417610536, 16.299228329182306, 113.7957746859574, 6.7064134889492255, 46.128285033301445, 19.288031745401696, 82.44624722286893, 10.88913242249382, 105.29749902636051, 164.68359633251572, 120.9905137274788, 34.100874198829146, 142.9114171782227, 31.57680469461957, 180.83284421303205, 9.135070119600876, 62.27554685456362, 10.637173421751852, 136.93576897792312, 91.08585413725628, 37.48817157937865, 17.785755694308012, 29.24862884245736, 58.1950097536738, 25.665296281159343, 17.401114587540192, 25.805435111615807, 45.16057501428392, 62.7491090746399, 56.74218137446141, 13.157027707800324, 9.920232830426116, 44.79381780436498, 46.401131348874316, 17.719079395603107, 170.94693076249317, 71.1108421372772, 10.893061169949345, 24.79750819481635, 10.742584351051196, 48.4196930584141, 30.722150373531033, 27.79860065684334, 121.24918552475827, 177.42254428857896, 108.19191427968208, 71.37519994956264, 59.414862391302265, 67.07925435758155, 18.822713479136343, 29.03188962021085, 11.794181911113085, 20.662750821239115, 120.6976607430141, 28.00143322465548, 23.825543245216735, 31.262340068489564, 27.40666275386842, 18.55465796188542, 8.88384799677568, 65.70213145610927, 31.41687742486701, 115.82687398282928, 10.486626852264802, 212.84779939803963, 16.524277377600896, 84.97031104772705, 84.06336869700876, 14.929329552989806, 32.472463095130635, 42.008434150182225, 18.625251058408153, 58.226282829651794, 10.328697782112508, 8.881228643147445, 21.321532150418093, 77.250225576379, 82.76704241886321, 14.760544846034108, 57.104208247125605, 114.50332981143637, 145.03800683276216, 104.93833886522131, 106.24141996102614, 24.069221452528918, 5.972404590473215, 57.51368637396276, 82.90140357560745, 23.948547934731398, 42.79565420237131, 31.02895989934633, 85.60230972526415, 55.281846221470275, 28.754348139848364, 10.544708750696264, 42.76405933285047, 38.83756549363009, 9.889319564680864, 91.81475449224786, 79.54836853741881, 27.32143062235592, 8.39231105714723, 11.856743179238752, 23.57283756234131, 89.81889568629414, 17.769076388916098, 5.379131575434646, 25.41199017484541, 30.019484265506875, 51.93568072167292, 97.07551272591121, 43.94486611017837, 85.59535962263098, 7.486208947944759, 32.60828379664318, 101.98686932819902, 63.50138227809923, 23.772737265630262, 21.229254291329116, 27.725967145447544, 95.15752447030107, 71.76435295442008, 145.361291529058, 131.04958714934986, 34.553877264939764, 85.29413027286657, 76.69374968943336, 26.264335048732868, 67.05733162484754, 27.860146906384827, 106.64297226066553, 18.851180448259854, 50.869463170418115, 14.397418190944222, 66.71217321157735, 43.10511242476307, 8.682111857192009, 11.749433840401775, 74.51047452328174, 34.5681202859736, 18.645452589413534, 18.98856010908337, 6.063001183404347, 86.3297016470527, 33.55124597788982, 15.396265111705345, 119.96287930667086, 7.492950936296825, 76.07623407445149, 12.136312942057167, 28.9763308815361, 17.054991498363975, 25.290743625846158, 9.583818281710784, 17.348171474963113, 53.61453918619944, 28.304704511786603, 112.4172737656681, 23.42052648913378, 23.518869564012174, 89.55269705116436, 29.8455294326262, 79.16307912990436, 90.94729931267317, 97.74652691836609, 179.0064403867023, 24.464237450499102, 94.09129901616703, 12.427358856493793, 10.132828116133734, 65.12150715145853, 5.338561148363343, 38.10394324456753, 23.31902538244072, 12.048907386839593, 28.41070788829183, 82.83072863949006, 15.237873933343103, 5.091394051646738, 91.9950766886238, 30.283013399907325, 43.01657555148848, 11.739522480328738, 45.48321984060537, 199.91464491458902, 73.37007405371347, 22.62046324789746, 29.206696610572067, 12.929615701531123, 19.8268855461912, 35.89290678736587, 65.3999124026886, 79.11386717943907, 16.902286361926993, 48.79477402202284, 16.431465701807056, 97.55681973985405, 6.252913382614594, 178.84273053179083, 52.22971560838064, 105.9534834929165, 31.615033418788414, 232.55570421533088, 9.33134356313034, 35.85846640760701, 77.1622510883119, 46.30251017754689, 49.4897277594703, 6.781855779191508, 22.108192027130293, 12.556659842903537, 94.28089880505154, 24.639017490957244, 45.718667011887426, 6.489500267709506, 56.56061038748692, 10.534977717323306, 36.093344313679175, 105.75391998319307, 44.06914408342412, 142.86898345893738, 21.88387704064457, 40.75157493927596, 26.31780449315939, 7.383620531180033, 20.171957290128976, 44.51128057511157, 17.875641029607547, 9.611586777098163, 147.36023507362498, 5.505636181075367, 86.53188649887551, 14.287314380487375, 93.45679862809956, 32.593853978080816, 5.965324241520563, 91.3698142721126, 43.92367249292158, 5.469257056775637, 57.625312376720004, 7.55503886498243, 28.862380535112486, 99.4794390049934, 40.24213331726503, 99.29132706719767, 19.776384336425785, 71.46402726940559, 19.153229979327065, 69.57719832290023, 20.384571487678627, 181.94530628267367, 175.29216173262023, 15.417401488851107, 24.804389296378847, 24.23558220866745, 102.38296449088381, 49.155346785987795, 15.823694509505408, 6.179816137783781, 94.19393997134608, 42.82242454291736, 24.942825320423143, 125.6817807235233, 73.8180100193134, 16.437382293673615, 23.67683406749783, 18.849761246162668, 5.728743426775656, 6.184619245860093, 27.593354771230437, 98.89113372399908, 36.728398163887576, 8.431818796727825, 18.147664860459248, 15.224702559238459, 18.879618264074026, 67.20769244110797, 65.63038405160509, 13.891466384191936, 122.08110446211816, 7.176618400522502, 14.495168755222478, 37.60609754395202, 94.3771016331994, 109.7310270065595, 8.949576890072663, 43.872004285856995, 152.3791254980832, 6.012737935017064, 39.27520651680641, 5.336131404556464, 17.60516015567016, 9.902090497780804, 88.82332037055741, 6.185791030542855, 40.46679122866948, 54.884391928100946, 80.08350459688918, 24.330103425201223, 16.652979069452382, 12.905049432864729, 16.156913470576242, 14.51953413556282, 8.25920831816843, 97.37782138516496, 29.023881398465416, 19.42258822149106, 40.598618212793085, 27.614032303184064, 40.54973108986106, 41.27718805912192, 7.645950151602415, 32.38304392322342, 170.02568989764956, 6.299265225555716, 78.87206660511994, 85.94314692866453, 69.85654733480052, 20.395349083524028, 49.389637574693175, 23.07739739975768, 163.22481562895064, 7.028873923557567, 5.989130117371548, 9.142278747617873, 16.130208570145523, 69.72103070939197, 44.99362524850356, 55.126088280004694, 20.013609286124634, 38.414837242517805, 95.53763222051283, 70.53913252057632, 15.762573457403711, 116.78278907071888, 34.97040125554967, 38.9839477445586, 8.36495012393065, 198.86918024954014, 54.487510335938524, 12.985422426141358, 36.03944030629865, 55.228275066972884, 31.034727744809047, 41.45918735490814, 44.27022193259027, 33.20158484196681, 40.897472743345986, 19.698185560547383, 64.2905039902161, 31.12675567194941, 14.975236002111952, 22.90980081761591, 71.75048601396225, 14.10148543881861, 16.591972414748852, 60.33752828026938, 72.05045833886841, 180.6025002618821, 16.14470519480729, 11.063400504445736, 43.772177990618474, 55.447320908256714, 61.272139781555495, 34.137881790466196, 8.549980831049817, 23.615460945973346, 31.49848035290036, 29.148940758393334, 53.41948900519252, 17.660769318434063, 16.06588750292304, 27.489038394870473, 7.805720944109546, 76.30712040880869, 125.84440414774214, 74.15404383514952, 7.909371262009026, 48.41863533898989, 22.6030587951217, 36.60338362971566, 26.69998020316408, 16.955033375719843, 70.43374812351944, 7.324203309885121, 66.56398266323284, 82.54721331767138, 34.87371780813536, 54.28066724394629, 20.38989097382909, 17.711657455604648, 132.432845277614, 106.96048327099646, 28.684643342022945, 30.68521596336492, 154.4761991573796, 95.35867801739131, 43.85320594704618, 65.45714303852054, 7.940942006831385, 10.15073208148122, 36.29784918378974, 106.57629022713857, 9.510848797021003, 97.63879755987332, 21.450790957858743, 104.47646995248168, 82.84006051384507, 33.125416306590445, 160.44335519673203, 94.61554022369435, 32.08594892761752, 54.29764436209491, 11.268982938933737, 17.278087470921122, 21.296477257838006, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3131359.1520729447, 3179854.611333928, 3183373.794182924, 3236763.828316866, 3273739.6620357535, 3391947.996413137, 3397543.1671781195, 3533486.8691928266, 3545377.8794673146, 3548994.212764643, 3551499.2131674765, 3558149.1741025564, 3561576.403328971, 3574517.1608712496, 3593735.788357931, 3595550.1910744943, 3650782.839103879, 3761213.5133177973, 3787842.5834791334, 6322634.375, 7142141.731284403, 7637717.928473163, 7642798.4375, 7643816.405179084, 7662448.035822197, 7668379.95439379, 7680241.006234716, 7689718.40806842, 7690829.6875, 7724467.1875, 7773707.589867441, 7775912.917115873, 7783633.779069546, 8045646.040470746, 8045664.0625, 8070692.1875, 8073571.875, 8074392.130542338, 8074829.059585576, 8078254.276536249, 8078638.451134439, 8079103.383875359, 8084535.304245497, 8086819.026799363, 8106245.3125, 8111633.819824484, 8112473.4375, 8112721.875, 8112813.738743326, 8112911.993517706, 8113176.264378859, 8113373.564932467, 8113708.293888502, 8114207.949412817, 8114296.774761101, 8115096.5632405365, 8119457.8125, 8121062.5, 8125287.59184007, 8127696.875, 8128273.4375, 8130889.212644233, 8131382.090365128, 8131582.863662875, 8131743.660723684, 8132206.25, 8133114.209603175, 8133500.586339278, 8133736.099052501, 8136104.6875, 8137237.719445374, 8137284.6658547595, 8139729.6875, 8144248.408285552, 8145300.328884231, 8150517.765629594, 8159278.868960206, 8160247.140470036, 8161237.5, 8161564.647373969, 8161656.25, 8162220.3125, 8169693.75, 8173671.7825593185, 8173679.449559369, 8174223.4375, 8174672.287001474, 8174722.930404769, 8175240.625, 8175572.720678776, 8176034.375, 8177954.619160015, 8178756.25, 8180147.250315803, 8183946.258280161, 8184754.101428421, 8185417.809769585, 8187435.886246366, 8190458.777556634, 8191779.6875, 8192463.072415261, 8192698.6126763495, 8193131.190097927, 8195788.939012743, 8198216.145629623, 8198368.75, 8198952.35918331, 8199957.845914963, 8200499.902257179, 8200601.860681791, 8202425.0, 8203264.0625, 8210337.225325945, 8211946.539459334, 8214582.8125, 8217810.9375, 8218340.13795565, 8218418.713865021, 8219507.8125, 8223169.861797256, 8223919.126010043, 8227401.3662503045, 8227596.509296544, 8227896.369062357, 8228328.125, 8229844.173432334, 8229846.875, 8230398.101577994, 8230610.905083445, 8230813.429258026, 8230927.701695114, 8231112.287595964, 8231187.394048479, 8231589.916052682, 8231635.456636816, 8232512.804715663, 8232793.75, 8233231.212337646, 8234407.632605518, 8234778.125, 8237750.921952856, 8238400.189629125, 8238462.5, 8239718.027650945, 8240009.915106359, 8240715.635334357, 8241152.930247256, 8241666.648894728, 8242242.1875, 8242395.3125, 8242465.424152977, 8244078.339514927, 8245462.404129115, 8245480.21697857, 8249210.671881616, 8254256.25, 8255618.708444595, 8256836.546378144, 8259335.421820217, 8259924.972184667, 8260278.054605853, 8269476.5625, 8271791.789132961, 8275107.222215039, 8298725.430084546, 8304617.723185804, 8336084.880408136, 8340349.664317401, 8346351.590871507, 8363069.345511196, 8370332.929405029, 8372976.5625, 8373413.290125008, 8373573.4375, 8374767.006971601, 8375396.875, 8375929.6875, 8376275.919477411, 8376676.431556125, 8376975.0, 8376976.5625, 8377053.661330641, 8377092.30641265, 8377335.9375, 8377449.888441958, 8377702.488407256, 8378322.147026007, 8378546.0649895435, 8378788.319015232, 8380068.75, 8380278.299043817, 8382617.616610229, 8383577.935273301, 8386927.461880639, 8392014.0625, 8401613.06450552, 8402718.75, 8403103.074179769, 8404224.78523346, 8406241.389504477, 8408400.0, 8409763.391165098, 8410846.875, 8415009.117026312, 8416103.125, 8416276.5625, 8416771.251767421, 8417089.153411213, 8420420.744246863, 8422239.206815, 8424219.39785427, 8424929.016328707, 8425839.205440314, 8430233.661079412, 8440208.484505797, 8448704.225383254, 8450131.546847181, 8450186.521927543, 8450188.15094285, 8450474.468840973, 8454251.243117113, 8455117.1875, 8462900.774260059, 8462913.550587187, 8465449.923920603, 8470963.929467946, 8473383.89113832, 8483280.86725666, 8484034.901380064, 8484318.75, 8484346.875, 8485385.494779857, 8486114.30937057, 8486585.226228893, 8486663.914186435, 8486877.823371122, 8487023.4375, 8487291.598967751, 8487907.482663296, 8487932.860651424, 8488080.920425931, 8490070.496601116, 8492589.135798745, 8493273.517269809, 8493592.491183965, 8493972.903648434, 8494146.396065148, 8494644.448609848, 8494795.977693155, 8495059.375, 8495637.220066225, 8496256.911926206, 8496469.705161616, 8497120.698118223, 8497514.666401856, 8497923.4375, 8498096.875, 8499839.48528866, 8500304.4966476, 8500522.505489057, 8500850.0, 8500971.875, 8500977.596901193, 8501337.5, 8501741.750252299, 8501908.59515998, 8502190.625, 8502461.096834147, 8502718.126055188, 8502754.6875, 8503043.291826162, 8504150.840395547, 8504153.125, 8504580.39541168, 8504581.25, 8504630.544951918, 8504763.803440213, 8504775.0, 8504870.3125, 8505183.161988681, 8505579.58647607, 8505582.8125, 8505792.1875, 8505859.375, 8505984.375, 8506028.215958841, 8506028.961993119, 8506232.8125, 8506318.67650334, 8506411.102918228, 8506484.242530731, 8506526.125705266, 8506554.6875, 8506565.558063397, 8506633.759884456, 8506732.848054951, 8506748.43818875, 8506792.1875, 8506804.6875, 8506894.001934234, 8506963.88009165, 8506965.43526999, 8507123.4375, 8507275.0, 8507425.577300042, 8507564.978706451, 8507577.234249188, 8507670.3125, 8508417.720660305, 8508450.809223121, 8508465.76880758, 8508642.1875, 8508660.899451004, 8508716.08563134, 8508846.586733844, 8508867.1875, 8508983.899060754, 8509139.73808019, 8509213.169197585, 8509314.168824539, 8509392.138087386, 8509392.473373871, 8509404.871717049, 8509512.082977436, 8509571.086282667, 8509598.942451624, 8509610.9375, 8509705.132227266, 8509747.9384391, 8509761.811216129, 8509809.375, 8509862.5, 8510013.068282507, 8510089.081715044, 8510104.647194454, 8510186.378044795, 8510221.758003335, 8510268.188439425, 8510303.125, 8510323.559964513, 8510392.76408327, 8510409.961862903, 8510456.46566967, 8510516.33575297, 8510590.625, 8510731.979366735, 8510905.418963926, 8511218.75, 8511284.173211617, 8511304.6875, 8511400.0, 8511559.836025713, 8511630.64133503, 8511660.9375, 8511678.125, 8511724.565097434, 8511729.6875, 8511890.625, 8512010.20667114, 8512045.671767635, 8512058.83738211, 8512127.87521186, 8512179.6875, 8512281.034595525, 8512289.0625, 8512318.305440126, 8512340.520443287, 8512400.463848554, 8512467.338952757, 8512523.707275435, 8512526.5625, 8512543.058641728, 8512709.531495344, 8512852.82633354, 8512919.539722718, 8512929.725200955, 8512959.761018375, 8512998.4375, 8513031.25, 8513042.099366264, 8513134.375, 8513153.329456264, 8513153.812463231, 8513182.391373087, 8513256.25, 8513396.875, 8513514.061576026, 8513537.435930006, 8513543.75, 8513643.899557013, 8513656.25, 8513784.835877243, 8513876.5625, 8513879.628875894, 8514208.184123205, 8514421.652827088, 8514456.38197616, 8514617.1875, 8514633.923788788, 8514661.009345332, 8514809.396789113, 8514849.72962177, 8514856.25, 8514860.52992706, 8514860.9375, 8514895.686117165, 8514973.4375, 8515402.05066092, 8515428.125, 8515453.2228995, 8515712.186395522, 8515727.512154134, 8515743.897997132, 8515759.925220113, 8515777.840809472, 8515804.6875, 8515984.626756366, 8516282.050556943, 8516322.495864278, 8516395.814892909, 8516860.436047211, 8516960.169456463, 8517007.021530388, 8517021.7450954, 8517109.207552921, 8517310.446560288, 8517431.555964757, 8517523.4375, 8517549.54899259, 8517752.514229389, 8517800.180802617, 8518010.389036179, 8518035.328014215, 8518045.3125, 8518065.073041927, 8518177.47338431, 8518195.3125, 8518202.2301675, 8518249.198213512, 8518321.875, 8518362.403454244, 8518367.1875, 8518380.411540804, 8518399.738119218, 8518435.601916779, 8518460.922831224, 8518517.1875, 8518590.625, 8518689.551656604, 8518701.793686748, 8519005.974416321, 8519021.690812197, 8519156.308890298, 8519170.0464264, 8519191.9738508, 8519225.0, 8519225.983898742, 8519282.15233218, 8519293.75, 8519356.267335245, 8519538.665119119, 8519545.826790124, 8519548.237941604, 8519628.77103391, 8520138.489920309, 8520386.092984661, 8520414.475494143, 8520439.0625, 8520647.643847194, 8520660.432659596, 8520803.725409316, 8520871.11839552, 8520939.986299187, 8520942.99242106, 8521006.616852563, 8521008.864975128, 8521215.332775943, 8521224.727290463, 8521307.8125, 8521330.120779091, 8521435.336587345, 8521568.818180377, 8521651.910082767, 8521747.768266715, 8522252.181525875, 8522499.925203174, 8522768.63991176, 8522775.018299853, 8522871.283400448, 8523014.0625, 8523084.319286343, 8523132.088493459, 8523245.3125, 8523608.415905494, 8524039.884154212, 8524628.008545414, 8524628.125, 8525100.585988903, 8525851.816582743, 8526352.67152533, 8526391.61383094, 8526403.847961122, 8526447.528620774, 8526578.125, 8526609.2703793, 8526885.147076933, 8527130.23304594, 8527190.110928627, 8527204.6875, 8527451.555179598, 8527977.113033727, 8528061.741692862, 8528400.0, 8528426.108796107, 8528546.893062618, 8528695.3125, 8528824.37491481, 8528961.283858148, 8529353.125, 8529582.341350464, 8529593.895633517, 8530007.381164987, 8531001.51034045, 8531064.0625, 8533101.5625, 8533157.66258668, 8533506.25, 8533825.0, 8533873.76422691, 8534501.5625, 8534796.816181447, 8534949.245025724, 8535110.9375, 8535848.439334195, 8539529.177731566, 8546869.545922674, 8547076.423324866, 8548218.231979549, 8550231.25, 8550473.4375, 8550796.262275321, 8551417.16601173, 8552054.50183999, 8552110.9375, 8552193.75, 8552673.964065459, 8552867.1875, 8553212.255499138, 8553482.8125, 8553548.016191758, 8553750.0, 8553826.133201301, 8553870.3125, 8553935.9375, 8554025.0, 8554290.412662553, 8554328.735377707, 8554370.854073957, 8554487.943249261, 8554569.231040826, 8554722.183504706, 8554785.786206087, 8555075.0, 8555134.506463775, 8555231.728092263, 8555356.25, 8555370.3125, 8555457.680667486, 8555524.876680087, 8555556.885878228, 8555699.594880922, 8555795.559614418, 8555803.063063009, 8555819.923000516, 8555981.25, 8556098.4375, 8556141.212975798, 8556151.419674879, 8556341.292003702, 8556411.769985856, 8556470.42274096, 8556526.557923047, 8556540.40518989, 8556615.625, 8556639.038265599, 8556678.440785157, 8556785.437795686, 8556801.269633986, 8556906.166387672, 8556925.808852226, 8556964.0625, 8556967.029310435, 8556986.041924244, 8557016.46368082, 8557023.4375, 8557056.02079745, 8557246.179585773, 8557379.6875, 8557440.269482914, 8557579.445806134, 8557606.703429379, 8557840.286739636, 8557909.726110606, 8557913.89103578, 8557960.9375, 8557974.025911992, 8558035.4938769, 8558121.875, 8558190.461429495, 8558191.148819001, 8558246.72045994, 8558326.5625, 8558340.625, 8558445.3125, 8558465.062104123, 8558481.872946313, 8558525.0, 8558581.25, 8558586.36368202, 8558638.432615414, 8558670.3125, 8558706.094508663, 8558891.96525522, 8558916.926298399, 8559154.6875, 8559217.1875, 8559321.837219847, 8559440.215685861, 8559446.875, 8559457.295798695, 8559468.75, 8559484.24053298, 8559500.0, 8559613.245460166, 8559683.01165456, 8559709.763285235, 8559729.100027936, 8559820.3125, 8559852.42535364, 8559852.830833469, 8559892.590921309, 8559968.690853631, 8559969.457058355, 8559999.418604264, 8560016.91894884, 8560154.6875, 8560164.847468369, 8560168.297105096, 8560196.785079652, 8560227.134919027, 8560247.41273477, 8560303.848320615, 8560323.733007189, 8560491.866414692, 8560517.702655546, 8560521.029811326, 8560566.034570482, 8560575.98315851, 8560660.352364557, 8560745.904365618, 8560746.875, 8560766.890297212, 8560798.683012111, 8560809.395218423, 8560870.698570939, 8560873.4375, 8560879.6875, 8560904.621180363, 8560997.447034232, 8561036.308781905, 8561051.5625, 8561053.467556218, 8561077.878433116, 8561117.1875, 8561146.555252071, 8561187.5, 8561206.25, 8561230.755579395, 8561238.654490586, 8561257.8125, 8561275.724873956, 8561280.281027822, 8561284.814330414, 8561292.1875, 8561305.724443365, 8561334.569731684, 8561337.70913994, 8561371.560943728, 8561390.967295595, 8561396.015380649, 8561436.984652435, 8561438.461299421, 8561455.749833487, 8561463.266350504, 8561468.231855765, 8561468.75, 8561487.5, 8561493.41441098, 8561509.375, 8561593.727424629, 8561593.75, 8561610.6012415, 8561664.872317761, 8561683.459455634, 8561715.868405806, 8561736.988463232, 8561740.126998844, 8561740.171191322, 8561750.0, 8561754.027712284, 8561764.0625, 8561771.749223283, 8561778.125, 8561787.488334564, 8561790.625, 8561800.749455048, 8561801.5625, 8561806.077175943, 8561807.555594634, 8561846.875, 8561880.367384443, 8561881.614401693, 8561890.928398179, 8561900.0, 8561921.17776489, 8561930.456015866, 8561934.130144114, 8561960.9375, 8561985.9375, 8562057.926904727, 8562070.3125, 8562074.684419636, 8562096.829491775, 8562105.249334656, 8562111.026235813, 8562130.149854736, 8562198.249200752, 8562236.22165998, 8562238.014629241, 8562282.8125, 8562283.830894, 8562307.310883667, 8562332.486201342, 8562338.744128153, 8562339.0625, 8562382.302739697, 8562391.423382709, 8562449.67141578, 8562459.49734305, 8562472.75782597, 8562493.503876971, 8562498.108036494, 8562583.510417065, 8562585.191762537, 8562592.1875, 8562618.651600162, 8562632.8125, 8562637.165433852, 8562658.331461657, 8562672.162368642, 8562683.857544294, 8562684.450640889, 8562688.700325917, 8562729.42913656, 8562732.309875863, 8562739.0625, 8562756.60907261, 8562759.375, 8562782.330808606, 8562803.125, 8562880.23478991, 8562882.8125, 8562911.848574502, 8562929.0025035, 8562932.8125, 8562942.1875, 8562948.4375, 8562950.434161006, 8562954.6875, 8562980.030252805, 8562993.334314512, 8563015.511091959, 8563039.645684632, 8563040.625, 8563043.454784226, 8563070.3125, 8563112.43885889, 8563121.874929499, 8563132.8125, 8563162.5, 8563176.5625, 8563185.56768341, 8563212.59122083, 8563218.309525954, 8563221.06778201, 8563238.211859064, 8563243.516497403, 8563250.0, 8563292.202850604, 8563303.125, 8563321.459529135, 8563353.125, 8563356.25, 8563356.802997654, 8563363.822486931, 8563382.350801144, 8563384.375, 8563388.549088595, 8563435.286528884, 8563446.231512504, 8563487.5, 8563497.477977451, 8563525.313760404, 8563544.22512918, 8563560.358750846, 8563575.99427965, 8563618.567080574, 8563663.638104113, 8563669.026784247, 8563687.792886423, 8563696.458417889, 8563701.95843812, 8563704.86086434, 8563712.955865227, 8563790.48974179, 8563806.25, 8563830.1722946, 8563848.4375, 8563883.832673071, 8563910.511798576, 8563925.0, 8563930.478397327, 8563940.94389023, 8563970.014850391, 8563970.3125, 8563974.95253204, 8563992.306993729, 8563995.090740046, 8563998.174531607, 8564044.396158148, 8564071.875, 8564073.394849662, 8564107.088087361, 8564116.743147682, 8564267.1875, 8564277.593437742, 8564282.70292584, 8564290.46767435, 8564303.334036624, 8564371.569191933, 8564381.26650927, 8564447.214996293, 8564447.754684983, 8564458.928985875, 8564462.5, 8564533.830994232, 8564551.827413337, 8564564.708402453, 8564623.740384301, 8564658.565930225, 8564659.375, 8564660.935838902, 8564670.006734189, 8564681.25, 8564689.268287312, 8564692.065252222, 8564760.9375, 8564764.643091511, 8564840.625, 8564874.51105643, 8564880.880024752, 8564928.125, 8564936.742732283, 8564937.5, 8564957.642542746, 8565000.558550857, 8565019.355720848, 8565040.319599185, 8565080.577300511, 8565100.0, 8565109.31769873, 8565142.825793311, 8565226.750652708, 8565269.13662937, 8565310.283543484, 8565323.558079459, 8565332.697202168, 8565342.135383723, 8565357.8125, 8565400.820747811, 8565412.305252783, 8565451.5625, 8565542.13974787, 8565714.0625, 8565726.5625, 8565765.741569594, 8565885.9375, 8565893.75, 8565897.124662032, 8565918.75, 8565932.8125, 8565979.473133903, 8565998.139718955, 8566008.999450043, 8566018.599425392, 8566120.432274394, 8566140.260709492, 8566145.866303897, 8566159.142529463, 8566203.711862179, 8566214.0625, 8566257.289488949, 8566278.125, 8566404.025191544, 8566412.5, 8566451.403486896, 8566451.702019135, 8566467.843910938, 8566514.0625, 8566537.45917417, 8566542.616094343, 8566579.83282089, 8566591.140957316, 8566609.004200563, 8566613.433230646, 8566676.5625, 8566737.128520919, 8566740.27936928, 8566778.948642474, 8566815.241920479, 8566826.228306754, 8566832.8125, 8566835.236544596, 8566867.219928827, 8566879.404614173, 8566893.758820513, 8566894.943685042, 8566909.375, 8566987.260651235, 8567048.812203651, 8567074.520489285, 8567120.3125, 8567199.230103878, 8567203.408507423, 8567259.333465543, 8567273.4375, 8567285.9375, 8567350.0, 8567365.644134142, 8567420.779462263, 8567455.630702216, 8567466.585035773, 8567471.062701236, 8567479.6875, 8567508.380331978, 8567576.82921598, 8567649.945404323, 8567769.277162302, 8567783.30087841, 8567885.9375, 8567932.180734992, 8567942.961393528, 8567979.6875, 8568033.979506984, 8568034.375, 8568046.013121275, 8568053.568976754, 8568078.125, 8568106.968961334, 8568221.875, 8568286.094982004, 8568350.0, 8568393.75, 8568416.460814182, 8568459.95125754, 8568478.125, 8568534.375, 8568619.137002492, 8568620.3125, 8568712.696959268, 8568723.4375, 8568734.375, 8568910.880257066, 8568921.158725914, 8569016.457437929, 8569122.336147498, 8569226.5625, 8569342.392362282, 8569354.6875, 8569630.251885373, 8569662.5, 8569734.375, 8570192.1875, 8570209.810655996, 8570211.961964553, 8570318.289517483, 8570389.0625, 8570470.401042191, 8570970.69317719, 8571254.780060168, ...], [52.86246983544086, 14.658935333449671, 108.94814579984906, 8.166501779433048, 23.161354093560675, 10.501800873844093, 7.405218321543651, 12.98152557841786, 33.23652914166916, 5.736856444402095, 44.31552977243042, 11.485640108492479, 64.45073066238575, 7.593634829231498, 67.10253736163695, 15.723497394248243, 5.708453243678054, 21.01612136540067, 6.13026885854012, 45.90998504425649, 38.62048455901729, 31.539248995956402, 61.70291693168952, 12.614073050920435, 25.822240639717585, 9.567755257519861, 36.62324658586654, 5.68533673824392, 42.43767319193029, 32.841678531268194, 24.792007803357745, 9.71089374187052, 10.308578341215135, 38.60081646385838, 55.943818317819975, 42.13576072590064, 38.70345100242208, 14.72876847788944, 37.85609969894439, 10.54085212805381, 13.031050671856626, 22.965025468228102, 13.46335435209835, 16.996843130738366, 28.713170435794964, 13.177431440407327, 57.35826064063632, 43.492062315224246, 8.122481563603609, 5.033110834659193, 23.77477117977931, 21.14393251992724, 37.0392589460161, 80.91579588322037, 65.4185712932697, 23.60168407458866, 40.40249548081816, 102.09032154055218, 5.8208070412979245, 90.66311785625373, 91.82751430284993, 8.367604752081755, 19.530650864352957, 11.208630580431509, 18.868046284391625, 94.37809623222644, 82.66359283963561, 40.24256938429045, 11.389975494420401, 74.3528544218556, 24.571104098596685, 16.179527131724104, 54.2057289928195, 27.959493564924344, 20.697986672570252, 36.28802699462902, 18.850590902905807, 74.34154775033245, 74.89943796849806, 112.70264940525999, 89.12036694466514, 82.54995053990162, 31.39320196356182, 14.600498450560739, 35.82290126923198, 47.06974637319637, 16.78481373275258, 10.417923823730339, 46.767119481089736, 22.787044070881542, 31.7899231919482, 27.242017509786272, 57.287008570593315, 12.683465817979265, 13.017354786936652, 65.55402077587821, 17.99656134854254, 70.62720774720306, 20.573171174541557, 60.31488421714751, 17.688402989124498, 11.413022003901316, 93.27659330367176, 23.058261745114045, 86.25892166310283, 88.07588079859433, 29.727389867014733, 6.492342107017763, 24.04298946271645, 30.110659691312165, 71.8219937683258, 46.38029729146527, 68.11764726164044, 18.197094324607573, 40.943989260343855, 54.68454390492141, 21.62332068558902, 27.82933232127407, 42.50692612115676, 29.85784198537117, 11.771115911668794, 14.242780936181052, 22.946248748342928, 21.43407286480444, 119.15907506006391, 33.487293178660565, 32.85291032815074, 9.062645039239783, 6.084734655203827, 20.259508870773814, 22.293884510750733, 26.071796439777692, 17.734192332703667, 12.78803672284737, 30.969600377541227, 16.245781753488572, 28.84004115064973, 47.62704908585562, 53.94322100023248, 64.12671047390612, 10.255130619365225, 20.771120959201596, 49.78634559941817, 74.27094132173889, 7.8110089682244235, 5.814745315859299, 10.836355143708202, 58.41515714757344, 135.86161121601083, 53.89717186586431, 21.900416432536396, 140.48283324597978, 7.096476116551101, 35.63604348294145, 90.21468779225512, 121.6924517598421, 27.728382396963603, 17.91239785165759, 50.82613598857129, 106.37755826902738, 6.749533828744615, 90.70381435813985, 22.57061697966309, 30.088994520313438, 67.61098867732117, 10.657020029365173, 12.021681792954762, 13.799788467045191, 8.301637854698802, 78.69050127407326, 66.45084357376167, 67.90087496629931, 68.73730983378798, 38.01384897813278, 21.007740053164696, 30.230836210952052, 69.79433956682308, 56.47237442926925, 193.80283926689552, 35.06810722694432, 56.15274252472553, 6.145707080622377, 21.215062426815805, 97.43685425978299, 26.49850777275911, 82.3578020718924, 9.572519563911298, 40.17617321898183, 6.014051596446306, 41.44657652881894, 15.649147196838133, 50.03465370351628, 81.00226528374274, 12.900450663301147, 86.13091989590863, 17.640784854197484, 149.655798846611, 27.5578284996407, 92.26915110371272, 89.49925286173406, 101.74152782041037, 29.657260606060596, 69.41405354137301, 129.24580674464895, 98.84927393130121, 79.02586041443963, 20.345982633667518, 15.299724676005273, 16.889380949625142, 5.5401258392437045, 35.55300303121578, 43.172675734829156, 15.515836065037556, 27.201005403044405, 18.31849746027543, 48.03582379054835, 5.547663029816035, 12.183175122826869, 22.779180433050545, 11.864927877080216, 8.124607515806504, 83.94781504125089, 19.03047242284035, 19.920603055802815, 7.575950899188276, 10.925946664914122, 61.64099474125641, 36.52717225956107, 21.8328265165798, 51.36256724071695, 80.2553298087184, 22.084183109144114, 114.15839318525505, 64.73759340049094, 45.897791542718366, 8.133261720134339, 46.05295962435746, 8.878852077009178, 46.733686938307436, 11.203814021286316, 10.64888185861436, 14.112441580539762, 36.40991170191648, 9.399776320687499, 163.0687752320561, 23.625137346181432, 105.81599808831821, 77.32451553114973, 9.965233162269975, 32.13467837637517, 59.730873591649825, 18.25203338122374, 31.279082632916122, 154.78941440762244, 59.66821886206491, 166.09177061406808, 50.009918170528486, 149.726226813027, 100.81042877434142, 9.928214342849229, 78.4931899851781, 34.14543013445012, 26.396081914559176, 47.42186510094336, 151.18730252211014, 265.19774771094774, 84.88840921178145, 15.585706793971536, 12.998942036616693, 55.82081244202293, 78.55169231919048, 12.756306068462314, 199.79925115815576, 55.90531588988803, 31.052050007784363, 7.945891876269287, 7.512152611919344, 56.40890035565287, 46.03364252821407, 11.721764219302981, 10.973388012323927, 42.32666930925596, 65.85759881541641, 56.03697630662058, 67.26836992360708, 11.272921345860775, 19.504314093120684, 40.07885931622057, 14.668583908856826, 135.22477505176755, 6.074431066284633, 13.502549110110463, 141.3111276305643, 14.692372017156744, 26.81140202137685, 9.361648933267135, 42.24951779211041, 44.73782890640051, 32.17037436879259, 6.814867624981138, 9.181786491300466, 39.84933837767111, 75.36040060795281, 28.980793431639096, 5.42101198954264, 52.29220885176053, 5.652320233578012, 115.43624471992695, 16.14877766159429, 7.924722097130294, 18.49492958007818, 38.096815062240545, 14.798440928884132, 17.045550683192996, 8.139801514409564, 34.99643126895086, 116.3921835822113, 12.378104995582737, 47.90476241668587, 11.29806783794737, 107.3615484838264, 8.443767921795816, 56.29890543900626, 10.532957859564622, 35.126369015089146, 9.798275641805212, 118.15968311963607, 7.772417868887622, 85.45743519641005, 85.5794979275733, 31.370838091803787, 60.02457409652654, 17.663480588796496, 15.015257471285437, 42.26785914696386, 109.48516675245548, 44.11213707998553, 5.583714733493647, 41.12294645510031, 15.42977757292127, 17.713632580068662, 38.882305444541565, 15.832612998341064, 12.455936568891039, 46.770098495402664, 19.580654932558634, 39.40213905067567, 95.6919393858944, 36.66870877864647, 68.26255093416079, 81.10521370276516, 9.754224386950389, 13.037975008769536, 43.71582618643493, 39.59471047278137, 8.988884786861163, 93.04598974678653, 112.44832102220948, 19.462932503902724, 7.7385612194590685, 21.12587383334193, 58.24325459531722, 66.63676774515969, 92.57544447282746, 73.50058627587939, 28.24791146690123, 26.615662723783885, 11.939384615556236, 15.552007522394769, 22.28099500408791, 60.78039556098446, 19.77532366089308, 12.44275895823862, 41.76666411341282, 7.916232830749676, 388.79300229611215, 11.789911544474043, 58.43508615216855, 88.95852093521592, 26.895393876109775, 66.24265346829743, 7.6788986808478095, 78.10800281718123, 8.999012181743408, 59.85229803901764, 97.22024180267394, 28.50692713040075, 27.318194028814535, 176.42991826342362, 15.543931796589979, 32.85358673507274, 28.99521418240844, 71.3393504811481, 14.722672631615817, 18.85891038755326, 78.57645993127521, 15.46958904339113, 61.565384600504444, 10.488785926248765, 5.945686766038455, 9.349895306836586, 5.520100562712959, 35.52764665303601, 22.467472636372253, 46.72057506326345, 35.93543519745389, 47.51588500052, 11.987313186037104, 52.549776929267736, 15.32826464961626, 57.69102373566269, 10.288201620011447, 15.53729553844286, 105.25145256558314, 23.954808427421646, 134.73439291059537, 15.996549296655058, 44.95059587668778, 18.182317077020954, 8.571407580157732, 6.995591882211986, 10.107540040465286, 19.010525610490067, 5.928171928305122, 14.339508730511865, 10.438241060977363, 16.251788804090552, 61.50175409108081, 7.447873680562432, 35.03063467389808, 6.800147323264918, 70.38013837183975, 5.66903643861376, 57.14301328887435, 13.185962542727841, 20.103180937484744, 43.99614533421226, 5.652080736391008, 82.33161575118693, 49.03135151744887, 41.4320397121686, 49.96642900430061, 12.485733893241635, 14.029209265783525, 13.80009009032472, 93.88550249956751, 81.15495255267965, 142.07333360699366, 12.788877914040512, 5.544406960851973, 39.90605092751614, 25.352102971041056, 7.137018652486188, 154.55843871773382, 93.49449514667214, 77.76990879294536, 65.77940632439048, 20.031459499026322, 77.13519075266503, 32.24432722261275, 43.90493026269114, 35.04585492491039, 25.12453119452643, 98.10607891591593, 94.43701566928772, 11.37975920137034, 19.851962002381164, 73.85430896404573, 15.08644215463588, 13.312808828748766, 52.163883218626964, 19.265664946742117, 16.59969116630778, 5.660182348825977, 7.741539145483354, 6.0366198006722085, 12.245363602051007, 7.507494032098404, 82.08121489283171, 118.51160047893538, 10.302562180436109, 9.389726674252367, 5.212368648391881, 77.85074615811976, 8.643507179151495, 83.74091308008944, 64.63329787990097, 241.95503685441702, 32.82107749586479, 109.75454442103619, 27.468746519607407, 63.78216875703535, 71.25805029734333, 17.878300720275693, 10.138403394108108, 26.417302162928205, 52.46386381779131, 17.770918163494308, 18.320640033767628, 27.76169166595607, 21.223150366544942, 36.20795208102167, 12.330264524804253, 37.02428469562288, 26.614586418187987, 12.574382327917412, 12.102872636030169, 21.353869905357943, 48.6413752260384, 31.125622058500856, 32.51634839991167, 19.252815072404424, 72.01078789830147, 13.012238648637968, 15.01080551914218, 59.90118001157165, 20.329906688797855, 85.37751956739596, 52.2323463649045, 29.23427297069933, 24.7141873799914, 13.518121341341388, 117.65175811442765, 75.62119451590075, 77.14967015075507, 14.399322817388526, 64.78873535315797, 54.79864049349771, 13.907608727809624, 36.56485773052361, 58.25709098153405, 44.989023708316154, 60.56452736650958, 6.487378795334663, 93.71750692107503, 19.19071369743638, 10.916919070506129, 16.746337424205933, 68.17358596823891, 69.81981374179733, 20.437779470274382, 35.587782920405694, 14.278126033781236, 57.20616655670295, 34.102671342469904, 110.79832958718796, 35.627462703359825, 33.06189864247934, 36.25535937341684, 46.081716217340784, 62.03984077252687, 81.05995220423448, 33.061175311034894, 29.322847868274568, 41.008716696382784, 9.158089540954288, 111.97033968921133, 9.83555379899748, 5.847521394316218, 59.85533412344944, 38.111447915917466, 54.74523698611666, 65.08768370624844, 6.283951985950698, 74.94090369276623, 161.49981973197526, 34.416762018882345, 14.461756873085136, 184.4858520425491, 43.08639756305968, 22.494851834721153, 70.65544383359779, 57.29637254501836, 5.193610936902974, 70.49605303376491, 58.67339464240138, 17.783082283897084, 25.990000836589903, 18.285434846806414, 12.737344922610392, 49.31116256075631, 28.434818017394033, 24.83211016666092, 83.47594576839234, 28.05405417610536, 16.299228329182306, 113.7957746859574, 6.7064134889492255, 46.128285033301445, 19.288031745401696, 82.44624722286893, 10.88913242249382, 105.29749902636051, 164.68359633251572, 120.9905137274788, 34.100874198829146, 142.9114171782227, 31.57680469461957, 180.83284421303205, 9.135070119600876, 62.27554685456362, 10.637173421751852, 136.93576897792312, 91.08585413725628, 37.48817157937865, 17.785755694308012, 29.24862884245736, 58.1950097536738, 25.665296281159343, 17.401114587540192, 25.805435111615807, 45.16057501428392, 62.7491090746399, 56.74218137446141, 13.157027707800324, 9.920232830426116, 44.79381780436498, 46.401131348874316, 17.719079395603107, 170.94693076249317, 71.1108421372772, 10.893061169949345, 24.79750819481635, 10.742584351051196, 48.4196930584141, 30.722150373531033, 27.79860065684334, 121.24918552475827, 177.42254428857896, 108.19191427968208, 71.37519994956264, 59.414862391302265, 67.07925435758155, 18.822713479136343, 29.03188962021085, 11.794181911113085, 20.662750821239115, 120.6976607430141, 28.00143322465548, 23.825543245216735, 31.262340068489564, 27.40666275386842, 18.55465796188542, 8.88384799677568, 65.70213145610927, 31.41687742486701, 115.82687398282928, 10.486626852264802, 212.84779939803963, 16.524277377600896, 84.97031104772705, 84.06336869700876, 14.929329552989806, 32.472463095130635, 42.008434150182225, 18.625251058408153, 58.226282829651794, 10.328697782112508, 8.881228643147445, 21.321532150418093, 77.250225576379, 82.76704241886321, 14.760544846034108, 57.104208247125605, 114.50332981143637, 145.03800683276216, 104.93833886522131, 106.24141996102614, 24.069221452528918, 5.972404590473215, 57.51368637396276, 82.90140357560745, 23.948547934731398, 42.79565420237131, 31.02895989934633, 85.60230972526415, 55.281846221470275, 28.754348139848364, 10.544708750696264, 42.76405933285047, 38.83756549363009, 9.889319564680864, 91.81475449224786, 79.54836853741881, 27.32143062235592, 8.39231105714723, 11.856743179238752, 23.57283756234131, 89.81889568629414, 17.769076388916098, 5.379131575434646, 25.41199017484541, 30.019484265506875, 51.93568072167292, 97.07551272591121, 43.94486611017837, 85.59535962263098, 7.486208947944759, 32.60828379664318, 101.98686932819902, 63.50138227809923, 23.772737265630262, 21.229254291329116, 27.725967145447544, 95.15752447030107, 71.76435295442008, 145.361291529058, 131.04958714934986, 34.553877264939764, 85.29413027286657, 76.69374968943336, 26.264335048732868, 67.05733162484754, 27.860146906384827, 106.64297226066553, 18.851180448259854, 50.869463170418115, 14.397418190944222, 66.71217321157735, 43.10511242476307, 8.682111857192009, 11.749433840401775, 74.51047452328174, 34.5681202859736, 18.645452589413534, 18.98856010908337, 6.063001183404347, 86.3297016470527, 33.55124597788982, 15.396265111705345, 119.96287930667086, 7.492950936296825, 76.07623407445149, 12.136312942057167, 28.9763308815361, 17.054991498363975, 25.290743625846158, 9.583818281710784, 17.348171474963113, 53.61453918619944, 28.304704511786603, 112.4172737656681, 23.42052648913378, 23.518869564012174, 89.55269705116436, 29.8455294326262, 79.16307912990436, 90.94729931267317, 97.74652691836609, 179.0064403867023, 24.464237450499102, 94.09129901616703, 12.427358856493793, 10.132828116133734, 65.12150715145853, 5.338561148363343, 38.10394324456753, 23.31902538244072, 12.048907386839593, 28.41070788829183, 82.83072863949006, 15.237873933343103, 5.091394051646738, 91.9950766886238, 30.283013399907325, 43.01657555148848, 11.739522480328738, 45.48321984060537, 199.91464491458902, 73.37007405371347, 22.62046324789746, 29.206696610572067, 12.929615701531123, 19.8268855461912, 35.89290678736587, 65.3999124026886, 79.11386717943907, 16.902286361926993, 48.79477402202284, 16.431465701807056, 97.55681973985405, 6.252913382614594, 178.84273053179083, 52.22971560838064, 105.9534834929165, 31.615033418788414, 232.55570421533088, 9.33134356313034, 35.85846640760701, 77.1622510883119, 46.30251017754689, 49.4897277594703, 6.781855779191508, 22.108192027130293, 12.556659842903537, 94.28089880505154, 24.639017490957244, 45.718667011887426, 6.489500267709506, 56.56061038748692, 10.534977717323306, 36.093344313679175, 105.75391998319307, 44.06914408342412, 142.86898345893738, 21.88387704064457, 40.75157493927596, 26.31780449315939, 7.383620531180033, 20.171957290128976, 44.51128057511157, 17.875641029607547, 9.611586777098163, 147.36023507362498, 5.505636181075367, 86.53188649887551, 14.287314380487375, 93.45679862809956, 32.593853978080816, 5.965324241520563, 91.3698142721126, 43.92367249292158, 5.469257056775637, 57.625312376720004, 7.55503886498243, 28.862380535112486, 99.4794390049934, 40.24213331726503, 99.29132706719767, 19.776384336425785, 71.46402726940559, 19.153229979327065, 69.57719832290023, 20.384571487678627, 181.94530628267367, 175.29216173262023, 15.417401488851107, 24.804389296378847, 24.23558220866745, 102.38296449088381, 49.155346785987795, 15.823694509505408, 6.179816137783781, 94.19393997134608, 42.82242454291736, 24.942825320423143, 125.6817807235233, 73.8180100193134, 16.437382293673615, 23.67683406749783, 18.849761246162668, 5.728743426775656, 6.184619245860093, 27.593354771230437, 98.89113372399908, 36.728398163887576, 8.431818796727825, 18.147664860459248, 15.224702559238459, 18.879618264074026, 67.20769244110797, 65.63038405160509, 13.891466384191936, 122.08110446211816, 7.176618400522502, 14.495168755222478, 37.60609754395202, 94.3771016331994, 109.7310270065595, 8.949576890072663, 43.872004285856995, 152.3791254980832, 6.012737935017064, 39.27520651680641, 5.336131404556464, 17.60516015567016, 9.902090497780804, 88.82332037055741, 6.185791030542855, 40.46679122866948, 54.884391928100946, 80.08350459688918, 24.330103425201223, 16.652979069452382, 12.905049432864729, 16.156913470576242, 14.51953413556282, 8.25920831816843, 97.37782138516496, 29.023881398465416, 19.42258822149106, 40.598618212793085, 27.614032303184064, 40.54973108986106, 41.27718805912192, 7.645950151602415, 32.38304392322342, 170.02568989764956, 6.299265225555716, 78.87206660511994, 85.94314692866453, 69.85654733480052, 20.395349083524028, 49.389637574693175, 23.07739739975768, 163.22481562895064, 7.028873923557567, 5.989130117371548, 9.142278747617873, 16.130208570145523, 69.72103070939197, 44.99362524850356, 55.126088280004694, 20.013609286124634, 38.414837242517805, 95.53763222051283, 70.53913252057632, 15.762573457403711, 116.78278907071888, 34.97040125554967, 38.9839477445586, 8.36495012393065, 198.86918024954014, 54.487510335938524, 12.985422426141358, 36.03944030629865, 55.228275066972884, 31.034727744809047, 41.45918735490814, 44.27022193259027, 33.20158484196681, 40.897472743345986, 19.698185560547383, 64.2905039902161, 31.12675567194941, 14.975236002111952, 22.90980081761591, 71.75048601396225, 14.10148543881861, 16.591972414748852, 60.33752828026938, 72.05045833886841, 180.6025002618821, 16.14470519480729, 11.063400504445736, 43.772177990618474, 55.447320908256714, 61.272139781555495, 34.137881790466196, 8.549980831049817, 23.615460945973346, 31.49848035290036, 29.148940758393334, 53.41948900519252, 17.660769318434063, 16.06588750292304, 27.489038394870473, 7.805720944109546, 76.30712040880869, 125.84440414774214, 74.15404383514952, 7.909371262009026, 48.41863533898989, 22.6030587951217, 36.60338362971566, 26.69998020316408, 16.955033375719843, 70.43374812351944, 7.324203309885121, 66.56398266323284, 82.54721331767138, 34.87371780813536, 54.28066724394629, 20.38989097382909, 17.711657455604648, 132.432845277614, 106.96048327099646, 28.684643342022945, 30.68521596336492, 154.4761991573796, 95.35867801739131, 43.85320594704618, 65.45714303852054, 7.940942006831385, 10.15073208148122, 36.29784918378974, 106.57629022713857, 9.510848797021003, 97.63879755987332, 21.450790957858743, 104.47646995248168, 82.84006051384507, 33.125416306590445, 160.44335519673203, 94.61554022369435, 32.08594892761752, 54.29764436209491, 11.268982938933737, 17.278087470921122, 21.296477257838006, ...])
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);
([3131359.1520729447, 3179854.611333928, 3183373.794182924, 3236763.828316866, 3273739.6620357535, 3391947.996413137, 3397543.1671781195, 3533486.8691928266, 3545377.8794673146, 3548994.212764643, 3551499.2131674765, 3558149.1741025564, 3561576.403328971, 3574517.1608712496, 3593735.788357931, 3595550.1910744943, 3650782.839103879, 3761213.5133177973, 3787842.5834791334, 6322634.375, 7142141.731284403, 7637717.928473163, 7642798.4375, 7643816.405179084, 7662448.035822197, 7668379.95439379, 7680241.006234716, 7689718.40806842, 7690829.6875, 7724467.1875, 7773707.589867441, 7775912.917115873, 7783633.779069546, 8045646.040470746, 8045664.0625, 8070692.1875, 8073571.875, 8074392.130542338, 8074829.059585576, 8078254.276536249, 8078638.451134439, 8079103.383875359, 8084535.304245497, 8086819.026799363, 8106245.3125, 8111633.819824484, 8112473.4375, 8112721.875, 8112813.738743326, 8112911.993517706, 8113176.264378859, 8113373.564932467, 8113708.293888502, 8114207.949412817, 8114296.774761101, 8115096.5632405365, 8119457.8125, 8121062.5, 8125287.59184007, 8127696.875, 8128273.4375, 8130889.212644233, 8131382.090365128, 8131582.863662875, 8131743.660723684, 8132206.25, 8133114.209603175, 8133500.586339278, 8133736.099052501, 8136104.6875, 8137237.719445374, 8137284.6658547595, 8139729.6875, 8144248.408285552, 8145300.328884231, 8150517.765629594, 8159278.868960206, 8160247.140470036, 8161237.5, 8161564.647373969, 8161656.25, 8162220.3125, 8169693.75, 8173671.7825593185, 8173679.449559369, 8174223.4375, 8174672.287001474, 8174722.930404769, 8175240.625, 8175572.720678776, 8176034.375, 8177954.619160015, 8178756.25, 8180147.250315803, 8183946.258280161, 8184754.101428421, 8185417.809769585, 8187435.886246366, 8190458.777556634, 8191779.6875, 8192463.072415261, 8192698.6126763495, 8193131.190097927, 8195788.939012743, 8198216.145629623, 8198368.75, 8198952.35918331, 8199957.845914963, 8200499.902257179, 8200601.860681791, 8202425.0, 8203264.0625, 8210337.225325945, 8211946.539459334, 8214582.8125, 8217810.9375, 8218340.13795565, 8218418.713865021, 8219507.8125, 8223169.861797256, 8223919.126010043, 8227401.3662503045, 8227596.509296544, 8227896.369062357, 8228328.125, 8229844.173432334, 8229846.875, 8230398.101577994, 8230610.905083445, 8230813.429258026, 8230927.701695114, 8231112.287595964, 8231187.394048479, 8231589.916052682, 8231635.456636816, 8232512.804715663, 8232793.75, 8233231.212337646, 8234407.632605518, 8234778.125, 8237750.921952856, 8238400.189629125, 8238462.5, 8239718.027650945, 8240009.915106359, 8240715.635334357, 8241152.930247256, 8241666.648894728, 8242242.1875, 8242395.3125, 8242465.424152977, 8244078.339514927, 8245462.404129115, 8245480.21697857, 8249210.671881616, 8254256.25, 8255618.708444595, 8256836.546378144, 8259335.421820217, 8259924.972184667, 8260278.054605853, 8269476.5625, 8271791.789132961, 8275107.222215039, 8298725.430084546, 8304617.723185804, 8336084.880408136, 8340349.664317401, 8346351.590871507, 8363069.345511196, 8370332.929405029, 8372976.5625, 8373413.290125008, 8373573.4375, 8374767.006971601, 8375396.875, 8375929.6875, 8376275.919477411, 8376676.431556125, 8376975.0, 8376976.5625, 8377053.661330641, 8377092.30641265, 8377335.9375, 8377449.888441958, 8377702.488407256, 8378322.147026007, 8378546.0649895435, 8378788.319015232, 8380068.75, 8380278.299043817, 8382617.616610229, 8383577.935273301, 8386927.461880639, 8392014.0625, 8401613.06450552, 8402718.75, 8403103.074179769, 8404224.78523346, 8406241.389504477, 8408400.0, 8409763.391165098, 8410846.875, 8415009.117026312, 8416103.125, 8416276.5625, 8416771.251767421, 8417089.153411213, 8420420.744246863, 8422239.206815, 8424219.39785427, 8424929.016328707, 8425839.205440314, 8430233.661079412, 8440208.484505797, 8448704.225383254, 8450131.546847181, 8450186.521927543, 8450188.15094285, 8450474.468840973, 8454251.243117113, 8455117.1875, 8462900.774260059, 8462913.550587187, 8465449.923920603, 8470963.929467946, 8473383.89113832, 8483280.86725666, 8484034.901380064, 8484318.75, 8484346.875, 8485385.494779857, 8486114.30937057, 8486585.226228893, 8486663.914186435, 8486877.823371122, 8487023.4375, 8487291.598967751, 8487907.482663296, 8487932.860651424, 8488080.920425931, 8490070.496601116, 8492589.135798745, 8493273.517269809, 8493592.491183965, 8493972.903648434, 8494146.396065148, 8494644.448609848, 8494795.977693155, 8495059.375, 8495637.220066225, 8496256.911926206, 8496469.705161616, 8497120.698118223, 8497514.666401856, 8497923.4375, 8498096.875, 8499839.48528866, 8500304.4966476, 8500522.505489057, 8500850.0, 8500971.875, 8500977.596901193, 8501337.5, 8501741.750252299, 8501908.59515998, 8502190.625, 8502461.096834147, 8502718.126055188, 8502754.6875, 8503043.291826162, 8504150.840395547, 8504153.125, 8504580.39541168, 8504581.25, 8504630.544951918, 8504763.803440213, 8504775.0, 8504870.3125, 8505183.161988681, 8505579.58647607, 8505582.8125, 8505792.1875, 8505859.375, 8505984.375, 8506028.215958841, 8506028.961993119, 8506232.8125, 8506318.67650334, 8506411.102918228, 8506484.242530731, 8506526.125705266, 8506554.6875, 8506565.558063397, 8506633.759884456, 8506732.848054951, 8506748.43818875, 8506792.1875, 8506804.6875, 8506894.001934234, 8506963.88009165, 8506965.43526999, 8507123.4375, 8507275.0, 8507425.577300042, 8507564.978706451, 8507577.234249188, 8507670.3125, 8508417.720660305, 8508450.809223121, 8508465.76880758, 8508642.1875, 8508660.899451004, 8508716.08563134, 8508846.586733844, 8508867.1875, 8508983.899060754, 8509139.73808019, 8509213.169197585, 8509314.168824539, 8509392.138087386, 8509392.473373871, 8509404.871717049, 8509512.082977436, 8509571.086282667, 8509598.942451624, 8509610.9375, 8509705.132227266, 8509747.9384391, 8509761.811216129, 8509809.375, 8509862.5, 8510013.068282507, 8510089.081715044, 8510104.647194454, 8510186.378044795, 8510221.758003335, 8510268.188439425, 8510303.125, 8510323.559964513, 8510392.76408327, 8510409.961862903, 8510456.46566967, 8510516.33575297, 8510590.625, 8510731.979366735, 8510905.418963926, 8511218.75, 8511284.173211617, 8511304.6875, 8511400.0, 8511559.836025713, 8511630.64133503, 8511660.9375, 8511678.125, 8511724.565097434, 8511729.6875, 8511890.625, 8512010.20667114, 8512045.671767635, 8512058.83738211, 8512127.87521186, 8512179.6875, 8512281.034595525, 8512289.0625, 8512318.305440126, 8512340.520443287, 8512400.463848554, 8512467.338952757, 8512523.707275435, 8512526.5625, 8512543.058641728, 8512709.531495344, 8512852.82633354, 8512919.539722718, 8512929.725200955, 8512959.761018375, 8512998.4375, 8513031.25, 8513042.099366264, 8513134.375, 8513153.329456264, 8513153.812463231, 8513182.391373087, 8513256.25, 8513396.875, 8513514.061576026, 8513537.435930006, 8513543.75, 8513643.899557013, 8513656.25, 8513784.835877243, 8513876.5625, 8513879.628875894, 8514208.184123205, 8514421.652827088, 8514456.38197616, 8514617.1875, 8514633.923788788, 8514661.009345332, 8514809.396789113, 8514849.72962177, 8514856.25, 8514860.52992706, 8514860.9375, 8514895.686117165, 8514973.4375, 8515402.05066092, 8515428.125, 8515453.2228995, 8515712.186395522, 8515727.512154134, 8515743.897997132, 8515759.925220113, 8515777.840809472, 8515804.6875, 8515984.626756366, 8516282.050556943, 8516322.495864278, 8516395.814892909, 8516860.436047211, 8516960.169456463, 8517007.021530388, 8517021.7450954, 8517109.207552921, 8517310.446560288, 8517431.555964757, 8517523.4375, 8517549.54899259, 8517752.514229389, 8517800.180802617, 8518010.389036179, 8518035.328014215, 8518045.3125, 8518065.073041927, 8518177.47338431, 8518195.3125, 8518202.2301675, 8518249.198213512, 8518321.875, 8518362.403454244, 8518367.1875, 8518380.411540804, 8518399.738119218, 8518435.601916779, 8518460.922831224, 8518517.1875, 8518590.625, 8518689.551656604, 8518701.793686748, 8519005.974416321, 8519021.690812197, 8519156.308890298, 8519170.0464264, 8519191.9738508, 8519225.0, 8519225.983898742, 8519282.15233218, 8519293.75, 8519356.267335245, 8519538.665119119, 8519545.826790124, 8519548.237941604, 8519628.77103391, 8520138.489920309, 8520386.092984661, 8520414.475494143, 8520439.0625, 8520647.643847194, 8520660.432659596, 8520803.725409316, 8520871.11839552, 8520939.986299187, 8520942.99242106, 8521006.616852563, 8521008.864975128, 8521215.332775943, 8521224.727290463, 8521307.8125, 8521330.120779091, 8521435.336587345, 8521568.818180377, 8521651.910082767, 8521747.768266715, 8522252.181525875, 8522499.925203174, 8522768.63991176, 8522775.018299853, 8522871.283400448, 8523014.0625, 8523084.319286343, 8523132.088493459, 8523245.3125, 8523608.415905494, 8524039.884154212, 8524628.008545414, 8524628.125, 8525100.585988903, 8525851.816582743, 8526352.67152533, 8526391.61383094, 8526403.847961122, 8526447.528620774, 8526578.125, 8526609.2703793, 8526885.147076933, 8527130.23304594, 8527190.110928627, 8527204.6875, 8527451.555179598, 8527977.113033727, 8528061.741692862, 8528400.0, 8528426.108796107, 8528546.893062618, 8528695.3125, 8528824.37491481, 8528961.283858148, 8529353.125, 8529582.341350464, 8529593.895633517, 8530007.381164987, 8531001.51034045, 8531064.0625, 8533101.5625, 8533157.66258668, 8533506.25, 8533825.0, 8533873.76422691, 8534501.5625, 8534796.816181447, 8534949.245025724, 8535110.9375, 8535848.439334195, 8539529.177731566, 8546869.545922674, 8547076.423324866, 8548218.231979549, 8550231.25, 8550473.4375, 8550796.262275321, 8551417.16601173, 8552054.50183999, 8552110.9375, 8552193.75, 8552673.964065459, 8552867.1875, 8553212.255499138, 8553482.8125, 8553548.016191758, 8553750.0, 8553826.133201301, 8553870.3125, 8553935.9375, 8554025.0, 8554290.412662553, 8554328.735377707, 8554370.854073957, 8554487.943249261, 8554569.231040826, 8554722.183504706, 8554785.786206087, 8555075.0, 8555134.506463775, 8555231.728092263, 8555356.25, 8555370.3125, 8555457.680667486, 8555524.876680087, 8555556.885878228, 8555699.594880922, 8555795.559614418, 8555803.063063009, 8555819.923000516, 8555981.25, 8556098.4375, 8556141.212975798, 8556151.419674879, 8556341.292003702, 8556411.769985856, 8556470.42274096, 8556526.557923047, 8556540.40518989, 8556615.625, 8556639.038265599, 8556678.440785157, 8556785.437795686, 8556801.269633986, 8556906.166387672, 8556925.808852226, 8556964.0625, 8556967.029310435, 8556986.041924244, 8557016.46368082, 8557023.4375, 8557056.02079745, 8557246.179585773, 8557379.6875, 8557440.269482914, 8557579.445806134, 8557606.703429379, 8557840.286739636, 8557909.726110606, 8557913.89103578, 8557960.9375, 8557974.025911992, 8558035.4938769, 8558121.875, 8558190.461429495, 8558191.148819001, 8558246.72045994, 8558326.5625, 8558340.625, 8558445.3125, 8558465.062104123, 8558481.872946313, 8558525.0, 8558581.25, 8558586.36368202, 8558638.432615414, 8558670.3125, 8558706.094508663, 8558891.96525522, 8558916.926298399, 8559154.6875, 8559217.1875, 8559321.837219847, 8559440.215685861, 8559446.875, 8559457.295798695, 8559468.75, 8559484.24053298, 8559500.0, 8559613.245460166, 8559683.01165456, 8559709.763285235, 8559729.100027936, 8559820.3125, 8559852.42535364, 8559852.830833469, 8559892.590921309, 8559968.690853631, 8559969.457058355, 8559999.418604264, 8560016.91894884, 8560154.6875, 8560164.847468369, 8560168.297105096, 8560196.785079652, 8560227.134919027, 8560247.41273477, 8560303.848320615, 8560323.733007189, 8560491.866414692, 8560517.702655546, 8560521.029811326, 8560566.034570482, 8560575.98315851, 8560660.352364557, 8560745.904365618, 8560746.875, 8560766.890297212, 8560798.683012111, 8560809.395218423, 8560870.698570939, 8560873.4375, 8560879.6875, 8560904.621180363, 8560997.447034232, 8561036.308781905, 8561051.5625, 8561053.467556218, 8561077.878433116, 8561117.1875, 8561146.555252071, 8561187.5, 8561206.25, 8561230.755579395, 8561238.654490586, 8561257.8125, 8561275.724873956, 8561280.281027822, 8561284.814330414, 8561292.1875, 8561305.724443365, 8561334.569731684, 8561337.70913994, 8561371.560943728, 8561390.967295595, 8561396.015380649, 8561436.984652435, 8561438.461299421, 8561455.749833487, 8561463.266350504, 8561468.231855765, 8561468.75, 8561487.5, 8561493.41441098, 8561509.375, 8561593.727424629, 8561593.75, 8561610.6012415, 8561664.872317761, 8561683.459455634, 8561715.868405806, 8561736.988463232, 8561740.126998844, 8561740.171191322, 8561750.0, 8561754.027712284, 8561764.0625, 8561771.749223283, 8561778.125, 8561787.488334564, 8561790.625, 8561800.749455048, 8561801.5625, 8561806.077175943, 8561807.555594634, 8561846.875, 8561880.367384443, 8561881.614401693, 8561890.928398179, 8561900.0, 8561921.17776489, 8561930.456015866, 8561934.130144114, 8561960.9375, 8561985.9375, 8562057.926904727, 8562070.3125, 8562074.684419636, 8562096.829491775, 8562105.249334656, 8562111.026235813, 8562130.149854736, 8562198.249200752, 8562236.22165998, 8562238.014629241, 8562282.8125, 8562283.830894, 8562307.310883667, 8562332.486201342, 8562338.744128153, 8562339.0625, 8562382.302739697, 8562391.423382709, 8562449.67141578, 8562459.49734305, 8562472.75782597, 8562493.503876971, 8562498.108036494, 8562583.510417065, 8562585.191762537, 8562592.1875, 8562618.651600162, 8562632.8125, 8562637.165433852, 8562658.331461657, 8562672.162368642, 8562683.857544294, 8562684.450640889, 8562688.700325917, 8562729.42913656, 8562732.309875863, 8562739.0625, 8562756.60907261, 8562759.375, 8562782.330808606, 8562803.125, 8562880.23478991, 8562882.8125, 8562911.848574502, 8562929.0025035, 8562932.8125, 8562942.1875, 8562948.4375, 8562950.434161006, 8562954.6875, 8562980.030252805, 8562993.334314512, 8563015.511091959, 8563039.645684632, 8563040.625, 8563043.454784226, 8563070.3125, 8563112.43885889, 8563121.874929499, 8563132.8125, 8563162.5, 8563176.5625, 8563185.56768341, 8563212.59122083, 8563218.309525954, 8563221.06778201, 8563238.211859064, 8563243.516497403, 8563250.0, 8563292.202850604, 8563303.125, 8563321.459529135, 8563353.125, 8563356.25, 8563356.802997654, 8563363.822486931, 8563382.350801144, 8563384.375, 8563388.549088595, 8563435.286528884, 8563446.231512504, 8563487.5, 8563497.477977451, 8563525.313760404, 8563544.22512918, 8563560.358750846, 8563575.99427965, 8563618.567080574, 8563663.638104113, 8563669.026784247, 8563687.792886423, 8563696.458417889, 8563701.95843812, 8563704.86086434, 8563712.955865227, 8563790.48974179, 8563806.25, 8563830.1722946, 8563848.4375, 8563883.832673071, 8563910.511798576, 8563925.0, 8563930.478397327, 8563940.94389023, 8563970.014850391, 8563970.3125, 8563974.95253204, 8563992.306993729, 8563995.090740046, 8563998.174531607, 8564044.396158148, 8564071.875, 8564073.394849662, 8564107.088087361, 8564116.743147682, 8564267.1875, 8564277.593437742, 8564282.70292584, 8564290.46767435, 8564303.334036624, 8564371.569191933, 8564381.26650927, 8564447.214996293, 8564447.754684983, 8564458.928985875, 8564462.5, 8564533.830994232, 8564551.827413337, 8564564.708402453, 8564623.740384301, 8564658.565930225, 8564659.375, 8564660.935838902, 8564670.006734189, 8564681.25, 8564689.268287312, 8564692.065252222, 8564760.9375, 8564764.643091511, 8564840.625, 8564874.51105643, 8564880.880024752, 8564928.125, 8564936.742732283, 8564937.5, 8564957.642542746, 8565000.558550857, 8565019.355720848, 8565040.319599185, 8565080.577300511, 8565100.0, 8565109.31769873, 8565142.825793311, 8565226.750652708, 8565269.13662937, 8565310.283543484, 8565323.558079459, 8565332.697202168, 8565342.135383723, 8565357.8125, 8565400.820747811, 8565412.305252783, 8565451.5625, 8565542.13974787, 8565714.0625, 8565726.5625, 8565765.741569594, 8565885.9375, 8565893.75, 8565897.124662032, 8565918.75, 8565932.8125, 8565979.473133903, 8565998.139718955, 8566008.999450043, 8566018.599425392, 8566120.432274394, 8566140.260709492, 8566145.866303897, 8566159.142529463, 8566203.711862179, 8566214.0625, 8566257.289488949, 8566278.125, 8566404.025191544, 8566412.5, 8566451.403486896, 8566451.702019135, 8566467.843910938, 8566514.0625, 8566537.45917417, 8566542.616094343, 8566579.83282089, 8566591.140957316, 8566609.004200563, 8566613.433230646, 8566676.5625, 8566737.128520919, 8566740.27936928, 8566778.948642474, 8566815.241920479, 8566826.228306754, 8566832.8125, 8566835.236544596, 8566867.219928827, 8566879.404614173, 8566893.758820513, 8566894.943685042, 8566909.375, 8566987.260651235, 8567048.812203651, 8567074.520489285, 8567120.3125, 8567199.230103878, 8567203.408507423, 8567259.333465543, 8567273.4375, 8567285.9375, 8567350.0, 8567365.644134142, 8567420.779462263, 8567455.630702216, 8567466.585035773, 8567471.062701236, 8567479.6875, 8567508.380331978, 8567576.82921598, 8567649.945404323, 8567769.277162302, 8567783.30087841, 8567885.9375, 8567932.180734992, 8567942.961393528, 8567979.6875, 8568033.979506984, 8568034.375, 8568046.013121275, 8568053.568976754, 8568078.125, 8568106.968961334, 8568221.875, 8568286.094982004, 8568350.0, 8568393.75, 8568416.460814182, 8568459.95125754, 8568478.125, 8568534.375, 8568619.137002492, 8568620.3125, 8568712.696959268, 8568723.4375, 8568734.375, 8568910.880257066, 8568921.158725914, 8569016.457437929, 8569122.336147498, 8569226.5625, 8569342.392362282, 8569354.6875, 8569630.251885373, 8569662.5, 8569734.375, 8570192.1875, 8570209.810655996, 8570211.961964553, 8570318.289517483, 8570389.0625, 8570470.401042191, 8570970.69317719, 8571254.780060168, ...], [52.86246983544086, 14.658935333449671, 108.94814579984906, 8.166501779433048, 23.161354093560675, 10.501800873844093, 7.405218321543651, 12.98152557841786, 33.23652914166916, 5.736856444402095, 44.31552977243042, 11.485640108492479, 64.45073066238575, 7.593634829231498, 67.10253736163695, 15.723497394248243, 5.708453243678054, 21.01612136540067, 6.13026885854012, 45.90998504425649, 38.62048455901729, 31.539248995956402, 61.70291693168952, 12.614073050920435, 25.822240639717585, 9.567755257519861, 36.62324658586654, 5.68533673824392, 42.43767319193029, 32.841678531268194, 24.792007803357745, 9.71089374187052, 10.308578341215135, 38.60081646385838, 55.943818317819975, 42.13576072590064, 38.70345100242208, 14.72876847788944, 37.85609969894439, 10.54085212805381, 13.031050671856626, 22.965025468228102, 13.46335435209835, 16.996843130738366, 28.713170435794964, 13.177431440407327, 57.35826064063632, 43.492062315224246, 8.122481563603609, 5.033110834659193, 23.77477117977931, 21.14393251992724, 37.0392589460161, 80.91579588322037, 65.4185712932697, 23.60168407458866, 40.40249548081816, 102.09032154055218, 5.8208070412979245, 90.66311785625373, 91.82751430284993, 8.367604752081755, 19.530650864352957, 11.208630580431509, 18.868046284391625, 94.37809623222644, 82.66359283963561, 40.24256938429045, 11.389975494420401, 74.3528544218556, 24.571104098596685, 16.179527131724104, 54.2057289928195, 27.959493564924344, 20.697986672570252, 36.28802699462902, 18.850590902905807, 74.34154775033245, 74.89943796849806, 112.70264940525999, 89.12036694466514, 82.54995053990162, 31.39320196356182, 14.600498450560739, 35.82290126923198, 47.06974637319637, 16.78481373275258, 10.417923823730339, 46.767119481089736, 22.787044070881542, 31.7899231919482, 27.242017509786272, 57.287008570593315, 12.683465817979265, 13.017354786936652, 65.55402077587821, 17.99656134854254, 70.62720774720306, 20.573171174541557, 60.31488421714751, 17.688402989124498, 11.413022003901316, 93.27659330367176, 23.058261745114045, 86.25892166310283, 88.07588079859433, 29.727389867014733, 6.492342107017763, 24.04298946271645, 30.110659691312165, 71.8219937683258, 46.38029729146527, 68.11764726164044, 18.197094324607573, 40.943989260343855, 54.68454390492141, 21.62332068558902, 27.82933232127407, 42.50692612115676, 29.85784198537117, 11.771115911668794, 14.242780936181052, 22.946248748342928, 21.43407286480444, 119.15907506006391, 33.487293178660565, 32.85291032815074, 9.062645039239783, 6.084734655203827, 20.259508870773814, 22.293884510750733, 26.071796439777692, 17.734192332703667, 12.78803672284737, 30.969600377541227, 16.245781753488572, 28.84004115064973, 47.62704908585562, 53.94322100023248, 64.12671047390612, 10.255130619365225, 20.771120959201596, 49.78634559941817, 74.27094132173889, 7.8110089682244235, 5.814745315859299, 10.836355143708202, 58.41515714757344, 135.86161121601083, 53.89717186586431, 21.900416432536396, 140.48283324597978, 7.096476116551101, 35.63604348294145, 90.21468779225512, 121.6924517598421, 27.728382396963603, 17.91239785165759, 50.82613598857129, 106.37755826902738, 6.749533828744615, 90.70381435813985, 22.57061697966309, 30.088994520313438, 67.61098867732117, 10.657020029365173, 12.021681792954762, 13.799788467045191, 8.301637854698802, 78.69050127407326, 66.45084357376167, 67.90087496629931, 68.73730983378798, 38.01384897813278, 21.007740053164696, 30.230836210952052, 69.79433956682308, 56.47237442926925, 193.80283926689552, 35.06810722694432, 56.15274252472553, 6.145707080622377, 21.215062426815805, 97.43685425978299, 26.49850777275911, 82.3578020718924, 9.572519563911298, 40.17617321898183, 6.014051596446306, 41.44657652881894, 15.649147196838133, 50.03465370351628, 81.00226528374274, 12.900450663301147, 86.13091989590863, 17.640784854197484, 149.655798846611, 27.5578284996407, 92.26915110371272, 89.49925286173406, 101.74152782041037, 29.657260606060596, 69.41405354137301, 129.24580674464895, 98.84927393130121, 79.02586041443963, 20.345982633667518, 15.299724676005273, 16.889380949625142, 5.5401258392437045, 35.55300303121578, 43.172675734829156, 15.515836065037556, 27.201005403044405, 18.31849746027543, 48.03582379054835, 5.547663029816035, 12.183175122826869, 22.779180433050545, 11.864927877080216, 8.124607515806504, 83.94781504125089, 19.03047242284035, 19.920603055802815, 7.575950899188276, 10.925946664914122, 61.64099474125641, 36.52717225956107, 21.8328265165798, 51.36256724071695, 80.2553298087184, 22.084183109144114, 114.15839318525505, 64.73759340049094, 45.897791542718366, 8.133261720134339, 46.05295962435746, 8.878852077009178, 46.733686938307436, 11.203814021286316, 10.64888185861436, 14.112441580539762, 36.40991170191648, 9.399776320687499, 163.0687752320561, 23.625137346181432, 105.81599808831821, 77.32451553114973, 9.965233162269975, 32.13467837637517, 59.730873591649825, 18.25203338122374, 31.279082632916122, 154.78941440762244, 59.66821886206491, 166.09177061406808, 50.009918170528486, 149.726226813027, 100.81042877434142, 9.928214342849229, 78.4931899851781, 34.14543013445012, 26.396081914559176, 47.42186510094336, 151.18730252211014, 265.19774771094774, 84.88840921178145, 15.585706793971536, 12.998942036616693, 55.82081244202293, 78.55169231919048, 12.756306068462314, 199.79925115815576, 55.90531588988803, 31.052050007784363, 7.945891876269287, 7.512152611919344, 56.40890035565287, 46.03364252821407, 11.721764219302981, 10.973388012323927, 42.32666930925596, 65.85759881541641, 56.03697630662058, 67.26836992360708, 11.272921345860775, 19.504314093120684, 40.07885931622057, 14.668583908856826, 135.22477505176755, 6.074431066284633, 13.502549110110463, 141.3111276305643, 14.692372017156744, 26.81140202137685, 9.361648933267135, 42.24951779211041, 44.73782890640051, 32.17037436879259, 6.814867624981138, 9.181786491300466, 39.84933837767111, 75.36040060795281, 28.980793431639096, 5.42101198954264, 52.29220885176053, 5.652320233578012, 115.43624471992695, 16.14877766159429, 7.924722097130294, 18.49492958007818, 38.096815062240545, 14.798440928884132, 17.045550683192996, 8.139801514409564, 34.99643126895086, 116.3921835822113, 12.378104995582737, 47.90476241668587, 11.29806783794737, 107.3615484838264, 8.443767921795816, 56.29890543900626, 10.532957859564622, 35.126369015089146, 9.798275641805212, 118.15968311963607, 7.772417868887622, 85.45743519641005, 85.5794979275733, 31.370838091803787, 60.02457409652654, 17.663480588796496, 15.015257471285437, 42.26785914696386, 109.48516675245548, 44.11213707998553, 5.583714733493647, 41.12294645510031, 15.42977757292127, 17.713632580068662, 38.882305444541565, 15.832612998341064, 12.455936568891039, 46.770098495402664, 19.580654932558634, 39.40213905067567, 95.6919393858944, 36.66870877864647, 68.26255093416079, 81.10521370276516, 9.754224386950389, 13.037975008769536, 43.71582618643493, 39.59471047278137, 8.988884786861163, 93.04598974678653, 112.44832102220948, 19.462932503902724, 7.7385612194590685, 21.12587383334193, 58.24325459531722, 66.63676774515969, 92.57544447282746, 73.50058627587939, 28.24791146690123, 26.615662723783885, 11.939384615556236, 15.552007522394769, 22.28099500408791, 60.78039556098446, 19.77532366089308, 12.44275895823862, 41.76666411341282, 7.916232830749676, 388.79300229611215, 11.789911544474043, 58.43508615216855, 88.95852093521592, 26.895393876109775, 66.24265346829743, 7.6788986808478095, 78.10800281718123, 8.999012181743408, 59.85229803901764, 97.22024180267394, 28.50692713040075, 27.318194028814535, 176.42991826342362, 15.543931796589979, 32.85358673507274, 28.99521418240844, 71.3393504811481, 14.722672631615817, 18.85891038755326, 78.57645993127521, 15.46958904339113, 61.565384600504444, 10.488785926248765, 5.945686766038455, 9.349895306836586, 5.520100562712959, 35.52764665303601, 22.467472636372253, 46.72057506326345, 35.93543519745389, 47.51588500052, 11.987313186037104, 52.549776929267736, 15.32826464961626, 57.69102373566269, 10.288201620011447, 15.53729553844286, 105.25145256558314, 23.954808427421646, 134.73439291059537, 15.996549296655058, 44.95059587668778, 18.182317077020954, 8.571407580157732, 6.995591882211986, 10.107540040465286, 19.010525610490067, 5.928171928305122, 14.339508730511865, 10.438241060977363, 16.251788804090552, 61.50175409108081, 7.447873680562432, 35.03063467389808, 6.800147323264918, 70.38013837183975, 5.66903643861376, 57.14301328887435, 13.185962542727841, 20.103180937484744, 43.99614533421226, 5.652080736391008, 82.33161575118693, 49.03135151744887, 41.4320397121686, 49.96642900430061, 12.485733893241635, 14.029209265783525, 13.80009009032472, 93.88550249956751, 81.15495255267965, 142.07333360699366, 12.788877914040512, 5.544406960851973, 39.90605092751614, 25.352102971041056, 7.137018652486188, 154.55843871773382, 93.49449514667214, 77.76990879294536, 65.77940632439048, 20.031459499026322, 77.13519075266503, 32.24432722261275, 43.90493026269114, 35.04585492491039, 25.12453119452643, 98.10607891591593, 94.43701566928772, 11.37975920137034, 19.851962002381164, 73.85430896404573, 15.08644215463588, 13.312808828748766, 52.163883218626964, 19.265664946742117, 16.59969116630778, 5.660182348825977, 7.741539145483354, 6.0366198006722085, 12.245363602051007, 7.507494032098404, 82.08121489283171, 118.51160047893538, 10.302562180436109, 9.389726674252367, 5.212368648391881, 77.85074615811976, 8.643507179151495, 83.74091308008944, 64.63329787990097, 241.95503685441702, 32.82107749586479, 109.75454442103619, 27.468746519607407, 63.78216875703535, 71.25805029734333, 17.878300720275693, 10.138403394108108, 26.417302162928205, 52.46386381779131, 17.770918163494308, 18.320640033767628, 27.76169166595607, 21.223150366544942, 36.20795208102167, 12.330264524804253, 37.02428469562288, 26.614586418187987, 12.574382327917412, 12.102872636030169, 21.353869905357943, 48.6413752260384, 31.125622058500856, 32.51634839991167, 19.252815072404424, 72.01078789830147, 13.012238648637968, 15.01080551914218, 59.90118001157165, 20.329906688797855, 85.37751956739596, 52.2323463649045, 29.23427297069933, 24.7141873799914, 13.518121341341388, 117.65175811442765, 75.62119451590075, 77.14967015075507, 14.399322817388526, 64.78873535315797, 54.79864049349771, 13.907608727809624, 36.56485773052361, 58.25709098153405, 44.989023708316154, 60.56452736650958, 6.487378795334663, 93.71750692107503, 19.19071369743638, 10.916919070506129, 16.746337424205933, 68.17358596823891, 69.81981374179733, 20.437779470274382, 35.587782920405694, 14.278126033781236, 57.20616655670295, 34.102671342469904, 110.79832958718796, 35.627462703359825, 33.06189864247934, 36.25535937341684, 46.081716217340784, 62.03984077252687, 81.05995220423448, 33.061175311034894, 29.322847868274568, 41.008716696382784, 9.158089540954288, 111.97033968921133, 9.83555379899748, 5.847521394316218, 59.85533412344944, 38.111447915917466, 54.74523698611666, 65.08768370624844, 6.283951985950698, 74.94090369276623, 161.49981973197526, 34.416762018882345, 14.461756873085136, 184.4858520425491, 43.08639756305968, 22.494851834721153, 70.65544383359779, 57.29637254501836, 5.193610936902974, 70.49605303376491, 58.67339464240138, 17.783082283897084, 25.990000836589903, 18.285434846806414, 12.737344922610392, 49.31116256075631, 28.434818017394033, 24.83211016666092, 83.47594576839234, 28.05405417610536, 16.299228329182306, 113.7957746859574, 6.7064134889492255, 46.128285033301445, 19.288031745401696, 82.44624722286893, 10.88913242249382, 105.29749902636051, 164.68359633251572, 120.9905137274788, 34.100874198829146, 142.9114171782227, 31.57680469461957, 180.83284421303205, 9.135070119600876, 62.27554685456362, 10.637173421751852, 136.93576897792312, 91.08585413725628, 37.48817157937865, 17.785755694308012, 29.24862884245736, 58.1950097536738, 25.665296281159343, 17.401114587540192, 25.805435111615807, 45.16057501428392, 62.7491090746399, 56.74218137446141, 13.157027707800324, 9.920232830426116, 44.79381780436498, 46.401131348874316, 17.719079395603107, 170.94693076249317, 71.1108421372772, 10.893061169949345, 24.79750819481635, 10.742584351051196, 48.4196930584141, 30.722150373531033, 27.79860065684334, 121.24918552475827, 177.42254428857896, 108.19191427968208, 71.37519994956264, 59.414862391302265, 67.07925435758155, 18.822713479136343, 29.03188962021085, 11.794181911113085, 20.662750821239115, 120.6976607430141, 28.00143322465548, 23.825543245216735, 31.262340068489564, 27.40666275386842, 18.55465796188542, 8.88384799677568, 65.70213145610927, 31.41687742486701, 115.82687398282928, 10.486626852264802, 212.84779939803963, 16.524277377600896, 84.97031104772705, 84.06336869700876, 14.929329552989806, 32.472463095130635, 42.008434150182225, 18.625251058408153, 58.226282829651794, 10.328697782112508, 8.881228643147445, 21.321532150418093, 77.250225576379, 82.76704241886321, 14.760544846034108, 57.104208247125605, 114.50332981143637, 145.03800683276216, 104.93833886522131, 106.24141996102614, 24.069221452528918, 5.972404590473215, 57.51368637396276, 82.90140357560745, 23.948547934731398, 42.79565420237131, 31.02895989934633, 85.60230972526415, 55.281846221470275, 28.754348139848364, 10.544708750696264, 42.76405933285047, 38.83756549363009, 9.889319564680864, 91.81475449224786, 79.54836853741881, 27.32143062235592, 8.39231105714723, 11.856743179238752, 23.57283756234131, 89.81889568629414, 17.769076388916098, 5.379131575434646, 25.41199017484541, 30.019484265506875, 51.93568072167292, 97.07551272591121, 43.94486611017837, 85.59535962263098, 7.486208947944759, 32.60828379664318, 101.98686932819902, 63.50138227809923, 23.772737265630262, 21.229254291329116, 27.725967145447544, 95.15752447030107, 71.76435295442008, 145.361291529058, 131.04958714934986, 34.553877264939764, 85.29413027286657, 76.69374968943336, 26.264335048732868, 67.05733162484754, 27.860146906384827, 106.64297226066553, 18.851180448259854, 50.869463170418115, 14.397418190944222, 66.71217321157735, 43.10511242476307, 8.682111857192009, 11.749433840401775, 74.51047452328174, 34.5681202859736, 18.645452589413534, 18.98856010908337, 6.063001183404347, 86.3297016470527, 33.55124597788982, 15.396265111705345, 119.96287930667086, 7.492950936296825, 76.07623407445149, 12.136312942057167, 28.9763308815361, 17.054991498363975, 25.290743625846158, 9.583818281710784, 17.348171474963113, 53.61453918619944, 28.304704511786603, 112.4172737656681, 23.42052648913378, 23.518869564012174, 89.55269705116436, 29.8455294326262, 79.16307912990436, 90.94729931267317, 97.74652691836609, 179.0064403867023, 24.464237450499102, 94.09129901616703, 12.427358856493793, 10.132828116133734, 65.12150715145853, 5.338561148363343, 38.10394324456753, 23.31902538244072, 12.048907386839593, 28.41070788829183, 82.83072863949006, 15.237873933343103, 5.091394051646738, 91.9950766886238, 30.283013399907325, 43.01657555148848, 11.739522480328738, 45.48321984060537, 199.91464491458902, 73.37007405371347, 22.62046324789746, 29.206696610572067, 12.929615701531123, 19.8268855461912, 35.89290678736587, 65.3999124026886, 79.11386717943907, 16.902286361926993, 48.79477402202284, 16.431465701807056, 97.55681973985405, 6.252913382614594, 178.84273053179083, 52.22971560838064, 105.9534834929165, 31.615033418788414, 232.55570421533088, 9.33134356313034, 35.85846640760701, 77.1622510883119, 46.30251017754689, 49.4897277594703, 6.781855779191508, 22.108192027130293, 12.556659842903537, 94.28089880505154, 24.639017490957244, 45.718667011887426, 6.489500267709506, 56.56061038748692, 10.534977717323306, 36.093344313679175, 105.75391998319307, 44.06914408342412, 142.86898345893738, 21.88387704064457, 40.75157493927596, 26.31780449315939, 7.383620531180033, 20.171957290128976, 44.51128057511157, 17.875641029607547, 9.611586777098163, 147.36023507362498, 5.505636181075367, 86.53188649887551, 14.287314380487375, 93.45679862809956, 32.593853978080816, 5.965324241520563, 91.3698142721126, 43.92367249292158, 5.469257056775637, 57.625312376720004, 7.55503886498243, 28.862380535112486, 99.4794390049934, 40.24213331726503, 99.29132706719767, 19.776384336425785, 71.46402726940559, 19.153229979327065, 69.57719832290023, 20.384571487678627, 181.94530628267367, 175.29216173262023, 15.417401488851107, 24.804389296378847, 24.23558220866745, 102.38296449088381, 49.155346785987795, 15.823694509505408, 6.179816137783781, 94.19393997134608, 42.82242454291736, 24.942825320423143, 125.6817807235233, 73.8180100193134, 16.437382293673615, 23.67683406749783, 18.849761246162668, 5.728743426775656, 6.184619245860093, 27.593354771230437, 98.89113372399908, 36.728398163887576, 8.431818796727825, 18.147664860459248, 15.224702559238459, 18.879618264074026, 67.20769244110797, 65.63038405160509, 13.891466384191936, 122.08110446211816, 7.176618400522502, 14.495168755222478, 37.60609754395202, 94.3771016331994, 109.7310270065595, 8.949576890072663, 43.872004285856995, 152.3791254980832, 6.012737935017064, 39.27520651680641, 5.336131404556464, 17.60516015567016, 9.902090497780804, 88.82332037055741, 6.185791030542855, 40.46679122866948, 54.884391928100946, 80.08350459688918, 24.330103425201223, 16.652979069452382, 12.905049432864729, 16.156913470576242, 14.51953413556282, 8.25920831816843, 97.37782138516496, 29.023881398465416, 19.42258822149106, 40.598618212793085, 27.614032303184064, 40.54973108986106, 41.27718805912192, 7.645950151602415, 32.38304392322342, 170.02568989764956, 6.299265225555716, 78.87206660511994, 85.94314692866453, 69.85654733480052, 20.395349083524028, 49.389637574693175, 23.07739739975768, 163.22481562895064, 7.028873923557567, 5.989130117371548, 9.142278747617873, 16.130208570145523, 69.72103070939197, 44.99362524850356, 55.126088280004694, 20.013609286124634, 38.414837242517805, 95.53763222051283, 70.53913252057632, 15.762573457403711, 116.78278907071888, 34.97040125554967, 38.9839477445586, 8.36495012393065, 198.86918024954014, 54.487510335938524, 12.985422426141358, 36.03944030629865, 55.228275066972884, 31.034727744809047, 41.45918735490814, 44.27022193259027, 33.20158484196681, 40.897472743345986, 19.698185560547383, 64.2905039902161, 31.12675567194941, 14.975236002111952, 22.90980081761591, 71.75048601396225, 14.10148543881861, 16.591972414748852, 60.33752828026938, 72.05045833886841, 180.6025002618821, 16.14470519480729, 11.063400504445736, 43.772177990618474, 55.447320908256714, 61.272139781555495, 34.137881790466196, 8.549980831049817, 23.615460945973346, 31.49848035290036, 29.148940758393334, 53.41948900519252, 17.660769318434063, 16.06588750292304, 27.489038394870473, 7.805720944109546, 76.30712040880869, 125.84440414774214, 74.15404383514952, 7.909371262009026, 48.41863533898989, 22.6030587951217, 36.60338362971566, 26.69998020316408, 16.955033375719843, 70.43374812351944, 7.324203309885121, 66.56398266323284, 82.54721331767138, 34.87371780813536, 54.28066724394629, 20.38989097382909, 17.711657455604648, 132.432845277614, 106.96048327099646, 28.684643342022945, 30.68521596336492, 154.4761991573796, 95.35867801739131, 43.85320594704618, 65.45714303852054, 7.940942006831385, 10.15073208148122, 36.29784918378974, 106.57629022713857, 9.510848797021003, 97.63879755987332, 21.450790957858743, 104.47646995248168, 82.84006051384507, 33.125416306590445, 160.44335519673203, 94.61554022369435, 32.08594892761752, 54.29764436209491, 11.268982938933737, 17.278087470921122, 21.296477257838006, ...])
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)