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 = 48199
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);
([8025166.306155601, 8305730.460765575, 8569435.9375, 8755831.25, 8962528.435675703, 8995725.361209609, 9008220.3125, 9211070.035093112, 9235562.632696653, 9243887.63751764, 9247695.22963645, 9291507.8125, 9335515.990008822, 9380429.210997289, 9413999.760982415, 9528686.833998825, 9528889.015134921, 9556384.716133503, 9569026.5625, 9596352.215458658, 9605376.787074992, 9605441.60165657, 9605458.816493211, 9606335.988106823, 9606587.211929955, 9606835.448065965, 9606857.596663343, 9606950.0, 9607045.590452805, 9607145.3125, 9607443.086150678, 9607448.4375, 9607554.6875, 9607724.216839496, 9607937.5, 9607974.648458403, 9608079.6875, 9608149.217036827, 9608231.25, 9608399.676984562, 9608423.003008945, 9608444.66098633, 9608793.779784486, 9608957.8125, 9609221.875, 9609375.177962992, 9609496.875, 9609815.549697846, 9610008.794338671, 9610463.81145739, 9610868.932468502, 9610873.217010798, 9611167.173490351, 9611174.889133012, 9611274.810691573, 9611301.364289528, 9611302.640130855, 9611523.4375, 9611616.469549406, 9611764.081575131, 9611908.433952712, 9612049.832337948, 9612132.780069772, 9612197.919507658, 9612217.1875, 9612275.0, 9612415.625, 9612691.193536334, 9612707.816460537, 9612718.027118001, 9612738.7216427, 9613528.125, 9613562.367822582, 9613682.787173197, 9613992.1875, 9614169.350630546, 9614354.282606628, 9614359.375, 9614386.747767055, 9614409.207555588, 9614537.166264901, 9614678.981809925, 9614760.9375, 9614811.857337927, 9614987.088272575, 9615026.482202854, 9615181.25, 9615188.498414168, 9615314.52082473, 9615402.862764645, 9615488.843902722, 9615496.666831315, 9615526.731621241, 9615570.3125, 9615583.057444913, 9615685.9375, 9615898.197359085, 9615973.313810237, 9616128.174812332, 9616138.965442965, 9616410.9375, 9616910.652532104, 9617142.962965755, 9617400.385571415, 9617425.599635692, 9617522.29630459, 9617567.88022514, 9617652.770755032, 9618053.424511736, 9618320.206094366, 9618468.233293796, 9618594.890589263, 9619033.347940078, 9619113.569354594, 9619300.948802678, 9619323.4011763, 9619455.02534286, 9619514.963479547, 9619558.961856926, 9620062.5, 9620101.5625, 9620132.265779035, 9620496.015723923, 9620776.770253934, 9621246.754654638, 9621430.360923909, 9621474.945994115, 9621950.087542495, 9622032.8125, 9622198.05048543, 9622746.45253535, 9624088.257790953, 9624167.1875, 9625067.645234972, 9625509.623985797, 9625615.355124475, 9625984.687036809, 9626027.46592761, 9626093.355663493, 9626100.614444906, 9626114.762920406, 9626557.564604647, 9626773.4375, 9627787.261703003, 9627823.790870786, 9628987.470508682, 9629040.235583508, 9630101.032720776, 9630576.5625, 9631565.625, 9631622.808158748, 9631694.695268646, 9632125.679194208, 9632830.667928755, 9632967.497349761, 9633589.497798981, 9637785.542782487, 9639037.5, 9639729.472319065, 9640628.231307646, 9643549.494062971, 9647034.28235128, 9648572.48496563, 9649693.584206302, 9652203.418903615, 9656419.807220472, 9662644.29533414, 9662647.167724157, 9670532.488163238, 9671474.600321803, 9671493.393016458, 9672194.85634904, 9673159.375, 9673818.480286695, 9674413.19462138, 9674975.504850166, 9675637.5, 9675895.3125, 9676824.815836892, 9676854.6875, 9677523.991097042, 9677547.069073455, 9677557.580368698, 9678043.623455621, 9678452.922763558, 9679001.5625, 9679302.967098216, 9679402.307404509, 9679504.928766292, 9679856.060583847, 9680212.792519063, 9680502.331081906, 9681221.484850502, 9681240.992085211, 9681257.655940354, 9681343.801020842, 9681559.375, 9681629.660398025, 9682609.375, 9683957.2255339, 9686525.957036138, 9689497.44321688, 9700537.880939813, 9701079.094429482, 9701232.8125, 9702604.498033028, 9702802.125994781, 9703358.12577425, 9703841.745178845, 9707150.717990635, 9711485.626191316, 9712649.167022482, 9714882.806068739, 9715277.296185795, 9716517.1875, 9716767.1875, 9717391.14033579, 9719741.997157658, 9720814.0625, 9720870.406175619, 9730017.751475986, 9738255.375583235, 9743607.342901433, 9760840.625, 9769103.957059873, 9789194.928945582, 9811445.3125, 9814462.65003058, 9816118.286175586, 9826288.236136675, 9832181.620232454, 9834632.296663644, 9838870.3125, 9840512.264518, 9847641.18737769, 9853644.236190718, 9857794.933938956, 9864658.375011068, 9865462.5, 9866491.974549681, 9871858.443988232, 9885917.375678625, 9896157.087880976, 9904212.496411476, 9927384.375, 9928871.875, 9929234.375, 9929337.121570628, 9929730.27727126, 9930231.893938297, 9930277.834181856, 9930368.75, 9931082.736357719, 9931146.875, 9931276.50463807, 9931467.1875, 9932003.510545915, 9932057.804684794, 9932073.4375, 9932139.711958045, 9932151.5625, 9932311.230695354, 9932330.73439297, 9932468.540815996, 9932504.27464026, 9932548.68708648, 9932591.265487682, 9933038.542858627, 9933081.236699002, 9933181.355927318, 9934251.14275173, 9934775.236776076, 9934805.577343402, 9935062.19297936, 9935193.531940114, 9935249.965229394, 9935734.230130354, 9935776.503147475, 9935853.125, 9935912.216344964, 9936095.264245111, 9936260.232617695, 9936268.389529716, 9936776.155394536, 9936835.9375, 9936910.819746992, 9937250.585488498, 9937267.534010764, 9937289.591197366, 9937321.817430954, 9937411.83659333, 9937420.143829763, 9937598.747013139, 9937684.375, 9937832.748365985, 9937851.781127725, 9937857.153338216, 9937865.600665683, 9938062.564611938, 9938131.25, 9938289.501729991, 9938317.1875, 9938503.125, 9938527.137663009, 9938578.186957141, 9938735.616364505, 9938798.584638184, 9938805.561050152, 9938841.93868769, 9939016.216337584, 9939129.6875, 9939290.231999816, 9939600.0, 9939745.3125, 9939809.087421242, 9940039.74762214, 9940278.762773061, 9940353.125, 9940370.3125, 9940637.5, 9940932.67998931, 9941369.17175142, 9941443.75, 9942125.069514766, 9945092.714280017, 9949399.528410591, 9950456.994406044, 9951016.175675217, 9954689.415332533, 9955806.25, 9956743.84444032, 9958539.393593833, 9959634.375, 9959696.714222912, 9959697.139753059, 9961624.397077676, 9962009.419423258, 9962098.4375, 9962944.265271075, 9963591.4337853, 9963732.543984247, 9964057.853737889, 9964516.659529207, 9965096.875, 9965168.75, 9965221.875, 9965355.440716105, 9965486.115909612, 9965581.25, 9965665.146259049, 9966106.313271891, 9966451.393060315, 9966809.375, 9969571.621298486, 9970323.4375, 9970346.734728415, 9970385.387057742, 9970455.420867044, 9973185.175648864, 9973226.546257166, 9974894.219077148, 9975011.547940662, 9975978.125, 9976186.413355881, 9976781.51108493, 9976944.67386335, 9977945.3125, 9978086.532567997, 9979263.920191914, 9979272.583565326, 9980019.17304743, 9980121.60419723, 9980385.581773423, 9981032.8125, 9981476.84138071, 9982036.8853917, 9982121.875, 9982399.376308074, 9982464.0625, 9982515.012798525, 9982992.1875, 9983689.0625, 9985020.303851752, 9985568.75, 9986300.0, 9986315.027188068, 9986755.817031587, 9987805.864125347, 9989048.4375, 9998882.8125, 10013084.187702904, 10013085.65736351, 10015153.125, 10031071.601981899, 10036148.351518374, 10040735.678812535, 10047013.458376193, 10050850.886471285, 10051754.118983887, 10051833.786374742, 10052664.880046586, 10053203.125, 10053409.123551348, 10070984.375, 10087326.70189034, 10087355.968538238, 10113787.62751093, 10121101.374655709, 10121204.593198178, 10121354.59074463, 10121490.625, 10122815.656879058, 10123439.0625, 10126214.0625, 10127903.125, 10128723.4375, 10129961.791339345, 10130035.9375, 10131793.273430118, 10132863.136458622, 10135212.535624376, 10135353.125, 10136042.1875, 10136329.480441505, 10136801.532493081, 10137413.823765643, 10137755.756442703, 10137827.372528143, 10138146.875, 10138399.696521964, 10138580.420131765, 10143108.45167395, 10144079.925996425, 10144390.790304119, 10144424.651299704, 10145224.470708184, 10148166.195273813, 10149659.375, 10152127.218369503, 10154609.375, 10156056.936459037, 10156120.3125, 10159042.829212774, 10160547.996295396, 10160552.9011609, 10167732.841764579, 10168687.5, 10168985.050912205, 10169064.317460159, 10169109.084317945, 10169348.4375, 10169631.43629286, 10169781.11700506, 10169960.855456265, 10170181.25, 10171215.542248625, 10171951.249483524, 10171978.593956709, 10172518.930736924, 10172683.65360663, 10172918.189284932, 10173029.6875, 10173338.705774352, 10173433.72806368, 10173495.3125, 10173630.790536154, 10173764.0625, 10173769.885403953, 10173841.835868016, 10173892.001477625, 10174194.75727238, 10174199.161607407, 10174241.338472674, 10174514.855543947, 10174941.54273113, 10175026.5625, 10175310.346149458, 10175348.463861985, 10175615.46335808, 10176144.564144826, 10176221.985644707, 10178848.4375, 10190048.847506685, 10191222.759671398, 10191468.364891002, 10200660.826307563, 10201648.4375, 10201985.06691787, 10201991.64213215, 10202642.1875, 10202718.669291267, 10203285.781716647, 10203429.6875, 10203645.061102262, 10203645.3125, 10203759.934627803, 10203868.600875163, 10203993.75, 10204018.051234527, 10204636.384966804, 10204804.554963658, 10204940.492352353, 10205187.250388337, 10205200.759222273, 10205271.983090289, 10205467.8329864, 10205622.898139538, 10205765.624192486, 10205920.3125, 10205956.2976625, 10206005.459417798, 10206123.4375, 10206192.55927644, 10206195.435834361, 10206257.924025211, 10206378.84941295, 10206478.761667982, 10206677.756551078, 10206909.375, 10206951.484318791, 10206970.925012492, 10207007.069115411, 10207034.310210688, 10207056.981894363, 10207217.183619512, 10207241.729915885, 10207459.271299241, 10207567.1875, 10207588.822850373, 10207698.33986228, 10207711.683645673, 10207735.529381296, 10207790.625, 10208114.925609846, 10208170.025164334, 10208454.571535826, 10208473.856027775, 10208485.9375, 10208645.249999942, 10208853.125, 10208869.14635148, 10209213.34324221, 10209225.0, 10209386.56413043, 10209659.853981128, 10209720.815144813, 10209727.585405802, 10209932.92531574, 10209975.0, 10210646.875, 10211041.033507207, 10211088.956730083, 10211089.0625, 10211154.6875, 10211270.580538986, 10211882.940844687, 10212981.25, 10217851.5625, 10218029.6875, 10220747.52279692, 10220823.312181788, 10222376.67641044, 10225485.714533346, 10243053.125, 10243069.219936332, 10245751.288121551, 10248155.224528108, 10254161.787370875, 10255582.969523024, 10256591.805972842, 10256763.32974264, 10256896.018303106, 10256953.125, 10257065.581052912, 10257566.207160579, 10257570.3125, 10257588.342236698, 10257729.095277496, 10257750.157255862, 10257935.828493338, 10258137.5, 10258280.634322977, 10258697.329656988, 10259375.04158252, 10259657.8125, 10259661.677538129, 10259676.580091788, 10259706.115584575, 10259819.981557786, 10259821.600736143, 10259906.268708354, 10260025.067646405, 10260453.067436485, 10260562.13100837, 10260792.321837936, 10260795.99802093, 10260955.571655028, 10261229.575936852, 10261277.2859677, 10261310.9375, 10261652.020985888, 10261694.571008489, 10261813.180016411, 10261960.9375, 10263040.625, 10263126.5625, 10263151.5625, 10263376.351636883, 10263675.0, 10264972.213446226, 10265221.875, 10265275.468177075, 10266542.545440216, 10266670.496029243, 10268602.535084961, 10268619.126775367, 10270177.741208753, 10270670.052298103, 10270896.925882367, 10271681.25, 10272122.944034584, 10272299.601673493, 10274187.385343213, 10274244.486938199, 10274575.946099805, 10274811.783937838, 10274855.300271006, 10275012.538466798, 10275475.126844645, 10275571.875, 10275621.682256537, 10275715.239644207, 10275736.844003422, 10275818.75, 10276777.99801319, 10276800.156074604, 10276879.016794816, 10277069.733739195, 10277265.43229351, 10277484.375, 10277498.97553458, 10277626.300820705, 10277652.97816122, 10277777.55817023, 10277858.461529834, 10278027.644688075, 10278481.426896593, 10278590.171208771, 10279118.53222761, 10279203.125, 10279463.757857073, 10280306.25, 10280517.003970701, 10280937.5, 10280958.366441041, 10280989.2932573, 10281295.3125, 10281306.106220214, 10281316.813181084, 10281764.874075357, 10282141.408213347, 10282181.443524616, 10282291.438696202, 10282389.859760107, 10282550.0, 10282882.150692375, 10282926.73588322, 10283708.282527564, 10284075.906263728, 10284118.75, 10284312.076067895, 10284958.08885008, 10285094.467080807, 10285243.75, 10285460.561657792, 10285461.46013138, 10285721.451893382, 10285967.284877043, 10286265.901668737, 10286486.395478213, 10286567.018631916, 10286885.437557604, 10286916.563879069, 10287314.950019382, 10287444.465198265, 10287600.0, 10287802.076558573, 10287808.429708138, 10288825.17051989, 10288904.97108084, 10289097.479719423, 10289195.761886729, 10289240.428174268, 10289451.754259927, 10289621.875, 10290608.733899353, 10290788.038011909, 10291312.5, 10292081.496866193, 10293665.625, 10293674.0403328, 10294556.099678285, 10294860.697862815, 10295102.624064788, 10295135.423749236, 10295200.0, 10295454.6875, 10296026.5625, 10296127.30100244, 10296647.731491817, 10297147.661424067, 10297196.193330783, 10297220.61843203, 10297233.028350594, 10297293.524715517, 10297540.559253536, 10298484.428220825, 10298526.146685032, 10300012.5, 10300137.5, 10300195.08292195, 10300355.957657207, 10300520.48290701, 10300743.699179769, 10300770.985447478, 10301239.817325113, 10301265.80945374, 10301342.43823295, 10301626.933149647, 10301698.4375, 10301717.867911898, 10301811.152877072, 10301832.8125, 10301928.04211635, 10302028.125, 10302086.193381347, 10302118.75, 10302296.070823653, 10302336.825722668, 10302397.861926742, 10302408.162571194, 10302471.863272853, 10302548.63290395, 10302651.419255037, 10302826.180793406, 10302892.04704439, 10303006.008532925, 10303267.1875, 10303285.48087191, 10303543.681081543, 10303669.246469853, 10303705.082212161, 10303721.433549227, 10304059.375, 10304088.031949222, 10304144.7833996, 10304316.293491386, 10304331.25, 10304382.8125, 10304417.1875, 10304528.125, 10304603.04956006, 10304709.29948596, 10304778.885224352, 10304892.581101103, 10304905.523965057, 10305026.5625, 10305046.823672824, 10305147.22324895, 10305203.125, 10305356.25, 10305407.680836214, 10305505.743372587, 10305661.990361987, 10305713.017750572, 10305984.94229617, 10305997.531909907, 10306113.575489487, 10306131.25, 10306405.722507464, 10306531.120177085, 10306589.257510042, 10306618.75, 10306624.815243144, 10306720.28437474, 10306884.375, 10306885.85758279, 10307087.014226595, 10307174.713302111, 10307183.808577957, 10307243.07145073, 10307249.426894857, 10307308.344386792, 10307333.065864041, 10307355.479788791, 10307557.510032473, 10307582.714825675, 10307594.43904026, 10307670.776654925, 10307790.625, 10307937.5, 10307951.000854634, 10308026.014326947, 10308109.375, 10308179.775396721, 10308208.431433931, 10308259.375, 10308302.800199673, 10308363.418555094, 10308401.5625, 10308432.8125, 10308610.9375, 10308615.505668363, 10308629.254113259, 10308731.25, 10308806.25, 10309196.640247744, 10309230.583228195, 10309262.5, 10309282.8125, 10309319.677693024, 10309346.501223486, 10309517.1875, 10309631.933168948, 10309780.282107068, 10309834.616376424, 10309840.259573134, 10309912.5, 10309964.323424002, 10310002.760804484, 10310084.892235141, 10310137.286240477, 10310232.8125, 10310283.33437352, 10310320.381429756, 10310328.125, 10310338.376650857, 10310577.377330663, 10310778.125, 10311013.37346488, 10311014.0625, 10311040.757000435, 10311134.375, 10311537.54324433, 10311583.921607964, 10311586.625084957, 10311598.4375, 10311610.9375, 10311709.375, 10311734.488509802, 10311781.25, 10312018.493134707, 10312152.152258504, 10312226.5625, 10312235.9375, 10312257.111948667, 10312335.263987845, 10312340.430957703, 10312495.3125, 10312549.081423122, 10312553.125, 10312558.319801498, 10312717.637046248, 10312993.424450902, 10313064.094207443, 10313302.817397181, 10313308.927758845, 10313346.875, 10313796.875, 10313884.166426018, 10314103.695347026, 10314320.336876307, 10314420.3125, 10314601.850486558, 10314720.3125, 10314724.82792729, 10314755.067880096, 10314781.31786177, 10315044.65900841, 10315070.046263842, 10315104.594612285, 10315316.542542499, 10315414.0625, 10315537.5, 10315787.673965639, 10315790.5958271, 10315946.814550016, 10316014.0625, 10316058.115473185, 10316059.285926653, 10316173.292393772, 10316220.034291126, 10316270.3125, 10316336.525486631, 10316462.5, 10316642.957521368, 10316719.33300997, 10316868.365898054, 10316880.881562883, 10317024.72871692, 10317028.936816756, 10317114.0625, 10317185.9375, 10317467.653327897, 10317496.320284326, 10317599.455293162, 10317725.0, 10317902.328932943, 10318319.234308869, 10318331.551036542, 10318351.5625, 10318394.980118224, 10318430.730084177, 10318799.351367565, 10318902.196718508, 10318996.794857025, 10321071.875, 10321229.6875, 10321405.86685654, 10322190.696224915, 10322506.384261288, 10322840.021067072, 10323903.125, 10324510.9375, 10326260.249070775, 10326347.317061339, 10326677.682563933, 10327055.49124814, 10327320.697968006, 10327361.33085089, 10327377.243573546, 10327504.751382114, 10327756.88387027, 10327765.523855882, 10327807.251669416, 10327843.709831093, 10327990.626883645, 10328004.6875, 10328042.1875, 10328137.144927608, 10328161.961639417, 10328182.324285673, 10328280.436022285, 10328295.3125, 10328373.32200505, 10328428.361399923, 10328530.587011082, 10328578.094414702, 10328631.841239698, 10328647.341058439, 10328692.1875, 10328731.93938993, 10328832.8125, 10328899.197652608, 10328955.48073166, 10328989.403133275, 10329052.575207153, 10329131.400715683, 10329139.0625, 10329192.946776165, 10329197.952460274, 10329300.011620095, 10329359.375, 10329443.693075782, 10329482.996051492, 10329504.377365414, 10329548.722945303, 10329659.375, 10329688.042065479, 10329784.375, 10329929.024445018, 10330067.1875, 10330180.745820338, 10330210.167091183, 10330312.5, 10330367.1875, 10330735.9375, 10330863.714205505, 10330864.133251686, 10330929.171268322, 10330972.521362051, 10331090.955994204, 10331435.68065989, 10331890.622264255, 10332308.34726015, 10332470.306161612, 10332803.763088413, 10332879.481167998, 10334339.607449189, 10334794.862395788, 10335844.680297479, 10336179.6875, 10337029.579135993, 10338003.190669311, 10339928.125, 10340132.21337119, 10348502.637442293, 10348854.130131755, 10349856.25, 10350886.829574509, ...], [6.907565345635323, 32.15308762539063, 73.8658968016283, 68.68303366032471, 46.35211449993846, 57.864371040177545, 35.219779789078196, 24.043692096226735, 32.16742396273119, 11.349681322889012, 14.634806462119496, 268.37864472190745, 74.91959293368312, 54.60200698450007, 5.7965041793019285, 8.825317916897806, 27.621141960137855, 5.549869096847814, 96.44272154472257, 18.19343093475392, 6.809185009334398, 60.07896946817732, 10.35415939960031, 15.137972253527291, 13.946534722872515, 18.3221188629279, 25.35553057426695, 48.16422575347377, 11.591857806100606, 42.86424942250762, 20.56967718215576, 34.14149260359339, 64.85487563184644, 7.911728986192385, 54.98832658887531, 13.751899525620047, 43.27462998283343, 100.14065045750037, 37.247067214491075, 56.65050187076824, 22.172463332417635, 8.835233234808108, 9.35671525974453, 39.69182703934899, 105.82129955343166, 5.207979708629428, 44.45333375692303, 30.8250362598576, 21.508593863308796, 32.8255523874262, 15.311913043214311, 88.14016560273956, 26.848047594656503, 54.062827028850734, 14.265920303047034, 25.144290763810552, 21.645378269757394, 75.35759774318717, 5.879229147390672, 15.014716771821892, 17.53770914513775, 10.875377233356557, 68.73374784139146, 65.09741209483242, 30.584867755115514, 87.15087357852254, 48.68302338961873, 6.882578813926259, 5.707010112976594, 10.158969932589386, 39.09647197833597, 48.44900352125177, 5.45612179215814, 56.561986905225865, 47.453598103817576, 24.942004651644062, 22.49737432589305, 70.78522106840671, 18.285349933393064, 313.79927026819075, 49.41782115491326, 12.795929080929898, 70.28230549831964, 126.58067671918315, 22.421306286686075, 20.046408424840944, 71.21082473160034, 32.850621965476805, 9.751538874154496, 19.9436500847998, 24.84939085521056, 19.028845107975936, 83.68226869705646, 47.17058195846354, 34.54270771496587, 77.24377975924777, 24.546706918411154, 79.16994395037737, 9.373880489454912, 83.56078081993581, 65.18213760842046, 10.70969952779307, 19.03930019818396, 16.64754250923913, 13.143653451266648, 7.763071625768991, 18.45713294446779, 6.694786687716219, 16.22082043806378, 14.550879700914047, 5.508517878629845, 13.545126155617465, 34.38655892552483, 44.34997263489045, 20.46577850524735, 14.804844634149527, 11.70029976495721, 25.065985684522502, 20.082375133353686, 44.849690274673094, 38.71677994479475, 7.416783902854651, 31.20655699431462, 9.513474016312147, 26.51075545960941, 8.677980916945423, 35.392305731009785, 8.333420230272555, 65.45219110241639, 13.646517738911363, 13.543534551057743, 26.416660840533737, 45.22382282892571, 18.87629987162673, 23.583451579583084, 24.143321139392846, 24.629294681808062, 94.26156418248931, 22.61614599390085, 20.797549968188918, 18.509325564410148, 76.42142599893309, 59.987502700341665, 37.08242411266613, 16.484337210628496, 33.39688803991734, 40.32556708357847, 20.786672891800627, 57.51485981621831, 54.833431933457426, 34.08933327052479, 10.282941432559207, 20.947884432497027, 20.711684319615888, 69.09269989097152, 18.52716404097933, 133.2578810020974, 226.98226049204854, 16.622402894646232, 15.362800850348881, 13.309815268665702, 26.817792825736554, 73.63520398270586, 98.18622898563675, 16.19403723026624, 7.430168356632821, 8.597670284382703, 11.618306249195724, 10.655962385747497, 50.67517240086565, 55.43475142558039, 8.973349661335012, 64.13508360270524, 24.14547815083635, 65.01502179355427, 15.730345811191388, 31.234079225650934, 109.46912386102628, 8.191532052712699, 34.27053670564911, 31.367703929813317, 25.90974561072992, 14.124865444662897, 76.08337546231252, 304.07320509188804, 70.66206315347887, 117.34742930799742, 6.610565413144688, 14.097949568602797, 16.28651250890434, 16.187443467812688, 7.339291138820592, 13.637317949855401, 16.553315226589852, 35.61870148973679, 39.587107829106564, 78.46738498073958, 27.999512729458903, 76.61348710645726, 8.879947520509287, 89.04699769850221, 7.279283301964413, 16.62379825799883, 6.973815690480482, 51.69174947808982, 6.72626140594116, 17.634724478156745, 20.769647029414692, 8.065746761564155, 18.62995295419784, 6.702907928350196, 6.3639886647062545, 28.3983787221156, 12.507499671783245, 37.554790625892785, 36.15318998864672, 17.352226753169216, 89.71677509191605, 41.13155356127628, 6.5018766546007685, 65.83834748447258, 8.687365590765086, 38.15977881819212, 45.71501298271638, 83.0792643882152, 9.0268596720357, 89.41582232082929, 8.367542159686746, 5.033813315656534, 18.75670804684396, 22.987279704096366, 6.66471553619528, 69.95407111636929, 22.43191138173475, 221.44740372215296, 77.08280002860074, 10.583414678754876, 12.137707827656355, 39.21227562335723, 7.06657645290251, 18.05510840567933, 26.95993935152331, 56.289602044260405, 97.83264449419457, 71.69648192031485, 69.8260842735571, 108.10265051835259, 132.07683160887223, 5.745349644826964, 9.942502697350623, 50.06375168457505, 76.66200849934677, 14.65902124796545, 103.8375442235997, 20.089506177475116, 85.56639552625916, 8.501556238928409, 14.911804952335329, 75.01298916462015, 57.0624157107503, 54.70888628538309, 11.619153111446327, 10.407273681958399, 14.19994967766337, 149.5361490256452, 22.54994785968909, 25.048144990117546, 19.27133271030725, 74.06234953253454, 15.361233977023998, 38.589647537664035, 7.691180904285792, 5.882891708729554, 58.44016430575976, 75.25594140348842, 13.955385499959402, 9.211839824851781, 14.720010316380769, 63.21050139987264, 75.62109108778066, 107.73820749888631, 28.63193263606552, 23.007873461746176, 5.7844597490992085, 70.76546837315603, 103.48984153960865, 79.17870601912215, 7.2156185713860355, 7.267729556535196, 27.43514866076269, 36.817138279442396, 10.873916629319053, 11.64860241233447, 61.64349266754724, 27.317048165543486, 15.84587734618773, 10.233113335999361, 77.32356764732828, 5.617628655943743, 58.92709393163497, 7.241905493145074, 137.67770295587363, 85.81656855759577, 40.07780953425158, 103.94102318273445, 7.491076222914342, 65.01158942278613, 12.836724621144553, 14.070998254052789, 66.72176494439232, 53.02020022735855, 28.447562973296115, 74.82241382065257, 36.65988702581392, 79.43420711573005, 9.986713780284399, 107.80202234558456, 109.88794575910362, 50.52421392447797, 95.67259940985191, 24.13034843727138, 6.850731898471431, 74.25260659478899, 25.078772911324283, 112.27019368547201, 6.415622053846493, 18.815220580426715, 9.844897118902049, 16.481645903535313, 46.90087020032081, 101.27440764586228, 6.540276576720226, 40.27270775289211, 25.708450044196585, 18.722071075520105, 20.524366822098923, 20.738935380207824, 241.95411586555238, 9.8087286498853, 12.681037738192167, 5.916357763359087, 15.101053554843263, 13.250087896273525, 41.74724511824989, 65.88080141930412, 47.16001491441504, 18.878083635107163, 15.668114079359485, 53.69539835358313, 8.04865917193015, 93.16907805884208, 6.246025634211439, 82.09762724031258, 10.753032595407417, 92.5075448143898, 26.030653133516353, 21.004249285913613, 32.45310132362564, 19.22613949208307, 59.614108475071205, 11.94964133715524, 17.922164593029123, 50.601904163466216, 17.764340473821978, 5.171487011292154, 6.963117549545601, 87.06391807857545, 12.205441162112916, 14.42549006552835, 12.451051762358093, 214.40912491461242, 24.131000684856687, 19.730627301642894, 95.83983079922575, 16.12288223905554, 13.022750803758571, 40.92433621150775, 45.56647053362015, 35.188869004188334, 84.08896493543456, 55.14351366074562, 55.8616827423046, 8.282009276280258, 50.82390191840374, 74.4608671186359, 6.972698428309861, 22.188894338344014, 22.32763473512136, 44.20759948521327, 60.15655262444002, 9.177899826542589, 10.716357253579075, 51.680357458925094, 22.34022347057698, 26.932571963070668, 9.121844993485395, 109.06219880780277, 12.868483178846214, 13.142233423507635, 5.322148280224976, 10.133721011643287, 96.96952299332332, 104.72060650598057, 54.201834635065204, 71.11573685810853, 9.104234977023465, 121.72345232280405, 105.35960564866697, 26.78951358063204, 14.585116581705044, 79.84333531612015, 20.91102668629155, 48.99938634426902, 31.597528925301656, 54.60023440013389, 89.74517964293436, 19.636809337495357, 55.20986790583613, 6.414892603299294, 15.395912838874676, 15.07905391810082, 35.3381781997051, 59.07107813784408, 9.162252403976932, 20.59085599087735, 7.519114983580889, 40.64505840665694, 12.683971694480482, 64.77737063100544, 47.135554969207305, 43.44436832380518, 56.2012298437714, 8.41685777988909, 45.84329563233507, 38.55725444395241, 77.85562295910691, 9.865125160650528, 33.16553586020582, 12.335137394416728, 54.76246728455812, 12.402018233119616, 57.32861284644066, 26.724807580033414, 86.20746151326375, 14.151865501927073, 11.173759404317668, 38.00298315019591, 18.3444270554793, 16.011329892342204, 8.138617491034388, 84.17417025455018, 21.531369933703893, 75.19760484751863, 13.245906587132541, 31.373447150653703, 21.682482663300323, 64.45904656262132, 14.521267480762274, 33.62770318314704, 19.53645457734416, 100.98004519768484, 44.39724404952531, 35.112366632673684, 35.8991949722077, 33.20910084330183, 108.19604179241307, 82.67161664397005, 22.252548273910847, 10.619234191414172, 14.276912407758518, 19.005208872070032, 71.15008295481513, 22.855539899008214, 21.71462450590414, 31.29775818154871, 74.18204437261795, 20.627790349311116, 29.030328242939454, 6.246989823809569, 12.693704620263283, 8.345967794035762, 31.331282993842663, 16.774346576007147, 24.048542189990094, 57.971162111265926, 18.617589172246944, 30.9376524994057, 9.994076147879442, 57.9692040437414, 72.18018296600304, 27.02418226090588, 25.786031859100742, 40.34899811544347, 10.756248790828588, 42.21008057042946, 22.57766429324749, 25.89035790546068, 81.75573825240643, 6.631585826887826, 7.2442639533504565, 26.15473509160918, 88.75932342154839, 70.29851113425147, 22.757798757233292, 12.509911143543816, 30.007036671207338, 13.219524347410946, 151.55882777411358, 72.5180604811987, 11.203032664986459, 6.615310038365696, 69.54272007203093, 257.01482690678955, 15.433406529726097, 68.44994825453063, 73.16052601332395, 8.654627394893733, 477.62929439029267, 30.525612775625568, 16.303995361832822, 36.4049371442208, 12.705486690357127, 74.06589356690276, 5.113138743704436, 82.01437106806164, 13.443733957811832, 26.63007066713325, 53.663273518191495, 134.81330579243087, 24.89477708276301, 76.1502476358038, 6.424963147237383, 62.54602272988646, 19.710713797143953, 13.948833795132055, 26.425408464329685, 11.851625272268524, 36.51712157784535, 91.072059368861, 38.91925741373214, 16.703164286638284, 10.16313693763725, 33.80574755744457, 18.024194391088745, 9.77214489131968, 5.739512266622579, 36.598151649146715, 6.504922709382771, 62.85096937297881, 60.3908590476116, 25.058079406788504, 147.77779796161457, 55.899443372790046, 52.19467969803416, 16.07205938645908, 11.334424082000016, 88.22930651492605, 32.957178473947366, 38.46436407858642, 12.317672105064217, 118.20167741644026, 21.657671740638555, 22.601834162763026, 38.48412319365964, 28.807750972360445, 24.083633256097396, 6.145784463251422, 28.535181163025797, 23.33688710502326, 22.76236234652869, 12.73078880541103, 18.546063286980402, 149.92563424452445, 51.634403950302854, 17.747542415470164, 41.081258936964986, 6.627754229404881, 52.05625664787903, 50.2988378114536, 26.541057688099695, 45.89414324038385, 20.411881671499838, 21.770244883132833, 11.193331008041463, 51.15772831964248, 18.784254965964486, 83.68079952466597, 19.795051931764355, 153.00681975245416, 24.0851477371894, 13.815641642252052, 8.32267678692945, 9.283199683967005, 130.3784101808252, 14.963821113298224, 9.987145293655928, 6.020288073242802, 111.13997366604558, 12.484444225222308, 85.72937549928487, 11.92889356027703, 27.631623871385806, 8.68219632074359, 46.138979844197394, 50.08649982196336, 33.915942883412285, 107.00823764170934, 14.194416534604102, 40.35773244198451, 5.549735004565864, 46.06074422645338, 17.086990443212144, 6.8371343186251075, 139.19191611092788, 30.602114989114582, 16.60252698048072, 28.08665167979952, 137.9773688583756, 57.785710478910715, 45.84058544255444, 32.93436919145083, 22.571073699707476, 6.0762565290222454, 24.49730052927272, 6.646385303854132, 12.77084843719676, 48.64103374781739, 20.36313620106491, 15.448075400130223, 37.732458383672906, 30.59234246250238, 13.651392968922035, 5.271245125347169, 44.34504791124797, 95.9235813584724, 22.077197239678974, 31.575152316183797, 8.885695361499705, 35.95050725653241, 44.25335004156117, 48.25714703122465, 14.029850831883856, 76.18679109250658, 20.851373351252914, 18.16791149499136, 21.69177358175829, 388.60068501372757, 48.89064339106094, 45.940265314450585, 52.32944992138041, 79.57159605258326, 59.40021608205073, 25.361963944567147, 94.92880328906479, 7.275099189501927, 42.1668896952088, 35.89972952181576, 70.92613732862341, 28.07534674590728, 27.40960592696268, 17.51872460312391, 9.500581405088761, 21.79703487572754, 7.919509376154035, 77.41520390449108, 6.021878743815785, 11.409980089131174, 17.09719429178631, 8.831996254321437, 75.59980644949258, 8.996946327020474, 9.576540400029527, 81.10828861067198, 44.311496113294545, 22.828007089073296, 7.803873731988635, 5.783323527746258, 15.326125811202893, 5.2105283706372925, 11.927901889372247, 10.873630075808128, 21.493674889720726, 42.281174209034916, 121.82798296692553, 18.610645052092128, 57.92120505241305, 7.263472818106536, 13.83410778955323, 15.633883984358112, 9.583277898781729, 9.901039395001625, 79.03206964356335, 13.960137788439825, 8.390654964826593, 73.37871123196892, 5.320423188323475, 17.483733190700146, 40.76997656502998, 24.51517706384887, 37.62165315591435, 17.874742464953126, 81.61640010006431, 37.16131515774314, 21.483776073295754, 21.35701705200259, 44.400492512385114, 68.87478174983816, 45.46567594811223, 7.894124828295848, 10.178421821307174, 27.33286099990736, 19.853990445241415, 11.642119073860407, 7.179372234207189, 88.0705672099356, 8.252112838468568, 119.1554605082297, 6.683237745707428, 64.21504870397857, 76.47439489039093, 31.25216503124998, 23.849047142691433, 22.595792183164015, 27.5578284996407, 18.330959843879707, 18.889623506598852, 22.59908184690566, 5.252217404234388, 9.665788896830447, 54.81482553728236, 7.869379604400736, 26.86280245269814, 51.09748922540382, 53.6693593154835, 40.29166644459994, 67.3534796262372, 72.585462483489, 18.91477848490942, 22.58416297082306, 20.77094874704407, 20.147435687572873, 95.0701469640722, 15.742554401000957, 14.648740765491734, 123.35211252725566, 39.51843116820347, 9.135247110756888, 33.89807129584069, 27.90720287854814, 25.694873603700593, 23.777220134516586, 16.694673528626275, 111.42825033638329, 44.200224176541916, 35.95229586963363, 12.242959078482773, 27.774225604178092, 44.05391484127436, 48.54371016086141, 62.62115708167148, 90.17859111257029, 28.24729554499613, 7.576151990023306, 42.55316834932125, 11.804215292905726, 11.17111181888885, 30.832367563538735, 11.048415811908614, 16.45877578925021, 56.24714162757148, 55.16469529059152, 6.7375025375361695, 134.9195323296524, 13.29972706361748, 5.85330903911734, 12.147589842584239, 25.17551654189714, 8.95097148349355, 74.12431082566438, 8.921940915420613, 26.19859846188817, 15.740817893220774, 77.02671573891072, 10.850699124937657, 27.980110465421273, 77.94488242345618, 27.037998222392485, 30.24113011334866, 53.01988975114855, 102.33457170734444, 16.339324862833262, 29.149906040208492, 40.42449062888768, 16.070596974746973, 28.838217328516983, 52.81933940953812, 26.732040988324282, 24.95048895892473, 62.533998962959245, 60.76904691234484, 57.78530770548313, 85.14407530361541, 16.974219788289503, 83.94056765923068, 59.66174726255052, 35.31513470482021, 112.14019389422613, 6.054961792776291, 6.961876904526307, 64.79377887561921, 57.264308654388344, 83.55247504250302, 12.601585607900436, 69.26121097550806, 143.0378214008977, 106.37476701933646, 7.520482609333911, 12.891381829152806, 76.96863986175828, 49.29158955232366, 76.19613090949625, 48.15937151190856, 88.95956472579493, 18.392851340404107, 12.575513300130686, 9.544195280944322, 22.94949561451965, 65.57961496055609, 16.03894392286769, 5.384731334366459, 5.740486428909212, 100.55071118412398, 40.48186555264909, 34.33378511919878, 34.139943460062156, 29.787726412008496, 31.09721106091383, 82.96854315552555, 36.69064669014283, 12.836515817898167, 34.391301829081435, 7.6516880481512555, 56.11332055115707, 26.96031041289754, 21.970990127239386, 65.96071971770318, 71.1919131945671, 184.61325574073777, 153.16247963653774, 16.06026529503182, 86.49294490122612, 9.123259593907749, 140.1259513208962, 133.9449553468295, 57.69590803607866, 76.18683425712676, 12.874696209438588, 102.04632128313038, 85.89496001047259, 202.3012143155702, 33.902916231842276, 56.90485008365515, 6.559948792757639, 54.34056702272093, 28.861842358693416, 9.084180734902775, 22.036053417276857, 50.62833271862974, 121.44243055983895, 24.993328249926872, 27.606165393725213, 15.035241673107308, 33.8175367525341, 246.38961066519045, 150.72981062727294, 56.18739411880812, 25.819538768539275, 15.206633021180537, 12.924448334059376, 14.015361699077, 55.85276086643925, 12.945832669221774, 61.254374201968915, 40.215747560715805, 6.514712094297202, 53.00328228302866, 27.38317291259119, 83.00293079808483, 11.709763995955349, 83.77779058636948, 180.95617869099726, 7.505621000834308, 154.5718628498599, 152.78374823807985, 65.25954042159948, 13.01861121831639, 28.318668771201402, 6.219859654250346, 6.430845915013238, 10.72859350755255, 5.055495212621797, 48.53578241887838, 45.3858672272421, 381.41086403038827, 20.964111277747996, 21.0584247043783, 115.76956292278355, 18.973421136779976, 107.67660183167726, 11.633274724531345, 34.44393670203404, 29.864802098482652, 5.2308232441693585, 203.34692806778418, 12.288466188213889, 37.72199390610617, 72.65452966460654, 53.518121031624936, 67.18702044227213, 34.94570153494317, 15.479196166428647, 114.71689533474665, 54.77261959733451, 97.01881644894328, 12.837999674818253, 102.61062184773331, 22.087216073849763, 12.66916769803735, 5.731737393465264, 16.68763176244009, 12.390162416704753, 25.176305853279793, 296.27300170087557, 62.29953537788708, 20.907012127655257, 27.754121809520733, 14.948693857408315, 58.66334349758999, 42.26477098078723, 128.80420611228163, 18.202451440073244, 42.315663637220354, 12.541208980838162, 38.95471909289119, 96.66097602027297, 43.44585547185067, 12.900774900882508, 5.81172067628203, 6.583947099166079, 5.849288632118774, 29.589769682790806, 18.434631304355687, 33.997395581645286, 10.069077966267878, 12.644494200369017, 11.705431415015862, 22.634408536090078, 15.548866258235991, 84.73928597098973, 42.03016280096639, 87.10785591831063, 14.985985524835227, 63.09775327876211, 72.86908717130108, 8.386087609184937, 23.622143850340578, 6.303948746138566, 61.6964745479287, 8.595659735886176, 44.42214580996911, 7.964529009348881, 78.92826656386534, 20.780413158520243, 24.543859677946756, 35.57852615867647, 48.2683697666262, 62.200902523273484, 146.389379552353, 19.407277555891177, 5.088429546633797, 9.945085442399918, 8.469728093671286, 19.816995891325025, 80.48912367226458, 53.20538708341291, 34.1240417373376, 18.097334976909146, 5.921636073384461, 17.5244972999615, 22.0057087243173, 53.53183449519587, 29.63740707047008, 5.066931039002756, 11.901927203419062, 54.01915019353794, 13.062514292435196, 81.43687338058606, 5.892293087767811, 34.31787834261069, 8.822298600374978, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([8025166.306155601, 8305730.460765575, 8569435.9375, 8755831.25, 8962528.435675703, 8995725.361209609, 9008220.3125, 9211070.035093112, 9235562.632696653, 9243887.63751764, 9247695.22963645, 9291507.8125, 9335515.990008822, 9380429.210997289, 9413999.760982415, 9528686.833998825, 9528889.015134921, 9556384.716133503, 9569026.5625, 9596352.215458658, 9605376.787074992, 9605441.60165657, 9605458.816493211, 9606335.988106823, 9606587.211929955, 9606835.448065965, 9606857.596663343, 9606950.0, 9607045.590452805, 9607145.3125, 9607443.086150678, 9607448.4375, 9607554.6875, 9607724.216839496, 9607937.5, 9607974.648458403, 9608079.6875, 9608149.217036827, 9608231.25, 9608399.676984562, 9608423.003008945, 9608444.66098633, 9608793.779784486, 9608957.8125, 9609221.875, 9609375.177962992, 9609496.875, 9609815.549697846, 9610008.794338671, 9610463.81145739, 9610868.932468502, 9610873.217010798, 9611167.173490351, 9611174.889133012, 9611274.810691573, 9611301.364289528, 9611302.640130855, 9611523.4375, 9611616.469549406, 9611764.081575131, 9611908.433952712, 9612049.832337948, 9612132.780069772, 9612197.919507658, 9612217.1875, 9612275.0, 9612415.625, 9612691.193536334, 9612707.816460537, 9612718.027118001, 9612738.7216427, 9613528.125, 9613562.367822582, 9613682.787173197, 9613992.1875, 9614169.350630546, 9614354.282606628, 9614359.375, 9614386.747767055, 9614409.207555588, 9614537.166264901, 9614678.981809925, 9614760.9375, 9614811.857337927, 9614987.088272575, 9615026.482202854, 9615181.25, 9615188.498414168, 9615314.52082473, 9615402.862764645, 9615488.843902722, 9615496.666831315, 9615526.731621241, 9615570.3125, 9615583.057444913, 9615685.9375, 9615898.197359085, 9615973.313810237, 9616128.174812332, 9616138.965442965, 9616410.9375, 9616910.652532104, 9617142.962965755, 9617400.385571415, 9617425.599635692, 9617522.29630459, 9617567.88022514, 9617652.770755032, 9618053.424511736, 9618320.206094366, 9618468.233293796, 9618594.890589263, 9619033.347940078, 9619113.569354594, 9619300.948802678, 9619323.4011763, 9619455.02534286, 9619514.963479547, 9619558.961856926, 9620062.5, 9620101.5625, 9620132.265779035, 9620496.015723923, 9620776.770253934, 9621246.754654638, 9621430.360923909, 9621474.945994115, 9621950.087542495, 9622032.8125, 9622198.05048543, 9622746.45253535, 9624088.257790953, 9624167.1875, 9625067.645234972, 9625509.623985797, 9625615.355124475, 9625984.687036809, 9626027.46592761, 9626093.355663493, 9626100.614444906, 9626114.762920406, 9626557.564604647, 9626773.4375, 9627787.261703003, 9627823.790870786, 9628987.470508682, 9629040.235583508, 9630101.032720776, 9630576.5625, 9631565.625, 9631622.808158748, 9631694.695268646, 9632125.679194208, 9632830.667928755, 9632967.497349761, 9633589.497798981, 9637785.542782487, 9639037.5, 9639729.472319065, 9640628.231307646, 9643549.494062971, 9647034.28235128, 9648572.48496563, 9649693.584206302, 9652203.418903615, 9656419.807220472, 9662644.29533414, 9662647.167724157, 9670532.488163238, 9671474.600321803, 9671493.393016458, 9672194.85634904, 9673159.375, 9673818.480286695, 9674413.19462138, 9674975.504850166, 9675637.5, 9675895.3125, 9676824.815836892, 9676854.6875, 9677523.991097042, 9677547.069073455, 9677557.580368698, 9678043.623455621, 9678452.922763558, 9679001.5625, 9679302.967098216, 9679402.307404509, 9679504.928766292, 9679856.060583847, 9680212.792519063, 9680502.331081906, 9681221.484850502, 9681240.992085211, 9681257.655940354, 9681343.801020842, 9681559.375, 9681629.660398025, 9682609.375, 9683957.2255339, 9686525.957036138, 9689497.44321688, 9700537.880939813, 9701079.094429482, 9701232.8125, 9702604.498033028, 9702802.125994781, 9703358.12577425, 9703841.745178845, 9707150.717990635, 9711485.626191316, 9712649.167022482, 9714882.806068739, 9715277.296185795, 9716517.1875, 9716767.1875, 9717391.14033579, 9719741.997157658, 9720814.0625, 9720870.406175619, 9730017.751475986, 9738255.375583235, 9743607.342901433, 9760840.625, 9769103.957059873, 9789194.928945582, 9811445.3125, 9814462.65003058, 9816118.286175586, 9826288.236136675, 9832181.620232454, 9834632.296663644, 9838870.3125, 9840512.264518, 9847641.18737769, 9853644.236190718, 9857794.933938956, 9864658.375011068, 9865462.5, 9866491.974549681, 9871858.443988232, 9885917.375678625, 9896157.087880976, 9904212.496411476, 9927384.375, 9928871.875, 9929234.375, 9929337.121570628, 9929730.27727126, 9930231.893938297, 9930277.834181856, 9930368.75, 9931082.736357719, 9931146.875, 9931276.50463807, 9931467.1875, 9932003.510545915, 9932057.804684794, 9932073.4375, 9932139.711958045, 9932151.5625, 9932311.230695354, 9932330.73439297, 9932468.540815996, 9932504.27464026, 9932548.68708648, 9932591.265487682, 9933038.542858627, 9933081.236699002, 9933181.355927318, 9934251.14275173, 9934775.236776076, 9934805.577343402, 9935062.19297936, 9935193.531940114, 9935249.965229394, 9935734.230130354, 9935776.503147475, 9935853.125, 9935912.216344964, 9936095.264245111, 9936260.232617695, 9936268.389529716, 9936776.155394536, 9936835.9375, 9936910.819746992, 9937250.585488498, 9937267.534010764, 9937289.591197366, 9937321.817430954, 9937411.83659333, 9937420.143829763, 9937598.747013139, 9937684.375, 9937832.748365985, 9937851.781127725, 9937857.153338216, 9937865.600665683, 9938062.564611938, 9938131.25, 9938289.501729991, 9938317.1875, 9938503.125, 9938527.137663009, 9938578.186957141, 9938735.616364505, 9938798.584638184, 9938805.561050152, 9938841.93868769, 9939016.216337584, 9939129.6875, 9939290.231999816, 9939600.0, 9939745.3125, 9939809.087421242, 9940039.74762214, 9940278.762773061, 9940353.125, 9940370.3125, 9940637.5, 9940932.67998931, 9941369.17175142, 9941443.75, 9942125.069514766, 9945092.714280017, 9949399.528410591, 9950456.994406044, 9951016.175675217, 9954689.415332533, 9955806.25, 9956743.84444032, 9958539.393593833, 9959634.375, 9959696.714222912, 9959697.139753059, 9961624.397077676, 9962009.419423258, 9962098.4375, 9962944.265271075, 9963591.4337853, 9963732.543984247, 9964057.853737889, 9964516.659529207, 9965096.875, 9965168.75, 9965221.875, 9965355.440716105, 9965486.115909612, 9965581.25, 9965665.146259049, 9966106.313271891, 9966451.393060315, 9966809.375, 9969571.621298486, 9970323.4375, 9970346.734728415, 9970385.387057742, 9970455.420867044, 9973185.175648864, 9973226.546257166, 9974894.219077148, 9975011.547940662, 9975978.125, 9976186.413355881, 9976781.51108493, 9976944.67386335, 9977945.3125, 9978086.532567997, 9979263.920191914, 9979272.583565326, 9980019.17304743, 9980121.60419723, 9980385.581773423, 9981032.8125, 9981476.84138071, 9982036.8853917, 9982121.875, 9982399.376308074, 9982464.0625, 9982515.012798525, 9982992.1875, 9983689.0625, 9985020.303851752, 9985568.75, 9986300.0, 9986315.027188068, 9986755.817031587, 9987805.864125347, 9989048.4375, 9998882.8125, 10013084.187702904, 10013085.65736351, 10015153.125, 10031071.601981899, 10036148.351518374, 10040735.678812535, 10047013.458376193, 10050850.886471285, 10051754.118983887, 10051833.786374742, 10052664.880046586, 10053203.125, 10053409.123551348, 10070984.375, 10087326.70189034, 10087355.968538238, 10113787.62751093, 10121101.374655709, 10121204.593198178, 10121354.59074463, 10121490.625, 10122815.656879058, 10123439.0625, 10126214.0625, 10127903.125, 10128723.4375, 10129961.791339345, 10130035.9375, 10131793.273430118, 10132863.136458622, 10135212.535624376, 10135353.125, 10136042.1875, 10136329.480441505, 10136801.532493081, 10137413.823765643, 10137755.756442703, 10137827.372528143, 10138146.875, 10138399.696521964, 10138580.420131765, 10143108.45167395, 10144079.925996425, 10144390.790304119, 10144424.651299704, 10145224.470708184, 10148166.195273813, 10149659.375, 10152127.218369503, 10154609.375, 10156056.936459037, 10156120.3125, 10159042.829212774, 10160547.996295396, 10160552.9011609, 10167732.841764579, 10168687.5, 10168985.050912205, 10169064.317460159, 10169109.084317945, 10169348.4375, 10169631.43629286, 10169781.11700506, 10169960.855456265, 10170181.25, 10171215.542248625, 10171951.249483524, 10171978.593956709, 10172518.930736924, 10172683.65360663, 10172918.189284932, 10173029.6875, 10173338.705774352, 10173433.72806368, 10173495.3125, 10173630.790536154, 10173764.0625, 10173769.885403953, 10173841.835868016, 10173892.001477625, 10174194.75727238, 10174199.161607407, 10174241.338472674, 10174514.855543947, 10174941.54273113, 10175026.5625, 10175310.346149458, 10175348.463861985, 10175615.46335808, 10176144.564144826, 10176221.985644707, 10178848.4375, 10190048.847506685, 10191222.759671398, 10191468.364891002, 10200660.826307563, 10201648.4375, 10201985.06691787, 10201991.64213215, 10202642.1875, 10202718.669291267, 10203285.781716647, 10203429.6875, 10203645.061102262, 10203645.3125, 10203759.934627803, 10203868.600875163, 10203993.75, 10204018.051234527, 10204636.384966804, 10204804.554963658, 10204940.492352353, 10205187.250388337, 10205200.759222273, 10205271.983090289, 10205467.8329864, 10205622.898139538, 10205765.624192486, 10205920.3125, 10205956.2976625, 10206005.459417798, 10206123.4375, 10206192.55927644, 10206195.435834361, 10206257.924025211, 10206378.84941295, 10206478.761667982, 10206677.756551078, 10206909.375, 10206951.484318791, 10206970.925012492, 10207007.069115411, 10207034.310210688, 10207056.981894363, 10207217.183619512, 10207241.729915885, 10207459.271299241, 10207567.1875, 10207588.822850373, 10207698.33986228, 10207711.683645673, 10207735.529381296, 10207790.625, 10208114.925609846, 10208170.025164334, 10208454.571535826, 10208473.856027775, 10208485.9375, 10208645.249999942, 10208853.125, 10208869.14635148, 10209213.34324221, 10209225.0, 10209386.56413043, 10209659.853981128, 10209720.815144813, 10209727.585405802, 10209932.92531574, 10209975.0, 10210646.875, 10211041.033507207, 10211088.956730083, 10211089.0625, 10211154.6875, 10211270.580538986, 10211882.940844687, 10212981.25, 10217851.5625, 10218029.6875, 10220747.52279692, 10220823.312181788, 10222376.67641044, 10225485.714533346, 10243053.125, 10243069.219936332, 10245751.288121551, 10248155.224528108, 10254161.787370875, 10255582.969523024, 10256591.805972842, 10256763.32974264, 10256896.018303106, 10256953.125, 10257065.581052912, 10257566.207160579, 10257570.3125, 10257588.342236698, 10257729.095277496, 10257750.157255862, 10257935.828493338, 10258137.5, 10258280.634322977, 10258697.329656988, 10259375.04158252, 10259657.8125, 10259661.677538129, 10259676.580091788, 10259706.115584575, 10259819.981557786, 10259821.600736143, 10259906.268708354, 10260025.067646405, 10260453.067436485, 10260562.13100837, 10260792.321837936, 10260795.99802093, 10260955.571655028, 10261229.575936852, 10261277.2859677, 10261310.9375, 10261652.020985888, 10261694.571008489, 10261813.180016411, 10261960.9375, 10263040.625, 10263126.5625, 10263151.5625, 10263376.351636883, 10263675.0, 10264972.213446226, 10265221.875, 10265275.468177075, 10266542.545440216, 10266670.496029243, 10268602.535084961, 10268619.126775367, 10270177.741208753, 10270670.052298103, 10270896.925882367, 10271681.25, 10272122.944034584, 10272299.601673493, 10274187.385343213, 10274244.486938199, 10274575.946099805, 10274811.783937838, 10274855.300271006, 10275012.538466798, 10275475.126844645, 10275571.875, 10275621.682256537, 10275715.239644207, 10275736.844003422, 10275818.75, 10276777.99801319, 10276800.156074604, 10276879.016794816, 10277069.733739195, 10277265.43229351, 10277484.375, 10277498.97553458, 10277626.300820705, 10277652.97816122, 10277777.55817023, 10277858.461529834, 10278027.644688075, 10278481.426896593, 10278590.171208771, 10279118.53222761, 10279203.125, 10279463.757857073, 10280306.25, 10280517.003970701, 10280937.5, 10280958.366441041, 10280989.2932573, 10281295.3125, 10281306.106220214, 10281316.813181084, 10281764.874075357, 10282141.408213347, 10282181.443524616, 10282291.438696202, 10282389.859760107, 10282550.0, 10282882.150692375, 10282926.73588322, 10283708.282527564, 10284075.906263728, 10284118.75, 10284312.076067895, 10284958.08885008, 10285094.467080807, 10285243.75, 10285460.561657792, 10285461.46013138, 10285721.451893382, 10285967.284877043, 10286265.901668737, 10286486.395478213, 10286567.018631916, 10286885.437557604, 10286916.563879069, 10287314.950019382, 10287444.465198265, 10287600.0, 10287802.076558573, 10287808.429708138, 10288825.17051989, 10288904.97108084, 10289097.479719423, 10289195.761886729, 10289240.428174268, 10289451.754259927, 10289621.875, 10290608.733899353, 10290788.038011909, 10291312.5, 10292081.496866193, 10293665.625, 10293674.0403328, 10294556.099678285, 10294860.697862815, 10295102.624064788, 10295135.423749236, 10295200.0, 10295454.6875, 10296026.5625, 10296127.30100244, 10296647.731491817, 10297147.661424067, 10297196.193330783, 10297220.61843203, 10297233.028350594, 10297293.524715517, 10297540.559253536, 10298484.428220825, 10298526.146685032, 10300012.5, 10300137.5, 10300195.08292195, 10300355.957657207, 10300520.48290701, 10300743.699179769, 10300770.985447478, 10301239.817325113, 10301265.80945374, 10301342.43823295, 10301626.933149647, 10301698.4375, 10301717.867911898, 10301811.152877072, 10301832.8125, 10301928.04211635, 10302028.125, 10302086.193381347, 10302118.75, 10302296.070823653, 10302336.825722668, 10302397.861926742, 10302408.162571194, 10302471.863272853, 10302548.63290395, 10302651.419255037, 10302826.180793406, 10302892.04704439, 10303006.008532925, 10303267.1875, 10303285.48087191, 10303543.681081543, 10303669.246469853, 10303705.082212161, 10303721.433549227, 10304059.375, 10304088.031949222, 10304144.7833996, 10304316.293491386, 10304331.25, 10304382.8125, 10304417.1875, 10304528.125, 10304603.04956006, 10304709.29948596, 10304778.885224352, 10304892.581101103, 10304905.523965057, 10305026.5625, 10305046.823672824, 10305147.22324895, 10305203.125, 10305356.25, 10305407.680836214, 10305505.743372587, 10305661.990361987, 10305713.017750572, 10305984.94229617, 10305997.531909907, 10306113.575489487, 10306131.25, 10306405.722507464, 10306531.120177085, 10306589.257510042, 10306618.75, 10306624.815243144, 10306720.28437474, 10306884.375, 10306885.85758279, 10307087.014226595, 10307174.713302111, 10307183.808577957, 10307243.07145073, 10307249.426894857, 10307308.344386792, 10307333.065864041, 10307355.479788791, 10307557.510032473, 10307582.714825675, 10307594.43904026, 10307670.776654925, 10307790.625, 10307937.5, 10307951.000854634, 10308026.014326947, 10308109.375, 10308179.775396721, 10308208.431433931, 10308259.375, 10308302.800199673, 10308363.418555094, 10308401.5625, 10308432.8125, 10308610.9375, 10308615.505668363, 10308629.254113259, 10308731.25, 10308806.25, 10309196.640247744, 10309230.583228195, 10309262.5, 10309282.8125, 10309319.677693024, 10309346.501223486, 10309517.1875, 10309631.933168948, 10309780.282107068, 10309834.616376424, 10309840.259573134, 10309912.5, 10309964.323424002, 10310002.760804484, 10310084.892235141, 10310137.286240477, 10310232.8125, 10310283.33437352, 10310320.381429756, 10310328.125, 10310338.376650857, 10310577.377330663, 10310778.125, 10311013.37346488, 10311014.0625, 10311040.757000435, 10311134.375, 10311537.54324433, 10311583.921607964, 10311586.625084957, 10311598.4375, 10311610.9375, 10311709.375, 10311734.488509802, 10311781.25, 10312018.493134707, 10312152.152258504, 10312226.5625, 10312235.9375, 10312257.111948667, 10312335.263987845, 10312340.430957703, 10312495.3125, 10312549.081423122, 10312553.125, 10312558.319801498, 10312717.637046248, 10312993.424450902, 10313064.094207443, 10313302.817397181, 10313308.927758845, 10313346.875, 10313796.875, 10313884.166426018, 10314103.695347026, 10314320.336876307, 10314420.3125, 10314601.850486558, 10314720.3125, 10314724.82792729, 10314755.067880096, 10314781.31786177, 10315044.65900841, 10315070.046263842, 10315104.594612285, 10315316.542542499, 10315414.0625, 10315537.5, 10315787.673965639, 10315790.5958271, 10315946.814550016, 10316014.0625, 10316058.115473185, 10316059.285926653, 10316173.292393772, 10316220.034291126, 10316270.3125, 10316336.525486631, 10316462.5, 10316642.957521368, 10316719.33300997, 10316868.365898054, 10316880.881562883, 10317024.72871692, 10317028.936816756, 10317114.0625, 10317185.9375, 10317467.653327897, 10317496.320284326, 10317599.455293162, 10317725.0, 10317902.328932943, 10318319.234308869, 10318331.551036542, 10318351.5625, 10318394.980118224, 10318430.730084177, 10318799.351367565, 10318902.196718508, 10318996.794857025, 10321071.875, 10321229.6875, 10321405.86685654, 10322190.696224915, 10322506.384261288, 10322840.021067072, 10323903.125, 10324510.9375, 10326260.249070775, 10326347.317061339, 10326677.682563933, 10327055.49124814, 10327320.697968006, 10327361.33085089, 10327377.243573546, 10327504.751382114, 10327756.88387027, 10327765.523855882, 10327807.251669416, 10327843.709831093, 10327990.626883645, 10328004.6875, 10328042.1875, 10328137.144927608, 10328161.961639417, 10328182.324285673, 10328280.436022285, 10328295.3125, 10328373.32200505, 10328428.361399923, 10328530.587011082, 10328578.094414702, 10328631.841239698, 10328647.341058439, 10328692.1875, 10328731.93938993, 10328832.8125, 10328899.197652608, 10328955.48073166, 10328989.403133275, 10329052.575207153, 10329131.400715683, 10329139.0625, 10329192.946776165, 10329197.952460274, 10329300.011620095, 10329359.375, 10329443.693075782, 10329482.996051492, 10329504.377365414, 10329548.722945303, 10329659.375, 10329688.042065479, 10329784.375, 10329929.024445018, 10330067.1875, 10330180.745820338, 10330210.167091183, 10330312.5, 10330367.1875, 10330735.9375, 10330863.714205505, 10330864.133251686, 10330929.171268322, 10330972.521362051, 10331090.955994204, 10331435.68065989, 10331890.622264255, 10332308.34726015, 10332470.306161612, 10332803.763088413, 10332879.481167998, 10334339.607449189, 10334794.862395788, 10335844.680297479, 10336179.6875, 10337029.579135993, 10338003.190669311, 10339928.125, 10340132.21337119, 10348502.637442293, 10348854.130131755, 10349856.25, 10350886.829574509, ...], [6.907565345635323, 32.15308762539063, 73.8658968016283, 68.68303366032471, 46.35211449993846, 57.864371040177545, 35.219779789078196, 24.043692096226735, 32.16742396273119, 11.349681322889012, 14.634806462119496, 268.37864472190745, 74.91959293368312, 54.60200698450007, 5.7965041793019285, 8.825317916897806, 27.621141960137855, 5.549869096847814, 96.44272154472257, 18.19343093475392, 6.809185009334398, 60.07896946817732, 10.35415939960031, 15.137972253527291, 13.946534722872515, 18.3221188629279, 25.35553057426695, 48.16422575347377, 11.591857806100606, 42.86424942250762, 20.56967718215576, 34.14149260359339, 64.85487563184644, 7.911728986192385, 54.98832658887531, 13.751899525620047, 43.27462998283343, 100.14065045750037, 37.247067214491075, 56.65050187076824, 22.172463332417635, 8.835233234808108, 9.35671525974453, 39.69182703934899, 105.82129955343166, 5.207979708629428, 44.45333375692303, 30.8250362598576, 21.508593863308796, 32.8255523874262, 15.311913043214311, 88.14016560273956, 26.848047594656503, 54.062827028850734, 14.265920303047034, 25.144290763810552, 21.645378269757394, 75.35759774318717, 5.879229147390672, 15.014716771821892, 17.53770914513775, 10.875377233356557, 68.73374784139146, 65.09741209483242, 30.584867755115514, 87.15087357852254, 48.68302338961873, 6.882578813926259, 5.707010112976594, 10.158969932589386, 39.09647197833597, 48.44900352125177, 5.45612179215814, 56.561986905225865, 47.453598103817576, 24.942004651644062, 22.49737432589305, 70.78522106840671, 18.285349933393064, 313.79927026819075, 49.41782115491326, 12.795929080929898, 70.28230549831964, 126.58067671918315, 22.421306286686075, 20.046408424840944, 71.21082473160034, 32.850621965476805, 9.751538874154496, 19.9436500847998, 24.84939085521056, 19.028845107975936, 83.68226869705646, 47.17058195846354, 34.54270771496587, 77.24377975924777, 24.546706918411154, 79.16994395037737, 9.373880489454912, 83.56078081993581, 65.18213760842046, 10.70969952779307, 19.03930019818396, 16.64754250923913, 13.143653451266648, 7.763071625768991, 18.45713294446779, 6.694786687716219, 16.22082043806378, 14.550879700914047, 5.508517878629845, 13.545126155617465, 34.38655892552483, 44.34997263489045, 20.46577850524735, 14.804844634149527, 11.70029976495721, 25.065985684522502, 20.082375133353686, 44.849690274673094, 38.71677994479475, 7.416783902854651, 31.20655699431462, 9.513474016312147, 26.51075545960941, 8.677980916945423, 35.392305731009785, 8.333420230272555, 65.45219110241639, 13.646517738911363, 13.543534551057743, 26.416660840533737, 45.22382282892571, 18.87629987162673, 23.583451579583084, 24.143321139392846, 24.629294681808062, 94.26156418248931, 22.61614599390085, 20.797549968188918, 18.509325564410148, 76.42142599893309, 59.987502700341665, 37.08242411266613, 16.484337210628496, 33.39688803991734, 40.32556708357847, 20.786672891800627, 57.51485981621831, 54.833431933457426, 34.08933327052479, 10.282941432559207, 20.947884432497027, 20.711684319615888, 69.09269989097152, 18.52716404097933, 133.2578810020974, 226.98226049204854, 16.622402894646232, 15.362800850348881, 13.309815268665702, 26.817792825736554, 73.63520398270586, 98.18622898563675, 16.19403723026624, 7.430168356632821, 8.597670284382703, 11.618306249195724, 10.655962385747497, 50.67517240086565, 55.43475142558039, 8.973349661335012, 64.13508360270524, 24.14547815083635, 65.01502179355427, 15.730345811191388, 31.234079225650934, 109.46912386102628, 8.191532052712699, 34.27053670564911, 31.367703929813317, 25.90974561072992, 14.124865444662897, 76.08337546231252, 304.07320509188804, 70.66206315347887, 117.34742930799742, 6.610565413144688, 14.097949568602797, 16.28651250890434, 16.187443467812688, 7.339291138820592, 13.637317949855401, 16.553315226589852, 35.61870148973679, 39.587107829106564, 78.46738498073958, 27.999512729458903, 76.61348710645726, 8.879947520509287, 89.04699769850221, 7.279283301964413, 16.62379825799883, 6.973815690480482, 51.69174947808982, 6.72626140594116, 17.634724478156745, 20.769647029414692, 8.065746761564155, 18.62995295419784, 6.702907928350196, 6.3639886647062545, 28.3983787221156, 12.507499671783245, 37.554790625892785, 36.15318998864672, 17.352226753169216, 89.71677509191605, 41.13155356127628, 6.5018766546007685, 65.83834748447258, 8.687365590765086, 38.15977881819212, 45.71501298271638, 83.0792643882152, 9.0268596720357, 89.41582232082929, 8.367542159686746, 5.033813315656534, 18.75670804684396, 22.987279704096366, 6.66471553619528, 69.95407111636929, 22.43191138173475, 221.44740372215296, 77.08280002860074, 10.583414678754876, 12.137707827656355, 39.21227562335723, 7.06657645290251, 18.05510840567933, 26.95993935152331, 56.289602044260405, 97.83264449419457, 71.69648192031485, 69.8260842735571, 108.10265051835259, 132.07683160887223, 5.745349644826964, 9.942502697350623, 50.06375168457505, 76.66200849934677, 14.65902124796545, 103.8375442235997, 20.089506177475116, 85.56639552625916, 8.501556238928409, 14.911804952335329, 75.01298916462015, 57.0624157107503, 54.70888628538309, 11.619153111446327, 10.407273681958399, 14.19994967766337, 149.5361490256452, 22.54994785968909, 25.048144990117546, 19.27133271030725, 74.06234953253454, 15.361233977023998, 38.589647537664035, 7.691180904285792, 5.882891708729554, 58.44016430575976, 75.25594140348842, 13.955385499959402, 9.211839824851781, 14.720010316380769, 63.21050139987264, 75.62109108778066, 107.73820749888631, 28.63193263606552, 23.007873461746176, 5.7844597490992085, 70.76546837315603, 103.48984153960865, 79.17870601912215, 7.2156185713860355, 7.267729556535196, 27.43514866076269, 36.817138279442396, 10.873916629319053, 11.64860241233447, 61.64349266754724, 27.317048165543486, 15.84587734618773, 10.233113335999361, 77.32356764732828, 5.617628655943743, 58.92709393163497, 7.241905493145074, 137.67770295587363, 85.81656855759577, 40.07780953425158, 103.94102318273445, 7.491076222914342, 65.01158942278613, 12.836724621144553, 14.070998254052789, 66.72176494439232, 53.02020022735855, 28.447562973296115, 74.82241382065257, 36.65988702581392, 79.43420711573005, 9.986713780284399, 107.80202234558456, 109.88794575910362, 50.52421392447797, 95.67259940985191, 24.13034843727138, 6.850731898471431, 74.25260659478899, 25.078772911324283, 112.27019368547201, 6.415622053846493, 18.815220580426715, 9.844897118902049, 16.481645903535313, 46.90087020032081, 101.27440764586228, 6.540276576720226, 40.27270775289211, 25.708450044196585, 18.722071075520105, 20.524366822098923, 20.738935380207824, 241.95411586555238, 9.8087286498853, 12.681037738192167, 5.916357763359087, 15.101053554843263, 13.250087896273525, 41.74724511824989, 65.88080141930412, 47.16001491441504, 18.878083635107163, 15.668114079359485, 53.69539835358313, 8.04865917193015, 93.16907805884208, 6.246025634211439, 82.09762724031258, 10.753032595407417, 92.5075448143898, 26.030653133516353, 21.004249285913613, 32.45310132362564, 19.22613949208307, 59.614108475071205, 11.94964133715524, 17.922164593029123, 50.601904163466216, 17.764340473821978, 5.171487011292154, 6.963117549545601, 87.06391807857545, 12.205441162112916, 14.42549006552835, 12.451051762358093, 214.40912491461242, 24.131000684856687, 19.730627301642894, 95.83983079922575, 16.12288223905554, 13.022750803758571, 40.92433621150775, 45.56647053362015, 35.188869004188334, 84.08896493543456, 55.14351366074562, 55.8616827423046, 8.282009276280258, 50.82390191840374, 74.4608671186359, 6.972698428309861, 22.188894338344014, 22.32763473512136, 44.20759948521327, 60.15655262444002, 9.177899826542589, 10.716357253579075, 51.680357458925094, 22.34022347057698, 26.932571963070668, 9.121844993485395, 109.06219880780277, 12.868483178846214, 13.142233423507635, 5.322148280224976, 10.133721011643287, 96.96952299332332, 104.72060650598057, 54.201834635065204, 71.11573685810853, 9.104234977023465, 121.72345232280405, 105.35960564866697, 26.78951358063204, 14.585116581705044, 79.84333531612015, 20.91102668629155, 48.99938634426902, 31.597528925301656, 54.60023440013389, 89.74517964293436, 19.636809337495357, 55.20986790583613, 6.414892603299294, 15.395912838874676, 15.07905391810082, 35.3381781997051, 59.07107813784408, 9.162252403976932, 20.59085599087735, 7.519114983580889, 40.64505840665694, 12.683971694480482, 64.77737063100544, 47.135554969207305, 43.44436832380518, 56.2012298437714, 8.41685777988909, 45.84329563233507, 38.55725444395241, 77.85562295910691, 9.865125160650528, 33.16553586020582, 12.335137394416728, 54.76246728455812, 12.402018233119616, 57.32861284644066, 26.724807580033414, 86.20746151326375, 14.151865501927073, 11.173759404317668, 38.00298315019591, 18.3444270554793, 16.011329892342204, 8.138617491034388, 84.17417025455018, 21.531369933703893, 75.19760484751863, 13.245906587132541, 31.373447150653703, 21.682482663300323, 64.45904656262132, 14.521267480762274, 33.62770318314704, 19.53645457734416, 100.98004519768484, 44.39724404952531, 35.112366632673684, 35.8991949722077, 33.20910084330183, 108.19604179241307, 82.67161664397005, 22.252548273910847, 10.619234191414172, 14.276912407758518, 19.005208872070032, 71.15008295481513, 22.855539899008214, 21.71462450590414, 31.29775818154871, 74.18204437261795, 20.627790349311116, 29.030328242939454, 6.246989823809569, 12.693704620263283, 8.345967794035762, 31.331282993842663, 16.774346576007147, 24.048542189990094, 57.971162111265926, 18.617589172246944, 30.9376524994057, 9.994076147879442, 57.9692040437414, 72.18018296600304, 27.02418226090588, 25.786031859100742, 40.34899811544347, 10.756248790828588, 42.21008057042946, 22.57766429324749, 25.89035790546068, 81.75573825240643, 6.631585826887826, 7.2442639533504565, 26.15473509160918, 88.75932342154839, 70.29851113425147, 22.757798757233292, 12.509911143543816, 30.007036671207338, 13.219524347410946, 151.55882777411358, 72.5180604811987, 11.203032664986459, 6.615310038365696, 69.54272007203093, 257.01482690678955, 15.433406529726097, 68.44994825453063, 73.16052601332395, 8.654627394893733, 477.62929439029267, 30.525612775625568, 16.303995361832822, 36.4049371442208, 12.705486690357127, 74.06589356690276, 5.113138743704436, 82.01437106806164, 13.443733957811832, 26.63007066713325, 53.663273518191495, 134.81330579243087, 24.89477708276301, 76.1502476358038, 6.424963147237383, 62.54602272988646, 19.710713797143953, 13.948833795132055, 26.425408464329685, 11.851625272268524, 36.51712157784535, 91.072059368861, 38.91925741373214, 16.703164286638284, 10.16313693763725, 33.80574755744457, 18.024194391088745, 9.77214489131968, 5.739512266622579, 36.598151649146715, 6.504922709382771, 62.85096937297881, 60.3908590476116, 25.058079406788504, 147.77779796161457, 55.899443372790046, 52.19467969803416, 16.07205938645908, 11.334424082000016, 88.22930651492605, 32.957178473947366, 38.46436407858642, 12.317672105064217, 118.20167741644026, 21.657671740638555, 22.601834162763026, 38.48412319365964, 28.807750972360445, 24.083633256097396, 6.145784463251422, 28.535181163025797, 23.33688710502326, 22.76236234652869, 12.73078880541103, 18.546063286980402, 149.92563424452445, 51.634403950302854, 17.747542415470164, 41.081258936964986, 6.627754229404881, 52.05625664787903, 50.2988378114536, 26.541057688099695, 45.89414324038385, 20.411881671499838, 21.770244883132833, 11.193331008041463, 51.15772831964248, 18.784254965964486, 83.68079952466597, 19.795051931764355, 153.00681975245416, 24.0851477371894, 13.815641642252052, 8.32267678692945, 9.283199683967005, 130.3784101808252, 14.963821113298224, 9.987145293655928, 6.020288073242802, 111.13997366604558, 12.484444225222308, 85.72937549928487, 11.92889356027703, 27.631623871385806, 8.68219632074359, 46.138979844197394, 50.08649982196336, 33.915942883412285, 107.00823764170934, 14.194416534604102, 40.35773244198451, 5.549735004565864, 46.06074422645338, 17.086990443212144, 6.8371343186251075, 139.19191611092788, 30.602114989114582, 16.60252698048072, 28.08665167979952, 137.9773688583756, 57.785710478910715, 45.84058544255444, 32.93436919145083, 22.571073699707476, 6.0762565290222454, 24.49730052927272, 6.646385303854132, 12.77084843719676, 48.64103374781739, 20.36313620106491, 15.448075400130223, 37.732458383672906, 30.59234246250238, 13.651392968922035, 5.271245125347169, 44.34504791124797, 95.9235813584724, 22.077197239678974, 31.575152316183797, 8.885695361499705, 35.95050725653241, 44.25335004156117, 48.25714703122465, 14.029850831883856, 76.18679109250658, 20.851373351252914, 18.16791149499136, 21.69177358175829, 388.60068501372757, 48.89064339106094, 45.940265314450585, 52.32944992138041, 79.57159605258326, 59.40021608205073, 25.361963944567147, 94.92880328906479, 7.275099189501927, 42.1668896952088, 35.89972952181576, 70.92613732862341, 28.07534674590728, 27.40960592696268, 17.51872460312391, 9.500581405088761, 21.79703487572754, 7.919509376154035, 77.41520390449108, 6.021878743815785, 11.409980089131174, 17.09719429178631, 8.831996254321437, 75.59980644949258, 8.996946327020474, 9.576540400029527, 81.10828861067198, 44.311496113294545, 22.828007089073296, 7.803873731988635, 5.783323527746258, 15.326125811202893, 5.2105283706372925, 11.927901889372247, 10.873630075808128, 21.493674889720726, 42.281174209034916, 121.82798296692553, 18.610645052092128, 57.92120505241305, 7.263472818106536, 13.83410778955323, 15.633883984358112, 9.583277898781729, 9.901039395001625, 79.03206964356335, 13.960137788439825, 8.390654964826593, 73.37871123196892, 5.320423188323475, 17.483733190700146, 40.76997656502998, 24.51517706384887, 37.62165315591435, 17.874742464953126, 81.61640010006431, 37.16131515774314, 21.483776073295754, 21.35701705200259, 44.400492512385114, 68.87478174983816, 45.46567594811223, 7.894124828295848, 10.178421821307174, 27.33286099990736, 19.853990445241415, 11.642119073860407, 7.179372234207189, 88.0705672099356, 8.252112838468568, 119.1554605082297, 6.683237745707428, 64.21504870397857, 76.47439489039093, 31.25216503124998, 23.849047142691433, 22.595792183164015, 27.5578284996407, 18.330959843879707, 18.889623506598852, 22.59908184690566, 5.252217404234388, 9.665788896830447, 54.81482553728236, 7.869379604400736, 26.86280245269814, 51.09748922540382, 53.6693593154835, 40.29166644459994, 67.3534796262372, 72.585462483489, 18.91477848490942, 22.58416297082306, 20.77094874704407, 20.147435687572873, 95.0701469640722, 15.742554401000957, 14.648740765491734, 123.35211252725566, 39.51843116820347, 9.135247110756888, 33.89807129584069, 27.90720287854814, 25.694873603700593, 23.777220134516586, 16.694673528626275, 111.42825033638329, 44.200224176541916, 35.95229586963363, 12.242959078482773, 27.774225604178092, 44.05391484127436, 48.54371016086141, 62.62115708167148, 90.17859111257029, 28.24729554499613, 7.576151990023306, 42.55316834932125, 11.804215292905726, 11.17111181888885, 30.832367563538735, 11.048415811908614, 16.45877578925021, 56.24714162757148, 55.16469529059152, 6.7375025375361695, 134.9195323296524, 13.29972706361748, 5.85330903911734, 12.147589842584239, 25.17551654189714, 8.95097148349355, 74.12431082566438, 8.921940915420613, 26.19859846188817, 15.740817893220774, 77.02671573891072, 10.850699124937657, 27.980110465421273, 77.94488242345618, 27.037998222392485, 30.24113011334866, 53.01988975114855, 102.33457170734444, 16.339324862833262, 29.149906040208492, 40.42449062888768, 16.070596974746973, 28.838217328516983, 52.81933940953812, 26.732040988324282, 24.95048895892473, 62.533998962959245, 60.76904691234484, 57.78530770548313, 85.14407530361541, 16.974219788289503, 83.94056765923068, 59.66174726255052, 35.31513470482021, 112.14019389422613, 6.054961792776291, 6.961876904526307, 64.79377887561921, 57.264308654388344, 83.55247504250302, 12.601585607900436, 69.26121097550806, 143.0378214008977, 106.37476701933646, 7.520482609333911, 12.891381829152806, 76.96863986175828, 49.29158955232366, 76.19613090949625, 48.15937151190856, 88.95956472579493, 18.392851340404107, 12.575513300130686, 9.544195280944322, 22.94949561451965, 65.57961496055609, 16.03894392286769, 5.384731334366459, 5.740486428909212, 100.55071118412398, 40.48186555264909, 34.33378511919878, 34.139943460062156, 29.787726412008496, 31.09721106091383, 82.96854315552555, 36.69064669014283, 12.836515817898167, 34.391301829081435, 7.6516880481512555, 56.11332055115707, 26.96031041289754, 21.970990127239386, 65.96071971770318, 71.1919131945671, 184.61325574073777, 153.16247963653774, 16.06026529503182, 86.49294490122612, 9.123259593907749, 140.1259513208962, 133.9449553468295, 57.69590803607866, 76.18683425712676, 12.874696209438588, 102.04632128313038, 85.89496001047259, 202.3012143155702, 33.902916231842276, 56.90485008365515, 6.559948792757639, 54.34056702272093, 28.861842358693416, 9.084180734902775, 22.036053417276857, 50.62833271862974, 121.44243055983895, 24.993328249926872, 27.606165393725213, 15.035241673107308, 33.8175367525341, 246.38961066519045, 150.72981062727294, 56.18739411880812, 25.819538768539275, 15.206633021180537, 12.924448334059376, 14.015361699077, 55.85276086643925, 12.945832669221774, 61.254374201968915, 40.215747560715805, 6.514712094297202, 53.00328228302866, 27.38317291259119, 83.00293079808483, 11.709763995955349, 83.77779058636948, 180.95617869099726, 7.505621000834308, 154.5718628498599, 152.78374823807985, 65.25954042159948, 13.01861121831639, 28.318668771201402, 6.219859654250346, 6.430845915013238, 10.72859350755255, 5.055495212621797, 48.53578241887838, 45.3858672272421, 381.41086403038827, 20.964111277747996, 21.0584247043783, 115.76956292278355, 18.973421136779976, 107.67660183167726, 11.633274724531345, 34.44393670203404, 29.864802098482652, 5.2308232441693585, 203.34692806778418, 12.288466188213889, 37.72199390610617, 72.65452966460654, 53.518121031624936, 67.18702044227213, 34.94570153494317, 15.479196166428647, 114.71689533474665, 54.77261959733451, 97.01881644894328, 12.837999674818253, 102.61062184773331, 22.087216073849763, 12.66916769803735, 5.731737393465264, 16.68763176244009, 12.390162416704753, 25.176305853279793, 296.27300170087557, 62.29953537788708, 20.907012127655257, 27.754121809520733, 14.948693857408315, 58.66334349758999, 42.26477098078723, 128.80420611228163, 18.202451440073244, 42.315663637220354, 12.541208980838162, 38.95471909289119, 96.66097602027297, 43.44585547185067, 12.900774900882508, 5.81172067628203, 6.583947099166079, 5.849288632118774, 29.589769682790806, 18.434631304355687, 33.997395581645286, 10.069077966267878, 12.644494200369017, 11.705431415015862, 22.634408536090078, 15.548866258235991, 84.73928597098973, 42.03016280096639, 87.10785591831063, 14.985985524835227, 63.09775327876211, 72.86908717130108, 8.386087609184937, 23.622143850340578, 6.303948746138566, 61.6964745479287, 8.595659735886176, 44.42214580996911, 7.964529009348881, 78.92826656386534, 20.780413158520243, 24.543859677946756, 35.57852615867647, 48.2683697666262, 62.200902523273484, 146.389379552353, 19.407277555891177, 5.088429546633797, 9.945085442399918, 8.469728093671286, 19.816995891325025, 80.48912367226458, 53.20538708341291, 34.1240417373376, 18.097334976909146, 5.921636073384461, 17.5244972999615, 22.0057087243173, 53.53183449519587, 29.63740707047008, 5.066931039002756, 11.901927203419062, 54.01915019353794, 13.062514292435196, 81.43687338058606, 5.892293087767811, 34.31787834261069, 8.822298600374978, ...])
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);
([8025166.306155601, 8305730.460765575, 8569435.9375, 8755831.25, 8962528.435675703, 8995725.361209609, 9008220.3125, 9211070.035093112, 9235562.632696653, 9243887.63751764, 9247695.22963645, 9291507.8125, 9335515.990008822, 9380429.210997289, 9413999.760982415, 9528686.833998825, 9528889.015134921, 9556384.716133503, 9569026.5625, 9596352.215458658, 9605376.787074992, 9605441.60165657, 9605458.816493211, 9606335.988106823, 9606587.211929955, 9606835.448065965, 9606857.596663343, 9606950.0, 9607045.590452805, 9607145.3125, 9607443.086150678, 9607448.4375, 9607554.6875, 9607724.216839496, 9607937.5, 9607974.648458403, 9608079.6875, 9608149.217036827, 9608231.25, 9608399.676984562, 9608423.003008945, 9608444.66098633, 9608793.779784486, 9608957.8125, 9609221.875, 9609375.177962992, 9609496.875, 9609815.549697846, 9610008.794338671, 9610463.81145739, 9610868.932468502, 9610873.217010798, 9611167.173490351, 9611174.889133012, 9611274.810691573, 9611301.364289528, 9611302.640130855, 9611523.4375, 9611616.469549406, 9611764.081575131, 9611908.433952712, 9612049.832337948, 9612132.780069772, 9612197.919507658, 9612217.1875, 9612275.0, 9612415.625, 9612691.193536334, 9612707.816460537, 9612718.027118001, 9612738.7216427, 9613528.125, 9613562.367822582, 9613682.787173197, 9613992.1875, 9614169.350630546, 9614354.282606628, 9614359.375, 9614386.747767055, 9614409.207555588, 9614537.166264901, 9614678.981809925, 9614760.9375, 9614811.857337927, 9614987.088272575, 9615026.482202854, 9615181.25, 9615188.498414168, 9615314.52082473, 9615402.862764645, 9615488.843902722, 9615496.666831315, 9615526.731621241, 9615570.3125, 9615583.057444913, 9615685.9375, 9615898.197359085, 9615973.313810237, 9616128.174812332, 9616138.965442965, 9616410.9375, 9616910.652532104, 9617142.962965755, 9617400.385571415, 9617425.599635692, 9617522.29630459, 9617567.88022514, 9617652.770755032, 9618053.424511736, 9618320.206094366, 9618468.233293796, 9618594.890589263, 9619033.347940078, 9619113.569354594, 9619300.948802678, 9619323.4011763, 9619455.02534286, 9619514.963479547, 9619558.961856926, 9620062.5, 9620101.5625, 9620132.265779035, 9620496.015723923, 9620776.770253934, 9621246.754654638, 9621430.360923909, 9621474.945994115, 9621950.087542495, 9622032.8125, 9622198.05048543, 9622746.45253535, 9624088.257790953, 9624167.1875, 9625067.645234972, 9625509.623985797, 9625615.355124475, 9625984.687036809, 9626027.46592761, 9626093.355663493, 9626100.614444906, 9626114.762920406, 9626557.564604647, 9626773.4375, 9627787.261703003, 9627823.790870786, 9628987.470508682, 9629040.235583508, 9630101.032720776, 9630576.5625, 9631565.625, 9631622.808158748, 9631694.695268646, 9632125.679194208, 9632830.667928755, 9632967.497349761, 9633589.497798981, 9637785.542782487, 9639037.5, 9639729.472319065, 9640628.231307646, 9643549.494062971, 9647034.28235128, 9648572.48496563, 9649693.584206302, 9652203.418903615, 9656419.807220472, 9662644.29533414, 9662647.167724157, 9670532.488163238, 9671474.600321803, 9671493.393016458, 9672194.85634904, 9673159.375, 9673818.480286695, 9674413.19462138, 9674975.504850166, 9675637.5, 9675895.3125, 9676824.815836892, 9676854.6875, 9677523.991097042, 9677547.069073455, 9677557.580368698, 9678043.623455621, 9678452.922763558, 9679001.5625, 9679302.967098216, 9679402.307404509, 9679504.928766292, 9679856.060583847, 9680212.792519063, 9680502.331081906, 9681221.484850502, 9681240.992085211, 9681257.655940354, 9681343.801020842, 9681559.375, 9681629.660398025, 9682609.375, 9683957.2255339, 9686525.957036138, 9689497.44321688, 9700537.880939813, 9701079.094429482, 9701232.8125, 9702604.498033028, 9702802.125994781, 9703358.12577425, 9703841.745178845, 9707150.717990635, 9711485.626191316, 9712649.167022482, 9714882.806068739, 9715277.296185795, 9716517.1875, 9716767.1875, 9717391.14033579, 9719741.997157658, 9720814.0625, 9720870.406175619, 9730017.751475986, 9738255.375583235, 9743607.342901433, 9760840.625, 9769103.957059873, 9789194.928945582, 9811445.3125, 9814462.65003058, 9816118.286175586, 9826288.236136675, 9832181.620232454, 9834632.296663644, 9838870.3125, 9840512.264518, 9847641.18737769, 9853644.236190718, 9857794.933938956, 9864658.375011068, 9865462.5, 9866491.974549681, 9871858.443988232, 9885917.375678625, 9896157.087880976, 9904212.496411476, 9927384.375, 9928871.875, 9929234.375, 9929337.121570628, 9929730.27727126, 9930231.893938297, 9930277.834181856, 9930368.75, 9931082.736357719, 9931146.875, 9931276.50463807, 9931467.1875, 9932003.510545915, 9932057.804684794, 9932073.4375, 9932139.711958045, 9932151.5625, 9932311.230695354, 9932330.73439297, 9932468.540815996, 9932504.27464026, 9932548.68708648, 9932591.265487682, 9933038.542858627, 9933081.236699002, 9933181.355927318, 9934251.14275173, 9934775.236776076, 9934805.577343402, 9935062.19297936, 9935193.531940114, 9935249.965229394, 9935734.230130354, 9935776.503147475, 9935853.125, 9935912.216344964, 9936095.264245111, 9936260.232617695, 9936268.389529716, 9936776.155394536, 9936835.9375, 9936910.819746992, 9937250.585488498, 9937267.534010764, 9937289.591197366, 9937321.817430954, 9937411.83659333, 9937420.143829763, 9937598.747013139, 9937684.375, 9937832.748365985, 9937851.781127725, 9937857.153338216, 9937865.600665683, 9938062.564611938, 9938131.25, 9938289.501729991, 9938317.1875, 9938503.125, 9938527.137663009, 9938578.186957141, 9938735.616364505, 9938798.584638184, 9938805.561050152, 9938841.93868769, 9939016.216337584, 9939129.6875, 9939290.231999816, 9939600.0, 9939745.3125, 9939809.087421242, 9940039.74762214, 9940278.762773061, 9940353.125, 9940370.3125, 9940637.5, 9940932.67998931, 9941369.17175142, 9941443.75, 9942125.069514766, 9945092.714280017, 9949399.528410591, 9950456.994406044, 9951016.175675217, 9954689.415332533, 9955806.25, 9956743.84444032, 9958539.393593833, 9959634.375, 9959696.714222912, 9959697.139753059, 9961624.397077676, 9962009.419423258, 9962098.4375, 9962944.265271075, 9963591.4337853, 9963732.543984247, 9964057.853737889, 9964516.659529207, 9965096.875, 9965168.75, 9965221.875, 9965355.440716105, 9965486.115909612, 9965581.25, 9965665.146259049, 9966106.313271891, 9966451.393060315, 9966809.375, 9969571.621298486, 9970323.4375, 9970346.734728415, 9970385.387057742, 9970455.420867044, 9973185.175648864, 9973226.546257166, 9974894.219077148, 9975011.547940662, 9975978.125, 9976186.413355881, 9976781.51108493, 9976944.67386335, 9977945.3125, 9978086.532567997, 9979263.920191914, 9979272.583565326, 9980019.17304743, 9980121.60419723, 9980385.581773423, 9981032.8125, 9981476.84138071, 9982036.8853917, 9982121.875, 9982399.376308074, 9982464.0625, 9982515.012798525, 9982992.1875, 9983689.0625, 9985020.303851752, 9985568.75, 9986300.0, 9986315.027188068, 9986755.817031587, 9987805.864125347, 9989048.4375, 9998882.8125, 10013084.187702904, 10013085.65736351, 10015153.125, 10031071.601981899, 10036148.351518374, 10040735.678812535, 10047013.458376193, 10050850.886471285, 10051754.118983887, 10051833.786374742, 10052664.880046586, 10053203.125, 10053409.123551348, 10070984.375, 10087326.70189034, 10087355.968538238, 10113787.62751093, 10121101.374655709, 10121204.593198178, 10121354.59074463, 10121490.625, 10122815.656879058, 10123439.0625, 10126214.0625, 10127903.125, 10128723.4375, 10129961.791339345, 10130035.9375, 10131793.273430118, 10132863.136458622, 10135212.535624376, 10135353.125, 10136042.1875, 10136329.480441505, 10136801.532493081, 10137413.823765643, 10137755.756442703, 10137827.372528143, 10138146.875, 10138399.696521964, 10138580.420131765, 10143108.45167395, 10144079.925996425, 10144390.790304119, 10144424.651299704, 10145224.470708184, 10148166.195273813, 10149659.375, 10152127.218369503, 10154609.375, 10156056.936459037, 10156120.3125, 10159042.829212774, 10160547.996295396, 10160552.9011609, 10167732.841764579, 10168687.5, 10168985.050912205, 10169064.317460159, 10169109.084317945, 10169348.4375, 10169631.43629286, 10169781.11700506, 10169960.855456265, 10170181.25, 10171215.542248625, 10171951.249483524, 10171978.593956709, 10172518.930736924, 10172683.65360663, 10172918.189284932, 10173029.6875, 10173338.705774352, 10173433.72806368, 10173495.3125, 10173630.790536154, 10173764.0625, 10173769.885403953, 10173841.835868016, 10173892.001477625, 10174194.75727238, 10174199.161607407, 10174241.338472674, 10174514.855543947, 10174941.54273113, 10175026.5625, 10175310.346149458, 10175348.463861985, 10175615.46335808, 10176144.564144826, 10176221.985644707, 10178848.4375, 10190048.847506685, 10191222.759671398, 10191468.364891002, 10200660.826307563, 10201648.4375, 10201985.06691787, 10201991.64213215, 10202642.1875, 10202718.669291267, 10203285.781716647, 10203429.6875, 10203645.061102262, 10203645.3125, 10203759.934627803, 10203868.600875163, 10203993.75, 10204018.051234527, 10204636.384966804, 10204804.554963658, 10204940.492352353, 10205187.250388337, 10205200.759222273, 10205271.983090289, 10205467.8329864, 10205622.898139538, 10205765.624192486, 10205920.3125, 10205956.2976625, 10206005.459417798, 10206123.4375, 10206192.55927644, 10206195.435834361, 10206257.924025211, 10206378.84941295, 10206478.761667982, 10206677.756551078, 10206909.375, 10206951.484318791, 10206970.925012492, 10207007.069115411, 10207034.310210688, 10207056.981894363, 10207217.183619512, 10207241.729915885, 10207459.271299241, 10207567.1875, 10207588.822850373, 10207698.33986228, 10207711.683645673, 10207735.529381296, 10207790.625, 10208114.925609846, 10208170.025164334, 10208454.571535826, 10208473.856027775, 10208485.9375, 10208645.249999942, 10208853.125, 10208869.14635148, 10209213.34324221, 10209225.0, 10209386.56413043, 10209659.853981128, 10209720.815144813, 10209727.585405802, 10209932.92531574, 10209975.0, 10210646.875, 10211041.033507207, 10211088.956730083, 10211089.0625, 10211154.6875, 10211270.580538986, 10211882.940844687, 10212981.25, 10217851.5625, 10218029.6875, 10220747.52279692, 10220823.312181788, 10222376.67641044, 10225485.714533346, 10243053.125, 10243069.219936332, 10245751.288121551, 10248155.224528108, 10254161.787370875, 10255582.969523024, 10256591.805972842, 10256763.32974264, 10256896.018303106, 10256953.125, 10257065.581052912, 10257566.207160579, 10257570.3125, 10257588.342236698, 10257729.095277496, 10257750.157255862, 10257935.828493338, 10258137.5, 10258280.634322977, 10258697.329656988, 10259375.04158252, 10259657.8125, 10259661.677538129, 10259676.580091788, 10259706.115584575, 10259819.981557786, 10259821.600736143, 10259906.268708354, 10260025.067646405, 10260453.067436485, 10260562.13100837, 10260792.321837936, 10260795.99802093, 10260955.571655028, 10261229.575936852, 10261277.2859677, 10261310.9375, 10261652.020985888, 10261694.571008489, 10261813.180016411, 10261960.9375, 10263040.625, 10263126.5625, 10263151.5625, 10263376.351636883, 10263675.0, 10264972.213446226, 10265221.875, 10265275.468177075, 10266542.545440216, 10266670.496029243, 10268602.535084961, 10268619.126775367, 10270177.741208753, 10270670.052298103, 10270896.925882367, 10271681.25, 10272122.944034584, 10272299.601673493, 10274187.385343213, 10274244.486938199, 10274575.946099805, 10274811.783937838, 10274855.300271006, 10275012.538466798, 10275475.126844645, 10275571.875, 10275621.682256537, 10275715.239644207, 10275736.844003422, 10275818.75, 10276777.99801319, 10276800.156074604, 10276879.016794816, 10277069.733739195, 10277265.43229351, 10277484.375, 10277498.97553458, 10277626.300820705, 10277652.97816122, 10277777.55817023, 10277858.461529834, 10278027.644688075, 10278481.426896593, 10278590.171208771, 10279118.53222761, 10279203.125, 10279463.757857073, 10280306.25, 10280517.003970701, 10280937.5, 10280958.366441041, 10280989.2932573, 10281295.3125, 10281306.106220214, 10281316.813181084, 10281764.874075357, 10282141.408213347, 10282181.443524616, 10282291.438696202, 10282389.859760107, 10282550.0, 10282882.150692375, 10282926.73588322, 10283708.282527564, 10284075.906263728, 10284118.75, 10284312.076067895, 10284958.08885008, 10285094.467080807, 10285243.75, 10285460.561657792, 10285461.46013138, 10285721.451893382, 10285967.284877043, 10286265.901668737, 10286486.395478213, 10286567.018631916, 10286885.437557604, 10286916.563879069, 10287314.950019382, 10287444.465198265, 10287600.0, 10287802.076558573, 10287808.429708138, 10288825.17051989, 10288904.97108084, 10289097.479719423, 10289195.761886729, 10289240.428174268, 10289451.754259927, 10289621.875, 10290608.733899353, 10290788.038011909, 10291312.5, 10292081.496866193, 10293665.625, 10293674.0403328, 10294556.099678285, 10294860.697862815, 10295102.624064788, 10295135.423749236, 10295200.0, 10295454.6875, 10296026.5625, 10296127.30100244, 10296647.731491817, 10297147.661424067, 10297196.193330783, 10297220.61843203, 10297233.028350594, 10297293.524715517, 10297540.559253536, 10298484.428220825, 10298526.146685032, 10300012.5, 10300137.5, 10300195.08292195, 10300355.957657207, 10300520.48290701, 10300743.699179769, 10300770.985447478, 10301239.817325113, 10301265.80945374, 10301342.43823295, 10301626.933149647, 10301698.4375, 10301717.867911898, 10301811.152877072, 10301832.8125, 10301928.04211635, 10302028.125, 10302086.193381347, 10302118.75, 10302296.070823653, 10302336.825722668, 10302397.861926742, 10302408.162571194, 10302471.863272853, 10302548.63290395, 10302651.419255037, 10302826.180793406, 10302892.04704439, 10303006.008532925, 10303267.1875, 10303285.48087191, 10303543.681081543, 10303669.246469853, 10303705.082212161, 10303721.433549227, 10304059.375, 10304088.031949222, 10304144.7833996, 10304316.293491386, 10304331.25, 10304382.8125, 10304417.1875, 10304528.125, 10304603.04956006, 10304709.29948596, 10304778.885224352, 10304892.581101103, 10304905.523965057, 10305026.5625, 10305046.823672824, 10305147.22324895, 10305203.125, 10305356.25, 10305407.680836214, 10305505.743372587, 10305661.990361987, 10305713.017750572, 10305984.94229617, 10305997.531909907, 10306113.575489487, 10306131.25, 10306405.722507464, 10306531.120177085, 10306589.257510042, 10306618.75, 10306624.815243144, 10306720.28437474, 10306884.375, 10306885.85758279, 10307087.014226595, 10307174.713302111, 10307183.808577957, 10307243.07145073, 10307249.426894857, 10307308.344386792, 10307333.065864041, 10307355.479788791, 10307557.510032473, 10307582.714825675, 10307594.43904026, 10307670.776654925, 10307790.625, 10307937.5, 10307951.000854634, 10308026.014326947, 10308109.375, 10308179.775396721, 10308208.431433931, 10308259.375, 10308302.800199673, 10308363.418555094, 10308401.5625, 10308432.8125, 10308610.9375, 10308615.505668363, 10308629.254113259, 10308731.25, 10308806.25, 10309196.640247744, 10309230.583228195, 10309262.5, 10309282.8125, 10309319.677693024, 10309346.501223486, 10309517.1875, 10309631.933168948, 10309780.282107068, 10309834.616376424, 10309840.259573134, 10309912.5, 10309964.323424002, 10310002.760804484, 10310084.892235141, 10310137.286240477, 10310232.8125, 10310283.33437352, 10310320.381429756, 10310328.125, 10310338.376650857, 10310577.377330663, 10310778.125, 10311013.37346488, 10311014.0625, 10311040.757000435, 10311134.375, 10311537.54324433, 10311583.921607964, 10311586.625084957, 10311598.4375, 10311610.9375, 10311709.375, 10311734.488509802, 10311781.25, 10312018.493134707, 10312152.152258504, 10312226.5625, 10312235.9375, 10312257.111948667, 10312335.263987845, 10312340.430957703, 10312495.3125, 10312549.081423122, 10312553.125, 10312558.319801498, 10312717.637046248, 10312993.424450902, 10313064.094207443, 10313302.817397181, 10313308.927758845, 10313346.875, 10313796.875, 10313884.166426018, 10314103.695347026, 10314320.336876307, 10314420.3125, 10314601.850486558, 10314720.3125, 10314724.82792729, 10314755.067880096, 10314781.31786177, 10315044.65900841, 10315070.046263842, 10315104.594612285, 10315316.542542499, 10315414.0625, 10315537.5, 10315787.673965639, 10315790.5958271, 10315946.814550016, 10316014.0625, 10316058.115473185, 10316059.285926653, 10316173.292393772, 10316220.034291126, 10316270.3125, 10316336.525486631, 10316462.5, 10316642.957521368, 10316719.33300997, 10316868.365898054, 10316880.881562883, 10317024.72871692, 10317028.936816756, 10317114.0625, 10317185.9375, 10317467.653327897, 10317496.320284326, 10317599.455293162, 10317725.0, 10317902.328932943, 10318319.234308869, 10318331.551036542, 10318351.5625, 10318394.980118224, 10318430.730084177, 10318799.351367565, 10318902.196718508, 10318996.794857025, 10321071.875, 10321229.6875, 10321405.86685654, 10322190.696224915, 10322506.384261288, 10322840.021067072, 10323903.125, 10324510.9375, 10326260.249070775, 10326347.317061339, 10326677.682563933, 10327055.49124814, 10327320.697968006, 10327361.33085089, 10327377.243573546, 10327504.751382114, 10327756.88387027, 10327765.523855882, 10327807.251669416, 10327843.709831093, 10327990.626883645, 10328004.6875, 10328042.1875, 10328137.144927608, 10328161.961639417, 10328182.324285673, 10328280.436022285, 10328295.3125, 10328373.32200505, 10328428.361399923, 10328530.587011082, 10328578.094414702, 10328631.841239698, 10328647.341058439, 10328692.1875, 10328731.93938993, 10328832.8125, 10328899.197652608, 10328955.48073166, 10328989.403133275, 10329052.575207153, 10329131.400715683, 10329139.0625, 10329192.946776165, 10329197.952460274, 10329300.011620095, 10329359.375, 10329443.693075782, 10329482.996051492, 10329504.377365414, 10329548.722945303, 10329659.375, 10329688.042065479, 10329784.375, 10329929.024445018, 10330067.1875, 10330180.745820338, 10330210.167091183, 10330312.5, 10330367.1875, 10330735.9375, 10330863.714205505, 10330864.133251686, 10330929.171268322, 10330972.521362051, 10331090.955994204, 10331435.68065989, 10331890.622264255, 10332308.34726015, 10332470.306161612, 10332803.763088413, 10332879.481167998, 10334339.607449189, 10334794.862395788, 10335844.680297479, 10336179.6875, 10337029.579135993, 10338003.190669311, 10339928.125, 10340132.21337119, 10348502.637442293, 10348854.130131755, 10349856.25, 10350886.829574509, ...], [6.907565345635323, 32.15308762539063, 73.8658968016283, 68.68303366032471, 46.35211449993846, 57.864371040177545, 35.219779789078196, 24.043692096226735, 32.16742396273119, 11.349681322889012, 14.634806462119496, 268.37864472190745, 74.91959293368312, 54.60200698450007, 5.7965041793019285, 8.825317916897806, 27.621141960137855, 5.549869096847814, 96.44272154472257, 18.19343093475392, 6.809185009334398, 60.07896946817732, 10.35415939960031, 15.137972253527291, 13.946534722872515, 18.3221188629279, 25.35553057426695, 48.16422575347377, 11.591857806100606, 42.86424942250762, 20.56967718215576, 34.14149260359339, 64.85487563184644, 7.911728986192385, 54.98832658887531, 13.751899525620047, 43.27462998283343, 100.14065045750037, 37.247067214491075, 56.65050187076824, 22.172463332417635, 8.835233234808108, 9.35671525974453, 39.69182703934899, 105.82129955343166, 5.207979708629428, 44.45333375692303, 30.8250362598576, 21.508593863308796, 32.8255523874262, 15.311913043214311, 88.14016560273956, 26.848047594656503, 54.062827028850734, 14.265920303047034, 25.144290763810552, 21.645378269757394, 75.35759774318717, 5.879229147390672, 15.014716771821892, 17.53770914513775, 10.875377233356557, 68.73374784139146, 65.09741209483242, 30.584867755115514, 87.15087357852254, 48.68302338961873, 6.882578813926259, 5.707010112976594, 10.158969932589386, 39.09647197833597, 48.44900352125177, 5.45612179215814, 56.561986905225865, 47.453598103817576, 24.942004651644062, 22.49737432589305, 70.78522106840671, 18.285349933393064, 313.79927026819075, 49.41782115491326, 12.795929080929898, 70.28230549831964, 126.58067671918315, 22.421306286686075, 20.046408424840944, 71.21082473160034, 32.850621965476805, 9.751538874154496, 19.9436500847998, 24.84939085521056, 19.028845107975936, 83.68226869705646, 47.17058195846354, 34.54270771496587, 77.24377975924777, 24.546706918411154, 79.16994395037737, 9.373880489454912, 83.56078081993581, 65.18213760842046, 10.70969952779307, 19.03930019818396, 16.64754250923913, 13.143653451266648, 7.763071625768991, 18.45713294446779, 6.694786687716219, 16.22082043806378, 14.550879700914047, 5.508517878629845, 13.545126155617465, 34.38655892552483, 44.34997263489045, 20.46577850524735, 14.804844634149527, 11.70029976495721, 25.065985684522502, 20.082375133353686, 44.849690274673094, 38.71677994479475, 7.416783902854651, 31.20655699431462, 9.513474016312147, 26.51075545960941, 8.677980916945423, 35.392305731009785, 8.333420230272555, 65.45219110241639, 13.646517738911363, 13.543534551057743, 26.416660840533737, 45.22382282892571, 18.87629987162673, 23.583451579583084, 24.143321139392846, 24.629294681808062, 94.26156418248931, 22.61614599390085, 20.797549968188918, 18.509325564410148, 76.42142599893309, 59.987502700341665, 37.08242411266613, 16.484337210628496, 33.39688803991734, 40.32556708357847, 20.786672891800627, 57.51485981621831, 54.833431933457426, 34.08933327052479, 10.282941432559207, 20.947884432497027, 20.711684319615888, 69.09269989097152, 18.52716404097933, 133.2578810020974, 226.98226049204854, 16.622402894646232, 15.362800850348881, 13.309815268665702, 26.817792825736554, 73.63520398270586, 98.18622898563675, 16.19403723026624, 7.430168356632821, 8.597670284382703, 11.618306249195724, 10.655962385747497, 50.67517240086565, 55.43475142558039, 8.973349661335012, 64.13508360270524, 24.14547815083635, 65.01502179355427, 15.730345811191388, 31.234079225650934, 109.46912386102628, 8.191532052712699, 34.27053670564911, 31.367703929813317, 25.90974561072992, 14.124865444662897, 76.08337546231252, 304.07320509188804, 70.66206315347887, 117.34742930799742, 6.610565413144688, 14.097949568602797, 16.28651250890434, 16.187443467812688, 7.339291138820592, 13.637317949855401, 16.553315226589852, 35.61870148973679, 39.587107829106564, 78.46738498073958, 27.999512729458903, 76.61348710645726, 8.879947520509287, 89.04699769850221, 7.279283301964413, 16.62379825799883, 6.973815690480482, 51.69174947808982, 6.72626140594116, 17.634724478156745, 20.769647029414692, 8.065746761564155, 18.62995295419784, 6.702907928350196, 6.3639886647062545, 28.3983787221156, 12.507499671783245, 37.554790625892785, 36.15318998864672, 17.352226753169216, 89.71677509191605, 41.13155356127628, 6.5018766546007685, 65.83834748447258, 8.687365590765086, 38.15977881819212, 45.71501298271638, 83.0792643882152, 9.0268596720357, 89.41582232082929, 8.367542159686746, 5.033813315656534, 18.75670804684396, 22.987279704096366, 6.66471553619528, 69.95407111636929, 22.43191138173475, 221.44740372215296, 77.08280002860074, 10.583414678754876, 12.137707827656355, 39.21227562335723, 7.06657645290251, 18.05510840567933, 26.95993935152331, 56.289602044260405, 97.83264449419457, 71.69648192031485, 69.8260842735571, 108.10265051835259, 132.07683160887223, 5.745349644826964, 9.942502697350623, 50.06375168457505, 76.66200849934677, 14.65902124796545, 103.8375442235997, 20.089506177475116, 85.56639552625916, 8.501556238928409, 14.911804952335329, 75.01298916462015, 57.0624157107503, 54.70888628538309, 11.619153111446327, 10.407273681958399, 14.19994967766337, 149.5361490256452, 22.54994785968909, 25.048144990117546, 19.27133271030725, 74.06234953253454, 15.361233977023998, 38.589647537664035, 7.691180904285792, 5.882891708729554, 58.44016430575976, 75.25594140348842, 13.955385499959402, 9.211839824851781, 14.720010316380769, 63.21050139987264, 75.62109108778066, 107.73820749888631, 28.63193263606552, 23.007873461746176, 5.7844597490992085, 70.76546837315603, 103.48984153960865, 79.17870601912215, 7.2156185713860355, 7.267729556535196, 27.43514866076269, 36.817138279442396, 10.873916629319053, 11.64860241233447, 61.64349266754724, 27.317048165543486, 15.84587734618773, 10.233113335999361, 77.32356764732828, 5.617628655943743, 58.92709393163497, 7.241905493145074, 137.67770295587363, 85.81656855759577, 40.07780953425158, 103.94102318273445, 7.491076222914342, 65.01158942278613, 12.836724621144553, 14.070998254052789, 66.72176494439232, 53.02020022735855, 28.447562973296115, 74.82241382065257, 36.65988702581392, 79.43420711573005, 9.986713780284399, 107.80202234558456, 109.88794575910362, 50.52421392447797, 95.67259940985191, 24.13034843727138, 6.850731898471431, 74.25260659478899, 25.078772911324283, 112.27019368547201, 6.415622053846493, 18.815220580426715, 9.844897118902049, 16.481645903535313, 46.90087020032081, 101.27440764586228, 6.540276576720226, 40.27270775289211, 25.708450044196585, 18.722071075520105, 20.524366822098923, 20.738935380207824, 241.95411586555238, 9.8087286498853, 12.681037738192167, 5.916357763359087, 15.101053554843263, 13.250087896273525, 41.74724511824989, 65.88080141930412, 47.16001491441504, 18.878083635107163, 15.668114079359485, 53.69539835358313, 8.04865917193015, 93.16907805884208, 6.246025634211439, 82.09762724031258, 10.753032595407417, 92.5075448143898, 26.030653133516353, 21.004249285913613, 32.45310132362564, 19.22613949208307, 59.614108475071205, 11.94964133715524, 17.922164593029123, 50.601904163466216, 17.764340473821978, 5.171487011292154, 6.963117549545601, 87.06391807857545, 12.205441162112916, 14.42549006552835, 12.451051762358093, 214.40912491461242, 24.131000684856687, 19.730627301642894, 95.83983079922575, 16.12288223905554, 13.022750803758571, 40.92433621150775, 45.56647053362015, 35.188869004188334, 84.08896493543456, 55.14351366074562, 55.8616827423046, 8.282009276280258, 50.82390191840374, 74.4608671186359, 6.972698428309861, 22.188894338344014, 22.32763473512136, 44.20759948521327, 60.15655262444002, 9.177899826542589, 10.716357253579075, 51.680357458925094, 22.34022347057698, 26.932571963070668, 9.121844993485395, 109.06219880780277, 12.868483178846214, 13.142233423507635, 5.322148280224976, 10.133721011643287, 96.96952299332332, 104.72060650598057, 54.201834635065204, 71.11573685810853, 9.104234977023465, 121.72345232280405, 105.35960564866697, 26.78951358063204, 14.585116581705044, 79.84333531612015, 20.91102668629155, 48.99938634426902, 31.597528925301656, 54.60023440013389, 89.74517964293436, 19.636809337495357, 55.20986790583613, 6.414892603299294, 15.395912838874676, 15.07905391810082, 35.3381781997051, 59.07107813784408, 9.162252403976932, 20.59085599087735, 7.519114983580889, 40.64505840665694, 12.683971694480482, 64.77737063100544, 47.135554969207305, 43.44436832380518, 56.2012298437714, 8.41685777988909, 45.84329563233507, 38.55725444395241, 77.85562295910691, 9.865125160650528, 33.16553586020582, 12.335137394416728, 54.76246728455812, 12.402018233119616, 57.32861284644066, 26.724807580033414, 86.20746151326375, 14.151865501927073, 11.173759404317668, 38.00298315019591, 18.3444270554793, 16.011329892342204, 8.138617491034388, 84.17417025455018, 21.531369933703893, 75.19760484751863, 13.245906587132541, 31.373447150653703, 21.682482663300323, 64.45904656262132, 14.521267480762274, 33.62770318314704, 19.53645457734416, 100.98004519768484, 44.39724404952531, 35.112366632673684, 35.8991949722077, 33.20910084330183, 108.19604179241307, 82.67161664397005, 22.252548273910847, 10.619234191414172, 14.276912407758518, 19.005208872070032, 71.15008295481513, 22.855539899008214, 21.71462450590414, 31.29775818154871, 74.18204437261795, 20.627790349311116, 29.030328242939454, 6.246989823809569, 12.693704620263283, 8.345967794035762, 31.331282993842663, 16.774346576007147, 24.048542189990094, 57.971162111265926, 18.617589172246944, 30.9376524994057, 9.994076147879442, 57.9692040437414, 72.18018296600304, 27.02418226090588, 25.786031859100742, 40.34899811544347, 10.756248790828588, 42.21008057042946, 22.57766429324749, 25.89035790546068, 81.75573825240643, 6.631585826887826, 7.2442639533504565, 26.15473509160918, 88.75932342154839, 70.29851113425147, 22.757798757233292, 12.509911143543816, 30.007036671207338, 13.219524347410946, 151.55882777411358, 72.5180604811987, 11.203032664986459, 6.615310038365696, 69.54272007203093, 257.01482690678955, 15.433406529726097, 68.44994825453063, 73.16052601332395, 8.654627394893733, 477.62929439029267, 30.525612775625568, 16.303995361832822, 36.4049371442208, 12.705486690357127, 74.06589356690276, 5.113138743704436, 82.01437106806164, 13.443733957811832, 26.63007066713325, 53.663273518191495, 134.81330579243087, 24.89477708276301, 76.1502476358038, 6.424963147237383, 62.54602272988646, 19.710713797143953, 13.948833795132055, 26.425408464329685, 11.851625272268524, 36.51712157784535, 91.072059368861, 38.91925741373214, 16.703164286638284, 10.16313693763725, 33.80574755744457, 18.024194391088745, 9.77214489131968, 5.739512266622579, 36.598151649146715, 6.504922709382771, 62.85096937297881, 60.3908590476116, 25.058079406788504, 147.77779796161457, 55.899443372790046, 52.19467969803416, 16.07205938645908, 11.334424082000016, 88.22930651492605, 32.957178473947366, 38.46436407858642, 12.317672105064217, 118.20167741644026, 21.657671740638555, 22.601834162763026, 38.48412319365964, 28.807750972360445, 24.083633256097396, 6.145784463251422, 28.535181163025797, 23.33688710502326, 22.76236234652869, 12.73078880541103, 18.546063286980402, 149.92563424452445, 51.634403950302854, 17.747542415470164, 41.081258936964986, 6.627754229404881, 52.05625664787903, 50.2988378114536, 26.541057688099695, 45.89414324038385, 20.411881671499838, 21.770244883132833, 11.193331008041463, 51.15772831964248, 18.784254965964486, 83.68079952466597, 19.795051931764355, 153.00681975245416, 24.0851477371894, 13.815641642252052, 8.32267678692945, 9.283199683967005, 130.3784101808252, 14.963821113298224, 9.987145293655928, 6.020288073242802, 111.13997366604558, 12.484444225222308, 85.72937549928487, 11.92889356027703, 27.631623871385806, 8.68219632074359, 46.138979844197394, 50.08649982196336, 33.915942883412285, 107.00823764170934, 14.194416534604102, 40.35773244198451, 5.549735004565864, 46.06074422645338, 17.086990443212144, 6.8371343186251075, 139.19191611092788, 30.602114989114582, 16.60252698048072, 28.08665167979952, 137.9773688583756, 57.785710478910715, 45.84058544255444, 32.93436919145083, 22.571073699707476, 6.0762565290222454, 24.49730052927272, 6.646385303854132, 12.77084843719676, 48.64103374781739, 20.36313620106491, 15.448075400130223, 37.732458383672906, 30.59234246250238, 13.651392968922035, 5.271245125347169, 44.34504791124797, 95.9235813584724, 22.077197239678974, 31.575152316183797, 8.885695361499705, 35.95050725653241, 44.25335004156117, 48.25714703122465, 14.029850831883856, 76.18679109250658, 20.851373351252914, 18.16791149499136, 21.69177358175829, 388.60068501372757, 48.89064339106094, 45.940265314450585, 52.32944992138041, 79.57159605258326, 59.40021608205073, 25.361963944567147, 94.92880328906479, 7.275099189501927, 42.1668896952088, 35.89972952181576, 70.92613732862341, 28.07534674590728, 27.40960592696268, 17.51872460312391, 9.500581405088761, 21.79703487572754, 7.919509376154035, 77.41520390449108, 6.021878743815785, 11.409980089131174, 17.09719429178631, 8.831996254321437, 75.59980644949258, 8.996946327020474, 9.576540400029527, 81.10828861067198, 44.311496113294545, 22.828007089073296, 7.803873731988635, 5.783323527746258, 15.326125811202893, 5.2105283706372925, 11.927901889372247, 10.873630075808128, 21.493674889720726, 42.281174209034916, 121.82798296692553, 18.610645052092128, 57.92120505241305, 7.263472818106536, 13.83410778955323, 15.633883984358112, 9.583277898781729, 9.901039395001625, 79.03206964356335, 13.960137788439825, 8.390654964826593, 73.37871123196892, 5.320423188323475, 17.483733190700146, 40.76997656502998, 24.51517706384887, 37.62165315591435, 17.874742464953126, 81.61640010006431, 37.16131515774314, 21.483776073295754, 21.35701705200259, 44.400492512385114, 68.87478174983816, 45.46567594811223, 7.894124828295848, 10.178421821307174, 27.33286099990736, 19.853990445241415, 11.642119073860407, 7.179372234207189, 88.0705672099356, 8.252112838468568, 119.1554605082297, 6.683237745707428, 64.21504870397857, 76.47439489039093, 31.25216503124998, 23.849047142691433, 22.595792183164015, 27.5578284996407, 18.330959843879707, 18.889623506598852, 22.59908184690566, 5.252217404234388, 9.665788896830447, 54.81482553728236, 7.869379604400736, 26.86280245269814, 51.09748922540382, 53.6693593154835, 40.29166644459994, 67.3534796262372, 72.585462483489, 18.91477848490942, 22.58416297082306, 20.77094874704407, 20.147435687572873, 95.0701469640722, 15.742554401000957, 14.648740765491734, 123.35211252725566, 39.51843116820347, 9.135247110756888, 33.89807129584069, 27.90720287854814, 25.694873603700593, 23.777220134516586, 16.694673528626275, 111.42825033638329, 44.200224176541916, 35.95229586963363, 12.242959078482773, 27.774225604178092, 44.05391484127436, 48.54371016086141, 62.62115708167148, 90.17859111257029, 28.24729554499613, 7.576151990023306, 42.55316834932125, 11.804215292905726, 11.17111181888885, 30.832367563538735, 11.048415811908614, 16.45877578925021, 56.24714162757148, 55.16469529059152, 6.7375025375361695, 134.9195323296524, 13.29972706361748, 5.85330903911734, 12.147589842584239, 25.17551654189714, 8.95097148349355, 74.12431082566438, 8.921940915420613, 26.19859846188817, 15.740817893220774, 77.02671573891072, 10.850699124937657, 27.980110465421273, 77.94488242345618, 27.037998222392485, 30.24113011334866, 53.01988975114855, 102.33457170734444, 16.339324862833262, 29.149906040208492, 40.42449062888768, 16.070596974746973, 28.838217328516983, 52.81933940953812, 26.732040988324282, 24.95048895892473, 62.533998962959245, 60.76904691234484, 57.78530770548313, 85.14407530361541, 16.974219788289503, 83.94056765923068, 59.66174726255052, 35.31513470482021, 112.14019389422613, 6.054961792776291, 6.961876904526307, 64.79377887561921, 57.264308654388344, 83.55247504250302, 12.601585607900436, 69.26121097550806, 143.0378214008977, 106.37476701933646, 7.520482609333911, 12.891381829152806, 76.96863986175828, 49.29158955232366, 76.19613090949625, 48.15937151190856, 88.95956472579493, 18.392851340404107, 12.575513300130686, 9.544195280944322, 22.94949561451965, 65.57961496055609, 16.03894392286769, 5.384731334366459, 5.740486428909212, 100.55071118412398, 40.48186555264909, 34.33378511919878, 34.139943460062156, 29.787726412008496, 31.09721106091383, 82.96854315552555, 36.69064669014283, 12.836515817898167, 34.391301829081435, 7.6516880481512555, 56.11332055115707, 26.96031041289754, 21.970990127239386, 65.96071971770318, 71.1919131945671, 184.61325574073777, 153.16247963653774, 16.06026529503182, 86.49294490122612, 9.123259593907749, 140.1259513208962, 133.9449553468295, 57.69590803607866, 76.18683425712676, 12.874696209438588, 102.04632128313038, 85.89496001047259, 202.3012143155702, 33.902916231842276, 56.90485008365515, 6.559948792757639, 54.34056702272093, 28.861842358693416, 9.084180734902775, 22.036053417276857, 50.62833271862974, 121.44243055983895, 24.993328249926872, 27.606165393725213, 15.035241673107308, 33.8175367525341, 246.38961066519045, 150.72981062727294, 56.18739411880812, 25.819538768539275, 15.206633021180537, 12.924448334059376, 14.015361699077, 55.85276086643925, 12.945832669221774, 61.254374201968915, 40.215747560715805, 6.514712094297202, 53.00328228302866, 27.38317291259119, 83.00293079808483, 11.709763995955349, 83.77779058636948, 180.95617869099726, 7.505621000834308, 154.5718628498599, 152.78374823807985, 65.25954042159948, 13.01861121831639, 28.318668771201402, 6.219859654250346, 6.430845915013238, 10.72859350755255, 5.055495212621797, 48.53578241887838, 45.3858672272421, 381.41086403038827, 20.964111277747996, 21.0584247043783, 115.76956292278355, 18.973421136779976, 107.67660183167726, 11.633274724531345, 34.44393670203404, 29.864802098482652, 5.2308232441693585, 203.34692806778418, 12.288466188213889, 37.72199390610617, 72.65452966460654, 53.518121031624936, 67.18702044227213, 34.94570153494317, 15.479196166428647, 114.71689533474665, 54.77261959733451, 97.01881644894328, 12.837999674818253, 102.61062184773331, 22.087216073849763, 12.66916769803735, 5.731737393465264, 16.68763176244009, 12.390162416704753, 25.176305853279793, 296.27300170087557, 62.29953537788708, 20.907012127655257, 27.754121809520733, 14.948693857408315, 58.66334349758999, 42.26477098078723, 128.80420611228163, 18.202451440073244, 42.315663637220354, 12.541208980838162, 38.95471909289119, 96.66097602027297, 43.44585547185067, 12.900774900882508, 5.81172067628203, 6.583947099166079, 5.849288632118774, 29.589769682790806, 18.434631304355687, 33.997395581645286, 10.069077966267878, 12.644494200369017, 11.705431415015862, 22.634408536090078, 15.548866258235991, 84.73928597098973, 42.03016280096639, 87.10785591831063, 14.985985524835227, 63.09775327876211, 72.86908717130108, 8.386087609184937, 23.622143850340578, 6.303948746138566, 61.6964745479287, 8.595659735886176, 44.42214580996911, 7.964529009348881, 78.92826656386534, 20.780413158520243, 24.543859677946756, 35.57852615867647, 48.2683697666262, 62.200902523273484, 146.389379552353, 19.407277555891177, 5.088429546633797, 9.945085442399918, 8.469728093671286, 19.816995891325025, 80.48912367226458, 53.20538708341291, 34.1240417373376, 18.097334976909146, 5.921636073384461, 17.5244972999615, 22.0057087243173, 53.53183449519587, 29.63740707047008, 5.066931039002756, 11.901927203419062, 54.01915019353794, 13.062514292435196, 81.43687338058606, 5.892293087767811, 34.31787834261069, 8.822298600374978, ...])
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)