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 = 46388
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);
([2518040.6252160724, 2754846.0305139394, 2795968.950458872, 2918630.418036103, 2923874.1171977604, 2924276.5625, 2934012.425885262, 2962429.8268795093, 2962446.6734630973, 2977328.287617106, 2989368.1699318783, 2998448.4375, 2999235.5052372483, 3030662.0646128575, 3041656.25, 3082230.218299271, 3100226.77948375, 3100589.0625, 3103356.2472290425, 3117333.9751441916, 3124537.9524202985, 3130561.860045903, 3147358.9807068673, 3147451.9900913313, 3161245.3125, 3196362.6673249835, 3200664.5498492965, 3210001.4419871727, 3240409.383842816, 3248536.7718885704, 3257087.5, 3266475.7337648394, 3285868.9001323325, 3298509.2442782354, 3301636.612338006, 3329863.3531212574, 3332113.9253717535, 3332340.625, 3332805.1372605497, 3389402.223054998, 3425460.0833869344, 3427184.375, 3428448.4926950126, 3437871.632187806, 3471499.2799382103, 3532037.5, 3544562.5, 3550034.375, 3550791.622906995, 3550904.6875, 3551712.4638324683, 3552600.0, 3554701.125443545, 3555961.0198167916, 3561167.954949874, 3565228.0064013596, 3579971.4974762644, 3579995.0938858856, 3583448.4375, 3606194.7149946345, 3606195.3125, 3610129.5332098906, 3639405.776361645, 3647747.2271720804, 3651661.3038601745, 3704936.5835280926, 3705529.0815226077, 3709843.75, 3754396.493384398, 3763609.444989285, 3767195.981435423, 3768963.939605589, 3775325.3697443963, 3776110.6286881184, 3779625.0, 3787762.664211026, 3791982.8125, 3827581.25, 3829020.3125, 3829504.6875, 3830117.0891405493, 3831581.1350600044, 3832950.5052554295, 3835170.8353077094, 3835918.75, 3842035.9375, 3866905.440274908, 3868677.5319350455, 3875552.6318639903, 3899076.5625, 3909343.5681709335, 3914033.1159547376, 3921767.8466266594, 3931872.2090364844, 3945184.375, 3966911.67725589, 3966912.5, 3981949.1598478686, 3982950.0, 3985778.125, 3986167.1875, 3987279.6875, 3988773.4375, 3988900.169187655, 3989272.6239709994, 3989315.4786441796, 3990177.9620452616, 3990318.3735593474, 3990671.541375355, 3991166.6175663574, 3992892.1875, 3993784.9814636526, 3994898.271295266, 3995392.1875, 3995575.6628100984, 3995588.2931542583, 3996551.8638222087, 4006436.9665283184, 4007066.1294139544, 4013081.994951246, 4014585.0804204857, 4014643.75, 4014989.8506137207, 4017782.0420865137, 4063039.0625, 4077418.554143774, 4081332.8125, 4082667.1875, 4082679.451851974, 4097148.89457815, 4097735.9375, 4110446.875, 4111506.070850291, 4143137.756994609, 4145986.3923789705, 4146207.4474541056, 4146251.627500951, 4147697.106003713, 4147703.125, 4148390.625, 4148796.875, 4149351.3651330997, 4149598.6582317296, 4187366.877503774, 4325439.0625, 4391653.125, 4418183.860216271, 4453593.693190829, 4454942.4028367475, 4455815.209275926, 4463088.027061957, 4464795.3125, 4468041.629892213, 4475126.112934675, 4489588.928397008, 4498546.875, 4502747.064655533, 4530143.820614924, 4571018.265338907, 4609442.1875, 4610992.1875, 4659513.668204417, 4860576.5625, 4903180.1494416995, 4928960.822143211, 4931289.0625, 5001959.291766924, 5004520.589247083, 5004680.219210571, 5004695.057986507, 5004936.05785137, 5006598.4375, 5008503.700058685, 5010113.171019645, 5010124.568584292, 5013435.58351059, 5017062.382647526, 5024324.71781344, 5036370.460399921, 5037089.0625, 5037520.293396229, 5100054.995830636, 5114535.9375, 5129200.017885915, 5146556.25, 5146624.087680095, 5150633.585724164, 5174263.645305198, 5203309.219101974, 5208554.352602022, 5248790.533013834, 5248860.302737609, 5265994.802096057, 5268628.125, 5271432.47449763, 5274531.193904988, 5277921.210203555, 5280497.309097884, 5281804.6875, 5283966.832798908, 5286135.285828562, 5286745.75597277, 5286842.143511623, 5286904.835521858, 5287374.158306942, 5287525.489355432, 5287805.164469186, 5288074.614679101, 5288321.582906599, 5288401.239575543, 5288403.323273351, 5288632.627025569, 5288698.782024518, 5288718.667246846, 5288985.216647608, 5289103.222769993, 5289120.3125, 5289202.948503159, 5289476.220500579, 5289563.603105203, 5289603.710601553, 5289648.4375, 5289676.5625, 5289751.24726997, 5289854.870488665, 5290185.387332721, 5290294.929133371, 5290653.432021572, 5290749.68329975, 5290772.5391418105, 5290814.741941503, 5290964.0625, 5291050.457640195, 5291194.999789125, 5291241.042311656, 5291331.751809055, 5291421.127874318, 5291472.510862975, 5291629.032058303, 5291699.227106014, 5291709.8518540645, 5291854.6875, 5292609.735538909, 5292638.7175332885, 5292678.8862377405, 5293080.329591924, 5293196.794632849, 5293448.917869105, 5293771.985868204, 5294236.614596603, 5294270.3125, 5294321.323745817, 5294459.343344134, 5294725.0, 5295172.789064631, 5295201.5625, 5295363.274745878, 5295418.75, 5295528.125, 5295794.7685483815, 5295808.40148513, 5295828.125, 5295861.88887342, 5295862.1173417615, 5295865.625, 5295885.681958634, 5295984.14895837, 5296065.625, 5296119.71583598, 5296171.875, 5296293.7582187075, 5296343.366990659, 5296362.5, 5296372.533224703, 5296381.648068278, 5296446.784070446, 5296499.275430907, 5296534.375, 5296593.75, 5296883.051177282, 5296888.53197004, 5296945.3125, 5297038.778004431, 5297048.4375, 5297164.0625, 5297165.338069211, 5297179.085957893, 5297183.155770965, 5297185.679861379, 5297193.66969269, 5297234.556694528, 5297309.043719093, 5297341.676048091, 5297551.5625, 5297742.1875, 5297828.943696925, 5297873.311209464, 5298092.044941858, 5298246.0159582645, 5298290.934622844, 5298476.5625, 5298498.4375, 5300019.614394031, 5300378.3100484535, 5300622.677660077, 5301601.5625, 5303871.875, 5304435.403250483, 5304923.684902373, 5312121.875, 5321275.0, 5326248.996170044, 5327225.40041292, 5327285.364320954, 5328107.642100545, 5330738.226801093, 5331388.8769802665, 5331422.357598988, 5331519.206291347, 5331682.396546615, 5332107.8125, 5332370.215854886, 5332504.098145125, 5332597.9150935905, 5332619.256246976, 5332741.742974426, 5332901.5625, 5332924.118618776, 5332949.423278007, 5333117.152135321, 5333234.375, 5333265.625, 5333566.232913797, 5333590.625, 5334144.11627288, 5334495.3125, 5334841.345567608, 5334951.871792638, 5334978.099916977, 5335122.981928551, 5335203.645017735, 5335340.0985206785, 5335826.280396011, 5335863.039460647, 5336484.375, 5336614.589244137, 5336848.116459693, 5336916.605247982, 5336993.635304857, 5337641.030355787, 5338910.835794664, 5340318.144531357, 5341590.625, 5343568.221163442, 5354140.164676848, 5389743.381816295, 5394240.342789143, 5395104.938160348, 5398218.75, 5420500.0, 5421996.875, 5432947.200206637, 5460231.777126134, 5465795.3125, 5468464.0625, 5470384.375, 5471061.283280985, 5471234.375, 5472535.176829439, 5472809.176264528, 5473163.670903137, 5473634.375, 5474025.790162963, 5474551.109404459, 5474581.91869496, 5475532.447371879, 5475543.729044813, 5475564.469058542, 5475805.955036607, 5476151.582768922, 5476296.332300426, 5476452.180413007, 5476511.30965281, 5476559.375, 5476600.692402778, 5476602.739825208, 5476762.752644318, 5476837.5, 5476860.9375, 5476890.009920717, 5476932.021045173, 5477015.569958087, 5477098.80648496, 5477240.274548956, 5477290.048737626, 5477399.03321139, 5477401.9787693955, 5477432.739114858, 5477598.492442343, 5477614.385521897, 5477670.708931819, 5477715.989687031, 5477720.3125, 5477720.744452543, 5477737.332974412, 5477763.1031178795, 5477795.788500675, 5477821.4653796675, 5477840.299317421, 5477878.919855861, 5477996.180461851, 5478057.314746392, 5478268.638917645, 5478657.8125, 5479275.0, 5479291.384974955, 5479998.4375, 5480098.49753707, 5480370.739788367, 5480412.5, 5480784.375, 5480837.211851167, 5481256.25, 5481684.991301734, 5481823.827534191, 5482107.544819162, 5482294.039759623, 5482315.316058411, 5482487.754064168, 5482691.743519552, 5482768.75, 5483552.385931359, 5483578.83145341, 5484887.112066187, 5485243.75, 5485407.8125, 5485862.5, 5486653.168035377, 5486735.9375, 5486793.434289838, 5487743.75, 5488429.183691982, 5488677.372589011, 5488920.3125, 5490712.226368503, 5492092.665979496, 5492098.4375, 5493784.269788171, 5493829.6875, 5493847.51979758, 5493847.781044066, 5494008.915483947, 5494247.872097335, 5494752.834100941, 5494900.771672924, 5495218.447828269, 5495856.83273792, 5495896.875, 5495934.375, 5496098.5375372805, 5498644.248034124, 5500522.095183599, 5504769.209835145, 5508256.848999542, 5509469.68076322, 5516465.625, 5521285.029737047, 5531294.805080192, 5537984.462832597, 5540917.1875, 5546857.80175133, 5552029.6277948115, 5552517.1875, 5573301.5625, 5574143.642118199, 5574469.321482047, 5576746.875, 5576857.896157842, 5585034.361497079, 5585613.429712238, 5586244.233596793, 5586259.795798181, 5588393.371773641, 5588919.845347117, 5591041.303062124, 5598557.6303162, 5601256.25, 5609336.313079153, 5614659.894568825, 5616977.9982852535, 5617284.030129986, 5618915.003213176, 5619500.787782285, 5630630.60074303, 5631500.1085701315, 5646918.75, 5660951.451469352, 5661471.636182549, 5667852.769315069, 5672728.867153027, 5675693.659228566, 5676091.2788608195, 5676282.8125, 5677175.0, 5677697.9247938655, 5678377.349023478, 5678418.207940408, 5678653.007764895, 5685062.3549239645, 5685580.279893966, 5685682.301573805, 5685823.656909799, 5693193.608197672, 5694653.125, 5695392.477929869, 5698091.866198404, 5700051.5625, 5700102.686987736, 5701751.071057031, 5701926.363088391, 5702264.0625, 5702564.278359869, 5703102.667134803, 5705391.082275306, 5705725.0, 5706124.834137356, 5706143.687749539, 5707276.888502846, 5707690.480566299, 5709646.875, 5711938.25714486, 5712825.919924157, 5713275.123769246, 5714560.563457785, 5714929.799559599, 5715468.312661165, 5717941.965680035, 5718256.000012892, 5719054.919451908, 5722714.04488345, 5722891.587320301, 5723378.203139124, 5723622.831673666, 5723662.672392793, 5725835.9375, 5728279.256132409, 5745800.764365689, 5766745.3125, 5769485.297229832, 5769628.063950706, 5770235.259448575, 5773590.091286469, 5775499.2174452115, 5777801.951037383, 5782501.797537127, 5783966.686069841, 5787709.375, 5793140.4053309625, 5803993.75, 5806376.257932908, 5819326.209880603, 5821176.040739179, 5822717.1875, 5823294.33698756, 5823698.785578412, 5826950.864465834, 5827060.9375, 5827338.82130711, 5828006.25, 5828612.989731589, 5830096.814331291, 5830179.6875, 5831175.0, 5831883.976675386, 5831938.18869802, 5832462.5, 5834032.8125, 5835281.25, 5835695.725962877, 5835878.540740475, 5836480.513806188, 5837798.4375, 5839431.570297063, 5844821.875, 5857304.133843874, 5866269.225388222, 5866282.055895952, 5883732.775878263, 5886708.228373937, 5891289.0625, 5891360.9375, 5905108.928312539, 5906062.140336826, 5906096.875, 5907651.5625, 5908467.852971201, 5908750.03256968, 5908763.886858359, 5911653.125, 5915170.118534782, 5915566.966235338, 5915891.847717837, 5917238.80017314, 5917409.375, 5918246.416391422, 5918541.266969726, 5920666.907135038, 5922698.4375, 5928206.164300969, 5931164.953547494, 5937825.110276933, 5946499.316047079, 5947996.67597878, 5950662.026015838, 5953405.31453384, 5954245.194780109, 5954628.125, 5955513.819437267, 5955824.318520491, 5956317.1875, 5957743.490092412, 5957745.531252621, 5959098.6022644965, 5959578.125, 5960195.3125, 5960351.699619744, 5960521.468742141, 5962010.9375, 5963939.866663453, 5964243.113363956, 5966284.375, 5966775.0, 5966954.485654435, 5967480.377308083, 5967695.360407843, 5967735.84485629, 5968021.655447538, 5968098.4375, 5968431.250799151, 5968506.099671538, 5968673.1057212455, 5969105.429089428, 5969165.593882142, 5969270.3125, 5969317.1875, 5969329.445867444, 5969341.647705347, 5969367.009314121, 5969447.680401882, 5969454.6875, 5969504.6875, 5969570.546473939, 5969706.25, 5969723.4375, 5969744.331374667, 5969778.125, 5969898.602973434, 5969931.474029881, 5970030.469943593, 5970057.981896962, 5970142.1875, 5970172.49361963, 5970288.969444503, 5970434.991738569, 5970461.234931242, 5970478.125, 5970544.751199398, 5970589.145545224, 5970768.044087899, 5970940.625, 5971315.499375237, 5971498.927796679, 5971666.463938708, 5971754.6875, 5972091.618939631, 5972235.341894371, 5972310.234301201, 5972375.0, 5972464.0625, 5972698.4375, 5972805.536783109, 5973277.979052688, 5973354.493746916, 5973639.13471502, 5973885.9375, 5974034.562838768, 5974227.773593047, 5974447.894840166, 5974729.6875, 5975028.035864453, 5975096.890792653, 5975105.938485748, 5975491.0179905975, 5975512.5, 5975631.809827641, 5975685.9375, 5975700.2422202425, 5975821.875, 5976009.375, 5976184.124308904, 5976372.082290233, 5976376.5625, 5976420.3125, 5976435.6500443155, 5976499.959941709, 5976534.179814815, 5976540.625, 5976624.68560241, 5976859.375, 5976948.1164875785, 5976999.101006892, 5977003.125, 5977051.224117758, 5977106.25, 5977140.433884186, 5977163.289022789, 5977379.860282615, 5977416.148531884, 5977778.903469932, 5977790.562170978, 5977991.125952194, 5978201.5625, 5978204.6875, 5978408.90587971, 5978422.520396946, 5978436.355150629, 5978559.375, 5979105.049193033, 5979178.082128165, 5979327.485420286, 5979333.6689698, 5979363.526988418, 5979466.97006794, 5979721.332709628, 5979727.48650267, 5980175.347290029, 5980462.061624007, 5980494.286371639, 5980775.529844274, 5980930.668774927, 5981043.62992136, 5981588.302126166, 5981659.375, 5981708.118404019, 5981832.463757239, 5981860.666280485, 5981979.164212406, 5981984.266833859, 5982031.019863127, 5982125.109944988, 5982201.5625, 5982782.8125, 5983071.875, 5983118.821580461, 5983137.220957613, 5983237.045683823, 5983279.433732763, 5983348.519606979, 5983365.625, 5983376.700657088, 5983378.308195324, 5983456.383030438, 5983531.096481451, 5983723.4375, 5983914.0625, 5983918.75, 5984048.426312052, 5984106.25, 5984145.790962698, 5984155.724658339, 5984172.243558378, 5984176.251766797, 5984307.446835616, 5984478.7209376935, 5984489.5576060815, 5984492.127922901, 5984587.5, 5984673.4213722795, 5984885.9375, 5984952.167035454, 5984975.507751383, 5985049.22687527, 5985119.931960179, 5985294.995548382, 5985315.629822483, 5985320.084037212, 5985676.600575726, 5985721.531094282, 5985787.5, 5985849.426593792, 5985888.510949046, 5985994.415534561, 5986008.666403702, 5986088.355097691, 5986212.5, 5986787.7759806, 5987559.227856444, 5988099.849551534, 5988203.416987528, 5988262.798739822, 5988387.142267844, 5988849.980525487, 5988850.0, 5988912.612165055, 5989014.728562961, 5989043.577810004, 5989147.638159515, 5989247.573638613, 5989516.490231408, 5989542.717955914, 5989628.125, 5989656.212872473, 5989720.665838351, 5989943.75, 5990327.143607743, 5991366.702067749, 5991548.4375, 5992084.375, 5992247.649493542, 5992691.396495178, 5992926.5625, 5993504.731690669, 5993855.947526038, 5993878.125, 5994863.021760319, 5994919.393744858, 5994932.53509293, 5995046.92456901, 5997845.155948475, 5998326.069068019, 5998406.25, 5999667.8937081015, 6000393.917831663, 6001050.34568798, 6005726.311869915, 6009620.169061832, 6014316.73818157, 6014447.566023891, 6016025.4660863215, 6020720.532673455, 6021800.0, 6024927.7020239, 6028032.8125, 6029245.516489132, 6029546.661057827, 6029610.579387199, 6030815.813155249, 6031132.750359388, 6031793.76510528, 6031951.953093129, 6032098.776674456, 6032738.956209069, 6033104.128533198, 6033107.8125, 6033173.631626781, 6033230.587509103, 6033280.561433008, 6033300.3837618055, 6033471.506772141, 6033627.158551846, 6033662.5, 6033674.882969506, 6033745.16752007, 6033760.741131082, 6033818.674004331, 6034023.567931183, 6034090.0518962005, 6034121.834085442, 6034134.375, 6034156.545092761, 6034238.295929223, 6034449.336793602, 6034590.288374368, 6034598.6742587425, 6034634.925317533, 6035611.752119591, 6035912.5, 6035957.8125, 6035968.75, 6036064.0625, 6036835.9375, 6039961.246622696, 6040123.294342464, 6041213.375040751, 6043020.68832913, 6045203.930814558, 6045623.951468341, 6045795.3125, 6045898.4375, 6046071.875, 6047127.830374295, 6047435.90375546, 6047528.776043961, 6048587.61338131, 6048785.891397706, 6049649.850568875, 6049783.901497439, 6049789.564604271, 6050837.658130635, 6051345.23694867, 6052703.125, 6055975.892932791, 6056034.44075481, 6057823.4375, 6058329.444273386, 6058734.375, 6058859.421411045, 6060193.312179777, 6060916.76895301, 6063449.163284211, 6063673.046695956, 6063768.463117889, 6064050.7187866075, 6064193.623191367, 6064244.587998731, 6064391.944732124, 6064427.736343365, 6064704.085042827, 6064717.081574621, 6064787.5, 6064941.87910221, 6064957.8125, 6065179.08253583, 6065283.891636009, 6065315.5655670455, 6065319.490550867, 6065492.346936191, 6065513.928859658, 6065536.594707793, 6065545.259233788, 6065563.714315676, 6065582.591410317, 6065729.159971933, 6065918.545201471, 6066061.105625032, 6066124.689170599, 6066915.748117547, 6066967.134733239, 6066978.37450924, 6067120.450495227, 6067204.6875, 6067290.625, 6067292.1875, 6067570.3125, 6067584.692084726, 6067682.387315364, 6067885.9375, 6067943.261143339, 6068170.3125, 6068473.372717023, 6068490.514686267, 6068506.199361806, 6068555.968493377, 6068565.4327535685, 6068603.006543618, 6068626.5625, 6068630.8821413955, 6068660.677315149, 6068697.258575898, 6068743.434483157, 6068762.261305149, 6068835.015808283, 6068839.872855621, 6068891.202173726, 6068892.40858787, 6068902.410608235, 6069124.393463978, 6069397.019237009, 6069406.25, 6069637.5, 6069657.610464712, 6069672.506289882, 6069887.5, 6069910.351656955, 6069918.888108515, 6069956.226186753, 6069987.5, 6070135.659825455, 6070163.601448561, 6070289.02778302, 6070425.224853911, 6070444.085218161, 6070533.129999692, 6070615.33793385, 6070672.385941558, 6070679.264324869, 6070679.500108775, 6070693.9416736355, 6070718.963950495, 6070797.829865288, 6070904.257751148, 6070943.904358344, 6071210.761804007, 6071486.973798482, 6071559.137919101, 6071956.740390249, 6072203.440431444, 6072245.0305383075, 6072484.305411018, 6072494.330592113, ...], [7.121508457229481, 15.622002832470667, 26.86782310221424, 10.03628144324826, 47.01063120453629, 58.50937253918984, 11.013803656190758, 11.352786267493329, 25.095595639420758, 29.491122314325064, 6.39984902445238, 82.94077393788157, 13.515471513559584, 113.8593756330374, 82.16831584958877, 17.441617410500093, 138.5047884856934, 95.20588093755626, 37.967891163964325, 22.55385710354433, 22.199561488624767, 27.343854247338243, 13.625185857011395, 5.97752832179726, 94.46736047624464, 25.636934259947378, 17.193506465831767, 14.501240281244232, 6.488478313525257, 6.62635862917158, 111.35994628134449, 18.740012545695233, 26.51873735865602, 26.184048776310643, 18.33728725651797, 84.34546160188798, 26.080905187385458, 58.678047468464044, 16.986321677872557, 22.50401399485684, 12.450653688248371, 41.92748685438321, 7.136036729389147, 37.52221167099812, 89.29707515584471, 43.02958959346769, 33.14224249382836, 45.69965186255725, 13.152555080344822, 40.28330549144801, 27.828723444215036, 99.39813486037497, 73.73350992374571, 21.679529537933853, 133.58872272345928, 79.53740946379926, 22.8085416361521, 34.120481134161096, 88.0369929319707, 13.066705679812488, 32.04493148042329, 17.32998170247172, 180.28439932416765, 9.648062375889953, 9.661663238438491, 29.450155243569853, 7.99017161202778, 36.828571453122024, 7.024624141852212, 64.3948374746216, 26.657819001350923, 14.12967477058423, 6.839638583185713, 34.76187731057505, 56.03333614793975, 33.1645428243947, 60.318108394483914, 59.30036510643932, 30.393627122882503, 61.03399608217702, 24.61480166141743, 14.52079181648582, 6.868750798259258, 71.86761613420934, 141.46515818417865, 35.240840932353386, 18.87492255640403, 20.81287664762498, 26.974466092996586, 45.858616035116654, 5.923725642024158, 77.98324887413875, 18.233685344197873, 8.471490297057967, 39.58874664766925, 18.782258640513334, 71.18090180910204, 10.027280124066118, 62.40716246699153, 30.201389376605515, 50.64180911837572, 55.32324811115771, 38.00610599326642, 11.402872826423929, 5.656867790381875, 7.083503375092225, 25.674793894725894, 72.61507736314616, 7.486869575714374, 29.567290855384595, 45.71053174431488, 12.229428086989316, 10.877489675532914, 74.88653403527321, 8.671211348215557, 22.329301005465332, 42.46959616570821, 27.384912333288007, 91.98637819051737, 18.81909500912308, 94.41739821968991, 85.02507499886028, 27.233246658267877, 18.321584114139124, 129.99766733040508, 56.63746233106147, 157.12430301034107, 64.40515908957208, 90.99713876341633, 5.4817329073324945, 31.278001929440716, 32.177483074443906, 25.427783426279134, 5.723311397839132, 23.907629973209954, 22.95396969748655, 5.617650298349299, 131.18278712159375, 33.878176040331105, 81.66049934970707, 75.76846888329159, 18.432825632668113, 21.82205394694907, 36.981175456366046, 32.680486978592114, 73.50803022150471, 13.285738427294527, 9.28382535314736, 131.94342743304415, 77.67924884290187, 9.820721216112485, 47.48975372282249, 43.547708038157374, 115.26957034432371, 26.12948979261744, 76.97206461779047, 9.497086880579099, 97.59279380675083, 8.95266759413793, 60.01971823318625, 101.28106081471215, 103.35784841409487, 36.21372550886906, 25.476435028963543, 70.43520114957897, 82.8151214110841, 164.3236343203382, 39.99435181183558, 8.589302950159674, 6.447920655835397, 7.153451874517084, 60.70459291399252, 17.70439298257174, 14.251482638750858, 30.02051628599787, 13.744551087318012, 26.402475899414224, 34.581832161224085, 49.36618997917438, 49.506957744234, 14.869191329512343, 25.956183153060174, 40.41281449868995, 20.25849344989722, 94.75626563577468, 5.0809134871736585, 7.909081688334306, 22.360907627404607, 201.0106328017481, 6.698439189738677, 20.715017671789695, 5.579866922951318, 19.88767106866497, 75.66350923065151, 12.006802643751364, 34.799073125717015, 6.637666378923929, 100.5759646111861, 33.23731770453832, 96.01135522638081, 21.1035281318928, 6.558931590154249, 6.2616567044466365, 17.010654232481954, 23.858477797368312, 15.574215013099082, 8.5560105354554, 13.299795362625337, 9.096058458835074, 40.0597576803483, 11.452439588112519, 25.33286269512002, 40.8643930738475, 19.903983044751087, 8.788170199091107, 66.00913196601152, 40.96871405519428, 91.60348457591243, 29.032925282321322, 21.907953188091962, 26.032392464697878, 37.65706078657308, 60.81276069894934, 23.558129206464223, 56.4914916833855, 139.10983391856342, 56.224547807517354, 61.756171080420486, 7.492572824395075, 12.353114273791896, 8.681828384984248, 32.63990290877388, 15.755839029246223, 36.03055690386754, 54.94511899408564, 44.047775412963496, 104.39835941300267, 79.0809830966139, 62.088864343869844, 19.14362869675606, 18.73857656741678, 50.30517903415173, 11.742246949530893, 10.62816346708105, 15.779221747455207, 26.959824763424592, 100.82641359826692, 17.15452089517313, 9.426941537544295, 80.90038946840171, 60.302600581195435, 5.087758859154118, 37.17285780877315, 48.594550446728014, 93.72973998600497, 39.99688718301974, 19.034028179945587, 38.08346134332891, 44.16807975501582, 30.866460748557373, 49.51735769545433, 34.32411798872086, 13.031662977070766, 15.846602139537058, 61.79673709667753, 136.36479357678627, 10.79186149625089, 59.43455119586303, 20.58013719498643, 108.42438010255292, 9.338362237326686, 17.77235212652301, 68.11292714622142, 88.74512647963341, 41.492673225278196, 14.605896543963121, 62.67760396216112, 57.557960939634256, 42.188806599286416, 18.069701683305084, 49.861545750992505, 36.113307686771215, 94.8776137031247, 50.090803739887804, 30.73090625235262, 13.950101785496638, 123.09706582934645, 11.710288780813865, 14.042735018260627, 38.57544383813318, 5.208075789572595, 10.646577743148407, 21.379616970257274, 60.496539449128875, 62.49972436226315, 7.928860952893132, 112.02448453787528, 44.55273883290614, 16.200113805649558, 6.826935774418895, 123.95194999814207, 64.98969058933879, 89.4680077468392, 11.429816277868895, 19.24126611568785, 68.61066141245772, 54.51826725781301, 13.233213320530938, 23.07072902590278, 38.48764084477543, 116.79418091378997, 17.605871340352333, 16.724250618353956, 20.792893278843884, 25.56053021674728, 12.491951162846663, 105.84126852130018, 35.8533572091078, 6.561079571936449, 30.748597825516292, 59.876764357713306, 10.979931312390502, 20.645760506730454, 6.408203241767735, 5.642678613466717, 22.064931538578776, 75.93882832074578, 18.379136638383855, 63.7977307066743, 121.4623991044093, 38.604029151329236, 64.60000001442415, 130.79939583687414, 47.151258881387854, 6.546082572135056, 40.08601034760838, 45.06680724608081, 6.1208645395283465, 22.329165965413473, 13.449394961502751, 19.889127861664637, 124.78945157839885, 25.427018524082584, 17.492225288803912, 35.84575964445041, 17.418057091977335, 10.6604271452214, 86.91398926345728, 9.2362690413996, 17.623839887328554, 13.171970363676238, 8.867039564905003, 70.72914448695944, 13.247757279258657, 22.36284196742851, 22.917183720037517, 34.724727652417236, 6.299395588598231, 45.02468901234618, 39.8339105864236, 39.43079929978848, 39.36378809896869, 137.77152261844054, 118.45243752960475, 51.49846863759563, 85.97769575938437, 11.714916988562448, 40.592166130245616, 12.664655165792361, 25.136590189281087, 22.647223104102043, 29.885631521072945, 21.523069090140936, 25.03330716524328, 66.66451802443345, 13.711256525231809, 36.97768209160355, 16.75629476075979, 13.925007665647774, 15.019331976277343, 21.077468146561262, 9.914919395147848, 8.493696731335435, 40.52879567076275, 33.88936216047285, 22.72048759443743, 22.533522322103856, 40.67918037017536, 46.771564236303846, 13.021546633563796, 31.454904108130236, 62.66521805461834, 8.491842069492819, 50.1741011038118, 20.764643382154592, 132.88541458660052, 5.553630334823579, 102.84910609283551, 7.623231006859917, 34.44737614066241, 5.84390691740163, 22.036840198304535, 113.20783345544903, 122.49384811529782, 103.12240379357827, 8.633529003249283, 9.769162031305898, 58.45089273052609, 5.686339535274176, 26.980696308156574, 6.183263092511685, 42.920997664243046, 5.929789832563014, 61.170736380572166, 58.79706618294118, 27.367508872395675, 68.64533822164638, 12.347677666738573, 154.32809161374726, 38.55005754451765, 81.01998338303194, 8.139859032171245, 39.89822360043007, 7.842466691009269, 6.8439548159986385, 32.29720140524364, 16.17432382260327, 5.912945131134354, 9.555883186419377, 87.92219507148731, 90.1663884771283, 25.222105493198416, 52.397548261530936, 36.197175346371, 91.82758469949283, 81.13015835680801, 38.70831199389707, 15.108117062144114, 89.19827438926411, 10.667659725836362, 134.3317091215296, 35.86281320523298, 7.352029494551889, 77.28259632754722, 149.93028636871276, 23.509338420361516, 75.05046379787623, 10.967142046307401, 46.17530482153521, 6.352252509167387, 25.55435179802882, 31.70809840748369, 20.864574990545318, 19.818177500311254, 180.73636293434862, 7.497485198046017, 51.88550183162342, 33.28407512207804, 136.07397512326244, 5.466076695207728, 44.00083583119428, 45.8338186078767, 11.931530403780135, 6.345964923963688, 35.760251425736016, 72.26830813993021, 18.205013343122605, 21.419401644019942, 6.781169271328337, 30.685884097223806, 73.31558373690413, 27.39658752313576, 54.79600034647512, 89.63986169123004, 26.559869165095087, 6.883226185036146, 29.243581496570005, 47.003793164367934, 38.71850415646752, 20.263412680503418, 30.65624339916355, 16.831183168852746, 13.225670651096198, 10.468403765515651, 65.96734371848136, 15.147487099784858, 59.04824012120194, 5.413028827591974, 58.52934483039095, 74.50064844114856, 23.194024820809876, 13.004433454044564, 6.174040860273673, 6.188512336175252, 53.415120616859184, 46.576588433689345, 32.917718403655265, 119.04820680516904, 208.71481592823636, 52.33078691554748, 7.5707338540656535, 28.442404110584796, 35.49948990412817, 139.08303518646832, 27.17583122976206, 36.38843207001262, 6.985896032376265, 76.81212950243386, 83.93060744411427, 39.12890981478999, 27.174203926241372, 8.406116055915058, 26.006265408696084, 59.28388007760053, 11.614185631250201, 41.885154671786665, 49.805820877760695, 13.49908366697652, 8.94777496131083, 9.168295331142591, 51.78496822905433, 7.683222014820149, 20.66426185252156, 17.02720638273373, 78.30165997999995, 24.64471736790961, 14.709432107068407, 18.345927942542588, 37.87513069506913, 62.96041649956279, 98.9201470244695, 20.934520716359412, 16.884290368141468, 10.589396823623101, 23.130824895986944, 22.141813644618672, 86.86390340724306, 9.12860685352898, 9.535547273482045, 5.06857609245448, 139.7705847360889, 11.252080029593744, 20.49861784042997, 9.481552767797583, 90.66693066298329, 5.9026996217120855, 22.126050744161716, 62.36911603206637, 75.27229240126749, 19.00704375971631, 18.195988214932456, 19.708147918199412, 19.072190710146543, 8.503315790979716, 15.920018898733765, 147.70817369374473, 38.79240132386955, 115.10192726597711, 39.045024311852885, 23.692578159817742, 23.101093070499367, 51.32169020677793, 79.49607947260867, 7.830296973888957, 13.883626200518894, 31.93156357541592, 35.98981718591699, 24.748145883226336, 78.66509477831194, 50.10118958570827, 73.01808299114411, 129.65760253661193, 52.43244157765467, 34.29841060176392, 50.3765788139171, 118.7148189204544, 32.33325469604457, 63.86187299399311, 133.32272940800988, 27.810697522121423, 10.143715434795412, 52.71314664587577, 87.16142303225898, 234.70146015790968, 45.53963724900058, 27.378095166221964, 6.935819850712588, 27.820231339735226, 19.588893307686153, 43.03810611989583, 57.028200339722474, 111.60749705781704, 23.01741417395753, 77.21975983225705, 78.90326613646755, 117.82391863121083, 109.32896161925679, 25.48080309046658, 96.81255055381713, 45.87065090927514, 19.747349883243878, 177.94251338137124, 24.24419503017732, 42.02218124179028, 118.45636865817517, 18.12228841394818, 51.412907712457795, 95.59712381659573, 33.03578853135948, 7.377188874214004, 20.562270363212036, 18.70009530065685, 25.132401295383882, 21.756608049508767, 18.026756305765026, 92.00221869060124, 118.33682689940527, 42.39831368261804, 12.855056905170327, 56.57813819419324, 67.28604854418947, 11.487758831816931, 6.7968524458059205, 95.25276723139105, 64.64980267186132, 15.78179884346931, 72.50437746626585, 68.38013970805851, 27.218339466001787, 20.23039831642939, 35.33806421693265, 79.65956702440539, 14.224204950819543, 38.86678634750449, 154.67021158904706, 33.63787248433141, 28.630212549802526, 77.81766833685148, 33.42788562465742, 25.87142435485772, 17.172420341408312, 25.584649130943845, 14.824214532720621, 94.94162984805583, 37.01914108410073, 5.691550523791268, 48.137296180040934, 39.29118583586383, 170.56758718082102, 46.94576997630365, 46.52981765540287, 11.51423800981813, 31.620212967179086, 45.94013336063631, 23.984986242302604, 31.364410307037588, 163.99882531623254, 30.120087444136423, 35.402438025567264, 15.629028889696825, 75.99440905295637, 49.558871086389495, 22.10145703748166, 11.488613221571162, 6.534749353607183, 42.7321424412627, 94.86949226182212, 33.06482200163124, 43.24726317185575, 42.44377419795212, 7.558424622542113, 17.210039403868024, 5.269248223176745, 63.725378032827436, 24.344963365692358, 5.32191845673786, 5.318389538689984, 59.156479174212066, 87.46946723302393, 40.4245004087766, 95.79583791158801, 25.940502086978857, 13.200787085650273, 25.152212382220075, 67.59622094940022, 19.92231189654153, 23.11557239237186, 64.58275087267324, 55.87776181340682, 26.878129074216314, 11.152481786951665, 13.87371308070169, 11.803061629274211, 37.79576222978704, 17.612782635365416, 112.56604865966864, 13.435359499909193, 54.69310303861171, 88.91175473333871, 16.345497015651972, 22.28994560674271, 69.4560180876921, 40.146771600746774, 5.237170597997886, 12.466700682475118, 60.436396248577424, 36.765792473822614, 10.669443318581454, 63.378182654890644, 122.09992531657153, 5.424459872713091, 116.77538345036787, 10.637009448482063, 79.84780103016729, 6.7259422952405, 12.634660344766228, 52.667838895556066, 66.15865096670771, 10.0895516507509, 27.340428065277095, 12.457757225368375, 43.076056372605144, 47.13603157975368, 21.806773686068468, 33.903808796380986, 5.414684104533971, 114.08413684529302, 14.141787236899894, 5.9356806634488, 125.06241647861114, 25.62092319780225, 21.146019680704043, 95.513395885212, 19.275765369342697, 20.214479417106944, 80.57695861136114, 18.495812677006498, 32.4636266449625, 37.80781571684686, 20.719377553520694, 26.357582085856855, 7.92162786697837, 44.04051104836605, 16.251496571733757, 15.815163532539597, 9.112138637412615, 13.262716106569425, 26.55511101743239, 6.064489566064364, 35.0117621905538, 110.11360878609943, 92.45905599468908, 32.00451480536033, 60.982681217377845, 6.444220816840798, 178.26568593570283, 10.752940888032146, 11.258517268200581, 32.03154196771669, 214.59590756143493, 15.6889784766279, 15.474019373005998, 10.895936623789835, 68.06004577796419, 28.797270931154433, 33.778640658856126, 5.813152917031411, 53.32174108007725, 8.556911935821736, 25.349597052730182, 16.560771282924193, 32.16183291119789, 13.709659534968067, 7.287442131900716, 38.95817779558579, 11.035843597013692, 33.51212112104791, 9.31780340501476, 35.09493267751627, 35.270637802904396, 5.739853066627651, 121.20059068389502, 22.773729749741186, 23.53659663926033, 7.604982824715598, 10.788443920457674, 63.66037555309123, 23.891774873912418, 75.95475904436306, 20.77094218489815, 8.90486048285502, 28.599822116146264, 5.763346841046017, 8.797222189574986, 29.712847867966747, 16.109244293827974, 44.802917200012324, 7.549714552673267, 6.823234106996755, 113.64277866651071, 23.040279998855443, 77.01495801409469, 88.59805912990299, 39.19770972814498, 51.30881267352688, 88.17838963362283, 20.582833992590345, 96.02145721317632, 22.042483570079952, 5.644080116236565, 101.06088966613477, 19.157471151660573, 37.1408591751713, 36.18537503055389, 30.38788359445184, 5.325558381751814, 41.956465547769696, 67.3246098308046, 26.838792473678062, 12.593956912096075, 42.89262796183788, 72.74131919372567, 13.90166262308142, 43.11333204264616, 77.72322268796617, 20.207516481171645, 36.882425736819016, 111.68183830575579, 14.376593508505826, 198.99650177705746, 32.436922115731974, 18.54883515374506, 31.39362744658258, 5.633459033560949, 5.795665639923946, 6.073308853584867, 22.014026629270873, 144.2166961434129, 157.63269489018967, 146.65289628645183, 55.57088616931732, 6.2151976347738245, 82.21702042027263, 15.780533160996313, 34.961173461129185, 23.035768230481647, 15.710683627502387, 70.58906410163574, 5.533814097931217, 11.79853461002566, 9.635663542094314, 38.06441070022084, 106.39564529096569, 39.64293057395132, 58.489238352865954, 23.209825036018984, 12.837662234113484, 95.76078358476028, 10.59711089842914, 17.832752874787758, 98.60357778514134, 42.15868376832549, 9.211750986369239, 71.33274193026595, 5.395576715213323, 41.3630441125354, 17.194132035591508, 7.588506315457868, 44.793744179446044, 220.1551568285557, 5.184322232210238, 28.514128376633927, 5.910616616181845, 8.415877487770137, 107.03164465898061, 10.130389070450027, 45.28123591780368, 52.91762110802248, 34.42063005665219, 121.50803208416198, 64.82052059286288, 8.457103374060745, 49.012442098966275, 32.97848527511896, 116.70064258701478, 23.58893136776345, 5.2167170607161255, 89.15890041798772, 68.3555402798558, 82.79488664342102, 9.094115062633767, 27.87412918810374, 6.594232184452948, 9.42914953269383, 27.644367904849748, 138.945588248524, 21.761562393894117, 132.76146431278858, 5.82577396800604, 98.67712246170971, 35.56254937695943, 96.17029649234293, 6.497448511514896, 74.27907008401203, 8.162011030257672, 102.88679382343962, 58.97499895276983, 323.7055213368317, 10.530974787171674, 14.151295986217757, 181.15568922172812, 23.919763331449886, 29.253617139185348, 154.89255228852346, 19.512158779875804, 53.29884958884168, 22.68069330888749, 30.24715508811501, 167.93295189425612, 45.30321632929053, 10.677608984931531, 51.769069124968816, 27.445632704631077, 13.371840244652336, 6.7516989632904885, 5.65637040653116, 57.91134840689318, 9.220902535435107, 12.338040217604675, 27.513215235914565, 10.62384975598386, 24.81391007272949, 81.45494290114065, 206.91704486075818, 5.717542134839765, 47.65707957105255, 8.352775002164554, 11.046218603620693, 16.674443123545586, 9.450876807082663, 131.06106475086372, 75.18328050150143, 44.81165831117331, 162.9848640102485, 25.688549864075352, 6.422443284806764, 66.32361027040831, 15.21917083410321, 52.78486995733164, 14.700205408290339, 86.91035777808858, 11.049467899043675, 208.36239777955112, 14.256113007092768, 118.94210880072865, 105.55068203443489, 28.815882739542058, 164.48094500541853, 8.500398305233592, 82.90555622946869, 32.79719483374562, 5.220061075276246, 15.925534273474238, 17.717214411167497, 15.856932326132796, 22.41693376414913, 20.49233769931229, 5.824730214566815, 169.46662927901795, 39.25732322574192, 61.32090023829216, 120.18122161775628, 115.8267511518587, 7.99930384123066, 41.06056365366901, 43.565173383806375, 50.66422308184832, 7.050323616381267, 13.43399792636687, 26.025317212966264, 107.60692932117107, 29.572599288724362, 24.7916951781314, 30.67918725822948, 12.032773784462899, 22.295302645597776, 33.7539343272755, 98.09128392617332, 7.178851860148547, 25.90873838850674, 90.95598354862284, 138.80377264070114, 100.31348993629672, 20.93553689374285, 94.04074754700713, 17.210564963837903, 16.297513086650824, 7.049253905436095, 40.53171290441831, 8.619478700934993, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2518040.6252160724, 2754846.0305139394, 2795968.950458872, 2918630.418036103, 2923874.1171977604, 2924276.5625, 2934012.425885262, 2962429.8268795093, 2962446.6734630973, 2977328.287617106, 2989368.1699318783, 2998448.4375, 2999235.5052372483, 3030662.0646128575, 3041656.25, 3082230.218299271, 3100226.77948375, 3100589.0625, 3103356.2472290425, 3117333.9751441916, 3124537.9524202985, 3130561.860045903, 3147358.9807068673, 3147451.9900913313, 3161245.3125, 3196362.6673249835, 3200664.5498492965, 3210001.4419871727, 3240409.383842816, 3248536.7718885704, 3257087.5, 3266475.7337648394, 3285868.9001323325, 3298509.2442782354, 3301636.612338006, 3329863.3531212574, 3332113.9253717535, 3332340.625, 3332805.1372605497, 3389402.223054998, 3425460.0833869344, 3427184.375, 3428448.4926950126, 3437871.632187806, 3471499.2799382103, 3532037.5, 3544562.5, 3550034.375, 3550791.622906995, 3550904.6875, 3551712.4638324683, 3552600.0, 3554701.125443545, 3555961.0198167916, 3561167.954949874, 3565228.0064013596, 3579971.4974762644, 3579995.0938858856, 3583448.4375, 3606194.7149946345, 3606195.3125, 3610129.5332098906, 3639405.776361645, 3647747.2271720804, 3651661.3038601745, 3704936.5835280926, 3705529.0815226077, 3709843.75, 3754396.493384398, 3763609.444989285, 3767195.981435423, 3768963.939605589, 3775325.3697443963, 3776110.6286881184, 3779625.0, 3787762.664211026, 3791982.8125, 3827581.25, 3829020.3125, 3829504.6875, 3830117.0891405493, 3831581.1350600044, 3832950.5052554295, 3835170.8353077094, 3835918.75, 3842035.9375, 3866905.440274908, 3868677.5319350455, 3875552.6318639903, 3899076.5625, 3909343.5681709335, 3914033.1159547376, 3921767.8466266594, 3931872.2090364844, 3945184.375, 3966911.67725589, 3966912.5, 3981949.1598478686, 3982950.0, 3985778.125, 3986167.1875, 3987279.6875, 3988773.4375, 3988900.169187655, 3989272.6239709994, 3989315.4786441796, 3990177.9620452616, 3990318.3735593474, 3990671.541375355, 3991166.6175663574, 3992892.1875, 3993784.9814636526, 3994898.271295266, 3995392.1875, 3995575.6628100984, 3995588.2931542583, 3996551.8638222087, 4006436.9665283184, 4007066.1294139544, 4013081.994951246, 4014585.0804204857, 4014643.75, 4014989.8506137207, 4017782.0420865137, 4063039.0625, 4077418.554143774, 4081332.8125, 4082667.1875, 4082679.451851974, 4097148.89457815, 4097735.9375, 4110446.875, 4111506.070850291, 4143137.756994609, 4145986.3923789705, 4146207.4474541056, 4146251.627500951, 4147697.106003713, 4147703.125, 4148390.625, 4148796.875, 4149351.3651330997, 4149598.6582317296, 4187366.877503774, 4325439.0625, 4391653.125, 4418183.860216271, 4453593.693190829, 4454942.4028367475, 4455815.209275926, 4463088.027061957, 4464795.3125, 4468041.629892213, 4475126.112934675, 4489588.928397008, 4498546.875, 4502747.064655533, 4530143.820614924, 4571018.265338907, 4609442.1875, 4610992.1875, 4659513.668204417, 4860576.5625, 4903180.1494416995, 4928960.822143211, 4931289.0625, 5001959.291766924, 5004520.589247083, 5004680.219210571, 5004695.057986507, 5004936.05785137, 5006598.4375, 5008503.700058685, 5010113.171019645, 5010124.568584292, 5013435.58351059, 5017062.382647526, 5024324.71781344, 5036370.460399921, 5037089.0625, 5037520.293396229, 5100054.995830636, 5114535.9375, 5129200.017885915, 5146556.25, 5146624.087680095, 5150633.585724164, 5174263.645305198, 5203309.219101974, 5208554.352602022, 5248790.533013834, 5248860.302737609, 5265994.802096057, 5268628.125, 5271432.47449763, 5274531.193904988, 5277921.210203555, 5280497.309097884, 5281804.6875, 5283966.832798908, 5286135.285828562, 5286745.75597277, 5286842.143511623, 5286904.835521858, 5287374.158306942, 5287525.489355432, 5287805.164469186, 5288074.614679101, 5288321.582906599, 5288401.239575543, 5288403.323273351, 5288632.627025569, 5288698.782024518, 5288718.667246846, 5288985.216647608, 5289103.222769993, 5289120.3125, 5289202.948503159, 5289476.220500579, 5289563.603105203, 5289603.710601553, 5289648.4375, 5289676.5625, 5289751.24726997, 5289854.870488665, 5290185.387332721, 5290294.929133371, 5290653.432021572, 5290749.68329975, 5290772.5391418105, 5290814.741941503, 5290964.0625, 5291050.457640195, 5291194.999789125, 5291241.042311656, 5291331.751809055, 5291421.127874318, 5291472.510862975, 5291629.032058303, 5291699.227106014, 5291709.8518540645, 5291854.6875, 5292609.735538909, 5292638.7175332885, 5292678.8862377405, 5293080.329591924, 5293196.794632849, 5293448.917869105, 5293771.985868204, 5294236.614596603, 5294270.3125, 5294321.323745817, 5294459.343344134, 5294725.0, 5295172.789064631, 5295201.5625, 5295363.274745878, 5295418.75, 5295528.125, 5295794.7685483815, 5295808.40148513, 5295828.125, 5295861.88887342, 5295862.1173417615, 5295865.625, 5295885.681958634, 5295984.14895837, 5296065.625, 5296119.71583598, 5296171.875, 5296293.7582187075, 5296343.366990659, 5296362.5, 5296372.533224703, 5296381.648068278, 5296446.784070446, 5296499.275430907, 5296534.375, 5296593.75, 5296883.051177282, 5296888.53197004, 5296945.3125, 5297038.778004431, 5297048.4375, 5297164.0625, 5297165.338069211, 5297179.085957893, 5297183.155770965, 5297185.679861379, 5297193.66969269, 5297234.556694528, 5297309.043719093, 5297341.676048091, 5297551.5625, 5297742.1875, 5297828.943696925, 5297873.311209464, 5298092.044941858, 5298246.0159582645, 5298290.934622844, 5298476.5625, 5298498.4375, 5300019.614394031, 5300378.3100484535, 5300622.677660077, 5301601.5625, 5303871.875, 5304435.403250483, 5304923.684902373, 5312121.875, 5321275.0, 5326248.996170044, 5327225.40041292, 5327285.364320954, 5328107.642100545, 5330738.226801093, 5331388.8769802665, 5331422.357598988, 5331519.206291347, 5331682.396546615, 5332107.8125, 5332370.215854886, 5332504.098145125, 5332597.9150935905, 5332619.256246976, 5332741.742974426, 5332901.5625, 5332924.118618776, 5332949.423278007, 5333117.152135321, 5333234.375, 5333265.625, 5333566.232913797, 5333590.625, 5334144.11627288, 5334495.3125, 5334841.345567608, 5334951.871792638, 5334978.099916977, 5335122.981928551, 5335203.645017735, 5335340.0985206785, 5335826.280396011, 5335863.039460647, 5336484.375, 5336614.589244137, 5336848.116459693, 5336916.605247982, 5336993.635304857, 5337641.030355787, 5338910.835794664, 5340318.144531357, 5341590.625, 5343568.221163442, 5354140.164676848, 5389743.381816295, 5394240.342789143, 5395104.938160348, 5398218.75, 5420500.0, 5421996.875, 5432947.200206637, 5460231.777126134, 5465795.3125, 5468464.0625, 5470384.375, 5471061.283280985, 5471234.375, 5472535.176829439, 5472809.176264528, 5473163.670903137, 5473634.375, 5474025.790162963, 5474551.109404459, 5474581.91869496, 5475532.447371879, 5475543.729044813, 5475564.469058542, 5475805.955036607, 5476151.582768922, 5476296.332300426, 5476452.180413007, 5476511.30965281, 5476559.375, 5476600.692402778, 5476602.739825208, 5476762.752644318, 5476837.5, 5476860.9375, 5476890.009920717, 5476932.021045173, 5477015.569958087, 5477098.80648496, 5477240.274548956, 5477290.048737626, 5477399.03321139, 5477401.9787693955, 5477432.739114858, 5477598.492442343, 5477614.385521897, 5477670.708931819, 5477715.989687031, 5477720.3125, 5477720.744452543, 5477737.332974412, 5477763.1031178795, 5477795.788500675, 5477821.4653796675, 5477840.299317421, 5477878.919855861, 5477996.180461851, 5478057.314746392, 5478268.638917645, 5478657.8125, 5479275.0, 5479291.384974955, 5479998.4375, 5480098.49753707, 5480370.739788367, 5480412.5, 5480784.375, 5480837.211851167, 5481256.25, 5481684.991301734, 5481823.827534191, 5482107.544819162, 5482294.039759623, 5482315.316058411, 5482487.754064168, 5482691.743519552, 5482768.75, 5483552.385931359, 5483578.83145341, 5484887.112066187, 5485243.75, 5485407.8125, 5485862.5, 5486653.168035377, 5486735.9375, 5486793.434289838, 5487743.75, 5488429.183691982, 5488677.372589011, 5488920.3125, 5490712.226368503, 5492092.665979496, 5492098.4375, 5493784.269788171, 5493829.6875, 5493847.51979758, 5493847.781044066, 5494008.915483947, 5494247.872097335, 5494752.834100941, 5494900.771672924, 5495218.447828269, 5495856.83273792, 5495896.875, 5495934.375, 5496098.5375372805, 5498644.248034124, 5500522.095183599, 5504769.209835145, 5508256.848999542, 5509469.68076322, 5516465.625, 5521285.029737047, 5531294.805080192, 5537984.462832597, 5540917.1875, 5546857.80175133, 5552029.6277948115, 5552517.1875, 5573301.5625, 5574143.642118199, 5574469.321482047, 5576746.875, 5576857.896157842, 5585034.361497079, 5585613.429712238, 5586244.233596793, 5586259.795798181, 5588393.371773641, 5588919.845347117, 5591041.303062124, 5598557.6303162, 5601256.25, 5609336.313079153, 5614659.894568825, 5616977.9982852535, 5617284.030129986, 5618915.003213176, 5619500.787782285, 5630630.60074303, 5631500.1085701315, 5646918.75, 5660951.451469352, 5661471.636182549, 5667852.769315069, 5672728.867153027, 5675693.659228566, 5676091.2788608195, 5676282.8125, 5677175.0, 5677697.9247938655, 5678377.349023478, 5678418.207940408, 5678653.007764895, 5685062.3549239645, 5685580.279893966, 5685682.301573805, 5685823.656909799, 5693193.608197672, 5694653.125, 5695392.477929869, 5698091.866198404, 5700051.5625, 5700102.686987736, 5701751.071057031, 5701926.363088391, 5702264.0625, 5702564.278359869, 5703102.667134803, 5705391.082275306, 5705725.0, 5706124.834137356, 5706143.687749539, 5707276.888502846, 5707690.480566299, 5709646.875, 5711938.25714486, 5712825.919924157, 5713275.123769246, 5714560.563457785, 5714929.799559599, 5715468.312661165, 5717941.965680035, 5718256.000012892, 5719054.919451908, 5722714.04488345, 5722891.587320301, 5723378.203139124, 5723622.831673666, 5723662.672392793, 5725835.9375, 5728279.256132409, 5745800.764365689, 5766745.3125, 5769485.297229832, 5769628.063950706, 5770235.259448575, 5773590.091286469, 5775499.2174452115, 5777801.951037383, 5782501.797537127, 5783966.686069841, 5787709.375, 5793140.4053309625, 5803993.75, 5806376.257932908, 5819326.209880603, 5821176.040739179, 5822717.1875, 5823294.33698756, 5823698.785578412, 5826950.864465834, 5827060.9375, 5827338.82130711, 5828006.25, 5828612.989731589, 5830096.814331291, 5830179.6875, 5831175.0, 5831883.976675386, 5831938.18869802, 5832462.5, 5834032.8125, 5835281.25, 5835695.725962877, 5835878.540740475, 5836480.513806188, 5837798.4375, 5839431.570297063, 5844821.875, 5857304.133843874, 5866269.225388222, 5866282.055895952, 5883732.775878263, 5886708.228373937, 5891289.0625, 5891360.9375, 5905108.928312539, 5906062.140336826, 5906096.875, 5907651.5625, 5908467.852971201, 5908750.03256968, 5908763.886858359, 5911653.125, 5915170.118534782, 5915566.966235338, 5915891.847717837, 5917238.80017314, 5917409.375, 5918246.416391422, 5918541.266969726, 5920666.907135038, 5922698.4375, 5928206.164300969, 5931164.953547494, 5937825.110276933, 5946499.316047079, 5947996.67597878, 5950662.026015838, 5953405.31453384, 5954245.194780109, 5954628.125, 5955513.819437267, 5955824.318520491, 5956317.1875, 5957743.490092412, 5957745.531252621, 5959098.6022644965, 5959578.125, 5960195.3125, 5960351.699619744, 5960521.468742141, 5962010.9375, 5963939.866663453, 5964243.113363956, 5966284.375, 5966775.0, 5966954.485654435, 5967480.377308083, 5967695.360407843, 5967735.84485629, 5968021.655447538, 5968098.4375, 5968431.250799151, 5968506.099671538, 5968673.1057212455, 5969105.429089428, 5969165.593882142, 5969270.3125, 5969317.1875, 5969329.445867444, 5969341.647705347, 5969367.009314121, 5969447.680401882, 5969454.6875, 5969504.6875, 5969570.546473939, 5969706.25, 5969723.4375, 5969744.331374667, 5969778.125, 5969898.602973434, 5969931.474029881, 5970030.469943593, 5970057.981896962, 5970142.1875, 5970172.49361963, 5970288.969444503, 5970434.991738569, 5970461.234931242, 5970478.125, 5970544.751199398, 5970589.145545224, 5970768.044087899, 5970940.625, 5971315.499375237, 5971498.927796679, 5971666.463938708, 5971754.6875, 5972091.618939631, 5972235.341894371, 5972310.234301201, 5972375.0, 5972464.0625, 5972698.4375, 5972805.536783109, 5973277.979052688, 5973354.493746916, 5973639.13471502, 5973885.9375, 5974034.562838768, 5974227.773593047, 5974447.894840166, 5974729.6875, 5975028.035864453, 5975096.890792653, 5975105.938485748, 5975491.0179905975, 5975512.5, 5975631.809827641, 5975685.9375, 5975700.2422202425, 5975821.875, 5976009.375, 5976184.124308904, 5976372.082290233, 5976376.5625, 5976420.3125, 5976435.6500443155, 5976499.959941709, 5976534.179814815, 5976540.625, 5976624.68560241, 5976859.375, 5976948.1164875785, 5976999.101006892, 5977003.125, 5977051.224117758, 5977106.25, 5977140.433884186, 5977163.289022789, 5977379.860282615, 5977416.148531884, 5977778.903469932, 5977790.562170978, 5977991.125952194, 5978201.5625, 5978204.6875, 5978408.90587971, 5978422.520396946, 5978436.355150629, 5978559.375, 5979105.049193033, 5979178.082128165, 5979327.485420286, 5979333.6689698, 5979363.526988418, 5979466.97006794, 5979721.332709628, 5979727.48650267, 5980175.347290029, 5980462.061624007, 5980494.286371639, 5980775.529844274, 5980930.668774927, 5981043.62992136, 5981588.302126166, 5981659.375, 5981708.118404019, 5981832.463757239, 5981860.666280485, 5981979.164212406, 5981984.266833859, 5982031.019863127, 5982125.109944988, 5982201.5625, 5982782.8125, 5983071.875, 5983118.821580461, 5983137.220957613, 5983237.045683823, 5983279.433732763, 5983348.519606979, 5983365.625, 5983376.700657088, 5983378.308195324, 5983456.383030438, 5983531.096481451, 5983723.4375, 5983914.0625, 5983918.75, 5984048.426312052, 5984106.25, 5984145.790962698, 5984155.724658339, 5984172.243558378, 5984176.251766797, 5984307.446835616, 5984478.7209376935, 5984489.5576060815, 5984492.127922901, 5984587.5, 5984673.4213722795, 5984885.9375, 5984952.167035454, 5984975.507751383, 5985049.22687527, 5985119.931960179, 5985294.995548382, 5985315.629822483, 5985320.084037212, 5985676.600575726, 5985721.531094282, 5985787.5, 5985849.426593792, 5985888.510949046, 5985994.415534561, 5986008.666403702, 5986088.355097691, 5986212.5, 5986787.7759806, 5987559.227856444, 5988099.849551534, 5988203.416987528, 5988262.798739822, 5988387.142267844, 5988849.980525487, 5988850.0, 5988912.612165055, 5989014.728562961, 5989043.577810004, 5989147.638159515, 5989247.573638613, 5989516.490231408, 5989542.717955914, 5989628.125, 5989656.212872473, 5989720.665838351, 5989943.75, 5990327.143607743, 5991366.702067749, 5991548.4375, 5992084.375, 5992247.649493542, 5992691.396495178, 5992926.5625, 5993504.731690669, 5993855.947526038, 5993878.125, 5994863.021760319, 5994919.393744858, 5994932.53509293, 5995046.92456901, 5997845.155948475, 5998326.069068019, 5998406.25, 5999667.8937081015, 6000393.917831663, 6001050.34568798, 6005726.311869915, 6009620.169061832, 6014316.73818157, 6014447.566023891, 6016025.4660863215, 6020720.532673455, 6021800.0, 6024927.7020239, 6028032.8125, 6029245.516489132, 6029546.661057827, 6029610.579387199, 6030815.813155249, 6031132.750359388, 6031793.76510528, 6031951.953093129, 6032098.776674456, 6032738.956209069, 6033104.128533198, 6033107.8125, 6033173.631626781, 6033230.587509103, 6033280.561433008, 6033300.3837618055, 6033471.506772141, 6033627.158551846, 6033662.5, 6033674.882969506, 6033745.16752007, 6033760.741131082, 6033818.674004331, 6034023.567931183, 6034090.0518962005, 6034121.834085442, 6034134.375, 6034156.545092761, 6034238.295929223, 6034449.336793602, 6034590.288374368, 6034598.6742587425, 6034634.925317533, 6035611.752119591, 6035912.5, 6035957.8125, 6035968.75, 6036064.0625, 6036835.9375, 6039961.246622696, 6040123.294342464, 6041213.375040751, 6043020.68832913, 6045203.930814558, 6045623.951468341, 6045795.3125, 6045898.4375, 6046071.875, 6047127.830374295, 6047435.90375546, 6047528.776043961, 6048587.61338131, 6048785.891397706, 6049649.850568875, 6049783.901497439, 6049789.564604271, 6050837.658130635, 6051345.23694867, 6052703.125, 6055975.892932791, 6056034.44075481, 6057823.4375, 6058329.444273386, 6058734.375, 6058859.421411045, 6060193.312179777, 6060916.76895301, 6063449.163284211, 6063673.046695956, 6063768.463117889, 6064050.7187866075, 6064193.623191367, 6064244.587998731, 6064391.944732124, 6064427.736343365, 6064704.085042827, 6064717.081574621, 6064787.5, 6064941.87910221, 6064957.8125, 6065179.08253583, 6065283.891636009, 6065315.5655670455, 6065319.490550867, 6065492.346936191, 6065513.928859658, 6065536.594707793, 6065545.259233788, 6065563.714315676, 6065582.591410317, 6065729.159971933, 6065918.545201471, 6066061.105625032, 6066124.689170599, 6066915.748117547, 6066967.134733239, 6066978.37450924, 6067120.450495227, 6067204.6875, 6067290.625, 6067292.1875, 6067570.3125, 6067584.692084726, 6067682.387315364, 6067885.9375, 6067943.261143339, 6068170.3125, 6068473.372717023, 6068490.514686267, 6068506.199361806, 6068555.968493377, 6068565.4327535685, 6068603.006543618, 6068626.5625, 6068630.8821413955, 6068660.677315149, 6068697.258575898, 6068743.434483157, 6068762.261305149, 6068835.015808283, 6068839.872855621, 6068891.202173726, 6068892.40858787, 6068902.410608235, 6069124.393463978, 6069397.019237009, 6069406.25, 6069637.5, 6069657.610464712, 6069672.506289882, 6069887.5, 6069910.351656955, 6069918.888108515, 6069956.226186753, 6069987.5, 6070135.659825455, 6070163.601448561, 6070289.02778302, 6070425.224853911, 6070444.085218161, 6070533.129999692, 6070615.33793385, 6070672.385941558, 6070679.264324869, 6070679.500108775, 6070693.9416736355, 6070718.963950495, 6070797.829865288, 6070904.257751148, 6070943.904358344, 6071210.761804007, 6071486.973798482, 6071559.137919101, 6071956.740390249, 6072203.440431444, 6072245.0305383075, 6072484.305411018, 6072494.330592113, ...], [7.121508457229481, 15.622002832470667, 26.86782310221424, 10.03628144324826, 47.01063120453629, 58.50937253918984, 11.013803656190758, 11.352786267493329, 25.095595639420758, 29.491122314325064, 6.39984902445238, 82.94077393788157, 13.515471513559584, 113.8593756330374, 82.16831584958877, 17.441617410500093, 138.5047884856934, 95.20588093755626, 37.967891163964325, 22.55385710354433, 22.199561488624767, 27.343854247338243, 13.625185857011395, 5.97752832179726, 94.46736047624464, 25.636934259947378, 17.193506465831767, 14.501240281244232, 6.488478313525257, 6.62635862917158, 111.35994628134449, 18.740012545695233, 26.51873735865602, 26.184048776310643, 18.33728725651797, 84.34546160188798, 26.080905187385458, 58.678047468464044, 16.986321677872557, 22.50401399485684, 12.450653688248371, 41.92748685438321, 7.136036729389147, 37.52221167099812, 89.29707515584471, 43.02958959346769, 33.14224249382836, 45.69965186255725, 13.152555080344822, 40.28330549144801, 27.828723444215036, 99.39813486037497, 73.73350992374571, 21.679529537933853, 133.58872272345928, 79.53740946379926, 22.8085416361521, 34.120481134161096, 88.0369929319707, 13.066705679812488, 32.04493148042329, 17.32998170247172, 180.28439932416765, 9.648062375889953, 9.661663238438491, 29.450155243569853, 7.99017161202778, 36.828571453122024, 7.024624141852212, 64.3948374746216, 26.657819001350923, 14.12967477058423, 6.839638583185713, 34.76187731057505, 56.03333614793975, 33.1645428243947, 60.318108394483914, 59.30036510643932, 30.393627122882503, 61.03399608217702, 24.61480166141743, 14.52079181648582, 6.868750798259258, 71.86761613420934, 141.46515818417865, 35.240840932353386, 18.87492255640403, 20.81287664762498, 26.974466092996586, 45.858616035116654, 5.923725642024158, 77.98324887413875, 18.233685344197873, 8.471490297057967, 39.58874664766925, 18.782258640513334, 71.18090180910204, 10.027280124066118, 62.40716246699153, 30.201389376605515, 50.64180911837572, 55.32324811115771, 38.00610599326642, 11.402872826423929, 5.656867790381875, 7.083503375092225, 25.674793894725894, 72.61507736314616, 7.486869575714374, 29.567290855384595, 45.71053174431488, 12.229428086989316, 10.877489675532914, 74.88653403527321, 8.671211348215557, 22.329301005465332, 42.46959616570821, 27.384912333288007, 91.98637819051737, 18.81909500912308, 94.41739821968991, 85.02507499886028, 27.233246658267877, 18.321584114139124, 129.99766733040508, 56.63746233106147, 157.12430301034107, 64.40515908957208, 90.99713876341633, 5.4817329073324945, 31.278001929440716, 32.177483074443906, 25.427783426279134, 5.723311397839132, 23.907629973209954, 22.95396969748655, 5.617650298349299, 131.18278712159375, 33.878176040331105, 81.66049934970707, 75.76846888329159, 18.432825632668113, 21.82205394694907, 36.981175456366046, 32.680486978592114, 73.50803022150471, 13.285738427294527, 9.28382535314736, 131.94342743304415, 77.67924884290187, 9.820721216112485, 47.48975372282249, 43.547708038157374, 115.26957034432371, 26.12948979261744, 76.97206461779047, 9.497086880579099, 97.59279380675083, 8.95266759413793, 60.01971823318625, 101.28106081471215, 103.35784841409487, 36.21372550886906, 25.476435028963543, 70.43520114957897, 82.8151214110841, 164.3236343203382, 39.99435181183558, 8.589302950159674, 6.447920655835397, 7.153451874517084, 60.70459291399252, 17.70439298257174, 14.251482638750858, 30.02051628599787, 13.744551087318012, 26.402475899414224, 34.581832161224085, 49.36618997917438, 49.506957744234, 14.869191329512343, 25.956183153060174, 40.41281449868995, 20.25849344989722, 94.75626563577468, 5.0809134871736585, 7.909081688334306, 22.360907627404607, 201.0106328017481, 6.698439189738677, 20.715017671789695, 5.579866922951318, 19.88767106866497, 75.66350923065151, 12.006802643751364, 34.799073125717015, 6.637666378923929, 100.5759646111861, 33.23731770453832, 96.01135522638081, 21.1035281318928, 6.558931590154249, 6.2616567044466365, 17.010654232481954, 23.858477797368312, 15.574215013099082, 8.5560105354554, 13.299795362625337, 9.096058458835074, 40.0597576803483, 11.452439588112519, 25.33286269512002, 40.8643930738475, 19.903983044751087, 8.788170199091107, 66.00913196601152, 40.96871405519428, 91.60348457591243, 29.032925282321322, 21.907953188091962, 26.032392464697878, 37.65706078657308, 60.81276069894934, 23.558129206464223, 56.4914916833855, 139.10983391856342, 56.224547807517354, 61.756171080420486, 7.492572824395075, 12.353114273791896, 8.681828384984248, 32.63990290877388, 15.755839029246223, 36.03055690386754, 54.94511899408564, 44.047775412963496, 104.39835941300267, 79.0809830966139, 62.088864343869844, 19.14362869675606, 18.73857656741678, 50.30517903415173, 11.742246949530893, 10.62816346708105, 15.779221747455207, 26.959824763424592, 100.82641359826692, 17.15452089517313, 9.426941537544295, 80.90038946840171, 60.302600581195435, 5.087758859154118, 37.17285780877315, 48.594550446728014, 93.72973998600497, 39.99688718301974, 19.034028179945587, 38.08346134332891, 44.16807975501582, 30.866460748557373, 49.51735769545433, 34.32411798872086, 13.031662977070766, 15.846602139537058, 61.79673709667753, 136.36479357678627, 10.79186149625089, 59.43455119586303, 20.58013719498643, 108.42438010255292, 9.338362237326686, 17.77235212652301, 68.11292714622142, 88.74512647963341, 41.492673225278196, 14.605896543963121, 62.67760396216112, 57.557960939634256, 42.188806599286416, 18.069701683305084, 49.861545750992505, 36.113307686771215, 94.8776137031247, 50.090803739887804, 30.73090625235262, 13.950101785496638, 123.09706582934645, 11.710288780813865, 14.042735018260627, 38.57544383813318, 5.208075789572595, 10.646577743148407, 21.379616970257274, 60.496539449128875, 62.49972436226315, 7.928860952893132, 112.02448453787528, 44.55273883290614, 16.200113805649558, 6.826935774418895, 123.95194999814207, 64.98969058933879, 89.4680077468392, 11.429816277868895, 19.24126611568785, 68.61066141245772, 54.51826725781301, 13.233213320530938, 23.07072902590278, 38.48764084477543, 116.79418091378997, 17.605871340352333, 16.724250618353956, 20.792893278843884, 25.56053021674728, 12.491951162846663, 105.84126852130018, 35.8533572091078, 6.561079571936449, 30.748597825516292, 59.876764357713306, 10.979931312390502, 20.645760506730454, 6.408203241767735, 5.642678613466717, 22.064931538578776, 75.93882832074578, 18.379136638383855, 63.7977307066743, 121.4623991044093, 38.604029151329236, 64.60000001442415, 130.79939583687414, 47.151258881387854, 6.546082572135056, 40.08601034760838, 45.06680724608081, 6.1208645395283465, 22.329165965413473, 13.449394961502751, 19.889127861664637, 124.78945157839885, 25.427018524082584, 17.492225288803912, 35.84575964445041, 17.418057091977335, 10.6604271452214, 86.91398926345728, 9.2362690413996, 17.623839887328554, 13.171970363676238, 8.867039564905003, 70.72914448695944, 13.247757279258657, 22.36284196742851, 22.917183720037517, 34.724727652417236, 6.299395588598231, 45.02468901234618, 39.8339105864236, 39.43079929978848, 39.36378809896869, 137.77152261844054, 118.45243752960475, 51.49846863759563, 85.97769575938437, 11.714916988562448, 40.592166130245616, 12.664655165792361, 25.136590189281087, 22.647223104102043, 29.885631521072945, 21.523069090140936, 25.03330716524328, 66.66451802443345, 13.711256525231809, 36.97768209160355, 16.75629476075979, 13.925007665647774, 15.019331976277343, 21.077468146561262, 9.914919395147848, 8.493696731335435, 40.52879567076275, 33.88936216047285, 22.72048759443743, 22.533522322103856, 40.67918037017536, 46.771564236303846, 13.021546633563796, 31.454904108130236, 62.66521805461834, 8.491842069492819, 50.1741011038118, 20.764643382154592, 132.88541458660052, 5.553630334823579, 102.84910609283551, 7.623231006859917, 34.44737614066241, 5.84390691740163, 22.036840198304535, 113.20783345544903, 122.49384811529782, 103.12240379357827, 8.633529003249283, 9.769162031305898, 58.45089273052609, 5.686339535274176, 26.980696308156574, 6.183263092511685, 42.920997664243046, 5.929789832563014, 61.170736380572166, 58.79706618294118, 27.367508872395675, 68.64533822164638, 12.347677666738573, 154.32809161374726, 38.55005754451765, 81.01998338303194, 8.139859032171245, 39.89822360043007, 7.842466691009269, 6.8439548159986385, 32.29720140524364, 16.17432382260327, 5.912945131134354, 9.555883186419377, 87.92219507148731, 90.1663884771283, 25.222105493198416, 52.397548261530936, 36.197175346371, 91.82758469949283, 81.13015835680801, 38.70831199389707, 15.108117062144114, 89.19827438926411, 10.667659725836362, 134.3317091215296, 35.86281320523298, 7.352029494551889, 77.28259632754722, 149.93028636871276, 23.509338420361516, 75.05046379787623, 10.967142046307401, 46.17530482153521, 6.352252509167387, 25.55435179802882, 31.70809840748369, 20.864574990545318, 19.818177500311254, 180.73636293434862, 7.497485198046017, 51.88550183162342, 33.28407512207804, 136.07397512326244, 5.466076695207728, 44.00083583119428, 45.8338186078767, 11.931530403780135, 6.345964923963688, 35.760251425736016, 72.26830813993021, 18.205013343122605, 21.419401644019942, 6.781169271328337, 30.685884097223806, 73.31558373690413, 27.39658752313576, 54.79600034647512, 89.63986169123004, 26.559869165095087, 6.883226185036146, 29.243581496570005, 47.003793164367934, 38.71850415646752, 20.263412680503418, 30.65624339916355, 16.831183168852746, 13.225670651096198, 10.468403765515651, 65.96734371848136, 15.147487099784858, 59.04824012120194, 5.413028827591974, 58.52934483039095, 74.50064844114856, 23.194024820809876, 13.004433454044564, 6.174040860273673, 6.188512336175252, 53.415120616859184, 46.576588433689345, 32.917718403655265, 119.04820680516904, 208.71481592823636, 52.33078691554748, 7.5707338540656535, 28.442404110584796, 35.49948990412817, 139.08303518646832, 27.17583122976206, 36.38843207001262, 6.985896032376265, 76.81212950243386, 83.93060744411427, 39.12890981478999, 27.174203926241372, 8.406116055915058, 26.006265408696084, 59.28388007760053, 11.614185631250201, 41.885154671786665, 49.805820877760695, 13.49908366697652, 8.94777496131083, 9.168295331142591, 51.78496822905433, 7.683222014820149, 20.66426185252156, 17.02720638273373, 78.30165997999995, 24.64471736790961, 14.709432107068407, 18.345927942542588, 37.87513069506913, 62.96041649956279, 98.9201470244695, 20.934520716359412, 16.884290368141468, 10.589396823623101, 23.130824895986944, 22.141813644618672, 86.86390340724306, 9.12860685352898, 9.535547273482045, 5.06857609245448, 139.7705847360889, 11.252080029593744, 20.49861784042997, 9.481552767797583, 90.66693066298329, 5.9026996217120855, 22.126050744161716, 62.36911603206637, 75.27229240126749, 19.00704375971631, 18.195988214932456, 19.708147918199412, 19.072190710146543, 8.503315790979716, 15.920018898733765, 147.70817369374473, 38.79240132386955, 115.10192726597711, 39.045024311852885, 23.692578159817742, 23.101093070499367, 51.32169020677793, 79.49607947260867, 7.830296973888957, 13.883626200518894, 31.93156357541592, 35.98981718591699, 24.748145883226336, 78.66509477831194, 50.10118958570827, 73.01808299114411, 129.65760253661193, 52.43244157765467, 34.29841060176392, 50.3765788139171, 118.7148189204544, 32.33325469604457, 63.86187299399311, 133.32272940800988, 27.810697522121423, 10.143715434795412, 52.71314664587577, 87.16142303225898, 234.70146015790968, 45.53963724900058, 27.378095166221964, 6.935819850712588, 27.820231339735226, 19.588893307686153, 43.03810611989583, 57.028200339722474, 111.60749705781704, 23.01741417395753, 77.21975983225705, 78.90326613646755, 117.82391863121083, 109.32896161925679, 25.48080309046658, 96.81255055381713, 45.87065090927514, 19.747349883243878, 177.94251338137124, 24.24419503017732, 42.02218124179028, 118.45636865817517, 18.12228841394818, 51.412907712457795, 95.59712381659573, 33.03578853135948, 7.377188874214004, 20.562270363212036, 18.70009530065685, 25.132401295383882, 21.756608049508767, 18.026756305765026, 92.00221869060124, 118.33682689940527, 42.39831368261804, 12.855056905170327, 56.57813819419324, 67.28604854418947, 11.487758831816931, 6.7968524458059205, 95.25276723139105, 64.64980267186132, 15.78179884346931, 72.50437746626585, 68.38013970805851, 27.218339466001787, 20.23039831642939, 35.33806421693265, 79.65956702440539, 14.224204950819543, 38.86678634750449, 154.67021158904706, 33.63787248433141, 28.630212549802526, 77.81766833685148, 33.42788562465742, 25.87142435485772, 17.172420341408312, 25.584649130943845, 14.824214532720621, 94.94162984805583, 37.01914108410073, 5.691550523791268, 48.137296180040934, 39.29118583586383, 170.56758718082102, 46.94576997630365, 46.52981765540287, 11.51423800981813, 31.620212967179086, 45.94013336063631, 23.984986242302604, 31.364410307037588, 163.99882531623254, 30.120087444136423, 35.402438025567264, 15.629028889696825, 75.99440905295637, 49.558871086389495, 22.10145703748166, 11.488613221571162, 6.534749353607183, 42.7321424412627, 94.86949226182212, 33.06482200163124, 43.24726317185575, 42.44377419795212, 7.558424622542113, 17.210039403868024, 5.269248223176745, 63.725378032827436, 24.344963365692358, 5.32191845673786, 5.318389538689984, 59.156479174212066, 87.46946723302393, 40.4245004087766, 95.79583791158801, 25.940502086978857, 13.200787085650273, 25.152212382220075, 67.59622094940022, 19.92231189654153, 23.11557239237186, 64.58275087267324, 55.87776181340682, 26.878129074216314, 11.152481786951665, 13.87371308070169, 11.803061629274211, 37.79576222978704, 17.612782635365416, 112.56604865966864, 13.435359499909193, 54.69310303861171, 88.91175473333871, 16.345497015651972, 22.28994560674271, 69.4560180876921, 40.146771600746774, 5.237170597997886, 12.466700682475118, 60.436396248577424, 36.765792473822614, 10.669443318581454, 63.378182654890644, 122.09992531657153, 5.424459872713091, 116.77538345036787, 10.637009448482063, 79.84780103016729, 6.7259422952405, 12.634660344766228, 52.667838895556066, 66.15865096670771, 10.0895516507509, 27.340428065277095, 12.457757225368375, 43.076056372605144, 47.13603157975368, 21.806773686068468, 33.903808796380986, 5.414684104533971, 114.08413684529302, 14.141787236899894, 5.9356806634488, 125.06241647861114, 25.62092319780225, 21.146019680704043, 95.513395885212, 19.275765369342697, 20.214479417106944, 80.57695861136114, 18.495812677006498, 32.4636266449625, 37.80781571684686, 20.719377553520694, 26.357582085856855, 7.92162786697837, 44.04051104836605, 16.251496571733757, 15.815163532539597, 9.112138637412615, 13.262716106569425, 26.55511101743239, 6.064489566064364, 35.0117621905538, 110.11360878609943, 92.45905599468908, 32.00451480536033, 60.982681217377845, 6.444220816840798, 178.26568593570283, 10.752940888032146, 11.258517268200581, 32.03154196771669, 214.59590756143493, 15.6889784766279, 15.474019373005998, 10.895936623789835, 68.06004577796419, 28.797270931154433, 33.778640658856126, 5.813152917031411, 53.32174108007725, 8.556911935821736, 25.349597052730182, 16.560771282924193, 32.16183291119789, 13.709659534968067, 7.287442131900716, 38.95817779558579, 11.035843597013692, 33.51212112104791, 9.31780340501476, 35.09493267751627, 35.270637802904396, 5.739853066627651, 121.20059068389502, 22.773729749741186, 23.53659663926033, 7.604982824715598, 10.788443920457674, 63.66037555309123, 23.891774873912418, 75.95475904436306, 20.77094218489815, 8.90486048285502, 28.599822116146264, 5.763346841046017, 8.797222189574986, 29.712847867966747, 16.109244293827974, 44.802917200012324, 7.549714552673267, 6.823234106996755, 113.64277866651071, 23.040279998855443, 77.01495801409469, 88.59805912990299, 39.19770972814498, 51.30881267352688, 88.17838963362283, 20.582833992590345, 96.02145721317632, 22.042483570079952, 5.644080116236565, 101.06088966613477, 19.157471151660573, 37.1408591751713, 36.18537503055389, 30.38788359445184, 5.325558381751814, 41.956465547769696, 67.3246098308046, 26.838792473678062, 12.593956912096075, 42.89262796183788, 72.74131919372567, 13.90166262308142, 43.11333204264616, 77.72322268796617, 20.207516481171645, 36.882425736819016, 111.68183830575579, 14.376593508505826, 198.99650177705746, 32.436922115731974, 18.54883515374506, 31.39362744658258, 5.633459033560949, 5.795665639923946, 6.073308853584867, 22.014026629270873, 144.2166961434129, 157.63269489018967, 146.65289628645183, 55.57088616931732, 6.2151976347738245, 82.21702042027263, 15.780533160996313, 34.961173461129185, 23.035768230481647, 15.710683627502387, 70.58906410163574, 5.533814097931217, 11.79853461002566, 9.635663542094314, 38.06441070022084, 106.39564529096569, 39.64293057395132, 58.489238352865954, 23.209825036018984, 12.837662234113484, 95.76078358476028, 10.59711089842914, 17.832752874787758, 98.60357778514134, 42.15868376832549, 9.211750986369239, 71.33274193026595, 5.395576715213323, 41.3630441125354, 17.194132035591508, 7.588506315457868, 44.793744179446044, 220.1551568285557, 5.184322232210238, 28.514128376633927, 5.910616616181845, 8.415877487770137, 107.03164465898061, 10.130389070450027, 45.28123591780368, 52.91762110802248, 34.42063005665219, 121.50803208416198, 64.82052059286288, 8.457103374060745, 49.012442098966275, 32.97848527511896, 116.70064258701478, 23.58893136776345, 5.2167170607161255, 89.15890041798772, 68.3555402798558, 82.79488664342102, 9.094115062633767, 27.87412918810374, 6.594232184452948, 9.42914953269383, 27.644367904849748, 138.945588248524, 21.761562393894117, 132.76146431278858, 5.82577396800604, 98.67712246170971, 35.56254937695943, 96.17029649234293, 6.497448511514896, 74.27907008401203, 8.162011030257672, 102.88679382343962, 58.97499895276983, 323.7055213368317, 10.530974787171674, 14.151295986217757, 181.15568922172812, 23.919763331449886, 29.253617139185348, 154.89255228852346, 19.512158779875804, 53.29884958884168, 22.68069330888749, 30.24715508811501, 167.93295189425612, 45.30321632929053, 10.677608984931531, 51.769069124968816, 27.445632704631077, 13.371840244652336, 6.7516989632904885, 5.65637040653116, 57.91134840689318, 9.220902535435107, 12.338040217604675, 27.513215235914565, 10.62384975598386, 24.81391007272949, 81.45494290114065, 206.91704486075818, 5.717542134839765, 47.65707957105255, 8.352775002164554, 11.046218603620693, 16.674443123545586, 9.450876807082663, 131.06106475086372, 75.18328050150143, 44.81165831117331, 162.9848640102485, 25.688549864075352, 6.422443284806764, 66.32361027040831, 15.21917083410321, 52.78486995733164, 14.700205408290339, 86.91035777808858, 11.049467899043675, 208.36239777955112, 14.256113007092768, 118.94210880072865, 105.55068203443489, 28.815882739542058, 164.48094500541853, 8.500398305233592, 82.90555622946869, 32.79719483374562, 5.220061075276246, 15.925534273474238, 17.717214411167497, 15.856932326132796, 22.41693376414913, 20.49233769931229, 5.824730214566815, 169.46662927901795, 39.25732322574192, 61.32090023829216, 120.18122161775628, 115.8267511518587, 7.99930384123066, 41.06056365366901, 43.565173383806375, 50.66422308184832, 7.050323616381267, 13.43399792636687, 26.025317212966264, 107.60692932117107, 29.572599288724362, 24.7916951781314, 30.67918725822948, 12.032773784462899, 22.295302645597776, 33.7539343272755, 98.09128392617332, 7.178851860148547, 25.90873838850674, 90.95598354862284, 138.80377264070114, 100.31348993629672, 20.93553689374285, 94.04074754700713, 17.210564963837903, 16.297513086650824, 7.049253905436095, 40.53171290441831, 8.619478700934993, ...])
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);
([2518040.6252160724, 2754846.0305139394, 2795968.950458872, 2918630.418036103, 2923874.1171977604, 2924276.5625, 2934012.425885262, 2962429.8268795093, 2962446.6734630973, 2977328.287617106, 2989368.1699318783, 2998448.4375, 2999235.5052372483, 3030662.0646128575, 3041656.25, 3082230.218299271, 3100226.77948375, 3100589.0625, 3103356.2472290425, 3117333.9751441916, 3124537.9524202985, 3130561.860045903, 3147358.9807068673, 3147451.9900913313, 3161245.3125, 3196362.6673249835, 3200664.5498492965, 3210001.4419871727, 3240409.383842816, 3248536.7718885704, 3257087.5, 3266475.7337648394, 3285868.9001323325, 3298509.2442782354, 3301636.612338006, 3329863.3531212574, 3332113.9253717535, 3332340.625, 3332805.1372605497, 3389402.223054998, 3425460.0833869344, 3427184.375, 3428448.4926950126, 3437871.632187806, 3471499.2799382103, 3532037.5, 3544562.5, 3550034.375, 3550791.622906995, 3550904.6875, 3551712.4638324683, 3552600.0, 3554701.125443545, 3555961.0198167916, 3561167.954949874, 3565228.0064013596, 3579971.4974762644, 3579995.0938858856, 3583448.4375, 3606194.7149946345, 3606195.3125, 3610129.5332098906, 3639405.776361645, 3647747.2271720804, 3651661.3038601745, 3704936.5835280926, 3705529.0815226077, 3709843.75, 3754396.493384398, 3763609.444989285, 3767195.981435423, 3768963.939605589, 3775325.3697443963, 3776110.6286881184, 3779625.0, 3787762.664211026, 3791982.8125, 3827581.25, 3829020.3125, 3829504.6875, 3830117.0891405493, 3831581.1350600044, 3832950.5052554295, 3835170.8353077094, 3835918.75, 3842035.9375, 3866905.440274908, 3868677.5319350455, 3875552.6318639903, 3899076.5625, 3909343.5681709335, 3914033.1159547376, 3921767.8466266594, 3931872.2090364844, 3945184.375, 3966911.67725589, 3966912.5, 3981949.1598478686, 3982950.0, 3985778.125, 3986167.1875, 3987279.6875, 3988773.4375, 3988900.169187655, 3989272.6239709994, 3989315.4786441796, 3990177.9620452616, 3990318.3735593474, 3990671.541375355, 3991166.6175663574, 3992892.1875, 3993784.9814636526, 3994898.271295266, 3995392.1875, 3995575.6628100984, 3995588.2931542583, 3996551.8638222087, 4006436.9665283184, 4007066.1294139544, 4013081.994951246, 4014585.0804204857, 4014643.75, 4014989.8506137207, 4017782.0420865137, 4063039.0625, 4077418.554143774, 4081332.8125, 4082667.1875, 4082679.451851974, 4097148.89457815, 4097735.9375, 4110446.875, 4111506.070850291, 4143137.756994609, 4145986.3923789705, 4146207.4474541056, 4146251.627500951, 4147697.106003713, 4147703.125, 4148390.625, 4148796.875, 4149351.3651330997, 4149598.6582317296, 4187366.877503774, 4325439.0625, 4391653.125, 4418183.860216271, 4453593.693190829, 4454942.4028367475, 4455815.209275926, 4463088.027061957, 4464795.3125, 4468041.629892213, 4475126.112934675, 4489588.928397008, 4498546.875, 4502747.064655533, 4530143.820614924, 4571018.265338907, 4609442.1875, 4610992.1875, 4659513.668204417, 4860576.5625, 4903180.1494416995, 4928960.822143211, 4931289.0625, 5001959.291766924, 5004520.589247083, 5004680.219210571, 5004695.057986507, 5004936.05785137, 5006598.4375, 5008503.700058685, 5010113.171019645, 5010124.568584292, 5013435.58351059, 5017062.382647526, 5024324.71781344, 5036370.460399921, 5037089.0625, 5037520.293396229, 5100054.995830636, 5114535.9375, 5129200.017885915, 5146556.25, 5146624.087680095, 5150633.585724164, 5174263.645305198, 5203309.219101974, 5208554.352602022, 5248790.533013834, 5248860.302737609, 5265994.802096057, 5268628.125, 5271432.47449763, 5274531.193904988, 5277921.210203555, 5280497.309097884, 5281804.6875, 5283966.832798908, 5286135.285828562, 5286745.75597277, 5286842.143511623, 5286904.835521858, 5287374.158306942, 5287525.489355432, 5287805.164469186, 5288074.614679101, 5288321.582906599, 5288401.239575543, 5288403.323273351, 5288632.627025569, 5288698.782024518, 5288718.667246846, 5288985.216647608, 5289103.222769993, 5289120.3125, 5289202.948503159, 5289476.220500579, 5289563.603105203, 5289603.710601553, 5289648.4375, 5289676.5625, 5289751.24726997, 5289854.870488665, 5290185.387332721, 5290294.929133371, 5290653.432021572, 5290749.68329975, 5290772.5391418105, 5290814.741941503, 5290964.0625, 5291050.457640195, 5291194.999789125, 5291241.042311656, 5291331.751809055, 5291421.127874318, 5291472.510862975, 5291629.032058303, 5291699.227106014, 5291709.8518540645, 5291854.6875, 5292609.735538909, 5292638.7175332885, 5292678.8862377405, 5293080.329591924, 5293196.794632849, 5293448.917869105, 5293771.985868204, 5294236.614596603, 5294270.3125, 5294321.323745817, 5294459.343344134, 5294725.0, 5295172.789064631, 5295201.5625, 5295363.274745878, 5295418.75, 5295528.125, 5295794.7685483815, 5295808.40148513, 5295828.125, 5295861.88887342, 5295862.1173417615, 5295865.625, 5295885.681958634, 5295984.14895837, 5296065.625, 5296119.71583598, 5296171.875, 5296293.7582187075, 5296343.366990659, 5296362.5, 5296372.533224703, 5296381.648068278, 5296446.784070446, 5296499.275430907, 5296534.375, 5296593.75, 5296883.051177282, 5296888.53197004, 5296945.3125, 5297038.778004431, 5297048.4375, 5297164.0625, 5297165.338069211, 5297179.085957893, 5297183.155770965, 5297185.679861379, 5297193.66969269, 5297234.556694528, 5297309.043719093, 5297341.676048091, 5297551.5625, 5297742.1875, 5297828.943696925, 5297873.311209464, 5298092.044941858, 5298246.0159582645, 5298290.934622844, 5298476.5625, 5298498.4375, 5300019.614394031, 5300378.3100484535, 5300622.677660077, 5301601.5625, 5303871.875, 5304435.403250483, 5304923.684902373, 5312121.875, 5321275.0, 5326248.996170044, 5327225.40041292, 5327285.364320954, 5328107.642100545, 5330738.226801093, 5331388.8769802665, 5331422.357598988, 5331519.206291347, 5331682.396546615, 5332107.8125, 5332370.215854886, 5332504.098145125, 5332597.9150935905, 5332619.256246976, 5332741.742974426, 5332901.5625, 5332924.118618776, 5332949.423278007, 5333117.152135321, 5333234.375, 5333265.625, 5333566.232913797, 5333590.625, 5334144.11627288, 5334495.3125, 5334841.345567608, 5334951.871792638, 5334978.099916977, 5335122.981928551, 5335203.645017735, 5335340.0985206785, 5335826.280396011, 5335863.039460647, 5336484.375, 5336614.589244137, 5336848.116459693, 5336916.605247982, 5336993.635304857, 5337641.030355787, 5338910.835794664, 5340318.144531357, 5341590.625, 5343568.221163442, 5354140.164676848, 5389743.381816295, 5394240.342789143, 5395104.938160348, 5398218.75, 5420500.0, 5421996.875, 5432947.200206637, 5460231.777126134, 5465795.3125, 5468464.0625, 5470384.375, 5471061.283280985, 5471234.375, 5472535.176829439, 5472809.176264528, 5473163.670903137, 5473634.375, 5474025.790162963, 5474551.109404459, 5474581.91869496, 5475532.447371879, 5475543.729044813, 5475564.469058542, 5475805.955036607, 5476151.582768922, 5476296.332300426, 5476452.180413007, 5476511.30965281, 5476559.375, 5476600.692402778, 5476602.739825208, 5476762.752644318, 5476837.5, 5476860.9375, 5476890.009920717, 5476932.021045173, 5477015.569958087, 5477098.80648496, 5477240.274548956, 5477290.048737626, 5477399.03321139, 5477401.9787693955, 5477432.739114858, 5477598.492442343, 5477614.385521897, 5477670.708931819, 5477715.989687031, 5477720.3125, 5477720.744452543, 5477737.332974412, 5477763.1031178795, 5477795.788500675, 5477821.4653796675, 5477840.299317421, 5477878.919855861, 5477996.180461851, 5478057.314746392, 5478268.638917645, 5478657.8125, 5479275.0, 5479291.384974955, 5479998.4375, 5480098.49753707, 5480370.739788367, 5480412.5, 5480784.375, 5480837.211851167, 5481256.25, 5481684.991301734, 5481823.827534191, 5482107.544819162, 5482294.039759623, 5482315.316058411, 5482487.754064168, 5482691.743519552, 5482768.75, 5483552.385931359, 5483578.83145341, 5484887.112066187, 5485243.75, 5485407.8125, 5485862.5, 5486653.168035377, 5486735.9375, 5486793.434289838, 5487743.75, 5488429.183691982, 5488677.372589011, 5488920.3125, 5490712.226368503, 5492092.665979496, 5492098.4375, 5493784.269788171, 5493829.6875, 5493847.51979758, 5493847.781044066, 5494008.915483947, 5494247.872097335, 5494752.834100941, 5494900.771672924, 5495218.447828269, 5495856.83273792, 5495896.875, 5495934.375, 5496098.5375372805, 5498644.248034124, 5500522.095183599, 5504769.209835145, 5508256.848999542, 5509469.68076322, 5516465.625, 5521285.029737047, 5531294.805080192, 5537984.462832597, 5540917.1875, 5546857.80175133, 5552029.6277948115, 5552517.1875, 5573301.5625, 5574143.642118199, 5574469.321482047, 5576746.875, 5576857.896157842, 5585034.361497079, 5585613.429712238, 5586244.233596793, 5586259.795798181, 5588393.371773641, 5588919.845347117, 5591041.303062124, 5598557.6303162, 5601256.25, 5609336.313079153, 5614659.894568825, 5616977.9982852535, 5617284.030129986, 5618915.003213176, 5619500.787782285, 5630630.60074303, 5631500.1085701315, 5646918.75, 5660951.451469352, 5661471.636182549, 5667852.769315069, 5672728.867153027, 5675693.659228566, 5676091.2788608195, 5676282.8125, 5677175.0, 5677697.9247938655, 5678377.349023478, 5678418.207940408, 5678653.007764895, 5685062.3549239645, 5685580.279893966, 5685682.301573805, 5685823.656909799, 5693193.608197672, 5694653.125, 5695392.477929869, 5698091.866198404, 5700051.5625, 5700102.686987736, 5701751.071057031, 5701926.363088391, 5702264.0625, 5702564.278359869, 5703102.667134803, 5705391.082275306, 5705725.0, 5706124.834137356, 5706143.687749539, 5707276.888502846, 5707690.480566299, 5709646.875, 5711938.25714486, 5712825.919924157, 5713275.123769246, 5714560.563457785, 5714929.799559599, 5715468.312661165, 5717941.965680035, 5718256.000012892, 5719054.919451908, 5722714.04488345, 5722891.587320301, 5723378.203139124, 5723622.831673666, 5723662.672392793, 5725835.9375, 5728279.256132409, 5745800.764365689, 5766745.3125, 5769485.297229832, 5769628.063950706, 5770235.259448575, 5773590.091286469, 5775499.2174452115, 5777801.951037383, 5782501.797537127, 5783966.686069841, 5787709.375, 5793140.4053309625, 5803993.75, 5806376.257932908, 5819326.209880603, 5821176.040739179, 5822717.1875, 5823294.33698756, 5823698.785578412, 5826950.864465834, 5827060.9375, 5827338.82130711, 5828006.25, 5828612.989731589, 5830096.814331291, 5830179.6875, 5831175.0, 5831883.976675386, 5831938.18869802, 5832462.5, 5834032.8125, 5835281.25, 5835695.725962877, 5835878.540740475, 5836480.513806188, 5837798.4375, 5839431.570297063, 5844821.875, 5857304.133843874, 5866269.225388222, 5866282.055895952, 5883732.775878263, 5886708.228373937, 5891289.0625, 5891360.9375, 5905108.928312539, 5906062.140336826, 5906096.875, 5907651.5625, 5908467.852971201, 5908750.03256968, 5908763.886858359, 5911653.125, 5915170.118534782, 5915566.966235338, 5915891.847717837, 5917238.80017314, 5917409.375, 5918246.416391422, 5918541.266969726, 5920666.907135038, 5922698.4375, 5928206.164300969, 5931164.953547494, 5937825.110276933, 5946499.316047079, 5947996.67597878, 5950662.026015838, 5953405.31453384, 5954245.194780109, 5954628.125, 5955513.819437267, 5955824.318520491, 5956317.1875, 5957743.490092412, 5957745.531252621, 5959098.6022644965, 5959578.125, 5960195.3125, 5960351.699619744, 5960521.468742141, 5962010.9375, 5963939.866663453, 5964243.113363956, 5966284.375, 5966775.0, 5966954.485654435, 5967480.377308083, 5967695.360407843, 5967735.84485629, 5968021.655447538, 5968098.4375, 5968431.250799151, 5968506.099671538, 5968673.1057212455, 5969105.429089428, 5969165.593882142, 5969270.3125, 5969317.1875, 5969329.445867444, 5969341.647705347, 5969367.009314121, 5969447.680401882, 5969454.6875, 5969504.6875, 5969570.546473939, 5969706.25, 5969723.4375, 5969744.331374667, 5969778.125, 5969898.602973434, 5969931.474029881, 5970030.469943593, 5970057.981896962, 5970142.1875, 5970172.49361963, 5970288.969444503, 5970434.991738569, 5970461.234931242, 5970478.125, 5970544.751199398, 5970589.145545224, 5970768.044087899, 5970940.625, 5971315.499375237, 5971498.927796679, 5971666.463938708, 5971754.6875, 5972091.618939631, 5972235.341894371, 5972310.234301201, 5972375.0, 5972464.0625, 5972698.4375, 5972805.536783109, 5973277.979052688, 5973354.493746916, 5973639.13471502, 5973885.9375, 5974034.562838768, 5974227.773593047, 5974447.894840166, 5974729.6875, 5975028.035864453, 5975096.890792653, 5975105.938485748, 5975491.0179905975, 5975512.5, 5975631.809827641, 5975685.9375, 5975700.2422202425, 5975821.875, 5976009.375, 5976184.124308904, 5976372.082290233, 5976376.5625, 5976420.3125, 5976435.6500443155, 5976499.959941709, 5976534.179814815, 5976540.625, 5976624.68560241, 5976859.375, 5976948.1164875785, 5976999.101006892, 5977003.125, 5977051.224117758, 5977106.25, 5977140.433884186, 5977163.289022789, 5977379.860282615, 5977416.148531884, 5977778.903469932, 5977790.562170978, 5977991.125952194, 5978201.5625, 5978204.6875, 5978408.90587971, 5978422.520396946, 5978436.355150629, 5978559.375, 5979105.049193033, 5979178.082128165, 5979327.485420286, 5979333.6689698, 5979363.526988418, 5979466.97006794, 5979721.332709628, 5979727.48650267, 5980175.347290029, 5980462.061624007, 5980494.286371639, 5980775.529844274, 5980930.668774927, 5981043.62992136, 5981588.302126166, 5981659.375, 5981708.118404019, 5981832.463757239, 5981860.666280485, 5981979.164212406, 5981984.266833859, 5982031.019863127, 5982125.109944988, 5982201.5625, 5982782.8125, 5983071.875, 5983118.821580461, 5983137.220957613, 5983237.045683823, 5983279.433732763, 5983348.519606979, 5983365.625, 5983376.700657088, 5983378.308195324, 5983456.383030438, 5983531.096481451, 5983723.4375, 5983914.0625, 5983918.75, 5984048.426312052, 5984106.25, 5984145.790962698, 5984155.724658339, 5984172.243558378, 5984176.251766797, 5984307.446835616, 5984478.7209376935, 5984489.5576060815, 5984492.127922901, 5984587.5, 5984673.4213722795, 5984885.9375, 5984952.167035454, 5984975.507751383, 5985049.22687527, 5985119.931960179, 5985294.995548382, 5985315.629822483, 5985320.084037212, 5985676.600575726, 5985721.531094282, 5985787.5, 5985849.426593792, 5985888.510949046, 5985994.415534561, 5986008.666403702, 5986088.355097691, 5986212.5, 5986787.7759806, 5987559.227856444, 5988099.849551534, 5988203.416987528, 5988262.798739822, 5988387.142267844, 5988849.980525487, 5988850.0, 5988912.612165055, 5989014.728562961, 5989043.577810004, 5989147.638159515, 5989247.573638613, 5989516.490231408, 5989542.717955914, 5989628.125, 5989656.212872473, 5989720.665838351, 5989943.75, 5990327.143607743, 5991366.702067749, 5991548.4375, 5992084.375, 5992247.649493542, 5992691.396495178, 5992926.5625, 5993504.731690669, 5993855.947526038, 5993878.125, 5994863.021760319, 5994919.393744858, 5994932.53509293, 5995046.92456901, 5997845.155948475, 5998326.069068019, 5998406.25, 5999667.8937081015, 6000393.917831663, 6001050.34568798, 6005726.311869915, 6009620.169061832, 6014316.73818157, 6014447.566023891, 6016025.4660863215, 6020720.532673455, 6021800.0, 6024927.7020239, 6028032.8125, 6029245.516489132, 6029546.661057827, 6029610.579387199, 6030815.813155249, 6031132.750359388, 6031793.76510528, 6031951.953093129, 6032098.776674456, 6032738.956209069, 6033104.128533198, 6033107.8125, 6033173.631626781, 6033230.587509103, 6033280.561433008, 6033300.3837618055, 6033471.506772141, 6033627.158551846, 6033662.5, 6033674.882969506, 6033745.16752007, 6033760.741131082, 6033818.674004331, 6034023.567931183, 6034090.0518962005, 6034121.834085442, 6034134.375, 6034156.545092761, 6034238.295929223, 6034449.336793602, 6034590.288374368, 6034598.6742587425, 6034634.925317533, 6035611.752119591, 6035912.5, 6035957.8125, 6035968.75, 6036064.0625, 6036835.9375, 6039961.246622696, 6040123.294342464, 6041213.375040751, 6043020.68832913, 6045203.930814558, 6045623.951468341, 6045795.3125, 6045898.4375, 6046071.875, 6047127.830374295, 6047435.90375546, 6047528.776043961, 6048587.61338131, 6048785.891397706, 6049649.850568875, 6049783.901497439, 6049789.564604271, 6050837.658130635, 6051345.23694867, 6052703.125, 6055975.892932791, 6056034.44075481, 6057823.4375, 6058329.444273386, 6058734.375, 6058859.421411045, 6060193.312179777, 6060916.76895301, 6063449.163284211, 6063673.046695956, 6063768.463117889, 6064050.7187866075, 6064193.623191367, 6064244.587998731, 6064391.944732124, 6064427.736343365, 6064704.085042827, 6064717.081574621, 6064787.5, 6064941.87910221, 6064957.8125, 6065179.08253583, 6065283.891636009, 6065315.5655670455, 6065319.490550867, 6065492.346936191, 6065513.928859658, 6065536.594707793, 6065545.259233788, 6065563.714315676, 6065582.591410317, 6065729.159971933, 6065918.545201471, 6066061.105625032, 6066124.689170599, 6066915.748117547, 6066967.134733239, 6066978.37450924, 6067120.450495227, 6067204.6875, 6067290.625, 6067292.1875, 6067570.3125, 6067584.692084726, 6067682.387315364, 6067885.9375, 6067943.261143339, 6068170.3125, 6068473.372717023, 6068490.514686267, 6068506.199361806, 6068555.968493377, 6068565.4327535685, 6068603.006543618, 6068626.5625, 6068630.8821413955, 6068660.677315149, 6068697.258575898, 6068743.434483157, 6068762.261305149, 6068835.015808283, 6068839.872855621, 6068891.202173726, 6068892.40858787, 6068902.410608235, 6069124.393463978, 6069397.019237009, 6069406.25, 6069637.5, 6069657.610464712, 6069672.506289882, 6069887.5, 6069910.351656955, 6069918.888108515, 6069956.226186753, 6069987.5, 6070135.659825455, 6070163.601448561, 6070289.02778302, 6070425.224853911, 6070444.085218161, 6070533.129999692, 6070615.33793385, 6070672.385941558, 6070679.264324869, 6070679.500108775, 6070693.9416736355, 6070718.963950495, 6070797.829865288, 6070904.257751148, 6070943.904358344, 6071210.761804007, 6071486.973798482, 6071559.137919101, 6071956.740390249, 6072203.440431444, 6072245.0305383075, 6072484.305411018, 6072494.330592113, ...], [7.121508457229481, 15.622002832470667, 26.86782310221424, 10.03628144324826, 47.01063120453629, 58.50937253918984, 11.013803656190758, 11.352786267493329, 25.095595639420758, 29.491122314325064, 6.39984902445238, 82.94077393788157, 13.515471513559584, 113.8593756330374, 82.16831584958877, 17.441617410500093, 138.5047884856934, 95.20588093755626, 37.967891163964325, 22.55385710354433, 22.199561488624767, 27.343854247338243, 13.625185857011395, 5.97752832179726, 94.46736047624464, 25.636934259947378, 17.193506465831767, 14.501240281244232, 6.488478313525257, 6.62635862917158, 111.35994628134449, 18.740012545695233, 26.51873735865602, 26.184048776310643, 18.33728725651797, 84.34546160188798, 26.080905187385458, 58.678047468464044, 16.986321677872557, 22.50401399485684, 12.450653688248371, 41.92748685438321, 7.136036729389147, 37.52221167099812, 89.29707515584471, 43.02958959346769, 33.14224249382836, 45.69965186255725, 13.152555080344822, 40.28330549144801, 27.828723444215036, 99.39813486037497, 73.73350992374571, 21.679529537933853, 133.58872272345928, 79.53740946379926, 22.8085416361521, 34.120481134161096, 88.0369929319707, 13.066705679812488, 32.04493148042329, 17.32998170247172, 180.28439932416765, 9.648062375889953, 9.661663238438491, 29.450155243569853, 7.99017161202778, 36.828571453122024, 7.024624141852212, 64.3948374746216, 26.657819001350923, 14.12967477058423, 6.839638583185713, 34.76187731057505, 56.03333614793975, 33.1645428243947, 60.318108394483914, 59.30036510643932, 30.393627122882503, 61.03399608217702, 24.61480166141743, 14.52079181648582, 6.868750798259258, 71.86761613420934, 141.46515818417865, 35.240840932353386, 18.87492255640403, 20.81287664762498, 26.974466092996586, 45.858616035116654, 5.923725642024158, 77.98324887413875, 18.233685344197873, 8.471490297057967, 39.58874664766925, 18.782258640513334, 71.18090180910204, 10.027280124066118, 62.40716246699153, 30.201389376605515, 50.64180911837572, 55.32324811115771, 38.00610599326642, 11.402872826423929, 5.656867790381875, 7.083503375092225, 25.674793894725894, 72.61507736314616, 7.486869575714374, 29.567290855384595, 45.71053174431488, 12.229428086989316, 10.877489675532914, 74.88653403527321, 8.671211348215557, 22.329301005465332, 42.46959616570821, 27.384912333288007, 91.98637819051737, 18.81909500912308, 94.41739821968991, 85.02507499886028, 27.233246658267877, 18.321584114139124, 129.99766733040508, 56.63746233106147, 157.12430301034107, 64.40515908957208, 90.99713876341633, 5.4817329073324945, 31.278001929440716, 32.177483074443906, 25.427783426279134, 5.723311397839132, 23.907629973209954, 22.95396969748655, 5.617650298349299, 131.18278712159375, 33.878176040331105, 81.66049934970707, 75.76846888329159, 18.432825632668113, 21.82205394694907, 36.981175456366046, 32.680486978592114, 73.50803022150471, 13.285738427294527, 9.28382535314736, 131.94342743304415, 77.67924884290187, 9.820721216112485, 47.48975372282249, 43.547708038157374, 115.26957034432371, 26.12948979261744, 76.97206461779047, 9.497086880579099, 97.59279380675083, 8.95266759413793, 60.01971823318625, 101.28106081471215, 103.35784841409487, 36.21372550886906, 25.476435028963543, 70.43520114957897, 82.8151214110841, 164.3236343203382, 39.99435181183558, 8.589302950159674, 6.447920655835397, 7.153451874517084, 60.70459291399252, 17.70439298257174, 14.251482638750858, 30.02051628599787, 13.744551087318012, 26.402475899414224, 34.581832161224085, 49.36618997917438, 49.506957744234, 14.869191329512343, 25.956183153060174, 40.41281449868995, 20.25849344989722, 94.75626563577468, 5.0809134871736585, 7.909081688334306, 22.360907627404607, 201.0106328017481, 6.698439189738677, 20.715017671789695, 5.579866922951318, 19.88767106866497, 75.66350923065151, 12.006802643751364, 34.799073125717015, 6.637666378923929, 100.5759646111861, 33.23731770453832, 96.01135522638081, 21.1035281318928, 6.558931590154249, 6.2616567044466365, 17.010654232481954, 23.858477797368312, 15.574215013099082, 8.5560105354554, 13.299795362625337, 9.096058458835074, 40.0597576803483, 11.452439588112519, 25.33286269512002, 40.8643930738475, 19.903983044751087, 8.788170199091107, 66.00913196601152, 40.96871405519428, 91.60348457591243, 29.032925282321322, 21.907953188091962, 26.032392464697878, 37.65706078657308, 60.81276069894934, 23.558129206464223, 56.4914916833855, 139.10983391856342, 56.224547807517354, 61.756171080420486, 7.492572824395075, 12.353114273791896, 8.681828384984248, 32.63990290877388, 15.755839029246223, 36.03055690386754, 54.94511899408564, 44.047775412963496, 104.39835941300267, 79.0809830966139, 62.088864343869844, 19.14362869675606, 18.73857656741678, 50.30517903415173, 11.742246949530893, 10.62816346708105, 15.779221747455207, 26.959824763424592, 100.82641359826692, 17.15452089517313, 9.426941537544295, 80.90038946840171, 60.302600581195435, 5.087758859154118, 37.17285780877315, 48.594550446728014, 93.72973998600497, 39.99688718301974, 19.034028179945587, 38.08346134332891, 44.16807975501582, 30.866460748557373, 49.51735769545433, 34.32411798872086, 13.031662977070766, 15.846602139537058, 61.79673709667753, 136.36479357678627, 10.79186149625089, 59.43455119586303, 20.58013719498643, 108.42438010255292, 9.338362237326686, 17.77235212652301, 68.11292714622142, 88.74512647963341, 41.492673225278196, 14.605896543963121, 62.67760396216112, 57.557960939634256, 42.188806599286416, 18.069701683305084, 49.861545750992505, 36.113307686771215, 94.8776137031247, 50.090803739887804, 30.73090625235262, 13.950101785496638, 123.09706582934645, 11.710288780813865, 14.042735018260627, 38.57544383813318, 5.208075789572595, 10.646577743148407, 21.379616970257274, 60.496539449128875, 62.49972436226315, 7.928860952893132, 112.02448453787528, 44.55273883290614, 16.200113805649558, 6.826935774418895, 123.95194999814207, 64.98969058933879, 89.4680077468392, 11.429816277868895, 19.24126611568785, 68.61066141245772, 54.51826725781301, 13.233213320530938, 23.07072902590278, 38.48764084477543, 116.79418091378997, 17.605871340352333, 16.724250618353956, 20.792893278843884, 25.56053021674728, 12.491951162846663, 105.84126852130018, 35.8533572091078, 6.561079571936449, 30.748597825516292, 59.876764357713306, 10.979931312390502, 20.645760506730454, 6.408203241767735, 5.642678613466717, 22.064931538578776, 75.93882832074578, 18.379136638383855, 63.7977307066743, 121.4623991044093, 38.604029151329236, 64.60000001442415, 130.79939583687414, 47.151258881387854, 6.546082572135056, 40.08601034760838, 45.06680724608081, 6.1208645395283465, 22.329165965413473, 13.449394961502751, 19.889127861664637, 124.78945157839885, 25.427018524082584, 17.492225288803912, 35.84575964445041, 17.418057091977335, 10.6604271452214, 86.91398926345728, 9.2362690413996, 17.623839887328554, 13.171970363676238, 8.867039564905003, 70.72914448695944, 13.247757279258657, 22.36284196742851, 22.917183720037517, 34.724727652417236, 6.299395588598231, 45.02468901234618, 39.8339105864236, 39.43079929978848, 39.36378809896869, 137.77152261844054, 118.45243752960475, 51.49846863759563, 85.97769575938437, 11.714916988562448, 40.592166130245616, 12.664655165792361, 25.136590189281087, 22.647223104102043, 29.885631521072945, 21.523069090140936, 25.03330716524328, 66.66451802443345, 13.711256525231809, 36.97768209160355, 16.75629476075979, 13.925007665647774, 15.019331976277343, 21.077468146561262, 9.914919395147848, 8.493696731335435, 40.52879567076275, 33.88936216047285, 22.72048759443743, 22.533522322103856, 40.67918037017536, 46.771564236303846, 13.021546633563796, 31.454904108130236, 62.66521805461834, 8.491842069492819, 50.1741011038118, 20.764643382154592, 132.88541458660052, 5.553630334823579, 102.84910609283551, 7.623231006859917, 34.44737614066241, 5.84390691740163, 22.036840198304535, 113.20783345544903, 122.49384811529782, 103.12240379357827, 8.633529003249283, 9.769162031305898, 58.45089273052609, 5.686339535274176, 26.980696308156574, 6.183263092511685, 42.920997664243046, 5.929789832563014, 61.170736380572166, 58.79706618294118, 27.367508872395675, 68.64533822164638, 12.347677666738573, 154.32809161374726, 38.55005754451765, 81.01998338303194, 8.139859032171245, 39.89822360043007, 7.842466691009269, 6.8439548159986385, 32.29720140524364, 16.17432382260327, 5.912945131134354, 9.555883186419377, 87.92219507148731, 90.1663884771283, 25.222105493198416, 52.397548261530936, 36.197175346371, 91.82758469949283, 81.13015835680801, 38.70831199389707, 15.108117062144114, 89.19827438926411, 10.667659725836362, 134.3317091215296, 35.86281320523298, 7.352029494551889, 77.28259632754722, 149.93028636871276, 23.509338420361516, 75.05046379787623, 10.967142046307401, 46.17530482153521, 6.352252509167387, 25.55435179802882, 31.70809840748369, 20.864574990545318, 19.818177500311254, 180.73636293434862, 7.497485198046017, 51.88550183162342, 33.28407512207804, 136.07397512326244, 5.466076695207728, 44.00083583119428, 45.8338186078767, 11.931530403780135, 6.345964923963688, 35.760251425736016, 72.26830813993021, 18.205013343122605, 21.419401644019942, 6.781169271328337, 30.685884097223806, 73.31558373690413, 27.39658752313576, 54.79600034647512, 89.63986169123004, 26.559869165095087, 6.883226185036146, 29.243581496570005, 47.003793164367934, 38.71850415646752, 20.263412680503418, 30.65624339916355, 16.831183168852746, 13.225670651096198, 10.468403765515651, 65.96734371848136, 15.147487099784858, 59.04824012120194, 5.413028827591974, 58.52934483039095, 74.50064844114856, 23.194024820809876, 13.004433454044564, 6.174040860273673, 6.188512336175252, 53.415120616859184, 46.576588433689345, 32.917718403655265, 119.04820680516904, 208.71481592823636, 52.33078691554748, 7.5707338540656535, 28.442404110584796, 35.49948990412817, 139.08303518646832, 27.17583122976206, 36.38843207001262, 6.985896032376265, 76.81212950243386, 83.93060744411427, 39.12890981478999, 27.174203926241372, 8.406116055915058, 26.006265408696084, 59.28388007760053, 11.614185631250201, 41.885154671786665, 49.805820877760695, 13.49908366697652, 8.94777496131083, 9.168295331142591, 51.78496822905433, 7.683222014820149, 20.66426185252156, 17.02720638273373, 78.30165997999995, 24.64471736790961, 14.709432107068407, 18.345927942542588, 37.87513069506913, 62.96041649956279, 98.9201470244695, 20.934520716359412, 16.884290368141468, 10.589396823623101, 23.130824895986944, 22.141813644618672, 86.86390340724306, 9.12860685352898, 9.535547273482045, 5.06857609245448, 139.7705847360889, 11.252080029593744, 20.49861784042997, 9.481552767797583, 90.66693066298329, 5.9026996217120855, 22.126050744161716, 62.36911603206637, 75.27229240126749, 19.00704375971631, 18.195988214932456, 19.708147918199412, 19.072190710146543, 8.503315790979716, 15.920018898733765, 147.70817369374473, 38.79240132386955, 115.10192726597711, 39.045024311852885, 23.692578159817742, 23.101093070499367, 51.32169020677793, 79.49607947260867, 7.830296973888957, 13.883626200518894, 31.93156357541592, 35.98981718591699, 24.748145883226336, 78.66509477831194, 50.10118958570827, 73.01808299114411, 129.65760253661193, 52.43244157765467, 34.29841060176392, 50.3765788139171, 118.7148189204544, 32.33325469604457, 63.86187299399311, 133.32272940800988, 27.810697522121423, 10.143715434795412, 52.71314664587577, 87.16142303225898, 234.70146015790968, 45.53963724900058, 27.378095166221964, 6.935819850712588, 27.820231339735226, 19.588893307686153, 43.03810611989583, 57.028200339722474, 111.60749705781704, 23.01741417395753, 77.21975983225705, 78.90326613646755, 117.82391863121083, 109.32896161925679, 25.48080309046658, 96.81255055381713, 45.87065090927514, 19.747349883243878, 177.94251338137124, 24.24419503017732, 42.02218124179028, 118.45636865817517, 18.12228841394818, 51.412907712457795, 95.59712381659573, 33.03578853135948, 7.377188874214004, 20.562270363212036, 18.70009530065685, 25.132401295383882, 21.756608049508767, 18.026756305765026, 92.00221869060124, 118.33682689940527, 42.39831368261804, 12.855056905170327, 56.57813819419324, 67.28604854418947, 11.487758831816931, 6.7968524458059205, 95.25276723139105, 64.64980267186132, 15.78179884346931, 72.50437746626585, 68.38013970805851, 27.218339466001787, 20.23039831642939, 35.33806421693265, 79.65956702440539, 14.224204950819543, 38.86678634750449, 154.67021158904706, 33.63787248433141, 28.630212549802526, 77.81766833685148, 33.42788562465742, 25.87142435485772, 17.172420341408312, 25.584649130943845, 14.824214532720621, 94.94162984805583, 37.01914108410073, 5.691550523791268, 48.137296180040934, 39.29118583586383, 170.56758718082102, 46.94576997630365, 46.52981765540287, 11.51423800981813, 31.620212967179086, 45.94013336063631, 23.984986242302604, 31.364410307037588, 163.99882531623254, 30.120087444136423, 35.402438025567264, 15.629028889696825, 75.99440905295637, 49.558871086389495, 22.10145703748166, 11.488613221571162, 6.534749353607183, 42.7321424412627, 94.86949226182212, 33.06482200163124, 43.24726317185575, 42.44377419795212, 7.558424622542113, 17.210039403868024, 5.269248223176745, 63.725378032827436, 24.344963365692358, 5.32191845673786, 5.318389538689984, 59.156479174212066, 87.46946723302393, 40.4245004087766, 95.79583791158801, 25.940502086978857, 13.200787085650273, 25.152212382220075, 67.59622094940022, 19.92231189654153, 23.11557239237186, 64.58275087267324, 55.87776181340682, 26.878129074216314, 11.152481786951665, 13.87371308070169, 11.803061629274211, 37.79576222978704, 17.612782635365416, 112.56604865966864, 13.435359499909193, 54.69310303861171, 88.91175473333871, 16.345497015651972, 22.28994560674271, 69.4560180876921, 40.146771600746774, 5.237170597997886, 12.466700682475118, 60.436396248577424, 36.765792473822614, 10.669443318581454, 63.378182654890644, 122.09992531657153, 5.424459872713091, 116.77538345036787, 10.637009448482063, 79.84780103016729, 6.7259422952405, 12.634660344766228, 52.667838895556066, 66.15865096670771, 10.0895516507509, 27.340428065277095, 12.457757225368375, 43.076056372605144, 47.13603157975368, 21.806773686068468, 33.903808796380986, 5.414684104533971, 114.08413684529302, 14.141787236899894, 5.9356806634488, 125.06241647861114, 25.62092319780225, 21.146019680704043, 95.513395885212, 19.275765369342697, 20.214479417106944, 80.57695861136114, 18.495812677006498, 32.4636266449625, 37.80781571684686, 20.719377553520694, 26.357582085856855, 7.92162786697837, 44.04051104836605, 16.251496571733757, 15.815163532539597, 9.112138637412615, 13.262716106569425, 26.55511101743239, 6.064489566064364, 35.0117621905538, 110.11360878609943, 92.45905599468908, 32.00451480536033, 60.982681217377845, 6.444220816840798, 178.26568593570283, 10.752940888032146, 11.258517268200581, 32.03154196771669, 214.59590756143493, 15.6889784766279, 15.474019373005998, 10.895936623789835, 68.06004577796419, 28.797270931154433, 33.778640658856126, 5.813152917031411, 53.32174108007725, 8.556911935821736, 25.349597052730182, 16.560771282924193, 32.16183291119789, 13.709659534968067, 7.287442131900716, 38.95817779558579, 11.035843597013692, 33.51212112104791, 9.31780340501476, 35.09493267751627, 35.270637802904396, 5.739853066627651, 121.20059068389502, 22.773729749741186, 23.53659663926033, 7.604982824715598, 10.788443920457674, 63.66037555309123, 23.891774873912418, 75.95475904436306, 20.77094218489815, 8.90486048285502, 28.599822116146264, 5.763346841046017, 8.797222189574986, 29.712847867966747, 16.109244293827974, 44.802917200012324, 7.549714552673267, 6.823234106996755, 113.64277866651071, 23.040279998855443, 77.01495801409469, 88.59805912990299, 39.19770972814498, 51.30881267352688, 88.17838963362283, 20.582833992590345, 96.02145721317632, 22.042483570079952, 5.644080116236565, 101.06088966613477, 19.157471151660573, 37.1408591751713, 36.18537503055389, 30.38788359445184, 5.325558381751814, 41.956465547769696, 67.3246098308046, 26.838792473678062, 12.593956912096075, 42.89262796183788, 72.74131919372567, 13.90166262308142, 43.11333204264616, 77.72322268796617, 20.207516481171645, 36.882425736819016, 111.68183830575579, 14.376593508505826, 198.99650177705746, 32.436922115731974, 18.54883515374506, 31.39362744658258, 5.633459033560949, 5.795665639923946, 6.073308853584867, 22.014026629270873, 144.2166961434129, 157.63269489018967, 146.65289628645183, 55.57088616931732, 6.2151976347738245, 82.21702042027263, 15.780533160996313, 34.961173461129185, 23.035768230481647, 15.710683627502387, 70.58906410163574, 5.533814097931217, 11.79853461002566, 9.635663542094314, 38.06441070022084, 106.39564529096569, 39.64293057395132, 58.489238352865954, 23.209825036018984, 12.837662234113484, 95.76078358476028, 10.59711089842914, 17.832752874787758, 98.60357778514134, 42.15868376832549, 9.211750986369239, 71.33274193026595, 5.395576715213323, 41.3630441125354, 17.194132035591508, 7.588506315457868, 44.793744179446044, 220.1551568285557, 5.184322232210238, 28.514128376633927, 5.910616616181845, 8.415877487770137, 107.03164465898061, 10.130389070450027, 45.28123591780368, 52.91762110802248, 34.42063005665219, 121.50803208416198, 64.82052059286288, 8.457103374060745, 49.012442098966275, 32.97848527511896, 116.70064258701478, 23.58893136776345, 5.2167170607161255, 89.15890041798772, 68.3555402798558, 82.79488664342102, 9.094115062633767, 27.87412918810374, 6.594232184452948, 9.42914953269383, 27.644367904849748, 138.945588248524, 21.761562393894117, 132.76146431278858, 5.82577396800604, 98.67712246170971, 35.56254937695943, 96.17029649234293, 6.497448511514896, 74.27907008401203, 8.162011030257672, 102.88679382343962, 58.97499895276983, 323.7055213368317, 10.530974787171674, 14.151295986217757, 181.15568922172812, 23.919763331449886, 29.253617139185348, 154.89255228852346, 19.512158779875804, 53.29884958884168, 22.68069330888749, 30.24715508811501, 167.93295189425612, 45.30321632929053, 10.677608984931531, 51.769069124968816, 27.445632704631077, 13.371840244652336, 6.7516989632904885, 5.65637040653116, 57.91134840689318, 9.220902535435107, 12.338040217604675, 27.513215235914565, 10.62384975598386, 24.81391007272949, 81.45494290114065, 206.91704486075818, 5.717542134839765, 47.65707957105255, 8.352775002164554, 11.046218603620693, 16.674443123545586, 9.450876807082663, 131.06106475086372, 75.18328050150143, 44.81165831117331, 162.9848640102485, 25.688549864075352, 6.422443284806764, 66.32361027040831, 15.21917083410321, 52.78486995733164, 14.700205408290339, 86.91035777808858, 11.049467899043675, 208.36239777955112, 14.256113007092768, 118.94210880072865, 105.55068203443489, 28.815882739542058, 164.48094500541853, 8.500398305233592, 82.90555622946869, 32.79719483374562, 5.220061075276246, 15.925534273474238, 17.717214411167497, 15.856932326132796, 22.41693376414913, 20.49233769931229, 5.824730214566815, 169.46662927901795, 39.25732322574192, 61.32090023829216, 120.18122161775628, 115.8267511518587, 7.99930384123066, 41.06056365366901, 43.565173383806375, 50.66422308184832, 7.050323616381267, 13.43399792636687, 26.025317212966264, 107.60692932117107, 29.572599288724362, 24.7916951781314, 30.67918725822948, 12.032773784462899, 22.295302645597776, 33.7539343272755, 98.09128392617332, 7.178851860148547, 25.90873838850674, 90.95598354862284, 138.80377264070114, 100.31348993629672, 20.93553689374285, 94.04074754700713, 17.210564963837903, 16.297513086650824, 7.049253905436095, 40.53171290441831, 8.619478700934993, ...])
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)