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 = 46381
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);
([2616910.128125488, 2617165.4407087285, 2619248.4375, 2628051.521292533, 2635825.0, 2636256.5577413663, 2637207.8125, 2866021.728533781, 2873863.3330166196, 2880666.612610754, 2880675.1450240305, 2909617.1470247516, 2937710.9375, 2965873.4375, 3034167.1875, 3093363.6668072143, 3103099.1512301504, 3120559.618558803, 3173223.747294147, 3176227.4455880383, 3180058.203098862, 3239737.204512008, 3254890.9519710606, 3272709.233033961, 3283033.5620204606, 3283040.3269229545, 3283852.634178194, 3307010.683412797, 3307291.421004599, 3323456.6823062287, 3326231.25, 3337954.051170369, 3339356.25, 3339940.625, 3387848.5245977174, 3409642.1875, 3409654.1289562895, 3421877.601480128, 3425660.9375, 3425671.875, 3446190.365972727, 3502619.712434371, 3502830.6650709636, 3520466.723875049, 3528219.2159969416, 3541368.2608061954, 3541390.4491522773, 3542935.658275728, 3552934.375, 3555153.125, 3555383.91933289, 3560977.5386021733, 3566822.955754897, 3567314.0625, 3596626.71839932, 3597538.3154056696, 3616505.924612023, 3636631.9325005566, 3636656.2449111906, 3656576.5625, 3662576.5625, 3671946.9030535365, 3671971.2435381124, 3672543.75, 3674193.7015171153, 3676625.526894188, 3676656.885166768, 3677134.251792078, 3689967.1875, 3699412.5, 3700434.375, 3701131.25, 3701527.659217692, 3705068.5415646695, 3721260.042510581, 3721271.5486990195, 3799487.5, 3800283.9368867166, 3800826.8408012977, 3814795.3125, 3814920.5195360477, 3815176.5625, 3816614.2656013006, 3816969.775162261, 3833561.0974926497, 3835395.3125, 3846661.924304829, 3849845.3125, 3877451.1339812307, 3896874.7203830522, 3901031.8094091504, 3901804.356152447, 3903184.21856612, 3904828.105301212, 3907871.9750559903, 3908112.0549347266, 3910162.071941831, 3910275.479136598, 3910402.9324110947, 3934962.5708941473, 3943479.6875, 3947951.8230813863, 3948055.754760935, 3948801.5625, 3951944.35074203, 3955695.1116131195, 3996019.3269747198, 4017884.2751220902, 4026078.8023702228, 4029773.500667028, 4030793.327814439, 4031434.8323488412, 4036492.429850498, 4049134.375, 4055250.367274776, 4074944.0288277585, 4079459.6056127427, 4083218.6683311258, 4084059.375, 4084066.778194478, 4093943.536109114, 4096526.937516361, 4097373.8631767803, 4099901.5625, 4101144.7718440495, 4101240.0024887007, 4104052.4784644837, 4118162.5, 4154182.8125, 4155395.3125, 4159699.4617695254, 4201010.9375, 4206417.011129679, 4206428.583668795, 4206613.699279911, 4206701.889354672, 4206925.8585214475, 4207035.9375, 4207067.773491226, 4207184.375, 4207338.730061414, 4207523.4375, 4208175.031184966, 4208187.656448024, 4208278.180976066, 4208554.3930065185, 4208861.035101864, 4209024.491568424, 4210833.577010125, 4212187.537501263, 4212221.875, 4237325.986344811, 4237429.550273406, 4251411.960516705, 4252641.767797381, 4303453.283789047, 4330474.729855101, 4334859.8108347915, 4335054.12041468, 4352609.018167763, 4356468.75, 4399383.13162565, 4402553.125, 4403567.073087822, 4406547.659178933, 4411372.843208045, 4418838.489369792, 4420584.375, 4441482.8125, 4453057.255360344, 4463631.25, 4465254.376648451, 4537891.698911569, 4546248.291555384, 4547257.8125, 4548039.897663509, 4567927.05572429, 4573487.647423084, 4761777.014139086, 4768581.08594264, 4771458.52645148, 4776566.835224201, 4778739.250724038, 4782718.75, 4785247.818543067, 4786152.216108803, 4809172.968262047, 4838616.736114484, 4865197.4803684205, 4888220.609906609, 4935524.184829173, 4937659.375, 4961451.789557535, 4987376.561374465, 5042707.8125, 5046650.886893208, 5055155.402567547, 5062884.07725912, 5063251.752752214, 5066265.625, 5066298.4375, 5070202.348594007, 5070766.364605218, 5071341.7340032095, 5153212.802010804, 5197173.210070295, 5218531.602357681, 5220264.309847529, 5230286.6161838835, 5264252.045187008, 5297560.52933049, 5313835.912128503, 5345249.6607326465, 5346694.701766902, 5347564.720694101, 5355251.115515129, 5370307.45916087, 5378645.849380501, 5395682.619706394, 5440773.4375, 5478112.319809959, 5486796.1478139935, 5492535.9375, 5498381.25, 5499407.422037284, 5499907.290704544, 5500526.516107895, 5509996.875, 5510607.473820749, 5510707.8125, 5512711.582073579, 5514493.75, 5517403.125, 5518748.4375, 5518748.8262944855, 5518818.5680527715, 5518902.94538888, 5519128.771177637, 5520272.30648622, 5523249.943009089, 5523253.125, 5523784.354934907, 5544024.747993346, 5544887.382015132, 5547282.392796374, 5547568.76164587, 5553369.951277565, 5553440.625, 5553533.02902473, 5553543.118670336, 5553606.25, 5554127.988061837, 5554237.450691744, 5554318.005781613, 5554497.079458677, 5554587.5, 5554679.6875, 5554839.015753994, 5555234.375, 5555251.5625, 5555593.140711991, 5555790.039806388, 5555878.97287575, 5555888.166430163, 5555911.28688181, 5556259.375, 5556270.195437913, 5556367.1875, 5556611.991054763, 5556870.589053156, 5557101.5625, 5557150.837493118, 5557154.105777069, 5557242.1875, 5557321.875, 5557377.206744861, 5557491.872852017, 5557686.64224602, 5557806.25, 5557884.375, 5557891.906202761, 5557946.875, 5558092.141694903, 5558296.875, 5558459.667059279, 5558484.375, 5558604.305887245, 5558649.6904069455, 5558797.563351042, 5558912.504686514, 5559067.1875, 5559190.350988276, 5559294.2897857865, 5559362.293666746, 5559368.75, 5559392.153222651, 5559394.407237601, 5559439.999707463, 5559446.875, 5559521.740035693, 5559917.17071831, 5559954.881678919, 5559987.5, 5560052.659811984, 5560215.625, 5560243.829283668, 5560265.625, 5560716.250040368, 5560946.301750564, 5561186.707467666, 5561196.875, 5561251.033112885, 5561321.426065629, 5561324.385916891, 5561334.375, 5561420.3125, 5561625.430907532, 5561699.15323786, 5561789.0625, 5561821.623652724, 5562058.405637475, 5562090.506454315, 5562429.329201981, 5562523.4375, 5562687.830883034, 5562735.9375, 5562750.0, 5562862.102741971, 5562957.303471571, 5562982.564130804, 5563226.849652582, 5563318.160032184, 5563470.3125, 5563929.356653825, 5564457.323762922, 5564541.544562388, 5564653.106892095, 5564955.752217154, 5565224.769526645, 5565458.29818876, 5565817.1875, 5566494.425733781, 5566787.839001906, 5567258.212129861, 5567529.362142742, 5568897.22214749, 5570020.3125, 5570129.555340062, 5570605.896254839, 5570799.856606922, 5570810.9375, 5571580.587359796, 5571627.4095370555, 5571643.75, 5572140.294195328, 5572377.942241305, 5572635.9375, 5572793.499847787, 5572905.906822014, 5572982.927018177, 5573171.119583035, 5573721.23740176, 5574531.861000448, 5575088.24452109, 5576132.505981499, 5576364.053613144, 5576396.298733112, 5577018.296917102, 5577734.788978368, 5577873.9717373345, 5578210.853539814, 5578600.0, 5579891.285483051, 5582097.88130175, 5582576.5625, 5582777.695936882, 5582884.427143584, 5583295.735947629, 5588313.588162545, 5588881.25, 5590024.102956767, 5594343.417994731, 5600126.541134895, 5600149.598586257, 5614487.184084641, 5623344.241756342, 5624066.365095167, 5624905.927183282, 5625876.5625, 5626362.5, 5637831.838958929, 5648583.48332519, 5666912.5, 5667523.527756905, 5676002.949551163, 5676422.687221307, 5676424.89545025, 5677570.3125, 5678618.75, 5679772.794510219, 5683905.921688032, 5684574.315650698, 5686226.5625, 5686496.860439329, 5687241.790556491, 5687675.0, 5692149.29253359, 5694919.554121914, 5699385.175769175, 5702299.536428458, 5707728.614871587, 5710315.433445183, 5711012.5, 5714133.171784582, 5714442.1875, 5714524.439860413, 5714843.220779131, 5715437.685527401, 5719846.710955483, 5719970.3125, 5721450.0, 5721674.553988841, 5722103.593309888, 5722643.75, 5723146.295678715, 5724295.488446133, 5733439.0625, 5738182.632005815, 5740928.125, 5750885.5306085935, 5768734.375, 5769012.319644523, 5769572.400310104, 5769702.078381691, 5770823.692597376, 5772505.394530764, 5772687.5, 5774469.9040288245, 5775759.375, 5775791.778038896, 5792625.983256674, 5795060.935016451, 5795061.859699952, 5799673.558950759, 5804822.769442065, 5804890.265307948, 5813314.0625, 5814663.743577618, 5814676.5625, 5815236.488874992, 5816883.020313174, 5817917.1875, 5817926.463245726, 5818066.753710782, 5818263.178867891, 5818361.868414008, 5818910.803858885, 5818986.175310654, 5820151.191302058, 5820277.891804688, 5820297.496505159, 5820592.827633571, 5821400.223767379, 5821408.392533836, 5821461.855103491, 5821870.3125, 5822526.5625, 5823649.710849116, 5823831.861507996, 5824014.0625, 5824078.125, 5824145.773299212, 5824235.9375, 5824239.874872343, 5824472.45275182, 5824610.917379045, 5824640.625, 5827044.47818756, 5827201.0703355605, 5827880.267347034, 5827998.097975311, 5828185.818413532, 5828186.120752614, 5829892.1875, 5832299.650384268, 5833898.4375, 5836807.8125, 5836900.0, 5836995.3125, 5837254.260082906, 5839135.251883714, 5839956.25, 5840084.375, 5841439.0625, 5842192.125681396, 5849321.885823372, 5851216.746497901, 5852947.259881253, 5853846.386538744, 5854203.323205166, 5854845.73490136, 5855728.125, 5855745.3125, 5856380.950410627, 5856609.375, 5857073.276877499, 5857821.944855271, 5859438.357128433, 5859624.856723884, 5862954.215819598, 5863301.242923414, 5863615.5213039415, 5864817.900712732, 5865081.1967378, 5865631.25, 5867015.625, 5867021.663726277, 5867415.625, 5867665.966399808, 5874078.747932597, 5875881.787273489, 5875882.609605964, 5876707.8125, 5877049.4655069485, 5879909.14340283, 5880254.6875, 5880454.4654972255, 5880655.305095998, 5880853.125, 5880943.75, 5881195.952684253, 5881278.59042362, 5882100.304505067, 5882139.729381193, 5882800.075842048, 5883019.694291965, 5883179.6875, 5883373.960788552, 5883413.228543646, 5883607.8125, 5884042.363385884, 5884503.890910991, 5884897.1290713865, 5884900.53423386, 5884996.331354184, 5885590.2713377625, 5885872.342737951, 5886214.0625, 5886535.919671834, 5886565.625, 5886674.492628077, 5886685.213926035, 5887185.9375, 5887560.717656142, 5888395.08911714, 5888875.0, 5892778.125, 5893167.967699845, 5893494.580661443, 5893606.994417584, 5894570.3125, 5894822.2493495345, 5895063.629978283, 5895285.076485865, 5895317.861968438, 5895476.713013183, 5896884.375, 5897953.016787362, 5898545.3125, 5898565.142827724, 5898565.534145279, 5898622.320856619, 5899528.65755813, 5899746.875, 5900503.012206068, 5900718.75, 5900952.1645551585, 5901143.75, 5901607.8125, 5901879.911257279, 5901933.601016901, 5902316.465588939, 5902337.5, 5903557.222535357, 5903567.815515594, 5903658.472681342, 5903903.125, 5903933.072643105, 5904227.506396645, 5904879.6875, 5904880.223984144, 5905044.638222791, 5905119.7556809215, 5905257.864575548, 5905377.101636034, 5907131.25, 5907555.965559105, 5907947.203115324, 5908353.373370371, 5909356.634314312, 5909881.672827476, 5910479.6875, 5912673.4375, 5914739.378624743, 5915477.842672749, 5916282.19299771, 5917131.241504944, 5917555.472083761, 5918214.000510726, 5918279.211549152, 5918507.8125, 5918777.975834549, 5919615.276050768, 5919645.990926573, 5919792.689432297, 5920098.102077309, 5920204.255775319, 5920406.25, 5920456.647764956, 5920810.9375, 5920857.8125, 5920880.5986122545, 5920942.581783483, 5920949.200510158, 5920963.4919342045, 5920983.817153078, 5921045.18236881, 5921068.75, 5921448.746980738, 5921480.450800229, 5921580.976828462, 5921581.25, 5921748.4375, 5921850.0, 5921853.073053485, 5921868.135775382, 5921970.3125, 5921974.644520952, 5921988.640597961, 5921991.562735901, 5922015.625, 5922083.961184452, 5922175.0, 5922175.557739035, 5922370.6357417535, 5922386.0025753975, 5922450.0, 5922473.596788953, 5922489.0625, 5922543.6917771045, 5922547.2812213935, 5922587.8436840875, 5922626.058275538, 5922702.684512124, 5922755.091654353, 5922855.492352822, 5922895.140606018, 5922912.381965296, 5922914.0625, 5922930.104106639, 5922994.233939275, 5923005.9636744335, 5923037.444460405, 5923051.212102653, 5923091.942556615, 5923203.198758365, 5923223.709458032, 5923239.619937888, 5923245.3125, 5923504.6875, 5923550.0, 5923598.5782643575, 5923601.808188901, 5923605.446171925, 5923660.476617747, 5923687.068200162, 5923709.695078342, 5923720.3125, 5923726.5625, 5923914.016694986, 5923925.0, 5923938.312443851, 5924011.883058283, 5924075.540713734, 5924076.603246968, 5924149.443459428, 5924185.9375, 5924187.5, 5924192.519654931, 5924215.625, 5924282.250287476, 5924286.434414469, 5924297.367661914, 5924298.4375, 5924423.515649916, 5924432.786150713, 5924476.5625, 5924490.242387994, 5924515.625, 5924518.062658306, 5924540.625, 5924554.028577548, 5924581.776378708, 5924654.447231013, 5924767.362387593, 5924807.868752291, 5924871.30350773, 5924897.921502502, 5924913.8973575635, 5925003.125, 5925033.663076842, 5925106.25, 5925112.5, 5925113.188630194, 5925142.287254783, 5925143.924581626, 5925166.672782503, 5925169.515928848, 5925191.989393885, 5925323.311994259, 5925334.375, 5925340.2350831535, 5925355.303026266, 5925370.048171896, 5925385.692894807, 5925391.343774729, 5925428.50222571, 5925434.098402506, 5925443.617902286, 5925461.657405475, 5925491.027130852, 5925493.75, 5925494.822944505, 5925509.057433515, 5925550.8346423395, 5925564.40381261, 5925566.5524580665, 5925603.125, 5925627.721649959, 5925627.997636195, 5925644.11001765, 5925673.4375, 5925764.316996352, 5925776.5625, 5925864.883856199, 5925898.12314167, 5925899.906132607, 5925906.261337778, 5925917.815681854, 5925960.845894258, 5925976.026625983, 5925976.5625, 5925978.125, 5925979.702297849, 5926007.8125, 5926008.633457795, 5926010.9375, 5926012.5, 5926057.490416053, 5926064.0625, 5926078.125, 5926094.11356325, 5926105.673967695, 5926146.721187135, 5926156.563693815, 5926168.75, 5926173.4345381055, 5926174.9324285155, 5926178.125, 5926244.996867754, 5926246.966838671, 5926257.8125, 5926281.954224902, 5926317.873885182, 5926321.406110043, 5926324.842737435, 5926334.221132643, 5926359.4405774465, 5926396.875, 5926427.795358622, 5926489.134705877, 5926493.75, 5926570.954852693, 5926615.077720669, 5926637.5, 5926668.75, 5926670.411724915, 5926704.309119755, 5926709.690502951, 5926746.875, 5926761.9798182985, 5926767.1875, 5926767.860307814, 5926828.427717931, 5926837.3364135055, 5926861.503615081, 5926862.054924812, 5926866.074423305, 5926889.80588248, 5926906.095891328, 5926917.1875, 5926935.9375, 5926980.2982707545, 5927052.703564159, 5927187.234704949, 5927214.888557679, 5927217.1875, 5927220.3125, 5927236.815437528, 5927241.302084772, 5927314.044084484, 5927325.641174776, 5927330.536758577, 5927350.641856243, 5927381.050526594, 5927455.552746982, 5927462.3810333125, 5927462.568366278, 5927485.9375, 5927504.6875, 5927513.922515198, 5927557.465596321, 5927643.75, 5927687.5, 5927688.217444872, 5927735.213705582, 5927770.281583576, 5927780.326261152, 5927843.8170508435, 5927883.082056239, 5927924.593024989, 5927979.785968397, 5928065.107868914, 5928127.940137242, 5928175.620677941, 5928184.5778454915, 5928203.815364081, 5928224.819938891, 5928240.058108936, 5928242.1875, 5928303.125, 5928322.051507663, 5928333.240644172, 5928368.3846506355, 5928371.875, 5928388.522301002, 5928390.625, 5928450.0, 5928537.5, 5928542.276627987, 5928551.5625, 5928565.984369502, 5928626.087684821, 5928706.973104348, 5928789.0625, 5928943.75, 5929066.718076951, 5929087.5, 5929178.125, 5929206.25, 5929468.876243604, 5929509.68457472, 5929571.489498275, 5929597.458637986, 5929671.000232882, 5929697.436406046, 5929732.8125, 5929734.984165266, 5929817.1875, 5929924.821017075, 5930010.982720642, 5930332.8125, 5930354.259048515, 5930557.8125, 5930592.1875, 5930622.117091335, 5930989.430282033, 5931029.6875, 5931037.759209486, 5931107.5526817255, 5931478.125, 5931679.6875, 5931701.810146973, 5931703.183999052, 5931823.4375, 5931901.810928272, 5932015.768259665, 5932045.164882471, 5932059.035153304, 5932202.94949163, 5932228.125, 5932245.796683535, 5932282.8125, 5932410.7889906615, 5932560.678425442, 5932929.6875, 5933051.5625, 5933305.751831715, 5933551.0872829715, 5933575.773176089, 5933620.3811662905, 5933943.098896948, 5933962.5, 5933964.0625, 5934118.052293752, 5934161.4743116805, 5934372.95191653, 5934487.358828605, 5934718.325810227, 5934769.540206643, 5934951.5625, 5935275.522196732, 5935284.118119314, 5940217.31827511, 5941779.651634794, 5942663.947542714, 5942742.82518343, 5943664.214064846, 5944156.175199898, 5946330.252898725, 5950510.499038639, 5951016.243050965, 5952073.4375, 5952080.89277797, 5952594.712439608, 5952646.0197103005, 5953716.128966017, 5957394.257061958, 5958886.1167895, 5958999.869919256, 5960491.320372709, 5963014.0625, 5964926.045211523, 5966862.476432014, 5969505.193745459, 5971713.224584664, 5972345.3125, 5972570.355101292, 5972929.6875, 5973276.5625, 5973327.596603642, 5973402.089168839, 5973901.464164316, 5974240.813951058, 5974272.622988844, 5974545.184750167, 5975123.167025958, 5976379.146787396, 5976997.195824635, 5977529.2500199005, 5978035.9375, 5978644.692529509, 5978918.430518566, 5979885.479233179, 5980317.58680223, 5980867.1875, 5981599.68739537, 5982216.417694152, 5982642.1875, 5983560.320754225, 5984904.6875, 5991788.287762691, 5991799.838343853, 5993204.5549012795, 5993474.132160784, 5993704.314399777, 5993756.432725918, 5994039.163660661, 5994854.6875, 5994869.371657177, 5996097.70729334, 5996529.677915047, 5996619.594847016, 5996732.8125, 5996970.3125, 5996982.8125, 5997262.5, 5997297.014291694, 5997406.25, 5997482.71742748, 5997487.120044267, 6010202.42647878, 6015637.991685458, 6015654.841069895, 6015839.223608521, 6017243.857110991, 6017504.6875, 6019176.7951200325, 6019388.812452289, 6019865.682154855, 6020034.375, 6020102.921194886, 6020977.970340057, 6021585.875964514, 6022353.125, 6023153.125, 6023512.5, 6023771.107856442, 6023811.321149229, 6023982.42467778, ...], [7.334575084376824, 5.524202658046262, 32.23481598740344, 22.467668881832147, 28.945042682048637, 49.95450808421111, 75.07869966597252, 20.211028170251783, 10.151395162939334, 73.26278878239225, 15.524668702745785, 71.41130271427528, 32.5870115013686, 56.22714588864862, 52.309342834212266, 22.419587300833417, 17.190335035896652, 23.526935118055324, 33.940371901201715, 7.957246713174921, 22.41817594821752, 69.54862414066912, 11.68037421316055, 14.426670139940459, 88.50334504065609, 6.44135862877645, 21.585148836673515, 37.06685139545222, 12.650985802372704, 24.45857185767294, 65.51263122992128, 12.967560529001076, 38.4153242922891, 34.09320943583356, 11.266631018323285, 60.24970086610754, 20.928320281135957, 54.904328087133806, 76.94380817021684, 129.92853458071124, 7.0549862362622076, 20.549776448271622, 7.404545937904754, 7.443739373963047, 7.249583739262482, 162.33888947629288, 20.862556892571952, 32.926866083452715, 46.131329928418026, 85.86711153428416, 24.45127564222075, 10.609434434793851, 8.954774463170075, 55.57775737189074, 15.570995286231543, 19.337846742353946, 5.036102847764618, 29.2030159558659, 11.119761972225715, 76.34420612125234, 82.6623016086213, 15.049525443539045, 20.274819139269873, 65.1169259634408, 27.600621138016002, 12.06493150683496, 12.290498864354626, 80.94215992350524, 51.010545812810264, 82.50045563066747, 79.59422569098726, 37.90043954744591, 14.392421592869681, 14.20241876891817, 85.67378488125546, 14.185468232377609, 46.87763950416424, 158.23547105212424, 122.65559391334446, 58.75781458178256, 15.794072854916609, 45.624524994997834, 27.550839281536504, 8.021492727301432, 21.435250557042515, 35.95266278761676, 6.977918107765779, 69.29982959813208, 20.1791805307273, 69.82289534873938, 12.131315207198062, 168.075122964377, 7.080928278451123, 5.2904791634661406, 13.87087576320653, 22.059184749026155, 103.47411862145017, 5.641112702136227, 7.53503576817377, 5.205231855535851, 44.1428653895965, 5.962424385466341, 31.07961089213807, 76.21097306181458, 9.89686861203349, 51.22471518833731, 60.55549263972616, 6.471547648560806, 26.10123100078459, 11.22789752881422, 83.89271171401948, 17.027607765274162, 15.953371054427535, 60.67539614792926, 9.662542375536797, 25.88749836192281, 13.230045975553434, 27.00744567069238, 60.345247063375396, 10.543016207914395, 14.184454864807712, 53.90489389247992, 8.525285271308064, 62.175893768364645, 25.839810839650866, 5.5036120759064575, 43.163669210768106, 67.4682785606748, 41.49343740408687, 70.73817310875364, 18.30769189205337, 82.20900332157069, 109.60633969775556, 5.107591863677703, 27.88231881945746, 24.885677588724512, 15.538573784010133, 30.39316912976178, 20.000564062492963, 57.71432369813259, 23.345042439581064, 131.02601413121178, 131.04700581257936, 15.57334282955489, 50.72526473046016, 23.82133556753957, 75.73210531278801, 172.6975171613656, 5.2670583083065745, 11.186834024026185, 29.897862410206113, 55.46502139341496, 5.127580194743697, 16.593242088059384, 47.47428591153905, 11.385319053201249, 21.212443272025013, 15.225517367391248, 13.145995020850952, 6.051761561602178, 62.18379597168513, 22.141688926520747, 38.706799029193874, 26.45110156110571, 19.103412451272913, 114.95285631356388, 28.87296823357253, 74.70619044485565, 45.11703817971869, 8.900910943229704, 43.705233932007125, 13.875756389252974, 35.31221775591891, 25.94054473655666, 97.05570727485198, 42.7292055366122, 71.10664965290263, 16.678751181388645, 44.87152278713896, 73.56352344138504, 50.9821992536547, 23.105194141670506, 7.171824941127257, 52.818057107690684, 13.385908623224545, 9.952821769392019, 21.805556699115222, 60.557483559101826, 29.78591581109162, 84.97279835554062, 12.538487882366677, 80.31626958625631, 34.80450132018831, 28.502937107713894, 38.62912418746073, 6.020551241943363, 18.609742480540643, 33.02250117837837, 6.291538372524489, 32.4569860573159, 28.683729922476555, 121.02050635742684, 5.656314569731024, 92.64750908849413, 34.79004477186132, 14.140155950724465, 6.835951724901595, 29.146229283690353, 20.20814064904271, 222.37565843692173, 35.33098043259804, 28.03239648818593, 6.053514949641867, 59.36423675331238, 97.41179632816498, 70.31047537213867, 32.20840917653748, 63.79800328525107, 71.950980570367, 31.69548419182983, 6.069559360158847, 8.78392034735888, 31.437280718398085, 43.26416969452613, 65.91426752726946, 108.44322495928468, 27.639033435535627, 31.634144747990614, 10.636609892291101, 39.836495451167536, 7.854284266869273, 106.51614351297579, 68.91957928129933, 53.800969341027056, 7.227547231361428, 5.240081339382056, 41.53102368638916, 134.1856718122218, 6.556926778477844, 14.728646782134424, 65.31753832877088, 74.51825290624991, 82.04353221215786, 61.15517211144129, 6.215589199379795, 14.986084597764025, 10.606430516447437, 89.7773749421185, 14.672335981397666, 26.23073619038287, 44.945759572831236, 7.085914100540584, 9.290055386239606, 7.3545565510162945, 6.293380528694206, 69.60030175981333, 51.874317158758615, 62.70934980352831, 55.4587666106859, 118.19642796745686, 20.46803103556345, 13.098623503220484, 19.589641910921458, 71.87728764119146, 28.512259110824345, 57.97001897608522, 58.58445654072831, 30.478683959497403, 111.67591570786975, 16.111934271110165, 64.95109176878984, 31.819771044028712, 10.325801192378812, 48.6669986481019, 82.0043004540031, 61.88488704160603, 33.79535278746254, 39.70436518046868, 62.23988051390502, 40.27931348662423, 5.689086362965425, 36.15460560815283, 36.096871972186975, 141.31456589007902, 114.85320037479708, 46.08634389751681, 31.772790273117085, 23.628972257117752, 30.375656061212318, 14.959402355292644, 48.639517338613594, 10.724817262472365, 23.34757902447671, 7.53027715713537, 51.385043706105, 6.756682601690777, 12.338104896847845, 10.273296633001376, 31.854987363575844, 16.548086560557017, 28.196988159498417, 7.675011892419854, 85.54959105238731, 19.160342475017806, 43.81472797758302, 15.252565134328544, 48.21465163813473, 12.268845621598757, 30.895335692166377, 7.907673565067307, 137.9646550648405, 5.77582170465139, 11.283038781538284, 20.425853039402018, 43.164146493682274, 32.3864279002305, 11.875395729396672, 18.614372027220412, 118.61289061342885, 10.756319273481495, 50.92154961277039, 26.38280388997994, 31.9561504621628, 47.634034842229454, 16.37290315276077, 48.116396878474255, 56.51905712991661, 13.6165243835903, 35.34034517695658, 24.43344531135561, 9.58661238505831, 32.427816456198556, 85.78450395043161, 88.9798875003877, 43.46850228072702, 66.74663276425304, 29.616870836572442, 21.515246079471908, 5.521998525581361, 28.912752339616475, 53.34896507316823, 9.976574074474257, 87.00186730794965, 77.94391635854998, 10.936885978697134, 11.71743911895318, 114.09080901353988, 23.18451792551755, 72.28089414839886, 10.910734877268686, 42.64024976086193, 10.229017233222203, 12.772293353269866, 38.733351109479074, 23.36507134286564, 67.02600028699968, 96.8456267349582, 9.128478357480956, 7.483659345114373, 20.943283602832828, 21.10024864013, 20.222165019100526, 12.239018420063253, 18.816037967504656, 82.04337347629753, 28.350292686856505, 63.94561159864185, 27.263705894981772, 16.795204382310366, 17.461659128056624, 24.463312029106568, 55.03717106181479, 12.345153324050491, 37.53464703669643, 32.225692258181844, 53.41588513226094, 5.099483888018506, 23.46792212985457, 99.7635351347323, 41.406995930296915, 94.15143323933876, 76.92348044998948, 16.504193199855294, 37.113892647013415, 13.860165366342732, 36.45369168084232, 174.99141851071582, 101.49935356822029, 34.87184693554363, 60.86892771518188, 9.884549204730547, 62.54435609302513, 30.312966708987023, 15.297060087998037, 50.8273134033549, 28.16978973218135, 26.615779874575402, 175.21637530676708, 102.40656154110069, 10.25223211691207, 10.650586692990716, 15.565017023083339, 41.37928036254147, 11.105023555541656, 99.93860163221491, 34.64035859869695, 51.70751978532674, 10.11847048093902, 29.441830290693247, 59.11114990239125, 11.990708300858397, 5.60353404189908, 98.55024855957979, 6.126275921318971, 41.0094339493617, 8.898793704746312, 8.920709617596101, 19.317417855315654, 10.880623508261404, 43.26926673717737, 51.14877318141663, 39.50862718500294, 11.948134501376098, 57.62896781713553, 20.736712882880663, 42.6489801945405, 117.3417606541062, 6.459164581760779, 82.241656759101, 32.14470733849973, 71.39857160216405, 10.857035146098225, 36.29829587808986, 8.579622331662472, 11.992577106293133, 144.9086398422704, 72.08068107406555, 19.005291135158608, 59.33831542495326, 10.542813100764981, 13.114133229181913, 14.932051740553643, 20.19909180176905, 8.351863994074462, 5.578124605833658, 13.727475911037603, 84.67038698065986, 10.663299020701984, 30.21985774354433, 14.045625097729026, 11.926856141134023, 40.00096251288235, 22.269822595439045, 22.18003318394881, 25.296324725372397, 71.2609262758385, 57.22439447054315, 123.81833402204467, 21.541745645185916, 131.11946441378888, 36.688333413001146, 89.18398141614759, 35.158939906857675, 18.06185309270002, 20.159992027114974, 34.39716906748093, 78.72166239741111, 10.703946539261796, 17.928844203438402, 37.74628381939455, 129.63941687958135, 36.66370327343287, 39.670377110845536, 19.314748177798524, 25.347764876746513, 14.86536838341997, 90.52266828312841, 7.326997187935213, 21.571621864369995, 9.875059946022773, 120.87701683009233, 33.654582403416455, 6.800651428652257, 29.778750381428843, 72.5187685816449, 50.8500187037557, 52.5671525780033, 112.75816633976541, 51.805016642050035, 45.880499761035274, 5.372894818381604, 54.20136411614779, 69.38413352262063, 47.48632446358084, 27.358563135984408, 5.6146431959002605, 27.337778090867012, 8.50116549318636, 50.94278143582526, 17.932667220487083, 9.716072782319538, 49.040778977792804, 28.620880558913008, 34.79177696998746, 48.51711936915862, 51.56035137199713, 30.75631831742797, 40.19088635760912, 10.910906205723695, 10.462639723871183, 76.94569925067275, 35.47068975201207, 13.695934023735642, 14.742312031827336, 70.58471768701003, 50.72575522364278, 30.1194880805019, 91.6086890169276, 97.34236633026445, 18.00075541423641, 7.809850280938853, 126.4875926691935, 37.46710808286313, 21.155778800803045, 14.126600143319791, 119.8779375742257, 24.800942388442476, 61.66101619039276, 28.68682979618652, 91.45999927960824, 18.110798165500263, 5.556103594783815, 5.300586796410679, 9.967046294667108, 23.28984447582628, 8.858194714988077, 32.69933174894958, 17.398046904207842, 7.889858024061932, 90.06999235914785, 23.581551805790042, 18.96963241299131, 9.555889851572925, 39.22430308018848, 26.633046009955542, 28.823002312745768, 13.86356127674625, 86.05986812730599, 35.12179849195781, 67.38414345481384, 21.640361528420932, 20.381312271334263, 39.254329400154596, 104.1548900557584, 33.89391298161597, 86.27010129708796, 41.268263616873874, 19.07406478549368, 34.43212022539953, 39.505344252291536, 39.47183486764721, 9.669352623736797, 68.98018443169913, 42.82020371233509, 18.334832560438226, 15.548003555602897, 72.64482510638791, 48.73658955014429, 67.44765734774143, 21.672804041501188, 5.7010000663843, 5.049138359741933, 17.45186278201751, 37.47147659974134, 26.477955146393047, 43.31346423211418, 200.13152922835081, 42.973266994725634, 46.06029461088679, 175.88324487285772, 40.76739555786608, 25.026247554561323, 42.133418786593154, 53.085363118510095, 64.74322411695138, 12.106645619875007, 89.56160444515356, 68.2918889911024, 6.026048630277403, 60.16074144185052, 166.16704512461533, 32.28413184231354, 20.944425987486273, 88.70042858893984, 24.291493771571076, 31.300747462204214, 13.957906986458136, 16.359329390479438, 15.980968740781991, 132.945510853979, 32.89922878148253, 57.46290747983012, 56.43330525741685, 9.613817469995924, 13.964542688315337, 13.010254485041365, 85.73575599252563, 66.7321026542752, 14.710384622986899, 21.73640549519623, 38.900704820262085, 25.88971849198598, 7.48172318856802, 18.361167631802637, 14.113276879622376, 19.07868798206586, 8.991217155635761, 143.3570971059101, 52.53248692613804, 29.74354605154963, 31.42489327230742, 35.27899142259637, 42.65396774444497, 55.69700109698491, 69.79014801149698, 90.71964403221583, 14.467671548664272, 50.23209490128825, 24.55265294931844, 63.780282667228946, 58.777362921543485, 66.10279144055798, 79.40670546351247, 68.17846660659924, 60.103974478326386, 20.424611664464287, 41.46294888695157, 23.06703066896795, 59.73386050232005, 10.27392792312875, 115.94933950750958, 7.460124352953089, 84.6361475954604, 6.5782265262153805, 68.16572858543154, 129.52412737130226, 96.70112808621771, 15.585512976453485, 60.47161116742207, 37.76477388110689, 20.865802550545776, 28.285806679342464, 6.205527990034531, 27.555035246071203, 31.689100061272732, 19.257793128809006, 63.40727550873024, 9.233553298953156, 48.02760900513228, 110.90911447257852, 17.17443133043729, 34.724901061792465, 58.058464022362486, 85.59067942972186, 32.14987728754868, 23.333152933830902, 7.704653823688739, 36.1831117741938, 34.352613654267294, 135.21704926162906, 41.28886143547782, 15.50662730250259, 11.702863204814035, 8.733129388904306, 31.37392008223182, 10.513787948392572, 11.667797174844509, 44.712759663851394, 38.92332611465599, 144.2465456260966, 36.83992165757678, 12.689680314059324, 91.94500794112437, 5.987919216133099, 6.771668740964754, 31.999336095548898, 89.079233649065, 75.34825923476149, 44.85230421349562, 34.238827938514156, 102.63912786600706, 137.15058865241627, 17.223337649500518, 75.11274067067163, 9.398369246144188, 14.306127193523775, 32.83408229783448, 98.64147015563282, 160.01179933938297, 42.8782051841486, 31.773921644562545, 5.319838681543887, 12.063888187334939, 14.057518593582877, 11.412531972666269, 8.316550189192421, 5.671327091606536, 21.334987350037608, 22.757526501113432, 73.64749221092802, 10.171588347636495, 49.48570401725332, 74.41706764730019, 18.429515638090102, 9.417200283213488, 11.412012810326972, 21.347531032187966, 88.08435930018261, 14.236610656508788, 26.26875159484961, 117.6361164352494, 5.5144512378290464, 17.954050426025123, 7.053659171421493, 94.11714192959715, 12.473898852075683, 40.152290451461276, 106.11317907253667, 188.48531061725618, 5.655152451217222, 40.84471429171292, 70.58098574524325, 21.597926333268788, 70.23990375671409, 19.486007488116023, 263.3392391559827, 12.970812789681235, 87.75443283762898, 22.51464140066919, 39.36181878966449, 9.655574625823487, 31.110529889651907, 16.00918781190568, 48.57408447662024, 46.00851337163209, 46.20232183549882, 108.98368985877286, 11.145474842864324, 113.75864481289945, 26.83567149093143, 21.14254972168986, 34.019428645756754, 88.27393530457164, 36.98201627535522, 63.14721379373311, 27.23817471482203, 62.838463722162544, 77.31962762129106, 7.039283494386366, 107.14250272611176, 45.386143494879164, 18.178447872615187, 15.414545282979164, 25.81680023375742, 11.656185794832531, 144.7598532457926, 39.078901786115296, 58.296307401333394, 99.85368537223721, 15.519250243544137, 5.167505979507444, 58.35613958320733, 18.53527209708475, 23.385903963763774, 171.52068562706035, 25.762992428477833, 82.90305923614383, 6.094945345969313, 58.64390823256677, 31.703806186664913, 5.819342270716099, 54.04033861218591, 18.12475545521186, 159.0905432680421, 118.50203045534207, 64.66368463117611, 6.78347906220834, 8.096130451548513, 103.68519984411779, 69.38136531216847, 32.92500479343908, 91.08779943404032, 56.451383207513565, 5.0466824621356245, 25.665049764899553, 17.65044717371058, 91.79743894661557, 7.774297846863668, 80.28395685688142, 5.095435116489223, 212.9292617783795, 30.777632874936888, 34.98222061532311, 34.26638153691033, 12.364345280499647, 18.75921982677354, 46.57923959254774, 51.12820380796215, 6.9524224218410895, 18.35222899029333, 33.69069147493145, 72.81013813272052, 12.777654507668393, 23.44495509666142, 25.125775979830184, 38.783343752775195, 10.946710073812412, 8.323064495875231, 86.716966660026, 53.68615240635773, 14.433510919685885, 14.523428569100933, 60.78343474586048, 29.410550358109905, 31.45516114605875, 12.752247689783836, 35.95503586222111, 18.10165362766301, 11.234154296493186, 9.570225762333004, 5.090529547460171, 11.285188254046634, 57.08438421876848, 25.342005287019717, 72.25323495647163, 11.460294573087326, 104.5859360271844, 16.933654890493933, 8.00794159670044, 34.145360306896436, 102.7785657462414, 5.044531011066935, 7.238737305121999, 22.950405619915294, 64.16053195800211, 80.45442676876729, 182.9573619701327, 90.1778063219279, 49.93549344602075, 86.50329793446485, 71.88923509210628, 16.514412256893532, 10.458655145800144, 7.887531898014449, 60.56222178022445, 90.86011237186966, 13.410576547147345, 55.93908058070543, 87.7867332774289, 56.32011968091793, 15.445561008710813, 11.648714000395737, 84.46583518044235, 17.756553815749456, 32.72499573748703, 37.792194538765884, 31.95027885090242, 30.344892599737218, 61.455942494684564, 41.754003404341006, 35.59236876438786, 80.48405839076736, 30.123435102003874, 60.26904831249423, 66.31837233397113, 154.45136026550253, 101.55463000179554, 82.62452528337451, 16.030991929398454, 98.3801412796261, 40.58245840157979, 38.858012073192434, 29.439030094279687, 25.116126513951208, 94.53733733880888, 13.216578237203585, 15.517188852502246, 10.90455278351153, 41.49105669210883, 25.48282255407756, 48.23892515488899, 6.139940139600707, 79.57349202013089, 57.19132260032478, 24.28797340744611, 36.28878069388189, 55.198420450025424, 20.978349747596113, 206.02109502423082, 12.597843082364966, 96.01969077601939, 12.930422712212762, 54.20030090318163, 90.57392248689973, 73.68382758119724, 8.592432102718591, 104.13916343917329, 134.53460402109332, 22.284219244876837, 50.89280015864058, 67.14449819668714, 12.055434374983513, 9.123247639504445, 138.00468862347992, 27.8343793146205, 30.23269087987225, 18.094736501412587, 11.373175212293718, 27.127724328999065, 71.09436379352553, 22.129761201972087, 8.642894340442378, 46.41785220014456, 7.478951954089011, 101.26985606613795, 26.302215352789972, 17.287274885926713, 69.01122396588926, 5.469514826561917, 26.194423006551595, 19.995899230888554, 72.09631770298625, 8.030743038001411, 5.397573814200679, 8.57375056096054, 14.664996873716289, 52.82294904213838, 58.83054700185399, 32.80284676511778, 67.73104426324768, 65.69266585369327, 9.82032052678492, 157.08456345770168, 9.496451114005788, 92.19581411464556, 8.220157000029, 19.815634325889633, 6.405543660888627, 32.753063122975036, 5.4432975600795865, 40.27766829902997, 30.21696268400308, 13.849216283881173, 116.05681583776766, 7.754338321127959, 74.64827730287027, 8.127906922511134, 19.166610629322932, 67.32767598694963, 20.402527174401413, 31.730175461415136, 19.129944596040318, 20.462938039947378, 125.32317928542068, 51.07519826132231, 22.859836582835083, 5.4055057184699145, 64.62561162998583, 42.9197549756664, 17.99268968023895, 19.46775882738211, 28.33665745998616, 63.65372377316062, 117.09229855880723, 45.336851197080954, 44.86025957367801, 30.70340005392286, 80.30675424525778, 47.474366043903046, 26.776353733580137, 35.29442441294708, 73.0725043515584, 99.29787559710692, 15.561040139100545, 145.0585154834843, 18.026199958697255, 75.16078857593114, 15.909037965394079, 73.11889863143357, 7.62404125893107, 29.783584720500084, 314.1821671928982, 57.66602731385966, 27.363649704950586, 160.60136725437883, 36.80139220891751, 59.46783398057977, 59.7975349590029, 11.785453712000065, 67.56461232399977, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2616910.128125488, 2617165.4407087285, 2619248.4375, 2628051.521292533, 2635825.0, 2636256.5577413663, 2637207.8125, 2866021.728533781, 2873863.3330166196, 2880666.612610754, 2880675.1450240305, 2909617.1470247516, 2937710.9375, 2965873.4375, 3034167.1875, 3093363.6668072143, 3103099.1512301504, 3120559.618558803, 3173223.747294147, 3176227.4455880383, 3180058.203098862, 3239737.204512008, 3254890.9519710606, 3272709.233033961, 3283033.5620204606, 3283040.3269229545, 3283852.634178194, 3307010.683412797, 3307291.421004599, 3323456.6823062287, 3326231.25, 3337954.051170369, 3339356.25, 3339940.625, 3387848.5245977174, 3409642.1875, 3409654.1289562895, 3421877.601480128, 3425660.9375, 3425671.875, 3446190.365972727, 3502619.712434371, 3502830.6650709636, 3520466.723875049, 3528219.2159969416, 3541368.2608061954, 3541390.4491522773, 3542935.658275728, 3552934.375, 3555153.125, 3555383.91933289, 3560977.5386021733, 3566822.955754897, 3567314.0625, 3596626.71839932, 3597538.3154056696, 3616505.924612023, 3636631.9325005566, 3636656.2449111906, 3656576.5625, 3662576.5625, 3671946.9030535365, 3671971.2435381124, 3672543.75, 3674193.7015171153, 3676625.526894188, 3676656.885166768, 3677134.251792078, 3689967.1875, 3699412.5, 3700434.375, 3701131.25, 3701527.659217692, 3705068.5415646695, 3721260.042510581, 3721271.5486990195, 3799487.5, 3800283.9368867166, 3800826.8408012977, 3814795.3125, 3814920.5195360477, 3815176.5625, 3816614.2656013006, 3816969.775162261, 3833561.0974926497, 3835395.3125, 3846661.924304829, 3849845.3125, 3877451.1339812307, 3896874.7203830522, 3901031.8094091504, 3901804.356152447, 3903184.21856612, 3904828.105301212, 3907871.9750559903, 3908112.0549347266, 3910162.071941831, 3910275.479136598, 3910402.9324110947, 3934962.5708941473, 3943479.6875, 3947951.8230813863, 3948055.754760935, 3948801.5625, 3951944.35074203, 3955695.1116131195, 3996019.3269747198, 4017884.2751220902, 4026078.8023702228, 4029773.500667028, 4030793.327814439, 4031434.8323488412, 4036492.429850498, 4049134.375, 4055250.367274776, 4074944.0288277585, 4079459.6056127427, 4083218.6683311258, 4084059.375, 4084066.778194478, 4093943.536109114, 4096526.937516361, 4097373.8631767803, 4099901.5625, 4101144.7718440495, 4101240.0024887007, 4104052.4784644837, 4118162.5, 4154182.8125, 4155395.3125, 4159699.4617695254, 4201010.9375, 4206417.011129679, 4206428.583668795, 4206613.699279911, 4206701.889354672, 4206925.8585214475, 4207035.9375, 4207067.773491226, 4207184.375, 4207338.730061414, 4207523.4375, 4208175.031184966, 4208187.656448024, 4208278.180976066, 4208554.3930065185, 4208861.035101864, 4209024.491568424, 4210833.577010125, 4212187.537501263, 4212221.875, 4237325.986344811, 4237429.550273406, 4251411.960516705, 4252641.767797381, 4303453.283789047, 4330474.729855101, 4334859.8108347915, 4335054.12041468, 4352609.018167763, 4356468.75, 4399383.13162565, 4402553.125, 4403567.073087822, 4406547.659178933, 4411372.843208045, 4418838.489369792, 4420584.375, 4441482.8125, 4453057.255360344, 4463631.25, 4465254.376648451, 4537891.698911569, 4546248.291555384, 4547257.8125, 4548039.897663509, 4567927.05572429, 4573487.647423084, 4761777.014139086, 4768581.08594264, 4771458.52645148, 4776566.835224201, 4778739.250724038, 4782718.75, 4785247.818543067, 4786152.216108803, 4809172.968262047, 4838616.736114484, 4865197.4803684205, 4888220.609906609, 4935524.184829173, 4937659.375, 4961451.789557535, 4987376.561374465, 5042707.8125, 5046650.886893208, 5055155.402567547, 5062884.07725912, 5063251.752752214, 5066265.625, 5066298.4375, 5070202.348594007, 5070766.364605218, 5071341.7340032095, 5153212.802010804, 5197173.210070295, 5218531.602357681, 5220264.309847529, 5230286.6161838835, 5264252.045187008, 5297560.52933049, 5313835.912128503, 5345249.6607326465, 5346694.701766902, 5347564.720694101, 5355251.115515129, 5370307.45916087, 5378645.849380501, 5395682.619706394, 5440773.4375, 5478112.319809959, 5486796.1478139935, 5492535.9375, 5498381.25, 5499407.422037284, 5499907.290704544, 5500526.516107895, 5509996.875, 5510607.473820749, 5510707.8125, 5512711.582073579, 5514493.75, 5517403.125, 5518748.4375, 5518748.8262944855, 5518818.5680527715, 5518902.94538888, 5519128.771177637, 5520272.30648622, 5523249.943009089, 5523253.125, 5523784.354934907, 5544024.747993346, 5544887.382015132, 5547282.392796374, 5547568.76164587, 5553369.951277565, 5553440.625, 5553533.02902473, 5553543.118670336, 5553606.25, 5554127.988061837, 5554237.450691744, 5554318.005781613, 5554497.079458677, 5554587.5, 5554679.6875, 5554839.015753994, 5555234.375, 5555251.5625, 5555593.140711991, 5555790.039806388, 5555878.97287575, 5555888.166430163, 5555911.28688181, 5556259.375, 5556270.195437913, 5556367.1875, 5556611.991054763, 5556870.589053156, 5557101.5625, 5557150.837493118, 5557154.105777069, 5557242.1875, 5557321.875, 5557377.206744861, 5557491.872852017, 5557686.64224602, 5557806.25, 5557884.375, 5557891.906202761, 5557946.875, 5558092.141694903, 5558296.875, 5558459.667059279, 5558484.375, 5558604.305887245, 5558649.6904069455, 5558797.563351042, 5558912.504686514, 5559067.1875, 5559190.350988276, 5559294.2897857865, 5559362.293666746, 5559368.75, 5559392.153222651, 5559394.407237601, 5559439.999707463, 5559446.875, 5559521.740035693, 5559917.17071831, 5559954.881678919, 5559987.5, 5560052.659811984, 5560215.625, 5560243.829283668, 5560265.625, 5560716.250040368, 5560946.301750564, 5561186.707467666, 5561196.875, 5561251.033112885, 5561321.426065629, 5561324.385916891, 5561334.375, 5561420.3125, 5561625.430907532, 5561699.15323786, 5561789.0625, 5561821.623652724, 5562058.405637475, 5562090.506454315, 5562429.329201981, 5562523.4375, 5562687.830883034, 5562735.9375, 5562750.0, 5562862.102741971, 5562957.303471571, 5562982.564130804, 5563226.849652582, 5563318.160032184, 5563470.3125, 5563929.356653825, 5564457.323762922, 5564541.544562388, 5564653.106892095, 5564955.752217154, 5565224.769526645, 5565458.29818876, 5565817.1875, 5566494.425733781, 5566787.839001906, 5567258.212129861, 5567529.362142742, 5568897.22214749, 5570020.3125, 5570129.555340062, 5570605.896254839, 5570799.856606922, 5570810.9375, 5571580.587359796, 5571627.4095370555, 5571643.75, 5572140.294195328, 5572377.942241305, 5572635.9375, 5572793.499847787, 5572905.906822014, 5572982.927018177, 5573171.119583035, 5573721.23740176, 5574531.861000448, 5575088.24452109, 5576132.505981499, 5576364.053613144, 5576396.298733112, 5577018.296917102, 5577734.788978368, 5577873.9717373345, 5578210.853539814, 5578600.0, 5579891.285483051, 5582097.88130175, 5582576.5625, 5582777.695936882, 5582884.427143584, 5583295.735947629, 5588313.588162545, 5588881.25, 5590024.102956767, 5594343.417994731, 5600126.541134895, 5600149.598586257, 5614487.184084641, 5623344.241756342, 5624066.365095167, 5624905.927183282, 5625876.5625, 5626362.5, 5637831.838958929, 5648583.48332519, 5666912.5, 5667523.527756905, 5676002.949551163, 5676422.687221307, 5676424.89545025, 5677570.3125, 5678618.75, 5679772.794510219, 5683905.921688032, 5684574.315650698, 5686226.5625, 5686496.860439329, 5687241.790556491, 5687675.0, 5692149.29253359, 5694919.554121914, 5699385.175769175, 5702299.536428458, 5707728.614871587, 5710315.433445183, 5711012.5, 5714133.171784582, 5714442.1875, 5714524.439860413, 5714843.220779131, 5715437.685527401, 5719846.710955483, 5719970.3125, 5721450.0, 5721674.553988841, 5722103.593309888, 5722643.75, 5723146.295678715, 5724295.488446133, 5733439.0625, 5738182.632005815, 5740928.125, 5750885.5306085935, 5768734.375, 5769012.319644523, 5769572.400310104, 5769702.078381691, 5770823.692597376, 5772505.394530764, 5772687.5, 5774469.9040288245, 5775759.375, 5775791.778038896, 5792625.983256674, 5795060.935016451, 5795061.859699952, 5799673.558950759, 5804822.769442065, 5804890.265307948, 5813314.0625, 5814663.743577618, 5814676.5625, 5815236.488874992, 5816883.020313174, 5817917.1875, 5817926.463245726, 5818066.753710782, 5818263.178867891, 5818361.868414008, 5818910.803858885, 5818986.175310654, 5820151.191302058, 5820277.891804688, 5820297.496505159, 5820592.827633571, 5821400.223767379, 5821408.392533836, 5821461.855103491, 5821870.3125, 5822526.5625, 5823649.710849116, 5823831.861507996, 5824014.0625, 5824078.125, 5824145.773299212, 5824235.9375, 5824239.874872343, 5824472.45275182, 5824610.917379045, 5824640.625, 5827044.47818756, 5827201.0703355605, 5827880.267347034, 5827998.097975311, 5828185.818413532, 5828186.120752614, 5829892.1875, 5832299.650384268, 5833898.4375, 5836807.8125, 5836900.0, 5836995.3125, 5837254.260082906, 5839135.251883714, 5839956.25, 5840084.375, 5841439.0625, 5842192.125681396, 5849321.885823372, 5851216.746497901, 5852947.259881253, 5853846.386538744, 5854203.323205166, 5854845.73490136, 5855728.125, 5855745.3125, 5856380.950410627, 5856609.375, 5857073.276877499, 5857821.944855271, 5859438.357128433, 5859624.856723884, 5862954.215819598, 5863301.242923414, 5863615.5213039415, 5864817.900712732, 5865081.1967378, 5865631.25, 5867015.625, 5867021.663726277, 5867415.625, 5867665.966399808, 5874078.747932597, 5875881.787273489, 5875882.609605964, 5876707.8125, 5877049.4655069485, 5879909.14340283, 5880254.6875, 5880454.4654972255, 5880655.305095998, 5880853.125, 5880943.75, 5881195.952684253, 5881278.59042362, 5882100.304505067, 5882139.729381193, 5882800.075842048, 5883019.694291965, 5883179.6875, 5883373.960788552, 5883413.228543646, 5883607.8125, 5884042.363385884, 5884503.890910991, 5884897.1290713865, 5884900.53423386, 5884996.331354184, 5885590.2713377625, 5885872.342737951, 5886214.0625, 5886535.919671834, 5886565.625, 5886674.492628077, 5886685.213926035, 5887185.9375, 5887560.717656142, 5888395.08911714, 5888875.0, 5892778.125, 5893167.967699845, 5893494.580661443, 5893606.994417584, 5894570.3125, 5894822.2493495345, 5895063.629978283, 5895285.076485865, 5895317.861968438, 5895476.713013183, 5896884.375, 5897953.016787362, 5898545.3125, 5898565.142827724, 5898565.534145279, 5898622.320856619, 5899528.65755813, 5899746.875, 5900503.012206068, 5900718.75, 5900952.1645551585, 5901143.75, 5901607.8125, 5901879.911257279, 5901933.601016901, 5902316.465588939, 5902337.5, 5903557.222535357, 5903567.815515594, 5903658.472681342, 5903903.125, 5903933.072643105, 5904227.506396645, 5904879.6875, 5904880.223984144, 5905044.638222791, 5905119.7556809215, 5905257.864575548, 5905377.101636034, 5907131.25, 5907555.965559105, 5907947.203115324, 5908353.373370371, 5909356.634314312, 5909881.672827476, 5910479.6875, 5912673.4375, 5914739.378624743, 5915477.842672749, 5916282.19299771, 5917131.241504944, 5917555.472083761, 5918214.000510726, 5918279.211549152, 5918507.8125, 5918777.975834549, 5919615.276050768, 5919645.990926573, 5919792.689432297, 5920098.102077309, 5920204.255775319, 5920406.25, 5920456.647764956, 5920810.9375, 5920857.8125, 5920880.5986122545, 5920942.581783483, 5920949.200510158, 5920963.4919342045, 5920983.817153078, 5921045.18236881, 5921068.75, 5921448.746980738, 5921480.450800229, 5921580.976828462, 5921581.25, 5921748.4375, 5921850.0, 5921853.073053485, 5921868.135775382, 5921970.3125, 5921974.644520952, 5921988.640597961, 5921991.562735901, 5922015.625, 5922083.961184452, 5922175.0, 5922175.557739035, 5922370.6357417535, 5922386.0025753975, 5922450.0, 5922473.596788953, 5922489.0625, 5922543.6917771045, 5922547.2812213935, 5922587.8436840875, 5922626.058275538, 5922702.684512124, 5922755.091654353, 5922855.492352822, 5922895.140606018, 5922912.381965296, 5922914.0625, 5922930.104106639, 5922994.233939275, 5923005.9636744335, 5923037.444460405, 5923051.212102653, 5923091.942556615, 5923203.198758365, 5923223.709458032, 5923239.619937888, 5923245.3125, 5923504.6875, 5923550.0, 5923598.5782643575, 5923601.808188901, 5923605.446171925, 5923660.476617747, 5923687.068200162, 5923709.695078342, 5923720.3125, 5923726.5625, 5923914.016694986, 5923925.0, 5923938.312443851, 5924011.883058283, 5924075.540713734, 5924076.603246968, 5924149.443459428, 5924185.9375, 5924187.5, 5924192.519654931, 5924215.625, 5924282.250287476, 5924286.434414469, 5924297.367661914, 5924298.4375, 5924423.515649916, 5924432.786150713, 5924476.5625, 5924490.242387994, 5924515.625, 5924518.062658306, 5924540.625, 5924554.028577548, 5924581.776378708, 5924654.447231013, 5924767.362387593, 5924807.868752291, 5924871.30350773, 5924897.921502502, 5924913.8973575635, 5925003.125, 5925033.663076842, 5925106.25, 5925112.5, 5925113.188630194, 5925142.287254783, 5925143.924581626, 5925166.672782503, 5925169.515928848, 5925191.989393885, 5925323.311994259, 5925334.375, 5925340.2350831535, 5925355.303026266, 5925370.048171896, 5925385.692894807, 5925391.343774729, 5925428.50222571, 5925434.098402506, 5925443.617902286, 5925461.657405475, 5925491.027130852, 5925493.75, 5925494.822944505, 5925509.057433515, 5925550.8346423395, 5925564.40381261, 5925566.5524580665, 5925603.125, 5925627.721649959, 5925627.997636195, 5925644.11001765, 5925673.4375, 5925764.316996352, 5925776.5625, 5925864.883856199, 5925898.12314167, 5925899.906132607, 5925906.261337778, 5925917.815681854, 5925960.845894258, 5925976.026625983, 5925976.5625, 5925978.125, 5925979.702297849, 5926007.8125, 5926008.633457795, 5926010.9375, 5926012.5, 5926057.490416053, 5926064.0625, 5926078.125, 5926094.11356325, 5926105.673967695, 5926146.721187135, 5926156.563693815, 5926168.75, 5926173.4345381055, 5926174.9324285155, 5926178.125, 5926244.996867754, 5926246.966838671, 5926257.8125, 5926281.954224902, 5926317.873885182, 5926321.406110043, 5926324.842737435, 5926334.221132643, 5926359.4405774465, 5926396.875, 5926427.795358622, 5926489.134705877, 5926493.75, 5926570.954852693, 5926615.077720669, 5926637.5, 5926668.75, 5926670.411724915, 5926704.309119755, 5926709.690502951, 5926746.875, 5926761.9798182985, 5926767.1875, 5926767.860307814, 5926828.427717931, 5926837.3364135055, 5926861.503615081, 5926862.054924812, 5926866.074423305, 5926889.80588248, 5926906.095891328, 5926917.1875, 5926935.9375, 5926980.2982707545, 5927052.703564159, 5927187.234704949, 5927214.888557679, 5927217.1875, 5927220.3125, 5927236.815437528, 5927241.302084772, 5927314.044084484, 5927325.641174776, 5927330.536758577, 5927350.641856243, 5927381.050526594, 5927455.552746982, 5927462.3810333125, 5927462.568366278, 5927485.9375, 5927504.6875, 5927513.922515198, 5927557.465596321, 5927643.75, 5927687.5, 5927688.217444872, 5927735.213705582, 5927770.281583576, 5927780.326261152, 5927843.8170508435, 5927883.082056239, 5927924.593024989, 5927979.785968397, 5928065.107868914, 5928127.940137242, 5928175.620677941, 5928184.5778454915, 5928203.815364081, 5928224.819938891, 5928240.058108936, 5928242.1875, 5928303.125, 5928322.051507663, 5928333.240644172, 5928368.3846506355, 5928371.875, 5928388.522301002, 5928390.625, 5928450.0, 5928537.5, 5928542.276627987, 5928551.5625, 5928565.984369502, 5928626.087684821, 5928706.973104348, 5928789.0625, 5928943.75, 5929066.718076951, 5929087.5, 5929178.125, 5929206.25, 5929468.876243604, 5929509.68457472, 5929571.489498275, 5929597.458637986, 5929671.000232882, 5929697.436406046, 5929732.8125, 5929734.984165266, 5929817.1875, 5929924.821017075, 5930010.982720642, 5930332.8125, 5930354.259048515, 5930557.8125, 5930592.1875, 5930622.117091335, 5930989.430282033, 5931029.6875, 5931037.759209486, 5931107.5526817255, 5931478.125, 5931679.6875, 5931701.810146973, 5931703.183999052, 5931823.4375, 5931901.810928272, 5932015.768259665, 5932045.164882471, 5932059.035153304, 5932202.94949163, 5932228.125, 5932245.796683535, 5932282.8125, 5932410.7889906615, 5932560.678425442, 5932929.6875, 5933051.5625, 5933305.751831715, 5933551.0872829715, 5933575.773176089, 5933620.3811662905, 5933943.098896948, 5933962.5, 5933964.0625, 5934118.052293752, 5934161.4743116805, 5934372.95191653, 5934487.358828605, 5934718.325810227, 5934769.540206643, 5934951.5625, 5935275.522196732, 5935284.118119314, 5940217.31827511, 5941779.651634794, 5942663.947542714, 5942742.82518343, 5943664.214064846, 5944156.175199898, 5946330.252898725, 5950510.499038639, 5951016.243050965, 5952073.4375, 5952080.89277797, 5952594.712439608, 5952646.0197103005, 5953716.128966017, 5957394.257061958, 5958886.1167895, 5958999.869919256, 5960491.320372709, 5963014.0625, 5964926.045211523, 5966862.476432014, 5969505.193745459, 5971713.224584664, 5972345.3125, 5972570.355101292, 5972929.6875, 5973276.5625, 5973327.596603642, 5973402.089168839, 5973901.464164316, 5974240.813951058, 5974272.622988844, 5974545.184750167, 5975123.167025958, 5976379.146787396, 5976997.195824635, 5977529.2500199005, 5978035.9375, 5978644.692529509, 5978918.430518566, 5979885.479233179, 5980317.58680223, 5980867.1875, 5981599.68739537, 5982216.417694152, 5982642.1875, 5983560.320754225, 5984904.6875, 5991788.287762691, 5991799.838343853, 5993204.5549012795, 5993474.132160784, 5993704.314399777, 5993756.432725918, 5994039.163660661, 5994854.6875, 5994869.371657177, 5996097.70729334, 5996529.677915047, 5996619.594847016, 5996732.8125, 5996970.3125, 5996982.8125, 5997262.5, 5997297.014291694, 5997406.25, 5997482.71742748, 5997487.120044267, 6010202.42647878, 6015637.991685458, 6015654.841069895, 6015839.223608521, 6017243.857110991, 6017504.6875, 6019176.7951200325, 6019388.812452289, 6019865.682154855, 6020034.375, 6020102.921194886, 6020977.970340057, 6021585.875964514, 6022353.125, 6023153.125, 6023512.5, 6023771.107856442, 6023811.321149229, 6023982.42467778, ...], [7.334575084376824, 5.524202658046262, 32.23481598740344, 22.467668881832147, 28.945042682048637, 49.95450808421111, 75.07869966597252, 20.211028170251783, 10.151395162939334, 73.26278878239225, 15.524668702745785, 71.41130271427528, 32.5870115013686, 56.22714588864862, 52.309342834212266, 22.419587300833417, 17.190335035896652, 23.526935118055324, 33.940371901201715, 7.957246713174921, 22.41817594821752, 69.54862414066912, 11.68037421316055, 14.426670139940459, 88.50334504065609, 6.44135862877645, 21.585148836673515, 37.06685139545222, 12.650985802372704, 24.45857185767294, 65.51263122992128, 12.967560529001076, 38.4153242922891, 34.09320943583356, 11.266631018323285, 60.24970086610754, 20.928320281135957, 54.904328087133806, 76.94380817021684, 129.92853458071124, 7.0549862362622076, 20.549776448271622, 7.404545937904754, 7.443739373963047, 7.249583739262482, 162.33888947629288, 20.862556892571952, 32.926866083452715, 46.131329928418026, 85.86711153428416, 24.45127564222075, 10.609434434793851, 8.954774463170075, 55.57775737189074, 15.570995286231543, 19.337846742353946, 5.036102847764618, 29.2030159558659, 11.119761972225715, 76.34420612125234, 82.6623016086213, 15.049525443539045, 20.274819139269873, 65.1169259634408, 27.600621138016002, 12.06493150683496, 12.290498864354626, 80.94215992350524, 51.010545812810264, 82.50045563066747, 79.59422569098726, 37.90043954744591, 14.392421592869681, 14.20241876891817, 85.67378488125546, 14.185468232377609, 46.87763950416424, 158.23547105212424, 122.65559391334446, 58.75781458178256, 15.794072854916609, 45.624524994997834, 27.550839281536504, 8.021492727301432, 21.435250557042515, 35.95266278761676, 6.977918107765779, 69.29982959813208, 20.1791805307273, 69.82289534873938, 12.131315207198062, 168.075122964377, 7.080928278451123, 5.2904791634661406, 13.87087576320653, 22.059184749026155, 103.47411862145017, 5.641112702136227, 7.53503576817377, 5.205231855535851, 44.1428653895965, 5.962424385466341, 31.07961089213807, 76.21097306181458, 9.89686861203349, 51.22471518833731, 60.55549263972616, 6.471547648560806, 26.10123100078459, 11.22789752881422, 83.89271171401948, 17.027607765274162, 15.953371054427535, 60.67539614792926, 9.662542375536797, 25.88749836192281, 13.230045975553434, 27.00744567069238, 60.345247063375396, 10.543016207914395, 14.184454864807712, 53.90489389247992, 8.525285271308064, 62.175893768364645, 25.839810839650866, 5.5036120759064575, 43.163669210768106, 67.4682785606748, 41.49343740408687, 70.73817310875364, 18.30769189205337, 82.20900332157069, 109.60633969775556, 5.107591863677703, 27.88231881945746, 24.885677588724512, 15.538573784010133, 30.39316912976178, 20.000564062492963, 57.71432369813259, 23.345042439581064, 131.02601413121178, 131.04700581257936, 15.57334282955489, 50.72526473046016, 23.82133556753957, 75.73210531278801, 172.6975171613656, 5.2670583083065745, 11.186834024026185, 29.897862410206113, 55.46502139341496, 5.127580194743697, 16.593242088059384, 47.47428591153905, 11.385319053201249, 21.212443272025013, 15.225517367391248, 13.145995020850952, 6.051761561602178, 62.18379597168513, 22.141688926520747, 38.706799029193874, 26.45110156110571, 19.103412451272913, 114.95285631356388, 28.87296823357253, 74.70619044485565, 45.11703817971869, 8.900910943229704, 43.705233932007125, 13.875756389252974, 35.31221775591891, 25.94054473655666, 97.05570727485198, 42.7292055366122, 71.10664965290263, 16.678751181388645, 44.87152278713896, 73.56352344138504, 50.9821992536547, 23.105194141670506, 7.171824941127257, 52.818057107690684, 13.385908623224545, 9.952821769392019, 21.805556699115222, 60.557483559101826, 29.78591581109162, 84.97279835554062, 12.538487882366677, 80.31626958625631, 34.80450132018831, 28.502937107713894, 38.62912418746073, 6.020551241943363, 18.609742480540643, 33.02250117837837, 6.291538372524489, 32.4569860573159, 28.683729922476555, 121.02050635742684, 5.656314569731024, 92.64750908849413, 34.79004477186132, 14.140155950724465, 6.835951724901595, 29.146229283690353, 20.20814064904271, 222.37565843692173, 35.33098043259804, 28.03239648818593, 6.053514949641867, 59.36423675331238, 97.41179632816498, 70.31047537213867, 32.20840917653748, 63.79800328525107, 71.950980570367, 31.69548419182983, 6.069559360158847, 8.78392034735888, 31.437280718398085, 43.26416969452613, 65.91426752726946, 108.44322495928468, 27.639033435535627, 31.634144747990614, 10.636609892291101, 39.836495451167536, 7.854284266869273, 106.51614351297579, 68.91957928129933, 53.800969341027056, 7.227547231361428, 5.240081339382056, 41.53102368638916, 134.1856718122218, 6.556926778477844, 14.728646782134424, 65.31753832877088, 74.51825290624991, 82.04353221215786, 61.15517211144129, 6.215589199379795, 14.986084597764025, 10.606430516447437, 89.7773749421185, 14.672335981397666, 26.23073619038287, 44.945759572831236, 7.085914100540584, 9.290055386239606, 7.3545565510162945, 6.293380528694206, 69.60030175981333, 51.874317158758615, 62.70934980352831, 55.4587666106859, 118.19642796745686, 20.46803103556345, 13.098623503220484, 19.589641910921458, 71.87728764119146, 28.512259110824345, 57.97001897608522, 58.58445654072831, 30.478683959497403, 111.67591570786975, 16.111934271110165, 64.95109176878984, 31.819771044028712, 10.325801192378812, 48.6669986481019, 82.0043004540031, 61.88488704160603, 33.79535278746254, 39.70436518046868, 62.23988051390502, 40.27931348662423, 5.689086362965425, 36.15460560815283, 36.096871972186975, 141.31456589007902, 114.85320037479708, 46.08634389751681, 31.772790273117085, 23.628972257117752, 30.375656061212318, 14.959402355292644, 48.639517338613594, 10.724817262472365, 23.34757902447671, 7.53027715713537, 51.385043706105, 6.756682601690777, 12.338104896847845, 10.273296633001376, 31.854987363575844, 16.548086560557017, 28.196988159498417, 7.675011892419854, 85.54959105238731, 19.160342475017806, 43.81472797758302, 15.252565134328544, 48.21465163813473, 12.268845621598757, 30.895335692166377, 7.907673565067307, 137.9646550648405, 5.77582170465139, 11.283038781538284, 20.425853039402018, 43.164146493682274, 32.3864279002305, 11.875395729396672, 18.614372027220412, 118.61289061342885, 10.756319273481495, 50.92154961277039, 26.38280388997994, 31.9561504621628, 47.634034842229454, 16.37290315276077, 48.116396878474255, 56.51905712991661, 13.6165243835903, 35.34034517695658, 24.43344531135561, 9.58661238505831, 32.427816456198556, 85.78450395043161, 88.9798875003877, 43.46850228072702, 66.74663276425304, 29.616870836572442, 21.515246079471908, 5.521998525581361, 28.912752339616475, 53.34896507316823, 9.976574074474257, 87.00186730794965, 77.94391635854998, 10.936885978697134, 11.71743911895318, 114.09080901353988, 23.18451792551755, 72.28089414839886, 10.910734877268686, 42.64024976086193, 10.229017233222203, 12.772293353269866, 38.733351109479074, 23.36507134286564, 67.02600028699968, 96.8456267349582, 9.128478357480956, 7.483659345114373, 20.943283602832828, 21.10024864013, 20.222165019100526, 12.239018420063253, 18.816037967504656, 82.04337347629753, 28.350292686856505, 63.94561159864185, 27.263705894981772, 16.795204382310366, 17.461659128056624, 24.463312029106568, 55.03717106181479, 12.345153324050491, 37.53464703669643, 32.225692258181844, 53.41588513226094, 5.099483888018506, 23.46792212985457, 99.7635351347323, 41.406995930296915, 94.15143323933876, 76.92348044998948, 16.504193199855294, 37.113892647013415, 13.860165366342732, 36.45369168084232, 174.99141851071582, 101.49935356822029, 34.87184693554363, 60.86892771518188, 9.884549204730547, 62.54435609302513, 30.312966708987023, 15.297060087998037, 50.8273134033549, 28.16978973218135, 26.615779874575402, 175.21637530676708, 102.40656154110069, 10.25223211691207, 10.650586692990716, 15.565017023083339, 41.37928036254147, 11.105023555541656, 99.93860163221491, 34.64035859869695, 51.70751978532674, 10.11847048093902, 29.441830290693247, 59.11114990239125, 11.990708300858397, 5.60353404189908, 98.55024855957979, 6.126275921318971, 41.0094339493617, 8.898793704746312, 8.920709617596101, 19.317417855315654, 10.880623508261404, 43.26926673717737, 51.14877318141663, 39.50862718500294, 11.948134501376098, 57.62896781713553, 20.736712882880663, 42.6489801945405, 117.3417606541062, 6.459164581760779, 82.241656759101, 32.14470733849973, 71.39857160216405, 10.857035146098225, 36.29829587808986, 8.579622331662472, 11.992577106293133, 144.9086398422704, 72.08068107406555, 19.005291135158608, 59.33831542495326, 10.542813100764981, 13.114133229181913, 14.932051740553643, 20.19909180176905, 8.351863994074462, 5.578124605833658, 13.727475911037603, 84.67038698065986, 10.663299020701984, 30.21985774354433, 14.045625097729026, 11.926856141134023, 40.00096251288235, 22.269822595439045, 22.18003318394881, 25.296324725372397, 71.2609262758385, 57.22439447054315, 123.81833402204467, 21.541745645185916, 131.11946441378888, 36.688333413001146, 89.18398141614759, 35.158939906857675, 18.06185309270002, 20.159992027114974, 34.39716906748093, 78.72166239741111, 10.703946539261796, 17.928844203438402, 37.74628381939455, 129.63941687958135, 36.66370327343287, 39.670377110845536, 19.314748177798524, 25.347764876746513, 14.86536838341997, 90.52266828312841, 7.326997187935213, 21.571621864369995, 9.875059946022773, 120.87701683009233, 33.654582403416455, 6.800651428652257, 29.778750381428843, 72.5187685816449, 50.8500187037557, 52.5671525780033, 112.75816633976541, 51.805016642050035, 45.880499761035274, 5.372894818381604, 54.20136411614779, 69.38413352262063, 47.48632446358084, 27.358563135984408, 5.6146431959002605, 27.337778090867012, 8.50116549318636, 50.94278143582526, 17.932667220487083, 9.716072782319538, 49.040778977792804, 28.620880558913008, 34.79177696998746, 48.51711936915862, 51.56035137199713, 30.75631831742797, 40.19088635760912, 10.910906205723695, 10.462639723871183, 76.94569925067275, 35.47068975201207, 13.695934023735642, 14.742312031827336, 70.58471768701003, 50.72575522364278, 30.1194880805019, 91.6086890169276, 97.34236633026445, 18.00075541423641, 7.809850280938853, 126.4875926691935, 37.46710808286313, 21.155778800803045, 14.126600143319791, 119.8779375742257, 24.800942388442476, 61.66101619039276, 28.68682979618652, 91.45999927960824, 18.110798165500263, 5.556103594783815, 5.300586796410679, 9.967046294667108, 23.28984447582628, 8.858194714988077, 32.69933174894958, 17.398046904207842, 7.889858024061932, 90.06999235914785, 23.581551805790042, 18.96963241299131, 9.555889851572925, 39.22430308018848, 26.633046009955542, 28.823002312745768, 13.86356127674625, 86.05986812730599, 35.12179849195781, 67.38414345481384, 21.640361528420932, 20.381312271334263, 39.254329400154596, 104.1548900557584, 33.89391298161597, 86.27010129708796, 41.268263616873874, 19.07406478549368, 34.43212022539953, 39.505344252291536, 39.47183486764721, 9.669352623736797, 68.98018443169913, 42.82020371233509, 18.334832560438226, 15.548003555602897, 72.64482510638791, 48.73658955014429, 67.44765734774143, 21.672804041501188, 5.7010000663843, 5.049138359741933, 17.45186278201751, 37.47147659974134, 26.477955146393047, 43.31346423211418, 200.13152922835081, 42.973266994725634, 46.06029461088679, 175.88324487285772, 40.76739555786608, 25.026247554561323, 42.133418786593154, 53.085363118510095, 64.74322411695138, 12.106645619875007, 89.56160444515356, 68.2918889911024, 6.026048630277403, 60.16074144185052, 166.16704512461533, 32.28413184231354, 20.944425987486273, 88.70042858893984, 24.291493771571076, 31.300747462204214, 13.957906986458136, 16.359329390479438, 15.980968740781991, 132.945510853979, 32.89922878148253, 57.46290747983012, 56.43330525741685, 9.613817469995924, 13.964542688315337, 13.010254485041365, 85.73575599252563, 66.7321026542752, 14.710384622986899, 21.73640549519623, 38.900704820262085, 25.88971849198598, 7.48172318856802, 18.361167631802637, 14.113276879622376, 19.07868798206586, 8.991217155635761, 143.3570971059101, 52.53248692613804, 29.74354605154963, 31.42489327230742, 35.27899142259637, 42.65396774444497, 55.69700109698491, 69.79014801149698, 90.71964403221583, 14.467671548664272, 50.23209490128825, 24.55265294931844, 63.780282667228946, 58.777362921543485, 66.10279144055798, 79.40670546351247, 68.17846660659924, 60.103974478326386, 20.424611664464287, 41.46294888695157, 23.06703066896795, 59.73386050232005, 10.27392792312875, 115.94933950750958, 7.460124352953089, 84.6361475954604, 6.5782265262153805, 68.16572858543154, 129.52412737130226, 96.70112808621771, 15.585512976453485, 60.47161116742207, 37.76477388110689, 20.865802550545776, 28.285806679342464, 6.205527990034531, 27.555035246071203, 31.689100061272732, 19.257793128809006, 63.40727550873024, 9.233553298953156, 48.02760900513228, 110.90911447257852, 17.17443133043729, 34.724901061792465, 58.058464022362486, 85.59067942972186, 32.14987728754868, 23.333152933830902, 7.704653823688739, 36.1831117741938, 34.352613654267294, 135.21704926162906, 41.28886143547782, 15.50662730250259, 11.702863204814035, 8.733129388904306, 31.37392008223182, 10.513787948392572, 11.667797174844509, 44.712759663851394, 38.92332611465599, 144.2465456260966, 36.83992165757678, 12.689680314059324, 91.94500794112437, 5.987919216133099, 6.771668740964754, 31.999336095548898, 89.079233649065, 75.34825923476149, 44.85230421349562, 34.238827938514156, 102.63912786600706, 137.15058865241627, 17.223337649500518, 75.11274067067163, 9.398369246144188, 14.306127193523775, 32.83408229783448, 98.64147015563282, 160.01179933938297, 42.8782051841486, 31.773921644562545, 5.319838681543887, 12.063888187334939, 14.057518593582877, 11.412531972666269, 8.316550189192421, 5.671327091606536, 21.334987350037608, 22.757526501113432, 73.64749221092802, 10.171588347636495, 49.48570401725332, 74.41706764730019, 18.429515638090102, 9.417200283213488, 11.412012810326972, 21.347531032187966, 88.08435930018261, 14.236610656508788, 26.26875159484961, 117.6361164352494, 5.5144512378290464, 17.954050426025123, 7.053659171421493, 94.11714192959715, 12.473898852075683, 40.152290451461276, 106.11317907253667, 188.48531061725618, 5.655152451217222, 40.84471429171292, 70.58098574524325, 21.597926333268788, 70.23990375671409, 19.486007488116023, 263.3392391559827, 12.970812789681235, 87.75443283762898, 22.51464140066919, 39.36181878966449, 9.655574625823487, 31.110529889651907, 16.00918781190568, 48.57408447662024, 46.00851337163209, 46.20232183549882, 108.98368985877286, 11.145474842864324, 113.75864481289945, 26.83567149093143, 21.14254972168986, 34.019428645756754, 88.27393530457164, 36.98201627535522, 63.14721379373311, 27.23817471482203, 62.838463722162544, 77.31962762129106, 7.039283494386366, 107.14250272611176, 45.386143494879164, 18.178447872615187, 15.414545282979164, 25.81680023375742, 11.656185794832531, 144.7598532457926, 39.078901786115296, 58.296307401333394, 99.85368537223721, 15.519250243544137, 5.167505979507444, 58.35613958320733, 18.53527209708475, 23.385903963763774, 171.52068562706035, 25.762992428477833, 82.90305923614383, 6.094945345969313, 58.64390823256677, 31.703806186664913, 5.819342270716099, 54.04033861218591, 18.12475545521186, 159.0905432680421, 118.50203045534207, 64.66368463117611, 6.78347906220834, 8.096130451548513, 103.68519984411779, 69.38136531216847, 32.92500479343908, 91.08779943404032, 56.451383207513565, 5.0466824621356245, 25.665049764899553, 17.65044717371058, 91.79743894661557, 7.774297846863668, 80.28395685688142, 5.095435116489223, 212.9292617783795, 30.777632874936888, 34.98222061532311, 34.26638153691033, 12.364345280499647, 18.75921982677354, 46.57923959254774, 51.12820380796215, 6.9524224218410895, 18.35222899029333, 33.69069147493145, 72.81013813272052, 12.777654507668393, 23.44495509666142, 25.125775979830184, 38.783343752775195, 10.946710073812412, 8.323064495875231, 86.716966660026, 53.68615240635773, 14.433510919685885, 14.523428569100933, 60.78343474586048, 29.410550358109905, 31.45516114605875, 12.752247689783836, 35.95503586222111, 18.10165362766301, 11.234154296493186, 9.570225762333004, 5.090529547460171, 11.285188254046634, 57.08438421876848, 25.342005287019717, 72.25323495647163, 11.460294573087326, 104.5859360271844, 16.933654890493933, 8.00794159670044, 34.145360306896436, 102.7785657462414, 5.044531011066935, 7.238737305121999, 22.950405619915294, 64.16053195800211, 80.45442676876729, 182.9573619701327, 90.1778063219279, 49.93549344602075, 86.50329793446485, 71.88923509210628, 16.514412256893532, 10.458655145800144, 7.887531898014449, 60.56222178022445, 90.86011237186966, 13.410576547147345, 55.93908058070543, 87.7867332774289, 56.32011968091793, 15.445561008710813, 11.648714000395737, 84.46583518044235, 17.756553815749456, 32.72499573748703, 37.792194538765884, 31.95027885090242, 30.344892599737218, 61.455942494684564, 41.754003404341006, 35.59236876438786, 80.48405839076736, 30.123435102003874, 60.26904831249423, 66.31837233397113, 154.45136026550253, 101.55463000179554, 82.62452528337451, 16.030991929398454, 98.3801412796261, 40.58245840157979, 38.858012073192434, 29.439030094279687, 25.116126513951208, 94.53733733880888, 13.216578237203585, 15.517188852502246, 10.90455278351153, 41.49105669210883, 25.48282255407756, 48.23892515488899, 6.139940139600707, 79.57349202013089, 57.19132260032478, 24.28797340744611, 36.28878069388189, 55.198420450025424, 20.978349747596113, 206.02109502423082, 12.597843082364966, 96.01969077601939, 12.930422712212762, 54.20030090318163, 90.57392248689973, 73.68382758119724, 8.592432102718591, 104.13916343917329, 134.53460402109332, 22.284219244876837, 50.89280015864058, 67.14449819668714, 12.055434374983513, 9.123247639504445, 138.00468862347992, 27.8343793146205, 30.23269087987225, 18.094736501412587, 11.373175212293718, 27.127724328999065, 71.09436379352553, 22.129761201972087, 8.642894340442378, 46.41785220014456, 7.478951954089011, 101.26985606613795, 26.302215352789972, 17.287274885926713, 69.01122396588926, 5.469514826561917, 26.194423006551595, 19.995899230888554, 72.09631770298625, 8.030743038001411, 5.397573814200679, 8.57375056096054, 14.664996873716289, 52.82294904213838, 58.83054700185399, 32.80284676511778, 67.73104426324768, 65.69266585369327, 9.82032052678492, 157.08456345770168, 9.496451114005788, 92.19581411464556, 8.220157000029, 19.815634325889633, 6.405543660888627, 32.753063122975036, 5.4432975600795865, 40.27766829902997, 30.21696268400308, 13.849216283881173, 116.05681583776766, 7.754338321127959, 74.64827730287027, 8.127906922511134, 19.166610629322932, 67.32767598694963, 20.402527174401413, 31.730175461415136, 19.129944596040318, 20.462938039947378, 125.32317928542068, 51.07519826132231, 22.859836582835083, 5.4055057184699145, 64.62561162998583, 42.9197549756664, 17.99268968023895, 19.46775882738211, 28.33665745998616, 63.65372377316062, 117.09229855880723, 45.336851197080954, 44.86025957367801, 30.70340005392286, 80.30675424525778, 47.474366043903046, 26.776353733580137, 35.29442441294708, 73.0725043515584, 99.29787559710692, 15.561040139100545, 145.0585154834843, 18.026199958697255, 75.16078857593114, 15.909037965394079, 73.11889863143357, 7.62404125893107, 29.783584720500084, 314.1821671928982, 57.66602731385966, 27.363649704950586, 160.60136725437883, 36.80139220891751, 59.46783398057977, 59.7975349590029, 11.785453712000065, 67.56461232399977, ...])
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);
([2616910.128125488, 2617165.4407087285, 2619248.4375, 2628051.521292533, 2635825.0, 2636256.5577413663, 2637207.8125, 2866021.728533781, 2873863.3330166196, 2880666.612610754, 2880675.1450240305, 2909617.1470247516, 2937710.9375, 2965873.4375, 3034167.1875, 3093363.6668072143, 3103099.1512301504, 3120559.618558803, 3173223.747294147, 3176227.4455880383, 3180058.203098862, 3239737.204512008, 3254890.9519710606, 3272709.233033961, 3283033.5620204606, 3283040.3269229545, 3283852.634178194, 3307010.683412797, 3307291.421004599, 3323456.6823062287, 3326231.25, 3337954.051170369, 3339356.25, 3339940.625, 3387848.5245977174, 3409642.1875, 3409654.1289562895, 3421877.601480128, 3425660.9375, 3425671.875, 3446190.365972727, 3502619.712434371, 3502830.6650709636, 3520466.723875049, 3528219.2159969416, 3541368.2608061954, 3541390.4491522773, 3542935.658275728, 3552934.375, 3555153.125, 3555383.91933289, 3560977.5386021733, 3566822.955754897, 3567314.0625, 3596626.71839932, 3597538.3154056696, 3616505.924612023, 3636631.9325005566, 3636656.2449111906, 3656576.5625, 3662576.5625, 3671946.9030535365, 3671971.2435381124, 3672543.75, 3674193.7015171153, 3676625.526894188, 3676656.885166768, 3677134.251792078, 3689967.1875, 3699412.5, 3700434.375, 3701131.25, 3701527.659217692, 3705068.5415646695, 3721260.042510581, 3721271.5486990195, 3799487.5, 3800283.9368867166, 3800826.8408012977, 3814795.3125, 3814920.5195360477, 3815176.5625, 3816614.2656013006, 3816969.775162261, 3833561.0974926497, 3835395.3125, 3846661.924304829, 3849845.3125, 3877451.1339812307, 3896874.7203830522, 3901031.8094091504, 3901804.356152447, 3903184.21856612, 3904828.105301212, 3907871.9750559903, 3908112.0549347266, 3910162.071941831, 3910275.479136598, 3910402.9324110947, 3934962.5708941473, 3943479.6875, 3947951.8230813863, 3948055.754760935, 3948801.5625, 3951944.35074203, 3955695.1116131195, 3996019.3269747198, 4017884.2751220902, 4026078.8023702228, 4029773.500667028, 4030793.327814439, 4031434.8323488412, 4036492.429850498, 4049134.375, 4055250.367274776, 4074944.0288277585, 4079459.6056127427, 4083218.6683311258, 4084059.375, 4084066.778194478, 4093943.536109114, 4096526.937516361, 4097373.8631767803, 4099901.5625, 4101144.7718440495, 4101240.0024887007, 4104052.4784644837, 4118162.5, 4154182.8125, 4155395.3125, 4159699.4617695254, 4201010.9375, 4206417.011129679, 4206428.583668795, 4206613.699279911, 4206701.889354672, 4206925.8585214475, 4207035.9375, 4207067.773491226, 4207184.375, 4207338.730061414, 4207523.4375, 4208175.031184966, 4208187.656448024, 4208278.180976066, 4208554.3930065185, 4208861.035101864, 4209024.491568424, 4210833.577010125, 4212187.537501263, 4212221.875, 4237325.986344811, 4237429.550273406, 4251411.960516705, 4252641.767797381, 4303453.283789047, 4330474.729855101, 4334859.8108347915, 4335054.12041468, 4352609.018167763, 4356468.75, 4399383.13162565, 4402553.125, 4403567.073087822, 4406547.659178933, 4411372.843208045, 4418838.489369792, 4420584.375, 4441482.8125, 4453057.255360344, 4463631.25, 4465254.376648451, 4537891.698911569, 4546248.291555384, 4547257.8125, 4548039.897663509, 4567927.05572429, 4573487.647423084, 4761777.014139086, 4768581.08594264, 4771458.52645148, 4776566.835224201, 4778739.250724038, 4782718.75, 4785247.818543067, 4786152.216108803, 4809172.968262047, 4838616.736114484, 4865197.4803684205, 4888220.609906609, 4935524.184829173, 4937659.375, 4961451.789557535, 4987376.561374465, 5042707.8125, 5046650.886893208, 5055155.402567547, 5062884.07725912, 5063251.752752214, 5066265.625, 5066298.4375, 5070202.348594007, 5070766.364605218, 5071341.7340032095, 5153212.802010804, 5197173.210070295, 5218531.602357681, 5220264.309847529, 5230286.6161838835, 5264252.045187008, 5297560.52933049, 5313835.912128503, 5345249.6607326465, 5346694.701766902, 5347564.720694101, 5355251.115515129, 5370307.45916087, 5378645.849380501, 5395682.619706394, 5440773.4375, 5478112.319809959, 5486796.1478139935, 5492535.9375, 5498381.25, 5499407.422037284, 5499907.290704544, 5500526.516107895, 5509996.875, 5510607.473820749, 5510707.8125, 5512711.582073579, 5514493.75, 5517403.125, 5518748.4375, 5518748.8262944855, 5518818.5680527715, 5518902.94538888, 5519128.771177637, 5520272.30648622, 5523249.943009089, 5523253.125, 5523784.354934907, 5544024.747993346, 5544887.382015132, 5547282.392796374, 5547568.76164587, 5553369.951277565, 5553440.625, 5553533.02902473, 5553543.118670336, 5553606.25, 5554127.988061837, 5554237.450691744, 5554318.005781613, 5554497.079458677, 5554587.5, 5554679.6875, 5554839.015753994, 5555234.375, 5555251.5625, 5555593.140711991, 5555790.039806388, 5555878.97287575, 5555888.166430163, 5555911.28688181, 5556259.375, 5556270.195437913, 5556367.1875, 5556611.991054763, 5556870.589053156, 5557101.5625, 5557150.837493118, 5557154.105777069, 5557242.1875, 5557321.875, 5557377.206744861, 5557491.872852017, 5557686.64224602, 5557806.25, 5557884.375, 5557891.906202761, 5557946.875, 5558092.141694903, 5558296.875, 5558459.667059279, 5558484.375, 5558604.305887245, 5558649.6904069455, 5558797.563351042, 5558912.504686514, 5559067.1875, 5559190.350988276, 5559294.2897857865, 5559362.293666746, 5559368.75, 5559392.153222651, 5559394.407237601, 5559439.999707463, 5559446.875, 5559521.740035693, 5559917.17071831, 5559954.881678919, 5559987.5, 5560052.659811984, 5560215.625, 5560243.829283668, 5560265.625, 5560716.250040368, 5560946.301750564, 5561186.707467666, 5561196.875, 5561251.033112885, 5561321.426065629, 5561324.385916891, 5561334.375, 5561420.3125, 5561625.430907532, 5561699.15323786, 5561789.0625, 5561821.623652724, 5562058.405637475, 5562090.506454315, 5562429.329201981, 5562523.4375, 5562687.830883034, 5562735.9375, 5562750.0, 5562862.102741971, 5562957.303471571, 5562982.564130804, 5563226.849652582, 5563318.160032184, 5563470.3125, 5563929.356653825, 5564457.323762922, 5564541.544562388, 5564653.106892095, 5564955.752217154, 5565224.769526645, 5565458.29818876, 5565817.1875, 5566494.425733781, 5566787.839001906, 5567258.212129861, 5567529.362142742, 5568897.22214749, 5570020.3125, 5570129.555340062, 5570605.896254839, 5570799.856606922, 5570810.9375, 5571580.587359796, 5571627.4095370555, 5571643.75, 5572140.294195328, 5572377.942241305, 5572635.9375, 5572793.499847787, 5572905.906822014, 5572982.927018177, 5573171.119583035, 5573721.23740176, 5574531.861000448, 5575088.24452109, 5576132.505981499, 5576364.053613144, 5576396.298733112, 5577018.296917102, 5577734.788978368, 5577873.9717373345, 5578210.853539814, 5578600.0, 5579891.285483051, 5582097.88130175, 5582576.5625, 5582777.695936882, 5582884.427143584, 5583295.735947629, 5588313.588162545, 5588881.25, 5590024.102956767, 5594343.417994731, 5600126.541134895, 5600149.598586257, 5614487.184084641, 5623344.241756342, 5624066.365095167, 5624905.927183282, 5625876.5625, 5626362.5, 5637831.838958929, 5648583.48332519, 5666912.5, 5667523.527756905, 5676002.949551163, 5676422.687221307, 5676424.89545025, 5677570.3125, 5678618.75, 5679772.794510219, 5683905.921688032, 5684574.315650698, 5686226.5625, 5686496.860439329, 5687241.790556491, 5687675.0, 5692149.29253359, 5694919.554121914, 5699385.175769175, 5702299.536428458, 5707728.614871587, 5710315.433445183, 5711012.5, 5714133.171784582, 5714442.1875, 5714524.439860413, 5714843.220779131, 5715437.685527401, 5719846.710955483, 5719970.3125, 5721450.0, 5721674.553988841, 5722103.593309888, 5722643.75, 5723146.295678715, 5724295.488446133, 5733439.0625, 5738182.632005815, 5740928.125, 5750885.5306085935, 5768734.375, 5769012.319644523, 5769572.400310104, 5769702.078381691, 5770823.692597376, 5772505.394530764, 5772687.5, 5774469.9040288245, 5775759.375, 5775791.778038896, 5792625.983256674, 5795060.935016451, 5795061.859699952, 5799673.558950759, 5804822.769442065, 5804890.265307948, 5813314.0625, 5814663.743577618, 5814676.5625, 5815236.488874992, 5816883.020313174, 5817917.1875, 5817926.463245726, 5818066.753710782, 5818263.178867891, 5818361.868414008, 5818910.803858885, 5818986.175310654, 5820151.191302058, 5820277.891804688, 5820297.496505159, 5820592.827633571, 5821400.223767379, 5821408.392533836, 5821461.855103491, 5821870.3125, 5822526.5625, 5823649.710849116, 5823831.861507996, 5824014.0625, 5824078.125, 5824145.773299212, 5824235.9375, 5824239.874872343, 5824472.45275182, 5824610.917379045, 5824640.625, 5827044.47818756, 5827201.0703355605, 5827880.267347034, 5827998.097975311, 5828185.818413532, 5828186.120752614, 5829892.1875, 5832299.650384268, 5833898.4375, 5836807.8125, 5836900.0, 5836995.3125, 5837254.260082906, 5839135.251883714, 5839956.25, 5840084.375, 5841439.0625, 5842192.125681396, 5849321.885823372, 5851216.746497901, 5852947.259881253, 5853846.386538744, 5854203.323205166, 5854845.73490136, 5855728.125, 5855745.3125, 5856380.950410627, 5856609.375, 5857073.276877499, 5857821.944855271, 5859438.357128433, 5859624.856723884, 5862954.215819598, 5863301.242923414, 5863615.5213039415, 5864817.900712732, 5865081.1967378, 5865631.25, 5867015.625, 5867021.663726277, 5867415.625, 5867665.966399808, 5874078.747932597, 5875881.787273489, 5875882.609605964, 5876707.8125, 5877049.4655069485, 5879909.14340283, 5880254.6875, 5880454.4654972255, 5880655.305095998, 5880853.125, 5880943.75, 5881195.952684253, 5881278.59042362, 5882100.304505067, 5882139.729381193, 5882800.075842048, 5883019.694291965, 5883179.6875, 5883373.960788552, 5883413.228543646, 5883607.8125, 5884042.363385884, 5884503.890910991, 5884897.1290713865, 5884900.53423386, 5884996.331354184, 5885590.2713377625, 5885872.342737951, 5886214.0625, 5886535.919671834, 5886565.625, 5886674.492628077, 5886685.213926035, 5887185.9375, 5887560.717656142, 5888395.08911714, 5888875.0, 5892778.125, 5893167.967699845, 5893494.580661443, 5893606.994417584, 5894570.3125, 5894822.2493495345, 5895063.629978283, 5895285.076485865, 5895317.861968438, 5895476.713013183, 5896884.375, 5897953.016787362, 5898545.3125, 5898565.142827724, 5898565.534145279, 5898622.320856619, 5899528.65755813, 5899746.875, 5900503.012206068, 5900718.75, 5900952.1645551585, 5901143.75, 5901607.8125, 5901879.911257279, 5901933.601016901, 5902316.465588939, 5902337.5, 5903557.222535357, 5903567.815515594, 5903658.472681342, 5903903.125, 5903933.072643105, 5904227.506396645, 5904879.6875, 5904880.223984144, 5905044.638222791, 5905119.7556809215, 5905257.864575548, 5905377.101636034, 5907131.25, 5907555.965559105, 5907947.203115324, 5908353.373370371, 5909356.634314312, 5909881.672827476, 5910479.6875, 5912673.4375, 5914739.378624743, 5915477.842672749, 5916282.19299771, 5917131.241504944, 5917555.472083761, 5918214.000510726, 5918279.211549152, 5918507.8125, 5918777.975834549, 5919615.276050768, 5919645.990926573, 5919792.689432297, 5920098.102077309, 5920204.255775319, 5920406.25, 5920456.647764956, 5920810.9375, 5920857.8125, 5920880.5986122545, 5920942.581783483, 5920949.200510158, 5920963.4919342045, 5920983.817153078, 5921045.18236881, 5921068.75, 5921448.746980738, 5921480.450800229, 5921580.976828462, 5921581.25, 5921748.4375, 5921850.0, 5921853.073053485, 5921868.135775382, 5921970.3125, 5921974.644520952, 5921988.640597961, 5921991.562735901, 5922015.625, 5922083.961184452, 5922175.0, 5922175.557739035, 5922370.6357417535, 5922386.0025753975, 5922450.0, 5922473.596788953, 5922489.0625, 5922543.6917771045, 5922547.2812213935, 5922587.8436840875, 5922626.058275538, 5922702.684512124, 5922755.091654353, 5922855.492352822, 5922895.140606018, 5922912.381965296, 5922914.0625, 5922930.104106639, 5922994.233939275, 5923005.9636744335, 5923037.444460405, 5923051.212102653, 5923091.942556615, 5923203.198758365, 5923223.709458032, 5923239.619937888, 5923245.3125, 5923504.6875, 5923550.0, 5923598.5782643575, 5923601.808188901, 5923605.446171925, 5923660.476617747, 5923687.068200162, 5923709.695078342, 5923720.3125, 5923726.5625, 5923914.016694986, 5923925.0, 5923938.312443851, 5924011.883058283, 5924075.540713734, 5924076.603246968, 5924149.443459428, 5924185.9375, 5924187.5, 5924192.519654931, 5924215.625, 5924282.250287476, 5924286.434414469, 5924297.367661914, 5924298.4375, 5924423.515649916, 5924432.786150713, 5924476.5625, 5924490.242387994, 5924515.625, 5924518.062658306, 5924540.625, 5924554.028577548, 5924581.776378708, 5924654.447231013, 5924767.362387593, 5924807.868752291, 5924871.30350773, 5924897.921502502, 5924913.8973575635, 5925003.125, 5925033.663076842, 5925106.25, 5925112.5, 5925113.188630194, 5925142.287254783, 5925143.924581626, 5925166.672782503, 5925169.515928848, 5925191.989393885, 5925323.311994259, 5925334.375, 5925340.2350831535, 5925355.303026266, 5925370.048171896, 5925385.692894807, 5925391.343774729, 5925428.50222571, 5925434.098402506, 5925443.617902286, 5925461.657405475, 5925491.027130852, 5925493.75, 5925494.822944505, 5925509.057433515, 5925550.8346423395, 5925564.40381261, 5925566.5524580665, 5925603.125, 5925627.721649959, 5925627.997636195, 5925644.11001765, 5925673.4375, 5925764.316996352, 5925776.5625, 5925864.883856199, 5925898.12314167, 5925899.906132607, 5925906.261337778, 5925917.815681854, 5925960.845894258, 5925976.026625983, 5925976.5625, 5925978.125, 5925979.702297849, 5926007.8125, 5926008.633457795, 5926010.9375, 5926012.5, 5926057.490416053, 5926064.0625, 5926078.125, 5926094.11356325, 5926105.673967695, 5926146.721187135, 5926156.563693815, 5926168.75, 5926173.4345381055, 5926174.9324285155, 5926178.125, 5926244.996867754, 5926246.966838671, 5926257.8125, 5926281.954224902, 5926317.873885182, 5926321.406110043, 5926324.842737435, 5926334.221132643, 5926359.4405774465, 5926396.875, 5926427.795358622, 5926489.134705877, 5926493.75, 5926570.954852693, 5926615.077720669, 5926637.5, 5926668.75, 5926670.411724915, 5926704.309119755, 5926709.690502951, 5926746.875, 5926761.9798182985, 5926767.1875, 5926767.860307814, 5926828.427717931, 5926837.3364135055, 5926861.503615081, 5926862.054924812, 5926866.074423305, 5926889.80588248, 5926906.095891328, 5926917.1875, 5926935.9375, 5926980.2982707545, 5927052.703564159, 5927187.234704949, 5927214.888557679, 5927217.1875, 5927220.3125, 5927236.815437528, 5927241.302084772, 5927314.044084484, 5927325.641174776, 5927330.536758577, 5927350.641856243, 5927381.050526594, 5927455.552746982, 5927462.3810333125, 5927462.568366278, 5927485.9375, 5927504.6875, 5927513.922515198, 5927557.465596321, 5927643.75, 5927687.5, 5927688.217444872, 5927735.213705582, 5927770.281583576, 5927780.326261152, 5927843.8170508435, 5927883.082056239, 5927924.593024989, 5927979.785968397, 5928065.107868914, 5928127.940137242, 5928175.620677941, 5928184.5778454915, 5928203.815364081, 5928224.819938891, 5928240.058108936, 5928242.1875, 5928303.125, 5928322.051507663, 5928333.240644172, 5928368.3846506355, 5928371.875, 5928388.522301002, 5928390.625, 5928450.0, 5928537.5, 5928542.276627987, 5928551.5625, 5928565.984369502, 5928626.087684821, 5928706.973104348, 5928789.0625, 5928943.75, 5929066.718076951, 5929087.5, 5929178.125, 5929206.25, 5929468.876243604, 5929509.68457472, 5929571.489498275, 5929597.458637986, 5929671.000232882, 5929697.436406046, 5929732.8125, 5929734.984165266, 5929817.1875, 5929924.821017075, 5930010.982720642, 5930332.8125, 5930354.259048515, 5930557.8125, 5930592.1875, 5930622.117091335, 5930989.430282033, 5931029.6875, 5931037.759209486, 5931107.5526817255, 5931478.125, 5931679.6875, 5931701.810146973, 5931703.183999052, 5931823.4375, 5931901.810928272, 5932015.768259665, 5932045.164882471, 5932059.035153304, 5932202.94949163, 5932228.125, 5932245.796683535, 5932282.8125, 5932410.7889906615, 5932560.678425442, 5932929.6875, 5933051.5625, 5933305.751831715, 5933551.0872829715, 5933575.773176089, 5933620.3811662905, 5933943.098896948, 5933962.5, 5933964.0625, 5934118.052293752, 5934161.4743116805, 5934372.95191653, 5934487.358828605, 5934718.325810227, 5934769.540206643, 5934951.5625, 5935275.522196732, 5935284.118119314, 5940217.31827511, 5941779.651634794, 5942663.947542714, 5942742.82518343, 5943664.214064846, 5944156.175199898, 5946330.252898725, 5950510.499038639, 5951016.243050965, 5952073.4375, 5952080.89277797, 5952594.712439608, 5952646.0197103005, 5953716.128966017, 5957394.257061958, 5958886.1167895, 5958999.869919256, 5960491.320372709, 5963014.0625, 5964926.045211523, 5966862.476432014, 5969505.193745459, 5971713.224584664, 5972345.3125, 5972570.355101292, 5972929.6875, 5973276.5625, 5973327.596603642, 5973402.089168839, 5973901.464164316, 5974240.813951058, 5974272.622988844, 5974545.184750167, 5975123.167025958, 5976379.146787396, 5976997.195824635, 5977529.2500199005, 5978035.9375, 5978644.692529509, 5978918.430518566, 5979885.479233179, 5980317.58680223, 5980867.1875, 5981599.68739537, 5982216.417694152, 5982642.1875, 5983560.320754225, 5984904.6875, 5991788.287762691, 5991799.838343853, 5993204.5549012795, 5993474.132160784, 5993704.314399777, 5993756.432725918, 5994039.163660661, 5994854.6875, 5994869.371657177, 5996097.70729334, 5996529.677915047, 5996619.594847016, 5996732.8125, 5996970.3125, 5996982.8125, 5997262.5, 5997297.014291694, 5997406.25, 5997482.71742748, 5997487.120044267, 6010202.42647878, 6015637.991685458, 6015654.841069895, 6015839.223608521, 6017243.857110991, 6017504.6875, 6019176.7951200325, 6019388.812452289, 6019865.682154855, 6020034.375, 6020102.921194886, 6020977.970340057, 6021585.875964514, 6022353.125, 6023153.125, 6023512.5, 6023771.107856442, 6023811.321149229, 6023982.42467778, ...], [7.334575084376824, 5.524202658046262, 32.23481598740344, 22.467668881832147, 28.945042682048637, 49.95450808421111, 75.07869966597252, 20.211028170251783, 10.151395162939334, 73.26278878239225, 15.524668702745785, 71.41130271427528, 32.5870115013686, 56.22714588864862, 52.309342834212266, 22.419587300833417, 17.190335035896652, 23.526935118055324, 33.940371901201715, 7.957246713174921, 22.41817594821752, 69.54862414066912, 11.68037421316055, 14.426670139940459, 88.50334504065609, 6.44135862877645, 21.585148836673515, 37.06685139545222, 12.650985802372704, 24.45857185767294, 65.51263122992128, 12.967560529001076, 38.4153242922891, 34.09320943583356, 11.266631018323285, 60.24970086610754, 20.928320281135957, 54.904328087133806, 76.94380817021684, 129.92853458071124, 7.0549862362622076, 20.549776448271622, 7.404545937904754, 7.443739373963047, 7.249583739262482, 162.33888947629288, 20.862556892571952, 32.926866083452715, 46.131329928418026, 85.86711153428416, 24.45127564222075, 10.609434434793851, 8.954774463170075, 55.57775737189074, 15.570995286231543, 19.337846742353946, 5.036102847764618, 29.2030159558659, 11.119761972225715, 76.34420612125234, 82.6623016086213, 15.049525443539045, 20.274819139269873, 65.1169259634408, 27.600621138016002, 12.06493150683496, 12.290498864354626, 80.94215992350524, 51.010545812810264, 82.50045563066747, 79.59422569098726, 37.90043954744591, 14.392421592869681, 14.20241876891817, 85.67378488125546, 14.185468232377609, 46.87763950416424, 158.23547105212424, 122.65559391334446, 58.75781458178256, 15.794072854916609, 45.624524994997834, 27.550839281536504, 8.021492727301432, 21.435250557042515, 35.95266278761676, 6.977918107765779, 69.29982959813208, 20.1791805307273, 69.82289534873938, 12.131315207198062, 168.075122964377, 7.080928278451123, 5.2904791634661406, 13.87087576320653, 22.059184749026155, 103.47411862145017, 5.641112702136227, 7.53503576817377, 5.205231855535851, 44.1428653895965, 5.962424385466341, 31.07961089213807, 76.21097306181458, 9.89686861203349, 51.22471518833731, 60.55549263972616, 6.471547648560806, 26.10123100078459, 11.22789752881422, 83.89271171401948, 17.027607765274162, 15.953371054427535, 60.67539614792926, 9.662542375536797, 25.88749836192281, 13.230045975553434, 27.00744567069238, 60.345247063375396, 10.543016207914395, 14.184454864807712, 53.90489389247992, 8.525285271308064, 62.175893768364645, 25.839810839650866, 5.5036120759064575, 43.163669210768106, 67.4682785606748, 41.49343740408687, 70.73817310875364, 18.30769189205337, 82.20900332157069, 109.60633969775556, 5.107591863677703, 27.88231881945746, 24.885677588724512, 15.538573784010133, 30.39316912976178, 20.000564062492963, 57.71432369813259, 23.345042439581064, 131.02601413121178, 131.04700581257936, 15.57334282955489, 50.72526473046016, 23.82133556753957, 75.73210531278801, 172.6975171613656, 5.2670583083065745, 11.186834024026185, 29.897862410206113, 55.46502139341496, 5.127580194743697, 16.593242088059384, 47.47428591153905, 11.385319053201249, 21.212443272025013, 15.225517367391248, 13.145995020850952, 6.051761561602178, 62.18379597168513, 22.141688926520747, 38.706799029193874, 26.45110156110571, 19.103412451272913, 114.95285631356388, 28.87296823357253, 74.70619044485565, 45.11703817971869, 8.900910943229704, 43.705233932007125, 13.875756389252974, 35.31221775591891, 25.94054473655666, 97.05570727485198, 42.7292055366122, 71.10664965290263, 16.678751181388645, 44.87152278713896, 73.56352344138504, 50.9821992536547, 23.105194141670506, 7.171824941127257, 52.818057107690684, 13.385908623224545, 9.952821769392019, 21.805556699115222, 60.557483559101826, 29.78591581109162, 84.97279835554062, 12.538487882366677, 80.31626958625631, 34.80450132018831, 28.502937107713894, 38.62912418746073, 6.020551241943363, 18.609742480540643, 33.02250117837837, 6.291538372524489, 32.4569860573159, 28.683729922476555, 121.02050635742684, 5.656314569731024, 92.64750908849413, 34.79004477186132, 14.140155950724465, 6.835951724901595, 29.146229283690353, 20.20814064904271, 222.37565843692173, 35.33098043259804, 28.03239648818593, 6.053514949641867, 59.36423675331238, 97.41179632816498, 70.31047537213867, 32.20840917653748, 63.79800328525107, 71.950980570367, 31.69548419182983, 6.069559360158847, 8.78392034735888, 31.437280718398085, 43.26416969452613, 65.91426752726946, 108.44322495928468, 27.639033435535627, 31.634144747990614, 10.636609892291101, 39.836495451167536, 7.854284266869273, 106.51614351297579, 68.91957928129933, 53.800969341027056, 7.227547231361428, 5.240081339382056, 41.53102368638916, 134.1856718122218, 6.556926778477844, 14.728646782134424, 65.31753832877088, 74.51825290624991, 82.04353221215786, 61.15517211144129, 6.215589199379795, 14.986084597764025, 10.606430516447437, 89.7773749421185, 14.672335981397666, 26.23073619038287, 44.945759572831236, 7.085914100540584, 9.290055386239606, 7.3545565510162945, 6.293380528694206, 69.60030175981333, 51.874317158758615, 62.70934980352831, 55.4587666106859, 118.19642796745686, 20.46803103556345, 13.098623503220484, 19.589641910921458, 71.87728764119146, 28.512259110824345, 57.97001897608522, 58.58445654072831, 30.478683959497403, 111.67591570786975, 16.111934271110165, 64.95109176878984, 31.819771044028712, 10.325801192378812, 48.6669986481019, 82.0043004540031, 61.88488704160603, 33.79535278746254, 39.70436518046868, 62.23988051390502, 40.27931348662423, 5.689086362965425, 36.15460560815283, 36.096871972186975, 141.31456589007902, 114.85320037479708, 46.08634389751681, 31.772790273117085, 23.628972257117752, 30.375656061212318, 14.959402355292644, 48.639517338613594, 10.724817262472365, 23.34757902447671, 7.53027715713537, 51.385043706105, 6.756682601690777, 12.338104896847845, 10.273296633001376, 31.854987363575844, 16.548086560557017, 28.196988159498417, 7.675011892419854, 85.54959105238731, 19.160342475017806, 43.81472797758302, 15.252565134328544, 48.21465163813473, 12.268845621598757, 30.895335692166377, 7.907673565067307, 137.9646550648405, 5.77582170465139, 11.283038781538284, 20.425853039402018, 43.164146493682274, 32.3864279002305, 11.875395729396672, 18.614372027220412, 118.61289061342885, 10.756319273481495, 50.92154961277039, 26.38280388997994, 31.9561504621628, 47.634034842229454, 16.37290315276077, 48.116396878474255, 56.51905712991661, 13.6165243835903, 35.34034517695658, 24.43344531135561, 9.58661238505831, 32.427816456198556, 85.78450395043161, 88.9798875003877, 43.46850228072702, 66.74663276425304, 29.616870836572442, 21.515246079471908, 5.521998525581361, 28.912752339616475, 53.34896507316823, 9.976574074474257, 87.00186730794965, 77.94391635854998, 10.936885978697134, 11.71743911895318, 114.09080901353988, 23.18451792551755, 72.28089414839886, 10.910734877268686, 42.64024976086193, 10.229017233222203, 12.772293353269866, 38.733351109479074, 23.36507134286564, 67.02600028699968, 96.8456267349582, 9.128478357480956, 7.483659345114373, 20.943283602832828, 21.10024864013, 20.222165019100526, 12.239018420063253, 18.816037967504656, 82.04337347629753, 28.350292686856505, 63.94561159864185, 27.263705894981772, 16.795204382310366, 17.461659128056624, 24.463312029106568, 55.03717106181479, 12.345153324050491, 37.53464703669643, 32.225692258181844, 53.41588513226094, 5.099483888018506, 23.46792212985457, 99.7635351347323, 41.406995930296915, 94.15143323933876, 76.92348044998948, 16.504193199855294, 37.113892647013415, 13.860165366342732, 36.45369168084232, 174.99141851071582, 101.49935356822029, 34.87184693554363, 60.86892771518188, 9.884549204730547, 62.54435609302513, 30.312966708987023, 15.297060087998037, 50.8273134033549, 28.16978973218135, 26.615779874575402, 175.21637530676708, 102.40656154110069, 10.25223211691207, 10.650586692990716, 15.565017023083339, 41.37928036254147, 11.105023555541656, 99.93860163221491, 34.64035859869695, 51.70751978532674, 10.11847048093902, 29.441830290693247, 59.11114990239125, 11.990708300858397, 5.60353404189908, 98.55024855957979, 6.126275921318971, 41.0094339493617, 8.898793704746312, 8.920709617596101, 19.317417855315654, 10.880623508261404, 43.26926673717737, 51.14877318141663, 39.50862718500294, 11.948134501376098, 57.62896781713553, 20.736712882880663, 42.6489801945405, 117.3417606541062, 6.459164581760779, 82.241656759101, 32.14470733849973, 71.39857160216405, 10.857035146098225, 36.29829587808986, 8.579622331662472, 11.992577106293133, 144.9086398422704, 72.08068107406555, 19.005291135158608, 59.33831542495326, 10.542813100764981, 13.114133229181913, 14.932051740553643, 20.19909180176905, 8.351863994074462, 5.578124605833658, 13.727475911037603, 84.67038698065986, 10.663299020701984, 30.21985774354433, 14.045625097729026, 11.926856141134023, 40.00096251288235, 22.269822595439045, 22.18003318394881, 25.296324725372397, 71.2609262758385, 57.22439447054315, 123.81833402204467, 21.541745645185916, 131.11946441378888, 36.688333413001146, 89.18398141614759, 35.158939906857675, 18.06185309270002, 20.159992027114974, 34.39716906748093, 78.72166239741111, 10.703946539261796, 17.928844203438402, 37.74628381939455, 129.63941687958135, 36.66370327343287, 39.670377110845536, 19.314748177798524, 25.347764876746513, 14.86536838341997, 90.52266828312841, 7.326997187935213, 21.571621864369995, 9.875059946022773, 120.87701683009233, 33.654582403416455, 6.800651428652257, 29.778750381428843, 72.5187685816449, 50.8500187037557, 52.5671525780033, 112.75816633976541, 51.805016642050035, 45.880499761035274, 5.372894818381604, 54.20136411614779, 69.38413352262063, 47.48632446358084, 27.358563135984408, 5.6146431959002605, 27.337778090867012, 8.50116549318636, 50.94278143582526, 17.932667220487083, 9.716072782319538, 49.040778977792804, 28.620880558913008, 34.79177696998746, 48.51711936915862, 51.56035137199713, 30.75631831742797, 40.19088635760912, 10.910906205723695, 10.462639723871183, 76.94569925067275, 35.47068975201207, 13.695934023735642, 14.742312031827336, 70.58471768701003, 50.72575522364278, 30.1194880805019, 91.6086890169276, 97.34236633026445, 18.00075541423641, 7.809850280938853, 126.4875926691935, 37.46710808286313, 21.155778800803045, 14.126600143319791, 119.8779375742257, 24.800942388442476, 61.66101619039276, 28.68682979618652, 91.45999927960824, 18.110798165500263, 5.556103594783815, 5.300586796410679, 9.967046294667108, 23.28984447582628, 8.858194714988077, 32.69933174894958, 17.398046904207842, 7.889858024061932, 90.06999235914785, 23.581551805790042, 18.96963241299131, 9.555889851572925, 39.22430308018848, 26.633046009955542, 28.823002312745768, 13.86356127674625, 86.05986812730599, 35.12179849195781, 67.38414345481384, 21.640361528420932, 20.381312271334263, 39.254329400154596, 104.1548900557584, 33.89391298161597, 86.27010129708796, 41.268263616873874, 19.07406478549368, 34.43212022539953, 39.505344252291536, 39.47183486764721, 9.669352623736797, 68.98018443169913, 42.82020371233509, 18.334832560438226, 15.548003555602897, 72.64482510638791, 48.73658955014429, 67.44765734774143, 21.672804041501188, 5.7010000663843, 5.049138359741933, 17.45186278201751, 37.47147659974134, 26.477955146393047, 43.31346423211418, 200.13152922835081, 42.973266994725634, 46.06029461088679, 175.88324487285772, 40.76739555786608, 25.026247554561323, 42.133418786593154, 53.085363118510095, 64.74322411695138, 12.106645619875007, 89.56160444515356, 68.2918889911024, 6.026048630277403, 60.16074144185052, 166.16704512461533, 32.28413184231354, 20.944425987486273, 88.70042858893984, 24.291493771571076, 31.300747462204214, 13.957906986458136, 16.359329390479438, 15.980968740781991, 132.945510853979, 32.89922878148253, 57.46290747983012, 56.43330525741685, 9.613817469995924, 13.964542688315337, 13.010254485041365, 85.73575599252563, 66.7321026542752, 14.710384622986899, 21.73640549519623, 38.900704820262085, 25.88971849198598, 7.48172318856802, 18.361167631802637, 14.113276879622376, 19.07868798206586, 8.991217155635761, 143.3570971059101, 52.53248692613804, 29.74354605154963, 31.42489327230742, 35.27899142259637, 42.65396774444497, 55.69700109698491, 69.79014801149698, 90.71964403221583, 14.467671548664272, 50.23209490128825, 24.55265294931844, 63.780282667228946, 58.777362921543485, 66.10279144055798, 79.40670546351247, 68.17846660659924, 60.103974478326386, 20.424611664464287, 41.46294888695157, 23.06703066896795, 59.73386050232005, 10.27392792312875, 115.94933950750958, 7.460124352953089, 84.6361475954604, 6.5782265262153805, 68.16572858543154, 129.52412737130226, 96.70112808621771, 15.585512976453485, 60.47161116742207, 37.76477388110689, 20.865802550545776, 28.285806679342464, 6.205527990034531, 27.555035246071203, 31.689100061272732, 19.257793128809006, 63.40727550873024, 9.233553298953156, 48.02760900513228, 110.90911447257852, 17.17443133043729, 34.724901061792465, 58.058464022362486, 85.59067942972186, 32.14987728754868, 23.333152933830902, 7.704653823688739, 36.1831117741938, 34.352613654267294, 135.21704926162906, 41.28886143547782, 15.50662730250259, 11.702863204814035, 8.733129388904306, 31.37392008223182, 10.513787948392572, 11.667797174844509, 44.712759663851394, 38.92332611465599, 144.2465456260966, 36.83992165757678, 12.689680314059324, 91.94500794112437, 5.987919216133099, 6.771668740964754, 31.999336095548898, 89.079233649065, 75.34825923476149, 44.85230421349562, 34.238827938514156, 102.63912786600706, 137.15058865241627, 17.223337649500518, 75.11274067067163, 9.398369246144188, 14.306127193523775, 32.83408229783448, 98.64147015563282, 160.01179933938297, 42.8782051841486, 31.773921644562545, 5.319838681543887, 12.063888187334939, 14.057518593582877, 11.412531972666269, 8.316550189192421, 5.671327091606536, 21.334987350037608, 22.757526501113432, 73.64749221092802, 10.171588347636495, 49.48570401725332, 74.41706764730019, 18.429515638090102, 9.417200283213488, 11.412012810326972, 21.347531032187966, 88.08435930018261, 14.236610656508788, 26.26875159484961, 117.6361164352494, 5.5144512378290464, 17.954050426025123, 7.053659171421493, 94.11714192959715, 12.473898852075683, 40.152290451461276, 106.11317907253667, 188.48531061725618, 5.655152451217222, 40.84471429171292, 70.58098574524325, 21.597926333268788, 70.23990375671409, 19.486007488116023, 263.3392391559827, 12.970812789681235, 87.75443283762898, 22.51464140066919, 39.36181878966449, 9.655574625823487, 31.110529889651907, 16.00918781190568, 48.57408447662024, 46.00851337163209, 46.20232183549882, 108.98368985877286, 11.145474842864324, 113.75864481289945, 26.83567149093143, 21.14254972168986, 34.019428645756754, 88.27393530457164, 36.98201627535522, 63.14721379373311, 27.23817471482203, 62.838463722162544, 77.31962762129106, 7.039283494386366, 107.14250272611176, 45.386143494879164, 18.178447872615187, 15.414545282979164, 25.81680023375742, 11.656185794832531, 144.7598532457926, 39.078901786115296, 58.296307401333394, 99.85368537223721, 15.519250243544137, 5.167505979507444, 58.35613958320733, 18.53527209708475, 23.385903963763774, 171.52068562706035, 25.762992428477833, 82.90305923614383, 6.094945345969313, 58.64390823256677, 31.703806186664913, 5.819342270716099, 54.04033861218591, 18.12475545521186, 159.0905432680421, 118.50203045534207, 64.66368463117611, 6.78347906220834, 8.096130451548513, 103.68519984411779, 69.38136531216847, 32.92500479343908, 91.08779943404032, 56.451383207513565, 5.0466824621356245, 25.665049764899553, 17.65044717371058, 91.79743894661557, 7.774297846863668, 80.28395685688142, 5.095435116489223, 212.9292617783795, 30.777632874936888, 34.98222061532311, 34.26638153691033, 12.364345280499647, 18.75921982677354, 46.57923959254774, 51.12820380796215, 6.9524224218410895, 18.35222899029333, 33.69069147493145, 72.81013813272052, 12.777654507668393, 23.44495509666142, 25.125775979830184, 38.783343752775195, 10.946710073812412, 8.323064495875231, 86.716966660026, 53.68615240635773, 14.433510919685885, 14.523428569100933, 60.78343474586048, 29.410550358109905, 31.45516114605875, 12.752247689783836, 35.95503586222111, 18.10165362766301, 11.234154296493186, 9.570225762333004, 5.090529547460171, 11.285188254046634, 57.08438421876848, 25.342005287019717, 72.25323495647163, 11.460294573087326, 104.5859360271844, 16.933654890493933, 8.00794159670044, 34.145360306896436, 102.7785657462414, 5.044531011066935, 7.238737305121999, 22.950405619915294, 64.16053195800211, 80.45442676876729, 182.9573619701327, 90.1778063219279, 49.93549344602075, 86.50329793446485, 71.88923509210628, 16.514412256893532, 10.458655145800144, 7.887531898014449, 60.56222178022445, 90.86011237186966, 13.410576547147345, 55.93908058070543, 87.7867332774289, 56.32011968091793, 15.445561008710813, 11.648714000395737, 84.46583518044235, 17.756553815749456, 32.72499573748703, 37.792194538765884, 31.95027885090242, 30.344892599737218, 61.455942494684564, 41.754003404341006, 35.59236876438786, 80.48405839076736, 30.123435102003874, 60.26904831249423, 66.31837233397113, 154.45136026550253, 101.55463000179554, 82.62452528337451, 16.030991929398454, 98.3801412796261, 40.58245840157979, 38.858012073192434, 29.439030094279687, 25.116126513951208, 94.53733733880888, 13.216578237203585, 15.517188852502246, 10.90455278351153, 41.49105669210883, 25.48282255407756, 48.23892515488899, 6.139940139600707, 79.57349202013089, 57.19132260032478, 24.28797340744611, 36.28878069388189, 55.198420450025424, 20.978349747596113, 206.02109502423082, 12.597843082364966, 96.01969077601939, 12.930422712212762, 54.20030090318163, 90.57392248689973, 73.68382758119724, 8.592432102718591, 104.13916343917329, 134.53460402109332, 22.284219244876837, 50.89280015864058, 67.14449819668714, 12.055434374983513, 9.123247639504445, 138.00468862347992, 27.8343793146205, 30.23269087987225, 18.094736501412587, 11.373175212293718, 27.127724328999065, 71.09436379352553, 22.129761201972087, 8.642894340442378, 46.41785220014456, 7.478951954089011, 101.26985606613795, 26.302215352789972, 17.287274885926713, 69.01122396588926, 5.469514826561917, 26.194423006551595, 19.995899230888554, 72.09631770298625, 8.030743038001411, 5.397573814200679, 8.57375056096054, 14.664996873716289, 52.82294904213838, 58.83054700185399, 32.80284676511778, 67.73104426324768, 65.69266585369327, 9.82032052678492, 157.08456345770168, 9.496451114005788, 92.19581411464556, 8.220157000029, 19.815634325889633, 6.405543660888627, 32.753063122975036, 5.4432975600795865, 40.27766829902997, 30.21696268400308, 13.849216283881173, 116.05681583776766, 7.754338321127959, 74.64827730287027, 8.127906922511134, 19.166610629322932, 67.32767598694963, 20.402527174401413, 31.730175461415136, 19.129944596040318, 20.462938039947378, 125.32317928542068, 51.07519826132231, 22.859836582835083, 5.4055057184699145, 64.62561162998583, 42.9197549756664, 17.99268968023895, 19.46775882738211, 28.33665745998616, 63.65372377316062, 117.09229855880723, 45.336851197080954, 44.86025957367801, 30.70340005392286, 80.30675424525778, 47.474366043903046, 26.776353733580137, 35.29442441294708, 73.0725043515584, 99.29787559710692, 15.561040139100545, 145.0585154834843, 18.026199958697255, 75.16078857593114, 15.909037965394079, 73.11889863143357, 7.62404125893107, 29.783584720500084, 314.1821671928982, 57.66602731385966, 27.363649704950586, 160.60136725437883, 36.80139220891751, 59.46783398057977, 59.7975349590029, 11.785453712000065, 67.56461232399977, ...])
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)