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 = 46373
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);
([2578060.287444584, 2593712.143579408, 2597438.7252792446, 2597935.591114684, 2736485.262040957, 2821538.9626044016, 2827851.536391568, 2883785.9375, 2887027.9034079155, 2942663.7864612574, 2980306.7635781835, 3025078.7455662573, 3082194.709423378, 3089747.204112324, 3131709.130199939, 3267731.697925656, 3270534.411806759, 3277608.87729286, 3334080.0822595945, 3358684.375, 3409826.5625, 3414670.3125, 3415184.0627151616, 3415302.1075700177, 3421084.7331579095, 3426524.260037038, 3428789.868068487, 3450562.5, 3500105.1183784665, 3516106.25, 3547508.7239270834, 3549741.948843576, 3551832.890062088, 3554603.125, 3577248.123987302, 3577248.4375, 3641966.2263333052, 3661592.78724112, 3676215.4551437874, 3677122.8025482837, 3705537.5, 3710796.875, 3712506.965107911, 3723142.1875, 3726103.6349312384, 3762955.222807222, 3797096.875, 3820524.729607486, 3826276.16807847, 3872027.6113171913, 3884398.3207437466, 3884919.767259732, 3885452.7267197813, 3885659.161838754, 3902216.806488421, 3913460.59765134, 3915637.5, 3936908.4692672975, 3938970.3125, 3939964.060163133, 3941054.489695921, 3961653.016231831, 3975156.25, 3981928.125, 3982178.125, 3993896.408965633, 3994101.5625, 4001353.125, 4009114.238987515, 4010239.289713599, 4030846.528966908, 4031901.825188424, 4032487.5, 4032945.1694876784, 4033390.209280983, 4033421.879270754, 4033463.7567120395, 4034100.0, 4055786.6255111163, 4064321.875, 4114020.568215655, 4150107.4196605645, 4152865.6315117194, 4158169.009052391, 4159761.657308558, 4163182.211265251, 4166100.0, 4225776.5625, 4229936.181232442, 4230040.324134154, 4230405.200682941, 4235815.625, 4237763.580854493, 4243143.75, 4288638.63867691, 4352953.125, 4413239.507795923, 4413367.1875, 4415984.375, 4426028.413967629, 4438371.96159023, 4442208.8312921375, 4550246.8161579985, 4581360.9375, 4628831.967682935, 4631144.262734529, 4807524.402439493, 4851715.236723156, 4870536.475586293, 4870548.4375, 5103179.6875, 5103212.1806816105, 5127706.031124526, 5158385.255712772, 5162192.385135441, 5180878.633369713, 5182245.3125, 5182571.7826772835, 5231343.75, 5234915.523215494, 5254635.894210008, 5254958.4819339635, 5255029.743597565, 5297490.4244664, 5323109.864152733, 5332784.98133224, 5347529.6875, 5353637.876943721, 5388541.376254433, 5425157.8125, 5435883.235846644, 5459179.019583306, 5491586.152625618, 5493132.0542102, 5496503.050739814, 5506957.488482112, 5528639.561187168, 5529460.9375, 5529510.344000784, 5540603.125, 5547964.305152279, 5575296.247639252, 5586567.1875, 5588287.402888211, 5588698.31936236, 5592578.206826016, 5599790.736178371, 5602912.5, 5611620.3125, 5615875.59043002, 5619590.4480440775, 5634122.541040461, 5651770.3125, 5657095.3125, 5662261.178805611, 5662776.838952261, 5663234.375, 5663643.75, 5664843.494705099, 5668101.5625, 5672075.0, 5684799.065607875, 5693459.311165764, 5699541.8840908585, 5702560.48185341, 5703085.929832089, 5708774.687034116, 5721143.724861682, 5721889.896010103, 5722787.017749442, 5725018.570310721, 5725054.193572801, 5725098.1129536955, 5727254.6875, 5731997.354404911, 5732638.842651878, 5734528.909697869, 5735370.976132099, 5748006.172987499, 5748139.928711572, 5757378.125, 5767495.3125, 5770779.6875, 5792225.93156505, 5793158.490419967, 5794981.25, 5795145.16773106, 5797087.5, 5798862.660064449, 5798887.145644416, 5799278.724822274, 5799318.323126148, 5799694.861487116, 5809691.45687851, 5828261.16075703, 5895673.4375, 5918734.362814461, 5918760.0940267965, 5923494.152609036, 5938124.849589757, 5939167.1875, 5939177.365944702, 5942752.553304322, 5943733.9330655895, 5943736.775917746, 5953137.456171514, 5956570.749328689, 5957081.25, 5963517.1875, 5982216.546066054, 5984311.464415384, 5991792.1875, 5992664.272918509, 5995363.435931921, 5999517.1875, 6008903.070631648, 6009427.310904153, 6010904.6875, 6017197.986544556, 6034917.717815625, 6041855.082709223, 6044779.6875, 6049225.907119256, 6063467.238149622, 6063501.322930458, 6063962.5, 6068782.394223296, 6069147.863263571, 6082168.75, 6104385.814761493, 6106232.99642256, 6111286.315577066, 6114246.828538883, 6122865.443180077, 6129671.96353833, 6134722.914212406, 6143456.455361777, 6168115.625, 6168179.975464487, 6168433.195944291, 6168545.952017126, 6168553.396167251, 6168760.9375, 6168830.594443421, 6168886.61115216, 6169049.088153943, 6169421.417500457, 6169439.0625, 6169457.201815729, 6169683.727326899, 6170004.6875, 6170025.594121746, 6170067.857229244, 6170310.9375, 6170390.44046482, 6170599.996436944, 6170724.134205787, 6170823.808735778, 6170881.782907453, 6170905.158751636, 6170923.284280276, 6170970.547950847, 6171221.522936646, 6171400.0, 6171695.524004028, 6171806.909758805, 6171809.318823435, 6171920.3125, 6171932.002530886, 6172236.180955243, 6172262.878035441, 6172823.259751082, 6172835.003111421, 6172945.71344548, 6172975.885303863, 6173570.810178215, 6174270.932723623, 6174296.693424136, 6174917.029831907, 6175268.663753039, 6175680.834904237, 6176187.152836531, 6176303.17381416, 6176416.959436292, 6176882.8125, 6178002.138459696, 6178472.360816199, 6183538.2825651495, 6183610.9375, 6184319.358736967, 6184975.592113054, 6184979.589288939, 6185139.797259597, 6185147.770394599, 6188169.410126146, 6188375.0, 6188431.349862031, 6188622.073724331, 6188922.679180914, 6189129.6875, 6189287.339658472, 6190483.597889793, 6190762.802681458, 6192153.125, 6192800.158471525, 6192896.757743067, 6196061.906876621, 6197973.4375, 6199364.8629861, 6200633.453210255, 6200750.0, 6202683.877535001, 6206045.2833332, 6213831.940190433, 6214084.996370503, 6214327.62130414, 6215243.17354411, 6222753.34210618, 6223271.844459257, 6223909.231066855, 6226215.625, 6226663.69200748, 6229277.723711751, 6236048.503975297, 6238881.25, 6255467.969877595, 6255567.6022917, 6257018.503816348, 6275139.037226955, 6280901.641601818, 6281458.309373188, 6282499.055486105, 6284395.3125, 6284963.546098167, 6293032.1809633225, 6293167.310569937, 6294545.3125, 6294934.375, 6297865.625, 6314206.466443803, 6314229.9286857955, 6320936.60262286, 6322154.6875, 6324604.934149649, 6325667.45776564, 6326431.607049543, 6327062.291009559, 6327438.314523603, 6328545.028895937, 6333502.63925412, 6333726.703141009, 6334595.418712242, 6341517.1875, 6341517.1875, 6342736.91433257, 6343216.343284222, 6352333.163496753, 6352449.645394629, 6356034.400701635, 6357018.14388144, 6359459.594267469, 6359909.524611844, 6372235.693522078, 6372250.9315180965, 6379688.136603065, 6380125.559323895, 6380361.68372729, 6380848.134776742, 6380892.502482677, 6383952.033230953, 6384264.817979969, 6384894.176006553, 6385031.460103849, 6388577.4042513715, 6389329.597337091, 6390839.97471208, 6392848.4375, 6400473.4375, 6404515.7228650255, 6406638.2133481065, 6408887.94067774, 6409079.6875, 6418838.526944411, 6437879.5174346175, 6455812.054296289, 6478237.5, 6492921.48951693, 6493946.47721666, 6495141.530244791, 6495521.875, 6498230.995131385, 6498282.816898996, 6498863.948883823, 6499458.240453318, 6503246.1421655845, 6506231.288394011, 6510205.977217044, 6518370.385179624, 6518913.6218615575, 6523011.928787211, 6523100.4794540815, 6524136.669688698, 6524432.8125, 6524618.655373994, 6524700.0, 6525057.565228643, 6525346.611490402, 6525477.715758718, 6526779.46760859, 6527417.889690366, 6528540.625, 6531293.75, 6531369.524696508, 6533145.3125, 6533447.820649639, 6533724.856688195, 6536867.473677163, 6538491.2050128, 6539705.958046233, 6539982.8125, 6540688.484151152, 6541810.9375, 6542509.0114661865, 6543468.072929659, 6546218.05750955, 6547419.214129392, 6548287.320547718, 6550300.0, 6551490.384936709, 6551741.447093003, 6552222.562545205, 6552691.779448686, 6553056.585482405, 6553195.813737495, 6553668.75, 6553721.875, 6554018.858774063, 6554171.289584761, 6554419.798106774, 6558371.875, 6558820.353694797, 6558826.371126871, 6558993.962713126, 6560621.728817492, 6564634.649836506, 6577616.416049024, 6579222.311434491, 6579244.97782936, 6580073.429356187, 6580607.585183076, 6581203.125, 6581437.5, 6582081.25, 6582360.595853248, 6582365.411836888, 6584707.8125, 6584954.377239079, 6584976.173486435, 6586311.797051587, 6588220.619853273, 6588238.069209984, 6588541.238923618, 6589004.349867848, 6589541.713795526, 6590485.9375, 6590669.443520147, 6590753.125, 6591279.6875, 6591463.976188669, 6592010.9375, 6592190.3733211355, 6593551.5625, 6593618.595074691, 6595466.303858094, 6595551.5625, 6596012.5, 6598299.247939451, 6598482.308024777, 6602143.125563747, 6604635.368500486, 6605682.8125, 6606493.555026962, 6609586.018285665, 6610191.391183099, 6633384.375, 6642696.69013064, 6643897.690291394, 6644275.012900058, 6646960.5136244865, 6648905.458030953, 6650103.125, 6650313.049498745, 6650389.861188027, 6650460.9375, 6650626.337290706, 6650737.449147561, 6654475.0, 6654649.37421381, 6655573.369015514, 6657951.5625, 6661364.303021182, 6663726.5625, 6663729.07423024, 6664465.625, 6665407.0780171, 6665879.6875, 6666880.787473992, 6673307.52384591, 6673658.265956089, 6675996.271972227, 6676145.179649653, 6676404.919711641, 6676685.588597775, 6677091.866115544, 6677286.905334087, 6677635.160441829, 6677790.070209334, 6678154.41971614, 6678161.460453207, 6678291.439697115, 6678975.0, 6679225.410137464, 6679468.116247386, 6679623.411419216, 6679825.934860614, 6680064.0625, 6680118.75, 6680218.75, 6681612.5, 6681787.5, 6682003.033327333, 6682423.4375, 6682441.9559642635, 6683474.469743691, 6683523.4375, 6684383.744120232, 6684772.97209669, 6685349.816975228, 6685443.766094408, 6685709.734755256, 6685962.386599987, 6686499.040686131, 6686512.5, 6686615.663985457, 6686720.9817839, 6687271.612342421, 6687687.5, 6687799.218250811, 6688269.224446102, 6688587.5, 6689100.0, 6689165.625, 6690423.4375, 6690928.021719147, 6691363.167966394, 6692372.585094, 6693856.66047429, 6694520.7403101185, 6694998.4375, 6696076.971625148, 6696289.0625, 6696318.773866354, 6696356.787665582, 6696548.238885836, 6696612.040244078, 6696911.814910629, 6696991.289392524, 6696995.3125, 6697009.375, 6697104.355187154, 6697133.930562778, 6697168.703439226, 6697169.198798638, 6697178.993022638, 6697281.137792915, 6697478.125, 6697488.480799501, 6697779.566565165, 6697930.158324159, 6697988.707444143, 6698087.423517947, 6698117.1875, 6698159.594640224, 6698202.694221716, 6698309.347908881, 6698326.6347727785, 6698361.551222627, 6698470.153281269, 6698598.281704831, 6698640.661924895, 6698691.09332808, 6698785.9375, 6698808.520477945, 6698935.513747371, 6699082.947368668, 6699249.703999071, 6699282.700311407, 6699426.376297805, 6699448.123435721, 6699704.261354318, 6699763.845096066, 6699829.6212622225, 6699960.559272894, 6700171.004306002, 6700356.042466801, 6700535.215942664, 6701381.742754674, 6701565.543103974, 6701860.8773718, 6701922.702132685, 6702037.365849681, 6702560.912254406, 6702661.320656663, 6702687.124433164, 6702932.8125, 6702956.309101511, 6702974.035956672, 6703054.477167038, 6703251.65360924, 6703384.375, 6703533.527485443, 6703609.783264074, 6703806.041411537, 6703867.1875, 6704195.52222365, 6704198.169430286, 6705046.544819573, 6705449.7500506565, 6706293.319320697, 6712904.423520549, 6713145.3125, 6713507.8125, 6713742.1875, 6713883.022680939, 6714203.125, 6714280.992418486, 6714396.499802365, 6714499.565278045, 6714627.111370213, 6715237.5, 6715947.972487055, 6716435.726248461, 6716499.00921359, 6716640.3248623535, 6716790.625, 6717184.375, 6717708.8573571155, 6717771.514022553, 6717925.016335527, 6718127.732317167, 6718166.059561982, 6718295.398897999, 6718351.776983276, 6718464.492910519, 6718845.3125, 6718908.731855882, 6720569.204905995, 6721443.75, 6721464.0625, 6722348.057553397, 6722996.096987973, 6723474.1061666375, 6723659.326804229, 6723887.5, 6723940.162935111, 6723982.378784574, 6724271.875, 6724817.475278706, 6724977.073152157, 6725074.231927758, 6725701.860191764, 6726701.297540461, 6726973.617425026, 6727053.125, 6727732.184388627, 6728072.59884629, 6728585.934727195, 6728785.2502413085, 6728786.951181946, 6729734.3527176585, 6730527.539233558, 6731059.375, 6731399.1114050215, 6731529.6875, 6732112.762390578, 6732842.098058991, 6733417.64079042, 6733853.125, 6733962.5, 6733981.25, 6734095.3125, 6734499.935517522, 6735332.021895943, 6735457.8125, 6735485.419898771, 6737753.125, 6737797.678813763, 6738120.5995462695, 6738731.464138122, 6738837.061419914, 6739282.8125, 6739796.704781511, 6740384.375, 6740490.311950985, 6740873.4375, 6740975.095297266, 6741094.654382372, 6741378.125, 6741395.3125, 6741400.0, 6741789.392071711, 6741864.0625, 6741880.041638504, 6742241.088567344, 6742264.703376748, 6742275.963202651, 6742351.926213874, 6742370.67422439, 6742427.233405858, 6742504.6875, 6742539.941112615, 6742554.305263311, 6742578.125, 6742700.0, 6742710.9375, 6742785.9375, 6742915.415006724, 6743133.0314003, 6743326.81031959, 6743596.224567803, 6744372.420876799, 6744399.923989304, 6744420.091212665, 6744657.704316512, 6744663.024199717, 6744782.33186365, 6745063.924910622, 6745590.954057016, 6745827.813893275, 6746591.604013953, 6746702.363892793, 6747382.273947307, 6747516.492290726, 6747536.8245673, 6748251.5625, 6748342.240471532, 6750922.21728646, 6754151.6549051935, 6757010.9375, 6757622.152004221, 6759361.192106864, 6759387.5, 6759613.007719982, 6760886.093734324, 6764547.294192466, 6765734.315296576, 6765824.73352199, 6767168.899204767, 6767851.481460881, 6769919.212270287, 6770423.4375, 6770763.138417192, 6771173.4375, 6772081.25, 6772294.55674657, 6772549.134542659, 6772952.0181495715, 6773195.524769279, 6773534.7995434515, 6773847.09287921, 6776771.875, 6779069.938546854, 6779312.676024184, 6779593.263531282, 6779745.3125, 6780202.171925921, 6780254.721794897, 6782812.5, 6783849.565099701, 6784854.6875, 6784895.085792612, 6785370.573849969, 6785496.491666061, 6787318.13115237, 6788007.8453638805, 6788205.092754135, 6788235.73923152, 6788417.1875, 6788957.8125, 6789012.982920133, 6789028.295002683, 6789048.75695314, 6789088.230758102, 6789095.3125, 6789096.565436561, 6789278.750446719, 6789464.0625, 6789474.14510764, 6789488.302235257, 6789507.247537274, 6789607.230602096, 6789723.4375, 6789821.875, 6789929.6875, 6789964.958581825, 6790085.652314179, 6790117.1875, 6790168.75, 6790188.563904369, 6790299.748423406, 6790329.6875, 6790345.126117608, 6790507.364317511, 6790556.25, 6790592.1875, 6790598.4375, 6790673.92233387, 6790674.27469168, 6790746.875, 6790826.186303918, 6790975.0, 6791029.54946022, 6791065.517031516, 6791230.532848758, 6791295.279629334, 6791397.172899567, 6791443.1591218375, 6791447.290441303, 6791528.142672102, 6791531.25, 6791657.8125, 6791811.556797684, 6791874.509335149, 6791963.9817710575, 6791986.971862682, 6792081.25, 6792108.96457465, 6792148.076742981, 6792170.299325505, 6792204.001738035, 6792321.606582735, 6792457.111445632, 6792466.417346478, 6792576.775097427, 6792582.022462102, 6792759.793324413, 6792840.558870315, 6792908.608932102, 6792910.56165074, 6792926.805825783, 6792936.628943489, 6792941.465007125, 6792948.730855316, 6792968.458840592, 6793013.498910216, 6793014.0625, 6793054.920726702, 6793112.505833429, 6793140.626521251, 6793216.763948477, 6793264.0625, 6793275.59915558, 6793338.785092926, 6793439.920255238, 6793530.434403713, 6793596.442275522, 6793624.990951578, 6793629.6875, 6793654.637810081, 6793847.5131272385, 6794001.5467611505, 6794037.9967218805, 6794191.398552758, 6794201.312197534, 6794249.107383636, 6794486.523580228, 6794603.228988795, 6794723.838825198, 6794883.751242007, 6794909.149247015, 6794981.25, 6794990.322626914, 6795006.550234959, 6795072.835339013, 6795075.0, 6795102.205469065, 6795110.36957047, 6795151.208866172, 6795178.353000602, 6795276.250986621, 6795643.75, 6795653.6473270785, 6795668.428123479, 6795685.056184911, 6795788.380536872, 6795834.37311196, 6796072.456192361, 6796096.016690289, 6796203.025640346, 6796585.014362903, 6796596.875, 6796633.110562762, 6797248.3933169115, 6797567.1875, 6797755.790618484, 6798512.101698738, 6798548.266704461, 6799269.432280187, 6799354.6875, 6799516.834517345, 6800463.801266748, 6800474.350904038, 6801656.975845303, 6802697.9709722055, 6803525.0, 6804293.507937802, 6804644.482401243, 6804653.125, 6805107.8125, 6805531.515668147, 6805569.260647831, 6805677.390170139, 6805803.011237622, 6805949.306007987, 6805990.625, 6806027.716826074, 6806031.683741408, 6806409.375, 6807237.431416868, 6807290.650747284, 6807728.125, 6807766.699116531, 6807835.594232297, 6808091.811347217, 6808921.875, 6809693.130841496, 6810062.24300519, 6811876.626213517, 6812432.679342362, 6812832.8125, 6813100.0, 6813442.473233038, 6813506.247878048, 6814792.1875, 6815263.371494518, 6816293.562419405, 6817709.479494678, 6817801.5625, 6817930.126440075, 6817956.314310605, 6817993.33970956, 6818053.559184595, 6818301.326248895, 6818532.175703478, 6818612.223399634, 6818792.458162657, 6819184.375, 6819626.601340378, 6819940.534192546, 6820033.929367972, 6820292.093494457, 6820298.927139468, 6820323.298221406, 6820437.5, 6820519.662259029, 6820781.818778154, 6820788.997453094, 6821097.002508309, 6821103.662447104, 6821167.1875, 6822641.403627117, 6824555.440452379, 6826571.875, 6828385.555568847, 6829143.75, 6829494.465339784, 6829622.089016794, 6829880.683299864, 6830016.055768978, 6830082.231415349, 6830225.0, 6830401.5625, 6830451.693525768, 6830492.215649833, 6830617.555195514, 6831228.396422522, 6831279.132081932, 6831664.783686392, 6832625.118233246, 6833125.596109524, 6835411.206814805, 6835538.855643441, 6835991.690863229, 6836290.19174164, 6836337.017060464, 6836589.0625, 6836957.1388307875, 6836964.917815085, 6837304.569836375, 6837897.823602471, ...], [25.3919803678869, 10.612834658250108, 21.02721283643455, 23.17578076801017, 29.190769557076955, 10.975072853542471, 11.087141402743576, 80.96389853690687, 24.806772951412565, 9.10841651059081, 17.342143564965784, 12.259316153256506, 67.39328439153195, 38.28152999052187, 7.5170340140673355, 16.976378753695275, 7.616604529282244, 21.516003270099258, 8.506980400894713, 31.86941757451286, 63.90936571097746, 84.7464235623211, 9.080606701264792, 12.101899891549229, 6.313534978040318, 19.392433250866862, 19.510066950848305, 78.48301289409018, 18.13774099428506, 69.45839631599551, 8.835535574509155, 52.70320355112371, 15.245617131439737, 31.46533163498564, 58.49047431496288, 29.456069069771047, 25.374753612991856, 17.855565546436, 36.68320675771872, 118.43049927682337, 64.09905669844952, 48.075397391130366, 12.465678279106381, 46.332986612664534, 7.262274885232269, 19.578689744656927, 34.57096215781303, 19.543401344906137, 22.6151832184491, 21.3576842497441, 14.514411461700606, 7.417260132464429, 50.30101633253723, 33.981040783590004, 28.04762158324068, 23.25473468617206, 76.60433972649184, 70.59974612152664, 37.95091148871173, 6.0878562368479265, 35.70180695282821, 26.54504342776186, 37.93566059701009, 64.86009000427144, 64.0593435057968, 19.489397376647204, 61.809268808203775, 100.5398954152449, 9.485228992927649, 9.531210206717713, 95.76365636800469, 14.437197041254336, 63.36328863356824, 19.524186075300662, 42.887884787522424, 70.30506538788288, 13.891397854826806, 28.70372313820686, 7.872597107810299, 50.72361736676638, 16.014820810306162, 11.158060701229875, 18.646834125592015, 13.7925133622955, 12.47621957919838, 20.53936776650071, 132.08699640281876, 50.90911746951802, 15.959694904625865, 13.906651548965346, 14.396043307461673, 55.54784204781741, 21.678171165709877, 47.09914372002766, 62.790005424729635, 139.3858164859642, 16.962155982320496, 57.55152640146631, 44.38003887099242, 15.816242682195277, 111.88989315914523, 8.018563374668455, 14.721876095889687, 42.074165625088774, 42.14101833264979, 19.896357686718602, 20.57212465269878, 9.023341302244917, 148.45558547336472, 99.1721210544039, 44.43980323757187, 9.075247720111435, 50.95263826090248, 12.854300196300464, 48.716172329395924, 55.10366306783942, 82.26145684901348, 22.992967469280625, 38.79427797439516, 13.672206916943898, 8.263816758790705, 71.13383360997464, 5.818142698597648, 14.2285538822717, 5.64169080250461, 17.89651435678156, 168.2774544899929, 5.302874541070317, 13.907068999007956, 53.98765385740708, 11.86086017704195, 69.27906221399685, 11.481478054374543, 19.252945807958707, 87.97092699315832, 20.534832488345597, 5.851823879271972, 29.18352248042378, 23.22069293700749, 51.563487321525926, 8.419204167428651, 13.165359267710748, 87.78304244549827, 38.58584292957353, 26.389527219088812, 15.262841821075742, 47.42453717641799, 79.02699620435985, 61.35552807106179, 7.831721724581884, 34.86724444044667, 35.011218987246124, 257.00340937059735, 76.38159348432052, 15.948594159628254, 21.74741730652655, 71.80092632900296, 127.02844797713081, 10.750810023158628, 41.1733826864229, 76.92700610221479, 39.20158463757498, 16.33205139437532, 13.898763768407372, 8.973717213959171, 188.72204919398592, 13.869240335082559, 28.036834512671255, 59.786634170097784, 21.672006724891343, 41.26064115164492, 5.509579459008099, 10.65567879040581, 60.28974658066823, 49.53935453219003, 27.198154922340834, 34.90535676184688, 31.94994679558868, 56.47518013449212, 19.735600425166815, 102.45417461309054, 68.31988097693407, 65.03676955071981, 42.124761863950596, 89.59239592242318, 65.68161222775652, 38.857715045050114, 35.921977186851855, 32.08951503391674, 23.08039791793303, 20.234880980450697, 36.81275572256051, 8.061654464615167, 19.464540708841433, 6.522667641394699, 86.66622596684113, 92.45528306931277, 6.916078272662937, 33.68610539038077, 9.207380614933061, 50.2037264440317, 18.19234814911687, 27.16595915201807, 13.487937896031829, 30.218843608867715, 27.686306283646527, 11.886818223623928, 33.80434997632676, 47.27323145949734, 20.189428362446673, 12.064974414224581, 33.24833124505346, 29.693877327102477, 20.317062227628945, 52.20673997733861, 14.738254378720052, 35.659376754065974, 46.86517918564531, 7.007748784091028, 5.854289528749391, 16.69724679970991, 55.39232699336045, 147.50068979449554, 39.03228672623568, 24.554619238039262, 32.513470933364026, 30.102463717557544, 42.42883901938322, 60.53632459131279, 26.313955802398162, 11.427896898346125, 124.39793061449366, 72.20461010156438, 18.09753578876137, 15.290067562784238, 13.262716106569425, 39.9488573273703, 32.662010581581164, 182.48613878111078, 28.105741471314495, 8.65642866265095, 21.237746503440135, 36.68618082268334, 30.324563197183522, 9.974330788399053, 5.263728136875633, 8.058606220848477, 69.4520025354465, 109.00292635512082, 82.11448741435694, 44.66213605317809, 17.82084872973506, 36.4089900427369, 47.06327778062601, 25.346904824059408, 5.341799604161583, 84.57682473192006, 37.20165399928377, 19.93223326882393, 36.17219403191904, 14.387988793829782, 15.921900533435268, 9.050457327987454, 92.60529017828729, 9.51688255064913, 22.64850272334064, 68.47676785425602, 37.69267187837891, 79.86536269572171, 24.822775644016037, 8.497145193744233, 25.448922548766266, 18.033604335580076, 9.69511075236385, 48.707545448625, 9.79093205728249, 5.649303299218618, 97.93092307677568, 7.547190183088782, 26.927981645260683, 48.783283683939416, 32.71474398305717, 11.204873430305819, 39.91735402221213, 68.64925422434717, 63.13376032205274, 9.778997865546286, 10.094148984710085, 86.76081888645786, 101.34984719743572, 80.78873234951578, 63.84724280644673, 12.509930104657585, 5.373569235028412, 28.19247476556179, 56.25707781534951, 5.070716758658465, 11.453213605750413, 65.78882194982106, 31.054447598692924, 5.925562601370915, 25.16793835073652, 21.28197809949542, 70.60795309415252, 16.06859820022038, 17.272264285770195, 59.36307060466599, 57.75582056774624, 27.458178640971852, 40.86662272807128, 73.67721788090809, 40.35988059750548, 14.831492512297014, 62.11075714777752, 9.918568230548397, 36.912974355450935, 61.69801332443329, 115.4713409364177, 42.84056189228957, 85.71726739030022, 62.33101508158697, 28.85625284521477, 8.085188190429681, 59.32525691060932, 43.434716688292134, 24.709685860961102, 11.844481026681212, 28.423197558725658, 6.758471468228178, 28.167590671604984, 8.56805520032271, 36.86735038727034, 76.232519194742, 6.409077095033659, 31.421923727941596, 27.77692900739583, 78.95254598515844, 39.425947552216556, 43.98297091516708, 15.836081369622644, 9.544020072638467, 25.342427848885222, 110.6626492053802, 5.298767381591001, 11.578169625122323, 108.769919378765, 24.98730758631006, 38.28483120336321, 6.232019869649237, 21.6364810054847, 15.506105740499992, 23.171774921825932, 32.57082703910209, 51.565687875401096, 74.03225526310277, 7.323998473388546, 138.70784849234016, 71.86528698223154, 67.41506030493493, 8.866587495762799, 25.748332756847248, 15.54416521057361, 24.493732401311632, 56.18623691277006, 5.6502608504842335, 8.606296856097437, 12.535976452927127, 5.236750952154318, 11.52308463311332, 20.724302858573665, 109.3043169903692, 11.86596736654364, 15.756468736102663, 5.879003461655391, 26.860451393033266, 12.9324634799196, 31.125764556838746, 56.19815250120119, 5.821257101685136, 18.597880797908314, 11.89426200328695, 57.55619958093332, 13.229711172813156, 52.4862375748639, 22.052391393690186, 31.27413993059296, 7.0236772970618375, 8.086858220296293, 7.381644281313502, 46.718832299706726, 64.90438427019207, 16.17227284399097, 9.237147104865311, 126.35119957592596, 10.14755754666348, 41.75894997685753, 52.92128164295073, 30.547479760902092, 44.73502438230318, 29.44306103359697, 17.149427856395455, 18.728939352440516, 79.49563126551408, 86.75679974891187, 160.57122912044815, 78.99733446938748, 20.45165816466851, 13.581681178637176, 36.60032471451498, 22.992093351472644, 69.50885185559135, 82.91982579387006, 29.334566179535464, 54.48064437907119, 10.28339804636685, 105.2311782226457, 16.15733443607123, 25.51264597514993, 13.628315073809258, 29.89848947299121, 10.329905978556237, 97.27566130394015, 92.36043916972025, 19.891610605977032, 12.82806348076838, 9.757313578652028, 25.423222901525083, 49.23818480840446, 113.76966775975251, 8.775075165284365, 8.687020434237843, 33.13412598356006, 128.60385184825682, 12.01334266336475, 61.19846838764628, 54.97083252788911, 11.583090597619748, 20.681351919407163, 21.350711738638555, 86.7006035471549, 6.771758751966486, 25.270699294951076, 11.47730651568131, 18.53874243993191, 16.10387279380873, 7.916808948482046, 11.886056701923778, 6.698482176068797, 11.115001313433924, 13.591053499034096, 36.825652000129324, 40.687337014118725, 95.94679520122565, 38.16744306345066, 39.97932285348079, 82.04526482216573, 126.5367569100938, 61.280906749336, 8.800227808863847, 21.946478492807636, 36.92189694218313, 17.943985962522444, 36.320027284322876, 7.440444568275363, 75.10533102526787, 18.46250720869128, 141.82452893527935, 96.15044793256892, 59.988630062584534, 73.19251878553906, 14.061801068674358, 196.8880657855516, 57.2253639879429, 20.153137591046058, 39.82650896619888, 45.01937177533879, 25.607811336451178, 116.519928027189, 5.5804082715251315, 28.625594050921755, 35.27833441834236, 15.714796611540336, 28.143554912337628, 37.94948360230578, 71.13070027622561, 9.179829152179494, 6.937973147804874, 257.7547776793374, 22.287650591066463, 94.97666059934213, 38.058499899873226, 34.158990091674646, 19.211421290108444, 42.813787368345565, 9.147969132166912, 27.557239947595306, 87.30926591256234, 7.981231369726936, 59.06957578708891, 53.937646568911795, 7.186146028043186, 31.32398033269707, 13.026174908041023, 75.19503028042887, 156.86061740870525, 117.23826263999484, 13.429863733680584, 13.94470707656398, 11.919079976743992, 6.648806101445085, 108.08331208227004, 9.535785221738237, 23.14555538674494, 35.72079002956255, 20.657216046957515, 10.097382771411551, 20.96340864060952, 23.438890755201406, 9.816536223441695, 25.160053595102177, 107.96990967197783, 42.7501659082473, 58.23892174647551, 36.88707515428452, 10.270494623315175, 68.50366911885463, 40.43250924281624, 31.903480119303683, 45.37200204923131, 67.02333197243738, 7.570414378894573, 57.445032287475414, 24.66653024794826, 13.243937985472641, 63.93249290975841, 6.964932597658282, 13.42180756117582, 37.81906739580411, 5.165736581716777, 143.88795110752355, 7.562731383488584, 12.222514205154487, 28.87127959787046, 6.092162765653, 12.364329534905615, 24.239754066796856, 73.79892319664357, 30.278534959594054, 78.07820338179596, 80.14311749422913, 50.331445089647374, 36.59359694283018, 223.6904945477553, 7.094564365303025, 12.361452970484265, 20.856795323591037, 79.89465031901355, 7.765662393831677, 38.60170456696604, 99.2419684312862, 74.528326521461, 22.66557500745918, 17.48170475220529, 20.70354253107118, 21.90417526882141, 5.3729140036086065, 106.5798383394541, 112.65552011067763, 45.833915464936894, 49.7534289214247, 73.49956350340719, 19.53905574342696, 11.910015469633601, 8.805955512585966, 7.09226493537984, 37.08415992338616, 34.09087306604135, 63.2752236905885, 7.782891422427186, 48.67231281425504, 14.657794414581277, 53.47584930370011, 31.497165057925574, 27.88774468849178, 5.705036023006545, 118.19685046292265, 17.942724813509777, 136.11364239217485, 6.732796813358417, 5.816717453472905, 7.781886901984104, 93.38064551941605, 12.449741193842579, 22.288992693678736, 101.79155263946534, 26.782641989240197, 26.488017054785324, 112.83671509080179, 92.17675295126205, 22.262892521236317, 6.065779189127467, 5.0971547743497005, 7.025454271798839, 88.64592214818094, 14.205395596664925, 10.160492299025957, 55.34352041604713, 14.638285172338596, 88.78286058680153, 72.06824048400365, 11.811425062746572, 28.034792554306936, 16.63515166761143, 20.563085147986936, 81.89821269127042, 155.92077196214763, 5.421856133988418, 17.670832676289336, 7.636526119363319, 46.93750154670225, 55.51240418629721, 11.832031226627706, 34.17601116179492, 29.03703661865625, 18.373418567916687, 24.167359310639018, 5.0920126335254565, 42.61587864386085, 37.6288177400847, 24.22202347639329, 34.79494540434483, 59.61216344572149, 62.151679014558276, 22.847005648090228, 73.73345365969548, 17.334302657705173, 22.835479571342443, 31.36407316999135, 7.8145984192831195, 77.85402776681336, 8.966901101543487, 355.47669134172196, 53.9169996173309, 47.817070311616064, 42.49344073062133, 28.82817659954601, 155.25617988881902, 7.02968813624511, 74.51886729715719, 22.634891791071095, 38.032748430831504, 11.72556316040373, 17.295504495527236, 11.87443851521456, 44.687969192886555, 20.174875984663657, 16.89974810874233, 32.957307490531385, 64.26091575735742, 24.346112748151143, 19.105696660641286, 38.27273109596173, 9.290980719718558, 39.06118315163968, 13.431156151658762, 10.51131162073298, 53.75137556587579, 70.39502314251102, 9.804045009974223, 12.647293086559191, 56.26577921174359, 81.73404700988768, 9.48831923606021, 52.4735959578717, 6.190973884597351, 7.887849011253973, 24.550873176005737, 6.0194319378467664, 21.019555480116782, 14.85725431869989, 53.27057674655126, 76.0693144243993, 18.331091959518403, 88.26457883897518, 117.9318030150477, 97.03310018599306, 7.775847524474678, 78.11918537458031, 116.48188854863503, 111.48847592439505, 59.40886469818588, 56.48928044263395, 10.082186952653348, 34.04557612611552, 16.033294126350285, 71.42605025622133, 31.196864986737232, 5.54717589331233, 103.78131012069551, 38.79262924172965, 32.85481597187869, 35.77166594309462, 42.22906164301985, 28.901734370641872, 111.55953588150342, 11.280002902147169, 7.96673292953599, 36.51851437991672, 126.22951512075275, 42.04259825894181, 16.36646817609169, 28.701667005494038, 16.488177933216647, 9.75675389313017, 7.852734473259451, 38.50814561111509, 48.44406932143146, 78.92649493741588, 5.566552464114002, 51.66691807847381, 40.11031019807422, 35.220127727654116, 94.63574962433213, 61.5244557788349, 30.327447597539127, 63.95884128210862, 10.814606333769337, 8.405830090991099, 9.550124153614549, 12.932102196552751, 12.103549029132672, 7.5759753341393665, 72.58655169335995, 123.17364760881861, 17.403317221123167, 99.39035268613537, 7.085747266637308, 7.72675170705582, 33.935953781819066, 5.670603129120361, 27.57067471426447, 21.927995712481277, 5.764271242480118, 107.28164498529786, 37.3103971546624, 7.135446230715533, 139.03386968804088, 5.9474933273375985, 29.576418274881487, 5.629554714688468, 34.301941637343404, 53.58041592312487, 174.40234593240027, 115.94933093250444, 41.5265424044169, 43.44802809379355, 71.93803467236908, 6.510737538918509, 5.808008299216884, 24.856818294433133, 52.8140857449186, 33.60647018261098, 65.26685524545246, 74.64852719706053, 6.012882162188802, 5.3663879426296415, 7.776793598965185, 15.817402885005242, 149.4175449513727, 200.55072623439182, 37.833245740834926, 6.430026185088813, 38.2749280453198, 82.57253707102923, 28.63376137476131, 5.7466732066224395, 15.917700576923789, 56.44210569234083, 22.16805228884862, 45.49087717355283, 33.74860187209067, 19.863622345343977, 22.741596721035826, 58.08053469346257, 15.068268344433159, 9.699307116423576, 10.831325109074704, 39.81525472977153, 72.94624615390732, 5.556986382188114, 9.479409361370841, 23.423294310552695, 7.327776528045783, 103.6079357934151, 23.629345818331597, 37.367636072476216, 97.96429856624894, 157.3512206345826, 5.148025785175995, 20.868648958882154, 102.36169028091857, 61.673118693032734, 52.82586113564387, 44.231963327964465, 5.883397522650156, 23.94183484251145, 63.47121898668703, 53.905049592571736, 10.428596055039502, 166.24546905477698, 77.7266620422633, 6.068929198110678, 20.09113692704072, 31.198667509257827, 57.931655945818605, 58.96710998105627, 63.68272447244789, 12.748615442419647, 59.16937330760995, 120.27266586015173, 102.866479881174, 101.18029869595995, 78.31284428033834, 7.9405558149706295, 27.890548273922743, 50.40736604599292, 142.37547188797808, 21.878123936533264, 5.4625255566995135, 184.98639761123047, 28.75701895127814, 39.86615058984787, 21.586731535163313, 54.681317556484096, 125.27281912622364, 38.66821035013282, 90.72671929531262, 48.51673610043227, 28.266790317929942, 7.954427497180376, 24.162728324228535, 97.23966660395728, 5.659435964525298, 5.829879922898663, 95.65497302021788, 16.818108502522897, 11.0258914956385, 10.109770883313148, 22.827925358919963, 15.95783329583088, 65.53876027126387, 12.755372942727206, 44.82210571693827, 9.096775644458509, 13.155198431012543, 30.308592968013297, 15.91179212581347, 15.939896410457463, 137.23696273784043, 22.29118954835244, 63.29767760903596, 7.288392156428206, 24.0436896412203, 10.179883506547338, 56.43047998596812, 22.19152948778274, 6.266055841032496, 68.95356408156167, 35.207702667173336, 44.32101605955641, 44.70496935880797, 36.29647806109364, 19.025298678168497, 24.40701796140831, 17.728303123502354, 17.771476780404836, 96.73434702059592, 33.93176423541986, 12.9994171581543, 223.4236389684646, 37.64830976389577, 13.90197542176353, 11.631828600509682, 124.66255680096143, 35.77490095491166, 12.307263287140323, 20.84121427669208, 5.909189458510443, 8.410943849906731, 23.604779881948314, 92.11490541792314, 17.39249019988578, 91.62808509685865, 9.982457021619927, 5.319084038312339, 6.26695985644094, 17.741643357287476, 12.441300313468464, 60.498589167850575, 18.10551886824933, 45.05143165613029, 148.55297717598143, 11.05934100735401, 53.879190366907075, 10.478322918751331, 6.218154108297724, 9.19104400353217, 39.21780129213066, 270.16473308809435, 127.60377024059886, 16.319762607258685, 7.384210735320006, 10.923939246209589, 5.899781724811629, 37.364680146447895, 61.46006927424334, 60.65865286259233, 42.13639364492724, 28.534662135753116, 11.570007736418898, 12.032184190375604, 7.93278992818438, 76.28680200752049, 8.806284126379817, 43.62196825308713, 115.3676996491081, 29.168691579133252, 120.53292660360358, 51.120330678533016, 33.17640413771673, 81.79052633569941, 21.609769340202387, 23.213354920822958, 32.702403856457124, 128.1580655354337, 20.381449168459586, 24.31606941065292, 6.497125479888176, 153.18172751158414, 96.42927410093009, 72.63587784491543, 16.155231620139443, 155.19181223598042, 69.69018798134866, 8.808307273643488, 25.301442977820273, 15.355335797428632, 67.27751198520033, 155.47503107637428, 25.28614551018149, 22.43724803385209, 5.048937461578282, 69.16570303916032, 10.259586749947488, 23.72971456647778, 9.571253101840256, 28.55751727777304, 11.188964413783543, 35.55239476441809, 22.053153874260495, 51.94990198011581, 23.518278686456085, 93.05334378308233, 65.03386888372647, 20.11477105947477, 58.777537805134685, 11.027533987593555, 127.73465852827277, 13.210730513716857, 58.465431361547864, 46.75054924149974, 12.551328383677584, 42.51347025053847, 22.757715083413945, 56.04072948771249, 72.44673454475253, 15.825214573773255, 20.852571687097807, 7.766842029121347, 5.437366490025765, 46.11402490922853, 30.82995137456378, 7.651325033160783, 48.21406419129407, 16.556403019009664, 5.724252584297483, 20.957532544365026, 12.479314584195428, 22.8103223135262, 12.207627437160298, 130.92638471803332, 21.483464850345477, 21.526715979480176, 22.18576315970191, 118.04624435863961, 36.510771901029685, 12.874308190312817, 16.241999421426947, 16.643808587516403, 20.427481305331526, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2578060.287444584, 2593712.143579408, 2597438.7252792446, 2597935.591114684, 2736485.262040957, 2821538.9626044016, 2827851.536391568, 2883785.9375, 2887027.9034079155, 2942663.7864612574, 2980306.7635781835, 3025078.7455662573, 3082194.709423378, 3089747.204112324, 3131709.130199939, 3267731.697925656, 3270534.411806759, 3277608.87729286, 3334080.0822595945, 3358684.375, 3409826.5625, 3414670.3125, 3415184.0627151616, 3415302.1075700177, 3421084.7331579095, 3426524.260037038, 3428789.868068487, 3450562.5, 3500105.1183784665, 3516106.25, 3547508.7239270834, 3549741.948843576, 3551832.890062088, 3554603.125, 3577248.123987302, 3577248.4375, 3641966.2263333052, 3661592.78724112, 3676215.4551437874, 3677122.8025482837, 3705537.5, 3710796.875, 3712506.965107911, 3723142.1875, 3726103.6349312384, 3762955.222807222, 3797096.875, 3820524.729607486, 3826276.16807847, 3872027.6113171913, 3884398.3207437466, 3884919.767259732, 3885452.7267197813, 3885659.161838754, 3902216.806488421, 3913460.59765134, 3915637.5, 3936908.4692672975, 3938970.3125, 3939964.060163133, 3941054.489695921, 3961653.016231831, 3975156.25, 3981928.125, 3982178.125, 3993896.408965633, 3994101.5625, 4001353.125, 4009114.238987515, 4010239.289713599, 4030846.528966908, 4031901.825188424, 4032487.5, 4032945.1694876784, 4033390.209280983, 4033421.879270754, 4033463.7567120395, 4034100.0, 4055786.6255111163, 4064321.875, 4114020.568215655, 4150107.4196605645, 4152865.6315117194, 4158169.009052391, 4159761.657308558, 4163182.211265251, 4166100.0, 4225776.5625, 4229936.181232442, 4230040.324134154, 4230405.200682941, 4235815.625, 4237763.580854493, 4243143.75, 4288638.63867691, 4352953.125, 4413239.507795923, 4413367.1875, 4415984.375, 4426028.413967629, 4438371.96159023, 4442208.8312921375, 4550246.8161579985, 4581360.9375, 4628831.967682935, 4631144.262734529, 4807524.402439493, 4851715.236723156, 4870536.475586293, 4870548.4375, 5103179.6875, 5103212.1806816105, 5127706.031124526, 5158385.255712772, 5162192.385135441, 5180878.633369713, 5182245.3125, 5182571.7826772835, 5231343.75, 5234915.523215494, 5254635.894210008, 5254958.4819339635, 5255029.743597565, 5297490.4244664, 5323109.864152733, 5332784.98133224, 5347529.6875, 5353637.876943721, 5388541.376254433, 5425157.8125, 5435883.235846644, 5459179.019583306, 5491586.152625618, 5493132.0542102, 5496503.050739814, 5506957.488482112, 5528639.561187168, 5529460.9375, 5529510.344000784, 5540603.125, 5547964.305152279, 5575296.247639252, 5586567.1875, 5588287.402888211, 5588698.31936236, 5592578.206826016, 5599790.736178371, 5602912.5, 5611620.3125, 5615875.59043002, 5619590.4480440775, 5634122.541040461, 5651770.3125, 5657095.3125, 5662261.178805611, 5662776.838952261, 5663234.375, 5663643.75, 5664843.494705099, 5668101.5625, 5672075.0, 5684799.065607875, 5693459.311165764, 5699541.8840908585, 5702560.48185341, 5703085.929832089, 5708774.687034116, 5721143.724861682, 5721889.896010103, 5722787.017749442, 5725018.570310721, 5725054.193572801, 5725098.1129536955, 5727254.6875, 5731997.354404911, 5732638.842651878, 5734528.909697869, 5735370.976132099, 5748006.172987499, 5748139.928711572, 5757378.125, 5767495.3125, 5770779.6875, 5792225.93156505, 5793158.490419967, 5794981.25, 5795145.16773106, 5797087.5, 5798862.660064449, 5798887.145644416, 5799278.724822274, 5799318.323126148, 5799694.861487116, 5809691.45687851, 5828261.16075703, 5895673.4375, 5918734.362814461, 5918760.0940267965, 5923494.152609036, 5938124.849589757, 5939167.1875, 5939177.365944702, 5942752.553304322, 5943733.9330655895, 5943736.775917746, 5953137.456171514, 5956570.749328689, 5957081.25, 5963517.1875, 5982216.546066054, 5984311.464415384, 5991792.1875, 5992664.272918509, 5995363.435931921, 5999517.1875, 6008903.070631648, 6009427.310904153, 6010904.6875, 6017197.986544556, 6034917.717815625, 6041855.082709223, 6044779.6875, 6049225.907119256, 6063467.238149622, 6063501.322930458, 6063962.5, 6068782.394223296, 6069147.863263571, 6082168.75, 6104385.814761493, 6106232.99642256, 6111286.315577066, 6114246.828538883, 6122865.443180077, 6129671.96353833, 6134722.914212406, 6143456.455361777, 6168115.625, 6168179.975464487, 6168433.195944291, 6168545.952017126, 6168553.396167251, 6168760.9375, 6168830.594443421, 6168886.61115216, 6169049.088153943, 6169421.417500457, 6169439.0625, 6169457.201815729, 6169683.727326899, 6170004.6875, 6170025.594121746, 6170067.857229244, 6170310.9375, 6170390.44046482, 6170599.996436944, 6170724.134205787, 6170823.808735778, 6170881.782907453, 6170905.158751636, 6170923.284280276, 6170970.547950847, 6171221.522936646, 6171400.0, 6171695.524004028, 6171806.909758805, 6171809.318823435, 6171920.3125, 6171932.002530886, 6172236.180955243, 6172262.878035441, 6172823.259751082, 6172835.003111421, 6172945.71344548, 6172975.885303863, 6173570.810178215, 6174270.932723623, 6174296.693424136, 6174917.029831907, 6175268.663753039, 6175680.834904237, 6176187.152836531, 6176303.17381416, 6176416.959436292, 6176882.8125, 6178002.138459696, 6178472.360816199, 6183538.2825651495, 6183610.9375, 6184319.358736967, 6184975.592113054, 6184979.589288939, 6185139.797259597, 6185147.770394599, 6188169.410126146, 6188375.0, 6188431.349862031, 6188622.073724331, 6188922.679180914, 6189129.6875, 6189287.339658472, 6190483.597889793, 6190762.802681458, 6192153.125, 6192800.158471525, 6192896.757743067, 6196061.906876621, 6197973.4375, 6199364.8629861, 6200633.453210255, 6200750.0, 6202683.877535001, 6206045.2833332, 6213831.940190433, 6214084.996370503, 6214327.62130414, 6215243.17354411, 6222753.34210618, 6223271.844459257, 6223909.231066855, 6226215.625, 6226663.69200748, 6229277.723711751, 6236048.503975297, 6238881.25, 6255467.969877595, 6255567.6022917, 6257018.503816348, 6275139.037226955, 6280901.641601818, 6281458.309373188, 6282499.055486105, 6284395.3125, 6284963.546098167, 6293032.1809633225, 6293167.310569937, 6294545.3125, 6294934.375, 6297865.625, 6314206.466443803, 6314229.9286857955, 6320936.60262286, 6322154.6875, 6324604.934149649, 6325667.45776564, 6326431.607049543, 6327062.291009559, 6327438.314523603, 6328545.028895937, 6333502.63925412, 6333726.703141009, 6334595.418712242, 6341517.1875, 6341517.1875, 6342736.91433257, 6343216.343284222, 6352333.163496753, 6352449.645394629, 6356034.400701635, 6357018.14388144, 6359459.594267469, 6359909.524611844, 6372235.693522078, 6372250.9315180965, 6379688.136603065, 6380125.559323895, 6380361.68372729, 6380848.134776742, 6380892.502482677, 6383952.033230953, 6384264.817979969, 6384894.176006553, 6385031.460103849, 6388577.4042513715, 6389329.597337091, 6390839.97471208, 6392848.4375, 6400473.4375, 6404515.7228650255, 6406638.2133481065, 6408887.94067774, 6409079.6875, 6418838.526944411, 6437879.5174346175, 6455812.054296289, 6478237.5, 6492921.48951693, 6493946.47721666, 6495141.530244791, 6495521.875, 6498230.995131385, 6498282.816898996, 6498863.948883823, 6499458.240453318, 6503246.1421655845, 6506231.288394011, 6510205.977217044, 6518370.385179624, 6518913.6218615575, 6523011.928787211, 6523100.4794540815, 6524136.669688698, 6524432.8125, 6524618.655373994, 6524700.0, 6525057.565228643, 6525346.611490402, 6525477.715758718, 6526779.46760859, 6527417.889690366, 6528540.625, 6531293.75, 6531369.524696508, 6533145.3125, 6533447.820649639, 6533724.856688195, 6536867.473677163, 6538491.2050128, 6539705.958046233, 6539982.8125, 6540688.484151152, 6541810.9375, 6542509.0114661865, 6543468.072929659, 6546218.05750955, 6547419.214129392, 6548287.320547718, 6550300.0, 6551490.384936709, 6551741.447093003, 6552222.562545205, 6552691.779448686, 6553056.585482405, 6553195.813737495, 6553668.75, 6553721.875, 6554018.858774063, 6554171.289584761, 6554419.798106774, 6558371.875, 6558820.353694797, 6558826.371126871, 6558993.962713126, 6560621.728817492, 6564634.649836506, 6577616.416049024, 6579222.311434491, 6579244.97782936, 6580073.429356187, 6580607.585183076, 6581203.125, 6581437.5, 6582081.25, 6582360.595853248, 6582365.411836888, 6584707.8125, 6584954.377239079, 6584976.173486435, 6586311.797051587, 6588220.619853273, 6588238.069209984, 6588541.238923618, 6589004.349867848, 6589541.713795526, 6590485.9375, 6590669.443520147, 6590753.125, 6591279.6875, 6591463.976188669, 6592010.9375, 6592190.3733211355, 6593551.5625, 6593618.595074691, 6595466.303858094, 6595551.5625, 6596012.5, 6598299.247939451, 6598482.308024777, 6602143.125563747, 6604635.368500486, 6605682.8125, 6606493.555026962, 6609586.018285665, 6610191.391183099, 6633384.375, 6642696.69013064, 6643897.690291394, 6644275.012900058, 6646960.5136244865, 6648905.458030953, 6650103.125, 6650313.049498745, 6650389.861188027, 6650460.9375, 6650626.337290706, 6650737.449147561, 6654475.0, 6654649.37421381, 6655573.369015514, 6657951.5625, 6661364.303021182, 6663726.5625, 6663729.07423024, 6664465.625, 6665407.0780171, 6665879.6875, 6666880.787473992, 6673307.52384591, 6673658.265956089, 6675996.271972227, 6676145.179649653, 6676404.919711641, 6676685.588597775, 6677091.866115544, 6677286.905334087, 6677635.160441829, 6677790.070209334, 6678154.41971614, 6678161.460453207, 6678291.439697115, 6678975.0, 6679225.410137464, 6679468.116247386, 6679623.411419216, 6679825.934860614, 6680064.0625, 6680118.75, 6680218.75, 6681612.5, 6681787.5, 6682003.033327333, 6682423.4375, 6682441.9559642635, 6683474.469743691, 6683523.4375, 6684383.744120232, 6684772.97209669, 6685349.816975228, 6685443.766094408, 6685709.734755256, 6685962.386599987, 6686499.040686131, 6686512.5, 6686615.663985457, 6686720.9817839, 6687271.612342421, 6687687.5, 6687799.218250811, 6688269.224446102, 6688587.5, 6689100.0, 6689165.625, 6690423.4375, 6690928.021719147, 6691363.167966394, 6692372.585094, 6693856.66047429, 6694520.7403101185, 6694998.4375, 6696076.971625148, 6696289.0625, 6696318.773866354, 6696356.787665582, 6696548.238885836, 6696612.040244078, 6696911.814910629, 6696991.289392524, 6696995.3125, 6697009.375, 6697104.355187154, 6697133.930562778, 6697168.703439226, 6697169.198798638, 6697178.993022638, 6697281.137792915, 6697478.125, 6697488.480799501, 6697779.566565165, 6697930.158324159, 6697988.707444143, 6698087.423517947, 6698117.1875, 6698159.594640224, 6698202.694221716, 6698309.347908881, 6698326.6347727785, 6698361.551222627, 6698470.153281269, 6698598.281704831, 6698640.661924895, 6698691.09332808, 6698785.9375, 6698808.520477945, 6698935.513747371, 6699082.947368668, 6699249.703999071, 6699282.700311407, 6699426.376297805, 6699448.123435721, 6699704.261354318, 6699763.845096066, 6699829.6212622225, 6699960.559272894, 6700171.004306002, 6700356.042466801, 6700535.215942664, 6701381.742754674, 6701565.543103974, 6701860.8773718, 6701922.702132685, 6702037.365849681, 6702560.912254406, 6702661.320656663, 6702687.124433164, 6702932.8125, 6702956.309101511, 6702974.035956672, 6703054.477167038, 6703251.65360924, 6703384.375, 6703533.527485443, 6703609.783264074, 6703806.041411537, 6703867.1875, 6704195.52222365, 6704198.169430286, 6705046.544819573, 6705449.7500506565, 6706293.319320697, 6712904.423520549, 6713145.3125, 6713507.8125, 6713742.1875, 6713883.022680939, 6714203.125, 6714280.992418486, 6714396.499802365, 6714499.565278045, 6714627.111370213, 6715237.5, 6715947.972487055, 6716435.726248461, 6716499.00921359, 6716640.3248623535, 6716790.625, 6717184.375, 6717708.8573571155, 6717771.514022553, 6717925.016335527, 6718127.732317167, 6718166.059561982, 6718295.398897999, 6718351.776983276, 6718464.492910519, 6718845.3125, 6718908.731855882, 6720569.204905995, 6721443.75, 6721464.0625, 6722348.057553397, 6722996.096987973, 6723474.1061666375, 6723659.326804229, 6723887.5, 6723940.162935111, 6723982.378784574, 6724271.875, 6724817.475278706, 6724977.073152157, 6725074.231927758, 6725701.860191764, 6726701.297540461, 6726973.617425026, 6727053.125, 6727732.184388627, 6728072.59884629, 6728585.934727195, 6728785.2502413085, 6728786.951181946, 6729734.3527176585, 6730527.539233558, 6731059.375, 6731399.1114050215, 6731529.6875, 6732112.762390578, 6732842.098058991, 6733417.64079042, 6733853.125, 6733962.5, 6733981.25, 6734095.3125, 6734499.935517522, 6735332.021895943, 6735457.8125, 6735485.419898771, 6737753.125, 6737797.678813763, 6738120.5995462695, 6738731.464138122, 6738837.061419914, 6739282.8125, 6739796.704781511, 6740384.375, 6740490.311950985, 6740873.4375, 6740975.095297266, 6741094.654382372, 6741378.125, 6741395.3125, 6741400.0, 6741789.392071711, 6741864.0625, 6741880.041638504, 6742241.088567344, 6742264.703376748, 6742275.963202651, 6742351.926213874, 6742370.67422439, 6742427.233405858, 6742504.6875, 6742539.941112615, 6742554.305263311, 6742578.125, 6742700.0, 6742710.9375, 6742785.9375, 6742915.415006724, 6743133.0314003, 6743326.81031959, 6743596.224567803, 6744372.420876799, 6744399.923989304, 6744420.091212665, 6744657.704316512, 6744663.024199717, 6744782.33186365, 6745063.924910622, 6745590.954057016, 6745827.813893275, 6746591.604013953, 6746702.363892793, 6747382.273947307, 6747516.492290726, 6747536.8245673, 6748251.5625, 6748342.240471532, 6750922.21728646, 6754151.6549051935, 6757010.9375, 6757622.152004221, 6759361.192106864, 6759387.5, 6759613.007719982, 6760886.093734324, 6764547.294192466, 6765734.315296576, 6765824.73352199, 6767168.899204767, 6767851.481460881, 6769919.212270287, 6770423.4375, 6770763.138417192, 6771173.4375, 6772081.25, 6772294.55674657, 6772549.134542659, 6772952.0181495715, 6773195.524769279, 6773534.7995434515, 6773847.09287921, 6776771.875, 6779069.938546854, 6779312.676024184, 6779593.263531282, 6779745.3125, 6780202.171925921, 6780254.721794897, 6782812.5, 6783849.565099701, 6784854.6875, 6784895.085792612, 6785370.573849969, 6785496.491666061, 6787318.13115237, 6788007.8453638805, 6788205.092754135, 6788235.73923152, 6788417.1875, 6788957.8125, 6789012.982920133, 6789028.295002683, 6789048.75695314, 6789088.230758102, 6789095.3125, 6789096.565436561, 6789278.750446719, 6789464.0625, 6789474.14510764, 6789488.302235257, 6789507.247537274, 6789607.230602096, 6789723.4375, 6789821.875, 6789929.6875, 6789964.958581825, 6790085.652314179, 6790117.1875, 6790168.75, 6790188.563904369, 6790299.748423406, 6790329.6875, 6790345.126117608, 6790507.364317511, 6790556.25, 6790592.1875, 6790598.4375, 6790673.92233387, 6790674.27469168, 6790746.875, 6790826.186303918, 6790975.0, 6791029.54946022, 6791065.517031516, 6791230.532848758, 6791295.279629334, 6791397.172899567, 6791443.1591218375, 6791447.290441303, 6791528.142672102, 6791531.25, 6791657.8125, 6791811.556797684, 6791874.509335149, 6791963.9817710575, 6791986.971862682, 6792081.25, 6792108.96457465, 6792148.076742981, 6792170.299325505, 6792204.001738035, 6792321.606582735, 6792457.111445632, 6792466.417346478, 6792576.775097427, 6792582.022462102, 6792759.793324413, 6792840.558870315, 6792908.608932102, 6792910.56165074, 6792926.805825783, 6792936.628943489, 6792941.465007125, 6792948.730855316, 6792968.458840592, 6793013.498910216, 6793014.0625, 6793054.920726702, 6793112.505833429, 6793140.626521251, 6793216.763948477, 6793264.0625, 6793275.59915558, 6793338.785092926, 6793439.920255238, 6793530.434403713, 6793596.442275522, 6793624.990951578, 6793629.6875, 6793654.637810081, 6793847.5131272385, 6794001.5467611505, 6794037.9967218805, 6794191.398552758, 6794201.312197534, 6794249.107383636, 6794486.523580228, 6794603.228988795, 6794723.838825198, 6794883.751242007, 6794909.149247015, 6794981.25, 6794990.322626914, 6795006.550234959, 6795072.835339013, 6795075.0, 6795102.205469065, 6795110.36957047, 6795151.208866172, 6795178.353000602, 6795276.250986621, 6795643.75, 6795653.6473270785, 6795668.428123479, 6795685.056184911, 6795788.380536872, 6795834.37311196, 6796072.456192361, 6796096.016690289, 6796203.025640346, 6796585.014362903, 6796596.875, 6796633.110562762, 6797248.3933169115, 6797567.1875, 6797755.790618484, 6798512.101698738, 6798548.266704461, 6799269.432280187, 6799354.6875, 6799516.834517345, 6800463.801266748, 6800474.350904038, 6801656.975845303, 6802697.9709722055, 6803525.0, 6804293.507937802, 6804644.482401243, 6804653.125, 6805107.8125, 6805531.515668147, 6805569.260647831, 6805677.390170139, 6805803.011237622, 6805949.306007987, 6805990.625, 6806027.716826074, 6806031.683741408, 6806409.375, 6807237.431416868, 6807290.650747284, 6807728.125, 6807766.699116531, 6807835.594232297, 6808091.811347217, 6808921.875, 6809693.130841496, 6810062.24300519, 6811876.626213517, 6812432.679342362, 6812832.8125, 6813100.0, 6813442.473233038, 6813506.247878048, 6814792.1875, 6815263.371494518, 6816293.562419405, 6817709.479494678, 6817801.5625, 6817930.126440075, 6817956.314310605, 6817993.33970956, 6818053.559184595, 6818301.326248895, 6818532.175703478, 6818612.223399634, 6818792.458162657, 6819184.375, 6819626.601340378, 6819940.534192546, 6820033.929367972, 6820292.093494457, 6820298.927139468, 6820323.298221406, 6820437.5, 6820519.662259029, 6820781.818778154, 6820788.997453094, 6821097.002508309, 6821103.662447104, 6821167.1875, 6822641.403627117, 6824555.440452379, 6826571.875, 6828385.555568847, 6829143.75, 6829494.465339784, 6829622.089016794, 6829880.683299864, 6830016.055768978, 6830082.231415349, 6830225.0, 6830401.5625, 6830451.693525768, 6830492.215649833, 6830617.555195514, 6831228.396422522, 6831279.132081932, 6831664.783686392, 6832625.118233246, 6833125.596109524, 6835411.206814805, 6835538.855643441, 6835991.690863229, 6836290.19174164, 6836337.017060464, 6836589.0625, 6836957.1388307875, 6836964.917815085, 6837304.569836375, 6837897.823602471, ...], [25.3919803678869, 10.612834658250108, 21.02721283643455, 23.17578076801017, 29.190769557076955, 10.975072853542471, 11.087141402743576, 80.96389853690687, 24.806772951412565, 9.10841651059081, 17.342143564965784, 12.259316153256506, 67.39328439153195, 38.28152999052187, 7.5170340140673355, 16.976378753695275, 7.616604529282244, 21.516003270099258, 8.506980400894713, 31.86941757451286, 63.90936571097746, 84.7464235623211, 9.080606701264792, 12.101899891549229, 6.313534978040318, 19.392433250866862, 19.510066950848305, 78.48301289409018, 18.13774099428506, 69.45839631599551, 8.835535574509155, 52.70320355112371, 15.245617131439737, 31.46533163498564, 58.49047431496288, 29.456069069771047, 25.374753612991856, 17.855565546436, 36.68320675771872, 118.43049927682337, 64.09905669844952, 48.075397391130366, 12.465678279106381, 46.332986612664534, 7.262274885232269, 19.578689744656927, 34.57096215781303, 19.543401344906137, 22.6151832184491, 21.3576842497441, 14.514411461700606, 7.417260132464429, 50.30101633253723, 33.981040783590004, 28.04762158324068, 23.25473468617206, 76.60433972649184, 70.59974612152664, 37.95091148871173, 6.0878562368479265, 35.70180695282821, 26.54504342776186, 37.93566059701009, 64.86009000427144, 64.0593435057968, 19.489397376647204, 61.809268808203775, 100.5398954152449, 9.485228992927649, 9.531210206717713, 95.76365636800469, 14.437197041254336, 63.36328863356824, 19.524186075300662, 42.887884787522424, 70.30506538788288, 13.891397854826806, 28.70372313820686, 7.872597107810299, 50.72361736676638, 16.014820810306162, 11.158060701229875, 18.646834125592015, 13.7925133622955, 12.47621957919838, 20.53936776650071, 132.08699640281876, 50.90911746951802, 15.959694904625865, 13.906651548965346, 14.396043307461673, 55.54784204781741, 21.678171165709877, 47.09914372002766, 62.790005424729635, 139.3858164859642, 16.962155982320496, 57.55152640146631, 44.38003887099242, 15.816242682195277, 111.88989315914523, 8.018563374668455, 14.721876095889687, 42.074165625088774, 42.14101833264979, 19.896357686718602, 20.57212465269878, 9.023341302244917, 148.45558547336472, 99.1721210544039, 44.43980323757187, 9.075247720111435, 50.95263826090248, 12.854300196300464, 48.716172329395924, 55.10366306783942, 82.26145684901348, 22.992967469280625, 38.79427797439516, 13.672206916943898, 8.263816758790705, 71.13383360997464, 5.818142698597648, 14.2285538822717, 5.64169080250461, 17.89651435678156, 168.2774544899929, 5.302874541070317, 13.907068999007956, 53.98765385740708, 11.86086017704195, 69.27906221399685, 11.481478054374543, 19.252945807958707, 87.97092699315832, 20.534832488345597, 5.851823879271972, 29.18352248042378, 23.22069293700749, 51.563487321525926, 8.419204167428651, 13.165359267710748, 87.78304244549827, 38.58584292957353, 26.389527219088812, 15.262841821075742, 47.42453717641799, 79.02699620435985, 61.35552807106179, 7.831721724581884, 34.86724444044667, 35.011218987246124, 257.00340937059735, 76.38159348432052, 15.948594159628254, 21.74741730652655, 71.80092632900296, 127.02844797713081, 10.750810023158628, 41.1733826864229, 76.92700610221479, 39.20158463757498, 16.33205139437532, 13.898763768407372, 8.973717213959171, 188.72204919398592, 13.869240335082559, 28.036834512671255, 59.786634170097784, 21.672006724891343, 41.26064115164492, 5.509579459008099, 10.65567879040581, 60.28974658066823, 49.53935453219003, 27.198154922340834, 34.90535676184688, 31.94994679558868, 56.47518013449212, 19.735600425166815, 102.45417461309054, 68.31988097693407, 65.03676955071981, 42.124761863950596, 89.59239592242318, 65.68161222775652, 38.857715045050114, 35.921977186851855, 32.08951503391674, 23.08039791793303, 20.234880980450697, 36.81275572256051, 8.061654464615167, 19.464540708841433, 6.522667641394699, 86.66622596684113, 92.45528306931277, 6.916078272662937, 33.68610539038077, 9.207380614933061, 50.2037264440317, 18.19234814911687, 27.16595915201807, 13.487937896031829, 30.218843608867715, 27.686306283646527, 11.886818223623928, 33.80434997632676, 47.27323145949734, 20.189428362446673, 12.064974414224581, 33.24833124505346, 29.693877327102477, 20.317062227628945, 52.20673997733861, 14.738254378720052, 35.659376754065974, 46.86517918564531, 7.007748784091028, 5.854289528749391, 16.69724679970991, 55.39232699336045, 147.50068979449554, 39.03228672623568, 24.554619238039262, 32.513470933364026, 30.102463717557544, 42.42883901938322, 60.53632459131279, 26.313955802398162, 11.427896898346125, 124.39793061449366, 72.20461010156438, 18.09753578876137, 15.290067562784238, 13.262716106569425, 39.9488573273703, 32.662010581581164, 182.48613878111078, 28.105741471314495, 8.65642866265095, 21.237746503440135, 36.68618082268334, 30.324563197183522, 9.974330788399053, 5.263728136875633, 8.058606220848477, 69.4520025354465, 109.00292635512082, 82.11448741435694, 44.66213605317809, 17.82084872973506, 36.4089900427369, 47.06327778062601, 25.346904824059408, 5.341799604161583, 84.57682473192006, 37.20165399928377, 19.93223326882393, 36.17219403191904, 14.387988793829782, 15.921900533435268, 9.050457327987454, 92.60529017828729, 9.51688255064913, 22.64850272334064, 68.47676785425602, 37.69267187837891, 79.86536269572171, 24.822775644016037, 8.497145193744233, 25.448922548766266, 18.033604335580076, 9.69511075236385, 48.707545448625, 9.79093205728249, 5.649303299218618, 97.93092307677568, 7.547190183088782, 26.927981645260683, 48.783283683939416, 32.71474398305717, 11.204873430305819, 39.91735402221213, 68.64925422434717, 63.13376032205274, 9.778997865546286, 10.094148984710085, 86.76081888645786, 101.34984719743572, 80.78873234951578, 63.84724280644673, 12.509930104657585, 5.373569235028412, 28.19247476556179, 56.25707781534951, 5.070716758658465, 11.453213605750413, 65.78882194982106, 31.054447598692924, 5.925562601370915, 25.16793835073652, 21.28197809949542, 70.60795309415252, 16.06859820022038, 17.272264285770195, 59.36307060466599, 57.75582056774624, 27.458178640971852, 40.86662272807128, 73.67721788090809, 40.35988059750548, 14.831492512297014, 62.11075714777752, 9.918568230548397, 36.912974355450935, 61.69801332443329, 115.4713409364177, 42.84056189228957, 85.71726739030022, 62.33101508158697, 28.85625284521477, 8.085188190429681, 59.32525691060932, 43.434716688292134, 24.709685860961102, 11.844481026681212, 28.423197558725658, 6.758471468228178, 28.167590671604984, 8.56805520032271, 36.86735038727034, 76.232519194742, 6.409077095033659, 31.421923727941596, 27.77692900739583, 78.95254598515844, 39.425947552216556, 43.98297091516708, 15.836081369622644, 9.544020072638467, 25.342427848885222, 110.6626492053802, 5.298767381591001, 11.578169625122323, 108.769919378765, 24.98730758631006, 38.28483120336321, 6.232019869649237, 21.6364810054847, 15.506105740499992, 23.171774921825932, 32.57082703910209, 51.565687875401096, 74.03225526310277, 7.323998473388546, 138.70784849234016, 71.86528698223154, 67.41506030493493, 8.866587495762799, 25.748332756847248, 15.54416521057361, 24.493732401311632, 56.18623691277006, 5.6502608504842335, 8.606296856097437, 12.535976452927127, 5.236750952154318, 11.52308463311332, 20.724302858573665, 109.3043169903692, 11.86596736654364, 15.756468736102663, 5.879003461655391, 26.860451393033266, 12.9324634799196, 31.125764556838746, 56.19815250120119, 5.821257101685136, 18.597880797908314, 11.89426200328695, 57.55619958093332, 13.229711172813156, 52.4862375748639, 22.052391393690186, 31.27413993059296, 7.0236772970618375, 8.086858220296293, 7.381644281313502, 46.718832299706726, 64.90438427019207, 16.17227284399097, 9.237147104865311, 126.35119957592596, 10.14755754666348, 41.75894997685753, 52.92128164295073, 30.547479760902092, 44.73502438230318, 29.44306103359697, 17.149427856395455, 18.728939352440516, 79.49563126551408, 86.75679974891187, 160.57122912044815, 78.99733446938748, 20.45165816466851, 13.581681178637176, 36.60032471451498, 22.992093351472644, 69.50885185559135, 82.91982579387006, 29.334566179535464, 54.48064437907119, 10.28339804636685, 105.2311782226457, 16.15733443607123, 25.51264597514993, 13.628315073809258, 29.89848947299121, 10.329905978556237, 97.27566130394015, 92.36043916972025, 19.891610605977032, 12.82806348076838, 9.757313578652028, 25.423222901525083, 49.23818480840446, 113.76966775975251, 8.775075165284365, 8.687020434237843, 33.13412598356006, 128.60385184825682, 12.01334266336475, 61.19846838764628, 54.97083252788911, 11.583090597619748, 20.681351919407163, 21.350711738638555, 86.7006035471549, 6.771758751966486, 25.270699294951076, 11.47730651568131, 18.53874243993191, 16.10387279380873, 7.916808948482046, 11.886056701923778, 6.698482176068797, 11.115001313433924, 13.591053499034096, 36.825652000129324, 40.687337014118725, 95.94679520122565, 38.16744306345066, 39.97932285348079, 82.04526482216573, 126.5367569100938, 61.280906749336, 8.800227808863847, 21.946478492807636, 36.92189694218313, 17.943985962522444, 36.320027284322876, 7.440444568275363, 75.10533102526787, 18.46250720869128, 141.82452893527935, 96.15044793256892, 59.988630062584534, 73.19251878553906, 14.061801068674358, 196.8880657855516, 57.2253639879429, 20.153137591046058, 39.82650896619888, 45.01937177533879, 25.607811336451178, 116.519928027189, 5.5804082715251315, 28.625594050921755, 35.27833441834236, 15.714796611540336, 28.143554912337628, 37.94948360230578, 71.13070027622561, 9.179829152179494, 6.937973147804874, 257.7547776793374, 22.287650591066463, 94.97666059934213, 38.058499899873226, 34.158990091674646, 19.211421290108444, 42.813787368345565, 9.147969132166912, 27.557239947595306, 87.30926591256234, 7.981231369726936, 59.06957578708891, 53.937646568911795, 7.186146028043186, 31.32398033269707, 13.026174908041023, 75.19503028042887, 156.86061740870525, 117.23826263999484, 13.429863733680584, 13.94470707656398, 11.919079976743992, 6.648806101445085, 108.08331208227004, 9.535785221738237, 23.14555538674494, 35.72079002956255, 20.657216046957515, 10.097382771411551, 20.96340864060952, 23.438890755201406, 9.816536223441695, 25.160053595102177, 107.96990967197783, 42.7501659082473, 58.23892174647551, 36.88707515428452, 10.270494623315175, 68.50366911885463, 40.43250924281624, 31.903480119303683, 45.37200204923131, 67.02333197243738, 7.570414378894573, 57.445032287475414, 24.66653024794826, 13.243937985472641, 63.93249290975841, 6.964932597658282, 13.42180756117582, 37.81906739580411, 5.165736581716777, 143.88795110752355, 7.562731383488584, 12.222514205154487, 28.87127959787046, 6.092162765653, 12.364329534905615, 24.239754066796856, 73.79892319664357, 30.278534959594054, 78.07820338179596, 80.14311749422913, 50.331445089647374, 36.59359694283018, 223.6904945477553, 7.094564365303025, 12.361452970484265, 20.856795323591037, 79.89465031901355, 7.765662393831677, 38.60170456696604, 99.2419684312862, 74.528326521461, 22.66557500745918, 17.48170475220529, 20.70354253107118, 21.90417526882141, 5.3729140036086065, 106.5798383394541, 112.65552011067763, 45.833915464936894, 49.7534289214247, 73.49956350340719, 19.53905574342696, 11.910015469633601, 8.805955512585966, 7.09226493537984, 37.08415992338616, 34.09087306604135, 63.2752236905885, 7.782891422427186, 48.67231281425504, 14.657794414581277, 53.47584930370011, 31.497165057925574, 27.88774468849178, 5.705036023006545, 118.19685046292265, 17.942724813509777, 136.11364239217485, 6.732796813358417, 5.816717453472905, 7.781886901984104, 93.38064551941605, 12.449741193842579, 22.288992693678736, 101.79155263946534, 26.782641989240197, 26.488017054785324, 112.83671509080179, 92.17675295126205, 22.262892521236317, 6.065779189127467, 5.0971547743497005, 7.025454271798839, 88.64592214818094, 14.205395596664925, 10.160492299025957, 55.34352041604713, 14.638285172338596, 88.78286058680153, 72.06824048400365, 11.811425062746572, 28.034792554306936, 16.63515166761143, 20.563085147986936, 81.89821269127042, 155.92077196214763, 5.421856133988418, 17.670832676289336, 7.636526119363319, 46.93750154670225, 55.51240418629721, 11.832031226627706, 34.17601116179492, 29.03703661865625, 18.373418567916687, 24.167359310639018, 5.0920126335254565, 42.61587864386085, 37.6288177400847, 24.22202347639329, 34.79494540434483, 59.61216344572149, 62.151679014558276, 22.847005648090228, 73.73345365969548, 17.334302657705173, 22.835479571342443, 31.36407316999135, 7.8145984192831195, 77.85402776681336, 8.966901101543487, 355.47669134172196, 53.9169996173309, 47.817070311616064, 42.49344073062133, 28.82817659954601, 155.25617988881902, 7.02968813624511, 74.51886729715719, 22.634891791071095, 38.032748430831504, 11.72556316040373, 17.295504495527236, 11.87443851521456, 44.687969192886555, 20.174875984663657, 16.89974810874233, 32.957307490531385, 64.26091575735742, 24.346112748151143, 19.105696660641286, 38.27273109596173, 9.290980719718558, 39.06118315163968, 13.431156151658762, 10.51131162073298, 53.75137556587579, 70.39502314251102, 9.804045009974223, 12.647293086559191, 56.26577921174359, 81.73404700988768, 9.48831923606021, 52.4735959578717, 6.190973884597351, 7.887849011253973, 24.550873176005737, 6.0194319378467664, 21.019555480116782, 14.85725431869989, 53.27057674655126, 76.0693144243993, 18.331091959518403, 88.26457883897518, 117.9318030150477, 97.03310018599306, 7.775847524474678, 78.11918537458031, 116.48188854863503, 111.48847592439505, 59.40886469818588, 56.48928044263395, 10.082186952653348, 34.04557612611552, 16.033294126350285, 71.42605025622133, 31.196864986737232, 5.54717589331233, 103.78131012069551, 38.79262924172965, 32.85481597187869, 35.77166594309462, 42.22906164301985, 28.901734370641872, 111.55953588150342, 11.280002902147169, 7.96673292953599, 36.51851437991672, 126.22951512075275, 42.04259825894181, 16.36646817609169, 28.701667005494038, 16.488177933216647, 9.75675389313017, 7.852734473259451, 38.50814561111509, 48.44406932143146, 78.92649493741588, 5.566552464114002, 51.66691807847381, 40.11031019807422, 35.220127727654116, 94.63574962433213, 61.5244557788349, 30.327447597539127, 63.95884128210862, 10.814606333769337, 8.405830090991099, 9.550124153614549, 12.932102196552751, 12.103549029132672, 7.5759753341393665, 72.58655169335995, 123.17364760881861, 17.403317221123167, 99.39035268613537, 7.085747266637308, 7.72675170705582, 33.935953781819066, 5.670603129120361, 27.57067471426447, 21.927995712481277, 5.764271242480118, 107.28164498529786, 37.3103971546624, 7.135446230715533, 139.03386968804088, 5.9474933273375985, 29.576418274881487, 5.629554714688468, 34.301941637343404, 53.58041592312487, 174.40234593240027, 115.94933093250444, 41.5265424044169, 43.44802809379355, 71.93803467236908, 6.510737538918509, 5.808008299216884, 24.856818294433133, 52.8140857449186, 33.60647018261098, 65.26685524545246, 74.64852719706053, 6.012882162188802, 5.3663879426296415, 7.776793598965185, 15.817402885005242, 149.4175449513727, 200.55072623439182, 37.833245740834926, 6.430026185088813, 38.2749280453198, 82.57253707102923, 28.63376137476131, 5.7466732066224395, 15.917700576923789, 56.44210569234083, 22.16805228884862, 45.49087717355283, 33.74860187209067, 19.863622345343977, 22.741596721035826, 58.08053469346257, 15.068268344433159, 9.699307116423576, 10.831325109074704, 39.81525472977153, 72.94624615390732, 5.556986382188114, 9.479409361370841, 23.423294310552695, 7.327776528045783, 103.6079357934151, 23.629345818331597, 37.367636072476216, 97.96429856624894, 157.3512206345826, 5.148025785175995, 20.868648958882154, 102.36169028091857, 61.673118693032734, 52.82586113564387, 44.231963327964465, 5.883397522650156, 23.94183484251145, 63.47121898668703, 53.905049592571736, 10.428596055039502, 166.24546905477698, 77.7266620422633, 6.068929198110678, 20.09113692704072, 31.198667509257827, 57.931655945818605, 58.96710998105627, 63.68272447244789, 12.748615442419647, 59.16937330760995, 120.27266586015173, 102.866479881174, 101.18029869595995, 78.31284428033834, 7.9405558149706295, 27.890548273922743, 50.40736604599292, 142.37547188797808, 21.878123936533264, 5.4625255566995135, 184.98639761123047, 28.75701895127814, 39.86615058984787, 21.586731535163313, 54.681317556484096, 125.27281912622364, 38.66821035013282, 90.72671929531262, 48.51673610043227, 28.266790317929942, 7.954427497180376, 24.162728324228535, 97.23966660395728, 5.659435964525298, 5.829879922898663, 95.65497302021788, 16.818108502522897, 11.0258914956385, 10.109770883313148, 22.827925358919963, 15.95783329583088, 65.53876027126387, 12.755372942727206, 44.82210571693827, 9.096775644458509, 13.155198431012543, 30.308592968013297, 15.91179212581347, 15.939896410457463, 137.23696273784043, 22.29118954835244, 63.29767760903596, 7.288392156428206, 24.0436896412203, 10.179883506547338, 56.43047998596812, 22.19152948778274, 6.266055841032496, 68.95356408156167, 35.207702667173336, 44.32101605955641, 44.70496935880797, 36.29647806109364, 19.025298678168497, 24.40701796140831, 17.728303123502354, 17.771476780404836, 96.73434702059592, 33.93176423541986, 12.9994171581543, 223.4236389684646, 37.64830976389577, 13.90197542176353, 11.631828600509682, 124.66255680096143, 35.77490095491166, 12.307263287140323, 20.84121427669208, 5.909189458510443, 8.410943849906731, 23.604779881948314, 92.11490541792314, 17.39249019988578, 91.62808509685865, 9.982457021619927, 5.319084038312339, 6.26695985644094, 17.741643357287476, 12.441300313468464, 60.498589167850575, 18.10551886824933, 45.05143165613029, 148.55297717598143, 11.05934100735401, 53.879190366907075, 10.478322918751331, 6.218154108297724, 9.19104400353217, 39.21780129213066, 270.16473308809435, 127.60377024059886, 16.319762607258685, 7.384210735320006, 10.923939246209589, 5.899781724811629, 37.364680146447895, 61.46006927424334, 60.65865286259233, 42.13639364492724, 28.534662135753116, 11.570007736418898, 12.032184190375604, 7.93278992818438, 76.28680200752049, 8.806284126379817, 43.62196825308713, 115.3676996491081, 29.168691579133252, 120.53292660360358, 51.120330678533016, 33.17640413771673, 81.79052633569941, 21.609769340202387, 23.213354920822958, 32.702403856457124, 128.1580655354337, 20.381449168459586, 24.31606941065292, 6.497125479888176, 153.18172751158414, 96.42927410093009, 72.63587784491543, 16.155231620139443, 155.19181223598042, 69.69018798134866, 8.808307273643488, 25.301442977820273, 15.355335797428632, 67.27751198520033, 155.47503107637428, 25.28614551018149, 22.43724803385209, 5.048937461578282, 69.16570303916032, 10.259586749947488, 23.72971456647778, 9.571253101840256, 28.55751727777304, 11.188964413783543, 35.55239476441809, 22.053153874260495, 51.94990198011581, 23.518278686456085, 93.05334378308233, 65.03386888372647, 20.11477105947477, 58.777537805134685, 11.027533987593555, 127.73465852827277, 13.210730513716857, 58.465431361547864, 46.75054924149974, 12.551328383677584, 42.51347025053847, 22.757715083413945, 56.04072948771249, 72.44673454475253, 15.825214573773255, 20.852571687097807, 7.766842029121347, 5.437366490025765, 46.11402490922853, 30.82995137456378, 7.651325033160783, 48.21406419129407, 16.556403019009664, 5.724252584297483, 20.957532544365026, 12.479314584195428, 22.8103223135262, 12.207627437160298, 130.92638471803332, 21.483464850345477, 21.526715979480176, 22.18576315970191, 118.04624435863961, 36.510771901029685, 12.874308190312817, 16.241999421426947, 16.643808587516403, 20.427481305331526, ...])
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);
([2578060.287444584, 2593712.143579408, 2597438.7252792446, 2597935.591114684, 2736485.262040957, 2821538.9626044016, 2827851.536391568, 2883785.9375, 2887027.9034079155, 2942663.7864612574, 2980306.7635781835, 3025078.7455662573, 3082194.709423378, 3089747.204112324, 3131709.130199939, 3267731.697925656, 3270534.411806759, 3277608.87729286, 3334080.0822595945, 3358684.375, 3409826.5625, 3414670.3125, 3415184.0627151616, 3415302.1075700177, 3421084.7331579095, 3426524.260037038, 3428789.868068487, 3450562.5, 3500105.1183784665, 3516106.25, 3547508.7239270834, 3549741.948843576, 3551832.890062088, 3554603.125, 3577248.123987302, 3577248.4375, 3641966.2263333052, 3661592.78724112, 3676215.4551437874, 3677122.8025482837, 3705537.5, 3710796.875, 3712506.965107911, 3723142.1875, 3726103.6349312384, 3762955.222807222, 3797096.875, 3820524.729607486, 3826276.16807847, 3872027.6113171913, 3884398.3207437466, 3884919.767259732, 3885452.7267197813, 3885659.161838754, 3902216.806488421, 3913460.59765134, 3915637.5, 3936908.4692672975, 3938970.3125, 3939964.060163133, 3941054.489695921, 3961653.016231831, 3975156.25, 3981928.125, 3982178.125, 3993896.408965633, 3994101.5625, 4001353.125, 4009114.238987515, 4010239.289713599, 4030846.528966908, 4031901.825188424, 4032487.5, 4032945.1694876784, 4033390.209280983, 4033421.879270754, 4033463.7567120395, 4034100.0, 4055786.6255111163, 4064321.875, 4114020.568215655, 4150107.4196605645, 4152865.6315117194, 4158169.009052391, 4159761.657308558, 4163182.211265251, 4166100.0, 4225776.5625, 4229936.181232442, 4230040.324134154, 4230405.200682941, 4235815.625, 4237763.580854493, 4243143.75, 4288638.63867691, 4352953.125, 4413239.507795923, 4413367.1875, 4415984.375, 4426028.413967629, 4438371.96159023, 4442208.8312921375, 4550246.8161579985, 4581360.9375, 4628831.967682935, 4631144.262734529, 4807524.402439493, 4851715.236723156, 4870536.475586293, 4870548.4375, 5103179.6875, 5103212.1806816105, 5127706.031124526, 5158385.255712772, 5162192.385135441, 5180878.633369713, 5182245.3125, 5182571.7826772835, 5231343.75, 5234915.523215494, 5254635.894210008, 5254958.4819339635, 5255029.743597565, 5297490.4244664, 5323109.864152733, 5332784.98133224, 5347529.6875, 5353637.876943721, 5388541.376254433, 5425157.8125, 5435883.235846644, 5459179.019583306, 5491586.152625618, 5493132.0542102, 5496503.050739814, 5506957.488482112, 5528639.561187168, 5529460.9375, 5529510.344000784, 5540603.125, 5547964.305152279, 5575296.247639252, 5586567.1875, 5588287.402888211, 5588698.31936236, 5592578.206826016, 5599790.736178371, 5602912.5, 5611620.3125, 5615875.59043002, 5619590.4480440775, 5634122.541040461, 5651770.3125, 5657095.3125, 5662261.178805611, 5662776.838952261, 5663234.375, 5663643.75, 5664843.494705099, 5668101.5625, 5672075.0, 5684799.065607875, 5693459.311165764, 5699541.8840908585, 5702560.48185341, 5703085.929832089, 5708774.687034116, 5721143.724861682, 5721889.896010103, 5722787.017749442, 5725018.570310721, 5725054.193572801, 5725098.1129536955, 5727254.6875, 5731997.354404911, 5732638.842651878, 5734528.909697869, 5735370.976132099, 5748006.172987499, 5748139.928711572, 5757378.125, 5767495.3125, 5770779.6875, 5792225.93156505, 5793158.490419967, 5794981.25, 5795145.16773106, 5797087.5, 5798862.660064449, 5798887.145644416, 5799278.724822274, 5799318.323126148, 5799694.861487116, 5809691.45687851, 5828261.16075703, 5895673.4375, 5918734.362814461, 5918760.0940267965, 5923494.152609036, 5938124.849589757, 5939167.1875, 5939177.365944702, 5942752.553304322, 5943733.9330655895, 5943736.775917746, 5953137.456171514, 5956570.749328689, 5957081.25, 5963517.1875, 5982216.546066054, 5984311.464415384, 5991792.1875, 5992664.272918509, 5995363.435931921, 5999517.1875, 6008903.070631648, 6009427.310904153, 6010904.6875, 6017197.986544556, 6034917.717815625, 6041855.082709223, 6044779.6875, 6049225.907119256, 6063467.238149622, 6063501.322930458, 6063962.5, 6068782.394223296, 6069147.863263571, 6082168.75, 6104385.814761493, 6106232.99642256, 6111286.315577066, 6114246.828538883, 6122865.443180077, 6129671.96353833, 6134722.914212406, 6143456.455361777, 6168115.625, 6168179.975464487, 6168433.195944291, 6168545.952017126, 6168553.396167251, 6168760.9375, 6168830.594443421, 6168886.61115216, 6169049.088153943, 6169421.417500457, 6169439.0625, 6169457.201815729, 6169683.727326899, 6170004.6875, 6170025.594121746, 6170067.857229244, 6170310.9375, 6170390.44046482, 6170599.996436944, 6170724.134205787, 6170823.808735778, 6170881.782907453, 6170905.158751636, 6170923.284280276, 6170970.547950847, 6171221.522936646, 6171400.0, 6171695.524004028, 6171806.909758805, 6171809.318823435, 6171920.3125, 6171932.002530886, 6172236.180955243, 6172262.878035441, 6172823.259751082, 6172835.003111421, 6172945.71344548, 6172975.885303863, 6173570.810178215, 6174270.932723623, 6174296.693424136, 6174917.029831907, 6175268.663753039, 6175680.834904237, 6176187.152836531, 6176303.17381416, 6176416.959436292, 6176882.8125, 6178002.138459696, 6178472.360816199, 6183538.2825651495, 6183610.9375, 6184319.358736967, 6184975.592113054, 6184979.589288939, 6185139.797259597, 6185147.770394599, 6188169.410126146, 6188375.0, 6188431.349862031, 6188622.073724331, 6188922.679180914, 6189129.6875, 6189287.339658472, 6190483.597889793, 6190762.802681458, 6192153.125, 6192800.158471525, 6192896.757743067, 6196061.906876621, 6197973.4375, 6199364.8629861, 6200633.453210255, 6200750.0, 6202683.877535001, 6206045.2833332, 6213831.940190433, 6214084.996370503, 6214327.62130414, 6215243.17354411, 6222753.34210618, 6223271.844459257, 6223909.231066855, 6226215.625, 6226663.69200748, 6229277.723711751, 6236048.503975297, 6238881.25, 6255467.969877595, 6255567.6022917, 6257018.503816348, 6275139.037226955, 6280901.641601818, 6281458.309373188, 6282499.055486105, 6284395.3125, 6284963.546098167, 6293032.1809633225, 6293167.310569937, 6294545.3125, 6294934.375, 6297865.625, 6314206.466443803, 6314229.9286857955, 6320936.60262286, 6322154.6875, 6324604.934149649, 6325667.45776564, 6326431.607049543, 6327062.291009559, 6327438.314523603, 6328545.028895937, 6333502.63925412, 6333726.703141009, 6334595.418712242, 6341517.1875, 6341517.1875, 6342736.91433257, 6343216.343284222, 6352333.163496753, 6352449.645394629, 6356034.400701635, 6357018.14388144, 6359459.594267469, 6359909.524611844, 6372235.693522078, 6372250.9315180965, 6379688.136603065, 6380125.559323895, 6380361.68372729, 6380848.134776742, 6380892.502482677, 6383952.033230953, 6384264.817979969, 6384894.176006553, 6385031.460103849, 6388577.4042513715, 6389329.597337091, 6390839.97471208, 6392848.4375, 6400473.4375, 6404515.7228650255, 6406638.2133481065, 6408887.94067774, 6409079.6875, 6418838.526944411, 6437879.5174346175, 6455812.054296289, 6478237.5, 6492921.48951693, 6493946.47721666, 6495141.530244791, 6495521.875, 6498230.995131385, 6498282.816898996, 6498863.948883823, 6499458.240453318, 6503246.1421655845, 6506231.288394011, 6510205.977217044, 6518370.385179624, 6518913.6218615575, 6523011.928787211, 6523100.4794540815, 6524136.669688698, 6524432.8125, 6524618.655373994, 6524700.0, 6525057.565228643, 6525346.611490402, 6525477.715758718, 6526779.46760859, 6527417.889690366, 6528540.625, 6531293.75, 6531369.524696508, 6533145.3125, 6533447.820649639, 6533724.856688195, 6536867.473677163, 6538491.2050128, 6539705.958046233, 6539982.8125, 6540688.484151152, 6541810.9375, 6542509.0114661865, 6543468.072929659, 6546218.05750955, 6547419.214129392, 6548287.320547718, 6550300.0, 6551490.384936709, 6551741.447093003, 6552222.562545205, 6552691.779448686, 6553056.585482405, 6553195.813737495, 6553668.75, 6553721.875, 6554018.858774063, 6554171.289584761, 6554419.798106774, 6558371.875, 6558820.353694797, 6558826.371126871, 6558993.962713126, 6560621.728817492, 6564634.649836506, 6577616.416049024, 6579222.311434491, 6579244.97782936, 6580073.429356187, 6580607.585183076, 6581203.125, 6581437.5, 6582081.25, 6582360.595853248, 6582365.411836888, 6584707.8125, 6584954.377239079, 6584976.173486435, 6586311.797051587, 6588220.619853273, 6588238.069209984, 6588541.238923618, 6589004.349867848, 6589541.713795526, 6590485.9375, 6590669.443520147, 6590753.125, 6591279.6875, 6591463.976188669, 6592010.9375, 6592190.3733211355, 6593551.5625, 6593618.595074691, 6595466.303858094, 6595551.5625, 6596012.5, 6598299.247939451, 6598482.308024777, 6602143.125563747, 6604635.368500486, 6605682.8125, 6606493.555026962, 6609586.018285665, 6610191.391183099, 6633384.375, 6642696.69013064, 6643897.690291394, 6644275.012900058, 6646960.5136244865, 6648905.458030953, 6650103.125, 6650313.049498745, 6650389.861188027, 6650460.9375, 6650626.337290706, 6650737.449147561, 6654475.0, 6654649.37421381, 6655573.369015514, 6657951.5625, 6661364.303021182, 6663726.5625, 6663729.07423024, 6664465.625, 6665407.0780171, 6665879.6875, 6666880.787473992, 6673307.52384591, 6673658.265956089, 6675996.271972227, 6676145.179649653, 6676404.919711641, 6676685.588597775, 6677091.866115544, 6677286.905334087, 6677635.160441829, 6677790.070209334, 6678154.41971614, 6678161.460453207, 6678291.439697115, 6678975.0, 6679225.410137464, 6679468.116247386, 6679623.411419216, 6679825.934860614, 6680064.0625, 6680118.75, 6680218.75, 6681612.5, 6681787.5, 6682003.033327333, 6682423.4375, 6682441.9559642635, 6683474.469743691, 6683523.4375, 6684383.744120232, 6684772.97209669, 6685349.816975228, 6685443.766094408, 6685709.734755256, 6685962.386599987, 6686499.040686131, 6686512.5, 6686615.663985457, 6686720.9817839, 6687271.612342421, 6687687.5, 6687799.218250811, 6688269.224446102, 6688587.5, 6689100.0, 6689165.625, 6690423.4375, 6690928.021719147, 6691363.167966394, 6692372.585094, 6693856.66047429, 6694520.7403101185, 6694998.4375, 6696076.971625148, 6696289.0625, 6696318.773866354, 6696356.787665582, 6696548.238885836, 6696612.040244078, 6696911.814910629, 6696991.289392524, 6696995.3125, 6697009.375, 6697104.355187154, 6697133.930562778, 6697168.703439226, 6697169.198798638, 6697178.993022638, 6697281.137792915, 6697478.125, 6697488.480799501, 6697779.566565165, 6697930.158324159, 6697988.707444143, 6698087.423517947, 6698117.1875, 6698159.594640224, 6698202.694221716, 6698309.347908881, 6698326.6347727785, 6698361.551222627, 6698470.153281269, 6698598.281704831, 6698640.661924895, 6698691.09332808, 6698785.9375, 6698808.520477945, 6698935.513747371, 6699082.947368668, 6699249.703999071, 6699282.700311407, 6699426.376297805, 6699448.123435721, 6699704.261354318, 6699763.845096066, 6699829.6212622225, 6699960.559272894, 6700171.004306002, 6700356.042466801, 6700535.215942664, 6701381.742754674, 6701565.543103974, 6701860.8773718, 6701922.702132685, 6702037.365849681, 6702560.912254406, 6702661.320656663, 6702687.124433164, 6702932.8125, 6702956.309101511, 6702974.035956672, 6703054.477167038, 6703251.65360924, 6703384.375, 6703533.527485443, 6703609.783264074, 6703806.041411537, 6703867.1875, 6704195.52222365, 6704198.169430286, 6705046.544819573, 6705449.7500506565, 6706293.319320697, 6712904.423520549, 6713145.3125, 6713507.8125, 6713742.1875, 6713883.022680939, 6714203.125, 6714280.992418486, 6714396.499802365, 6714499.565278045, 6714627.111370213, 6715237.5, 6715947.972487055, 6716435.726248461, 6716499.00921359, 6716640.3248623535, 6716790.625, 6717184.375, 6717708.8573571155, 6717771.514022553, 6717925.016335527, 6718127.732317167, 6718166.059561982, 6718295.398897999, 6718351.776983276, 6718464.492910519, 6718845.3125, 6718908.731855882, 6720569.204905995, 6721443.75, 6721464.0625, 6722348.057553397, 6722996.096987973, 6723474.1061666375, 6723659.326804229, 6723887.5, 6723940.162935111, 6723982.378784574, 6724271.875, 6724817.475278706, 6724977.073152157, 6725074.231927758, 6725701.860191764, 6726701.297540461, 6726973.617425026, 6727053.125, 6727732.184388627, 6728072.59884629, 6728585.934727195, 6728785.2502413085, 6728786.951181946, 6729734.3527176585, 6730527.539233558, 6731059.375, 6731399.1114050215, 6731529.6875, 6732112.762390578, 6732842.098058991, 6733417.64079042, 6733853.125, 6733962.5, 6733981.25, 6734095.3125, 6734499.935517522, 6735332.021895943, 6735457.8125, 6735485.419898771, 6737753.125, 6737797.678813763, 6738120.5995462695, 6738731.464138122, 6738837.061419914, 6739282.8125, 6739796.704781511, 6740384.375, 6740490.311950985, 6740873.4375, 6740975.095297266, 6741094.654382372, 6741378.125, 6741395.3125, 6741400.0, 6741789.392071711, 6741864.0625, 6741880.041638504, 6742241.088567344, 6742264.703376748, 6742275.963202651, 6742351.926213874, 6742370.67422439, 6742427.233405858, 6742504.6875, 6742539.941112615, 6742554.305263311, 6742578.125, 6742700.0, 6742710.9375, 6742785.9375, 6742915.415006724, 6743133.0314003, 6743326.81031959, 6743596.224567803, 6744372.420876799, 6744399.923989304, 6744420.091212665, 6744657.704316512, 6744663.024199717, 6744782.33186365, 6745063.924910622, 6745590.954057016, 6745827.813893275, 6746591.604013953, 6746702.363892793, 6747382.273947307, 6747516.492290726, 6747536.8245673, 6748251.5625, 6748342.240471532, 6750922.21728646, 6754151.6549051935, 6757010.9375, 6757622.152004221, 6759361.192106864, 6759387.5, 6759613.007719982, 6760886.093734324, 6764547.294192466, 6765734.315296576, 6765824.73352199, 6767168.899204767, 6767851.481460881, 6769919.212270287, 6770423.4375, 6770763.138417192, 6771173.4375, 6772081.25, 6772294.55674657, 6772549.134542659, 6772952.0181495715, 6773195.524769279, 6773534.7995434515, 6773847.09287921, 6776771.875, 6779069.938546854, 6779312.676024184, 6779593.263531282, 6779745.3125, 6780202.171925921, 6780254.721794897, 6782812.5, 6783849.565099701, 6784854.6875, 6784895.085792612, 6785370.573849969, 6785496.491666061, 6787318.13115237, 6788007.8453638805, 6788205.092754135, 6788235.73923152, 6788417.1875, 6788957.8125, 6789012.982920133, 6789028.295002683, 6789048.75695314, 6789088.230758102, 6789095.3125, 6789096.565436561, 6789278.750446719, 6789464.0625, 6789474.14510764, 6789488.302235257, 6789507.247537274, 6789607.230602096, 6789723.4375, 6789821.875, 6789929.6875, 6789964.958581825, 6790085.652314179, 6790117.1875, 6790168.75, 6790188.563904369, 6790299.748423406, 6790329.6875, 6790345.126117608, 6790507.364317511, 6790556.25, 6790592.1875, 6790598.4375, 6790673.92233387, 6790674.27469168, 6790746.875, 6790826.186303918, 6790975.0, 6791029.54946022, 6791065.517031516, 6791230.532848758, 6791295.279629334, 6791397.172899567, 6791443.1591218375, 6791447.290441303, 6791528.142672102, 6791531.25, 6791657.8125, 6791811.556797684, 6791874.509335149, 6791963.9817710575, 6791986.971862682, 6792081.25, 6792108.96457465, 6792148.076742981, 6792170.299325505, 6792204.001738035, 6792321.606582735, 6792457.111445632, 6792466.417346478, 6792576.775097427, 6792582.022462102, 6792759.793324413, 6792840.558870315, 6792908.608932102, 6792910.56165074, 6792926.805825783, 6792936.628943489, 6792941.465007125, 6792948.730855316, 6792968.458840592, 6793013.498910216, 6793014.0625, 6793054.920726702, 6793112.505833429, 6793140.626521251, 6793216.763948477, 6793264.0625, 6793275.59915558, 6793338.785092926, 6793439.920255238, 6793530.434403713, 6793596.442275522, 6793624.990951578, 6793629.6875, 6793654.637810081, 6793847.5131272385, 6794001.5467611505, 6794037.9967218805, 6794191.398552758, 6794201.312197534, 6794249.107383636, 6794486.523580228, 6794603.228988795, 6794723.838825198, 6794883.751242007, 6794909.149247015, 6794981.25, 6794990.322626914, 6795006.550234959, 6795072.835339013, 6795075.0, 6795102.205469065, 6795110.36957047, 6795151.208866172, 6795178.353000602, 6795276.250986621, 6795643.75, 6795653.6473270785, 6795668.428123479, 6795685.056184911, 6795788.380536872, 6795834.37311196, 6796072.456192361, 6796096.016690289, 6796203.025640346, 6796585.014362903, 6796596.875, 6796633.110562762, 6797248.3933169115, 6797567.1875, 6797755.790618484, 6798512.101698738, 6798548.266704461, 6799269.432280187, 6799354.6875, 6799516.834517345, 6800463.801266748, 6800474.350904038, 6801656.975845303, 6802697.9709722055, 6803525.0, 6804293.507937802, 6804644.482401243, 6804653.125, 6805107.8125, 6805531.515668147, 6805569.260647831, 6805677.390170139, 6805803.011237622, 6805949.306007987, 6805990.625, 6806027.716826074, 6806031.683741408, 6806409.375, 6807237.431416868, 6807290.650747284, 6807728.125, 6807766.699116531, 6807835.594232297, 6808091.811347217, 6808921.875, 6809693.130841496, 6810062.24300519, 6811876.626213517, 6812432.679342362, 6812832.8125, 6813100.0, 6813442.473233038, 6813506.247878048, 6814792.1875, 6815263.371494518, 6816293.562419405, 6817709.479494678, 6817801.5625, 6817930.126440075, 6817956.314310605, 6817993.33970956, 6818053.559184595, 6818301.326248895, 6818532.175703478, 6818612.223399634, 6818792.458162657, 6819184.375, 6819626.601340378, 6819940.534192546, 6820033.929367972, 6820292.093494457, 6820298.927139468, 6820323.298221406, 6820437.5, 6820519.662259029, 6820781.818778154, 6820788.997453094, 6821097.002508309, 6821103.662447104, 6821167.1875, 6822641.403627117, 6824555.440452379, 6826571.875, 6828385.555568847, 6829143.75, 6829494.465339784, 6829622.089016794, 6829880.683299864, 6830016.055768978, 6830082.231415349, 6830225.0, 6830401.5625, 6830451.693525768, 6830492.215649833, 6830617.555195514, 6831228.396422522, 6831279.132081932, 6831664.783686392, 6832625.118233246, 6833125.596109524, 6835411.206814805, 6835538.855643441, 6835991.690863229, 6836290.19174164, 6836337.017060464, 6836589.0625, 6836957.1388307875, 6836964.917815085, 6837304.569836375, 6837897.823602471, ...], [25.3919803678869, 10.612834658250108, 21.02721283643455, 23.17578076801017, 29.190769557076955, 10.975072853542471, 11.087141402743576, 80.96389853690687, 24.806772951412565, 9.10841651059081, 17.342143564965784, 12.259316153256506, 67.39328439153195, 38.28152999052187, 7.5170340140673355, 16.976378753695275, 7.616604529282244, 21.516003270099258, 8.506980400894713, 31.86941757451286, 63.90936571097746, 84.7464235623211, 9.080606701264792, 12.101899891549229, 6.313534978040318, 19.392433250866862, 19.510066950848305, 78.48301289409018, 18.13774099428506, 69.45839631599551, 8.835535574509155, 52.70320355112371, 15.245617131439737, 31.46533163498564, 58.49047431496288, 29.456069069771047, 25.374753612991856, 17.855565546436, 36.68320675771872, 118.43049927682337, 64.09905669844952, 48.075397391130366, 12.465678279106381, 46.332986612664534, 7.262274885232269, 19.578689744656927, 34.57096215781303, 19.543401344906137, 22.6151832184491, 21.3576842497441, 14.514411461700606, 7.417260132464429, 50.30101633253723, 33.981040783590004, 28.04762158324068, 23.25473468617206, 76.60433972649184, 70.59974612152664, 37.95091148871173, 6.0878562368479265, 35.70180695282821, 26.54504342776186, 37.93566059701009, 64.86009000427144, 64.0593435057968, 19.489397376647204, 61.809268808203775, 100.5398954152449, 9.485228992927649, 9.531210206717713, 95.76365636800469, 14.437197041254336, 63.36328863356824, 19.524186075300662, 42.887884787522424, 70.30506538788288, 13.891397854826806, 28.70372313820686, 7.872597107810299, 50.72361736676638, 16.014820810306162, 11.158060701229875, 18.646834125592015, 13.7925133622955, 12.47621957919838, 20.53936776650071, 132.08699640281876, 50.90911746951802, 15.959694904625865, 13.906651548965346, 14.396043307461673, 55.54784204781741, 21.678171165709877, 47.09914372002766, 62.790005424729635, 139.3858164859642, 16.962155982320496, 57.55152640146631, 44.38003887099242, 15.816242682195277, 111.88989315914523, 8.018563374668455, 14.721876095889687, 42.074165625088774, 42.14101833264979, 19.896357686718602, 20.57212465269878, 9.023341302244917, 148.45558547336472, 99.1721210544039, 44.43980323757187, 9.075247720111435, 50.95263826090248, 12.854300196300464, 48.716172329395924, 55.10366306783942, 82.26145684901348, 22.992967469280625, 38.79427797439516, 13.672206916943898, 8.263816758790705, 71.13383360997464, 5.818142698597648, 14.2285538822717, 5.64169080250461, 17.89651435678156, 168.2774544899929, 5.302874541070317, 13.907068999007956, 53.98765385740708, 11.86086017704195, 69.27906221399685, 11.481478054374543, 19.252945807958707, 87.97092699315832, 20.534832488345597, 5.851823879271972, 29.18352248042378, 23.22069293700749, 51.563487321525926, 8.419204167428651, 13.165359267710748, 87.78304244549827, 38.58584292957353, 26.389527219088812, 15.262841821075742, 47.42453717641799, 79.02699620435985, 61.35552807106179, 7.831721724581884, 34.86724444044667, 35.011218987246124, 257.00340937059735, 76.38159348432052, 15.948594159628254, 21.74741730652655, 71.80092632900296, 127.02844797713081, 10.750810023158628, 41.1733826864229, 76.92700610221479, 39.20158463757498, 16.33205139437532, 13.898763768407372, 8.973717213959171, 188.72204919398592, 13.869240335082559, 28.036834512671255, 59.786634170097784, 21.672006724891343, 41.26064115164492, 5.509579459008099, 10.65567879040581, 60.28974658066823, 49.53935453219003, 27.198154922340834, 34.90535676184688, 31.94994679558868, 56.47518013449212, 19.735600425166815, 102.45417461309054, 68.31988097693407, 65.03676955071981, 42.124761863950596, 89.59239592242318, 65.68161222775652, 38.857715045050114, 35.921977186851855, 32.08951503391674, 23.08039791793303, 20.234880980450697, 36.81275572256051, 8.061654464615167, 19.464540708841433, 6.522667641394699, 86.66622596684113, 92.45528306931277, 6.916078272662937, 33.68610539038077, 9.207380614933061, 50.2037264440317, 18.19234814911687, 27.16595915201807, 13.487937896031829, 30.218843608867715, 27.686306283646527, 11.886818223623928, 33.80434997632676, 47.27323145949734, 20.189428362446673, 12.064974414224581, 33.24833124505346, 29.693877327102477, 20.317062227628945, 52.20673997733861, 14.738254378720052, 35.659376754065974, 46.86517918564531, 7.007748784091028, 5.854289528749391, 16.69724679970991, 55.39232699336045, 147.50068979449554, 39.03228672623568, 24.554619238039262, 32.513470933364026, 30.102463717557544, 42.42883901938322, 60.53632459131279, 26.313955802398162, 11.427896898346125, 124.39793061449366, 72.20461010156438, 18.09753578876137, 15.290067562784238, 13.262716106569425, 39.9488573273703, 32.662010581581164, 182.48613878111078, 28.105741471314495, 8.65642866265095, 21.237746503440135, 36.68618082268334, 30.324563197183522, 9.974330788399053, 5.263728136875633, 8.058606220848477, 69.4520025354465, 109.00292635512082, 82.11448741435694, 44.66213605317809, 17.82084872973506, 36.4089900427369, 47.06327778062601, 25.346904824059408, 5.341799604161583, 84.57682473192006, 37.20165399928377, 19.93223326882393, 36.17219403191904, 14.387988793829782, 15.921900533435268, 9.050457327987454, 92.60529017828729, 9.51688255064913, 22.64850272334064, 68.47676785425602, 37.69267187837891, 79.86536269572171, 24.822775644016037, 8.497145193744233, 25.448922548766266, 18.033604335580076, 9.69511075236385, 48.707545448625, 9.79093205728249, 5.649303299218618, 97.93092307677568, 7.547190183088782, 26.927981645260683, 48.783283683939416, 32.71474398305717, 11.204873430305819, 39.91735402221213, 68.64925422434717, 63.13376032205274, 9.778997865546286, 10.094148984710085, 86.76081888645786, 101.34984719743572, 80.78873234951578, 63.84724280644673, 12.509930104657585, 5.373569235028412, 28.19247476556179, 56.25707781534951, 5.070716758658465, 11.453213605750413, 65.78882194982106, 31.054447598692924, 5.925562601370915, 25.16793835073652, 21.28197809949542, 70.60795309415252, 16.06859820022038, 17.272264285770195, 59.36307060466599, 57.75582056774624, 27.458178640971852, 40.86662272807128, 73.67721788090809, 40.35988059750548, 14.831492512297014, 62.11075714777752, 9.918568230548397, 36.912974355450935, 61.69801332443329, 115.4713409364177, 42.84056189228957, 85.71726739030022, 62.33101508158697, 28.85625284521477, 8.085188190429681, 59.32525691060932, 43.434716688292134, 24.709685860961102, 11.844481026681212, 28.423197558725658, 6.758471468228178, 28.167590671604984, 8.56805520032271, 36.86735038727034, 76.232519194742, 6.409077095033659, 31.421923727941596, 27.77692900739583, 78.95254598515844, 39.425947552216556, 43.98297091516708, 15.836081369622644, 9.544020072638467, 25.342427848885222, 110.6626492053802, 5.298767381591001, 11.578169625122323, 108.769919378765, 24.98730758631006, 38.28483120336321, 6.232019869649237, 21.6364810054847, 15.506105740499992, 23.171774921825932, 32.57082703910209, 51.565687875401096, 74.03225526310277, 7.323998473388546, 138.70784849234016, 71.86528698223154, 67.41506030493493, 8.866587495762799, 25.748332756847248, 15.54416521057361, 24.493732401311632, 56.18623691277006, 5.6502608504842335, 8.606296856097437, 12.535976452927127, 5.236750952154318, 11.52308463311332, 20.724302858573665, 109.3043169903692, 11.86596736654364, 15.756468736102663, 5.879003461655391, 26.860451393033266, 12.9324634799196, 31.125764556838746, 56.19815250120119, 5.821257101685136, 18.597880797908314, 11.89426200328695, 57.55619958093332, 13.229711172813156, 52.4862375748639, 22.052391393690186, 31.27413993059296, 7.0236772970618375, 8.086858220296293, 7.381644281313502, 46.718832299706726, 64.90438427019207, 16.17227284399097, 9.237147104865311, 126.35119957592596, 10.14755754666348, 41.75894997685753, 52.92128164295073, 30.547479760902092, 44.73502438230318, 29.44306103359697, 17.149427856395455, 18.728939352440516, 79.49563126551408, 86.75679974891187, 160.57122912044815, 78.99733446938748, 20.45165816466851, 13.581681178637176, 36.60032471451498, 22.992093351472644, 69.50885185559135, 82.91982579387006, 29.334566179535464, 54.48064437907119, 10.28339804636685, 105.2311782226457, 16.15733443607123, 25.51264597514993, 13.628315073809258, 29.89848947299121, 10.329905978556237, 97.27566130394015, 92.36043916972025, 19.891610605977032, 12.82806348076838, 9.757313578652028, 25.423222901525083, 49.23818480840446, 113.76966775975251, 8.775075165284365, 8.687020434237843, 33.13412598356006, 128.60385184825682, 12.01334266336475, 61.19846838764628, 54.97083252788911, 11.583090597619748, 20.681351919407163, 21.350711738638555, 86.7006035471549, 6.771758751966486, 25.270699294951076, 11.47730651568131, 18.53874243993191, 16.10387279380873, 7.916808948482046, 11.886056701923778, 6.698482176068797, 11.115001313433924, 13.591053499034096, 36.825652000129324, 40.687337014118725, 95.94679520122565, 38.16744306345066, 39.97932285348079, 82.04526482216573, 126.5367569100938, 61.280906749336, 8.800227808863847, 21.946478492807636, 36.92189694218313, 17.943985962522444, 36.320027284322876, 7.440444568275363, 75.10533102526787, 18.46250720869128, 141.82452893527935, 96.15044793256892, 59.988630062584534, 73.19251878553906, 14.061801068674358, 196.8880657855516, 57.2253639879429, 20.153137591046058, 39.82650896619888, 45.01937177533879, 25.607811336451178, 116.519928027189, 5.5804082715251315, 28.625594050921755, 35.27833441834236, 15.714796611540336, 28.143554912337628, 37.94948360230578, 71.13070027622561, 9.179829152179494, 6.937973147804874, 257.7547776793374, 22.287650591066463, 94.97666059934213, 38.058499899873226, 34.158990091674646, 19.211421290108444, 42.813787368345565, 9.147969132166912, 27.557239947595306, 87.30926591256234, 7.981231369726936, 59.06957578708891, 53.937646568911795, 7.186146028043186, 31.32398033269707, 13.026174908041023, 75.19503028042887, 156.86061740870525, 117.23826263999484, 13.429863733680584, 13.94470707656398, 11.919079976743992, 6.648806101445085, 108.08331208227004, 9.535785221738237, 23.14555538674494, 35.72079002956255, 20.657216046957515, 10.097382771411551, 20.96340864060952, 23.438890755201406, 9.816536223441695, 25.160053595102177, 107.96990967197783, 42.7501659082473, 58.23892174647551, 36.88707515428452, 10.270494623315175, 68.50366911885463, 40.43250924281624, 31.903480119303683, 45.37200204923131, 67.02333197243738, 7.570414378894573, 57.445032287475414, 24.66653024794826, 13.243937985472641, 63.93249290975841, 6.964932597658282, 13.42180756117582, 37.81906739580411, 5.165736581716777, 143.88795110752355, 7.562731383488584, 12.222514205154487, 28.87127959787046, 6.092162765653, 12.364329534905615, 24.239754066796856, 73.79892319664357, 30.278534959594054, 78.07820338179596, 80.14311749422913, 50.331445089647374, 36.59359694283018, 223.6904945477553, 7.094564365303025, 12.361452970484265, 20.856795323591037, 79.89465031901355, 7.765662393831677, 38.60170456696604, 99.2419684312862, 74.528326521461, 22.66557500745918, 17.48170475220529, 20.70354253107118, 21.90417526882141, 5.3729140036086065, 106.5798383394541, 112.65552011067763, 45.833915464936894, 49.7534289214247, 73.49956350340719, 19.53905574342696, 11.910015469633601, 8.805955512585966, 7.09226493537984, 37.08415992338616, 34.09087306604135, 63.2752236905885, 7.782891422427186, 48.67231281425504, 14.657794414581277, 53.47584930370011, 31.497165057925574, 27.88774468849178, 5.705036023006545, 118.19685046292265, 17.942724813509777, 136.11364239217485, 6.732796813358417, 5.816717453472905, 7.781886901984104, 93.38064551941605, 12.449741193842579, 22.288992693678736, 101.79155263946534, 26.782641989240197, 26.488017054785324, 112.83671509080179, 92.17675295126205, 22.262892521236317, 6.065779189127467, 5.0971547743497005, 7.025454271798839, 88.64592214818094, 14.205395596664925, 10.160492299025957, 55.34352041604713, 14.638285172338596, 88.78286058680153, 72.06824048400365, 11.811425062746572, 28.034792554306936, 16.63515166761143, 20.563085147986936, 81.89821269127042, 155.92077196214763, 5.421856133988418, 17.670832676289336, 7.636526119363319, 46.93750154670225, 55.51240418629721, 11.832031226627706, 34.17601116179492, 29.03703661865625, 18.373418567916687, 24.167359310639018, 5.0920126335254565, 42.61587864386085, 37.6288177400847, 24.22202347639329, 34.79494540434483, 59.61216344572149, 62.151679014558276, 22.847005648090228, 73.73345365969548, 17.334302657705173, 22.835479571342443, 31.36407316999135, 7.8145984192831195, 77.85402776681336, 8.966901101543487, 355.47669134172196, 53.9169996173309, 47.817070311616064, 42.49344073062133, 28.82817659954601, 155.25617988881902, 7.02968813624511, 74.51886729715719, 22.634891791071095, 38.032748430831504, 11.72556316040373, 17.295504495527236, 11.87443851521456, 44.687969192886555, 20.174875984663657, 16.89974810874233, 32.957307490531385, 64.26091575735742, 24.346112748151143, 19.105696660641286, 38.27273109596173, 9.290980719718558, 39.06118315163968, 13.431156151658762, 10.51131162073298, 53.75137556587579, 70.39502314251102, 9.804045009974223, 12.647293086559191, 56.26577921174359, 81.73404700988768, 9.48831923606021, 52.4735959578717, 6.190973884597351, 7.887849011253973, 24.550873176005737, 6.0194319378467664, 21.019555480116782, 14.85725431869989, 53.27057674655126, 76.0693144243993, 18.331091959518403, 88.26457883897518, 117.9318030150477, 97.03310018599306, 7.775847524474678, 78.11918537458031, 116.48188854863503, 111.48847592439505, 59.40886469818588, 56.48928044263395, 10.082186952653348, 34.04557612611552, 16.033294126350285, 71.42605025622133, 31.196864986737232, 5.54717589331233, 103.78131012069551, 38.79262924172965, 32.85481597187869, 35.77166594309462, 42.22906164301985, 28.901734370641872, 111.55953588150342, 11.280002902147169, 7.96673292953599, 36.51851437991672, 126.22951512075275, 42.04259825894181, 16.36646817609169, 28.701667005494038, 16.488177933216647, 9.75675389313017, 7.852734473259451, 38.50814561111509, 48.44406932143146, 78.92649493741588, 5.566552464114002, 51.66691807847381, 40.11031019807422, 35.220127727654116, 94.63574962433213, 61.5244557788349, 30.327447597539127, 63.95884128210862, 10.814606333769337, 8.405830090991099, 9.550124153614549, 12.932102196552751, 12.103549029132672, 7.5759753341393665, 72.58655169335995, 123.17364760881861, 17.403317221123167, 99.39035268613537, 7.085747266637308, 7.72675170705582, 33.935953781819066, 5.670603129120361, 27.57067471426447, 21.927995712481277, 5.764271242480118, 107.28164498529786, 37.3103971546624, 7.135446230715533, 139.03386968804088, 5.9474933273375985, 29.576418274881487, 5.629554714688468, 34.301941637343404, 53.58041592312487, 174.40234593240027, 115.94933093250444, 41.5265424044169, 43.44802809379355, 71.93803467236908, 6.510737538918509, 5.808008299216884, 24.856818294433133, 52.8140857449186, 33.60647018261098, 65.26685524545246, 74.64852719706053, 6.012882162188802, 5.3663879426296415, 7.776793598965185, 15.817402885005242, 149.4175449513727, 200.55072623439182, 37.833245740834926, 6.430026185088813, 38.2749280453198, 82.57253707102923, 28.63376137476131, 5.7466732066224395, 15.917700576923789, 56.44210569234083, 22.16805228884862, 45.49087717355283, 33.74860187209067, 19.863622345343977, 22.741596721035826, 58.08053469346257, 15.068268344433159, 9.699307116423576, 10.831325109074704, 39.81525472977153, 72.94624615390732, 5.556986382188114, 9.479409361370841, 23.423294310552695, 7.327776528045783, 103.6079357934151, 23.629345818331597, 37.367636072476216, 97.96429856624894, 157.3512206345826, 5.148025785175995, 20.868648958882154, 102.36169028091857, 61.673118693032734, 52.82586113564387, 44.231963327964465, 5.883397522650156, 23.94183484251145, 63.47121898668703, 53.905049592571736, 10.428596055039502, 166.24546905477698, 77.7266620422633, 6.068929198110678, 20.09113692704072, 31.198667509257827, 57.931655945818605, 58.96710998105627, 63.68272447244789, 12.748615442419647, 59.16937330760995, 120.27266586015173, 102.866479881174, 101.18029869595995, 78.31284428033834, 7.9405558149706295, 27.890548273922743, 50.40736604599292, 142.37547188797808, 21.878123936533264, 5.4625255566995135, 184.98639761123047, 28.75701895127814, 39.86615058984787, 21.586731535163313, 54.681317556484096, 125.27281912622364, 38.66821035013282, 90.72671929531262, 48.51673610043227, 28.266790317929942, 7.954427497180376, 24.162728324228535, 97.23966660395728, 5.659435964525298, 5.829879922898663, 95.65497302021788, 16.818108502522897, 11.0258914956385, 10.109770883313148, 22.827925358919963, 15.95783329583088, 65.53876027126387, 12.755372942727206, 44.82210571693827, 9.096775644458509, 13.155198431012543, 30.308592968013297, 15.91179212581347, 15.939896410457463, 137.23696273784043, 22.29118954835244, 63.29767760903596, 7.288392156428206, 24.0436896412203, 10.179883506547338, 56.43047998596812, 22.19152948778274, 6.266055841032496, 68.95356408156167, 35.207702667173336, 44.32101605955641, 44.70496935880797, 36.29647806109364, 19.025298678168497, 24.40701796140831, 17.728303123502354, 17.771476780404836, 96.73434702059592, 33.93176423541986, 12.9994171581543, 223.4236389684646, 37.64830976389577, 13.90197542176353, 11.631828600509682, 124.66255680096143, 35.77490095491166, 12.307263287140323, 20.84121427669208, 5.909189458510443, 8.410943849906731, 23.604779881948314, 92.11490541792314, 17.39249019988578, 91.62808509685865, 9.982457021619927, 5.319084038312339, 6.26695985644094, 17.741643357287476, 12.441300313468464, 60.498589167850575, 18.10551886824933, 45.05143165613029, 148.55297717598143, 11.05934100735401, 53.879190366907075, 10.478322918751331, 6.218154108297724, 9.19104400353217, 39.21780129213066, 270.16473308809435, 127.60377024059886, 16.319762607258685, 7.384210735320006, 10.923939246209589, 5.899781724811629, 37.364680146447895, 61.46006927424334, 60.65865286259233, 42.13639364492724, 28.534662135753116, 11.570007736418898, 12.032184190375604, 7.93278992818438, 76.28680200752049, 8.806284126379817, 43.62196825308713, 115.3676996491081, 29.168691579133252, 120.53292660360358, 51.120330678533016, 33.17640413771673, 81.79052633569941, 21.609769340202387, 23.213354920822958, 32.702403856457124, 128.1580655354337, 20.381449168459586, 24.31606941065292, 6.497125479888176, 153.18172751158414, 96.42927410093009, 72.63587784491543, 16.155231620139443, 155.19181223598042, 69.69018798134866, 8.808307273643488, 25.301442977820273, 15.355335797428632, 67.27751198520033, 155.47503107637428, 25.28614551018149, 22.43724803385209, 5.048937461578282, 69.16570303916032, 10.259586749947488, 23.72971456647778, 9.571253101840256, 28.55751727777304, 11.188964413783543, 35.55239476441809, 22.053153874260495, 51.94990198011581, 23.518278686456085, 93.05334378308233, 65.03386888372647, 20.11477105947477, 58.777537805134685, 11.027533987593555, 127.73465852827277, 13.210730513716857, 58.465431361547864, 46.75054924149974, 12.551328383677584, 42.51347025053847, 22.757715083413945, 56.04072948771249, 72.44673454475253, 15.825214573773255, 20.852571687097807, 7.766842029121347, 5.437366490025765, 46.11402490922853, 30.82995137456378, 7.651325033160783, 48.21406419129407, 16.556403019009664, 5.724252584297483, 20.957532544365026, 12.479314584195428, 22.8103223135262, 12.207627437160298, 130.92638471803332, 21.483464850345477, 21.526715979480176, 22.18576315970191, 118.04624435863961, 36.510771901029685, 12.874308190312817, 16.241999421426947, 16.643808587516403, 20.427481305331526, ...])
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)