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 = 45260
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);
([3713555.1679711714, 3803070.3125, 3828978.125, 3838931.218048582, 3843258.9050884643, 3844190.603295422, 3853864.030210694, 3865656.25, 3877102.0883597163, 3957575.569799668, 3958466.918942268, 3988378.8140914724, 3990859.4385083676, 3990881.25, 3991477.8024937864, 3991525.7301178314, 3991930.202504294, 3992814.838866835, 3992859.375, 3993279.1225124057, 4033379.6875, 4049537.5, 4058387.493439927, 4079115.625, 4080362.564198945, 4080570.3125, 4080577.3149136393, 4080577.4491242203, 4104265.424537438, 4151942.3062239727, 4206206.25, 4207920.003538603, 4208200.0, 4208280.656858532, 4208807.012489058, 4208858.686983664, 4208862.169429464, 4209048.396905587, 4210384.929412592, 4212092.1875, 4226304.075236614, 4251651.5625, 4257790.112334235, 4257823.4375, 4257968.75, 4258159.375, 4258897.920893868, 4259300.290551852, 4259504.6875, 4259541.256046189, 4259775.8514207415, 4260134.375, 4260795.222937422, 4260895.3125, 4262934.106326468, 4264510.929848079, 4264735.9375, 4267235.941762514, 4273353.639393144, 4276800.380201818, 4279610.124220031, 4283290.51802008, 4283660.168251441, 4283702.00317083, 4283717.156432266, 4283900.172903108, 4284520.231141029, 4284569.904375061, 4286031.538085867, 4286469.604339967, 4288734.375, 4288988.8566913, 4289125.050080056, 4290505.90474339, 4290790.719022222, 4291097.959996128, 4292169.908390588, 4348716.980753237, 4357440.7497934, 4361026.5625, 4361660.9375, 4361864.0625, 4361899.156741262, 4361901.738505671, 4362623.873350227, 4363064.273670976, 4363492.635014961, 4363902.8896581065, 4363953.125, 4364762.5, 4377418.503270707, 4417126.427378428, 4418612.570201163, 4418630.560494838, 4418961.669888866, 4419027.923800098, 4419086.226850393, 4426098.4610085515, 4434745.487350586, 4451532.929677489, 4453732.222194998, 4453900.79784927, 4453922.513654055, 4454046.155543832, 4454221.875, 4454359.067908219, 4454397.531561887, 4455125.0, 4455194.561803204, 4455476.355408147, 4455528.488530398, 4456492.693043252, 4456674.918053049, 4457527.224150324, 4461406.075629597, 4461532.544780229, 4461808.569022515, 4466106.211464895, 4468789.0625, 4469299.740017969, 4469607.8125, 4472229.64350101, 4472292.08439747, 4474351.224934902, 4476120.3125, 4477074.532947819, 4477226.5625, 4478875.0, 4483937.160050461, 4484375.0, 4485810.489533687, 4486516.173485434, 4487687.922444533, 4488432.281896544, 4488860.476401447, 4488885.643896114, 4491960.9375, 4492637.5, 4505082.580933696, 4507460.5442320835, 4514257.8125, 4515132.269299321, 4523078.881174739, 4525399.568721818, 4525618.409346402, 4526962.003415312, 4527703.659619085, 4535140.407600155, 4539840.625, 4540932.740793329, 4544263.740671193, 4544301.942402486, 4545212.306965427, 4545607.774956395, 4546497.766961374, 4546737.403788823, 4548304.266764692, 4550178.125, 4552254.1319153765, 4556021.551388612, 4566056.242539127, 4569858.480445543, 4573462.099838503, 4578515.570821884, 4581396.875, 4584656.322715415, 4584990.4827101445, 4585922.599109559, 4592779.121827671, 4594100.137751218, 4595369.465409474, 4596614.124518139, 4601435.585614653, 4612962.5, 4677486.443304061, 4688928.009571393, 4691156.25, 4691306.25, 4691585.934360634, 4693807.8125, 4696371.832674445, 4698391.9539015945, 4750491.790009743, 4755189.7139436565, 4783014.203836023, 4798418.303955543, 4811784.238615981, 4812488.769669602, 4844521.845344955, 4853995.3125, 4861587.586140043, 4875331.972456952, 4879771.875, 4883027.960055659, 4884988.699060409, 4903445.3125, 4908026.5625, 4910214.0625, 4911891.352429588, 4912655.9387882985, 4912721.219939543, 4912769.4018455455, 4913757.837240989, 4914717.292679125, 4915368.75, 4915418.75, 4917179.5402832795, 4919640.507381519, 4921926.609774445, 4923792.144303456, 4941137.431825514, 4943662.71025303, 4946580.895902876, 4957757.13720553, 4961917.4017369505, 4966290.821939196, 4969682.8125, 4969861.400167674, 4972217.173772769, 4972510.749749613, 4973706.204322314, 4974123.109551583, 4975225.2284184275, 4976241.804271661, 4976410.4374634735, 4977209.336648155, 4977362.5, 4978169.994263458, 4978206.25, 4979167.1875, 4981097.660961163, 4981486.677074921, 4982225.404754272, 4987857.109490436, 4990886.605091045, 5003807.419466722, 5004861.414934586, 5005273.922595245, 5005510.570952512, 5006584.375, 5006957.8779796045, 5007777.304923489, 5008336.551511649, 5009304.31805041, 5010039.739677155, 5012728.858547306, 5014737.286176362, 5015677.37365513, 5021689.0625, 5022512.5, 5023244.863490532, 5023255.453652405, 5023399.075139201, 5023657.348757414, 5023661.809266635, 5023688.143926539, 5023692.096807151, 5023712.500751063, 5023725.341324074, 5023727.77613601, 5023820.350249178, 5023840.31506754, 5023844.455150399, 5023868.697993581, 5023898.936619807, 5023951.5625, 5024049.881680279, 5024107.527269057, 5024123.384888678, 5024234.082358116, 5024250.838689517, 5024271.51696537, 5024341.851504461, 5024345.52678621, 5024350.681121024, 5024431.25, 5024434.073210755, 5024561.96147918, 5024562.426668184, 5024786.720009297, 5024818.640136773, 5024821.501756887, 5024906.7339341305, 5024921.875, 5024931.495976446, 5025062.217276533, 5025352.54440566, 5025393.117010276, 5025551.039971443, 5025598.5471308725, 5025609.346247798, 5025692.715523253, 5025773.498606423, 5025775.449204832, 5025778.602186603, 5025857.647929676, 5025891.6774293715, 5025915.218703068, 5025937.395902915, 5025984.423268624, 5026030.513079034, 5026199.274072617, 5026342.973959946, 5026442.580163562, 5026475.0, 5026487.5, 5026507.68782834, 5026510.626069295, 5026524.119403087, 5026600.732561508, 5026698.524230296, 5026715.191021313, 5027016.245025675, 5027071.935357447, 5027322.959407034, 5027434.074977692, 5027492.106875701, 5027680.218168525, 5027697.569853534, 5027845.3125, 5027965.309945775, 5028192.1875, 5028248.4375, 5028265.086566692, 5028315.595795839, 5028410.264309206, 5028945.499195162, 5029324.661959119, 5029593.117422702, 5029650.0, 5029860.815938584, 5030537.534699304, 5031999.824995711, 5040291.961278693, 5061610.637717637, 5062259.554502389, 5062265.521921352, 5063078.125, 5065365.7900514575, 5065416.053329924, 5065459.006163184, 5065500.211545135, 5065527.50517815, 5065537.952269857, 5065613.582629609, 5065705.991423997, 5065760.23455355, 5066205.40903779, 5066744.090056298, 5066916.8271478545, 5066947.640280077, 5067128.125, 5067143.656915322, 5067163.478444438, 5067204.943334375, 5067226.532097981, 5067420.0489319125, 5067485.569727255, 5067580.913753764, 5067626.440884973, 5067642.1875, 5067717.329861161, 5067728.942293867, 5067859.275222554, 5067870.345446784, 5067901.537093379, 5067977.591774247, 5068012.907440524, 5068080.120202612, 5068471.549047956, 5068989.765671559, 5069206.25, 5069390.038312758, 5069630.080685947, 5069689.838943436, 5069762.211244121, 5069936.60269115, 5070408.736597183, 5070446.704733513, 5070732.323665554, 5071308.289167328, 5071873.174471412, 5072582.77670463, 5072623.4375, 5074398.4375, 5074681.475888357, 5076126.529739482, 5077937.471159731, 5083834.239210095, 5085062.346889073, 5085612.5, 5086471.586386671, 5086504.6875, 5088428.671165389, 5088697.874974827, 5088909.375, 5089201.625520603, 5089262.1540832855, 5089337.5, 5089366.450828805, 5089492.551545307, 5089499.737085801, 5089600.367578346, 5089626.5625, 5089637.217231471, 5089645.259443937, 5089704.6875, 5089752.964496635, 5089770.3125, 5089822.873996541, 5089842.058748291, 5090024.340320264, 5090134.423987275, 5090199.421165925, 5090214.0625, 5090544.497962094, 5090593.807265994, 5090684.375, 5090930.368437871, 5091622.271955604, 5092002.661042418, 5092095.129002374, 5092312.5, 5092503.097624166, 5092823.4375, 5093207.126093511, 5093351.5625, 5093569.163708975, 5094179.5966960555, 5096721.181710522, 5099246.095562456, 5102803.006179989, 5103209.154812113, 5103209.375, 5103265.084413773, 5103346.8493263945, 5103428.125, 5103461.178331593, 5103551.93489146, 5103782.563879276, 5104086.625651472, 5104496.875, 5105249.99543314, 5105832.467520751, 5105971.372022131, 5109886.601225538, 5109900.0, 5109914.9591632355, 5110174.948855324, 5110289.0625, 5110342.010674845, 5110367.909314298, 5110371.875, 5110404.672189199, 5110520.463825387, 5110587.700283487, 5110629.631928967, 5110676.534091881, 5110701.5625, 5110764.978728573, 5110830.932341102, 5110944.372964917, 5110952.705275851, 5110973.427471732, 5111096.875, 5111118.035699865, 5111181.25, 5111265.625, 5111283.085216461, 5111359.375, 5111364.781375193, 5111394.769618217, 5111433.30827365, 5111521.543241521, 5111542.1875, 5111562.149979711, 5111575.535902452, 5111686.827906735, 5111687.15988342, 5111693.150762256, 5111751.00976793, 5111812.491007596, 5111878.216855745, 5111913.656954292, 5111928.139053625, 5111979.524642414, 5111982.8125, 5111994.504375127, 5112127.962537568, 5112357.398385128, 5112458.103090222, 5112517.1875, 5112525.0, 5112543.75, 5112594.042644298, 5112613.451690856, 5112639.0625, 5112653.125, 5112710.9375, 5112969.545657594, 5113023.964450651, 5113027.583603686, 5113047.581240883, 5113048.959125098, 5113052.474365234, 5113105.879311379, 5113205.966930702, 5113262.743770144, 5113293.607834497, 5113304.6875, 5113488.667655106, 5113500.593548273, 5113565.009965097, 5113588.468371484, 5113615.315736852, 5113651.479210012, 5113652.786346627, 5113694.064156108, 5113773.266321004, 5113794.768546792, 5113874.4119553445, 5113876.929806245, 5113877.041230773, 5113989.400836985, 5114075.031751898, 5114100.46593521, 5114132.990625046, 5114221.425032492, 5114261.981252297, 5114265.671465327, 5114271.875, 5114437.187971502, 5114570.393842803, 5114576.485576078, 5114677.990132706, 5114726.5625, 5114735.548870727, 5114749.03714891, 5115135.896725766, 5115209.375, 5115242.3443801915, 5115334.946729624, 5115362.436981683, 5115427.961231614, 5115435.64404112, 5115477.633973933, 5115493.041324121, 5115567.596786056, 5115567.799177234, 5115590.81036581, 5115781.25, 5115809.043643257, 5115833.061399302, 5115933.707309182, 5116006.040510041, 5116048.964097646, 5116215.625, 5116365.8210241785, 5116405.623805099, 5116566.57239113, 5116573.7510939855, 5116668.124207848, 5116759.924392975, 5116882.669320019, 5117060.918631111, 5117275.374521337, 5117571.875, 5117619.245493366, 5117790.894007915, 5117890.644549865, 5118112.458786679, 5118253.090519585, 5118254.6875, 5118323.64019527, 5119073.330863758, 5121647.9923648015, 5122543.75, 5122908.723438869, 5123327.43110007, 5123555.680126464, 5123641.344498905, 5123676.734851229, 5123712.182354664, 5123843.375034379, 5123918.75, 5123954.383498618, 5124174.577765106, 5124189.0625, 5124276.331867665, 5124329.959694864, 5124414.314357466, 5124443.461742988, 5124477.981306748, 5124484.645135842, 5124562.052022198, 5124707.8125, 5124715.3472091, 5124849.163008421, 5124868.75, 5124870.192131313, 5124892.438839425, 5125009.990787056, 5125304.475425051, 5125354.994196173, 5125369.25939478, 5125376.024350965, 5125382.620311761, 5125411.407289587, 5125468.0656510405, 5125624.216152776, 5125889.0625, 5125972.096458807, 5126020.476048081, 5126026.10128539, 5126161.385907939, 5126209.772396034, 5126212.753845046, 5126223.4375, 5126296.804052268, 5126313.961021652, 5126335.702374434, 5126417.885313281, 5126648.238736852, 5126665.469917451, 5126673.166606516, 5127342.192060577, 5127470.041777801, 5127726.078444055, 5127828.260926192, 5128275.408228733, 5128336.377403443, 5128489.0625, 5128505.694156476, 5128578.781904483, 5128665.509489767, 5128696.679244622, 5128757.272002949, 5128873.6278025275, 5129216.830196822, 5129244.509657388, 5129341.224647442, 5129401.6715270085, 5130440.529656173, 5130676.5625, 5134181.5543396445, 5134258.373212303, 5136955.600025142, 5137914.476341656, 5139436.086713024, 5140997.256498792, 5141871.224891984, 5149604.6875, 5150450.9271639995, 5151175.0, 5152581.001247788, 5152643.440820369, 5154454.6875, 5156506.602812455, 5157840.6972804805, 5159290.300796611, 5160124.1107155895, 5160301.721623107, 5160458.719969525, 5160509.725077336, 5160530.35908888, 5160536.648502933, 5160539.343384318, 5160556.053079616, 5160646.875, 5160670.064769113, 5160676.19058153, 5160689.237886803, 5160710.347628164, 5160722.023002611, 5160748.190140495, 5160780.794644679, 5160820.3125, 5160839.414984925, 5160880.257237834, 5160898.878070655, 5160914.0625, 5160985.9375, 5160997.848498966, 5160999.202329236, 5161039.5656022355, 5161087.5, 5161120.3125, 5161240.299749964, 5161278.742130106, 5161280.229200279, 5161349.681960621, 5161354.6875, 5161451.636387748, 5161454.17520333, 5161489.064800874, 5161539.722027266, 5161571.352036897, 5161705.569434635, 5161716.10857861, 5161726.328498261, 5161798.4375, 5161802.607005788, 5161893.311767902, 5161894.669534589, 5161899.292150749, 5161907.862705378, 5161909.565063185, 5161924.312613043, 5161979.6875, 5161979.958854338, 5162018.75, 5162049.990099332, 5162059.375, 5162060.9375, 5162071.400901349, 5162077.286477986, 5162093.362764857, 5162094.1313788425, 5162112.180856841, 5162155.234327015, 5162210.407000754, 5162241.224671353, 5162256.422757914, 5162260.9375, 5162269.603220631, 5162273.188917185, 5162289.823332418, 5162315.897716382, 5162317.1875, 5162337.399681143, 5162343.717697879, 5162357.8125, 5162387.793625525, 5162405.212694521, 5162406.548012261, 5162407.8125, 5162409.375, 5162421.997017837, 5162422.903519649, 5162424.754696245, 5162449.191745167, 5162451.551590404, 5162454.6875, 5162491.567790522, 5162497.816751579, 5162507.8125, 5162517.028324266, 5162523.4375, 5162529.562887748, 5162581.25, 5162586.423708091, 5162603.125, 5162607.631982083, 5162630.17807999, 5162639.543069934, 5162657.834327194, 5162661.772122028, 5162672.735755093, 5162714.747839134, 5162725.57767239, 5162727.331128691, 5162728.621681254, 5162732.8125, 5162734.347346267, 5162752.096889239, 5162784.821073013, 5162785.9375, 5162793.712457252, 5162800.0, 5162800.0, 5162813.594355234, 5162850.08081097, 5162850.600120438, 5162851.5625, 5162855.330595903, 5162858.310234637, 5162877.10793078, 5162903.391972316, 5162924.33585419, 5162940.224258756, 5163010.800438699, 5163020.799136056, 5163021.289233886, 5163050.997686922, 5163052.88647456, 5163089.0625, 5163100.714594427, 5163108.330387932, 5163127.441018037, 5163167.746820507, 5163214.481740021, 5163220.3125, 5163220.916977501, 5163229.648569342, 5163236.568423002, 5163238.994389816, 5163242.627192499, 5163246.441506001, 5163262.5, 5163265.625, 5163268.75, 5163311.553516604, 5163335.684804874, 5163349.174294011, 5163366.337470025, 5163371.875, 5163385.716310141, 5163406.675532695, 5163435.489545315, 5163457.429350505, 5163518.75, 5163525.802695378, 5163537.364931345, 5163588.841779354, 5163602.382572817, 5163619.874968016, 5163633.096518888, 5163656.0663410155, 5163661.969728051, 5163778.018511699, 5163788.289082683, 5163825.805016975, 5163892.7294072695, 5163918.75, 5164003.773895624, 5164010.69435697, 5164059.375, 5164091.416045471, 5164113.125010549, 5164214.462753624, 5164216.135762904, 5164257.8110589, 5164305.465218868, 5164525.0, 5164527.235685635, 5164708.25111597, 5164710.9375, 5164720.3125, 5164745.3125, 5164811.6981333885, 5164920.8476608535, 5164955.563868405, 5165054.766608408, 5165154.167007252, 5165161.823567219, 5165224.76101834, 5165230.405134327, 5165283.844234564, 5165303.68388067, 5165315.761728974, 5165330.681987447, 5165393.474968494, 5165423.561813968, 5165433.208866102, 5165446.8722749185, 5165470.928618838, 5165488.5544712525, 5165497.366401273, 5165536.514040819, 5165588.698761299, 5165591.838704561, 5165646.001840865, 5165718.75, 5165945.3125, 5165960.982236765, 5166050.566530415, 5166125.797991606, 5166223.4375, 5166227.124103407, 5166386.323324107, 5166551.661213362, 5166619.616683709, 5166675.987050939, 5166692.208324283, 5166706.065870599, 5167391.484980767, 5167498.4375, 5167571.540811932, 5167594.952821399, 5167723.104502178, 5167734.288218179, 5168016.763928862, 5168035.9375, 5168220.5764447395, 5168471.174246685, 5168719.442702843, 5169114.0625, 5169248.15226658, 5169358.449029903, 5169729.6875, 5170029.288348682, 5170168.219063359, 5171690.625, 5172090.079150418, 5172113.493601187, 5172880.465600481, 5173083.3213859545, 5178416.10145198, 5198967.000622273, 5207880.9352420755, 5209454.645792636, 5209718.857433814, 5210880.398683167, 5211001.339570073, 5211050.0, 5211790.625, 5212281.25, 5213410.722062838, 5214120.578339527, 5214944.712754073, 5215155.493891508, 5215261.853289119, 5215508.586477303, 5215518.077960941, 5216353.125, 5216394.225403281, 5216543.75, 5217634.363360534, 5218557.216854252, 5218920.516836936, 5219906.619113039, 5221444.971277282, 5236137.151223834, 5243388.326242956, 5247499.551135276, 5247977.7246778365, 5250318.414908495, 5254950.7834360255, 5261125.018379931, 5267294.420064576, 5371204.269935844, 5371210.871462334, 5372245.840316287, 5373328.141492702, 5373645.157815159, 5401742.041635828, 5451881.51597221, 5452718.347455302, 5455629.695281186, 5456777.890274788, 5457983.953669773, 5470927.679396252, 5482610.337315718, 5484701.5625, 5487535.566043055, 5500583.269463578, 5502366.6720862, 5506716.709506914, 5508809.078331076, 5510450.89622936, 5511954.427602644, 5511965.8482023515, 5514139.027260748, 5514366.812221765, 5514653.260178528, 5515572.115678759, 5516177.4857459655, 5516568.75, 5516647.05296377, 5519032.629016319, 5519871.369699576, 5523309.033349171, 5547062.5, 5552625.0, 5577685.221071655, 5584272.362400649, 5591402.483953212, 5599157.634634688, 5607295.229415039, 5617928.125, 5623103.043153474, 5627412.382576549, 5640028.125, 5640440.572762582, 5640657.148509401, 5648284.482899259, 5674476.228479453, 5683965.625, 5689861.875096867, 5690496.314947717, 5694740.075641575, 5697485.931641816, 5699453.125, 5700726.012052364, 5701562.133311209, 5703061.94264253, 5704571.727266122, 5707029.6875, 5707035.700558974, 5709209.375, 5709395.262810893, 5710466.098636669, 5712936.637888957, 5717184.375, 5724540.252711827, 5725278.125, 5726669.923022087, 5731478.852325065, 5732205.792489209, 5744108.959436721, ...], [30.924094218062272, 46.87631383072668, 56.53146054764865, 5.4603968173315245, 13.409213623769437, 44.68343354643306, 14.819849561994214, 28.643129573340186, 7.266903444097336, 60.25608077293593, 10.732369653115423, 106.38872226460614, 32.873502123196346, 60.349445528343445, 9.072822848164332, 12.499434337728873, 51.678687617437774, 12.605229975957666, 82.53961811335664, 5.671720052346728, 56.02173001228247, 43.759540730742486, 14.916564309988281, 38.349293534035986, 8.320821104174689, 59.56352040385322, 10.06047166892878, 8.818584700388552, 6.456119501297395, 9.433849924091096, 37.320656737828955, 13.88158908869838, 64.38910769949047, 65.91506296570309, 18.944841968438983, 12.890081094844533, 7.037183953409842, 52.1627494555404, 7.816872266491665, 57.787413791795856, 10.28890097895779, 93.28922200173281, 22.104862697772507, 32.08390757105627, 60.66499515237525, 61.03882266976307, 40.33804606967799, 6.533623203468435, 136.11691446356843, 14.967065061843876, 8.794743925614362, 229.70434208550515, 14.610784589005261, 99.24045487734809, 23.258728358229067, 28.3744514279981, 84.40774032172371, 14.957781056994756, 17.346816956257324, 16.62002332877512, 12.54280114585308, 6.7423351573932395, 28.09649015994078, 11.894248627048233, 48.688237168632114, 50.442011668318855, 11.002875007202485, 10.544557854586708, 36.50493548026568, 10.175933972300415, 63.02839587747341, 10.820563372519683, 15.135889793097245, 56.35492715917997, 15.312411629091681, 5.898873060646894, 71.6169675653504, 25.019785613924167, 6.506833257786455, 32.9213927068368, 31.90771399887079, 94.94961140223158, 31.350650672698528, 9.484796122355588, 8.531343762478697, 11.474642473793471, 60.05160897087849, 10.778753466835834, 31.868716798057058, 88.3790112003138, 69.16733442669849, 14.450341988327727, 7.628827131047166, 53.82612224568914, 46.77765949999322, 5.160702106799114, 9.588666311471016, 73.11198933629171, 15.652647361352578, 19.479672189787372, 65.42780410408035, 45.2844010541688, 117.37201840419239, 21.901083039419753, 55.984154641810974, 47.70426007050454, 18.21691842608258, 77.11146545455586, 26.088984340188865, 85.3950271986734, 90.13212280334793, 12.02195225924336, 83.29694037753919, 98.16528304883386, 14.31608608790339, 88.26745522750835, 63.28643090389144, 5.53121322950249, 28.896788683047134, 7.511837424381052, 51.68860519686789, 7.10993349453351, 14.56257256686877, 8.11578537898951, 45.85810483174784, 13.417197309801578, 49.788832741784134, 57.85111958659812, 15.780181490466827, 37.78588536660415, 8.979321320072106, 17.545374032004073, 51.398125467701625, 10.388600311491128, 5.900231580201749, 13.700180013467092, 59.383603885895525, 32.770664560032756, 70.14525037483902, 9.01962851537299, 66.1412242109704, 14.127995327604088, 142.58503471834752, 42.32961774226304, 23.24497641246335, 5.325188703193607, 44.66629613642918, 14.172935188174147, 67.629251669985, 67.66383731337842, 10.659358617089328, 16.618492868955464, 25.22051592074651, 5.202466473863148, 87.51812871967007, 9.251354909077287, 11.436039178949114, 36.73148917581886, 70.23107990573676, 95.11871072450748, 74.55921559801735, 110.63288706702278, 15.598797400141859, 61.01141895544973, 42.98229954249949, 6.276429357084198, 76.15387047773487, 12.485888642051655, 20.862078810834138, 45.410471542960096, 18.61210364329162, 26.707556484126037, 43.22697535146333, 45.95445146704067, 7.2610779779932155, 9.2356723278419, 40.52391510730218, 61.416532624746054, 8.28491787376583, 70.98584331848312, 83.61869975837183, 7.520879111440301, 95.57135404510356, 12.325552483184483, 40.42733115487935, 10.495420966750402, 68.35333648361758, 13.917252935333876, 66.1257833267547, 133.1446644257318, 68.31368316594272, 10.027399852122244, 63.680553501034105, 45.84670431097323, 53.93208525793617, 33.94101491983626, 37.43007069560467, 31.0405249596499, 18.695607274155265, 32.570066420342755, 20.074213108221535, 7.3040354108703, 42.76076394995735, 15.358152884268236, 28.676971293417534, 37.246868899351774, 14.641143983554382, 10.948707181713026, 15.124811893174627, 27.97492059648625, 14.829540472497104, 19.024016228439997, 23.083475841831422, 8.818980519646344, 8.403214572586332, 51.47082883723142, 52.647664437911324, 9.755858244176832, 14.889444515204211, 33.61778023941622, 78.74224612109664, 5.123554642618251, 9.532312323369151, 36.874047396978845, 10.426784208250217, 59.63954428871118, 64.14243221641456, 9.07607120977456, 41.35064846783391, 60.292081226214684, 5.758673660988878, 72.63318791198361, 16.746869861138624, 38.19267409231854, 25.40282831835801, 6.218786509921244, 17.138201602818743, 77.93208299031843, 9.039574300208464, 30.42484540060423, 28.998141636114536, 8.722510174371132, 18.42918110919745, 54.82691376774072, 5.491602302811877, 43.14938463870226, 14.184675899030086, 12.68663393551599, 68.76284888091985, 86.03397889421105, 22.01729929639323, 18.971384539487225, 18.094452780473315, 46.11467381606769, 8.8084917038185, 17.26611253311099, 20.69952134685988, 5.245166313844956, 5.30174825267021, 5.5950313490425, 8.30664111415571, 29.386578322713284, 57.810977371913516, 9.287812568461367, 12.009115303344714, 39.86608115228626, 120.83095246531528, 71.14878737317049, 133.0774889142925, 19.07271090404016, 5.662190902947929, 15.888503579055891, 34.45524969143486, 139.10420460525964, 24.38394754214175, 44.92721805066429, 33.77078279546259, 8.020948325444946, 14.669180330573885, 24.233130738495618, 55.575845456768306, 102.71720606763253, 5.641389536984812, 45.17305617801761, 24.798033365072982, 45.493553779459035, 34.539905390529, 17.300814358281094, 27.85962318863848, 9.425855130851366, 14.12641107874645, 11.39117947275858, 14.419346470268469, 9.742490850740062, 17.136824436718307, 74.79961864004545, 29.469753429535476, 22.48169949915255, 8.232285634205583, 19.028419199101975, 24.908276773185847, 6.3790141856605045, 6.931376698675358, 189.1385582491155, 65.68524872584092, 29.647207147575184, 81.10650140513802, 43.025606075906666, 69.29155396951101, 11.378070432889228, 9.405831264269244, 92.0895698036374, 5.3636262887415675, 20.07527533511454, 28.19476554700082, 41.8258725802799, 8.244397111496118, 117.01029577369131, 12.420567957876498, 46.295464642198176, 10.668550922938264, 68.45369667473969, 30.516515286778283, 36.36865645194546, 7.113795874471441, 75.17627525991348, 41.16845531974666, 10.637468733270989, 5.579981437333132, 41.92308033100059, 68.68821185517504, 25.777700771857234, 32.711050288265305, 9.147175244353418, 49.30786933769312, 65.760611101644, 20.83688835345122, 48.42499549035033, 20.19716380409815, 15.69463664500338, 13.700223149452878, 48.11656971467601, 5.228122697875347, 61.401481711317054, 21.69628187079179, 24.294701345827537, 18.03009793805553, 54.773370708482474, 9.636502928086907, 23.009269354085646, 37.382317941408246, 59.30749472899731, 26.810328074548075, 17.56525737790649, 15.459426666741606, 43.68159194909123, 14.023839915440286, 5.515493682188516, 23.298530572050183, 26.332361643626268, 38.537776859148515, 15.513383575779098, 8.771873116075321, 10.975249330167546, 33.50804368234682, 36.31195148805085, 21.16793733803564, 36.95477944310572, 36.28841758988472, 23.424805624073272, 18.528078827769818, 93.930880214426, 49.80357731686236, 27.176882772634634, 7.341695541638114, 20.62324095186553, 9.965231009611028, 6.642413200274204, 34.24024860845018, 81.98183735404052, 31.70064583363323, 63.957657616058796, 43.23643757536385, 36.23020249342475, 39.98666890644959, 15.878565194274982, 7.591431583984405, 49.59633910440357, 5.606575828242449, 22.57405775608661, 39.46405742662861, 31.787999672459772, 51.68203338636541, 67.11926752044701, 29.186353704713024, 64.41349495573125, 31.06422562565233, 23.181418908491914, 63.393086907218354, 6.014701763113454, 60.846241424582395, 33.241312974142275, 55.007523656729795, 32.22475151271821, 10.712728553330434, 77.54166497565714, 121.5338587868794, 25.71268802323203, 29.65168507332566, 6.198535560887578, 33.92555399804107, 10.232503047098643, 12.175754336809534, 8.002493583679273, 40.90929178350576, 72.12839418785845, 20.522075277717622, 34.74009550524177, 20.347564492341377, 11.810560616702416, 21.86033855814956, 52.038529758979315, 71.7026492053906, 36.798394606308754, 75.20349965892089, 19.815427961111702, 42.38986129070818, 11.842413141126634, 26.84943520966124, 19.75973916335069, 19.095166113698216, 10.946927287350135, 29.636417776446496, 50.88652319202501, 17.636432602042117, 28.026649018357283, 58.68723473984712, 31.28321508153152, 16.580214157306024, 90.52374007517743, 91.87448593641611, 82.75213821598737, 28.435016665388922, 7.033626767883786, 52.975124987886076, 24.16971495304225, 102.80839251388525, 19.98427609688873, 37.078084082025846, 49.56715940943657, 28.667841098351964, 7.886980652053687, 36.7212021189686, 5.341397310711337, 32.5108227227546, 6.518952532610633, 27.471333233651613, 8.271611552985705, 86.69665383489772, 46.24848267536869, 23.52776438433569, 110.25373294315624, 30.4022575907442, 75.58232743110787, 63.390900796209955, 59.06144749926398, 29.420909923014836, 30.87780248039846, 5.629311756834544, 61.269358271662156, 8.707210838049935, 17.7255753090656, 47.886493693528244, 19.32410849551171, 71.16383731094086, 7.481364128912512, 49.46232102049534, 7.960501455540384, 23.251485566673395, 25.90608103500178, 71.38487133851187, 29.29282239302583, 6.781984465776612, 22.490085743023375, 12.747810892389062, 25.67629316544372, 110.9565591687791, 10.062650540429328, 25.68239334783077, 13.567585174171379, 16.178269819866177, 33.047084121856074, 51.416194052496834, 64.96707725438641, 53.58471997858498, 7.396311684458636, 42.48548208105632, 58.83554166641148, 34.105596505358186, 38.64524197345875, 12.832754728957642, 39.0704028496228, 21.502468983868294, 17.38843618279458, 6.9603150189807, 22.887921637251516, 59.68198835459352, 140.87485882609172, 63.85879121166644, 64.55710918865195, 5.592567551482122, 9.889340935550404, 79.87403938325694, 8.87494207791878, 30.730458101871683, 5.701477635895705, 13.110536900500339, 20.091929459313548, 14.326869456269899, 21.0655695070215, 75.44290781980993, 8.49085991335725, 17.14540476230209, 8.47398387301042, 9.358396282934486, 68.86113059193463, 43.361512429165444, 58.757453004261414, 5.895468074588295, 9.371003714193128, 28.921640077788403, 6.056241127796855, 65.70692644691513, 8.246313305088606, 52.81743902188779, 50.75437730915146, 27.7112103270654, 12.215066065350031, 27.74287736243357, 41.90013715865305, 11.38210620496025, 17.684261836058653, 5.933936235309004, 18.7338622510247, 61.92260071091248, 61.6093761273556, 150.2711730843839, 49.645010056640075, 27.169222748087904, 32.40995855248566, 60.52260461717545, 7.0369896146693165, 72.19130656884496, 19.968906054414646, 83.85939943677883, 5.559195720073359, 63.05657223591002, 9.502841505923945, 21.601048418974724, 30.169358940247335, 58.81422492291057, 20.323780563767134, 82.2838711750327, 45.06289737914914, 65.93040775016917, 46.335022515202326, 60.832418084993336, 46.68197124589137, 68.44164473897922, 28.680718808028384, 5.704140092728878, 9.302417223873869, 38.23246485846203, 29.358472971831667, 64.91190306260397, 13.47886212279262, 51.33015868008055, 10.242083525563704, 43.45903194131359, 53.83392664148134, 12.475524335620934, 21.80487593758761, 70.50391232006685, 13.682046753699899, 57.607716751670154, 23.699763763980027, 13.544194661565372, 113.57142501573264, 6.451535292547693, 28.11124906938234, 15.997015146030193, 13.945949571278721, 15.76430171240641, 24.912050955385716, 13.470817051977672, 46.918035045617486, 72.65415833167413, 10.030751145195877, 106.67315437010433, 13.961964135233746, 64.84808400165645, 78.16433762997985, 8.177524629576581, 145.761712894876, 17.318206603461835, 59.09033670728287, 25.23303300301001, 6.563345936087571, 5.765022049884012, 6.616496057642502, 68.72367904770915, 15.858601016969427, 7.165117521567281, 13.433540263644156, 9.741701674031342, 9.691658740926279, 11.549102533975176, 37.285028265639454, 11.018592665415273, 26.667566729393386, 9.140201451192103, 44.111787351454325, 34.42688220335774, 25.79696452293377, 38.90126885967221, 67.34543781664877, 14.352245374828584, 55.352150634123056, 45.44258095730294, 49.832055113794766, 5.735338530038493, 37.455316070597526, 35.16188517294583, 9.956347164270303, 26.432917234525103, 14.24442522022006, 90.97582201818497, 39.546163725865405, 23.045367276169383, 5.36864413172995, 17.854985332963395, 11.302509385861516, 22.401775360070253, 60.25777279670267, 18.93734250959151, 5.743397335340918, 7.970373527549706, 16.79448526364843, 7.161235518547247, 8.499178124763224, 75.56072949268864, 67.7572754154794, 12.970069866585527, 29.46398583265512, 24.428204051248052, 5.9129250799883115, 65.04033335569744, 9.648674748610555, 33.05365741751331, 10.656142904529165, 7.8663380856906295, 8.372555792890262, 40.329832675841224, 78.3912802964547, 91.38914136286995, 12.45649508744347, 6.5320425851408075, 9.170267283817752, 70.34574820090015, 24.95991258591623, 71.94883213913036, 6.28961447992956, 13.086467903439592, 11.367202505370031, 10.761894167122094, 18.777272025031277, 28.548488130619255, 55.84391838480187, 62.852404219228134, 56.813594852690926, 70.24750352519166, 92.75465347233698, 18.565075283908545, 51.96467242029602, 49.18639732313537, 56.660382612109494, 57.99051052930503, 13.831557886004441, 62.97024702451616, 36.551026223424145, 54.96590424405273, 129.88404210793553, 9.394670767266874, 10.41141123839446, 14.950286536530838, 12.343076273360037, 44.76937084580052, 116.6793984573879, 9.77675251318052, 10.780639031085178, 95.7210997442595, 13.277032819345933, 50.163273613098994, 41.68674004978905, 8.796920803457684, 80.45327614714712, 15.719055078538492, 78.99225248504311, 48.29531630633133, 16.08755420861578, 58.62978689173496, 12.99348778437799, 61.55802717865273, 40.91979834870309, 10.459565459046837, 89.80568984250911, 34.7643529325109, 5.106037109939051, 5.1237395924247044, 7.273018574820323, 21.19415528630713, 47.62547652556925, 7.666939668828153, 68.8185284231157, 12.787232986401472, 7.515737636585742, 24.514387848031635, 16.093931800384375, 45.4931788398841, 61.04707277244583, 20.902563372366178, 37.45968007578354, 7.200836952517887, 17.409076187193865, 34.100225970380286, 81.72716458298744, 96.85236230849235, 5.823064044750701, 8.91732228442338, 15.69210883469852, 28.24036811286853, 72.03383367864168, 32.322435585884435, 28.19516883166798, 20.367589589244886, 68.98303213227248, 10.88769768855926, 42.04820714474432, 114.15737461275842, 81.52279025823503, 27.7751004078176, 63.30103204787645, 25.407176845379432, 6.865565378438719, 5.556867728491471, 45.153304518318635, 65.9955507754114, 41.12620774437383, 24.560387684408518, 27.799477115276346, 83.71062888152409, 17.245999021174246, 56.607675157994606, 5.531739922070158, 56.83609833480411, 8.537449314032328, 74.08265271069, 27.803030370885452, 82.92638709107862, 82.609019166256, 6.673510578501481, 7.142857674282656, 77.07010208943, 40.23327568560638, 12.30753640208502, 62.2925113265043, 46.83924122227785, 23.79312229431211, 43.281665741895594, 65.28859385710844, 5.927557621451635, 17.18951201910657, 13.097134134507801, 29.578242465394375, 19.40200957493883, 61.10619368568085, 23.880607821201274, 12.046743511123932, 8.813072398594509, 77.90344009040592, 16.822944599841993, 64.99415374325073, 12.225236882248227, 14.795171523722427, 5.996300196900579, 11.02288932094177, 6.135048866124561, 7.011978415751793, 49.08268690020434, 91.26148928382715, 128.38608097597984, 12.249649237059455, 14.058544614156151, 6.1682239582968235, 7.882992894564145, 77.29616039458189, 93.0396755237073, 9.719145764233778, 20.475560085908604, 38.774790179992635, 31.319412450137044, 19.241531898029265, 31.293539471906335, 8.17320645345399, 12.07973077761405, 84.21426898385603, 5.35174908650942, 36.37140348784791, 6.988703324162363, 21.233307305063143, 73.12519027757367, 85.89948400529643, 12.095441685273363, 110.58489748184184, 58.82247329104185, 62.04255090331297, 79.13145213307936, 10.103692483655449, 5.995748290703208, 14.181544519531645, 17.326025151422638, 19.209444637853615, 12.60836405336189, 54.42979404044623, 12.37286045621176, 27.08970883159484, 44.95017041200295, 43.898102211688375, 59.30827728273128, 18.931433522147994, 17.467053101266238, 6.184235376163421, 6.499564083890446, 72.07501962002644, 12.867486443155618, 70.08957320230842, 32.95712092951426, 75.09098518040827, 12.130227126988709, 5.539753432822145, 20.840447847595552, 24.075006585738517, 7.648827381251675, 71.678858838651, 28.471319757042842, 9.913027815341133, 26.891184249207036, 21.42473403521505, 9.871624827543622, 32.91493865668552, 16.66151568985857, 5.752080455615317, 40.16262256184962, 105.79149820768538, 15.114811473643016, 12.146006753047176, 8.759040910878861, 39.41708847371276, 39.09019588435829, 11.789545803276818, 31.274275330558275, 19.73939567973497, 64.32368022779957, 15.021480368131325, 37.303348540964556, 37.953983228918716, 93.50310336858412, 10.642657140716265, 13.72751611343478, 13.807943862844734, 52.10811366922853, 61.80237836678423, 75.25387517486868, 86.90160234950373, 10.18450612308968, 8.690331403961945, 84.77591866008763, 9.101331079089395, 19.161025877970616, 72.5557236884811, 32.99024588471913, 6.202370586958057, 52.97972988194503, 61.445650884286444, 38.706378403698935, 5.658591386977277, 17.315301170088972, 18.56753650824697, 73.45708750954883, 23.89539966247999, 57.048848876745524, 21.55227745570315, 6.16531606504741, 46.20555906134129, 75.1183688933117, 66.76710331958378, 76.07742133311163, 24.894554032457773, 7.193131319532129, 24.689397823914902, 19.269412316056076, 20.144611087987368, 53.63490232708975, 8.821198452392363, 39.795737838421076, 20.47974852158176, 40.3351788467112, 68.7567450804902, 33.283242235071796, 9.510372141851374, 61.069446173417454, 53.267549777462676, 23.147066896779133, 19.42095707328426, 22.01883291846041, 13.607589961343448, 77.84734918008796, 83.00317432234732, 20.818198706861494, 5.865280632017547, 68.45953738932306, 11.026031050490873, 8.586917191946794, 11.153584184940971, 10.894236379974359, 25.94181725152858, 15.717798149671111, 18.85776414623645, 13.680211967928166, 10.779620986183051, 15.051390394991277, 13.477535068752054, 56.38350272370229, 52.97153321179807, 104.78798281149834, 5.049329637262035, 21.340705140051913, 34.694797052117124, 29.81083327122186, 6.956671739591337, 7.511866360254134, 9.527544285353287, 11.186290424058969, 16.000641466347112, 70.59917499193776, 128.88873745815428, 12.96018362715638, 49.62780934747601, 9.486555657322594, 53.61692720964562, 17.182978173575805, 33.44653443537966, 28.775462047097527, 47.17944847175389, 19.360090100152835, 82.40458872269217, 36.154131043238976, 67.09714802689808, 26.982806331089023, 163.60554036407996, 42.55028620500685, 109.43877668468156, 46.812603432364604, 6.2606210290950655, 71.14029086167113, 15.369362795178926, 13.804835533165916, 91.40093616462836, 20.331485041662674, 28.635717352218435, 21.014460005623775, 28.409628584280103, 61.06667896483732, 21.004198654690033, 13.706610363469029, 13.171655307815854, 104.75515895529999, 33.06377084761469, 14.109272564419335, 92.04947793361676, 14.75544072621296, 61.86097244465472, 12.432846597769508, 30.54669254123099, 22.86928406583662, 35.47017682081748, 31.852741218596847, 12.493132428045916, 27.20247676679603, 8.078401717380306, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3713555.1679711714, 3803070.3125, 3828978.125, 3838931.218048582, 3843258.9050884643, 3844190.603295422, 3853864.030210694, 3865656.25, 3877102.0883597163, 3957575.569799668, 3958466.918942268, 3988378.8140914724, 3990859.4385083676, 3990881.25, 3991477.8024937864, 3991525.7301178314, 3991930.202504294, 3992814.838866835, 3992859.375, 3993279.1225124057, 4033379.6875, 4049537.5, 4058387.493439927, 4079115.625, 4080362.564198945, 4080570.3125, 4080577.3149136393, 4080577.4491242203, 4104265.424537438, 4151942.3062239727, 4206206.25, 4207920.003538603, 4208200.0, 4208280.656858532, 4208807.012489058, 4208858.686983664, 4208862.169429464, 4209048.396905587, 4210384.929412592, 4212092.1875, 4226304.075236614, 4251651.5625, 4257790.112334235, 4257823.4375, 4257968.75, 4258159.375, 4258897.920893868, 4259300.290551852, 4259504.6875, 4259541.256046189, 4259775.8514207415, 4260134.375, 4260795.222937422, 4260895.3125, 4262934.106326468, 4264510.929848079, 4264735.9375, 4267235.941762514, 4273353.639393144, 4276800.380201818, 4279610.124220031, 4283290.51802008, 4283660.168251441, 4283702.00317083, 4283717.156432266, 4283900.172903108, 4284520.231141029, 4284569.904375061, 4286031.538085867, 4286469.604339967, 4288734.375, 4288988.8566913, 4289125.050080056, 4290505.90474339, 4290790.719022222, 4291097.959996128, 4292169.908390588, 4348716.980753237, 4357440.7497934, 4361026.5625, 4361660.9375, 4361864.0625, 4361899.156741262, 4361901.738505671, 4362623.873350227, 4363064.273670976, 4363492.635014961, 4363902.8896581065, 4363953.125, 4364762.5, 4377418.503270707, 4417126.427378428, 4418612.570201163, 4418630.560494838, 4418961.669888866, 4419027.923800098, 4419086.226850393, 4426098.4610085515, 4434745.487350586, 4451532.929677489, 4453732.222194998, 4453900.79784927, 4453922.513654055, 4454046.155543832, 4454221.875, 4454359.067908219, 4454397.531561887, 4455125.0, 4455194.561803204, 4455476.355408147, 4455528.488530398, 4456492.693043252, 4456674.918053049, 4457527.224150324, 4461406.075629597, 4461532.544780229, 4461808.569022515, 4466106.211464895, 4468789.0625, 4469299.740017969, 4469607.8125, 4472229.64350101, 4472292.08439747, 4474351.224934902, 4476120.3125, 4477074.532947819, 4477226.5625, 4478875.0, 4483937.160050461, 4484375.0, 4485810.489533687, 4486516.173485434, 4487687.922444533, 4488432.281896544, 4488860.476401447, 4488885.643896114, 4491960.9375, 4492637.5, 4505082.580933696, 4507460.5442320835, 4514257.8125, 4515132.269299321, 4523078.881174739, 4525399.568721818, 4525618.409346402, 4526962.003415312, 4527703.659619085, 4535140.407600155, 4539840.625, 4540932.740793329, 4544263.740671193, 4544301.942402486, 4545212.306965427, 4545607.774956395, 4546497.766961374, 4546737.403788823, 4548304.266764692, 4550178.125, 4552254.1319153765, 4556021.551388612, 4566056.242539127, 4569858.480445543, 4573462.099838503, 4578515.570821884, 4581396.875, 4584656.322715415, 4584990.4827101445, 4585922.599109559, 4592779.121827671, 4594100.137751218, 4595369.465409474, 4596614.124518139, 4601435.585614653, 4612962.5, 4677486.443304061, 4688928.009571393, 4691156.25, 4691306.25, 4691585.934360634, 4693807.8125, 4696371.832674445, 4698391.9539015945, 4750491.790009743, 4755189.7139436565, 4783014.203836023, 4798418.303955543, 4811784.238615981, 4812488.769669602, 4844521.845344955, 4853995.3125, 4861587.586140043, 4875331.972456952, 4879771.875, 4883027.960055659, 4884988.699060409, 4903445.3125, 4908026.5625, 4910214.0625, 4911891.352429588, 4912655.9387882985, 4912721.219939543, 4912769.4018455455, 4913757.837240989, 4914717.292679125, 4915368.75, 4915418.75, 4917179.5402832795, 4919640.507381519, 4921926.609774445, 4923792.144303456, 4941137.431825514, 4943662.71025303, 4946580.895902876, 4957757.13720553, 4961917.4017369505, 4966290.821939196, 4969682.8125, 4969861.400167674, 4972217.173772769, 4972510.749749613, 4973706.204322314, 4974123.109551583, 4975225.2284184275, 4976241.804271661, 4976410.4374634735, 4977209.336648155, 4977362.5, 4978169.994263458, 4978206.25, 4979167.1875, 4981097.660961163, 4981486.677074921, 4982225.404754272, 4987857.109490436, 4990886.605091045, 5003807.419466722, 5004861.414934586, 5005273.922595245, 5005510.570952512, 5006584.375, 5006957.8779796045, 5007777.304923489, 5008336.551511649, 5009304.31805041, 5010039.739677155, 5012728.858547306, 5014737.286176362, 5015677.37365513, 5021689.0625, 5022512.5, 5023244.863490532, 5023255.453652405, 5023399.075139201, 5023657.348757414, 5023661.809266635, 5023688.143926539, 5023692.096807151, 5023712.500751063, 5023725.341324074, 5023727.77613601, 5023820.350249178, 5023840.31506754, 5023844.455150399, 5023868.697993581, 5023898.936619807, 5023951.5625, 5024049.881680279, 5024107.527269057, 5024123.384888678, 5024234.082358116, 5024250.838689517, 5024271.51696537, 5024341.851504461, 5024345.52678621, 5024350.681121024, 5024431.25, 5024434.073210755, 5024561.96147918, 5024562.426668184, 5024786.720009297, 5024818.640136773, 5024821.501756887, 5024906.7339341305, 5024921.875, 5024931.495976446, 5025062.217276533, 5025352.54440566, 5025393.117010276, 5025551.039971443, 5025598.5471308725, 5025609.346247798, 5025692.715523253, 5025773.498606423, 5025775.449204832, 5025778.602186603, 5025857.647929676, 5025891.6774293715, 5025915.218703068, 5025937.395902915, 5025984.423268624, 5026030.513079034, 5026199.274072617, 5026342.973959946, 5026442.580163562, 5026475.0, 5026487.5, 5026507.68782834, 5026510.626069295, 5026524.119403087, 5026600.732561508, 5026698.524230296, 5026715.191021313, 5027016.245025675, 5027071.935357447, 5027322.959407034, 5027434.074977692, 5027492.106875701, 5027680.218168525, 5027697.569853534, 5027845.3125, 5027965.309945775, 5028192.1875, 5028248.4375, 5028265.086566692, 5028315.595795839, 5028410.264309206, 5028945.499195162, 5029324.661959119, 5029593.117422702, 5029650.0, 5029860.815938584, 5030537.534699304, 5031999.824995711, 5040291.961278693, 5061610.637717637, 5062259.554502389, 5062265.521921352, 5063078.125, 5065365.7900514575, 5065416.053329924, 5065459.006163184, 5065500.211545135, 5065527.50517815, 5065537.952269857, 5065613.582629609, 5065705.991423997, 5065760.23455355, 5066205.40903779, 5066744.090056298, 5066916.8271478545, 5066947.640280077, 5067128.125, 5067143.656915322, 5067163.478444438, 5067204.943334375, 5067226.532097981, 5067420.0489319125, 5067485.569727255, 5067580.913753764, 5067626.440884973, 5067642.1875, 5067717.329861161, 5067728.942293867, 5067859.275222554, 5067870.345446784, 5067901.537093379, 5067977.591774247, 5068012.907440524, 5068080.120202612, 5068471.549047956, 5068989.765671559, 5069206.25, 5069390.038312758, 5069630.080685947, 5069689.838943436, 5069762.211244121, 5069936.60269115, 5070408.736597183, 5070446.704733513, 5070732.323665554, 5071308.289167328, 5071873.174471412, 5072582.77670463, 5072623.4375, 5074398.4375, 5074681.475888357, 5076126.529739482, 5077937.471159731, 5083834.239210095, 5085062.346889073, 5085612.5, 5086471.586386671, 5086504.6875, 5088428.671165389, 5088697.874974827, 5088909.375, 5089201.625520603, 5089262.1540832855, 5089337.5, 5089366.450828805, 5089492.551545307, 5089499.737085801, 5089600.367578346, 5089626.5625, 5089637.217231471, 5089645.259443937, 5089704.6875, 5089752.964496635, 5089770.3125, 5089822.873996541, 5089842.058748291, 5090024.340320264, 5090134.423987275, 5090199.421165925, 5090214.0625, 5090544.497962094, 5090593.807265994, 5090684.375, 5090930.368437871, 5091622.271955604, 5092002.661042418, 5092095.129002374, 5092312.5, 5092503.097624166, 5092823.4375, 5093207.126093511, 5093351.5625, 5093569.163708975, 5094179.5966960555, 5096721.181710522, 5099246.095562456, 5102803.006179989, 5103209.154812113, 5103209.375, 5103265.084413773, 5103346.8493263945, 5103428.125, 5103461.178331593, 5103551.93489146, 5103782.563879276, 5104086.625651472, 5104496.875, 5105249.99543314, 5105832.467520751, 5105971.372022131, 5109886.601225538, 5109900.0, 5109914.9591632355, 5110174.948855324, 5110289.0625, 5110342.010674845, 5110367.909314298, 5110371.875, 5110404.672189199, 5110520.463825387, 5110587.700283487, 5110629.631928967, 5110676.534091881, 5110701.5625, 5110764.978728573, 5110830.932341102, 5110944.372964917, 5110952.705275851, 5110973.427471732, 5111096.875, 5111118.035699865, 5111181.25, 5111265.625, 5111283.085216461, 5111359.375, 5111364.781375193, 5111394.769618217, 5111433.30827365, 5111521.543241521, 5111542.1875, 5111562.149979711, 5111575.535902452, 5111686.827906735, 5111687.15988342, 5111693.150762256, 5111751.00976793, 5111812.491007596, 5111878.216855745, 5111913.656954292, 5111928.139053625, 5111979.524642414, 5111982.8125, 5111994.504375127, 5112127.962537568, 5112357.398385128, 5112458.103090222, 5112517.1875, 5112525.0, 5112543.75, 5112594.042644298, 5112613.451690856, 5112639.0625, 5112653.125, 5112710.9375, 5112969.545657594, 5113023.964450651, 5113027.583603686, 5113047.581240883, 5113048.959125098, 5113052.474365234, 5113105.879311379, 5113205.966930702, 5113262.743770144, 5113293.607834497, 5113304.6875, 5113488.667655106, 5113500.593548273, 5113565.009965097, 5113588.468371484, 5113615.315736852, 5113651.479210012, 5113652.786346627, 5113694.064156108, 5113773.266321004, 5113794.768546792, 5113874.4119553445, 5113876.929806245, 5113877.041230773, 5113989.400836985, 5114075.031751898, 5114100.46593521, 5114132.990625046, 5114221.425032492, 5114261.981252297, 5114265.671465327, 5114271.875, 5114437.187971502, 5114570.393842803, 5114576.485576078, 5114677.990132706, 5114726.5625, 5114735.548870727, 5114749.03714891, 5115135.896725766, 5115209.375, 5115242.3443801915, 5115334.946729624, 5115362.436981683, 5115427.961231614, 5115435.64404112, 5115477.633973933, 5115493.041324121, 5115567.596786056, 5115567.799177234, 5115590.81036581, 5115781.25, 5115809.043643257, 5115833.061399302, 5115933.707309182, 5116006.040510041, 5116048.964097646, 5116215.625, 5116365.8210241785, 5116405.623805099, 5116566.57239113, 5116573.7510939855, 5116668.124207848, 5116759.924392975, 5116882.669320019, 5117060.918631111, 5117275.374521337, 5117571.875, 5117619.245493366, 5117790.894007915, 5117890.644549865, 5118112.458786679, 5118253.090519585, 5118254.6875, 5118323.64019527, 5119073.330863758, 5121647.9923648015, 5122543.75, 5122908.723438869, 5123327.43110007, 5123555.680126464, 5123641.344498905, 5123676.734851229, 5123712.182354664, 5123843.375034379, 5123918.75, 5123954.383498618, 5124174.577765106, 5124189.0625, 5124276.331867665, 5124329.959694864, 5124414.314357466, 5124443.461742988, 5124477.981306748, 5124484.645135842, 5124562.052022198, 5124707.8125, 5124715.3472091, 5124849.163008421, 5124868.75, 5124870.192131313, 5124892.438839425, 5125009.990787056, 5125304.475425051, 5125354.994196173, 5125369.25939478, 5125376.024350965, 5125382.620311761, 5125411.407289587, 5125468.0656510405, 5125624.216152776, 5125889.0625, 5125972.096458807, 5126020.476048081, 5126026.10128539, 5126161.385907939, 5126209.772396034, 5126212.753845046, 5126223.4375, 5126296.804052268, 5126313.961021652, 5126335.702374434, 5126417.885313281, 5126648.238736852, 5126665.469917451, 5126673.166606516, 5127342.192060577, 5127470.041777801, 5127726.078444055, 5127828.260926192, 5128275.408228733, 5128336.377403443, 5128489.0625, 5128505.694156476, 5128578.781904483, 5128665.509489767, 5128696.679244622, 5128757.272002949, 5128873.6278025275, 5129216.830196822, 5129244.509657388, 5129341.224647442, 5129401.6715270085, 5130440.529656173, 5130676.5625, 5134181.5543396445, 5134258.373212303, 5136955.600025142, 5137914.476341656, 5139436.086713024, 5140997.256498792, 5141871.224891984, 5149604.6875, 5150450.9271639995, 5151175.0, 5152581.001247788, 5152643.440820369, 5154454.6875, 5156506.602812455, 5157840.6972804805, 5159290.300796611, 5160124.1107155895, 5160301.721623107, 5160458.719969525, 5160509.725077336, 5160530.35908888, 5160536.648502933, 5160539.343384318, 5160556.053079616, 5160646.875, 5160670.064769113, 5160676.19058153, 5160689.237886803, 5160710.347628164, 5160722.023002611, 5160748.190140495, 5160780.794644679, 5160820.3125, 5160839.414984925, 5160880.257237834, 5160898.878070655, 5160914.0625, 5160985.9375, 5160997.848498966, 5160999.202329236, 5161039.5656022355, 5161087.5, 5161120.3125, 5161240.299749964, 5161278.742130106, 5161280.229200279, 5161349.681960621, 5161354.6875, 5161451.636387748, 5161454.17520333, 5161489.064800874, 5161539.722027266, 5161571.352036897, 5161705.569434635, 5161716.10857861, 5161726.328498261, 5161798.4375, 5161802.607005788, 5161893.311767902, 5161894.669534589, 5161899.292150749, 5161907.862705378, 5161909.565063185, 5161924.312613043, 5161979.6875, 5161979.958854338, 5162018.75, 5162049.990099332, 5162059.375, 5162060.9375, 5162071.400901349, 5162077.286477986, 5162093.362764857, 5162094.1313788425, 5162112.180856841, 5162155.234327015, 5162210.407000754, 5162241.224671353, 5162256.422757914, 5162260.9375, 5162269.603220631, 5162273.188917185, 5162289.823332418, 5162315.897716382, 5162317.1875, 5162337.399681143, 5162343.717697879, 5162357.8125, 5162387.793625525, 5162405.212694521, 5162406.548012261, 5162407.8125, 5162409.375, 5162421.997017837, 5162422.903519649, 5162424.754696245, 5162449.191745167, 5162451.551590404, 5162454.6875, 5162491.567790522, 5162497.816751579, 5162507.8125, 5162517.028324266, 5162523.4375, 5162529.562887748, 5162581.25, 5162586.423708091, 5162603.125, 5162607.631982083, 5162630.17807999, 5162639.543069934, 5162657.834327194, 5162661.772122028, 5162672.735755093, 5162714.747839134, 5162725.57767239, 5162727.331128691, 5162728.621681254, 5162732.8125, 5162734.347346267, 5162752.096889239, 5162784.821073013, 5162785.9375, 5162793.712457252, 5162800.0, 5162800.0, 5162813.594355234, 5162850.08081097, 5162850.600120438, 5162851.5625, 5162855.330595903, 5162858.310234637, 5162877.10793078, 5162903.391972316, 5162924.33585419, 5162940.224258756, 5163010.800438699, 5163020.799136056, 5163021.289233886, 5163050.997686922, 5163052.88647456, 5163089.0625, 5163100.714594427, 5163108.330387932, 5163127.441018037, 5163167.746820507, 5163214.481740021, 5163220.3125, 5163220.916977501, 5163229.648569342, 5163236.568423002, 5163238.994389816, 5163242.627192499, 5163246.441506001, 5163262.5, 5163265.625, 5163268.75, 5163311.553516604, 5163335.684804874, 5163349.174294011, 5163366.337470025, 5163371.875, 5163385.716310141, 5163406.675532695, 5163435.489545315, 5163457.429350505, 5163518.75, 5163525.802695378, 5163537.364931345, 5163588.841779354, 5163602.382572817, 5163619.874968016, 5163633.096518888, 5163656.0663410155, 5163661.969728051, 5163778.018511699, 5163788.289082683, 5163825.805016975, 5163892.7294072695, 5163918.75, 5164003.773895624, 5164010.69435697, 5164059.375, 5164091.416045471, 5164113.125010549, 5164214.462753624, 5164216.135762904, 5164257.8110589, 5164305.465218868, 5164525.0, 5164527.235685635, 5164708.25111597, 5164710.9375, 5164720.3125, 5164745.3125, 5164811.6981333885, 5164920.8476608535, 5164955.563868405, 5165054.766608408, 5165154.167007252, 5165161.823567219, 5165224.76101834, 5165230.405134327, 5165283.844234564, 5165303.68388067, 5165315.761728974, 5165330.681987447, 5165393.474968494, 5165423.561813968, 5165433.208866102, 5165446.8722749185, 5165470.928618838, 5165488.5544712525, 5165497.366401273, 5165536.514040819, 5165588.698761299, 5165591.838704561, 5165646.001840865, 5165718.75, 5165945.3125, 5165960.982236765, 5166050.566530415, 5166125.797991606, 5166223.4375, 5166227.124103407, 5166386.323324107, 5166551.661213362, 5166619.616683709, 5166675.987050939, 5166692.208324283, 5166706.065870599, 5167391.484980767, 5167498.4375, 5167571.540811932, 5167594.952821399, 5167723.104502178, 5167734.288218179, 5168016.763928862, 5168035.9375, 5168220.5764447395, 5168471.174246685, 5168719.442702843, 5169114.0625, 5169248.15226658, 5169358.449029903, 5169729.6875, 5170029.288348682, 5170168.219063359, 5171690.625, 5172090.079150418, 5172113.493601187, 5172880.465600481, 5173083.3213859545, 5178416.10145198, 5198967.000622273, 5207880.9352420755, 5209454.645792636, 5209718.857433814, 5210880.398683167, 5211001.339570073, 5211050.0, 5211790.625, 5212281.25, 5213410.722062838, 5214120.578339527, 5214944.712754073, 5215155.493891508, 5215261.853289119, 5215508.586477303, 5215518.077960941, 5216353.125, 5216394.225403281, 5216543.75, 5217634.363360534, 5218557.216854252, 5218920.516836936, 5219906.619113039, 5221444.971277282, 5236137.151223834, 5243388.326242956, 5247499.551135276, 5247977.7246778365, 5250318.414908495, 5254950.7834360255, 5261125.018379931, 5267294.420064576, 5371204.269935844, 5371210.871462334, 5372245.840316287, 5373328.141492702, 5373645.157815159, 5401742.041635828, 5451881.51597221, 5452718.347455302, 5455629.695281186, 5456777.890274788, 5457983.953669773, 5470927.679396252, 5482610.337315718, 5484701.5625, 5487535.566043055, 5500583.269463578, 5502366.6720862, 5506716.709506914, 5508809.078331076, 5510450.89622936, 5511954.427602644, 5511965.8482023515, 5514139.027260748, 5514366.812221765, 5514653.260178528, 5515572.115678759, 5516177.4857459655, 5516568.75, 5516647.05296377, 5519032.629016319, 5519871.369699576, 5523309.033349171, 5547062.5, 5552625.0, 5577685.221071655, 5584272.362400649, 5591402.483953212, 5599157.634634688, 5607295.229415039, 5617928.125, 5623103.043153474, 5627412.382576549, 5640028.125, 5640440.572762582, 5640657.148509401, 5648284.482899259, 5674476.228479453, 5683965.625, 5689861.875096867, 5690496.314947717, 5694740.075641575, 5697485.931641816, 5699453.125, 5700726.012052364, 5701562.133311209, 5703061.94264253, 5704571.727266122, 5707029.6875, 5707035.700558974, 5709209.375, 5709395.262810893, 5710466.098636669, 5712936.637888957, 5717184.375, 5724540.252711827, 5725278.125, 5726669.923022087, 5731478.852325065, 5732205.792489209, 5744108.959436721, ...], [30.924094218062272, 46.87631383072668, 56.53146054764865, 5.4603968173315245, 13.409213623769437, 44.68343354643306, 14.819849561994214, 28.643129573340186, 7.266903444097336, 60.25608077293593, 10.732369653115423, 106.38872226460614, 32.873502123196346, 60.349445528343445, 9.072822848164332, 12.499434337728873, 51.678687617437774, 12.605229975957666, 82.53961811335664, 5.671720052346728, 56.02173001228247, 43.759540730742486, 14.916564309988281, 38.349293534035986, 8.320821104174689, 59.56352040385322, 10.06047166892878, 8.818584700388552, 6.456119501297395, 9.433849924091096, 37.320656737828955, 13.88158908869838, 64.38910769949047, 65.91506296570309, 18.944841968438983, 12.890081094844533, 7.037183953409842, 52.1627494555404, 7.816872266491665, 57.787413791795856, 10.28890097895779, 93.28922200173281, 22.104862697772507, 32.08390757105627, 60.66499515237525, 61.03882266976307, 40.33804606967799, 6.533623203468435, 136.11691446356843, 14.967065061843876, 8.794743925614362, 229.70434208550515, 14.610784589005261, 99.24045487734809, 23.258728358229067, 28.3744514279981, 84.40774032172371, 14.957781056994756, 17.346816956257324, 16.62002332877512, 12.54280114585308, 6.7423351573932395, 28.09649015994078, 11.894248627048233, 48.688237168632114, 50.442011668318855, 11.002875007202485, 10.544557854586708, 36.50493548026568, 10.175933972300415, 63.02839587747341, 10.820563372519683, 15.135889793097245, 56.35492715917997, 15.312411629091681, 5.898873060646894, 71.6169675653504, 25.019785613924167, 6.506833257786455, 32.9213927068368, 31.90771399887079, 94.94961140223158, 31.350650672698528, 9.484796122355588, 8.531343762478697, 11.474642473793471, 60.05160897087849, 10.778753466835834, 31.868716798057058, 88.3790112003138, 69.16733442669849, 14.450341988327727, 7.628827131047166, 53.82612224568914, 46.77765949999322, 5.160702106799114, 9.588666311471016, 73.11198933629171, 15.652647361352578, 19.479672189787372, 65.42780410408035, 45.2844010541688, 117.37201840419239, 21.901083039419753, 55.984154641810974, 47.70426007050454, 18.21691842608258, 77.11146545455586, 26.088984340188865, 85.3950271986734, 90.13212280334793, 12.02195225924336, 83.29694037753919, 98.16528304883386, 14.31608608790339, 88.26745522750835, 63.28643090389144, 5.53121322950249, 28.896788683047134, 7.511837424381052, 51.68860519686789, 7.10993349453351, 14.56257256686877, 8.11578537898951, 45.85810483174784, 13.417197309801578, 49.788832741784134, 57.85111958659812, 15.780181490466827, 37.78588536660415, 8.979321320072106, 17.545374032004073, 51.398125467701625, 10.388600311491128, 5.900231580201749, 13.700180013467092, 59.383603885895525, 32.770664560032756, 70.14525037483902, 9.01962851537299, 66.1412242109704, 14.127995327604088, 142.58503471834752, 42.32961774226304, 23.24497641246335, 5.325188703193607, 44.66629613642918, 14.172935188174147, 67.629251669985, 67.66383731337842, 10.659358617089328, 16.618492868955464, 25.22051592074651, 5.202466473863148, 87.51812871967007, 9.251354909077287, 11.436039178949114, 36.73148917581886, 70.23107990573676, 95.11871072450748, 74.55921559801735, 110.63288706702278, 15.598797400141859, 61.01141895544973, 42.98229954249949, 6.276429357084198, 76.15387047773487, 12.485888642051655, 20.862078810834138, 45.410471542960096, 18.61210364329162, 26.707556484126037, 43.22697535146333, 45.95445146704067, 7.2610779779932155, 9.2356723278419, 40.52391510730218, 61.416532624746054, 8.28491787376583, 70.98584331848312, 83.61869975837183, 7.520879111440301, 95.57135404510356, 12.325552483184483, 40.42733115487935, 10.495420966750402, 68.35333648361758, 13.917252935333876, 66.1257833267547, 133.1446644257318, 68.31368316594272, 10.027399852122244, 63.680553501034105, 45.84670431097323, 53.93208525793617, 33.94101491983626, 37.43007069560467, 31.0405249596499, 18.695607274155265, 32.570066420342755, 20.074213108221535, 7.3040354108703, 42.76076394995735, 15.358152884268236, 28.676971293417534, 37.246868899351774, 14.641143983554382, 10.948707181713026, 15.124811893174627, 27.97492059648625, 14.829540472497104, 19.024016228439997, 23.083475841831422, 8.818980519646344, 8.403214572586332, 51.47082883723142, 52.647664437911324, 9.755858244176832, 14.889444515204211, 33.61778023941622, 78.74224612109664, 5.123554642618251, 9.532312323369151, 36.874047396978845, 10.426784208250217, 59.63954428871118, 64.14243221641456, 9.07607120977456, 41.35064846783391, 60.292081226214684, 5.758673660988878, 72.63318791198361, 16.746869861138624, 38.19267409231854, 25.40282831835801, 6.218786509921244, 17.138201602818743, 77.93208299031843, 9.039574300208464, 30.42484540060423, 28.998141636114536, 8.722510174371132, 18.42918110919745, 54.82691376774072, 5.491602302811877, 43.14938463870226, 14.184675899030086, 12.68663393551599, 68.76284888091985, 86.03397889421105, 22.01729929639323, 18.971384539487225, 18.094452780473315, 46.11467381606769, 8.8084917038185, 17.26611253311099, 20.69952134685988, 5.245166313844956, 5.30174825267021, 5.5950313490425, 8.30664111415571, 29.386578322713284, 57.810977371913516, 9.287812568461367, 12.009115303344714, 39.86608115228626, 120.83095246531528, 71.14878737317049, 133.0774889142925, 19.07271090404016, 5.662190902947929, 15.888503579055891, 34.45524969143486, 139.10420460525964, 24.38394754214175, 44.92721805066429, 33.77078279546259, 8.020948325444946, 14.669180330573885, 24.233130738495618, 55.575845456768306, 102.71720606763253, 5.641389536984812, 45.17305617801761, 24.798033365072982, 45.493553779459035, 34.539905390529, 17.300814358281094, 27.85962318863848, 9.425855130851366, 14.12641107874645, 11.39117947275858, 14.419346470268469, 9.742490850740062, 17.136824436718307, 74.79961864004545, 29.469753429535476, 22.48169949915255, 8.232285634205583, 19.028419199101975, 24.908276773185847, 6.3790141856605045, 6.931376698675358, 189.1385582491155, 65.68524872584092, 29.647207147575184, 81.10650140513802, 43.025606075906666, 69.29155396951101, 11.378070432889228, 9.405831264269244, 92.0895698036374, 5.3636262887415675, 20.07527533511454, 28.19476554700082, 41.8258725802799, 8.244397111496118, 117.01029577369131, 12.420567957876498, 46.295464642198176, 10.668550922938264, 68.45369667473969, 30.516515286778283, 36.36865645194546, 7.113795874471441, 75.17627525991348, 41.16845531974666, 10.637468733270989, 5.579981437333132, 41.92308033100059, 68.68821185517504, 25.777700771857234, 32.711050288265305, 9.147175244353418, 49.30786933769312, 65.760611101644, 20.83688835345122, 48.42499549035033, 20.19716380409815, 15.69463664500338, 13.700223149452878, 48.11656971467601, 5.228122697875347, 61.401481711317054, 21.69628187079179, 24.294701345827537, 18.03009793805553, 54.773370708482474, 9.636502928086907, 23.009269354085646, 37.382317941408246, 59.30749472899731, 26.810328074548075, 17.56525737790649, 15.459426666741606, 43.68159194909123, 14.023839915440286, 5.515493682188516, 23.298530572050183, 26.332361643626268, 38.537776859148515, 15.513383575779098, 8.771873116075321, 10.975249330167546, 33.50804368234682, 36.31195148805085, 21.16793733803564, 36.95477944310572, 36.28841758988472, 23.424805624073272, 18.528078827769818, 93.930880214426, 49.80357731686236, 27.176882772634634, 7.341695541638114, 20.62324095186553, 9.965231009611028, 6.642413200274204, 34.24024860845018, 81.98183735404052, 31.70064583363323, 63.957657616058796, 43.23643757536385, 36.23020249342475, 39.98666890644959, 15.878565194274982, 7.591431583984405, 49.59633910440357, 5.606575828242449, 22.57405775608661, 39.46405742662861, 31.787999672459772, 51.68203338636541, 67.11926752044701, 29.186353704713024, 64.41349495573125, 31.06422562565233, 23.181418908491914, 63.393086907218354, 6.014701763113454, 60.846241424582395, 33.241312974142275, 55.007523656729795, 32.22475151271821, 10.712728553330434, 77.54166497565714, 121.5338587868794, 25.71268802323203, 29.65168507332566, 6.198535560887578, 33.92555399804107, 10.232503047098643, 12.175754336809534, 8.002493583679273, 40.90929178350576, 72.12839418785845, 20.522075277717622, 34.74009550524177, 20.347564492341377, 11.810560616702416, 21.86033855814956, 52.038529758979315, 71.7026492053906, 36.798394606308754, 75.20349965892089, 19.815427961111702, 42.38986129070818, 11.842413141126634, 26.84943520966124, 19.75973916335069, 19.095166113698216, 10.946927287350135, 29.636417776446496, 50.88652319202501, 17.636432602042117, 28.026649018357283, 58.68723473984712, 31.28321508153152, 16.580214157306024, 90.52374007517743, 91.87448593641611, 82.75213821598737, 28.435016665388922, 7.033626767883786, 52.975124987886076, 24.16971495304225, 102.80839251388525, 19.98427609688873, 37.078084082025846, 49.56715940943657, 28.667841098351964, 7.886980652053687, 36.7212021189686, 5.341397310711337, 32.5108227227546, 6.518952532610633, 27.471333233651613, 8.271611552985705, 86.69665383489772, 46.24848267536869, 23.52776438433569, 110.25373294315624, 30.4022575907442, 75.58232743110787, 63.390900796209955, 59.06144749926398, 29.420909923014836, 30.87780248039846, 5.629311756834544, 61.269358271662156, 8.707210838049935, 17.7255753090656, 47.886493693528244, 19.32410849551171, 71.16383731094086, 7.481364128912512, 49.46232102049534, 7.960501455540384, 23.251485566673395, 25.90608103500178, 71.38487133851187, 29.29282239302583, 6.781984465776612, 22.490085743023375, 12.747810892389062, 25.67629316544372, 110.9565591687791, 10.062650540429328, 25.68239334783077, 13.567585174171379, 16.178269819866177, 33.047084121856074, 51.416194052496834, 64.96707725438641, 53.58471997858498, 7.396311684458636, 42.48548208105632, 58.83554166641148, 34.105596505358186, 38.64524197345875, 12.832754728957642, 39.0704028496228, 21.502468983868294, 17.38843618279458, 6.9603150189807, 22.887921637251516, 59.68198835459352, 140.87485882609172, 63.85879121166644, 64.55710918865195, 5.592567551482122, 9.889340935550404, 79.87403938325694, 8.87494207791878, 30.730458101871683, 5.701477635895705, 13.110536900500339, 20.091929459313548, 14.326869456269899, 21.0655695070215, 75.44290781980993, 8.49085991335725, 17.14540476230209, 8.47398387301042, 9.358396282934486, 68.86113059193463, 43.361512429165444, 58.757453004261414, 5.895468074588295, 9.371003714193128, 28.921640077788403, 6.056241127796855, 65.70692644691513, 8.246313305088606, 52.81743902188779, 50.75437730915146, 27.7112103270654, 12.215066065350031, 27.74287736243357, 41.90013715865305, 11.38210620496025, 17.684261836058653, 5.933936235309004, 18.7338622510247, 61.92260071091248, 61.6093761273556, 150.2711730843839, 49.645010056640075, 27.169222748087904, 32.40995855248566, 60.52260461717545, 7.0369896146693165, 72.19130656884496, 19.968906054414646, 83.85939943677883, 5.559195720073359, 63.05657223591002, 9.502841505923945, 21.601048418974724, 30.169358940247335, 58.81422492291057, 20.323780563767134, 82.2838711750327, 45.06289737914914, 65.93040775016917, 46.335022515202326, 60.832418084993336, 46.68197124589137, 68.44164473897922, 28.680718808028384, 5.704140092728878, 9.302417223873869, 38.23246485846203, 29.358472971831667, 64.91190306260397, 13.47886212279262, 51.33015868008055, 10.242083525563704, 43.45903194131359, 53.83392664148134, 12.475524335620934, 21.80487593758761, 70.50391232006685, 13.682046753699899, 57.607716751670154, 23.699763763980027, 13.544194661565372, 113.57142501573264, 6.451535292547693, 28.11124906938234, 15.997015146030193, 13.945949571278721, 15.76430171240641, 24.912050955385716, 13.470817051977672, 46.918035045617486, 72.65415833167413, 10.030751145195877, 106.67315437010433, 13.961964135233746, 64.84808400165645, 78.16433762997985, 8.177524629576581, 145.761712894876, 17.318206603461835, 59.09033670728287, 25.23303300301001, 6.563345936087571, 5.765022049884012, 6.616496057642502, 68.72367904770915, 15.858601016969427, 7.165117521567281, 13.433540263644156, 9.741701674031342, 9.691658740926279, 11.549102533975176, 37.285028265639454, 11.018592665415273, 26.667566729393386, 9.140201451192103, 44.111787351454325, 34.42688220335774, 25.79696452293377, 38.90126885967221, 67.34543781664877, 14.352245374828584, 55.352150634123056, 45.44258095730294, 49.832055113794766, 5.735338530038493, 37.455316070597526, 35.16188517294583, 9.956347164270303, 26.432917234525103, 14.24442522022006, 90.97582201818497, 39.546163725865405, 23.045367276169383, 5.36864413172995, 17.854985332963395, 11.302509385861516, 22.401775360070253, 60.25777279670267, 18.93734250959151, 5.743397335340918, 7.970373527549706, 16.79448526364843, 7.161235518547247, 8.499178124763224, 75.56072949268864, 67.7572754154794, 12.970069866585527, 29.46398583265512, 24.428204051248052, 5.9129250799883115, 65.04033335569744, 9.648674748610555, 33.05365741751331, 10.656142904529165, 7.8663380856906295, 8.372555792890262, 40.329832675841224, 78.3912802964547, 91.38914136286995, 12.45649508744347, 6.5320425851408075, 9.170267283817752, 70.34574820090015, 24.95991258591623, 71.94883213913036, 6.28961447992956, 13.086467903439592, 11.367202505370031, 10.761894167122094, 18.777272025031277, 28.548488130619255, 55.84391838480187, 62.852404219228134, 56.813594852690926, 70.24750352519166, 92.75465347233698, 18.565075283908545, 51.96467242029602, 49.18639732313537, 56.660382612109494, 57.99051052930503, 13.831557886004441, 62.97024702451616, 36.551026223424145, 54.96590424405273, 129.88404210793553, 9.394670767266874, 10.41141123839446, 14.950286536530838, 12.343076273360037, 44.76937084580052, 116.6793984573879, 9.77675251318052, 10.780639031085178, 95.7210997442595, 13.277032819345933, 50.163273613098994, 41.68674004978905, 8.796920803457684, 80.45327614714712, 15.719055078538492, 78.99225248504311, 48.29531630633133, 16.08755420861578, 58.62978689173496, 12.99348778437799, 61.55802717865273, 40.91979834870309, 10.459565459046837, 89.80568984250911, 34.7643529325109, 5.106037109939051, 5.1237395924247044, 7.273018574820323, 21.19415528630713, 47.62547652556925, 7.666939668828153, 68.8185284231157, 12.787232986401472, 7.515737636585742, 24.514387848031635, 16.093931800384375, 45.4931788398841, 61.04707277244583, 20.902563372366178, 37.45968007578354, 7.200836952517887, 17.409076187193865, 34.100225970380286, 81.72716458298744, 96.85236230849235, 5.823064044750701, 8.91732228442338, 15.69210883469852, 28.24036811286853, 72.03383367864168, 32.322435585884435, 28.19516883166798, 20.367589589244886, 68.98303213227248, 10.88769768855926, 42.04820714474432, 114.15737461275842, 81.52279025823503, 27.7751004078176, 63.30103204787645, 25.407176845379432, 6.865565378438719, 5.556867728491471, 45.153304518318635, 65.9955507754114, 41.12620774437383, 24.560387684408518, 27.799477115276346, 83.71062888152409, 17.245999021174246, 56.607675157994606, 5.531739922070158, 56.83609833480411, 8.537449314032328, 74.08265271069, 27.803030370885452, 82.92638709107862, 82.609019166256, 6.673510578501481, 7.142857674282656, 77.07010208943, 40.23327568560638, 12.30753640208502, 62.2925113265043, 46.83924122227785, 23.79312229431211, 43.281665741895594, 65.28859385710844, 5.927557621451635, 17.18951201910657, 13.097134134507801, 29.578242465394375, 19.40200957493883, 61.10619368568085, 23.880607821201274, 12.046743511123932, 8.813072398594509, 77.90344009040592, 16.822944599841993, 64.99415374325073, 12.225236882248227, 14.795171523722427, 5.996300196900579, 11.02288932094177, 6.135048866124561, 7.011978415751793, 49.08268690020434, 91.26148928382715, 128.38608097597984, 12.249649237059455, 14.058544614156151, 6.1682239582968235, 7.882992894564145, 77.29616039458189, 93.0396755237073, 9.719145764233778, 20.475560085908604, 38.774790179992635, 31.319412450137044, 19.241531898029265, 31.293539471906335, 8.17320645345399, 12.07973077761405, 84.21426898385603, 5.35174908650942, 36.37140348784791, 6.988703324162363, 21.233307305063143, 73.12519027757367, 85.89948400529643, 12.095441685273363, 110.58489748184184, 58.82247329104185, 62.04255090331297, 79.13145213307936, 10.103692483655449, 5.995748290703208, 14.181544519531645, 17.326025151422638, 19.209444637853615, 12.60836405336189, 54.42979404044623, 12.37286045621176, 27.08970883159484, 44.95017041200295, 43.898102211688375, 59.30827728273128, 18.931433522147994, 17.467053101266238, 6.184235376163421, 6.499564083890446, 72.07501962002644, 12.867486443155618, 70.08957320230842, 32.95712092951426, 75.09098518040827, 12.130227126988709, 5.539753432822145, 20.840447847595552, 24.075006585738517, 7.648827381251675, 71.678858838651, 28.471319757042842, 9.913027815341133, 26.891184249207036, 21.42473403521505, 9.871624827543622, 32.91493865668552, 16.66151568985857, 5.752080455615317, 40.16262256184962, 105.79149820768538, 15.114811473643016, 12.146006753047176, 8.759040910878861, 39.41708847371276, 39.09019588435829, 11.789545803276818, 31.274275330558275, 19.73939567973497, 64.32368022779957, 15.021480368131325, 37.303348540964556, 37.953983228918716, 93.50310336858412, 10.642657140716265, 13.72751611343478, 13.807943862844734, 52.10811366922853, 61.80237836678423, 75.25387517486868, 86.90160234950373, 10.18450612308968, 8.690331403961945, 84.77591866008763, 9.101331079089395, 19.161025877970616, 72.5557236884811, 32.99024588471913, 6.202370586958057, 52.97972988194503, 61.445650884286444, 38.706378403698935, 5.658591386977277, 17.315301170088972, 18.56753650824697, 73.45708750954883, 23.89539966247999, 57.048848876745524, 21.55227745570315, 6.16531606504741, 46.20555906134129, 75.1183688933117, 66.76710331958378, 76.07742133311163, 24.894554032457773, 7.193131319532129, 24.689397823914902, 19.269412316056076, 20.144611087987368, 53.63490232708975, 8.821198452392363, 39.795737838421076, 20.47974852158176, 40.3351788467112, 68.7567450804902, 33.283242235071796, 9.510372141851374, 61.069446173417454, 53.267549777462676, 23.147066896779133, 19.42095707328426, 22.01883291846041, 13.607589961343448, 77.84734918008796, 83.00317432234732, 20.818198706861494, 5.865280632017547, 68.45953738932306, 11.026031050490873, 8.586917191946794, 11.153584184940971, 10.894236379974359, 25.94181725152858, 15.717798149671111, 18.85776414623645, 13.680211967928166, 10.779620986183051, 15.051390394991277, 13.477535068752054, 56.38350272370229, 52.97153321179807, 104.78798281149834, 5.049329637262035, 21.340705140051913, 34.694797052117124, 29.81083327122186, 6.956671739591337, 7.511866360254134, 9.527544285353287, 11.186290424058969, 16.000641466347112, 70.59917499193776, 128.88873745815428, 12.96018362715638, 49.62780934747601, 9.486555657322594, 53.61692720964562, 17.182978173575805, 33.44653443537966, 28.775462047097527, 47.17944847175389, 19.360090100152835, 82.40458872269217, 36.154131043238976, 67.09714802689808, 26.982806331089023, 163.60554036407996, 42.55028620500685, 109.43877668468156, 46.812603432364604, 6.2606210290950655, 71.14029086167113, 15.369362795178926, 13.804835533165916, 91.40093616462836, 20.331485041662674, 28.635717352218435, 21.014460005623775, 28.409628584280103, 61.06667896483732, 21.004198654690033, 13.706610363469029, 13.171655307815854, 104.75515895529999, 33.06377084761469, 14.109272564419335, 92.04947793361676, 14.75544072621296, 61.86097244465472, 12.432846597769508, 30.54669254123099, 22.86928406583662, 35.47017682081748, 31.852741218596847, 12.493132428045916, 27.20247676679603, 8.078401717380306, ...])
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);
([3713555.1679711714, 3803070.3125, 3828978.125, 3838931.218048582, 3843258.9050884643, 3844190.603295422, 3853864.030210694, 3865656.25, 3877102.0883597163, 3957575.569799668, 3958466.918942268, 3988378.8140914724, 3990859.4385083676, 3990881.25, 3991477.8024937864, 3991525.7301178314, 3991930.202504294, 3992814.838866835, 3992859.375, 3993279.1225124057, 4033379.6875, 4049537.5, 4058387.493439927, 4079115.625, 4080362.564198945, 4080570.3125, 4080577.3149136393, 4080577.4491242203, 4104265.424537438, 4151942.3062239727, 4206206.25, 4207920.003538603, 4208200.0, 4208280.656858532, 4208807.012489058, 4208858.686983664, 4208862.169429464, 4209048.396905587, 4210384.929412592, 4212092.1875, 4226304.075236614, 4251651.5625, 4257790.112334235, 4257823.4375, 4257968.75, 4258159.375, 4258897.920893868, 4259300.290551852, 4259504.6875, 4259541.256046189, 4259775.8514207415, 4260134.375, 4260795.222937422, 4260895.3125, 4262934.106326468, 4264510.929848079, 4264735.9375, 4267235.941762514, 4273353.639393144, 4276800.380201818, 4279610.124220031, 4283290.51802008, 4283660.168251441, 4283702.00317083, 4283717.156432266, 4283900.172903108, 4284520.231141029, 4284569.904375061, 4286031.538085867, 4286469.604339967, 4288734.375, 4288988.8566913, 4289125.050080056, 4290505.90474339, 4290790.719022222, 4291097.959996128, 4292169.908390588, 4348716.980753237, 4357440.7497934, 4361026.5625, 4361660.9375, 4361864.0625, 4361899.156741262, 4361901.738505671, 4362623.873350227, 4363064.273670976, 4363492.635014961, 4363902.8896581065, 4363953.125, 4364762.5, 4377418.503270707, 4417126.427378428, 4418612.570201163, 4418630.560494838, 4418961.669888866, 4419027.923800098, 4419086.226850393, 4426098.4610085515, 4434745.487350586, 4451532.929677489, 4453732.222194998, 4453900.79784927, 4453922.513654055, 4454046.155543832, 4454221.875, 4454359.067908219, 4454397.531561887, 4455125.0, 4455194.561803204, 4455476.355408147, 4455528.488530398, 4456492.693043252, 4456674.918053049, 4457527.224150324, 4461406.075629597, 4461532.544780229, 4461808.569022515, 4466106.211464895, 4468789.0625, 4469299.740017969, 4469607.8125, 4472229.64350101, 4472292.08439747, 4474351.224934902, 4476120.3125, 4477074.532947819, 4477226.5625, 4478875.0, 4483937.160050461, 4484375.0, 4485810.489533687, 4486516.173485434, 4487687.922444533, 4488432.281896544, 4488860.476401447, 4488885.643896114, 4491960.9375, 4492637.5, 4505082.580933696, 4507460.5442320835, 4514257.8125, 4515132.269299321, 4523078.881174739, 4525399.568721818, 4525618.409346402, 4526962.003415312, 4527703.659619085, 4535140.407600155, 4539840.625, 4540932.740793329, 4544263.740671193, 4544301.942402486, 4545212.306965427, 4545607.774956395, 4546497.766961374, 4546737.403788823, 4548304.266764692, 4550178.125, 4552254.1319153765, 4556021.551388612, 4566056.242539127, 4569858.480445543, 4573462.099838503, 4578515.570821884, 4581396.875, 4584656.322715415, 4584990.4827101445, 4585922.599109559, 4592779.121827671, 4594100.137751218, 4595369.465409474, 4596614.124518139, 4601435.585614653, 4612962.5, 4677486.443304061, 4688928.009571393, 4691156.25, 4691306.25, 4691585.934360634, 4693807.8125, 4696371.832674445, 4698391.9539015945, 4750491.790009743, 4755189.7139436565, 4783014.203836023, 4798418.303955543, 4811784.238615981, 4812488.769669602, 4844521.845344955, 4853995.3125, 4861587.586140043, 4875331.972456952, 4879771.875, 4883027.960055659, 4884988.699060409, 4903445.3125, 4908026.5625, 4910214.0625, 4911891.352429588, 4912655.9387882985, 4912721.219939543, 4912769.4018455455, 4913757.837240989, 4914717.292679125, 4915368.75, 4915418.75, 4917179.5402832795, 4919640.507381519, 4921926.609774445, 4923792.144303456, 4941137.431825514, 4943662.71025303, 4946580.895902876, 4957757.13720553, 4961917.4017369505, 4966290.821939196, 4969682.8125, 4969861.400167674, 4972217.173772769, 4972510.749749613, 4973706.204322314, 4974123.109551583, 4975225.2284184275, 4976241.804271661, 4976410.4374634735, 4977209.336648155, 4977362.5, 4978169.994263458, 4978206.25, 4979167.1875, 4981097.660961163, 4981486.677074921, 4982225.404754272, 4987857.109490436, 4990886.605091045, 5003807.419466722, 5004861.414934586, 5005273.922595245, 5005510.570952512, 5006584.375, 5006957.8779796045, 5007777.304923489, 5008336.551511649, 5009304.31805041, 5010039.739677155, 5012728.858547306, 5014737.286176362, 5015677.37365513, 5021689.0625, 5022512.5, 5023244.863490532, 5023255.453652405, 5023399.075139201, 5023657.348757414, 5023661.809266635, 5023688.143926539, 5023692.096807151, 5023712.500751063, 5023725.341324074, 5023727.77613601, 5023820.350249178, 5023840.31506754, 5023844.455150399, 5023868.697993581, 5023898.936619807, 5023951.5625, 5024049.881680279, 5024107.527269057, 5024123.384888678, 5024234.082358116, 5024250.838689517, 5024271.51696537, 5024341.851504461, 5024345.52678621, 5024350.681121024, 5024431.25, 5024434.073210755, 5024561.96147918, 5024562.426668184, 5024786.720009297, 5024818.640136773, 5024821.501756887, 5024906.7339341305, 5024921.875, 5024931.495976446, 5025062.217276533, 5025352.54440566, 5025393.117010276, 5025551.039971443, 5025598.5471308725, 5025609.346247798, 5025692.715523253, 5025773.498606423, 5025775.449204832, 5025778.602186603, 5025857.647929676, 5025891.6774293715, 5025915.218703068, 5025937.395902915, 5025984.423268624, 5026030.513079034, 5026199.274072617, 5026342.973959946, 5026442.580163562, 5026475.0, 5026487.5, 5026507.68782834, 5026510.626069295, 5026524.119403087, 5026600.732561508, 5026698.524230296, 5026715.191021313, 5027016.245025675, 5027071.935357447, 5027322.959407034, 5027434.074977692, 5027492.106875701, 5027680.218168525, 5027697.569853534, 5027845.3125, 5027965.309945775, 5028192.1875, 5028248.4375, 5028265.086566692, 5028315.595795839, 5028410.264309206, 5028945.499195162, 5029324.661959119, 5029593.117422702, 5029650.0, 5029860.815938584, 5030537.534699304, 5031999.824995711, 5040291.961278693, 5061610.637717637, 5062259.554502389, 5062265.521921352, 5063078.125, 5065365.7900514575, 5065416.053329924, 5065459.006163184, 5065500.211545135, 5065527.50517815, 5065537.952269857, 5065613.582629609, 5065705.991423997, 5065760.23455355, 5066205.40903779, 5066744.090056298, 5066916.8271478545, 5066947.640280077, 5067128.125, 5067143.656915322, 5067163.478444438, 5067204.943334375, 5067226.532097981, 5067420.0489319125, 5067485.569727255, 5067580.913753764, 5067626.440884973, 5067642.1875, 5067717.329861161, 5067728.942293867, 5067859.275222554, 5067870.345446784, 5067901.537093379, 5067977.591774247, 5068012.907440524, 5068080.120202612, 5068471.549047956, 5068989.765671559, 5069206.25, 5069390.038312758, 5069630.080685947, 5069689.838943436, 5069762.211244121, 5069936.60269115, 5070408.736597183, 5070446.704733513, 5070732.323665554, 5071308.289167328, 5071873.174471412, 5072582.77670463, 5072623.4375, 5074398.4375, 5074681.475888357, 5076126.529739482, 5077937.471159731, 5083834.239210095, 5085062.346889073, 5085612.5, 5086471.586386671, 5086504.6875, 5088428.671165389, 5088697.874974827, 5088909.375, 5089201.625520603, 5089262.1540832855, 5089337.5, 5089366.450828805, 5089492.551545307, 5089499.737085801, 5089600.367578346, 5089626.5625, 5089637.217231471, 5089645.259443937, 5089704.6875, 5089752.964496635, 5089770.3125, 5089822.873996541, 5089842.058748291, 5090024.340320264, 5090134.423987275, 5090199.421165925, 5090214.0625, 5090544.497962094, 5090593.807265994, 5090684.375, 5090930.368437871, 5091622.271955604, 5092002.661042418, 5092095.129002374, 5092312.5, 5092503.097624166, 5092823.4375, 5093207.126093511, 5093351.5625, 5093569.163708975, 5094179.5966960555, 5096721.181710522, 5099246.095562456, 5102803.006179989, 5103209.154812113, 5103209.375, 5103265.084413773, 5103346.8493263945, 5103428.125, 5103461.178331593, 5103551.93489146, 5103782.563879276, 5104086.625651472, 5104496.875, 5105249.99543314, 5105832.467520751, 5105971.372022131, 5109886.601225538, 5109900.0, 5109914.9591632355, 5110174.948855324, 5110289.0625, 5110342.010674845, 5110367.909314298, 5110371.875, 5110404.672189199, 5110520.463825387, 5110587.700283487, 5110629.631928967, 5110676.534091881, 5110701.5625, 5110764.978728573, 5110830.932341102, 5110944.372964917, 5110952.705275851, 5110973.427471732, 5111096.875, 5111118.035699865, 5111181.25, 5111265.625, 5111283.085216461, 5111359.375, 5111364.781375193, 5111394.769618217, 5111433.30827365, 5111521.543241521, 5111542.1875, 5111562.149979711, 5111575.535902452, 5111686.827906735, 5111687.15988342, 5111693.150762256, 5111751.00976793, 5111812.491007596, 5111878.216855745, 5111913.656954292, 5111928.139053625, 5111979.524642414, 5111982.8125, 5111994.504375127, 5112127.962537568, 5112357.398385128, 5112458.103090222, 5112517.1875, 5112525.0, 5112543.75, 5112594.042644298, 5112613.451690856, 5112639.0625, 5112653.125, 5112710.9375, 5112969.545657594, 5113023.964450651, 5113027.583603686, 5113047.581240883, 5113048.959125098, 5113052.474365234, 5113105.879311379, 5113205.966930702, 5113262.743770144, 5113293.607834497, 5113304.6875, 5113488.667655106, 5113500.593548273, 5113565.009965097, 5113588.468371484, 5113615.315736852, 5113651.479210012, 5113652.786346627, 5113694.064156108, 5113773.266321004, 5113794.768546792, 5113874.4119553445, 5113876.929806245, 5113877.041230773, 5113989.400836985, 5114075.031751898, 5114100.46593521, 5114132.990625046, 5114221.425032492, 5114261.981252297, 5114265.671465327, 5114271.875, 5114437.187971502, 5114570.393842803, 5114576.485576078, 5114677.990132706, 5114726.5625, 5114735.548870727, 5114749.03714891, 5115135.896725766, 5115209.375, 5115242.3443801915, 5115334.946729624, 5115362.436981683, 5115427.961231614, 5115435.64404112, 5115477.633973933, 5115493.041324121, 5115567.596786056, 5115567.799177234, 5115590.81036581, 5115781.25, 5115809.043643257, 5115833.061399302, 5115933.707309182, 5116006.040510041, 5116048.964097646, 5116215.625, 5116365.8210241785, 5116405.623805099, 5116566.57239113, 5116573.7510939855, 5116668.124207848, 5116759.924392975, 5116882.669320019, 5117060.918631111, 5117275.374521337, 5117571.875, 5117619.245493366, 5117790.894007915, 5117890.644549865, 5118112.458786679, 5118253.090519585, 5118254.6875, 5118323.64019527, 5119073.330863758, 5121647.9923648015, 5122543.75, 5122908.723438869, 5123327.43110007, 5123555.680126464, 5123641.344498905, 5123676.734851229, 5123712.182354664, 5123843.375034379, 5123918.75, 5123954.383498618, 5124174.577765106, 5124189.0625, 5124276.331867665, 5124329.959694864, 5124414.314357466, 5124443.461742988, 5124477.981306748, 5124484.645135842, 5124562.052022198, 5124707.8125, 5124715.3472091, 5124849.163008421, 5124868.75, 5124870.192131313, 5124892.438839425, 5125009.990787056, 5125304.475425051, 5125354.994196173, 5125369.25939478, 5125376.024350965, 5125382.620311761, 5125411.407289587, 5125468.0656510405, 5125624.216152776, 5125889.0625, 5125972.096458807, 5126020.476048081, 5126026.10128539, 5126161.385907939, 5126209.772396034, 5126212.753845046, 5126223.4375, 5126296.804052268, 5126313.961021652, 5126335.702374434, 5126417.885313281, 5126648.238736852, 5126665.469917451, 5126673.166606516, 5127342.192060577, 5127470.041777801, 5127726.078444055, 5127828.260926192, 5128275.408228733, 5128336.377403443, 5128489.0625, 5128505.694156476, 5128578.781904483, 5128665.509489767, 5128696.679244622, 5128757.272002949, 5128873.6278025275, 5129216.830196822, 5129244.509657388, 5129341.224647442, 5129401.6715270085, 5130440.529656173, 5130676.5625, 5134181.5543396445, 5134258.373212303, 5136955.600025142, 5137914.476341656, 5139436.086713024, 5140997.256498792, 5141871.224891984, 5149604.6875, 5150450.9271639995, 5151175.0, 5152581.001247788, 5152643.440820369, 5154454.6875, 5156506.602812455, 5157840.6972804805, 5159290.300796611, 5160124.1107155895, 5160301.721623107, 5160458.719969525, 5160509.725077336, 5160530.35908888, 5160536.648502933, 5160539.343384318, 5160556.053079616, 5160646.875, 5160670.064769113, 5160676.19058153, 5160689.237886803, 5160710.347628164, 5160722.023002611, 5160748.190140495, 5160780.794644679, 5160820.3125, 5160839.414984925, 5160880.257237834, 5160898.878070655, 5160914.0625, 5160985.9375, 5160997.848498966, 5160999.202329236, 5161039.5656022355, 5161087.5, 5161120.3125, 5161240.299749964, 5161278.742130106, 5161280.229200279, 5161349.681960621, 5161354.6875, 5161451.636387748, 5161454.17520333, 5161489.064800874, 5161539.722027266, 5161571.352036897, 5161705.569434635, 5161716.10857861, 5161726.328498261, 5161798.4375, 5161802.607005788, 5161893.311767902, 5161894.669534589, 5161899.292150749, 5161907.862705378, 5161909.565063185, 5161924.312613043, 5161979.6875, 5161979.958854338, 5162018.75, 5162049.990099332, 5162059.375, 5162060.9375, 5162071.400901349, 5162077.286477986, 5162093.362764857, 5162094.1313788425, 5162112.180856841, 5162155.234327015, 5162210.407000754, 5162241.224671353, 5162256.422757914, 5162260.9375, 5162269.603220631, 5162273.188917185, 5162289.823332418, 5162315.897716382, 5162317.1875, 5162337.399681143, 5162343.717697879, 5162357.8125, 5162387.793625525, 5162405.212694521, 5162406.548012261, 5162407.8125, 5162409.375, 5162421.997017837, 5162422.903519649, 5162424.754696245, 5162449.191745167, 5162451.551590404, 5162454.6875, 5162491.567790522, 5162497.816751579, 5162507.8125, 5162517.028324266, 5162523.4375, 5162529.562887748, 5162581.25, 5162586.423708091, 5162603.125, 5162607.631982083, 5162630.17807999, 5162639.543069934, 5162657.834327194, 5162661.772122028, 5162672.735755093, 5162714.747839134, 5162725.57767239, 5162727.331128691, 5162728.621681254, 5162732.8125, 5162734.347346267, 5162752.096889239, 5162784.821073013, 5162785.9375, 5162793.712457252, 5162800.0, 5162800.0, 5162813.594355234, 5162850.08081097, 5162850.600120438, 5162851.5625, 5162855.330595903, 5162858.310234637, 5162877.10793078, 5162903.391972316, 5162924.33585419, 5162940.224258756, 5163010.800438699, 5163020.799136056, 5163021.289233886, 5163050.997686922, 5163052.88647456, 5163089.0625, 5163100.714594427, 5163108.330387932, 5163127.441018037, 5163167.746820507, 5163214.481740021, 5163220.3125, 5163220.916977501, 5163229.648569342, 5163236.568423002, 5163238.994389816, 5163242.627192499, 5163246.441506001, 5163262.5, 5163265.625, 5163268.75, 5163311.553516604, 5163335.684804874, 5163349.174294011, 5163366.337470025, 5163371.875, 5163385.716310141, 5163406.675532695, 5163435.489545315, 5163457.429350505, 5163518.75, 5163525.802695378, 5163537.364931345, 5163588.841779354, 5163602.382572817, 5163619.874968016, 5163633.096518888, 5163656.0663410155, 5163661.969728051, 5163778.018511699, 5163788.289082683, 5163825.805016975, 5163892.7294072695, 5163918.75, 5164003.773895624, 5164010.69435697, 5164059.375, 5164091.416045471, 5164113.125010549, 5164214.462753624, 5164216.135762904, 5164257.8110589, 5164305.465218868, 5164525.0, 5164527.235685635, 5164708.25111597, 5164710.9375, 5164720.3125, 5164745.3125, 5164811.6981333885, 5164920.8476608535, 5164955.563868405, 5165054.766608408, 5165154.167007252, 5165161.823567219, 5165224.76101834, 5165230.405134327, 5165283.844234564, 5165303.68388067, 5165315.761728974, 5165330.681987447, 5165393.474968494, 5165423.561813968, 5165433.208866102, 5165446.8722749185, 5165470.928618838, 5165488.5544712525, 5165497.366401273, 5165536.514040819, 5165588.698761299, 5165591.838704561, 5165646.001840865, 5165718.75, 5165945.3125, 5165960.982236765, 5166050.566530415, 5166125.797991606, 5166223.4375, 5166227.124103407, 5166386.323324107, 5166551.661213362, 5166619.616683709, 5166675.987050939, 5166692.208324283, 5166706.065870599, 5167391.484980767, 5167498.4375, 5167571.540811932, 5167594.952821399, 5167723.104502178, 5167734.288218179, 5168016.763928862, 5168035.9375, 5168220.5764447395, 5168471.174246685, 5168719.442702843, 5169114.0625, 5169248.15226658, 5169358.449029903, 5169729.6875, 5170029.288348682, 5170168.219063359, 5171690.625, 5172090.079150418, 5172113.493601187, 5172880.465600481, 5173083.3213859545, 5178416.10145198, 5198967.000622273, 5207880.9352420755, 5209454.645792636, 5209718.857433814, 5210880.398683167, 5211001.339570073, 5211050.0, 5211790.625, 5212281.25, 5213410.722062838, 5214120.578339527, 5214944.712754073, 5215155.493891508, 5215261.853289119, 5215508.586477303, 5215518.077960941, 5216353.125, 5216394.225403281, 5216543.75, 5217634.363360534, 5218557.216854252, 5218920.516836936, 5219906.619113039, 5221444.971277282, 5236137.151223834, 5243388.326242956, 5247499.551135276, 5247977.7246778365, 5250318.414908495, 5254950.7834360255, 5261125.018379931, 5267294.420064576, 5371204.269935844, 5371210.871462334, 5372245.840316287, 5373328.141492702, 5373645.157815159, 5401742.041635828, 5451881.51597221, 5452718.347455302, 5455629.695281186, 5456777.890274788, 5457983.953669773, 5470927.679396252, 5482610.337315718, 5484701.5625, 5487535.566043055, 5500583.269463578, 5502366.6720862, 5506716.709506914, 5508809.078331076, 5510450.89622936, 5511954.427602644, 5511965.8482023515, 5514139.027260748, 5514366.812221765, 5514653.260178528, 5515572.115678759, 5516177.4857459655, 5516568.75, 5516647.05296377, 5519032.629016319, 5519871.369699576, 5523309.033349171, 5547062.5, 5552625.0, 5577685.221071655, 5584272.362400649, 5591402.483953212, 5599157.634634688, 5607295.229415039, 5617928.125, 5623103.043153474, 5627412.382576549, 5640028.125, 5640440.572762582, 5640657.148509401, 5648284.482899259, 5674476.228479453, 5683965.625, 5689861.875096867, 5690496.314947717, 5694740.075641575, 5697485.931641816, 5699453.125, 5700726.012052364, 5701562.133311209, 5703061.94264253, 5704571.727266122, 5707029.6875, 5707035.700558974, 5709209.375, 5709395.262810893, 5710466.098636669, 5712936.637888957, 5717184.375, 5724540.252711827, 5725278.125, 5726669.923022087, 5731478.852325065, 5732205.792489209, 5744108.959436721, ...], [30.924094218062272, 46.87631383072668, 56.53146054764865, 5.4603968173315245, 13.409213623769437, 44.68343354643306, 14.819849561994214, 28.643129573340186, 7.266903444097336, 60.25608077293593, 10.732369653115423, 106.38872226460614, 32.873502123196346, 60.349445528343445, 9.072822848164332, 12.499434337728873, 51.678687617437774, 12.605229975957666, 82.53961811335664, 5.671720052346728, 56.02173001228247, 43.759540730742486, 14.916564309988281, 38.349293534035986, 8.320821104174689, 59.56352040385322, 10.06047166892878, 8.818584700388552, 6.456119501297395, 9.433849924091096, 37.320656737828955, 13.88158908869838, 64.38910769949047, 65.91506296570309, 18.944841968438983, 12.890081094844533, 7.037183953409842, 52.1627494555404, 7.816872266491665, 57.787413791795856, 10.28890097895779, 93.28922200173281, 22.104862697772507, 32.08390757105627, 60.66499515237525, 61.03882266976307, 40.33804606967799, 6.533623203468435, 136.11691446356843, 14.967065061843876, 8.794743925614362, 229.70434208550515, 14.610784589005261, 99.24045487734809, 23.258728358229067, 28.3744514279981, 84.40774032172371, 14.957781056994756, 17.346816956257324, 16.62002332877512, 12.54280114585308, 6.7423351573932395, 28.09649015994078, 11.894248627048233, 48.688237168632114, 50.442011668318855, 11.002875007202485, 10.544557854586708, 36.50493548026568, 10.175933972300415, 63.02839587747341, 10.820563372519683, 15.135889793097245, 56.35492715917997, 15.312411629091681, 5.898873060646894, 71.6169675653504, 25.019785613924167, 6.506833257786455, 32.9213927068368, 31.90771399887079, 94.94961140223158, 31.350650672698528, 9.484796122355588, 8.531343762478697, 11.474642473793471, 60.05160897087849, 10.778753466835834, 31.868716798057058, 88.3790112003138, 69.16733442669849, 14.450341988327727, 7.628827131047166, 53.82612224568914, 46.77765949999322, 5.160702106799114, 9.588666311471016, 73.11198933629171, 15.652647361352578, 19.479672189787372, 65.42780410408035, 45.2844010541688, 117.37201840419239, 21.901083039419753, 55.984154641810974, 47.70426007050454, 18.21691842608258, 77.11146545455586, 26.088984340188865, 85.3950271986734, 90.13212280334793, 12.02195225924336, 83.29694037753919, 98.16528304883386, 14.31608608790339, 88.26745522750835, 63.28643090389144, 5.53121322950249, 28.896788683047134, 7.511837424381052, 51.68860519686789, 7.10993349453351, 14.56257256686877, 8.11578537898951, 45.85810483174784, 13.417197309801578, 49.788832741784134, 57.85111958659812, 15.780181490466827, 37.78588536660415, 8.979321320072106, 17.545374032004073, 51.398125467701625, 10.388600311491128, 5.900231580201749, 13.700180013467092, 59.383603885895525, 32.770664560032756, 70.14525037483902, 9.01962851537299, 66.1412242109704, 14.127995327604088, 142.58503471834752, 42.32961774226304, 23.24497641246335, 5.325188703193607, 44.66629613642918, 14.172935188174147, 67.629251669985, 67.66383731337842, 10.659358617089328, 16.618492868955464, 25.22051592074651, 5.202466473863148, 87.51812871967007, 9.251354909077287, 11.436039178949114, 36.73148917581886, 70.23107990573676, 95.11871072450748, 74.55921559801735, 110.63288706702278, 15.598797400141859, 61.01141895544973, 42.98229954249949, 6.276429357084198, 76.15387047773487, 12.485888642051655, 20.862078810834138, 45.410471542960096, 18.61210364329162, 26.707556484126037, 43.22697535146333, 45.95445146704067, 7.2610779779932155, 9.2356723278419, 40.52391510730218, 61.416532624746054, 8.28491787376583, 70.98584331848312, 83.61869975837183, 7.520879111440301, 95.57135404510356, 12.325552483184483, 40.42733115487935, 10.495420966750402, 68.35333648361758, 13.917252935333876, 66.1257833267547, 133.1446644257318, 68.31368316594272, 10.027399852122244, 63.680553501034105, 45.84670431097323, 53.93208525793617, 33.94101491983626, 37.43007069560467, 31.0405249596499, 18.695607274155265, 32.570066420342755, 20.074213108221535, 7.3040354108703, 42.76076394995735, 15.358152884268236, 28.676971293417534, 37.246868899351774, 14.641143983554382, 10.948707181713026, 15.124811893174627, 27.97492059648625, 14.829540472497104, 19.024016228439997, 23.083475841831422, 8.818980519646344, 8.403214572586332, 51.47082883723142, 52.647664437911324, 9.755858244176832, 14.889444515204211, 33.61778023941622, 78.74224612109664, 5.123554642618251, 9.532312323369151, 36.874047396978845, 10.426784208250217, 59.63954428871118, 64.14243221641456, 9.07607120977456, 41.35064846783391, 60.292081226214684, 5.758673660988878, 72.63318791198361, 16.746869861138624, 38.19267409231854, 25.40282831835801, 6.218786509921244, 17.138201602818743, 77.93208299031843, 9.039574300208464, 30.42484540060423, 28.998141636114536, 8.722510174371132, 18.42918110919745, 54.82691376774072, 5.491602302811877, 43.14938463870226, 14.184675899030086, 12.68663393551599, 68.76284888091985, 86.03397889421105, 22.01729929639323, 18.971384539487225, 18.094452780473315, 46.11467381606769, 8.8084917038185, 17.26611253311099, 20.69952134685988, 5.245166313844956, 5.30174825267021, 5.5950313490425, 8.30664111415571, 29.386578322713284, 57.810977371913516, 9.287812568461367, 12.009115303344714, 39.86608115228626, 120.83095246531528, 71.14878737317049, 133.0774889142925, 19.07271090404016, 5.662190902947929, 15.888503579055891, 34.45524969143486, 139.10420460525964, 24.38394754214175, 44.92721805066429, 33.77078279546259, 8.020948325444946, 14.669180330573885, 24.233130738495618, 55.575845456768306, 102.71720606763253, 5.641389536984812, 45.17305617801761, 24.798033365072982, 45.493553779459035, 34.539905390529, 17.300814358281094, 27.85962318863848, 9.425855130851366, 14.12641107874645, 11.39117947275858, 14.419346470268469, 9.742490850740062, 17.136824436718307, 74.79961864004545, 29.469753429535476, 22.48169949915255, 8.232285634205583, 19.028419199101975, 24.908276773185847, 6.3790141856605045, 6.931376698675358, 189.1385582491155, 65.68524872584092, 29.647207147575184, 81.10650140513802, 43.025606075906666, 69.29155396951101, 11.378070432889228, 9.405831264269244, 92.0895698036374, 5.3636262887415675, 20.07527533511454, 28.19476554700082, 41.8258725802799, 8.244397111496118, 117.01029577369131, 12.420567957876498, 46.295464642198176, 10.668550922938264, 68.45369667473969, 30.516515286778283, 36.36865645194546, 7.113795874471441, 75.17627525991348, 41.16845531974666, 10.637468733270989, 5.579981437333132, 41.92308033100059, 68.68821185517504, 25.777700771857234, 32.711050288265305, 9.147175244353418, 49.30786933769312, 65.760611101644, 20.83688835345122, 48.42499549035033, 20.19716380409815, 15.69463664500338, 13.700223149452878, 48.11656971467601, 5.228122697875347, 61.401481711317054, 21.69628187079179, 24.294701345827537, 18.03009793805553, 54.773370708482474, 9.636502928086907, 23.009269354085646, 37.382317941408246, 59.30749472899731, 26.810328074548075, 17.56525737790649, 15.459426666741606, 43.68159194909123, 14.023839915440286, 5.515493682188516, 23.298530572050183, 26.332361643626268, 38.537776859148515, 15.513383575779098, 8.771873116075321, 10.975249330167546, 33.50804368234682, 36.31195148805085, 21.16793733803564, 36.95477944310572, 36.28841758988472, 23.424805624073272, 18.528078827769818, 93.930880214426, 49.80357731686236, 27.176882772634634, 7.341695541638114, 20.62324095186553, 9.965231009611028, 6.642413200274204, 34.24024860845018, 81.98183735404052, 31.70064583363323, 63.957657616058796, 43.23643757536385, 36.23020249342475, 39.98666890644959, 15.878565194274982, 7.591431583984405, 49.59633910440357, 5.606575828242449, 22.57405775608661, 39.46405742662861, 31.787999672459772, 51.68203338636541, 67.11926752044701, 29.186353704713024, 64.41349495573125, 31.06422562565233, 23.181418908491914, 63.393086907218354, 6.014701763113454, 60.846241424582395, 33.241312974142275, 55.007523656729795, 32.22475151271821, 10.712728553330434, 77.54166497565714, 121.5338587868794, 25.71268802323203, 29.65168507332566, 6.198535560887578, 33.92555399804107, 10.232503047098643, 12.175754336809534, 8.002493583679273, 40.90929178350576, 72.12839418785845, 20.522075277717622, 34.74009550524177, 20.347564492341377, 11.810560616702416, 21.86033855814956, 52.038529758979315, 71.7026492053906, 36.798394606308754, 75.20349965892089, 19.815427961111702, 42.38986129070818, 11.842413141126634, 26.84943520966124, 19.75973916335069, 19.095166113698216, 10.946927287350135, 29.636417776446496, 50.88652319202501, 17.636432602042117, 28.026649018357283, 58.68723473984712, 31.28321508153152, 16.580214157306024, 90.52374007517743, 91.87448593641611, 82.75213821598737, 28.435016665388922, 7.033626767883786, 52.975124987886076, 24.16971495304225, 102.80839251388525, 19.98427609688873, 37.078084082025846, 49.56715940943657, 28.667841098351964, 7.886980652053687, 36.7212021189686, 5.341397310711337, 32.5108227227546, 6.518952532610633, 27.471333233651613, 8.271611552985705, 86.69665383489772, 46.24848267536869, 23.52776438433569, 110.25373294315624, 30.4022575907442, 75.58232743110787, 63.390900796209955, 59.06144749926398, 29.420909923014836, 30.87780248039846, 5.629311756834544, 61.269358271662156, 8.707210838049935, 17.7255753090656, 47.886493693528244, 19.32410849551171, 71.16383731094086, 7.481364128912512, 49.46232102049534, 7.960501455540384, 23.251485566673395, 25.90608103500178, 71.38487133851187, 29.29282239302583, 6.781984465776612, 22.490085743023375, 12.747810892389062, 25.67629316544372, 110.9565591687791, 10.062650540429328, 25.68239334783077, 13.567585174171379, 16.178269819866177, 33.047084121856074, 51.416194052496834, 64.96707725438641, 53.58471997858498, 7.396311684458636, 42.48548208105632, 58.83554166641148, 34.105596505358186, 38.64524197345875, 12.832754728957642, 39.0704028496228, 21.502468983868294, 17.38843618279458, 6.9603150189807, 22.887921637251516, 59.68198835459352, 140.87485882609172, 63.85879121166644, 64.55710918865195, 5.592567551482122, 9.889340935550404, 79.87403938325694, 8.87494207791878, 30.730458101871683, 5.701477635895705, 13.110536900500339, 20.091929459313548, 14.326869456269899, 21.0655695070215, 75.44290781980993, 8.49085991335725, 17.14540476230209, 8.47398387301042, 9.358396282934486, 68.86113059193463, 43.361512429165444, 58.757453004261414, 5.895468074588295, 9.371003714193128, 28.921640077788403, 6.056241127796855, 65.70692644691513, 8.246313305088606, 52.81743902188779, 50.75437730915146, 27.7112103270654, 12.215066065350031, 27.74287736243357, 41.90013715865305, 11.38210620496025, 17.684261836058653, 5.933936235309004, 18.7338622510247, 61.92260071091248, 61.6093761273556, 150.2711730843839, 49.645010056640075, 27.169222748087904, 32.40995855248566, 60.52260461717545, 7.0369896146693165, 72.19130656884496, 19.968906054414646, 83.85939943677883, 5.559195720073359, 63.05657223591002, 9.502841505923945, 21.601048418974724, 30.169358940247335, 58.81422492291057, 20.323780563767134, 82.2838711750327, 45.06289737914914, 65.93040775016917, 46.335022515202326, 60.832418084993336, 46.68197124589137, 68.44164473897922, 28.680718808028384, 5.704140092728878, 9.302417223873869, 38.23246485846203, 29.358472971831667, 64.91190306260397, 13.47886212279262, 51.33015868008055, 10.242083525563704, 43.45903194131359, 53.83392664148134, 12.475524335620934, 21.80487593758761, 70.50391232006685, 13.682046753699899, 57.607716751670154, 23.699763763980027, 13.544194661565372, 113.57142501573264, 6.451535292547693, 28.11124906938234, 15.997015146030193, 13.945949571278721, 15.76430171240641, 24.912050955385716, 13.470817051977672, 46.918035045617486, 72.65415833167413, 10.030751145195877, 106.67315437010433, 13.961964135233746, 64.84808400165645, 78.16433762997985, 8.177524629576581, 145.761712894876, 17.318206603461835, 59.09033670728287, 25.23303300301001, 6.563345936087571, 5.765022049884012, 6.616496057642502, 68.72367904770915, 15.858601016969427, 7.165117521567281, 13.433540263644156, 9.741701674031342, 9.691658740926279, 11.549102533975176, 37.285028265639454, 11.018592665415273, 26.667566729393386, 9.140201451192103, 44.111787351454325, 34.42688220335774, 25.79696452293377, 38.90126885967221, 67.34543781664877, 14.352245374828584, 55.352150634123056, 45.44258095730294, 49.832055113794766, 5.735338530038493, 37.455316070597526, 35.16188517294583, 9.956347164270303, 26.432917234525103, 14.24442522022006, 90.97582201818497, 39.546163725865405, 23.045367276169383, 5.36864413172995, 17.854985332963395, 11.302509385861516, 22.401775360070253, 60.25777279670267, 18.93734250959151, 5.743397335340918, 7.970373527549706, 16.79448526364843, 7.161235518547247, 8.499178124763224, 75.56072949268864, 67.7572754154794, 12.970069866585527, 29.46398583265512, 24.428204051248052, 5.9129250799883115, 65.04033335569744, 9.648674748610555, 33.05365741751331, 10.656142904529165, 7.8663380856906295, 8.372555792890262, 40.329832675841224, 78.3912802964547, 91.38914136286995, 12.45649508744347, 6.5320425851408075, 9.170267283817752, 70.34574820090015, 24.95991258591623, 71.94883213913036, 6.28961447992956, 13.086467903439592, 11.367202505370031, 10.761894167122094, 18.777272025031277, 28.548488130619255, 55.84391838480187, 62.852404219228134, 56.813594852690926, 70.24750352519166, 92.75465347233698, 18.565075283908545, 51.96467242029602, 49.18639732313537, 56.660382612109494, 57.99051052930503, 13.831557886004441, 62.97024702451616, 36.551026223424145, 54.96590424405273, 129.88404210793553, 9.394670767266874, 10.41141123839446, 14.950286536530838, 12.343076273360037, 44.76937084580052, 116.6793984573879, 9.77675251318052, 10.780639031085178, 95.7210997442595, 13.277032819345933, 50.163273613098994, 41.68674004978905, 8.796920803457684, 80.45327614714712, 15.719055078538492, 78.99225248504311, 48.29531630633133, 16.08755420861578, 58.62978689173496, 12.99348778437799, 61.55802717865273, 40.91979834870309, 10.459565459046837, 89.80568984250911, 34.7643529325109, 5.106037109939051, 5.1237395924247044, 7.273018574820323, 21.19415528630713, 47.62547652556925, 7.666939668828153, 68.8185284231157, 12.787232986401472, 7.515737636585742, 24.514387848031635, 16.093931800384375, 45.4931788398841, 61.04707277244583, 20.902563372366178, 37.45968007578354, 7.200836952517887, 17.409076187193865, 34.100225970380286, 81.72716458298744, 96.85236230849235, 5.823064044750701, 8.91732228442338, 15.69210883469852, 28.24036811286853, 72.03383367864168, 32.322435585884435, 28.19516883166798, 20.367589589244886, 68.98303213227248, 10.88769768855926, 42.04820714474432, 114.15737461275842, 81.52279025823503, 27.7751004078176, 63.30103204787645, 25.407176845379432, 6.865565378438719, 5.556867728491471, 45.153304518318635, 65.9955507754114, 41.12620774437383, 24.560387684408518, 27.799477115276346, 83.71062888152409, 17.245999021174246, 56.607675157994606, 5.531739922070158, 56.83609833480411, 8.537449314032328, 74.08265271069, 27.803030370885452, 82.92638709107862, 82.609019166256, 6.673510578501481, 7.142857674282656, 77.07010208943, 40.23327568560638, 12.30753640208502, 62.2925113265043, 46.83924122227785, 23.79312229431211, 43.281665741895594, 65.28859385710844, 5.927557621451635, 17.18951201910657, 13.097134134507801, 29.578242465394375, 19.40200957493883, 61.10619368568085, 23.880607821201274, 12.046743511123932, 8.813072398594509, 77.90344009040592, 16.822944599841993, 64.99415374325073, 12.225236882248227, 14.795171523722427, 5.996300196900579, 11.02288932094177, 6.135048866124561, 7.011978415751793, 49.08268690020434, 91.26148928382715, 128.38608097597984, 12.249649237059455, 14.058544614156151, 6.1682239582968235, 7.882992894564145, 77.29616039458189, 93.0396755237073, 9.719145764233778, 20.475560085908604, 38.774790179992635, 31.319412450137044, 19.241531898029265, 31.293539471906335, 8.17320645345399, 12.07973077761405, 84.21426898385603, 5.35174908650942, 36.37140348784791, 6.988703324162363, 21.233307305063143, 73.12519027757367, 85.89948400529643, 12.095441685273363, 110.58489748184184, 58.82247329104185, 62.04255090331297, 79.13145213307936, 10.103692483655449, 5.995748290703208, 14.181544519531645, 17.326025151422638, 19.209444637853615, 12.60836405336189, 54.42979404044623, 12.37286045621176, 27.08970883159484, 44.95017041200295, 43.898102211688375, 59.30827728273128, 18.931433522147994, 17.467053101266238, 6.184235376163421, 6.499564083890446, 72.07501962002644, 12.867486443155618, 70.08957320230842, 32.95712092951426, 75.09098518040827, 12.130227126988709, 5.539753432822145, 20.840447847595552, 24.075006585738517, 7.648827381251675, 71.678858838651, 28.471319757042842, 9.913027815341133, 26.891184249207036, 21.42473403521505, 9.871624827543622, 32.91493865668552, 16.66151568985857, 5.752080455615317, 40.16262256184962, 105.79149820768538, 15.114811473643016, 12.146006753047176, 8.759040910878861, 39.41708847371276, 39.09019588435829, 11.789545803276818, 31.274275330558275, 19.73939567973497, 64.32368022779957, 15.021480368131325, 37.303348540964556, 37.953983228918716, 93.50310336858412, 10.642657140716265, 13.72751611343478, 13.807943862844734, 52.10811366922853, 61.80237836678423, 75.25387517486868, 86.90160234950373, 10.18450612308968, 8.690331403961945, 84.77591866008763, 9.101331079089395, 19.161025877970616, 72.5557236884811, 32.99024588471913, 6.202370586958057, 52.97972988194503, 61.445650884286444, 38.706378403698935, 5.658591386977277, 17.315301170088972, 18.56753650824697, 73.45708750954883, 23.89539966247999, 57.048848876745524, 21.55227745570315, 6.16531606504741, 46.20555906134129, 75.1183688933117, 66.76710331958378, 76.07742133311163, 24.894554032457773, 7.193131319532129, 24.689397823914902, 19.269412316056076, 20.144611087987368, 53.63490232708975, 8.821198452392363, 39.795737838421076, 20.47974852158176, 40.3351788467112, 68.7567450804902, 33.283242235071796, 9.510372141851374, 61.069446173417454, 53.267549777462676, 23.147066896779133, 19.42095707328426, 22.01883291846041, 13.607589961343448, 77.84734918008796, 83.00317432234732, 20.818198706861494, 5.865280632017547, 68.45953738932306, 11.026031050490873, 8.586917191946794, 11.153584184940971, 10.894236379974359, 25.94181725152858, 15.717798149671111, 18.85776414623645, 13.680211967928166, 10.779620986183051, 15.051390394991277, 13.477535068752054, 56.38350272370229, 52.97153321179807, 104.78798281149834, 5.049329637262035, 21.340705140051913, 34.694797052117124, 29.81083327122186, 6.956671739591337, 7.511866360254134, 9.527544285353287, 11.186290424058969, 16.000641466347112, 70.59917499193776, 128.88873745815428, 12.96018362715638, 49.62780934747601, 9.486555657322594, 53.61692720964562, 17.182978173575805, 33.44653443537966, 28.775462047097527, 47.17944847175389, 19.360090100152835, 82.40458872269217, 36.154131043238976, 67.09714802689808, 26.982806331089023, 163.60554036407996, 42.55028620500685, 109.43877668468156, 46.812603432364604, 6.2606210290950655, 71.14029086167113, 15.369362795178926, 13.804835533165916, 91.40093616462836, 20.331485041662674, 28.635717352218435, 21.014460005623775, 28.409628584280103, 61.06667896483732, 21.004198654690033, 13.706610363469029, 13.171655307815854, 104.75515895529999, 33.06377084761469, 14.109272564419335, 92.04947793361676, 14.75544072621296, 61.86097244465472, 12.432846597769508, 30.54669254123099, 22.86928406583662, 35.47017682081748, 31.852741218596847, 12.493132428045916, 27.20247676679603, 8.078401717380306, ...])
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)