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 = 44846
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);
([3512995.0131344195, 3656718.5805783123, 3667446.3695690096, 3668142.1875, 3686634.375, 3704566.3672474553, 3846980.3448697426, 3873999.6724747573, 3924784.257154679, 3950595.3125, 3957438.3608512795, 3963974.782468049, 3964306.25, 3981566.8025313793, 3983578.125, 3996948.979239097, 3998224.6105905245, 3999592.1875, 3999856.0601707785, 4000443.873652699, 4000499.4801250347, 4000617.162380627, 4002923.4375, 4004536.708725189, 4013896.7997138123, 4020128.125, 4038277.8842659416, 4038732.8125, 4059076.7137041027, 4069597.528660488, 4079942.33461568, 4081537.08779654, 4089375.824945255, 4089810.428475853, 4096057.8125, 4097229.8968238286, 4099660.6913928017, 4100048.8954510717, 4101096.875, 4101118.75, 4101175.1014317325, 4101377.7092816336, 4101798.8425251753, 4101837.5, 4102395.3125, 4103009.2562076603, 4103266.6068571797, 4104290.294035085, 4104323.1718141935, 4104868.5758646126, 4106467.76102246, 4107704.6875, 4120553.8496117615, 4122732.790599897, 4124810.9375, 4189868.75, 4201510.9375, 4211566.461995167, 4252581.25, 4257309.375, 4262548.4375, 4277334.375, 4286595.297493078, 4290861.724415107, 4291190.332673885, 4299106.346011198, 4332998.4375, 4342488.013190569, 4387077.559339829, 4410410.9375, 4410522.750192774, 4422782.8125, 4425751.5625, 4428343.436631805, 4438953.707894685, 4443944.494847969, 4451635.088911919, 4461602.8612082135, 4462582.8125, 4463950.811821428, 4464990.996910674, 4474414.0625, 4474528.125, 4475207.8125, 4475273.059066074, 4482095.3202112885, 4482189.639970258, 4482654.539794527, 4482835.543363542, 4482945.134376975, 4486170.035395472, 4490645.099495505, 4493861.208704166, 4495992.705135046, 4505150.275438451, 4508857.283716911, 4519474.4163624, 4542053.722066112, 4544079.7803703435, 4550960.535483676, 4557916.641525304, 4561451.91947312, 4563270.7318247, 4565116.7887795055, 4565144.586811404, 4568714.565420198, 4576212.925269126, 4601795.3125, 4606063.082093834, 4606707.2483056355, 4608537.5, 4638781.833684866, 4639790.450695287, 4645740.287983411, 4654940.668757632, 4658590.625, 4672915.625, 4677074.916359156, 4691656.782552147, 4692311.6133583635, 4692324.523178059, 4694612.5, 4697786.469587471, 4699723.712465325, 4701512.388334694, 4701962.026613434, 4707519.605519726, 4708711.738570865, 4713633.364194477, 4717067.043452025, 4721046.671897345, 4723479.58696408, 4728741.530354901, 4783562.0625463575, 4786479.2924612835, 4787435.82021474, 4789590.033916333, 4790153.125, 4792174.140812123, 4799376.933963437, 4800704.6875, 4807847.939295084, 4807856.741074928, 4807864.951965346, 4808597.989190821, 4813388.479255031, 4814656.320452944, 4815104.216813695, 4816091.446076913, 4816518.75, 4817734.365344454, 4818812.281827229, 4818869.400451726, 4818893.775827465, 4819464.588667648, 4819913.302013232, 4823737.488917015, 4825173.4375, 4825775.121091277, 4826366.683118427, 4828924.722592677, 4835823.4375, 4836278.074541152, 4837022.201391781, 4837796.462744642, 4838003.125, 4839333.546585028, 4840364.0625, 4840407.759312873, 4840415.130048362, 4841515.41106515, 4841626.5625, 4844303.363031993, 4845931.73953876, 4845946.21897129, 4847012.944226619, 4852931.25, 4854951.5625, 4856824.051867616, 4857351.349285823, 4860268.75, 4862446.846919341, 4864804.709139784, 4865432.531975075, 4873151.079735479, 4874846.629654224, 4875014.0625, 4875723.4375, 4879699.799187734, 4889322.044578184, 4889994.45430078, 4894997.51626457, 4895786.95073344, 4897498.025728951, 4915306.25, 4927984.858372356, 4933555.365273166, 4940594.960665054, 4942072.593431504, 4945429.6875, 4945456.53603985, 4948158.8837186815, 4948519.031043178, 4949313.938135871, 4954448.894120173, 4959048.4375, 4959239.0625, 4965577.714589987, 4971756.893625662, 4972748.864262828, 4974537.5, 4979537.331845911, 4980817.830256234, 4982676.2986579705, 4982686.467877289, 4996071.850952365, 4997564.505620843, 4998959.375, 5005038.295000506, 5005920.538679155, 5008669.025207271, 5010059.911943331, 5011001.5625, 5014618.467761892, 5015349.082646873, 5017106.506666453, 5017541.348455058, 5023371.9956070455, 5025317.774392379, 5025737.5, 5035431.25, 5035440.176989761, 5035485.655444007, 5036152.002341203, 5037721.403952821, 5038525.081765786, 5038588.691947761, 5039153.125, 5042366.809166118, 5042648.461952584, 5045476.8789443, 5052632.0290120635, 5062043.047162012, 5062553.125, 5071006.25, 5073671.290122796, 5073941.169101979, 5074660.180062593, 5075751.980466882, 5075765.9366237745, 5077821.231243688, 5079889.039070681, 5080455.636750093, 5081998.4375, 5083589.762097818, 5088259.70052813, 5091697.247388746, 5100720.418249619, 5101844.950786785, 5101882.238206512, 5105008.839233742, 5108784.515029289, 5111523.4375, 5114369.456878331, 5116371.58444837, 5116703.246287386, 5123260.409309292, 5128926.385628618, 5136306.723513724, 5137154.6875, 5138688.563327308, 5138741.29838653, 5139302.064903421, 5140785.9375, 5143844.852074792, 5148532.627774678, 5149390.193982589, 5149425.001472729, 5152070.744323289, 5152117.015086457, 5155882.8125, 5156381.224749386, 5161266.73264372, 5161291.259285555, 5164170.136587853, 5164511.403710496, 5167210.649482784, 5167475.412175265, 5168784.418913752, 5169051.459003132, 5171017.263061343, 5174129.6875, 5175515.547221916, 5176132.301601075, 5177337.195955363, 5178326.920680342, 5178589.0625, 5179544.409433352, 5180766.5740802605, 5181467.851492487, 5182871.875, 5183463.158613971, 5183802.685767964, 5183825.220196858, 5184204.599353197, 5189295.797426984, 5189507.590047755, 5191967.831576309, 5199878.381939996, 5200564.707021268, 5201332.750158052, 5201347.77013623, 5201660.9375, 5202762.9933067905, 5202846.8574813865, 5204174.8024395695, 5206714.511774617, 5207161.858191887, 5208137.4815005185, 5208274.716041098, 5232740.645390784, 5235791.953197499, 5236714.0625, 5237663.422881548, 5238843.75, 5247242.1875, 5248813.851676919, 5256844.259618356, 5260168.42739262, 5260893.569646885, 5263671.875, 5264910.9375, 5265441.861922103, 5267574.377918077, 5267667.284842211, 5269084.632381436, 5272117.592240752, 5272177.435383848, 5272559.375, 5273740.348559446, 5275782.943148703, 5276335.9375, 5276340.871840667, 5278295.153195415, 5278423.4375, 5278521.875, 5278856.459907301, 5281042.1875, 5281407.8125, 5282134.103106343, 5282283.089557044, 5282923.350062484, 5283396.677295715, 5283485.49818509, 5283565.625, 5284136.743141249, 5284221.875, 5284789.871635302, 5284823.4375, 5285186.974811787, 5285287.640881007, 5286177.909332476, 5287495.051609718, 5287496.901776045, 5287603.635289538, 5287715.151980099, 5287750.0, 5287864.6320055, 5288102.4722376, 5289345.3125, 5289736.115923564, 5289826.5625, 5290062.5, 5290323.106935076, 5290339.289887626, 5290748.120527395, 5290937.174785314, 5291201.38992461, 5291343.49262373, 5291485.322943405, 5291545.3125, 5291593.1552763935, 5291816.4115425255, 5292479.303222023, 5293508.120860488, 5293618.75, 5293657.652296726, 5293719.924580275, 5294117.1875, 5294152.819969811, 5294268.555761517, 5294579.6875, 5294968.75, 5295286.7253898475, 5295538.571160213, 5295866.752481146, 5296264.0625, 5297321.875, 5297461.9091474125, 5297825.0, 5298239.528451833, 5298701.222499002, 5298780.967536417, 5298836.604943176, 5298924.106068114, 5299204.657970422, 5299529.874056934, 5299714.924037982, 5300522.213449751, 5300759.469192429, 5300821.424805906, 5301001.352496052, 5301179.725922391, 5302111.318177191, 5302525.499655727, 5302542.1875, 5303212.030351655, 5303570.651041433, 5304132.00283838, 5304168.598418195, 5307213.722613233, 5308303.125, 5308493.475694267, 5308610.608092642, 5309595.3125, 5310088.398993043, 5311408.407470006, 5313904.7716464605, 5314088.0854321355, 5319246.470832054, 5320130.19086928, 5320700.71104257, 5321706.6685264, 5322741.434195816, 5327296.27998774, 5330386.017695729, 5331295.3125, 5333911.384004414, 5341734.024550933, 5341994.0889491225, 5343779.6875, 5349338.208930911, 5350718.613254753, 5350862.676461833, 5362257.8125, 5363137.5, 5363481.25, 5364080.491785522, 5365658.553216285, 5367351.3503207145, 5367768.37588628, 5372825.0, 5376060.9375, 5376906.729981347, 5377952.748770245, 5378048.803306118, 5384426.923636195, 5387659.114911684, 5389874.868360777, 5390298.219605309, 5391225.0, 5395262.239465175, 5395690.746689062, 5398504.6875, 5398537.626688452, 5399310.9943788685, 5399317.914345184, 5401767.958791812, 5403429.6875, 5403812.746646009, 5404421.507376802, 5406238.136189968, 5407224.769390732, 5407870.3125, 5410493.388027827, 5412451.554007681, 5418775.0, 5419044.70179529, 5434802.140048157, 5435372.649327321, 5437060.126513867, 5438292.086846793, 5440509.231501383, 5449947.372279948, 5450509.375, 5452138.726816306, 5456773.992408166, 5456831.984962216, 5458355.46055153, 5459354.152596335, 5460310.800970574, 5462673.610133142, 5465791.90860788, 5471320.257682142, 5471337.07804619, 5471500.551292764, 5477400.153726957, 5478655.444695014, 5480277.762024044, 5483076.035438541, 5491238.636918122, 5498882.8356009945, 5501866.923012308, 5505609.375, 5517346.454515757, 5524687.761752378, 5532647.119091626, 5538957.8125, 5545879.465064288, 5549665.625, 5550923.469663212, 5552981.25, 5553938.350896359, 5554018.666949318, 5555496.711047969, 5556969.2287585065, 5557710.219551242, 5569384.081299037, 5573107.559412494, 5573179.355735818, 5573241.922956505, 5576487.534093258, 5576996.540405752, 5577748.227906845, 5578919.867936978, 5579438.732053413, 5579441.227929766, 5579957.8125, 5580795.3125, 5580845.213530296, 5581390.904243859, 5582421.875, 5582472.016814938, 5588582.906197336, 5592880.241945075, 5594451.838859351, 5594461.441471071, 5594860.130482329, 5596418.75, 5599649.620134946, 5603248.297837779, 5604375.300276538, 5604451.352437901, 5608273.512979486, 5608307.121423351, 5609289.944329708, 5617637.475347629, 5618790.287991132, 5622992.1875, 5623308.486566932, 5626070.141576461, 5629266.996006707, 5629530.438451225, 5633436.896175335, 5636951.26482576, 5640893.118258938, 5650989.440427129, 5653399.013816917, 5654871.173159051, 5655104.328436572, 5659030.792420498, 5660337.821317998, 5663756.913339036, 5665036.829759655, 5670107.471859722, 5672129.6875, 5673281.25, 5674192.1875, 5676414.483891964, 5689929.629005682, 5694399.703614113, 5703479.75347726, 5704374.04665805, 5706170.563260112, 5706942.829309745, 5707558.972280923, 5707906.25, 5710665.944210382, 5712363.876951855, 5721728.125, 5721732.849433365, 5722821.080974456, 5722924.440850019, 5726518.556822968, 5729760.9205572875, 5731210.633608827, 5732156.600487024, 5734225.0, 5738890.960077959, 5742007.323873512, 5751107.662550606, 5754653.03084924, 5755990.625, 5763247.007579013, 5765013.171450687, 5765896.852870291, 5778142.293091085, 5781013.373821746, 5792075.740798255, 5793015.765353951, 5809254.6875, 5818724.282458281, 5831560.884615343, 5842181.037484529, 5842592.026097074, 5842764.589432718, 5844403.68453501, 5855074.7335478, 5856634.722436144, 5865398.3612176385, 5865450.625269818, 5865896.875, 5866895.238212894, 5876625.0, 5881438.569279648, 5894389.0625, 5894394.670637489, 5896029.613213276, 5898923.607829544, 5900549.890421092, 5909004.26024079, 5912592.852522026, 5916579.580239194, 5941746.404052326, 5943354.804695882, 5945275.0, 5945789.0625, 5945846.100628285, 5957075.90006741, 5957544.11784377, 5962689.219145653, 5965948.4375, 5966662.026208509, 5968121.240226885, 5971899.906728485, 5978566.012445248, 5980464.0625, 5980765.777506723, 5981393.554223461, 5981398.412185514, 5983968.341814696, 5993974.719268789, 6006249.028131644, 6008727.017713215, 6019218.707004658, 6024520.3125, 6025397.553893523, 6038655.645155573, 6045896.397774104, 6051330.458230879, 6051332.705797024, 6066264.328949149, 6069821.875, 6071477.844756163, 6085678.125, 6088180.397843331, 6090693.1937257135, 6103406.303961297, 6107898.409247197, 6109100.776942723, 6111510.39093312, 6114138.851052121, 6124073.4375, 6126893.692038691, 6135705.192991721, 6153683.626685754, 6154545.3125, 6155612.203198717, 6156876.273631528, 6159234.375, 6185048.126367233, 6191943.240283707, 6199620.51032423, 6204070.608149616, 6204459.375, 6205404.143014961, 6212411.820394127, 6212727.611099149, 6215506.944735057, 6216816.7372052055, 6219804.418651086, 6220528.170838609, 6222820.161536876, 6224645.3125, 6224914.731665267, 6225173.353106446, 6240139.0625, 6241281.010365126, 6242592.721639591, 6242928.887158037, 6245144.8809395, 6247980.3811469395, 6248291.151075209, 6249251.5422458835, 6249828.125, 6255295.3125, 6288058.431677372, 6288994.597466808, 6294023.0964276865, 6295340.210240846, 6297175.0, 6297245.925582624, 6297330.299954466, 6300846.943752024, 6300955.21996854, 6301118.230163562, 6302091.148011837, 6305878.521028986, 6306854.6875, 6306873.993103784, 6308007.900979983, 6308783.5003187135, 6311199.76801741, 6314068.75, 6314089.552409085, 6314921.270838256, 6330464.794642795, 6333862.5, 6338132.619739266, 6345389.0625, 6348182.8125, 6349976.962115259, 6352156.164493899, 6354635.439834309, 6355258.477996653, 6358246.6881209705, 6361684.16421142, 6378997.094122084, 6382203.125, 6388607.8125, 6400360.265975042, 6402578.125, 6402783.259818818, 6404498.929364903, 6409599.468769422, 6410835.53453504, 6411203.125, 6416456.4318392845, 6422375.0, 6427138.929830008, 6427515.832901531, 6435315.672802498, 6435868.6536399, 6437527.991670415, 6446432.464057301, 6446697.501558761, 6447734.096669158, 6448390.668117093, 6452720.3125, 6457035.558193659, 6459104.624313835, 6459449.452666879, 6460593.451102135, 6464357.510289939, 6465959.886071138, 6468037.823570523, 6476650.442624983, 6478868.093543996, 6479959.048755343, 6480284.455753321, 6480588.816292592, 6480999.260713219, 6481106.9928769795, 6482551.009529029, 6482719.081655581, 6490654.956236355, 6490664.350661855, 6490686.310645526, 6492240.121757022, 6492265.178851943, 6492733.214342913, 6493773.500442042, 6497924.498694786, 6498109.168744028, 6499781.83519656, 6500919.251894471, 6505876.324777958, 6505934.71103923, 6518923.759835714, 6520123.286823602, 6530002.612489521, 6536127.1455328595, 6538582.8125, 6542379.579922029, 6544621.426448326, 6544985.940944175, 6550060.273601176, 6551539.516988202, 6562500.102729985, 6565120.3125, 6566362.060589797, 6568615.100752679, 6569021.875, 6570373.500458234, 6571552.427808891, 6575384.375, 6578540.625, 6580859.996478618, 6587230.819100266, 6597123.805296913, 6598693.75, 6601738.660280322, 6602593.217987363, 6606323.085037662, 6609817.757081259, 6612231.25, 6613321.375136633, 6613415.625, 6616518.511202489, 6625264.503485534, 6633446.857426842, 6634072.821716588, 6635327.312612774, 6638432.126122132, 6641722.466626436, 6641754.6875, 6642010.9375, 6642177.354477208, 6642748.922854691, 6643176.498028393, 6644205.992193965, 6646733.419931003, 6650751.229299686, 6651853.985597223, 6651934.106802128, 6653595.9204909, 6653790.625, 6653843.340468559, 6653987.229292931, 6654664.241359703, 6654716.293801604, 6655901.5625, 6656018.740524806, 6659584.892252097, 6661086.290406301, 6667735.472198851, 6677630.819990676, 6681072.923089189, 6681742.4874804355, 6682616.6030886695, 6682843.611027409, 6682857.8125, 6682872.41983316, 6682917.771166115, 6683096.792989231, 6683413.887338507, 6684447.240013698, 6684668.984408737, 6685465.153625367, 6686882.302549252, 6689975.011067896, 6690550.0, 6690607.002472122, 6693219.705084686, 6698116.224148086, 6699178.5623937305, 6699220.887483391, 6699463.829417602, 6701885.830280778, 6708462.5, 6710492.1875, 6711054.353503023, 6712682.802760501, 6721493.142108694, 6723528.524094142, 6726732.619200442, 6733131.6423462685, 6733284.375, 6733663.844679551, 6733741.271407635, 6734932.8125, 6736977.667389472, 6737635.9375, 6737666.45776774, 6737802.103938495, 6739257.512251622, 6741728.125, 6742612.0390898, 6743548.684434337, 6744699.710310029, 6744941.758113477, 6746293.75, 6748005.937318544, 6749843.886115739, 6752716.144928656, 6754199.127586058, 6754363.412544768, 6756692.74990562, 6762314.0625, 6762324.623367015, 6762326.281595748, 6762477.635983405, 6762489.895182298, 6763085.364393829, 6766670.68157745, 6767540.311732492, 6767590.947333078, 6770765.625, 6771586.3502017865, 6773404.6875, 6779388.782187646, 6790359.375, 6790765.625, 6791792.1875, 6795577.720041293, 6795693.554105074, 6796204.399584083, 6797773.3350309, 6797839.76185488, 6798776.231691492, 6799548.4375, 6800152.97489816, 6800854.471696451, 6807401.5625, 6810223.027541596, 6811740.704373886, 6815915.033329182, 6818957.388582253, 6826292.244309109, 6826302.545440556, 6827693.75, 6827828.022961524, 6829181.25, 6829964.482245222, 6831464.4809948625, 6831617.225795649, 6834768.620440439, 6834900.0, 6834998.178548607, 6837123.4375, 6838354.982874144, 6842066.11272908, 6843645.618916609, 6844762.5, 6848711.056135334, 6849298.024558177, 6851254.86527144, 6851793.213212888, 6852060.9375, 6861500.817848217, 6864143.246949483, 6864270.592288943, 6864807.525327328, 6865466.223064665, 6866412.688764262, 6866774.580122752, 6868891.264010742, 6874653.125, 6879288.708872292, 6896022.376853808, 6896844.0968012065, 6898428.125, 6936053.125, 6957753.433227796, 6964847.484664391, 6966596.237173869, 6967223.85788439, 6974333.4902206985, 6974489.156984186, 6977545.3125, 6977555.064934372, 6977954.278559866, 6980461.227655422, 6980859.070376797, 6982623.4375, 6983732.784839342, 6991872.679263737, 6992948.175915018, 6993029.496798735, 6994059.375, 6998898.480496166, 7000661.362951544, 7001008.997232443, 7002500.0, 7003813.678066381, 7006550.690231934, 7007275.661381919, 7014882.670730001, 7020838.775425886, 7023989.007875876, 7053460.9375, 7054318.671433341, 7062459.1232808195, 7066565.285129654, 7084061.947835477, 7089092.1875, 7089722.58382924, 7089937.257550349, 7095663.331281963, 7100520.726380567, 7108142.1875, 7120287.081032524, 7122915.9407550795, 7136287.346036219, 7136290.625, 7140167.629124603, 7146582.936322262, 7149952.285573312, 7152799.026529137, 7155726.880913111, ...], [29.15142516288803, 25.57546742087407, 12.510811322546779, 48.229969587229064, 45.279365389847776, 37.62935522282899, 12.338391639642278, 8.120651700960046, 26.394346258707387, 34.107270525007785, 5.185907137708601, 91.73023019434856, 34.84959974342463, 52.28779216391923, 38.497934304545666, 7.811677134394099, 61.83101297695689, 57.56791583225824, 55.97665992744924, 15.434735212915196, 23.930720300189172, 28.037195145853673, 31.57936421138142, 75.92267685860826, 60.773131958593126, 52.472788518980316, 59.45079476423949, 36.61574666646516, 15.550947612287757, 48.464554028099, 22.79739519609516, 7.460657542184028, 5.185029852708065, 23.236691314732695, 33.43767240870283, 32.633877353175556, 53.785570165911196, 11.9278488803222, 29.67788423722684, 54.38797625635911, 16.791270680614446, 29.003020007934758, 7.23215236459508, 49.38390341985347, 57.56119073142638, 34.50103582913334, 29.553035773416095, 43.71147810169634, 7.509889481811192, 100.58269291365606, 56.57883739396176, 48.7946041040031, 51.124438495635616, 11.093647209400965, 64.12071533695497, 44.09744841608637, 31.180252253472517, 12.748144184151535, 57.941513990459015, 59.970805636741474, 65.63300871198118, 65.24440993236955, 34.320500550471465, 6.931480576520367, 44.01294801429946, 20.413498622223095, 55.89314290615654, 23.123470479367, 20.86219133670635, 30.12125286750118, 12.840748860580407, 65.23285316124864, 82.23963910112622, 7.0414431296072175, 12.17997786906496, 56.86972485111884, 7.8836076519778, 141.66902781679335, 51.17017405427868, 7.925856279810559, 22.019486339249863, 66.2090458336859, 143.9040511999921, 55.478134081385406, 22.798022313944116, 14.970982927486856, 61.09884973601087, 30.446888902728507, 8.088597478122882, 9.185198557470692, 9.107594135353516, 86.36552852487594, 16.08685147158638, 53.556538080513924, 80.65337059234938, 5.775864120165684, 8.00030692812756, 56.2822116330271, 6.782190135643036, 16.357722749254712, 21.046418527172197, 16.502379958666474, 79.9205977721316, 13.612257970056563, 19.717965710059286, 117.09293832389383, 11.864550766429304, 49.32524071336828, 123.85503536274365, 8.009173984798027, 37.68650135984402, 5.562095447322263, 9.188242830090367, 23.28914809632305, 104.20733171984077, 39.40269520403359, 49.68522240707692, 48.32197053755942, 17.451827904664068, 18.34406901842663, 27.675559489531658, 44.83616292609484, 7.807731121353598, 16.104477353187928, 10.957540107942098, 57.021818347388184, 27.35401503604331, 27.769989619355933, 9.845945464827324, 9.21250182179519, 7.069066367648731, 14.571676768254072, 15.726600881864966, 22.14058021932497, 22.608197461523634, 22.15320518021977, 13.08332465623598, 34.51640246454311, 20.65936126663086, 46.17251907991372, 37.87481548722558, 21.511025869732432, 6.331302007010022, 38.69085871155152, 10.492510895979343, 8.882552385806555, 18.252906021137097, 49.207688224535566, 6.623995354723907, 67.22520748560433, 11.11264802782477, 59.048455855201645, 54.46248202655115, 7.128257502852686, 26.107582460905824, 90.75681866269919, 32.40354071780763, 88.34798772749451, 15.424053334000822, 10.42132706978771, 31.643140143547043, 54.69486092594084, 9.289098721215822, 8.467065051273158, 36.22247304704314, 88.71794754682888, 41.86808283566316, 48.04418908193553, 40.59251008481292, 30.101936979886226, 5.9209888333285035, 104.41496032132679, 51.90367127717236, 26.31151375109259, 21.950814592617785, 16.956381854130374, 57.04527167645534, 74.28875958908269, 8.64058052497035, 24.926443434089066, 50.49864027838234, 36.84098347069771, 7.611083219851065, 26.04626134063536, 13.373499126138318, 13.847068644227116, 82.79844589507415, 35.41085590169264, 10.827690513709673, 23.029005366658566, 6.003180426812224, 8.657534163989215, 21.01532603422054, 31.9057977260854, 151.35904230816703, 29.27878077054125, 50.049672081661754, 6.223746912975432, 8.706923598296667, 32.33694299414154, 8.443862820047103, 21.58051688355594, 78.0940096361423, 7.089139396483937, 9.749845449490268, 29.83303014116097, 39.584834933324686, 8.080848788646124, 8.659028782077836, 11.867420727748522, 109.90695998036824, 62.566574981594016, 26.669817560348754, 14.022968735909258, 9.824102731302544, 5.937314045108773, 108.13635911984264, 81.96368263666845, 73.61978772564241, 93.73822767655881, 7.705903579591377, 17.477476521494665, 37.136743990591306, 6.443739741763477, 6.593213826927847, 103.08187756575603, 66.48909878374997, 15.422036252647404, 5.487533366773166, 41.77245461874988, 69.12031696172552, 13.470725331584484, 28.71918659228581, 32.9259212052923, 10.46344523632335, 41.467700680812605, 37.55295484810254, 30.14162773232895, 49.37341286380302, 8.29955072871095, 11.661183521677872, 51.12125389551056, 44.66641647191929, 30.51641949807456, 34.40073184519105, 88.96031871079104, 46.95425545728457, 7.9229074839083795, 9.71172693892741, 11.652428956527329, 47.83903053826138, 52.31950193498146, 10.287716603076634, 51.19170896713927, 18.503728009894623, 11.677737749606909, 16.580200363173038, 15.360502047834638, 22.9932000481483, 36.41221848781984, 17.69990089695054, 22.292461661187527, 89.57259318405332, 59.25253108558108, 13.938773921569613, 9.436108256664124, 54.187774762259465, 50.86120046367102, 100.84167186901736, 64.56147679942273, 30.193315407103555, 55.36016006779483, 5.359437084549657, 66.9328257867081, 13.435754801448292, 82.603157389507, 10.514799983389118, 9.33264876075732, 8.528943545950735, 10.868499225412732, 78.96329461857857, 28.03469701277198, 5.678408603475161, 5.4232886985120174, 5.92423105275373, 6.327954137417427, 6.231482584108466, 36.03567937771132, 78.18287310010044, 14.561175217383667, 35.11294113936556, 34.32233164925676, 27.075420706313626, 21.382828118046504, 99.6383247014619, 16.508438481497613, 83.64914996028077, 22.06095089963851, 118.53234272146835, 82.93359594892236, 59.21631052071238, 12.46157084398558, 10.504191243039287, 69.02917683659973, 37.43733248015928, 11.980903099627085, 35.05234630309924, 61.10407451056474, 20.191431746198717, 18.138741943588997, 6.081640107826623, 8.824387598890233, 57.298585687938164, 5.483345814683841, 44.1551321850437, 25.15383332214298, 16.983686981211598, 20.186242172151164, 42.78166135981208, 10.71108878318334, 11.159729193623658, 24.627849586502645, 75.83401130360988, 44.624362030569486, 46.049446573362765, 34.09829359016691, 34.71942388095084, 15.947584721428443, 23.94233660281499, 8.19345200759262, 33.122743175573945, 38.021642378528156, 73.10638831664264, 46.80097151412188, 6.5024595115306925, 82.35770896428934, 16.746799291655073, 18.350702334198562, 32.14370659856327, 22.257356923717907, 15.464015760701685, 40.104218469172665, 28.81714423296114, 9.200239260215636, 64.20701903086831, 50.61641934237164, 5.72024857920398, 67.1958751630763, 44.986533374270635, 6.710412531124016, 116.1492110332544, 14.618392647233359, 25.151720784979958, 13.495378856126885, 73.7274104193106, 19.263744569141085, 54.073798849028705, 32.4291787815424, 103.10291029430837, 21.245461133011297, 17.447335266574072, 61.20569786631333, 21.796725217002702, 36.81977826792367, 35.49615579695254, 28.084278361465493, 54.57507455068397, 17.67084609513205, 8.834376873067692, 58.36519316494861, 5.541803118297219, 82.14265242464475, 62.883163587178586, 113.67684751835442, 27.641729651736924, 53.8931619313298, 5.281146206480227, 9.189622845847953, 122.6987267013974, 20.42170018920545, 31.342400602363757, 10.310037473558864, 19.67107473124922, 86.31143466530276, 9.60649915885321, 62.21692117125973, 9.199518858544575, 6.048667061318436, 69.05489858289732, 12.155916787059404, 28.071771799971017, 63.504345631015, 70.39565903664796, 7.34520325175444, 20.288802571036026, 44.79031724106484, 54.100771984503425, 48.07067256620672, 26.838347746100016, 94.2685845382109, 7.780931150573272, 26.607854165380424, 128.31278231307238, 6.597068973115887, 7.30903493345469, 38.277181915729365, 7.672135167314721, 19.698132666484703, 110.3128945696059, 9.412338696303529, 13.464554371101203, 44.92584676945219, 109.30115621072629, 18.05552370431805, 46.4882971457846, 35.208984286617984, 7.441769599571673, 6.833029720071112, 10.060943341635026, 40.665751934453496, 13.787045880798145, 82.22542675691592, 28.788498319794996, 73.01119496212323, 67.86091213894281, 8.827021855859844, 8.628436190263654, 22.596528885738447, 17.76751347380542, 10.549730619650594, 12.017602870020978, 26.310451227649054, 39.96100681169143, 10.124225031740332, 24.07502296459215, 22.56843346223605, 78.92897366349278, 9.73981751411197, 13.755183060500162, 21.80198783397345, 55.84359507726896, 49.68829811527626, 96.73882832696661, 56.78982515260992, 43.22412879732963, 51.59641411923992, 50.15407260814337, 19.253513795236415, 61.72881521577375, 24.94132303421285, 22.84805895474487, 44.00828560831378, 31.489885581339703, 17.152362132346365, 22.823517187658542, 5.255500112546264, 26.43629082255792, 65.44978800645869, 25.155809946809928, 30.855636992785037, 76.40484028175854, 7.054608688273994, 6.506337763783047, 83.32196855096262, 25.188006499675062, 34.69590686315204, 12.492050550424262, 15.221643786261549, 50.519248762862674, 5.545172001541157, 11.01665146898404, 20.479199412946247, 24.67951569397394, 38.580671409364726, 22.990145825960496, 61.816142160451086, 62.72186985381164, 20.455546648371197, 28.564778321116044, 32.48927594628215, 22.61862645826799, 9.247721030237942, 9.212944523312261, 9.790530517097448, 43.079044931343574, 23.305387894639793, 6.879588070015383, 10.041158930840595, 79.46499130064785, 13.231458920390265, 26.090504854454586, 35.65655568845915, 9.106215439867809, 14.736606375285637, 31.729380658155254, 12.114637928750371, 7.659800777354473, 29.451150207416994, 16.605297582800333, 13.252537112899018, 67.84707893079536, 12.514164235677047, 24.21521471250009, 128.5293152492573, 8.076067939666808, 16.04278984191186, 32.30333328047533, 30.124869718363893, 9.15014625110206, 123.50770369433316, 6.769944736702121, 59.70729922170739, 88.74996745070594, 5.3953085461597325, 52.86989493413931, 8.557090515067447, 93.71697903673987, 17.51758653881801, 24.369069037314937, 132.67594242777412, 5.064117087218696, 5.708931234151781, 13.803092797451942, 24.978600447045412, 75.13073093870568, 23.668251775922414, 84.72118511610125, 51.20401600001787, 63.03131561618667, 5.700488130279843, 5.409257647445404, 56.199316167122035, 5.249131813120005, 190.71286304278786, 67.30092641751428, 6.117317515566747, 12.018806359125907, 32.461879022545176, 36.28014189926212, 9.029612050778208, 10.91620432639439, 65.23647394896079, 36.17567681717903, 15.237223915359015, 19.777598936987694, 12.857047478184802, 39.74465226269693, 23.51837885204778, 98.35941724547067, 42.22054505764792, 25.55253250713607, 25.243322297854434, 8.728077097693442, 68.43584672473332, 23.780495556933335, 54.55618000795488, 47.07939270987397, 7.825888026664941, 56.79881530953067, 47.43154991295376, 19.50905149652321, 9.618723803113099, 50.043825044988, 48.43886271812608, 87.67646471463762, 96.77565335683481, 48.61065225283545, 28.68197136913294, 67.44057411818034, 8.25588489595651, 69.53749377546377, 9.387820777447764, 5.994270326553002, 32.51578112401877, 12.304767842234343, 7.463798139395832, 54.376061838071735, 11.666216475078468, 91.32741553262548, 57.005807408451396, 7.131194277857519, 13.385326127888607, 117.38789279539981, 64.04733447593529, 8.277638011897926, 91.94289466756895, 71.2862518716186, 42.91572902142759, 16.78496230026896, 6.413128884632025, 33.03407841948827, 33.05155744180036, 53.70048794622663, 8.357954152690821, 25.156352289450087, 130.53235913460844, 6.099149024981118, 8.809885063332748, 18.78963423873717, 11.354412390494836, 56.75776977732568, 10.16511210444927, 9.287082980470297, 85.12405483160823, 6.731705916251663, 18.027483884279878, 17.61103483511217, 62.04558804823206, 16.454729226787858, 14.658515413201396, 5.747741959821308, 45.9250048910545, 7.1020598049281904, 51.096970048476535, 6.206831795366331, 33.84011478261756, 97.81054214815245, 9.26936964330885, 15.55317750345203, 67.76466982978586, 22.2507735292586, 42.39129160603624, 26.570267975395936, 99.02968655677392, 15.407847746770337, 72.14917991949969, 78.34736190977426, 5.4294830914048395, 7.380017999933264, 15.438707235472567, 84.47210208090792, 34.434094316534015, 29.54688048640589, 5.66751620174151, 14.59753294108659, 16.65717495151621, 39.10767827139422, 15.55650237669343, 62.28119372853784, 32.98721312379931, 22.460652979216505, 9.10479785637957, 25.276295981412495, 23.323050159507282, 158.78754679637984, 32.91949984467827, 15.109610407265762, 20.507314948121454, 23.71979994573331, 44.46564693897494, 14.549828433944816, 16.064643512084977, 52.430723586819084, 5.519632269432302, 90.84994811054236, 8.701693992073116, 10.356900529285705, 53.71873727190971, 193.55199670470418, 19.05012863718485, 10.36884865832688, 10.812538166562334, 37.60113340664263, 27.428057959810623, 18.13553953308597, 48.66768965991224, 41.07686982898396, 10.693451544177991, 29.531020939421815, 35.68492271806333, 20.872618155225894, 43.724278230585774, 82.15259423951103, 16.20236281235491, 35.312824724853456, 50.539293868371765, 19.87084667739137, 13.288135428391193, 79.43391874654495, 6.418746691128635, 105.8144696829021, 25.221890495074305, 14.395721425740597, 71.48911939253993, 47.50869758558903, 81.68120171912747, 36.06109114497507, 103.58003083208294, 11.613474802694494, 18.94244831384803, 10.514097487538418, 56.269926418537665, 15.873291075108668, 173.86521053545434, 36.64957468182831, 37.61177150833485, 43.45239996937822, 5.431891234401576, 23.23990430592143, 22.38776456438309, 55.78067119336012, 35.0241557965411, 17.934772907916564, 5.945415312758965, 17.451340530455987, 7.425453639667998, 6.872615710167982, 52.52611150820121, 29.126035275982815, 66.59247092072451, 15.289830316407825, 116.50188516828368, 10.783482009187493, 52.50337398775459, 17.207862821556027, 20.513367233623992, 12.504009784365072, 46.00027332572733, 20.707499490714813, 30.48245619421872, 40.10416575957573, 21.962619102467862, 73.93044558475344, 105.53304071822438, 12.35606624001317, 82.90953477650585, 10.813475400385286, 7.180268633464626, 47.33389721628991, 33.988961321935825, 7.3771661708940215, 37.882010148896256, 76.09642584698739, 17.21885348436515, 10.387821927881909, 22.518954879409787, 39.98044291834208, 15.683058719544952, 37.0677759602552, 10.926479508641597, 7.1771965173261725, 6.273256818226434, 56.82046318548234, 26.141945324714907, 23.15106655389619, 41.61956019605622, 13.977114301507633, 26.88275200716621, 43.29987583822784, 22.787950804625858, 5.933921717774801, 26.807902462925295, 59.470222977456075, 13.902480979526649, 12.033033917627106, 9.620854716796275, 5.2148472584000665, 95.74846939584003, 46.80066026427658, 25.28355851161085, 36.71686677045043, 5.430905666890636, 10.049901685168733, 20.980475010211332, 16.376697452266797, 76.1053179346402, 7.199318481929069, 8.494278271077066, 8.037251049062068, 163.588623966691, 15.222182616647448, 16.44931055864904, 21.480089904501494, 22.94401931091682, 17.766073426725782, 9.79518658494397, 5.521653310016646, 14.18412773994958, 16.331082763529082, 166.76640269223336, 35.22165392772887, 12.180265967626623, 30.432679668302868, 14.546736099573359, 52.87691586722838, 164.65620094895064, 15.983790690688455, 70.93790079236712, 11.292168902004349, 44.35606026524299, 21.845639374057995, 8.027527115303577, 88.55338823884449, 15.187032285590812, 7.369144719925968, 56.35246522960695, 54.944027588817036, 9.91868240541133, 54.912688094957794, 121.12262257667608, 29.80411805164174, 136.9147557456351, 21.17959252282939, 23.102967452262586, 16.44842046339486, 61.91798859188618, 13.326420256228761, 38.46578683085891, 22.439609415057078, 29.075057790172387, 25.357240488692092, 13.019746990229553, 18.855878037016815, 12.843027371840252, 56.39117678562519, 79.46715714222509, 72.63869083568751, 69.3732973347221, 22.898285012757686, 34.60509385628243, 30.587556877439617, 8.636229807689798, 23.335719402680436, 61.11429442258709, 65.53134729790077, 6.891277037897943, 42.156972552943536, 33.85238346969555, 36.013631370338956, 25.623602036363575, 39.60388453488753, 32.636972522323795, 100.83905743799114, 17.36323820053756, 38.51163943060884, 8.054946652507354, 29.392376270002245, 20.905633351381425, 77.02818714449438, 6.652184680397095, 5.039209735225299, 32.98349631456505, 29.463812142133364, 6.582651281683871, 44.59968386705162, 63.92183261871818, 23.01858480254846, 101.83391843036819, 10.463028661904543, 21.394407234518805, 6.7657182014464015, 58.12518773964649, 5.756381482839999, 10.294728226707857, 7.835335122128405, 104.03515799903005, 6.883996093220941, 9.141799867078532, 23.990213294075225, 90.22805280302207, 81.30963089642248, 23.32597856527682, 8.281433622792775, 20.4803581357346, 24.355566080182385, 5.79981486723874, 38.22662005954619, 32.90235587800436, 34.05506142516438, 20.375435348730804, 48.29930270447364, 44.99253220770771, 73.51253097091029, 12.738019188247936, 102.46584448892554, 30.970239922749855, 68.36031288311477, 6.417187880447003, 19.775195892585494, 117.48896119106816, 8.071853403038821, 80.24280142465994, 63.18599551056728, 11.347345255419839, 23.17135508772933, 21.090354072755705, 29.95498602580566, 5.989926784145819, 34.842243825707556, 6.690574146438127, 23.997767012026742, 155.41652258910406, 19.47077748284878, 8.005104448233794, 16.563400599533402, 12.648091692047402, 6.308800284128149, 65.89967297765726, 11.840490545564506, 44.86748635384958, 30.45752545419866, 42.13495381194776, 35.953163238594584, 55.12428526027853, 22.49664406953135, 6.456815272740824, 69.87851990838789, 51.249420140188455, 5.366471083210743, 23.442640210022848, 58.057243594188066, 25.87498667593022, 39.298087861955494, 96.47912775085068, 21.37505144232898, 15.252929482437704, 83.54191815473393, 22.287189366003815, 15.162552269100502, 7.406259931193814, 42.87169226241891, 10.971873805054658, 83.87731159040348, 28.822201169093116, 16.81900850740906, 90.64391259882525, 14.469660373549596, 116.1259537375912, 8.15422755014384, 86.0985447140967, 29.78697465057862, 6.864947495522155, 16.253963318032927, 30.755147588514347, 33.66110618840557, 8.079646137918122, 20.945193010813792, 28.660962815997223, 36.82380235615124, 29.745299084990116, 39.93664728105716, 5.629712554610593, 112.81132352347244, 15.709824553791785, 62.09043288735392, 63.6118540014099, 63.908454209738544, 105.63549032719017, 21.744293628494965, 12.014573830800726, 16.451570065795384, 83.19679716121684, 57.07211413571721, 33.28059354108112, 8.63762965168502, 57.07381602091667, 25.352152624751763, 5.751291630722164, 11.278674621953897, 115.63497977550311, 11.77378501241908, 39.99441035481224, 21.346367545223462, 36.253208517400026, 81.98257244641962, 28.72013137506654, 5.75992952210358, 70.78993475831523, 25.2550613549675, 116.83989225210587, 36.45368742792317, 16.855852080467276, 22.805722544936557, 102.96322845911155, 19.758157552664127, 86.36758228364361, 18.24846236317738, 43.46567520743291, 19.542120646296055, 198.11029668338514, 44.12221257936779, 71.60302096276635, 59.7596287725475, 52.1283712159395, 29.21307793753705, 91.22771602977782, 14.94566930978084, 62.00119928046551, 26.421048019113655, 31.903175414085297, 31.528484712766865, 22.341411237074873, 46.946197318389544, 15.81576382007614, 68.11535525204567, 62.32100401954756, 58.33262107052364, 18.665231631474857, 17.514121285165047, 29.227973760102532, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3512995.0131344195, 3656718.5805783123, 3667446.3695690096, 3668142.1875, 3686634.375, 3704566.3672474553, 3846980.3448697426, 3873999.6724747573, 3924784.257154679, 3950595.3125, 3957438.3608512795, 3963974.782468049, 3964306.25, 3981566.8025313793, 3983578.125, 3996948.979239097, 3998224.6105905245, 3999592.1875, 3999856.0601707785, 4000443.873652699, 4000499.4801250347, 4000617.162380627, 4002923.4375, 4004536.708725189, 4013896.7997138123, 4020128.125, 4038277.8842659416, 4038732.8125, 4059076.7137041027, 4069597.528660488, 4079942.33461568, 4081537.08779654, 4089375.824945255, 4089810.428475853, 4096057.8125, 4097229.8968238286, 4099660.6913928017, 4100048.8954510717, 4101096.875, 4101118.75, 4101175.1014317325, 4101377.7092816336, 4101798.8425251753, 4101837.5, 4102395.3125, 4103009.2562076603, 4103266.6068571797, 4104290.294035085, 4104323.1718141935, 4104868.5758646126, 4106467.76102246, 4107704.6875, 4120553.8496117615, 4122732.790599897, 4124810.9375, 4189868.75, 4201510.9375, 4211566.461995167, 4252581.25, 4257309.375, 4262548.4375, 4277334.375, 4286595.297493078, 4290861.724415107, 4291190.332673885, 4299106.346011198, 4332998.4375, 4342488.013190569, 4387077.559339829, 4410410.9375, 4410522.750192774, 4422782.8125, 4425751.5625, 4428343.436631805, 4438953.707894685, 4443944.494847969, 4451635.088911919, 4461602.8612082135, 4462582.8125, 4463950.811821428, 4464990.996910674, 4474414.0625, 4474528.125, 4475207.8125, 4475273.059066074, 4482095.3202112885, 4482189.639970258, 4482654.539794527, 4482835.543363542, 4482945.134376975, 4486170.035395472, 4490645.099495505, 4493861.208704166, 4495992.705135046, 4505150.275438451, 4508857.283716911, 4519474.4163624, 4542053.722066112, 4544079.7803703435, 4550960.535483676, 4557916.641525304, 4561451.91947312, 4563270.7318247, 4565116.7887795055, 4565144.586811404, 4568714.565420198, 4576212.925269126, 4601795.3125, 4606063.082093834, 4606707.2483056355, 4608537.5, 4638781.833684866, 4639790.450695287, 4645740.287983411, 4654940.668757632, 4658590.625, 4672915.625, 4677074.916359156, 4691656.782552147, 4692311.6133583635, 4692324.523178059, 4694612.5, 4697786.469587471, 4699723.712465325, 4701512.388334694, 4701962.026613434, 4707519.605519726, 4708711.738570865, 4713633.364194477, 4717067.043452025, 4721046.671897345, 4723479.58696408, 4728741.530354901, 4783562.0625463575, 4786479.2924612835, 4787435.82021474, 4789590.033916333, 4790153.125, 4792174.140812123, 4799376.933963437, 4800704.6875, 4807847.939295084, 4807856.741074928, 4807864.951965346, 4808597.989190821, 4813388.479255031, 4814656.320452944, 4815104.216813695, 4816091.446076913, 4816518.75, 4817734.365344454, 4818812.281827229, 4818869.400451726, 4818893.775827465, 4819464.588667648, 4819913.302013232, 4823737.488917015, 4825173.4375, 4825775.121091277, 4826366.683118427, 4828924.722592677, 4835823.4375, 4836278.074541152, 4837022.201391781, 4837796.462744642, 4838003.125, 4839333.546585028, 4840364.0625, 4840407.759312873, 4840415.130048362, 4841515.41106515, 4841626.5625, 4844303.363031993, 4845931.73953876, 4845946.21897129, 4847012.944226619, 4852931.25, 4854951.5625, 4856824.051867616, 4857351.349285823, 4860268.75, 4862446.846919341, 4864804.709139784, 4865432.531975075, 4873151.079735479, 4874846.629654224, 4875014.0625, 4875723.4375, 4879699.799187734, 4889322.044578184, 4889994.45430078, 4894997.51626457, 4895786.95073344, 4897498.025728951, 4915306.25, 4927984.858372356, 4933555.365273166, 4940594.960665054, 4942072.593431504, 4945429.6875, 4945456.53603985, 4948158.8837186815, 4948519.031043178, 4949313.938135871, 4954448.894120173, 4959048.4375, 4959239.0625, 4965577.714589987, 4971756.893625662, 4972748.864262828, 4974537.5, 4979537.331845911, 4980817.830256234, 4982676.2986579705, 4982686.467877289, 4996071.850952365, 4997564.505620843, 4998959.375, 5005038.295000506, 5005920.538679155, 5008669.025207271, 5010059.911943331, 5011001.5625, 5014618.467761892, 5015349.082646873, 5017106.506666453, 5017541.348455058, 5023371.9956070455, 5025317.774392379, 5025737.5, 5035431.25, 5035440.176989761, 5035485.655444007, 5036152.002341203, 5037721.403952821, 5038525.081765786, 5038588.691947761, 5039153.125, 5042366.809166118, 5042648.461952584, 5045476.8789443, 5052632.0290120635, 5062043.047162012, 5062553.125, 5071006.25, 5073671.290122796, 5073941.169101979, 5074660.180062593, 5075751.980466882, 5075765.9366237745, 5077821.231243688, 5079889.039070681, 5080455.636750093, 5081998.4375, 5083589.762097818, 5088259.70052813, 5091697.247388746, 5100720.418249619, 5101844.950786785, 5101882.238206512, 5105008.839233742, 5108784.515029289, 5111523.4375, 5114369.456878331, 5116371.58444837, 5116703.246287386, 5123260.409309292, 5128926.385628618, 5136306.723513724, 5137154.6875, 5138688.563327308, 5138741.29838653, 5139302.064903421, 5140785.9375, 5143844.852074792, 5148532.627774678, 5149390.193982589, 5149425.001472729, 5152070.744323289, 5152117.015086457, 5155882.8125, 5156381.224749386, 5161266.73264372, 5161291.259285555, 5164170.136587853, 5164511.403710496, 5167210.649482784, 5167475.412175265, 5168784.418913752, 5169051.459003132, 5171017.263061343, 5174129.6875, 5175515.547221916, 5176132.301601075, 5177337.195955363, 5178326.920680342, 5178589.0625, 5179544.409433352, 5180766.5740802605, 5181467.851492487, 5182871.875, 5183463.158613971, 5183802.685767964, 5183825.220196858, 5184204.599353197, 5189295.797426984, 5189507.590047755, 5191967.831576309, 5199878.381939996, 5200564.707021268, 5201332.750158052, 5201347.77013623, 5201660.9375, 5202762.9933067905, 5202846.8574813865, 5204174.8024395695, 5206714.511774617, 5207161.858191887, 5208137.4815005185, 5208274.716041098, 5232740.645390784, 5235791.953197499, 5236714.0625, 5237663.422881548, 5238843.75, 5247242.1875, 5248813.851676919, 5256844.259618356, 5260168.42739262, 5260893.569646885, 5263671.875, 5264910.9375, 5265441.861922103, 5267574.377918077, 5267667.284842211, 5269084.632381436, 5272117.592240752, 5272177.435383848, 5272559.375, 5273740.348559446, 5275782.943148703, 5276335.9375, 5276340.871840667, 5278295.153195415, 5278423.4375, 5278521.875, 5278856.459907301, 5281042.1875, 5281407.8125, 5282134.103106343, 5282283.089557044, 5282923.350062484, 5283396.677295715, 5283485.49818509, 5283565.625, 5284136.743141249, 5284221.875, 5284789.871635302, 5284823.4375, 5285186.974811787, 5285287.640881007, 5286177.909332476, 5287495.051609718, 5287496.901776045, 5287603.635289538, 5287715.151980099, 5287750.0, 5287864.6320055, 5288102.4722376, 5289345.3125, 5289736.115923564, 5289826.5625, 5290062.5, 5290323.106935076, 5290339.289887626, 5290748.120527395, 5290937.174785314, 5291201.38992461, 5291343.49262373, 5291485.322943405, 5291545.3125, 5291593.1552763935, 5291816.4115425255, 5292479.303222023, 5293508.120860488, 5293618.75, 5293657.652296726, 5293719.924580275, 5294117.1875, 5294152.819969811, 5294268.555761517, 5294579.6875, 5294968.75, 5295286.7253898475, 5295538.571160213, 5295866.752481146, 5296264.0625, 5297321.875, 5297461.9091474125, 5297825.0, 5298239.528451833, 5298701.222499002, 5298780.967536417, 5298836.604943176, 5298924.106068114, 5299204.657970422, 5299529.874056934, 5299714.924037982, 5300522.213449751, 5300759.469192429, 5300821.424805906, 5301001.352496052, 5301179.725922391, 5302111.318177191, 5302525.499655727, 5302542.1875, 5303212.030351655, 5303570.651041433, 5304132.00283838, 5304168.598418195, 5307213.722613233, 5308303.125, 5308493.475694267, 5308610.608092642, 5309595.3125, 5310088.398993043, 5311408.407470006, 5313904.7716464605, 5314088.0854321355, 5319246.470832054, 5320130.19086928, 5320700.71104257, 5321706.6685264, 5322741.434195816, 5327296.27998774, 5330386.017695729, 5331295.3125, 5333911.384004414, 5341734.024550933, 5341994.0889491225, 5343779.6875, 5349338.208930911, 5350718.613254753, 5350862.676461833, 5362257.8125, 5363137.5, 5363481.25, 5364080.491785522, 5365658.553216285, 5367351.3503207145, 5367768.37588628, 5372825.0, 5376060.9375, 5376906.729981347, 5377952.748770245, 5378048.803306118, 5384426.923636195, 5387659.114911684, 5389874.868360777, 5390298.219605309, 5391225.0, 5395262.239465175, 5395690.746689062, 5398504.6875, 5398537.626688452, 5399310.9943788685, 5399317.914345184, 5401767.958791812, 5403429.6875, 5403812.746646009, 5404421.507376802, 5406238.136189968, 5407224.769390732, 5407870.3125, 5410493.388027827, 5412451.554007681, 5418775.0, 5419044.70179529, 5434802.140048157, 5435372.649327321, 5437060.126513867, 5438292.086846793, 5440509.231501383, 5449947.372279948, 5450509.375, 5452138.726816306, 5456773.992408166, 5456831.984962216, 5458355.46055153, 5459354.152596335, 5460310.800970574, 5462673.610133142, 5465791.90860788, 5471320.257682142, 5471337.07804619, 5471500.551292764, 5477400.153726957, 5478655.444695014, 5480277.762024044, 5483076.035438541, 5491238.636918122, 5498882.8356009945, 5501866.923012308, 5505609.375, 5517346.454515757, 5524687.761752378, 5532647.119091626, 5538957.8125, 5545879.465064288, 5549665.625, 5550923.469663212, 5552981.25, 5553938.350896359, 5554018.666949318, 5555496.711047969, 5556969.2287585065, 5557710.219551242, 5569384.081299037, 5573107.559412494, 5573179.355735818, 5573241.922956505, 5576487.534093258, 5576996.540405752, 5577748.227906845, 5578919.867936978, 5579438.732053413, 5579441.227929766, 5579957.8125, 5580795.3125, 5580845.213530296, 5581390.904243859, 5582421.875, 5582472.016814938, 5588582.906197336, 5592880.241945075, 5594451.838859351, 5594461.441471071, 5594860.130482329, 5596418.75, 5599649.620134946, 5603248.297837779, 5604375.300276538, 5604451.352437901, 5608273.512979486, 5608307.121423351, 5609289.944329708, 5617637.475347629, 5618790.287991132, 5622992.1875, 5623308.486566932, 5626070.141576461, 5629266.996006707, 5629530.438451225, 5633436.896175335, 5636951.26482576, 5640893.118258938, 5650989.440427129, 5653399.013816917, 5654871.173159051, 5655104.328436572, 5659030.792420498, 5660337.821317998, 5663756.913339036, 5665036.829759655, 5670107.471859722, 5672129.6875, 5673281.25, 5674192.1875, 5676414.483891964, 5689929.629005682, 5694399.703614113, 5703479.75347726, 5704374.04665805, 5706170.563260112, 5706942.829309745, 5707558.972280923, 5707906.25, 5710665.944210382, 5712363.876951855, 5721728.125, 5721732.849433365, 5722821.080974456, 5722924.440850019, 5726518.556822968, 5729760.9205572875, 5731210.633608827, 5732156.600487024, 5734225.0, 5738890.960077959, 5742007.323873512, 5751107.662550606, 5754653.03084924, 5755990.625, 5763247.007579013, 5765013.171450687, 5765896.852870291, 5778142.293091085, 5781013.373821746, 5792075.740798255, 5793015.765353951, 5809254.6875, 5818724.282458281, 5831560.884615343, 5842181.037484529, 5842592.026097074, 5842764.589432718, 5844403.68453501, 5855074.7335478, 5856634.722436144, 5865398.3612176385, 5865450.625269818, 5865896.875, 5866895.238212894, 5876625.0, 5881438.569279648, 5894389.0625, 5894394.670637489, 5896029.613213276, 5898923.607829544, 5900549.890421092, 5909004.26024079, 5912592.852522026, 5916579.580239194, 5941746.404052326, 5943354.804695882, 5945275.0, 5945789.0625, 5945846.100628285, 5957075.90006741, 5957544.11784377, 5962689.219145653, 5965948.4375, 5966662.026208509, 5968121.240226885, 5971899.906728485, 5978566.012445248, 5980464.0625, 5980765.777506723, 5981393.554223461, 5981398.412185514, 5983968.341814696, 5993974.719268789, 6006249.028131644, 6008727.017713215, 6019218.707004658, 6024520.3125, 6025397.553893523, 6038655.645155573, 6045896.397774104, 6051330.458230879, 6051332.705797024, 6066264.328949149, 6069821.875, 6071477.844756163, 6085678.125, 6088180.397843331, 6090693.1937257135, 6103406.303961297, 6107898.409247197, 6109100.776942723, 6111510.39093312, 6114138.851052121, 6124073.4375, 6126893.692038691, 6135705.192991721, 6153683.626685754, 6154545.3125, 6155612.203198717, 6156876.273631528, 6159234.375, 6185048.126367233, 6191943.240283707, 6199620.51032423, 6204070.608149616, 6204459.375, 6205404.143014961, 6212411.820394127, 6212727.611099149, 6215506.944735057, 6216816.7372052055, 6219804.418651086, 6220528.170838609, 6222820.161536876, 6224645.3125, 6224914.731665267, 6225173.353106446, 6240139.0625, 6241281.010365126, 6242592.721639591, 6242928.887158037, 6245144.8809395, 6247980.3811469395, 6248291.151075209, 6249251.5422458835, 6249828.125, 6255295.3125, 6288058.431677372, 6288994.597466808, 6294023.0964276865, 6295340.210240846, 6297175.0, 6297245.925582624, 6297330.299954466, 6300846.943752024, 6300955.21996854, 6301118.230163562, 6302091.148011837, 6305878.521028986, 6306854.6875, 6306873.993103784, 6308007.900979983, 6308783.5003187135, 6311199.76801741, 6314068.75, 6314089.552409085, 6314921.270838256, 6330464.794642795, 6333862.5, 6338132.619739266, 6345389.0625, 6348182.8125, 6349976.962115259, 6352156.164493899, 6354635.439834309, 6355258.477996653, 6358246.6881209705, 6361684.16421142, 6378997.094122084, 6382203.125, 6388607.8125, 6400360.265975042, 6402578.125, 6402783.259818818, 6404498.929364903, 6409599.468769422, 6410835.53453504, 6411203.125, 6416456.4318392845, 6422375.0, 6427138.929830008, 6427515.832901531, 6435315.672802498, 6435868.6536399, 6437527.991670415, 6446432.464057301, 6446697.501558761, 6447734.096669158, 6448390.668117093, 6452720.3125, 6457035.558193659, 6459104.624313835, 6459449.452666879, 6460593.451102135, 6464357.510289939, 6465959.886071138, 6468037.823570523, 6476650.442624983, 6478868.093543996, 6479959.048755343, 6480284.455753321, 6480588.816292592, 6480999.260713219, 6481106.9928769795, 6482551.009529029, 6482719.081655581, 6490654.956236355, 6490664.350661855, 6490686.310645526, 6492240.121757022, 6492265.178851943, 6492733.214342913, 6493773.500442042, 6497924.498694786, 6498109.168744028, 6499781.83519656, 6500919.251894471, 6505876.324777958, 6505934.71103923, 6518923.759835714, 6520123.286823602, 6530002.612489521, 6536127.1455328595, 6538582.8125, 6542379.579922029, 6544621.426448326, 6544985.940944175, 6550060.273601176, 6551539.516988202, 6562500.102729985, 6565120.3125, 6566362.060589797, 6568615.100752679, 6569021.875, 6570373.500458234, 6571552.427808891, 6575384.375, 6578540.625, 6580859.996478618, 6587230.819100266, 6597123.805296913, 6598693.75, 6601738.660280322, 6602593.217987363, 6606323.085037662, 6609817.757081259, 6612231.25, 6613321.375136633, 6613415.625, 6616518.511202489, 6625264.503485534, 6633446.857426842, 6634072.821716588, 6635327.312612774, 6638432.126122132, 6641722.466626436, 6641754.6875, 6642010.9375, 6642177.354477208, 6642748.922854691, 6643176.498028393, 6644205.992193965, 6646733.419931003, 6650751.229299686, 6651853.985597223, 6651934.106802128, 6653595.9204909, 6653790.625, 6653843.340468559, 6653987.229292931, 6654664.241359703, 6654716.293801604, 6655901.5625, 6656018.740524806, 6659584.892252097, 6661086.290406301, 6667735.472198851, 6677630.819990676, 6681072.923089189, 6681742.4874804355, 6682616.6030886695, 6682843.611027409, 6682857.8125, 6682872.41983316, 6682917.771166115, 6683096.792989231, 6683413.887338507, 6684447.240013698, 6684668.984408737, 6685465.153625367, 6686882.302549252, 6689975.011067896, 6690550.0, 6690607.002472122, 6693219.705084686, 6698116.224148086, 6699178.5623937305, 6699220.887483391, 6699463.829417602, 6701885.830280778, 6708462.5, 6710492.1875, 6711054.353503023, 6712682.802760501, 6721493.142108694, 6723528.524094142, 6726732.619200442, 6733131.6423462685, 6733284.375, 6733663.844679551, 6733741.271407635, 6734932.8125, 6736977.667389472, 6737635.9375, 6737666.45776774, 6737802.103938495, 6739257.512251622, 6741728.125, 6742612.0390898, 6743548.684434337, 6744699.710310029, 6744941.758113477, 6746293.75, 6748005.937318544, 6749843.886115739, 6752716.144928656, 6754199.127586058, 6754363.412544768, 6756692.74990562, 6762314.0625, 6762324.623367015, 6762326.281595748, 6762477.635983405, 6762489.895182298, 6763085.364393829, 6766670.68157745, 6767540.311732492, 6767590.947333078, 6770765.625, 6771586.3502017865, 6773404.6875, 6779388.782187646, 6790359.375, 6790765.625, 6791792.1875, 6795577.720041293, 6795693.554105074, 6796204.399584083, 6797773.3350309, 6797839.76185488, 6798776.231691492, 6799548.4375, 6800152.97489816, 6800854.471696451, 6807401.5625, 6810223.027541596, 6811740.704373886, 6815915.033329182, 6818957.388582253, 6826292.244309109, 6826302.545440556, 6827693.75, 6827828.022961524, 6829181.25, 6829964.482245222, 6831464.4809948625, 6831617.225795649, 6834768.620440439, 6834900.0, 6834998.178548607, 6837123.4375, 6838354.982874144, 6842066.11272908, 6843645.618916609, 6844762.5, 6848711.056135334, 6849298.024558177, 6851254.86527144, 6851793.213212888, 6852060.9375, 6861500.817848217, 6864143.246949483, 6864270.592288943, 6864807.525327328, 6865466.223064665, 6866412.688764262, 6866774.580122752, 6868891.264010742, 6874653.125, 6879288.708872292, 6896022.376853808, 6896844.0968012065, 6898428.125, 6936053.125, 6957753.433227796, 6964847.484664391, 6966596.237173869, 6967223.85788439, 6974333.4902206985, 6974489.156984186, 6977545.3125, 6977555.064934372, 6977954.278559866, 6980461.227655422, 6980859.070376797, 6982623.4375, 6983732.784839342, 6991872.679263737, 6992948.175915018, 6993029.496798735, 6994059.375, 6998898.480496166, 7000661.362951544, 7001008.997232443, 7002500.0, 7003813.678066381, 7006550.690231934, 7007275.661381919, 7014882.670730001, 7020838.775425886, 7023989.007875876, 7053460.9375, 7054318.671433341, 7062459.1232808195, 7066565.285129654, 7084061.947835477, 7089092.1875, 7089722.58382924, 7089937.257550349, 7095663.331281963, 7100520.726380567, 7108142.1875, 7120287.081032524, 7122915.9407550795, 7136287.346036219, 7136290.625, 7140167.629124603, 7146582.936322262, 7149952.285573312, 7152799.026529137, 7155726.880913111, ...], [29.15142516288803, 25.57546742087407, 12.510811322546779, 48.229969587229064, 45.279365389847776, 37.62935522282899, 12.338391639642278, 8.120651700960046, 26.394346258707387, 34.107270525007785, 5.185907137708601, 91.73023019434856, 34.84959974342463, 52.28779216391923, 38.497934304545666, 7.811677134394099, 61.83101297695689, 57.56791583225824, 55.97665992744924, 15.434735212915196, 23.930720300189172, 28.037195145853673, 31.57936421138142, 75.92267685860826, 60.773131958593126, 52.472788518980316, 59.45079476423949, 36.61574666646516, 15.550947612287757, 48.464554028099, 22.79739519609516, 7.460657542184028, 5.185029852708065, 23.236691314732695, 33.43767240870283, 32.633877353175556, 53.785570165911196, 11.9278488803222, 29.67788423722684, 54.38797625635911, 16.791270680614446, 29.003020007934758, 7.23215236459508, 49.38390341985347, 57.56119073142638, 34.50103582913334, 29.553035773416095, 43.71147810169634, 7.509889481811192, 100.58269291365606, 56.57883739396176, 48.7946041040031, 51.124438495635616, 11.093647209400965, 64.12071533695497, 44.09744841608637, 31.180252253472517, 12.748144184151535, 57.941513990459015, 59.970805636741474, 65.63300871198118, 65.24440993236955, 34.320500550471465, 6.931480576520367, 44.01294801429946, 20.413498622223095, 55.89314290615654, 23.123470479367, 20.86219133670635, 30.12125286750118, 12.840748860580407, 65.23285316124864, 82.23963910112622, 7.0414431296072175, 12.17997786906496, 56.86972485111884, 7.8836076519778, 141.66902781679335, 51.17017405427868, 7.925856279810559, 22.019486339249863, 66.2090458336859, 143.9040511999921, 55.478134081385406, 22.798022313944116, 14.970982927486856, 61.09884973601087, 30.446888902728507, 8.088597478122882, 9.185198557470692, 9.107594135353516, 86.36552852487594, 16.08685147158638, 53.556538080513924, 80.65337059234938, 5.775864120165684, 8.00030692812756, 56.2822116330271, 6.782190135643036, 16.357722749254712, 21.046418527172197, 16.502379958666474, 79.9205977721316, 13.612257970056563, 19.717965710059286, 117.09293832389383, 11.864550766429304, 49.32524071336828, 123.85503536274365, 8.009173984798027, 37.68650135984402, 5.562095447322263, 9.188242830090367, 23.28914809632305, 104.20733171984077, 39.40269520403359, 49.68522240707692, 48.32197053755942, 17.451827904664068, 18.34406901842663, 27.675559489531658, 44.83616292609484, 7.807731121353598, 16.104477353187928, 10.957540107942098, 57.021818347388184, 27.35401503604331, 27.769989619355933, 9.845945464827324, 9.21250182179519, 7.069066367648731, 14.571676768254072, 15.726600881864966, 22.14058021932497, 22.608197461523634, 22.15320518021977, 13.08332465623598, 34.51640246454311, 20.65936126663086, 46.17251907991372, 37.87481548722558, 21.511025869732432, 6.331302007010022, 38.69085871155152, 10.492510895979343, 8.882552385806555, 18.252906021137097, 49.207688224535566, 6.623995354723907, 67.22520748560433, 11.11264802782477, 59.048455855201645, 54.46248202655115, 7.128257502852686, 26.107582460905824, 90.75681866269919, 32.40354071780763, 88.34798772749451, 15.424053334000822, 10.42132706978771, 31.643140143547043, 54.69486092594084, 9.289098721215822, 8.467065051273158, 36.22247304704314, 88.71794754682888, 41.86808283566316, 48.04418908193553, 40.59251008481292, 30.101936979886226, 5.9209888333285035, 104.41496032132679, 51.90367127717236, 26.31151375109259, 21.950814592617785, 16.956381854130374, 57.04527167645534, 74.28875958908269, 8.64058052497035, 24.926443434089066, 50.49864027838234, 36.84098347069771, 7.611083219851065, 26.04626134063536, 13.373499126138318, 13.847068644227116, 82.79844589507415, 35.41085590169264, 10.827690513709673, 23.029005366658566, 6.003180426812224, 8.657534163989215, 21.01532603422054, 31.9057977260854, 151.35904230816703, 29.27878077054125, 50.049672081661754, 6.223746912975432, 8.706923598296667, 32.33694299414154, 8.443862820047103, 21.58051688355594, 78.0940096361423, 7.089139396483937, 9.749845449490268, 29.83303014116097, 39.584834933324686, 8.080848788646124, 8.659028782077836, 11.867420727748522, 109.90695998036824, 62.566574981594016, 26.669817560348754, 14.022968735909258, 9.824102731302544, 5.937314045108773, 108.13635911984264, 81.96368263666845, 73.61978772564241, 93.73822767655881, 7.705903579591377, 17.477476521494665, 37.136743990591306, 6.443739741763477, 6.593213826927847, 103.08187756575603, 66.48909878374997, 15.422036252647404, 5.487533366773166, 41.77245461874988, 69.12031696172552, 13.470725331584484, 28.71918659228581, 32.9259212052923, 10.46344523632335, 41.467700680812605, 37.55295484810254, 30.14162773232895, 49.37341286380302, 8.29955072871095, 11.661183521677872, 51.12125389551056, 44.66641647191929, 30.51641949807456, 34.40073184519105, 88.96031871079104, 46.95425545728457, 7.9229074839083795, 9.71172693892741, 11.652428956527329, 47.83903053826138, 52.31950193498146, 10.287716603076634, 51.19170896713927, 18.503728009894623, 11.677737749606909, 16.580200363173038, 15.360502047834638, 22.9932000481483, 36.41221848781984, 17.69990089695054, 22.292461661187527, 89.57259318405332, 59.25253108558108, 13.938773921569613, 9.436108256664124, 54.187774762259465, 50.86120046367102, 100.84167186901736, 64.56147679942273, 30.193315407103555, 55.36016006779483, 5.359437084549657, 66.9328257867081, 13.435754801448292, 82.603157389507, 10.514799983389118, 9.33264876075732, 8.528943545950735, 10.868499225412732, 78.96329461857857, 28.03469701277198, 5.678408603475161, 5.4232886985120174, 5.92423105275373, 6.327954137417427, 6.231482584108466, 36.03567937771132, 78.18287310010044, 14.561175217383667, 35.11294113936556, 34.32233164925676, 27.075420706313626, 21.382828118046504, 99.6383247014619, 16.508438481497613, 83.64914996028077, 22.06095089963851, 118.53234272146835, 82.93359594892236, 59.21631052071238, 12.46157084398558, 10.504191243039287, 69.02917683659973, 37.43733248015928, 11.980903099627085, 35.05234630309924, 61.10407451056474, 20.191431746198717, 18.138741943588997, 6.081640107826623, 8.824387598890233, 57.298585687938164, 5.483345814683841, 44.1551321850437, 25.15383332214298, 16.983686981211598, 20.186242172151164, 42.78166135981208, 10.71108878318334, 11.159729193623658, 24.627849586502645, 75.83401130360988, 44.624362030569486, 46.049446573362765, 34.09829359016691, 34.71942388095084, 15.947584721428443, 23.94233660281499, 8.19345200759262, 33.122743175573945, 38.021642378528156, 73.10638831664264, 46.80097151412188, 6.5024595115306925, 82.35770896428934, 16.746799291655073, 18.350702334198562, 32.14370659856327, 22.257356923717907, 15.464015760701685, 40.104218469172665, 28.81714423296114, 9.200239260215636, 64.20701903086831, 50.61641934237164, 5.72024857920398, 67.1958751630763, 44.986533374270635, 6.710412531124016, 116.1492110332544, 14.618392647233359, 25.151720784979958, 13.495378856126885, 73.7274104193106, 19.263744569141085, 54.073798849028705, 32.4291787815424, 103.10291029430837, 21.245461133011297, 17.447335266574072, 61.20569786631333, 21.796725217002702, 36.81977826792367, 35.49615579695254, 28.084278361465493, 54.57507455068397, 17.67084609513205, 8.834376873067692, 58.36519316494861, 5.541803118297219, 82.14265242464475, 62.883163587178586, 113.67684751835442, 27.641729651736924, 53.8931619313298, 5.281146206480227, 9.189622845847953, 122.6987267013974, 20.42170018920545, 31.342400602363757, 10.310037473558864, 19.67107473124922, 86.31143466530276, 9.60649915885321, 62.21692117125973, 9.199518858544575, 6.048667061318436, 69.05489858289732, 12.155916787059404, 28.071771799971017, 63.504345631015, 70.39565903664796, 7.34520325175444, 20.288802571036026, 44.79031724106484, 54.100771984503425, 48.07067256620672, 26.838347746100016, 94.2685845382109, 7.780931150573272, 26.607854165380424, 128.31278231307238, 6.597068973115887, 7.30903493345469, 38.277181915729365, 7.672135167314721, 19.698132666484703, 110.3128945696059, 9.412338696303529, 13.464554371101203, 44.92584676945219, 109.30115621072629, 18.05552370431805, 46.4882971457846, 35.208984286617984, 7.441769599571673, 6.833029720071112, 10.060943341635026, 40.665751934453496, 13.787045880798145, 82.22542675691592, 28.788498319794996, 73.01119496212323, 67.86091213894281, 8.827021855859844, 8.628436190263654, 22.596528885738447, 17.76751347380542, 10.549730619650594, 12.017602870020978, 26.310451227649054, 39.96100681169143, 10.124225031740332, 24.07502296459215, 22.56843346223605, 78.92897366349278, 9.73981751411197, 13.755183060500162, 21.80198783397345, 55.84359507726896, 49.68829811527626, 96.73882832696661, 56.78982515260992, 43.22412879732963, 51.59641411923992, 50.15407260814337, 19.253513795236415, 61.72881521577375, 24.94132303421285, 22.84805895474487, 44.00828560831378, 31.489885581339703, 17.152362132346365, 22.823517187658542, 5.255500112546264, 26.43629082255792, 65.44978800645869, 25.155809946809928, 30.855636992785037, 76.40484028175854, 7.054608688273994, 6.506337763783047, 83.32196855096262, 25.188006499675062, 34.69590686315204, 12.492050550424262, 15.221643786261549, 50.519248762862674, 5.545172001541157, 11.01665146898404, 20.479199412946247, 24.67951569397394, 38.580671409364726, 22.990145825960496, 61.816142160451086, 62.72186985381164, 20.455546648371197, 28.564778321116044, 32.48927594628215, 22.61862645826799, 9.247721030237942, 9.212944523312261, 9.790530517097448, 43.079044931343574, 23.305387894639793, 6.879588070015383, 10.041158930840595, 79.46499130064785, 13.231458920390265, 26.090504854454586, 35.65655568845915, 9.106215439867809, 14.736606375285637, 31.729380658155254, 12.114637928750371, 7.659800777354473, 29.451150207416994, 16.605297582800333, 13.252537112899018, 67.84707893079536, 12.514164235677047, 24.21521471250009, 128.5293152492573, 8.076067939666808, 16.04278984191186, 32.30333328047533, 30.124869718363893, 9.15014625110206, 123.50770369433316, 6.769944736702121, 59.70729922170739, 88.74996745070594, 5.3953085461597325, 52.86989493413931, 8.557090515067447, 93.71697903673987, 17.51758653881801, 24.369069037314937, 132.67594242777412, 5.064117087218696, 5.708931234151781, 13.803092797451942, 24.978600447045412, 75.13073093870568, 23.668251775922414, 84.72118511610125, 51.20401600001787, 63.03131561618667, 5.700488130279843, 5.409257647445404, 56.199316167122035, 5.249131813120005, 190.71286304278786, 67.30092641751428, 6.117317515566747, 12.018806359125907, 32.461879022545176, 36.28014189926212, 9.029612050778208, 10.91620432639439, 65.23647394896079, 36.17567681717903, 15.237223915359015, 19.777598936987694, 12.857047478184802, 39.74465226269693, 23.51837885204778, 98.35941724547067, 42.22054505764792, 25.55253250713607, 25.243322297854434, 8.728077097693442, 68.43584672473332, 23.780495556933335, 54.55618000795488, 47.07939270987397, 7.825888026664941, 56.79881530953067, 47.43154991295376, 19.50905149652321, 9.618723803113099, 50.043825044988, 48.43886271812608, 87.67646471463762, 96.77565335683481, 48.61065225283545, 28.68197136913294, 67.44057411818034, 8.25588489595651, 69.53749377546377, 9.387820777447764, 5.994270326553002, 32.51578112401877, 12.304767842234343, 7.463798139395832, 54.376061838071735, 11.666216475078468, 91.32741553262548, 57.005807408451396, 7.131194277857519, 13.385326127888607, 117.38789279539981, 64.04733447593529, 8.277638011897926, 91.94289466756895, 71.2862518716186, 42.91572902142759, 16.78496230026896, 6.413128884632025, 33.03407841948827, 33.05155744180036, 53.70048794622663, 8.357954152690821, 25.156352289450087, 130.53235913460844, 6.099149024981118, 8.809885063332748, 18.78963423873717, 11.354412390494836, 56.75776977732568, 10.16511210444927, 9.287082980470297, 85.12405483160823, 6.731705916251663, 18.027483884279878, 17.61103483511217, 62.04558804823206, 16.454729226787858, 14.658515413201396, 5.747741959821308, 45.9250048910545, 7.1020598049281904, 51.096970048476535, 6.206831795366331, 33.84011478261756, 97.81054214815245, 9.26936964330885, 15.55317750345203, 67.76466982978586, 22.2507735292586, 42.39129160603624, 26.570267975395936, 99.02968655677392, 15.407847746770337, 72.14917991949969, 78.34736190977426, 5.4294830914048395, 7.380017999933264, 15.438707235472567, 84.47210208090792, 34.434094316534015, 29.54688048640589, 5.66751620174151, 14.59753294108659, 16.65717495151621, 39.10767827139422, 15.55650237669343, 62.28119372853784, 32.98721312379931, 22.460652979216505, 9.10479785637957, 25.276295981412495, 23.323050159507282, 158.78754679637984, 32.91949984467827, 15.109610407265762, 20.507314948121454, 23.71979994573331, 44.46564693897494, 14.549828433944816, 16.064643512084977, 52.430723586819084, 5.519632269432302, 90.84994811054236, 8.701693992073116, 10.356900529285705, 53.71873727190971, 193.55199670470418, 19.05012863718485, 10.36884865832688, 10.812538166562334, 37.60113340664263, 27.428057959810623, 18.13553953308597, 48.66768965991224, 41.07686982898396, 10.693451544177991, 29.531020939421815, 35.68492271806333, 20.872618155225894, 43.724278230585774, 82.15259423951103, 16.20236281235491, 35.312824724853456, 50.539293868371765, 19.87084667739137, 13.288135428391193, 79.43391874654495, 6.418746691128635, 105.8144696829021, 25.221890495074305, 14.395721425740597, 71.48911939253993, 47.50869758558903, 81.68120171912747, 36.06109114497507, 103.58003083208294, 11.613474802694494, 18.94244831384803, 10.514097487538418, 56.269926418537665, 15.873291075108668, 173.86521053545434, 36.64957468182831, 37.61177150833485, 43.45239996937822, 5.431891234401576, 23.23990430592143, 22.38776456438309, 55.78067119336012, 35.0241557965411, 17.934772907916564, 5.945415312758965, 17.451340530455987, 7.425453639667998, 6.872615710167982, 52.52611150820121, 29.126035275982815, 66.59247092072451, 15.289830316407825, 116.50188516828368, 10.783482009187493, 52.50337398775459, 17.207862821556027, 20.513367233623992, 12.504009784365072, 46.00027332572733, 20.707499490714813, 30.48245619421872, 40.10416575957573, 21.962619102467862, 73.93044558475344, 105.53304071822438, 12.35606624001317, 82.90953477650585, 10.813475400385286, 7.180268633464626, 47.33389721628991, 33.988961321935825, 7.3771661708940215, 37.882010148896256, 76.09642584698739, 17.21885348436515, 10.387821927881909, 22.518954879409787, 39.98044291834208, 15.683058719544952, 37.0677759602552, 10.926479508641597, 7.1771965173261725, 6.273256818226434, 56.82046318548234, 26.141945324714907, 23.15106655389619, 41.61956019605622, 13.977114301507633, 26.88275200716621, 43.29987583822784, 22.787950804625858, 5.933921717774801, 26.807902462925295, 59.470222977456075, 13.902480979526649, 12.033033917627106, 9.620854716796275, 5.2148472584000665, 95.74846939584003, 46.80066026427658, 25.28355851161085, 36.71686677045043, 5.430905666890636, 10.049901685168733, 20.980475010211332, 16.376697452266797, 76.1053179346402, 7.199318481929069, 8.494278271077066, 8.037251049062068, 163.588623966691, 15.222182616647448, 16.44931055864904, 21.480089904501494, 22.94401931091682, 17.766073426725782, 9.79518658494397, 5.521653310016646, 14.18412773994958, 16.331082763529082, 166.76640269223336, 35.22165392772887, 12.180265967626623, 30.432679668302868, 14.546736099573359, 52.87691586722838, 164.65620094895064, 15.983790690688455, 70.93790079236712, 11.292168902004349, 44.35606026524299, 21.845639374057995, 8.027527115303577, 88.55338823884449, 15.187032285590812, 7.369144719925968, 56.35246522960695, 54.944027588817036, 9.91868240541133, 54.912688094957794, 121.12262257667608, 29.80411805164174, 136.9147557456351, 21.17959252282939, 23.102967452262586, 16.44842046339486, 61.91798859188618, 13.326420256228761, 38.46578683085891, 22.439609415057078, 29.075057790172387, 25.357240488692092, 13.019746990229553, 18.855878037016815, 12.843027371840252, 56.39117678562519, 79.46715714222509, 72.63869083568751, 69.3732973347221, 22.898285012757686, 34.60509385628243, 30.587556877439617, 8.636229807689798, 23.335719402680436, 61.11429442258709, 65.53134729790077, 6.891277037897943, 42.156972552943536, 33.85238346969555, 36.013631370338956, 25.623602036363575, 39.60388453488753, 32.636972522323795, 100.83905743799114, 17.36323820053756, 38.51163943060884, 8.054946652507354, 29.392376270002245, 20.905633351381425, 77.02818714449438, 6.652184680397095, 5.039209735225299, 32.98349631456505, 29.463812142133364, 6.582651281683871, 44.59968386705162, 63.92183261871818, 23.01858480254846, 101.83391843036819, 10.463028661904543, 21.394407234518805, 6.7657182014464015, 58.12518773964649, 5.756381482839999, 10.294728226707857, 7.835335122128405, 104.03515799903005, 6.883996093220941, 9.141799867078532, 23.990213294075225, 90.22805280302207, 81.30963089642248, 23.32597856527682, 8.281433622792775, 20.4803581357346, 24.355566080182385, 5.79981486723874, 38.22662005954619, 32.90235587800436, 34.05506142516438, 20.375435348730804, 48.29930270447364, 44.99253220770771, 73.51253097091029, 12.738019188247936, 102.46584448892554, 30.970239922749855, 68.36031288311477, 6.417187880447003, 19.775195892585494, 117.48896119106816, 8.071853403038821, 80.24280142465994, 63.18599551056728, 11.347345255419839, 23.17135508772933, 21.090354072755705, 29.95498602580566, 5.989926784145819, 34.842243825707556, 6.690574146438127, 23.997767012026742, 155.41652258910406, 19.47077748284878, 8.005104448233794, 16.563400599533402, 12.648091692047402, 6.308800284128149, 65.89967297765726, 11.840490545564506, 44.86748635384958, 30.45752545419866, 42.13495381194776, 35.953163238594584, 55.12428526027853, 22.49664406953135, 6.456815272740824, 69.87851990838789, 51.249420140188455, 5.366471083210743, 23.442640210022848, 58.057243594188066, 25.87498667593022, 39.298087861955494, 96.47912775085068, 21.37505144232898, 15.252929482437704, 83.54191815473393, 22.287189366003815, 15.162552269100502, 7.406259931193814, 42.87169226241891, 10.971873805054658, 83.87731159040348, 28.822201169093116, 16.81900850740906, 90.64391259882525, 14.469660373549596, 116.1259537375912, 8.15422755014384, 86.0985447140967, 29.78697465057862, 6.864947495522155, 16.253963318032927, 30.755147588514347, 33.66110618840557, 8.079646137918122, 20.945193010813792, 28.660962815997223, 36.82380235615124, 29.745299084990116, 39.93664728105716, 5.629712554610593, 112.81132352347244, 15.709824553791785, 62.09043288735392, 63.6118540014099, 63.908454209738544, 105.63549032719017, 21.744293628494965, 12.014573830800726, 16.451570065795384, 83.19679716121684, 57.07211413571721, 33.28059354108112, 8.63762965168502, 57.07381602091667, 25.352152624751763, 5.751291630722164, 11.278674621953897, 115.63497977550311, 11.77378501241908, 39.99441035481224, 21.346367545223462, 36.253208517400026, 81.98257244641962, 28.72013137506654, 5.75992952210358, 70.78993475831523, 25.2550613549675, 116.83989225210587, 36.45368742792317, 16.855852080467276, 22.805722544936557, 102.96322845911155, 19.758157552664127, 86.36758228364361, 18.24846236317738, 43.46567520743291, 19.542120646296055, 198.11029668338514, 44.12221257936779, 71.60302096276635, 59.7596287725475, 52.1283712159395, 29.21307793753705, 91.22771602977782, 14.94566930978084, 62.00119928046551, 26.421048019113655, 31.903175414085297, 31.528484712766865, 22.341411237074873, 46.946197318389544, 15.81576382007614, 68.11535525204567, 62.32100401954756, 58.33262107052364, 18.665231631474857, 17.514121285165047, 29.227973760102532, ...])
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);
([3512995.0131344195, 3656718.5805783123, 3667446.3695690096, 3668142.1875, 3686634.375, 3704566.3672474553, 3846980.3448697426, 3873999.6724747573, 3924784.257154679, 3950595.3125, 3957438.3608512795, 3963974.782468049, 3964306.25, 3981566.8025313793, 3983578.125, 3996948.979239097, 3998224.6105905245, 3999592.1875, 3999856.0601707785, 4000443.873652699, 4000499.4801250347, 4000617.162380627, 4002923.4375, 4004536.708725189, 4013896.7997138123, 4020128.125, 4038277.8842659416, 4038732.8125, 4059076.7137041027, 4069597.528660488, 4079942.33461568, 4081537.08779654, 4089375.824945255, 4089810.428475853, 4096057.8125, 4097229.8968238286, 4099660.6913928017, 4100048.8954510717, 4101096.875, 4101118.75, 4101175.1014317325, 4101377.7092816336, 4101798.8425251753, 4101837.5, 4102395.3125, 4103009.2562076603, 4103266.6068571797, 4104290.294035085, 4104323.1718141935, 4104868.5758646126, 4106467.76102246, 4107704.6875, 4120553.8496117615, 4122732.790599897, 4124810.9375, 4189868.75, 4201510.9375, 4211566.461995167, 4252581.25, 4257309.375, 4262548.4375, 4277334.375, 4286595.297493078, 4290861.724415107, 4291190.332673885, 4299106.346011198, 4332998.4375, 4342488.013190569, 4387077.559339829, 4410410.9375, 4410522.750192774, 4422782.8125, 4425751.5625, 4428343.436631805, 4438953.707894685, 4443944.494847969, 4451635.088911919, 4461602.8612082135, 4462582.8125, 4463950.811821428, 4464990.996910674, 4474414.0625, 4474528.125, 4475207.8125, 4475273.059066074, 4482095.3202112885, 4482189.639970258, 4482654.539794527, 4482835.543363542, 4482945.134376975, 4486170.035395472, 4490645.099495505, 4493861.208704166, 4495992.705135046, 4505150.275438451, 4508857.283716911, 4519474.4163624, 4542053.722066112, 4544079.7803703435, 4550960.535483676, 4557916.641525304, 4561451.91947312, 4563270.7318247, 4565116.7887795055, 4565144.586811404, 4568714.565420198, 4576212.925269126, 4601795.3125, 4606063.082093834, 4606707.2483056355, 4608537.5, 4638781.833684866, 4639790.450695287, 4645740.287983411, 4654940.668757632, 4658590.625, 4672915.625, 4677074.916359156, 4691656.782552147, 4692311.6133583635, 4692324.523178059, 4694612.5, 4697786.469587471, 4699723.712465325, 4701512.388334694, 4701962.026613434, 4707519.605519726, 4708711.738570865, 4713633.364194477, 4717067.043452025, 4721046.671897345, 4723479.58696408, 4728741.530354901, 4783562.0625463575, 4786479.2924612835, 4787435.82021474, 4789590.033916333, 4790153.125, 4792174.140812123, 4799376.933963437, 4800704.6875, 4807847.939295084, 4807856.741074928, 4807864.951965346, 4808597.989190821, 4813388.479255031, 4814656.320452944, 4815104.216813695, 4816091.446076913, 4816518.75, 4817734.365344454, 4818812.281827229, 4818869.400451726, 4818893.775827465, 4819464.588667648, 4819913.302013232, 4823737.488917015, 4825173.4375, 4825775.121091277, 4826366.683118427, 4828924.722592677, 4835823.4375, 4836278.074541152, 4837022.201391781, 4837796.462744642, 4838003.125, 4839333.546585028, 4840364.0625, 4840407.759312873, 4840415.130048362, 4841515.41106515, 4841626.5625, 4844303.363031993, 4845931.73953876, 4845946.21897129, 4847012.944226619, 4852931.25, 4854951.5625, 4856824.051867616, 4857351.349285823, 4860268.75, 4862446.846919341, 4864804.709139784, 4865432.531975075, 4873151.079735479, 4874846.629654224, 4875014.0625, 4875723.4375, 4879699.799187734, 4889322.044578184, 4889994.45430078, 4894997.51626457, 4895786.95073344, 4897498.025728951, 4915306.25, 4927984.858372356, 4933555.365273166, 4940594.960665054, 4942072.593431504, 4945429.6875, 4945456.53603985, 4948158.8837186815, 4948519.031043178, 4949313.938135871, 4954448.894120173, 4959048.4375, 4959239.0625, 4965577.714589987, 4971756.893625662, 4972748.864262828, 4974537.5, 4979537.331845911, 4980817.830256234, 4982676.2986579705, 4982686.467877289, 4996071.850952365, 4997564.505620843, 4998959.375, 5005038.295000506, 5005920.538679155, 5008669.025207271, 5010059.911943331, 5011001.5625, 5014618.467761892, 5015349.082646873, 5017106.506666453, 5017541.348455058, 5023371.9956070455, 5025317.774392379, 5025737.5, 5035431.25, 5035440.176989761, 5035485.655444007, 5036152.002341203, 5037721.403952821, 5038525.081765786, 5038588.691947761, 5039153.125, 5042366.809166118, 5042648.461952584, 5045476.8789443, 5052632.0290120635, 5062043.047162012, 5062553.125, 5071006.25, 5073671.290122796, 5073941.169101979, 5074660.180062593, 5075751.980466882, 5075765.9366237745, 5077821.231243688, 5079889.039070681, 5080455.636750093, 5081998.4375, 5083589.762097818, 5088259.70052813, 5091697.247388746, 5100720.418249619, 5101844.950786785, 5101882.238206512, 5105008.839233742, 5108784.515029289, 5111523.4375, 5114369.456878331, 5116371.58444837, 5116703.246287386, 5123260.409309292, 5128926.385628618, 5136306.723513724, 5137154.6875, 5138688.563327308, 5138741.29838653, 5139302.064903421, 5140785.9375, 5143844.852074792, 5148532.627774678, 5149390.193982589, 5149425.001472729, 5152070.744323289, 5152117.015086457, 5155882.8125, 5156381.224749386, 5161266.73264372, 5161291.259285555, 5164170.136587853, 5164511.403710496, 5167210.649482784, 5167475.412175265, 5168784.418913752, 5169051.459003132, 5171017.263061343, 5174129.6875, 5175515.547221916, 5176132.301601075, 5177337.195955363, 5178326.920680342, 5178589.0625, 5179544.409433352, 5180766.5740802605, 5181467.851492487, 5182871.875, 5183463.158613971, 5183802.685767964, 5183825.220196858, 5184204.599353197, 5189295.797426984, 5189507.590047755, 5191967.831576309, 5199878.381939996, 5200564.707021268, 5201332.750158052, 5201347.77013623, 5201660.9375, 5202762.9933067905, 5202846.8574813865, 5204174.8024395695, 5206714.511774617, 5207161.858191887, 5208137.4815005185, 5208274.716041098, 5232740.645390784, 5235791.953197499, 5236714.0625, 5237663.422881548, 5238843.75, 5247242.1875, 5248813.851676919, 5256844.259618356, 5260168.42739262, 5260893.569646885, 5263671.875, 5264910.9375, 5265441.861922103, 5267574.377918077, 5267667.284842211, 5269084.632381436, 5272117.592240752, 5272177.435383848, 5272559.375, 5273740.348559446, 5275782.943148703, 5276335.9375, 5276340.871840667, 5278295.153195415, 5278423.4375, 5278521.875, 5278856.459907301, 5281042.1875, 5281407.8125, 5282134.103106343, 5282283.089557044, 5282923.350062484, 5283396.677295715, 5283485.49818509, 5283565.625, 5284136.743141249, 5284221.875, 5284789.871635302, 5284823.4375, 5285186.974811787, 5285287.640881007, 5286177.909332476, 5287495.051609718, 5287496.901776045, 5287603.635289538, 5287715.151980099, 5287750.0, 5287864.6320055, 5288102.4722376, 5289345.3125, 5289736.115923564, 5289826.5625, 5290062.5, 5290323.106935076, 5290339.289887626, 5290748.120527395, 5290937.174785314, 5291201.38992461, 5291343.49262373, 5291485.322943405, 5291545.3125, 5291593.1552763935, 5291816.4115425255, 5292479.303222023, 5293508.120860488, 5293618.75, 5293657.652296726, 5293719.924580275, 5294117.1875, 5294152.819969811, 5294268.555761517, 5294579.6875, 5294968.75, 5295286.7253898475, 5295538.571160213, 5295866.752481146, 5296264.0625, 5297321.875, 5297461.9091474125, 5297825.0, 5298239.528451833, 5298701.222499002, 5298780.967536417, 5298836.604943176, 5298924.106068114, 5299204.657970422, 5299529.874056934, 5299714.924037982, 5300522.213449751, 5300759.469192429, 5300821.424805906, 5301001.352496052, 5301179.725922391, 5302111.318177191, 5302525.499655727, 5302542.1875, 5303212.030351655, 5303570.651041433, 5304132.00283838, 5304168.598418195, 5307213.722613233, 5308303.125, 5308493.475694267, 5308610.608092642, 5309595.3125, 5310088.398993043, 5311408.407470006, 5313904.7716464605, 5314088.0854321355, 5319246.470832054, 5320130.19086928, 5320700.71104257, 5321706.6685264, 5322741.434195816, 5327296.27998774, 5330386.017695729, 5331295.3125, 5333911.384004414, 5341734.024550933, 5341994.0889491225, 5343779.6875, 5349338.208930911, 5350718.613254753, 5350862.676461833, 5362257.8125, 5363137.5, 5363481.25, 5364080.491785522, 5365658.553216285, 5367351.3503207145, 5367768.37588628, 5372825.0, 5376060.9375, 5376906.729981347, 5377952.748770245, 5378048.803306118, 5384426.923636195, 5387659.114911684, 5389874.868360777, 5390298.219605309, 5391225.0, 5395262.239465175, 5395690.746689062, 5398504.6875, 5398537.626688452, 5399310.9943788685, 5399317.914345184, 5401767.958791812, 5403429.6875, 5403812.746646009, 5404421.507376802, 5406238.136189968, 5407224.769390732, 5407870.3125, 5410493.388027827, 5412451.554007681, 5418775.0, 5419044.70179529, 5434802.140048157, 5435372.649327321, 5437060.126513867, 5438292.086846793, 5440509.231501383, 5449947.372279948, 5450509.375, 5452138.726816306, 5456773.992408166, 5456831.984962216, 5458355.46055153, 5459354.152596335, 5460310.800970574, 5462673.610133142, 5465791.90860788, 5471320.257682142, 5471337.07804619, 5471500.551292764, 5477400.153726957, 5478655.444695014, 5480277.762024044, 5483076.035438541, 5491238.636918122, 5498882.8356009945, 5501866.923012308, 5505609.375, 5517346.454515757, 5524687.761752378, 5532647.119091626, 5538957.8125, 5545879.465064288, 5549665.625, 5550923.469663212, 5552981.25, 5553938.350896359, 5554018.666949318, 5555496.711047969, 5556969.2287585065, 5557710.219551242, 5569384.081299037, 5573107.559412494, 5573179.355735818, 5573241.922956505, 5576487.534093258, 5576996.540405752, 5577748.227906845, 5578919.867936978, 5579438.732053413, 5579441.227929766, 5579957.8125, 5580795.3125, 5580845.213530296, 5581390.904243859, 5582421.875, 5582472.016814938, 5588582.906197336, 5592880.241945075, 5594451.838859351, 5594461.441471071, 5594860.130482329, 5596418.75, 5599649.620134946, 5603248.297837779, 5604375.300276538, 5604451.352437901, 5608273.512979486, 5608307.121423351, 5609289.944329708, 5617637.475347629, 5618790.287991132, 5622992.1875, 5623308.486566932, 5626070.141576461, 5629266.996006707, 5629530.438451225, 5633436.896175335, 5636951.26482576, 5640893.118258938, 5650989.440427129, 5653399.013816917, 5654871.173159051, 5655104.328436572, 5659030.792420498, 5660337.821317998, 5663756.913339036, 5665036.829759655, 5670107.471859722, 5672129.6875, 5673281.25, 5674192.1875, 5676414.483891964, 5689929.629005682, 5694399.703614113, 5703479.75347726, 5704374.04665805, 5706170.563260112, 5706942.829309745, 5707558.972280923, 5707906.25, 5710665.944210382, 5712363.876951855, 5721728.125, 5721732.849433365, 5722821.080974456, 5722924.440850019, 5726518.556822968, 5729760.9205572875, 5731210.633608827, 5732156.600487024, 5734225.0, 5738890.960077959, 5742007.323873512, 5751107.662550606, 5754653.03084924, 5755990.625, 5763247.007579013, 5765013.171450687, 5765896.852870291, 5778142.293091085, 5781013.373821746, 5792075.740798255, 5793015.765353951, 5809254.6875, 5818724.282458281, 5831560.884615343, 5842181.037484529, 5842592.026097074, 5842764.589432718, 5844403.68453501, 5855074.7335478, 5856634.722436144, 5865398.3612176385, 5865450.625269818, 5865896.875, 5866895.238212894, 5876625.0, 5881438.569279648, 5894389.0625, 5894394.670637489, 5896029.613213276, 5898923.607829544, 5900549.890421092, 5909004.26024079, 5912592.852522026, 5916579.580239194, 5941746.404052326, 5943354.804695882, 5945275.0, 5945789.0625, 5945846.100628285, 5957075.90006741, 5957544.11784377, 5962689.219145653, 5965948.4375, 5966662.026208509, 5968121.240226885, 5971899.906728485, 5978566.012445248, 5980464.0625, 5980765.777506723, 5981393.554223461, 5981398.412185514, 5983968.341814696, 5993974.719268789, 6006249.028131644, 6008727.017713215, 6019218.707004658, 6024520.3125, 6025397.553893523, 6038655.645155573, 6045896.397774104, 6051330.458230879, 6051332.705797024, 6066264.328949149, 6069821.875, 6071477.844756163, 6085678.125, 6088180.397843331, 6090693.1937257135, 6103406.303961297, 6107898.409247197, 6109100.776942723, 6111510.39093312, 6114138.851052121, 6124073.4375, 6126893.692038691, 6135705.192991721, 6153683.626685754, 6154545.3125, 6155612.203198717, 6156876.273631528, 6159234.375, 6185048.126367233, 6191943.240283707, 6199620.51032423, 6204070.608149616, 6204459.375, 6205404.143014961, 6212411.820394127, 6212727.611099149, 6215506.944735057, 6216816.7372052055, 6219804.418651086, 6220528.170838609, 6222820.161536876, 6224645.3125, 6224914.731665267, 6225173.353106446, 6240139.0625, 6241281.010365126, 6242592.721639591, 6242928.887158037, 6245144.8809395, 6247980.3811469395, 6248291.151075209, 6249251.5422458835, 6249828.125, 6255295.3125, 6288058.431677372, 6288994.597466808, 6294023.0964276865, 6295340.210240846, 6297175.0, 6297245.925582624, 6297330.299954466, 6300846.943752024, 6300955.21996854, 6301118.230163562, 6302091.148011837, 6305878.521028986, 6306854.6875, 6306873.993103784, 6308007.900979983, 6308783.5003187135, 6311199.76801741, 6314068.75, 6314089.552409085, 6314921.270838256, 6330464.794642795, 6333862.5, 6338132.619739266, 6345389.0625, 6348182.8125, 6349976.962115259, 6352156.164493899, 6354635.439834309, 6355258.477996653, 6358246.6881209705, 6361684.16421142, 6378997.094122084, 6382203.125, 6388607.8125, 6400360.265975042, 6402578.125, 6402783.259818818, 6404498.929364903, 6409599.468769422, 6410835.53453504, 6411203.125, 6416456.4318392845, 6422375.0, 6427138.929830008, 6427515.832901531, 6435315.672802498, 6435868.6536399, 6437527.991670415, 6446432.464057301, 6446697.501558761, 6447734.096669158, 6448390.668117093, 6452720.3125, 6457035.558193659, 6459104.624313835, 6459449.452666879, 6460593.451102135, 6464357.510289939, 6465959.886071138, 6468037.823570523, 6476650.442624983, 6478868.093543996, 6479959.048755343, 6480284.455753321, 6480588.816292592, 6480999.260713219, 6481106.9928769795, 6482551.009529029, 6482719.081655581, 6490654.956236355, 6490664.350661855, 6490686.310645526, 6492240.121757022, 6492265.178851943, 6492733.214342913, 6493773.500442042, 6497924.498694786, 6498109.168744028, 6499781.83519656, 6500919.251894471, 6505876.324777958, 6505934.71103923, 6518923.759835714, 6520123.286823602, 6530002.612489521, 6536127.1455328595, 6538582.8125, 6542379.579922029, 6544621.426448326, 6544985.940944175, 6550060.273601176, 6551539.516988202, 6562500.102729985, 6565120.3125, 6566362.060589797, 6568615.100752679, 6569021.875, 6570373.500458234, 6571552.427808891, 6575384.375, 6578540.625, 6580859.996478618, 6587230.819100266, 6597123.805296913, 6598693.75, 6601738.660280322, 6602593.217987363, 6606323.085037662, 6609817.757081259, 6612231.25, 6613321.375136633, 6613415.625, 6616518.511202489, 6625264.503485534, 6633446.857426842, 6634072.821716588, 6635327.312612774, 6638432.126122132, 6641722.466626436, 6641754.6875, 6642010.9375, 6642177.354477208, 6642748.922854691, 6643176.498028393, 6644205.992193965, 6646733.419931003, 6650751.229299686, 6651853.985597223, 6651934.106802128, 6653595.9204909, 6653790.625, 6653843.340468559, 6653987.229292931, 6654664.241359703, 6654716.293801604, 6655901.5625, 6656018.740524806, 6659584.892252097, 6661086.290406301, 6667735.472198851, 6677630.819990676, 6681072.923089189, 6681742.4874804355, 6682616.6030886695, 6682843.611027409, 6682857.8125, 6682872.41983316, 6682917.771166115, 6683096.792989231, 6683413.887338507, 6684447.240013698, 6684668.984408737, 6685465.153625367, 6686882.302549252, 6689975.011067896, 6690550.0, 6690607.002472122, 6693219.705084686, 6698116.224148086, 6699178.5623937305, 6699220.887483391, 6699463.829417602, 6701885.830280778, 6708462.5, 6710492.1875, 6711054.353503023, 6712682.802760501, 6721493.142108694, 6723528.524094142, 6726732.619200442, 6733131.6423462685, 6733284.375, 6733663.844679551, 6733741.271407635, 6734932.8125, 6736977.667389472, 6737635.9375, 6737666.45776774, 6737802.103938495, 6739257.512251622, 6741728.125, 6742612.0390898, 6743548.684434337, 6744699.710310029, 6744941.758113477, 6746293.75, 6748005.937318544, 6749843.886115739, 6752716.144928656, 6754199.127586058, 6754363.412544768, 6756692.74990562, 6762314.0625, 6762324.623367015, 6762326.281595748, 6762477.635983405, 6762489.895182298, 6763085.364393829, 6766670.68157745, 6767540.311732492, 6767590.947333078, 6770765.625, 6771586.3502017865, 6773404.6875, 6779388.782187646, 6790359.375, 6790765.625, 6791792.1875, 6795577.720041293, 6795693.554105074, 6796204.399584083, 6797773.3350309, 6797839.76185488, 6798776.231691492, 6799548.4375, 6800152.97489816, 6800854.471696451, 6807401.5625, 6810223.027541596, 6811740.704373886, 6815915.033329182, 6818957.388582253, 6826292.244309109, 6826302.545440556, 6827693.75, 6827828.022961524, 6829181.25, 6829964.482245222, 6831464.4809948625, 6831617.225795649, 6834768.620440439, 6834900.0, 6834998.178548607, 6837123.4375, 6838354.982874144, 6842066.11272908, 6843645.618916609, 6844762.5, 6848711.056135334, 6849298.024558177, 6851254.86527144, 6851793.213212888, 6852060.9375, 6861500.817848217, 6864143.246949483, 6864270.592288943, 6864807.525327328, 6865466.223064665, 6866412.688764262, 6866774.580122752, 6868891.264010742, 6874653.125, 6879288.708872292, 6896022.376853808, 6896844.0968012065, 6898428.125, 6936053.125, 6957753.433227796, 6964847.484664391, 6966596.237173869, 6967223.85788439, 6974333.4902206985, 6974489.156984186, 6977545.3125, 6977555.064934372, 6977954.278559866, 6980461.227655422, 6980859.070376797, 6982623.4375, 6983732.784839342, 6991872.679263737, 6992948.175915018, 6993029.496798735, 6994059.375, 6998898.480496166, 7000661.362951544, 7001008.997232443, 7002500.0, 7003813.678066381, 7006550.690231934, 7007275.661381919, 7014882.670730001, 7020838.775425886, 7023989.007875876, 7053460.9375, 7054318.671433341, 7062459.1232808195, 7066565.285129654, 7084061.947835477, 7089092.1875, 7089722.58382924, 7089937.257550349, 7095663.331281963, 7100520.726380567, 7108142.1875, 7120287.081032524, 7122915.9407550795, 7136287.346036219, 7136290.625, 7140167.629124603, 7146582.936322262, 7149952.285573312, 7152799.026529137, 7155726.880913111, ...], [29.15142516288803, 25.57546742087407, 12.510811322546779, 48.229969587229064, 45.279365389847776, 37.62935522282899, 12.338391639642278, 8.120651700960046, 26.394346258707387, 34.107270525007785, 5.185907137708601, 91.73023019434856, 34.84959974342463, 52.28779216391923, 38.497934304545666, 7.811677134394099, 61.83101297695689, 57.56791583225824, 55.97665992744924, 15.434735212915196, 23.930720300189172, 28.037195145853673, 31.57936421138142, 75.92267685860826, 60.773131958593126, 52.472788518980316, 59.45079476423949, 36.61574666646516, 15.550947612287757, 48.464554028099, 22.79739519609516, 7.460657542184028, 5.185029852708065, 23.236691314732695, 33.43767240870283, 32.633877353175556, 53.785570165911196, 11.9278488803222, 29.67788423722684, 54.38797625635911, 16.791270680614446, 29.003020007934758, 7.23215236459508, 49.38390341985347, 57.56119073142638, 34.50103582913334, 29.553035773416095, 43.71147810169634, 7.509889481811192, 100.58269291365606, 56.57883739396176, 48.7946041040031, 51.124438495635616, 11.093647209400965, 64.12071533695497, 44.09744841608637, 31.180252253472517, 12.748144184151535, 57.941513990459015, 59.970805636741474, 65.63300871198118, 65.24440993236955, 34.320500550471465, 6.931480576520367, 44.01294801429946, 20.413498622223095, 55.89314290615654, 23.123470479367, 20.86219133670635, 30.12125286750118, 12.840748860580407, 65.23285316124864, 82.23963910112622, 7.0414431296072175, 12.17997786906496, 56.86972485111884, 7.8836076519778, 141.66902781679335, 51.17017405427868, 7.925856279810559, 22.019486339249863, 66.2090458336859, 143.9040511999921, 55.478134081385406, 22.798022313944116, 14.970982927486856, 61.09884973601087, 30.446888902728507, 8.088597478122882, 9.185198557470692, 9.107594135353516, 86.36552852487594, 16.08685147158638, 53.556538080513924, 80.65337059234938, 5.775864120165684, 8.00030692812756, 56.2822116330271, 6.782190135643036, 16.357722749254712, 21.046418527172197, 16.502379958666474, 79.9205977721316, 13.612257970056563, 19.717965710059286, 117.09293832389383, 11.864550766429304, 49.32524071336828, 123.85503536274365, 8.009173984798027, 37.68650135984402, 5.562095447322263, 9.188242830090367, 23.28914809632305, 104.20733171984077, 39.40269520403359, 49.68522240707692, 48.32197053755942, 17.451827904664068, 18.34406901842663, 27.675559489531658, 44.83616292609484, 7.807731121353598, 16.104477353187928, 10.957540107942098, 57.021818347388184, 27.35401503604331, 27.769989619355933, 9.845945464827324, 9.21250182179519, 7.069066367648731, 14.571676768254072, 15.726600881864966, 22.14058021932497, 22.608197461523634, 22.15320518021977, 13.08332465623598, 34.51640246454311, 20.65936126663086, 46.17251907991372, 37.87481548722558, 21.511025869732432, 6.331302007010022, 38.69085871155152, 10.492510895979343, 8.882552385806555, 18.252906021137097, 49.207688224535566, 6.623995354723907, 67.22520748560433, 11.11264802782477, 59.048455855201645, 54.46248202655115, 7.128257502852686, 26.107582460905824, 90.75681866269919, 32.40354071780763, 88.34798772749451, 15.424053334000822, 10.42132706978771, 31.643140143547043, 54.69486092594084, 9.289098721215822, 8.467065051273158, 36.22247304704314, 88.71794754682888, 41.86808283566316, 48.04418908193553, 40.59251008481292, 30.101936979886226, 5.9209888333285035, 104.41496032132679, 51.90367127717236, 26.31151375109259, 21.950814592617785, 16.956381854130374, 57.04527167645534, 74.28875958908269, 8.64058052497035, 24.926443434089066, 50.49864027838234, 36.84098347069771, 7.611083219851065, 26.04626134063536, 13.373499126138318, 13.847068644227116, 82.79844589507415, 35.41085590169264, 10.827690513709673, 23.029005366658566, 6.003180426812224, 8.657534163989215, 21.01532603422054, 31.9057977260854, 151.35904230816703, 29.27878077054125, 50.049672081661754, 6.223746912975432, 8.706923598296667, 32.33694299414154, 8.443862820047103, 21.58051688355594, 78.0940096361423, 7.089139396483937, 9.749845449490268, 29.83303014116097, 39.584834933324686, 8.080848788646124, 8.659028782077836, 11.867420727748522, 109.90695998036824, 62.566574981594016, 26.669817560348754, 14.022968735909258, 9.824102731302544, 5.937314045108773, 108.13635911984264, 81.96368263666845, 73.61978772564241, 93.73822767655881, 7.705903579591377, 17.477476521494665, 37.136743990591306, 6.443739741763477, 6.593213826927847, 103.08187756575603, 66.48909878374997, 15.422036252647404, 5.487533366773166, 41.77245461874988, 69.12031696172552, 13.470725331584484, 28.71918659228581, 32.9259212052923, 10.46344523632335, 41.467700680812605, 37.55295484810254, 30.14162773232895, 49.37341286380302, 8.29955072871095, 11.661183521677872, 51.12125389551056, 44.66641647191929, 30.51641949807456, 34.40073184519105, 88.96031871079104, 46.95425545728457, 7.9229074839083795, 9.71172693892741, 11.652428956527329, 47.83903053826138, 52.31950193498146, 10.287716603076634, 51.19170896713927, 18.503728009894623, 11.677737749606909, 16.580200363173038, 15.360502047834638, 22.9932000481483, 36.41221848781984, 17.69990089695054, 22.292461661187527, 89.57259318405332, 59.25253108558108, 13.938773921569613, 9.436108256664124, 54.187774762259465, 50.86120046367102, 100.84167186901736, 64.56147679942273, 30.193315407103555, 55.36016006779483, 5.359437084549657, 66.9328257867081, 13.435754801448292, 82.603157389507, 10.514799983389118, 9.33264876075732, 8.528943545950735, 10.868499225412732, 78.96329461857857, 28.03469701277198, 5.678408603475161, 5.4232886985120174, 5.92423105275373, 6.327954137417427, 6.231482584108466, 36.03567937771132, 78.18287310010044, 14.561175217383667, 35.11294113936556, 34.32233164925676, 27.075420706313626, 21.382828118046504, 99.6383247014619, 16.508438481497613, 83.64914996028077, 22.06095089963851, 118.53234272146835, 82.93359594892236, 59.21631052071238, 12.46157084398558, 10.504191243039287, 69.02917683659973, 37.43733248015928, 11.980903099627085, 35.05234630309924, 61.10407451056474, 20.191431746198717, 18.138741943588997, 6.081640107826623, 8.824387598890233, 57.298585687938164, 5.483345814683841, 44.1551321850437, 25.15383332214298, 16.983686981211598, 20.186242172151164, 42.78166135981208, 10.71108878318334, 11.159729193623658, 24.627849586502645, 75.83401130360988, 44.624362030569486, 46.049446573362765, 34.09829359016691, 34.71942388095084, 15.947584721428443, 23.94233660281499, 8.19345200759262, 33.122743175573945, 38.021642378528156, 73.10638831664264, 46.80097151412188, 6.5024595115306925, 82.35770896428934, 16.746799291655073, 18.350702334198562, 32.14370659856327, 22.257356923717907, 15.464015760701685, 40.104218469172665, 28.81714423296114, 9.200239260215636, 64.20701903086831, 50.61641934237164, 5.72024857920398, 67.1958751630763, 44.986533374270635, 6.710412531124016, 116.1492110332544, 14.618392647233359, 25.151720784979958, 13.495378856126885, 73.7274104193106, 19.263744569141085, 54.073798849028705, 32.4291787815424, 103.10291029430837, 21.245461133011297, 17.447335266574072, 61.20569786631333, 21.796725217002702, 36.81977826792367, 35.49615579695254, 28.084278361465493, 54.57507455068397, 17.67084609513205, 8.834376873067692, 58.36519316494861, 5.541803118297219, 82.14265242464475, 62.883163587178586, 113.67684751835442, 27.641729651736924, 53.8931619313298, 5.281146206480227, 9.189622845847953, 122.6987267013974, 20.42170018920545, 31.342400602363757, 10.310037473558864, 19.67107473124922, 86.31143466530276, 9.60649915885321, 62.21692117125973, 9.199518858544575, 6.048667061318436, 69.05489858289732, 12.155916787059404, 28.071771799971017, 63.504345631015, 70.39565903664796, 7.34520325175444, 20.288802571036026, 44.79031724106484, 54.100771984503425, 48.07067256620672, 26.838347746100016, 94.2685845382109, 7.780931150573272, 26.607854165380424, 128.31278231307238, 6.597068973115887, 7.30903493345469, 38.277181915729365, 7.672135167314721, 19.698132666484703, 110.3128945696059, 9.412338696303529, 13.464554371101203, 44.92584676945219, 109.30115621072629, 18.05552370431805, 46.4882971457846, 35.208984286617984, 7.441769599571673, 6.833029720071112, 10.060943341635026, 40.665751934453496, 13.787045880798145, 82.22542675691592, 28.788498319794996, 73.01119496212323, 67.86091213894281, 8.827021855859844, 8.628436190263654, 22.596528885738447, 17.76751347380542, 10.549730619650594, 12.017602870020978, 26.310451227649054, 39.96100681169143, 10.124225031740332, 24.07502296459215, 22.56843346223605, 78.92897366349278, 9.73981751411197, 13.755183060500162, 21.80198783397345, 55.84359507726896, 49.68829811527626, 96.73882832696661, 56.78982515260992, 43.22412879732963, 51.59641411923992, 50.15407260814337, 19.253513795236415, 61.72881521577375, 24.94132303421285, 22.84805895474487, 44.00828560831378, 31.489885581339703, 17.152362132346365, 22.823517187658542, 5.255500112546264, 26.43629082255792, 65.44978800645869, 25.155809946809928, 30.855636992785037, 76.40484028175854, 7.054608688273994, 6.506337763783047, 83.32196855096262, 25.188006499675062, 34.69590686315204, 12.492050550424262, 15.221643786261549, 50.519248762862674, 5.545172001541157, 11.01665146898404, 20.479199412946247, 24.67951569397394, 38.580671409364726, 22.990145825960496, 61.816142160451086, 62.72186985381164, 20.455546648371197, 28.564778321116044, 32.48927594628215, 22.61862645826799, 9.247721030237942, 9.212944523312261, 9.790530517097448, 43.079044931343574, 23.305387894639793, 6.879588070015383, 10.041158930840595, 79.46499130064785, 13.231458920390265, 26.090504854454586, 35.65655568845915, 9.106215439867809, 14.736606375285637, 31.729380658155254, 12.114637928750371, 7.659800777354473, 29.451150207416994, 16.605297582800333, 13.252537112899018, 67.84707893079536, 12.514164235677047, 24.21521471250009, 128.5293152492573, 8.076067939666808, 16.04278984191186, 32.30333328047533, 30.124869718363893, 9.15014625110206, 123.50770369433316, 6.769944736702121, 59.70729922170739, 88.74996745070594, 5.3953085461597325, 52.86989493413931, 8.557090515067447, 93.71697903673987, 17.51758653881801, 24.369069037314937, 132.67594242777412, 5.064117087218696, 5.708931234151781, 13.803092797451942, 24.978600447045412, 75.13073093870568, 23.668251775922414, 84.72118511610125, 51.20401600001787, 63.03131561618667, 5.700488130279843, 5.409257647445404, 56.199316167122035, 5.249131813120005, 190.71286304278786, 67.30092641751428, 6.117317515566747, 12.018806359125907, 32.461879022545176, 36.28014189926212, 9.029612050778208, 10.91620432639439, 65.23647394896079, 36.17567681717903, 15.237223915359015, 19.777598936987694, 12.857047478184802, 39.74465226269693, 23.51837885204778, 98.35941724547067, 42.22054505764792, 25.55253250713607, 25.243322297854434, 8.728077097693442, 68.43584672473332, 23.780495556933335, 54.55618000795488, 47.07939270987397, 7.825888026664941, 56.79881530953067, 47.43154991295376, 19.50905149652321, 9.618723803113099, 50.043825044988, 48.43886271812608, 87.67646471463762, 96.77565335683481, 48.61065225283545, 28.68197136913294, 67.44057411818034, 8.25588489595651, 69.53749377546377, 9.387820777447764, 5.994270326553002, 32.51578112401877, 12.304767842234343, 7.463798139395832, 54.376061838071735, 11.666216475078468, 91.32741553262548, 57.005807408451396, 7.131194277857519, 13.385326127888607, 117.38789279539981, 64.04733447593529, 8.277638011897926, 91.94289466756895, 71.2862518716186, 42.91572902142759, 16.78496230026896, 6.413128884632025, 33.03407841948827, 33.05155744180036, 53.70048794622663, 8.357954152690821, 25.156352289450087, 130.53235913460844, 6.099149024981118, 8.809885063332748, 18.78963423873717, 11.354412390494836, 56.75776977732568, 10.16511210444927, 9.287082980470297, 85.12405483160823, 6.731705916251663, 18.027483884279878, 17.61103483511217, 62.04558804823206, 16.454729226787858, 14.658515413201396, 5.747741959821308, 45.9250048910545, 7.1020598049281904, 51.096970048476535, 6.206831795366331, 33.84011478261756, 97.81054214815245, 9.26936964330885, 15.55317750345203, 67.76466982978586, 22.2507735292586, 42.39129160603624, 26.570267975395936, 99.02968655677392, 15.407847746770337, 72.14917991949969, 78.34736190977426, 5.4294830914048395, 7.380017999933264, 15.438707235472567, 84.47210208090792, 34.434094316534015, 29.54688048640589, 5.66751620174151, 14.59753294108659, 16.65717495151621, 39.10767827139422, 15.55650237669343, 62.28119372853784, 32.98721312379931, 22.460652979216505, 9.10479785637957, 25.276295981412495, 23.323050159507282, 158.78754679637984, 32.91949984467827, 15.109610407265762, 20.507314948121454, 23.71979994573331, 44.46564693897494, 14.549828433944816, 16.064643512084977, 52.430723586819084, 5.519632269432302, 90.84994811054236, 8.701693992073116, 10.356900529285705, 53.71873727190971, 193.55199670470418, 19.05012863718485, 10.36884865832688, 10.812538166562334, 37.60113340664263, 27.428057959810623, 18.13553953308597, 48.66768965991224, 41.07686982898396, 10.693451544177991, 29.531020939421815, 35.68492271806333, 20.872618155225894, 43.724278230585774, 82.15259423951103, 16.20236281235491, 35.312824724853456, 50.539293868371765, 19.87084667739137, 13.288135428391193, 79.43391874654495, 6.418746691128635, 105.8144696829021, 25.221890495074305, 14.395721425740597, 71.48911939253993, 47.50869758558903, 81.68120171912747, 36.06109114497507, 103.58003083208294, 11.613474802694494, 18.94244831384803, 10.514097487538418, 56.269926418537665, 15.873291075108668, 173.86521053545434, 36.64957468182831, 37.61177150833485, 43.45239996937822, 5.431891234401576, 23.23990430592143, 22.38776456438309, 55.78067119336012, 35.0241557965411, 17.934772907916564, 5.945415312758965, 17.451340530455987, 7.425453639667998, 6.872615710167982, 52.52611150820121, 29.126035275982815, 66.59247092072451, 15.289830316407825, 116.50188516828368, 10.783482009187493, 52.50337398775459, 17.207862821556027, 20.513367233623992, 12.504009784365072, 46.00027332572733, 20.707499490714813, 30.48245619421872, 40.10416575957573, 21.962619102467862, 73.93044558475344, 105.53304071822438, 12.35606624001317, 82.90953477650585, 10.813475400385286, 7.180268633464626, 47.33389721628991, 33.988961321935825, 7.3771661708940215, 37.882010148896256, 76.09642584698739, 17.21885348436515, 10.387821927881909, 22.518954879409787, 39.98044291834208, 15.683058719544952, 37.0677759602552, 10.926479508641597, 7.1771965173261725, 6.273256818226434, 56.82046318548234, 26.141945324714907, 23.15106655389619, 41.61956019605622, 13.977114301507633, 26.88275200716621, 43.29987583822784, 22.787950804625858, 5.933921717774801, 26.807902462925295, 59.470222977456075, 13.902480979526649, 12.033033917627106, 9.620854716796275, 5.2148472584000665, 95.74846939584003, 46.80066026427658, 25.28355851161085, 36.71686677045043, 5.430905666890636, 10.049901685168733, 20.980475010211332, 16.376697452266797, 76.1053179346402, 7.199318481929069, 8.494278271077066, 8.037251049062068, 163.588623966691, 15.222182616647448, 16.44931055864904, 21.480089904501494, 22.94401931091682, 17.766073426725782, 9.79518658494397, 5.521653310016646, 14.18412773994958, 16.331082763529082, 166.76640269223336, 35.22165392772887, 12.180265967626623, 30.432679668302868, 14.546736099573359, 52.87691586722838, 164.65620094895064, 15.983790690688455, 70.93790079236712, 11.292168902004349, 44.35606026524299, 21.845639374057995, 8.027527115303577, 88.55338823884449, 15.187032285590812, 7.369144719925968, 56.35246522960695, 54.944027588817036, 9.91868240541133, 54.912688094957794, 121.12262257667608, 29.80411805164174, 136.9147557456351, 21.17959252282939, 23.102967452262586, 16.44842046339486, 61.91798859188618, 13.326420256228761, 38.46578683085891, 22.439609415057078, 29.075057790172387, 25.357240488692092, 13.019746990229553, 18.855878037016815, 12.843027371840252, 56.39117678562519, 79.46715714222509, 72.63869083568751, 69.3732973347221, 22.898285012757686, 34.60509385628243, 30.587556877439617, 8.636229807689798, 23.335719402680436, 61.11429442258709, 65.53134729790077, 6.891277037897943, 42.156972552943536, 33.85238346969555, 36.013631370338956, 25.623602036363575, 39.60388453488753, 32.636972522323795, 100.83905743799114, 17.36323820053756, 38.51163943060884, 8.054946652507354, 29.392376270002245, 20.905633351381425, 77.02818714449438, 6.652184680397095, 5.039209735225299, 32.98349631456505, 29.463812142133364, 6.582651281683871, 44.59968386705162, 63.92183261871818, 23.01858480254846, 101.83391843036819, 10.463028661904543, 21.394407234518805, 6.7657182014464015, 58.12518773964649, 5.756381482839999, 10.294728226707857, 7.835335122128405, 104.03515799903005, 6.883996093220941, 9.141799867078532, 23.990213294075225, 90.22805280302207, 81.30963089642248, 23.32597856527682, 8.281433622792775, 20.4803581357346, 24.355566080182385, 5.79981486723874, 38.22662005954619, 32.90235587800436, 34.05506142516438, 20.375435348730804, 48.29930270447364, 44.99253220770771, 73.51253097091029, 12.738019188247936, 102.46584448892554, 30.970239922749855, 68.36031288311477, 6.417187880447003, 19.775195892585494, 117.48896119106816, 8.071853403038821, 80.24280142465994, 63.18599551056728, 11.347345255419839, 23.17135508772933, 21.090354072755705, 29.95498602580566, 5.989926784145819, 34.842243825707556, 6.690574146438127, 23.997767012026742, 155.41652258910406, 19.47077748284878, 8.005104448233794, 16.563400599533402, 12.648091692047402, 6.308800284128149, 65.89967297765726, 11.840490545564506, 44.86748635384958, 30.45752545419866, 42.13495381194776, 35.953163238594584, 55.12428526027853, 22.49664406953135, 6.456815272740824, 69.87851990838789, 51.249420140188455, 5.366471083210743, 23.442640210022848, 58.057243594188066, 25.87498667593022, 39.298087861955494, 96.47912775085068, 21.37505144232898, 15.252929482437704, 83.54191815473393, 22.287189366003815, 15.162552269100502, 7.406259931193814, 42.87169226241891, 10.971873805054658, 83.87731159040348, 28.822201169093116, 16.81900850740906, 90.64391259882525, 14.469660373549596, 116.1259537375912, 8.15422755014384, 86.0985447140967, 29.78697465057862, 6.864947495522155, 16.253963318032927, 30.755147588514347, 33.66110618840557, 8.079646137918122, 20.945193010813792, 28.660962815997223, 36.82380235615124, 29.745299084990116, 39.93664728105716, 5.629712554610593, 112.81132352347244, 15.709824553791785, 62.09043288735392, 63.6118540014099, 63.908454209738544, 105.63549032719017, 21.744293628494965, 12.014573830800726, 16.451570065795384, 83.19679716121684, 57.07211413571721, 33.28059354108112, 8.63762965168502, 57.07381602091667, 25.352152624751763, 5.751291630722164, 11.278674621953897, 115.63497977550311, 11.77378501241908, 39.99441035481224, 21.346367545223462, 36.253208517400026, 81.98257244641962, 28.72013137506654, 5.75992952210358, 70.78993475831523, 25.2550613549675, 116.83989225210587, 36.45368742792317, 16.855852080467276, 22.805722544936557, 102.96322845911155, 19.758157552664127, 86.36758228364361, 18.24846236317738, 43.46567520743291, 19.542120646296055, 198.11029668338514, 44.12221257936779, 71.60302096276635, 59.7596287725475, 52.1283712159395, 29.21307793753705, 91.22771602977782, 14.94566930978084, 62.00119928046551, 26.421048019113655, 31.903175414085297, 31.528484712766865, 22.341411237074873, 46.946197318389544, 15.81576382007614, 68.11535525204567, 62.32100401954756, 58.33262107052364, 18.665231631474857, 17.514121285165047, 29.227973760102532, ...])
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)