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 = 45554
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);
([3354802.1074549914, 3527860.8408356626, 3786432.8125, 3848076.507214613, 3903563.2027982045, 3905585.2384595578, 3941609.2597292024, 3973201.457274667, 3975628.3445867896, 4016418.4725177772, 4067935.3136400552, 4101323.4375, 4102651.7608526535, 4106879.6875, 4407825.0, 6411172.525484148, 6619219.806180022, 6666632.483303439, 6667240.625, 6687689.0625, 6827748.4375, 6833684.375, 6839329.6875, 6845739.359545365, 6852681.25, 6854099.124436219, 6863589.998360452, 6876772.917136773, 6879623.539862196, 6884484.32188299, 6894780.877045467, 6894886.845702831, 6896932.8125, 6899055.971425064, 6913000.0, 6923426.044687438, 6923537.314755832, 6924990.206763026, 6925065.625, 6925956.25, 6927813.959815078, 6935619.679039004, 6937410.513614089, 6938386.948116304, 6938507.017405839, 6938593.7535652, 6938600.0, 6938622.240835015, 6938632.8125, 6938673.4375, 6938707.041412734, 6938719.528793757, 6938766.350058068, 6938779.6875, 6938803.125, 6938864.541289982, 6938889.0625, 6938903.125, 6938904.190761283, 6938924.7867093915, 6938926.725283346, 6938941.979380596, 6938994.997166946, 6939011.205464017, 6939015.350571049, 6939026.5625, 6939039.377770381, 6939042.1875, 6939068.976409396, 6939104.261428744, 6939113.549762107, 6939127.088774178, 6939132.8125, 6939133.244496837, 6939144.981219093, 6939146.272000808, 6939157.8125, 6939200.471187169, 6939226.5625, 6939231.25, 6939241.296490401, 6939253.014098707, 6939269.25898788, 6939285.285910659, 6939297.274550564, 6939352.779450209, 6939367.808307937, 6939371.875, 6939375.591687054, 6939405.18877512, 6939406.564976395, 6939407.775731792, 6939435.653623986, 6939448.4375, 6939458.571601029, 6939471.970273726, 6939478.781086413, 6939491.749881374, 6939518.75, 6939567.283710019, 6939570.3125, 6939588.554858945, 6939600.0, 6939608.474659504, 6939624.899097221, 6939634.375, 6939651.8741189, 6939660.9375, 6939665.581681443, 6939680.827894568, 6939687.5, 6939731.25, 6939745.422774655, 6939804.631270088, 6939845.3125, 6939893.75, 6939937.154764975, 6939948.4375, 6939989.0625, 6940031.25, 6940044.491806067, 6940046.875, 6940055.530455621, 6940087.353139788, 6940089.0625, 6940093.443862408, 6940115.458356021, 6940118.75, 6940233.011394197, 6940275.0, 6940299.824862644, 6940310.781371359, 6940321.875, 6940327.708441948, 6940388.250670933, 6940426.5625, 6940465.625, 6940499.874240641, 6940512.846897102, 6940533.297546946, 6940537.725530278, 6940556.25, 6940692.61495206, 6940695.939024323, 6940725.156714866, 6940727.147691556, 6940735.774847405, 6940745.549027378, 6940807.946699627, 6940998.269429927, 6941135.963993458, 6941217.241951964, 6941230.158753133, 6941244.025045262, 6941247.112492503, 6941394.2826365875, 6941476.43966993, 6941563.17716334, 6941890.176865576, 6942101.5625, 6942362.5, 6943046.732154239, 6943180.307309808, 6943329.526664934, 6943913.721457522, 6951579.6875, 6957047.792026478, 6965468.423013009, 6969477.768303848, 6971076.4952604575, 6997172.10565719, 6997225.253059915, 7015923.40288122, 7016396.432591759, 7016517.1875, 7016539.232547051, 7016672.4065863285, 7016955.907819982, 7017105.679751716, 7017162.585791002, 7017330.110308291, 7017493.234316617, 7017576.5625, 7017805.816308404, 7019427.409263062, 7019578.341069663, 7019632.612513504, 7019789.0625, 7020052.636420742, 7020831.25, 7021550.0, 7023365.625, 7025788.712214687, 7028482.024744548, 7029201.4588048365, 7029281.028383746, 7030205.362263227, 7030308.495828601, 7040742.1875, 7042790.625, 7042808.26454668, 7045370.37775975, 7046804.833580344, 7048300.64626969, 7048475.0, 7057977.745969941, 7059953.033097197, 7060100.196833769, 7060616.747112445, 7060821.875, 7060982.056740996, 7062193.75, 7062428.125, 7062522.620158177, 7062546.3765161345, 7062990.540640767, 7063212.5, 7063257.0586928325, 7063632.433703741, 7064051.5625, 7064067.223189877, 7064592.392341069, 7064664.9902706705, 7064756.25, 7065118.42119233, 7076146.94471543, 7078721.600875614, 7078732.153372796, 7079259.64015031, 7079556.145941422, 7079676.244329136, 7080110.277022602, 7081327.867836313, 7081358.928387177, 7081380.705498392, 7081390.18341261, 7081449.648394703, 7081549.6309424825, 7081916.80714011, 7082102.684779155, 7082220.3125, 7082250.0, 7082296.875, 7082357.225239609, 7082392.068139, 7083076.920383453, 7083078.125, 7083306.25, 7083685.099372682, 7085557.368156258, 7085586.1630752515, 7085690.625, 7085707.8125, 7085804.397597494, 7086624.227571931, 7086953.125, 7087342.1875, 7088031.25, 7101987.724951435, 7102156.25, 7102179.307420896, 7102513.003107618, 7104881.870636922, 7105793.75, 7105804.660201586, 7106335.9375, 7106573.253354658, 7106979.314192985, 7107372.976434992, 7107967.056537828, 7108093.894082551, 7108198.683869044, 7108209.060985183, 7108370.172307361, 7108370.637513336, 7109003.028182936, 7109085.115550867, 7109124.8183089355, 7109326.347444743, 7109409.375, 7109458.366040278, 7109647.713748583, 7109920.058582105, 7109928.934400848, 7109973.90169237, 7110293.75, 7110497.935107823, 7110775.0, 7110860.9375, 7110894.990611991, 7111015.625, 7111041.830436956, 7111387.076984193, 7111423.206790777, 7111604.6875, 7112295.548671995, 7113342.1875, 7114305.615251506, 7120843.426219268, 7144387.884682347, 7148204.566137708, 7149732.083168054, 7157056.828173178, 7167254.540914501, 7174482.512255006, 7174529.626508614, 7175003.490006772, 7175314.408939413, 7175446.082402142, 7175467.472037502, 7175551.5625, 7175676.5625, 7175779.911647723, 7175788.576851681, 7175871.875, 7176054.434826329, 7176266.5896123145, 7176510.506134093, 7176983.026699702, 7177276.5625, 7179701.553223402, 7180436.142889577, 7188567.980058311, 7189750.0, 7190890.895389342, 7192632.8125, 7194023.095956235, 7194770.697577787, 7194899.721239044, 7195531.25, 7195938.867038402, 7195990.305064394, 7197045.3125, 7197459.126054724, 7199828.703352115, 7206037.5, 7206146.920622651, 7206438.469130039, 7209133.656114689, 7223676.5625, 7225205.895306985, 7225232.258769387, 7226386.549058366, 7228473.019576093, 7233256.367874002, 7233325.0, 7238725.120468447, 7239287.830039208, 7240310.076111103, 7250866.29557305, 7251596.767556608, 7252741.281877703, 7255228.125, 7257429.6875, 7267083.880937322, 7267221.428641363, 7269212.5, 7269525.063178817, 7271587.49671426, 7273125.0, 7273125.093518262, 7273564.728322001, 7280156.033304571, 7281039.0625, 7281142.884881684, 7281212.5, 7281302.721359106, 7281331.25, 7281549.592191875, 7281674.583043281, 7281720.74538936, 7281780.532913515, 7281846.413305213, 7281910.9375, 7282035.9375, 7282846.8322852785, 7283114.0625, 7283140.625, 7283287.054779361, 7283367.1875, 7283370.3125, 7283424.183977664, 7283556.957037977, 7283610.082073313, 7283885.7862224355, 7283959.375, 7284202.45843693, 7284482.535470111, 7284532.398753146, 7284557.8125, 7284607.8125, 7284643.875643013, 7284646.875, 7284720.787319993, 7284772.70431358, 7284842.564950292, 7284946.875, 7285000.64396258, 7285059.375, 7285098.793097376, 7285195.068564211, 7285262.155449956, 7285303.502647023, 7285375.07913937, 7285439.0625, 7285550.0, 7285556.032024304, 7285746.68880722, 7285780.639222408, 7285861.902611005, 7286046.34113256, 7286057.8125, 7286148.793810954, 7286207.340437415, 7286417.12552405, 7293412.5, 7295085.336217437, 7295690.625, 7296605.500148071, 7300562.5, 7304844.876071032, 7317283.365233171, 7319426.659615653, 7319530.40951388, 7320371.875, 7320434.783664344, 7321044.890295151, 7321604.9424741715, 7322414.0625, 7322630.2160963975, 7334599.240402156, 7336549.2113070125, 7336557.612917018, 7339616.418371565, 7345986.64819267, 7347341.382667961, 7352009.388338142, 7352121.688173053, 7352568.865299915, 7352577.502763198, 7352597.966679526, 7352601.6633227, 7352614.419356576, 7352631.418732548, 7352821.875, 7353215.625, 7353262.5, 7353263.713993311, 7353319.555435332, 7353659.375, 7353993.75, 7354156.959892636, 7354209.6186990235, 7354264.941624616, 7354343.75, 7354497.787436444, 7354524.1736162035, 7354603.455835148, 7354617.935410282, 7354645.362578356, 7354746.856105774, 7354845.530995579, 7354870.3125, 7354889.0625, 7355068.435726001, 7355077.69584588, 7355112.396369895, 7355125.889990746, 7355145.670988794, 7355178.125, 7355185.367733663, 7355198.4375, 7355203.732726962, 7355214.99400084, 7355244.607980292, 7355254.246939507, 7355299.017352145, 7355338.474243869, 7355343.817795786, 7355354.6875, 7355357.8125, 7355374.62206463, 7355391.000207416, 7355418.456836525, 7355422.335957031, 7355477.773327166, 7355480.140142729, 7355531.25, 7355547.517574097, 7355556.046713513, 7355588.352657255, 7355592.1875, 7355644.645185987, 7355665.625, 7355669.009087206, 7355690.346482223, 7355745.3125, 7355792.1875, 7355795.614979774, 7355904.6875, 7355935.074500679, 7355969.81874781, 7355977.7349077305, 7356004.6875, 7356044.544223574, 7356095.975378169, 7356096.501361387, 7356108.722664487, 7356189.973861348, 7356202.390663483, 7356205.987901409, 7356222.995565048, 7356224.879500821, 7356231.5558223035, 7356266.274633856, 7356343.386982329, 7356365.761073428, 7356375.0, 7356392.1875, 7356415.426962709, 7356467.022442875, 7356496.247239605, 7356499.668061321, 7356501.092931335, 7356515.834537162, 7356548.610681674, 7356609.375, 7356613.191586309, 7356628.999814063, 7356698.4375, 7356782.8125, 7356838.75532743, 7356881.25, 7356919.261541011, 7356923.428285839, 7356934.375, 7356978.331249505, 7356992.1875, 7357102.435075737, 7357104.303435986, 7357145.5828178115, 7357163.800981813, 7357365.625, 7357486.283110044, 7357508.866070087, 7357546.300946213, 7357556.486875438, 7357649.8720203, 7358778.125, 7358917.005070432, 7359182.8125, 7359212.5, 7359309.396565407, 7359872.651377032, 7360727.485619391, 7360760.340855845, 7360885.813206121, 7360899.003323677, 7360904.31437797, 7360979.253514907, 7361539.1727617765, 7361573.4375, 7361707.8125, 7361802.805425439, 7361933.6363427555, 7362117.576725459, 7362357.603697559, 7362393.75, 7362687.200741991, 7362797.540662262, 7362881.25, 7362962.5, 7363128.755177655, 7363128.985056559, 7363170.3125, 7363412.921308377, 7363469.329617575, 7363752.4183982555, 7363932.8125, 7364199.822370625, 7364251.5625, 7365406.210482221, 7365530.903301359, 7365882.51853504, 7367076.305215065, 7367266.157716722, 7369517.347935324, 7369959.345713586, 7370492.1875, 7370522.548205167, 7370938.995697562, 7371384.933206848, 7371690.395230953, 7372289.798706974, 7372291.960832737, 7372299.383189563, 7372489.0625, 7372726.985377039, 7372749.292322642, 7372999.676050175, 7373176.472177598, 7373204.039618553, 7373207.56662626, 7373429.284471015, 7373675.484970275, 7373675.797441815, 7373818.902928222, 7374217.962063734, 7374497.966938005, 7374503.125, 7374581.328782969, 7374792.1875, 7375021.430371108, 7375023.4375, 7375082.435706556, 7375257.878137975, 7375267.969520748, 7375321.409852123, 7375322.026970948, 7375606.062979348, 7375702.829765639, 7375729.6875, 7375785.9375, 7375802.139580397, 7376147.430989856, 7376256.25, 7376449.447505068, 7376473.4375, 7376604.056718453, 7376711.205126945, 7376985.341214165, 7377001.443783272, 7377097.046389729, 7377140.625, 7377143.034480379, 7377348.886920247, 7377381.293101854, 7377420.940197165, 7377437.5, 7379661.070924573, 7380050.0, 7380452.62350415, 7380459.4876150405, 7380619.145597738, 7380690.4668579055, 7380711.823851238, 7381050.631518327, 7381716.549295842, 7382326.774997759, 7382346.0318276165, 7382831.25, 7382835.856706342, 7383287.551365843, 7383496.780049645, 7383846.257407656, 7384185.63691795, 7384703.736806464, 7386086.75506287, 7386644.850274892, 7386715.11997943, 7386812.279119001, 7387240.625, 7387382.8125, 7387799.259597026, 7388694.6469519995, 7389560.912045497, 7389737.095415554, 7389985.9375, 7390026.113343035, 7390042.1875, 7390556.25, 7392895.737368518, 7395664.0625, 7396402.6636985745, 7397281.614030811, 7398158.516520957, 7399153.709940323, 7399524.44022682, 7404961.821320211, 7405826.024891274, 7406501.5625, 7407679.224046259, 7409830.695103796, 7411143.259887496, 7417165.08302039, 7418512.5, 7418829.5977567565, 7420486.87523858, 7421155.842927565, 7421239.8955729725, 7421700.188812746, 7421809.927863913, 7422117.1875, 7422712.090798224, 7422723.971963941, 7422979.800567047, 7423114.0625, 7423141.268846908, 7423236.165550477, 7423305.514151494, 7423323.4375, 7423331.118669717, 7423343.75, 7423465.831810075, 7423537.758479021, 7423551.387047931, 7423606.25, 7423621.2982589165, 7423635.9375, 7423640.625, 7423709.970977649, 7423731.701178672, 7423798.8244847, 7423858.661029747, 7424003.125, 7424039.452703531, 7424046.683021952, 7424048.4375, 7424098.374936428, 7424111.526391618, 7424206.198257714, 7424226.910009006, 7424263.835862871, 7424296.99707597, 7424297.879681779, 7424316.1362528615, 7424350.703013827, 7424414.710410881, 7424439.771804867, 7424489.0625, 7424513.7839112785, 7424580.1080563655, 7424598.402705854, 7424599.404357913, 7424617.057512726, 7424647.793473511, 7424656.735320816, 7424747.16697963, 7424917.1875, 7425095.199133213, 7425216.811295848, 7425249.421226566, 7425457.759663217, 7425521.037370038, 7425593.15179762, 7425620.085792792, 7425727.331153698, 7425787.832141256, 7425821.420154235, 7426054.00150401, 7426112.478974883, 7426112.5, 7426302.368851474, 7426381.150987258, 7426387.5, 7426480.6589541705, 7426485.395425375, 7426540.625, 7426586.795860684, 7426632.701479019, 7426648.119557616, 7426790.637685813, 7426820.112303131, 7426830.498690136, 7426882.200489731, 7426889.448092998, 7427940.625, 7428175.920670777, 7428299.551932998, 7428767.1875, 7429160.9375, 7429560.9375, 7429579.9933050815, 7430128.2237285515, 7430192.128462657, 7430311.808093526, 7432139.795910525, 7432675.573482151, 7434151.472121586, 7434278.125, 7434339.0625, 7434592.1875, 7434932.665992717, 7434951.5625, 7435053.542068317, 7435199.179936223, 7435211.37715082, 7435256.436632163, 7435350.09109773, 7435357.121241943, 7435640.625, 7435861.518389904, 7435999.5546837915, 7436165.625, 7436268.75, 7436385.769604916, 7436472.971518415, 7436535.9375, 7437013.086800287, 7437189.0625, 7437234.410206735, 7437532.508093295, 7438590.7596649155, 7439677.379655388, 7439826.5625, 7439837.5, 7440071.875, 7440503.027834005, 7440701.701896411, 7441602.918535497, 7441978.946718839, 7442414.282670327, 7442701.906278235, 7444014.828218746, 7444094.593505511, 7444236.713818223, 7445200.0, 7445615.625, 7446486.920167257, 7446545.425156902, 7447216.731536292, 7447230.508396242, 7447251.74508788, 7447428.125, 7447520.971096524, 7447529.571203698, 7447682.564763564, 7448028.043642807, 7448521.875, 7448540.380359742, 7450125.334068616, 7455409.305268959, 7456398.00484454, 7457101.5625, 7458232.640973111, 7458269.065666825, 7459439.08301298, 7459996.875, 7460268.209458778, 7460271.783674317, 7460834.047466011, 7462508.525273608, 7463407.91297489, 7465244.260511192, 7465466.624558524, 7465470.827013367, 7468872.267637817, 7469313.4168857895, 7470056.6052052835, 7470263.696038491, 7470420.3125, 7470811.1281226985, 7470912.203032913, 7470995.3125, 7471080.646643897, 7471082.802883498, 7471084.327755062, 7471094.966825666, 7471137.15049985, 7471594.433340946, 7471617.1875, 7471640.959433182, 7471653.727265272, 7471678.136989893, 7471680.421398241, 7472197.021597008, 7472293.155461979, 7472309.499943007, 7472394.544644976, 7472466.439396539, 7472473.294952788, 7472807.8125, 7473384.375, 7473426.276890375, 7474181.334960146, 7474445.284819191, 7474939.0625, 7475152.991945895, 7475190.625, 7476456.845372306, 7476506.766339795, 7476514.3109248495, 7477033.910934129, 7477504.126373548, 7478043.75, 7478299.703749285, 7478503.626728182, 7479180.269282791, 7482286.784275799, 7482463.839248125, 7483860.902977014, 7484320.7316087065, 7484643.75, 7486852.298911913, 7486855.777971568, 7487592.1875, 7487675.0, 7487756.25, 7487868.75, 7487921.324011719, 7487998.4375, 7488054.344017645, 7488092.1875, 7488106.25, 7488160.19536832, 7488193.529741807, 7488264.270803199, 7488277.202988918, 7488388.640477236, 7488529.6875, 7488593.754362512, 7488601.019439315, 7488612.225017695, 7488708.888109836, 7488792.361366632, 7488802.764638329, 7488808.51926403, 7488813.439127281, 7488815.625, 7488817.709641176, 7488879.686923436, 7488918.707328004, 7488936.752797529, 7489096.875, 7489107.494788086, 7489122.599341122, 7489129.060902683, 7489154.6875, 7489196.16909757, 7489257.8125, 7489303.383395946, 7489340.625, 7489350.068416212, 7489356.56963825, 7489375.725480768, 7489386.232317193, 7489387.115463746, 7489548.590806595, 7489584.375, 7489586.482850904, 7489596.256157022, 7489645.909370496, 7489829.247925565, 7489858.579501473, 7489906.420988599, 7489925.0, 7490037.442725177, 7490109.375, 7490535.711488459, 7490546.875, 7490601.5625, 7490693.0831341315, 7490754.586959335, 7490790.533070782, 7490809.375, 7490941.078483652, 7490943.75, 7490951.316002652, 7490955.430902346, 7490970.826584109, 7491412.158187537, 7491451.205076913, 7491484.305065617, 7491488.766596385, 7491595.204676012, 7491658.377403775, 7491673.4375, 7491675.820757309, 7491780.257715194, 7491782.860815504, 7491844.748399096, 7491905.892310454, 7491917.944356568, 7491926.981118778, 7491942.175951061, 7491962.5, 7491965.625, 7492024.413130894, 7492039.943239746, 7492155.179134968, 7492156.25, 7492159.779553118, 7492166.743485527, 7492179.6875, 7492188.995604585, 7492217.1875, 7492227.36932637, 7492239.786523982, 7492248.680332465, 7492261.269633059, 7492279.6875, 7492281.977601314, 7492294.259106489, 7492304.8834958635, 7492307.8125, 7492308.3902785545, 7492317.1875, 7492328.146795922, 7492331.144752752, 7492392.1076318165, ...], [5.988311357918174, 14.58544063950214, 62.19488085435441, 35.8679051531449, 18.525530946623217, 19.713515679029435, 14.519629142954626, 15.113471793753813, 11.489204901557208, 52.68115435010961, 20.340535078479466, 28.631667285772206, 46.51763655133024, 35.35050360698323, 98.89875555191307, 8.663376209245572, 8.93707852010022, 55.22527775586396, 49.514327426302145, 55.8456990513613, 84.93481293611161, 69.72402041391015, 71.29655280077705, 55.17657741790924, 56.53867173915704, 18.418122623790435, 55.07721473926467, 36.992563525321735, 48.58575169835041, 69.85182322998163, 62.126473113585035, 5.116760618077346, 36.356643054865415, 53.7912886574305, 28.99418160346481, 11.582499413918477, 100.48811538194973, 60.719028398557526, 45.79671232043234, 68.98824883775941, 14.564052792564274, 8.847650036579209, 59.199387194548684, 8.90462514245807, 6.369280621950073, 9.334419572661215, 30.55395522634053, 5.730443132173059, 33.19221168908861, 43.42088968452443, 12.64024149428454, 33.826860740222585, 17.638500088240338, 124.8182337181042, 38.44987471588555, 88.69115672531044, 48.49003130468558, 50.772270975333264, 13.334986804202709, 99.14721978696794, 11.29410384235123, 33.58933621682399, 23.556839284365168, 16.071709472905095, 87.35152041020666, 53.29760249835992, 5.727120799771715, 40.1540219627537, 15.880918094039215, 22.263703114522464, 8.932479400649209, 5.078593035968885, 29.807378500372707, 16.890716021537873, 10.646577743148407, 13.05253802133408, 64.07616277889665, 18.97893286081128, 63.36876011415936, 43.148291609675596, 18.32574163602428, 41.303123916110636, 14.992836681622128, 12.92920569624514, 5.732667235888668, 46.417385375395796, 17.98732438136388, 32.239777279329005, 9.887396641363072, 12.013417812975376, 16.37694416528854, 9.300505887266887, 5.0367923262022165, 83.17674250546929, 16.126267752843265, 81.39744653162475, 7.305301704854904, 22.138808027959413, 60.865969382030585, 95.98269739823013, 65.77587230083697, 6.9941097044310805, 90.44432759908975, 20.594147959675578, 76.79187633353997, 58.09681577699222, 8.458540338545507, 117.24296151044081, 5.202319694554491, 10.52635066824167, 29.788752852057815, 39.956677797462, 22.817192125539812, 11.040938757142637, 29.288858815956957, 33.971661158618225, 23.18962690786195, 47.150888304060416, 45.341219499793056, 104.71453855289607, 12.52591497644824, 60.72315530421565, 7.362193044931344, 25.926071840457894, 68.15612840786113, 13.890316193247788, 25.618016988283753, 55.119750298137006, 21.969782179169776, 56.72915601516142, 6.070073884234461, 5.802517699007752, 57.964168040748895, 6.423716278806111, 6.611576571125117, 45.537761157444336, 84.41219688722322, 88.21165847897879, 17.0478475027739, 33.08764901938564, 23.526549220202533, 37.1136974350728, 103.15375603689453, 66.67472409976139, 11.381828080134113, 9.880621868623251, 87.9683621858769, 92.89323737812282, 5.951178267025984, 24.583401842329945, 6.090858643110765, 6.774426389450093, 11.953918037647135, 61.25197587635985, 5.7220412298733, 17.452320169191175, 8.222673527593546, 70.7679689192959, 10.492735351041336, 46.133407697414974, 41.821650158195546, 62.55444396842776, 9.916920574980555, 65.82129577521033, 23.240265634006796, 58.46413546812418, 34.739457953646316, 40.42781819807021, 12.872689716025251, 27.261601034687697, 61.6719823124311, 6.815101992586415, 27.85772610522627, 32.328887941817854, 64.04765571461331, 15.631839106733363, 12.074441252397524, 52.85753894944672, 20.819835544287713, 21.26828759597224, 51.90631329440213, 21.338063883123542, 47.62477696602311, 10.511342414828114, 42.33186620129064, 51.978382792181876, 5.284949529458445, 57.84504703658905, 25.54356622734572, 94.66153990751822, 61.553276266373544, 65.8228307467281, 6.6955333081548325, 15.158933925487734, 47.62420978215032, 18.28347780898332, 5.566750325264868, 9.984773889054315, 85.92194185778033, 84.97958296388836, 9.745307057797309, 11.23126746105645, 15.529151632226323, 12.314376470332663, 32.53164365996326, 28.61708598954713, 37.720720496205, 15.748862069432306, 101.47883814608733, 87.116926572175, 10.121439475238095, 56.49535753681592, 47.53920573832022, 17.75280649995389, 45.7920522422115, 26.960680246890806, 52.12268357196078, 10.12365406276169, 9.030410008457329, 89.94892899855284, 5.942519653083214, 11.463728435721677, 20.246738875706086, 46.03963678568364, 22.51479851100079, 15.21406105546615, 24.086991365865106, 12.910385006885534, 9.566138733635182, 36.15525558545377, 84.20341485395645, 20.57481458507494, 124.09297262088313, 22.04272688085872, 21.060369788505522, 44.42039412146869, 13.751708152266872, 22.906965486109257, 8.095182331284555, 22.110902608754092, 72.29813969706063, 35.61453407295078, 74.88025886949399, 34.43016127817431, 39.65106275919516, 7.738018336073798, 50.010247740526154, 35.675111832606675, 88.8658225453451, 8.064793671550822, 5.4715324991783465, 31.461715908111845, 63.53923019384785, 8.138999464730533, 8.753797341085404, 43.943472433337575, 33.156489719385974, 66.66918863346928, 6.296043954026391, 54.23523321762174, 5.906975567850601, 6.5689598725211, 7.844273634835743, 36.099183652943196, 14.83847157503215, 101.22266942363176, 79.46112238410302, 9.034512534189929, 10.476171434625611, 10.928994053084025, 9.456278853477869, 5.2097444240707915, 38.73114540798526, 108.9250499376029, 122.24095933111813, 32.81071201091072, 28.605050104587175, 18.749180178198223, 51.225957239713225, 48.60452060352047, 7.274981901458463, 35.240155626242114, 24.846579485671683, 51.97680366651262, 18.374305984801154, 35.31854240353566, 82.89029391387197, 30.47844154371745, 101.17243304419554, 13.841841485067974, 74.90750053405601, 23.048216237322432, 34.95220453351628, 121.70130710744286, 53.430447032911665, 110.72771035947297, 86.1201649781171, 7.9772008000542485, 36.197091739120054, 16.642977523088565, 7.089910500314451, 8.782482262992275, 8.617975367059811, 24.999165744683584, 13.908579035496553, 44.18420349354849, 17.27506019887339, 5.729166875730632, 5.428745541378009, 158.29887645176052, 66.7901030316498, 87.25154173615539, 28.557532212526777, 41.73223044666357, 76.9838784335739, 14.058613344879525, 6.649737957415025, 13.51803307854916, 15.826032819756584, 70.69607931858043, 28.342678346601993, 5.045022197591963, 7.346636236771105, 63.48201784745152, 5.629179933270278, 41.31316012032518, 23.234196638996924, 15.97006985382175, 9.106316574546673, 41.67946712136392, 32.66054239085215, 10.661924778918813, 90.25402881713715, 65.20481320560881, 12.170518204796451, 62.65750094179485, 7.619822387011497, 10.311674938950063, 73.80576735906257, 34.82941380491924, 34.52688898318135, 8.903319303647656, 17.929159587571863, 24.07779146053916, 94.34660419406333, 53.39655797999255, 28.519484707384542, 50.402654325330666, 6.164174995646297, 6.355808541666101, 19.276781282442204, 55.62641499771705, 72.47981600383895, 77.37527461209724, 67.52625506596398, 22.045428003142657, 57.86797326342052, 21.633737388297646, 20.16104283209393, 91.57011661615589, 34.39671660176333, 56.07871315505778, 14.175245576200048, 67.17640188446047, 12.426171260556508, 87.92842431569042, 27.388247324282087, 53.024808824405774, 13.585834529619994, 32.57401240924701, 16.895485148938484, 54.88891675077156, 6.041367865140553, 67.33847272138011, 29.24852139771418, 23.511536059957088, 71.45721224638967, 34.41199204504099, 129.71069712281744, 79.98628545685966, 60.34902835075608, 6.366353738015418, 18.554518345312953, 7.880693874701712, 25.856517997234313, 103.62577104877252, 19.978251448071276, 29.15968240314217, 22.39895036271776, 64.15845589734329, 30.694322999915222, 11.329943075939216, 60.63807983611669, 6.862153459062165, 10.147154724322965, 5.17424637028456, 74.6942352655114, 20.213274038032047, 131.08362988203905, 8.484022363814056, 24.49431258574798, 73.04996425040527, 33.56822181814592, 9.399228614276295, 32.10692788113987, 107.85486846580287, 144.2999926774794, 87.69176282802837, 40.93681234596413, 20.57365696967823, 87.17032205878732, 47.98390344249924, 9.652022763018396, 21.776392598108863, 61.32647246945486, 31.35285353211909, 20.538942362063864, 54.47442958747738, 12.690163271374324, 70.41127951462546, 38.84134583941571, 24.70425528731463, 11.28297533456598, 44.944422818782904, 40.28242498032335, 39.05898335463048, 72.63754297672949, 24.52705637878888, 36.8555267799381, 55.806531387613944, 82.79370898829733, 19.02715806875507, 95.39299108361753, 31.23077964379368, 18.57960076883716, 77.23988262417056, 6.766172349591626, 29.901439640873846, 6.5053186821595546, 26.87221292621929, 62.29814321391958, 15.340247044203009, 16.501795395339013, 6.513870880801533, 119.38200587719962, 90.68585441609905, 41.09977674278778, 19.350294770735637, 45.91290357498644, 71.8690955154568, 52.20075174384098, 18.57410251532528, 8.419795582072409, 8.813484411058555, 44.6382585697194, 7.383906157017323, 12.513002705626162, 86.62764854182764, 18.840159404187677, 15.135883069937279, 9.315477975028001, 15.845284130252344, 29.014596790681438, 30.788004213142656, 51.523191495633924, 51.262298584633584, 14.56070317374828, 19.92910223370804, 56.82417017445063, 48.16237399243053, 8.892012753205481, 63.54488842912544, 148.3382950393473, 18.89228052769637, 12.798768504068311, 22.107266781528097, 25.423059783591853, 7.998206943568711, 15.206368799347585, 86.77755796238807, 76.67639852677816, 22.803782770731058, 16.594537223544922, 10.69843765625564, 11.933724292557752, 30.595247457494438, 5.97981813858851, 58.702515063211784, 6.8989503332864786, 25.070075095139398, 5.499593659450855, 69.63970765103852, 75.7855887925771, 56.666026810298234, 6.816357632994158, 99.7214694100598, 29.365633912445954, 73.71656431299175, 16.235044181336345, 35.231412836721596, 18.503067286837997, 21.555652709935956, 9.021990152005507, 72.09583372795538, 7.347147719686721, 5.1810925401591, 7.026579200210538, 20.097118970852037, 12.930333605424469, 19.435781597384686, 110.34238665679061, 24.723061461902734, 6.468366386938197, 9.604111155949527, 18.171828759797965, 13.717546736186067, 72.92477316736353, 41.83690796269115, 73.68611356708995, 31.215239235896178, 5.038773338811562, 20.306749595976623, 66.34880964940467, 8.963593037231595, 27.140331686936207, 103.82604785896626, 84.56178620125968, 37.30895337672648, 5.57709978096211, 33.12834181302623, 75.73539307633288, 49.924420755677644, 66.9455715601346, 26.73134925684017, 28.343897840760796, 31.95168401436315, 6.8053932881213095, 38.34523042302636, 19.7869162487587, 13.65519311379982, 8.434893107562882, 24.635828710337073, 61.06928756597063, 22.0283608065406, 8.935207113950781, 30.475750371195517, 28.029397530380116, 42.75193944456924, 47.45286158171224, 37.367955185863316, 76.20891632568032, 34.09368216243235, 97.71898333880173, 23.07887975013582, 137.26303637099846, 64.86464793046719, 32.964895308843616, 16.832908586953952, 22.706832524055013, 8.989557914782782, 15.379117458190366, 41.56587832800988, 61.99485225581934, 9.07505276686479, 42.85479092466187, 5.106194665395157, 20.812097348029923, 29.87733423216771, 11.700843790482597, 74.15282968224088, 65.10507589587053, 51.15150903109359, 12.279815910771145, 12.803810416297308, 51.54752448496699, 18.81400387305931, 16.910455867938236, 54.56806977677516, 41.337296586938635, 19.538059953242506, 33.13771819552219, 64.3863684679942, 23.172012782838234, 172.3865231337325, 16.436404011382024, 17.45278737200597, 21.157226819337435, 6.085058973240637, 32.113003680789696, 16.613277673731556, 113.9788729013502, 42.33012440140852, 7.062334427735109, 24.74159027884643, 24.73495304686903, 72.69418691995091, 29.115192036071658, 7.237234444678787, 12.791112108450083, 70.73737746593144, 26.857709483783996, 20.134703732376064, 22.377651432276267, 17.571854765894088, 11.980988838520673, 7.348136690149218, 113.0014291080556, 5.658381877059954, 52.585465462813985, 73.92161456500354, 11.253123756132592, 58.74248373958979, 22.005875802193774, 33.84652880835024, 40.229595082212576, 11.231876872161463, 24.072216133173548, 21.84795971835683, 21.003067796082192, 14.273570516083351, 23.811807580166665, 54.17826996164259, 69.437031777474, 18.02914432734697, 9.850367806057186, 56.46542313598507, 21.542850130236793, 67.79849553712637, 12.9815904864471, 16.070136496487, 53.89005847721077, 12.251020812432202, 64.47326360348737, 32.97280971028159, 6.9452621782342705, 71.29613370542616, 6.772142134782368, 18.03097092878274, 59.29044648681851, 20.525161601071908, 45.334138681850014, 21.478191300333418, 46.302991586675326, 9.689911507619826, 39.18935656029367, 19.89917134343976, 6.590863848829949, 76.09059903058588, 9.517786523833257, 12.475139802655907, 71.14089608107894, 11.00372655077289, 26.99268895133414, 14.591545852802012, 13.015127064362153, 13.907532519963311, 69.97855497436477, 77.43077146931742, 46.52118993127726, 21.44316314429677, 33.00757417619463, 46.597338353182046, 109.7943638524109, 12.712570136895609, 77.17820584131964, 99.92750855217258, 63.77248271552982, 43.378737666755114, 6.4189139133383915, 75.6876876000109, 65.44973969880793, 179.31862962547498, 61.196691968370715, 21.888025256873863, 16.53788511415705, 135.62938270193342, 18.80764235503967, 10.35260559571607, 19.8784241101474, 5.893915896538871, 67.20955378032042, 21.86558367587002, 143.265329612932, 35.48335967229167, 28.330465654128226, 47.57997535803151, 14.610138296114377, 42.87158857676377, 6.4251178318275155, 5.0558679264978865, 23.100672164605502, 81.52522722732071, 58.42168378702465, 28.150393802689802, 9.828276704537798, 15.390722641527557, 44.69340765078988, 9.94240535974607, 6.112139928193502, 12.723413403817517, 83.22131426403284, 7.087351612469939, 61.51565747007521, 11.467119822441411, 14.334750975760215, 114.95159245307157, 71.76504181715916, 149.63141012515092, 46.191621707063355, 66.21223950339042, 27.846355695399364, 11.91464487281057, 11.791731332854852, 10.169227094240787, 44.01090661105021, 5.174549895575592, 14.257008092065137, 63.48402754348782, 86.64153034497839, 17.788696523468673, 61.88677931633268, 9.64360745726358, 96.92705926186669, 76.55188844734873, 20.935091554819216, 6.33402714790851, 18.527002308714902, 23.336402949512557, 18.57006576453462, 87.13345450925836, 87.60388163819056, 6.5551018546077895, 115.38022492896395, 8.873885732469182, 100.1303071469478, 10.25100278686115, 124.19620301176504, 85.27636741596507, 55.54863415520926, 53.22548751887193, 185.46852837488734, 10.329389132797974, 14.743873415219092, 18.67774434350438, 13.064905643753445, 56.980618859526444, 73.9695990231683, 5.3014583186681685, 27.407526200440003, 12.843963976522673, 28.11539388346613, 52.58676912305765, 7.35087803409656, 20.632741123195803, 49.502018968450976, 23.66177781945285, 13.212271936189882, 62.802327844696535, 6.94788982868078, 85.75294563326102, 23.52422660510191, 14.990083263036952, 14.22967070024298, 54.07246615487361, 10.289204936286842, 8.501583921178604, 49.82453976921273, 137.50943034877696, 13.470564830680388, 29.124325872830088, 120.03011857926327, 57.1289939151666, 7.717718070781562, 59.266030948665424, 32.740855171878565, 10.194778039458471, 15.511891345780384, 12.160402069683549, 35.77051187649592, 57.92402489050148, 45.7784579247841, 81.28437101782104, 28.87373894614629, 31.54147300702182, 23.143831934801312, 14.284933110513892, 9.73304450655081, 18.969026061362673, 8.335346079056473, 19.77613323478384, 64.19555683753296, 32.023162366658426, 45.319622129480834, 116.41462154838847, 62.0406368286445, 10.87503957159463, 8.054627815225627, 102.55586863618016, 140.73837471400068, 78.24751212730413, 19.79208240202272, 81.13593686937011, 83.20197861484964, 19.351203153284608, 50.0040731039956, 61.32856859564133, 94.76235763920795, 39.9465131634943, 15.500845845356277, 25.023878671152207, 37.37340219735003, 7.684859109935701, 83.0827801894597, 10.075283934384814, 12.8264542990747, 134.554949737775, 67.11640966689428, 46.046968981803644, 39.562904882831084, 15.389024378353273, 21.943928870193815, 8.774276236925207, 15.68632593377353, 73.23216263948906, 47.7990829826839, 5.456797013538982, 35.44975628312369, 27.012875995273696, 51.525037009088145, 14.084415191747661, 11.693370188932523, 6.476215555342581, 69.35096792182341, 44.51561480544649, 71.9977607056806, 6.307921757631111, 31.937140382143713, 79.51310670426744, 8.91266109637407, 10.987897560307324, 5.596177560306818, 12.460453695660535, 9.417830349796752, 24.248586907860428, 49.264908798193304, 12.039950657754577, 62.925593794274306, 117.48930324478158, 106.06171223067248, 137.34182750106578, 79.16422823493983, 15.721512390446895, 23.789560375581065, 66.60562578658686, 13.051619196227268, 33.75822013896163, 27.623349671817483, 9.055273907251882, 9.052388504255283, 8.684325214299745, 50.69481904346898, 65.77416277002766, 31.906830005731027, 27.983536792923942, 18.740950540638618, 18.139835178322617, 34.11678361794441, 141.0054461329122, 27.28288976852762, 12.694300473467525, 35.82990668301183, 61.1069096664057, 66.32789675758711, 74.27672086206113, 28.95170328005159, 40.620475674535925, 59.80298140472834, 26.1463853070311, 39.49659364372116, 35.64708837020969, 5.484373613491649, 5.10337724210713, 7.443595099114877, 13.161695706179566, 63.94384887676917, 21.15459463543615, 81.43951649730272, 76.82680929191741, 78.66275583383742, 131.29681673368208, 117.1819631714387, 11.852737371987144, 44.626222385948765, 96.22485888714046, 21.77674464039183, 37.259127284988246, 44.89238706695004, 46.55264821603301, 33.71797829477689, 6.658275254228761, 55.04958999006878, 66.07905889250834, 47.619477066610386, 75.39292049447137, 19.375790976504206, 31.845005028227668, 15.799713178294454, 8.657043386635848, 6.422909690795197, 35.8563466488222, 100.82554828758686, 63.50445597283449, 5.282668151967014, 20.833017980257992, 9.482875370324544, 10.607577540981083, 18.5526417875513, 7.98231829284693, 74.72922753030927, 23.032048671755728, 5.4617417925361265, 84.79906103907476, 12.696433984669753, 95.77141800031464, 82.78330059093085, 6.166808884809084, 10.271738470096968, 76.81330034340691, 68.07452927150261, 62.81634827655394, 9.559885628347784, 61.34310355540011, 9.389930778721782, 97.85739171416678, 12.488976082994443, 80.50904727119331, 13.653803521546207, 96.12531954101011, 56.3086956073473, 24.11755555375071, 65.99171840447879, 37.2125721561569, 22.117826345968645, 6.369223989903186, 26.526691370432673, 52.17404239176332, 33.28280451338145, 28.669819809098605, 79.92655703670432, 44.40929740187398, 35.99977098339641, 12.891148526951227, 17.651200768861454, 26.830123447201384, 56.26338576844577, 184.9222854407746, 47.46083660718599, 14.078438396119333, 44.219221976452914, 12.039087437150108, 71.99349969328307, 23.04394498998207, 14.681487881278448, 25.32546682729312, 75.9431492166148, 12.142646029945125, 31.06414549482258, 18.260956196531154, 8.613037030038251, 22.599719932650633, 10.347301731627894, 29.86038388008469, 18.904219371411656, 58.492352530207434, 28.29837980044698, 69.98792182752908, 33.16950639954035, 20.668199349707844, 12.854366523908618, 37.17089677315803, 64.60839327225857, 34.13954240144716, 38.121179940411196, 54.9981010110469, 14.692521719978899, 64.95789914510331, 56.8601409477835, 18.67184954347855, 15.95557578162031, 31.115887142654465, 36.96455135235848, 70.0945449824218, 86.38802098065099, 78.60368872737286, 68.11011795447791, 18.66053683465937, 84.42538398590797, 23.450956743255567, 26.60405282540381, 16.519727854935333, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3354802.1074549914, 3527860.8408356626, 3786432.8125, 3848076.507214613, 3903563.2027982045, 3905585.2384595578, 3941609.2597292024, 3973201.457274667, 3975628.3445867896, 4016418.4725177772, 4067935.3136400552, 4101323.4375, 4102651.7608526535, 4106879.6875, 4407825.0, 6411172.525484148, 6619219.806180022, 6666632.483303439, 6667240.625, 6687689.0625, 6827748.4375, 6833684.375, 6839329.6875, 6845739.359545365, 6852681.25, 6854099.124436219, 6863589.998360452, 6876772.917136773, 6879623.539862196, 6884484.32188299, 6894780.877045467, 6894886.845702831, 6896932.8125, 6899055.971425064, 6913000.0, 6923426.044687438, 6923537.314755832, 6924990.206763026, 6925065.625, 6925956.25, 6927813.959815078, 6935619.679039004, 6937410.513614089, 6938386.948116304, 6938507.017405839, 6938593.7535652, 6938600.0, 6938622.240835015, 6938632.8125, 6938673.4375, 6938707.041412734, 6938719.528793757, 6938766.350058068, 6938779.6875, 6938803.125, 6938864.541289982, 6938889.0625, 6938903.125, 6938904.190761283, 6938924.7867093915, 6938926.725283346, 6938941.979380596, 6938994.997166946, 6939011.205464017, 6939015.350571049, 6939026.5625, 6939039.377770381, 6939042.1875, 6939068.976409396, 6939104.261428744, 6939113.549762107, 6939127.088774178, 6939132.8125, 6939133.244496837, 6939144.981219093, 6939146.272000808, 6939157.8125, 6939200.471187169, 6939226.5625, 6939231.25, 6939241.296490401, 6939253.014098707, 6939269.25898788, 6939285.285910659, 6939297.274550564, 6939352.779450209, 6939367.808307937, 6939371.875, 6939375.591687054, 6939405.18877512, 6939406.564976395, 6939407.775731792, 6939435.653623986, 6939448.4375, 6939458.571601029, 6939471.970273726, 6939478.781086413, 6939491.749881374, 6939518.75, 6939567.283710019, 6939570.3125, 6939588.554858945, 6939600.0, 6939608.474659504, 6939624.899097221, 6939634.375, 6939651.8741189, 6939660.9375, 6939665.581681443, 6939680.827894568, 6939687.5, 6939731.25, 6939745.422774655, 6939804.631270088, 6939845.3125, 6939893.75, 6939937.154764975, 6939948.4375, 6939989.0625, 6940031.25, 6940044.491806067, 6940046.875, 6940055.530455621, 6940087.353139788, 6940089.0625, 6940093.443862408, 6940115.458356021, 6940118.75, 6940233.011394197, 6940275.0, 6940299.824862644, 6940310.781371359, 6940321.875, 6940327.708441948, 6940388.250670933, 6940426.5625, 6940465.625, 6940499.874240641, 6940512.846897102, 6940533.297546946, 6940537.725530278, 6940556.25, 6940692.61495206, 6940695.939024323, 6940725.156714866, 6940727.147691556, 6940735.774847405, 6940745.549027378, 6940807.946699627, 6940998.269429927, 6941135.963993458, 6941217.241951964, 6941230.158753133, 6941244.025045262, 6941247.112492503, 6941394.2826365875, 6941476.43966993, 6941563.17716334, 6941890.176865576, 6942101.5625, 6942362.5, 6943046.732154239, 6943180.307309808, 6943329.526664934, 6943913.721457522, 6951579.6875, 6957047.792026478, 6965468.423013009, 6969477.768303848, 6971076.4952604575, 6997172.10565719, 6997225.253059915, 7015923.40288122, 7016396.432591759, 7016517.1875, 7016539.232547051, 7016672.4065863285, 7016955.907819982, 7017105.679751716, 7017162.585791002, 7017330.110308291, 7017493.234316617, 7017576.5625, 7017805.816308404, 7019427.409263062, 7019578.341069663, 7019632.612513504, 7019789.0625, 7020052.636420742, 7020831.25, 7021550.0, 7023365.625, 7025788.712214687, 7028482.024744548, 7029201.4588048365, 7029281.028383746, 7030205.362263227, 7030308.495828601, 7040742.1875, 7042790.625, 7042808.26454668, 7045370.37775975, 7046804.833580344, 7048300.64626969, 7048475.0, 7057977.745969941, 7059953.033097197, 7060100.196833769, 7060616.747112445, 7060821.875, 7060982.056740996, 7062193.75, 7062428.125, 7062522.620158177, 7062546.3765161345, 7062990.540640767, 7063212.5, 7063257.0586928325, 7063632.433703741, 7064051.5625, 7064067.223189877, 7064592.392341069, 7064664.9902706705, 7064756.25, 7065118.42119233, 7076146.94471543, 7078721.600875614, 7078732.153372796, 7079259.64015031, 7079556.145941422, 7079676.244329136, 7080110.277022602, 7081327.867836313, 7081358.928387177, 7081380.705498392, 7081390.18341261, 7081449.648394703, 7081549.6309424825, 7081916.80714011, 7082102.684779155, 7082220.3125, 7082250.0, 7082296.875, 7082357.225239609, 7082392.068139, 7083076.920383453, 7083078.125, 7083306.25, 7083685.099372682, 7085557.368156258, 7085586.1630752515, 7085690.625, 7085707.8125, 7085804.397597494, 7086624.227571931, 7086953.125, 7087342.1875, 7088031.25, 7101987.724951435, 7102156.25, 7102179.307420896, 7102513.003107618, 7104881.870636922, 7105793.75, 7105804.660201586, 7106335.9375, 7106573.253354658, 7106979.314192985, 7107372.976434992, 7107967.056537828, 7108093.894082551, 7108198.683869044, 7108209.060985183, 7108370.172307361, 7108370.637513336, 7109003.028182936, 7109085.115550867, 7109124.8183089355, 7109326.347444743, 7109409.375, 7109458.366040278, 7109647.713748583, 7109920.058582105, 7109928.934400848, 7109973.90169237, 7110293.75, 7110497.935107823, 7110775.0, 7110860.9375, 7110894.990611991, 7111015.625, 7111041.830436956, 7111387.076984193, 7111423.206790777, 7111604.6875, 7112295.548671995, 7113342.1875, 7114305.615251506, 7120843.426219268, 7144387.884682347, 7148204.566137708, 7149732.083168054, 7157056.828173178, 7167254.540914501, 7174482.512255006, 7174529.626508614, 7175003.490006772, 7175314.408939413, 7175446.082402142, 7175467.472037502, 7175551.5625, 7175676.5625, 7175779.911647723, 7175788.576851681, 7175871.875, 7176054.434826329, 7176266.5896123145, 7176510.506134093, 7176983.026699702, 7177276.5625, 7179701.553223402, 7180436.142889577, 7188567.980058311, 7189750.0, 7190890.895389342, 7192632.8125, 7194023.095956235, 7194770.697577787, 7194899.721239044, 7195531.25, 7195938.867038402, 7195990.305064394, 7197045.3125, 7197459.126054724, 7199828.703352115, 7206037.5, 7206146.920622651, 7206438.469130039, 7209133.656114689, 7223676.5625, 7225205.895306985, 7225232.258769387, 7226386.549058366, 7228473.019576093, 7233256.367874002, 7233325.0, 7238725.120468447, 7239287.830039208, 7240310.076111103, 7250866.29557305, 7251596.767556608, 7252741.281877703, 7255228.125, 7257429.6875, 7267083.880937322, 7267221.428641363, 7269212.5, 7269525.063178817, 7271587.49671426, 7273125.0, 7273125.093518262, 7273564.728322001, 7280156.033304571, 7281039.0625, 7281142.884881684, 7281212.5, 7281302.721359106, 7281331.25, 7281549.592191875, 7281674.583043281, 7281720.74538936, 7281780.532913515, 7281846.413305213, 7281910.9375, 7282035.9375, 7282846.8322852785, 7283114.0625, 7283140.625, 7283287.054779361, 7283367.1875, 7283370.3125, 7283424.183977664, 7283556.957037977, 7283610.082073313, 7283885.7862224355, 7283959.375, 7284202.45843693, 7284482.535470111, 7284532.398753146, 7284557.8125, 7284607.8125, 7284643.875643013, 7284646.875, 7284720.787319993, 7284772.70431358, 7284842.564950292, 7284946.875, 7285000.64396258, 7285059.375, 7285098.793097376, 7285195.068564211, 7285262.155449956, 7285303.502647023, 7285375.07913937, 7285439.0625, 7285550.0, 7285556.032024304, 7285746.68880722, 7285780.639222408, 7285861.902611005, 7286046.34113256, 7286057.8125, 7286148.793810954, 7286207.340437415, 7286417.12552405, 7293412.5, 7295085.336217437, 7295690.625, 7296605.500148071, 7300562.5, 7304844.876071032, 7317283.365233171, 7319426.659615653, 7319530.40951388, 7320371.875, 7320434.783664344, 7321044.890295151, 7321604.9424741715, 7322414.0625, 7322630.2160963975, 7334599.240402156, 7336549.2113070125, 7336557.612917018, 7339616.418371565, 7345986.64819267, 7347341.382667961, 7352009.388338142, 7352121.688173053, 7352568.865299915, 7352577.502763198, 7352597.966679526, 7352601.6633227, 7352614.419356576, 7352631.418732548, 7352821.875, 7353215.625, 7353262.5, 7353263.713993311, 7353319.555435332, 7353659.375, 7353993.75, 7354156.959892636, 7354209.6186990235, 7354264.941624616, 7354343.75, 7354497.787436444, 7354524.1736162035, 7354603.455835148, 7354617.935410282, 7354645.362578356, 7354746.856105774, 7354845.530995579, 7354870.3125, 7354889.0625, 7355068.435726001, 7355077.69584588, 7355112.396369895, 7355125.889990746, 7355145.670988794, 7355178.125, 7355185.367733663, 7355198.4375, 7355203.732726962, 7355214.99400084, 7355244.607980292, 7355254.246939507, 7355299.017352145, 7355338.474243869, 7355343.817795786, 7355354.6875, 7355357.8125, 7355374.62206463, 7355391.000207416, 7355418.456836525, 7355422.335957031, 7355477.773327166, 7355480.140142729, 7355531.25, 7355547.517574097, 7355556.046713513, 7355588.352657255, 7355592.1875, 7355644.645185987, 7355665.625, 7355669.009087206, 7355690.346482223, 7355745.3125, 7355792.1875, 7355795.614979774, 7355904.6875, 7355935.074500679, 7355969.81874781, 7355977.7349077305, 7356004.6875, 7356044.544223574, 7356095.975378169, 7356096.501361387, 7356108.722664487, 7356189.973861348, 7356202.390663483, 7356205.987901409, 7356222.995565048, 7356224.879500821, 7356231.5558223035, 7356266.274633856, 7356343.386982329, 7356365.761073428, 7356375.0, 7356392.1875, 7356415.426962709, 7356467.022442875, 7356496.247239605, 7356499.668061321, 7356501.092931335, 7356515.834537162, 7356548.610681674, 7356609.375, 7356613.191586309, 7356628.999814063, 7356698.4375, 7356782.8125, 7356838.75532743, 7356881.25, 7356919.261541011, 7356923.428285839, 7356934.375, 7356978.331249505, 7356992.1875, 7357102.435075737, 7357104.303435986, 7357145.5828178115, 7357163.800981813, 7357365.625, 7357486.283110044, 7357508.866070087, 7357546.300946213, 7357556.486875438, 7357649.8720203, 7358778.125, 7358917.005070432, 7359182.8125, 7359212.5, 7359309.396565407, 7359872.651377032, 7360727.485619391, 7360760.340855845, 7360885.813206121, 7360899.003323677, 7360904.31437797, 7360979.253514907, 7361539.1727617765, 7361573.4375, 7361707.8125, 7361802.805425439, 7361933.6363427555, 7362117.576725459, 7362357.603697559, 7362393.75, 7362687.200741991, 7362797.540662262, 7362881.25, 7362962.5, 7363128.755177655, 7363128.985056559, 7363170.3125, 7363412.921308377, 7363469.329617575, 7363752.4183982555, 7363932.8125, 7364199.822370625, 7364251.5625, 7365406.210482221, 7365530.903301359, 7365882.51853504, 7367076.305215065, 7367266.157716722, 7369517.347935324, 7369959.345713586, 7370492.1875, 7370522.548205167, 7370938.995697562, 7371384.933206848, 7371690.395230953, 7372289.798706974, 7372291.960832737, 7372299.383189563, 7372489.0625, 7372726.985377039, 7372749.292322642, 7372999.676050175, 7373176.472177598, 7373204.039618553, 7373207.56662626, 7373429.284471015, 7373675.484970275, 7373675.797441815, 7373818.902928222, 7374217.962063734, 7374497.966938005, 7374503.125, 7374581.328782969, 7374792.1875, 7375021.430371108, 7375023.4375, 7375082.435706556, 7375257.878137975, 7375267.969520748, 7375321.409852123, 7375322.026970948, 7375606.062979348, 7375702.829765639, 7375729.6875, 7375785.9375, 7375802.139580397, 7376147.430989856, 7376256.25, 7376449.447505068, 7376473.4375, 7376604.056718453, 7376711.205126945, 7376985.341214165, 7377001.443783272, 7377097.046389729, 7377140.625, 7377143.034480379, 7377348.886920247, 7377381.293101854, 7377420.940197165, 7377437.5, 7379661.070924573, 7380050.0, 7380452.62350415, 7380459.4876150405, 7380619.145597738, 7380690.4668579055, 7380711.823851238, 7381050.631518327, 7381716.549295842, 7382326.774997759, 7382346.0318276165, 7382831.25, 7382835.856706342, 7383287.551365843, 7383496.780049645, 7383846.257407656, 7384185.63691795, 7384703.736806464, 7386086.75506287, 7386644.850274892, 7386715.11997943, 7386812.279119001, 7387240.625, 7387382.8125, 7387799.259597026, 7388694.6469519995, 7389560.912045497, 7389737.095415554, 7389985.9375, 7390026.113343035, 7390042.1875, 7390556.25, 7392895.737368518, 7395664.0625, 7396402.6636985745, 7397281.614030811, 7398158.516520957, 7399153.709940323, 7399524.44022682, 7404961.821320211, 7405826.024891274, 7406501.5625, 7407679.224046259, 7409830.695103796, 7411143.259887496, 7417165.08302039, 7418512.5, 7418829.5977567565, 7420486.87523858, 7421155.842927565, 7421239.8955729725, 7421700.188812746, 7421809.927863913, 7422117.1875, 7422712.090798224, 7422723.971963941, 7422979.800567047, 7423114.0625, 7423141.268846908, 7423236.165550477, 7423305.514151494, 7423323.4375, 7423331.118669717, 7423343.75, 7423465.831810075, 7423537.758479021, 7423551.387047931, 7423606.25, 7423621.2982589165, 7423635.9375, 7423640.625, 7423709.970977649, 7423731.701178672, 7423798.8244847, 7423858.661029747, 7424003.125, 7424039.452703531, 7424046.683021952, 7424048.4375, 7424098.374936428, 7424111.526391618, 7424206.198257714, 7424226.910009006, 7424263.835862871, 7424296.99707597, 7424297.879681779, 7424316.1362528615, 7424350.703013827, 7424414.710410881, 7424439.771804867, 7424489.0625, 7424513.7839112785, 7424580.1080563655, 7424598.402705854, 7424599.404357913, 7424617.057512726, 7424647.793473511, 7424656.735320816, 7424747.16697963, 7424917.1875, 7425095.199133213, 7425216.811295848, 7425249.421226566, 7425457.759663217, 7425521.037370038, 7425593.15179762, 7425620.085792792, 7425727.331153698, 7425787.832141256, 7425821.420154235, 7426054.00150401, 7426112.478974883, 7426112.5, 7426302.368851474, 7426381.150987258, 7426387.5, 7426480.6589541705, 7426485.395425375, 7426540.625, 7426586.795860684, 7426632.701479019, 7426648.119557616, 7426790.637685813, 7426820.112303131, 7426830.498690136, 7426882.200489731, 7426889.448092998, 7427940.625, 7428175.920670777, 7428299.551932998, 7428767.1875, 7429160.9375, 7429560.9375, 7429579.9933050815, 7430128.2237285515, 7430192.128462657, 7430311.808093526, 7432139.795910525, 7432675.573482151, 7434151.472121586, 7434278.125, 7434339.0625, 7434592.1875, 7434932.665992717, 7434951.5625, 7435053.542068317, 7435199.179936223, 7435211.37715082, 7435256.436632163, 7435350.09109773, 7435357.121241943, 7435640.625, 7435861.518389904, 7435999.5546837915, 7436165.625, 7436268.75, 7436385.769604916, 7436472.971518415, 7436535.9375, 7437013.086800287, 7437189.0625, 7437234.410206735, 7437532.508093295, 7438590.7596649155, 7439677.379655388, 7439826.5625, 7439837.5, 7440071.875, 7440503.027834005, 7440701.701896411, 7441602.918535497, 7441978.946718839, 7442414.282670327, 7442701.906278235, 7444014.828218746, 7444094.593505511, 7444236.713818223, 7445200.0, 7445615.625, 7446486.920167257, 7446545.425156902, 7447216.731536292, 7447230.508396242, 7447251.74508788, 7447428.125, 7447520.971096524, 7447529.571203698, 7447682.564763564, 7448028.043642807, 7448521.875, 7448540.380359742, 7450125.334068616, 7455409.305268959, 7456398.00484454, 7457101.5625, 7458232.640973111, 7458269.065666825, 7459439.08301298, 7459996.875, 7460268.209458778, 7460271.783674317, 7460834.047466011, 7462508.525273608, 7463407.91297489, 7465244.260511192, 7465466.624558524, 7465470.827013367, 7468872.267637817, 7469313.4168857895, 7470056.6052052835, 7470263.696038491, 7470420.3125, 7470811.1281226985, 7470912.203032913, 7470995.3125, 7471080.646643897, 7471082.802883498, 7471084.327755062, 7471094.966825666, 7471137.15049985, 7471594.433340946, 7471617.1875, 7471640.959433182, 7471653.727265272, 7471678.136989893, 7471680.421398241, 7472197.021597008, 7472293.155461979, 7472309.499943007, 7472394.544644976, 7472466.439396539, 7472473.294952788, 7472807.8125, 7473384.375, 7473426.276890375, 7474181.334960146, 7474445.284819191, 7474939.0625, 7475152.991945895, 7475190.625, 7476456.845372306, 7476506.766339795, 7476514.3109248495, 7477033.910934129, 7477504.126373548, 7478043.75, 7478299.703749285, 7478503.626728182, 7479180.269282791, 7482286.784275799, 7482463.839248125, 7483860.902977014, 7484320.7316087065, 7484643.75, 7486852.298911913, 7486855.777971568, 7487592.1875, 7487675.0, 7487756.25, 7487868.75, 7487921.324011719, 7487998.4375, 7488054.344017645, 7488092.1875, 7488106.25, 7488160.19536832, 7488193.529741807, 7488264.270803199, 7488277.202988918, 7488388.640477236, 7488529.6875, 7488593.754362512, 7488601.019439315, 7488612.225017695, 7488708.888109836, 7488792.361366632, 7488802.764638329, 7488808.51926403, 7488813.439127281, 7488815.625, 7488817.709641176, 7488879.686923436, 7488918.707328004, 7488936.752797529, 7489096.875, 7489107.494788086, 7489122.599341122, 7489129.060902683, 7489154.6875, 7489196.16909757, 7489257.8125, 7489303.383395946, 7489340.625, 7489350.068416212, 7489356.56963825, 7489375.725480768, 7489386.232317193, 7489387.115463746, 7489548.590806595, 7489584.375, 7489586.482850904, 7489596.256157022, 7489645.909370496, 7489829.247925565, 7489858.579501473, 7489906.420988599, 7489925.0, 7490037.442725177, 7490109.375, 7490535.711488459, 7490546.875, 7490601.5625, 7490693.0831341315, 7490754.586959335, 7490790.533070782, 7490809.375, 7490941.078483652, 7490943.75, 7490951.316002652, 7490955.430902346, 7490970.826584109, 7491412.158187537, 7491451.205076913, 7491484.305065617, 7491488.766596385, 7491595.204676012, 7491658.377403775, 7491673.4375, 7491675.820757309, 7491780.257715194, 7491782.860815504, 7491844.748399096, 7491905.892310454, 7491917.944356568, 7491926.981118778, 7491942.175951061, 7491962.5, 7491965.625, 7492024.413130894, 7492039.943239746, 7492155.179134968, 7492156.25, 7492159.779553118, 7492166.743485527, 7492179.6875, 7492188.995604585, 7492217.1875, 7492227.36932637, 7492239.786523982, 7492248.680332465, 7492261.269633059, 7492279.6875, 7492281.977601314, 7492294.259106489, 7492304.8834958635, 7492307.8125, 7492308.3902785545, 7492317.1875, 7492328.146795922, 7492331.144752752, 7492392.1076318165, ...], [5.988311357918174, 14.58544063950214, 62.19488085435441, 35.8679051531449, 18.525530946623217, 19.713515679029435, 14.519629142954626, 15.113471793753813, 11.489204901557208, 52.68115435010961, 20.340535078479466, 28.631667285772206, 46.51763655133024, 35.35050360698323, 98.89875555191307, 8.663376209245572, 8.93707852010022, 55.22527775586396, 49.514327426302145, 55.8456990513613, 84.93481293611161, 69.72402041391015, 71.29655280077705, 55.17657741790924, 56.53867173915704, 18.418122623790435, 55.07721473926467, 36.992563525321735, 48.58575169835041, 69.85182322998163, 62.126473113585035, 5.116760618077346, 36.356643054865415, 53.7912886574305, 28.99418160346481, 11.582499413918477, 100.48811538194973, 60.719028398557526, 45.79671232043234, 68.98824883775941, 14.564052792564274, 8.847650036579209, 59.199387194548684, 8.90462514245807, 6.369280621950073, 9.334419572661215, 30.55395522634053, 5.730443132173059, 33.19221168908861, 43.42088968452443, 12.64024149428454, 33.826860740222585, 17.638500088240338, 124.8182337181042, 38.44987471588555, 88.69115672531044, 48.49003130468558, 50.772270975333264, 13.334986804202709, 99.14721978696794, 11.29410384235123, 33.58933621682399, 23.556839284365168, 16.071709472905095, 87.35152041020666, 53.29760249835992, 5.727120799771715, 40.1540219627537, 15.880918094039215, 22.263703114522464, 8.932479400649209, 5.078593035968885, 29.807378500372707, 16.890716021537873, 10.646577743148407, 13.05253802133408, 64.07616277889665, 18.97893286081128, 63.36876011415936, 43.148291609675596, 18.32574163602428, 41.303123916110636, 14.992836681622128, 12.92920569624514, 5.732667235888668, 46.417385375395796, 17.98732438136388, 32.239777279329005, 9.887396641363072, 12.013417812975376, 16.37694416528854, 9.300505887266887, 5.0367923262022165, 83.17674250546929, 16.126267752843265, 81.39744653162475, 7.305301704854904, 22.138808027959413, 60.865969382030585, 95.98269739823013, 65.77587230083697, 6.9941097044310805, 90.44432759908975, 20.594147959675578, 76.79187633353997, 58.09681577699222, 8.458540338545507, 117.24296151044081, 5.202319694554491, 10.52635066824167, 29.788752852057815, 39.956677797462, 22.817192125539812, 11.040938757142637, 29.288858815956957, 33.971661158618225, 23.18962690786195, 47.150888304060416, 45.341219499793056, 104.71453855289607, 12.52591497644824, 60.72315530421565, 7.362193044931344, 25.926071840457894, 68.15612840786113, 13.890316193247788, 25.618016988283753, 55.119750298137006, 21.969782179169776, 56.72915601516142, 6.070073884234461, 5.802517699007752, 57.964168040748895, 6.423716278806111, 6.611576571125117, 45.537761157444336, 84.41219688722322, 88.21165847897879, 17.0478475027739, 33.08764901938564, 23.526549220202533, 37.1136974350728, 103.15375603689453, 66.67472409976139, 11.381828080134113, 9.880621868623251, 87.9683621858769, 92.89323737812282, 5.951178267025984, 24.583401842329945, 6.090858643110765, 6.774426389450093, 11.953918037647135, 61.25197587635985, 5.7220412298733, 17.452320169191175, 8.222673527593546, 70.7679689192959, 10.492735351041336, 46.133407697414974, 41.821650158195546, 62.55444396842776, 9.916920574980555, 65.82129577521033, 23.240265634006796, 58.46413546812418, 34.739457953646316, 40.42781819807021, 12.872689716025251, 27.261601034687697, 61.6719823124311, 6.815101992586415, 27.85772610522627, 32.328887941817854, 64.04765571461331, 15.631839106733363, 12.074441252397524, 52.85753894944672, 20.819835544287713, 21.26828759597224, 51.90631329440213, 21.338063883123542, 47.62477696602311, 10.511342414828114, 42.33186620129064, 51.978382792181876, 5.284949529458445, 57.84504703658905, 25.54356622734572, 94.66153990751822, 61.553276266373544, 65.8228307467281, 6.6955333081548325, 15.158933925487734, 47.62420978215032, 18.28347780898332, 5.566750325264868, 9.984773889054315, 85.92194185778033, 84.97958296388836, 9.745307057797309, 11.23126746105645, 15.529151632226323, 12.314376470332663, 32.53164365996326, 28.61708598954713, 37.720720496205, 15.748862069432306, 101.47883814608733, 87.116926572175, 10.121439475238095, 56.49535753681592, 47.53920573832022, 17.75280649995389, 45.7920522422115, 26.960680246890806, 52.12268357196078, 10.12365406276169, 9.030410008457329, 89.94892899855284, 5.942519653083214, 11.463728435721677, 20.246738875706086, 46.03963678568364, 22.51479851100079, 15.21406105546615, 24.086991365865106, 12.910385006885534, 9.566138733635182, 36.15525558545377, 84.20341485395645, 20.57481458507494, 124.09297262088313, 22.04272688085872, 21.060369788505522, 44.42039412146869, 13.751708152266872, 22.906965486109257, 8.095182331284555, 22.110902608754092, 72.29813969706063, 35.61453407295078, 74.88025886949399, 34.43016127817431, 39.65106275919516, 7.738018336073798, 50.010247740526154, 35.675111832606675, 88.8658225453451, 8.064793671550822, 5.4715324991783465, 31.461715908111845, 63.53923019384785, 8.138999464730533, 8.753797341085404, 43.943472433337575, 33.156489719385974, 66.66918863346928, 6.296043954026391, 54.23523321762174, 5.906975567850601, 6.5689598725211, 7.844273634835743, 36.099183652943196, 14.83847157503215, 101.22266942363176, 79.46112238410302, 9.034512534189929, 10.476171434625611, 10.928994053084025, 9.456278853477869, 5.2097444240707915, 38.73114540798526, 108.9250499376029, 122.24095933111813, 32.81071201091072, 28.605050104587175, 18.749180178198223, 51.225957239713225, 48.60452060352047, 7.274981901458463, 35.240155626242114, 24.846579485671683, 51.97680366651262, 18.374305984801154, 35.31854240353566, 82.89029391387197, 30.47844154371745, 101.17243304419554, 13.841841485067974, 74.90750053405601, 23.048216237322432, 34.95220453351628, 121.70130710744286, 53.430447032911665, 110.72771035947297, 86.1201649781171, 7.9772008000542485, 36.197091739120054, 16.642977523088565, 7.089910500314451, 8.782482262992275, 8.617975367059811, 24.999165744683584, 13.908579035496553, 44.18420349354849, 17.27506019887339, 5.729166875730632, 5.428745541378009, 158.29887645176052, 66.7901030316498, 87.25154173615539, 28.557532212526777, 41.73223044666357, 76.9838784335739, 14.058613344879525, 6.649737957415025, 13.51803307854916, 15.826032819756584, 70.69607931858043, 28.342678346601993, 5.045022197591963, 7.346636236771105, 63.48201784745152, 5.629179933270278, 41.31316012032518, 23.234196638996924, 15.97006985382175, 9.106316574546673, 41.67946712136392, 32.66054239085215, 10.661924778918813, 90.25402881713715, 65.20481320560881, 12.170518204796451, 62.65750094179485, 7.619822387011497, 10.311674938950063, 73.80576735906257, 34.82941380491924, 34.52688898318135, 8.903319303647656, 17.929159587571863, 24.07779146053916, 94.34660419406333, 53.39655797999255, 28.519484707384542, 50.402654325330666, 6.164174995646297, 6.355808541666101, 19.276781282442204, 55.62641499771705, 72.47981600383895, 77.37527461209724, 67.52625506596398, 22.045428003142657, 57.86797326342052, 21.633737388297646, 20.16104283209393, 91.57011661615589, 34.39671660176333, 56.07871315505778, 14.175245576200048, 67.17640188446047, 12.426171260556508, 87.92842431569042, 27.388247324282087, 53.024808824405774, 13.585834529619994, 32.57401240924701, 16.895485148938484, 54.88891675077156, 6.041367865140553, 67.33847272138011, 29.24852139771418, 23.511536059957088, 71.45721224638967, 34.41199204504099, 129.71069712281744, 79.98628545685966, 60.34902835075608, 6.366353738015418, 18.554518345312953, 7.880693874701712, 25.856517997234313, 103.62577104877252, 19.978251448071276, 29.15968240314217, 22.39895036271776, 64.15845589734329, 30.694322999915222, 11.329943075939216, 60.63807983611669, 6.862153459062165, 10.147154724322965, 5.17424637028456, 74.6942352655114, 20.213274038032047, 131.08362988203905, 8.484022363814056, 24.49431258574798, 73.04996425040527, 33.56822181814592, 9.399228614276295, 32.10692788113987, 107.85486846580287, 144.2999926774794, 87.69176282802837, 40.93681234596413, 20.57365696967823, 87.17032205878732, 47.98390344249924, 9.652022763018396, 21.776392598108863, 61.32647246945486, 31.35285353211909, 20.538942362063864, 54.47442958747738, 12.690163271374324, 70.41127951462546, 38.84134583941571, 24.70425528731463, 11.28297533456598, 44.944422818782904, 40.28242498032335, 39.05898335463048, 72.63754297672949, 24.52705637878888, 36.8555267799381, 55.806531387613944, 82.79370898829733, 19.02715806875507, 95.39299108361753, 31.23077964379368, 18.57960076883716, 77.23988262417056, 6.766172349591626, 29.901439640873846, 6.5053186821595546, 26.87221292621929, 62.29814321391958, 15.340247044203009, 16.501795395339013, 6.513870880801533, 119.38200587719962, 90.68585441609905, 41.09977674278778, 19.350294770735637, 45.91290357498644, 71.8690955154568, 52.20075174384098, 18.57410251532528, 8.419795582072409, 8.813484411058555, 44.6382585697194, 7.383906157017323, 12.513002705626162, 86.62764854182764, 18.840159404187677, 15.135883069937279, 9.315477975028001, 15.845284130252344, 29.014596790681438, 30.788004213142656, 51.523191495633924, 51.262298584633584, 14.56070317374828, 19.92910223370804, 56.82417017445063, 48.16237399243053, 8.892012753205481, 63.54488842912544, 148.3382950393473, 18.89228052769637, 12.798768504068311, 22.107266781528097, 25.423059783591853, 7.998206943568711, 15.206368799347585, 86.77755796238807, 76.67639852677816, 22.803782770731058, 16.594537223544922, 10.69843765625564, 11.933724292557752, 30.595247457494438, 5.97981813858851, 58.702515063211784, 6.8989503332864786, 25.070075095139398, 5.499593659450855, 69.63970765103852, 75.7855887925771, 56.666026810298234, 6.816357632994158, 99.7214694100598, 29.365633912445954, 73.71656431299175, 16.235044181336345, 35.231412836721596, 18.503067286837997, 21.555652709935956, 9.021990152005507, 72.09583372795538, 7.347147719686721, 5.1810925401591, 7.026579200210538, 20.097118970852037, 12.930333605424469, 19.435781597384686, 110.34238665679061, 24.723061461902734, 6.468366386938197, 9.604111155949527, 18.171828759797965, 13.717546736186067, 72.92477316736353, 41.83690796269115, 73.68611356708995, 31.215239235896178, 5.038773338811562, 20.306749595976623, 66.34880964940467, 8.963593037231595, 27.140331686936207, 103.82604785896626, 84.56178620125968, 37.30895337672648, 5.57709978096211, 33.12834181302623, 75.73539307633288, 49.924420755677644, 66.9455715601346, 26.73134925684017, 28.343897840760796, 31.95168401436315, 6.8053932881213095, 38.34523042302636, 19.7869162487587, 13.65519311379982, 8.434893107562882, 24.635828710337073, 61.06928756597063, 22.0283608065406, 8.935207113950781, 30.475750371195517, 28.029397530380116, 42.75193944456924, 47.45286158171224, 37.367955185863316, 76.20891632568032, 34.09368216243235, 97.71898333880173, 23.07887975013582, 137.26303637099846, 64.86464793046719, 32.964895308843616, 16.832908586953952, 22.706832524055013, 8.989557914782782, 15.379117458190366, 41.56587832800988, 61.99485225581934, 9.07505276686479, 42.85479092466187, 5.106194665395157, 20.812097348029923, 29.87733423216771, 11.700843790482597, 74.15282968224088, 65.10507589587053, 51.15150903109359, 12.279815910771145, 12.803810416297308, 51.54752448496699, 18.81400387305931, 16.910455867938236, 54.56806977677516, 41.337296586938635, 19.538059953242506, 33.13771819552219, 64.3863684679942, 23.172012782838234, 172.3865231337325, 16.436404011382024, 17.45278737200597, 21.157226819337435, 6.085058973240637, 32.113003680789696, 16.613277673731556, 113.9788729013502, 42.33012440140852, 7.062334427735109, 24.74159027884643, 24.73495304686903, 72.69418691995091, 29.115192036071658, 7.237234444678787, 12.791112108450083, 70.73737746593144, 26.857709483783996, 20.134703732376064, 22.377651432276267, 17.571854765894088, 11.980988838520673, 7.348136690149218, 113.0014291080556, 5.658381877059954, 52.585465462813985, 73.92161456500354, 11.253123756132592, 58.74248373958979, 22.005875802193774, 33.84652880835024, 40.229595082212576, 11.231876872161463, 24.072216133173548, 21.84795971835683, 21.003067796082192, 14.273570516083351, 23.811807580166665, 54.17826996164259, 69.437031777474, 18.02914432734697, 9.850367806057186, 56.46542313598507, 21.542850130236793, 67.79849553712637, 12.9815904864471, 16.070136496487, 53.89005847721077, 12.251020812432202, 64.47326360348737, 32.97280971028159, 6.9452621782342705, 71.29613370542616, 6.772142134782368, 18.03097092878274, 59.29044648681851, 20.525161601071908, 45.334138681850014, 21.478191300333418, 46.302991586675326, 9.689911507619826, 39.18935656029367, 19.89917134343976, 6.590863848829949, 76.09059903058588, 9.517786523833257, 12.475139802655907, 71.14089608107894, 11.00372655077289, 26.99268895133414, 14.591545852802012, 13.015127064362153, 13.907532519963311, 69.97855497436477, 77.43077146931742, 46.52118993127726, 21.44316314429677, 33.00757417619463, 46.597338353182046, 109.7943638524109, 12.712570136895609, 77.17820584131964, 99.92750855217258, 63.77248271552982, 43.378737666755114, 6.4189139133383915, 75.6876876000109, 65.44973969880793, 179.31862962547498, 61.196691968370715, 21.888025256873863, 16.53788511415705, 135.62938270193342, 18.80764235503967, 10.35260559571607, 19.8784241101474, 5.893915896538871, 67.20955378032042, 21.86558367587002, 143.265329612932, 35.48335967229167, 28.330465654128226, 47.57997535803151, 14.610138296114377, 42.87158857676377, 6.4251178318275155, 5.0558679264978865, 23.100672164605502, 81.52522722732071, 58.42168378702465, 28.150393802689802, 9.828276704537798, 15.390722641527557, 44.69340765078988, 9.94240535974607, 6.112139928193502, 12.723413403817517, 83.22131426403284, 7.087351612469939, 61.51565747007521, 11.467119822441411, 14.334750975760215, 114.95159245307157, 71.76504181715916, 149.63141012515092, 46.191621707063355, 66.21223950339042, 27.846355695399364, 11.91464487281057, 11.791731332854852, 10.169227094240787, 44.01090661105021, 5.174549895575592, 14.257008092065137, 63.48402754348782, 86.64153034497839, 17.788696523468673, 61.88677931633268, 9.64360745726358, 96.92705926186669, 76.55188844734873, 20.935091554819216, 6.33402714790851, 18.527002308714902, 23.336402949512557, 18.57006576453462, 87.13345450925836, 87.60388163819056, 6.5551018546077895, 115.38022492896395, 8.873885732469182, 100.1303071469478, 10.25100278686115, 124.19620301176504, 85.27636741596507, 55.54863415520926, 53.22548751887193, 185.46852837488734, 10.329389132797974, 14.743873415219092, 18.67774434350438, 13.064905643753445, 56.980618859526444, 73.9695990231683, 5.3014583186681685, 27.407526200440003, 12.843963976522673, 28.11539388346613, 52.58676912305765, 7.35087803409656, 20.632741123195803, 49.502018968450976, 23.66177781945285, 13.212271936189882, 62.802327844696535, 6.94788982868078, 85.75294563326102, 23.52422660510191, 14.990083263036952, 14.22967070024298, 54.07246615487361, 10.289204936286842, 8.501583921178604, 49.82453976921273, 137.50943034877696, 13.470564830680388, 29.124325872830088, 120.03011857926327, 57.1289939151666, 7.717718070781562, 59.266030948665424, 32.740855171878565, 10.194778039458471, 15.511891345780384, 12.160402069683549, 35.77051187649592, 57.92402489050148, 45.7784579247841, 81.28437101782104, 28.87373894614629, 31.54147300702182, 23.143831934801312, 14.284933110513892, 9.73304450655081, 18.969026061362673, 8.335346079056473, 19.77613323478384, 64.19555683753296, 32.023162366658426, 45.319622129480834, 116.41462154838847, 62.0406368286445, 10.87503957159463, 8.054627815225627, 102.55586863618016, 140.73837471400068, 78.24751212730413, 19.79208240202272, 81.13593686937011, 83.20197861484964, 19.351203153284608, 50.0040731039956, 61.32856859564133, 94.76235763920795, 39.9465131634943, 15.500845845356277, 25.023878671152207, 37.37340219735003, 7.684859109935701, 83.0827801894597, 10.075283934384814, 12.8264542990747, 134.554949737775, 67.11640966689428, 46.046968981803644, 39.562904882831084, 15.389024378353273, 21.943928870193815, 8.774276236925207, 15.68632593377353, 73.23216263948906, 47.7990829826839, 5.456797013538982, 35.44975628312369, 27.012875995273696, 51.525037009088145, 14.084415191747661, 11.693370188932523, 6.476215555342581, 69.35096792182341, 44.51561480544649, 71.9977607056806, 6.307921757631111, 31.937140382143713, 79.51310670426744, 8.91266109637407, 10.987897560307324, 5.596177560306818, 12.460453695660535, 9.417830349796752, 24.248586907860428, 49.264908798193304, 12.039950657754577, 62.925593794274306, 117.48930324478158, 106.06171223067248, 137.34182750106578, 79.16422823493983, 15.721512390446895, 23.789560375581065, 66.60562578658686, 13.051619196227268, 33.75822013896163, 27.623349671817483, 9.055273907251882, 9.052388504255283, 8.684325214299745, 50.69481904346898, 65.77416277002766, 31.906830005731027, 27.983536792923942, 18.740950540638618, 18.139835178322617, 34.11678361794441, 141.0054461329122, 27.28288976852762, 12.694300473467525, 35.82990668301183, 61.1069096664057, 66.32789675758711, 74.27672086206113, 28.95170328005159, 40.620475674535925, 59.80298140472834, 26.1463853070311, 39.49659364372116, 35.64708837020969, 5.484373613491649, 5.10337724210713, 7.443595099114877, 13.161695706179566, 63.94384887676917, 21.15459463543615, 81.43951649730272, 76.82680929191741, 78.66275583383742, 131.29681673368208, 117.1819631714387, 11.852737371987144, 44.626222385948765, 96.22485888714046, 21.77674464039183, 37.259127284988246, 44.89238706695004, 46.55264821603301, 33.71797829477689, 6.658275254228761, 55.04958999006878, 66.07905889250834, 47.619477066610386, 75.39292049447137, 19.375790976504206, 31.845005028227668, 15.799713178294454, 8.657043386635848, 6.422909690795197, 35.8563466488222, 100.82554828758686, 63.50445597283449, 5.282668151967014, 20.833017980257992, 9.482875370324544, 10.607577540981083, 18.5526417875513, 7.98231829284693, 74.72922753030927, 23.032048671755728, 5.4617417925361265, 84.79906103907476, 12.696433984669753, 95.77141800031464, 82.78330059093085, 6.166808884809084, 10.271738470096968, 76.81330034340691, 68.07452927150261, 62.81634827655394, 9.559885628347784, 61.34310355540011, 9.389930778721782, 97.85739171416678, 12.488976082994443, 80.50904727119331, 13.653803521546207, 96.12531954101011, 56.3086956073473, 24.11755555375071, 65.99171840447879, 37.2125721561569, 22.117826345968645, 6.369223989903186, 26.526691370432673, 52.17404239176332, 33.28280451338145, 28.669819809098605, 79.92655703670432, 44.40929740187398, 35.99977098339641, 12.891148526951227, 17.651200768861454, 26.830123447201384, 56.26338576844577, 184.9222854407746, 47.46083660718599, 14.078438396119333, 44.219221976452914, 12.039087437150108, 71.99349969328307, 23.04394498998207, 14.681487881278448, 25.32546682729312, 75.9431492166148, 12.142646029945125, 31.06414549482258, 18.260956196531154, 8.613037030038251, 22.599719932650633, 10.347301731627894, 29.86038388008469, 18.904219371411656, 58.492352530207434, 28.29837980044698, 69.98792182752908, 33.16950639954035, 20.668199349707844, 12.854366523908618, 37.17089677315803, 64.60839327225857, 34.13954240144716, 38.121179940411196, 54.9981010110469, 14.692521719978899, 64.95789914510331, 56.8601409477835, 18.67184954347855, 15.95557578162031, 31.115887142654465, 36.96455135235848, 70.0945449824218, 86.38802098065099, 78.60368872737286, 68.11011795447791, 18.66053683465937, 84.42538398590797, 23.450956743255567, 26.60405282540381, 16.519727854935333, ...])
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);
([3354802.1074549914, 3527860.8408356626, 3786432.8125, 3848076.507214613, 3903563.2027982045, 3905585.2384595578, 3941609.2597292024, 3973201.457274667, 3975628.3445867896, 4016418.4725177772, 4067935.3136400552, 4101323.4375, 4102651.7608526535, 4106879.6875, 4407825.0, 6411172.525484148, 6619219.806180022, 6666632.483303439, 6667240.625, 6687689.0625, 6827748.4375, 6833684.375, 6839329.6875, 6845739.359545365, 6852681.25, 6854099.124436219, 6863589.998360452, 6876772.917136773, 6879623.539862196, 6884484.32188299, 6894780.877045467, 6894886.845702831, 6896932.8125, 6899055.971425064, 6913000.0, 6923426.044687438, 6923537.314755832, 6924990.206763026, 6925065.625, 6925956.25, 6927813.959815078, 6935619.679039004, 6937410.513614089, 6938386.948116304, 6938507.017405839, 6938593.7535652, 6938600.0, 6938622.240835015, 6938632.8125, 6938673.4375, 6938707.041412734, 6938719.528793757, 6938766.350058068, 6938779.6875, 6938803.125, 6938864.541289982, 6938889.0625, 6938903.125, 6938904.190761283, 6938924.7867093915, 6938926.725283346, 6938941.979380596, 6938994.997166946, 6939011.205464017, 6939015.350571049, 6939026.5625, 6939039.377770381, 6939042.1875, 6939068.976409396, 6939104.261428744, 6939113.549762107, 6939127.088774178, 6939132.8125, 6939133.244496837, 6939144.981219093, 6939146.272000808, 6939157.8125, 6939200.471187169, 6939226.5625, 6939231.25, 6939241.296490401, 6939253.014098707, 6939269.25898788, 6939285.285910659, 6939297.274550564, 6939352.779450209, 6939367.808307937, 6939371.875, 6939375.591687054, 6939405.18877512, 6939406.564976395, 6939407.775731792, 6939435.653623986, 6939448.4375, 6939458.571601029, 6939471.970273726, 6939478.781086413, 6939491.749881374, 6939518.75, 6939567.283710019, 6939570.3125, 6939588.554858945, 6939600.0, 6939608.474659504, 6939624.899097221, 6939634.375, 6939651.8741189, 6939660.9375, 6939665.581681443, 6939680.827894568, 6939687.5, 6939731.25, 6939745.422774655, 6939804.631270088, 6939845.3125, 6939893.75, 6939937.154764975, 6939948.4375, 6939989.0625, 6940031.25, 6940044.491806067, 6940046.875, 6940055.530455621, 6940087.353139788, 6940089.0625, 6940093.443862408, 6940115.458356021, 6940118.75, 6940233.011394197, 6940275.0, 6940299.824862644, 6940310.781371359, 6940321.875, 6940327.708441948, 6940388.250670933, 6940426.5625, 6940465.625, 6940499.874240641, 6940512.846897102, 6940533.297546946, 6940537.725530278, 6940556.25, 6940692.61495206, 6940695.939024323, 6940725.156714866, 6940727.147691556, 6940735.774847405, 6940745.549027378, 6940807.946699627, 6940998.269429927, 6941135.963993458, 6941217.241951964, 6941230.158753133, 6941244.025045262, 6941247.112492503, 6941394.2826365875, 6941476.43966993, 6941563.17716334, 6941890.176865576, 6942101.5625, 6942362.5, 6943046.732154239, 6943180.307309808, 6943329.526664934, 6943913.721457522, 6951579.6875, 6957047.792026478, 6965468.423013009, 6969477.768303848, 6971076.4952604575, 6997172.10565719, 6997225.253059915, 7015923.40288122, 7016396.432591759, 7016517.1875, 7016539.232547051, 7016672.4065863285, 7016955.907819982, 7017105.679751716, 7017162.585791002, 7017330.110308291, 7017493.234316617, 7017576.5625, 7017805.816308404, 7019427.409263062, 7019578.341069663, 7019632.612513504, 7019789.0625, 7020052.636420742, 7020831.25, 7021550.0, 7023365.625, 7025788.712214687, 7028482.024744548, 7029201.4588048365, 7029281.028383746, 7030205.362263227, 7030308.495828601, 7040742.1875, 7042790.625, 7042808.26454668, 7045370.37775975, 7046804.833580344, 7048300.64626969, 7048475.0, 7057977.745969941, 7059953.033097197, 7060100.196833769, 7060616.747112445, 7060821.875, 7060982.056740996, 7062193.75, 7062428.125, 7062522.620158177, 7062546.3765161345, 7062990.540640767, 7063212.5, 7063257.0586928325, 7063632.433703741, 7064051.5625, 7064067.223189877, 7064592.392341069, 7064664.9902706705, 7064756.25, 7065118.42119233, 7076146.94471543, 7078721.600875614, 7078732.153372796, 7079259.64015031, 7079556.145941422, 7079676.244329136, 7080110.277022602, 7081327.867836313, 7081358.928387177, 7081380.705498392, 7081390.18341261, 7081449.648394703, 7081549.6309424825, 7081916.80714011, 7082102.684779155, 7082220.3125, 7082250.0, 7082296.875, 7082357.225239609, 7082392.068139, 7083076.920383453, 7083078.125, 7083306.25, 7083685.099372682, 7085557.368156258, 7085586.1630752515, 7085690.625, 7085707.8125, 7085804.397597494, 7086624.227571931, 7086953.125, 7087342.1875, 7088031.25, 7101987.724951435, 7102156.25, 7102179.307420896, 7102513.003107618, 7104881.870636922, 7105793.75, 7105804.660201586, 7106335.9375, 7106573.253354658, 7106979.314192985, 7107372.976434992, 7107967.056537828, 7108093.894082551, 7108198.683869044, 7108209.060985183, 7108370.172307361, 7108370.637513336, 7109003.028182936, 7109085.115550867, 7109124.8183089355, 7109326.347444743, 7109409.375, 7109458.366040278, 7109647.713748583, 7109920.058582105, 7109928.934400848, 7109973.90169237, 7110293.75, 7110497.935107823, 7110775.0, 7110860.9375, 7110894.990611991, 7111015.625, 7111041.830436956, 7111387.076984193, 7111423.206790777, 7111604.6875, 7112295.548671995, 7113342.1875, 7114305.615251506, 7120843.426219268, 7144387.884682347, 7148204.566137708, 7149732.083168054, 7157056.828173178, 7167254.540914501, 7174482.512255006, 7174529.626508614, 7175003.490006772, 7175314.408939413, 7175446.082402142, 7175467.472037502, 7175551.5625, 7175676.5625, 7175779.911647723, 7175788.576851681, 7175871.875, 7176054.434826329, 7176266.5896123145, 7176510.506134093, 7176983.026699702, 7177276.5625, 7179701.553223402, 7180436.142889577, 7188567.980058311, 7189750.0, 7190890.895389342, 7192632.8125, 7194023.095956235, 7194770.697577787, 7194899.721239044, 7195531.25, 7195938.867038402, 7195990.305064394, 7197045.3125, 7197459.126054724, 7199828.703352115, 7206037.5, 7206146.920622651, 7206438.469130039, 7209133.656114689, 7223676.5625, 7225205.895306985, 7225232.258769387, 7226386.549058366, 7228473.019576093, 7233256.367874002, 7233325.0, 7238725.120468447, 7239287.830039208, 7240310.076111103, 7250866.29557305, 7251596.767556608, 7252741.281877703, 7255228.125, 7257429.6875, 7267083.880937322, 7267221.428641363, 7269212.5, 7269525.063178817, 7271587.49671426, 7273125.0, 7273125.093518262, 7273564.728322001, 7280156.033304571, 7281039.0625, 7281142.884881684, 7281212.5, 7281302.721359106, 7281331.25, 7281549.592191875, 7281674.583043281, 7281720.74538936, 7281780.532913515, 7281846.413305213, 7281910.9375, 7282035.9375, 7282846.8322852785, 7283114.0625, 7283140.625, 7283287.054779361, 7283367.1875, 7283370.3125, 7283424.183977664, 7283556.957037977, 7283610.082073313, 7283885.7862224355, 7283959.375, 7284202.45843693, 7284482.535470111, 7284532.398753146, 7284557.8125, 7284607.8125, 7284643.875643013, 7284646.875, 7284720.787319993, 7284772.70431358, 7284842.564950292, 7284946.875, 7285000.64396258, 7285059.375, 7285098.793097376, 7285195.068564211, 7285262.155449956, 7285303.502647023, 7285375.07913937, 7285439.0625, 7285550.0, 7285556.032024304, 7285746.68880722, 7285780.639222408, 7285861.902611005, 7286046.34113256, 7286057.8125, 7286148.793810954, 7286207.340437415, 7286417.12552405, 7293412.5, 7295085.336217437, 7295690.625, 7296605.500148071, 7300562.5, 7304844.876071032, 7317283.365233171, 7319426.659615653, 7319530.40951388, 7320371.875, 7320434.783664344, 7321044.890295151, 7321604.9424741715, 7322414.0625, 7322630.2160963975, 7334599.240402156, 7336549.2113070125, 7336557.612917018, 7339616.418371565, 7345986.64819267, 7347341.382667961, 7352009.388338142, 7352121.688173053, 7352568.865299915, 7352577.502763198, 7352597.966679526, 7352601.6633227, 7352614.419356576, 7352631.418732548, 7352821.875, 7353215.625, 7353262.5, 7353263.713993311, 7353319.555435332, 7353659.375, 7353993.75, 7354156.959892636, 7354209.6186990235, 7354264.941624616, 7354343.75, 7354497.787436444, 7354524.1736162035, 7354603.455835148, 7354617.935410282, 7354645.362578356, 7354746.856105774, 7354845.530995579, 7354870.3125, 7354889.0625, 7355068.435726001, 7355077.69584588, 7355112.396369895, 7355125.889990746, 7355145.670988794, 7355178.125, 7355185.367733663, 7355198.4375, 7355203.732726962, 7355214.99400084, 7355244.607980292, 7355254.246939507, 7355299.017352145, 7355338.474243869, 7355343.817795786, 7355354.6875, 7355357.8125, 7355374.62206463, 7355391.000207416, 7355418.456836525, 7355422.335957031, 7355477.773327166, 7355480.140142729, 7355531.25, 7355547.517574097, 7355556.046713513, 7355588.352657255, 7355592.1875, 7355644.645185987, 7355665.625, 7355669.009087206, 7355690.346482223, 7355745.3125, 7355792.1875, 7355795.614979774, 7355904.6875, 7355935.074500679, 7355969.81874781, 7355977.7349077305, 7356004.6875, 7356044.544223574, 7356095.975378169, 7356096.501361387, 7356108.722664487, 7356189.973861348, 7356202.390663483, 7356205.987901409, 7356222.995565048, 7356224.879500821, 7356231.5558223035, 7356266.274633856, 7356343.386982329, 7356365.761073428, 7356375.0, 7356392.1875, 7356415.426962709, 7356467.022442875, 7356496.247239605, 7356499.668061321, 7356501.092931335, 7356515.834537162, 7356548.610681674, 7356609.375, 7356613.191586309, 7356628.999814063, 7356698.4375, 7356782.8125, 7356838.75532743, 7356881.25, 7356919.261541011, 7356923.428285839, 7356934.375, 7356978.331249505, 7356992.1875, 7357102.435075737, 7357104.303435986, 7357145.5828178115, 7357163.800981813, 7357365.625, 7357486.283110044, 7357508.866070087, 7357546.300946213, 7357556.486875438, 7357649.8720203, 7358778.125, 7358917.005070432, 7359182.8125, 7359212.5, 7359309.396565407, 7359872.651377032, 7360727.485619391, 7360760.340855845, 7360885.813206121, 7360899.003323677, 7360904.31437797, 7360979.253514907, 7361539.1727617765, 7361573.4375, 7361707.8125, 7361802.805425439, 7361933.6363427555, 7362117.576725459, 7362357.603697559, 7362393.75, 7362687.200741991, 7362797.540662262, 7362881.25, 7362962.5, 7363128.755177655, 7363128.985056559, 7363170.3125, 7363412.921308377, 7363469.329617575, 7363752.4183982555, 7363932.8125, 7364199.822370625, 7364251.5625, 7365406.210482221, 7365530.903301359, 7365882.51853504, 7367076.305215065, 7367266.157716722, 7369517.347935324, 7369959.345713586, 7370492.1875, 7370522.548205167, 7370938.995697562, 7371384.933206848, 7371690.395230953, 7372289.798706974, 7372291.960832737, 7372299.383189563, 7372489.0625, 7372726.985377039, 7372749.292322642, 7372999.676050175, 7373176.472177598, 7373204.039618553, 7373207.56662626, 7373429.284471015, 7373675.484970275, 7373675.797441815, 7373818.902928222, 7374217.962063734, 7374497.966938005, 7374503.125, 7374581.328782969, 7374792.1875, 7375021.430371108, 7375023.4375, 7375082.435706556, 7375257.878137975, 7375267.969520748, 7375321.409852123, 7375322.026970948, 7375606.062979348, 7375702.829765639, 7375729.6875, 7375785.9375, 7375802.139580397, 7376147.430989856, 7376256.25, 7376449.447505068, 7376473.4375, 7376604.056718453, 7376711.205126945, 7376985.341214165, 7377001.443783272, 7377097.046389729, 7377140.625, 7377143.034480379, 7377348.886920247, 7377381.293101854, 7377420.940197165, 7377437.5, 7379661.070924573, 7380050.0, 7380452.62350415, 7380459.4876150405, 7380619.145597738, 7380690.4668579055, 7380711.823851238, 7381050.631518327, 7381716.549295842, 7382326.774997759, 7382346.0318276165, 7382831.25, 7382835.856706342, 7383287.551365843, 7383496.780049645, 7383846.257407656, 7384185.63691795, 7384703.736806464, 7386086.75506287, 7386644.850274892, 7386715.11997943, 7386812.279119001, 7387240.625, 7387382.8125, 7387799.259597026, 7388694.6469519995, 7389560.912045497, 7389737.095415554, 7389985.9375, 7390026.113343035, 7390042.1875, 7390556.25, 7392895.737368518, 7395664.0625, 7396402.6636985745, 7397281.614030811, 7398158.516520957, 7399153.709940323, 7399524.44022682, 7404961.821320211, 7405826.024891274, 7406501.5625, 7407679.224046259, 7409830.695103796, 7411143.259887496, 7417165.08302039, 7418512.5, 7418829.5977567565, 7420486.87523858, 7421155.842927565, 7421239.8955729725, 7421700.188812746, 7421809.927863913, 7422117.1875, 7422712.090798224, 7422723.971963941, 7422979.800567047, 7423114.0625, 7423141.268846908, 7423236.165550477, 7423305.514151494, 7423323.4375, 7423331.118669717, 7423343.75, 7423465.831810075, 7423537.758479021, 7423551.387047931, 7423606.25, 7423621.2982589165, 7423635.9375, 7423640.625, 7423709.970977649, 7423731.701178672, 7423798.8244847, 7423858.661029747, 7424003.125, 7424039.452703531, 7424046.683021952, 7424048.4375, 7424098.374936428, 7424111.526391618, 7424206.198257714, 7424226.910009006, 7424263.835862871, 7424296.99707597, 7424297.879681779, 7424316.1362528615, 7424350.703013827, 7424414.710410881, 7424439.771804867, 7424489.0625, 7424513.7839112785, 7424580.1080563655, 7424598.402705854, 7424599.404357913, 7424617.057512726, 7424647.793473511, 7424656.735320816, 7424747.16697963, 7424917.1875, 7425095.199133213, 7425216.811295848, 7425249.421226566, 7425457.759663217, 7425521.037370038, 7425593.15179762, 7425620.085792792, 7425727.331153698, 7425787.832141256, 7425821.420154235, 7426054.00150401, 7426112.478974883, 7426112.5, 7426302.368851474, 7426381.150987258, 7426387.5, 7426480.6589541705, 7426485.395425375, 7426540.625, 7426586.795860684, 7426632.701479019, 7426648.119557616, 7426790.637685813, 7426820.112303131, 7426830.498690136, 7426882.200489731, 7426889.448092998, 7427940.625, 7428175.920670777, 7428299.551932998, 7428767.1875, 7429160.9375, 7429560.9375, 7429579.9933050815, 7430128.2237285515, 7430192.128462657, 7430311.808093526, 7432139.795910525, 7432675.573482151, 7434151.472121586, 7434278.125, 7434339.0625, 7434592.1875, 7434932.665992717, 7434951.5625, 7435053.542068317, 7435199.179936223, 7435211.37715082, 7435256.436632163, 7435350.09109773, 7435357.121241943, 7435640.625, 7435861.518389904, 7435999.5546837915, 7436165.625, 7436268.75, 7436385.769604916, 7436472.971518415, 7436535.9375, 7437013.086800287, 7437189.0625, 7437234.410206735, 7437532.508093295, 7438590.7596649155, 7439677.379655388, 7439826.5625, 7439837.5, 7440071.875, 7440503.027834005, 7440701.701896411, 7441602.918535497, 7441978.946718839, 7442414.282670327, 7442701.906278235, 7444014.828218746, 7444094.593505511, 7444236.713818223, 7445200.0, 7445615.625, 7446486.920167257, 7446545.425156902, 7447216.731536292, 7447230.508396242, 7447251.74508788, 7447428.125, 7447520.971096524, 7447529.571203698, 7447682.564763564, 7448028.043642807, 7448521.875, 7448540.380359742, 7450125.334068616, 7455409.305268959, 7456398.00484454, 7457101.5625, 7458232.640973111, 7458269.065666825, 7459439.08301298, 7459996.875, 7460268.209458778, 7460271.783674317, 7460834.047466011, 7462508.525273608, 7463407.91297489, 7465244.260511192, 7465466.624558524, 7465470.827013367, 7468872.267637817, 7469313.4168857895, 7470056.6052052835, 7470263.696038491, 7470420.3125, 7470811.1281226985, 7470912.203032913, 7470995.3125, 7471080.646643897, 7471082.802883498, 7471084.327755062, 7471094.966825666, 7471137.15049985, 7471594.433340946, 7471617.1875, 7471640.959433182, 7471653.727265272, 7471678.136989893, 7471680.421398241, 7472197.021597008, 7472293.155461979, 7472309.499943007, 7472394.544644976, 7472466.439396539, 7472473.294952788, 7472807.8125, 7473384.375, 7473426.276890375, 7474181.334960146, 7474445.284819191, 7474939.0625, 7475152.991945895, 7475190.625, 7476456.845372306, 7476506.766339795, 7476514.3109248495, 7477033.910934129, 7477504.126373548, 7478043.75, 7478299.703749285, 7478503.626728182, 7479180.269282791, 7482286.784275799, 7482463.839248125, 7483860.902977014, 7484320.7316087065, 7484643.75, 7486852.298911913, 7486855.777971568, 7487592.1875, 7487675.0, 7487756.25, 7487868.75, 7487921.324011719, 7487998.4375, 7488054.344017645, 7488092.1875, 7488106.25, 7488160.19536832, 7488193.529741807, 7488264.270803199, 7488277.202988918, 7488388.640477236, 7488529.6875, 7488593.754362512, 7488601.019439315, 7488612.225017695, 7488708.888109836, 7488792.361366632, 7488802.764638329, 7488808.51926403, 7488813.439127281, 7488815.625, 7488817.709641176, 7488879.686923436, 7488918.707328004, 7488936.752797529, 7489096.875, 7489107.494788086, 7489122.599341122, 7489129.060902683, 7489154.6875, 7489196.16909757, 7489257.8125, 7489303.383395946, 7489340.625, 7489350.068416212, 7489356.56963825, 7489375.725480768, 7489386.232317193, 7489387.115463746, 7489548.590806595, 7489584.375, 7489586.482850904, 7489596.256157022, 7489645.909370496, 7489829.247925565, 7489858.579501473, 7489906.420988599, 7489925.0, 7490037.442725177, 7490109.375, 7490535.711488459, 7490546.875, 7490601.5625, 7490693.0831341315, 7490754.586959335, 7490790.533070782, 7490809.375, 7490941.078483652, 7490943.75, 7490951.316002652, 7490955.430902346, 7490970.826584109, 7491412.158187537, 7491451.205076913, 7491484.305065617, 7491488.766596385, 7491595.204676012, 7491658.377403775, 7491673.4375, 7491675.820757309, 7491780.257715194, 7491782.860815504, 7491844.748399096, 7491905.892310454, 7491917.944356568, 7491926.981118778, 7491942.175951061, 7491962.5, 7491965.625, 7492024.413130894, 7492039.943239746, 7492155.179134968, 7492156.25, 7492159.779553118, 7492166.743485527, 7492179.6875, 7492188.995604585, 7492217.1875, 7492227.36932637, 7492239.786523982, 7492248.680332465, 7492261.269633059, 7492279.6875, 7492281.977601314, 7492294.259106489, 7492304.8834958635, 7492307.8125, 7492308.3902785545, 7492317.1875, 7492328.146795922, 7492331.144752752, 7492392.1076318165, ...], [5.988311357918174, 14.58544063950214, 62.19488085435441, 35.8679051531449, 18.525530946623217, 19.713515679029435, 14.519629142954626, 15.113471793753813, 11.489204901557208, 52.68115435010961, 20.340535078479466, 28.631667285772206, 46.51763655133024, 35.35050360698323, 98.89875555191307, 8.663376209245572, 8.93707852010022, 55.22527775586396, 49.514327426302145, 55.8456990513613, 84.93481293611161, 69.72402041391015, 71.29655280077705, 55.17657741790924, 56.53867173915704, 18.418122623790435, 55.07721473926467, 36.992563525321735, 48.58575169835041, 69.85182322998163, 62.126473113585035, 5.116760618077346, 36.356643054865415, 53.7912886574305, 28.99418160346481, 11.582499413918477, 100.48811538194973, 60.719028398557526, 45.79671232043234, 68.98824883775941, 14.564052792564274, 8.847650036579209, 59.199387194548684, 8.90462514245807, 6.369280621950073, 9.334419572661215, 30.55395522634053, 5.730443132173059, 33.19221168908861, 43.42088968452443, 12.64024149428454, 33.826860740222585, 17.638500088240338, 124.8182337181042, 38.44987471588555, 88.69115672531044, 48.49003130468558, 50.772270975333264, 13.334986804202709, 99.14721978696794, 11.29410384235123, 33.58933621682399, 23.556839284365168, 16.071709472905095, 87.35152041020666, 53.29760249835992, 5.727120799771715, 40.1540219627537, 15.880918094039215, 22.263703114522464, 8.932479400649209, 5.078593035968885, 29.807378500372707, 16.890716021537873, 10.646577743148407, 13.05253802133408, 64.07616277889665, 18.97893286081128, 63.36876011415936, 43.148291609675596, 18.32574163602428, 41.303123916110636, 14.992836681622128, 12.92920569624514, 5.732667235888668, 46.417385375395796, 17.98732438136388, 32.239777279329005, 9.887396641363072, 12.013417812975376, 16.37694416528854, 9.300505887266887, 5.0367923262022165, 83.17674250546929, 16.126267752843265, 81.39744653162475, 7.305301704854904, 22.138808027959413, 60.865969382030585, 95.98269739823013, 65.77587230083697, 6.9941097044310805, 90.44432759908975, 20.594147959675578, 76.79187633353997, 58.09681577699222, 8.458540338545507, 117.24296151044081, 5.202319694554491, 10.52635066824167, 29.788752852057815, 39.956677797462, 22.817192125539812, 11.040938757142637, 29.288858815956957, 33.971661158618225, 23.18962690786195, 47.150888304060416, 45.341219499793056, 104.71453855289607, 12.52591497644824, 60.72315530421565, 7.362193044931344, 25.926071840457894, 68.15612840786113, 13.890316193247788, 25.618016988283753, 55.119750298137006, 21.969782179169776, 56.72915601516142, 6.070073884234461, 5.802517699007752, 57.964168040748895, 6.423716278806111, 6.611576571125117, 45.537761157444336, 84.41219688722322, 88.21165847897879, 17.0478475027739, 33.08764901938564, 23.526549220202533, 37.1136974350728, 103.15375603689453, 66.67472409976139, 11.381828080134113, 9.880621868623251, 87.9683621858769, 92.89323737812282, 5.951178267025984, 24.583401842329945, 6.090858643110765, 6.774426389450093, 11.953918037647135, 61.25197587635985, 5.7220412298733, 17.452320169191175, 8.222673527593546, 70.7679689192959, 10.492735351041336, 46.133407697414974, 41.821650158195546, 62.55444396842776, 9.916920574980555, 65.82129577521033, 23.240265634006796, 58.46413546812418, 34.739457953646316, 40.42781819807021, 12.872689716025251, 27.261601034687697, 61.6719823124311, 6.815101992586415, 27.85772610522627, 32.328887941817854, 64.04765571461331, 15.631839106733363, 12.074441252397524, 52.85753894944672, 20.819835544287713, 21.26828759597224, 51.90631329440213, 21.338063883123542, 47.62477696602311, 10.511342414828114, 42.33186620129064, 51.978382792181876, 5.284949529458445, 57.84504703658905, 25.54356622734572, 94.66153990751822, 61.553276266373544, 65.8228307467281, 6.6955333081548325, 15.158933925487734, 47.62420978215032, 18.28347780898332, 5.566750325264868, 9.984773889054315, 85.92194185778033, 84.97958296388836, 9.745307057797309, 11.23126746105645, 15.529151632226323, 12.314376470332663, 32.53164365996326, 28.61708598954713, 37.720720496205, 15.748862069432306, 101.47883814608733, 87.116926572175, 10.121439475238095, 56.49535753681592, 47.53920573832022, 17.75280649995389, 45.7920522422115, 26.960680246890806, 52.12268357196078, 10.12365406276169, 9.030410008457329, 89.94892899855284, 5.942519653083214, 11.463728435721677, 20.246738875706086, 46.03963678568364, 22.51479851100079, 15.21406105546615, 24.086991365865106, 12.910385006885534, 9.566138733635182, 36.15525558545377, 84.20341485395645, 20.57481458507494, 124.09297262088313, 22.04272688085872, 21.060369788505522, 44.42039412146869, 13.751708152266872, 22.906965486109257, 8.095182331284555, 22.110902608754092, 72.29813969706063, 35.61453407295078, 74.88025886949399, 34.43016127817431, 39.65106275919516, 7.738018336073798, 50.010247740526154, 35.675111832606675, 88.8658225453451, 8.064793671550822, 5.4715324991783465, 31.461715908111845, 63.53923019384785, 8.138999464730533, 8.753797341085404, 43.943472433337575, 33.156489719385974, 66.66918863346928, 6.296043954026391, 54.23523321762174, 5.906975567850601, 6.5689598725211, 7.844273634835743, 36.099183652943196, 14.83847157503215, 101.22266942363176, 79.46112238410302, 9.034512534189929, 10.476171434625611, 10.928994053084025, 9.456278853477869, 5.2097444240707915, 38.73114540798526, 108.9250499376029, 122.24095933111813, 32.81071201091072, 28.605050104587175, 18.749180178198223, 51.225957239713225, 48.60452060352047, 7.274981901458463, 35.240155626242114, 24.846579485671683, 51.97680366651262, 18.374305984801154, 35.31854240353566, 82.89029391387197, 30.47844154371745, 101.17243304419554, 13.841841485067974, 74.90750053405601, 23.048216237322432, 34.95220453351628, 121.70130710744286, 53.430447032911665, 110.72771035947297, 86.1201649781171, 7.9772008000542485, 36.197091739120054, 16.642977523088565, 7.089910500314451, 8.782482262992275, 8.617975367059811, 24.999165744683584, 13.908579035496553, 44.18420349354849, 17.27506019887339, 5.729166875730632, 5.428745541378009, 158.29887645176052, 66.7901030316498, 87.25154173615539, 28.557532212526777, 41.73223044666357, 76.9838784335739, 14.058613344879525, 6.649737957415025, 13.51803307854916, 15.826032819756584, 70.69607931858043, 28.342678346601993, 5.045022197591963, 7.346636236771105, 63.48201784745152, 5.629179933270278, 41.31316012032518, 23.234196638996924, 15.97006985382175, 9.106316574546673, 41.67946712136392, 32.66054239085215, 10.661924778918813, 90.25402881713715, 65.20481320560881, 12.170518204796451, 62.65750094179485, 7.619822387011497, 10.311674938950063, 73.80576735906257, 34.82941380491924, 34.52688898318135, 8.903319303647656, 17.929159587571863, 24.07779146053916, 94.34660419406333, 53.39655797999255, 28.519484707384542, 50.402654325330666, 6.164174995646297, 6.355808541666101, 19.276781282442204, 55.62641499771705, 72.47981600383895, 77.37527461209724, 67.52625506596398, 22.045428003142657, 57.86797326342052, 21.633737388297646, 20.16104283209393, 91.57011661615589, 34.39671660176333, 56.07871315505778, 14.175245576200048, 67.17640188446047, 12.426171260556508, 87.92842431569042, 27.388247324282087, 53.024808824405774, 13.585834529619994, 32.57401240924701, 16.895485148938484, 54.88891675077156, 6.041367865140553, 67.33847272138011, 29.24852139771418, 23.511536059957088, 71.45721224638967, 34.41199204504099, 129.71069712281744, 79.98628545685966, 60.34902835075608, 6.366353738015418, 18.554518345312953, 7.880693874701712, 25.856517997234313, 103.62577104877252, 19.978251448071276, 29.15968240314217, 22.39895036271776, 64.15845589734329, 30.694322999915222, 11.329943075939216, 60.63807983611669, 6.862153459062165, 10.147154724322965, 5.17424637028456, 74.6942352655114, 20.213274038032047, 131.08362988203905, 8.484022363814056, 24.49431258574798, 73.04996425040527, 33.56822181814592, 9.399228614276295, 32.10692788113987, 107.85486846580287, 144.2999926774794, 87.69176282802837, 40.93681234596413, 20.57365696967823, 87.17032205878732, 47.98390344249924, 9.652022763018396, 21.776392598108863, 61.32647246945486, 31.35285353211909, 20.538942362063864, 54.47442958747738, 12.690163271374324, 70.41127951462546, 38.84134583941571, 24.70425528731463, 11.28297533456598, 44.944422818782904, 40.28242498032335, 39.05898335463048, 72.63754297672949, 24.52705637878888, 36.8555267799381, 55.806531387613944, 82.79370898829733, 19.02715806875507, 95.39299108361753, 31.23077964379368, 18.57960076883716, 77.23988262417056, 6.766172349591626, 29.901439640873846, 6.5053186821595546, 26.87221292621929, 62.29814321391958, 15.340247044203009, 16.501795395339013, 6.513870880801533, 119.38200587719962, 90.68585441609905, 41.09977674278778, 19.350294770735637, 45.91290357498644, 71.8690955154568, 52.20075174384098, 18.57410251532528, 8.419795582072409, 8.813484411058555, 44.6382585697194, 7.383906157017323, 12.513002705626162, 86.62764854182764, 18.840159404187677, 15.135883069937279, 9.315477975028001, 15.845284130252344, 29.014596790681438, 30.788004213142656, 51.523191495633924, 51.262298584633584, 14.56070317374828, 19.92910223370804, 56.82417017445063, 48.16237399243053, 8.892012753205481, 63.54488842912544, 148.3382950393473, 18.89228052769637, 12.798768504068311, 22.107266781528097, 25.423059783591853, 7.998206943568711, 15.206368799347585, 86.77755796238807, 76.67639852677816, 22.803782770731058, 16.594537223544922, 10.69843765625564, 11.933724292557752, 30.595247457494438, 5.97981813858851, 58.702515063211784, 6.8989503332864786, 25.070075095139398, 5.499593659450855, 69.63970765103852, 75.7855887925771, 56.666026810298234, 6.816357632994158, 99.7214694100598, 29.365633912445954, 73.71656431299175, 16.235044181336345, 35.231412836721596, 18.503067286837997, 21.555652709935956, 9.021990152005507, 72.09583372795538, 7.347147719686721, 5.1810925401591, 7.026579200210538, 20.097118970852037, 12.930333605424469, 19.435781597384686, 110.34238665679061, 24.723061461902734, 6.468366386938197, 9.604111155949527, 18.171828759797965, 13.717546736186067, 72.92477316736353, 41.83690796269115, 73.68611356708995, 31.215239235896178, 5.038773338811562, 20.306749595976623, 66.34880964940467, 8.963593037231595, 27.140331686936207, 103.82604785896626, 84.56178620125968, 37.30895337672648, 5.57709978096211, 33.12834181302623, 75.73539307633288, 49.924420755677644, 66.9455715601346, 26.73134925684017, 28.343897840760796, 31.95168401436315, 6.8053932881213095, 38.34523042302636, 19.7869162487587, 13.65519311379982, 8.434893107562882, 24.635828710337073, 61.06928756597063, 22.0283608065406, 8.935207113950781, 30.475750371195517, 28.029397530380116, 42.75193944456924, 47.45286158171224, 37.367955185863316, 76.20891632568032, 34.09368216243235, 97.71898333880173, 23.07887975013582, 137.26303637099846, 64.86464793046719, 32.964895308843616, 16.832908586953952, 22.706832524055013, 8.989557914782782, 15.379117458190366, 41.56587832800988, 61.99485225581934, 9.07505276686479, 42.85479092466187, 5.106194665395157, 20.812097348029923, 29.87733423216771, 11.700843790482597, 74.15282968224088, 65.10507589587053, 51.15150903109359, 12.279815910771145, 12.803810416297308, 51.54752448496699, 18.81400387305931, 16.910455867938236, 54.56806977677516, 41.337296586938635, 19.538059953242506, 33.13771819552219, 64.3863684679942, 23.172012782838234, 172.3865231337325, 16.436404011382024, 17.45278737200597, 21.157226819337435, 6.085058973240637, 32.113003680789696, 16.613277673731556, 113.9788729013502, 42.33012440140852, 7.062334427735109, 24.74159027884643, 24.73495304686903, 72.69418691995091, 29.115192036071658, 7.237234444678787, 12.791112108450083, 70.73737746593144, 26.857709483783996, 20.134703732376064, 22.377651432276267, 17.571854765894088, 11.980988838520673, 7.348136690149218, 113.0014291080556, 5.658381877059954, 52.585465462813985, 73.92161456500354, 11.253123756132592, 58.74248373958979, 22.005875802193774, 33.84652880835024, 40.229595082212576, 11.231876872161463, 24.072216133173548, 21.84795971835683, 21.003067796082192, 14.273570516083351, 23.811807580166665, 54.17826996164259, 69.437031777474, 18.02914432734697, 9.850367806057186, 56.46542313598507, 21.542850130236793, 67.79849553712637, 12.9815904864471, 16.070136496487, 53.89005847721077, 12.251020812432202, 64.47326360348737, 32.97280971028159, 6.9452621782342705, 71.29613370542616, 6.772142134782368, 18.03097092878274, 59.29044648681851, 20.525161601071908, 45.334138681850014, 21.478191300333418, 46.302991586675326, 9.689911507619826, 39.18935656029367, 19.89917134343976, 6.590863848829949, 76.09059903058588, 9.517786523833257, 12.475139802655907, 71.14089608107894, 11.00372655077289, 26.99268895133414, 14.591545852802012, 13.015127064362153, 13.907532519963311, 69.97855497436477, 77.43077146931742, 46.52118993127726, 21.44316314429677, 33.00757417619463, 46.597338353182046, 109.7943638524109, 12.712570136895609, 77.17820584131964, 99.92750855217258, 63.77248271552982, 43.378737666755114, 6.4189139133383915, 75.6876876000109, 65.44973969880793, 179.31862962547498, 61.196691968370715, 21.888025256873863, 16.53788511415705, 135.62938270193342, 18.80764235503967, 10.35260559571607, 19.8784241101474, 5.893915896538871, 67.20955378032042, 21.86558367587002, 143.265329612932, 35.48335967229167, 28.330465654128226, 47.57997535803151, 14.610138296114377, 42.87158857676377, 6.4251178318275155, 5.0558679264978865, 23.100672164605502, 81.52522722732071, 58.42168378702465, 28.150393802689802, 9.828276704537798, 15.390722641527557, 44.69340765078988, 9.94240535974607, 6.112139928193502, 12.723413403817517, 83.22131426403284, 7.087351612469939, 61.51565747007521, 11.467119822441411, 14.334750975760215, 114.95159245307157, 71.76504181715916, 149.63141012515092, 46.191621707063355, 66.21223950339042, 27.846355695399364, 11.91464487281057, 11.791731332854852, 10.169227094240787, 44.01090661105021, 5.174549895575592, 14.257008092065137, 63.48402754348782, 86.64153034497839, 17.788696523468673, 61.88677931633268, 9.64360745726358, 96.92705926186669, 76.55188844734873, 20.935091554819216, 6.33402714790851, 18.527002308714902, 23.336402949512557, 18.57006576453462, 87.13345450925836, 87.60388163819056, 6.5551018546077895, 115.38022492896395, 8.873885732469182, 100.1303071469478, 10.25100278686115, 124.19620301176504, 85.27636741596507, 55.54863415520926, 53.22548751887193, 185.46852837488734, 10.329389132797974, 14.743873415219092, 18.67774434350438, 13.064905643753445, 56.980618859526444, 73.9695990231683, 5.3014583186681685, 27.407526200440003, 12.843963976522673, 28.11539388346613, 52.58676912305765, 7.35087803409656, 20.632741123195803, 49.502018968450976, 23.66177781945285, 13.212271936189882, 62.802327844696535, 6.94788982868078, 85.75294563326102, 23.52422660510191, 14.990083263036952, 14.22967070024298, 54.07246615487361, 10.289204936286842, 8.501583921178604, 49.82453976921273, 137.50943034877696, 13.470564830680388, 29.124325872830088, 120.03011857926327, 57.1289939151666, 7.717718070781562, 59.266030948665424, 32.740855171878565, 10.194778039458471, 15.511891345780384, 12.160402069683549, 35.77051187649592, 57.92402489050148, 45.7784579247841, 81.28437101782104, 28.87373894614629, 31.54147300702182, 23.143831934801312, 14.284933110513892, 9.73304450655081, 18.969026061362673, 8.335346079056473, 19.77613323478384, 64.19555683753296, 32.023162366658426, 45.319622129480834, 116.41462154838847, 62.0406368286445, 10.87503957159463, 8.054627815225627, 102.55586863618016, 140.73837471400068, 78.24751212730413, 19.79208240202272, 81.13593686937011, 83.20197861484964, 19.351203153284608, 50.0040731039956, 61.32856859564133, 94.76235763920795, 39.9465131634943, 15.500845845356277, 25.023878671152207, 37.37340219735003, 7.684859109935701, 83.0827801894597, 10.075283934384814, 12.8264542990747, 134.554949737775, 67.11640966689428, 46.046968981803644, 39.562904882831084, 15.389024378353273, 21.943928870193815, 8.774276236925207, 15.68632593377353, 73.23216263948906, 47.7990829826839, 5.456797013538982, 35.44975628312369, 27.012875995273696, 51.525037009088145, 14.084415191747661, 11.693370188932523, 6.476215555342581, 69.35096792182341, 44.51561480544649, 71.9977607056806, 6.307921757631111, 31.937140382143713, 79.51310670426744, 8.91266109637407, 10.987897560307324, 5.596177560306818, 12.460453695660535, 9.417830349796752, 24.248586907860428, 49.264908798193304, 12.039950657754577, 62.925593794274306, 117.48930324478158, 106.06171223067248, 137.34182750106578, 79.16422823493983, 15.721512390446895, 23.789560375581065, 66.60562578658686, 13.051619196227268, 33.75822013896163, 27.623349671817483, 9.055273907251882, 9.052388504255283, 8.684325214299745, 50.69481904346898, 65.77416277002766, 31.906830005731027, 27.983536792923942, 18.740950540638618, 18.139835178322617, 34.11678361794441, 141.0054461329122, 27.28288976852762, 12.694300473467525, 35.82990668301183, 61.1069096664057, 66.32789675758711, 74.27672086206113, 28.95170328005159, 40.620475674535925, 59.80298140472834, 26.1463853070311, 39.49659364372116, 35.64708837020969, 5.484373613491649, 5.10337724210713, 7.443595099114877, 13.161695706179566, 63.94384887676917, 21.15459463543615, 81.43951649730272, 76.82680929191741, 78.66275583383742, 131.29681673368208, 117.1819631714387, 11.852737371987144, 44.626222385948765, 96.22485888714046, 21.77674464039183, 37.259127284988246, 44.89238706695004, 46.55264821603301, 33.71797829477689, 6.658275254228761, 55.04958999006878, 66.07905889250834, 47.619477066610386, 75.39292049447137, 19.375790976504206, 31.845005028227668, 15.799713178294454, 8.657043386635848, 6.422909690795197, 35.8563466488222, 100.82554828758686, 63.50445597283449, 5.282668151967014, 20.833017980257992, 9.482875370324544, 10.607577540981083, 18.5526417875513, 7.98231829284693, 74.72922753030927, 23.032048671755728, 5.4617417925361265, 84.79906103907476, 12.696433984669753, 95.77141800031464, 82.78330059093085, 6.166808884809084, 10.271738470096968, 76.81330034340691, 68.07452927150261, 62.81634827655394, 9.559885628347784, 61.34310355540011, 9.389930778721782, 97.85739171416678, 12.488976082994443, 80.50904727119331, 13.653803521546207, 96.12531954101011, 56.3086956073473, 24.11755555375071, 65.99171840447879, 37.2125721561569, 22.117826345968645, 6.369223989903186, 26.526691370432673, 52.17404239176332, 33.28280451338145, 28.669819809098605, 79.92655703670432, 44.40929740187398, 35.99977098339641, 12.891148526951227, 17.651200768861454, 26.830123447201384, 56.26338576844577, 184.9222854407746, 47.46083660718599, 14.078438396119333, 44.219221976452914, 12.039087437150108, 71.99349969328307, 23.04394498998207, 14.681487881278448, 25.32546682729312, 75.9431492166148, 12.142646029945125, 31.06414549482258, 18.260956196531154, 8.613037030038251, 22.599719932650633, 10.347301731627894, 29.86038388008469, 18.904219371411656, 58.492352530207434, 28.29837980044698, 69.98792182752908, 33.16950639954035, 20.668199349707844, 12.854366523908618, 37.17089677315803, 64.60839327225857, 34.13954240144716, 38.121179940411196, 54.9981010110469, 14.692521719978899, 64.95789914510331, 56.8601409477835, 18.67184954347855, 15.95557578162031, 31.115887142654465, 36.96455135235848, 70.0945449824218, 86.38802098065099, 78.60368872737286, 68.11011795447791, 18.66053683465937, 84.42538398590797, 23.450956743255567, 26.60405282540381, 16.519727854935333, ...])
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)