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 = 45907
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);
([3296242.5403817566, 3296254.645873162, 3442450.505205832, 3447616.7929100296, 3450059.375, 3450088.0581497108, 3460832.6489046905, 3550078.125, 3552923.4375, 3634989.6335766497, 3699954.6875, 3704543.75, 3705131.25, 3779228.125, 3876684.820455544, 3877028.125, 3890239.1390766082, 3897054.607943187, 3925462.5137602156, 3946169.9491512417, 3972559.375, 3973764.0625, 3973766.655653056, 3973939.0625, 3976629.7259154203, 3977109.375, 3981877.582510134, 3982200.0, 3982419.172393107, 4022530.672318479, 4027090.625, 4038481.153055256, 4044126.7897275155, 4056845.943257447, 4070693.4641548735, 4078913.6688133455, 4082356.3595939768, 4116055.3410724145, 4132319.633072471, 4139299.6357289637, 4141596.548952364, 4145053.008685226, 4169866.4214854357, 4173533.2847920693, 4175120.3125, 4177485.60994183, 4177884.0669220844, 4178834.9853558266, 4225323.750584156, 4229813.522358287, 4233342.197929246, 4242651.252147281, 4243421.875, 4243811.58992833, 4243848.398001424, 4245475.91533153, 4258088.284283768, 4258155.595472088, 4286303.130987912, 4356095.062471381, 4356557.7650674805, 4358687.516051109, 4360754.058394306, 4361736.581899574, 4440471.508654892, 4442854.515731055, 4442860.9375, 4442921.875, 4582812.97970245, 4582820.3125, 4583530.648537901, 4586751.354705359, 4624951.102474238, 4667932.275651816, 4670685.797417113, 4694956.908940223, 6518339.366616661, 6879283.313164487, 7166355.580960909, 7203625.005285805, 7204115.536872412, 7206531.25, 7207340.339954968, 7210941.176081759, 7236093.75, 7264540.437864146, 7272990.551868108, 7360948.4375, 7400248.014555711, 7404030.955749847, 7406547.733910883, 7407543.453360729, 7422424.0109708635, 7424381.251140091, 7424802.782103451, 7424829.6875, 7424857.1249964675, 7425087.42790258, 7425418.75, 7425626.113231668, 7425940.625, 7426718.75, 7426765.254588467, 7427404.583046126, 7428235.741399826, 7428278.79434606, 7428312.5, 7428336.370669284, 7428605.350746184, 7431308.562671829, 7431701.5625, 7431723.895929276, 7431751.29580629, 7431758.896574545, 7431821.875, 7432242.278663623, 7432402.407467129, 7432433.232207464, 7432932.382632038, 7433715.655226737, 7434768.126802136, 7443498.7444424955, 7443841.668335354, 7445239.179883024, 7446770.054469594, 7446836.0074438825, 7448214.990298059, 7452795.690774591, 7486312.5, 7488038.072488116, 7488127.572610083, 7488364.0625, 7489629.6875, 7492113.0301332055, 7500797.112588446, 7509936.959440243, 7536884.375, 7537255.472222764, 7542559.147873902, 7542985.9375, 7544841.807970912, 7546409.759808329, 7560483.816550635, 7560797.389032597, 7566892.6108394805, 7569046.087933529, 7569209.375, 7575455.837859579, 7577979.6875, 7593318.675187834, 7599029.6875, 7649217.1875, 7671638.958515814, 7671644.376105306, 7672572.513245629, 7673035.553827746, 7673305.825642177, 7673502.1403848035, 7673503.963621039, 7673508.991816411, 7674568.75, 7674871.875, 7675439.0625, 7675466.5797324125, 7675645.504079408, 7685751.193790945, 7693359.687372399, 7695307.8125, 7695470.3125, 7695719.865558166, 7735504.659726284, 7739332.770272082, 7765827.277660714, 7771523.450284947, 7784254.359424146, 7784991.745751671, 7785043.544357065, 7785251.778509494, 7785307.10653036, 7785314.56178063, 7785556.993838223, 7786017.127046569, 7786171.193511195, 7786398.427803141, 7786903.125, 7787311.827087141, 7787410.875164044, 7787693.954206665, 7787796.764977356, 7787834.431422008, 7788658.009486364, 7788834.375, 7788947.238909729, 7789012.5, 7789995.211846429, 7793898.424601489, 7795267.272264588, 7796495.833527451, 7812717.1875, 7820227.466412775, 7822190.625, 7824881.532434589, 7825003.450166399, 7836997.328705337, 7851287.754476149, 7862450.0, 7869860.952292162, 7871523.4375, 7872607.430018043, 7872706.25, 7872875.0, 7874365.738911148, 7889387.336990954, 7889815.625, 7891721.23399347, 7896080.77447913, 7909670.048300393, 7932268.808298236, 7939280.925292, 7949029.702737492, 7953640.3641297845, 7953741.703758619, 7954041.05678628, 7954252.783336092, 7956052.982322273, 7973295.505363426, 7974606.678064954, 7976923.084352332, 7978366.481158064, 7980200.0, 7980356.25, 7981538.619927129, 7988592.1875, 7989275.46380423, 7993903.125, 7994295.9458132945, 7994757.287343768, 7995253.961345807, 7995418.996446346, 7995631.455578645, 7996075.561614459, 7996144.317529324, 7998310.21923486, 8000726.313571743, 8001808.567396871, 8003424.845342312, 8003636.2098128935, 8011594.495237323, 8011650.0, 8012030.02425282, 8012572.659356084, 8012886.662963648, 8014400.970223337, 8016441.4973132275, 8017226.21081918, 8017285.9375, 8017302.38832596, 8017392.8596127555, 8017454.686337655, 8017485.6517661745, 8018215.452238711, 8018354.6875, 8018922.866770438, 8019355.944726423, 8019793.056119987, 8019909.375, 8020131.575513752, 8020275.436000617, 8020616.9471158115, 8020957.8125, 8021505.428591272, 8021670.220878617, 8021943.61561356, 8025687.5, 8029723.4375, 8056870.880508026, 8072045.3125, 8084653.208010963, 8084654.361603088, 8085058.707847084, 8086039.0625, 8089633.534686435, 8109109.199673048, 8110897.442027793, 8113621.042302574, 8113673.026840686, 8115967.390131481, 8116314.0625, 8119174.585315642, 8122132.802837904, 8128574.771189898, 8128951.23904719, 8129081.25, 8130225.0, 8130749.423777469, 8132052.773174857, 8132064.422172363, 8132125.664748562, 8132439.472650887, 8132534.194547759, 8132968.159698488, 8133082.379637243, 8133640.625, 8134005.744339656, 8136699.440125261, 8151021.875, 8151088.2034665225, 8151779.6875, 8151831.25, 8151833.058370509, 8152162.254258926, 8155553.887306313, 8155584.375, 8156600.104114085, 8178817.1875, 8197528.068066415, 8200052.035367067, 8200813.276591085, 8202005.674988728, 8202235.040262184, 8210446.918215175, 8219703.174188467, 8220789.570171649, 8223200.0, 8227430.685128967, 8229319.584979957, 8229696.875, 8236746.707241768, 8236754.709118034, 8239179.61531851, 8239418.632011691, 8240007.237693047, 8241820.3125, 8262938.944390161, 8267958.017630377, 8269812.038525971, 8272468.516800061, 8272483.975110058, 8277274.233471847, 8277346.306287562, 8293929.6875, 8300794.606331183, 8305936.449352822, 8315119.982298329, 8316174.191512498, 8325097.7160400385, 8329202.070775974, 8329600.228420683, 8330743.639804402, 8332425.0, 8342306.376394411, 8342751.291754056, 8344665.734896448, 8345534.113207805, 8346646.929512553, 8346822.999067564, 8347107.573054358, 8348431.25, 8349141.8123948835, 8355783.425186035, 8370320.797382903, 8371848.537637604, 8384790.625, 8387669.129628933, 8388921.841369113, 8390228.767111206, 8393754.603552517, 8395289.0625, 8407489.627716815, 8407867.188533388, 8408331.077641655, 8409568.42212177, 8412562.183183646, 8417634.375, 8418050.0, 8423313.63495477, 8423543.095388353, 8423559.375, 8424963.009055594, 8426887.667513102, 8429156.734188795, 8431110.726810906, 8433854.127114508, 8435873.4375, 8438913.358616766, 8440025.33867158, 8445579.117945561, 8446050.611440897, 8450209.199102104, 8450534.279158227, 8450535.9375, 8450628.515883898, 8454842.895156557, 8455143.709750323, 8455849.807635231, 8456820.013942547, 8458818.227084942, 8459559.375, 8461694.765136383, 8462142.27371747, 8464182.8125, 8469715.625, 8480650.065031813, 8486953.17906733, 8488253.016108682, 8488987.5, 8491133.460746238, 8491579.6875, 8492118.980716186, 8492734.571549399, 8497051.448847879, 8501511.109195037, 8508985.9375, 8511204.6875, 8513253.999801971, 8513261.1694627, 8513263.559259193, 8514518.75, 8514963.689662999, 8515300.0, 8515869.337695742, 8516525.180914417, 8517108.025745174, 8517148.4375, 8518174.47455192, 8521996.051870191, 8523252.695811061, 8525229.16062072, 8525327.490813976, 8525876.5625, 8526576.5625, 8527346.875, 8527965.625, 8528231.225224383, 8528274.926736455, 8528341.927745545, 8528628.966259046, 8528640.625, 8528643.652820006, 8528699.197513742, 8528707.193963353, 8528817.534194417, 8528818.577167705, 8528888.592020381, 8528903.09282409, 8528918.75, 8528958.862903496, 8528981.25, 8528982.333526487, 8528987.517222209, 8529043.75, 8529096.875, 8529099.22934084, 8529139.115208406, 8529158.158415942, 8529172.146476531, 8529210.772273093, 8529307.034229206, 8529322.8964753, 8529324.867360262, 8529339.12915097, 8529426.488714352, 8529501.473966967, 8529556.341639943, 8529625.352489527, 8529643.853706364, 8529677.193254692, 8529684.375, 8529723.4375, 8529844.870427487, 8529916.462342087, 8529948.554437144, 8529960.220901156, 8529970.3125, 8530057.8125, 8530101.38174409, 8530176.5625, 8530211.211733036, 8530289.0625, 8530373.885579497, 8530400.269781105, 8530410.9375, 8530465.613648172, 8530559.375, 8530746.118155299, 8530764.201836867, 8530818.75, 8530921.875, 8530951.5625, 8530960.249050874, 8530982.837370425, 8531059.400203526, 8531063.49199895, 8531085.55974568, 8531100.334221667, 8531105.81426257, 8531176.164685879, 8531253.125, 8531270.3125, 8531281.25, 8531291.882767817, 8531419.148994673, 8531436.083491731, 8531489.922658883, 8531529.6875, 8531540.13963886, 8531585.101642607, 8531610.286652107, 8531617.1875, 8531618.423877815, 8531622.835413229, 8531637.5, 8531760.9375, 8531883.101563415, 8531951.233964987, 8531962.5, 8531979.6875, 8532040.625, 8532068.75, 8532071.875, 8532129.6875, 8532245.056949837, 8532260.31466948, 8532331.21204545, 8532391.308745028, 8532451.265472418, 8532470.476517579, 8532570.856345005, 8532579.283759343, 8532631.25, 8532637.5, 8532645.597613838, 8532720.104525788, 8532749.701522723, 8532760.9375, 8532765.607832246, 8532804.6875, 8532832.268691013, 8532862.652533244, 8532864.740160758, 8532870.946786374, 8532886.213345136, 8532946.9625915, 8532982.8125, 8533059.18311961, 8533296.85057218, 8533332.8125, 8533344.16953922, 8533383.3025254, 8533419.912169324, 8533502.750667294, 8533616.384779513, 8533678.90465458, 8533679.6875, 8533736.164095161, 8533830.91638157, 8533860.389618296, 8533936.912908997, 8533958.74528284, 8534202.299702331, 8534581.052237637, 8534671.29911992, 8534778.893443778, 8534921.787112016, 8535061.8547026, 8535076.83052218, 8535124.199531533, 8535232.053956244, 8535238.220302641, 8535268.63805415, 8535424.629120719, 8535425.312201532, 8535545.080744708, 8535749.673469152, 8535763.264269449, 8535821.34134786, 8535843.75, 8535965.964995828, 8536015.704029426, 8536151.913187401, 8536214.0625, 8536378.05043226, 8536423.423472067, 8536626.5625, 8536671.477627043, 8536773.4375, 8536903.125, 8537112.5, 8537497.419821199, 8537560.9375, 8537666.518677583, 8537705.557956304, 8537863.412419125, 8537912.406880353, 8537989.942393687, 8538007.8125, 8538044.319583908, 8538047.625845568, 8538080.681882028, 8538083.506109603, 8538092.1875, 8538103.125, 8538109.139919136, 8538114.11402353, 8538123.4375, 8538140.099054776, 8538148.133892754, 8538160.674039066, 8538175.362467207, 8538178.188408297, 8538182.498065159, 8538190.625, 8538212.359696314, 8538223.4375, 8538233.524728162, 8538237.141634673, 8538259.344413312, 8538293.97677584, 8538299.198179621, 8538310.799226418, 8538326.5625, 8538326.5625, 8538326.5625, 8538329.6875, 8538351.5625, 8538352.780799786, 8538361.446930483, 8538378.045255886, 8538388.183273867, 8538389.624863725, 8538392.85518894, 8538416.929227402, 8538426.5625, 8538434.206127796, 8538458.289201114, 8538472.876979178, 8538506.25, 8538506.549225047, 8538517.1875, 8538533.15043364, 8538534.375, 8538543.75, 8538548.111000568, 8538550.0, 8538566.771002071, 8538575.64927057, 8538577.126547132, 8538581.087553509, 8538594.755020363, 8538604.665739708, 8538613.776263682, 8538626.5625, 8538631.25, 8538631.25, 8538633.764356596, 8538640.55904988, 8538645.3125, 8538651.5625, 8538682.065352263, 8538683.65728577, 8538701.163676666, 8538702.333254958, 8538705.25379877, 8538720.545059836, 8538741.943608623, 8538751.5625, 8538756.082159948, 8538784.375, 8538784.375, 8538785.235540679, 8538785.9375, 8538787.36169008, 8538790.625, 8538790.625, 8538793.75, 8538795.306377543, 8538797.13110834, 8538802.527455892, 8538804.436482744, 8538813.368976781, 8538819.31392035, 8538823.83783234, 8538826.5625, 8538828.125, 8538839.53596656, 8538840.241714224, 8538845.3125, 8538848.4375, 8538853.125, 8538854.539906701, 8538860.9375, 8538868.577417126, 8538872.151171222, 8538872.173895974, 8538873.4375, 8538878.125, 8538879.377745794, 8538884.21914597, 8538885.9375, 8538888.6449452, 8538896.875, 8538910.783444863, 8538914.249021923, 8538922.25410034, 8538923.173601078, 8538928.541281715, 8538938.73186948, 8538946.879755983, 8538956.27393154, 8538959.0979755, 8538969.558768725, 8539021.875, 8539026.19341535, 8539026.5625, 8539043.58442988, 8539047.526095856, 8539057.782302817, 8539070.676234473, 8539073.4375, 8539074.127404219, 8539095.3125, 8539098.535665652, 8539105.37563995, 8539120.3125, 8539126.5625, 8539139.629937217, 8539145.521049626, 8539156.465678249, 8539158.431156369, 8539158.463788256, 8539162.767592514, 8539165.625, 8539175.0, 8539178.60334494, 8539181.25, 8539185.470840791, 8539186.131607564, 8539192.1875, 8539193.184023108, 8539193.729360119, 8539194.03835557, 8539195.516212333, 8539197.057715416, 8539218.391572135, 8539224.30751035, 8539224.565421384, 8539225.159144161, 8539231.146686641, 8539236.069355533, 8539237.439705033, 8539237.871235471, 8539239.72662283, 8539245.793992842, 8539246.858541287, 8539256.25, 8539257.8125, 8539275.602549773, 8539280.522123823, 8539281.85230307, 8539293.792559808, 8539296.68277179, 8539304.6875, 8539308.33688179, 8539324.590070747, 8539355.353675963, 8539358.312749773, 8539375.0, 8539390.625, 8539410.517438482, 8539431.537325278, 8539444.456942847, 8539461.918159569, 8539468.747196224, 8539468.921796944, 8539483.656472713, 8539489.625389004, 8539490.26521321, 8539512.529244822, 8539515.755279291, 8539522.78436639, 8539524.654811155, 8539525.0, 8539526.5625, 8539550.0, 8539571.685683388, 8539607.699063076, 8539624.296255644, 8539628.125, 8539637.645989388, 8539645.138999376, 8539657.062242, 8539661.655039761, 8539676.462878425, 8539692.603456037, 8539706.214621624, 8539713.647526242, 8539715.74004405, 8539739.974341884, 8539762.767510436, 8539763.929596527, 8539788.668602243, 8539816.2947768, 8539820.3125, 8539821.875, 8539829.488436814, 8539839.42738354, 8539847.486034134, 8539871.128052, 8539871.518304355, 8539877.407452712, 8539894.92129312, 8539897.992027862, 8539959.493866012, 8540038.092087943, 8540073.704942489, 8540118.001091514, 8540129.6875, 8540131.25, 8540131.704168055, 8540141.43243711, 8540150.0, 8540186.5295229, 8540200.942427982, 8540239.0625, 8540281.576152459, 8540330.304834304, 8540344.088229414, 8540344.563692695, 8540358.582150344, 8540359.375, 8540365.447645552, 8540448.468999302, 8540465.315928351, 8540469.907040767, 8540479.6875, 8540492.1875, 8540515.477352465, 8540556.492336035, 8540562.5, 8540593.122386938, 8540608.721050268, 8540639.508666089, 8540642.1875, 8540656.669743251, 8540690.268597748, 8540720.3125, 8540744.143269526, 8540782.8125, 8540785.994686902, 8540797.463277303, 8540853.890313135, 8540854.17034991, 8540879.6875, 8540901.5625, 8540946.928929335, 8540951.746747715, 8541005.89973999, 8541074.024123518, 8541167.1875, 8541229.6875, 8541232.663244288, 8541240.625, 8541244.717653928, 8541249.83268376, 8541271.365519844, 8541347.925109174, 8541515.877359027, 8541516.258482689, 8541670.3125, 8541670.42467538, 8541905.684649313, 8541918.69480639, 8541943.75, 8541978.125, 8542085.9375, 8542096.469735097, 8542138.580743078, 8542233.155423434, 8542458.480313411, 8542736.017407395, 8542825.421364205, 8542940.625, 8542989.0625, 8543129.809063762, 8543145.075416522, 8543369.522034219, 8543457.106597379, 8543560.9375, 8543561.580886716, 8543632.980600808, 8543729.847008223, 8543736.571905795, 8543752.084348377, 8543764.429850016, 8543923.4375, 8543993.75, 8544124.28172825, 8544219.40807026, 8544248.4375, 8544296.766297292, 8544357.623190347, 8544496.837314108, 8545063.68591667, 8557440.48174883, 8557508.2274764, 8558581.853095876, 10004045.774990046, 10053182.8125, 10062275.0, 10063364.0625, 10089095.350594314, 10092067.1875, 10146865.767479599, 10146907.8125, 10146935.554426838, 10176642.301579554, 10177379.463760527, 10177422.712168673, 10177647.285272928, 10193896.800305683, 10196046.467618678, 10199373.4375, 10200246.498076903, 10200292.642330104, 10233279.996555937, 10235057.896698203, 10236250.0, 10236253.533786027, 10239392.1875, 10241667.720230976, 10244480.870022073, 10278000.0, 10278357.504444972, 10278859.858961228, 10278898.4375, 10282089.0625, 10282829.6875, 10318550.0, 10322090.345033696, 10327568.75, 10335506.44460112, 10337830.152018894, 10346294.861638945, 10346771.875, 10346788.331941986, 10348954.708927821, 10349253.926534973, 10350449.64094728, 10350587.25516401, 10350710.9375, 10350832.812619729, 10353358.24118153, 10354770.030806607, 10354831.121574758, 10354833.132236917, 10354868.75, 10355150.015709726, 10355675.92835296, 10355960.66009278, 10357304.457741125, 10359417.308146168, 10360029.215792527, 10360262.5, 10361621.720203191, 10362538.800985344, 10362664.135459252, 10362785.9375, 10362995.70744742, 10363032.827497726, 10363043.399518592, 10363139.0625, 10363178.084549787, 10363232.741678929, 10363334.35955682, 10363515.247673497, 10363532.8125, 10363582.63149108, 10363701.277997036, 10363741.982731488, 10363754.6875, 10364188.600813685, 10364253.13025754, 10364382.8125, 10364610.304129086, 10364646.037484605, 10364781.746635849, 10364788.845623042, 10364833.470044825, 10365037.888519857, 10365710.9375, 10366493.788769107, 10367459.375, 10368032.97376128, 10368284.98748726, 10368356.425368493, 10368660.9375, 10368943.43129468, 10369284.375, 10369294.679176096, 10369364.713404234, ...], [9.648741028097913, 57.46927809755195, 17.294326041839458, 9.01864604370031, 61.00957643732397, 17.602767093417864, 89.774549585719, 43.9586243462081, 42.55159251022622, 17.680320348708243, 42.59592640353024, 54.04353734689434, 107.23576579669549, 31.264150574930976, 5.555097663428294, 38.17237023028325, 14.572410464348252, 84.29299637762185, 71.60629296538673, 13.716559369403912, 129.09392654217845, 82.39526931510106, 45.627039750153926, 75.3073835298328, 6.771200219710867, 30.447403193489677, 159.79019276975492, 63.47691019539713, 9.716064687433159, 8.886452486511313, 132.7685911767278, 74.63641651644852, 85.1748397891102, 28.926857243166218, 23.933250290962455, 13.626959578914224, 53.11905378739375, 7.858062494592889, 10.209328626079545, 71.30384067579033, 58.0674646823921, 36.57997036153314, 101.57550623820566, 8.5531901770339, 60.84099678853477, 23.40499325223045, 68.71398326702246, 41.33173145702126, 25.039009271925792, 103.40659714477465, 14.981410385598808, 16.213041237289872, 92.7942139551709, 108.72232586011248, 123.80241627156987, 41.627598250816376, 10.096080514550295, 20.078684445143622, 14.964381761441851, 14.067093670231053, 94.81229463789087, 8.29508369866759, 6.3927971315050245, 18.13795630996421, 13.855693649387907, 25.539644021554782, 70.51826118264815, 32.13785581377562, 11.970570051739694, 34.06921053419706, 31.931767959452273, 55.69771745920043, 16.528022961841092, 191.18687092174503, 78.15982698070465, 125.20358659328541, 5.966334746086373, 44.92746393756031, 37.233283270990114, 11.135978919991347, 14.615920844841062, 57.58154744046355, 13.95601200085126, 63.367834253612116, 60.77260935681462, 18.769943364691176, 5.529541715732241, 81.1401051658264, 6.6819077719546875, 117.83358513007768, 39.00452292032178, 18.02479812365417, 37.73610571309797, 14.945856695224014, 17.374141921019774, 47.97093813646312, 46.59891713381983, 122.18474907196564, 46.99915984409109, 13.467169298460783, 28.64966631709629, 64.26696996702566, 35.81931366461285, 71.13367996316065, 25.175301710364298, 39.633292316729595, 43.3157883013095, 5.734892029550538, 25.914489166347856, 68.22275249472497, 30.939379407837137, 25.678313789635816, 7.053067359146601, 8.957175325758692, 49.687321432653675, 15.300752932934278, 6.944797880093793, 13.062988365492325, 10.516287344699995, 15.057984934586667, 84.88415587660594, 50.190744557461656, 113.32771951212595, 6.282143658627058, 10.746997933781898, 5.1669937385314295, 6.643080358514863, 9.67313844751005, 76.5501353083935, 17.68884317430524, 13.184816543724065, 60.35185220662881, 124.64741568036293, 86.62747912284347, 16.278095534447463, 28.12233699395854, 49.53702566851463, 13.39112721638736, 7.063000160086243, 29.95990224543218, 10.582134643434108, 11.787634031052331, 6.40297331386419, 75.60948297349253, 58.81022597506546, 19.039064117848906, 53.19252759021592, 41.20474268939256, 84.0569343620827, 11.012749956593371, 50.857702860009795, 82.79721988978574, 10.968971772945322, 28.613518541199642, 61.52577126194582, 9.026771815002492, 13.538098889412685, 12.169546346984701, 36.70301605477391, 17.765744233387746, 80.73753296451461, 59.734517476903356, 35.97641482566255, 93.43050555832991, 11.44097051728914, 13.700602808546279, 21.385570148950784, 62.21198373270872, 38.04477065858615, 22.039231857742465, 20.249407853481543, 61.28205092058349, 69.92170432022485, 49.921295867818294, 9.068592157175692, 5.512018437041563, 5.602767886742836, 61.45497238784797, 5.663254542298579, 35.73548252007885, 12.530536530978196, 14.715989190123956, 28.830526021161198, 84.13821321007575, 33.110790832631245, 12.876177116283833, 63.24425673270619, 15.781498759626169, 9.240073794217443, 11.217058336291194, 70.98711812552506, 44.934085798696906, 16.537274241612426, 36.76766083532868, 26.681514308106948, 28.272147634455628, 7.63418602313892, 21.587849228327933, 52.32972954417237, 6.95846076936733, 50.03305594030884, 16.139637731069524, 5.968232197416827, 19.265734221996436, 6.2998940264871255, 52.0801049776154, 9.343942179710716, 83.35443330508312, 10.57823333582126, 45.506925497273286, 50.25133580048655, 15.394219397398134, 14.354581177202538, 74.14836881052133, 59.12925103816642, 10.457758863644063, 7.510396815636309, 14.686200668114363, 13.833214334688448, 5.291558165192295, 67.38435921303892, 13.370796226376719, 14.825881782709141, 23.232742663095273, 25.992343205020454, 9.499983888333523, 6.85208529767156, 29.511391808512304, 12.794348431171086, 58.680529984320245, 46.66470187193908, 13.486126112922028, 52.20960843494539, 5.55602195292187, 85.58074186285802, 18.127002876278553, 47.20513303507724, 8.784612140195364, 72.82452899552922, 11.464998447020355, 8.607712626861076, 9.862283586788308, 14.175247906309998, 23.91826997792684, 29.453008728238487, 28.95127240264391, 19.215017638499546, 49.32681082080044, 35.08268604484586, 9.633359863218551, 19.104721739563367, 6.917530796735125, 77.3189159000465, 6.019150894651281, 10.619168860601514, 65.72947916486734, 25.270297949994085, 6.000155323669675, 7.121146145664083, 165.75572278977626, 25.52453535582676, 43.16123653620361, 13.136420516892851, 23.683611951069203, 25.656015100937175, 44.62891795072983, 11.67771148841554, 11.885218711191314, 33.56189670251748, 81.44417637090247, 59.707667560736354, 26.835403162071213, 48.17590837759474, 43.57537820020778, 69.60965093018861, 17.88685977243325, 62.916326529499294, 28.214123618125384, 13.829581807868106, 17.115990694445646, 82.85672530970635, 12.481562436657532, 48.10750373524165, 84.79193193371394, 108.80735423514597, 63.670623315337664, 15.774510416725612, 41.56953800836302, 51.67251267168534, 101.64328381542515, 24.704780365966293, 23.4557169422675, 54.55753783785112, 85.52870702918165, 42.809588653779144, 30.72029881646339, 127.19491115978823, 5.4910404669549475, 11.835625603077593, 51.74598551472336, 10.31539007858643, 21.637029259107603, 42.60288283435086, 10.419722866591943, 36.872119274092796, 82.64625498156155, 5.753040548874407, 61.65213184004999, 82.58241611197961, 15.969492397010029, 14.080871476636363, 21.219518871108377, 48.75067389049484, 12.822678240038275, 30.450793467068696, 32.98314309227872, 5.215638887307671, 14.586889857355217, 20.776094463719563, 65.12962379396974, 5.166369260575302, 31.305684138914778, 36.39378782382174, 38.012610858304164, 6.198374862062309, 5.575025138471737, 37.5347059236174, 25.600928150333075, 15.024552455023462, 16.35628837253527, 89.8992387925935, 5.43762443892361, 75.27784157105454, 14.509661629750276, 18.844401216982785, 29.438580029851124, 17.53792312986689, 31.679907473427512, 19.19108141393425, 5.583337750674418, 35.05987744360265, 19.656604353249506, 70.56575843743292, 23.84751106134125, 6.612162935191861, 7.938659985968663, 17.31181984773668, 141.3195899291989, 6.741704488528154, 72.05342851992258, 5.621075061222495, 14.001064830005186, 16.333038099891496, 101.97489284855038, 11.213996046986946, 8.986296822224148, 10.772986451808388, 95.44972667179064, 6.690861152446125, 12.242587523266552, 47.70759879563566, 9.417535217725131, 74.25413025069125, 6.841739455429855, 6.756810944882025, 15.004153283319587, 7.573154902391042, 50.25813662716652, 27.166488740246727, 7.60361148469515, 84.16662222393605, 13.823534387240555, 6.055761312345551, 47.612794966078674, 48.36826173816546, 5.327481657723342, 20.077981216212102, 112.22829858208532, 17.31626968417823, 11.40004013010032, 18.526401828508043, 62.69905806746236, 26.378844361177208, 109.90854320324755, 19.624275825690745, 24.800755573081943, 20.826226939456376, 5.994482999170099, 40.27960008117657, 7.568937308148135, 40.71148108516068, 16.67489059674338, 18.558757488638243, 27.752620826259772, 25.230420931559156, 13.9138220803507, 21.50172594922698, 32.89477751531307, 13.19817339618869, 80.80793707267786, 48.97214399958802, 66.03377181567113, 20.82190298420755, 15.058741207765692, 26.542985158971714, 49.54464506883953, 96.23968297609062, 75.35174723787954, 67.04738646447586, 99.27403711063043, 20.662755870187745, 8.379508551802987, 32.57646013264327, 56.282309099020075, 6.951695393683211, 14.894406225356136, 55.61471767636086, 64.77634300238809, 46.94604964059461, 82.57557809621346, 50.676294421361135, 5.296708480374578, 9.518466639079735, 65.10103007975917, 13.256885930356496, 18.77953141042958, 10.517166321531006, 42.80883682451814, 10.262692254951661, 58.20528005994571, 113.29843843973349, 100.97776993607775, 79.37687571894485, 8.273518877041068, 102.39082590911678, 14.035984155502776, 105.9098942880604, 51.769403746493865, 26.74044674932193, 33.1742474215507, 13.01271731258434, 8.478838406520241, 25.523455117619896, 7.441497952144423, 11.442095780212156, 38.11289886128286, 19.745588782525424, 53.78818420639576, 13.38400390353924, 5.533916974041549, 32.744223288091334, 138.71015812052758, 42.113776422830256, 6.0935976316473015, 7.215451468423948, 9.572009063658845, 14.347043201165558, 42.45849518136424, 16.67891030761217, 10.926524037210594, 160.93714843332592, 35.809457686953074, 123.24801957809959, 15.302693868364573, 16.479931462110535, 5.294301459268991, 18.0504313762384, 46.66370405048578, 45.34268864136898, 15.711397383198536, 12.74897616450755, 7.152533934392118, 19.574088424482817, 44.66689982920767, 99.69308899689477, 5.0385109579684055, 73.12788343640233, 7.195454639749637, 57.11215015374644, 8.538649771916198, 58.40530203076051, 52.161954957043825, 9.321822972848082, 32.173337161231316, 95.13066797506035, 18.68499584514354, 59.409698712866046, 29.372035275388395, 65.97741845766483, 10.198802118989093, 59.006635472502666, 11.16733138660361, 45.910460302210126, 97.11127735262836, 16.389317753143622, 8.988272437090197, 72.31524078118986, 30.29127598818785, 76.50902846340728, 97.02024066644945, 10.68260820884946, 42.921766579306414, 15.52877542876721, 46.11300930560688, 71.13364306202479, 57.07852863519055, 18.690110252534037, 12.931061426504263, 54.98433197651053, 68.31272947001571, 7.991932709567966, 97.66039407258836, 82.0791029456831, 23.1186326710598, 55.768104789902594, 117.24352817245362, 62.42590087452349, 39.57169290832594, 34.0258663056891, 78.97267342009678, 47.378955182430595, 13.300384147700541, 75.88623603783893, 134.9649556281925, 8.684584113265863, 6.057746181573786, 20.31155608105537, 51.15671034077428, 34.71477810053275, 56.696414850815714, 60.446959513919964, 5.835381804597287, 10.817479246110537, 8.134802105042574, 70.38308104151058, 14.87647525075467, 54.644508108215625, 10.37225180107445, 164.81958726916386, 68.53354622899471, 23.74203729238377, 52.69991048269383, 11.267434825099832, 72.28431458909633, 8.187648964430322, 33.09829251279693, 31.355397760723836, 6.850258025392662, 29.573533034158718, 54.85412047167545, 6.429969802880984, 18.92527196892815, 112.6811142319898, 62.59369396580401, 9.530644673145822, 13.806057425569879, 13.196794771426102, 20.666193794409892, 5.768810924275374, 17.59930958479945, 56.44997081851119, 5.772564394523349, 24.40711768744113, 17.212284465978627, 8.83950112115821, 11.574184530589578, 99.1135533315162, 8.762998286997934, 12.477329160881128, 20.234182316530276, 28.272866178705016, 6.5371711413744285, 98.60677038636472, 95.73052405404052, 8.736799584985409, 26.709043593502308, 88.34090430132257, 33.57964489596749, 11.253523367735054, 27.828557694541793, 49.48548722506612, 31.698320725574522, 9.319569865769692, 52.68493351548588, 31.60722827884893, 99.1847139040259, 53.99419975282787, 99.27221879205418, 5.419718643392262, 47.51047357592248, 19.959539974781183, 19.769788801597755, 63.904369468012234, 26.809729508188575, 19.846347035397777, 66.89193498476634, 92.62855073299465, 18.861115358067764, 20.839474777699788, 37.42022509425109, 182.7741985992954, 29.34359044318344, 24.61699422645254, 13.655484533205463, 39.09132362919904, 79.04850596253439, 60.0202171143347, 24.228974704523946, 16.8703206137141, 49.578287001730814, 10.669392685205263, 83.16655518477134, 6.465320039079148, 91.34751096166816, 18.590165376370898, 23.03277625020829, 27.93356997536366, 27.809699131435487, 67.90582799758366, 14.439426858664422, 36.95919163146322, 48.44733134596171, 50.69252724033677, 29.073208686244715, 53.749840765675444, 7.033818854464092, 6.869658493133527, 9.264873119608843, 25.44339384585335, 6.340963381544117, 14.487144017755064, 26.805314352959307, 48.49411272784782, 55.91471787347582, 66.18362534528761, 118.86801964193671, 167.2887724943404, 22.15617143037401, 58.31541324429291, 11.700466601439901, 58.60332287927794, 72.89603436125282, 8.121149617185816, 65.18013559913702, 86.36962254004041, 14.023431101653571, 46.65023030277744, 79.44883983332002, 8.012246204170292, 9.313071145936755, 25.609510752360677, 31.927717451201538, 28.810765603966143, 66.03501535198862, 18.148638502818045, 5.395958792414531, 31.749736078195518, 48.09130147250242, 79.43401314548987, 83.2552221906169, 10.55673104666444, 19.004869094206338, 17.65155076184209, 26.094886750776567, 24.4187585310844, 31.862649162075225, 25.59967437947021, 42.19870947977445, 40.17816847203319, 7.94725618560168, 36.752113103191036, 85.03373605100522, 59.16952189525769, 57.05967596018054, 63.86067612213714, 9.326231651130398, 38.69883193791839, 28.152029943699038, 40.13355505438527, 28.262847177104586, 35.71474285061214, 9.694514124731144, 68.60337751630487, 89.79043326412051, 110.681632011619, 70.52129582382726, 54.523035746745556, 32.743248638837905, 30.066720736557215, 9.209646742171516, 52.5862355274775, 25.527250193742347, 6.531272829696707, 33.67597739073747, 68.07268407076832, 31.587869162696414, 57.36690223160926, 14.37897691607257, 70.1971719321851, 10.532265350239534, 32.949129360449106, 24.06866267449806, 20.46311037088075, 16.614393453273895, 58.19943345907282, 8.519705843737393, 10.647455521909633, 67.7096483070755, 5.941492341341819, 9.107655875704689, 8.766196404343486, 59.907849047260534, 65.50538661898472, 66.52466153060962, 21.8223130138143, 50.17928938742489, 43.48370882141121, 16.536390159397072, 79.49332744809597, 12.409620910634223, 58.509054703241056, 7.639132637309674, 9.989980854316592, 51.96765048341881, 44.24685884042974, 62.904454771846474, 15.800810715780125, 23.43399874315775, 7.843447892303605, 34.44395331839226, 21.66155625325988, 43.39828954899215, 91.26786712280347, 17.14325976662523, 33.49477874417351, 105.15736656798383, 9.501108328624932, 54.012104475092634, 6.031155862227867, 25.358953735022176, 27.363024585033557, 11.461785773359129, 19.11868758150647, 23.032035415557186, 42.17563538917135, 22.17151937359818, 5.953385625180903, 14.561825441695992, 6.284002345478216, 9.280935485664669, 16.57434402175752, 105.85751899823464, 41.15104568231192, 28.20322144176402, 53.69023350583873, 31.58789779746171, 37.52880796531633, 21.35583262647769, 67.58743002159451, 15.10624734233212, 21.122838341271436, 51.44748016467581, 5.559083442956806, 22.44125942174441, 14.24236913365947, 78.1920578716645, 73.15000088632289, 91.52568976772817, 22.32939969067185, 7.199086121458616, 12.447432709348348, 6.652652032396468, 11.123327146905128, 8.379565007606951, 19.55892905143246, 88.5459313245618, 13.727192764730667, 67.7356697028075, 15.46246578477967, 37.63776860286005, 23.19018320726897, 80.09156782556713, 44.263836044462224, 61.80847050194822, 20.25884943412386, 21.785923608419154, 6.630697291786025, 38.9117399761775, 53.92604359087501, 8.196909974063134, 66.80269365197078, 21.26899635959844, 26.698990665056858, 6.8494908536295025, 27.84349261667489, 46.45762133030702, 74.77464142407862, 8.835820149745537, 9.568327240937938, 7.555865800747705, 47.28164390177864, 18.30374499296931, 52.0088116761254, 74.22340000573962, 145.24126962494017, 16.542188980560713, 9.907674010775768, 12.697036758594777, 26.015488075711865, 129.83991560530228, 13.634219046618473, 13.477907783801182, 106.82293565768278, 17.808327682976614, 16.06927589368583, 73.89849317584016, 53.379866744468984, 42.9054931497895, 16.53560784547478, 20.759989015385486, 35.58536758612986, 17.807927625974582, 7.983805835145349, 45.202626040578565, 16.34972139387078, 17.96542259598343, 16.409081321192247, 115.7676796042129, 8.740333523680066, 49.07872955746256, 14.306024411211903, 15.062944777680697, 25.167164730409354, 13.592649797376367, 32.934158846865586, 78.41565680627721, 63.86194571771318, 15.953304908923647, 78.37367777394729, 20.308023191244786, 10.239261591042899, 26.681353480591067, 31.866767336260388, 9.713466958410104, 80.23153611459645, 64.06946353964823, 8.506102228790695, 49.37000078687717, 8.317052018715945, 17.362097904453424, 18.315344900821284, 45.367402527855404, 52.59613927713726, 80.55131986763494, 11.213061253737044, 11.428451104859555, 23.12929007173946, 8.623231736295507, 133.29885704825975, 99.43617069194394, 10.902158583217005, 59.588298268750336, 13.07358010735281, 16.164277415645465, 57.610399410011865, 21.689189685910613, 172.49964914505057, 18.06784118143389, 71.88354794546106, 7.644319812721694, 18.324568103961287, 32.56979999997009, 70.89741788027062, 51.0755847249931, 43.42331803121595, 7.462954511362023, 23.256096825255625, 11.70964842956362, 12.361119093297495, 27.293186275763716, 102.44577541856322, 32.84072762697021, 47.90825898727891, 65.39405286196165, 64.12736710286615, 74.61903853744965, 31.163727422211167, 37.61969813963629, 18.131420973159024, 18.39200918154482, 15.586453393900191, 5.080617267890299, 42.378470309033965, 70.73982481729475, 30.839001635014743, 90.42623033464407, 25.82712520022518, 15.797869144060051, 62.46697706791764, 10.72508263706103, 25.2757191150627, 27.800359253899583, 20.89833553532072, 33.11026923026234, 106.01776794035042, 17.87637676511708, 19.352508817350127, 56.17835847777009, 48.96563413672334, 53.93126815932549, 11.187777341379993, 63.97275948262532, 69.49631069788596, 70.62072168733627, 5.328964314151707, 15.394917291180866, 14.152190803488878, 5.148806440340104, 7.233644449548806, 141.8006975545384, 9.00916151792315, 105.39728313932338, 5.329169700681775, 9.748068213039183, 34.70904917148855, 15.272448143848978, 43.823592408043304, 16.767950155213775, 86.07262068198365, 52.02095908905643, 5.514918889262944, 67.02736662186193, 27.670774855103698, 50.863206497911946, 124.73942663078779, 48.072764918510316, 72.0480888543854, 63.498297067789686, 167.9186972689031, 78.86892656447745, 14.109641410037057, 6.859928320048423, 79.90942876780748, 59.64977525499693, 47.103253322307786, 57.19037693104737, 6.934821589246252, 23.02463671143883, 14.083784908490825, 61.208379606341026, 15.322123945394063, 5.97762783839996, 7.049320825592083, 6.4671461468201334, 11.66717529932507, 90.9284306100073, 79.70542209216418, 20.251735795619823, 158.51339060679808, 37.17163497933404, 7.153531160756852, 85.0849646644653, 28.914329724831255, 17.377236684554376, 24.255109874651925, 15.227084231297056, 72.11643995994862, 30.862106540231554, 8.294524330162307, 13.755085829024896, 66.51324756931446, 11.065063716545147, 63.689177998394044, 155.27572766296996, 24.500913674317808, 107.16620820639314, 66.72052228473864, 41.045526760814845, 31.527773986336985, 64.37128110756753, 8.056641399169784, 5.291249686933776, 46.16505368603132, 42.46541697582605, 7.888335648801208, 25.874246933460395, 55.21492553438715, 92.96130127218623, 8.50330547811121, 31.07293885716898, 7.61732025336251, 40.67935782879178, 11.389484493014713, 12.242166462282066, 11.413348118636009, 31.326800518307458, 74.93602977441518, 55.053736866124304, 8.847744591806755, 5.220328337317034, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3296242.5403817566, 3296254.645873162, 3442450.505205832, 3447616.7929100296, 3450059.375, 3450088.0581497108, 3460832.6489046905, 3550078.125, 3552923.4375, 3634989.6335766497, 3699954.6875, 3704543.75, 3705131.25, 3779228.125, 3876684.820455544, 3877028.125, 3890239.1390766082, 3897054.607943187, 3925462.5137602156, 3946169.9491512417, 3972559.375, 3973764.0625, 3973766.655653056, 3973939.0625, 3976629.7259154203, 3977109.375, 3981877.582510134, 3982200.0, 3982419.172393107, 4022530.672318479, 4027090.625, 4038481.153055256, 4044126.7897275155, 4056845.943257447, 4070693.4641548735, 4078913.6688133455, 4082356.3595939768, 4116055.3410724145, 4132319.633072471, 4139299.6357289637, 4141596.548952364, 4145053.008685226, 4169866.4214854357, 4173533.2847920693, 4175120.3125, 4177485.60994183, 4177884.0669220844, 4178834.9853558266, 4225323.750584156, 4229813.522358287, 4233342.197929246, 4242651.252147281, 4243421.875, 4243811.58992833, 4243848.398001424, 4245475.91533153, 4258088.284283768, 4258155.595472088, 4286303.130987912, 4356095.062471381, 4356557.7650674805, 4358687.516051109, 4360754.058394306, 4361736.581899574, 4440471.508654892, 4442854.515731055, 4442860.9375, 4442921.875, 4582812.97970245, 4582820.3125, 4583530.648537901, 4586751.354705359, 4624951.102474238, 4667932.275651816, 4670685.797417113, 4694956.908940223, 6518339.366616661, 6879283.313164487, 7166355.580960909, 7203625.005285805, 7204115.536872412, 7206531.25, 7207340.339954968, 7210941.176081759, 7236093.75, 7264540.437864146, 7272990.551868108, 7360948.4375, 7400248.014555711, 7404030.955749847, 7406547.733910883, 7407543.453360729, 7422424.0109708635, 7424381.251140091, 7424802.782103451, 7424829.6875, 7424857.1249964675, 7425087.42790258, 7425418.75, 7425626.113231668, 7425940.625, 7426718.75, 7426765.254588467, 7427404.583046126, 7428235.741399826, 7428278.79434606, 7428312.5, 7428336.370669284, 7428605.350746184, 7431308.562671829, 7431701.5625, 7431723.895929276, 7431751.29580629, 7431758.896574545, 7431821.875, 7432242.278663623, 7432402.407467129, 7432433.232207464, 7432932.382632038, 7433715.655226737, 7434768.126802136, 7443498.7444424955, 7443841.668335354, 7445239.179883024, 7446770.054469594, 7446836.0074438825, 7448214.990298059, 7452795.690774591, 7486312.5, 7488038.072488116, 7488127.572610083, 7488364.0625, 7489629.6875, 7492113.0301332055, 7500797.112588446, 7509936.959440243, 7536884.375, 7537255.472222764, 7542559.147873902, 7542985.9375, 7544841.807970912, 7546409.759808329, 7560483.816550635, 7560797.389032597, 7566892.6108394805, 7569046.087933529, 7569209.375, 7575455.837859579, 7577979.6875, 7593318.675187834, 7599029.6875, 7649217.1875, 7671638.958515814, 7671644.376105306, 7672572.513245629, 7673035.553827746, 7673305.825642177, 7673502.1403848035, 7673503.963621039, 7673508.991816411, 7674568.75, 7674871.875, 7675439.0625, 7675466.5797324125, 7675645.504079408, 7685751.193790945, 7693359.687372399, 7695307.8125, 7695470.3125, 7695719.865558166, 7735504.659726284, 7739332.770272082, 7765827.277660714, 7771523.450284947, 7784254.359424146, 7784991.745751671, 7785043.544357065, 7785251.778509494, 7785307.10653036, 7785314.56178063, 7785556.993838223, 7786017.127046569, 7786171.193511195, 7786398.427803141, 7786903.125, 7787311.827087141, 7787410.875164044, 7787693.954206665, 7787796.764977356, 7787834.431422008, 7788658.009486364, 7788834.375, 7788947.238909729, 7789012.5, 7789995.211846429, 7793898.424601489, 7795267.272264588, 7796495.833527451, 7812717.1875, 7820227.466412775, 7822190.625, 7824881.532434589, 7825003.450166399, 7836997.328705337, 7851287.754476149, 7862450.0, 7869860.952292162, 7871523.4375, 7872607.430018043, 7872706.25, 7872875.0, 7874365.738911148, 7889387.336990954, 7889815.625, 7891721.23399347, 7896080.77447913, 7909670.048300393, 7932268.808298236, 7939280.925292, 7949029.702737492, 7953640.3641297845, 7953741.703758619, 7954041.05678628, 7954252.783336092, 7956052.982322273, 7973295.505363426, 7974606.678064954, 7976923.084352332, 7978366.481158064, 7980200.0, 7980356.25, 7981538.619927129, 7988592.1875, 7989275.46380423, 7993903.125, 7994295.9458132945, 7994757.287343768, 7995253.961345807, 7995418.996446346, 7995631.455578645, 7996075.561614459, 7996144.317529324, 7998310.21923486, 8000726.313571743, 8001808.567396871, 8003424.845342312, 8003636.2098128935, 8011594.495237323, 8011650.0, 8012030.02425282, 8012572.659356084, 8012886.662963648, 8014400.970223337, 8016441.4973132275, 8017226.21081918, 8017285.9375, 8017302.38832596, 8017392.8596127555, 8017454.686337655, 8017485.6517661745, 8018215.452238711, 8018354.6875, 8018922.866770438, 8019355.944726423, 8019793.056119987, 8019909.375, 8020131.575513752, 8020275.436000617, 8020616.9471158115, 8020957.8125, 8021505.428591272, 8021670.220878617, 8021943.61561356, 8025687.5, 8029723.4375, 8056870.880508026, 8072045.3125, 8084653.208010963, 8084654.361603088, 8085058.707847084, 8086039.0625, 8089633.534686435, 8109109.199673048, 8110897.442027793, 8113621.042302574, 8113673.026840686, 8115967.390131481, 8116314.0625, 8119174.585315642, 8122132.802837904, 8128574.771189898, 8128951.23904719, 8129081.25, 8130225.0, 8130749.423777469, 8132052.773174857, 8132064.422172363, 8132125.664748562, 8132439.472650887, 8132534.194547759, 8132968.159698488, 8133082.379637243, 8133640.625, 8134005.744339656, 8136699.440125261, 8151021.875, 8151088.2034665225, 8151779.6875, 8151831.25, 8151833.058370509, 8152162.254258926, 8155553.887306313, 8155584.375, 8156600.104114085, 8178817.1875, 8197528.068066415, 8200052.035367067, 8200813.276591085, 8202005.674988728, 8202235.040262184, 8210446.918215175, 8219703.174188467, 8220789.570171649, 8223200.0, 8227430.685128967, 8229319.584979957, 8229696.875, 8236746.707241768, 8236754.709118034, 8239179.61531851, 8239418.632011691, 8240007.237693047, 8241820.3125, 8262938.944390161, 8267958.017630377, 8269812.038525971, 8272468.516800061, 8272483.975110058, 8277274.233471847, 8277346.306287562, 8293929.6875, 8300794.606331183, 8305936.449352822, 8315119.982298329, 8316174.191512498, 8325097.7160400385, 8329202.070775974, 8329600.228420683, 8330743.639804402, 8332425.0, 8342306.376394411, 8342751.291754056, 8344665.734896448, 8345534.113207805, 8346646.929512553, 8346822.999067564, 8347107.573054358, 8348431.25, 8349141.8123948835, 8355783.425186035, 8370320.797382903, 8371848.537637604, 8384790.625, 8387669.129628933, 8388921.841369113, 8390228.767111206, 8393754.603552517, 8395289.0625, 8407489.627716815, 8407867.188533388, 8408331.077641655, 8409568.42212177, 8412562.183183646, 8417634.375, 8418050.0, 8423313.63495477, 8423543.095388353, 8423559.375, 8424963.009055594, 8426887.667513102, 8429156.734188795, 8431110.726810906, 8433854.127114508, 8435873.4375, 8438913.358616766, 8440025.33867158, 8445579.117945561, 8446050.611440897, 8450209.199102104, 8450534.279158227, 8450535.9375, 8450628.515883898, 8454842.895156557, 8455143.709750323, 8455849.807635231, 8456820.013942547, 8458818.227084942, 8459559.375, 8461694.765136383, 8462142.27371747, 8464182.8125, 8469715.625, 8480650.065031813, 8486953.17906733, 8488253.016108682, 8488987.5, 8491133.460746238, 8491579.6875, 8492118.980716186, 8492734.571549399, 8497051.448847879, 8501511.109195037, 8508985.9375, 8511204.6875, 8513253.999801971, 8513261.1694627, 8513263.559259193, 8514518.75, 8514963.689662999, 8515300.0, 8515869.337695742, 8516525.180914417, 8517108.025745174, 8517148.4375, 8518174.47455192, 8521996.051870191, 8523252.695811061, 8525229.16062072, 8525327.490813976, 8525876.5625, 8526576.5625, 8527346.875, 8527965.625, 8528231.225224383, 8528274.926736455, 8528341.927745545, 8528628.966259046, 8528640.625, 8528643.652820006, 8528699.197513742, 8528707.193963353, 8528817.534194417, 8528818.577167705, 8528888.592020381, 8528903.09282409, 8528918.75, 8528958.862903496, 8528981.25, 8528982.333526487, 8528987.517222209, 8529043.75, 8529096.875, 8529099.22934084, 8529139.115208406, 8529158.158415942, 8529172.146476531, 8529210.772273093, 8529307.034229206, 8529322.8964753, 8529324.867360262, 8529339.12915097, 8529426.488714352, 8529501.473966967, 8529556.341639943, 8529625.352489527, 8529643.853706364, 8529677.193254692, 8529684.375, 8529723.4375, 8529844.870427487, 8529916.462342087, 8529948.554437144, 8529960.220901156, 8529970.3125, 8530057.8125, 8530101.38174409, 8530176.5625, 8530211.211733036, 8530289.0625, 8530373.885579497, 8530400.269781105, 8530410.9375, 8530465.613648172, 8530559.375, 8530746.118155299, 8530764.201836867, 8530818.75, 8530921.875, 8530951.5625, 8530960.249050874, 8530982.837370425, 8531059.400203526, 8531063.49199895, 8531085.55974568, 8531100.334221667, 8531105.81426257, 8531176.164685879, 8531253.125, 8531270.3125, 8531281.25, 8531291.882767817, 8531419.148994673, 8531436.083491731, 8531489.922658883, 8531529.6875, 8531540.13963886, 8531585.101642607, 8531610.286652107, 8531617.1875, 8531618.423877815, 8531622.835413229, 8531637.5, 8531760.9375, 8531883.101563415, 8531951.233964987, 8531962.5, 8531979.6875, 8532040.625, 8532068.75, 8532071.875, 8532129.6875, 8532245.056949837, 8532260.31466948, 8532331.21204545, 8532391.308745028, 8532451.265472418, 8532470.476517579, 8532570.856345005, 8532579.283759343, 8532631.25, 8532637.5, 8532645.597613838, 8532720.104525788, 8532749.701522723, 8532760.9375, 8532765.607832246, 8532804.6875, 8532832.268691013, 8532862.652533244, 8532864.740160758, 8532870.946786374, 8532886.213345136, 8532946.9625915, 8532982.8125, 8533059.18311961, 8533296.85057218, 8533332.8125, 8533344.16953922, 8533383.3025254, 8533419.912169324, 8533502.750667294, 8533616.384779513, 8533678.90465458, 8533679.6875, 8533736.164095161, 8533830.91638157, 8533860.389618296, 8533936.912908997, 8533958.74528284, 8534202.299702331, 8534581.052237637, 8534671.29911992, 8534778.893443778, 8534921.787112016, 8535061.8547026, 8535076.83052218, 8535124.199531533, 8535232.053956244, 8535238.220302641, 8535268.63805415, 8535424.629120719, 8535425.312201532, 8535545.080744708, 8535749.673469152, 8535763.264269449, 8535821.34134786, 8535843.75, 8535965.964995828, 8536015.704029426, 8536151.913187401, 8536214.0625, 8536378.05043226, 8536423.423472067, 8536626.5625, 8536671.477627043, 8536773.4375, 8536903.125, 8537112.5, 8537497.419821199, 8537560.9375, 8537666.518677583, 8537705.557956304, 8537863.412419125, 8537912.406880353, 8537989.942393687, 8538007.8125, 8538044.319583908, 8538047.625845568, 8538080.681882028, 8538083.506109603, 8538092.1875, 8538103.125, 8538109.139919136, 8538114.11402353, 8538123.4375, 8538140.099054776, 8538148.133892754, 8538160.674039066, 8538175.362467207, 8538178.188408297, 8538182.498065159, 8538190.625, 8538212.359696314, 8538223.4375, 8538233.524728162, 8538237.141634673, 8538259.344413312, 8538293.97677584, 8538299.198179621, 8538310.799226418, 8538326.5625, 8538326.5625, 8538326.5625, 8538329.6875, 8538351.5625, 8538352.780799786, 8538361.446930483, 8538378.045255886, 8538388.183273867, 8538389.624863725, 8538392.85518894, 8538416.929227402, 8538426.5625, 8538434.206127796, 8538458.289201114, 8538472.876979178, 8538506.25, 8538506.549225047, 8538517.1875, 8538533.15043364, 8538534.375, 8538543.75, 8538548.111000568, 8538550.0, 8538566.771002071, 8538575.64927057, 8538577.126547132, 8538581.087553509, 8538594.755020363, 8538604.665739708, 8538613.776263682, 8538626.5625, 8538631.25, 8538631.25, 8538633.764356596, 8538640.55904988, 8538645.3125, 8538651.5625, 8538682.065352263, 8538683.65728577, 8538701.163676666, 8538702.333254958, 8538705.25379877, 8538720.545059836, 8538741.943608623, 8538751.5625, 8538756.082159948, 8538784.375, 8538784.375, 8538785.235540679, 8538785.9375, 8538787.36169008, 8538790.625, 8538790.625, 8538793.75, 8538795.306377543, 8538797.13110834, 8538802.527455892, 8538804.436482744, 8538813.368976781, 8538819.31392035, 8538823.83783234, 8538826.5625, 8538828.125, 8538839.53596656, 8538840.241714224, 8538845.3125, 8538848.4375, 8538853.125, 8538854.539906701, 8538860.9375, 8538868.577417126, 8538872.151171222, 8538872.173895974, 8538873.4375, 8538878.125, 8538879.377745794, 8538884.21914597, 8538885.9375, 8538888.6449452, 8538896.875, 8538910.783444863, 8538914.249021923, 8538922.25410034, 8538923.173601078, 8538928.541281715, 8538938.73186948, 8538946.879755983, 8538956.27393154, 8538959.0979755, 8538969.558768725, 8539021.875, 8539026.19341535, 8539026.5625, 8539043.58442988, 8539047.526095856, 8539057.782302817, 8539070.676234473, 8539073.4375, 8539074.127404219, 8539095.3125, 8539098.535665652, 8539105.37563995, 8539120.3125, 8539126.5625, 8539139.629937217, 8539145.521049626, 8539156.465678249, 8539158.431156369, 8539158.463788256, 8539162.767592514, 8539165.625, 8539175.0, 8539178.60334494, 8539181.25, 8539185.470840791, 8539186.131607564, 8539192.1875, 8539193.184023108, 8539193.729360119, 8539194.03835557, 8539195.516212333, 8539197.057715416, 8539218.391572135, 8539224.30751035, 8539224.565421384, 8539225.159144161, 8539231.146686641, 8539236.069355533, 8539237.439705033, 8539237.871235471, 8539239.72662283, 8539245.793992842, 8539246.858541287, 8539256.25, 8539257.8125, 8539275.602549773, 8539280.522123823, 8539281.85230307, 8539293.792559808, 8539296.68277179, 8539304.6875, 8539308.33688179, 8539324.590070747, 8539355.353675963, 8539358.312749773, 8539375.0, 8539390.625, 8539410.517438482, 8539431.537325278, 8539444.456942847, 8539461.918159569, 8539468.747196224, 8539468.921796944, 8539483.656472713, 8539489.625389004, 8539490.26521321, 8539512.529244822, 8539515.755279291, 8539522.78436639, 8539524.654811155, 8539525.0, 8539526.5625, 8539550.0, 8539571.685683388, 8539607.699063076, 8539624.296255644, 8539628.125, 8539637.645989388, 8539645.138999376, 8539657.062242, 8539661.655039761, 8539676.462878425, 8539692.603456037, 8539706.214621624, 8539713.647526242, 8539715.74004405, 8539739.974341884, 8539762.767510436, 8539763.929596527, 8539788.668602243, 8539816.2947768, 8539820.3125, 8539821.875, 8539829.488436814, 8539839.42738354, 8539847.486034134, 8539871.128052, 8539871.518304355, 8539877.407452712, 8539894.92129312, 8539897.992027862, 8539959.493866012, 8540038.092087943, 8540073.704942489, 8540118.001091514, 8540129.6875, 8540131.25, 8540131.704168055, 8540141.43243711, 8540150.0, 8540186.5295229, 8540200.942427982, 8540239.0625, 8540281.576152459, 8540330.304834304, 8540344.088229414, 8540344.563692695, 8540358.582150344, 8540359.375, 8540365.447645552, 8540448.468999302, 8540465.315928351, 8540469.907040767, 8540479.6875, 8540492.1875, 8540515.477352465, 8540556.492336035, 8540562.5, 8540593.122386938, 8540608.721050268, 8540639.508666089, 8540642.1875, 8540656.669743251, 8540690.268597748, 8540720.3125, 8540744.143269526, 8540782.8125, 8540785.994686902, 8540797.463277303, 8540853.890313135, 8540854.17034991, 8540879.6875, 8540901.5625, 8540946.928929335, 8540951.746747715, 8541005.89973999, 8541074.024123518, 8541167.1875, 8541229.6875, 8541232.663244288, 8541240.625, 8541244.717653928, 8541249.83268376, 8541271.365519844, 8541347.925109174, 8541515.877359027, 8541516.258482689, 8541670.3125, 8541670.42467538, 8541905.684649313, 8541918.69480639, 8541943.75, 8541978.125, 8542085.9375, 8542096.469735097, 8542138.580743078, 8542233.155423434, 8542458.480313411, 8542736.017407395, 8542825.421364205, 8542940.625, 8542989.0625, 8543129.809063762, 8543145.075416522, 8543369.522034219, 8543457.106597379, 8543560.9375, 8543561.580886716, 8543632.980600808, 8543729.847008223, 8543736.571905795, 8543752.084348377, 8543764.429850016, 8543923.4375, 8543993.75, 8544124.28172825, 8544219.40807026, 8544248.4375, 8544296.766297292, 8544357.623190347, 8544496.837314108, 8545063.68591667, 8557440.48174883, 8557508.2274764, 8558581.853095876, 10004045.774990046, 10053182.8125, 10062275.0, 10063364.0625, 10089095.350594314, 10092067.1875, 10146865.767479599, 10146907.8125, 10146935.554426838, 10176642.301579554, 10177379.463760527, 10177422.712168673, 10177647.285272928, 10193896.800305683, 10196046.467618678, 10199373.4375, 10200246.498076903, 10200292.642330104, 10233279.996555937, 10235057.896698203, 10236250.0, 10236253.533786027, 10239392.1875, 10241667.720230976, 10244480.870022073, 10278000.0, 10278357.504444972, 10278859.858961228, 10278898.4375, 10282089.0625, 10282829.6875, 10318550.0, 10322090.345033696, 10327568.75, 10335506.44460112, 10337830.152018894, 10346294.861638945, 10346771.875, 10346788.331941986, 10348954.708927821, 10349253.926534973, 10350449.64094728, 10350587.25516401, 10350710.9375, 10350832.812619729, 10353358.24118153, 10354770.030806607, 10354831.121574758, 10354833.132236917, 10354868.75, 10355150.015709726, 10355675.92835296, 10355960.66009278, 10357304.457741125, 10359417.308146168, 10360029.215792527, 10360262.5, 10361621.720203191, 10362538.800985344, 10362664.135459252, 10362785.9375, 10362995.70744742, 10363032.827497726, 10363043.399518592, 10363139.0625, 10363178.084549787, 10363232.741678929, 10363334.35955682, 10363515.247673497, 10363532.8125, 10363582.63149108, 10363701.277997036, 10363741.982731488, 10363754.6875, 10364188.600813685, 10364253.13025754, 10364382.8125, 10364610.304129086, 10364646.037484605, 10364781.746635849, 10364788.845623042, 10364833.470044825, 10365037.888519857, 10365710.9375, 10366493.788769107, 10367459.375, 10368032.97376128, 10368284.98748726, 10368356.425368493, 10368660.9375, 10368943.43129468, 10369284.375, 10369294.679176096, 10369364.713404234, ...], [9.648741028097913, 57.46927809755195, 17.294326041839458, 9.01864604370031, 61.00957643732397, 17.602767093417864, 89.774549585719, 43.9586243462081, 42.55159251022622, 17.680320348708243, 42.59592640353024, 54.04353734689434, 107.23576579669549, 31.264150574930976, 5.555097663428294, 38.17237023028325, 14.572410464348252, 84.29299637762185, 71.60629296538673, 13.716559369403912, 129.09392654217845, 82.39526931510106, 45.627039750153926, 75.3073835298328, 6.771200219710867, 30.447403193489677, 159.79019276975492, 63.47691019539713, 9.716064687433159, 8.886452486511313, 132.7685911767278, 74.63641651644852, 85.1748397891102, 28.926857243166218, 23.933250290962455, 13.626959578914224, 53.11905378739375, 7.858062494592889, 10.209328626079545, 71.30384067579033, 58.0674646823921, 36.57997036153314, 101.57550623820566, 8.5531901770339, 60.84099678853477, 23.40499325223045, 68.71398326702246, 41.33173145702126, 25.039009271925792, 103.40659714477465, 14.981410385598808, 16.213041237289872, 92.7942139551709, 108.72232586011248, 123.80241627156987, 41.627598250816376, 10.096080514550295, 20.078684445143622, 14.964381761441851, 14.067093670231053, 94.81229463789087, 8.29508369866759, 6.3927971315050245, 18.13795630996421, 13.855693649387907, 25.539644021554782, 70.51826118264815, 32.13785581377562, 11.970570051739694, 34.06921053419706, 31.931767959452273, 55.69771745920043, 16.528022961841092, 191.18687092174503, 78.15982698070465, 125.20358659328541, 5.966334746086373, 44.92746393756031, 37.233283270990114, 11.135978919991347, 14.615920844841062, 57.58154744046355, 13.95601200085126, 63.367834253612116, 60.77260935681462, 18.769943364691176, 5.529541715732241, 81.1401051658264, 6.6819077719546875, 117.83358513007768, 39.00452292032178, 18.02479812365417, 37.73610571309797, 14.945856695224014, 17.374141921019774, 47.97093813646312, 46.59891713381983, 122.18474907196564, 46.99915984409109, 13.467169298460783, 28.64966631709629, 64.26696996702566, 35.81931366461285, 71.13367996316065, 25.175301710364298, 39.633292316729595, 43.3157883013095, 5.734892029550538, 25.914489166347856, 68.22275249472497, 30.939379407837137, 25.678313789635816, 7.053067359146601, 8.957175325758692, 49.687321432653675, 15.300752932934278, 6.944797880093793, 13.062988365492325, 10.516287344699995, 15.057984934586667, 84.88415587660594, 50.190744557461656, 113.32771951212595, 6.282143658627058, 10.746997933781898, 5.1669937385314295, 6.643080358514863, 9.67313844751005, 76.5501353083935, 17.68884317430524, 13.184816543724065, 60.35185220662881, 124.64741568036293, 86.62747912284347, 16.278095534447463, 28.12233699395854, 49.53702566851463, 13.39112721638736, 7.063000160086243, 29.95990224543218, 10.582134643434108, 11.787634031052331, 6.40297331386419, 75.60948297349253, 58.81022597506546, 19.039064117848906, 53.19252759021592, 41.20474268939256, 84.0569343620827, 11.012749956593371, 50.857702860009795, 82.79721988978574, 10.968971772945322, 28.613518541199642, 61.52577126194582, 9.026771815002492, 13.538098889412685, 12.169546346984701, 36.70301605477391, 17.765744233387746, 80.73753296451461, 59.734517476903356, 35.97641482566255, 93.43050555832991, 11.44097051728914, 13.700602808546279, 21.385570148950784, 62.21198373270872, 38.04477065858615, 22.039231857742465, 20.249407853481543, 61.28205092058349, 69.92170432022485, 49.921295867818294, 9.068592157175692, 5.512018437041563, 5.602767886742836, 61.45497238784797, 5.663254542298579, 35.73548252007885, 12.530536530978196, 14.715989190123956, 28.830526021161198, 84.13821321007575, 33.110790832631245, 12.876177116283833, 63.24425673270619, 15.781498759626169, 9.240073794217443, 11.217058336291194, 70.98711812552506, 44.934085798696906, 16.537274241612426, 36.76766083532868, 26.681514308106948, 28.272147634455628, 7.63418602313892, 21.587849228327933, 52.32972954417237, 6.95846076936733, 50.03305594030884, 16.139637731069524, 5.968232197416827, 19.265734221996436, 6.2998940264871255, 52.0801049776154, 9.343942179710716, 83.35443330508312, 10.57823333582126, 45.506925497273286, 50.25133580048655, 15.394219397398134, 14.354581177202538, 74.14836881052133, 59.12925103816642, 10.457758863644063, 7.510396815636309, 14.686200668114363, 13.833214334688448, 5.291558165192295, 67.38435921303892, 13.370796226376719, 14.825881782709141, 23.232742663095273, 25.992343205020454, 9.499983888333523, 6.85208529767156, 29.511391808512304, 12.794348431171086, 58.680529984320245, 46.66470187193908, 13.486126112922028, 52.20960843494539, 5.55602195292187, 85.58074186285802, 18.127002876278553, 47.20513303507724, 8.784612140195364, 72.82452899552922, 11.464998447020355, 8.607712626861076, 9.862283586788308, 14.175247906309998, 23.91826997792684, 29.453008728238487, 28.95127240264391, 19.215017638499546, 49.32681082080044, 35.08268604484586, 9.633359863218551, 19.104721739563367, 6.917530796735125, 77.3189159000465, 6.019150894651281, 10.619168860601514, 65.72947916486734, 25.270297949994085, 6.000155323669675, 7.121146145664083, 165.75572278977626, 25.52453535582676, 43.16123653620361, 13.136420516892851, 23.683611951069203, 25.656015100937175, 44.62891795072983, 11.67771148841554, 11.885218711191314, 33.56189670251748, 81.44417637090247, 59.707667560736354, 26.835403162071213, 48.17590837759474, 43.57537820020778, 69.60965093018861, 17.88685977243325, 62.916326529499294, 28.214123618125384, 13.829581807868106, 17.115990694445646, 82.85672530970635, 12.481562436657532, 48.10750373524165, 84.79193193371394, 108.80735423514597, 63.670623315337664, 15.774510416725612, 41.56953800836302, 51.67251267168534, 101.64328381542515, 24.704780365966293, 23.4557169422675, 54.55753783785112, 85.52870702918165, 42.809588653779144, 30.72029881646339, 127.19491115978823, 5.4910404669549475, 11.835625603077593, 51.74598551472336, 10.31539007858643, 21.637029259107603, 42.60288283435086, 10.419722866591943, 36.872119274092796, 82.64625498156155, 5.753040548874407, 61.65213184004999, 82.58241611197961, 15.969492397010029, 14.080871476636363, 21.219518871108377, 48.75067389049484, 12.822678240038275, 30.450793467068696, 32.98314309227872, 5.215638887307671, 14.586889857355217, 20.776094463719563, 65.12962379396974, 5.166369260575302, 31.305684138914778, 36.39378782382174, 38.012610858304164, 6.198374862062309, 5.575025138471737, 37.5347059236174, 25.600928150333075, 15.024552455023462, 16.35628837253527, 89.8992387925935, 5.43762443892361, 75.27784157105454, 14.509661629750276, 18.844401216982785, 29.438580029851124, 17.53792312986689, 31.679907473427512, 19.19108141393425, 5.583337750674418, 35.05987744360265, 19.656604353249506, 70.56575843743292, 23.84751106134125, 6.612162935191861, 7.938659985968663, 17.31181984773668, 141.3195899291989, 6.741704488528154, 72.05342851992258, 5.621075061222495, 14.001064830005186, 16.333038099891496, 101.97489284855038, 11.213996046986946, 8.986296822224148, 10.772986451808388, 95.44972667179064, 6.690861152446125, 12.242587523266552, 47.70759879563566, 9.417535217725131, 74.25413025069125, 6.841739455429855, 6.756810944882025, 15.004153283319587, 7.573154902391042, 50.25813662716652, 27.166488740246727, 7.60361148469515, 84.16662222393605, 13.823534387240555, 6.055761312345551, 47.612794966078674, 48.36826173816546, 5.327481657723342, 20.077981216212102, 112.22829858208532, 17.31626968417823, 11.40004013010032, 18.526401828508043, 62.69905806746236, 26.378844361177208, 109.90854320324755, 19.624275825690745, 24.800755573081943, 20.826226939456376, 5.994482999170099, 40.27960008117657, 7.568937308148135, 40.71148108516068, 16.67489059674338, 18.558757488638243, 27.752620826259772, 25.230420931559156, 13.9138220803507, 21.50172594922698, 32.89477751531307, 13.19817339618869, 80.80793707267786, 48.97214399958802, 66.03377181567113, 20.82190298420755, 15.058741207765692, 26.542985158971714, 49.54464506883953, 96.23968297609062, 75.35174723787954, 67.04738646447586, 99.27403711063043, 20.662755870187745, 8.379508551802987, 32.57646013264327, 56.282309099020075, 6.951695393683211, 14.894406225356136, 55.61471767636086, 64.77634300238809, 46.94604964059461, 82.57557809621346, 50.676294421361135, 5.296708480374578, 9.518466639079735, 65.10103007975917, 13.256885930356496, 18.77953141042958, 10.517166321531006, 42.80883682451814, 10.262692254951661, 58.20528005994571, 113.29843843973349, 100.97776993607775, 79.37687571894485, 8.273518877041068, 102.39082590911678, 14.035984155502776, 105.9098942880604, 51.769403746493865, 26.74044674932193, 33.1742474215507, 13.01271731258434, 8.478838406520241, 25.523455117619896, 7.441497952144423, 11.442095780212156, 38.11289886128286, 19.745588782525424, 53.78818420639576, 13.38400390353924, 5.533916974041549, 32.744223288091334, 138.71015812052758, 42.113776422830256, 6.0935976316473015, 7.215451468423948, 9.572009063658845, 14.347043201165558, 42.45849518136424, 16.67891030761217, 10.926524037210594, 160.93714843332592, 35.809457686953074, 123.24801957809959, 15.302693868364573, 16.479931462110535, 5.294301459268991, 18.0504313762384, 46.66370405048578, 45.34268864136898, 15.711397383198536, 12.74897616450755, 7.152533934392118, 19.574088424482817, 44.66689982920767, 99.69308899689477, 5.0385109579684055, 73.12788343640233, 7.195454639749637, 57.11215015374644, 8.538649771916198, 58.40530203076051, 52.161954957043825, 9.321822972848082, 32.173337161231316, 95.13066797506035, 18.68499584514354, 59.409698712866046, 29.372035275388395, 65.97741845766483, 10.198802118989093, 59.006635472502666, 11.16733138660361, 45.910460302210126, 97.11127735262836, 16.389317753143622, 8.988272437090197, 72.31524078118986, 30.29127598818785, 76.50902846340728, 97.02024066644945, 10.68260820884946, 42.921766579306414, 15.52877542876721, 46.11300930560688, 71.13364306202479, 57.07852863519055, 18.690110252534037, 12.931061426504263, 54.98433197651053, 68.31272947001571, 7.991932709567966, 97.66039407258836, 82.0791029456831, 23.1186326710598, 55.768104789902594, 117.24352817245362, 62.42590087452349, 39.57169290832594, 34.0258663056891, 78.97267342009678, 47.378955182430595, 13.300384147700541, 75.88623603783893, 134.9649556281925, 8.684584113265863, 6.057746181573786, 20.31155608105537, 51.15671034077428, 34.71477810053275, 56.696414850815714, 60.446959513919964, 5.835381804597287, 10.817479246110537, 8.134802105042574, 70.38308104151058, 14.87647525075467, 54.644508108215625, 10.37225180107445, 164.81958726916386, 68.53354622899471, 23.74203729238377, 52.69991048269383, 11.267434825099832, 72.28431458909633, 8.187648964430322, 33.09829251279693, 31.355397760723836, 6.850258025392662, 29.573533034158718, 54.85412047167545, 6.429969802880984, 18.92527196892815, 112.6811142319898, 62.59369396580401, 9.530644673145822, 13.806057425569879, 13.196794771426102, 20.666193794409892, 5.768810924275374, 17.59930958479945, 56.44997081851119, 5.772564394523349, 24.40711768744113, 17.212284465978627, 8.83950112115821, 11.574184530589578, 99.1135533315162, 8.762998286997934, 12.477329160881128, 20.234182316530276, 28.272866178705016, 6.5371711413744285, 98.60677038636472, 95.73052405404052, 8.736799584985409, 26.709043593502308, 88.34090430132257, 33.57964489596749, 11.253523367735054, 27.828557694541793, 49.48548722506612, 31.698320725574522, 9.319569865769692, 52.68493351548588, 31.60722827884893, 99.1847139040259, 53.99419975282787, 99.27221879205418, 5.419718643392262, 47.51047357592248, 19.959539974781183, 19.769788801597755, 63.904369468012234, 26.809729508188575, 19.846347035397777, 66.89193498476634, 92.62855073299465, 18.861115358067764, 20.839474777699788, 37.42022509425109, 182.7741985992954, 29.34359044318344, 24.61699422645254, 13.655484533205463, 39.09132362919904, 79.04850596253439, 60.0202171143347, 24.228974704523946, 16.8703206137141, 49.578287001730814, 10.669392685205263, 83.16655518477134, 6.465320039079148, 91.34751096166816, 18.590165376370898, 23.03277625020829, 27.93356997536366, 27.809699131435487, 67.90582799758366, 14.439426858664422, 36.95919163146322, 48.44733134596171, 50.69252724033677, 29.073208686244715, 53.749840765675444, 7.033818854464092, 6.869658493133527, 9.264873119608843, 25.44339384585335, 6.340963381544117, 14.487144017755064, 26.805314352959307, 48.49411272784782, 55.91471787347582, 66.18362534528761, 118.86801964193671, 167.2887724943404, 22.15617143037401, 58.31541324429291, 11.700466601439901, 58.60332287927794, 72.89603436125282, 8.121149617185816, 65.18013559913702, 86.36962254004041, 14.023431101653571, 46.65023030277744, 79.44883983332002, 8.012246204170292, 9.313071145936755, 25.609510752360677, 31.927717451201538, 28.810765603966143, 66.03501535198862, 18.148638502818045, 5.395958792414531, 31.749736078195518, 48.09130147250242, 79.43401314548987, 83.2552221906169, 10.55673104666444, 19.004869094206338, 17.65155076184209, 26.094886750776567, 24.4187585310844, 31.862649162075225, 25.59967437947021, 42.19870947977445, 40.17816847203319, 7.94725618560168, 36.752113103191036, 85.03373605100522, 59.16952189525769, 57.05967596018054, 63.86067612213714, 9.326231651130398, 38.69883193791839, 28.152029943699038, 40.13355505438527, 28.262847177104586, 35.71474285061214, 9.694514124731144, 68.60337751630487, 89.79043326412051, 110.681632011619, 70.52129582382726, 54.523035746745556, 32.743248638837905, 30.066720736557215, 9.209646742171516, 52.5862355274775, 25.527250193742347, 6.531272829696707, 33.67597739073747, 68.07268407076832, 31.587869162696414, 57.36690223160926, 14.37897691607257, 70.1971719321851, 10.532265350239534, 32.949129360449106, 24.06866267449806, 20.46311037088075, 16.614393453273895, 58.19943345907282, 8.519705843737393, 10.647455521909633, 67.7096483070755, 5.941492341341819, 9.107655875704689, 8.766196404343486, 59.907849047260534, 65.50538661898472, 66.52466153060962, 21.8223130138143, 50.17928938742489, 43.48370882141121, 16.536390159397072, 79.49332744809597, 12.409620910634223, 58.509054703241056, 7.639132637309674, 9.989980854316592, 51.96765048341881, 44.24685884042974, 62.904454771846474, 15.800810715780125, 23.43399874315775, 7.843447892303605, 34.44395331839226, 21.66155625325988, 43.39828954899215, 91.26786712280347, 17.14325976662523, 33.49477874417351, 105.15736656798383, 9.501108328624932, 54.012104475092634, 6.031155862227867, 25.358953735022176, 27.363024585033557, 11.461785773359129, 19.11868758150647, 23.032035415557186, 42.17563538917135, 22.17151937359818, 5.953385625180903, 14.561825441695992, 6.284002345478216, 9.280935485664669, 16.57434402175752, 105.85751899823464, 41.15104568231192, 28.20322144176402, 53.69023350583873, 31.58789779746171, 37.52880796531633, 21.35583262647769, 67.58743002159451, 15.10624734233212, 21.122838341271436, 51.44748016467581, 5.559083442956806, 22.44125942174441, 14.24236913365947, 78.1920578716645, 73.15000088632289, 91.52568976772817, 22.32939969067185, 7.199086121458616, 12.447432709348348, 6.652652032396468, 11.123327146905128, 8.379565007606951, 19.55892905143246, 88.5459313245618, 13.727192764730667, 67.7356697028075, 15.46246578477967, 37.63776860286005, 23.19018320726897, 80.09156782556713, 44.263836044462224, 61.80847050194822, 20.25884943412386, 21.785923608419154, 6.630697291786025, 38.9117399761775, 53.92604359087501, 8.196909974063134, 66.80269365197078, 21.26899635959844, 26.698990665056858, 6.8494908536295025, 27.84349261667489, 46.45762133030702, 74.77464142407862, 8.835820149745537, 9.568327240937938, 7.555865800747705, 47.28164390177864, 18.30374499296931, 52.0088116761254, 74.22340000573962, 145.24126962494017, 16.542188980560713, 9.907674010775768, 12.697036758594777, 26.015488075711865, 129.83991560530228, 13.634219046618473, 13.477907783801182, 106.82293565768278, 17.808327682976614, 16.06927589368583, 73.89849317584016, 53.379866744468984, 42.9054931497895, 16.53560784547478, 20.759989015385486, 35.58536758612986, 17.807927625974582, 7.983805835145349, 45.202626040578565, 16.34972139387078, 17.96542259598343, 16.409081321192247, 115.7676796042129, 8.740333523680066, 49.07872955746256, 14.306024411211903, 15.062944777680697, 25.167164730409354, 13.592649797376367, 32.934158846865586, 78.41565680627721, 63.86194571771318, 15.953304908923647, 78.37367777394729, 20.308023191244786, 10.239261591042899, 26.681353480591067, 31.866767336260388, 9.713466958410104, 80.23153611459645, 64.06946353964823, 8.506102228790695, 49.37000078687717, 8.317052018715945, 17.362097904453424, 18.315344900821284, 45.367402527855404, 52.59613927713726, 80.55131986763494, 11.213061253737044, 11.428451104859555, 23.12929007173946, 8.623231736295507, 133.29885704825975, 99.43617069194394, 10.902158583217005, 59.588298268750336, 13.07358010735281, 16.164277415645465, 57.610399410011865, 21.689189685910613, 172.49964914505057, 18.06784118143389, 71.88354794546106, 7.644319812721694, 18.324568103961287, 32.56979999997009, 70.89741788027062, 51.0755847249931, 43.42331803121595, 7.462954511362023, 23.256096825255625, 11.70964842956362, 12.361119093297495, 27.293186275763716, 102.44577541856322, 32.84072762697021, 47.90825898727891, 65.39405286196165, 64.12736710286615, 74.61903853744965, 31.163727422211167, 37.61969813963629, 18.131420973159024, 18.39200918154482, 15.586453393900191, 5.080617267890299, 42.378470309033965, 70.73982481729475, 30.839001635014743, 90.42623033464407, 25.82712520022518, 15.797869144060051, 62.46697706791764, 10.72508263706103, 25.2757191150627, 27.800359253899583, 20.89833553532072, 33.11026923026234, 106.01776794035042, 17.87637676511708, 19.352508817350127, 56.17835847777009, 48.96563413672334, 53.93126815932549, 11.187777341379993, 63.97275948262532, 69.49631069788596, 70.62072168733627, 5.328964314151707, 15.394917291180866, 14.152190803488878, 5.148806440340104, 7.233644449548806, 141.8006975545384, 9.00916151792315, 105.39728313932338, 5.329169700681775, 9.748068213039183, 34.70904917148855, 15.272448143848978, 43.823592408043304, 16.767950155213775, 86.07262068198365, 52.02095908905643, 5.514918889262944, 67.02736662186193, 27.670774855103698, 50.863206497911946, 124.73942663078779, 48.072764918510316, 72.0480888543854, 63.498297067789686, 167.9186972689031, 78.86892656447745, 14.109641410037057, 6.859928320048423, 79.90942876780748, 59.64977525499693, 47.103253322307786, 57.19037693104737, 6.934821589246252, 23.02463671143883, 14.083784908490825, 61.208379606341026, 15.322123945394063, 5.97762783839996, 7.049320825592083, 6.4671461468201334, 11.66717529932507, 90.9284306100073, 79.70542209216418, 20.251735795619823, 158.51339060679808, 37.17163497933404, 7.153531160756852, 85.0849646644653, 28.914329724831255, 17.377236684554376, 24.255109874651925, 15.227084231297056, 72.11643995994862, 30.862106540231554, 8.294524330162307, 13.755085829024896, 66.51324756931446, 11.065063716545147, 63.689177998394044, 155.27572766296996, 24.500913674317808, 107.16620820639314, 66.72052228473864, 41.045526760814845, 31.527773986336985, 64.37128110756753, 8.056641399169784, 5.291249686933776, 46.16505368603132, 42.46541697582605, 7.888335648801208, 25.874246933460395, 55.21492553438715, 92.96130127218623, 8.50330547811121, 31.07293885716898, 7.61732025336251, 40.67935782879178, 11.389484493014713, 12.242166462282066, 11.413348118636009, 31.326800518307458, 74.93602977441518, 55.053736866124304, 8.847744591806755, 5.220328337317034, ...])
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);
([3296242.5403817566, 3296254.645873162, 3442450.505205832, 3447616.7929100296, 3450059.375, 3450088.0581497108, 3460832.6489046905, 3550078.125, 3552923.4375, 3634989.6335766497, 3699954.6875, 3704543.75, 3705131.25, 3779228.125, 3876684.820455544, 3877028.125, 3890239.1390766082, 3897054.607943187, 3925462.5137602156, 3946169.9491512417, 3972559.375, 3973764.0625, 3973766.655653056, 3973939.0625, 3976629.7259154203, 3977109.375, 3981877.582510134, 3982200.0, 3982419.172393107, 4022530.672318479, 4027090.625, 4038481.153055256, 4044126.7897275155, 4056845.943257447, 4070693.4641548735, 4078913.6688133455, 4082356.3595939768, 4116055.3410724145, 4132319.633072471, 4139299.6357289637, 4141596.548952364, 4145053.008685226, 4169866.4214854357, 4173533.2847920693, 4175120.3125, 4177485.60994183, 4177884.0669220844, 4178834.9853558266, 4225323.750584156, 4229813.522358287, 4233342.197929246, 4242651.252147281, 4243421.875, 4243811.58992833, 4243848.398001424, 4245475.91533153, 4258088.284283768, 4258155.595472088, 4286303.130987912, 4356095.062471381, 4356557.7650674805, 4358687.516051109, 4360754.058394306, 4361736.581899574, 4440471.508654892, 4442854.515731055, 4442860.9375, 4442921.875, 4582812.97970245, 4582820.3125, 4583530.648537901, 4586751.354705359, 4624951.102474238, 4667932.275651816, 4670685.797417113, 4694956.908940223, 6518339.366616661, 6879283.313164487, 7166355.580960909, 7203625.005285805, 7204115.536872412, 7206531.25, 7207340.339954968, 7210941.176081759, 7236093.75, 7264540.437864146, 7272990.551868108, 7360948.4375, 7400248.014555711, 7404030.955749847, 7406547.733910883, 7407543.453360729, 7422424.0109708635, 7424381.251140091, 7424802.782103451, 7424829.6875, 7424857.1249964675, 7425087.42790258, 7425418.75, 7425626.113231668, 7425940.625, 7426718.75, 7426765.254588467, 7427404.583046126, 7428235.741399826, 7428278.79434606, 7428312.5, 7428336.370669284, 7428605.350746184, 7431308.562671829, 7431701.5625, 7431723.895929276, 7431751.29580629, 7431758.896574545, 7431821.875, 7432242.278663623, 7432402.407467129, 7432433.232207464, 7432932.382632038, 7433715.655226737, 7434768.126802136, 7443498.7444424955, 7443841.668335354, 7445239.179883024, 7446770.054469594, 7446836.0074438825, 7448214.990298059, 7452795.690774591, 7486312.5, 7488038.072488116, 7488127.572610083, 7488364.0625, 7489629.6875, 7492113.0301332055, 7500797.112588446, 7509936.959440243, 7536884.375, 7537255.472222764, 7542559.147873902, 7542985.9375, 7544841.807970912, 7546409.759808329, 7560483.816550635, 7560797.389032597, 7566892.6108394805, 7569046.087933529, 7569209.375, 7575455.837859579, 7577979.6875, 7593318.675187834, 7599029.6875, 7649217.1875, 7671638.958515814, 7671644.376105306, 7672572.513245629, 7673035.553827746, 7673305.825642177, 7673502.1403848035, 7673503.963621039, 7673508.991816411, 7674568.75, 7674871.875, 7675439.0625, 7675466.5797324125, 7675645.504079408, 7685751.193790945, 7693359.687372399, 7695307.8125, 7695470.3125, 7695719.865558166, 7735504.659726284, 7739332.770272082, 7765827.277660714, 7771523.450284947, 7784254.359424146, 7784991.745751671, 7785043.544357065, 7785251.778509494, 7785307.10653036, 7785314.56178063, 7785556.993838223, 7786017.127046569, 7786171.193511195, 7786398.427803141, 7786903.125, 7787311.827087141, 7787410.875164044, 7787693.954206665, 7787796.764977356, 7787834.431422008, 7788658.009486364, 7788834.375, 7788947.238909729, 7789012.5, 7789995.211846429, 7793898.424601489, 7795267.272264588, 7796495.833527451, 7812717.1875, 7820227.466412775, 7822190.625, 7824881.532434589, 7825003.450166399, 7836997.328705337, 7851287.754476149, 7862450.0, 7869860.952292162, 7871523.4375, 7872607.430018043, 7872706.25, 7872875.0, 7874365.738911148, 7889387.336990954, 7889815.625, 7891721.23399347, 7896080.77447913, 7909670.048300393, 7932268.808298236, 7939280.925292, 7949029.702737492, 7953640.3641297845, 7953741.703758619, 7954041.05678628, 7954252.783336092, 7956052.982322273, 7973295.505363426, 7974606.678064954, 7976923.084352332, 7978366.481158064, 7980200.0, 7980356.25, 7981538.619927129, 7988592.1875, 7989275.46380423, 7993903.125, 7994295.9458132945, 7994757.287343768, 7995253.961345807, 7995418.996446346, 7995631.455578645, 7996075.561614459, 7996144.317529324, 7998310.21923486, 8000726.313571743, 8001808.567396871, 8003424.845342312, 8003636.2098128935, 8011594.495237323, 8011650.0, 8012030.02425282, 8012572.659356084, 8012886.662963648, 8014400.970223337, 8016441.4973132275, 8017226.21081918, 8017285.9375, 8017302.38832596, 8017392.8596127555, 8017454.686337655, 8017485.6517661745, 8018215.452238711, 8018354.6875, 8018922.866770438, 8019355.944726423, 8019793.056119987, 8019909.375, 8020131.575513752, 8020275.436000617, 8020616.9471158115, 8020957.8125, 8021505.428591272, 8021670.220878617, 8021943.61561356, 8025687.5, 8029723.4375, 8056870.880508026, 8072045.3125, 8084653.208010963, 8084654.361603088, 8085058.707847084, 8086039.0625, 8089633.534686435, 8109109.199673048, 8110897.442027793, 8113621.042302574, 8113673.026840686, 8115967.390131481, 8116314.0625, 8119174.585315642, 8122132.802837904, 8128574.771189898, 8128951.23904719, 8129081.25, 8130225.0, 8130749.423777469, 8132052.773174857, 8132064.422172363, 8132125.664748562, 8132439.472650887, 8132534.194547759, 8132968.159698488, 8133082.379637243, 8133640.625, 8134005.744339656, 8136699.440125261, 8151021.875, 8151088.2034665225, 8151779.6875, 8151831.25, 8151833.058370509, 8152162.254258926, 8155553.887306313, 8155584.375, 8156600.104114085, 8178817.1875, 8197528.068066415, 8200052.035367067, 8200813.276591085, 8202005.674988728, 8202235.040262184, 8210446.918215175, 8219703.174188467, 8220789.570171649, 8223200.0, 8227430.685128967, 8229319.584979957, 8229696.875, 8236746.707241768, 8236754.709118034, 8239179.61531851, 8239418.632011691, 8240007.237693047, 8241820.3125, 8262938.944390161, 8267958.017630377, 8269812.038525971, 8272468.516800061, 8272483.975110058, 8277274.233471847, 8277346.306287562, 8293929.6875, 8300794.606331183, 8305936.449352822, 8315119.982298329, 8316174.191512498, 8325097.7160400385, 8329202.070775974, 8329600.228420683, 8330743.639804402, 8332425.0, 8342306.376394411, 8342751.291754056, 8344665.734896448, 8345534.113207805, 8346646.929512553, 8346822.999067564, 8347107.573054358, 8348431.25, 8349141.8123948835, 8355783.425186035, 8370320.797382903, 8371848.537637604, 8384790.625, 8387669.129628933, 8388921.841369113, 8390228.767111206, 8393754.603552517, 8395289.0625, 8407489.627716815, 8407867.188533388, 8408331.077641655, 8409568.42212177, 8412562.183183646, 8417634.375, 8418050.0, 8423313.63495477, 8423543.095388353, 8423559.375, 8424963.009055594, 8426887.667513102, 8429156.734188795, 8431110.726810906, 8433854.127114508, 8435873.4375, 8438913.358616766, 8440025.33867158, 8445579.117945561, 8446050.611440897, 8450209.199102104, 8450534.279158227, 8450535.9375, 8450628.515883898, 8454842.895156557, 8455143.709750323, 8455849.807635231, 8456820.013942547, 8458818.227084942, 8459559.375, 8461694.765136383, 8462142.27371747, 8464182.8125, 8469715.625, 8480650.065031813, 8486953.17906733, 8488253.016108682, 8488987.5, 8491133.460746238, 8491579.6875, 8492118.980716186, 8492734.571549399, 8497051.448847879, 8501511.109195037, 8508985.9375, 8511204.6875, 8513253.999801971, 8513261.1694627, 8513263.559259193, 8514518.75, 8514963.689662999, 8515300.0, 8515869.337695742, 8516525.180914417, 8517108.025745174, 8517148.4375, 8518174.47455192, 8521996.051870191, 8523252.695811061, 8525229.16062072, 8525327.490813976, 8525876.5625, 8526576.5625, 8527346.875, 8527965.625, 8528231.225224383, 8528274.926736455, 8528341.927745545, 8528628.966259046, 8528640.625, 8528643.652820006, 8528699.197513742, 8528707.193963353, 8528817.534194417, 8528818.577167705, 8528888.592020381, 8528903.09282409, 8528918.75, 8528958.862903496, 8528981.25, 8528982.333526487, 8528987.517222209, 8529043.75, 8529096.875, 8529099.22934084, 8529139.115208406, 8529158.158415942, 8529172.146476531, 8529210.772273093, 8529307.034229206, 8529322.8964753, 8529324.867360262, 8529339.12915097, 8529426.488714352, 8529501.473966967, 8529556.341639943, 8529625.352489527, 8529643.853706364, 8529677.193254692, 8529684.375, 8529723.4375, 8529844.870427487, 8529916.462342087, 8529948.554437144, 8529960.220901156, 8529970.3125, 8530057.8125, 8530101.38174409, 8530176.5625, 8530211.211733036, 8530289.0625, 8530373.885579497, 8530400.269781105, 8530410.9375, 8530465.613648172, 8530559.375, 8530746.118155299, 8530764.201836867, 8530818.75, 8530921.875, 8530951.5625, 8530960.249050874, 8530982.837370425, 8531059.400203526, 8531063.49199895, 8531085.55974568, 8531100.334221667, 8531105.81426257, 8531176.164685879, 8531253.125, 8531270.3125, 8531281.25, 8531291.882767817, 8531419.148994673, 8531436.083491731, 8531489.922658883, 8531529.6875, 8531540.13963886, 8531585.101642607, 8531610.286652107, 8531617.1875, 8531618.423877815, 8531622.835413229, 8531637.5, 8531760.9375, 8531883.101563415, 8531951.233964987, 8531962.5, 8531979.6875, 8532040.625, 8532068.75, 8532071.875, 8532129.6875, 8532245.056949837, 8532260.31466948, 8532331.21204545, 8532391.308745028, 8532451.265472418, 8532470.476517579, 8532570.856345005, 8532579.283759343, 8532631.25, 8532637.5, 8532645.597613838, 8532720.104525788, 8532749.701522723, 8532760.9375, 8532765.607832246, 8532804.6875, 8532832.268691013, 8532862.652533244, 8532864.740160758, 8532870.946786374, 8532886.213345136, 8532946.9625915, 8532982.8125, 8533059.18311961, 8533296.85057218, 8533332.8125, 8533344.16953922, 8533383.3025254, 8533419.912169324, 8533502.750667294, 8533616.384779513, 8533678.90465458, 8533679.6875, 8533736.164095161, 8533830.91638157, 8533860.389618296, 8533936.912908997, 8533958.74528284, 8534202.299702331, 8534581.052237637, 8534671.29911992, 8534778.893443778, 8534921.787112016, 8535061.8547026, 8535076.83052218, 8535124.199531533, 8535232.053956244, 8535238.220302641, 8535268.63805415, 8535424.629120719, 8535425.312201532, 8535545.080744708, 8535749.673469152, 8535763.264269449, 8535821.34134786, 8535843.75, 8535965.964995828, 8536015.704029426, 8536151.913187401, 8536214.0625, 8536378.05043226, 8536423.423472067, 8536626.5625, 8536671.477627043, 8536773.4375, 8536903.125, 8537112.5, 8537497.419821199, 8537560.9375, 8537666.518677583, 8537705.557956304, 8537863.412419125, 8537912.406880353, 8537989.942393687, 8538007.8125, 8538044.319583908, 8538047.625845568, 8538080.681882028, 8538083.506109603, 8538092.1875, 8538103.125, 8538109.139919136, 8538114.11402353, 8538123.4375, 8538140.099054776, 8538148.133892754, 8538160.674039066, 8538175.362467207, 8538178.188408297, 8538182.498065159, 8538190.625, 8538212.359696314, 8538223.4375, 8538233.524728162, 8538237.141634673, 8538259.344413312, 8538293.97677584, 8538299.198179621, 8538310.799226418, 8538326.5625, 8538326.5625, 8538326.5625, 8538329.6875, 8538351.5625, 8538352.780799786, 8538361.446930483, 8538378.045255886, 8538388.183273867, 8538389.624863725, 8538392.85518894, 8538416.929227402, 8538426.5625, 8538434.206127796, 8538458.289201114, 8538472.876979178, 8538506.25, 8538506.549225047, 8538517.1875, 8538533.15043364, 8538534.375, 8538543.75, 8538548.111000568, 8538550.0, 8538566.771002071, 8538575.64927057, 8538577.126547132, 8538581.087553509, 8538594.755020363, 8538604.665739708, 8538613.776263682, 8538626.5625, 8538631.25, 8538631.25, 8538633.764356596, 8538640.55904988, 8538645.3125, 8538651.5625, 8538682.065352263, 8538683.65728577, 8538701.163676666, 8538702.333254958, 8538705.25379877, 8538720.545059836, 8538741.943608623, 8538751.5625, 8538756.082159948, 8538784.375, 8538784.375, 8538785.235540679, 8538785.9375, 8538787.36169008, 8538790.625, 8538790.625, 8538793.75, 8538795.306377543, 8538797.13110834, 8538802.527455892, 8538804.436482744, 8538813.368976781, 8538819.31392035, 8538823.83783234, 8538826.5625, 8538828.125, 8538839.53596656, 8538840.241714224, 8538845.3125, 8538848.4375, 8538853.125, 8538854.539906701, 8538860.9375, 8538868.577417126, 8538872.151171222, 8538872.173895974, 8538873.4375, 8538878.125, 8538879.377745794, 8538884.21914597, 8538885.9375, 8538888.6449452, 8538896.875, 8538910.783444863, 8538914.249021923, 8538922.25410034, 8538923.173601078, 8538928.541281715, 8538938.73186948, 8538946.879755983, 8538956.27393154, 8538959.0979755, 8538969.558768725, 8539021.875, 8539026.19341535, 8539026.5625, 8539043.58442988, 8539047.526095856, 8539057.782302817, 8539070.676234473, 8539073.4375, 8539074.127404219, 8539095.3125, 8539098.535665652, 8539105.37563995, 8539120.3125, 8539126.5625, 8539139.629937217, 8539145.521049626, 8539156.465678249, 8539158.431156369, 8539158.463788256, 8539162.767592514, 8539165.625, 8539175.0, 8539178.60334494, 8539181.25, 8539185.470840791, 8539186.131607564, 8539192.1875, 8539193.184023108, 8539193.729360119, 8539194.03835557, 8539195.516212333, 8539197.057715416, 8539218.391572135, 8539224.30751035, 8539224.565421384, 8539225.159144161, 8539231.146686641, 8539236.069355533, 8539237.439705033, 8539237.871235471, 8539239.72662283, 8539245.793992842, 8539246.858541287, 8539256.25, 8539257.8125, 8539275.602549773, 8539280.522123823, 8539281.85230307, 8539293.792559808, 8539296.68277179, 8539304.6875, 8539308.33688179, 8539324.590070747, 8539355.353675963, 8539358.312749773, 8539375.0, 8539390.625, 8539410.517438482, 8539431.537325278, 8539444.456942847, 8539461.918159569, 8539468.747196224, 8539468.921796944, 8539483.656472713, 8539489.625389004, 8539490.26521321, 8539512.529244822, 8539515.755279291, 8539522.78436639, 8539524.654811155, 8539525.0, 8539526.5625, 8539550.0, 8539571.685683388, 8539607.699063076, 8539624.296255644, 8539628.125, 8539637.645989388, 8539645.138999376, 8539657.062242, 8539661.655039761, 8539676.462878425, 8539692.603456037, 8539706.214621624, 8539713.647526242, 8539715.74004405, 8539739.974341884, 8539762.767510436, 8539763.929596527, 8539788.668602243, 8539816.2947768, 8539820.3125, 8539821.875, 8539829.488436814, 8539839.42738354, 8539847.486034134, 8539871.128052, 8539871.518304355, 8539877.407452712, 8539894.92129312, 8539897.992027862, 8539959.493866012, 8540038.092087943, 8540073.704942489, 8540118.001091514, 8540129.6875, 8540131.25, 8540131.704168055, 8540141.43243711, 8540150.0, 8540186.5295229, 8540200.942427982, 8540239.0625, 8540281.576152459, 8540330.304834304, 8540344.088229414, 8540344.563692695, 8540358.582150344, 8540359.375, 8540365.447645552, 8540448.468999302, 8540465.315928351, 8540469.907040767, 8540479.6875, 8540492.1875, 8540515.477352465, 8540556.492336035, 8540562.5, 8540593.122386938, 8540608.721050268, 8540639.508666089, 8540642.1875, 8540656.669743251, 8540690.268597748, 8540720.3125, 8540744.143269526, 8540782.8125, 8540785.994686902, 8540797.463277303, 8540853.890313135, 8540854.17034991, 8540879.6875, 8540901.5625, 8540946.928929335, 8540951.746747715, 8541005.89973999, 8541074.024123518, 8541167.1875, 8541229.6875, 8541232.663244288, 8541240.625, 8541244.717653928, 8541249.83268376, 8541271.365519844, 8541347.925109174, 8541515.877359027, 8541516.258482689, 8541670.3125, 8541670.42467538, 8541905.684649313, 8541918.69480639, 8541943.75, 8541978.125, 8542085.9375, 8542096.469735097, 8542138.580743078, 8542233.155423434, 8542458.480313411, 8542736.017407395, 8542825.421364205, 8542940.625, 8542989.0625, 8543129.809063762, 8543145.075416522, 8543369.522034219, 8543457.106597379, 8543560.9375, 8543561.580886716, 8543632.980600808, 8543729.847008223, 8543736.571905795, 8543752.084348377, 8543764.429850016, 8543923.4375, 8543993.75, 8544124.28172825, 8544219.40807026, 8544248.4375, 8544296.766297292, 8544357.623190347, 8544496.837314108, 8545063.68591667, 8557440.48174883, 8557508.2274764, 8558581.853095876, 10004045.774990046, 10053182.8125, 10062275.0, 10063364.0625, 10089095.350594314, 10092067.1875, 10146865.767479599, 10146907.8125, 10146935.554426838, 10176642.301579554, 10177379.463760527, 10177422.712168673, 10177647.285272928, 10193896.800305683, 10196046.467618678, 10199373.4375, 10200246.498076903, 10200292.642330104, 10233279.996555937, 10235057.896698203, 10236250.0, 10236253.533786027, 10239392.1875, 10241667.720230976, 10244480.870022073, 10278000.0, 10278357.504444972, 10278859.858961228, 10278898.4375, 10282089.0625, 10282829.6875, 10318550.0, 10322090.345033696, 10327568.75, 10335506.44460112, 10337830.152018894, 10346294.861638945, 10346771.875, 10346788.331941986, 10348954.708927821, 10349253.926534973, 10350449.64094728, 10350587.25516401, 10350710.9375, 10350832.812619729, 10353358.24118153, 10354770.030806607, 10354831.121574758, 10354833.132236917, 10354868.75, 10355150.015709726, 10355675.92835296, 10355960.66009278, 10357304.457741125, 10359417.308146168, 10360029.215792527, 10360262.5, 10361621.720203191, 10362538.800985344, 10362664.135459252, 10362785.9375, 10362995.70744742, 10363032.827497726, 10363043.399518592, 10363139.0625, 10363178.084549787, 10363232.741678929, 10363334.35955682, 10363515.247673497, 10363532.8125, 10363582.63149108, 10363701.277997036, 10363741.982731488, 10363754.6875, 10364188.600813685, 10364253.13025754, 10364382.8125, 10364610.304129086, 10364646.037484605, 10364781.746635849, 10364788.845623042, 10364833.470044825, 10365037.888519857, 10365710.9375, 10366493.788769107, 10367459.375, 10368032.97376128, 10368284.98748726, 10368356.425368493, 10368660.9375, 10368943.43129468, 10369284.375, 10369294.679176096, 10369364.713404234, ...], [9.648741028097913, 57.46927809755195, 17.294326041839458, 9.01864604370031, 61.00957643732397, 17.602767093417864, 89.774549585719, 43.9586243462081, 42.55159251022622, 17.680320348708243, 42.59592640353024, 54.04353734689434, 107.23576579669549, 31.264150574930976, 5.555097663428294, 38.17237023028325, 14.572410464348252, 84.29299637762185, 71.60629296538673, 13.716559369403912, 129.09392654217845, 82.39526931510106, 45.627039750153926, 75.3073835298328, 6.771200219710867, 30.447403193489677, 159.79019276975492, 63.47691019539713, 9.716064687433159, 8.886452486511313, 132.7685911767278, 74.63641651644852, 85.1748397891102, 28.926857243166218, 23.933250290962455, 13.626959578914224, 53.11905378739375, 7.858062494592889, 10.209328626079545, 71.30384067579033, 58.0674646823921, 36.57997036153314, 101.57550623820566, 8.5531901770339, 60.84099678853477, 23.40499325223045, 68.71398326702246, 41.33173145702126, 25.039009271925792, 103.40659714477465, 14.981410385598808, 16.213041237289872, 92.7942139551709, 108.72232586011248, 123.80241627156987, 41.627598250816376, 10.096080514550295, 20.078684445143622, 14.964381761441851, 14.067093670231053, 94.81229463789087, 8.29508369866759, 6.3927971315050245, 18.13795630996421, 13.855693649387907, 25.539644021554782, 70.51826118264815, 32.13785581377562, 11.970570051739694, 34.06921053419706, 31.931767959452273, 55.69771745920043, 16.528022961841092, 191.18687092174503, 78.15982698070465, 125.20358659328541, 5.966334746086373, 44.92746393756031, 37.233283270990114, 11.135978919991347, 14.615920844841062, 57.58154744046355, 13.95601200085126, 63.367834253612116, 60.77260935681462, 18.769943364691176, 5.529541715732241, 81.1401051658264, 6.6819077719546875, 117.83358513007768, 39.00452292032178, 18.02479812365417, 37.73610571309797, 14.945856695224014, 17.374141921019774, 47.97093813646312, 46.59891713381983, 122.18474907196564, 46.99915984409109, 13.467169298460783, 28.64966631709629, 64.26696996702566, 35.81931366461285, 71.13367996316065, 25.175301710364298, 39.633292316729595, 43.3157883013095, 5.734892029550538, 25.914489166347856, 68.22275249472497, 30.939379407837137, 25.678313789635816, 7.053067359146601, 8.957175325758692, 49.687321432653675, 15.300752932934278, 6.944797880093793, 13.062988365492325, 10.516287344699995, 15.057984934586667, 84.88415587660594, 50.190744557461656, 113.32771951212595, 6.282143658627058, 10.746997933781898, 5.1669937385314295, 6.643080358514863, 9.67313844751005, 76.5501353083935, 17.68884317430524, 13.184816543724065, 60.35185220662881, 124.64741568036293, 86.62747912284347, 16.278095534447463, 28.12233699395854, 49.53702566851463, 13.39112721638736, 7.063000160086243, 29.95990224543218, 10.582134643434108, 11.787634031052331, 6.40297331386419, 75.60948297349253, 58.81022597506546, 19.039064117848906, 53.19252759021592, 41.20474268939256, 84.0569343620827, 11.012749956593371, 50.857702860009795, 82.79721988978574, 10.968971772945322, 28.613518541199642, 61.52577126194582, 9.026771815002492, 13.538098889412685, 12.169546346984701, 36.70301605477391, 17.765744233387746, 80.73753296451461, 59.734517476903356, 35.97641482566255, 93.43050555832991, 11.44097051728914, 13.700602808546279, 21.385570148950784, 62.21198373270872, 38.04477065858615, 22.039231857742465, 20.249407853481543, 61.28205092058349, 69.92170432022485, 49.921295867818294, 9.068592157175692, 5.512018437041563, 5.602767886742836, 61.45497238784797, 5.663254542298579, 35.73548252007885, 12.530536530978196, 14.715989190123956, 28.830526021161198, 84.13821321007575, 33.110790832631245, 12.876177116283833, 63.24425673270619, 15.781498759626169, 9.240073794217443, 11.217058336291194, 70.98711812552506, 44.934085798696906, 16.537274241612426, 36.76766083532868, 26.681514308106948, 28.272147634455628, 7.63418602313892, 21.587849228327933, 52.32972954417237, 6.95846076936733, 50.03305594030884, 16.139637731069524, 5.968232197416827, 19.265734221996436, 6.2998940264871255, 52.0801049776154, 9.343942179710716, 83.35443330508312, 10.57823333582126, 45.506925497273286, 50.25133580048655, 15.394219397398134, 14.354581177202538, 74.14836881052133, 59.12925103816642, 10.457758863644063, 7.510396815636309, 14.686200668114363, 13.833214334688448, 5.291558165192295, 67.38435921303892, 13.370796226376719, 14.825881782709141, 23.232742663095273, 25.992343205020454, 9.499983888333523, 6.85208529767156, 29.511391808512304, 12.794348431171086, 58.680529984320245, 46.66470187193908, 13.486126112922028, 52.20960843494539, 5.55602195292187, 85.58074186285802, 18.127002876278553, 47.20513303507724, 8.784612140195364, 72.82452899552922, 11.464998447020355, 8.607712626861076, 9.862283586788308, 14.175247906309998, 23.91826997792684, 29.453008728238487, 28.95127240264391, 19.215017638499546, 49.32681082080044, 35.08268604484586, 9.633359863218551, 19.104721739563367, 6.917530796735125, 77.3189159000465, 6.019150894651281, 10.619168860601514, 65.72947916486734, 25.270297949994085, 6.000155323669675, 7.121146145664083, 165.75572278977626, 25.52453535582676, 43.16123653620361, 13.136420516892851, 23.683611951069203, 25.656015100937175, 44.62891795072983, 11.67771148841554, 11.885218711191314, 33.56189670251748, 81.44417637090247, 59.707667560736354, 26.835403162071213, 48.17590837759474, 43.57537820020778, 69.60965093018861, 17.88685977243325, 62.916326529499294, 28.214123618125384, 13.829581807868106, 17.115990694445646, 82.85672530970635, 12.481562436657532, 48.10750373524165, 84.79193193371394, 108.80735423514597, 63.670623315337664, 15.774510416725612, 41.56953800836302, 51.67251267168534, 101.64328381542515, 24.704780365966293, 23.4557169422675, 54.55753783785112, 85.52870702918165, 42.809588653779144, 30.72029881646339, 127.19491115978823, 5.4910404669549475, 11.835625603077593, 51.74598551472336, 10.31539007858643, 21.637029259107603, 42.60288283435086, 10.419722866591943, 36.872119274092796, 82.64625498156155, 5.753040548874407, 61.65213184004999, 82.58241611197961, 15.969492397010029, 14.080871476636363, 21.219518871108377, 48.75067389049484, 12.822678240038275, 30.450793467068696, 32.98314309227872, 5.215638887307671, 14.586889857355217, 20.776094463719563, 65.12962379396974, 5.166369260575302, 31.305684138914778, 36.39378782382174, 38.012610858304164, 6.198374862062309, 5.575025138471737, 37.5347059236174, 25.600928150333075, 15.024552455023462, 16.35628837253527, 89.8992387925935, 5.43762443892361, 75.27784157105454, 14.509661629750276, 18.844401216982785, 29.438580029851124, 17.53792312986689, 31.679907473427512, 19.19108141393425, 5.583337750674418, 35.05987744360265, 19.656604353249506, 70.56575843743292, 23.84751106134125, 6.612162935191861, 7.938659985968663, 17.31181984773668, 141.3195899291989, 6.741704488528154, 72.05342851992258, 5.621075061222495, 14.001064830005186, 16.333038099891496, 101.97489284855038, 11.213996046986946, 8.986296822224148, 10.772986451808388, 95.44972667179064, 6.690861152446125, 12.242587523266552, 47.70759879563566, 9.417535217725131, 74.25413025069125, 6.841739455429855, 6.756810944882025, 15.004153283319587, 7.573154902391042, 50.25813662716652, 27.166488740246727, 7.60361148469515, 84.16662222393605, 13.823534387240555, 6.055761312345551, 47.612794966078674, 48.36826173816546, 5.327481657723342, 20.077981216212102, 112.22829858208532, 17.31626968417823, 11.40004013010032, 18.526401828508043, 62.69905806746236, 26.378844361177208, 109.90854320324755, 19.624275825690745, 24.800755573081943, 20.826226939456376, 5.994482999170099, 40.27960008117657, 7.568937308148135, 40.71148108516068, 16.67489059674338, 18.558757488638243, 27.752620826259772, 25.230420931559156, 13.9138220803507, 21.50172594922698, 32.89477751531307, 13.19817339618869, 80.80793707267786, 48.97214399958802, 66.03377181567113, 20.82190298420755, 15.058741207765692, 26.542985158971714, 49.54464506883953, 96.23968297609062, 75.35174723787954, 67.04738646447586, 99.27403711063043, 20.662755870187745, 8.379508551802987, 32.57646013264327, 56.282309099020075, 6.951695393683211, 14.894406225356136, 55.61471767636086, 64.77634300238809, 46.94604964059461, 82.57557809621346, 50.676294421361135, 5.296708480374578, 9.518466639079735, 65.10103007975917, 13.256885930356496, 18.77953141042958, 10.517166321531006, 42.80883682451814, 10.262692254951661, 58.20528005994571, 113.29843843973349, 100.97776993607775, 79.37687571894485, 8.273518877041068, 102.39082590911678, 14.035984155502776, 105.9098942880604, 51.769403746493865, 26.74044674932193, 33.1742474215507, 13.01271731258434, 8.478838406520241, 25.523455117619896, 7.441497952144423, 11.442095780212156, 38.11289886128286, 19.745588782525424, 53.78818420639576, 13.38400390353924, 5.533916974041549, 32.744223288091334, 138.71015812052758, 42.113776422830256, 6.0935976316473015, 7.215451468423948, 9.572009063658845, 14.347043201165558, 42.45849518136424, 16.67891030761217, 10.926524037210594, 160.93714843332592, 35.809457686953074, 123.24801957809959, 15.302693868364573, 16.479931462110535, 5.294301459268991, 18.0504313762384, 46.66370405048578, 45.34268864136898, 15.711397383198536, 12.74897616450755, 7.152533934392118, 19.574088424482817, 44.66689982920767, 99.69308899689477, 5.0385109579684055, 73.12788343640233, 7.195454639749637, 57.11215015374644, 8.538649771916198, 58.40530203076051, 52.161954957043825, 9.321822972848082, 32.173337161231316, 95.13066797506035, 18.68499584514354, 59.409698712866046, 29.372035275388395, 65.97741845766483, 10.198802118989093, 59.006635472502666, 11.16733138660361, 45.910460302210126, 97.11127735262836, 16.389317753143622, 8.988272437090197, 72.31524078118986, 30.29127598818785, 76.50902846340728, 97.02024066644945, 10.68260820884946, 42.921766579306414, 15.52877542876721, 46.11300930560688, 71.13364306202479, 57.07852863519055, 18.690110252534037, 12.931061426504263, 54.98433197651053, 68.31272947001571, 7.991932709567966, 97.66039407258836, 82.0791029456831, 23.1186326710598, 55.768104789902594, 117.24352817245362, 62.42590087452349, 39.57169290832594, 34.0258663056891, 78.97267342009678, 47.378955182430595, 13.300384147700541, 75.88623603783893, 134.9649556281925, 8.684584113265863, 6.057746181573786, 20.31155608105537, 51.15671034077428, 34.71477810053275, 56.696414850815714, 60.446959513919964, 5.835381804597287, 10.817479246110537, 8.134802105042574, 70.38308104151058, 14.87647525075467, 54.644508108215625, 10.37225180107445, 164.81958726916386, 68.53354622899471, 23.74203729238377, 52.69991048269383, 11.267434825099832, 72.28431458909633, 8.187648964430322, 33.09829251279693, 31.355397760723836, 6.850258025392662, 29.573533034158718, 54.85412047167545, 6.429969802880984, 18.92527196892815, 112.6811142319898, 62.59369396580401, 9.530644673145822, 13.806057425569879, 13.196794771426102, 20.666193794409892, 5.768810924275374, 17.59930958479945, 56.44997081851119, 5.772564394523349, 24.40711768744113, 17.212284465978627, 8.83950112115821, 11.574184530589578, 99.1135533315162, 8.762998286997934, 12.477329160881128, 20.234182316530276, 28.272866178705016, 6.5371711413744285, 98.60677038636472, 95.73052405404052, 8.736799584985409, 26.709043593502308, 88.34090430132257, 33.57964489596749, 11.253523367735054, 27.828557694541793, 49.48548722506612, 31.698320725574522, 9.319569865769692, 52.68493351548588, 31.60722827884893, 99.1847139040259, 53.99419975282787, 99.27221879205418, 5.419718643392262, 47.51047357592248, 19.959539974781183, 19.769788801597755, 63.904369468012234, 26.809729508188575, 19.846347035397777, 66.89193498476634, 92.62855073299465, 18.861115358067764, 20.839474777699788, 37.42022509425109, 182.7741985992954, 29.34359044318344, 24.61699422645254, 13.655484533205463, 39.09132362919904, 79.04850596253439, 60.0202171143347, 24.228974704523946, 16.8703206137141, 49.578287001730814, 10.669392685205263, 83.16655518477134, 6.465320039079148, 91.34751096166816, 18.590165376370898, 23.03277625020829, 27.93356997536366, 27.809699131435487, 67.90582799758366, 14.439426858664422, 36.95919163146322, 48.44733134596171, 50.69252724033677, 29.073208686244715, 53.749840765675444, 7.033818854464092, 6.869658493133527, 9.264873119608843, 25.44339384585335, 6.340963381544117, 14.487144017755064, 26.805314352959307, 48.49411272784782, 55.91471787347582, 66.18362534528761, 118.86801964193671, 167.2887724943404, 22.15617143037401, 58.31541324429291, 11.700466601439901, 58.60332287927794, 72.89603436125282, 8.121149617185816, 65.18013559913702, 86.36962254004041, 14.023431101653571, 46.65023030277744, 79.44883983332002, 8.012246204170292, 9.313071145936755, 25.609510752360677, 31.927717451201538, 28.810765603966143, 66.03501535198862, 18.148638502818045, 5.395958792414531, 31.749736078195518, 48.09130147250242, 79.43401314548987, 83.2552221906169, 10.55673104666444, 19.004869094206338, 17.65155076184209, 26.094886750776567, 24.4187585310844, 31.862649162075225, 25.59967437947021, 42.19870947977445, 40.17816847203319, 7.94725618560168, 36.752113103191036, 85.03373605100522, 59.16952189525769, 57.05967596018054, 63.86067612213714, 9.326231651130398, 38.69883193791839, 28.152029943699038, 40.13355505438527, 28.262847177104586, 35.71474285061214, 9.694514124731144, 68.60337751630487, 89.79043326412051, 110.681632011619, 70.52129582382726, 54.523035746745556, 32.743248638837905, 30.066720736557215, 9.209646742171516, 52.5862355274775, 25.527250193742347, 6.531272829696707, 33.67597739073747, 68.07268407076832, 31.587869162696414, 57.36690223160926, 14.37897691607257, 70.1971719321851, 10.532265350239534, 32.949129360449106, 24.06866267449806, 20.46311037088075, 16.614393453273895, 58.19943345907282, 8.519705843737393, 10.647455521909633, 67.7096483070755, 5.941492341341819, 9.107655875704689, 8.766196404343486, 59.907849047260534, 65.50538661898472, 66.52466153060962, 21.8223130138143, 50.17928938742489, 43.48370882141121, 16.536390159397072, 79.49332744809597, 12.409620910634223, 58.509054703241056, 7.639132637309674, 9.989980854316592, 51.96765048341881, 44.24685884042974, 62.904454771846474, 15.800810715780125, 23.43399874315775, 7.843447892303605, 34.44395331839226, 21.66155625325988, 43.39828954899215, 91.26786712280347, 17.14325976662523, 33.49477874417351, 105.15736656798383, 9.501108328624932, 54.012104475092634, 6.031155862227867, 25.358953735022176, 27.363024585033557, 11.461785773359129, 19.11868758150647, 23.032035415557186, 42.17563538917135, 22.17151937359818, 5.953385625180903, 14.561825441695992, 6.284002345478216, 9.280935485664669, 16.57434402175752, 105.85751899823464, 41.15104568231192, 28.20322144176402, 53.69023350583873, 31.58789779746171, 37.52880796531633, 21.35583262647769, 67.58743002159451, 15.10624734233212, 21.122838341271436, 51.44748016467581, 5.559083442956806, 22.44125942174441, 14.24236913365947, 78.1920578716645, 73.15000088632289, 91.52568976772817, 22.32939969067185, 7.199086121458616, 12.447432709348348, 6.652652032396468, 11.123327146905128, 8.379565007606951, 19.55892905143246, 88.5459313245618, 13.727192764730667, 67.7356697028075, 15.46246578477967, 37.63776860286005, 23.19018320726897, 80.09156782556713, 44.263836044462224, 61.80847050194822, 20.25884943412386, 21.785923608419154, 6.630697291786025, 38.9117399761775, 53.92604359087501, 8.196909974063134, 66.80269365197078, 21.26899635959844, 26.698990665056858, 6.8494908536295025, 27.84349261667489, 46.45762133030702, 74.77464142407862, 8.835820149745537, 9.568327240937938, 7.555865800747705, 47.28164390177864, 18.30374499296931, 52.0088116761254, 74.22340000573962, 145.24126962494017, 16.542188980560713, 9.907674010775768, 12.697036758594777, 26.015488075711865, 129.83991560530228, 13.634219046618473, 13.477907783801182, 106.82293565768278, 17.808327682976614, 16.06927589368583, 73.89849317584016, 53.379866744468984, 42.9054931497895, 16.53560784547478, 20.759989015385486, 35.58536758612986, 17.807927625974582, 7.983805835145349, 45.202626040578565, 16.34972139387078, 17.96542259598343, 16.409081321192247, 115.7676796042129, 8.740333523680066, 49.07872955746256, 14.306024411211903, 15.062944777680697, 25.167164730409354, 13.592649797376367, 32.934158846865586, 78.41565680627721, 63.86194571771318, 15.953304908923647, 78.37367777394729, 20.308023191244786, 10.239261591042899, 26.681353480591067, 31.866767336260388, 9.713466958410104, 80.23153611459645, 64.06946353964823, 8.506102228790695, 49.37000078687717, 8.317052018715945, 17.362097904453424, 18.315344900821284, 45.367402527855404, 52.59613927713726, 80.55131986763494, 11.213061253737044, 11.428451104859555, 23.12929007173946, 8.623231736295507, 133.29885704825975, 99.43617069194394, 10.902158583217005, 59.588298268750336, 13.07358010735281, 16.164277415645465, 57.610399410011865, 21.689189685910613, 172.49964914505057, 18.06784118143389, 71.88354794546106, 7.644319812721694, 18.324568103961287, 32.56979999997009, 70.89741788027062, 51.0755847249931, 43.42331803121595, 7.462954511362023, 23.256096825255625, 11.70964842956362, 12.361119093297495, 27.293186275763716, 102.44577541856322, 32.84072762697021, 47.90825898727891, 65.39405286196165, 64.12736710286615, 74.61903853744965, 31.163727422211167, 37.61969813963629, 18.131420973159024, 18.39200918154482, 15.586453393900191, 5.080617267890299, 42.378470309033965, 70.73982481729475, 30.839001635014743, 90.42623033464407, 25.82712520022518, 15.797869144060051, 62.46697706791764, 10.72508263706103, 25.2757191150627, 27.800359253899583, 20.89833553532072, 33.11026923026234, 106.01776794035042, 17.87637676511708, 19.352508817350127, 56.17835847777009, 48.96563413672334, 53.93126815932549, 11.187777341379993, 63.97275948262532, 69.49631069788596, 70.62072168733627, 5.328964314151707, 15.394917291180866, 14.152190803488878, 5.148806440340104, 7.233644449548806, 141.8006975545384, 9.00916151792315, 105.39728313932338, 5.329169700681775, 9.748068213039183, 34.70904917148855, 15.272448143848978, 43.823592408043304, 16.767950155213775, 86.07262068198365, 52.02095908905643, 5.514918889262944, 67.02736662186193, 27.670774855103698, 50.863206497911946, 124.73942663078779, 48.072764918510316, 72.0480888543854, 63.498297067789686, 167.9186972689031, 78.86892656447745, 14.109641410037057, 6.859928320048423, 79.90942876780748, 59.64977525499693, 47.103253322307786, 57.19037693104737, 6.934821589246252, 23.02463671143883, 14.083784908490825, 61.208379606341026, 15.322123945394063, 5.97762783839996, 7.049320825592083, 6.4671461468201334, 11.66717529932507, 90.9284306100073, 79.70542209216418, 20.251735795619823, 158.51339060679808, 37.17163497933404, 7.153531160756852, 85.0849646644653, 28.914329724831255, 17.377236684554376, 24.255109874651925, 15.227084231297056, 72.11643995994862, 30.862106540231554, 8.294524330162307, 13.755085829024896, 66.51324756931446, 11.065063716545147, 63.689177998394044, 155.27572766296996, 24.500913674317808, 107.16620820639314, 66.72052228473864, 41.045526760814845, 31.527773986336985, 64.37128110756753, 8.056641399169784, 5.291249686933776, 46.16505368603132, 42.46541697582605, 7.888335648801208, 25.874246933460395, 55.21492553438715, 92.96130127218623, 8.50330547811121, 31.07293885716898, 7.61732025336251, 40.67935782879178, 11.389484493014713, 12.242166462282066, 11.413348118636009, 31.326800518307458, 74.93602977441518, 55.053736866124304, 8.847744591806755, 5.220328337317034, ...])
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)