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 = 44887
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);
([3106783.8435396235, 3149690.30929024, 3213011.749704494, 3228136.919971647, 3275056.25, 3308710.9375, 3317406.25, 3333926.5625, 3358180.6865246817, 3383239.0625, 3389244.7723905756, 3397541.518459063, 3418189.037261905, 3422444.7188330656, 3424685.9375, 3433409.375, 3453184.4426240316, 3465053.9648040356, 3477553.125, 3478651.1162669323, 3482782.355629617, 3515169.538463523, 3515391.5930263055, 3531304.126747851, 3532492.7411133084, 3537028.4312170018, 3538882.350866866, 3543686.102845511, 3549024.50946903, 3550088.789698361, 3555262.5, 3574305.2324549914, 3574353.9303627373, 3575605.031078509, 3579905.3155981353, 3580549.407139572, 3583557.384814372, 3585501.5501431082, 3596948.5179893672, 3600725.0, 3601449.5141130853, 3601617.1875, 3603445.0083553395, 3604047.406285418, 3608018.722048365, 3609446.6360904956, 3628308.6991245495, 3633031.25, 3664513.2805181136, 3664521.6691742823, 3666176.180649896, 3666461.8605697975, 3671673.4375, 3672403.712980658, 3672549.7749736896, 3673032.7134122034, 3699274.290005151, 3699366.0843510097, 3700008.6364327795, 3708551.5016750023, 3720941.103435052, 3750600.0, 3754121.875, 3794321.875, 3797848.4375, 3798718.5002258904, 3811538.6361914165, 3826891.50357179, 3842490.625, 3846191.666247241, 3846817.59219413, 3847517.9286970464, 3852176.5625, 3884985.1100072647, 3889168.2976321913, 3896153.125, 3897152.570120032, 3904800.0, 3904862.637235088, 3906849.6685648994, 3907724.3299028096, 3908607.2944063083, 3912399.85048886, 3918176.4134615283, 3919300.8956105453, 3919918.607766797, 3920666.4406478116, 3921129.0297111706, 3923827.3380570957, 3928073.265782264, 3930619.3795264247, 3932570.3460776466, 3957669.548146787, 4053848.247967681, 4054527.6323797735, 4081507.8134201653, 4092319.03659397, 4095262.5, 4096434.7380965184, 4096732.8125, 4098790.625, 4112560.9375, 4113574.455660618, 4123848.6926539917, 4125065.58422608, 4128915.5500601274, 4129712.5, 4134610.2137366747, 4135532.8125, 4137319.4267052747, 4157345.3125, 4169554.310139669, 4181160.395542826, 4183526.9725116836, 4188268.75, 4195243.75, 4198584.342394241, 4207031.25, 4235095.3125, 4244350.1843078695, 4248568.75, 4256884.375, 4258561.828418885, 4285311.7749647815, 4289501.5625, 4289759.375, 4310286.672574586, 4311660.792567986, 4312452.473520431, 4312852.836513399, 4313178.225066293, 4313855.569768555, 4314648.888874055, 4314914.0625, 4317117.1875, 4317897.941022314, 4319509.3357429765, 4321529.205212957, 4322387.501783062, 4323043.486626579, 4324422.427685622, 4329939.0625, 4331484.414535218, 4332464.474641182, 4333434.17761109, 4333449.867502843, 4335613.485368885, 4336914.141714552, 4339660.9375, 4342818.6680708155, 4343504.412177886, 4343642.989283772, 4344798.375234351, 4345425.0, 4347766.405121372, 4349186.500951457, 4351212.5, 4351627.011943394, 4353704.6875, 4354200.0, 4355598.4375, 4361920.563467574, 4363006.221073226, 4364636.537552206, 4368832.236716245, 4373366.771940908, 4379347.839295467, 4387244.795122453, 4391881.611174852, 4392621.156034861, 4401952.153306133, 4404446.607955571, 4404470.3125, 4404645.3125, 4411480.519087769, 4415633.346287405, 4417491.651300817, 4419421.875, 4421025.0, 4421043.040192421, 4424972.925745335, 4431410.940533742, 4434712.305694985, 4437631.78137658, 4477796.875, 4481977.457825765, 4482904.532790097, 4484129.492510892, 4484256.052496813, 4484766.126169646, 4485003.2935588155, 4487614.508796594, 4489260.329289905, 4490563.830542278, 4543579.6875, 4606381.379671141, 4612679.6875, 4616881.938943388, 4641318.101377644, 4675391.597804226, 4676691.328128391, 4696428.631509123, 4703546.381519871, 4703578.911988158, 4708967.220831335, 4710036.969082876, 4723755.104542518, 4731468.641729003, 4733497.955299165, 4733609.474563359, 4734044.613147048, 4735250.1894842135, 4740651.527035875, 4773693.75, 4830488.030315482, 4831950.288863719, 4835710.9375, 4838015.393383851, 4843048.921984047, 4847387.33676829, 4854742.639535238, 4872740.386262796, 5636022.326773395, 5663010.9375, 5667168.75, 5667195.017416263, 5677092.267311509, 5681339.838479828, 5681800.458799299, 5682218.75, 5682826.5625, 5724075.444910464, 5733792.207467477, 5770890.408810842, 5843548.4375, 5880865.625, 5882658.133209065, 5887543.963575354, 5905706.25, 5906223.4375, 5906451.5625, 5907911.730421536, 5908298.078572237, 5909446.275271069, 5910190.625, 5911702.383835639, 5914853.646484614, 5918810.019893133, 5919352.855714682, 5920197.446439701, 5921015.090756431, 5922463.364043751, 5924964.0625, 5935641.275821902, 5936902.592288034, 5947983.637220144, 5948104.3338532075, 5948465.478021498, 5955859.375, 5966682.8125, 5967100.543597938, 5970208.794187622, 5970707.349395229, 5973821.235928247, 5985292.684626417, 5996740.502077735, 5996885.9375, 5999516.81818478, 6001559.375, 6008522.791767026, 6012070.17264016, 6012376.826871641, 6012429.331688199, 6013226.430280397, 6013518.75, 6013532.82954253, 6014845.874269902, 6026454.6875, 6026947.264931692, 6027678.5201909505, 6029058.979297937, 6029878.125, 6030040.020257665, 6030047.318345004, 6030695.742373719, 6031050.805582314, 6041696.828976871, 6043330.496382688, 6043488.485044366, 6045554.468188579, 6049523.4375, 6050064.0625, 6050483.024166556, 6052370.002710936, 6053795.767419179, 6053885.32855172, 6055289.0625, 6055317.763862315, 6058442.680203508, 6058449.858730149, 6058539.020581796, 6073492.510648161, 6085797.51798478, 6087101.5625, 6089896.133529318, 6090301.491629519, 6092605.770889573, 6094245.021739049, 6101828.125, 6103374.8675262155, 6103385.933697845, 6104667.556353202, 6107123.465927212, 6109889.405729319, 6111033.1751788985, 6111845.3125, 6113505.547893011, 6113791.249816792, 6114527.017152952, 6114855.397364187, 6114865.109198801, 6117458.025450968, 6117904.6575838765, 6120220.514502201, 6121395.052916895, 6121422.374507916, 6121856.25, 6123444.70154656, 6125061.440757684, 6127632.535092629, 6129030.587877702, 6130516.101302727, 6131696.875, 6131859.693667862, 6132392.518094738, 6132801.4139857, 6134130.313188025, 6134954.220599343, 6135496.929599236, 6135778.151844242, 6135992.1875, 6136357.071281741, 6136866.677528069, 6137059.485615752, 6137213.137132803, 6137243.009655376, 6137523.108449505, 6137742.1875, 6138075.415959259, 6138160.945041797, 6138219.607320644, 6138275.047238713, 6138904.68614319, 6139992.538731711, 6140418.61977864, 6141244.80755798, 6141247.387718718, 6141392.003770058, 6141401.560434214, 6141522.004610496, 6141570.3125, 6141600.166165499, 6141668.910862849, 6141787.212012254, 6142150.064683347, 6142265.625, 6142326.268088652, 6142442.825187809, 6142505.70835416, 6142509.375, 6142531.542673256, 6142545.3125, 6142570.828339691, 6142578.125, 6142711.4646938415, 6142861.52903287, 6142953.435019435, 6142968.750419741, 6143034.637567059, 6143079.6875, 6143261.3922151085, 6143308.916785061, 6143339.0625, 6143354.992701518, 6143418.535880108, 6143564.737500793, 6144139.0625, 6144183.23010591, 6144473.012043516, 6144477.766190468, 6144685.9375, 6145370.232210545, 6145435.9375, 6145439.0625, 6145545.125766154, 6145666.226411318, 6145785.233134274, 6146064.0625, 6146210.529945117, 6146214.931562638, 6146400.0, 6146465.341266663, 6146476.631883921, 6146482.980883305, 6146808.898120788, 6147107.8125, 6147194.195694055, 6147234.830083226, 6147523.4375, 6147564.740654039, 6147748.491304195, 6148019.491369883, 6148493.234585077, 6148641.096730535, 6148787.5, 6149215.625, 6149350.538554042, 6149403.95328273, 6149645.3125, 6150256.8730870765, 6150352.753886133, 6150405.031280531, 6150521.260765054, 6150630.60266254, 6150711.841093468, 6150859.789113835, 6151127.937529583, 6151712.5, 6152010.940767829, 6152013.789469979, 6152215.452255517, 6152959.375, 6153000.556073238, 6153289.0625, 6153993.452658335, 6154217.5114009995, 6154221.249690769, 6154770.446894784, 6154800.0, 6155387.971714648, 6155476.0435223505, 6155487.451073083, 6155493.75, 6155512.715554853, 6155565.845569842, 6155632.8125, 6155643.597344033, 6155645.310302022, 6155656.751904511, 6155661.265987042, 6155683.464214322, 6155723.105296811, 6155899.677579111, 6155929.769386349, 6156003.712366618, 6156060.427301175, 6156121.493662484, 6156235.987038332, 6156327.534657122, 6156412.5, 6156414.0625, 6156425.0, 6156505.419906318, 6156640.199844954, 6156712.944803489, 6156756.103053122, 6157106.43370503, 6157125.00611884, 6157129.768529659, 6157191.143153604, 6157362.330554579, 6157397.321669653, 6157676.5625, 6157871.225920249, 6157914.920600087, 6158054.105724468, 6158150.0, 6158420.3125, 6158421.238152721, 6158435.9375, 6158443.75, 6158452.244641371, 6158479.256384415, 6158526.234451032, 6158612.994671633, 6158646.875, 6158711.483470647, 6159526.63996529, 6159770.122860272, 6159772.566671504, 6161317.828243463, 6163303.776270216, 6163676.5625, 6164757.416081237, 6165503.705425427, 6166993.293281078, 6167050.617153493, 6167331.675629184, 6167764.0625, 6168157.293262695, 6168365.826615061, 6169119.374038086, 6169265.8906152425, 6169271.36069374, 6169649.99806833, 6169773.4375, 6169777.471821934, 6172559.433549042, 6174870.726832676, 6174947.652406734, 6176006.25, 6177792.1875, 6177831.534464205, 6178016.977500222, 6178472.817328049, 6178717.01982796, 6178748.581691091, 6178768.170779358, 6179403.7936050175, 6180134.375, 6180637.765592755, 6180752.3744159695, 6180843.575844331, 6181843.0909943925, 6181903.125, 6182163.86117232, 6182298.045580742, 6182708.615335239, 6182805.656829217, 6183192.627462631, 6183451.943178989, 6183491.528243393, 6183779.44482592, 6183966.340450733, 6185417.233990766, 6185837.5, 6185842.1875, 6185852.463932164, 6185962.640262051, 6186260.626378295, 6186477.823834786, 6186501.795713945, 6186698.7033481775, 6186918.581960366, 6187457.000346985, 6187686.507470413, 6188192.175804257, 6188321.236693949, 6188788.258225199, 6190095.975963873, 6190796.875, 6194161.78823658, 6197299.548999047, 6199953.125, 6202628.980702088, 6203296.083414745, 6204789.0625, 6207498.905657263, 6208674.828294477, 6208749.508017518, 6209822.352991275, 6210237.5, 6210338.884223972, 6210740.625, 6210972.984095038, 6211161.630017959, 6211190.625, 6211410.9943572655, 6211546.13532917, 6211850.17556729, 6212098.579585449, 6212787.5, 6212834.375, 6213135.61427977, 6213181.814065699, 6213332.164213733, 6213584.375, 6213857.554804343, 6214004.6875, 6214732.374266325, 6215125.749199866, 6215207.7472037515, 6215235.440993244, 6216808.791897687, 6217071.875, 6217165.625, 6218381.25, 6219315.115479874, 6220814.791559009, 6221075.273666154, 6222242.504634051, 6227502.823838852, 6232026.315972831, 6234015.161965765, 6234632.577050419, 6234757.8125, 6239721.492550149, 6239738.606533731, 6242441.145092949, 6242594.401480393, 6243334.5789745245, 6246290.513680185, 6247668.172785008, 6247908.494410276, 6248292.266228142, 6249989.5033074515, 6250087.021351874, 6250231.9206299735, 6250653.125, 6250839.832995671, 6251221.731525879, 6251510.904987872, 6252337.00292126, 6252427.1192929065, 6252501.020067143, 6252845.3125, 6253153.73860905, 6253163.499707929, 6253412.713437584, 6255195.620461038, 6256526.337686685, 6256728.125, 6257209.375, 6257880.830225529, 6257912.494691337, 6258468.990517227, 6259864.338669756, 6261308.507628725, 6261469.163822273, 6263919.130339767, 6264959.7923707655, 6265764.937549199, 6265903.109529269, 6273115.553550711, 6274119.879435966, 6274246.875, 6274333.110525888, 6274821.3174911905, 6274932.750969668, 6275257.8125, 6275373.4375, 6275762.68609139, 6275782.668819042, 6276289.055698304, 6276748.4375, 6276871.979472929, 6277328.125, 6279537.5, 6279558.8097586725, 6280054.3312049145, 6280132.319886767, 6281592.1875, 6282080.9872541055, 6282371.780289539, 6284215.625, 6284225.801038579, 6284232.454056135, 6284878.7060183715, 6286194.837280829, 6286227.138109728, 6287410.121052083, 6287864.0625, 6288446.407178672, 6288707.8125, 6289427.305545865, 6289496.577654373, 6290158.431009286, 6290457.8125, 6291311.905164189, 6291790.147587081, 6293238.899651023, 6293547.6849478455, 6293553.127689069, 6294672.956390274, 6294896.479329717, 6294903.939548593, 6295552.052281839, 6295757.10942333, 6296120.125540389, 6296216.3509844635, 6296738.532258119, 6296829.6875, 6297320.189295446, 6297504.6875, 6297778.125, 6297987.5, 6298165.625, 6298169.4651567, 6298182.454956358, 6298184.355375607, 6298202.179050924, 6298221.811030374, 6298432.154954002, 6298454.9631700255, 6298562.269956343, 6298617.695397081, 6298742.160866179, 6298804.326369487, 6298909.006054389, 6298989.0625, 6299000.0, 6299390.625, 6299532.8125, 6300010.41796071, 6300051.206695525, 6300830.747845772, 6301141.875039822, 6301189.0625, 6301711.862263852, 6301790.625, 6301848.128307347, 6302271.669239199, 6302956.334231111, 6303439.035031416, 6304824.022439433, 6305553.751547972, 6306203.675757286, 6307154.6875, 6308089.931170713, 6308890.0462272605, 6308999.609218733, 6309659.557530207, 6310131.413086692, 6310253.798686773, 6310688.716742315, 6310715.069569837, 6311120.544414924, 6311540.625, 6311685.416394031, 6312136.391010872, 6312637.451322737, 6312728.735498638, 6313395.013958163, 6313599.6412172355, 6314040.052879852, 6314458.901132245, 6314530.827717541, 6314617.863707551, 6314721.074794025, 6314742.062112406, 6314800.1643102765, 6314837.022827477, 6314870.200815881, 6315039.115657865, 6315144.9536562655, 6315169.828215547, 6315413.058847215, 6315595.3125, 6315597.981687262, 6315600.0, 6315715.613392933, 6315784.375, 6315794.888834949, 6316003.690046956, 6316022.553740571, 6316063.028885517, 6316066.522912076, 6316179.9241143, 6316261.776168885, 6316267.680425616, 6316316.056297286, 6316381.124607565, 6316396.798361419, 6316456.25, 6316458.494580378, 6316496.6332419785, 6316558.874879905, 6316568.82024434, 6316623.4375, 6316640.385322688, 6316703.125, 6316742.795895817, 6316743.193954077, 6316748.579357534, 6316776.156885054, 6316826.147298254, 6316839.156888167, 6316848.4375, 6316854.359927184, 6317058.379081436, 6317079.258598379, 6317159.375, 6317186.016061139, 6317223.825919885, 6317312.5038595, 6317323.4375, 6317373.355814559, 6317469.443417903, 6317545.12786482, 6317573.931848746, 6317610.595994832, 6317612.5, 6317753.785155713, 6317761.842673781, 6317778.872145977, 6317792.1875, 6317821.6433569705, 6317825.802504541, 6317871.176488317, 6318088.654801986, 6318196.048550477, 6318335.738949428, 6318483.994052392, 6318705.314157466, 6318713.671919659, 6318719.711083928, 6318804.6875, 6318842.1875, 6318878.043510658, 6318890.781269254, 6318919.246513613, 6318968.895622228, 6319041.734740238, 6319117.419612671, 6319299.578497678, 6319401.5625, 6319466.600748443, 6319947.498988255, 6319973.595208115, 6320110.9375, 6320119.077700437, 6320217.1875, 6320422.644873891, 6320443.75, 6321634.375, 6321726.5625, 6323249.919342123, 6324671.875, 6324929.6875, 6326630.538311313, 6327148.053345835, 6327662.846006437, 6328637.5, 6328662.598896391, 6330437.877128069, 6330451.890324196, 6331888.525835896, 6333515.21062625, 6336177.575651803, 6336448.925336942, 6337398.4375, 6338428.125, 6338792.717721298, 6338828.01683421, 6339353.0060588615, 6340042.307450226, 6340374.188744014, 6340438.856860302, 6340656.596085712, 6340713.429938827, 6341041.8562916005, 6341341.203185348, 6341569.374718813, 6342224.93115184, 6342972.211277473, 6343041.011922925, 6343342.087100547, 6343673.282186361, 6343991.52372565, 6344186.497952296, 6344570.892104943, 6345556.672095312, 6346221.032725274, 6346467.1875, 6346738.098869714, 6346815.625, 6347307.834308019, 6347638.443009464, 6347863.23005263, 6348312.714328293, 6348504.874207376, 6348735.131216414, 6348819.049331393, 6349908.806982493, 6349994.687909016, 6350070.818173119, 6350345.994219267, 6350369.603499995, 6350465.027296319, 6350495.513287654, 6350601.2732221605, 6350631.25, 6351560.9375, 6351571.20715749, 6351639.652130297, 6351704.687639636, 6352107.565291198, 6352656.183339758, 6352694.343322057, 6352761.209218165, 6352817.46257734, 6353320.48724025, 6353506.567471531, 6353514.012109828, 6353517.534387449, 6353667.980983577, 6354067.1875, 6354152.96730933, 6354493.223883069, 6354732.8125, 6354816.798214886, 6354955.713687712, 6354958.713609347, 6355224.160347488, 6355440.521912355, 6356462.075161178, 6356651.5625, 6356690.189254801, 6356752.883526615, 6359567.336233933, 6363375.464773536, 6374853.125, 6375322.301607233, 6375893.439372629, 6379366.570062658, 6381384.375, 6385390.377436928, 6386146.440022363, 6387189.0625, 6388349.788232334, 6388445.595433284, 6388939.992796388, 6388940.625, 6389466.881598682, 6390406.083315349, 6390408.30507367, 6390669.892632589, 6390767.1875, 6390873.4375, 6391422.995659487, 6391558.259107002, 6391823.338037747, 6392204.6875, 6392322.499122044, 6392393.150743515, 6392476.971738577, 6392496.191082351, 6392507.62835945, 6392514.0625, 6392562.968728167, 6392895.1559067, 6392906.3726136945, 6392923.784353641, 6393027.822557493, 6393090.317324552, 6393189.992885441, 6393196.06497597, 6393205.689701079, 6393236.672169817, 6393360.387923897, 6393377.761476516, 6393430.742373482, 6393476.504950619, 6393489.695123636, 6394045.669593248, 6394052.199512425, 6394076.168661027, 6394100.0, 6394235.434206062, 6394316.199941182, 6394346.768520303, 6394346.875, 6394392.337325067, 6394401.83418003, 6394453.000358343, 6394512.5, 6394703.494755356, 6394715.460980985, 6394735.9375, 6394904.271570187, 6395196.4020455545, 6395210.9375, 6395357.147543982, 6395360.40796847, 6395471.405304948, 6395552.386169992, 6395646.418456968, 6395707.745589623, 6395795.433271048, 6395834.52105737, 6395923.155431127, 6395961.839192404, 6395984.884390313, 6395985.444961062, 6396070.3125, 6396116.014776356, 6396186.514751999, 6396285.002806484, 6396376.5625, 6396377.158407468, 6396384.6350897, 6396482.432985971, 6396501.650180951, 6396510.829466018, 6396550.0, 6396589.736427911, 6396650.0, 6396709.999815326, 6396731.305076494, 6396746.875, ...], [8.024199616757702, 29.309250993511693, 37.84224418509039, 30.794134935762557, 61.37721717637966, 53.56929178828259, 46.705573153422925, 36.63405270011753, 12.279563405030373, 36.74108541690162, 53.906584878839155, 12.885757354320017, 35.74965567067454, 57.45274956400617, 44.804958670755475, 55.50488869346195, 14.82941896668732, 5.269273744331469, 59.30020596890246, 76.4821986974004, 47.19757034177566, 8.752733942773489, 45.03482727749459, 12.72743609670102, 48.66325702054566, 65.74550543044035, 13.182351411763795, 6.51332676450516, 91.90488558238344, 24.104493458104535, 49.60616407228892, 17.80013332433113, 10.478792835724505, 15.73122038288439, 76.42919555960908, 76.07349011170126, 13.528559667864158, 28.28266840633477, 72.92595191580038, 67.63585840302376, 5.5099546233805246, 41.17738909593288, 38.73520073140897, 56.06261557282333, 27.983400300016697, 7.0600345428671885, 78.79795342185848, 44.87279019686481, 8.747488339038629, 56.147539752842235, 67.26392221391, 8.843536781410556, 68.98242182559714, 5.487582242410718, 136.4395696766224, 14.576820665242218, 5.57593703137902, 6.137206816006639, 31.15498225442481, 23.20174842313971, 17.861634240301388, 75.40260670067381, 57.78103498801479, 45.49911950729824, 85.65398085546059, 13.30021014090781, 27.601280438057906, 93.15738422399184, 56.119277639105164, 74.07080542042833, 9.698761335042416, 82.7402879197985, 29.654801527339075, 24.920445463467477, 22.95143108889932, 60.10282242648053, 60.49627959997278, 52.47557760226746, 9.4502030407417, 28.86546915572712, 12.883141752123075, 59.04890962281883, 25.88427756076139, 25.89171774507879, 57.14062861052791, 32.99851286441292, 78.98976205861388, 7.381476583899354, 7.910091140640107, 25.02220645699485, 9.927194443412588, 88.27914279185114, 63.27815255183247, 58.66558503326182, 8.946926711742398, 7.603570525106734, 16.159308586937996, 91.7367663978585, 16.53317306989763, 55.55717235688292, 60.347687897340116, 51.05645004339453, 21.061907616843474, 16.012225334474813, 68.43392126793714, 5.395616858926155, 73.62455074977105, 19.517920572649867, 100.88059134331925, 5.11201190278481, 56.70366968473033, 89.57294665382808, 21.084522468671597, 16.774372784279205, 69.74085700739028, 71.97750145477396, 5.936571040605696, 108.26208622862707, 56.53612320018341, 6.516376509675652, 43.50156840564426, 40.30490272914026, 12.879469808812624, 39.298685222054814, 69.45471709925891, 45.20479708092955, 18.749227154126817, 25.95657362980492, 12.9294803890016, 9.098829210295595, 8.340212548875895, 25.808344027001883, 44.297589642529516, 68.83718549383102, 50.70158880621435, 35.12586146305636, 47.308911310985664, 35.367768204152156, 20.030536662805417, 6.061132332946973, 17.57025648807065, 61.14229784825817, 52.994191071364334, 6.848674595070725, 50.43452906361745, 10.926733898419439, 37.06827197244312, 5.070339619143838, 98.20189578079618, 27.002912355542477, 5.237504381427937, 64.67735001919624, 27.350535999181794, 93.29362315329345, 44.49005533491987, 5.743581132826681, 78.95914520303157, 24.519906806883025, 72.23507627761143, 42.10450162500506, 31.717777212564165, 15.99291597335788, 105.96819563028541, 5.8597544106612505, 13.123176046539594, 50.101242337184, 20.56637341672305, 31.362985322123812, 11.743429192199201, 17.590908962341828, 77.64057746076503, 10.734468359607689, 61.96405232810173, 47.824628833934504, 10.149758219221166, 7.269212564839357, 42.05604850941608, 80.04598207568282, 43.61689085104032, 19.627715400449294, 21.376637166237895, 85.51895744825973, 9.172339235962992, 30.265329573335524, 84.07401818232799, 19.973185476617132, 51.95261979993455, 88.74609501474987, 78.51149711749804, 70.75206622071671, 21.524566662411203, 86.58874877307761, 44.515970940184026, 9.142680179668483, 58.85329354884039, 15.459915059795025, 29.728471881359475, 18.431624076331495, 15.323251869965087, 20.642688043454815, 45.10067265390222, 5.216521193313309, 8.94630732268189, 62.58146387916892, 83.45179999520207, 154.7435617363583, 40.40390992729395, 26.55335688457882, 21.672513155058258, 11.286980508100914, 45.320427917430166, 95.32200959928385, 8.267911920539971, 35.1613132433132, 44.4392931985646, 5.4743030062204205, 44.70148262705706, 49.780463017282315, 17.177474898030987, 25.670520827521067, 25.329444717511244, 5.691730748588617, 5.357644359103805, 47.88661643825261, 88.39656342203693, 13.924632703752039, 11.254791758022689, 75.90604651623003, 105.25164501049767, 53.44113549781737, 83.0414589803844, 62.40589154237911, 6.269724414278946, 6.453727414457612, 61.331455374826405, 111.59823113116875, 16.32315677854216, 13.572068529472197, 43.38661586982841, 64.0203459181476, 52.003160244989836, 6.619012846843743, 9.045293304966778, 13.476809017053485, 59.1539477015314, 7.93001543795562, 6.5720684407649275, 18.141143182727337, 19.09129167340462, 12.156167160441562, 137.3362377395582, 19.718198493786133, 43.129802985588476, 59.59805329545802, 47.57184253546827, 59.95398362659196, 10.61653999524007, 42.855419708580726, 90.85453257291046, 96.42220359997268, 22.238098792140914, 58.596820267292486, 30.972925643564004, 12.960643070351953, 12.005140321661322, 60.138819959505895, 43.14073768459865, 22.903954095134733, 77.97457023538998, 28.784293310699326, 26.03722241201643, 11.567709384859269, 42.41328045738109, 9.222051557545697, 34.91742426993762, 15.006867893552139, 17.624394867593363, 60.47754004590362, 43.788683876342766, 7.752711381867901, 40.370190963753274, 30.911536969683542, 5.228529264803211, 6.558910201414835, 18.143257373146255, 5.497439037107026, 91.29289030294885, 16.913223236653085, 51.76275703589964, 50.790919642990715, 96.99004263525312, 59.204330538001074, 7.1782266170068105, 74.32098400736349, 17.014359254388264, 20.47102769629969, 37.99925096902474, 19.606048860359255, 32.26441871905199, 10.913846420192094, 27.721656587938654, 16.335045412237076, 6.592840689111475, 44.316945856745235, 8.774365060921482, 12.3863753503921, 70.23744777671237, 53.917398413256905, 68.75029108385552, 55.08448912211506, 56.532735050530086, 6.839449340793644, 28.443860651125327, 5.633318864530125, 12.263882914142073, 91.79053395183641, 19.688981331575153, 6.349504527040118, 12.333907232523847, 151.89515579124497, 51.660021663905425, 9.518198902793928, 143.21776617391615, 11.458844487325338, 22.644229586737776, 72.15106665397055, 60.64109452979276, 17.28646149345958, 8.571933280221762, 24.043685728653333, 20.015160006704903, 11.963861091026859, 69.35261471480364, 63.946149406307754, 56.704811363085106, 9.208905599019198, 43.03658062903209, 21.82976295669999, 16.98104048174769, 38.32059164642197, 83.25730678223339, 18.446456098833046, 14.258360643676385, 25.181109791328645, 8.654921158799, 89.72870984049277, 54.768374401107394, 45.19745627272792, 139.10714305576465, 14.97033335038346, 16.817902009663833, 15.124670951066195, 6.486878559868433, 76.34840380101453, 10.93008539947488, 5.896606183114005, 12.036342978598679, 119.86970138515392, 23.81659284199861, 9.443454620902859, 31.723272593536752, 6.79713991695286, 11.388812850251874, 41.71828844817375, 57.249949215937676, 61.97904046773081, 72.96578836371505, 18.09476459222396, 13.213416887814965, 48.77465838091038, 11.618214779315263, 29.846372874724402, 36.62514672801329, 79.31715368589883, 9.82085565358804, 17.804914428912465, 11.649519953722061, 8.286799303942324, 17.84131041727215, 30.76080632953074, 75.79221324193607, 21.92030765125952, 32.40660822892965, 7.717484220858558, 10.808742514517856, 18.33836877945611, 40.04032939517164, 9.711373491368427, 34.575168685107286, 29.776190752518843, 90.89664274867164, 8.244570428914663, 41.13846504147462, 32.3884274617858, 21.068055471805607, 17.865918615589255, 88.60957333610907, 113.62365240817955, 31.890803639652432, 28.106070470264175, 34.50091459698546, 30.51760578520603, 68.15115977800323, 16.095514713915712, 96.54106095943627, 89.67500665707865, 9.739015797787873, 56.62989063427794, 79.33127944421955, 6.00072225980129, 57.70651483188542, 146.09809869303336, 40.77868324454642, 13.743865866907495, 70.20314814509763, 36.863996070835135, 17.486909743649203, 7.933058467826574, 73.96838385354668, 18.001732986731906, 197.90884661275842, 64.40369647309144, 7.395225011083571, 8.838099590522397, 131.0688625803549, 80.90303097492519, 25.303084275838682, 53.91708801003778, 24.62901878757068, 119.05880791458048, 29.874996301863092, 90.74742399118647, 17.590393557687264, 60.839124025195844, 76.37054137606249, 97.03067538057222, 20.327964771423893, 30.14999900834828, 52.77655537899174, 191.97551903714896, 23.889444851481386, 82.91178547126898, 70.24903573738698, 36.96515771229184, 15.854602731519586, 149.85127154160742, 21.87244656526761, 28.481729575064787, 18.61453705282869, 16.361150645115078, 18.082643820819825, 33.56994974619063, 50.25831516816832, 15.263085933862227, 27.75452955201917, 21.39196127079496, 135.18837571892337, 54.77714405332273, 50.86987768760953, 66.34693790532009, 123.63444032530906, 29.463972550714622, 12.50460559775615, 13.535811829082439, 7.772448367306089, 34.6916989585284, 21.089126770946223, 9.33658236336627, 15.259620705504286, 34.06041592685254, 79.59923291753907, 25.609152010542083, 130.09758021175887, 7.970774171689038, 135.48933324877447, 6.652663832673737, 42.78629381226573, 64.88646885141726, 20.2285900906773, 70.63494048567838, 82.92762753631652, 5.866237935563785, 22.208929305561302, 58.46688928480696, 97.02587245101529, 44.843893478055804, 41.38355063260248, 15.24522673386537, 139.77130269033992, 18.450016624997783, 28.86024127154942, 28.534758598972463, 103.30036297606895, 40.639166445924644, 86.19928918820554, 37.22036587423695, 37.22291970776918, 9.719240511357919, 70.41295227327184, 96.49013254856857, 5.4704871385458915, 18.0077542200504, 23.340143454016893, 13.287034587669988, 28.48699234243181, 36.69599387158758, 40.0229127611555, 57.05556900264109, 16.797068473940556, 10.088359293922549, 29.159069843529565, 40.02587907858684, 7.709469166483838, 140.4925635778492, 37.166084073167596, 19.733425573678623, 15.521136291069121, 69.88384775387652, 26.69467101666229, 37.29933289671898, 40.70771424492201, 19.311279081312346, 99.13312513101006, 12.910687958634927, 50.66745951328292, 211.3455528396309, 9.020631182421491, 58.91357064094741, 77.35299955220886, 62.56612216615557, 135.08098549652118, 123.84844925582095, 24.511702335333005, 40.297156906294276, 8.311316389489873, 44.155479647062386, 58.42178279471461, 92.88751886603134, 6.2850836159248304, 13.874923312536906, 23.735869071443155, 30.84232278526738, 7.193133712070868, 92.1682728610664, 128.47825631072237, 21.345643201936287, 28.29552354407041, 153.42919072389668, 18.91406940420948, 108.20584461241415, 75.80804945016193, 37.126134363482464, 21.9962258118848, 46.86442284629955, 34.5723852201547, 99.47911541271891, 104.88769427563403, 54.92250730458173, 18.04135521001757, 10.436925572136278, 5.850214827158704, 100.17938324812945, 9.185076651240259, 110.05768046300055, 19.157129411475594, 23.86687430016472, 28.774277927983263, 45.4241812222072, 12.714311332011256, 11.413685553955023, 15.512216417945243, 43.911281363587236, 51.07795775073284, 113.67334502919562, 5.5610973482079995, 6.960863112620006, 84.99125444933077, 24.306592592061147, 66.44550081803243, 72.58756207498294, 6.61131853027079, 92.81206101435572, 97.14658121363361, 40.04868240037869, 51.175802898655355, 36.693528430524445, 52.693284607079015, 18.681891637553246, 12.497043945981058, 9.574043964448425, 16.305773970199045, 13.905735032846492, 24.4586902471157, 21.86995324104165, 79.25756207673084, 75.74636659885434, 30.984326075575296, 6.675767135786343, 20.967149034564947, 18.18381790927046, 15.780468325912432, 13.736015521232412, 20.755934966959927, 6.357376622648449, 33.22901459615954, 42.61553951753295, 65.33871201258584, 45.80093047514789, 37.02651110069076, 6.369713461739758, 29.3497061762096, 27.897291417274754, 39.49936925931446, 110.72265787432454, 84.06458328288298, 41.30383741513245, 6.587783172833501, 14.588360564675545, 16.79798614271414, 171.83216219242973, 33.60925941625365, 62.63886785066495, 121.9566461180499, 116.13224640816091, 14.921313817251244, 9.543405682973685, 11.588678205235144, 24.01309967936446, 16.79438330830076, 7.225154171694083, 27.430490913826894, 56.40061838337763, 72.2211639279916, 27.186864571515212, 6.421281906597897, 77.93307975459446, 9.596789561460614, 10.355384437405267, 35.407846373207434, 68.16783248127061, 75.818451243129, 20.939725289393813, 10.91031322194541, 107.32684651386606, 105.77702830093524, 41.120223079423724, 51.73996372975529, 34.3354875152701, 31.58182009625763, 35.83105218719384, 29.702522714193876, 30.0400591107876, 32.317554797046355, 9.252583811019935, 69.49251192379465, 12.662796589494796, 23.031845908961966, 25.563204011876365, 69.79986989033617, 108.51648020329448, 129.27748115173534, 54.16344617450409, 11.370800339655005, 36.31277325671996, 28.519803079717995, 19.488489454264194, 111.14594892973727, 52.19240438510056, 64.26616985172714, 21.530527631771356, 25.67642601461572, 12.683782074520977, 8.287999862653482, 7.43802838021394, 79.84195903623063, 12.6946604553765, 70.89938493002866, 19.681239537387427, 36.16793466102753, 18.68551637794851, 85.02196282524099, 53.397224195588535, 78.3967047964405, 44.47821165468753, 47.785220591586544, 139.6878182065398, 45.647531112827956, 34.17018566828342, 147.13734611297502, 85.14313871228678, 45.43722673603479, 5.1638744455461945, 22.481484894886734, 18.677291014863396, 102.91380416241157, 5.078250109541608, 138.317301422986, 83.39359115366697, 15.418209345331508, 71.80254381626547, 62.53215152708611, 69.85461807640559, 48.12049428150061, 5.674472145723427, 25.949745685912035, 19.099553854107285, 35.66290422289898, 63.83497664327606, 20.220985668140397, 59.20820831952292, 32.68739355884888, 10.820631622293346, 74.05021280080635, 6.085247376365792, 6.344042481443438, 18.023670852160226, 29.04634704052725, 35.067979476751724, 94.8962290604986, 16.247753079369453, 22.656495228344788, 71.03784339526217, 56.187107059595725, 69.09781961864985, 9.055211007575421, 18.979630939425107, 5.959859777641103, 47.227816528515085, 107.2298191675917, 25.96947089673882, 90.33268948655837, 12.23795649574238, 21.946627402901385, 23.027832448591898, 10.33749838739373, 21.757805297758896, 24.88817099139802, 5.42496969504739, 48.16176841169067, 31.521456551664823, 53.70862759628508, 13.389002956901724, 26.49640938288928, 61.970698583185055, 54.40602286067889, 13.36929428380192, 84.18399617137146, 70.81231432872137, 25.771681516667854, 70.54277915442745, 124.83494825912709, 36.83406961928047, 27.59982559769731, 12.14294173390574, 12.38503733287267, 49.67231566095458, 61.57493410672011, 97.91261089319185, 19.51739109051074, 5.851375590101139, 19.51192213388756, 26.270598848632616, 27.095405924063712, 86.58820190899537, 97.41064986918964, 35.33396053727445, 128.9490505502846, 11.239307488213445, 134.3623358586919, 24.553126373550995, 72.19421125659167, 27.963412904640165, 8.901683347004957, 11.356923010670254, 80.54564928134437, 13.564447440072897, 5.820997349277276, 38.5125336553078, 7.48890657583274, 50.67047978482488, 22.232928347953646, 53.456174554693916, 15.249648053573813, 11.794435722764133, 84.43112993477135, 46.61696465936492, 57.394601473739556, 18.461815804823424, 10.850874117952088, 9.787577049281474, 20.111219920689138, 63.67228919871216, 18.24042406311402, 69.05453237401773, 12.53807023401516, 41.00839466764165, 118.98260470906793, 5.224361059003715, 130.4886439094595, 22.466079315706963, 8.718359065699811, 40.00706992689713, 8.094900944992501, 5.995901987578554, 22.658780898947853, 38.976935766247, 30.10144844060868, 40.31747571957714, 19.163589985710587, 61.97479117619178, 32.155528355304476, 27.071737741626272, 8.97582207258223, 9.535694550811119, 17.86538968767887, 71.45360314054147, 13.094571689532415, 28.830262653955085, 24.017529029912172, 70.75881339903819, 8.467821913302057, 62.025457880254336, 67.39529723878715, 38.95762023479968, 66.69329090999487, 78.17495704042828, 14.642740331617421, 100.74097879508129, 33.50751951160089, 65.2274254043732, 10.576026187527557, 46.0367211800171, 48.17894970490122, 15.332348039502808, 38.583244238840486, 11.68193391708108, 35.17954271720108, 22.392021608538577, 21.014556423871323, 9.781027211860053, 33.35092103444454, 48.45909567099975, 49.53990505370817, 19.882009992620965, 26.565906714716782, 11.320519754607314, 14.599537993546704, 41.17673665850303, 14.359760899598633, 5.0310428418554975, 94.85469950429459, 23.706316465132304, 87.2847068921177, 108.06203586721794, 5.4114871111537, 17.259795164769237, 30.084247481345887, 10.893320071402663, 80.14275183707757, 23.934278830226898, 24.675753304702095, 19.001883111276108, 30.537810264460962, 34.959479170102306, 26.936218930496015, 49.44227452856803, 7.1271961462614035, 72.23869281502687, 164.36017932605662, 26.074306368049392, 96.72344932067702, 12.558800212575113, 39.75222376611472, 61.167093754222, 33.779418544235725, 12.022212233357878, 9.983034367383269, 17.358022889891842, 52.12185812780456, 15.76634106477822, 135.69919565205578, 52.06757805612995, 76.36329965237563, 10.222901733584944, 5.992453325376699, 51.935413656203934, 140.42102497430133, 27.297955314107153, 43.8340524072033, 51.72957905290707, 16.10500309955214, 15.652168540772378, 26.13297191390312, 63.45514342254607, 12.541095611344431, 19.17249698043138, 58.123819943554345, 25.756333713064283, 19.774755600803495, 31.481381727735762, 59.962788340325915, 17.29427449626217, 10.230488018907417, 12.483049004115722, 26.64040241450762, 67.96238425801839, 67.63035818022279, 70.19758873219756, 43.55757864792333, 15.540429159025853, 15.090178914710489, 43.471162156709966, 16.86199385001412, 39.5634962571245, 20.39647986374355, 72.08040428046968, 68.67602801149584, 7.453141944679102, 71.90631247041544, 203.06915638782885, 46.4511776182939, 125.96086899474881, 54.577654460052436, 23.675652049352607, 63.87363504704683, 36.5015676390894, 45.40089971331437, 149.14508491746386, 41.004677674269125, 55.10097768973775, 65.97760809118309, 8.234671160969478, 115.76499132209162, 37.70362198379404, 5.770932200151516, 6.320325365672273, 10.204084779439523, 15.945170378902748, 94.23861833393997, 87.64429177512221, 25.773410413889287, 15.430399778100274, 7.215714904719722, 49.068145719867196, 37.19929116677145, 20.269202186791645, 19.66301297379982, 177.73389128583221, 50.83040010869382, 5.438662388076907, 5.684006510200302, 27.91565042879568, 74.84422455586473, 9.930477237339996, 7.218594751455556, 9.93513560505482, 45.35396961517772, 70.93720319988671, 5.675458626889075, 88.61632793516597, 20.66161590013227, 77.54114302130913, 29.143682255919366, 33.75427370082288, 208.30626754478394, 237.8329720279136, 16.56683618429635, 33.65194795782221, 36.38071527364548, 10.534380163222838, 44.8712872684251, 46.16211943811789, 8.826031764548334, 15.373851838482667, 8.052888730593782, 22.799400329132283, 117.49965779546638, 33.171390415650855, 22.874362411156792, 15.5290540945219, 16.83516322673967, 6.388263806289078, 154.40643458862266, 10.43622381645775, 79.91677676325357, 16.17054780519708, 23.150110632111893, 91.15611791060861, 60.36237820911435, 17.83186168314369, 12.973719094993768, 41.525939638461864, 130.08892472851198, 18.96286279679952, 73.16943068133136, 12.374485450478472, 76.07381100952196, 12.268365755340408, 6.495759751602061, 38.91950659894498, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3106783.8435396235, 3149690.30929024, 3213011.749704494, 3228136.919971647, 3275056.25, 3308710.9375, 3317406.25, 3333926.5625, 3358180.6865246817, 3383239.0625, 3389244.7723905756, 3397541.518459063, 3418189.037261905, 3422444.7188330656, 3424685.9375, 3433409.375, 3453184.4426240316, 3465053.9648040356, 3477553.125, 3478651.1162669323, 3482782.355629617, 3515169.538463523, 3515391.5930263055, 3531304.126747851, 3532492.7411133084, 3537028.4312170018, 3538882.350866866, 3543686.102845511, 3549024.50946903, 3550088.789698361, 3555262.5, 3574305.2324549914, 3574353.9303627373, 3575605.031078509, 3579905.3155981353, 3580549.407139572, 3583557.384814372, 3585501.5501431082, 3596948.5179893672, 3600725.0, 3601449.5141130853, 3601617.1875, 3603445.0083553395, 3604047.406285418, 3608018.722048365, 3609446.6360904956, 3628308.6991245495, 3633031.25, 3664513.2805181136, 3664521.6691742823, 3666176.180649896, 3666461.8605697975, 3671673.4375, 3672403.712980658, 3672549.7749736896, 3673032.7134122034, 3699274.290005151, 3699366.0843510097, 3700008.6364327795, 3708551.5016750023, 3720941.103435052, 3750600.0, 3754121.875, 3794321.875, 3797848.4375, 3798718.5002258904, 3811538.6361914165, 3826891.50357179, 3842490.625, 3846191.666247241, 3846817.59219413, 3847517.9286970464, 3852176.5625, 3884985.1100072647, 3889168.2976321913, 3896153.125, 3897152.570120032, 3904800.0, 3904862.637235088, 3906849.6685648994, 3907724.3299028096, 3908607.2944063083, 3912399.85048886, 3918176.4134615283, 3919300.8956105453, 3919918.607766797, 3920666.4406478116, 3921129.0297111706, 3923827.3380570957, 3928073.265782264, 3930619.3795264247, 3932570.3460776466, 3957669.548146787, 4053848.247967681, 4054527.6323797735, 4081507.8134201653, 4092319.03659397, 4095262.5, 4096434.7380965184, 4096732.8125, 4098790.625, 4112560.9375, 4113574.455660618, 4123848.6926539917, 4125065.58422608, 4128915.5500601274, 4129712.5, 4134610.2137366747, 4135532.8125, 4137319.4267052747, 4157345.3125, 4169554.310139669, 4181160.395542826, 4183526.9725116836, 4188268.75, 4195243.75, 4198584.342394241, 4207031.25, 4235095.3125, 4244350.1843078695, 4248568.75, 4256884.375, 4258561.828418885, 4285311.7749647815, 4289501.5625, 4289759.375, 4310286.672574586, 4311660.792567986, 4312452.473520431, 4312852.836513399, 4313178.225066293, 4313855.569768555, 4314648.888874055, 4314914.0625, 4317117.1875, 4317897.941022314, 4319509.3357429765, 4321529.205212957, 4322387.501783062, 4323043.486626579, 4324422.427685622, 4329939.0625, 4331484.414535218, 4332464.474641182, 4333434.17761109, 4333449.867502843, 4335613.485368885, 4336914.141714552, 4339660.9375, 4342818.6680708155, 4343504.412177886, 4343642.989283772, 4344798.375234351, 4345425.0, 4347766.405121372, 4349186.500951457, 4351212.5, 4351627.011943394, 4353704.6875, 4354200.0, 4355598.4375, 4361920.563467574, 4363006.221073226, 4364636.537552206, 4368832.236716245, 4373366.771940908, 4379347.839295467, 4387244.795122453, 4391881.611174852, 4392621.156034861, 4401952.153306133, 4404446.607955571, 4404470.3125, 4404645.3125, 4411480.519087769, 4415633.346287405, 4417491.651300817, 4419421.875, 4421025.0, 4421043.040192421, 4424972.925745335, 4431410.940533742, 4434712.305694985, 4437631.78137658, 4477796.875, 4481977.457825765, 4482904.532790097, 4484129.492510892, 4484256.052496813, 4484766.126169646, 4485003.2935588155, 4487614.508796594, 4489260.329289905, 4490563.830542278, 4543579.6875, 4606381.379671141, 4612679.6875, 4616881.938943388, 4641318.101377644, 4675391.597804226, 4676691.328128391, 4696428.631509123, 4703546.381519871, 4703578.911988158, 4708967.220831335, 4710036.969082876, 4723755.104542518, 4731468.641729003, 4733497.955299165, 4733609.474563359, 4734044.613147048, 4735250.1894842135, 4740651.527035875, 4773693.75, 4830488.030315482, 4831950.288863719, 4835710.9375, 4838015.393383851, 4843048.921984047, 4847387.33676829, 4854742.639535238, 4872740.386262796, 5636022.326773395, 5663010.9375, 5667168.75, 5667195.017416263, 5677092.267311509, 5681339.838479828, 5681800.458799299, 5682218.75, 5682826.5625, 5724075.444910464, 5733792.207467477, 5770890.408810842, 5843548.4375, 5880865.625, 5882658.133209065, 5887543.963575354, 5905706.25, 5906223.4375, 5906451.5625, 5907911.730421536, 5908298.078572237, 5909446.275271069, 5910190.625, 5911702.383835639, 5914853.646484614, 5918810.019893133, 5919352.855714682, 5920197.446439701, 5921015.090756431, 5922463.364043751, 5924964.0625, 5935641.275821902, 5936902.592288034, 5947983.637220144, 5948104.3338532075, 5948465.478021498, 5955859.375, 5966682.8125, 5967100.543597938, 5970208.794187622, 5970707.349395229, 5973821.235928247, 5985292.684626417, 5996740.502077735, 5996885.9375, 5999516.81818478, 6001559.375, 6008522.791767026, 6012070.17264016, 6012376.826871641, 6012429.331688199, 6013226.430280397, 6013518.75, 6013532.82954253, 6014845.874269902, 6026454.6875, 6026947.264931692, 6027678.5201909505, 6029058.979297937, 6029878.125, 6030040.020257665, 6030047.318345004, 6030695.742373719, 6031050.805582314, 6041696.828976871, 6043330.496382688, 6043488.485044366, 6045554.468188579, 6049523.4375, 6050064.0625, 6050483.024166556, 6052370.002710936, 6053795.767419179, 6053885.32855172, 6055289.0625, 6055317.763862315, 6058442.680203508, 6058449.858730149, 6058539.020581796, 6073492.510648161, 6085797.51798478, 6087101.5625, 6089896.133529318, 6090301.491629519, 6092605.770889573, 6094245.021739049, 6101828.125, 6103374.8675262155, 6103385.933697845, 6104667.556353202, 6107123.465927212, 6109889.405729319, 6111033.1751788985, 6111845.3125, 6113505.547893011, 6113791.249816792, 6114527.017152952, 6114855.397364187, 6114865.109198801, 6117458.025450968, 6117904.6575838765, 6120220.514502201, 6121395.052916895, 6121422.374507916, 6121856.25, 6123444.70154656, 6125061.440757684, 6127632.535092629, 6129030.587877702, 6130516.101302727, 6131696.875, 6131859.693667862, 6132392.518094738, 6132801.4139857, 6134130.313188025, 6134954.220599343, 6135496.929599236, 6135778.151844242, 6135992.1875, 6136357.071281741, 6136866.677528069, 6137059.485615752, 6137213.137132803, 6137243.009655376, 6137523.108449505, 6137742.1875, 6138075.415959259, 6138160.945041797, 6138219.607320644, 6138275.047238713, 6138904.68614319, 6139992.538731711, 6140418.61977864, 6141244.80755798, 6141247.387718718, 6141392.003770058, 6141401.560434214, 6141522.004610496, 6141570.3125, 6141600.166165499, 6141668.910862849, 6141787.212012254, 6142150.064683347, 6142265.625, 6142326.268088652, 6142442.825187809, 6142505.70835416, 6142509.375, 6142531.542673256, 6142545.3125, 6142570.828339691, 6142578.125, 6142711.4646938415, 6142861.52903287, 6142953.435019435, 6142968.750419741, 6143034.637567059, 6143079.6875, 6143261.3922151085, 6143308.916785061, 6143339.0625, 6143354.992701518, 6143418.535880108, 6143564.737500793, 6144139.0625, 6144183.23010591, 6144473.012043516, 6144477.766190468, 6144685.9375, 6145370.232210545, 6145435.9375, 6145439.0625, 6145545.125766154, 6145666.226411318, 6145785.233134274, 6146064.0625, 6146210.529945117, 6146214.931562638, 6146400.0, 6146465.341266663, 6146476.631883921, 6146482.980883305, 6146808.898120788, 6147107.8125, 6147194.195694055, 6147234.830083226, 6147523.4375, 6147564.740654039, 6147748.491304195, 6148019.491369883, 6148493.234585077, 6148641.096730535, 6148787.5, 6149215.625, 6149350.538554042, 6149403.95328273, 6149645.3125, 6150256.8730870765, 6150352.753886133, 6150405.031280531, 6150521.260765054, 6150630.60266254, 6150711.841093468, 6150859.789113835, 6151127.937529583, 6151712.5, 6152010.940767829, 6152013.789469979, 6152215.452255517, 6152959.375, 6153000.556073238, 6153289.0625, 6153993.452658335, 6154217.5114009995, 6154221.249690769, 6154770.446894784, 6154800.0, 6155387.971714648, 6155476.0435223505, 6155487.451073083, 6155493.75, 6155512.715554853, 6155565.845569842, 6155632.8125, 6155643.597344033, 6155645.310302022, 6155656.751904511, 6155661.265987042, 6155683.464214322, 6155723.105296811, 6155899.677579111, 6155929.769386349, 6156003.712366618, 6156060.427301175, 6156121.493662484, 6156235.987038332, 6156327.534657122, 6156412.5, 6156414.0625, 6156425.0, 6156505.419906318, 6156640.199844954, 6156712.944803489, 6156756.103053122, 6157106.43370503, 6157125.00611884, 6157129.768529659, 6157191.143153604, 6157362.330554579, 6157397.321669653, 6157676.5625, 6157871.225920249, 6157914.920600087, 6158054.105724468, 6158150.0, 6158420.3125, 6158421.238152721, 6158435.9375, 6158443.75, 6158452.244641371, 6158479.256384415, 6158526.234451032, 6158612.994671633, 6158646.875, 6158711.483470647, 6159526.63996529, 6159770.122860272, 6159772.566671504, 6161317.828243463, 6163303.776270216, 6163676.5625, 6164757.416081237, 6165503.705425427, 6166993.293281078, 6167050.617153493, 6167331.675629184, 6167764.0625, 6168157.293262695, 6168365.826615061, 6169119.374038086, 6169265.8906152425, 6169271.36069374, 6169649.99806833, 6169773.4375, 6169777.471821934, 6172559.433549042, 6174870.726832676, 6174947.652406734, 6176006.25, 6177792.1875, 6177831.534464205, 6178016.977500222, 6178472.817328049, 6178717.01982796, 6178748.581691091, 6178768.170779358, 6179403.7936050175, 6180134.375, 6180637.765592755, 6180752.3744159695, 6180843.575844331, 6181843.0909943925, 6181903.125, 6182163.86117232, 6182298.045580742, 6182708.615335239, 6182805.656829217, 6183192.627462631, 6183451.943178989, 6183491.528243393, 6183779.44482592, 6183966.340450733, 6185417.233990766, 6185837.5, 6185842.1875, 6185852.463932164, 6185962.640262051, 6186260.626378295, 6186477.823834786, 6186501.795713945, 6186698.7033481775, 6186918.581960366, 6187457.000346985, 6187686.507470413, 6188192.175804257, 6188321.236693949, 6188788.258225199, 6190095.975963873, 6190796.875, 6194161.78823658, 6197299.548999047, 6199953.125, 6202628.980702088, 6203296.083414745, 6204789.0625, 6207498.905657263, 6208674.828294477, 6208749.508017518, 6209822.352991275, 6210237.5, 6210338.884223972, 6210740.625, 6210972.984095038, 6211161.630017959, 6211190.625, 6211410.9943572655, 6211546.13532917, 6211850.17556729, 6212098.579585449, 6212787.5, 6212834.375, 6213135.61427977, 6213181.814065699, 6213332.164213733, 6213584.375, 6213857.554804343, 6214004.6875, 6214732.374266325, 6215125.749199866, 6215207.7472037515, 6215235.440993244, 6216808.791897687, 6217071.875, 6217165.625, 6218381.25, 6219315.115479874, 6220814.791559009, 6221075.273666154, 6222242.504634051, 6227502.823838852, 6232026.315972831, 6234015.161965765, 6234632.577050419, 6234757.8125, 6239721.492550149, 6239738.606533731, 6242441.145092949, 6242594.401480393, 6243334.5789745245, 6246290.513680185, 6247668.172785008, 6247908.494410276, 6248292.266228142, 6249989.5033074515, 6250087.021351874, 6250231.9206299735, 6250653.125, 6250839.832995671, 6251221.731525879, 6251510.904987872, 6252337.00292126, 6252427.1192929065, 6252501.020067143, 6252845.3125, 6253153.73860905, 6253163.499707929, 6253412.713437584, 6255195.620461038, 6256526.337686685, 6256728.125, 6257209.375, 6257880.830225529, 6257912.494691337, 6258468.990517227, 6259864.338669756, 6261308.507628725, 6261469.163822273, 6263919.130339767, 6264959.7923707655, 6265764.937549199, 6265903.109529269, 6273115.553550711, 6274119.879435966, 6274246.875, 6274333.110525888, 6274821.3174911905, 6274932.750969668, 6275257.8125, 6275373.4375, 6275762.68609139, 6275782.668819042, 6276289.055698304, 6276748.4375, 6276871.979472929, 6277328.125, 6279537.5, 6279558.8097586725, 6280054.3312049145, 6280132.319886767, 6281592.1875, 6282080.9872541055, 6282371.780289539, 6284215.625, 6284225.801038579, 6284232.454056135, 6284878.7060183715, 6286194.837280829, 6286227.138109728, 6287410.121052083, 6287864.0625, 6288446.407178672, 6288707.8125, 6289427.305545865, 6289496.577654373, 6290158.431009286, 6290457.8125, 6291311.905164189, 6291790.147587081, 6293238.899651023, 6293547.6849478455, 6293553.127689069, 6294672.956390274, 6294896.479329717, 6294903.939548593, 6295552.052281839, 6295757.10942333, 6296120.125540389, 6296216.3509844635, 6296738.532258119, 6296829.6875, 6297320.189295446, 6297504.6875, 6297778.125, 6297987.5, 6298165.625, 6298169.4651567, 6298182.454956358, 6298184.355375607, 6298202.179050924, 6298221.811030374, 6298432.154954002, 6298454.9631700255, 6298562.269956343, 6298617.695397081, 6298742.160866179, 6298804.326369487, 6298909.006054389, 6298989.0625, 6299000.0, 6299390.625, 6299532.8125, 6300010.41796071, 6300051.206695525, 6300830.747845772, 6301141.875039822, 6301189.0625, 6301711.862263852, 6301790.625, 6301848.128307347, 6302271.669239199, 6302956.334231111, 6303439.035031416, 6304824.022439433, 6305553.751547972, 6306203.675757286, 6307154.6875, 6308089.931170713, 6308890.0462272605, 6308999.609218733, 6309659.557530207, 6310131.413086692, 6310253.798686773, 6310688.716742315, 6310715.069569837, 6311120.544414924, 6311540.625, 6311685.416394031, 6312136.391010872, 6312637.451322737, 6312728.735498638, 6313395.013958163, 6313599.6412172355, 6314040.052879852, 6314458.901132245, 6314530.827717541, 6314617.863707551, 6314721.074794025, 6314742.062112406, 6314800.1643102765, 6314837.022827477, 6314870.200815881, 6315039.115657865, 6315144.9536562655, 6315169.828215547, 6315413.058847215, 6315595.3125, 6315597.981687262, 6315600.0, 6315715.613392933, 6315784.375, 6315794.888834949, 6316003.690046956, 6316022.553740571, 6316063.028885517, 6316066.522912076, 6316179.9241143, 6316261.776168885, 6316267.680425616, 6316316.056297286, 6316381.124607565, 6316396.798361419, 6316456.25, 6316458.494580378, 6316496.6332419785, 6316558.874879905, 6316568.82024434, 6316623.4375, 6316640.385322688, 6316703.125, 6316742.795895817, 6316743.193954077, 6316748.579357534, 6316776.156885054, 6316826.147298254, 6316839.156888167, 6316848.4375, 6316854.359927184, 6317058.379081436, 6317079.258598379, 6317159.375, 6317186.016061139, 6317223.825919885, 6317312.5038595, 6317323.4375, 6317373.355814559, 6317469.443417903, 6317545.12786482, 6317573.931848746, 6317610.595994832, 6317612.5, 6317753.785155713, 6317761.842673781, 6317778.872145977, 6317792.1875, 6317821.6433569705, 6317825.802504541, 6317871.176488317, 6318088.654801986, 6318196.048550477, 6318335.738949428, 6318483.994052392, 6318705.314157466, 6318713.671919659, 6318719.711083928, 6318804.6875, 6318842.1875, 6318878.043510658, 6318890.781269254, 6318919.246513613, 6318968.895622228, 6319041.734740238, 6319117.419612671, 6319299.578497678, 6319401.5625, 6319466.600748443, 6319947.498988255, 6319973.595208115, 6320110.9375, 6320119.077700437, 6320217.1875, 6320422.644873891, 6320443.75, 6321634.375, 6321726.5625, 6323249.919342123, 6324671.875, 6324929.6875, 6326630.538311313, 6327148.053345835, 6327662.846006437, 6328637.5, 6328662.598896391, 6330437.877128069, 6330451.890324196, 6331888.525835896, 6333515.21062625, 6336177.575651803, 6336448.925336942, 6337398.4375, 6338428.125, 6338792.717721298, 6338828.01683421, 6339353.0060588615, 6340042.307450226, 6340374.188744014, 6340438.856860302, 6340656.596085712, 6340713.429938827, 6341041.8562916005, 6341341.203185348, 6341569.374718813, 6342224.93115184, 6342972.211277473, 6343041.011922925, 6343342.087100547, 6343673.282186361, 6343991.52372565, 6344186.497952296, 6344570.892104943, 6345556.672095312, 6346221.032725274, 6346467.1875, 6346738.098869714, 6346815.625, 6347307.834308019, 6347638.443009464, 6347863.23005263, 6348312.714328293, 6348504.874207376, 6348735.131216414, 6348819.049331393, 6349908.806982493, 6349994.687909016, 6350070.818173119, 6350345.994219267, 6350369.603499995, 6350465.027296319, 6350495.513287654, 6350601.2732221605, 6350631.25, 6351560.9375, 6351571.20715749, 6351639.652130297, 6351704.687639636, 6352107.565291198, 6352656.183339758, 6352694.343322057, 6352761.209218165, 6352817.46257734, 6353320.48724025, 6353506.567471531, 6353514.012109828, 6353517.534387449, 6353667.980983577, 6354067.1875, 6354152.96730933, 6354493.223883069, 6354732.8125, 6354816.798214886, 6354955.713687712, 6354958.713609347, 6355224.160347488, 6355440.521912355, 6356462.075161178, 6356651.5625, 6356690.189254801, 6356752.883526615, 6359567.336233933, 6363375.464773536, 6374853.125, 6375322.301607233, 6375893.439372629, 6379366.570062658, 6381384.375, 6385390.377436928, 6386146.440022363, 6387189.0625, 6388349.788232334, 6388445.595433284, 6388939.992796388, 6388940.625, 6389466.881598682, 6390406.083315349, 6390408.30507367, 6390669.892632589, 6390767.1875, 6390873.4375, 6391422.995659487, 6391558.259107002, 6391823.338037747, 6392204.6875, 6392322.499122044, 6392393.150743515, 6392476.971738577, 6392496.191082351, 6392507.62835945, 6392514.0625, 6392562.968728167, 6392895.1559067, 6392906.3726136945, 6392923.784353641, 6393027.822557493, 6393090.317324552, 6393189.992885441, 6393196.06497597, 6393205.689701079, 6393236.672169817, 6393360.387923897, 6393377.761476516, 6393430.742373482, 6393476.504950619, 6393489.695123636, 6394045.669593248, 6394052.199512425, 6394076.168661027, 6394100.0, 6394235.434206062, 6394316.199941182, 6394346.768520303, 6394346.875, 6394392.337325067, 6394401.83418003, 6394453.000358343, 6394512.5, 6394703.494755356, 6394715.460980985, 6394735.9375, 6394904.271570187, 6395196.4020455545, 6395210.9375, 6395357.147543982, 6395360.40796847, 6395471.405304948, 6395552.386169992, 6395646.418456968, 6395707.745589623, 6395795.433271048, 6395834.52105737, 6395923.155431127, 6395961.839192404, 6395984.884390313, 6395985.444961062, 6396070.3125, 6396116.014776356, 6396186.514751999, 6396285.002806484, 6396376.5625, 6396377.158407468, 6396384.6350897, 6396482.432985971, 6396501.650180951, 6396510.829466018, 6396550.0, 6396589.736427911, 6396650.0, 6396709.999815326, 6396731.305076494, 6396746.875, ...], [8.024199616757702, 29.309250993511693, 37.84224418509039, 30.794134935762557, 61.37721717637966, 53.56929178828259, 46.705573153422925, 36.63405270011753, 12.279563405030373, 36.74108541690162, 53.906584878839155, 12.885757354320017, 35.74965567067454, 57.45274956400617, 44.804958670755475, 55.50488869346195, 14.82941896668732, 5.269273744331469, 59.30020596890246, 76.4821986974004, 47.19757034177566, 8.752733942773489, 45.03482727749459, 12.72743609670102, 48.66325702054566, 65.74550543044035, 13.182351411763795, 6.51332676450516, 91.90488558238344, 24.104493458104535, 49.60616407228892, 17.80013332433113, 10.478792835724505, 15.73122038288439, 76.42919555960908, 76.07349011170126, 13.528559667864158, 28.28266840633477, 72.92595191580038, 67.63585840302376, 5.5099546233805246, 41.17738909593288, 38.73520073140897, 56.06261557282333, 27.983400300016697, 7.0600345428671885, 78.79795342185848, 44.87279019686481, 8.747488339038629, 56.147539752842235, 67.26392221391, 8.843536781410556, 68.98242182559714, 5.487582242410718, 136.4395696766224, 14.576820665242218, 5.57593703137902, 6.137206816006639, 31.15498225442481, 23.20174842313971, 17.861634240301388, 75.40260670067381, 57.78103498801479, 45.49911950729824, 85.65398085546059, 13.30021014090781, 27.601280438057906, 93.15738422399184, 56.119277639105164, 74.07080542042833, 9.698761335042416, 82.7402879197985, 29.654801527339075, 24.920445463467477, 22.95143108889932, 60.10282242648053, 60.49627959997278, 52.47557760226746, 9.4502030407417, 28.86546915572712, 12.883141752123075, 59.04890962281883, 25.88427756076139, 25.89171774507879, 57.14062861052791, 32.99851286441292, 78.98976205861388, 7.381476583899354, 7.910091140640107, 25.02220645699485, 9.927194443412588, 88.27914279185114, 63.27815255183247, 58.66558503326182, 8.946926711742398, 7.603570525106734, 16.159308586937996, 91.7367663978585, 16.53317306989763, 55.55717235688292, 60.347687897340116, 51.05645004339453, 21.061907616843474, 16.012225334474813, 68.43392126793714, 5.395616858926155, 73.62455074977105, 19.517920572649867, 100.88059134331925, 5.11201190278481, 56.70366968473033, 89.57294665382808, 21.084522468671597, 16.774372784279205, 69.74085700739028, 71.97750145477396, 5.936571040605696, 108.26208622862707, 56.53612320018341, 6.516376509675652, 43.50156840564426, 40.30490272914026, 12.879469808812624, 39.298685222054814, 69.45471709925891, 45.20479708092955, 18.749227154126817, 25.95657362980492, 12.9294803890016, 9.098829210295595, 8.340212548875895, 25.808344027001883, 44.297589642529516, 68.83718549383102, 50.70158880621435, 35.12586146305636, 47.308911310985664, 35.367768204152156, 20.030536662805417, 6.061132332946973, 17.57025648807065, 61.14229784825817, 52.994191071364334, 6.848674595070725, 50.43452906361745, 10.926733898419439, 37.06827197244312, 5.070339619143838, 98.20189578079618, 27.002912355542477, 5.237504381427937, 64.67735001919624, 27.350535999181794, 93.29362315329345, 44.49005533491987, 5.743581132826681, 78.95914520303157, 24.519906806883025, 72.23507627761143, 42.10450162500506, 31.717777212564165, 15.99291597335788, 105.96819563028541, 5.8597544106612505, 13.123176046539594, 50.101242337184, 20.56637341672305, 31.362985322123812, 11.743429192199201, 17.590908962341828, 77.64057746076503, 10.734468359607689, 61.96405232810173, 47.824628833934504, 10.149758219221166, 7.269212564839357, 42.05604850941608, 80.04598207568282, 43.61689085104032, 19.627715400449294, 21.376637166237895, 85.51895744825973, 9.172339235962992, 30.265329573335524, 84.07401818232799, 19.973185476617132, 51.95261979993455, 88.74609501474987, 78.51149711749804, 70.75206622071671, 21.524566662411203, 86.58874877307761, 44.515970940184026, 9.142680179668483, 58.85329354884039, 15.459915059795025, 29.728471881359475, 18.431624076331495, 15.323251869965087, 20.642688043454815, 45.10067265390222, 5.216521193313309, 8.94630732268189, 62.58146387916892, 83.45179999520207, 154.7435617363583, 40.40390992729395, 26.55335688457882, 21.672513155058258, 11.286980508100914, 45.320427917430166, 95.32200959928385, 8.267911920539971, 35.1613132433132, 44.4392931985646, 5.4743030062204205, 44.70148262705706, 49.780463017282315, 17.177474898030987, 25.670520827521067, 25.329444717511244, 5.691730748588617, 5.357644359103805, 47.88661643825261, 88.39656342203693, 13.924632703752039, 11.254791758022689, 75.90604651623003, 105.25164501049767, 53.44113549781737, 83.0414589803844, 62.40589154237911, 6.269724414278946, 6.453727414457612, 61.331455374826405, 111.59823113116875, 16.32315677854216, 13.572068529472197, 43.38661586982841, 64.0203459181476, 52.003160244989836, 6.619012846843743, 9.045293304966778, 13.476809017053485, 59.1539477015314, 7.93001543795562, 6.5720684407649275, 18.141143182727337, 19.09129167340462, 12.156167160441562, 137.3362377395582, 19.718198493786133, 43.129802985588476, 59.59805329545802, 47.57184253546827, 59.95398362659196, 10.61653999524007, 42.855419708580726, 90.85453257291046, 96.42220359997268, 22.238098792140914, 58.596820267292486, 30.972925643564004, 12.960643070351953, 12.005140321661322, 60.138819959505895, 43.14073768459865, 22.903954095134733, 77.97457023538998, 28.784293310699326, 26.03722241201643, 11.567709384859269, 42.41328045738109, 9.222051557545697, 34.91742426993762, 15.006867893552139, 17.624394867593363, 60.47754004590362, 43.788683876342766, 7.752711381867901, 40.370190963753274, 30.911536969683542, 5.228529264803211, 6.558910201414835, 18.143257373146255, 5.497439037107026, 91.29289030294885, 16.913223236653085, 51.76275703589964, 50.790919642990715, 96.99004263525312, 59.204330538001074, 7.1782266170068105, 74.32098400736349, 17.014359254388264, 20.47102769629969, 37.99925096902474, 19.606048860359255, 32.26441871905199, 10.913846420192094, 27.721656587938654, 16.335045412237076, 6.592840689111475, 44.316945856745235, 8.774365060921482, 12.3863753503921, 70.23744777671237, 53.917398413256905, 68.75029108385552, 55.08448912211506, 56.532735050530086, 6.839449340793644, 28.443860651125327, 5.633318864530125, 12.263882914142073, 91.79053395183641, 19.688981331575153, 6.349504527040118, 12.333907232523847, 151.89515579124497, 51.660021663905425, 9.518198902793928, 143.21776617391615, 11.458844487325338, 22.644229586737776, 72.15106665397055, 60.64109452979276, 17.28646149345958, 8.571933280221762, 24.043685728653333, 20.015160006704903, 11.963861091026859, 69.35261471480364, 63.946149406307754, 56.704811363085106, 9.208905599019198, 43.03658062903209, 21.82976295669999, 16.98104048174769, 38.32059164642197, 83.25730678223339, 18.446456098833046, 14.258360643676385, 25.181109791328645, 8.654921158799, 89.72870984049277, 54.768374401107394, 45.19745627272792, 139.10714305576465, 14.97033335038346, 16.817902009663833, 15.124670951066195, 6.486878559868433, 76.34840380101453, 10.93008539947488, 5.896606183114005, 12.036342978598679, 119.86970138515392, 23.81659284199861, 9.443454620902859, 31.723272593536752, 6.79713991695286, 11.388812850251874, 41.71828844817375, 57.249949215937676, 61.97904046773081, 72.96578836371505, 18.09476459222396, 13.213416887814965, 48.77465838091038, 11.618214779315263, 29.846372874724402, 36.62514672801329, 79.31715368589883, 9.82085565358804, 17.804914428912465, 11.649519953722061, 8.286799303942324, 17.84131041727215, 30.76080632953074, 75.79221324193607, 21.92030765125952, 32.40660822892965, 7.717484220858558, 10.808742514517856, 18.33836877945611, 40.04032939517164, 9.711373491368427, 34.575168685107286, 29.776190752518843, 90.89664274867164, 8.244570428914663, 41.13846504147462, 32.3884274617858, 21.068055471805607, 17.865918615589255, 88.60957333610907, 113.62365240817955, 31.890803639652432, 28.106070470264175, 34.50091459698546, 30.51760578520603, 68.15115977800323, 16.095514713915712, 96.54106095943627, 89.67500665707865, 9.739015797787873, 56.62989063427794, 79.33127944421955, 6.00072225980129, 57.70651483188542, 146.09809869303336, 40.77868324454642, 13.743865866907495, 70.20314814509763, 36.863996070835135, 17.486909743649203, 7.933058467826574, 73.96838385354668, 18.001732986731906, 197.90884661275842, 64.40369647309144, 7.395225011083571, 8.838099590522397, 131.0688625803549, 80.90303097492519, 25.303084275838682, 53.91708801003778, 24.62901878757068, 119.05880791458048, 29.874996301863092, 90.74742399118647, 17.590393557687264, 60.839124025195844, 76.37054137606249, 97.03067538057222, 20.327964771423893, 30.14999900834828, 52.77655537899174, 191.97551903714896, 23.889444851481386, 82.91178547126898, 70.24903573738698, 36.96515771229184, 15.854602731519586, 149.85127154160742, 21.87244656526761, 28.481729575064787, 18.61453705282869, 16.361150645115078, 18.082643820819825, 33.56994974619063, 50.25831516816832, 15.263085933862227, 27.75452955201917, 21.39196127079496, 135.18837571892337, 54.77714405332273, 50.86987768760953, 66.34693790532009, 123.63444032530906, 29.463972550714622, 12.50460559775615, 13.535811829082439, 7.772448367306089, 34.6916989585284, 21.089126770946223, 9.33658236336627, 15.259620705504286, 34.06041592685254, 79.59923291753907, 25.609152010542083, 130.09758021175887, 7.970774171689038, 135.48933324877447, 6.652663832673737, 42.78629381226573, 64.88646885141726, 20.2285900906773, 70.63494048567838, 82.92762753631652, 5.866237935563785, 22.208929305561302, 58.46688928480696, 97.02587245101529, 44.843893478055804, 41.38355063260248, 15.24522673386537, 139.77130269033992, 18.450016624997783, 28.86024127154942, 28.534758598972463, 103.30036297606895, 40.639166445924644, 86.19928918820554, 37.22036587423695, 37.22291970776918, 9.719240511357919, 70.41295227327184, 96.49013254856857, 5.4704871385458915, 18.0077542200504, 23.340143454016893, 13.287034587669988, 28.48699234243181, 36.69599387158758, 40.0229127611555, 57.05556900264109, 16.797068473940556, 10.088359293922549, 29.159069843529565, 40.02587907858684, 7.709469166483838, 140.4925635778492, 37.166084073167596, 19.733425573678623, 15.521136291069121, 69.88384775387652, 26.69467101666229, 37.29933289671898, 40.70771424492201, 19.311279081312346, 99.13312513101006, 12.910687958634927, 50.66745951328292, 211.3455528396309, 9.020631182421491, 58.91357064094741, 77.35299955220886, 62.56612216615557, 135.08098549652118, 123.84844925582095, 24.511702335333005, 40.297156906294276, 8.311316389489873, 44.155479647062386, 58.42178279471461, 92.88751886603134, 6.2850836159248304, 13.874923312536906, 23.735869071443155, 30.84232278526738, 7.193133712070868, 92.1682728610664, 128.47825631072237, 21.345643201936287, 28.29552354407041, 153.42919072389668, 18.91406940420948, 108.20584461241415, 75.80804945016193, 37.126134363482464, 21.9962258118848, 46.86442284629955, 34.5723852201547, 99.47911541271891, 104.88769427563403, 54.92250730458173, 18.04135521001757, 10.436925572136278, 5.850214827158704, 100.17938324812945, 9.185076651240259, 110.05768046300055, 19.157129411475594, 23.86687430016472, 28.774277927983263, 45.4241812222072, 12.714311332011256, 11.413685553955023, 15.512216417945243, 43.911281363587236, 51.07795775073284, 113.67334502919562, 5.5610973482079995, 6.960863112620006, 84.99125444933077, 24.306592592061147, 66.44550081803243, 72.58756207498294, 6.61131853027079, 92.81206101435572, 97.14658121363361, 40.04868240037869, 51.175802898655355, 36.693528430524445, 52.693284607079015, 18.681891637553246, 12.497043945981058, 9.574043964448425, 16.305773970199045, 13.905735032846492, 24.4586902471157, 21.86995324104165, 79.25756207673084, 75.74636659885434, 30.984326075575296, 6.675767135786343, 20.967149034564947, 18.18381790927046, 15.780468325912432, 13.736015521232412, 20.755934966959927, 6.357376622648449, 33.22901459615954, 42.61553951753295, 65.33871201258584, 45.80093047514789, 37.02651110069076, 6.369713461739758, 29.3497061762096, 27.897291417274754, 39.49936925931446, 110.72265787432454, 84.06458328288298, 41.30383741513245, 6.587783172833501, 14.588360564675545, 16.79798614271414, 171.83216219242973, 33.60925941625365, 62.63886785066495, 121.9566461180499, 116.13224640816091, 14.921313817251244, 9.543405682973685, 11.588678205235144, 24.01309967936446, 16.79438330830076, 7.225154171694083, 27.430490913826894, 56.40061838337763, 72.2211639279916, 27.186864571515212, 6.421281906597897, 77.93307975459446, 9.596789561460614, 10.355384437405267, 35.407846373207434, 68.16783248127061, 75.818451243129, 20.939725289393813, 10.91031322194541, 107.32684651386606, 105.77702830093524, 41.120223079423724, 51.73996372975529, 34.3354875152701, 31.58182009625763, 35.83105218719384, 29.702522714193876, 30.0400591107876, 32.317554797046355, 9.252583811019935, 69.49251192379465, 12.662796589494796, 23.031845908961966, 25.563204011876365, 69.79986989033617, 108.51648020329448, 129.27748115173534, 54.16344617450409, 11.370800339655005, 36.31277325671996, 28.519803079717995, 19.488489454264194, 111.14594892973727, 52.19240438510056, 64.26616985172714, 21.530527631771356, 25.67642601461572, 12.683782074520977, 8.287999862653482, 7.43802838021394, 79.84195903623063, 12.6946604553765, 70.89938493002866, 19.681239537387427, 36.16793466102753, 18.68551637794851, 85.02196282524099, 53.397224195588535, 78.3967047964405, 44.47821165468753, 47.785220591586544, 139.6878182065398, 45.647531112827956, 34.17018566828342, 147.13734611297502, 85.14313871228678, 45.43722673603479, 5.1638744455461945, 22.481484894886734, 18.677291014863396, 102.91380416241157, 5.078250109541608, 138.317301422986, 83.39359115366697, 15.418209345331508, 71.80254381626547, 62.53215152708611, 69.85461807640559, 48.12049428150061, 5.674472145723427, 25.949745685912035, 19.099553854107285, 35.66290422289898, 63.83497664327606, 20.220985668140397, 59.20820831952292, 32.68739355884888, 10.820631622293346, 74.05021280080635, 6.085247376365792, 6.344042481443438, 18.023670852160226, 29.04634704052725, 35.067979476751724, 94.8962290604986, 16.247753079369453, 22.656495228344788, 71.03784339526217, 56.187107059595725, 69.09781961864985, 9.055211007575421, 18.979630939425107, 5.959859777641103, 47.227816528515085, 107.2298191675917, 25.96947089673882, 90.33268948655837, 12.23795649574238, 21.946627402901385, 23.027832448591898, 10.33749838739373, 21.757805297758896, 24.88817099139802, 5.42496969504739, 48.16176841169067, 31.521456551664823, 53.70862759628508, 13.389002956901724, 26.49640938288928, 61.970698583185055, 54.40602286067889, 13.36929428380192, 84.18399617137146, 70.81231432872137, 25.771681516667854, 70.54277915442745, 124.83494825912709, 36.83406961928047, 27.59982559769731, 12.14294173390574, 12.38503733287267, 49.67231566095458, 61.57493410672011, 97.91261089319185, 19.51739109051074, 5.851375590101139, 19.51192213388756, 26.270598848632616, 27.095405924063712, 86.58820190899537, 97.41064986918964, 35.33396053727445, 128.9490505502846, 11.239307488213445, 134.3623358586919, 24.553126373550995, 72.19421125659167, 27.963412904640165, 8.901683347004957, 11.356923010670254, 80.54564928134437, 13.564447440072897, 5.820997349277276, 38.5125336553078, 7.48890657583274, 50.67047978482488, 22.232928347953646, 53.456174554693916, 15.249648053573813, 11.794435722764133, 84.43112993477135, 46.61696465936492, 57.394601473739556, 18.461815804823424, 10.850874117952088, 9.787577049281474, 20.111219920689138, 63.67228919871216, 18.24042406311402, 69.05453237401773, 12.53807023401516, 41.00839466764165, 118.98260470906793, 5.224361059003715, 130.4886439094595, 22.466079315706963, 8.718359065699811, 40.00706992689713, 8.094900944992501, 5.995901987578554, 22.658780898947853, 38.976935766247, 30.10144844060868, 40.31747571957714, 19.163589985710587, 61.97479117619178, 32.155528355304476, 27.071737741626272, 8.97582207258223, 9.535694550811119, 17.86538968767887, 71.45360314054147, 13.094571689532415, 28.830262653955085, 24.017529029912172, 70.75881339903819, 8.467821913302057, 62.025457880254336, 67.39529723878715, 38.95762023479968, 66.69329090999487, 78.17495704042828, 14.642740331617421, 100.74097879508129, 33.50751951160089, 65.2274254043732, 10.576026187527557, 46.0367211800171, 48.17894970490122, 15.332348039502808, 38.583244238840486, 11.68193391708108, 35.17954271720108, 22.392021608538577, 21.014556423871323, 9.781027211860053, 33.35092103444454, 48.45909567099975, 49.53990505370817, 19.882009992620965, 26.565906714716782, 11.320519754607314, 14.599537993546704, 41.17673665850303, 14.359760899598633, 5.0310428418554975, 94.85469950429459, 23.706316465132304, 87.2847068921177, 108.06203586721794, 5.4114871111537, 17.259795164769237, 30.084247481345887, 10.893320071402663, 80.14275183707757, 23.934278830226898, 24.675753304702095, 19.001883111276108, 30.537810264460962, 34.959479170102306, 26.936218930496015, 49.44227452856803, 7.1271961462614035, 72.23869281502687, 164.36017932605662, 26.074306368049392, 96.72344932067702, 12.558800212575113, 39.75222376611472, 61.167093754222, 33.779418544235725, 12.022212233357878, 9.983034367383269, 17.358022889891842, 52.12185812780456, 15.76634106477822, 135.69919565205578, 52.06757805612995, 76.36329965237563, 10.222901733584944, 5.992453325376699, 51.935413656203934, 140.42102497430133, 27.297955314107153, 43.8340524072033, 51.72957905290707, 16.10500309955214, 15.652168540772378, 26.13297191390312, 63.45514342254607, 12.541095611344431, 19.17249698043138, 58.123819943554345, 25.756333713064283, 19.774755600803495, 31.481381727735762, 59.962788340325915, 17.29427449626217, 10.230488018907417, 12.483049004115722, 26.64040241450762, 67.96238425801839, 67.63035818022279, 70.19758873219756, 43.55757864792333, 15.540429159025853, 15.090178914710489, 43.471162156709966, 16.86199385001412, 39.5634962571245, 20.39647986374355, 72.08040428046968, 68.67602801149584, 7.453141944679102, 71.90631247041544, 203.06915638782885, 46.4511776182939, 125.96086899474881, 54.577654460052436, 23.675652049352607, 63.87363504704683, 36.5015676390894, 45.40089971331437, 149.14508491746386, 41.004677674269125, 55.10097768973775, 65.97760809118309, 8.234671160969478, 115.76499132209162, 37.70362198379404, 5.770932200151516, 6.320325365672273, 10.204084779439523, 15.945170378902748, 94.23861833393997, 87.64429177512221, 25.773410413889287, 15.430399778100274, 7.215714904719722, 49.068145719867196, 37.19929116677145, 20.269202186791645, 19.66301297379982, 177.73389128583221, 50.83040010869382, 5.438662388076907, 5.684006510200302, 27.91565042879568, 74.84422455586473, 9.930477237339996, 7.218594751455556, 9.93513560505482, 45.35396961517772, 70.93720319988671, 5.675458626889075, 88.61632793516597, 20.66161590013227, 77.54114302130913, 29.143682255919366, 33.75427370082288, 208.30626754478394, 237.8329720279136, 16.56683618429635, 33.65194795782221, 36.38071527364548, 10.534380163222838, 44.8712872684251, 46.16211943811789, 8.826031764548334, 15.373851838482667, 8.052888730593782, 22.799400329132283, 117.49965779546638, 33.171390415650855, 22.874362411156792, 15.5290540945219, 16.83516322673967, 6.388263806289078, 154.40643458862266, 10.43622381645775, 79.91677676325357, 16.17054780519708, 23.150110632111893, 91.15611791060861, 60.36237820911435, 17.83186168314369, 12.973719094993768, 41.525939638461864, 130.08892472851198, 18.96286279679952, 73.16943068133136, 12.374485450478472, 76.07381100952196, 12.268365755340408, 6.495759751602061, 38.91950659894498, ...])
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);
([3106783.8435396235, 3149690.30929024, 3213011.749704494, 3228136.919971647, 3275056.25, 3308710.9375, 3317406.25, 3333926.5625, 3358180.6865246817, 3383239.0625, 3389244.7723905756, 3397541.518459063, 3418189.037261905, 3422444.7188330656, 3424685.9375, 3433409.375, 3453184.4426240316, 3465053.9648040356, 3477553.125, 3478651.1162669323, 3482782.355629617, 3515169.538463523, 3515391.5930263055, 3531304.126747851, 3532492.7411133084, 3537028.4312170018, 3538882.350866866, 3543686.102845511, 3549024.50946903, 3550088.789698361, 3555262.5, 3574305.2324549914, 3574353.9303627373, 3575605.031078509, 3579905.3155981353, 3580549.407139572, 3583557.384814372, 3585501.5501431082, 3596948.5179893672, 3600725.0, 3601449.5141130853, 3601617.1875, 3603445.0083553395, 3604047.406285418, 3608018.722048365, 3609446.6360904956, 3628308.6991245495, 3633031.25, 3664513.2805181136, 3664521.6691742823, 3666176.180649896, 3666461.8605697975, 3671673.4375, 3672403.712980658, 3672549.7749736896, 3673032.7134122034, 3699274.290005151, 3699366.0843510097, 3700008.6364327795, 3708551.5016750023, 3720941.103435052, 3750600.0, 3754121.875, 3794321.875, 3797848.4375, 3798718.5002258904, 3811538.6361914165, 3826891.50357179, 3842490.625, 3846191.666247241, 3846817.59219413, 3847517.9286970464, 3852176.5625, 3884985.1100072647, 3889168.2976321913, 3896153.125, 3897152.570120032, 3904800.0, 3904862.637235088, 3906849.6685648994, 3907724.3299028096, 3908607.2944063083, 3912399.85048886, 3918176.4134615283, 3919300.8956105453, 3919918.607766797, 3920666.4406478116, 3921129.0297111706, 3923827.3380570957, 3928073.265782264, 3930619.3795264247, 3932570.3460776466, 3957669.548146787, 4053848.247967681, 4054527.6323797735, 4081507.8134201653, 4092319.03659397, 4095262.5, 4096434.7380965184, 4096732.8125, 4098790.625, 4112560.9375, 4113574.455660618, 4123848.6926539917, 4125065.58422608, 4128915.5500601274, 4129712.5, 4134610.2137366747, 4135532.8125, 4137319.4267052747, 4157345.3125, 4169554.310139669, 4181160.395542826, 4183526.9725116836, 4188268.75, 4195243.75, 4198584.342394241, 4207031.25, 4235095.3125, 4244350.1843078695, 4248568.75, 4256884.375, 4258561.828418885, 4285311.7749647815, 4289501.5625, 4289759.375, 4310286.672574586, 4311660.792567986, 4312452.473520431, 4312852.836513399, 4313178.225066293, 4313855.569768555, 4314648.888874055, 4314914.0625, 4317117.1875, 4317897.941022314, 4319509.3357429765, 4321529.205212957, 4322387.501783062, 4323043.486626579, 4324422.427685622, 4329939.0625, 4331484.414535218, 4332464.474641182, 4333434.17761109, 4333449.867502843, 4335613.485368885, 4336914.141714552, 4339660.9375, 4342818.6680708155, 4343504.412177886, 4343642.989283772, 4344798.375234351, 4345425.0, 4347766.405121372, 4349186.500951457, 4351212.5, 4351627.011943394, 4353704.6875, 4354200.0, 4355598.4375, 4361920.563467574, 4363006.221073226, 4364636.537552206, 4368832.236716245, 4373366.771940908, 4379347.839295467, 4387244.795122453, 4391881.611174852, 4392621.156034861, 4401952.153306133, 4404446.607955571, 4404470.3125, 4404645.3125, 4411480.519087769, 4415633.346287405, 4417491.651300817, 4419421.875, 4421025.0, 4421043.040192421, 4424972.925745335, 4431410.940533742, 4434712.305694985, 4437631.78137658, 4477796.875, 4481977.457825765, 4482904.532790097, 4484129.492510892, 4484256.052496813, 4484766.126169646, 4485003.2935588155, 4487614.508796594, 4489260.329289905, 4490563.830542278, 4543579.6875, 4606381.379671141, 4612679.6875, 4616881.938943388, 4641318.101377644, 4675391.597804226, 4676691.328128391, 4696428.631509123, 4703546.381519871, 4703578.911988158, 4708967.220831335, 4710036.969082876, 4723755.104542518, 4731468.641729003, 4733497.955299165, 4733609.474563359, 4734044.613147048, 4735250.1894842135, 4740651.527035875, 4773693.75, 4830488.030315482, 4831950.288863719, 4835710.9375, 4838015.393383851, 4843048.921984047, 4847387.33676829, 4854742.639535238, 4872740.386262796, 5636022.326773395, 5663010.9375, 5667168.75, 5667195.017416263, 5677092.267311509, 5681339.838479828, 5681800.458799299, 5682218.75, 5682826.5625, 5724075.444910464, 5733792.207467477, 5770890.408810842, 5843548.4375, 5880865.625, 5882658.133209065, 5887543.963575354, 5905706.25, 5906223.4375, 5906451.5625, 5907911.730421536, 5908298.078572237, 5909446.275271069, 5910190.625, 5911702.383835639, 5914853.646484614, 5918810.019893133, 5919352.855714682, 5920197.446439701, 5921015.090756431, 5922463.364043751, 5924964.0625, 5935641.275821902, 5936902.592288034, 5947983.637220144, 5948104.3338532075, 5948465.478021498, 5955859.375, 5966682.8125, 5967100.543597938, 5970208.794187622, 5970707.349395229, 5973821.235928247, 5985292.684626417, 5996740.502077735, 5996885.9375, 5999516.81818478, 6001559.375, 6008522.791767026, 6012070.17264016, 6012376.826871641, 6012429.331688199, 6013226.430280397, 6013518.75, 6013532.82954253, 6014845.874269902, 6026454.6875, 6026947.264931692, 6027678.5201909505, 6029058.979297937, 6029878.125, 6030040.020257665, 6030047.318345004, 6030695.742373719, 6031050.805582314, 6041696.828976871, 6043330.496382688, 6043488.485044366, 6045554.468188579, 6049523.4375, 6050064.0625, 6050483.024166556, 6052370.002710936, 6053795.767419179, 6053885.32855172, 6055289.0625, 6055317.763862315, 6058442.680203508, 6058449.858730149, 6058539.020581796, 6073492.510648161, 6085797.51798478, 6087101.5625, 6089896.133529318, 6090301.491629519, 6092605.770889573, 6094245.021739049, 6101828.125, 6103374.8675262155, 6103385.933697845, 6104667.556353202, 6107123.465927212, 6109889.405729319, 6111033.1751788985, 6111845.3125, 6113505.547893011, 6113791.249816792, 6114527.017152952, 6114855.397364187, 6114865.109198801, 6117458.025450968, 6117904.6575838765, 6120220.514502201, 6121395.052916895, 6121422.374507916, 6121856.25, 6123444.70154656, 6125061.440757684, 6127632.535092629, 6129030.587877702, 6130516.101302727, 6131696.875, 6131859.693667862, 6132392.518094738, 6132801.4139857, 6134130.313188025, 6134954.220599343, 6135496.929599236, 6135778.151844242, 6135992.1875, 6136357.071281741, 6136866.677528069, 6137059.485615752, 6137213.137132803, 6137243.009655376, 6137523.108449505, 6137742.1875, 6138075.415959259, 6138160.945041797, 6138219.607320644, 6138275.047238713, 6138904.68614319, 6139992.538731711, 6140418.61977864, 6141244.80755798, 6141247.387718718, 6141392.003770058, 6141401.560434214, 6141522.004610496, 6141570.3125, 6141600.166165499, 6141668.910862849, 6141787.212012254, 6142150.064683347, 6142265.625, 6142326.268088652, 6142442.825187809, 6142505.70835416, 6142509.375, 6142531.542673256, 6142545.3125, 6142570.828339691, 6142578.125, 6142711.4646938415, 6142861.52903287, 6142953.435019435, 6142968.750419741, 6143034.637567059, 6143079.6875, 6143261.3922151085, 6143308.916785061, 6143339.0625, 6143354.992701518, 6143418.535880108, 6143564.737500793, 6144139.0625, 6144183.23010591, 6144473.012043516, 6144477.766190468, 6144685.9375, 6145370.232210545, 6145435.9375, 6145439.0625, 6145545.125766154, 6145666.226411318, 6145785.233134274, 6146064.0625, 6146210.529945117, 6146214.931562638, 6146400.0, 6146465.341266663, 6146476.631883921, 6146482.980883305, 6146808.898120788, 6147107.8125, 6147194.195694055, 6147234.830083226, 6147523.4375, 6147564.740654039, 6147748.491304195, 6148019.491369883, 6148493.234585077, 6148641.096730535, 6148787.5, 6149215.625, 6149350.538554042, 6149403.95328273, 6149645.3125, 6150256.8730870765, 6150352.753886133, 6150405.031280531, 6150521.260765054, 6150630.60266254, 6150711.841093468, 6150859.789113835, 6151127.937529583, 6151712.5, 6152010.940767829, 6152013.789469979, 6152215.452255517, 6152959.375, 6153000.556073238, 6153289.0625, 6153993.452658335, 6154217.5114009995, 6154221.249690769, 6154770.446894784, 6154800.0, 6155387.971714648, 6155476.0435223505, 6155487.451073083, 6155493.75, 6155512.715554853, 6155565.845569842, 6155632.8125, 6155643.597344033, 6155645.310302022, 6155656.751904511, 6155661.265987042, 6155683.464214322, 6155723.105296811, 6155899.677579111, 6155929.769386349, 6156003.712366618, 6156060.427301175, 6156121.493662484, 6156235.987038332, 6156327.534657122, 6156412.5, 6156414.0625, 6156425.0, 6156505.419906318, 6156640.199844954, 6156712.944803489, 6156756.103053122, 6157106.43370503, 6157125.00611884, 6157129.768529659, 6157191.143153604, 6157362.330554579, 6157397.321669653, 6157676.5625, 6157871.225920249, 6157914.920600087, 6158054.105724468, 6158150.0, 6158420.3125, 6158421.238152721, 6158435.9375, 6158443.75, 6158452.244641371, 6158479.256384415, 6158526.234451032, 6158612.994671633, 6158646.875, 6158711.483470647, 6159526.63996529, 6159770.122860272, 6159772.566671504, 6161317.828243463, 6163303.776270216, 6163676.5625, 6164757.416081237, 6165503.705425427, 6166993.293281078, 6167050.617153493, 6167331.675629184, 6167764.0625, 6168157.293262695, 6168365.826615061, 6169119.374038086, 6169265.8906152425, 6169271.36069374, 6169649.99806833, 6169773.4375, 6169777.471821934, 6172559.433549042, 6174870.726832676, 6174947.652406734, 6176006.25, 6177792.1875, 6177831.534464205, 6178016.977500222, 6178472.817328049, 6178717.01982796, 6178748.581691091, 6178768.170779358, 6179403.7936050175, 6180134.375, 6180637.765592755, 6180752.3744159695, 6180843.575844331, 6181843.0909943925, 6181903.125, 6182163.86117232, 6182298.045580742, 6182708.615335239, 6182805.656829217, 6183192.627462631, 6183451.943178989, 6183491.528243393, 6183779.44482592, 6183966.340450733, 6185417.233990766, 6185837.5, 6185842.1875, 6185852.463932164, 6185962.640262051, 6186260.626378295, 6186477.823834786, 6186501.795713945, 6186698.7033481775, 6186918.581960366, 6187457.000346985, 6187686.507470413, 6188192.175804257, 6188321.236693949, 6188788.258225199, 6190095.975963873, 6190796.875, 6194161.78823658, 6197299.548999047, 6199953.125, 6202628.980702088, 6203296.083414745, 6204789.0625, 6207498.905657263, 6208674.828294477, 6208749.508017518, 6209822.352991275, 6210237.5, 6210338.884223972, 6210740.625, 6210972.984095038, 6211161.630017959, 6211190.625, 6211410.9943572655, 6211546.13532917, 6211850.17556729, 6212098.579585449, 6212787.5, 6212834.375, 6213135.61427977, 6213181.814065699, 6213332.164213733, 6213584.375, 6213857.554804343, 6214004.6875, 6214732.374266325, 6215125.749199866, 6215207.7472037515, 6215235.440993244, 6216808.791897687, 6217071.875, 6217165.625, 6218381.25, 6219315.115479874, 6220814.791559009, 6221075.273666154, 6222242.504634051, 6227502.823838852, 6232026.315972831, 6234015.161965765, 6234632.577050419, 6234757.8125, 6239721.492550149, 6239738.606533731, 6242441.145092949, 6242594.401480393, 6243334.5789745245, 6246290.513680185, 6247668.172785008, 6247908.494410276, 6248292.266228142, 6249989.5033074515, 6250087.021351874, 6250231.9206299735, 6250653.125, 6250839.832995671, 6251221.731525879, 6251510.904987872, 6252337.00292126, 6252427.1192929065, 6252501.020067143, 6252845.3125, 6253153.73860905, 6253163.499707929, 6253412.713437584, 6255195.620461038, 6256526.337686685, 6256728.125, 6257209.375, 6257880.830225529, 6257912.494691337, 6258468.990517227, 6259864.338669756, 6261308.507628725, 6261469.163822273, 6263919.130339767, 6264959.7923707655, 6265764.937549199, 6265903.109529269, 6273115.553550711, 6274119.879435966, 6274246.875, 6274333.110525888, 6274821.3174911905, 6274932.750969668, 6275257.8125, 6275373.4375, 6275762.68609139, 6275782.668819042, 6276289.055698304, 6276748.4375, 6276871.979472929, 6277328.125, 6279537.5, 6279558.8097586725, 6280054.3312049145, 6280132.319886767, 6281592.1875, 6282080.9872541055, 6282371.780289539, 6284215.625, 6284225.801038579, 6284232.454056135, 6284878.7060183715, 6286194.837280829, 6286227.138109728, 6287410.121052083, 6287864.0625, 6288446.407178672, 6288707.8125, 6289427.305545865, 6289496.577654373, 6290158.431009286, 6290457.8125, 6291311.905164189, 6291790.147587081, 6293238.899651023, 6293547.6849478455, 6293553.127689069, 6294672.956390274, 6294896.479329717, 6294903.939548593, 6295552.052281839, 6295757.10942333, 6296120.125540389, 6296216.3509844635, 6296738.532258119, 6296829.6875, 6297320.189295446, 6297504.6875, 6297778.125, 6297987.5, 6298165.625, 6298169.4651567, 6298182.454956358, 6298184.355375607, 6298202.179050924, 6298221.811030374, 6298432.154954002, 6298454.9631700255, 6298562.269956343, 6298617.695397081, 6298742.160866179, 6298804.326369487, 6298909.006054389, 6298989.0625, 6299000.0, 6299390.625, 6299532.8125, 6300010.41796071, 6300051.206695525, 6300830.747845772, 6301141.875039822, 6301189.0625, 6301711.862263852, 6301790.625, 6301848.128307347, 6302271.669239199, 6302956.334231111, 6303439.035031416, 6304824.022439433, 6305553.751547972, 6306203.675757286, 6307154.6875, 6308089.931170713, 6308890.0462272605, 6308999.609218733, 6309659.557530207, 6310131.413086692, 6310253.798686773, 6310688.716742315, 6310715.069569837, 6311120.544414924, 6311540.625, 6311685.416394031, 6312136.391010872, 6312637.451322737, 6312728.735498638, 6313395.013958163, 6313599.6412172355, 6314040.052879852, 6314458.901132245, 6314530.827717541, 6314617.863707551, 6314721.074794025, 6314742.062112406, 6314800.1643102765, 6314837.022827477, 6314870.200815881, 6315039.115657865, 6315144.9536562655, 6315169.828215547, 6315413.058847215, 6315595.3125, 6315597.981687262, 6315600.0, 6315715.613392933, 6315784.375, 6315794.888834949, 6316003.690046956, 6316022.553740571, 6316063.028885517, 6316066.522912076, 6316179.9241143, 6316261.776168885, 6316267.680425616, 6316316.056297286, 6316381.124607565, 6316396.798361419, 6316456.25, 6316458.494580378, 6316496.6332419785, 6316558.874879905, 6316568.82024434, 6316623.4375, 6316640.385322688, 6316703.125, 6316742.795895817, 6316743.193954077, 6316748.579357534, 6316776.156885054, 6316826.147298254, 6316839.156888167, 6316848.4375, 6316854.359927184, 6317058.379081436, 6317079.258598379, 6317159.375, 6317186.016061139, 6317223.825919885, 6317312.5038595, 6317323.4375, 6317373.355814559, 6317469.443417903, 6317545.12786482, 6317573.931848746, 6317610.595994832, 6317612.5, 6317753.785155713, 6317761.842673781, 6317778.872145977, 6317792.1875, 6317821.6433569705, 6317825.802504541, 6317871.176488317, 6318088.654801986, 6318196.048550477, 6318335.738949428, 6318483.994052392, 6318705.314157466, 6318713.671919659, 6318719.711083928, 6318804.6875, 6318842.1875, 6318878.043510658, 6318890.781269254, 6318919.246513613, 6318968.895622228, 6319041.734740238, 6319117.419612671, 6319299.578497678, 6319401.5625, 6319466.600748443, 6319947.498988255, 6319973.595208115, 6320110.9375, 6320119.077700437, 6320217.1875, 6320422.644873891, 6320443.75, 6321634.375, 6321726.5625, 6323249.919342123, 6324671.875, 6324929.6875, 6326630.538311313, 6327148.053345835, 6327662.846006437, 6328637.5, 6328662.598896391, 6330437.877128069, 6330451.890324196, 6331888.525835896, 6333515.21062625, 6336177.575651803, 6336448.925336942, 6337398.4375, 6338428.125, 6338792.717721298, 6338828.01683421, 6339353.0060588615, 6340042.307450226, 6340374.188744014, 6340438.856860302, 6340656.596085712, 6340713.429938827, 6341041.8562916005, 6341341.203185348, 6341569.374718813, 6342224.93115184, 6342972.211277473, 6343041.011922925, 6343342.087100547, 6343673.282186361, 6343991.52372565, 6344186.497952296, 6344570.892104943, 6345556.672095312, 6346221.032725274, 6346467.1875, 6346738.098869714, 6346815.625, 6347307.834308019, 6347638.443009464, 6347863.23005263, 6348312.714328293, 6348504.874207376, 6348735.131216414, 6348819.049331393, 6349908.806982493, 6349994.687909016, 6350070.818173119, 6350345.994219267, 6350369.603499995, 6350465.027296319, 6350495.513287654, 6350601.2732221605, 6350631.25, 6351560.9375, 6351571.20715749, 6351639.652130297, 6351704.687639636, 6352107.565291198, 6352656.183339758, 6352694.343322057, 6352761.209218165, 6352817.46257734, 6353320.48724025, 6353506.567471531, 6353514.012109828, 6353517.534387449, 6353667.980983577, 6354067.1875, 6354152.96730933, 6354493.223883069, 6354732.8125, 6354816.798214886, 6354955.713687712, 6354958.713609347, 6355224.160347488, 6355440.521912355, 6356462.075161178, 6356651.5625, 6356690.189254801, 6356752.883526615, 6359567.336233933, 6363375.464773536, 6374853.125, 6375322.301607233, 6375893.439372629, 6379366.570062658, 6381384.375, 6385390.377436928, 6386146.440022363, 6387189.0625, 6388349.788232334, 6388445.595433284, 6388939.992796388, 6388940.625, 6389466.881598682, 6390406.083315349, 6390408.30507367, 6390669.892632589, 6390767.1875, 6390873.4375, 6391422.995659487, 6391558.259107002, 6391823.338037747, 6392204.6875, 6392322.499122044, 6392393.150743515, 6392476.971738577, 6392496.191082351, 6392507.62835945, 6392514.0625, 6392562.968728167, 6392895.1559067, 6392906.3726136945, 6392923.784353641, 6393027.822557493, 6393090.317324552, 6393189.992885441, 6393196.06497597, 6393205.689701079, 6393236.672169817, 6393360.387923897, 6393377.761476516, 6393430.742373482, 6393476.504950619, 6393489.695123636, 6394045.669593248, 6394052.199512425, 6394076.168661027, 6394100.0, 6394235.434206062, 6394316.199941182, 6394346.768520303, 6394346.875, 6394392.337325067, 6394401.83418003, 6394453.000358343, 6394512.5, 6394703.494755356, 6394715.460980985, 6394735.9375, 6394904.271570187, 6395196.4020455545, 6395210.9375, 6395357.147543982, 6395360.40796847, 6395471.405304948, 6395552.386169992, 6395646.418456968, 6395707.745589623, 6395795.433271048, 6395834.52105737, 6395923.155431127, 6395961.839192404, 6395984.884390313, 6395985.444961062, 6396070.3125, 6396116.014776356, 6396186.514751999, 6396285.002806484, 6396376.5625, 6396377.158407468, 6396384.6350897, 6396482.432985971, 6396501.650180951, 6396510.829466018, 6396550.0, 6396589.736427911, 6396650.0, 6396709.999815326, 6396731.305076494, 6396746.875, ...], [8.024199616757702, 29.309250993511693, 37.84224418509039, 30.794134935762557, 61.37721717637966, 53.56929178828259, 46.705573153422925, 36.63405270011753, 12.279563405030373, 36.74108541690162, 53.906584878839155, 12.885757354320017, 35.74965567067454, 57.45274956400617, 44.804958670755475, 55.50488869346195, 14.82941896668732, 5.269273744331469, 59.30020596890246, 76.4821986974004, 47.19757034177566, 8.752733942773489, 45.03482727749459, 12.72743609670102, 48.66325702054566, 65.74550543044035, 13.182351411763795, 6.51332676450516, 91.90488558238344, 24.104493458104535, 49.60616407228892, 17.80013332433113, 10.478792835724505, 15.73122038288439, 76.42919555960908, 76.07349011170126, 13.528559667864158, 28.28266840633477, 72.92595191580038, 67.63585840302376, 5.5099546233805246, 41.17738909593288, 38.73520073140897, 56.06261557282333, 27.983400300016697, 7.0600345428671885, 78.79795342185848, 44.87279019686481, 8.747488339038629, 56.147539752842235, 67.26392221391, 8.843536781410556, 68.98242182559714, 5.487582242410718, 136.4395696766224, 14.576820665242218, 5.57593703137902, 6.137206816006639, 31.15498225442481, 23.20174842313971, 17.861634240301388, 75.40260670067381, 57.78103498801479, 45.49911950729824, 85.65398085546059, 13.30021014090781, 27.601280438057906, 93.15738422399184, 56.119277639105164, 74.07080542042833, 9.698761335042416, 82.7402879197985, 29.654801527339075, 24.920445463467477, 22.95143108889932, 60.10282242648053, 60.49627959997278, 52.47557760226746, 9.4502030407417, 28.86546915572712, 12.883141752123075, 59.04890962281883, 25.88427756076139, 25.89171774507879, 57.14062861052791, 32.99851286441292, 78.98976205861388, 7.381476583899354, 7.910091140640107, 25.02220645699485, 9.927194443412588, 88.27914279185114, 63.27815255183247, 58.66558503326182, 8.946926711742398, 7.603570525106734, 16.159308586937996, 91.7367663978585, 16.53317306989763, 55.55717235688292, 60.347687897340116, 51.05645004339453, 21.061907616843474, 16.012225334474813, 68.43392126793714, 5.395616858926155, 73.62455074977105, 19.517920572649867, 100.88059134331925, 5.11201190278481, 56.70366968473033, 89.57294665382808, 21.084522468671597, 16.774372784279205, 69.74085700739028, 71.97750145477396, 5.936571040605696, 108.26208622862707, 56.53612320018341, 6.516376509675652, 43.50156840564426, 40.30490272914026, 12.879469808812624, 39.298685222054814, 69.45471709925891, 45.20479708092955, 18.749227154126817, 25.95657362980492, 12.9294803890016, 9.098829210295595, 8.340212548875895, 25.808344027001883, 44.297589642529516, 68.83718549383102, 50.70158880621435, 35.12586146305636, 47.308911310985664, 35.367768204152156, 20.030536662805417, 6.061132332946973, 17.57025648807065, 61.14229784825817, 52.994191071364334, 6.848674595070725, 50.43452906361745, 10.926733898419439, 37.06827197244312, 5.070339619143838, 98.20189578079618, 27.002912355542477, 5.237504381427937, 64.67735001919624, 27.350535999181794, 93.29362315329345, 44.49005533491987, 5.743581132826681, 78.95914520303157, 24.519906806883025, 72.23507627761143, 42.10450162500506, 31.717777212564165, 15.99291597335788, 105.96819563028541, 5.8597544106612505, 13.123176046539594, 50.101242337184, 20.56637341672305, 31.362985322123812, 11.743429192199201, 17.590908962341828, 77.64057746076503, 10.734468359607689, 61.96405232810173, 47.824628833934504, 10.149758219221166, 7.269212564839357, 42.05604850941608, 80.04598207568282, 43.61689085104032, 19.627715400449294, 21.376637166237895, 85.51895744825973, 9.172339235962992, 30.265329573335524, 84.07401818232799, 19.973185476617132, 51.95261979993455, 88.74609501474987, 78.51149711749804, 70.75206622071671, 21.524566662411203, 86.58874877307761, 44.515970940184026, 9.142680179668483, 58.85329354884039, 15.459915059795025, 29.728471881359475, 18.431624076331495, 15.323251869965087, 20.642688043454815, 45.10067265390222, 5.216521193313309, 8.94630732268189, 62.58146387916892, 83.45179999520207, 154.7435617363583, 40.40390992729395, 26.55335688457882, 21.672513155058258, 11.286980508100914, 45.320427917430166, 95.32200959928385, 8.267911920539971, 35.1613132433132, 44.4392931985646, 5.4743030062204205, 44.70148262705706, 49.780463017282315, 17.177474898030987, 25.670520827521067, 25.329444717511244, 5.691730748588617, 5.357644359103805, 47.88661643825261, 88.39656342203693, 13.924632703752039, 11.254791758022689, 75.90604651623003, 105.25164501049767, 53.44113549781737, 83.0414589803844, 62.40589154237911, 6.269724414278946, 6.453727414457612, 61.331455374826405, 111.59823113116875, 16.32315677854216, 13.572068529472197, 43.38661586982841, 64.0203459181476, 52.003160244989836, 6.619012846843743, 9.045293304966778, 13.476809017053485, 59.1539477015314, 7.93001543795562, 6.5720684407649275, 18.141143182727337, 19.09129167340462, 12.156167160441562, 137.3362377395582, 19.718198493786133, 43.129802985588476, 59.59805329545802, 47.57184253546827, 59.95398362659196, 10.61653999524007, 42.855419708580726, 90.85453257291046, 96.42220359997268, 22.238098792140914, 58.596820267292486, 30.972925643564004, 12.960643070351953, 12.005140321661322, 60.138819959505895, 43.14073768459865, 22.903954095134733, 77.97457023538998, 28.784293310699326, 26.03722241201643, 11.567709384859269, 42.41328045738109, 9.222051557545697, 34.91742426993762, 15.006867893552139, 17.624394867593363, 60.47754004590362, 43.788683876342766, 7.752711381867901, 40.370190963753274, 30.911536969683542, 5.228529264803211, 6.558910201414835, 18.143257373146255, 5.497439037107026, 91.29289030294885, 16.913223236653085, 51.76275703589964, 50.790919642990715, 96.99004263525312, 59.204330538001074, 7.1782266170068105, 74.32098400736349, 17.014359254388264, 20.47102769629969, 37.99925096902474, 19.606048860359255, 32.26441871905199, 10.913846420192094, 27.721656587938654, 16.335045412237076, 6.592840689111475, 44.316945856745235, 8.774365060921482, 12.3863753503921, 70.23744777671237, 53.917398413256905, 68.75029108385552, 55.08448912211506, 56.532735050530086, 6.839449340793644, 28.443860651125327, 5.633318864530125, 12.263882914142073, 91.79053395183641, 19.688981331575153, 6.349504527040118, 12.333907232523847, 151.89515579124497, 51.660021663905425, 9.518198902793928, 143.21776617391615, 11.458844487325338, 22.644229586737776, 72.15106665397055, 60.64109452979276, 17.28646149345958, 8.571933280221762, 24.043685728653333, 20.015160006704903, 11.963861091026859, 69.35261471480364, 63.946149406307754, 56.704811363085106, 9.208905599019198, 43.03658062903209, 21.82976295669999, 16.98104048174769, 38.32059164642197, 83.25730678223339, 18.446456098833046, 14.258360643676385, 25.181109791328645, 8.654921158799, 89.72870984049277, 54.768374401107394, 45.19745627272792, 139.10714305576465, 14.97033335038346, 16.817902009663833, 15.124670951066195, 6.486878559868433, 76.34840380101453, 10.93008539947488, 5.896606183114005, 12.036342978598679, 119.86970138515392, 23.81659284199861, 9.443454620902859, 31.723272593536752, 6.79713991695286, 11.388812850251874, 41.71828844817375, 57.249949215937676, 61.97904046773081, 72.96578836371505, 18.09476459222396, 13.213416887814965, 48.77465838091038, 11.618214779315263, 29.846372874724402, 36.62514672801329, 79.31715368589883, 9.82085565358804, 17.804914428912465, 11.649519953722061, 8.286799303942324, 17.84131041727215, 30.76080632953074, 75.79221324193607, 21.92030765125952, 32.40660822892965, 7.717484220858558, 10.808742514517856, 18.33836877945611, 40.04032939517164, 9.711373491368427, 34.575168685107286, 29.776190752518843, 90.89664274867164, 8.244570428914663, 41.13846504147462, 32.3884274617858, 21.068055471805607, 17.865918615589255, 88.60957333610907, 113.62365240817955, 31.890803639652432, 28.106070470264175, 34.50091459698546, 30.51760578520603, 68.15115977800323, 16.095514713915712, 96.54106095943627, 89.67500665707865, 9.739015797787873, 56.62989063427794, 79.33127944421955, 6.00072225980129, 57.70651483188542, 146.09809869303336, 40.77868324454642, 13.743865866907495, 70.20314814509763, 36.863996070835135, 17.486909743649203, 7.933058467826574, 73.96838385354668, 18.001732986731906, 197.90884661275842, 64.40369647309144, 7.395225011083571, 8.838099590522397, 131.0688625803549, 80.90303097492519, 25.303084275838682, 53.91708801003778, 24.62901878757068, 119.05880791458048, 29.874996301863092, 90.74742399118647, 17.590393557687264, 60.839124025195844, 76.37054137606249, 97.03067538057222, 20.327964771423893, 30.14999900834828, 52.77655537899174, 191.97551903714896, 23.889444851481386, 82.91178547126898, 70.24903573738698, 36.96515771229184, 15.854602731519586, 149.85127154160742, 21.87244656526761, 28.481729575064787, 18.61453705282869, 16.361150645115078, 18.082643820819825, 33.56994974619063, 50.25831516816832, 15.263085933862227, 27.75452955201917, 21.39196127079496, 135.18837571892337, 54.77714405332273, 50.86987768760953, 66.34693790532009, 123.63444032530906, 29.463972550714622, 12.50460559775615, 13.535811829082439, 7.772448367306089, 34.6916989585284, 21.089126770946223, 9.33658236336627, 15.259620705504286, 34.06041592685254, 79.59923291753907, 25.609152010542083, 130.09758021175887, 7.970774171689038, 135.48933324877447, 6.652663832673737, 42.78629381226573, 64.88646885141726, 20.2285900906773, 70.63494048567838, 82.92762753631652, 5.866237935563785, 22.208929305561302, 58.46688928480696, 97.02587245101529, 44.843893478055804, 41.38355063260248, 15.24522673386537, 139.77130269033992, 18.450016624997783, 28.86024127154942, 28.534758598972463, 103.30036297606895, 40.639166445924644, 86.19928918820554, 37.22036587423695, 37.22291970776918, 9.719240511357919, 70.41295227327184, 96.49013254856857, 5.4704871385458915, 18.0077542200504, 23.340143454016893, 13.287034587669988, 28.48699234243181, 36.69599387158758, 40.0229127611555, 57.05556900264109, 16.797068473940556, 10.088359293922549, 29.159069843529565, 40.02587907858684, 7.709469166483838, 140.4925635778492, 37.166084073167596, 19.733425573678623, 15.521136291069121, 69.88384775387652, 26.69467101666229, 37.29933289671898, 40.70771424492201, 19.311279081312346, 99.13312513101006, 12.910687958634927, 50.66745951328292, 211.3455528396309, 9.020631182421491, 58.91357064094741, 77.35299955220886, 62.56612216615557, 135.08098549652118, 123.84844925582095, 24.511702335333005, 40.297156906294276, 8.311316389489873, 44.155479647062386, 58.42178279471461, 92.88751886603134, 6.2850836159248304, 13.874923312536906, 23.735869071443155, 30.84232278526738, 7.193133712070868, 92.1682728610664, 128.47825631072237, 21.345643201936287, 28.29552354407041, 153.42919072389668, 18.91406940420948, 108.20584461241415, 75.80804945016193, 37.126134363482464, 21.9962258118848, 46.86442284629955, 34.5723852201547, 99.47911541271891, 104.88769427563403, 54.92250730458173, 18.04135521001757, 10.436925572136278, 5.850214827158704, 100.17938324812945, 9.185076651240259, 110.05768046300055, 19.157129411475594, 23.86687430016472, 28.774277927983263, 45.4241812222072, 12.714311332011256, 11.413685553955023, 15.512216417945243, 43.911281363587236, 51.07795775073284, 113.67334502919562, 5.5610973482079995, 6.960863112620006, 84.99125444933077, 24.306592592061147, 66.44550081803243, 72.58756207498294, 6.61131853027079, 92.81206101435572, 97.14658121363361, 40.04868240037869, 51.175802898655355, 36.693528430524445, 52.693284607079015, 18.681891637553246, 12.497043945981058, 9.574043964448425, 16.305773970199045, 13.905735032846492, 24.4586902471157, 21.86995324104165, 79.25756207673084, 75.74636659885434, 30.984326075575296, 6.675767135786343, 20.967149034564947, 18.18381790927046, 15.780468325912432, 13.736015521232412, 20.755934966959927, 6.357376622648449, 33.22901459615954, 42.61553951753295, 65.33871201258584, 45.80093047514789, 37.02651110069076, 6.369713461739758, 29.3497061762096, 27.897291417274754, 39.49936925931446, 110.72265787432454, 84.06458328288298, 41.30383741513245, 6.587783172833501, 14.588360564675545, 16.79798614271414, 171.83216219242973, 33.60925941625365, 62.63886785066495, 121.9566461180499, 116.13224640816091, 14.921313817251244, 9.543405682973685, 11.588678205235144, 24.01309967936446, 16.79438330830076, 7.225154171694083, 27.430490913826894, 56.40061838337763, 72.2211639279916, 27.186864571515212, 6.421281906597897, 77.93307975459446, 9.596789561460614, 10.355384437405267, 35.407846373207434, 68.16783248127061, 75.818451243129, 20.939725289393813, 10.91031322194541, 107.32684651386606, 105.77702830093524, 41.120223079423724, 51.73996372975529, 34.3354875152701, 31.58182009625763, 35.83105218719384, 29.702522714193876, 30.0400591107876, 32.317554797046355, 9.252583811019935, 69.49251192379465, 12.662796589494796, 23.031845908961966, 25.563204011876365, 69.79986989033617, 108.51648020329448, 129.27748115173534, 54.16344617450409, 11.370800339655005, 36.31277325671996, 28.519803079717995, 19.488489454264194, 111.14594892973727, 52.19240438510056, 64.26616985172714, 21.530527631771356, 25.67642601461572, 12.683782074520977, 8.287999862653482, 7.43802838021394, 79.84195903623063, 12.6946604553765, 70.89938493002866, 19.681239537387427, 36.16793466102753, 18.68551637794851, 85.02196282524099, 53.397224195588535, 78.3967047964405, 44.47821165468753, 47.785220591586544, 139.6878182065398, 45.647531112827956, 34.17018566828342, 147.13734611297502, 85.14313871228678, 45.43722673603479, 5.1638744455461945, 22.481484894886734, 18.677291014863396, 102.91380416241157, 5.078250109541608, 138.317301422986, 83.39359115366697, 15.418209345331508, 71.80254381626547, 62.53215152708611, 69.85461807640559, 48.12049428150061, 5.674472145723427, 25.949745685912035, 19.099553854107285, 35.66290422289898, 63.83497664327606, 20.220985668140397, 59.20820831952292, 32.68739355884888, 10.820631622293346, 74.05021280080635, 6.085247376365792, 6.344042481443438, 18.023670852160226, 29.04634704052725, 35.067979476751724, 94.8962290604986, 16.247753079369453, 22.656495228344788, 71.03784339526217, 56.187107059595725, 69.09781961864985, 9.055211007575421, 18.979630939425107, 5.959859777641103, 47.227816528515085, 107.2298191675917, 25.96947089673882, 90.33268948655837, 12.23795649574238, 21.946627402901385, 23.027832448591898, 10.33749838739373, 21.757805297758896, 24.88817099139802, 5.42496969504739, 48.16176841169067, 31.521456551664823, 53.70862759628508, 13.389002956901724, 26.49640938288928, 61.970698583185055, 54.40602286067889, 13.36929428380192, 84.18399617137146, 70.81231432872137, 25.771681516667854, 70.54277915442745, 124.83494825912709, 36.83406961928047, 27.59982559769731, 12.14294173390574, 12.38503733287267, 49.67231566095458, 61.57493410672011, 97.91261089319185, 19.51739109051074, 5.851375590101139, 19.51192213388756, 26.270598848632616, 27.095405924063712, 86.58820190899537, 97.41064986918964, 35.33396053727445, 128.9490505502846, 11.239307488213445, 134.3623358586919, 24.553126373550995, 72.19421125659167, 27.963412904640165, 8.901683347004957, 11.356923010670254, 80.54564928134437, 13.564447440072897, 5.820997349277276, 38.5125336553078, 7.48890657583274, 50.67047978482488, 22.232928347953646, 53.456174554693916, 15.249648053573813, 11.794435722764133, 84.43112993477135, 46.61696465936492, 57.394601473739556, 18.461815804823424, 10.850874117952088, 9.787577049281474, 20.111219920689138, 63.67228919871216, 18.24042406311402, 69.05453237401773, 12.53807023401516, 41.00839466764165, 118.98260470906793, 5.224361059003715, 130.4886439094595, 22.466079315706963, 8.718359065699811, 40.00706992689713, 8.094900944992501, 5.995901987578554, 22.658780898947853, 38.976935766247, 30.10144844060868, 40.31747571957714, 19.163589985710587, 61.97479117619178, 32.155528355304476, 27.071737741626272, 8.97582207258223, 9.535694550811119, 17.86538968767887, 71.45360314054147, 13.094571689532415, 28.830262653955085, 24.017529029912172, 70.75881339903819, 8.467821913302057, 62.025457880254336, 67.39529723878715, 38.95762023479968, 66.69329090999487, 78.17495704042828, 14.642740331617421, 100.74097879508129, 33.50751951160089, 65.2274254043732, 10.576026187527557, 46.0367211800171, 48.17894970490122, 15.332348039502808, 38.583244238840486, 11.68193391708108, 35.17954271720108, 22.392021608538577, 21.014556423871323, 9.781027211860053, 33.35092103444454, 48.45909567099975, 49.53990505370817, 19.882009992620965, 26.565906714716782, 11.320519754607314, 14.599537993546704, 41.17673665850303, 14.359760899598633, 5.0310428418554975, 94.85469950429459, 23.706316465132304, 87.2847068921177, 108.06203586721794, 5.4114871111537, 17.259795164769237, 30.084247481345887, 10.893320071402663, 80.14275183707757, 23.934278830226898, 24.675753304702095, 19.001883111276108, 30.537810264460962, 34.959479170102306, 26.936218930496015, 49.44227452856803, 7.1271961462614035, 72.23869281502687, 164.36017932605662, 26.074306368049392, 96.72344932067702, 12.558800212575113, 39.75222376611472, 61.167093754222, 33.779418544235725, 12.022212233357878, 9.983034367383269, 17.358022889891842, 52.12185812780456, 15.76634106477822, 135.69919565205578, 52.06757805612995, 76.36329965237563, 10.222901733584944, 5.992453325376699, 51.935413656203934, 140.42102497430133, 27.297955314107153, 43.8340524072033, 51.72957905290707, 16.10500309955214, 15.652168540772378, 26.13297191390312, 63.45514342254607, 12.541095611344431, 19.17249698043138, 58.123819943554345, 25.756333713064283, 19.774755600803495, 31.481381727735762, 59.962788340325915, 17.29427449626217, 10.230488018907417, 12.483049004115722, 26.64040241450762, 67.96238425801839, 67.63035818022279, 70.19758873219756, 43.55757864792333, 15.540429159025853, 15.090178914710489, 43.471162156709966, 16.86199385001412, 39.5634962571245, 20.39647986374355, 72.08040428046968, 68.67602801149584, 7.453141944679102, 71.90631247041544, 203.06915638782885, 46.4511776182939, 125.96086899474881, 54.577654460052436, 23.675652049352607, 63.87363504704683, 36.5015676390894, 45.40089971331437, 149.14508491746386, 41.004677674269125, 55.10097768973775, 65.97760809118309, 8.234671160969478, 115.76499132209162, 37.70362198379404, 5.770932200151516, 6.320325365672273, 10.204084779439523, 15.945170378902748, 94.23861833393997, 87.64429177512221, 25.773410413889287, 15.430399778100274, 7.215714904719722, 49.068145719867196, 37.19929116677145, 20.269202186791645, 19.66301297379982, 177.73389128583221, 50.83040010869382, 5.438662388076907, 5.684006510200302, 27.91565042879568, 74.84422455586473, 9.930477237339996, 7.218594751455556, 9.93513560505482, 45.35396961517772, 70.93720319988671, 5.675458626889075, 88.61632793516597, 20.66161590013227, 77.54114302130913, 29.143682255919366, 33.75427370082288, 208.30626754478394, 237.8329720279136, 16.56683618429635, 33.65194795782221, 36.38071527364548, 10.534380163222838, 44.8712872684251, 46.16211943811789, 8.826031764548334, 15.373851838482667, 8.052888730593782, 22.799400329132283, 117.49965779546638, 33.171390415650855, 22.874362411156792, 15.5290540945219, 16.83516322673967, 6.388263806289078, 154.40643458862266, 10.43622381645775, 79.91677676325357, 16.17054780519708, 23.150110632111893, 91.15611791060861, 60.36237820911435, 17.83186168314369, 12.973719094993768, 41.525939638461864, 130.08892472851198, 18.96286279679952, 73.16943068133136, 12.374485450478472, 76.07381100952196, 12.268365755340408, 6.495759751602061, 38.91950659894498, ...])
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)