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 = 46396
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);
([6719055.913481772, 6817182.234637465, 6867090.053968755, 6867888.975345576, 6972658.040346662, 7022292.78043986, 7022333.9641493745, 7134534.375, 7149312.5, 7209468.60152659, 7248938.884833042, 7248940.77843459, 7251047.621887891, 7300590.540365884, 7391436.6934706345, 7393280.348930942, 7393303.491936797, 7431698.267665671, 7487280.361642555, 7489379.138044205, 7489403.876784692, 7529566.98264296, 7553178.125, 7568255.921071074, 7568271.109561994, 7592814.0625, 7777956.25, 7791531.25, 7832418.75, 7897403.125, 7912373.077271915, 8049966.6751436265, 8058967.937713392, 8147634.479227928, 8147658.706277488, 8209508.0651869895, 8274207.977353553, 8299644.364154015, 8387620.634357718, 8435708.512117118, 8580379.521905823, 8628654.6875, 8754929.806611728, 8893042.840134589, 9127019.673308492, 9218520.3125, 9218824.290416263, 9259454.353330627, 9338298.64852937, 9338301.734825315, 9340589.69017986, 9347067.1875, 9413309.946818104, 9414881.25, 9415026.746102143, 9415304.168385675, 9415763.402820513, 9416589.741603104, 9416818.281050943, 9417702.386702875, 9418375.679672679, 9418478.125, 9420966.74099344, 9420985.38358743, 9421876.5625, 9422630.063559648, 9425499.974051302, 9425504.352811076, 9439235.9375, 9458782.8125, 9458979.806750404, 9463327.933620373, 9466611.24553594, 9467216.831442669, 9467867.1875, 9467984.687386774, 9468626.409478758, 9469192.246829415, 9479936.197384961, 9481636.12739299, 9481868.37303151, 9482626.5625, 9485085.85659143, 9491495.47565644, 9510137.5, 9510349.395965068, 9510816.436847046, 9511307.8125, 9511873.564849947, 9511985.9375, 9512226.102427602, 9512624.476204854, 9512632.8125, 9512709.910272071, 9512857.15862331, 9512893.75, 9512902.291795984, 9512912.056981884, 9512958.431672825, 9512992.1875, 9513019.370489763, 9513035.9375, 9513283.70517966, 9513399.915899383, 9513443.99142945, 9513475.054456517, 9513664.0625, 9513738.483630477, 9513839.978205705, 9514006.93636403, 9514034.22501191, 9514036.1730224, 9514056.25, 9514087.60706721, 9514102.823459579, 9514191.578969968, 9514229.570645202, 9514412.831059184, 9514676.345014524, 9515028.125, 9515097.09787598, 9515198.4375, 9515493.89359202, 9515781.01119477, 9516279.171110295, 9516303.011886697, 9516445.065833379, 9516491.98485518, 9516500.321801899, 9516784.375, 9516905.07092509, 9517571.228936793, 9533798.992718449, 9537984.372955177, 9538034.375, 9539116.723115765, 9547897.409559565, 9554583.055280853, 9555591.529224122, 9555917.1875, 9555973.4375, 9567762.448796421, 9568526.813465409, 9568542.556635631, 9568860.9375, 9569045.234983958, 9569076.525890494, 9570679.34791144, 9572469.727640802, 9573628.969409289, 9586259.375, 9603798.523594009, 9616967.1875, 9618021.713314874, 9618560.20930982, 9618743.832991736, 9619720.3125, 9629914.03374992, 9630160.4315956, 9630826.5625, 9630853.752049778, 9631921.875, 9632281.25, 9632369.948233757, 9633101.203758888, 9633611.361664345, 9633646.724992994, 9633862.5, 9633992.020764653, 9634002.84917937, 9634381.547260396, 9634605.072675068, 9634642.1875, 9635060.616120161, 9635734.14316984, 9635741.65046016, 9635920.096988058, 9636284.563285163, 9636714.0625, 9637293.75, 9637576.5625, 9639321.501452906, 9639804.96738694, 9641101.847265348, 9641418.75, 9641832.522641713, 9642369.36319014, 9642445.187846683, 9643274.21487249, 9643279.642548792, 9644675.0, 9644676.40055503, 9644804.316695547, 9645126.698083831, 9648129.6875, 9649390.937899116, 9649435.333842421, 9649535.505549544, 9649586.321032742, 9649637.720340349, 9649778.079377173, 9649821.775539242, 9650029.806238336, 9650260.9375, 9650269.615677733, 9650331.679427134, 9650335.9375, 9650546.041401962, 9650590.914909177, 9650775.485914513, 9650799.97163991, 9650907.106670484, 9650914.187426591, 9650945.3125, 9650968.75, 9650970.3125, 9650983.414761348, 9651058.649164025, 9651131.25, 9651234.177554578, 9651319.437649718, 9651373.503103409, 9651554.386001408, 9651597.019407025, 9651615.625, 9651624.132137362, 9651687.0913152, 9651732.799163558, 9651735.931752563, 9651838.108734788, 9651901.371299138, 9651901.839568242, 9651912.870236335, 9651979.6875, 9652112.988934373, 9652175.049467066, 9652254.023960803, 9652281.149307927, 9652340.510765232, 9652343.54468564, 9652375.789100159, 9652410.27999299, 9652410.40620668, 9652462.117385965, 9652518.77131734, 9652535.627975345, 9652535.653357303, 9652546.875, 9652576.5625, 9652716.858880157, 9652801.075402483, 9652820.3125, 9652848.4375, 9652890.025867155, 9653002.10665292, 9653037.950381137, 9653182.171489825, 9653290.970442886, 9653379.190605327, 9653427.059676085, 9653458.333090365, 9653471.848474227, 9653476.516384311, 9653505.703343673, 9653548.4375, 9653625.0, 9653739.99548838, 9653779.51549556, 9653798.05657019, 9653860.9375, 9653867.1875, 9653888.649188008, 9653937.988995342, 9654000.0, 9654003.125, 9654072.082676876, 9654093.75, 9654107.8125, 9654118.77050353, 9654150.142322376, 9654155.155251069, 9654243.225786129, 9654253.849984605, 9654290.992645564, 9654301.049014015, 9654374.585126067, 9654378.188806405, 9654384.375, 9654393.60164076, 9654398.4375, 9654425.002282087, 9654462.705005977, 9654493.745116951, 9654515.594327787, 9654537.5, 9654624.151432922, 9654631.25, 9654692.1875, 9654700.102070557, 9654714.398956697, 9654730.7207861, 9654756.25, 9654798.871473664, 9654809.375, 9654814.636564318, 9654818.094277723, 9654878.125, 9654890.933455028, 9654945.598865565, 9654964.278316425, 9654969.744147576, 9654981.849998005, 9655016.149510872, 9655023.519350687, 9655044.717757206, 9655085.895071449, 9655170.3125, 9655210.9375, 9655218.62469482, 9655328.939933822, 9655353.990124261, 9655381.25, 9655393.75, 9655394.26480971, 9655453.478011522, 9655480.80811578, 9655496.714429509, 9655562.240168996, 9655593.75, 9655691.591346037, 9655760.32559562, 9655781.37957461, 9655788.2257957, 9655822.36542623, 9655850.0, 9655853.125, 9656021.17670707, 9656065.04857986, 9656126.821290158, 9656297.777936667, 9656331.893360151, 9656355.916384669, 9656423.227306582, 9656428.888063367, 9656470.531406537, 9656514.23193272, 9656640.625, 9656711.92236891, 9656712.667365959, 9656757.605472852, 9657023.787098072, 9657068.839709057, 9657101.5625, 9657765.625, 9657863.39616586, 9658438.64063386, 9659587.281060228, 9659806.25, 9659945.312655987, 9661041.718384102, 9661147.999148801, 9661911.900471805, 9661920.922622839, 9662489.0625, 9662593.304985087, 9662613.640958501, 9662735.9375, 9662764.0625, 9662945.290427078, 9662946.448973991, 9663023.785917038, 9663037.5, 9663088.092237858, 9663282.41870006, 9663410.69583815, 9663850.910857677, 9664705.712696629, 9665250.0, 9665475.0, 9665786.520813946, 9666376.5625, 9666608.823292285, 9667053.721846944, 9667664.989629121, 9667727.411131639, 9668035.64645261, 9669718.339031925, 9670844.260626487, 9672460.567689031, 9674646.568268046, 9674713.008534418, 9675360.899083482, 9675438.339791594, 9675480.286122093, 9675796.875, 9675890.206678621, 9675942.741534805, 9676203.125, 9676264.651814101, 9676389.240269827, 9676470.451593041, 9676486.929219505, 9676610.9375, 9676681.724754957, 9676872.903826032, 9676960.895490997, 9677106.00049127, 9677295.035311406, 9677386.113705961, 9677442.22876658, 9677759.36134401, 9677767.787435206, 9677898.729417644, 9677908.109661952, 9677956.681116547, 9678059.288044127, 9678084.499141542, 9678140.625, 9678163.749144021, 9678320.292528028, 9678807.970002111, 9678954.580377033, 9679071.132330218, 9679132.8125, 9679200.100283278, 9679790.275276423, 9680346.003906742, 9681488.809896069, 9684291.141893039, 9688789.757304115, 9688821.875, 9689095.602913985, 9689382.804744104, 9689579.6875, 9690054.611047553, 9690953.511454085, 9691183.91702854, 9691190.625, 9691238.64978223, 9691396.875, 9691625.0, 9691761.721395003, 9692078.153274154, 9692146.875, 9692148.364132123, 9692154.23176033, 9692381.980788482, 9692384.410265423, 9692410.9375, 9692571.124364803, 9692578.125, 9692786.758984916, 9692850.0, 9692880.061799705, 9693046.21872188, 9694140.625, 9694159.805473851, 9697894.622558525, 9697924.702346975, 9698053.517840734, 9699218.75, 9700103.9290639, 9700160.9375, 9700423.36530018, 9700881.25, 9704356.25, 9704656.363487553, 9705181.25, 9705370.29063396, 9705680.9521654, 9706984.13736431, 9707247.352895742, 9707848.4375, 9714050.103576398, 9714868.788104076, 9716306.109100647, 9716653.125, 9717066.772467751, 9719339.549536671, 9719931.25, 9720095.3125, 9720119.595410228, 9720483.489467723, 9720600.527925525, 9720881.337065456, 9721002.192228107, 9721174.9312563, 9721177.56844719, 9721293.75, 9721337.57727837, 9721984.375, 9723541.766288625, 9723911.490252217, 9723916.455407627, 9724149.84383286, 9725851.5625, 9726884.26667282, 9728104.373359982, 9728357.74343968, 9729156.620742766, 9729453.725556435, 9729677.912075106, 9730506.158626147, 9730764.887182077, 9730846.455806047, 9731057.337821215, 9731100.737081835, 9731271.932635907, 9731696.019071922, 9731721.875, 9735807.8125, 9735904.6875, 9736510.221798236, 9737185.037710318, 9737233.345288312, 9737943.831486069, 9741922.880350828, 9744973.8718842, 9746545.740555892, 9747876.70601482, 9748471.273230037, 9754283.920338992, 9754949.26142441, 9758922.972649843, 9764507.209042339, 9764616.247868504, 9764842.886205489, 9765960.9375, 9766718.75, 9774956.021522876, 9776754.397516608, 9777188.580806388, 9777798.343114834, 9777803.311068058, 9778510.485634483, 9779585.9375, 9779785.622239493, 9780036.70722884, 9780561.570088502, 9791133.028619181, 9793007.8125, 9793963.929720126, 9794954.084723799, 9795618.75, 9796282.8125, 9796313.20928522, 9805077.771315698, 9805213.527465587, 9805521.875, 9808165.578605054, 9813027.742957778, 9814457.8125, 9815623.590110194, 9815629.6875, 9817720.3125, 9817742.002058953, 9817759.375, 9820728.50406249, 9820907.549890589, 9821574.339645848, 9824634.936645875, 9825363.797483161, 9826678.125, 9827115.566764688, 9827505.462868161, 9827927.33397809, 9828482.8125, 9831283.39096527, 9836406.25, 9843818.408327565, 9845838.671536492, 9854237.5, 9854371.583248448, 9854498.241223292, 9854550.56489021, 9854648.313049356, 9854657.219529442, 9854659.024370594, 9854688.69122992, 9854695.079617186, 9854710.9375, 9854711.252714673, 9854718.147268571, 9854937.485154562, 9854938.705780054, 9854942.1875, 9854977.071584234, 9854989.73696932, 9855151.846318338, 9855230.89044642, 9855776.5625, 9855823.202896535, 9855830.521100739, 9855879.734719863, 9855953.381872581, 9856060.499143863, 9856082.35007822, 9856194.541614773, 9856219.317552771, 9856270.418682711, 9856280.69392571, 9856281.787561025, 9856349.81709982, 9856364.0625, 9856381.25, 9856451.5625, 9856459.25740843, 9856490.795747118, 9856499.912091006, 9856503.125, 9856535.335842049, 9856555.769182747, 9856578.413843932, 9856591.939142212, 9856618.221603641, 9856691.16984684, 9856811.003619233, 9856818.741755199, 9856865.625, 9856865.625, 9856968.411225421, 9856971.875, 9856995.3125, 9857014.84602373, 9857026.243337147, 9857028.871497316, 9857040.625, 9857083.035094434, 9857130.36422986, 9857170.344528172, 9857277.897209026, 9857285.592755636, 9857379.488088392, 9857551.997205349, 9857585.9375, 9857660.45334464, 9857731.25, 9857760.30841989, 9857779.07711984, 9857852.636641622, 9857894.381404772, 9857975.767488401, 9858017.1875, 9858083.276499795, 9858117.1875, 9858200.859142285, 9858413.514039267, 9858438.374932656, 9858472.219546571, 9858560.9375, 9858671.875, 9858679.6875, 9858703.125, 9858729.069315381, 9858757.791685691, 9858802.784739051, 9858880.798777271, 9858910.476329213, 9858960.331028404, 9858973.696915522, 9858975.981932443, 9858989.701008083, 9859000.0, 9859067.422825085, 9859159.683192143, 9859168.75, 9859291.413205637, 9859407.533628263, 9859439.0625, 9859460.175099596, 9859579.442474477, 9859589.504739482, 9859604.075106068, 9859629.848592002, 9859649.22821924, 9859700.0, 9859705.380256686, 9859708.5432994, 9859740.484813435, 9859743.116758691, 9859822.650712859, 9860036.498188863, 9860066.294472026, 9860124.260264806, 9860194.847303642, 9860382.8125, 9860397.691257821, 9860456.314329498, 9860541.273830933, 9860546.875, 9860794.358681105, 9860910.9375, 9860912.606476994, 9860943.422525426, 9860968.75, 9861049.081542179, 9861076.5625, 9861092.740976147, 9861151.21062415, 9861278.710476642, 9861335.419424746, 9861350.0, 9861361.811043622, 9861372.790727252, 9861467.079466019, 9861477.237224163, 9861670.986957174, 9861717.1875, 9861725.295514971, 9861740.976668226, 9861782.386252007, 9861893.75, 9862119.142402694, 9862141.820606954, 9862176.106173748, 9862250.0, 9862259.967513386, 9862329.6875, 9862394.559691142, 9862409.410761828, 9862411.777713811, 9862420.122547314, 9862450.0, 9862450.392175103, 9862545.3125, 9862557.8125, 9862601.5625, 9862620.3125, 9862658.746648444, 9862723.965852028, 9862911.328529004, 9862959.42264581, 9863098.4375, 9863140.555913962, 9863242.35416682, 9863365.625, 9863415.06552842, 9863592.1875, 9863721.875, 9863734.375, 9863903.525758505, 9864042.951116644, 9864077.334424097, 9864228.65031997, 9864256.25, 9864296.715811426, 9864323.4375, 9864365.625, 9864434.375, 9864443.366379471, 9864739.781090353, 9864845.3125, 9864891.35547052, 9864923.109397268, 9864935.893136986, 9864944.698955655, 9864947.813783562, 9865038.47738118, 9865062.5, 9865124.951305171, 9865194.027396346, 9865223.912993291, 9865253.061565286, 9865353.119457014, 9865624.931678612, 9865639.0625, 9865678.283698656, 9865802.304610416, 9865878.87100749, 9865884.159673432, 9866089.170654828, 9866089.846803768, 9866124.92154308, 9866473.68250809, 9866560.9375, 9866604.502891352, 9866620.221679986, 9866636.14590971, 9866672.63326749, 9866809.200609613, 9867056.25, 9867114.534309847, 9867118.476787914, 9867153.101930143, 9867223.4375, 9867483.890108982, 9867843.712448277, 9868071.086335186, 9868086.898768675, 9869429.593321435, 9869557.8125, 9870227.484015923, 9870284.677693827, 9870604.6875, 9870949.713797487, 9871101.632124912, 9871436.126392733, 9871706.25, 9871774.37092205, 9871907.57876047, 9872026.81575656, 9872033.382508485, 9872082.8125, 9872365.35061831, 9872475.217106562, 9872491.379199574, 9872517.1875, 9872577.53114507, 9872614.848258518, 9872810.537853204, 9872814.0625, 9873013.173159275, 9873496.875, 9873789.973461678, 9874102.12168903, 9874840.625, 9875160.712660518, 9875179.6875, 9875242.1875, 9875335.781183556, 9875592.1875, 9875726.312288873, 9875847.686715975, 9876425.866097286, 9876515.236688899, 9876693.077741425, 9877011.083252696, 9877059.375, 9877097.809121031, 9877187.295859244, 9877361.16824248, 9877443.161829727, 9877468.357279697, 9877628.092361623, 9877732.8125, 9877977.65129718, 9878034.375, 9878039.0625, 9878059.375, 9878383.993874725, 9878509.183006773, 9878985.023696916, 9879999.64963873, 9883860.892148264, 9884558.60134682, 9886925.0, 9887097.608760668, 9887282.761272963, 9887981.002991086, 9888600.46859108, 9889810.9375, 9890196.10335547, 9890208.79511517, 9890745.210380858, 9890807.8125, 9891463.724615786, 9892454.6875, 9892481.990820862, 9896742.840305382, 9897341.98602364, 9897371.299145527, 9897379.066001525, 9898141.361818193, 9898528.125, 9898548.157220216, 9898764.0625, 9898819.904274188, 9898871.875, 9899195.3125, 9899208.897323873, 9899222.51637895, 9899266.48686911, 9899409.137872614, 9899492.773180328, 9899511.975051051, 9899561.710542617, 9899676.34077909, 9899719.682368552, 9899732.673476916, 9899733.733111106, 9899782.830951186, 9899795.250187509, 9899797.296286775, 9899809.375, 9899829.373106249, 9899879.183798833, 9899950.0, 9899951.087636696, 9899958.808363296, 9900000.934329864, 9900011.492959986, 9900065.214020777, 9900083.781166455, 9900139.69828258, 9900172.347080672, 9900279.354316019, 9900365.625, 9900379.6875, 9900499.652260624, 9900535.112436611, 9900547.207561038, 9900562.432790024, 9900579.6875, 9900763.906701542, 9900841.357200315, 9900993.75, 9901042.878059514, 9901062.69353428, 9901231.25, 9902139.82297234, 9902543.75, 9902611.030404195, 9902775.0, 9902832.396720761, 9902864.0625, 9902910.389738759, 9902989.999489667, 9903069.411100075, 9903281.25, 9903521.875, 9903768.63488809, 9903926.533249654, 9903975.949233616, 9904327.735577842, 9904360.9375, 9904364.0625, 9904365.79475622, 9904662.25828133, 9905239.0625, 9905280.425424967, 9905436.25107178, 9905504.639158394, 9905749.18374201, 9905943.32852328, 9906613.855482427, 9906620.16928356, 9907171.875, 9907365.625, 9907551.224496732, 9908265.999098869, 9908956.25, 9908994.066880472, 9910923.348927101, 9913075.0, 9917617.1875, 9917824.000647483, 9918293.75, 9918470.243913526, 9919747.225348594, 9919907.61682874, 9920342.1875, 9920589.0625, 9920924.220785677, 9920946.843541393, 9920951.335453242, 9921191.506126335, 9921260.9375, 9921288.170125812, 9921326.5625, 9921450.0, 9921539.52620927, 9921711.821245084, 9921851.554593746, 9922074.762085129, 9922101.329871543, 9922329.386396905, 9922345.169097206, 9922449.362004275, 9922451.787738984, 9922509.375, 9922567.863453053, 9922580.989400232, 9922596.875, 9922806.25, 9922938.820054611, 9923159.375, 9923248.745007725, 9923313.436572785, 9923482.566893341, 9923627.490506172, 9923717.531451602, 9923762.5, 9923763.574887399, 9923805.936846372, 9923896.875, 9923971.875, 9924027.303054357, 9924081.076515036, 9924181.969485182, 9924267.1875, 9924440.625, 9924568.313715398, 9924606.708780427, 9925085.9375, 9925112.5, 9925128.125, 9925434.433840338, 9926701.832195623, 9926741.778859902, 9936770.939019237, ...], [23.29521680407178, 13.117740183954696, 20.812629216947393, 7.098728334410242, 5.073063155204979, 12.200977755547, 5.904407334130093, 57.188715346760915, 44.11929854789952, 132.8273592608745, 67.54258668263914, 58.868521010641615, 18.832874419016584, 26.95591292786852, 48.74997795611139, 25.265722665280947, 16.55256457525541, 25.569160997767735, 27.256210655344766, 13.19260876074614, 18.867832857965713, 25.047219383147624, 104.1527812054636, 36.16021940568607, 12.653463894130027, 51.16536915471786, 77.50254410020631, 69.4152938922187, 40.726124559149945, 149.63870735047394, 9.04431636072356, 68.92187207409508, 29.317227456646194, 45.60120680538614, 33.38756167302972, 57.54241811715464, 15.6094275132959, 12.982947739963919, 11.671039847839705, 12.43113227029186, 8.200907508808843, 39.64488579598281, 11.319133928574336, 5.49049337927689, 7.387331954899102, 51.9319488245001, 11.499920551562589, 10.642682337427784, 11.47439795058351, 15.641698686592513, 57.703133417773046, 56.63999404773864, 26.282283858783508, 32.15843846293885, 15.775576076773849, 27.270331556814412, 69.32100046165367, 18.757553937530883, 52.82942973149756, 110.06215458961648, 18.369478996533942, 45.76056962307028, 22.043855997582064, 20.97163966499851, 86.17937277279525, 24.794249438815374, 82.46849480803446, 9.063578683034304, 42.651421720910925, 55.518724731064246, 11.31936308668505, 8.18790069413616, 37.00587044205431, 63.519023770109385, 98.69217000785345, 70.17321188574202, 96.94993103555142, 11.221726330152753, 28.963019262202415, 15.718307812326465, 13.676122068688752, 59.19542736565979, 14.641837962433938, 6.512975242381196, 61.07258520330302, 20.514491974459474, 24.99933706963091, 37.77883425220104, 26.067490121104683, 59.3022668370913, 27.086527612007096, 6.990248344175991, 49.963362143479856, 8.591487181973786, 80.72748358434116, 71.78103249994092, 8.71396804448545, 30.401122150626808, 12.256352936614114, 44.031006155800455, 6.588965766807294, 64.03772488228904, 46.11949943702467, 14.630362041600645, 7.186396026907943, 8.315586321805606, 52.745668377979804, 118.04307534362113, 44.289424136846954, 25.274048025210565, 27.261593376676558, 15.560828271005747, 80.30344872086934, 23.901311942408057, 5.6878322096737, 23.981457340982875, 83.8489121718715, 46.36914750095069, 14.172654407012619, 71.66172883825213, 27.96963331809975, 35.72737508510012, 21.045297442073895, 31.589764956538048, 8.031158800490624, 55.279134483455, 87.4745065204691, 6.723713393744388, 11.670938081203948, 95.59392482032922, 55.12538213258066, 17.89270767028661, 7.817203129300723, 17.82405071329497, 75.03030187735948, 21.855899421483148, 17.463540667902116, 6.8129635288366925, 20.047269787234, 30.93890938800376, 52.176279315871724, 32.29580997796553, 27.9106004232274, 16.563695386415784, 82.25237063917972, 54.696259836115225, 14.80378327731843, 44.70810623306459, 5.67052029371863, 10.16448007784595, 60.89251009870491, 52.524947098445, 87.58224779338411, 39.316133248567525, 71.12949210669967, 84.82636340415743, 56.303217756969715, 58.237347585942956, 21.434402194770204, 59.80213337008871, 8.64855771572217, 42.204307841875135, 108.10917022165958, 19.344339703423483, 13.73031896048487, 16.849018502844764, 25.876477728540788, 114.29218342250269, 7.078301082165877, 5.332558327066114, 22.714650460791965, 5.478545164147685, 29.637519327603073, 89.14058565093484, 10.783696734214452, 65.49538478661745, 9.155589660869165, 31.512264929547598, 91.69981749081808, 87.5354060249437, 29.84345994536452, 22.854641736847988, 30.803477437653285, 78.91112687634212, 36.985186910020836, 22.63502046726336, 6.892427705437866, 26.282656534866742, 19.5063002056237, 14.772900458989533, 75.404889480772, 17.303426417241578, 22.88657072097549, 11.34645931434166, 94.05880043361041, 11.654743071920828, 5.375887536675955, 30.343223830442174, 136.53539702746895, 15.853570996770696, 33.2972045647699, 97.87775200894225, 5.714356733829967, 59.79236630899218, 17.003908610650555, 11.872545295267505, 29.370003591386688, 10.034482759697662, 6.82279858391183, 7.788976871593229, 9.307537691237926, 12.795590911908423, 20.223239782655593, 46.991846802774916, 35.707407001529, 84.05023559525885, 17.871193789219333, 19.50174861778119, 43.884627997758905, 35.711360289876936, 11.190008411241262, 7.627138914466364, 24.930148734785448, 11.361184151210045, 32.12996371529025, 89.42812865266791, 78.00926672419372, 6.0867134413527975, 28.411803806113465, 59.25863247969149, 25.247655027122722, 9.577208798046161, 38.278775671527185, 79.54491982770104, 5.41750036872524, 131.41898230775746, 20.00336484057051, 36.39380289648845, 5.699526169316593, 47.00842387292004, 19.13987090305754, 6.638975409179859, 5.894435282043209, 7.470476515551383, 19.363290812984623, 96.6819670869512, 16.414710712491832, 59.196174174307075, 29.67770888556807, 9.06817934886495, 19.0567065674784, 58.75713084529843, 64.30482507978718, 79.4039732678588, 6.338486483947492, 14.31633483019058, 8.842449310333551, 16.444817193448404, 34.65025359295395, 7.793532318124183, 17.382465076057212, 28.01045199535674, 14.768603787315358, 69.56712067678633, 46.10452916717855, 50.556424590408504, 11.176964225361026, 25.536056586867335, 33.1593954296262, 109.13882703153092, 32.82835954711599, 87.20569452421687, 9.782191226603775, 160.88429725566837, 94.19368484809362, 9.51340402458112, 33.64713203424048, 56.730246086046726, 37.01510115836849, 7.159373286797378, 39.04641008618907, 8.924278519035147, 7.888335648801208, 26.998172354960197, 48.385526642921874, 5.513278577920121, 19.39884317209651, 47.090349186512654, 71.25291982822873, 60.9803855732611, 14.95021480688841, 40.429444478280125, 5.813619050483978, 27.93195615786886, 84.68688260732814, 68.27099041362676, 56.66395425927604, 66.0679315410552, 22.863871384726064, 77.15312957274605, 28.4680725880061, 102.14766691438761, 15.5302645544452, 50.68113484366611, 36.75171202500308, 12.918876280232537, 34.383228739616975, 61.37614371684304, 50.59975033820895, 11.482673453469884, 20.837311098289053, 17.857156869268543, 17.405117962399242, 27.36509372788805, 108.29086847113972, 16.27250105057044, 71.38129041095071, 36.042355049272985, 26.272021623524928, 19.334248976381797, 19.72686724920259, 60.61634931344249, 113.51479691139279, 17.0640876186685, 20.906378849985494, 22.093110867706294, 10.885669590664328, 5.520601620767493, 50.16800366982012, 20.584699459443748, 47.3411533820373, 15.4595102923306, 12.48968551778284, 11.991809731698824, 92.52351910240037, 67.14760620773507, 70.62529069573753, 46.20975287462593, 62.692827426292666, 12.909298593415253, 8.658860656390992, 16.85616106389389, 24.969936032914646, 18.948996730593134, 9.523624027307545, 7.6656901117080585, 38.42933717990896, 28.354863438276837, 35.191356015367944, 5.452950313526058, 16.46549838338455, 7.145234816364892, 49.24308407115828, 124.37113337057912, 78.51836546558323, 41.13121003914188, 91.64273506958897, 51.456873155603006, 36.55100491658465, 43.24881077102988, 21.513075083768342, 63.390592195326214, 17.920176856455328, 85.49113807984088, 49.38089331623618, 8.075566914117356, 88.98952836897602, 67.87908364188348, 93.04861904054873, 100.64459738518823, 16.45961296101881, 95.29429276023363, 9.887971887670727, 21.852734890870167, 219.36802869054657, 7.383409324874809, 13.225028915928377, 32.50896414263679, 59.20600076302329, 8.621171544828226, 41.7733179223978, 13.186627063289544, 9.892790192951775, 29.1510351523928, 24.631010473323087, 9.096861674205366, 13.576681811244487, 81.29950925149411, 22.89816376338282, 23.665129459667565, 6.142628518140156, 27.78673495900188, 86.29112243707807, 7.835116900689459, 56.769388259815464, 22.348512331011314, 27.372188193325748, 47.032325452078304, 36.94504905499407, 8.382876734351, 15.189727386350675, 20.814936414926457, 52.08211723651572, 17.123336050372448, 7.4209852195285615, 33.66620950474954, 21.457219923211333, 19.89534453897003, 22.56366158392722, 8.308521007860435, 23.129103004612116, 17.85676781770723, 76.17254178757265, 16.209583651314563, 77.1072523387023, 44.82644815725283, 6.788546148324487, 71.07858401646068, 12.240249520620779, 105.58875306900957, 8.371661059946524, 26.572577446634355, 10.136323246684755, 76.47509071355518, 15.338033949250955, 53.37524481064012, 30.333365805335095, 32.38124465531155, 100.64204186908435, 17.851296682406883, 48.152349206124775, 35.947196954940004, 41.999553822621685, 90.17364254286619, 27.09867378996257, 21.57501028909089, 6.417619183923572, 110.87504996399221, 56.064896644876484, 68.32794021845487, 51.51713027574694, 64.80687910161005, 5.291961426066864, 46.984331228125946, 125.87262910592992, 10.482982320074038, 5.146433830764309, 8.305314730604193, 78.00974729797713, 110.74516781035432, 52.723556441134654, 78.33210378079873, 71.47097770780798, 5.7310008534778625, 15.035297258450097, 145.85415556529827, 7.766724331515935, 12.643813377484548, 197.9528362667671, 132.1330070622784, 70.81666053311908, 28.103817864244338, 61.07393583685459, 90.93224008398559, 32.88061525216821, 61.32799441708656, 16.18325247754788, 31.24910767046702, 43.90768678313873, 10.692036668388536, 24.581445074355518, 75.49267643687587, 44.73512995309433, 8.342120408628972, 165.06030580819353, 14.430352024076122, 74.83537566748544, 9.003506855886451, 5.850917662832151, 40.01820343419665, 34.26678369759991, 19.570226408227978, 5.221019043138466, 25.203792153255744, 28.798103102463084, 12.278854721399581, 14.208313494145067, 20.94691535633358, 37.890756215881716, 30.002469448719538, 64.56449649179179, 75.14937693109705, 12.093441238207205, 8.780633750987777, 66.69205627653538, 62.9858762380837, 119.65034035372356, 8.127159048644415, 9.27368354817744, 5.412838868516346, 17.860617465385502, 25.617851828337052, 26.839650370350892, 14.350606225754944, 28.965613335289195, 5.3259150972085045, 18.76337186492186, 12.587294273516102, 10.010017548735386, 48.904921285011945, 83.14187571925478, 72.9334095572813, 35.95101127012967, 9.962568451886956, 5.307833387834425, 25.01556269904137, 100.94678377326701, 7.240519776537509, 8.526700511262797, 8.363957014795183, 47.85997928171447, 52.6578016084802, 19.40309896764133, 18.086477840990952, 20.519613982766412, 18.000349859743682, 18.497660869505555, 109.21601611188107, 32.33204448274886, 110.52271771155529, 22.139141983356346, 10.449930185434615, 5.457729952707464, 39.776235729072155, 8.976474476684059, 50.667860726305925, 9.0783380109324, 12.589877172031294, 7.298298952404387, 11.483197483569057, 57.52647466945075, 93.15304236726455, 92.83385776584835, 95.59459351618, 43.6079892219383, 25.372882780149062, 77.317016270502, 14.171710536409897, 100.9480692345404, 14.76757391484188, 65.90462801015374, 82.74321642361284, 67.71024475608476, 57.2362292039857, 128.03881000210632, 20.58865370228071, 55.70168022810428, 16.614200088233186, 146.9533659163539, 39.772194145541796, 35.571368241959895, 14.019234437820774, 75.65546999966783, 61.92531891355475, 19.038585255069094, 6.172176812977326, 55.37630689868848, 9.873623790973573, 93.26757709656081, 9.05829589106834, 121.26357243162364, 64.77147698996701, 23.856679088201748, 313.7730743108699, 16.75708944899476, 26.285965180807686, 10.312158258532959, 13.754640904966848, 92.07094472067584, 59.53511357732427, 83.99735891056945, 11.132904795557867, 123.78475616394786, 136.7484774984186, 10.612435030812794, 47.94608877412214, 66.94018874791684, 8.678648833114327, 7.709220146753463, 6.22281557719463, 191.2446658169867, 22.2949964035785, 19.47791017890512, 61.433732871250356, 153.16682242409703, 43.19216894395575, 35.856452306521994, 12.640713651180524, 6.341670279120148, 11.29783489740679, 5.438394877983645, 17.48109248315463, 104.89395287361354, 75.26629185063553, 59.14276106011354, 52.6134188933003, 26.398531198297245, 9.4800767661582, 68.13387142875982, 37.861005128814995, 5.321719275237376, 5.779240340369296, 16.169976627099327, 32.071673515961166, 42.952503369025884, 12.101443817766082, 15.19965953157177, 14.910176946784102, 48.058961404539076, 37.41154842209531, 14.568497520440081, 33.73675316027464, 35.15030789911441, 105.93310125779152, 23.509010536951543, 18.830093332949403, 92.87288747992284, 15.863712759730227, 18.349866589209267, 15.065007406041845, 33.01012137341158, 13.772365452597588, 25.126681173959973, 16.905199951095895, 43.42756916176068, 6.413782600820628, 49.773989735927955, 17.768898100726357, 20.45840497732311, 26.300990786800206, 49.903990505680994, 14.313132889402002, 47.09214635020443, 36.476578121540456, 68.94610578518528, 12.801589493657145, 21.61908811464592, 6.384452728963922, 16.440365302219764, 95.37495566679196, 124.84151704319113, 38.55693203406109, 34.86799221677348, 20.389950526552102, 28.11943419997215, 83.99304074768722, 13.461650624402258, 28.080897065965623, 6.648182184401219, 40.280244908826035, 112.42023681285903, 70.83062885185035, 38.898585875971456, 11.516597959321235, 78.07836144166873, 103.17858394122835, 32.84131497508841, 5.332455725356496, 36.92607612336814, 13.92506231296543, 25.647860259595188, 11.897286485464607, 10.288744223440956, 46.37099854369313, 38.09168498221638, 47.45901062844608, 27.379438264765458, 17.641987541322294, 31.399223572731987, 22.0045744576106, 24.805453060036523, 17.617929130098812, 8.675457906665622, 5.224902791607786, 8.054995760050664, 65.82419391370729, 19.344348645752053, 18.000728292807704, 26.11665690335768, 77.23908032821687, 97.38711571122708, 115.77843186304398, 37.14611258253692, 29.16651995983165, 45.67270590362017, 18.135649562712526, 70.32302921321684, 8.602686685677893, 6.433310924038838, 7.284357911196401, 38.34836474789525, 55.78331165737768, 93.07332354323347, 54.88866173723686, 30.420369153612665, 15.88883566308124, 18.334757751941332, 117.6695906627294, 24.154213860017087, 36.58876325470719, 8.995242192832198, 53.121598123150186, 50.713052699489836, 70.95987365334777, 109.51519771018333, 59.248306456167825, 24.931246997693016, 31.48551090769272, 31.731657634371977, 14.404883538017764, 12.755869449338768, 11.248846051371157, 53.63745864407834, 9.686589203265672, 52.23828110965627, 109.43188488356824, 45.58062090042838, 77.36873508998076, 27.75522451938383, 14.176798415525717, 9.685477622430323, 66.10991089815847, 74.31086746496015, 14.660877051423164, 5.8264159720869815, 63.869458958222644, 78.85043073384202, 42.01745620101876, 45.316243030254974, 51.97051312130679, 9.694928798664582, 10.072938615846786, 5.267275988702837, 22.804113285845823, 94.32897716816314, 25.73306799376783, 66.62086853305827, 85.04445413955672, 88.02354042202009, 20.624854089979124, 12.473485105528782, 36.54495231188141, 12.500230876256852, 96.35771016641144, 11.059065416796814, 52.00029545909841, 20.341780852913722, 5.322263767513781, 76.01022642165034, 52.21714361982587, 15.711773904135752, 7.78477203812309, 6.477193048998719, 11.1190537992818, 6.081023094118647, 54.100225704956436, 11.385166847820045, 12.526606801075951, 25.22062776244077, 24.896138185351543, 11.301075324463179, 41.57166740643646, 11.007248743783094, 15.965538460353752, 32.83603771088938, 14.281648926099576, 8.239127092244397, 18.219408153857835, 18.91437399234956, 25.49977864832945, 146.85969424808707, 35.07960273901647, 30.93923089695996, 14.854301016665572, 49.12173506046755, 21.645156193160574, 5.397040403243124, 19.02736413901071, 66.04702529328644, 6.078359926934794, 51.49475472742811, 34.238809974518844, 20.199587528063006, 47.374522378845, 13.952383442341352, 15.213698090787217, 19.923091299125865, 36.97076677388865, 30.334246855577717, 9.14128566087573, 16.003465727080115, 6.342004991846309, 111.80238382851107, 5.915861661926866, 10.774039517927488, 6.612195771280712, 40.980462444567195, 13.076145039346713, 25.091900673214322, 97.25409441385523, 67.65899868219098, 6.000253505229854, 57.463783556329595, 27.33311491032893, 30.976263778259288, 53.09052992686371, 24.76076021158958, 60.62559617363886, 68.48816575878517, 14.377396673457655, 93.97218364965242, 10.757906621876266, 30.185491821388755, 31.782825445104383, 33.882635918186075, 45.785591284241875, 7.160300040657538, 76.32764902515932, 30.156294464807978, 25.05763696080703, 25.403461271913013, 20.65644611755988, 6.687556427896809, 27.89491659376311, 40.87178726486286, 69.4171038348692, 29.8024760357663, 83.30008185447866, 90.91865130611784, 31.53633014197961, 172.7435767194183, 47.529102122709304, 44.72798886996664, 58.52829714181426, 10.101215152736938, 49.47135429343875, 10.039834024440772, 11.048568704822934, 51.43575969098444, 7.781992715676427, 67.12855333738177, 18.113584184592128, 28.567246815324705, 66.04680846042196, 63.78267976904273, 15.91458352876859, 65.52544426039258, 18.7897942885744, 12.328499082761605, 7.531957107580768, 13.122991011478632, 101.08370898548893, 21.23083129734412, 91.2790463452439, 10.716159591878007, 39.16619944491595, 16.229104983444927, 33.522188007871236, 58.30312629756298, 21.718721305985664, 63.0214590898364, 19.700781293763082, 73.63459151698747, 28.835121873544896, 39.559866107527874, 239.47428055851776, 148.2386881051212, 136.08853777792373, 14.436834865510159, 20.185554459932252, 15.144858010599389, 91.6376617134679, 24.87922798041756, 31.10024526186106, 13.149609845823711, 21.45625839428619, 91.10344355592758, 102.64522296084036, 13.147175111497647, 20.303208723268877, 33.85287503960923, 28.872571705972483, 7.995674173986374, 18.082553245329347, 169.11854607993493, 30.507644130418996, 88.64715304615028, 80.38538451402725, 23.159507885519595, 63.777113537840265, 15.37018103132458, 42.63092385709806, 62.018213019359514, 5.925951530882623, 18.729020912946087, 127.21383341650687, 118.25853533230126, 49.71007420300272, 38.57930626259274, 96.53052842305374, 77.61913307523595, 15.307848842092929, 57.99946676196806, 13.562781127112174, 73.54390969444036, 87.25791889709926, 23.893036517486784, 18.246613939306705, 60.280206225870344, 41.03954781124963, 26.439510198849778, 27.958814657911745, 13.02618355042794, 13.639450788737664, 46.436778745946555, 78.40714192918912, 15.630581723302761, 52.70726803677812, 87.82065442994505, 20.37855337425796, 90.35850923916539, 27.603212746845237, 36.371989948164334, 8.99875447033623, 84.8699262344856, 27.1025616927842, 90.69028336575101, 30.22818160030131, 15.869236821726943, 91.41555321947436, 61.45465998021408, 26.512817193218368, 150.7420533094845, 61.451081279383175, 118.25740752948377, 5.1097035540335085, 165.34746340593097, 11.02216773040537, 16.46924141068798, 10.83504025162036, 78.43347123444529, 76.26293717533363, 10.094958617596959, 27.917127725805415, 99.82368000358267, 26.46448705085013, 55.644515984026256, 112.74306539483675, 73.45929248189498, 42.90129711453481, 19.715454181563818, 27.527334657830885, 58.41862928365812, 87.69119626416435, 33.826738298586605, 5.518643356671677, 14.421715132091045, 7.387709217771727, 74.65336166120264, 43.50630527457371, 28.41751134999172, 50.11642348521413, 53.309426389117746, 31.849216663633868, 24.514857538184113, 57.79979338170553, 5.548193337921203, 10.272538600204442, 14.081304041806574, 5.503059076474196, 69.72389387616303, 143.11313989798802, 43.48861088794719, 9.07994409991257, 35.01797623006688, 63.2474146746968, 10.047333308698922, 93.25641131105095, 16.70831551487013, 89.17508162971004, 94.66121981974479, 10.924796162205347, 183.09319583506345, 71.28433495211951, 47.539986596289936, 28.64385479111157, 56.41543073346127, 16.079796828855326, 10.543885047555193, 23.519957742513505, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6719055.913481772, 6817182.234637465, 6867090.053968755, 6867888.975345576, 6972658.040346662, 7022292.78043986, 7022333.9641493745, 7134534.375, 7149312.5, 7209468.60152659, 7248938.884833042, 7248940.77843459, 7251047.621887891, 7300590.540365884, 7391436.6934706345, 7393280.348930942, 7393303.491936797, 7431698.267665671, 7487280.361642555, 7489379.138044205, 7489403.876784692, 7529566.98264296, 7553178.125, 7568255.921071074, 7568271.109561994, 7592814.0625, 7777956.25, 7791531.25, 7832418.75, 7897403.125, 7912373.077271915, 8049966.6751436265, 8058967.937713392, 8147634.479227928, 8147658.706277488, 8209508.0651869895, 8274207.977353553, 8299644.364154015, 8387620.634357718, 8435708.512117118, 8580379.521905823, 8628654.6875, 8754929.806611728, 8893042.840134589, 9127019.673308492, 9218520.3125, 9218824.290416263, 9259454.353330627, 9338298.64852937, 9338301.734825315, 9340589.69017986, 9347067.1875, 9413309.946818104, 9414881.25, 9415026.746102143, 9415304.168385675, 9415763.402820513, 9416589.741603104, 9416818.281050943, 9417702.386702875, 9418375.679672679, 9418478.125, 9420966.74099344, 9420985.38358743, 9421876.5625, 9422630.063559648, 9425499.974051302, 9425504.352811076, 9439235.9375, 9458782.8125, 9458979.806750404, 9463327.933620373, 9466611.24553594, 9467216.831442669, 9467867.1875, 9467984.687386774, 9468626.409478758, 9469192.246829415, 9479936.197384961, 9481636.12739299, 9481868.37303151, 9482626.5625, 9485085.85659143, 9491495.47565644, 9510137.5, 9510349.395965068, 9510816.436847046, 9511307.8125, 9511873.564849947, 9511985.9375, 9512226.102427602, 9512624.476204854, 9512632.8125, 9512709.910272071, 9512857.15862331, 9512893.75, 9512902.291795984, 9512912.056981884, 9512958.431672825, 9512992.1875, 9513019.370489763, 9513035.9375, 9513283.70517966, 9513399.915899383, 9513443.99142945, 9513475.054456517, 9513664.0625, 9513738.483630477, 9513839.978205705, 9514006.93636403, 9514034.22501191, 9514036.1730224, 9514056.25, 9514087.60706721, 9514102.823459579, 9514191.578969968, 9514229.570645202, 9514412.831059184, 9514676.345014524, 9515028.125, 9515097.09787598, 9515198.4375, 9515493.89359202, 9515781.01119477, 9516279.171110295, 9516303.011886697, 9516445.065833379, 9516491.98485518, 9516500.321801899, 9516784.375, 9516905.07092509, 9517571.228936793, 9533798.992718449, 9537984.372955177, 9538034.375, 9539116.723115765, 9547897.409559565, 9554583.055280853, 9555591.529224122, 9555917.1875, 9555973.4375, 9567762.448796421, 9568526.813465409, 9568542.556635631, 9568860.9375, 9569045.234983958, 9569076.525890494, 9570679.34791144, 9572469.727640802, 9573628.969409289, 9586259.375, 9603798.523594009, 9616967.1875, 9618021.713314874, 9618560.20930982, 9618743.832991736, 9619720.3125, 9629914.03374992, 9630160.4315956, 9630826.5625, 9630853.752049778, 9631921.875, 9632281.25, 9632369.948233757, 9633101.203758888, 9633611.361664345, 9633646.724992994, 9633862.5, 9633992.020764653, 9634002.84917937, 9634381.547260396, 9634605.072675068, 9634642.1875, 9635060.616120161, 9635734.14316984, 9635741.65046016, 9635920.096988058, 9636284.563285163, 9636714.0625, 9637293.75, 9637576.5625, 9639321.501452906, 9639804.96738694, 9641101.847265348, 9641418.75, 9641832.522641713, 9642369.36319014, 9642445.187846683, 9643274.21487249, 9643279.642548792, 9644675.0, 9644676.40055503, 9644804.316695547, 9645126.698083831, 9648129.6875, 9649390.937899116, 9649435.333842421, 9649535.505549544, 9649586.321032742, 9649637.720340349, 9649778.079377173, 9649821.775539242, 9650029.806238336, 9650260.9375, 9650269.615677733, 9650331.679427134, 9650335.9375, 9650546.041401962, 9650590.914909177, 9650775.485914513, 9650799.97163991, 9650907.106670484, 9650914.187426591, 9650945.3125, 9650968.75, 9650970.3125, 9650983.414761348, 9651058.649164025, 9651131.25, 9651234.177554578, 9651319.437649718, 9651373.503103409, 9651554.386001408, 9651597.019407025, 9651615.625, 9651624.132137362, 9651687.0913152, 9651732.799163558, 9651735.931752563, 9651838.108734788, 9651901.371299138, 9651901.839568242, 9651912.870236335, 9651979.6875, 9652112.988934373, 9652175.049467066, 9652254.023960803, 9652281.149307927, 9652340.510765232, 9652343.54468564, 9652375.789100159, 9652410.27999299, 9652410.40620668, 9652462.117385965, 9652518.77131734, 9652535.627975345, 9652535.653357303, 9652546.875, 9652576.5625, 9652716.858880157, 9652801.075402483, 9652820.3125, 9652848.4375, 9652890.025867155, 9653002.10665292, 9653037.950381137, 9653182.171489825, 9653290.970442886, 9653379.190605327, 9653427.059676085, 9653458.333090365, 9653471.848474227, 9653476.516384311, 9653505.703343673, 9653548.4375, 9653625.0, 9653739.99548838, 9653779.51549556, 9653798.05657019, 9653860.9375, 9653867.1875, 9653888.649188008, 9653937.988995342, 9654000.0, 9654003.125, 9654072.082676876, 9654093.75, 9654107.8125, 9654118.77050353, 9654150.142322376, 9654155.155251069, 9654243.225786129, 9654253.849984605, 9654290.992645564, 9654301.049014015, 9654374.585126067, 9654378.188806405, 9654384.375, 9654393.60164076, 9654398.4375, 9654425.002282087, 9654462.705005977, 9654493.745116951, 9654515.594327787, 9654537.5, 9654624.151432922, 9654631.25, 9654692.1875, 9654700.102070557, 9654714.398956697, 9654730.7207861, 9654756.25, 9654798.871473664, 9654809.375, 9654814.636564318, 9654818.094277723, 9654878.125, 9654890.933455028, 9654945.598865565, 9654964.278316425, 9654969.744147576, 9654981.849998005, 9655016.149510872, 9655023.519350687, 9655044.717757206, 9655085.895071449, 9655170.3125, 9655210.9375, 9655218.62469482, 9655328.939933822, 9655353.990124261, 9655381.25, 9655393.75, 9655394.26480971, 9655453.478011522, 9655480.80811578, 9655496.714429509, 9655562.240168996, 9655593.75, 9655691.591346037, 9655760.32559562, 9655781.37957461, 9655788.2257957, 9655822.36542623, 9655850.0, 9655853.125, 9656021.17670707, 9656065.04857986, 9656126.821290158, 9656297.777936667, 9656331.893360151, 9656355.916384669, 9656423.227306582, 9656428.888063367, 9656470.531406537, 9656514.23193272, 9656640.625, 9656711.92236891, 9656712.667365959, 9656757.605472852, 9657023.787098072, 9657068.839709057, 9657101.5625, 9657765.625, 9657863.39616586, 9658438.64063386, 9659587.281060228, 9659806.25, 9659945.312655987, 9661041.718384102, 9661147.999148801, 9661911.900471805, 9661920.922622839, 9662489.0625, 9662593.304985087, 9662613.640958501, 9662735.9375, 9662764.0625, 9662945.290427078, 9662946.448973991, 9663023.785917038, 9663037.5, 9663088.092237858, 9663282.41870006, 9663410.69583815, 9663850.910857677, 9664705.712696629, 9665250.0, 9665475.0, 9665786.520813946, 9666376.5625, 9666608.823292285, 9667053.721846944, 9667664.989629121, 9667727.411131639, 9668035.64645261, 9669718.339031925, 9670844.260626487, 9672460.567689031, 9674646.568268046, 9674713.008534418, 9675360.899083482, 9675438.339791594, 9675480.286122093, 9675796.875, 9675890.206678621, 9675942.741534805, 9676203.125, 9676264.651814101, 9676389.240269827, 9676470.451593041, 9676486.929219505, 9676610.9375, 9676681.724754957, 9676872.903826032, 9676960.895490997, 9677106.00049127, 9677295.035311406, 9677386.113705961, 9677442.22876658, 9677759.36134401, 9677767.787435206, 9677898.729417644, 9677908.109661952, 9677956.681116547, 9678059.288044127, 9678084.499141542, 9678140.625, 9678163.749144021, 9678320.292528028, 9678807.970002111, 9678954.580377033, 9679071.132330218, 9679132.8125, 9679200.100283278, 9679790.275276423, 9680346.003906742, 9681488.809896069, 9684291.141893039, 9688789.757304115, 9688821.875, 9689095.602913985, 9689382.804744104, 9689579.6875, 9690054.611047553, 9690953.511454085, 9691183.91702854, 9691190.625, 9691238.64978223, 9691396.875, 9691625.0, 9691761.721395003, 9692078.153274154, 9692146.875, 9692148.364132123, 9692154.23176033, 9692381.980788482, 9692384.410265423, 9692410.9375, 9692571.124364803, 9692578.125, 9692786.758984916, 9692850.0, 9692880.061799705, 9693046.21872188, 9694140.625, 9694159.805473851, 9697894.622558525, 9697924.702346975, 9698053.517840734, 9699218.75, 9700103.9290639, 9700160.9375, 9700423.36530018, 9700881.25, 9704356.25, 9704656.363487553, 9705181.25, 9705370.29063396, 9705680.9521654, 9706984.13736431, 9707247.352895742, 9707848.4375, 9714050.103576398, 9714868.788104076, 9716306.109100647, 9716653.125, 9717066.772467751, 9719339.549536671, 9719931.25, 9720095.3125, 9720119.595410228, 9720483.489467723, 9720600.527925525, 9720881.337065456, 9721002.192228107, 9721174.9312563, 9721177.56844719, 9721293.75, 9721337.57727837, 9721984.375, 9723541.766288625, 9723911.490252217, 9723916.455407627, 9724149.84383286, 9725851.5625, 9726884.26667282, 9728104.373359982, 9728357.74343968, 9729156.620742766, 9729453.725556435, 9729677.912075106, 9730506.158626147, 9730764.887182077, 9730846.455806047, 9731057.337821215, 9731100.737081835, 9731271.932635907, 9731696.019071922, 9731721.875, 9735807.8125, 9735904.6875, 9736510.221798236, 9737185.037710318, 9737233.345288312, 9737943.831486069, 9741922.880350828, 9744973.8718842, 9746545.740555892, 9747876.70601482, 9748471.273230037, 9754283.920338992, 9754949.26142441, 9758922.972649843, 9764507.209042339, 9764616.247868504, 9764842.886205489, 9765960.9375, 9766718.75, 9774956.021522876, 9776754.397516608, 9777188.580806388, 9777798.343114834, 9777803.311068058, 9778510.485634483, 9779585.9375, 9779785.622239493, 9780036.70722884, 9780561.570088502, 9791133.028619181, 9793007.8125, 9793963.929720126, 9794954.084723799, 9795618.75, 9796282.8125, 9796313.20928522, 9805077.771315698, 9805213.527465587, 9805521.875, 9808165.578605054, 9813027.742957778, 9814457.8125, 9815623.590110194, 9815629.6875, 9817720.3125, 9817742.002058953, 9817759.375, 9820728.50406249, 9820907.549890589, 9821574.339645848, 9824634.936645875, 9825363.797483161, 9826678.125, 9827115.566764688, 9827505.462868161, 9827927.33397809, 9828482.8125, 9831283.39096527, 9836406.25, 9843818.408327565, 9845838.671536492, 9854237.5, 9854371.583248448, 9854498.241223292, 9854550.56489021, 9854648.313049356, 9854657.219529442, 9854659.024370594, 9854688.69122992, 9854695.079617186, 9854710.9375, 9854711.252714673, 9854718.147268571, 9854937.485154562, 9854938.705780054, 9854942.1875, 9854977.071584234, 9854989.73696932, 9855151.846318338, 9855230.89044642, 9855776.5625, 9855823.202896535, 9855830.521100739, 9855879.734719863, 9855953.381872581, 9856060.499143863, 9856082.35007822, 9856194.541614773, 9856219.317552771, 9856270.418682711, 9856280.69392571, 9856281.787561025, 9856349.81709982, 9856364.0625, 9856381.25, 9856451.5625, 9856459.25740843, 9856490.795747118, 9856499.912091006, 9856503.125, 9856535.335842049, 9856555.769182747, 9856578.413843932, 9856591.939142212, 9856618.221603641, 9856691.16984684, 9856811.003619233, 9856818.741755199, 9856865.625, 9856865.625, 9856968.411225421, 9856971.875, 9856995.3125, 9857014.84602373, 9857026.243337147, 9857028.871497316, 9857040.625, 9857083.035094434, 9857130.36422986, 9857170.344528172, 9857277.897209026, 9857285.592755636, 9857379.488088392, 9857551.997205349, 9857585.9375, 9857660.45334464, 9857731.25, 9857760.30841989, 9857779.07711984, 9857852.636641622, 9857894.381404772, 9857975.767488401, 9858017.1875, 9858083.276499795, 9858117.1875, 9858200.859142285, 9858413.514039267, 9858438.374932656, 9858472.219546571, 9858560.9375, 9858671.875, 9858679.6875, 9858703.125, 9858729.069315381, 9858757.791685691, 9858802.784739051, 9858880.798777271, 9858910.476329213, 9858960.331028404, 9858973.696915522, 9858975.981932443, 9858989.701008083, 9859000.0, 9859067.422825085, 9859159.683192143, 9859168.75, 9859291.413205637, 9859407.533628263, 9859439.0625, 9859460.175099596, 9859579.442474477, 9859589.504739482, 9859604.075106068, 9859629.848592002, 9859649.22821924, 9859700.0, 9859705.380256686, 9859708.5432994, 9859740.484813435, 9859743.116758691, 9859822.650712859, 9860036.498188863, 9860066.294472026, 9860124.260264806, 9860194.847303642, 9860382.8125, 9860397.691257821, 9860456.314329498, 9860541.273830933, 9860546.875, 9860794.358681105, 9860910.9375, 9860912.606476994, 9860943.422525426, 9860968.75, 9861049.081542179, 9861076.5625, 9861092.740976147, 9861151.21062415, 9861278.710476642, 9861335.419424746, 9861350.0, 9861361.811043622, 9861372.790727252, 9861467.079466019, 9861477.237224163, 9861670.986957174, 9861717.1875, 9861725.295514971, 9861740.976668226, 9861782.386252007, 9861893.75, 9862119.142402694, 9862141.820606954, 9862176.106173748, 9862250.0, 9862259.967513386, 9862329.6875, 9862394.559691142, 9862409.410761828, 9862411.777713811, 9862420.122547314, 9862450.0, 9862450.392175103, 9862545.3125, 9862557.8125, 9862601.5625, 9862620.3125, 9862658.746648444, 9862723.965852028, 9862911.328529004, 9862959.42264581, 9863098.4375, 9863140.555913962, 9863242.35416682, 9863365.625, 9863415.06552842, 9863592.1875, 9863721.875, 9863734.375, 9863903.525758505, 9864042.951116644, 9864077.334424097, 9864228.65031997, 9864256.25, 9864296.715811426, 9864323.4375, 9864365.625, 9864434.375, 9864443.366379471, 9864739.781090353, 9864845.3125, 9864891.35547052, 9864923.109397268, 9864935.893136986, 9864944.698955655, 9864947.813783562, 9865038.47738118, 9865062.5, 9865124.951305171, 9865194.027396346, 9865223.912993291, 9865253.061565286, 9865353.119457014, 9865624.931678612, 9865639.0625, 9865678.283698656, 9865802.304610416, 9865878.87100749, 9865884.159673432, 9866089.170654828, 9866089.846803768, 9866124.92154308, 9866473.68250809, 9866560.9375, 9866604.502891352, 9866620.221679986, 9866636.14590971, 9866672.63326749, 9866809.200609613, 9867056.25, 9867114.534309847, 9867118.476787914, 9867153.101930143, 9867223.4375, 9867483.890108982, 9867843.712448277, 9868071.086335186, 9868086.898768675, 9869429.593321435, 9869557.8125, 9870227.484015923, 9870284.677693827, 9870604.6875, 9870949.713797487, 9871101.632124912, 9871436.126392733, 9871706.25, 9871774.37092205, 9871907.57876047, 9872026.81575656, 9872033.382508485, 9872082.8125, 9872365.35061831, 9872475.217106562, 9872491.379199574, 9872517.1875, 9872577.53114507, 9872614.848258518, 9872810.537853204, 9872814.0625, 9873013.173159275, 9873496.875, 9873789.973461678, 9874102.12168903, 9874840.625, 9875160.712660518, 9875179.6875, 9875242.1875, 9875335.781183556, 9875592.1875, 9875726.312288873, 9875847.686715975, 9876425.866097286, 9876515.236688899, 9876693.077741425, 9877011.083252696, 9877059.375, 9877097.809121031, 9877187.295859244, 9877361.16824248, 9877443.161829727, 9877468.357279697, 9877628.092361623, 9877732.8125, 9877977.65129718, 9878034.375, 9878039.0625, 9878059.375, 9878383.993874725, 9878509.183006773, 9878985.023696916, 9879999.64963873, 9883860.892148264, 9884558.60134682, 9886925.0, 9887097.608760668, 9887282.761272963, 9887981.002991086, 9888600.46859108, 9889810.9375, 9890196.10335547, 9890208.79511517, 9890745.210380858, 9890807.8125, 9891463.724615786, 9892454.6875, 9892481.990820862, 9896742.840305382, 9897341.98602364, 9897371.299145527, 9897379.066001525, 9898141.361818193, 9898528.125, 9898548.157220216, 9898764.0625, 9898819.904274188, 9898871.875, 9899195.3125, 9899208.897323873, 9899222.51637895, 9899266.48686911, 9899409.137872614, 9899492.773180328, 9899511.975051051, 9899561.710542617, 9899676.34077909, 9899719.682368552, 9899732.673476916, 9899733.733111106, 9899782.830951186, 9899795.250187509, 9899797.296286775, 9899809.375, 9899829.373106249, 9899879.183798833, 9899950.0, 9899951.087636696, 9899958.808363296, 9900000.934329864, 9900011.492959986, 9900065.214020777, 9900083.781166455, 9900139.69828258, 9900172.347080672, 9900279.354316019, 9900365.625, 9900379.6875, 9900499.652260624, 9900535.112436611, 9900547.207561038, 9900562.432790024, 9900579.6875, 9900763.906701542, 9900841.357200315, 9900993.75, 9901042.878059514, 9901062.69353428, 9901231.25, 9902139.82297234, 9902543.75, 9902611.030404195, 9902775.0, 9902832.396720761, 9902864.0625, 9902910.389738759, 9902989.999489667, 9903069.411100075, 9903281.25, 9903521.875, 9903768.63488809, 9903926.533249654, 9903975.949233616, 9904327.735577842, 9904360.9375, 9904364.0625, 9904365.79475622, 9904662.25828133, 9905239.0625, 9905280.425424967, 9905436.25107178, 9905504.639158394, 9905749.18374201, 9905943.32852328, 9906613.855482427, 9906620.16928356, 9907171.875, 9907365.625, 9907551.224496732, 9908265.999098869, 9908956.25, 9908994.066880472, 9910923.348927101, 9913075.0, 9917617.1875, 9917824.000647483, 9918293.75, 9918470.243913526, 9919747.225348594, 9919907.61682874, 9920342.1875, 9920589.0625, 9920924.220785677, 9920946.843541393, 9920951.335453242, 9921191.506126335, 9921260.9375, 9921288.170125812, 9921326.5625, 9921450.0, 9921539.52620927, 9921711.821245084, 9921851.554593746, 9922074.762085129, 9922101.329871543, 9922329.386396905, 9922345.169097206, 9922449.362004275, 9922451.787738984, 9922509.375, 9922567.863453053, 9922580.989400232, 9922596.875, 9922806.25, 9922938.820054611, 9923159.375, 9923248.745007725, 9923313.436572785, 9923482.566893341, 9923627.490506172, 9923717.531451602, 9923762.5, 9923763.574887399, 9923805.936846372, 9923896.875, 9923971.875, 9924027.303054357, 9924081.076515036, 9924181.969485182, 9924267.1875, 9924440.625, 9924568.313715398, 9924606.708780427, 9925085.9375, 9925112.5, 9925128.125, 9925434.433840338, 9926701.832195623, 9926741.778859902, 9936770.939019237, ...], [23.29521680407178, 13.117740183954696, 20.812629216947393, 7.098728334410242, 5.073063155204979, 12.200977755547, 5.904407334130093, 57.188715346760915, 44.11929854789952, 132.8273592608745, 67.54258668263914, 58.868521010641615, 18.832874419016584, 26.95591292786852, 48.74997795611139, 25.265722665280947, 16.55256457525541, 25.569160997767735, 27.256210655344766, 13.19260876074614, 18.867832857965713, 25.047219383147624, 104.1527812054636, 36.16021940568607, 12.653463894130027, 51.16536915471786, 77.50254410020631, 69.4152938922187, 40.726124559149945, 149.63870735047394, 9.04431636072356, 68.92187207409508, 29.317227456646194, 45.60120680538614, 33.38756167302972, 57.54241811715464, 15.6094275132959, 12.982947739963919, 11.671039847839705, 12.43113227029186, 8.200907508808843, 39.64488579598281, 11.319133928574336, 5.49049337927689, 7.387331954899102, 51.9319488245001, 11.499920551562589, 10.642682337427784, 11.47439795058351, 15.641698686592513, 57.703133417773046, 56.63999404773864, 26.282283858783508, 32.15843846293885, 15.775576076773849, 27.270331556814412, 69.32100046165367, 18.757553937530883, 52.82942973149756, 110.06215458961648, 18.369478996533942, 45.76056962307028, 22.043855997582064, 20.97163966499851, 86.17937277279525, 24.794249438815374, 82.46849480803446, 9.063578683034304, 42.651421720910925, 55.518724731064246, 11.31936308668505, 8.18790069413616, 37.00587044205431, 63.519023770109385, 98.69217000785345, 70.17321188574202, 96.94993103555142, 11.221726330152753, 28.963019262202415, 15.718307812326465, 13.676122068688752, 59.19542736565979, 14.641837962433938, 6.512975242381196, 61.07258520330302, 20.514491974459474, 24.99933706963091, 37.77883425220104, 26.067490121104683, 59.3022668370913, 27.086527612007096, 6.990248344175991, 49.963362143479856, 8.591487181973786, 80.72748358434116, 71.78103249994092, 8.71396804448545, 30.401122150626808, 12.256352936614114, 44.031006155800455, 6.588965766807294, 64.03772488228904, 46.11949943702467, 14.630362041600645, 7.186396026907943, 8.315586321805606, 52.745668377979804, 118.04307534362113, 44.289424136846954, 25.274048025210565, 27.261593376676558, 15.560828271005747, 80.30344872086934, 23.901311942408057, 5.6878322096737, 23.981457340982875, 83.8489121718715, 46.36914750095069, 14.172654407012619, 71.66172883825213, 27.96963331809975, 35.72737508510012, 21.045297442073895, 31.589764956538048, 8.031158800490624, 55.279134483455, 87.4745065204691, 6.723713393744388, 11.670938081203948, 95.59392482032922, 55.12538213258066, 17.89270767028661, 7.817203129300723, 17.82405071329497, 75.03030187735948, 21.855899421483148, 17.463540667902116, 6.8129635288366925, 20.047269787234, 30.93890938800376, 52.176279315871724, 32.29580997796553, 27.9106004232274, 16.563695386415784, 82.25237063917972, 54.696259836115225, 14.80378327731843, 44.70810623306459, 5.67052029371863, 10.16448007784595, 60.89251009870491, 52.524947098445, 87.58224779338411, 39.316133248567525, 71.12949210669967, 84.82636340415743, 56.303217756969715, 58.237347585942956, 21.434402194770204, 59.80213337008871, 8.64855771572217, 42.204307841875135, 108.10917022165958, 19.344339703423483, 13.73031896048487, 16.849018502844764, 25.876477728540788, 114.29218342250269, 7.078301082165877, 5.332558327066114, 22.714650460791965, 5.478545164147685, 29.637519327603073, 89.14058565093484, 10.783696734214452, 65.49538478661745, 9.155589660869165, 31.512264929547598, 91.69981749081808, 87.5354060249437, 29.84345994536452, 22.854641736847988, 30.803477437653285, 78.91112687634212, 36.985186910020836, 22.63502046726336, 6.892427705437866, 26.282656534866742, 19.5063002056237, 14.772900458989533, 75.404889480772, 17.303426417241578, 22.88657072097549, 11.34645931434166, 94.05880043361041, 11.654743071920828, 5.375887536675955, 30.343223830442174, 136.53539702746895, 15.853570996770696, 33.2972045647699, 97.87775200894225, 5.714356733829967, 59.79236630899218, 17.003908610650555, 11.872545295267505, 29.370003591386688, 10.034482759697662, 6.82279858391183, 7.788976871593229, 9.307537691237926, 12.795590911908423, 20.223239782655593, 46.991846802774916, 35.707407001529, 84.05023559525885, 17.871193789219333, 19.50174861778119, 43.884627997758905, 35.711360289876936, 11.190008411241262, 7.627138914466364, 24.930148734785448, 11.361184151210045, 32.12996371529025, 89.42812865266791, 78.00926672419372, 6.0867134413527975, 28.411803806113465, 59.25863247969149, 25.247655027122722, 9.577208798046161, 38.278775671527185, 79.54491982770104, 5.41750036872524, 131.41898230775746, 20.00336484057051, 36.39380289648845, 5.699526169316593, 47.00842387292004, 19.13987090305754, 6.638975409179859, 5.894435282043209, 7.470476515551383, 19.363290812984623, 96.6819670869512, 16.414710712491832, 59.196174174307075, 29.67770888556807, 9.06817934886495, 19.0567065674784, 58.75713084529843, 64.30482507978718, 79.4039732678588, 6.338486483947492, 14.31633483019058, 8.842449310333551, 16.444817193448404, 34.65025359295395, 7.793532318124183, 17.382465076057212, 28.01045199535674, 14.768603787315358, 69.56712067678633, 46.10452916717855, 50.556424590408504, 11.176964225361026, 25.536056586867335, 33.1593954296262, 109.13882703153092, 32.82835954711599, 87.20569452421687, 9.782191226603775, 160.88429725566837, 94.19368484809362, 9.51340402458112, 33.64713203424048, 56.730246086046726, 37.01510115836849, 7.159373286797378, 39.04641008618907, 8.924278519035147, 7.888335648801208, 26.998172354960197, 48.385526642921874, 5.513278577920121, 19.39884317209651, 47.090349186512654, 71.25291982822873, 60.9803855732611, 14.95021480688841, 40.429444478280125, 5.813619050483978, 27.93195615786886, 84.68688260732814, 68.27099041362676, 56.66395425927604, 66.0679315410552, 22.863871384726064, 77.15312957274605, 28.4680725880061, 102.14766691438761, 15.5302645544452, 50.68113484366611, 36.75171202500308, 12.918876280232537, 34.383228739616975, 61.37614371684304, 50.59975033820895, 11.482673453469884, 20.837311098289053, 17.857156869268543, 17.405117962399242, 27.36509372788805, 108.29086847113972, 16.27250105057044, 71.38129041095071, 36.042355049272985, 26.272021623524928, 19.334248976381797, 19.72686724920259, 60.61634931344249, 113.51479691139279, 17.0640876186685, 20.906378849985494, 22.093110867706294, 10.885669590664328, 5.520601620767493, 50.16800366982012, 20.584699459443748, 47.3411533820373, 15.4595102923306, 12.48968551778284, 11.991809731698824, 92.52351910240037, 67.14760620773507, 70.62529069573753, 46.20975287462593, 62.692827426292666, 12.909298593415253, 8.658860656390992, 16.85616106389389, 24.969936032914646, 18.948996730593134, 9.523624027307545, 7.6656901117080585, 38.42933717990896, 28.354863438276837, 35.191356015367944, 5.452950313526058, 16.46549838338455, 7.145234816364892, 49.24308407115828, 124.37113337057912, 78.51836546558323, 41.13121003914188, 91.64273506958897, 51.456873155603006, 36.55100491658465, 43.24881077102988, 21.513075083768342, 63.390592195326214, 17.920176856455328, 85.49113807984088, 49.38089331623618, 8.075566914117356, 88.98952836897602, 67.87908364188348, 93.04861904054873, 100.64459738518823, 16.45961296101881, 95.29429276023363, 9.887971887670727, 21.852734890870167, 219.36802869054657, 7.383409324874809, 13.225028915928377, 32.50896414263679, 59.20600076302329, 8.621171544828226, 41.7733179223978, 13.186627063289544, 9.892790192951775, 29.1510351523928, 24.631010473323087, 9.096861674205366, 13.576681811244487, 81.29950925149411, 22.89816376338282, 23.665129459667565, 6.142628518140156, 27.78673495900188, 86.29112243707807, 7.835116900689459, 56.769388259815464, 22.348512331011314, 27.372188193325748, 47.032325452078304, 36.94504905499407, 8.382876734351, 15.189727386350675, 20.814936414926457, 52.08211723651572, 17.123336050372448, 7.4209852195285615, 33.66620950474954, 21.457219923211333, 19.89534453897003, 22.56366158392722, 8.308521007860435, 23.129103004612116, 17.85676781770723, 76.17254178757265, 16.209583651314563, 77.1072523387023, 44.82644815725283, 6.788546148324487, 71.07858401646068, 12.240249520620779, 105.58875306900957, 8.371661059946524, 26.572577446634355, 10.136323246684755, 76.47509071355518, 15.338033949250955, 53.37524481064012, 30.333365805335095, 32.38124465531155, 100.64204186908435, 17.851296682406883, 48.152349206124775, 35.947196954940004, 41.999553822621685, 90.17364254286619, 27.09867378996257, 21.57501028909089, 6.417619183923572, 110.87504996399221, 56.064896644876484, 68.32794021845487, 51.51713027574694, 64.80687910161005, 5.291961426066864, 46.984331228125946, 125.87262910592992, 10.482982320074038, 5.146433830764309, 8.305314730604193, 78.00974729797713, 110.74516781035432, 52.723556441134654, 78.33210378079873, 71.47097770780798, 5.7310008534778625, 15.035297258450097, 145.85415556529827, 7.766724331515935, 12.643813377484548, 197.9528362667671, 132.1330070622784, 70.81666053311908, 28.103817864244338, 61.07393583685459, 90.93224008398559, 32.88061525216821, 61.32799441708656, 16.18325247754788, 31.24910767046702, 43.90768678313873, 10.692036668388536, 24.581445074355518, 75.49267643687587, 44.73512995309433, 8.342120408628972, 165.06030580819353, 14.430352024076122, 74.83537566748544, 9.003506855886451, 5.850917662832151, 40.01820343419665, 34.26678369759991, 19.570226408227978, 5.221019043138466, 25.203792153255744, 28.798103102463084, 12.278854721399581, 14.208313494145067, 20.94691535633358, 37.890756215881716, 30.002469448719538, 64.56449649179179, 75.14937693109705, 12.093441238207205, 8.780633750987777, 66.69205627653538, 62.9858762380837, 119.65034035372356, 8.127159048644415, 9.27368354817744, 5.412838868516346, 17.860617465385502, 25.617851828337052, 26.839650370350892, 14.350606225754944, 28.965613335289195, 5.3259150972085045, 18.76337186492186, 12.587294273516102, 10.010017548735386, 48.904921285011945, 83.14187571925478, 72.9334095572813, 35.95101127012967, 9.962568451886956, 5.307833387834425, 25.01556269904137, 100.94678377326701, 7.240519776537509, 8.526700511262797, 8.363957014795183, 47.85997928171447, 52.6578016084802, 19.40309896764133, 18.086477840990952, 20.519613982766412, 18.000349859743682, 18.497660869505555, 109.21601611188107, 32.33204448274886, 110.52271771155529, 22.139141983356346, 10.449930185434615, 5.457729952707464, 39.776235729072155, 8.976474476684059, 50.667860726305925, 9.0783380109324, 12.589877172031294, 7.298298952404387, 11.483197483569057, 57.52647466945075, 93.15304236726455, 92.83385776584835, 95.59459351618, 43.6079892219383, 25.372882780149062, 77.317016270502, 14.171710536409897, 100.9480692345404, 14.76757391484188, 65.90462801015374, 82.74321642361284, 67.71024475608476, 57.2362292039857, 128.03881000210632, 20.58865370228071, 55.70168022810428, 16.614200088233186, 146.9533659163539, 39.772194145541796, 35.571368241959895, 14.019234437820774, 75.65546999966783, 61.92531891355475, 19.038585255069094, 6.172176812977326, 55.37630689868848, 9.873623790973573, 93.26757709656081, 9.05829589106834, 121.26357243162364, 64.77147698996701, 23.856679088201748, 313.7730743108699, 16.75708944899476, 26.285965180807686, 10.312158258532959, 13.754640904966848, 92.07094472067584, 59.53511357732427, 83.99735891056945, 11.132904795557867, 123.78475616394786, 136.7484774984186, 10.612435030812794, 47.94608877412214, 66.94018874791684, 8.678648833114327, 7.709220146753463, 6.22281557719463, 191.2446658169867, 22.2949964035785, 19.47791017890512, 61.433732871250356, 153.16682242409703, 43.19216894395575, 35.856452306521994, 12.640713651180524, 6.341670279120148, 11.29783489740679, 5.438394877983645, 17.48109248315463, 104.89395287361354, 75.26629185063553, 59.14276106011354, 52.6134188933003, 26.398531198297245, 9.4800767661582, 68.13387142875982, 37.861005128814995, 5.321719275237376, 5.779240340369296, 16.169976627099327, 32.071673515961166, 42.952503369025884, 12.101443817766082, 15.19965953157177, 14.910176946784102, 48.058961404539076, 37.41154842209531, 14.568497520440081, 33.73675316027464, 35.15030789911441, 105.93310125779152, 23.509010536951543, 18.830093332949403, 92.87288747992284, 15.863712759730227, 18.349866589209267, 15.065007406041845, 33.01012137341158, 13.772365452597588, 25.126681173959973, 16.905199951095895, 43.42756916176068, 6.413782600820628, 49.773989735927955, 17.768898100726357, 20.45840497732311, 26.300990786800206, 49.903990505680994, 14.313132889402002, 47.09214635020443, 36.476578121540456, 68.94610578518528, 12.801589493657145, 21.61908811464592, 6.384452728963922, 16.440365302219764, 95.37495566679196, 124.84151704319113, 38.55693203406109, 34.86799221677348, 20.389950526552102, 28.11943419997215, 83.99304074768722, 13.461650624402258, 28.080897065965623, 6.648182184401219, 40.280244908826035, 112.42023681285903, 70.83062885185035, 38.898585875971456, 11.516597959321235, 78.07836144166873, 103.17858394122835, 32.84131497508841, 5.332455725356496, 36.92607612336814, 13.92506231296543, 25.647860259595188, 11.897286485464607, 10.288744223440956, 46.37099854369313, 38.09168498221638, 47.45901062844608, 27.379438264765458, 17.641987541322294, 31.399223572731987, 22.0045744576106, 24.805453060036523, 17.617929130098812, 8.675457906665622, 5.224902791607786, 8.054995760050664, 65.82419391370729, 19.344348645752053, 18.000728292807704, 26.11665690335768, 77.23908032821687, 97.38711571122708, 115.77843186304398, 37.14611258253692, 29.16651995983165, 45.67270590362017, 18.135649562712526, 70.32302921321684, 8.602686685677893, 6.433310924038838, 7.284357911196401, 38.34836474789525, 55.78331165737768, 93.07332354323347, 54.88866173723686, 30.420369153612665, 15.88883566308124, 18.334757751941332, 117.6695906627294, 24.154213860017087, 36.58876325470719, 8.995242192832198, 53.121598123150186, 50.713052699489836, 70.95987365334777, 109.51519771018333, 59.248306456167825, 24.931246997693016, 31.48551090769272, 31.731657634371977, 14.404883538017764, 12.755869449338768, 11.248846051371157, 53.63745864407834, 9.686589203265672, 52.23828110965627, 109.43188488356824, 45.58062090042838, 77.36873508998076, 27.75522451938383, 14.176798415525717, 9.685477622430323, 66.10991089815847, 74.31086746496015, 14.660877051423164, 5.8264159720869815, 63.869458958222644, 78.85043073384202, 42.01745620101876, 45.316243030254974, 51.97051312130679, 9.694928798664582, 10.072938615846786, 5.267275988702837, 22.804113285845823, 94.32897716816314, 25.73306799376783, 66.62086853305827, 85.04445413955672, 88.02354042202009, 20.624854089979124, 12.473485105528782, 36.54495231188141, 12.500230876256852, 96.35771016641144, 11.059065416796814, 52.00029545909841, 20.341780852913722, 5.322263767513781, 76.01022642165034, 52.21714361982587, 15.711773904135752, 7.78477203812309, 6.477193048998719, 11.1190537992818, 6.081023094118647, 54.100225704956436, 11.385166847820045, 12.526606801075951, 25.22062776244077, 24.896138185351543, 11.301075324463179, 41.57166740643646, 11.007248743783094, 15.965538460353752, 32.83603771088938, 14.281648926099576, 8.239127092244397, 18.219408153857835, 18.91437399234956, 25.49977864832945, 146.85969424808707, 35.07960273901647, 30.93923089695996, 14.854301016665572, 49.12173506046755, 21.645156193160574, 5.397040403243124, 19.02736413901071, 66.04702529328644, 6.078359926934794, 51.49475472742811, 34.238809974518844, 20.199587528063006, 47.374522378845, 13.952383442341352, 15.213698090787217, 19.923091299125865, 36.97076677388865, 30.334246855577717, 9.14128566087573, 16.003465727080115, 6.342004991846309, 111.80238382851107, 5.915861661926866, 10.774039517927488, 6.612195771280712, 40.980462444567195, 13.076145039346713, 25.091900673214322, 97.25409441385523, 67.65899868219098, 6.000253505229854, 57.463783556329595, 27.33311491032893, 30.976263778259288, 53.09052992686371, 24.76076021158958, 60.62559617363886, 68.48816575878517, 14.377396673457655, 93.97218364965242, 10.757906621876266, 30.185491821388755, 31.782825445104383, 33.882635918186075, 45.785591284241875, 7.160300040657538, 76.32764902515932, 30.156294464807978, 25.05763696080703, 25.403461271913013, 20.65644611755988, 6.687556427896809, 27.89491659376311, 40.87178726486286, 69.4171038348692, 29.8024760357663, 83.30008185447866, 90.91865130611784, 31.53633014197961, 172.7435767194183, 47.529102122709304, 44.72798886996664, 58.52829714181426, 10.101215152736938, 49.47135429343875, 10.039834024440772, 11.048568704822934, 51.43575969098444, 7.781992715676427, 67.12855333738177, 18.113584184592128, 28.567246815324705, 66.04680846042196, 63.78267976904273, 15.91458352876859, 65.52544426039258, 18.7897942885744, 12.328499082761605, 7.531957107580768, 13.122991011478632, 101.08370898548893, 21.23083129734412, 91.2790463452439, 10.716159591878007, 39.16619944491595, 16.229104983444927, 33.522188007871236, 58.30312629756298, 21.718721305985664, 63.0214590898364, 19.700781293763082, 73.63459151698747, 28.835121873544896, 39.559866107527874, 239.47428055851776, 148.2386881051212, 136.08853777792373, 14.436834865510159, 20.185554459932252, 15.144858010599389, 91.6376617134679, 24.87922798041756, 31.10024526186106, 13.149609845823711, 21.45625839428619, 91.10344355592758, 102.64522296084036, 13.147175111497647, 20.303208723268877, 33.85287503960923, 28.872571705972483, 7.995674173986374, 18.082553245329347, 169.11854607993493, 30.507644130418996, 88.64715304615028, 80.38538451402725, 23.159507885519595, 63.777113537840265, 15.37018103132458, 42.63092385709806, 62.018213019359514, 5.925951530882623, 18.729020912946087, 127.21383341650687, 118.25853533230126, 49.71007420300272, 38.57930626259274, 96.53052842305374, 77.61913307523595, 15.307848842092929, 57.99946676196806, 13.562781127112174, 73.54390969444036, 87.25791889709926, 23.893036517486784, 18.246613939306705, 60.280206225870344, 41.03954781124963, 26.439510198849778, 27.958814657911745, 13.02618355042794, 13.639450788737664, 46.436778745946555, 78.40714192918912, 15.630581723302761, 52.70726803677812, 87.82065442994505, 20.37855337425796, 90.35850923916539, 27.603212746845237, 36.371989948164334, 8.99875447033623, 84.8699262344856, 27.1025616927842, 90.69028336575101, 30.22818160030131, 15.869236821726943, 91.41555321947436, 61.45465998021408, 26.512817193218368, 150.7420533094845, 61.451081279383175, 118.25740752948377, 5.1097035540335085, 165.34746340593097, 11.02216773040537, 16.46924141068798, 10.83504025162036, 78.43347123444529, 76.26293717533363, 10.094958617596959, 27.917127725805415, 99.82368000358267, 26.46448705085013, 55.644515984026256, 112.74306539483675, 73.45929248189498, 42.90129711453481, 19.715454181563818, 27.527334657830885, 58.41862928365812, 87.69119626416435, 33.826738298586605, 5.518643356671677, 14.421715132091045, 7.387709217771727, 74.65336166120264, 43.50630527457371, 28.41751134999172, 50.11642348521413, 53.309426389117746, 31.849216663633868, 24.514857538184113, 57.79979338170553, 5.548193337921203, 10.272538600204442, 14.081304041806574, 5.503059076474196, 69.72389387616303, 143.11313989798802, 43.48861088794719, 9.07994409991257, 35.01797623006688, 63.2474146746968, 10.047333308698922, 93.25641131105095, 16.70831551487013, 89.17508162971004, 94.66121981974479, 10.924796162205347, 183.09319583506345, 71.28433495211951, 47.539986596289936, 28.64385479111157, 56.41543073346127, 16.079796828855326, 10.543885047555193, 23.519957742513505, ...])
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);
([6719055.913481772, 6817182.234637465, 6867090.053968755, 6867888.975345576, 6972658.040346662, 7022292.78043986, 7022333.9641493745, 7134534.375, 7149312.5, 7209468.60152659, 7248938.884833042, 7248940.77843459, 7251047.621887891, 7300590.540365884, 7391436.6934706345, 7393280.348930942, 7393303.491936797, 7431698.267665671, 7487280.361642555, 7489379.138044205, 7489403.876784692, 7529566.98264296, 7553178.125, 7568255.921071074, 7568271.109561994, 7592814.0625, 7777956.25, 7791531.25, 7832418.75, 7897403.125, 7912373.077271915, 8049966.6751436265, 8058967.937713392, 8147634.479227928, 8147658.706277488, 8209508.0651869895, 8274207.977353553, 8299644.364154015, 8387620.634357718, 8435708.512117118, 8580379.521905823, 8628654.6875, 8754929.806611728, 8893042.840134589, 9127019.673308492, 9218520.3125, 9218824.290416263, 9259454.353330627, 9338298.64852937, 9338301.734825315, 9340589.69017986, 9347067.1875, 9413309.946818104, 9414881.25, 9415026.746102143, 9415304.168385675, 9415763.402820513, 9416589.741603104, 9416818.281050943, 9417702.386702875, 9418375.679672679, 9418478.125, 9420966.74099344, 9420985.38358743, 9421876.5625, 9422630.063559648, 9425499.974051302, 9425504.352811076, 9439235.9375, 9458782.8125, 9458979.806750404, 9463327.933620373, 9466611.24553594, 9467216.831442669, 9467867.1875, 9467984.687386774, 9468626.409478758, 9469192.246829415, 9479936.197384961, 9481636.12739299, 9481868.37303151, 9482626.5625, 9485085.85659143, 9491495.47565644, 9510137.5, 9510349.395965068, 9510816.436847046, 9511307.8125, 9511873.564849947, 9511985.9375, 9512226.102427602, 9512624.476204854, 9512632.8125, 9512709.910272071, 9512857.15862331, 9512893.75, 9512902.291795984, 9512912.056981884, 9512958.431672825, 9512992.1875, 9513019.370489763, 9513035.9375, 9513283.70517966, 9513399.915899383, 9513443.99142945, 9513475.054456517, 9513664.0625, 9513738.483630477, 9513839.978205705, 9514006.93636403, 9514034.22501191, 9514036.1730224, 9514056.25, 9514087.60706721, 9514102.823459579, 9514191.578969968, 9514229.570645202, 9514412.831059184, 9514676.345014524, 9515028.125, 9515097.09787598, 9515198.4375, 9515493.89359202, 9515781.01119477, 9516279.171110295, 9516303.011886697, 9516445.065833379, 9516491.98485518, 9516500.321801899, 9516784.375, 9516905.07092509, 9517571.228936793, 9533798.992718449, 9537984.372955177, 9538034.375, 9539116.723115765, 9547897.409559565, 9554583.055280853, 9555591.529224122, 9555917.1875, 9555973.4375, 9567762.448796421, 9568526.813465409, 9568542.556635631, 9568860.9375, 9569045.234983958, 9569076.525890494, 9570679.34791144, 9572469.727640802, 9573628.969409289, 9586259.375, 9603798.523594009, 9616967.1875, 9618021.713314874, 9618560.20930982, 9618743.832991736, 9619720.3125, 9629914.03374992, 9630160.4315956, 9630826.5625, 9630853.752049778, 9631921.875, 9632281.25, 9632369.948233757, 9633101.203758888, 9633611.361664345, 9633646.724992994, 9633862.5, 9633992.020764653, 9634002.84917937, 9634381.547260396, 9634605.072675068, 9634642.1875, 9635060.616120161, 9635734.14316984, 9635741.65046016, 9635920.096988058, 9636284.563285163, 9636714.0625, 9637293.75, 9637576.5625, 9639321.501452906, 9639804.96738694, 9641101.847265348, 9641418.75, 9641832.522641713, 9642369.36319014, 9642445.187846683, 9643274.21487249, 9643279.642548792, 9644675.0, 9644676.40055503, 9644804.316695547, 9645126.698083831, 9648129.6875, 9649390.937899116, 9649435.333842421, 9649535.505549544, 9649586.321032742, 9649637.720340349, 9649778.079377173, 9649821.775539242, 9650029.806238336, 9650260.9375, 9650269.615677733, 9650331.679427134, 9650335.9375, 9650546.041401962, 9650590.914909177, 9650775.485914513, 9650799.97163991, 9650907.106670484, 9650914.187426591, 9650945.3125, 9650968.75, 9650970.3125, 9650983.414761348, 9651058.649164025, 9651131.25, 9651234.177554578, 9651319.437649718, 9651373.503103409, 9651554.386001408, 9651597.019407025, 9651615.625, 9651624.132137362, 9651687.0913152, 9651732.799163558, 9651735.931752563, 9651838.108734788, 9651901.371299138, 9651901.839568242, 9651912.870236335, 9651979.6875, 9652112.988934373, 9652175.049467066, 9652254.023960803, 9652281.149307927, 9652340.510765232, 9652343.54468564, 9652375.789100159, 9652410.27999299, 9652410.40620668, 9652462.117385965, 9652518.77131734, 9652535.627975345, 9652535.653357303, 9652546.875, 9652576.5625, 9652716.858880157, 9652801.075402483, 9652820.3125, 9652848.4375, 9652890.025867155, 9653002.10665292, 9653037.950381137, 9653182.171489825, 9653290.970442886, 9653379.190605327, 9653427.059676085, 9653458.333090365, 9653471.848474227, 9653476.516384311, 9653505.703343673, 9653548.4375, 9653625.0, 9653739.99548838, 9653779.51549556, 9653798.05657019, 9653860.9375, 9653867.1875, 9653888.649188008, 9653937.988995342, 9654000.0, 9654003.125, 9654072.082676876, 9654093.75, 9654107.8125, 9654118.77050353, 9654150.142322376, 9654155.155251069, 9654243.225786129, 9654253.849984605, 9654290.992645564, 9654301.049014015, 9654374.585126067, 9654378.188806405, 9654384.375, 9654393.60164076, 9654398.4375, 9654425.002282087, 9654462.705005977, 9654493.745116951, 9654515.594327787, 9654537.5, 9654624.151432922, 9654631.25, 9654692.1875, 9654700.102070557, 9654714.398956697, 9654730.7207861, 9654756.25, 9654798.871473664, 9654809.375, 9654814.636564318, 9654818.094277723, 9654878.125, 9654890.933455028, 9654945.598865565, 9654964.278316425, 9654969.744147576, 9654981.849998005, 9655016.149510872, 9655023.519350687, 9655044.717757206, 9655085.895071449, 9655170.3125, 9655210.9375, 9655218.62469482, 9655328.939933822, 9655353.990124261, 9655381.25, 9655393.75, 9655394.26480971, 9655453.478011522, 9655480.80811578, 9655496.714429509, 9655562.240168996, 9655593.75, 9655691.591346037, 9655760.32559562, 9655781.37957461, 9655788.2257957, 9655822.36542623, 9655850.0, 9655853.125, 9656021.17670707, 9656065.04857986, 9656126.821290158, 9656297.777936667, 9656331.893360151, 9656355.916384669, 9656423.227306582, 9656428.888063367, 9656470.531406537, 9656514.23193272, 9656640.625, 9656711.92236891, 9656712.667365959, 9656757.605472852, 9657023.787098072, 9657068.839709057, 9657101.5625, 9657765.625, 9657863.39616586, 9658438.64063386, 9659587.281060228, 9659806.25, 9659945.312655987, 9661041.718384102, 9661147.999148801, 9661911.900471805, 9661920.922622839, 9662489.0625, 9662593.304985087, 9662613.640958501, 9662735.9375, 9662764.0625, 9662945.290427078, 9662946.448973991, 9663023.785917038, 9663037.5, 9663088.092237858, 9663282.41870006, 9663410.69583815, 9663850.910857677, 9664705.712696629, 9665250.0, 9665475.0, 9665786.520813946, 9666376.5625, 9666608.823292285, 9667053.721846944, 9667664.989629121, 9667727.411131639, 9668035.64645261, 9669718.339031925, 9670844.260626487, 9672460.567689031, 9674646.568268046, 9674713.008534418, 9675360.899083482, 9675438.339791594, 9675480.286122093, 9675796.875, 9675890.206678621, 9675942.741534805, 9676203.125, 9676264.651814101, 9676389.240269827, 9676470.451593041, 9676486.929219505, 9676610.9375, 9676681.724754957, 9676872.903826032, 9676960.895490997, 9677106.00049127, 9677295.035311406, 9677386.113705961, 9677442.22876658, 9677759.36134401, 9677767.787435206, 9677898.729417644, 9677908.109661952, 9677956.681116547, 9678059.288044127, 9678084.499141542, 9678140.625, 9678163.749144021, 9678320.292528028, 9678807.970002111, 9678954.580377033, 9679071.132330218, 9679132.8125, 9679200.100283278, 9679790.275276423, 9680346.003906742, 9681488.809896069, 9684291.141893039, 9688789.757304115, 9688821.875, 9689095.602913985, 9689382.804744104, 9689579.6875, 9690054.611047553, 9690953.511454085, 9691183.91702854, 9691190.625, 9691238.64978223, 9691396.875, 9691625.0, 9691761.721395003, 9692078.153274154, 9692146.875, 9692148.364132123, 9692154.23176033, 9692381.980788482, 9692384.410265423, 9692410.9375, 9692571.124364803, 9692578.125, 9692786.758984916, 9692850.0, 9692880.061799705, 9693046.21872188, 9694140.625, 9694159.805473851, 9697894.622558525, 9697924.702346975, 9698053.517840734, 9699218.75, 9700103.9290639, 9700160.9375, 9700423.36530018, 9700881.25, 9704356.25, 9704656.363487553, 9705181.25, 9705370.29063396, 9705680.9521654, 9706984.13736431, 9707247.352895742, 9707848.4375, 9714050.103576398, 9714868.788104076, 9716306.109100647, 9716653.125, 9717066.772467751, 9719339.549536671, 9719931.25, 9720095.3125, 9720119.595410228, 9720483.489467723, 9720600.527925525, 9720881.337065456, 9721002.192228107, 9721174.9312563, 9721177.56844719, 9721293.75, 9721337.57727837, 9721984.375, 9723541.766288625, 9723911.490252217, 9723916.455407627, 9724149.84383286, 9725851.5625, 9726884.26667282, 9728104.373359982, 9728357.74343968, 9729156.620742766, 9729453.725556435, 9729677.912075106, 9730506.158626147, 9730764.887182077, 9730846.455806047, 9731057.337821215, 9731100.737081835, 9731271.932635907, 9731696.019071922, 9731721.875, 9735807.8125, 9735904.6875, 9736510.221798236, 9737185.037710318, 9737233.345288312, 9737943.831486069, 9741922.880350828, 9744973.8718842, 9746545.740555892, 9747876.70601482, 9748471.273230037, 9754283.920338992, 9754949.26142441, 9758922.972649843, 9764507.209042339, 9764616.247868504, 9764842.886205489, 9765960.9375, 9766718.75, 9774956.021522876, 9776754.397516608, 9777188.580806388, 9777798.343114834, 9777803.311068058, 9778510.485634483, 9779585.9375, 9779785.622239493, 9780036.70722884, 9780561.570088502, 9791133.028619181, 9793007.8125, 9793963.929720126, 9794954.084723799, 9795618.75, 9796282.8125, 9796313.20928522, 9805077.771315698, 9805213.527465587, 9805521.875, 9808165.578605054, 9813027.742957778, 9814457.8125, 9815623.590110194, 9815629.6875, 9817720.3125, 9817742.002058953, 9817759.375, 9820728.50406249, 9820907.549890589, 9821574.339645848, 9824634.936645875, 9825363.797483161, 9826678.125, 9827115.566764688, 9827505.462868161, 9827927.33397809, 9828482.8125, 9831283.39096527, 9836406.25, 9843818.408327565, 9845838.671536492, 9854237.5, 9854371.583248448, 9854498.241223292, 9854550.56489021, 9854648.313049356, 9854657.219529442, 9854659.024370594, 9854688.69122992, 9854695.079617186, 9854710.9375, 9854711.252714673, 9854718.147268571, 9854937.485154562, 9854938.705780054, 9854942.1875, 9854977.071584234, 9854989.73696932, 9855151.846318338, 9855230.89044642, 9855776.5625, 9855823.202896535, 9855830.521100739, 9855879.734719863, 9855953.381872581, 9856060.499143863, 9856082.35007822, 9856194.541614773, 9856219.317552771, 9856270.418682711, 9856280.69392571, 9856281.787561025, 9856349.81709982, 9856364.0625, 9856381.25, 9856451.5625, 9856459.25740843, 9856490.795747118, 9856499.912091006, 9856503.125, 9856535.335842049, 9856555.769182747, 9856578.413843932, 9856591.939142212, 9856618.221603641, 9856691.16984684, 9856811.003619233, 9856818.741755199, 9856865.625, 9856865.625, 9856968.411225421, 9856971.875, 9856995.3125, 9857014.84602373, 9857026.243337147, 9857028.871497316, 9857040.625, 9857083.035094434, 9857130.36422986, 9857170.344528172, 9857277.897209026, 9857285.592755636, 9857379.488088392, 9857551.997205349, 9857585.9375, 9857660.45334464, 9857731.25, 9857760.30841989, 9857779.07711984, 9857852.636641622, 9857894.381404772, 9857975.767488401, 9858017.1875, 9858083.276499795, 9858117.1875, 9858200.859142285, 9858413.514039267, 9858438.374932656, 9858472.219546571, 9858560.9375, 9858671.875, 9858679.6875, 9858703.125, 9858729.069315381, 9858757.791685691, 9858802.784739051, 9858880.798777271, 9858910.476329213, 9858960.331028404, 9858973.696915522, 9858975.981932443, 9858989.701008083, 9859000.0, 9859067.422825085, 9859159.683192143, 9859168.75, 9859291.413205637, 9859407.533628263, 9859439.0625, 9859460.175099596, 9859579.442474477, 9859589.504739482, 9859604.075106068, 9859629.848592002, 9859649.22821924, 9859700.0, 9859705.380256686, 9859708.5432994, 9859740.484813435, 9859743.116758691, 9859822.650712859, 9860036.498188863, 9860066.294472026, 9860124.260264806, 9860194.847303642, 9860382.8125, 9860397.691257821, 9860456.314329498, 9860541.273830933, 9860546.875, 9860794.358681105, 9860910.9375, 9860912.606476994, 9860943.422525426, 9860968.75, 9861049.081542179, 9861076.5625, 9861092.740976147, 9861151.21062415, 9861278.710476642, 9861335.419424746, 9861350.0, 9861361.811043622, 9861372.790727252, 9861467.079466019, 9861477.237224163, 9861670.986957174, 9861717.1875, 9861725.295514971, 9861740.976668226, 9861782.386252007, 9861893.75, 9862119.142402694, 9862141.820606954, 9862176.106173748, 9862250.0, 9862259.967513386, 9862329.6875, 9862394.559691142, 9862409.410761828, 9862411.777713811, 9862420.122547314, 9862450.0, 9862450.392175103, 9862545.3125, 9862557.8125, 9862601.5625, 9862620.3125, 9862658.746648444, 9862723.965852028, 9862911.328529004, 9862959.42264581, 9863098.4375, 9863140.555913962, 9863242.35416682, 9863365.625, 9863415.06552842, 9863592.1875, 9863721.875, 9863734.375, 9863903.525758505, 9864042.951116644, 9864077.334424097, 9864228.65031997, 9864256.25, 9864296.715811426, 9864323.4375, 9864365.625, 9864434.375, 9864443.366379471, 9864739.781090353, 9864845.3125, 9864891.35547052, 9864923.109397268, 9864935.893136986, 9864944.698955655, 9864947.813783562, 9865038.47738118, 9865062.5, 9865124.951305171, 9865194.027396346, 9865223.912993291, 9865253.061565286, 9865353.119457014, 9865624.931678612, 9865639.0625, 9865678.283698656, 9865802.304610416, 9865878.87100749, 9865884.159673432, 9866089.170654828, 9866089.846803768, 9866124.92154308, 9866473.68250809, 9866560.9375, 9866604.502891352, 9866620.221679986, 9866636.14590971, 9866672.63326749, 9866809.200609613, 9867056.25, 9867114.534309847, 9867118.476787914, 9867153.101930143, 9867223.4375, 9867483.890108982, 9867843.712448277, 9868071.086335186, 9868086.898768675, 9869429.593321435, 9869557.8125, 9870227.484015923, 9870284.677693827, 9870604.6875, 9870949.713797487, 9871101.632124912, 9871436.126392733, 9871706.25, 9871774.37092205, 9871907.57876047, 9872026.81575656, 9872033.382508485, 9872082.8125, 9872365.35061831, 9872475.217106562, 9872491.379199574, 9872517.1875, 9872577.53114507, 9872614.848258518, 9872810.537853204, 9872814.0625, 9873013.173159275, 9873496.875, 9873789.973461678, 9874102.12168903, 9874840.625, 9875160.712660518, 9875179.6875, 9875242.1875, 9875335.781183556, 9875592.1875, 9875726.312288873, 9875847.686715975, 9876425.866097286, 9876515.236688899, 9876693.077741425, 9877011.083252696, 9877059.375, 9877097.809121031, 9877187.295859244, 9877361.16824248, 9877443.161829727, 9877468.357279697, 9877628.092361623, 9877732.8125, 9877977.65129718, 9878034.375, 9878039.0625, 9878059.375, 9878383.993874725, 9878509.183006773, 9878985.023696916, 9879999.64963873, 9883860.892148264, 9884558.60134682, 9886925.0, 9887097.608760668, 9887282.761272963, 9887981.002991086, 9888600.46859108, 9889810.9375, 9890196.10335547, 9890208.79511517, 9890745.210380858, 9890807.8125, 9891463.724615786, 9892454.6875, 9892481.990820862, 9896742.840305382, 9897341.98602364, 9897371.299145527, 9897379.066001525, 9898141.361818193, 9898528.125, 9898548.157220216, 9898764.0625, 9898819.904274188, 9898871.875, 9899195.3125, 9899208.897323873, 9899222.51637895, 9899266.48686911, 9899409.137872614, 9899492.773180328, 9899511.975051051, 9899561.710542617, 9899676.34077909, 9899719.682368552, 9899732.673476916, 9899733.733111106, 9899782.830951186, 9899795.250187509, 9899797.296286775, 9899809.375, 9899829.373106249, 9899879.183798833, 9899950.0, 9899951.087636696, 9899958.808363296, 9900000.934329864, 9900011.492959986, 9900065.214020777, 9900083.781166455, 9900139.69828258, 9900172.347080672, 9900279.354316019, 9900365.625, 9900379.6875, 9900499.652260624, 9900535.112436611, 9900547.207561038, 9900562.432790024, 9900579.6875, 9900763.906701542, 9900841.357200315, 9900993.75, 9901042.878059514, 9901062.69353428, 9901231.25, 9902139.82297234, 9902543.75, 9902611.030404195, 9902775.0, 9902832.396720761, 9902864.0625, 9902910.389738759, 9902989.999489667, 9903069.411100075, 9903281.25, 9903521.875, 9903768.63488809, 9903926.533249654, 9903975.949233616, 9904327.735577842, 9904360.9375, 9904364.0625, 9904365.79475622, 9904662.25828133, 9905239.0625, 9905280.425424967, 9905436.25107178, 9905504.639158394, 9905749.18374201, 9905943.32852328, 9906613.855482427, 9906620.16928356, 9907171.875, 9907365.625, 9907551.224496732, 9908265.999098869, 9908956.25, 9908994.066880472, 9910923.348927101, 9913075.0, 9917617.1875, 9917824.000647483, 9918293.75, 9918470.243913526, 9919747.225348594, 9919907.61682874, 9920342.1875, 9920589.0625, 9920924.220785677, 9920946.843541393, 9920951.335453242, 9921191.506126335, 9921260.9375, 9921288.170125812, 9921326.5625, 9921450.0, 9921539.52620927, 9921711.821245084, 9921851.554593746, 9922074.762085129, 9922101.329871543, 9922329.386396905, 9922345.169097206, 9922449.362004275, 9922451.787738984, 9922509.375, 9922567.863453053, 9922580.989400232, 9922596.875, 9922806.25, 9922938.820054611, 9923159.375, 9923248.745007725, 9923313.436572785, 9923482.566893341, 9923627.490506172, 9923717.531451602, 9923762.5, 9923763.574887399, 9923805.936846372, 9923896.875, 9923971.875, 9924027.303054357, 9924081.076515036, 9924181.969485182, 9924267.1875, 9924440.625, 9924568.313715398, 9924606.708780427, 9925085.9375, 9925112.5, 9925128.125, 9925434.433840338, 9926701.832195623, 9926741.778859902, 9936770.939019237, ...], [23.29521680407178, 13.117740183954696, 20.812629216947393, 7.098728334410242, 5.073063155204979, 12.200977755547, 5.904407334130093, 57.188715346760915, 44.11929854789952, 132.8273592608745, 67.54258668263914, 58.868521010641615, 18.832874419016584, 26.95591292786852, 48.74997795611139, 25.265722665280947, 16.55256457525541, 25.569160997767735, 27.256210655344766, 13.19260876074614, 18.867832857965713, 25.047219383147624, 104.1527812054636, 36.16021940568607, 12.653463894130027, 51.16536915471786, 77.50254410020631, 69.4152938922187, 40.726124559149945, 149.63870735047394, 9.04431636072356, 68.92187207409508, 29.317227456646194, 45.60120680538614, 33.38756167302972, 57.54241811715464, 15.6094275132959, 12.982947739963919, 11.671039847839705, 12.43113227029186, 8.200907508808843, 39.64488579598281, 11.319133928574336, 5.49049337927689, 7.387331954899102, 51.9319488245001, 11.499920551562589, 10.642682337427784, 11.47439795058351, 15.641698686592513, 57.703133417773046, 56.63999404773864, 26.282283858783508, 32.15843846293885, 15.775576076773849, 27.270331556814412, 69.32100046165367, 18.757553937530883, 52.82942973149756, 110.06215458961648, 18.369478996533942, 45.76056962307028, 22.043855997582064, 20.97163966499851, 86.17937277279525, 24.794249438815374, 82.46849480803446, 9.063578683034304, 42.651421720910925, 55.518724731064246, 11.31936308668505, 8.18790069413616, 37.00587044205431, 63.519023770109385, 98.69217000785345, 70.17321188574202, 96.94993103555142, 11.221726330152753, 28.963019262202415, 15.718307812326465, 13.676122068688752, 59.19542736565979, 14.641837962433938, 6.512975242381196, 61.07258520330302, 20.514491974459474, 24.99933706963091, 37.77883425220104, 26.067490121104683, 59.3022668370913, 27.086527612007096, 6.990248344175991, 49.963362143479856, 8.591487181973786, 80.72748358434116, 71.78103249994092, 8.71396804448545, 30.401122150626808, 12.256352936614114, 44.031006155800455, 6.588965766807294, 64.03772488228904, 46.11949943702467, 14.630362041600645, 7.186396026907943, 8.315586321805606, 52.745668377979804, 118.04307534362113, 44.289424136846954, 25.274048025210565, 27.261593376676558, 15.560828271005747, 80.30344872086934, 23.901311942408057, 5.6878322096737, 23.981457340982875, 83.8489121718715, 46.36914750095069, 14.172654407012619, 71.66172883825213, 27.96963331809975, 35.72737508510012, 21.045297442073895, 31.589764956538048, 8.031158800490624, 55.279134483455, 87.4745065204691, 6.723713393744388, 11.670938081203948, 95.59392482032922, 55.12538213258066, 17.89270767028661, 7.817203129300723, 17.82405071329497, 75.03030187735948, 21.855899421483148, 17.463540667902116, 6.8129635288366925, 20.047269787234, 30.93890938800376, 52.176279315871724, 32.29580997796553, 27.9106004232274, 16.563695386415784, 82.25237063917972, 54.696259836115225, 14.80378327731843, 44.70810623306459, 5.67052029371863, 10.16448007784595, 60.89251009870491, 52.524947098445, 87.58224779338411, 39.316133248567525, 71.12949210669967, 84.82636340415743, 56.303217756969715, 58.237347585942956, 21.434402194770204, 59.80213337008871, 8.64855771572217, 42.204307841875135, 108.10917022165958, 19.344339703423483, 13.73031896048487, 16.849018502844764, 25.876477728540788, 114.29218342250269, 7.078301082165877, 5.332558327066114, 22.714650460791965, 5.478545164147685, 29.637519327603073, 89.14058565093484, 10.783696734214452, 65.49538478661745, 9.155589660869165, 31.512264929547598, 91.69981749081808, 87.5354060249437, 29.84345994536452, 22.854641736847988, 30.803477437653285, 78.91112687634212, 36.985186910020836, 22.63502046726336, 6.892427705437866, 26.282656534866742, 19.5063002056237, 14.772900458989533, 75.404889480772, 17.303426417241578, 22.88657072097549, 11.34645931434166, 94.05880043361041, 11.654743071920828, 5.375887536675955, 30.343223830442174, 136.53539702746895, 15.853570996770696, 33.2972045647699, 97.87775200894225, 5.714356733829967, 59.79236630899218, 17.003908610650555, 11.872545295267505, 29.370003591386688, 10.034482759697662, 6.82279858391183, 7.788976871593229, 9.307537691237926, 12.795590911908423, 20.223239782655593, 46.991846802774916, 35.707407001529, 84.05023559525885, 17.871193789219333, 19.50174861778119, 43.884627997758905, 35.711360289876936, 11.190008411241262, 7.627138914466364, 24.930148734785448, 11.361184151210045, 32.12996371529025, 89.42812865266791, 78.00926672419372, 6.0867134413527975, 28.411803806113465, 59.25863247969149, 25.247655027122722, 9.577208798046161, 38.278775671527185, 79.54491982770104, 5.41750036872524, 131.41898230775746, 20.00336484057051, 36.39380289648845, 5.699526169316593, 47.00842387292004, 19.13987090305754, 6.638975409179859, 5.894435282043209, 7.470476515551383, 19.363290812984623, 96.6819670869512, 16.414710712491832, 59.196174174307075, 29.67770888556807, 9.06817934886495, 19.0567065674784, 58.75713084529843, 64.30482507978718, 79.4039732678588, 6.338486483947492, 14.31633483019058, 8.842449310333551, 16.444817193448404, 34.65025359295395, 7.793532318124183, 17.382465076057212, 28.01045199535674, 14.768603787315358, 69.56712067678633, 46.10452916717855, 50.556424590408504, 11.176964225361026, 25.536056586867335, 33.1593954296262, 109.13882703153092, 32.82835954711599, 87.20569452421687, 9.782191226603775, 160.88429725566837, 94.19368484809362, 9.51340402458112, 33.64713203424048, 56.730246086046726, 37.01510115836849, 7.159373286797378, 39.04641008618907, 8.924278519035147, 7.888335648801208, 26.998172354960197, 48.385526642921874, 5.513278577920121, 19.39884317209651, 47.090349186512654, 71.25291982822873, 60.9803855732611, 14.95021480688841, 40.429444478280125, 5.813619050483978, 27.93195615786886, 84.68688260732814, 68.27099041362676, 56.66395425927604, 66.0679315410552, 22.863871384726064, 77.15312957274605, 28.4680725880061, 102.14766691438761, 15.5302645544452, 50.68113484366611, 36.75171202500308, 12.918876280232537, 34.383228739616975, 61.37614371684304, 50.59975033820895, 11.482673453469884, 20.837311098289053, 17.857156869268543, 17.405117962399242, 27.36509372788805, 108.29086847113972, 16.27250105057044, 71.38129041095071, 36.042355049272985, 26.272021623524928, 19.334248976381797, 19.72686724920259, 60.61634931344249, 113.51479691139279, 17.0640876186685, 20.906378849985494, 22.093110867706294, 10.885669590664328, 5.520601620767493, 50.16800366982012, 20.584699459443748, 47.3411533820373, 15.4595102923306, 12.48968551778284, 11.991809731698824, 92.52351910240037, 67.14760620773507, 70.62529069573753, 46.20975287462593, 62.692827426292666, 12.909298593415253, 8.658860656390992, 16.85616106389389, 24.969936032914646, 18.948996730593134, 9.523624027307545, 7.6656901117080585, 38.42933717990896, 28.354863438276837, 35.191356015367944, 5.452950313526058, 16.46549838338455, 7.145234816364892, 49.24308407115828, 124.37113337057912, 78.51836546558323, 41.13121003914188, 91.64273506958897, 51.456873155603006, 36.55100491658465, 43.24881077102988, 21.513075083768342, 63.390592195326214, 17.920176856455328, 85.49113807984088, 49.38089331623618, 8.075566914117356, 88.98952836897602, 67.87908364188348, 93.04861904054873, 100.64459738518823, 16.45961296101881, 95.29429276023363, 9.887971887670727, 21.852734890870167, 219.36802869054657, 7.383409324874809, 13.225028915928377, 32.50896414263679, 59.20600076302329, 8.621171544828226, 41.7733179223978, 13.186627063289544, 9.892790192951775, 29.1510351523928, 24.631010473323087, 9.096861674205366, 13.576681811244487, 81.29950925149411, 22.89816376338282, 23.665129459667565, 6.142628518140156, 27.78673495900188, 86.29112243707807, 7.835116900689459, 56.769388259815464, 22.348512331011314, 27.372188193325748, 47.032325452078304, 36.94504905499407, 8.382876734351, 15.189727386350675, 20.814936414926457, 52.08211723651572, 17.123336050372448, 7.4209852195285615, 33.66620950474954, 21.457219923211333, 19.89534453897003, 22.56366158392722, 8.308521007860435, 23.129103004612116, 17.85676781770723, 76.17254178757265, 16.209583651314563, 77.1072523387023, 44.82644815725283, 6.788546148324487, 71.07858401646068, 12.240249520620779, 105.58875306900957, 8.371661059946524, 26.572577446634355, 10.136323246684755, 76.47509071355518, 15.338033949250955, 53.37524481064012, 30.333365805335095, 32.38124465531155, 100.64204186908435, 17.851296682406883, 48.152349206124775, 35.947196954940004, 41.999553822621685, 90.17364254286619, 27.09867378996257, 21.57501028909089, 6.417619183923572, 110.87504996399221, 56.064896644876484, 68.32794021845487, 51.51713027574694, 64.80687910161005, 5.291961426066864, 46.984331228125946, 125.87262910592992, 10.482982320074038, 5.146433830764309, 8.305314730604193, 78.00974729797713, 110.74516781035432, 52.723556441134654, 78.33210378079873, 71.47097770780798, 5.7310008534778625, 15.035297258450097, 145.85415556529827, 7.766724331515935, 12.643813377484548, 197.9528362667671, 132.1330070622784, 70.81666053311908, 28.103817864244338, 61.07393583685459, 90.93224008398559, 32.88061525216821, 61.32799441708656, 16.18325247754788, 31.24910767046702, 43.90768678313873, 10.692036668388536, 24.581445074355518, 75.49267643687587, 44.73512995309433, 8.342120408628972, 165.06030580819353, 14.430352024076122, 74.83537566748544, 9.003506855886451, 5.850917662832151, 40.01820343419665, 34.26678369759991, 19.570226408227978, 5.221019043138466, 25.203792153255744, 28.798103102463084, 12.278854721399581, 14.208313494145067, 20.94691535633358, 37.890756215881716, 30.002469448719538, 64.56449649179179, 75.14937693109705, 12.093441238207205, 8.780633750987777, 66.69205627653538, 62.9858762380837, 119.65034035372356, 8.127159048644415, 9.27368354817744, 5.412838868516346, 17.860617465385502, 25.617851828337052, 26.839650370350892, 14.350606225754944, 28.965613335289195, 5.3259150972085045, 18.76337186492186, 12.587294273516102, 10.010017548735386, 48.904921285011945, 83.14187571925478, 72.9334095572813, 35.95101127012967, 9.962568451886956, 5.307833387834425, 25.01556269904137, 100.94678377326701, 7.240519776537509, 8.526700511262797, 8.363957014795183, 47.85997928171447, 52.6578016084802, 19.40309896764133, 18.086477840990952, 20.519613982766412, 18.000349859743682, 18.497660869505555, 109.21601611188107, 32.33204448274886, 110.52271771155529, 22.139141983356346, 10.449930185434615, 5.457729952707464, 39.776235729072155, 8.976474476684059, 50.667860726305925, 9.0783380109324, 12.589877172031294, 7.298298952404387, 11.483197483569057, 57.52647466945075, 93.15304236726455, 92.83385776584835, 95.59459351618, 43.6079892219383, 25.372882780149062, 77.317016270502, 14.171710536409897, 100.9480692345404, 14.76757391484188, 65.90462801015374, 82.74321642361284, 67.71024475608476, 57.2362292039857, 128.03881000210632, 20.58865370228071, 55.70168022810428, 16.614200088233186, 146.9533659163539, 39.772194145541796, 35.571368241959895, 14.019234437820774, 75.65546999966783, 61.92531891355475, 19.038585255069094, 6.172176812977326, 55.37630689868848, 9.873623790973573, 93.26757709656081, 9.05829589106834, 121.26357243162364, 64.77147698996701, 23.856679088201748, 313.7730743108699, 16.75708944899476, 26.285965180807686, 10.312158258532959, 13.754640904966848, 92.07094472067584, 59.53511357732427, 83.99735891056945, 11.132904795557867, 123.78475616394786, 136.7484774984186, 10.612435030812794, 47.94608877412214, 66.94018874791684, 8.678648833114327, 7.709220146753463, 6.22281557719463, 191.2446658169867, 22.2949964035785, 19.47791017890512, 61.433732871250356, 153.16682242409703, 43.19216894395575, 35.856452306521994, 12.640713651180524, 6.341670279120148, 11.29783489740679, 5.438394877983645, 17.48109248315463, 104.89395287361354, 75.26629185063553, 59.14276106011354, 52.6134188933003, 26.398531198297245, 9.4800767661582, 68.13387142875982, 37.861005128814995, 5.321719275237376, 5.779240340369296, 16.169976627099327, 32.071673515961166, 42.952503369025884, 12.101443817766082, 15.19965953157177, 14.910176946784102, 48.058961404539076, 37.41154842209531, 14.568497520440081, 33.73675316027464, 35.15030789911441, 105.93310125779152, 23.509010536951543, 18.830093332949403, 92.87288747992284, 15.863712759730227, 18.349866589209267, 15.065007406041845, 33.01012137341158, 13.772365452597588, 25.126681173959973, 16.905199951095895, 43.42756916176068, 6.413782600820628, 49.773989735927955, 17.768898100726357, 20.45840497732311, 26.300990786800206, 49.903990505680994, 14.313132889402002, 47.09214635020443, 36.476578121540456, 68.94610578518528, 12.801589493657145, 21.61908811464592, 6.384452728963922, 16.440365302219764, 95.37495566679196, 124.84151704319113, 38.55693203406109, 34.86799221677348, 20.389950526552102, 28.11943419997215, 83.99304074768722, 13.461650624402258, 28.080897065965623, 6.648182184401219, 40.280244908826035, 112.42023681285903, 70.83062885185035, 38.898585875971456, 11.516597959321235, 78.07836144166873, 103.17858394122835, 32.84131497508841, 5.332455725356496, 36.92607612336814, 13.92506231296543, 25.647860259595188, 11.897286485464607, 10.288744223440956, 46.37099854369313, 38.09168498221638, 47.45901062844608, 27.379438264765458, 17.641987541322294, 31.399223572731987, 22.0045744576106, 24.805453060036523, 17.617929130098812, 8.675457906665622, 5.224902791607786, 8.054995760050664, 65.82419391370729, 19.344348645752053, 18.000728292807704, 26.11665690335768, 77.23908032821687, 97.38711571122708, 115.77843186304398, 37.14611258253692, 29.16651995983165, 45.67270590362017, 18.135649562712526, 70.32302921321684, 8.602686685677893, 6.433310924038838, 7.284357911196401, 38.34836474789525, 55.78331165737768, 93.07332354323347, 54.88866173723686, 30.420369153612665, 15.88883566308124, 18.334757751941332, 117.6695906627294, 24.154213860017087, 36.58876325470719, 8.995242192832198, 53.121598123150186, 50.713052699489836, 70.95987365334777, 109.51519771018333, 59.248306456167825, 24.931246997693016, 31.48551090769272, 31.731657634371977, 14.404883538017764, 12.755869449338768, 11.248846051371157, 53.63745864407834, 9.686589203265672, 52.23828110965627, 109.43188488356824, 45.58062090042838, 77.36873508998076, 27.75522451938383, 14.176798415525717, 9.685477622430323, 66.10991089815847, 74.31086746496015, 14.660877051423164, 5.8264159720869815, 63.869458958222644, 78.85043073384202, 42.01745620101876, 45.316243030254974, 51.97051312130679, 9.694928798664582, 10.072938615846786, 5.267275988702837, 22.804113285845823, 94.32897716816314, 25.73306799376783, 66.62086853305827, 85.04445413955672, 88.02354042202009, 20.624854089979124, 12.473485105528782, 36.54495231188141, 12.500230876256852, 96.35771016641144, 11.059065416796814, 52.00029545909841, 20.341780852913722, 5.322263767513781, 76.01022642165034, 52.21714361982587, 15.711773904135752, 7.78477203812309, 6.477193048998719, 11.1190537992818, 6.081023094118647, 54.100225704956436, 11.385166847820045, 12.526606801075951, 25.22062776244077, 24.896138185351543, 11.301075324463179, 41.57166740643646, 11.007248743783094, 15.965538460353752, 32.83603771088938, 14.281648926099576, 8.239127092244397, 18.219408153857835, 18.91437399234956, 25.49977864832945, 146.85969424808707, 35.07960273901647, 30.93923089695996, 14.854301016665572, 49.12173506046755, 21.645156193160574, 5.397040403243124, 19.02736413901071, 66.04702529328644, 6.078359926934794, 51.49475472742811, 34.238809974518844, 20.199587528063006, 47.374522378845, 13.952383442341352, 15.213698090787217, 19.923091299125865, 36.97076677388865, 30.334246855577717, 9.14128566087573, 16.003465727080115, 6.342004991846309, 111.80238382851107, 5.915861661926866, 10.774039517927488, 6.612195771280712, 40.980462444567195, 13.076145039346713, 25.091900673214322, 97.25409441385523, 67.65899868219098, 6.000253505229854, 57.463783556329595, 27.33311491032893, 30.976263778259288, 53.09052992686371, 24.76076021158958, 60.62559617363886, 68.48816575878517, 14.377396673457655, 93.97218364965242, 10.757906621876266, 30.185491821388755, 31.782825445104383, 33.882635918186075, 45.785591284241875, 7.160300040657538, 76.32764902515932, 30.156294464807978, 25.05763696080703, 25.403461271913013, 20.65644611755988, 6.687556427896809, 27.89491659376311, 40.87178726486286, 69.4171038348692, 29.8024760357663, 83.30008185447866, 90.91865130611784, 31.53633014197961, 172.7435767194183, 47.529102122709304, 44.72798886996664, 58.52829714181426, 10.101215152736938, 49.47135429343875, 10.039834024440772, 11.048568704822934, 51.43575969098444, 7.781992715676427, 67.12855333738177, 18.113584184592128, 28.567246815324705, 66.04680846042196, 63.78267976904273, 15.91458352876859, 65.52544426039258, 18.7897942885744, 12.328499082761605, 7.531957107580768, 13.122991011478632, 101.08370898548893, 21.23083129734412, 91.2790463452439, 10.716159591878007, 39.16619944491595, 16.229104983444927, 33.522188007871236, 58.30312629756298, 21.718721305985664, 63.0214590898364, 19.700781293763082, 73.63459151698747, 28.835121873544896, 39.559866107527874, 239.47428055851776, 148.2386881051212, 136.08853777792373, 14.436834865510159, 20.185554459932252, 15.144858010599389, 91.6376617134679, 24.87922798041756, 31.10024526186106, 13.149609845823711, 21.45625839428619, 91.10344355592758, 102.64522296084036, 13.147175111497647, 20.303208723268877, 33.85287503960923, 28.872571705972483, 7.995674173986374, 18.082553245329347, 169.11854607993493, 30.507644130418996, 88.64715304615028, 80.38538451402725, 23.159507885519595, 63.777113537840265, 15.37018103132458, 42.63092385709806, 62.018213019359514, 5.925951530882623, 18.729020912946087, 127.21383341650687, 118.25853533230126, 49.71007420300272, 38.57930626259274, 96.53052842305374, 77.61913307523595, 15.307848842092929, 57.99946676196806, 13.562781127112174, 73.54390969444036, 87.25791889709926, 23.893036517486784, 18.246613939306705, 60.280206225870344, 41.03954781124963, 26.439510198849778, 27.958814657911745, 13.02618355042794, 13.639450788737664, 46.436778745946555, 78.40714192918912, 15.630581723302761, 52.70726803677812, 87.82065442994505, 20.37855337425796, 90.35850923916539, 27.603212746845237, 36.371989948164334, 8.99875447033623, 84.8699262344856, 27.1025616927842, 90.69028336575101, 30.22818160030131, 15.869236821726943, 91.41555321947436, 61.45465998021408, 26.512817193218368, 150.7420533094845, 61.451081279383175, 118.25740752948377, 5.1097035540335085, 165.34746340593097, 11.02216773040537, 16.46924141068798, 10.83504025162036, 78.43347123444529, 76.26293717533363, 10.094958617596959, 27.917127725805415, 99.82368000358267, 26.46448705085013, 55.644515984026256, 112.74306539483675, 73.45929248189498, 42.90129711453481, 19.715454181563818, 27.527334657830885, 58.41862928365812, 87.69119626416435, 33.826738298586605, 5.518643356671677, 14.421715132091045, 7.387709217771727, 74.65336166120264, 43.50630527457371, 28.41751134999172, 50.11642348521413, 53.309426389117746, 31.849216663633868, 24.514857538184113, 57.79979338170553, 5.548193337921203, 10.272538600204442, 14.081304041806574, 5.503059076474196, 69.72389387616303, 143.11313989798802, 43.48861088794719, 9.07994409991257, 35.01797623006688, 63.2474146746968, 10.047333308698922, 93.25641131105095, 16.70831551487013, 89.17508162971004, 94.66121981974479, 10.924796162205347, 183.09319583506345, 71.28433495211951, 47.539986596289936, 28.64385479111157, 56.41543073346127, 16.079796828855326, 10.543885047555193, 23.519957742513505, ...])
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)