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 = 45067
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);
([3456745.0875809453, 3626814.2338106562, 4839628.496462122, 5027035.9375, 5242899.602546761, 5299951.5625, 5309418.5196372075, 5328316.391835438, 5335230.322227185, 5400636.41438517, 5449767.1875, 5484950.0, 5487782.8125, 5487982.569410069, 5488423.4375, 5490749.518949137, 5490852.1628134465, 5493297.3600493595, 5493623.353017101, 5496852.8312747255, 5499582.527666268, 5501698.581744282, 5504120.373606423, 5505516.317581631, 5505666.413902783, 5505809.055434516, 5506650.401853452, 5506838.212909516, 5508849.642908421, 5511008.830665305, 5533035.9375, 5533598.270942686, 5535214.74756208, 5535533.132224875, 5537727.781097856, 5538193.75, 5538395.446586308, 5539457.601309744, 5542015.927475372, 5542093.8953770455, 5546602.944307248, 5546898.9958712645, 5547284.054131609, 5547570.156896561, 5547738.966725504, 5547798.550354574, 5547976.45236646, 5548494.861660282, 5549217.575975056, 5550235.529271517, 5558752.691849822, 5568987.258062368, 5569756.568836266, 5573910.21967675, 5573935.443995668, 5577410.490022586, 5578550.0, 5581588.652802082, 5582986.67710172, 5599240.81132099, 5607660.979252112, 5607946.672976406, 5610037.052980421, 5610695.318020194, 5611688.664538633, 5611709.728752013, 5614881.25, 5617127.856635805, 5617164.692488621, 5617799.531737104, 5618635.097498835, 5618889.962998405, 5619729.19234368, 5620779.024555881, 5622010.984010438, 5623210.41448007, 5623251.328398214, 5623595.3125, 5625897.269794795, 5626035.560964192, 5626401.6797435125, 5627138.753213632, 5627635.781580953, 5627948.577668293, 5629248.315620847, 5630235.163262474, 5632090.625, 5651603.832442009, 5657668.75, 5663420.173747737, 5664413.576216659, 5667328.125, 5670322.924948325, 5671293.22452224, 5671368.193096201, 5671387.707375886, 5671441.5266635055, 5673070.707105705, 5674171.685256463, 5674176.547811442, 5675362.427276814, 5678964.0625, 5680470.9311218485, 5684962.168740017, 5687298.4375, 5687876.214735766, 5697353.125, 5701213.228098333, 5702028.6818320025, 5704166.99454232, 5704265.625, 5704735.3572789, 5704833.387928114, 5705237.22347001, 5705839.0625, 5707428.125, 5710221.886001227, 5710453.488090216, 5710674.214634102, 5710704.68841057, 5710738.282050927, 5713895.3125, 5717373.4375, 5720394.720767419, 5721570.011217659, 5722469.76042778, 5723294.8546136245, 5723613.356830375, 5723888.373449041, 5725004.562792196, 5727702.662221963, 5728186.91404688, 5729070.011202879, 5729496.875, 5735231.25, 5735723.4375, 5736193.260001421, 5742172.356267689, 5742563.075294154, 5746902.669648124, 5747518.303129315, 5750515.139884274, 5751422.295664518, 5751701.169951632, 5752851.263572862, 5753835.468988345, 5754876.454221233, 5755388.974948571, 5756307.62392893, 5756991.708385478, 5757618.7106210105, 5759164.761109061, 5759518.587159304, 5759697.905830359, 5763616.040943508, 5765195.3125, 5765554.824742043, 5768198.289680776, 5778880.522399671, 5788991.685656919, 5793605.738292306, 5796510.699297801, 5797034.375, 5798776.677174589, 5806849.697782422, 5813781.25, 5815456.922936997, 5818117.1875, 5818855.225806725, 5820616.696437957, 5822035.9375, 5823359.266715763, 5824187.5, 5824515.372023919, 5826932.8125, 5828314.952233667, 5829679.658044152, 5832671.835516641, 5832766.562840725, 5833541.2566765165, 5834398.592826134, 5839124.274675232, 5840795.3125, 5841486.863584507, 5842237.463488762, 5852212.282123042, 5852693.75, 5853079.4642838305, 5855395.861372346, 5863952.228646916, 5871304.362120703, 5872676.5625, 5873987.3060557805, 5879593.140527066, 5879734.868311502, 5880976.961117229, 5892372.331976302, 5895053.048835305, 5895300.5024986025, 5909296.735013463, 5912998.314046667, 5913918.75, 5914201.468492046, 5914843.9320931295, 5915159.830199584, 5917028.125, 5919431.754275948, 5921017.1875, 5922146.547351812, 5923009.375, 5924103.125, 5925904.6875, 5930388.533129467, 5930663.91831708, 5931409.375, 5932837.5, 5936687.33468288, 5940217.1875, 5942390.618339981, 5943853.769345945, 5944151.5625, 5944857.8125, 5945550.0, 5946223.181870793, 5946554.297342364, 5951106.407275651, 5951686.212208223, 5952172.876638196, 5952978.125, 5952989.0625, 5954615.170586045, 5957908.199410896, 5958115.625, 5958223.328093913, 5958618.75, 5958622.297196077, 5970220.7366504865, 5970575.0, 5972158.987209887, 5975982.09230841, 5976467.069315395, 5976752.697871191, 5977022.027954793, 5977162.5, 5977215.1465099435, 5977704.079088593, 5977798.4375, 5977994.207548786, 5978054.6875, 5978151.101552782, 5978261.323125749, 5978275.0, 5978546.472739224, 5978668.095500527, 5978671.875, 5978747.3200648725, 5978803.114552522, 5978867.838727557, 5979141.948818371, 5979335.608671386, 5979626.556518659, 5979719.822961016, 5979981.1554073, 5980202.6297812285, 5980270.3125, 5980322.635073907, 5980488.16863448, 5980489.489573482, 5980671.875, 5980674.769749503, 5980717.1875, 5980784.243642462, 5980855.966628408, 5981048.0808395995, 5981065.077251739, 5981542.812568909, 5981625.750814341, 5981630.464285021, 5981631.25, 5981797.038978417, 5981821.875, 5982477.596173439, 5982503.5034177005, 5982776.5625, 5982783.884896137, 5982827.408778011, 5982834.388776808, 5982930.791259903, 5982934.388525752, 5983309.8689365145, 5983491.648668783, 5986198.752646945, 5986209.710995328, 5988062.095154248, 5989181.150983419, 5992691.574139038, 5993667.1875, 5993996.5010298425, 5994291.5646407, 5994704.389253206, 5995458.6313655, 5995568.375873471, 5995648.718071685, 5995856.018193555, 5996510.9375, 5997088.318652595, 5998488.871634146, 5999296.3277084995, 5999436.13427797, 5999492.789752794, 5999917.969631073, 6000200.705038581, 6000287.363281742, 6000587.018038338, 6000643.75, 6000687.5, 6001143.376759032, 6001145.3125, 6002518.75, 6003313.073496033, 6003828.624349681, 6003997.9001752, 6004221.875, 6005882.357764369, 6006166.7061161995, 6006176.5625, 6007635.9375, 6007913.739599024, 6008421.478421141, 6012490.712278558, 6016661.995157122, 6018438.274327321, 6019749.816436933, 6021807.742784609, 6024405.106840314, 6026098.797078029, 6026597.712198654, 6030663.908135026, 6031110.57730309, 6031732.650519958, 6032482.649926149, 6034323.810848688, 6035339.0625, 6037503.493132401, 6038054.470824129, 6039109.50721319, 6040836.541736994, 6042653.125, 6042664.833168507, 6043569.101169258, 6043588.673646355, 6043823.4375, 6044174.413582727, 6045993.6004405795, 6046851.81198472, 6047895.549263063, 6047903.125, 6048632.091493884, 6050345.3125, 6059050.14292959, 6059970.974684093, 6060762.519243989, 6060961.6392871365, 6061416.866878357, 6062310.662558139, 6062438.88911752, 6062542.096710495, 6062560.706236694, 6064795.3125, 6064806.25, 6065015.472969007, 6066056.655613359, 6066389.239443879, 6067179.6875, 6068393.149039445, 6069219.927746629, 6070484.375, 6071731.25, 6071732.92117844, 6072445.3125, 6072946.721339196, 6074287.234447023, 6078362.5, 6078368.93150552, 6079734.806948989, 6079952.865174786, 6080875.164357109, 6081652.525991578, 6081658.933109908, 6082212.5, 6086935.9375, 6087490.625, 6088293.75, 6088353.125, 6088363.367509315, 6089229.928658556, 6089485.9375, 6089600.0, 6090393.174602771, 6090749.635427646, 6090941.525661494, 6091241.3447921695, 6091446.875, 6091499.979675954, 6091990.736898544, 6092054.082661949, 6092247.146871813, 6092859.375, 6093205.046858877, 6093306.431936775, 6093760.924484837, 6094303.125, 6094837.675823141, 6096031.404978641, 6099485.298138864, 6100305.927310403, 6101609.375, 6101820.0501173325, 6102710.9375, 6103318.342024148, 6103946.875, 6104712.5, 6105817.939585593, 6106182.139777458, 6108559.375, 6110179.3156245435, 6111265.06269445, 6113888.050487885, 6113897.249467321, 6115659.724121878, 6115994.643685828, 6117369.74583061, 6118249.167577406, 6118467.218542867, 6121332.8125, 6121610.9375, 6121708.162244645, 6121992.036737452, 6122076.318293498, 6122360.9375, 6122523.04064253, 6122609.59917498, 6122636.669445529, 6122919.241568436, 6122993.164978154, 6123021.520500445, 6123184.301057482, 6124084.375, 6124109.990182714, 6124179.28232796, 6124256.878438109, 6124326.520003914, 6124345.468879852, 6124490.625, 6124506.020088566, 6124566.187824808, 6124779.354541232, 6124793.864764178, 6124887.138858923, 6125228.362215196, 6125317.922512247, 6125332.504413773, 6125392.9949572, 6125446.709782049, 6125657.725912549, 6125767.179771095, 6125786.810732544, 6125888.341738942, 6126058.602987716, 6126236.050567874, 6127935.9375, 6128544.5690301685, 6128606.693223296, 6129859.623566689, 6130575.0, 6132071.875, 6132663.556014665, 6134543.573749341, 6136337.924382552, 6138828.63421799, 6139795.553273779, 6139920.158237154, 6140045.0687289, 6142237.576262791, 6143038.884252, 6143294.2265008055, 6145199.5944587225, 6145529.6875, 6146491.559006534, 6146496.804743424, 6149217.834943669, 6150138.612387256, 6150374.988250308, 6151479.126453654, 6151793.502745928, 6153272.551955667, 6155699.515530541, 6155757.8125, 6159622.733449168, 6162671.208681745, 6163192.834792197, 6165595.3125, 6165872.97958773, 6165889.92263046, 6166495.3125, 6166593.75, 6167167.258541888, 6167995.726465225, 6168842.1875, 6174622.3114237385, 6177210.346090793, 6183047.285422308, 6183222.375219951, 6183939.721129759, 6184354.6875, 6185401.5625, 6185490.625, 6190186.826392077, 6191168.75, 6191400.0, 6194767.679174258, 6194792.937589154, 6195357.179719467, 6195702.751087387, 6197929.821067086, 6198518.713728634, 6200355.064534549, 6202043.75, 6202689.607502034, 6204605.318093756, 6205664.447925612, 6206743.691309775, 6206852.787147689, 6207086.453153755, 6207618.75, 6207790.625, 6209778.7031717375, 6210031.25, 6210265.44830107, 6210526.5625, 6210843.75, 6211173.802213706, 6212138.879395644, 6212224.772346115, 6212933.924434098, 6212951.036470233, 6212960.259487269, 6213002.090570155, 6216841.750807088, 6216996.5943945665, 6217435.738718438, 6220022.074694934, 6220489.547537938, 6221607.688226676, 6221753.806929199, 6222212.5, 6222248.458472521, 6226373.427365884, 6228806.25, 6229834.767853186, 6230340.625, 6230653.125, 6243866.503391198, 6244045.078378365, 6244296.8322116, 6244982.345751475, 6246320.3125, 6246475.636227821, 6247876.3668771265, 6248042.448059374, 6249505.021459789, 6250320.3125, 6253075.286579687, 6253467.6678575305, 6257777.083688761, 6259471.1692085955, 6260200.0, 6261077.081040459, 6261994.7386485785, 6262885.821371762, 6266620.174272368, 6266643.560544492, 6269056.850095978, 6269778.085248314, 6271027.564161601, 6271311.092591951, 6272185.9375, 6272323.139533076, 6272606.071225613, 6273882.957590365, 6273979.9452599455, 6275825.0, 6276017.1875, 6276139.07446546, 6276688.250614374, 6278001.693866533, 6278368.75, 6278698.4375, 6278984.205091485, 6279037.261213352, 6279470.3125, 6279576.301435514, 6279730.44102951, 6279983.878464, 6280133.582114102, 6280290.891545804, 6280658.8384933695, 6280659.375, 6280717.329595909, 6280788.095054071, 6281598.523047513, 6281813.9435002245, 6281854.67091854, 6281981.25, 6282105.770427611, 6284942.1875, 6285135.036560985, 6285138.82474495, 6285333.338250175, 6286029.020704636, 6286313.490392711, 6287037.624208112, 6287293.24267197, 6288922.842728561, 6289074.139214186, 6289554.863845201, 6290581.09989844, 6290738.584981889, 6291417.048490758, 6291490.376024875, 6291660.9375, 6291995.05750237, 6293463.020836186, 6295032.749780418, 6295263.140135287, 6295557.669293381, 6295840.625, 6296206.285999648, 6296995.806604708, 6297125.0, 6297438.876002592, 6298429.973567865, 6298761.412781759, 6298784.335106591, 6298939.31749941, 6299182.377209422, 6299556.25, 6300517.1875, 6301354.447917697, 6302797.9157672515, 6303805.166559356, 6304705.5237382045, 6305938.726421874, 6308131.192012613, 6308143.842379847, 6311682.8125, 6311829.218684158, 6311957.8125, 6312080.342329191, 6312277.471495648, 6312304.996976939, 6313325.55879268, 6313495.321278466, 6314398.397610112, 6315056.203758538, 6315723.7290109405, 6316065.376443752, 6316479.170480522, 6317574.637756238, 6317740.161839911, 6318252.929387541, 6319656.288055441, 6319826.789023388, 6319898.4375, 6320132.395454851, 6321742.321341204, 6322126.242972718, 6322543.738442794, 6323048.46126944, 6323787.5, 6324395.3125, 6325767.085265827, 6325859.375, 6326540.740077131, 6326739.0625, 6327063.883514921, 6327200.37547521, 6328268.75, 6328395.819962172, 6328414.0625, 6328780.137094264, 6328783.227738428, 6329144.186533051, 6330708.171704404, 6331367.346645919, 6331687.36242996, 6332252.713433251, 6332481.01472999, 6332618.660825759, 6332953.125, 6332993.482207125, 6333263.1811095495, 6333335.7901669135, 6334403.665495945, 6335119.698495572, 6335308.522375763, 6335465.89130151, 6335663.945516664, 6336410.030247067, 6338631.25, 6338745.091240955, 6338844.431328845, 6344066.850042564, 6351184.375, 6351610.931040504, 6352949.6046547955, 6353868.781172387, 6355612.184844367, 6355615.625, 6355734.375, 6356485.932803009, 6357022.800645691, 6358398.4375, 6358617.053361367, 6359894.158317912, 6360485.542303577, 6366499.081881154, 6368873.4375, 6371312.5, 6377690.625, 6378717.746535489, 6380032.549895454, 6380045.239437908, 6380473.4375, 6381397.234612306, 6385938.786976398, 6389056.799406782, 6390346.414241511, 6392738.032185912, 6393326.261641981, 6393762.322274327, 6393798.4375, 6394579.188217825, 6397309.375, 6397782.91754329, 6398302.490561439, 6400306.275347747, 6400501.747480197, 6401304.528292434, 6401319.287495329, 6403746.303703993, 6408233.789647293, 6408678.125, 6410262.445497986, 6414600.706032648, 6416034.265203919, 6417101.647965915, 6417191.440801207, 6418551.271519331, 6419271.199274798, 6420726.5625, 6421086.902040655, 6421346.738207117, 6421432.3432490155, 6421505.719455214, 6422825.0, 6424909.266019939, 6425483.377534771, 6427009.206586263, 6427729.545390813, 6428556.133961364, 6428892.1875, 6430328.785117902, 6432935.910902588, 6433742.143569296, 6434063.504866101, 6437309.746558899, 6437682.500685559, 6438246.651770064, 6438308.685551731, 6441622.034227512, 6441656.943205989, 6444185.452542817, 6446443.245674704, 6446721.875, 6447013.484342978, 6447251.5625, 6448509.375, 6449188.00437441, 6449271.230907982, 6450920.220441443, 6453835.057758153, 6453876.5625, 6454208.698495604, 6454227.181198466, 6455383.0012168195, 6455383.348375817, 6456478.125, 6456848.4375, 6457071.315739867, 6457544.07115704, 6457695.151010837, 6460014.166944795, 6460540.933163622, 6461949.23417383, 6462981.25, 6463043.545550387, 6463163.7768769795, 6463248.957423741, 6464266.967555284, 6465210.607324145, 6466201.5625, 6466695.3125, 6468264.131780277, 6468482.530005473, 6475783.933731065, 6476130.326357787, 6476570.3125, 6477460.288673615, 6477542.845008748, 6477578.780911708, 6477689.0625, 6478074.051595875, 6483006.25, 6485742.779786125, 6488419.435048845, 6491829.51773681, 6491841.290707128, 6493953.775201531, 6494735.9375, 6495098.4375, 6499547.94037648, 6499764.13409498, 6500478.125, 6500759.375, 6503269.4143870855, 6504506.368386002, 6505262.509644498, 6505698.4375, 6506579.933296475, 6506729.4255069215, 6508020.269740112, 6508410.550975245, 6508414.041024837, 6508470.3125, 6508758.079576927, 6509157.9686975945, 6509380.505062803, 6509574.7225927375, 6509657.8125, 6509671.875, 6509694.519276408, 6509700.534527884, 6509748.949247705, 6510063.291774505, 6510309.375, 6510456.07271769, 6510868.75, 6510903.125, 6511490.625, 6511507.8125, 6511579.257639126, 6511744.573091508, 6511876.540390872, 6512104.6875, 6512220.762572304, 6512312.5, 6512624.461535676, 6512956.0620135125, 6512970.3125, 6514229.237220495, 6514614.0625, 6514798.345508784, 6515599.486392833, 6516638.640056239, 6516674.500346042, 6517186.787874269, 6517461.056250285, 6518581.043503324, 6519953.84883693, 6520106.25, 6520138.359111165, 6520177.509195749, 6520983.402326487, 6521335.9375, 6522443.75, 6522562.221701212, 6522562.963080792, 6523040.535556084, 6523273.4375, 6523470.22861996, 6523545.201936955, 6524194.4610124435, 6524398.4375, 6524399.512004228, 6524660.058599031, 6524807.197825271, 6525156.831960587, 6525246.875, 6525867.429893713, 6525912.5, 6526191.907878744, 6526390.417355072, 6526727.160611832, 6527190.625, 6527202.492033153, 6527421.875, 6527551.221434749, 6528618.726499308, 6528713.87466297, 6528838.890257575, 6529184.375, 6529573.882234158, 6529782.282425772, 6529817.1875, 6530102.992240254, 6530498.4375, 6530622.864081191, 6531307.748438792, 6531316.1804977115, 6531735.778995241, 6532406.72338862, 6532679.6875, 6532714.0625, 6532979.6875, 6532984.118723325, 6533175.202582081, 6533571.875, 6533889.0625, 6534223.946893201, 6534645.179951841, 6534983.492212742, 6535138.873919521, 6535706.532936594, 6535725.652035379, 6536306.146833693, 6536540.625, 6536799.702979901, 6537523.794682347, 6538358.997261576, 6539239.0625, 6539883.329042825, 6540347.83865881, 6540415.349692153, 6540518.194754426, 6541237.5, 6541323.4375, 6541326.762178199, 6542100.268618286, 6542265.8128164755, 6542461.212403311, 6542710.9375, 6542929.6875, 6543021.812706554, 6543057.6581906425, 6543681.7936892, 6544312.932644946, 6545003.125, 6545037.12134438, 6545165.0547152, 6545444.788004462, 6545705.0668625645, 6546097.87651956, 6547188.788575968, 6547859.68486701, 6548944.857840055, 6549166.898018294, 6549507.8125, 6549888.3372716755, 6549891.118186456, 6550137.182028131, 6550232.063196789, 6550357.783491214, 6550517.816984989, 6550753.255612261, 6550764.602773164, 6550847.915600823, 6550903.271791631, 6551129.640786331, 6551203.053769546, 6551443.191431582, 6551485.859195159, 6551775.9205182595, 6552102.577037855, 6552192.88825607, 6552413.922093804, 6552506.25, 6552882.8125, 6553071.011983929, 6553482.996118315, 6553542.3927143, 6553615.007287546, 6553813.962292653, 6553870.556041292, 6553904.615035896, 6554053.125, 6554497.838930556, 6554905.314544555, 6554939.314981629, 6555237.185406877, ...], [49.52352937798992, 6.106097052879833, 5.841986227157564, 40.143539415949625, 13.6159546760943, 56.18079723534643, 7.521991504197008, 18.976344085054787, 28.8652727406712, 17.13515083753326, 61.847464987646816, 68.4419260176642, 36.37222727673308, 64.1281503549157, 50.03997513779849, 53.37969881192523, 7.835818697971128, 31.164796755530144, 124.46673805777719, 70.48802947526457, 7.5033675617562885, 15.521361802407899, 30.315594401963274, 55.72653899418125, 79.87634581276737, 52.3584818537382, 22.02457568185052, 8.703351865260792, 23.047877652780134, 29.6135689675017, 57.381868326688256, 28.788239118251347, 34.91446303592274, 21.72027693598234, 8.112720248267909, 34.011068717727554, 15.478459932255783, 89.37685757827333, 39.46843640726788, 5.044002343422344, 9.183151910250793, 39.47365013627491, 28.903197821594254, 6.247737148203259, 26.764380726831114, 23.28817995426865, 38.19550956488731, 13.462731617518836, 9.683002255823894, 22.460172311856, 198.05191421193388, 7.05927347312812, 8.462700729908992, 54.73899828314606, 7.433992669992353, 86.26353438077084, 33.88786166055776, 76.94709112178, 10.046280542111656, 27.15245233316738, 5.94304981710421, 61.14167473884045, 22.038406190767237, 98.28033021335804, 44.64241404092926, 6.12567543348426, 83.96019254783656, 35.08385444980362, 9.927684089680268, 10.466989590806518, 42.17316817743604, 12.903229863531916, 107.57700092213159, 19.096619139485576, 6.09294928444481, 132.51669803573938, 24.63065072553704, 103.35971080835535, 11.806472028026457, 5.035255190118031, 11.316048211632111, 74.74396076428206, 6.732772704158173, 15.504107372862595, 100.3786504660041, 7.915598747108753, 31.32535621387909, 6.360916915172069, 74.09115764250174, 144.70224183966997, 6.207654651627946, 35.37659101441663, 21.36879774656436, 98.96027496279588, 30.43056939547341, 15.79558499349556, 50.70625714322826, 9.688948129890697, 33.41362626129317, 57.40210262424662, 100.60242043048747, 45.60257510376159, 17.97353255131313, 23.359485799058703, 50.90795901209802, 9.053697282499567, 28.900692351017575, 20.5793232100337, 46.22388804271389, 25.221652541269975, 45.4116444268754, 67.76640829898781, 8.616270626189303, 89.22082450950415, 45.82432362093825, 35.85112297337331, 14.983607399970076, 54.09178100691072, 19.051532904599856, 11.12913038100939, 6.930370891242943, 135.71565313671042, 47.24928798817567, 20.624354762334413, 116.38798788296373, 44.54685726336115, 60.65861034094587, 53.0592795358357, 19.793984614193622, 26.28176720483928, 56.91681056765833, 20.67648345231069, 23.73418687362457, 72.8650688750767, 35.93854372733221, 98.43674874692098, 90.49711541659435, 7.787100669687618, 24.460707057979207, 33.93652299042744, 36.43467879848148, 6.999512796284314, 6.555119897833264, 22.636417741120855, 29.39162449244983, 21.142797195235342, 39.05242702369696, 41.265614312779334, 10.845218309011347, 37.32325447297846, 91.85272092594165, 7.318058672839312, 34.163017477212485, 21.182890829937282, 23.77664522138953, 72.66818385982, 45.76965134789088, 95.50921282946771, 6.942478588187351, 21.474734200863534, 18.474225474551837, 28.31789452295169, 51.9633445281965, 11.311809590765908, 108.37494320349309, 64.76944843123559, 18.32466978236183, 70.68253618295546, 22.679228681611214, 31.218592459016307, 31.114837921589853, 14.544241438659448, 35.17678376020796, 24.370584549785722, 53.194285633452736, 12.876539272843162, 27.954929045084498, 27.766869523410065, 20.333599691680178, 33.03579879766091, 19.58270803904933, 74.74420443714389, 96.14407555867571, 37.35969898760891, 27.822296739247346, 5.390209614638708, 62.76626276407271, 24.783735230018312, 5.419879796462916, 53.38373255085065, 40.621110058036024, 33.44137040599152, 65.58893219001172, 86.16325440822371, 6.567306336279031, 38.250144892131054, 17.025574577953737, 39.956115884659305, 9.795796743912637, 5.606346408112999, 101.30146432411429, 90.61852127516835, 26.794535518712948, 11.42478037156381, 27.942807437521253, 35.519977312402084, 9.797592612917487, 31.543976814411124, 104.55897447224227, 50.15225408703442, 65.56244797896275, 64.48908271526784, 8.025163077668598, 76.93484514183488, 44.27440730950848, 124.24457762385964, 14.346736830301934, 34.486989658499574, 21.383001415103447, 7.8541887982852385, 91.31285226885213, 40.439395938277954, 37.0362711552652, 24.33456087247062, 215.23517185940148, 11.38277157414655, 7.705711569906779, 13.162394310421687, 56.725922337617014, 91.07556354742486, 13.452653822817338, 92.23498157211233, 44.11306512855114, 26.534385597092395, 79.15347277581974, 8.523216459182212, 9.71778888117328, 140.77150974931604, 33.99418016235852, 14.663084917734068, 20.134318734322793, 84.70140890892765, 59.5737242543526, 89.4621206400356, 208.6651627927583, 5.581249309229765, 58.8388176128159, 5.555706686174006, 85.63984434759719, 10.476321920847317, 16.647821604647074, 32.76358209613779, 36.64142006042871, 52.92868759675375, 55.29315862319743, 5.481199074506045, 29.78808331294492, 12.325085070020686, 5.5216076251126, 13.820636331017319, 28.407210049034838, 13.313674051383941, 14.592820738413648, 37.85575890997086, 58.22321644976698, 108.02774535297942, 8.67492356737315, 127.03377791773063, 33.78091938242086, 86.55814246654909, 64.67526282000154, 46.21752913754778, 23.965496079206325, 7.030749825662216, 5.584443441791284, 6.58975347704933, 7.8994139980692335, 22.31445865542173, 49.75224764601447, 15.605659774141307, 43.897608447447126, 82.5178046946186, 17.831121537490667, 59.73921554103577, 8.948740207994689, 19.658474417803586, 5.399000967872729, 55.456915913865316, 9.342866207560625, 9.787161943400594, 71.80369037056786, 16.29613383852236, 11.69690603437245, 5.383219453429957, 49.41520325251748, 31.7114207575482, 47.51378439808911, 43.93331065627882, 54.89124157334972, 5.092631066466994, 69.00533797397814, 19.911155289746333, 16.13084875358654, 17.424058178555597, 223.97146618946712, 59.28226460539207, 25.252620814548685, 21.033967074396802, 9.503523471779845, 63.10293559241636, 50.00625586126233, 18.54083370077008, 38.28148337382829, 10.449590680050466, 55.37215145985861, 69.84432226327496, 22.85820011818159, 29.867483200174785, 47.134263566105645, 9.868465096999076, 81.6215078140734, 21.128674213471776, 30.938314037383957, 45.253283953425075, 21.68083885987433, 53.00671590234929, 112.65676997423012, 31.151832431927303, 8.087432478880036, 63.87517908640356, 101.35095066155812, 57.589575401343524, 10.852416430934065, 37.15650768894658, 53.68371357909376, 190.5303843995698, 7.936971463849867, 108.81257217879869, 47.55168476177034, 19.72527388075692, 12.007229486405246, 6.840404235637872, 57.99480094289966, 9.663367009698074, 9.154673728961264, 36.5132122481939, 5.993812060744973, 40.872101217838576, 19.00423873319291, 11.724872034654895, 129.6658621832932, 29.73454569890274, 5.322220998835511, 33.54285349060426, 34.39725415949488, 11.519111273308654, 77.17822576983704, 12.758945776452313, 53.98481866690024, 21.5993077056563, 8.670812736854236, 9.347728233689505, 83.87876609758507, 91.41645165452826, 13.987800864753046, 7.0766085238964145, 82.18463057433422, 9.143223878550627, 87.55820822978193, 99.52793247045679, 63.74306007266137, 11.592862406234778, 91.08728078630236, 85.7317952580836, 25.942584870236423, 22.725315777708147, 84.14575993483126, 47.395943869505274, 9.42501918840545, 39.69762041628322, 39.700469687797515, 8.15096931728432, 123.59749096087803, 11.423779931021057, 87.57555284906576, 14.035758551239029, 15.941440665252731, 13.062824972252645, 13.488063688185417, 39.09929604086761, 86.48134420922744, 56.051546499139675, 34.18879319725035, 42.40758879507341, 7.950338032772707, 15.947922185509515, 73.62722980837758, 50.89472609608393, 75.94886487126595, 44.089668702426266, 40.72470835373394, 18.642437447680454, 41.83609326559594, 28.12883583945177, 178.75322853994265, 6.396280927610903, 9.57237629688982, 51.68932983836994, 72.70392061428888, 16.26798278206789, 14.892132686077426, 40.173580624548094, 5.207924620522743, 5.9530165959351375, 114.08561588204464, 31.08309652239867, 41.97299416868304, 129.0890099097256, 29.712009242124157, 59.70438293905853, 58.35885129100021, 90.64723706109957, 18.86998650093674, 17.858531603771457, 50.273490670583335, 52.24050828510653, 10.349500901596182, 5.419944075388208, 20.89052732807027, 8.480250567691675, 19.959608171581273, 20.852855935426494, 20.80633243502229, 15.061165286461033, 34.59401718818507, 47.94671063094494, 5.729384199213018, 40.429769657288475, 85.06956890071848, 48.060327052791855, 38.40437150649965, 40.476240063767136, 5.113139789928707, 20.04696011299146, 30.495902030638128, 54.02219434799931, 66.18429716983727, 36.87965276331062, 58.033254930599476, 10.548417206218561, 18.035681784290933, 5.935713234694062, 201.25009867662595, 127.09287613514321, 38.49185265942385, 60.329626858187225, 23.338674769073712, 17.95332871090823, 127.11245444033305, 11.51990188076009, 18.748788302271524, 23.647997942068574, 169.87950122124727, 14.347073617830139, 32.10325478069602, 32.929973489595525, 25.17130924295821, 19.54140716537625, 10.10306383067086, 5.2945926685904015, 46.73600520233188, 36.279775575125555, 155.03786584221368, 53.16563122890999, 52.23638330048952, 37.177358594268775, 6.036966635725414, 31.913742541900255, 36.857930107528716, 217.31089779561214, 6.812546406236401, 31.774824299340114, 5.238373480009949, 9.396731034168083, 9.185098981561348, 17.133017426893407, 5.784570915839432, 34.83534491900294, 20.300415698215136, 9.2726954859596, 18.157635262635278, 22.0056184405836, 85.21112351241334, 13.161907152167403, 24.448720488291475, 273.74971463392353, 167.47004480962582, 90.95557787777678, 87.06408623084782, 83.52739306749933, 12.31658265472301, 56.922741869105636, 74.11609138216987, 163.1068432775466, 100.94613309122406, 43.89824598216245, 6.498285633021998, 16.79513524564503, 65.76896448214369, 8.531685821451932, 20.62726269163968, 323.3126482152448, 38.32938574934072, 24.110414586636406, 49.56332555029241, 77.92078672237938, 247.9057146296844, 19.034163010140254, 142.73901666702048, 67.93681674464388, 17.217781334905826, 54.98089218187961, 57.70009972976125, 30.154141843609647, 15.476275855596251, 36.87038483081713, 7.745544910249202, 45.10850012161156, 6.576059189181447, 27.796732898283224, 16.646793644470808, 8.255782903536534, 73.45309066391107, 16.299527353588424, 105.40135650936516, 56.30318043941586, 11.768074882748955, 47.64638414024859, 15.27903879495506, 37.54834373987943, 50.71930803099639, 110.68396918083658, 10.853076542746813, 10.975970591159557, 96.06888416438984, 8.026704286004055, 100.80942018725754, 12.067312687900529, 22.148756248421396, 93.95130269141012, 64.98135090949626, 15.761505112225501, 59.877710020820324, 51.219113073515445, 18.38455479574115, 52.07760126324166, 12.502918121244614, 7.599576454365966, 50.75298059528316, 61.98250979991656, 48.56150247931657, 101.1843493424376, 8.81298625458905, 24.630373690768913, 20.56167392549035, 7.003934775687767, 56.99879564333125, 26.734574923877005, 70.22626420598031, 41.14821869312992, 96.65063603092375, 93.64860717112916, 75.75006705759166, 67.07555027182325, 29.140044569721013, 129.36545125664654, 36.8019766166351, 33.55318109943785, 45.004694777989435, 30.75793551142675, 56.51094892037311, 5.126473714730816, 27.437105359154984, 14.792128802877569, 20.90693939439815, 62.2540410992695, 66.53972895711735, 14.837565836286355, 62.66757164160116, 42.901106942632325, 11.556011330648317, 43.77183662873589, 33.15960410861574, 14.987313129050879, 18.85946259409085, 15.589193285934872, 108.81185595544689, 55.420272641593066, 14.33116873747126, 66.99367894951891, 37.912274354369586, 24.261164681461906, 142.91624341950381, 69.41138536451777, 57.35491864608415, 16.06509409599781, 31.58436547930538, 33.36036835679564, 11.357321205719314, 19.237922562726585, 72.48827184239755, 35.205814748257815, 138.05031671017824, 58.514331050112716, 21.69932595730422, 137.5898066898824, 59.00642072529943, 58.298544426566146, 43.94954235472703, 19.976325568569678, 7.408641861684616, 47.77013411230061, 5.896409367308044, 20.597078537025002, 8.696128388415383, 57.38938877496881, 14.398676862443164, 112.5719154212966, 14.436882726280302, 59.96901359364896, 90.34565344001287, 6.447847504852174, 136.52202215960884, 64.21224102273715, 28.55355420946215, 35.91380436359397, 33.554185995619946, 7.616310243715571, 81.66876819480153, 31.236203888680627, 265.7666218818638, 8.443878838382586, 11.961848630513506, 114.75908878454302, 16.011511208428594, 13.506833992976292, 78.8294288673945, 32.737664326616944, 14.100730788431752, 13.266916649954968, 17.147232053121268, 96.45552620629502, 7.486044502174042, 51.03958714864796, 11.275239243545524, 48.10564498000025, 79.90311203467274, 42.84594951916391, 36.660974940643634, 47.994801206653484, 6.120884429184343, 5.308665783453715, 8.291224986978563, 44.44566257315248, 170.25792387230354, 16.182647024587983, 98.82358579883632, 69.19936713751821, 22.98694369806927, 92.04333072788201, 25.182481865622844, 15.088570335903308, 36.71996806543637, 48.27649904804995, 156.1916018048222, 7.15708457595233, 5.790710310861887, 28.298218947193412, 15.032888027214224, 28.99864308476498, 63.54813806790175, 6.743266512370972, 40.23033882616959, 15.399053215273565, 58.98929426995501, 25.430265634876513, 5.842294587171411, 198.4534213069242, 111.73239414026813, 42.047714482515715, 9.742876595392937, 45.10003216359406, 16.914992603627148, 6.837402277611396, 9.469695655412762, 26.073828246648098, 9.00606644808999, 5.451758290742394, 26.877462776733495, 65.52924833692859, 52.33132477325039, 24.632904417561793, 25.918604668581047, 48.23039639819117, 7.986543515451954, 28.986494577400325, 37.027385232428855, 7.561467791837342, 24.30831504427379, 59.567908970184355, 7.064479174478299, 12.390723654696279, 5.910546759286403, 48.12152697467882, 62.32112055619992, 54.64277363322678, 6.491988903017787, 13.862501245874212, 46.88907688801206, 55.527493150573704, 62.195488212447785, 20.228529923128267, 49.50980606026042, 31.469283486163654, 148.4701755055662, 128.39816091970206, 18.13783740466873, 61.89665226376906, 43.29596452665397, 86.8257108581272, 12.130545849593137, 54.259766980029525, 21.775006935614154, 31.712063152145145, 9.655185982401644, 24.06851115051223, 67.97381747173083, 17.305951039414758, 9.82594921703102, 94.32428996986337, 23.236354225202025, 50.028325740635296, 7.432114978629167, 44.614824699351004, 106.14235123636014, 20.249233712652405, 15.809494094490901, 70.2369003948672, 53.66927984148147, 39.23478616983296, 13.134934164642916, 77.73802329580337, 41.94411805737481, 16.367179739194164, 35.84360217385848, 26.5278749287433, 65.6201606559835, 65.69305772790452, 23.866638879528445, 77.77859297068272, 86.1952473966296, 89.50157422430362, 8.215539844565482, 29.484785268363858, 38.77884234097097, 60.907944043155425, 10.961532024880821, 17.64396044092083, 85.52369174144268, 41.00656293882116, 60.134863813146055, 67.61699364826539, 9.959788827402367, 47.66302738382787, 42.634499658791725, 107.97336928533562, 16.57598582862725, 23.600992582447578, 7.063982157166255, 12.835504297355945, 8.372613434516325, 47.166299874241396, 17.809353595989172, 89.41443854231329, 91.43175628710712, 17.553494048666607, 32.25259130828748, 42.12645819546752, 17.28959667677389, 83.81431293070753, 51.94249768190673, 12.39386722543059, 54.13874131665517, 19.89625281412412, 94.81632077447145, 11.436077176477195, 9.82972022529223, 45.11023513195058, 39.32427707483112, 63.362033737227335, 143.30680480138307, 62.135156890637944, 5.53817114039918, 14.718381623312673, 10.110043955285978, 37.14804513397241, 62.65801531403007, 10.708797827532686, 39.78418867321274, 24.83019404366679, 23.37279078216084, 86.9890677112381, 79.13458113945269, 54.49299799926801, 52.45713767013929, 182.37442737143755, 31.98004885033962, 86.41924210461352, 127.44206261130952, 29.055846780803385, 18.212674374893172, 41.00933948595567, 18.605340073078132, 146.1942060807516, 136.66557929442553, 9.986634479247055, 10.872333952719284, 37.97811731831455, 67.15599266135669, 79.22499889182671, 77.1482988157257, 13.33393094670536, 198.89976059287378, 39.22442054835619, 98.0555205482896, 12.35364852430776, 209.43231718522281, 131.65483657159024, 130.36011846981665, 160.21045023400205, 24.24867912628738, 26.99980213412645, 17.96586333663761, 87.99668161165923, 37.99289018088176, 81.1349025668321, 53.671096841296944, 19.35431654627338, 24.04368716979216, 91.84902326603273, 31.574172965886657, 88.80322319703834, 35.02044621654158, 17.331658919226054, 10.104514392933876, 42.85479784912368, 76.82536562990944, 44.24924953878713, 29.66351077973483, 33.087737794856004, 116.49593264591635, 28.360606805160938, 61.34874021720738, 28.09463950738914, 33.78315730901795, 81.25691784634878, 29.522224625688512, 117.52149505769583, 19.565134389737036, 44.54749004042704, 146.46661691645943, 64.24522369842407, 35.72369609024653, 74.21469042863257, 13.543594561641676, 21.496552890278096, 19.609367825436248, 29.76898967783101, 17.597093332307175, 25.698597694377753, 132.32491655282425, 130.63064588806964, 13.019693740300655, 7.28563958781598, 28.545485199641437, 62.538166884228254, 13.977215268722794, 36.59013590523898, 138.15070752235968, 100.57472716442153, 26.968995740065107, 8.228962507913092, 8.702126147811626, 45.58717617013296, 19.587688827287838, 18.395731797166814, 60.000475231492906, 120.79577586796339, 47.54056342213923, 15.953568704604816, 70.14830582090535, 22.146457059589927, 167.24369753623972, 66.5966545432112, 101.64600009401411, 19.542284954794724, 153.90240816342998, 23.239989827969143, 80.40072290935026, 10.846272368589924, 5.695883032184859, 94.85850860311602, 37.522145771495104, 21.198249605806748, 57.60027545037178, 22.230620187281794, 69.32654668142776, 16.559481650250014, 27.318351312165145, 12.123269196387591, 25.743682858618453, 70.9313247307848, 44.57620591320279, 55.13210846943763, 50.405729602993425, 24.325789328196233, 54.23361944183801, 52.328126912352396, 106.53874935162803, 12.029666809694502, 61.186661281543614, 79.61105786928009, 25.286559611746785, 23.749660478846657, 41.17675611691352, 9.245667523941433, 40.26083488352166, 23.78888053664714, 6.83697370760521, 77.67685410298182, 100.352904179149, 8.58002578579468, 230.69126229303677, 21.09093428429272, 51.37353281622744, 40.59841164489892, 39.92167108400884, 27.53973196300459, 16.074763884166934, 102.3055887372283, 26.69347972360444, 63.91370328265599, 33.41379244273549, 6.0816451145323285, 64.1311849743152, 17.517074715793285, 5.554453177418506, 48.23910988269068, 22.795461947110375, 20.81949932549667, 57.924481979286874, 11.777401374415023, 20.90561773314774, 13.991015039820743, 175.93637980717565, 8.974436386577356, 23.886034591593585, 31.13844715479326, 41.94946600710459, 6.5672852449450545, 13.853848095601192, 8.769143144096667, 14.832082390325505, 18.042343291772493, 15.463862834710893, 12.092109113047224, 13.904005647290209, 6.510350963671224, 27.633117328713947, 84.52857175427422, 57.127671748945524, 7.575159577318864, 10.253427942693525, 21.02763271847453, 5.313235277462295, 26.028506319177264, 88.95802500633593, 40.467585136427786, 40.113866812890365, 21.5416593990377, 16.842122488155447, 20.394075454974182, 126.73052129327068, 26.941912567605495, 81.46119974606701, 48.2832542374368, 108.6579230335994, 15.535837093557976, 15.99989199612833, 56.0640330876879, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3456745.0875809453, 3626814.2338106562, 4839628.496462122, 5027035.9375, 5242899.602546761, 5299951.5625, 5309418.5196372075, 5328316.391835438, 5335230.322227185, 5400636.41438517, 5449767.1875, 5484950.0, 5487782.8125, 5487982.569410069, 5488423.4375, 5490749.518949137, 5490852.1628134465, 5493297.3600493595, 5493623.353017101, 5496852.8312747255, 5499582.527666268, 5501698.581744282, 5504120.373606423, 5505516.317581631, 5505666.413902783, 5505809.055434516, 5506650.401853452, 5506838.212909516, 5508849.642908421, 5511008.830665305, 5533035.9375, 5533598.270942686, 5535214.74756208, 5535533.132224875, 5537727.781097856, 5538193.75, 5538395.446586308, 5539457.601309744, 5542015.927475372, 5542093.8953770455, 5546602.944307248, 5546898.9958712645, 5547284.054131609, 5547570.156896561, 5547738.966725504, 5547798.550354574, 5547976.45236646, 5548494.861660282, 5549217.575975056, 5550235.529271517, 5558752.691849822, 5568987.258062368, 5569756.568836266, 5573910.21967675, 5573935.443995668, 5577410.490022586, 5578550.0, 5581588.652802082, 5582986.67710172, 5599240.81132099, 5607660.979252112, 5607946.672976406, 5610037.052980421, 5610695.318020194, 5611688.664538633, 5611709.728752013, 5614881.25, 5617127.856635805, 5617164.692488621, 5617799.531737104, 5618635.097498835, 5618889.962998405, 5619729.19234368, 5620779.024555881, 5622010.984010438, 5623210.41448007, 5623251.328398214, 5623595.3125, 5625897.269794795, 5626035.560964192, 5626401.6797435125, 5627138.753213632, 5627635.781580953, 5627948.577668293, 5629248.315620847, 5630235.163262474, 5632090.625, 5651603.832442009, 5657668.75, 5663420.173747737, 5664413.576216659, 5667328.125, 5670322.924948325, 5671293.22452224, 5671368.193096201, 5671387.707375886, 5671441.5266635055, 5673070.707105705, 5674171.685256463, 5674176.547811442, 5675362.427276814, 5678964.0625, 5680470.9311218485, 5684962.168740017, 5687298.4375, 5687876.214735766, 5697353.125, 5701213.228098333, 5702028.6818320025, 5704166.99454232, 5704265.625, 5704735.3572789, 5704833.387928114, 5705237.22347001, 5705839.0625, 5707428.125, 5710221.886001227, 5710453.488090216, 5710674.214634102, 5710704.68841057, 5710738.282050927, 5713895.3125, 5717373.4375, 5720394.720767419, 5721570.011217659, 5722469.76042778, 5723294.8546136245, 5723613.356830375, 5723888.373449041, 5725004.562792196, 5727702.662221963, 5728186.91404688, 5729070.011202879, 5729496.875, 5735231.25, 5735723.4375, 5736193.260001421, 5742172.356267689, 5742563.075294154, 5746902.669648124, 5747518.303129315, 5750515.139884274, 5751422.295664518, 5751701.169951632, 5752851.263572862, 5753835.468988345, 5754876.454221233, 5755388.974948571, 5756307.62392893, 5756991.708385478, 5757618.7106210105, 5759164.761109061, 5759518.587159304, 5759697.905830359, 5763616.040943508, 5765195.3125, 5765554.824742043, 5768198.289680776, 5778880.522399671, 5788991.685656919, 5793605.738292306, 5796510.699297801, 5797034.375, 5798776.677174589, 5806849.697782422, 5813781.25, 5815456.922936997, 5818117.1875, 5818855.225806725, 5820616.696437957, 5822035.9375, 5823359.266715763, 5824187.5, 5824515.372023919, 5826932.8125, 5828314.952233667, 5829679.658044152, 5832671.835516641, 5832766.562840725, 5833541.2566765165, 5834398.592826134, 5839124.274675232, 5840795.3125, 5841486.863584507, 5842237.463488762, 5852212.282123042, 5852693.75, 5853079.4642838305, 5855395.861372346, 5863952.228646916, 5871304.362120703, 5872676.5625, 5873987.3060557805, 5879593.140527066, 5879734.868311502, 5880976.961117229, 5892372.331976302, 5895053.048835305, 5895300.5024986025, 5909296.735013463, 5912998.314046667, 5913918.75, 5914201.468492046, 5914843.9320931295, 5915159.830199584, 5917028.125, 5919431.754275948, 5921017.1875, 5922146.547351812, 5923009.375, 5924103.125, 5925904.6875, 5930388.533129467, 5930663.91831708, 5931409.375, 5932837.5, 5936687.33468288, 5940217.1875, 5942390.618339981, 5943853.769345945, 5944151.5625, 5944857.8125, 5945550.0, 5946223.181870793, 5946554.297342364, 5951106.407275651, 5951686.212208223, 5952172.876638196, 5952978.125, 5952989.0625, 5954615.170586045, 5957908.199410896, 5958115.625, 5958223.328093913, 5958618.75, 5958622.297196077, 5970220.7366504865, 5970575.0, 5972158.987209887, 5975982.09230841, 5976467.069315395, 5976752.697871191, 5977022.027954793, 5977162.5, 5977215.1465099435, 5977704.079088593, 5977798.4375, 5977994.207548786, 5978054.6875, 5978151.101552782, 5978261.323125749, 5978275.0, 5978546.472739224, 5978668.095500527, 5978671.875, 5978747.3200648725, 5978803.114552522, 5978867.838727557, 5979141.948818371, 5979335.608671386, 5979626.556518659, 5979719.822961016, 5979981.1554073, 5980202.6297812285, 5980270.3125, 5980322.635073907, 5980488.16863448, 5980489.489573482, 5980671.875, 5980674.769749503, 5980717.1875, 5980784.243642462, 5980855.966628408, 5981048.0808395995, 5981065.077251739, 5981542.812568909, 5981625.750814341, 5981630.464285021, 5981631.25, 5981797.038978417, 5981821.875, 5982477.596173439, 5982503.5034177005, 5982776.5625, 5982783.884896137, 5982827.408778011, 5982834.388776808, 5982930.791259903, 5982934.388525752, 5983309.8689365145, 5983491.648668783, 5986198.752646945, 5986209.710995328, 5988062.095154248, 5989181.150983419, 5992691.574139038, 5993667.1875, 5993996.5010298425, 5994291.5646407, 5994704.389253206, 5995458.6313655, 5995568.375873471, 5995648.718071685, 5995856.018193555, 5996510.9375, 5997088.318652595, 5998488.871634146, 5999296.3277084995, 5999436.13427797, 5999492.789752794, 5999917.969631073, 6000200.705038581, 6000287.363281742, 6000587.018038338, 6000643.75, 6000687.5, 6001143.376759032, 6001145.3125, 6002518.75, 6003313.073496033, 6003828.624349681, 6003997.9001752, 6004221.875, 6005882.357764369, 6006166.7061161995, 6006176.5625, 6007635.9375, 6007913.739599024, 6008421.478421141, 6012490.712278558, 6016661.995157122, 6018438.274327321, 6019749.816436933, 6021807.742784609, 6024405.106840314, 6026098.797078029, 6026597.712198654, 6030663.908135026, 6031110.57730309, 6031732.650519958, 6032482.649926149, 6034323.810848688, 6035339.0625, 6037503.493132401, 6038054.470824129, 6039109.50721319, 6040836.541736994, 6042653.125, 6042664.833168507, 6043569.101169258, 6043588.673646355, 6043823.4375, 6044174.413582727, 6045993.6004405795, 6046851.81198472, 6047895.549263063, 6047903.125, 6048632.091493884, 6050345.3125, 6059050.14292959, 6059970.974684093, 6060762.519243989, 6060961.6392871365, 6061416.866878357, 6062310.662558139, 6062438.88911752, 6062542.096710495, 6062560.706236694, 6064795.3125, 6064806.25, 6065015.472969007, 6066056.655613359, 6066389.239443879, 6067179.6875, 6068393.149039445, 6069219.927746629, 6070484.375, 6071731.25, 6071732.92117844, 6072445.3125, 6072946.721339196, 6074287.234447023, 6078362.5, 6078368.93150552, 6079734.806948989, 6079952.865174786, 6080875.164357109, 6081652.525991578, 6081658.933109908, 6082212.5, 6086935.9375, 6087490.625, 6088293.75, 6088353.125, 6088363.367509315, 6089229.928658556, 6089485.9375, 6089600.0, 6090393.174602771, 6090749.635427646, 6090941.525661494, 6091241.3447921695, 6091446.875, 6091499.979675954, 6091990.736898544, 6092054.082661949, 6092247.146871813, 6092859.375, 6093205.046858877, 6093306.431936775, 6093760.924484837, 6094303.125, 6094837.675823141, 6096031.404978641, 6099485.298138864, 6100305.927310403, 6101609.375, 6101820.0501173325, 6102710.9375, 6103318.342024148, 6103946.875, 6104712.5, 6105817.939585593, 6106182.139777458, 6108559.375, 6110179.3156245435, 6111265.06269445, 6113888.050487885, 6113897.249467321, 6115659.724121878, 6115994.643685828, 6117369.74583061, 6118249.167577406, 6118467.218542867, 6121332.8125, 6121610.9375, 6121708.162244645, 6121992.036737452, 6122076.318293498, 6122360.9375, 6122523.04064253, 6122609.59917498, 6122636.669445529, 6122919.241568436, 6122993.164978154, 6123021.520500445, 6123184.301057482, 6124084.375, 6124109.990182714, 6124179.28232796, 6124256.878438109, 6124326.520003914, 6124345.468879852, 6124490.625, 6124506.020088566, 6124566.187824808, 6124779.354541232, 6124793.864764178, 6124887.138858923, 6125228.362215196, 6125317.922512247, 6125332.504413773, 6125392.9949572, 6125446.709782049, 6125657.725912549, 6125767.179771095, 6125786.810732544, 6125888.341738942, 6126058.602987716, 6126236.050567874, 6127935.9375, 6128544.5690301685, 6128606.693223296, 6129859.623566689, 6130575.0, 6132071.875, 6132663.556014665, 6134543.573749341, 6136337.924382552, 6138828.63421799, 6139795.553273779, 6139920.158237154, 6140045.0687289, 6142237.576262791, 6143038.884252, 6143294.2265008055, 6145199.5944587225, 6145529.6875, 6146491.559006534, 6146496.804743424, 6149217.834943669, 6150138.612387256, 6150374.988250308, 6151479.126453654, 6151793.502745928, 6153272.551955667, 6155699.515530541, 6155757.8125, 6159622.733449168, 6162671.208681745, 6163192.834792197, 6165595.3125, 6165872.97958773, 6165889.92263046, 6166495.3125, 6166593.75, 6167167.258541888, 6167995.726465225, 6168842.1875, 6174622.3114237385, 6177210.346090793, 6183047.285422308, 6183222.375219951, 6183939.721129759, 6184354.6875, 6185401.5625, 6185490.625, 6190186.826392077, 6191168.75, 6191400.0, 6194767.679174258, 6194792.937589154, 6195357.179719467, 6195702.751087387, 6197929.821067086, 6198518.713728634, 6200355.064534549, 6202043.75, 6202689.607502034, 6204605.318093756, 6205664.447925612, 6206743.691309775, 6206852.787147689, 6207086.453153755, 6207618.75, 6207790.625, 6209778.7031717375, 6210031.25, 6210265.44830107, 6210526.5625, 6210843.75, 6211173.802213706, 6212138.879395644, 6212224.772346115, 6212933.924434098, 6212951.036470233, 6212960.259487269, 6213002.090570155, 6216841.750807088, 6216996.5943945665, 6217435.738718438, 6220022.074694934, 6220489.547537938, 6221607.688226676, 6221753.806929199, 6222212.5, 6222248.458472521, 6226373.427365884, 6228806.25, 6229834.767853186, 6230340.625, 6230653.125, 6243866.503391198, 6244045.078378365, 6244296.8322116, 6244982.345751475, 6246320.3125, 6246475.636227821, 6247876.3668771265, 6248042.448059374, 6249505.021459789, 6250320.3125, 6253075.286579687, 6253467.6678575305, 6257777.083688761, 6259471.1692085955, 6260200.0, 6261077.081040459, 6261994.7386485785, 6262885.821371762, 6266620.174272368, 6266643.560544492, 6269056.850095978, 6269778.085248314, 6271027.564161601, 6271311.092591951, 6272185.9375, 6272323.139533076, 6272606.071225613, 6273882.957590365, 6273979.9452599455, 6275825.0, 6276017.1875, 6276139.07446546, 6276688.250614374, 6278001.693866533, 6278368.75, 6278698.4375, 6278984.205091485, 6279037.261213352, 6279470.3125, 6279576.301435514, 6279730.44102951, 6279983.878464, 6280133.582114102, 6280290.891545804, 6280658.8384933695, 6280659.375, 6280717.329595909, 6280788.095054071, 6281598.523047513, 6281813.9435002245, 6281854.67091854, 6281981.25, 6282105.770427611, 6284942.1875, 6285135.036560985, 6285138.82474495, 6285333.338250175, 6286029.020704636, 6286313.490392711, 6287037.624208112, 6287293.24267197, 6288922.842728561, 6289074.139214186, 6289554.863845201, 6290581.09989844, 6290738.584981889, 6291417.048490758, 6291490.376024875, 6291660.9375, 6291995.05750237, 6293463.020836186, 6295032.749780418, 6295263.140135287, 6295557.669293381, 6295840.625, 6296206.285999648, 6296995.806604708, 6297125.0, 6297438.876002592, 6298429.973567865, 6298761.412781759, 6298784.335106591, 6298939.31749941, 6299182.377209422, 6299556.25, 6300517.1875, 6301354.447917697, 6302797.9157672515, 6303805.166559356, 6304705.5237382045, 6305938.726421874, 6308131.192012613, 6308143.842379847, 6311682.8125, 6311829.218684158, 6311957.8125, 6312080.342329191, 6312277.471495648, 6312304.996976939, 6313325.55879268, 6313495.321278466, 6314398.397610112, 6315056.203758538, 6315723.7290109405, 6316065.376443752, 6316479.170480522, 6317574.637756238, 6317740.161839911, 6318252.929387541, 6319656.288055441, 6319826.789023388, 6319898.4375, 6320132.395454851, 6321742.321341204, 6322126.242972718, 6322543.738442794, 6323048.46126944, 6323787.5, 6324395.3125, 6325767.085265827, 6325859.375, 6326540.740077131, 6326739.0625, 6327063.883514921, 6327200.37547521, 6328268.75, 6328395.819962172, 6328414.0625, 6328780.137094264, 6328783.227738428, 6329144.186533051, 6330708.171704404, 6331367.346645919, 6331687.36242996, 6332252.713433251, 6332481.01472999, 6332618.660825759, 6332953.125, 6332993.482207125, 6333263.1811095495, 6333335.7901669135, 6334403.665495945, 6335119.698495572, 6335308.522375763, 6335465.89130151, 6335663.945516664, 6336410.030247067, 6338631.25, 6338745.091240955, 6338844.431328845, 6344066.850042564, 6351184.375, 6351610.931040504, 6352949.6046547955, 6353868.781172387, 6355612.184844367, 6355615.625, 6355734.375, 6356485.932803009, 6357022.800645691, 6358398.4375, 6358617.053361367, 6359894.158317912, 6360485.542303577, 6366499.081881154, 6368873.4375, 6371312.5, 6377690.625, 6378717.746535489, 6380032.549895454, 6380045.239437908, 6380473.4375, 6381397.234612306, 6385938.786976398, 6389056.799406782, 6390346.414241511, 6392738.032185912, 6393326.261641981, 6393762.322274327, 6393798.4375, 6394579.188217825, 6397309.375, 6397782.91754329, 6398302.490561439, 6400306.275347747, 6400501.747480197, 6401304.528292434, 6401319.287495329, 6403746.303703993, 6408233.789647293, 6408678.125, 6410262.445497986, 6414600.706032648, 6416034.265203919, 6417101.647965915, 6417191.440801207, 6418551.271519331, 6419271.199274798, 6420726.5625, 6421086.902040655, 6421346.738207117, 6421432.3432490155, 6421505.719455214, 6422825.0, 6424909.266019939, 6425483.377534771, 6427009.206586263, 6427729.545390813, 6428556.133961364, 6428892.1875, 6430328.785117902, 6432935.910902588, 6433742.143569296, 6434063.504866101, 6437309.746558899, 6437682.500685559, 6438246.651770064, 6438308.685551731, 6441622.034227512, 6441656.943205989, 6444185.452542817, 6446443.245674704, 6446721.875, 6447013.484342978, 6447251.5625, 6448509.375, 6449188.00437441, 6449271.230907982, 6450920.220441443, 6453835.057758153, 6453876.5625, 6454208.698495604, 6454227.181198466, 6455383.0012168195, 6455383.348375817, 6456478.125, 6456848.4375, 6457071.315739867, 6457544.07115704, 6457695.151010837, 6460014.166944795, 6460540.933163622, 6461949.23417383, 6462981.25, 6463043.545550387, 6463163.7768769795, 6463248.957423741, 6464266.967555284, 6465210.607324145, 6466201.5625, 6466695.3125, 6468264.131780277, 6468482.530005473, 6475783.933731065, 6476130.326357787, 6476570.3125, 6477460.288673615, 6477542.845008748, 6477578.780911708, 6477689.0625, 6478074.051595875, 6483006.25, 6485742.779786125, 6488419.435048845, 6491829.51773681, 6491841.290707128, 6493953.775201531, 6494735.9375, 6495098.4375, 6499547.94037648, 6499764.13409498, 6500478.125, 6500759.375, 6503269.4143870855, 6504506.368386002, 6505262.509644498, 6505698.4375, 6506579.933296475, 6506729.4255069215, 6508020.269740112, 6508410.550975245, 6508414.041024837, 6508470.3125, 6508758.079576927, 6509157.9686975945, 6509380.505062803, 6509574.7225927375, 6509657.8125, 6509671.875, 6509694.519276408, 6509700.534527884, 6509748.949247705, 6510063.291774505, 6510309.375, 6510456.07271769, 6510868.75, 6510903.125, 6511490.625, 6511507.8125, 6511579.257639126, 6511744.573091508, 6511876.540390872, 6512104.6875, 6512220.762572304, 6512312.5, 6512624.461535676, 6512956.0620135125, 6512970.3125, 6514229.237220495, 6514614.0625, 6514798.345508784, 6515599.486392833, 6516638.640056239, 6516674.500346042, 6517186.787874269, 6517461.056250285, 6518581.043503324, 6519953.84883693, 6520106.25, 6520138.359111165, 6520177.509195749, 6520983.402326487, 6521335.9375, 6522443.75, 6522562.221701212, 6522562.963080792, 6523040.535556084, 6523273.4375, 6523470.22861996, 6523545.201936955, 6524194.4610124435, 6524398.4375, 6524399.512004228, 6524660.058599031, 6524807.197825271, 6525156.831960587, 6525246.875, 6525867.429893713, 6525912.5, 6526191.907878744, 6526390.417355072, 6526727.160611832, 6527190.625, 6527202.492033153, 6527421.875, 6527551.221434749, 6528618.726499308, 6528713.87466297, 6528838.890257575, 6529184.375, 6529573.882234158, 6529782.282425772, 6529817.1875, 6530102.992240254, 6530498.4375, 6530622.864081191, 6531307.748438792, 6531316.1804977115, 6531735.778995241, 6532406.72338862, 6532679.6875, 6532714.0625, 6532979.6875, 6532984.118723325, 6533175.202582081, 6533571.875, 6533889.0625, 6534223.946893201, 6534645.179951841, 6534983.492212742, 6535138.873919521, 6535706.532936594, 6535725.652035379, 6536306.146833693, 6536540.625, 6536799.702979901, 6537523.794682347, 6538358.997261576, 6539239.0625, 6539883.329042825, 6540347.83865881, 6540415.349692153, 6540518.194754426, 6541237.5, 6541323.4375, 6541326.762178199, 6542100.268618286, 6542265.8128164755, 6542461.212403311, 6542710.9375, 6542929.6875, 6543021.812706554, 6543057.6581906425, 6543681.7936892, 6544312.932644946, 6545003.125, 6545037.12134438, 6545165.0547152, 6545444.788004462, 6545705.0668625645, 6546097.87651956, 6547188.788575968, 6547859.68486701, 6548944.857840055, 6549166.898018294, 6549507.8125, 6549888.3372716755, 6549891.118186456, 6550137.182028131, 6550232.063196789, 6550357.783491214, 6550517.816984989, 6550753.255612261, 6550764.602773164, 6550847.915600823, 6550903.271791631, 6551129.640786331, 6551203.053769546, 6551443.191431582, 6551485.859195159, 6551775.9205182595, 6552102.577037855, 6552192.88825607, 6552413.922093804, 6552506.25, 6552882.8125, 6553071.011983929, 6553482.996118315, 6553542.3927143, 6553615.007287546, 6553813.962292653, 6553870.556041292, 6553904.615035896, 6554053.125, 6554497.838930556, 6554905.314544555, 6554939.314981629, 6555237.185406877, ...], [49.52352937798992, 6.106097052879833, 5.841986227157564, 40.143539415949625, 13.6159546760943, 56.18079723534643, 7.521991504197008, 18.976344085054787, 28.8652727406712, 17.13515083753326, 61.847464987646816, 68.4419260176642, 36.37222727673308, 64.1281503549157, 50.03997513779849, 53.37969881192523, 7.835818697971128, 31.164796755530144, 124.46673805777719, 70.48802947526457, 7.5033675617562885, 15.521361802407899, 30.315594401963274, 55.72653899418125, 79.87634581276737, 52.3584818537382, 22.02457568185052, 8.703351865260792, 23.047877652780134, 29.6135689675017, 57.381868326688256, 28.788239118251347, 34.91446303592274, 21.72027693598234, 8.112720248267909, 34.011068717727554, 15.478459932255783, 89.37685757827333, 39.46843640726788, 5.044002343422344, 9.183151910250793, 39.47365013627491, 28.903197821594254, 6.247737148203259, 26.764380726831114, 23.28817995426865, 38.19550956488731, 13.462731617518836, 9.683002255823894, 22.460172311856, 198.05191421193388, 7.05927347312812, 8.462700729908992, 54.73899828314606, 7.433992669992353, 86.26353438077084, 33.88786166055776, 76.94709112178, 10.046280542111656, 27.15245233316738, 5.94304981710421, 61.14167473884045, 22.038406190767237, 98.28033021335804, 44.64241404092926, 6.12567543348426, 83.96019254783656, 35.08385444980362, 9.927684089680268, 10.466989590806518, 42.17316817743604, 12.903229863531916, 107.57700092213159, 19.096619139485576, 6.09294928444481, 132.51669803573938, 24.63065072553704, 103.35971080835535, 11.806472028026457, 5.035255190118031, 11.316048211632111, 74.74396076428206, 6.732772704158173, 15.504107372862595, 100.3786504660041, 7.915598747108753, 31.32535621387909, 6.360916915172069, 74.09115764250174, 144.70224183966997, 6.207654651627946, 35.37659101441663, 21.36879774656436, 98.96027496279588, 30.43056939547341, 15.79558499349556, 50.70625714322826, 9.688948129890697, 33.41362626129317, 57.40210262424662, 100.60242043048747, 45.60257510376159, 17.97353255131313, 23.359485799058703, 50.90795901209802, 9.053697282499567, 28.900692351017575, 20.5793232100337, 46.22388804271389, 25.221652541269975, 45.4116444268754, 67.76640829898781, 8.616270626189303, 89.22082450950415, 45.82432362093825, 35.85112297337331, 14.983607399970076, 54.09178100691072, 19.051532904599856, 11.12913038100939, 6.930370891242943, 135.71565313671042, 47.24928798817567, 20.624354762334413, 116.38798788296373, 44.54685726336115, 60.65861034094587, 53.0592795358357, 19.793984614193622, 26.28176720483928, 56.91681056765833, 20.67648345231069, 23.73418687362457, 72.8650688750767, 35.93854372733221, 98.43674874692098, 90.49711541659435, 7.787100669687618, 24.460707057979207, 33.93652299042744, 36.43467879848148, 6.999512796284314, 6.555119897833264, 22.636417741120855, 29.39162449244983, 21.142797195235342, 39.05242702369696, 41.265614312779334, 10.845218309011347, 37.32325447297846, 91.85272092594165, 7.318058672839312, 34.163017477212485, 21.182890829937282, 23.77664522138953, 72.66818385982, 45.76965134789088, 95.50921282946771, 6.942478588187351, 21.474734200863534, 18.474225474551837, 28.31789452295169, 51.9633445281965, 11.311809590765908, 108.37494320349309, 64.76944843123559, 18.32466978236183, 70.68253618295546, 22.679228681611214, 31.218592459016307, 31.114837921589853, 14.544241438659448, 35.17678376020796, 24.370584549785722, 53.194285633452736, 12.876539272843162, 27.954929045084498, 27.766869523410065, 20.333599691680178, 33.03579879766091, 19.58270803904933, 74.74420443714389, 96.14407555867571, 37.35969898760891, 27.822296739247346, 5.390209614638708, 62.76626276407271, 24.783735230018312, 5.419879796462916, 53.38373255085065, 40.621110058036024, 33.44137040599152, 65.58893219001172, 86.16325440822371, 6.567306336279031, 38.250144892131054, 17.025574577953737, 39.956115884659305, 9.795796743912637, 5.606346408112999, 101.30146432411429, 90.61852127516835, 26.794535518712948, 11.42478037156381, 27.942807437521253, 35.519977312402084, 9.797592612917487, 31.543976814411124, 104.55897447224227, 50.15225408703442, 65.56244797896275, 64.48908271526784, 8.025163077668598, 76.93484514183488, 44.27440730950848, 124.24457762385964, 14.346736830301934, 34.486989658499574, 21.383001415103447, 7.8541887982852385, 91.31285226885213, 40.439395938277954, 37.0362711552652, 24.33456087247062, 215.23517185940148, 11.38277157414655, 7.705711569906779, 13.162394310421687, 56.725922337617014, 91.07556354742486, 13.452653822817338, 92.23498157211233, 44.11306512855114, 26.534385597092395, 79.15347277581974, 8.523216459182212, 9.71778888117328, 140.77150974931604, 33.99418016235852, 14.663084917734068, 20.134318734322793, 84.70140890892765, 59.5737242543526, 89.4621206400356, 208.6651627927583, 5.581249309229765, 58.8388176128159, 5.555706686174006, 85.63984434759719, 10.476321920847317, 16.647821604647074, 32.76358209613779, 36.64142006042871, 52.92868759675375, 55.29315862319743, 5.481199074506045, 29.78808331294492, 12.325085070020686, 5.5216076251126, 13.820636331017319, 28.407210049034838, 13.313674051383941, 14.592820738413648, 37.85575890997086, 58.22321644976698, 108.02774535297942, 8.67492356737315, 127.03377791773063, 33.78091938242086, 86.55814246654909, 64.67526282000154, 46.21752913754778, 23.965496079206325, 7.030749825662216, 5.584443441791284, 6.58975347704933, 7.8994139980692335, 22.31445865542173, 49.75224764601447, 15.605659774141307, 43.897608447447126, 82.5178046946186, 17.831121537490667, 59.73921554103577, 8.948740207994689, 19.658474417803586, 5.399000967872729, 55.456915913865316, 9.342866207560625, 9.787161943400594, 71.80369037056786, 16.29613383852236, 11.69690603437245, 5.383219453429957, 49.41520325251748, 31.7114207575482, 47.51378439808911, 43.93331065627882, 54.89124157334972, 5.092631066466994, 69.00533797397814, 19.911155289746333, 16.13084875358654, 17.424058178555597, 223.97146618946712, 59.28226460539207, 25.252620814548685, 21.033967074396802, 9.503523471779845, 63.10293559241636, 50.00625586126233, 18.54083370077008, 38.28148337382829, 10.449590680050466, 55.37215145985861, 69.84432226327496, 22.85820011818159, 29.867483200174785, 47.134263566105645, 9.868465096999076, 81.6215078140734, 21.128674213471776, 30.938314037383957, 45.253283953425075, 21.68083885987433, 53.00671590234929, 112.65676997423012, 31.151832431927303, 8.087432478880036, 63.87517908640356, 101.35095066155812, 57.589575401343524, 10.852416430934065, 37.15650768894658, 53.68371357909376, 190.5303843995698, 7.936971463849867, 108.81257217879869, 47.55168476177034, 19.72527388075692, 12.007229486405246, 6.840404235637872, 57.99480094289966, 9.663367009698074, 9.154673728961264, 36.5132122481939, 5.993812060744973, 40.872101217838576, 19.00423873319291, 11.724872034654895, 129.6658621832932, 29.73454569890274, 5.322220998835511, 33.54285349060426, 34.39725415949488, 11.519111273308654, 77.17822576983704, 12.758945776452313, 53.98481866690024, 21.5993077056563, 8.670812736854236, 9.347728233689505, 83.87876609758507, 91.41645165452826, 13.987800864753046, 7.0766085238964145, 82.18463057433422, 9.143223878550627, 87.55820822978193, 99.52793247045679, 63.74306007266137, 11.592862406234778, 91.08728078630236, 85.7317952580836, 25.942584870236423, 22.725315777708147, 84.14575993483126, 47.395943869505274, 9.42501918840545, 39.69762041628322, 39.700469687797515, 8.15096931728432, 123.59749096087803, 11.423779931021057, 87.57555284906576, 14.035758551239029, 15.941440665252731, 13.062824972252645, 13.488063688185417, 39.09929604086761, 86.48134420922744, 56.051546499139675, 34.18879319725035, 42.40758879507341, 7.950338032772707, 15.947922185509515, 73.62722980837758, 50.89472609608393, 75.94886487126595, 44.089668702426266, 40.72470835373394, 18.642437447680454, 41.83609326559594, 28.12883583945177, 178.75322853994265, 6.396280927610903, 9.57237629688982, 51.68932983836994, 72.70392061428888, 16.26798278206789, 14.892132686077426, 40.173580624548094, 5.207924620522743, 5.9530165959351375, 114.08561588204464, 31.08309652239867, 41.97299416868304, 129.0890099097256, 29.712009242124157, 59.70438293905853, 58.35885129100021, 90.64723706109957, 18.86998650093674, 17.858531603771457, 50.273490670583335, 52.24050828510653, 10.349500901596182, 5.419944075388208, 20.89052732807027, 8.480250567691675, 19.959608171581273, 20.852855935426494, 20.80633243502229, 15.061165286461033, 34.59401718818507, 47.94671063094494, 5.729384199213018, 40.429769657288475, 85.06956890071848, 48.060327052791855, 38.40437150649965, 40.476240063767136, 5.113139789928707, 20.04696011299146, 30.495902030638128, 54.02219434799931, 66.18429716983727, 36.87965276331062, 58.033254930599476, 10.548417206218561, 18.035681784290933, 5.935713234694062, 201.25009867662595, 127.09287613514321, 38.49185265942385, 60.329626858187225, 23.338674769073712, 17.95332871090823, 127.11245444033305, 11.51990188076009, 18.748788302271524, 23.647997942068574, 169.87950122124727, 14.347073617830139, 32.10325478069602, 32.929973489595525, 25.17130924295821, 19.54140716537625, 10.10306383067086, 5.2945926685904015, 46.73600520233188, 36.279775575125555, 155.03786584221368, 53.16563122890999, 52.23638330048952, 37.177358594268775, 6.036966635725414, 31.913742541900255, 36.857930107528716, 217.31089779561214, 6.812546406236401, 31.774824299340114, 5.238373480009949, 9.396731034168083, 9.185098981561348, 17.133017426893407, 5.784570915839432, 34.83534491900294, 20.300415698215136, 9.2726954859596, 18.157635262635278, 22.0056184405836, 85.21112351241334, 13.161907152167403, 24.448720488291475, 273.74971463392353, 167.47004480962582, 90.95557787777678, 87.06408623084782, 83.52739306749933, 12.31658265472301, 56.922741869105636, 74.11609138216987, 163.1068432775466, 100.94613309122406, 43.89824598216245, 6.498285633021998, 16.79513524564503, 65.76896448214369, 8.531685821451932, 20.62726269163968, 323.3126482152448, 38.32938574934072, 24.110414586636406, 49.56332555029241, 77.92078672237938, 247.9057146296844, 19.034163010140254, 142.73901666702048, 67.93681674464388, 17.217781334905826, 54.98089218187961, 57.70009972976125, 30.154141843609647, 15.476275855596251, 36.87038483081713, 7.745544910249202, 45.10850012161156, 6.576059189181447, 27.796732898283224, 16.646793644470808, 8.255782903536534, 73.45309066391107, 16.299527353588424, 105.40135650936516, 56.30318043941586, 11.768074882748955, 47.64638414024859, 15.27903879495506, 37.54834373987943, 50.71930803099639, 110.68396918083658, 10.853076542746813, 10.975970591159557, 96.06888416438984, 8.026704286004055, 100.80942018725754, 12.067312687900529, 22.148756248421396, 93.95130269141012, 64.98135090949626, 15.761505112225501, 59.877710020820324, 51.219113073515445, 18.38455479574115, 52.07760126324166, 12.502918121244614, 7.599576454365966, 50.75298059528316, 61.98250979991656, 48.56150247931657, 101.1843493424376, 8.81298625458905, 24.630373690768913, 20.56167392549035, 7.003934775687767, 56.99879564333125, 26.734574923877005, 70.22626420598031, 41.14821869312992, 96.65063603092375, 93.64860717112916, 75.75006705759166, 67.07555027182325, 29.140044569721013, 129.36545125664654, 36.8019766166351, 33.55318109943785, 45.004694777989435, 30.75793551142675, 56.51094892037311, 5.126473714730816, 27.437105359154984, 14.792128802877569, 20.90693939439815, 62.2540410992695, 66.53972895711735, 14.837565836286355, 62.66757164160116, 42.901106942632325, 11.556011330648317, 43.77183662873589, 33.15960410861574, 14.987313129050879, 18.85946259409085, 15.589193285934872, 108.81185595544689, 55.420272641593066, 14.33116873747126, 66.99367894951891, 37.912274354369586, 24.261164681461906, 142.91624341950381, 69.41138536451777, 57.35491864608415, 16.06509409599781, 31.58436547930538, 33.36036835679564, 11.357321205719314, 19.237922562726585, 72.48827184239755, 35.205814748257815, 138.05031671017824, 58.514331050112716, 21.69932595730422, 137.5898066898824, 59.00642072529943, 58.298544426566146, 43.94954235472703, 19.976325568569678, 7.408641861684616, 47.77013411230061, 5.896409367308044, 20.597078537025002, 8.696128388415383, 57.38938877496881, 14.398676862443164, 112.5719154212966, 14.436882726280302, 59.96901359364896, 90.34565344001287, 6.447847504852174, 136.52202215960884, 64.21224102273715, 28.55355420946215, 35.91380436359397, 33.554185995619946, 7.616310243715571, 81.66876819480153, 31.236203888680627, 265.7666218818638, 8.443878838382586, 11.961848630513506, 114.75908878454302, 16.011511208428594, 13.506833992976292, 78.8294288673945, 32.737664326616944, 14.100730788431752, 13.266916649954968, 17.147232053121268, 96.45552620629502, 7.486044502174042, 51.03958714864796, 11.275239243545524, 48.10564498000025, 79.90311203467274, 42.84594951916391, 36.660974940643634, 47.994801206653484, 6.120884429184343, 5.308665783453715, 8.291224986978563, 44.44566257315248, 170.25792387230354, 16.182647024587983, 98.82358579883632, 69.19936713751821, 22.98694369806927, 92.04333072788201, 25.182481865622844, 15.088570335903308, 36.71996806543637, 48.27649904804995, 156.1916018048222, 7.15708457595233, 5.790710310861887, 28.298218947193412, 15.032888027214224, 28.99864308476498, 63.54813806790175, 6.743266512370972, 40.23033882616959, 15.399053215273565, 58.98929426995501, 25.430265634876513, 5.842294587171411, 198.4534213069242, 111.73239414026813, 42.047714482515715, 9.742876595392937, 45.10003216359406, 16.914992603627148, 6.837402277611396, 9.469695655412762, 26.073828246648098, 9.00606644808999, 5.451758290742394, 26.877462776733495, 65.52924833692859, 52.33132477325039, 24.632904417561793, 25.918604668581047, 48.23039639819117, 7.986543515451954, 28.986494577400325, 37.027385232428855, 7.561467791837342, 24.30831504427379, 59.567908970184355, 7.064479174478299, 12.390723654696279, 5.910546759286403, 48.12152697467882, 62.32112055619992, 54.64277363322678, 6.491988903017787, 13.862501245874212, 46.88907688801206, 55.527493150573704, 62.195488212447785, 20.228529923128267, 49.50980606026042, 31.469283486163654, 148.4701755055662, 128.39816091970206, 18.13783740466873, 61.89665226376906, 43.29596452665397, 86.8257108581272, 12.130545849593137, 54.259766980029525, 21.775006935614154, 31.712063152145145, 9.655185982401644, 24.06851115051223, 67.97381747173083, 17.305951039414758, 9.82594921703102, 94.32428996986337, 23.236354225202025, 50.028325740635296, 7.432114978629167, 44.614824699351004, 106.14235123636014, 20.249233712652405, 15.809494094490901, 70.2369003948672, 53.66927984148147, 39.23478616983296, 13.134934164642916, 77.73802329580337, 41.94411805737481, 16.367179739194164, 35.84360217385848, 26.5278749287433, 65.6201606559835, 65.69305772790452, 23.866638879528445, 77.77859297068272, 86.1952473966296, 89.50157422430362, 8.215539844565482, 29.484785268363858, 38.77884234097097, 60.907944043155425, 10.961532024880821, 17.64396044092083, 85.52369174144268, 41.00656293882116, 60.134863813146055, 67.61699364826539, 9.959788827402367, 47.66302738382787, 42.634499658791725, 107.97336928533562, 16.57598582862725, 23.600992582447578, 7.063982157166255, 12.835504297355945, 8.372613434516325, 47.166299874241396, 17.809353595989172, 89.41443854231329, 91.43175628710712, 17.553494048666607, 32.25259130828748, 42.12645819546752, 17.28959667677389, 83.81431293070753, 51.94249768190673, 12.39386722543059, 54.13874131665517, 19.89625281412412, 94.81632077447145, 11.436077176477195, 9.82972022529223, 45.11023513195058, 39.32427707483112, 63.362033737227335, 143.30680480138307, 62.135156890637944, 5.53817114039918, 14.718381623312673, 10.110043955285978, 37.14804513397241, 62.65801531403007, 10.708797827532686, 39.78418867321274, 24.83019404366679, 23.37279078216084, 86.9890677112381, 79.13458113945269, 54.49299799926801, 52.45713767013929, 182.37442737143755, 31.98004885033962, 86.41924210461352, 127.44206261130952, 29.055846780803385, 18.212674374893172, 41.00933948595567, 18.605340073078132, 146.1942060807516, 136.66557929442553, 9.986634479247055, 10.872333952719284, 37.97811731831455, 67.15599266135669, 79.22499889182671, 77.1482988157257, 13.33393094670536, 198.89976059287378, 39.22442054835619, 98.0555205482896, 12.35364852430776, 209.43231718522281, 131.65483657159024, 130.36011846981665, 160.21045023400205, 24.24867912628738, 26.99980213412645, 17.96586333663761, 87.99668161165923, 37.99289018088176, 81.1349025668321, 53.671096841296944, 19.35431654627338, 24.04368716979216, 91.84902326603273, 31.574172965886657, 88.80322319703834, 35.02044621654158, 17.331658919226054, 10.104514392933876, 42.85479784912368, 76.82536562990944, 44.24924953878713, 29.66351077973483, 33.087737794856004, 116.49593264591635, 28.360606805160938, 61.34874021720738, 28.09463950738914, 33.78315730901795, 81.25691784634878, 29.522224625688512, 117.52149505769583, 19.565134389737036, 44.54749004042704, 146.46661691645943, 64.24522369842407, 35.72369609024653, 74.21469042863257, 13.543594561641676, 21.496552890278096, 19.609367825436248, 29.76898967783101, 17.597093332307175, 25.698597694377753, 132.32491655282425, 130.63064588806964, 13.019693740300655, 7.28563958781598, 28.545485199641437, 62.538166884228254, 13.977215268722794, 36.59013590523898, 138.15070752235968, 100.57472716442153, 26.968995740065107, 8.228962507913092, 8.702126147811626, 45.58717617013296, 19.587688827287838, 18.395731797166814, 60.000475231492906, 120.79577586796339, 47.54056342213923, 15.953568704604816, 70.14830582090535, 22.146457059589927, 167.24369753623972, 66.5966545432112, 101.64600009401411, 19.542284954794724, 153.90240816342998, 23.239989827969143, 80.40072290935026, 10.846272368589924, 5.695883032184859, 94.85850860311602, 37.522145771495104, 21.198249605806748, 57.60027545037178, 22.230620187281794, 69.32654668142776, 16.559481650250014, 27.318351312165145, 12.123269196387591, 25.743682858618453, 70.9313247307848, 44.57620591320279, 55.13210846943763, 50.405729602993425, 24.325789328196233, 54.23361944183801, 52.328126912352396, 106.53874935162803, 12.029666809694502, 61.186661281543614, 79.61105786928009, 25.286559611746785, 23.749660478846657, 41.17675611691352, 9.245667523941433, 40.26083488352166, 23.78888053664714, 6.83697370760521, 77.67685410298182, 100.352904179149, 8.58002578579468, 230.69126229303677, 21.09093428429272, 51.37353281622744, 40.59841164489892, 39.92167108400884, 27.53973196300459, 16.074763884166934, 102.3055887372283, 26.69347972360444, 63.91370328265599, 33.41379244273549, 6.0816451145323285, 64.1311849743152, 17.517074715793285, 5.554453177418506, 48.23910988269068, 22.795461947110375, 20.81949932549667, 57.924481979286874, 11.777401374415023, 20.90561773314774, 13.991015039820743, 175.93637980717565, 8.974436386577356, 23.886034591593585, 31.13844715479326, 41.94946600710459, 6.5672852449450545, 13.853848095601192, 8.769143144096667, 14.832082390325505, 18.042343291772493, 15.463862834710893, 12.092109113047224, 13.904005647290209, 6.510350963671224, 27.633117328713947, 84.52857175427422, 57.127671748945524, 7.575159577318864, 10.253427942693525, 21.02763271847453, 5.313235277462295, 26.028506319177264, 88.95802500633593, 40.467585136427786, 40.113866812890365, 21.5416593990377, 16.842122488155447, 20.394075454974182, 126.73052129327068, 26.941912567605495, 81.46119974606701, 48.2832542374368, 108.6579230335994, 15.535837093557976, 15.99989199612833, 56.0640330876879, ...])
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);
([3456745.0875809453, 3626814.2338106562, 4839628.496462122, 5027035.9375, 5242899.602546761, 5299951.5625, 5309418.5196372075, 5328316.391835438, 5335230.322227185, 5400636.41438517, 5449767.1875, 5484950.0, 5487782.8125, 5487982.569410069, 5488423.4375, 5490749.518949137, 5490852.1628134465, 5493297.3600493595, 5493623.353017101, 5496852.8312747255, 5499582.527666268, 5501698.581744282, 5504120.373606423, 5505516.317581631, 5505666.413902783, 5505809.055434516, 5506650.401853452, 5506838.212909516, 5508849.642908421, 5511008.830665305, 5533035.9375, 5533598.270942686, 5535214.74756208, 5535533.132224875, 5537727.781097856, 5538193.75, 5538395.446586308, 5539457.601309744, 5542015.927475372, 5542093.8953770455, 5546602.944307248, 5546898.9958712645, 5547284.054131609, 5547570.156896561, 5547738.966725504, 5547798.550354574, 5547976.45236646, 5548494.861660282, 5549217.575975056, 5550235.529271517, 5558752.691849822, 5568987.258062368, 5569756.568836266, 5573910.21967675, 5573935.443995668, 5577410.490022586, 5578550.0, 5581588.652802082, 5582986.67710172, 5599240.81132099, 5607660.979252112, 5607946.672976406, 5610037.052980421, 5610695.318020194, 5611688.664538633, 5611709.728752013, 5614881.25, 5617127.856635805, 5617164.692488621, 5617799.531737104, 5618635.097498835, 5618889.962998405, 5619729.19234368, 5620779.024555881, 5622010.984010438, 5623210.41448007, 5623251.328398214, 5623595.3125, 5625897.269794795, 5626035.560964192, 5626401.6797435125, 5627138.753213632, 5627635.781580953, 5627948.577668293, 5629248.315620847, 5630235.163262474, 5632090.625, 5651603.832442009, 5657668.75, 5663420.173747737, 5664413.576216659, 5667328.125, 5670322.924948325, 5671293.22452224, 5671368.193096201, 5671387.707375886, 5671441.5266635055, 5673070.707105705, 5674171.685256463, 5674176.547811442, 5675362.427276814, 5678964.0625, 5680470.9311218485, 5684962.168740017, 5687298.4375, 5687876.214735766, 5697353.125, 5701213.228098333, 5702028.6818320025, 5704166.99454232, 5704265.625, 5704735.3572789, 5704833.387928114, 5705237.22347001, 5705839.0625, 5707428.125, 5710221.886001227, 5710453.488090216, 5710674.214634102, 5710704.68841057, 5710738.282050927, 5713895.3125, 5717373.4375, 5720394.720767419, 5721570.011217659, 5722469.76042778, 5723294.8546136245, 5723613.356830375, 5723888.373449041, 5725004.562792196, 5727702.662221963, 5728186.91404688, 5729070.011202879, 5729496.875, 5735231.25, 5735723.4375, 5736193.260001421, 5742172.356267689, 5742563.075294154, 5746902.669648124, 5747518.303129315, 5750515.139884274, 5751422.295664518, 5751701.169951632, 5752851.263572862, 5753835.468988345, 5754876.454221233, 5755388.974948571, 5756307.62392893, 5756991.708385478, 5757618.7106210105, 5759164.761109061, 5759518.587159304, 5759697.905830359, 5763616.040943508, 5765195.3125, 5765554.824742043, 5768198.289680776, 5778880.522399671, 5788991.685656919, 5793605.738292306, 5796510.699297801, 5797034.375, 5798776.677174589, 5806849.697782422, 5813781.25, 5815456.922936997, 5818117.1875, 5818855.225806725, 5820616.696437957, 5822035.9375, 5823359.266715763, 5824187.5, 5824515.372023919, 5826932.8125, 5828314.952233667, 5829679.658044152, 5832671.835516641, 5832766.562840725, 5833541.2566765165, 5834398.592826134, 5839124.274675232, 5840795.3125, 5841486.863584507, 5842237.463488762, 5852212.282123042, 5852693.75, 5853079.4642838305, 5855395.861372346, 5863952.228646916, 5871304.362120703, 5872676.5625, 5873987.3060557805, 5879593.140527066, 5879734.868311502, 5880976.961117229, 5892372.331976302, 5895053.048835305, 5895300.5024986025, 5909296.735013463, 5912998.314046667, 5913918.75, 5914201.468492046, 5914843.9320931295, 5915159.830199584, 5917028.125, 5919431.754275948, 5921017.1875, 5922146.547351812, 5923009.375, 5924103.125, 5925904.6875, 5930388.533129467, 5930663.91831708, 5931409.375, 5932837.5, 5936687.33468288, 5940217.1875, 5942390.618339981, 5943853.769345945, 5944151.5625, 5944857.8125, 5945550.0, 5946223.181870793, 5946554.297342364, 5951106.407275651, 5951686.212208223, 5952172.876638196, 5952978.125, 5952989.0625, 5954615.170586045, 5957908.199410896, 5958115.625, 5958223.328093913, 5958618.75, 5958622.297196077, 5970220.7366504865, 5970575.0, 5972158.987209887, 5975982.09230841, 5976467.069315395, 5976752.697871191, 5977022.027954793, 5977162.5, 5977215.1465099435, 5977704.079088593, 5977798.4375, 5977994.207548786, 5978054.6875, 5978151.101552782, 5978261.323125749, 5978275.0, 5978546.472739224, 5978668.095500527, 5978671.875, 5978747.3200648725, 5978803.114552522, 5978867.838727557, 5979141.948818371, 5979335.608671386, 5979626.556518659, 5979719.822961016, 5979981.1554073, 5980202.6297812285, 5980270.3125, 5980322.635073907, 5980488.16863448, 5980489.489573482, 5980671.875, 5980674.769749503, 5980717.1875, 5980784.243642462, 5980855.966628408, 5981048.0808395995, 5981065.077251739, 5981542.812568909, 5981625.750814341, 5981630.464285021, 5981631.25, 5981797.038978417, 5981821.875, 5982477.596173439, 5982503.5034177005, 5982776.5625, 5982783.884896137, 5982827.408778011, 5982834.388776808, 5982930.791259903, 5982934.388525752, 5983309.8689365145, 5983491.648668783, 5986198.752646945, 5986209.710995328, 5988062.095154248, 5989181.150983419, 5992691.574139038, 5993667.1875, 5993996.5010298425, 5994291.5646407, 5994704.389253206, 5995458.6313655, 5995568.375873471, 5995648.718071685, 5995856.018193555, 5996510.9375, 5997088.318652595, 5998488.871634146, 5999296.3277084995, 5999436.13427797, 5999492.789752794, 5999917.969631073, 6000200.705038581, 6000287.363281742, 6000587.018038338, 6000643.75, 6000687.5, 6001143.376759032, 6001145.3125, 6002518.75, 6003313.073496033, 6003828.624349681, 6003997.9001752, 6004221.875, 6005882.357764369, 6006166.7061161995, 6006176.5625, 6007635.9375, 6007913.739599024, 6008421.478421141, 6012490.712278558, 6016661.995157122, 6018438.274327321, 6019749.816436933, 6021807.742784609, 6024405.106840314, 6026098.797078029, 6026597.712198654, 6030663.908135026, 6031110.57730309, 6031732.650519958, 6032482.649926149, 6034323.810848688, 6035339.0625, 6037503.493132401, 6038054.470824129, 6039109.50721319, 6040836.541736994, 6042653.125, 6042664.833168507, 6043569.101169258, 6043588.673646355, 6043823.4375, 6044174.413582727, 6045993.6004405795, 6046851.81198472, 6047895.549263063, 6047903.125, 6048632.091493884, 6050345.3125, 6059050.14292959, 6059970.974684093, 6060762.519243989, 6060961.6392871365, 6061416.866878357, 6062310.662558139, 6062438.88911752, 6062542.096710495, 6062560.706236694, 6064795.3125, 6064806.25, 6065015.472969007, 6066056.655613359, 6066389.239443879, 6067179.6875, 6068393.149039445, 6069219.927746629, 6070484.375, 6071731.25, 6071732.92117844, 6072445.3125, 6072946.721339196, 6074287.234447023, 6078362.5, 6078368.93150552, 6079734.806948989, 6079952.865174786, 6080875.164357109, 6081652.525991578, 6081658.933109908, 6082212.5, 6086935.9375, 6087490.625, 6088293.75, 6088353.125, 6088363.367509315, 6089229.928658556, 6089485.9375, 6089600.0, 6090393.174602771, 6090749.635427646, 6090941.525661494, 6091241.3447921695, 6091446.875, 6091499.979675954, 6091990.736898544, 6092054.082661949, 6092247.146871813, 6092859.375, 6093205.046858877, 6093306.431936775, 6093760.924484837, 6094303.125, 6094837.675823141, 6096031.404978641, 6099485.298138864, 6100305.927310403, 6101609.375, 6101820.0501173325, 6102710.9375, 6103318.342024148, 6103946.875, 6104712.5, 6105817.939585593, 6106182.139777458, 6108559.375, 6110179.3156245435, 6111265.06269445, 6113888.050487885, 6113897.249467321, 6115659.724121878, 6115994.643685828, 6117369.74583061, 6118249.167577406, 6118467.218542867, 6121332.8125, 6121610.9375, 6121708.162244645, 6121992.036737452, 6122076.318293498, 6122360.9375, 6122523.04064253, 6122609.59917498, 6122636.669445529, 6122919.241568436, 6122993.164978154, 6123021.520500445, 6123184.301057482, 6124084.375, 6124109.990182714, 6124179.28232796, 6124256.878438109, 6124326.520003914, 6124345.468879852, 6124490.625, 6124506.020088566, 6124566.187824808, 6124779.354541232, 6124793.864764178, 6124887.138858923, 6125228.362215196, 6125317.922512247, 6125332.504413773, 6125392.9949572, 6125446.709782049, 6125657.725912549, 6125767.179771095, 6125786.810732544, 6125888.341738942, 6126058.602987716, 6126236.050567874, 6127935.9375, 6128544.5690301685, 6128606.693223296, 6129859.623566689, 6130575.0, 6132071.875, 6132663.556014665, 6134543.573749341, 6136337.924382552, 6138828.63421799, 6139795.553273779, 6139920.158237154, 6140045.0687289, 6142237.576262791, 6143038.884252, 6143294.2265008055, 6145199.5944587225, 6145529.6875, 6146491.559006534, 6146496.804743424, 6149217.834943669, 6150138.612387256, 6150374.988250308, 6151479.126453654, 6151793.502745928, 6153272.551955667, 6155699.515530541, 6155757.8125, 6159622.733449168, 6162671.208681745, 6163192.834792197, 6165595.3125, 6165872.97958773, 6165889.92263046, 6166495.3125, 6166593.75, 6167167.258541888, 6167995.726465225, 6168842.1875, 6174622.3114237385, 6177210.346090793, 6183047.285422308, 6183222.375219951, 6183939.721129759, 6184354.6875, 6185401.5625, 6185490.625, 6190186.826392077, 6191168.75, 6191400.0, 6194767.679174258, 6194792.937589154, 6195357.179719467, 6195702.751087387, 6197929.821067086, 6198518.713728634, 6200355.064534549, 6202043.75, 6202689.607502034, 6204605.318093756, 6205664.447925612, 6206743.691309775, 6206852.787147689, 6207086.453153755, 6207618.75, 6207790.625, 6209778.7031717375, 6210031.25, 6210265.44830107, 6210526.5625, 6210843.75, 6211173.802213706, 6212138.879395644, 6212224.772346115, 6212933.924434098, 6212951.036470233, 6212960.259487269, 6213002.090570155, 6216841.750807088, 6216996.5943945665, 6217435.738718438, 6220022.074694934, 6220489.547537938, 6221607.688226676, 6221753.806929199, 6222212.5, 6222248.458472521, 6226373.427365884, 6228806.25, 6229834.767853186, 6230340.625, 6230653.125, 6243866.503391198, 6244045.078378365, 6244296.8322116, 6244982.345751475, 6246320.3125, 6246475.636227821, 6247876.3668771265, 6248042.448059374, 6249505.021459789, 6250320.3125, 6253075.286579687, 6253467.6678575305, 6257777.083688761, 6259471.1692085955, 6260200.0, 6261077.081040459, 6261994.7386485785, 6262885.821371762, 6266620.174272368, 6266643.560544492, 6269056.850095978, 6269778.085248314, 6271027.564161601, 6271311.092591951, 6272185.9375, 6272323.139533076, 6272606.071225613, 6273882.957590365, 6273979.9452599455, 6275825.0, 6276017.1875, 6276139.07446546, 6276688.250614374, 6278001.693866533, 6278368.75, 6278698.4375, 6278984.205091485, 6279037.261213352, 6279470.3125, 6279576.301435514, 6279730.44102951, 6279983.878464, 6280133.582114102, 6280290.891545804, 6280658.8384933695, 6280659.375, 6280717.329595909, 6280788.095054071, 6281598.523047513, 6281813.9435002245, 6281854.67091854, 6281981.25, 6282105.770427611, 6284942.1875, 6285135.036560985, 6285138.82474495, 6285333.338250175, 6286029.020704636, 6286313.490392711, 6287037.624208112, 6287293.24267197, 6288922.842728561, 6289074.139214186, 6289554.863845201, 6290581.09989844, 6290738.584981889, 6291417.048490758, 6291490.376024875, 6291660.9375, 6291995.05750237, 6293463.020836186, 6295032.749780418, 6295263.140135287, 6295557.669293381, 6295840.625, 6296206.285999648, 6296995.806604708, 6297125.0, 6297438.876002592, 6298429.973567865, 6298761.412781759, 6298784.335106591, 6298939.31749941, 6299182.377209422, 6299556.25, 6300517.1875, 6301354.447917697, 6302797.9157672515, 6303805.166559356, 6304705.5237382045, 6305938.726421874, 6308131.192012613, 6308143.842379847, 6311682.8125, 6311829.218684158, 6311957.8125, 6312080.342329191, 6312277.471495648, 6312304.996976939, 6313325.55879268, 6313495.321278466, 6314398.397610112, 6315056.203758538, 6315723.7290109405, 6316065.376443752, 6316479.170480522, 6317574.637756238, 6317740.161839911, 6318252.929387541, 6319656.288055441, 6319826.789023388, 6319898.4375, 6320132.395454851, 6321742.321341204, 6322126.242972718, 6322543.738442794, 6323048.46126944, 6323787.5, 6324395.3125, 6325767.085265827, 6325859.375, 6326540.740077131, 6326739.0625, 6327063.883514921, 6327200.37547521, 6328268.75, 6328395.819962172, 6328414.0625, 6328780.137094264, 6328783.227738428, 6329144.186533051, 6330708.171704404, 6331367.346645919, 6331687.36242996, 6332252.713433251, 6332481.01472999, 6332618.660825759, 6332953.125, 6332993.482207125, 6333263.1811095495, 6333335.7901669135, 6334403.665495945, 6335119.698495572, 6335308.522375763, 6335465.89130151, 6335663.945516664, 6336410.030247067, 6338631.25, 6338745.091240955, 6338844.431328845, 6344066.850042564, 6351184.375, 6351610.931040504, 6352949.6046547955, 6353868.781172387, 6355612.184844367, 6355615.625, 6355734.375, 6356485.932803009, 6357022.800645691, 6358398.4375, 6358617.053361367, 6359894.158317912, 6360485.542303577, 6366499.081881154, 6368873.4375, 6371312.5, 6377690.625, 6378717.746535489, 6380032.549895454, 6380045.239437908, 6380473.4375, 6381397.234612306, 6385938.786976398, 6389056.799406782, 6390346.414241511, 6392738.032185912, 6393326.261641981, 6393762.322274327, 6393798.4375, 6394579.188217825, 6397309.375, 6397782.91754329, 6398302.490561439, 6400306.275347747, 6400501.747480197, 6401304.528292434, 6401319.287495329, 6403746.303703993, 6408233.789647293, 6408678.125, 6410262.445497986, 6414600.706032648, 6416034.265203919, 6417101.647965915, 6417191.440801207, 6418551.271519331, 6419271.199274798, 6420726.5625, 6421086.902040655, 6421346.738207117, 6421432.3432490155, 6421505.719455214, 6422825.0, 6424909.266019939, 6425483.377534771, 6427009.206586263, 6427729.545390813, 6428556.133961364, 6428892.1875, 6430328.785117902, 6432935.910902588, 6433742.143569296, 6434063.504866101, 6437309.746558899, 6437682.500685559, 6438246.651770064, 6438308.685551731, 6441622.034227512, 6441656.943205989, 6444185.452542817, 6446443.245674704, 6446721.875, 6447013.484342978, 6447251.5625, 6448509.375, 6449188.00437441, 6449271.230907982, 6450920.220441443, 6453835.057758153, 6453876.5625, 6454208.698495604, 6454227.181198466, 6455383.0012168195, 6455383.348375817, 6456478.125, 6456848.4375, 6457071.315739867, 6457544.07115704, 6457695.151010837, 6460014.166944795, 6460540.933163622, 6461949.23417383, 6462981.25, 6463043.545550387, 6463163.7768769795, 6463248.957423741, 6464266.967555284, 6465210.607324145, 6466201.5625, 6466695.3125, 6468264.131780277, 6468482.530005473, 6475783.933731065, 6476130.326357787, 6476570.3125, 6477460.288673615, 6477542.845008748, 6477578.780911708, 6477689.0625, 6478074.051595875, 6483006.25, 6485742.779786125, 6488419.435048845, 6491829.51773681, 6491841.290707128, 6493953.775201531, 6494735.9375, 6495098.4375, 6499547.94037648, 6499764.13409498, 6500478.125, 6500759.375, 6503269.4143870855, 6504506.368386002, 6505262.509644498, 6505698.4375, 6506579.933296475, 6506729.4255069215, 6508020.269740112, 6508410.550975245, 6508414.041024837, 6508470.3125, 6508758.079576927, 6509157.9686975945, 6509380.505062803, 6509574.7225927375, 6509657.8125, 6509671.875, 6509694.519276408, 6509700.534527884, 6509748.949247705, 6510063.291774505, 6510309.375, 6510456.07271769, 6510868.75, 6510903.125, 6511490.625, 6511507.8125, 6511579.257639126, 6511744.573091508, 6511876.540390872, 6512104.6875, 6512220.762572304, 6512312.5, 6512624.461535676, 6512956.0620135125, 6512970.3125, 6514229.237220495, 6514614.0625, 6514798.345508784, 6515599.486392833, 6516638.640056239, 6516674.500346042, 6517186.787874269, 6517461.056250285, 6518581.043503324, 6519953.84883693, 6520106.25, 6520138.359111165, 6520177.509195749, 6520983.402326487, 6521335.9375, 6522443.75, 6522562.221701212, 6522562.963080792, 6523040.535556084, 6523273.4375, 6523470.22861996, 6523545.201936955, 6524194.4610124435, 6524398.4375, 6524399.512004228, 6524660.058599031, 6524807.197825271, 6525156.831960587, 6525246.875, 6525867.429893713, 6525912.5, 6526191.907878744, 6526390.417355072, 6526727.160611832, 6527190.625, 6527202.492033153, 6527421.875, 6527551.221434749, 6528618.726499308, 6528713.87466297, 6528838.890257575, 6529184.375, 6529573.882234158, 6529782.282425772, 6529817.1875, 6530102.992240254, 6530498.4375, 6530622.864081191, 6531307.748438792, 6531316.1804977115, 6531735.778995241, 6532406.72338862, 6532679.6875, 6532714.0625, 6532979.6875, 6532984.118723325, 6533175.202582081, 6533571.875, 6533889.0625, 6534223.946893201, 6534645.179951841, 6534983.492212742, 6535138.873919521, 6535706.532936594, 6535725.652035379, 6536306.146833693, 6536540.625, 6536799.702979901, 6537523.794682347, 6538358.997261576, 6539239.0625, 6539883.329042825, 6540347.83865881, 6540415.349692153, 6540518.194754426, 6541237.5, 6541323.4375, 6541326.762178199, 6542100.268618286, 6542265.8128164755, 6542461.212403311, 6542710.9375, 6542929.6875, 6543021.812706554, 6543057.6581906425, 6543681.7936892, 6544312.932644946, 6545003.125, 6545037.12134438, 6545165.0547152, 6545444.788004462, 6545705.0668625645, 6546097.87651956, 6547188.788575968, 6547859.68486701, 6548944.857840055, 6549166.898018294, 6549507.8125, 6549888.3372716755, 6549891.118186456, 6550137.182028131, 6550232.063196789, 6550357.783491214, 6550517.816984989, 6550753.255612261, 6550764.602773164, 6550847.915600823, 6550903.271791631, 6551129.640786331, 6551203.053769546, 6551443.191431582, 6551485.859195159, 6551775.9205182595, 6552102.577037855, 6552192.88825607, 6552413.922093804, 6552506.25, 6552882.8125, 6553071.011983929, 6553482.996118315, 6553542.3927143, 6553615.007287546, 6553813.962292653, 6553870.556041292, 6553904.615035896, 6554053.125, 6554497.838930556, 6554905.314544555, 6554939.314981629, 6555237.185406877, ...], [49.52352937798992, 6.106097052879833, 5.841986227157564, 40.143539415949625, 13.6159546760943, 56.18079723534643, 7.521991504197008, 18.976344085054787, 28.8652727406712, 17.13515083753326, 61.847464987646816, 68.4419260176642, 36.37222727673308, 64.1281503549157, 50.03997513779849, 53.37969881192523, 7.835818697971128, 31.164796755530144, 124.46673805777719, 70.48802947526457, 7.5033675617562885, 15.521361802407899, 30.315594401963274, 55.72653899418125, 79.87634581276737, 52.3584818537382, 22.02457568185052, 8.703351865260792, 23.047877652780134, 29.6135689675017, 57.381868326688256, 28.788239118251347, 34.91446303592274, 21.72027693598234, 8.112720248267909, 34.011068717727554, 15.478459932255783, 89.37685757827333, 39.46843640726788, 5.044002343422344, 9.183151910250793, 39.47365013627491, 28.903197821594254, 6.247737148203259, 26.764380726831114, 23.28817995426865, 38.19550956488731, 13.462731617518836, 9.683002255823894, 22.460172311856, 198.05191421193388, 7.05927347312812, 8.462700729908992, 54.73899828314606, 7.433992669992353, 86.26353438077084, 33.88786166055776, 76.94709112178, 10.046280542111656, 27.15245233316738, 5.94304981710421, 61.14167473884045, 22.038406190767237, 98.28033021335804, 44.64241404092926, 6.12567543348426, 83.96019254783656, 35.08385444980362, 9.927684089680268, 10.466989590806518, 42.17316817743604, 12.903229863531916, 107.57700092213159, 19.096619139485576, 6.09294928444481, 132.51669803573938, 24.63065072553704, 103.35971080835535, 11.806472028026457, 5.035255190118031, 11.316048211632111, 74.74396076428206, 6.732772704158173, 15.504107372862595, 100.3786504660041, 7.915598747108753, 31.32535621387909, 6.360916915172069, 74.09115764250174, 144.70224183966997, 6.207654651627946, 35.37659101441663, 21.36879774656436, 98.96027496279588, 30.43056939547341, 15.79558499349556, 50.70625714322826, 9.688948129890697, 33.41362626129317, 57.40210262424662, 100.60242043048747, 45.60257510376159, 17.97353255131313, 23.359485799058703, 50.90795901209802, 9.053697282499567, 28.900692351017575, 20.5793232100337, 46.22388804271389, 25.221652541269975, 45.4116444268754, 67.76640829898781, 8.616270626189303, 89.22082450950415, 45.82432362093825, 35.85112297337331, 14.983607399970076, 54.09178100691072, 19.051532904599856, 11.12913038100939, 6.930370891242943, 135.71565313671042, 47.24928798817567, 20.624354762334413, 116.38798788296373, 44.54685726336115, 60.65861034094587, 53.0592795358357, 19.793984614193622, 26.28176720483928, 56.91681056765833, 20.67648345231069, 23.73418687362457, 72.8650688750767, 35.93854372733221, 98.43674874692098, 90.49711541659435, 7.787100669687618, 24.460707057979207, 33.93652299042744, 36.43467879848148, 6.999512796284314, 6.555119897833264, 22.636417741120855, 29.39162449244983, 21.142797195235342, 39.05242702369696, 41.265614312779334, 10.845218309011347, 37.32325447297846, 91.85272092594165, 7.318058672839312, 34.163017477212485, 21.182890829937282, 23.77664522138953, 72.66818385982, 45.76965134789088, 95.50921282946771, 6.942478588187351, 21.474734200863534, 18.474225474551837, 28.31789452295169, 51.9633445281965, 11.311809590765908, 108.37494320349309, 64.76944843123559, 18.32466978236183, 70.68253618295546, 22.679228681611214, 31.218592459016307, 31.114837921589853, 14.544241438659448, 35.17678376020796, 24.370584549785722, 53.194285633452736, 12.876539272843162, 27.954929045084498, 27.766869523410065, 20.333599691680178, 33.03579879766091, 19.58270803904933, 74.74420443714389, 96.14407555867571, 37.35969898760891, 27.822296739247346, 5.390209614638708, 62.76626276407271, 24.783735230018312, 5.419879796462916, 53.38373255085065, 40.621110058036024, 33.44137040599152, 65.58893219001172, 86.16325440822371, 6.567306336279031, 38.250144892131054, 17.025574577953737, 39.956115884659305, 9.795796743912637, 5.606346408112999, 101.30146432411429, 90.61852127516835, 26.794535518712948, 11.42478037156381, 27.942807437521253, 35.519977312402084, 9.797592612917487, 31.543976814411124, 104.55897447224227, 50.15225408703442, 65.56244797896275, 64.48908271526784, 8.025163077668598, 76.93484514183488, 44.27440730950848, 124.24457762385964, 14.346736830301934, 34.486989658499574, 21.383001415103447, 7.8541887982852385, 91.31285226885213, 40.439395938277954, 37.0362711552652, 24.33456087247062, 215.23517185940148, 11.38277157414655, 7.705711569906779, 13.162394310421687, 56.725922337617014, 91.07556354742486, 13.452653822817338, 92.23498157211233, 44.11306512855114, 26.534385597092395, 79.15347277581974, 8.523216459182212, 9.71778888117328, 140.77150974931604, 33.99418016235852, 14.663084917734068, 20.134318734322793, 84.70140890892765, 59.5737242543526, 89.4621206400356, 208.6651627927583, 5.581249309229765, 58.8388176128159, 5.555706686174006, 85.63984434759719, 10.476321920847317, 16.647821604647074, 32.76358209613779, 36.64142006042871, 52.92868759675375, 55.29315862319743, 5.481199074506045, 29.78808331294492, 12.325085070020686, 5.5216076251126, 13.820636331017319, 28.407210049034838, 13.313674051383941, 14.592820738413648, 37.85575890997086, 58.22321644976698, 108.02774535297942, 8.67492356737315, 127.03377791773063, 33.78091938242086, 86.55814246654909, 64.67526282000154, 46.21752913754778, 23.965496079206325, 7.030749825662216, 5.584443441791284, 6.58975347704933, 7.8994139980692335, 22.31445865542173, 49.75224764601447, 15.605659774141307, 43.897608447447126, 82.5178046946186, 17.831121537490667, 59.73921554103577, 8.948740207994689, 19.658474417803586, 5.399000967872729, 55.456915913865316, 9.342866207560625, 9.787161943400594, 71.80369037056786, 16.29613383852236, 11.69690603437245, 5.383219453429957, 49.41520325251748, 31.7114207575482, 47.51378439808911, 43.93331065627882, 54.89124157334972, 5.092631066466994, 69.00533797397814, 19.911155289746333, 16.13084875358654, 17.424058178555597, 223.97146618946712, 59.28226460539207, 25.252620814548685, 21.033967074396802, 9.503523471779845, 63.10293559241636, 50.00625586126233, 18.54083370077008, 38.28148337382829, 10.449590680050466, 55.37215145985861, 69.84432226327496, 22.85820011818159, 29.867483200174785, 47.134263566105645, 9.868465096999076, 81.6215078140734, 21.128674213471776, 30.938314037383957, 45.253283953425075, 21.68083885987433, 53.00671590234929, 112.65676997423012, 31.151832431927303, 8.087432478880036, 63.87517908640356, 101.35095066155812, 57.589575401343524, 10.852416430934065, 37.15650768894658, 53.68371357909376, 190.5303843995698, 7.936971463849867, 108.81257217879869, 47.55168476177034, 19.72527388075692, 12.007229486405246, 6.840404235637872, 57.99480094289966, 9.663367009698074, 9.154673728961264, 36.5132122481939, 5.993812060744973, 40.872101217838576, 19.00423873319291, 11.724872034654895, 129.6658621832932, 29.73454569890274, 5.322220998835511, 33.54285349060426, 34.39725415949488, 11.519111273308654, 77.17822576983704, 12.758945776452313, 53.98481866690024, 21.5993077056563, 8.670812736854236, 9.347728233689505, 83.87876609758507, 91.41645165452826, 13.987800864753046, 7.0766085238964145, 82.18463057433422, 9.143223878550627, 87.55820822978193, 99.52793247045679, 63.74306007266137, 11.592862406234778, 91.08728078630236, 85.7317952580836, 25.942584870236423, 22.725315777708147, 84.14575993483126, 47.395943869505274, 9.42501918840545, 39.69762041628322, 39.700469687797515, 8.15096931728432, 123.59749096087803, 11.423779931021057, 87.57555284906576, 14.035758551239029, 15.941440665252731, 13.062824972252645, 13.488063688185417, 39.09929604086761, 86.48134420922744, 56.051546499139675, 34.18879319725035, 42.40758879507341, 7.950338032772707, 15.947922185509515, 73.62722980837758, 50.89472609608393, 75.94886487126595, 44.089668702426266, 40.72470835373394, 18.642437447680454, 41.83609326559594, 28.12883583945177, 178.75322853994265, 6.396280927610903, 9.57237629688982, 51.68932983836994, 72.70392061428888, 16.26798278206789, 14.892132686077426, 40.173580624548094, 5.207924620522743, 5.9530165959351375, 114.08561588204464, 31.08309652239867, 41.97299416868304, 129.0890099097256, 29.712009242124157, 59.70438293905853, 58.35885129100021, 90.64723706109957, 18.86998650093674, 17.858531603771457, 50.273490670583335, 52.24050828510653, 10.349500901596182, 5.419944075388208, 20.89052732807027, 8.480250567691675, 19.959608171581273, 20.852855935426494, 20.80633243502229, 15.061165286461033, 34.59401718818507, 47.94671063094494, 5.729384199213018, 40.429769657288475, 85.06956890071848, 48.060327052791855, 38.40437150649965, 40.476240063767136, 5.113139789928707, 20.04696011299146, 30.495902030638128, 54.02219434799931, 66.18429716983727, 36.87965276331062, 58.033254930599476, 10.548417206218561, 18.035681784290933, 5.935713234694062, 201.25009867662595, 127.09287613514321, 38.49185265942385, 60.329626858187225, 23.338674769073712, 17.95332871090823, 127.11245444033305, 11.51990188076009, 18.748788302271524, 23.647997942068574, 169.87950122124727, 14.347073617830139, 32.10325478069602, 32.929973489595525, 25.17130924295821, 19.54140716537625, 10.10306383067086, 5.2945926685904015, 46.73600520233188, 36.279775575125555, 155.03786584221368, 53.16563122890999, 52.23638330048952, 37.177358594268775, 6.036966635725414, 31.913742541900255, 36.857930107528716, 217.31089779561214, 6.812546406236401, 31.774824299340114, 5.238373480009949, 9.396731034168083, 9.185098981561348, 17.133017426893407, 5.784570915839432, 34.83534491900294, 20.300415698215136, 9.2726954859596, 18.157635262635278, 22.0056184405836, 85.21112351241334, 13.161907152167403, 24.448720488291475, 273.74971463392353, 167.47004480962582, 90.95557787777678, 87.06408623084782, 83.52739306749933, 12.31658265472301, 56.922741869105636, 74.11609138216987, 163.1068432775466, 100.94613309122406, 43.89824598216245, 6.498285633021998, 16.79513524564503, 65.76896448214369, 8.531685821451932, 20.62726269163968, 323.3126482152448, 38.32938574934072, 24.110414586636406, 49.56332555029241, 77.92078672237938, 247.9057146296844, 19.034163010140254, 142.73901666702048, 67.93681674464388, 17.217781334905826, 54.98089218187961, 57.70009972976125, 30.154141843609647, 15.476275855596251, 36.87038483081713, 7.745544910249202, 45.10850012161156, 6.576059189181447, 27.796732898283224, 16.646793644470808, 8.255782903536534, 73.45309066391107, 16.299527353588424, 105.40135650936516, 56.30318043941586, 11.768074882748955, 47.64638414024859, 15.27903879495506, 37.54834373987943, 50.71930803099639, 110.68396918083658, 10.853076542746813, 10.975970591159557, 96.06888416438984, 8.026704286004055, 100.80942018725754, 12.067312687900529, 22.148756248421396, 93.95130269141012, 64.98135090949626, 15.761505112225501, 59.877710020820324, 51.219113073515445, 18.38455479574115, 52.07760126324166, 12.502918121244614, 7.599576454365966, 50.75298059528316, 61.98250979991656, 48.56150247931657, 101.1843493424376, 8.81298625458905, 24.630373690768913, 20.56167392549035, 7.003934775687767, 56.99879564333125, 26.734574923877005, 70.22626420598031, 41.14821869312992, 96.65063603092375, 93.64860717112916, 75.75006705759166, 67.07555027182325, 29.140044569721013, 129.36545125664654, 36.8019766166351, 33.55318109943785, 45.004694777989435, 30.75793551142675, 56.51094892037311, 5.126473714730816, 27.437105359154984, 14.792128802877569, 20.90693939439815, 62.2540410992695, 66.53972895711735, 14.837565836286355, 62.66757164160116, 42.901106942632325, 11.556011330648317, 43.77183662873589, 33.15960410861574, 14.987313129050879, 18.85946259409085, 15.589193285934872, 108.81185595544689, 55.420272641593066, 14.33116873747126, 66.99367894951891, 37.912274354369586, 24.261164681461906, 142.91624341950381, 69.41138536451777, 57.35491864608415, 16.06509409599781, 31.58436547930538, 33.36036835679564, 11.357321205719314, 19.237922562726585, 72.48827184239755, 35.205814748257815, 138.05031671017824, 58.514331050112716, 21.69932595730422, 137.5898066898824, 59.00642072529943, 58.298544426566146, 43.94954235472703, 19.976325568569678, 7.408641861684616, 47.77013411230061, 5.896409367308044, 20.597078537025002, 8.696128388415383, 57.38938877496881, 14.398676862443164, 112.5719154212966, 14.436882726280302, 59.96901359364896, 90.34565344001287, 6.447847504852174, 136.52202215960884, 64.21224102273715, 28.55355420946215, 35.91380436359397, 33.554185995619946, 7.616310243715571, 81.66876819480153, 31.236203888680627, 265.7666218818638, 8.443878838382586, 11.961848630513506, 114.75908878454302, 16.011511208428594, 13.506833992976292, 78.8294288673945, 32.737664326616944, 14.100730788431752, 13.266916649954968, 17.147232053121268, 96.45552620629502, 7.486044502174042, 51.03958714864796, 11.275239243545524, 48.10564498000025, 79.90311203467274, 42.84594951916391, 36.660974940643634, 47.994801206653484, 6.120884429184343, 5.308665783453715, 8.291224986978563, 44.44566257315248, 170.25792387230354, 16.182647024587983, 98.82358579883632, 69.19936713751821, 22.98694369806927, 92.04333072788201, 25.182481865622844, 15.088570335903308, 36.71996806543637, 48.27649904804995, 156.1916018048222, 7.15708457595233, 5.790710310861887, 28.298218947193412, 15.032888027214224, 28.99864308476498, 63.54813806790175, 6.743266512370972, 40.23033882616959, 15.399053215273565, 58.98929426995501, 25.430265634876513, 5.842294587171411, 198.4534213069242, 111.73239414026813, 42.047714482515715, 9.742876595392937, 45.10003216359406, 16.914992603627148, 6.837402277611396, 9.469695655412762, 26.073828246648098, 9.00606644808999, 5.451758290742394, 26.877462776733495, 65.52924833692859, 52.33132477325039, 24.632904417561793, 25.918604668581047, 48.23039639819117, 7.986543515451954, 28.986494577400325, 37.027385232428855, 7.561467791837342, 24.30831504427379, 59.567908970184355, 7.064479174478299, 12.390723654696279, 5.910546759286403, 48.12152697467882, 62.32112055619992, 54.64277363322678, 6.491988903017787, 13.862501245874212, 46.88907688801206, 55.527493150573704, 62.195488212447785, 20.228529923128267, 49.50980606026042, 31.469283486163654, 148.4701755055662, 128.39816091970206, 18.13783740466873, 61.89665226376906, 43.29596452665397, 86.8257108581272, 12.130545849593137, 54.259766980029525, 21.775006935614154, 31.712063152145145, 9.655185982401644, 24.06851115051223, 67.97381747173083, 17.305951039414758, 9.82594921703102, 94.32428996986337, 23.236354225202025, 50.028325740635296, 7.432114978629167, 44.614824699351004, 106.14235123636014, 20.249233712652405, 15.809494094490901, 70.2369003948672, 53.66927984148147, 39.23478616983296, 13.134934164642916, 77.73802329580337, 41.94411805737481, 16.367179739194164, 35.84360217385848, 26.5278749287433, 65.6201606559835, 65.69305772790452, 23.866638879528445, 77.77859297068272, 86.1952473966296, 89.50157422430362, 8.215539844565482, 29.484785268363858, 38.77884234097097, 60.907944043155425, 10.961532024880821, 17.64396044092083, 85.52369174144268, 41.00656293882116, 60.134863813146055, 67.61699364826539, 9.959788827402367, 47.66302738382787, 42.634499658791725, 107.97336928533562, 16.57598582862725, 23.600992582447578, 7.063982157166255, 12.835504297355945, 8.372613434516325, 47.166299874241396, 17.809353595989172, 89.41443854231329, 91.43175628710712, 17.553494048666607, 32.25259130828748, 42.12645819546752, 17.28959667677389, 83.81431293070753, 51.94249768190673, 12.39386722543059, 54.13874131665517, 19.89625281412412, 94.81632077447145, 11.436077176477195, 9.82972022529223, 45.11023513195058, 39.32427707483112, 63.362033737227335, 143.30680480138307, 62.135156890637944, 5.53817114039918, 14.718381623312673, 10.110043955285978, 37.14804513397241, 62.65801531403007, 10.708797827532686, 39.78418867321274, 24.83019404366679, 23.37279078216084, 86.9890677112381, 79.13458113945269, 54.49299799926801, 52.45713767013929, 182.37442737143755, 31.98004885033962, 86.41924210461352, 127.44206261130952, 29.055846780803385, 18.212674374893172, 41.00933948595567, 18.605340073078132, 146.1942060807516, 136.66557929442553, 9.986634479247055, 10.872333952719284, 37.97811731831455, 67.15599266135669, 79.22499889182671, 77.1482988157257, 13.33393094670536, 198.89976059287378, 39.22442054835619, 98.0555205482896, 12.35364852430776, 209.43231718522281, 131.65483657159024, 130.36011846981665, 160.21045023400205, 24.24867912628738, 26.99980213412645, 17.96586333663761, 87.99668161165923, 37.99289018088176, 81.1349025668321, 53.671096841296944, 19.35431654627338, 24.04368716979216, 91.84902326603273, 31.574172965886657, 88.80322319703834, 35.02044621654158, 17.331658919226054, 10.104514392933876, 42.85479784912368, 76.82536562990944, 44.24924953878713, 29.66351077973483, 33.087737794856004, 116.49593264591635, 28.360606805160938, 61.34874021720738, 28.09463950738914, 33.78315730901795, 81.25691784634878, 29.522224625688512, 117.52149505769583, 19.565134389737036, 44.54749004042704, 146.46661691645943, 64.24522369842407, 35.72369609024653, 74.21469042863257, 13.543594561641676, 21.496552890278096, 19.609367825436248, 29.76898967783101, 17.597093332307175, 25.698597694377753, 132.32491655282425, 130.63064588806964, 13.019693740300655, 7.28563958781598, 28.545485199641437, 62.538166884228254, 13.977215268722794, 36.59013590523898, 138.15070752235968, 100.57472716442153, 26.968995740065107, 8.228962507913092, 8.702126147811626, 45.58717617013296, 19.587688827287838, 18.395731797166814, 60.000475231492906, 120.79577586796339, 47.54056342213923, 15.953568704604816, 70.14830582090535, 22.146457059589927, 167.24369753623972, 66.5966545432112, 101.64600009401411, 19.542284954794724, 153.90240816342998, 23.239989827969143, 80.40072290935026, 10.846272368589924, 5.695883032184859, 94.85850860311602, 37.522145771495104, 21.198249605806748, 57.60027545037178, 22.230620187281794, 69.32654668142776, 16.559481650250014, 27.318351312165145, 12.123269196387591, 25.743682858618453, 70.9313247307848, 44.57620591320279, 55.13210846943763, 50.405729602993425, 24.325789328196233, 54.23361944183801, 52.328126912352396, 106.53874935162803, 12.029666809694502, 61.186661281543614, 79.61105786928009, 25.286559611746785, 23.749660478846657, 41.17675611691352, 9.245667523941433, 40.26083488352166, 23.78888053664714, 6.83697370760521, 77.67685410298182, 100.352904179149, 8.58002578579468, 230.69126229303677, 21.09093428429272, 51.37353281622744, 40.59841164489892, 39.92167108400884, 27.53973196300459, 16.074763884166934, 102.3055887372283, 26.69347972360444, 63.91370328265599, 33.41379244273549, 6.0816451145323285, 64.1311849743152, 17.517074715793285, 5.554453177418506, 48.23910988269068, 22.795461947110375, 20.81949932549667, 57.924481979286874, 11.777401374415023, 20.90561773314774, 13.991015039820743, 175.93637980717565, 8.974436386577356, 23.886034591593585, 31.13844715479326, 41.94946600710459, 6.5672852449450545, 13.853848095601192, 8.769143144096667, 14.832082390325505, 18.042343291772493, 15.463862834710893, 12.092109113047224, 13.904005647290209, 6.510350963671224, 27.633117328713947, 84.52857175427422, 57.127671748945524, 7.575159577318864, 10.253427942693525, 21.02763271847453, 5.313235277462295, 26.028506319177264, 88.95802500633593, 40.467585136427786, 40.113866812890365, 21.5416593990377, 16.842122488155447, 20.394075454974182, 126.73052129327068, 26.941912567605495, 81.46119974606701, 48.2832542374368, 108.6579230335994, 15.535837093557976, 15.99989199612833, 56.0640330876879, ...])
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)