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 = 45419
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);
([5395929.7832074575, 5997745.220649929, 5997764.84124364, 6189663.4554981105, 6238475.08813016, 6500660.984134364, 6564711.609824413, 6597885.114903877, 6622054.214052047, 6622066.313160181, 6625798.4375, 6628257.8125, 6630660.050806001, 6650573.163450625, 6696534.419127869, 6748734.375, 6761756.928121586, 6784818.75, 6808590.101951509, 6814570.3125, 6826253.741331848, 6852715.625, 6854236.202165887, 6855864.0625, 6865779.6275201645, 6872996.364218933, 6873390.845939505, 6941798.604383923, 6959943.149025341, 6976119.983706742, 6977510.4082994815, 6983125.0, 7006939.993954055, 7008235.9375, 7033824.933850675, 7037620.3125, 7038546.875, 7045381.25, 7052880.994918887, 7074758.6196140945, 7101762.5, 7106284.375, 7106691.581799892, 7110589.987296014, 7148822.822006939, 7157307.670713937, 7158168.352978353, 7158699.307484812, 7159704.41162921, 7159722.354671469, 7161619.859930976, 7162106.25, 7162572.463587964, 7162578.125, 7163974.432747058, 7165300.578174811, 7165818.75, 7166085.9375, 7199757.631874148, 7215266.45288452, 7224127.773474245, 7225482.721791276, 7253088.891780237, 7268103.128985129, 7268790.038831848, 7269262.19278931, 7277881.985896688, 7288734.115573212, 7311726.951138551, 7312259.43395533, 7312280.060221773, 7316090.625, 7316809.375, 7317350.568762636, 7325100.0, 7327071.072509964, 7329814.811115086, 7336770.3125, 7343787.908251502, 7345478.741337594, 7345950.734782533, 7348577.265183338, 7348755.319865841, 7356417.037795222, 7356892.677271941, 7360170.647600695, 7360819.2487091655, 7361459.3200784335, 7366194.568695299, 7366260.6448505, 7386306.25, 7388282.8125, 7389284.3316078745, 7405671.090358019, 7407067.1875, 7407115.990547751, 7408166.307864717, 7408235.433106312, 7408578.100252005, 7408729.6875, 7412165.625, 7412175.0, 7412177.924815798, 7412814.0625, 7413034.923361467, 7414549.296316605, 7415607.458359741, 7420217.1875, 7420408.714685818, 7421204.6875, 7421487.312542658, 7436331.0723151555, 7436458.144995999, 7437308.956911316, 7439119.778064005, 7439280.618871241, 7441355.841354911, 7445779.017238254, 7457187.5, 7459993.159810613, 7475494.87274447, 7480265.625, 7481110.9375, 7482505.509778777, 7482684.377080019, 7482847.3547695195, 7489451.512211586, 7489454.045571935, 7490642.256391695, 7492908.322630753, 7499101.045018989, 7501378.125, 7509041.598503987, 7510309.296928805, 7510677.147894628, 7511528.02696895, 7512125.0, 7512729.3248725105, 7512912.354726043, 7517188.54890522, 7517195.118181295, 7517287.5, 7518434.494487253, 7518457.541897177, 7522823.4375, 7523292.761676333, 7524225.418155299, 7524244.366510846, 7527505.760980944, 7527672.316349437, 7531742.1875, 7532629.353376189, 7544042.051826917, 7544060.792525365, 7544555.5042160405, 7545229.6875, 7545793.75, 7546146.5838822005, 7546355.778821349, 7547660.753792032, 7562612.920658992, 7565086.285239529, 7565855.796698915, 7568546.875, 7568586.334167453, 7568610.9375, 7575343.75, 7583662.5, 7588615.625, 7590623.4375, 7592476.477970297, 7592817.060276177, 7592868.75, 7593162.5, 7594593.244092204, 7594934.375, 7595865.690215313, 7595901.5625, 7595954.057669126, 7596608.269315618, 7596934.375, 7597440.625, 7599170.3125, 7599903.340252066, 7600554.191069651, 7606262.5, 7606412.324232129, 7606853.125, 7609935.25957426, 7616031.915082339, 7616034.375, 7616755.6556884665, 7619164.0625, 7619255.241287101, 7619340.625, 7619553.642060718, 7620107.196901857, 7621272.58015641, 7621667.640664952, 7621735.9375, 7622280.519378543, 7623551.065512205, 7626859.375, 7626927.826527025, 7635204.961761811, 7635439.0625, 7635717.087682723, 7639571.021558205, 7641166.790943082, 7641629.243630515, 7643172.996833688, 7646317.690247034, 7653468.75, 7656821.875, 7661589.461435163, 7674298.4375, 7676663.944063369, 7677142.405814845, 7689707.014097033, 7690394.463296988, 7690418.697834339, 7697621.875, 7697957.383180139, 7699600.742855733, 7701409.335777284, 7702015.625, 7703189.968045541, 7704365.757137599, 7705374.112600033, 7707457.8125, 7709707.966593041, 7718293.913847832, 7726385.9375, 7729239.0625, 7735401.416568418, 7735461.041095029, 7737270.821731431, 7745699.264347156, 7756515.089407106, 7757934.375, 7758685.9375, 7762597.00060354, 7762614.751768481, 7767048.4375, 7774664.0625, 7785387.841248691, 7787848.351773703, 7792168.437174681, 7806710.083101606, 7807070.3125, 7807612.938216479, 7809370.3125, 7810818.75, 7811064.0625, 7811995.07045964, 7812755.9312119605, 7812935.633009271, 7814165.013997951, 7814424.294423859, 7827769.552814349, 7830678.749889018, 7831129.871431474, 7854602.3499827655, 7856221.195956501, 7858403.29612519, 7861752.916958543, 7861819.133010992, 7863716.486182885, 7864026.430990228, 7864311.9838145375, 7866372.999646679, 7867312.5, 7871391.313180381, 7891210.9375, 7891455.4782274095, 7897625.0, 7897815.625, 7898623.792470253, 7900176.73441772, 7900247.930362403, 7935775.865523262, 7943004.66833256, 7943075.0, 7944204.6875, 7948619.753272369, 7955158.958473493, 7958542.735651837, 7961929.6875, 7987243.75, 7993012.5, 8006536.150419867, 8006577.40277877, 8007938.695331586, 8011945.3125, 8015010.9375, 8015154.008018192, 8024049.0747543685, 8031167.91311871, 8035044.857597795, 8046462.5, 8065684.375, 8067113.662374431, 8068913.640103804, 8070158.694501096, 8070168.906042688, 8074370.573942976, 8101459.420826435, 8116507.8125, 8118953.80740259, 8145132.8125, 8145604.784654692, 8148523.357241598, 8158822.815235795, 8209956.25, 8210264.0625, 8218464.103027309, 8223732.805037726, 8245135.010786239, 8245449.270965056, 8246158.386554268, 8275145.937487552, 8278369.404281301, 8289275.0, 8293299.133504825, 8293532.8125, 8295847.31408019, 8297416.228842064, 8297937.624972478, 8301476.686591472, 8303995.966028331, 8324585.429754037, 8328712.247767013, 8348787.373120365, 8359532.8092786195, 8359701.761595168, 8360942.164323227, 8362036.688475823, 8363285.109809034, 8389662.077693803, 8399418.302476227, 8399912.499070762, 8405173.715093538, 8416412.955855059, 8420068.75, 8420073.272809677, 8432051.449845131, 8443104.63347965, 8443428.938968116, 8443804.000487147, 8445171.825053494, 8445286.204776986, 8445748.391554495, 8446427.15548672, 8446756.847868845, 8446884.375, 8447040.37261566, 8448243.985172193, 8450921.14788304, 8453273.4375, 8457422.52324371, 8466006.025066547, 8469820.230789488, 8469971.875, 8470753.125, 8471022.84524894, 8471542.303777575, 8471701.5625, 8471758.996600274, 8472359.812113732, 8472515.625, 8472750.909054844, 8472755.4020797, 8474049.948345277, 8474797.96397704, 8475010.030562084, 8475331.25, 8475982.742564877, 8476607.8125, 8477904.6875, 8482768.420408748, 8484899.051960437, 8494338.609149067, 8496885.9375, 8510296.672877552, 8511051.006047098, 8513345.852306917, 8513521.790761232, 8513547.57236431, 8515308.827863533, 8515334.375, 8518320.3125, 8524813.218859037, 8526126.5625, 8526900.114668706, 8526925.761906724, 8526938.88454343, 8526942.1875, 8527071.921014396, 8527956.25, 8529123.4375, 8532778.215450304, 8534022.774128055, 8555216.770969026, 8556704.6875, 8557064.441988286, 8558228.520142004, 8561893.830575263, 8562601.197056904, 8564765.656134568, 8574810.715513268, 8582994.312475033, 8587746.129790507, 8588117.1875, 8588540.625, 8588554.6875, 8588938.55704557, 8589859.066299, 8590686.970613234, 8590701.927923732, 8592315.272661408, 8592701.240798088, 8592964.822154682, 8593773.4375, 8595977.298851455, 8596205.60412225, 8596672.680557048, 8601117.1875, 8605385.9375, 8613138.148063965, 8614070.200764906, 8623845.172225619, 8624101.021721257, 8626474.134540401, 8631322.940969443, 8634040.6348058, 8635421.505595544, 8636866.996916652, 8637317.427991956, 8637387.5, 8637592.995678687, 8637796.28007529, 8638198.704270206, 8638210.9375, 8638330.10476529, 8638514.0625, 8638803.788896643, 8640536.812820103, 8640650.137071582, 8646604.440138672, 8648184.375, 8653384.770202266, 8653829.163774341, 8655013.897285976, 8655760.9375, 8657336.615776407, 8657340.625, 8658459.996304715, 8666334.437401231, 8666911.538715798, 8667287.544062946, 8667708.265145417, 8668266.976122217, 8668702.694779057, 8669766.038727367, 8670051.5625, 8672006.14737194, 8672863.789863829, 8674171.995824914, 8675782.8125, 8675806.642790614, 8676684.164175926, 8676788.847845376, 8682890.819103602, 8707393.711672792, 8716954.107867584, 8719331.869909221, 8719357.261633236, 8720684.74424511, 8720756.25, 8721019.301109722, 8722610.066864356, 8723720.126570111, 8726559.758659014, 8726713.696324771, 8728865.463891074, 8735695.3125, 8736239.239059532, 8737658.501927417, 8741785.9375, 8752517.099481188, 8753747.120655594, 8753757.475156669, 8754623.023015838, 8754884.375, 8756684.682456603, 8756926.710946854, 8757101.054781757, 8758359.375, 8758764.483558888, 8758912.120536726, 8759270.3125, 8760002.639680192, 8760482.8125, 8761593.75, 8762550.0, 8762556.873451816, 8762674.594189813, 8763140.625, 8765618.23021028, 8766711.733072175, 8767584.375, 8770956.25, 8773571.875, 8774396.46220869, 8776142.219971254, 8776745.343013324, 8776803.125, 8777014.0625, 8777037.130657522, 8777089.64581455, 8777709.705712764, 8778108.810645549, 8780217.1875, 8780521.875, 8780662.321189135, 8780812.403136883, 8781173.4375, 8781320.3125, 8781558.599255923, 8782059.375, 8782665.410572112, 8782815.427775653, 8783470.545819586, 8784370.3125, 8784710.9375, 8784823.43747394, 8784954.86422491, 8785178.110045636, 8785190.367755687, 8785292.1875, 8785477.499788653, 8785706.25, 8786368.75, 8786421.875, 8786621.772636926, 8786771.684871698, 8787060.888842808, 8787393.146686224, 8787429.6875, 8787435.9375, 8787468.811168035, 8787571.875, 8787709.375, 8787929.761543786, 8787970.3125, 8788369.854765693, 8788437.358223664, 8789239.92082571, 8791115.625, 8791486.408187928, 8792644.104236636, 8793322.768044157, 8794346.558683692, 8794430.13684766, 8794760.9375, 8796217.1875, 8796495.005907847, 8796668.333266122, 8796899.93573454, 8797193.620244397, 8797317.795652973, 8797882.8125, 8799315.972102772, 8800217.060305534, 8801717.03769721, 8802973.520640438, 8802978.148119401, 8807420.3125, 8808700.416833218, 8809926.771222442, 8816915.247556284, 8816935.9375, 8817146.875, 8819208.842086585, 8819306.538374916, 8820202.453340575, 8820392.80800014, 8821274.83796064, 8821301.408787267, 8821302.89369877, 8821421.875, 8831925.0, 8835532.523161871, 8839153.611031163, 8848115.425132489, 8849275.0, 8860985.9375, 8870364.318157833, 8874124.423534865, 8875432.978670513, 8875892.409246251, 8876868.436223455, 8877046.407904694, 8878495.877412817, 8879133.868322195, 8879406.25, 8880715.723322477, 8882759.341616804, 8883507.538164, 8887204.266591344, 8891490.625, 8895239.0625, 8897537.5, 8900075.816103265, 8901013.66442913, 8901158.598282598, 8902377.48051851, 8903233.491166025, 8906082.425152995, 8906101.091222662, 8907293.59478097, 8907442.142470162, 8907716.464932838, 8907770.58268056, 8907836.867794886, 8907934.030186296, 8908468.525330028, 8908546.818749368, 8908549.129309708, 8908630.825250475, 8908816.319868973, 8908829.03506135, 8909492.1875, 8909531.161648422, 8910053.837833911, 8910091.40642305, 8910865.625, 8911437.842632394, 8912062.187741006, 8912602.992672203, 8912605.939422224, 8912657.8125, 8913284.67236707, 8913788.872915031, 8915576.5625, 8915827.770359138, 8917693.189849786, 8919403.125, 8919410.9375, 8922440.85837025, 8922537.522332065, 8925134.356568636, 8928445.618094468, 8928731.25, 8928796.745412225, 8929842.1875, 8932785.73905784, 8933121.875, 8934082.622510467, 8934903.125, 8934951.814251965, 8934955.698085694, 8935112.357893966, 8935790.298216581, 8935928.864951236, 8936191.3047607, 8936275.0, 8938331.055784503, 8938354.467507957, 8938851.917834055, 8938892.838151734, 8938930.855069902, 8939135.9375, 8940252.805630596, 8940328.031010829, 8941531.25, 8943076.681781683, 8947721.900451092, 8948415.39917042, 8948685.54652385, 8948718.75, 8949365.2633556, 8952178.339805417, 8955057.920537703, 8955093.75, 8956070.3125, 8964892.1875, 8965239.690017669, 8968214.39846797, 8968361.949001564, 8971035.365698347, 8972106.048546035, 8972685.769841801, 8991387.232181974, 8991391.659484982, 8991830.227542602, 8996809.375, 8998469.446736734, 9001510.9375, 9002400.0, 9004106.168411072, 9004428.92558742, 9005668.874349928, 9006332.8125, 9006607.347739581, 9006701.5625, 9007587.620089859, 9007887.692215178, 9007985.9375, 9025402.818153726, 9027195.3125, 9027202.633802025, 9030431.25, 9035621.714632533, 9036983.90542916, 9037581.654639516, 9038587.323080268, 9039798.721502576, 9039803.447855046, 9040542.1875, 9041369.051236715, 9041437.148593144, 9041697.288728882, 9044637.496576305, 9044923.4375, 9045461.890093157, 9045917.493147671, 9047994.11385785, 9049153.416260155, 9049802.321442243, 9050020.93422042, 9050767.566120813, 9051711.127732482, 9052133.336220842, 9052352.874679122, 9052441.966516213, 9053249.358960068, 9053428.423338046, 9054791.265026262, 9055629.657427223, 9056921.875, 9067004.6875, 9068800.587119227, 9070546.831962472, 9070657.8125, 9076412.044816433, 9079136.555835593, 9079947.224827537, 9101665.551333956, 9101695.3125, 9104416.415577693, 9104713.927519526, 9104818.561799347, 9105228.221133215, 9105490.625, 9106650.0, 9106821.063434504, 9108381.926128775, 9108629.6875, 9109364.570156042, 9109818.23938567, 9112943.051014964, 9112950.0, 9113463.930907214, 9114220.569000263, 9114359.375, 9114470.3125, 9114818.75, 9117078.973669095, 9117781.25, 9117899.603883322, 9118206.79927525, 9118345.3125, 9118434.375, 9119105.98243199, 9119280.590079661, 9119488.49026217, 9119540.162240343, 9119985.9375, 9120669.84667457, 9120735.820997553, 9121063.821535643, 9121210.796557795, 9121308.632397898, 9122069.650422333, 9122202.980416063, 9123666.568026429, 9129425.815574868, 9131687.5, 9132281.635193743, 9132425.387632703, 9132987.572031619, 9133096.875, 9133740.625, 9133975.44286224, 9134089.847903665, 9134129.520274274, 9134275.0, 9136115.300620627, 9136446.970881665, 9136502.166360775, 9136867.328505974, 9136917.1875, 9136954.060859438, 9137229.273360696, 9137239.821304929, 9137285.155712534, 9137296.875, 9137410.351661613, 9137411.186397322, 9137708.515112989, 9138350.803011268, 9138783.35647073, 9139030.127095085, 9139465.834311325, 9142686.442212073, 9142943.113490494, 9143973.4375, 9144002.300582124, 9144339.605246268, 9145340.625, 9146384.375, 9148760.9375, 9149345.3125, 9150250.424740719, 9150374.153815389, 9150548.03620856, 9150718.716807922, 9150854.279153967, 9151380.971489817, 9151423.443230785, 9151436.907204555, 9151600.0, 9151689.0625, 9152273.4375, 9152490.565056019, 9153001.5625, 9153356.83110905, 9153378.2555191, 9153510.908635693, 9153566.293336809, 9153592.03993875, 9153682.41322952, 9153846.125218468, 9153920.1673226, 9153938.950406643, 9154012.5, 9154075.0, 9154083.592707029, 9154100.0, 9154238.56074656, 9154320.3125, 9154398.298399478, 9154548.4375, 9154597.328695117, 9154630.317061562, 9154710.027955422, 9154926.901773063, 9154953.91175157, 9154965.625, 9155034.78967019, 9155151.5625, 9155185.9375, 9155257.672656007, 9155330.013646638, 9155359.375, 9155377.45561897, 9155412.110197315, 9155432.8125, 9155500.807524573, 9155509.027512152, 9155510.864175148, 9155558.40079316, 9155590.625, 9155607.330355447, 9155646.638724172, 9155733.91884904, 9155849.643906543, 9155914.262763645, 9156022.708776597, 9156023.805151869, 9156209.233220233, 9156221.057925142, 9156350.984071108, 9156408.414631361, 9156783.636685107, 9156849.78910921, 9156929.57619005, 9157142.1875, 9157221.875, 9157573.17824272, 9157590.625, 9157739.0625, 9157740.625, 9157823.850370808, 9161607.062879326, 9164595.3125, 9166790.625, 9167279.768254748, 9172037.816574857, 9172541.205550175, 9181832.369647818, 9183745.415895924, 9183800.0, 9186263.223062273, 9186264.0625, 9186594.72408073, 9188104.908569252, 9190804.6875, 9192016.142056076, 9192124.597160956, 9197276.89042935, 9199302.343124809, 9200212.43881814, 9200315.541945174, 9200828.421057662, 9212433.066573057, 9221164.04803738, 9221337.5, 9233520.3125, 9256082.203719592, 9262238.598374624, 9267395.3125, 9267820.540657258, 9268470.180862935, 9269056.655227011, 9269561.698015613, 9270982.807318829, 9271150.0, 9273096.12858194, 9273495.3125, 9276992.1875, 9290192.1629126, 9292060.46100673, 9292934.375, 9296442.827809365, 9297156.378423456, 9297194.034811081, 9298098.120088845, 9300195.3125, 9300244.529840726, 9300736.923010852, 9301718.75, 9301804.850035874, 9309272.192536788, 9315290.13151987, 9315520.314331006, 9318045.3125, 9318057.721150255, 9318424.943851888, 9319358.597174577, 9320042.1875, 9322139.58024936, 9322795.209920764, 9323365.49349903, 9323695.3125, 9324486.684806218, 9324540.625, 9325310.271540442, 9325332.8125, 9325589.85640254, 9325921.067736564, 9326643.75, 9327112.44255195, 9327142.2612148, 9328038.37027541, 9328068.124331772, 9328083.727204725, 9328826.223368602, 9329415.991171254, 9329862.5, 9330535.661458667, 9330797.58932525, 9331493.75, 9331631.462062001, 9331910.63790585, 9332073.419664584, 9332087.120657805, 9332719.736689761, 9333545.3125, 9333759.225243736, 9334293.14525465, 9335016.60441503, 9335307.09676003, 9335880.498748947, 9335895.249199664, 9335930.646675318, 9335979.682532903, 9336093.75, 9336426.407076925, 9336440.641392626, 9336776.275367621, 9337391.308197124, 9338506.854290497, 9339427.143812094, 9342176.846502576, 9348372.527536105, 9348625.0, 9348823.4375, 9349604.6875, ...], [133.2324447113037, 39.3938016044069, 8.746318523012112, 20.48821782342676, 15.288408115694823, 9.371148923909422, 24.754225660752425, 12.521593712457705, 20.148961906910415, 18.426352666029373, 34.198509063703014, 72.08982479477467, 6.00050186537543, 98.30197258722524, 57.19504874560369, 101.59621423775172, 12.383678641581835, 37.377216575194865, 86.02208672150752, 49.15976432685054, 106.24252379744553, 80.61964139713155, 21.25110734039602, 74.299139343381, 27.391639013255748, 18.812613449945367, 11.491551136186107, 9.476615200169052, 20.54168219231375, 17.91845152623229, 119.23941280146319, 41.9925897545548, 25.619365576529468, 75.05032717710698, 27.28103563060854, 98.26449615679793, 43.385067820137415, 53.13243320937006, 126.36045985500118, 19.274875071788234, 29.12812729088952, 63.69588748250206, 20.4997353451604, 5.6673402263394825, 7.98587146787638, 10.913089651872301, 30.594398666682082, 12.828003029363328, 24.063931003947175, 11.970508861418674, 5.326649334022621, 34.798151031699234, 35.2056825756527, 83.02698750028526, 48.023482715653984, 6.150361359893805, 30.995191528394134, 121.49832648092082, 67.00783844539531, 19.433626481078832, 23.11415264909752, 14.606685872025324, 53.76604058541613, 35.82584159799856, 105.48037794698568, 23.659069994026726, 6.364877154107, 6.712796135262394, 5.048154607853649, 35.66867179660986, 9.667784178445856, 34.696194624967085, 60.08601270610206, 58.05014575661905, 30.006252941823607, 23.597583414739276, 18.845185712254573, 84.7973880708578, 16.765151238088077, 22.78009856929854, 46.739360556234026, 37.597758641032115, 83.43876328484512, 62.50721336481343, 17.20709284529831, 25.912507580954465, 7.794153398009659, 27.48311967874209, 19.36297770012939, 71.2010402383112, 58.10298093453155, 43.35003666274207, 64.67537221374938, 58.84662454833358, 48.854309396590835, 11.751568818649174, 69.27699918569789, 24.458818329386155, 21.299345850324638, 30.442410078391084, 85.02352003408298, 54.31970027747903, 25.115370106953392, 56.79805983493806, 121.95778064009218, 8.799731542113648, 54.981731027456554, 120.44199191849926, 6.638471123477062, 60.06527569892153, 14.272109335135717, 14.30491162055175, 5.838998678616279, 13.556123391708967, 201.77728866698763, 10.266333387843186, 7.4618350987383755, 12.882734405089726, 30.16806519676258, 10.315525921788097, 119.06556463986192, 190.00339040577572, 45.81967819872737, 48.77288835654464, 46.969961849362804, 5.556827323522098, 17.247461413117538, 12.953449329118941, 43.51611419213789, 7.26233277042143, 21.320472427122237, 105.22890070384022, 108.56448613068585, 129.38978208515218, 100.33390431769246, 26.725979054261295, 47.22586558276698, 38.45542643603082, 25.95115819967669, 10.409788083204164, 25.201552551532707, 55.65623797597215, 103.75059339431456, 39.95087720257672, 49.19133964391543, 12.161842462328678, 9.711911447020347, 17.52288984505497, 15.140917639129942, 8.534625954453327, 57.933251569523904, 6.054029074671704, 26.104247572931712, 6.249053993577171, 19.347847169816966, 37.47560610196571, 66.69656160313933, 20.501826006466477, 28.71737499139058, 39.648056223704, 11.855706750099348, 32.168037405209894, 21.971948719038785, 133.09055677056426, 94.2836596380851, 37.5555432661467, 85.32998813571639, 52.247937362416295, 31.991300391896736, 69.69853581435213, 124.47849334351628, 93.57445657844882, 29.320925238210926, 61.076210290308744, 17.649157513993156, 76.71336616816869, 6.0949073931739965, 35.35101480216123, 12.98399912330525, 90.29437194018087, 66.5869958037106, 110.09242708538974, 142.19269756304723, 15.83074286674403, 94.12840992801719, 163.8382895008808, 10.863652383638234, 74.83710093481308, 46.35526520310387, 12.355163291386917, 37.5053333253816, 30.732780864587713, 67.1620854291772, 57.091908105730504, 78.50062260173974, 8.58034188105015, 18.63921665566364, 26.984259681300845, 27.01048532704377, 50.67981803247828, 12.735892600000916, 62.20435080598813, 43.250379444424745, 23.770266906636277, 193.19957531512654, 53.89001265687084, 26.69567445239726, 42.29898743407605, 88.75725213046235, 5.679079536648788, 18.270122313787397, 28.679232275905598, 55.57821685855919, 115.37065802342492, 22.14683957891635, 30.37953027171276, 10.947495105889297, 62.48437649377591, 10.073474417950223, 12.461624529792237, 14.746337549474474, 31.447286143046867, 60.63903954862417, 8.72279200477059, 11.06694766952341, 60.1110209373881, 34.404637338802246, 24.344175023343432, 18.33902818138205, 43.481057371204145, 9.465187273496987, 11.393847825492019, 59.09973709548324, 32.64410883414625, 29.825876608467, 5.9484782652688235, 26.00568955280163, 30.569137535835758, 72.24974369281135, 69.33175530484773, 67.93881197177558, 11.929912511902334, 149.64014388535506, 31.09899633633518, 39.550496390906964, 6.5419494127483615, 14.624527279072028, 60.6774927209717, 66.96390555200712, 48.988313724044694, 16.325843444138485, 43.430100244730546, 30.839595465373137, 51.3841707480951, 9.134799732284126, 32.25467658139233, 23.69354780489452, 20.452928854757765, 19.661320085627803, 40.52096506070008, 49.28779388587427, 80.81501453742139, 26.06467289986797, 84.21645135815467, 58.056549840957786, 40.65514572358222, 130.58963478989062, 45.50155682232304, 10.928187574399532, 21.33314690638863, 22.136287635236886, 72.37885362952214, 5.145487419639427, 34.332786103070475, 10.103333976275554, 55.00024142231416, 62.422449329297635, 41.23792828051702, 5.954518303626908, 5.033100054309679, 12.817114290400585, 206.9928248242271, 38.45885885768217, 83.39510093719551, 19.082326066287663, 10.533603438226246, 17.54340177243105, 41.466986463328176, 156.1883716046634, 56.63246285048854, 11.477663809645335, 16.832632227522968, 16.288364887089053, 66.47177308632621, 79.28010981157816, 20.877148117426877, 30.906810898344837, 12.489286804727294, 22.213291096401335, 28.863357383820382, 70.60078131457165, 13.60816267684746, 10.525973131249767, 10.208076555629143, 15.571608569103393, 84.19385199053144, 7.133550363988723, 47.19949382906302, 51.71509271152653, 43.01032931134258, 15.325215799316798, 20.199035305532224, 7.392681130964772, 98.0485156429462, 81.30680465552547, 11.191650030343625, 46.2634051072456, 18.082576668657243, 19.476856031388362, 29.54273656919259, 80.73140189335552, 66.03590600570043, 108.81221636423516, 29.628082638355778, 94.52210230542401, 23.559882529057738, 39.63491949929778, 9.439358281414524, 20.53101266931927, 90.48945342770762, 8.035162086115541, 95.58250129099194, 26.246377322794768, 73.738785657592, 5.072534736908425, 54.47437607611337, 10.058875558859079, 45.425785335537554, 23.320082967377708, 31.36459026028945, 73.52566980494673, 9.577697801266385, 24.66868419396947, 34.23826423443317, 38.06344566062471, 130.39920402141846, 14.739530597530546, 6.177042603171343, 17.6293391801152, 27.573806414484604, 16.06850382279349, 14.76923150669535, 58.81196530469451, 17.843978678181177, 79.9423036019621, 24.378636816697608, 11.516330834738259, 6.626535377761465, 36.22426256463855, 9.947092173512965, 80.55810074537258, 5.529127970473366, 128.24400499317576, 30.298131789558266, 10.31302911791838, 25.782145064559572, 39.808382923673044, 13.671892929790959, 56.41764260228812, 70.48789801591529, 47.89891328880233, 18.606375029188005, 14.748214324526398, 32.269453641811914, 28.807717839661073, 28.648374542977812, 27.213689693611315, 32.33713524170785, 28.914910990472656, 33.636530135057626, 17.94735546917056, 6.042190271141575, 34.47399157220627, 25.08704752184841, 142.0142991721828, 7.810886455867612, 34.015759979608134, 18.48855167940564, 21.035432074276155, 66.72984772024647, 107.93474201574234, 108.20662791408249, 53.642471725775614, 9.430281370356978, 34.185642425629226, 25.445786219263145, 77.85067848881444, 19.826195943734092, 42.061710085529725, 123.73253445343335, 8.334995233483124, 5.88364463249031, 22.36821946959369, 44.04590013749857, 101.02985704593515, 44.08103293145403, 246.34324902557782, 10.600812270758064, 15.061522753498663, 5.920303942509038, 17.628615673383713, 104.53155215775018, 45.633244757926015, 59.51464323475299, 56.92654977244507, 49.18462663066001, 23.640231095493498, 21.20487630951309, 126.47152102922766, 76.54472129668979, 101.43973335229128, 17.754465615570517, 81.89644224825119, 12.513535763955497, 20.151670049457433, 65.78719568400686, 50.46271821525939, 47.902262819156796, 47.310896046666116, 5.527682147373671, 92.8390006992367, 6.201209929185881, 12.425414398930066, 61.988887471443064, 26.70555739995828, 7.474879945521237, 110.30544073788386, 11.525636883496622, 62.54262917863736, 12.67960646820912, 20.595705216640294, 16.066140347800385, 60.139842750524814, 16.812519054139834, 34.569499407920176, 6.9037043769632405, 49.74438195130475, 15.491033952567436, 24.44725025269626, 51.18347826888919, 8.507241360893174, 39.06077312328763, 9.195506080378426, 49.81206645090521, 12.384018433137127, 36.47361741613462, 9.918498756565135, 11.226665182287446, 124.18458543991773, 76.2324448729952, 17.00198586978203, 54.396630434939404, 22.21861935143412, 17.33298313158911, 138.16916047831504, 34.75504068890834, 24.1066850573716, 27.841534154963185, 40.26714724811897, 7.751762222804882, 32.729999329206585, 77.16986028123122, 24.084938040822678, 95.30672619618583, 85.1278120153668, 31.44782247119815, 43.81289154404141, 20.016075045514864, 60.66799555653363, 5.36116764380583, 6.358755406015505, 25.326060204264724, 16.6377273330358, 6.431182236867341, 14.361048256136849, 94.76513822176348, 15.660068784647747, 18.43488382766123, 48.146740079555755, 60.216842426203236, 15.968506821757765, 74.95405691952888, 10.536262799582085, 99.04328352777364, 7.718358117228905, 76.92934696947049, 21.41645062018201, 75.18589444875336, 11.856473083021802, 13.668752748136109, 67.18365996911321, 6.2077690015798295, 43.31744584475132, 79.73166127070662, 47.66604845205415, 18.00404167419396, 27.65210398004041, 120.03493687093325, 47.25175752477714, 8.757437699401668, 81.10167256206005, 81.32173990656827, 69.03790523822329, 45.0008079711588, 8.30382363623033, 54.1133936235706, 32.19529826480439, 93.987593465324, 5.4461341503589615, 25.262944975415866, 16.37676510044862, 157.73363507822316, 150.42841764018033, 66.08947745711748, 24.51527725786518, 87.67216264850289, 109.71262291800826, 115.75056051322338, 73.01637340865778, 46.25952398320827, 74.27020496308799, 42.54942244144978, 15.912213917987449, 49.89759893010229, 62.43780867198579, 28.524717898725342, 168.33230118616837, 5.1650134527252005, 23.94158117445849, 122.70525852337913, 23.929380639636292, 30.016378402471755, 90.52746806747132, 46.36979819484698, 17.910148574547414, 25.2635617474509, 5.935179335658607, 18.922510684456128, 46.38819198132626, 79.59298715495872, 67.56393385550368, 55.516690621348516, 86.3444104764319, 15.231445337593806, 38.914252283153836, 21.925345398958157, 5.241194514652263, 25.95233006560335, 55.10745527828401, 8.552223727659873, 5.970859902189506, 19.9543020935644, 112.87776809276033, 16.984082944025957, 53.019356016951434, 65.92964830012559, 23.666899685951318, 7.016050784441986, 27.314695875160282, 6.466941470860699, 5.563342511777783, 46.71426039789828, 9.643219712571353, 26.241256636615333, 110.98433044106363, 15.268162572568166, 15.030368096822539, 145.19361038606135, 39.84681630616256, 30.662819626793297, 140.3572543282957, 65.06129097141718, 42.718674564340134, 21.170936625179447, 32.99237246166901, 18.569018504139052, 20.210847646978763, 9.198047689315787, 62.67841381303248, 24.669815542535183, 57.2318425853415, 63.096684078275665, 13.942567402437758, 14.260178840777412, 138.18673044693043, 54.41563966512953, 60.74842325072255, 6.11509510199338, 20.762789062128036, 9.47597646734183, 15.859894450657617, 23.57634614817878, 63.75452566420999, 28.3960436616349, 27.76742052685999, 36.01884558127251, 22.646519492449578, 26.386279246460553, 6.444929703480461, 22.079536340606126, 37.206647691056276, 74.09423160334475, 82.7014090980882, 19.343168957627054, 8.086721161268137, 75.07717121844077, 12.947028575069822, 12.384873677094484, 27.740759101007082, 10.463152432219074, 88.74276268923472, 14.772610225149528, 19.527269406824534, 16.082063696734558, 12.977986230022488, 10.628368744081671, 17.284612939098686, 7.583018706380633, 18.45094965698568, 5.034458036906042, 62.49453919261363, 20.096250790682575, 30.85231309286161, 14.615118781625593, 18.594337413526887, 49.38719169808137, 67.52518985221056, 8.476477500874593, 97.71438727633544, 24.07617131073333, 10.674639613328326, 51.73118692254012, 16.210563685578066, 71.1876283681915, 83.11292948667912, 23.077001797236683, 13.164273279258353, 90.18875222286876, 28.52972257524778, 29.144182849523137, 11.16279359702931, 60.72018193284602, 6.536087165320449, 29.773564036206963, 70.79873831714764, 42.927814202465456, 33.72360397649335, 36.7921415131946, 25.26562154945423, 60.780461324989616, 7.696902719163875, 28.17968697926134, 21.832519650071625, 52.187335393295655, 47.57372177205784, 41.767060725606335, 46.80263965780904, 26.046312706116126, 25.03221612458295, 20.04437133144244, 79.47648299208231, 6.426914679036742, 188.2043848973919, 6.05550556776964, 26.794856582475944, 80.55822546878649, 21.164406360166225, 35.83707075167557, 24.74677251314236, 13.634895075711073, 48.93216173542019, 50.10789018483518, 13.273093236912537, 92.89092402715094, 49.276285187114766, 34.90337028439814, 116.46482225301314, 39.055014150301254, 16.39792140412567, 47.85128637358555, 13.133607774678662, 41.94465909203011, 51.43753527659565, 49.00189422039567, 43.03900885505954, 147.58301719523695, 59.14924927760454, 115.25550364107932, 100.8590869476705, 46.87827127347342, 27.008838290863395, 10.114468601376661, 16.75195901946467, 94.55849941389502, 28.038500097605194, 46.42186897804196, 13.291777695170175, 20.558241035444258, 52.870444622075354, 132.03072428716214, 75.69860605188396, 13.350217524997944, 32.099418809342886, 25.714792735556923, 46.47499290096758, 24.69620561246653, 10.861989657064003, 47.69930563910881, 46.89435461891376, 36.79209006394879, 11.633635945650893, 5.385207879137663, 27.255685336986573, 14.928475942422558, 74.869230642042, 52.405338425029285, 108.24003258179239, 76.21389938728895, 16.181454441858353, 18.91923528929009, 29.077606052694023, 8.497488657477179, 15.7197984915974, 6.87277027923698, 51.30818726279705, 32.45326353437609, 22.505376925787985, 11.628408682978343, 12.30093193430462, 11.081024229954968, 32.45733485602378, 74.49198833791604, 165.8613528406999, 27.70093020107803, 58.58875117673619, 21.952129372748164, 9.915365112842021, 38.959567342882046, 120.18347724022355, 74.24254327941712, 142.00137462127023, 56.476454411850426, 5.12650026280613, 77.78106312942131, 56.51770312418142, 42.11965499787239, 18.861751248703396, 6.000532158575422, 51.553874466604505, 17.308283640390066, 106.6033307412443, 58.96103635962454, 36.61892000505858, 10.928065331906891, 16.018448455714275, 43.147780968317704, 29.902001381160794, 30.44159510765356, 10.169387767074072, 71.96466556420317, 10.560282273120313, 35.30007555832721, 81.73189853555789, 37.34440577408359, 95.46150722700553, 66.16200695791187, 13.132463931441388, 61.04726175233065, 57.21078025279114, 27.535198847800544, 54.00966814973313, 24.535314869501587, 20.868614827664523, 5.430771083410843, 12.903040662459, 174.84317813239974, 20.378700775900807, 33.98008624512284, 37.106877598103836, 25.54272790181687, 11.792952154403649, 73.01287080397546, 99.89778144130696, 64.59957847883902, 36.94878290653527, 12.62622300598083, 5.525019220516454, 58.57406544790918, 8.12217908434469, 15.320008620267352, 9.900138468093816, 7.655045924457558, 69.31661738970416, 12.992091944739235, 13.567514614415888, 174.8389105751965, 19.077839559804186, 75.60354398070758, 54.785590576489255, 15.983390756954451, 23.824428938182425, 7.349849727506726, 118.40300204465976, 26.838454988169346, 11.471432592442731, 115.31360578886918, 44.086609130775884, 76.58703727432297, 18.770431102644043, 17.511525373465403, 34.78264976859593, 68.90399560330985, 59.73542364427655, 30.269523615909762, 5.214379783103717, 35.26751571865535, 33.99040570548196, 82.61452897787106, 5.2338584701238675, 13.976549438081616, 28.155898698203394, 53.042971162925596, 102.21250822568811, 39.51378609345985, 46.32730085269618, 12.471963268154205, 73.34916138549711, 21.267128707950814, 107.38092671489473, 27.966117350180138, 32.5016823535692, 25.915003567521147, 155.95471164074502, 25.604523282304335, 14.415601676878314, 130.29536625436313, 56.53621934463926, 82.07296862055486, 19.07411766215882, 53.99601040659101, 106.37451370482597, 51.75050155841289, 18.80958827337262, 66.83700789778638, 17.00769513138736, 8.650141160399858, 35.376065640096684, 70.62778408030823, 12.629363397446902, 87.11805164306385, 90.32613891521433, 118.8260617882075, 55.887048089361855, 107.39217497968356, 16.349692926459603, 59.52880377532637, 142.7692262587721, 28.191255252511077, 118.43040111847509, 61.746074248065376, 13.764094344017915, 63.21439411900734, 17.785027266123013, 38.185795375444826, 147.68906529110936, 14.11142614404905, 14.130985360381526, 7.4793297178756255, 15.76402149378643, 7.935468594879067, 44.65298874882924, 97.8042174803427, 19.02882507446723, 62.16221910931892, 137.4262877030572, 12.717537951724776, 36.79751996587899, 79.25614061236527, 77.55550428071228, 90.5203454339181, 59.70275930919311, 29.41197072441908, 113.67015548553391, 144.40939910926608, 11.840813117200355, 19.318603867270074, 38.63137557690079, 37.117326585074416, 6.277455346206951, 109.36347615728994, 52.558278798681734, 8.065496482116009, 11.29326100497491, 71.42824451497377, 12.483532128192607, 55.303705805999336, 5.8897497518961615, 21.367464393020605, 77.53856537798222, 132.54063789452772, 19.103909791203602, 35.69614107579563, 81.97807888065795, 38.94314486265965, 13.477140671696521, 6.8240874545556025, 5.408276650298846, 26.94991857671804, 47.04884371175118, 31.476077115470815, 10.293086267153061, 25.26110235545834, 53.811084237118735, 15.88881805331681, 14.462436006970657, 7.232209723857999, 40.84479591877409, 8.283839334900955, 52.9281436732352, 19.343006205738416, 39.24687191272142, 85.03557744546266, 5.81216324585838, 180.65900401249823, 85.7960654918912, 7.852496734801924, 68.03915054653774, 16.150868795854446, 44.73882966876308, 132.6277944514151, 74.43915875424469, 6.977612152940176, 50.98602421978688, 13.408666713627836, 16.85243716820988, 8.94630732268189, 11.130569989109619, 39.92351468253521, 26.840064113554345, 14.731732396093777, 19.1070762538884, 77.14248853412293, 13.399432214974915, 59.57013071267281, 27.230733770857736, 29.853072663934306, 6.366469454139647, 32.23834566159309, 12.893396936317446, 42.37336993956833, 39.04939984081926, 67.95130190771158, 56.32685596545662, 42.33562107781461, 12.181996684450954, 99.59944609014923, 39.53695268487385, 5.579184345232237, 23.263438550550692, 114.49753559568951, 31.774548184151797, 116.68313647912535, 32.768675544489845, 32.10705044289993, 11.476181465056932, 66.69270851728676, 28.17667447356252, 22.787537126864546, 13.123106748534001, 80.38587829256942, 60.320988328915234, 88.88275498286784, 85.93413437422336, 27.84268229501394, 22.563188278588125, 27.33197866249815, 56.34906962587522, 148.03813112142268, 52.07774304147912, 14.38045009228701, 15.106122726313377, 7.502586428054741, 32.04517277877765, 17.8838030714026, 5.991680549395131, 105.72476083274002, 9.951675257218454, 52.94058415998239, 45.1445470306431, 54.07878948028914, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5395929.7832074575, 5997745.220649929, 5997764.84124364, 6189663.4554981105, 6238475.08813016, 6500660.984134364, 6564711.609824413, 6597885.114903877, 6622054.214052047, 6622066.313160181, 6625798.4375, 6628257.8125, 6630660.050806001, 6650573.163450625, 6696534.419127869, 6748734.375, 6761756.928121586, 6784818.75, 6808590.101951509, 6814570.3125, 6826253.741331848, 6852715.625, 6854236.202165887, 6855864.0625, 6865779.6275201645, 6872996.364218933, 6873390.845939505, 6941798.604383923, 6959943.149025341, 6976119.983706742, 6977510.4082994815, 6983125.0, 7006939.993954055, 7008235.9375, 7033824.933850675, 7037620.3125, 7038546.875, 7045381.25, 7052880.994918887, 7074758.6196140945, 7101762.5, 7106284.375, 7106691.581799892, 7110589.987296014, 7148822.822006939, 7157307.670713937, 7158168.352978353, 7158699.307484812, 7159704.41162921, 7159722.354671469, 7161619.859930976, 7162106.25, 7162572.463587964, 7162578.125, 7163974.432747058, 7165300.578174811, 7165818.75, 7166085.9375, 7199757.631874148, 7215266.45288452, 7224127.773474245, 7225482.721791276, 7253088.891780237, 7268103.128985129, 7268790.038831848, 7269262.19278931, 7277881.985896688, 7288734.115573212, 7311726.951138551, 7312259.43395533, 7312280.060221773, 7316090.625, 7316809.375, 7317350.568762636, 7325100.0, 7327071.072509964, 7329814.811115086, 7336770.3125, 7343787.908251502, 7345478.741337594, 7345950.734782533, 7348577.265183338, 7348755.319865841, 7356417.037795222, 7356892.677271941, 7360170.647600695, 7360819.2487091655, 7361459.3200784335, 7366194.568695299, 7366260.6448505, 7386306.25, 7388282.8125, 7389284.3316078745, 7405671.090358019, 7407067.1875, 7407115.990547751, 7408166.307864717, 7408235.433106312, 7408578.100252005, 7408729.6875, 7412165.625, 7412175.0, 7412177.924815798, 7412814.0625, 7413034.923361467, 7414549.296316605, 7415607.458359741, 7420217.1875, 7420408.714685818, 7421204.6875, 7421487.312542658, 7436331.0723151555, 7436458.144995999, 7437308.956911316, 7439119.778064005, 7439280.618871241, 7441355.841354911, 7445779.017238254, 7457187.5, 7459993.159810613, 7475494.87274447, 7480265.625, 7481110.9375, 7482505.509778777, 7482684.377080019, 7482847.3547695195, 7489451.512211586, 7489454.045571935, 7490642.256391695, 7492908.322630753, 7499101.045018989, 7501378.125, 7509041.598503987, 7510309.296928805, 7510677.147894628, 7511528.02696895, 7512125.0, 7512729.3248725105, 7512912.354726043, 7517188.54890522, 7517195.118181295, 7517287.5, 7518434.494487253, 7518457.541897177, 7522823.4375, 7523292.761676333, 7524225.418155299, 7524244.366510846, 7527505.760980944, 7527672.316349437, 7531742.1875, 7532629.353376189, 7544042.051826917, 7544060.792525365, 7544555.5042160405, 7545229.6875, 7545793.75, 7546146.5838822005, 7546355.778821349, 7547660.753792032, 7562612.920658992, 7565086.285239529, 7565855.796698915, 7568546.875, 7568586.334167453, 7568610.9375, 7575343.75, 7583662.5, 7588615.625, 7590623.4375, 7592476.477970297, 7592817.060276177, 7592868.75, 7593162.5, 7594593.244092204, 7594934.375, 7595865.690215313, 7595901.5625, 7595954.057669126, 7596608.269315618, 7596934.375, 7597440.625, 7599170.3125, 7599903.340252066, 7600554.191069651, 7606262.5, 7606412.324232129, 7606853.125, 7609935.25957426, 7616031.915082339, 7616034.375, 7616755.6556884665, 7619164.0625, 7619255.241287101, 7619340.625, 7619553.642060718, 7620107.196901857, 7621272.58015641, 7621667.640664952, 7621735.9375, 7622280.519378543, 7623551.065512205, 7626859.375, 7626927.826527025, 7635204.961761811, 7635439.0625, 7635717.087682723, 7639571.021558205, 7641166.790943082, 7641629.243630515, 7643172.996833688, 7646317.690247034, 7653468.75, 7656821.875, 7661589.461435163, 7674298.4375, 7676663.944063369, 7677142.405814845, 7689707.014097033, 7690394.463296988, 7690418.697834339, 7697621.875, 7697957.383180139, 7699600.742855733, 7701409.335777284, 7702015.625, 7703189.968045541, 7704365.757137599, 7705374.112600033, 7707457.8125, 7709707.966593041, 7718293.913847832, 7726385.9375, 7729239.0625, 7735401.416568418, 7735461.041095029, 7737270.821731431, 7745699.264347156, 7756515.089407106, 7757934.375, 7758685.9375, 7762597.00060354, 7762614.751768481, 7767048.4375, 7774664.0625, 7785387.841248691, 7787848.351773703, 7792168.437174681, 7806710.083101606, 7807070.3125, 7807612.938216479, 7809370.3125, 7810818.75, 7811064.0625, 7811995.07045964, 7812755.9312119605, 7812935.633009271, 7814165.013997951, 7814424.294423859, 7827769.552814349, 7830678.749889018, 7831129.871431474, 7854602.3499827655, 7856221.195956501, 7858403.29612519, 7861752.916958543, 7861819.133010992, 7863716.486182885, 7864026.430990228, 7864311.9838145375, 7866372.999646679, 7867312.5, 7871391.313180381, 7891210.9375, 7891455.4782274095, 7897625.0, 7897815.625, 7898623.792470253, 7900176.73441772, 7900247.930362403, 7935775.865523262, 7943004.66833256, 7943075.0, 7944204.6875, 7948619.753272369, 7955158.958473493, 7958542.735651837, 7961929.6875, 7987243.75, 7993012.5, 8006536.150419867, 8006577.40277877, 8007938.695331586, 8011945.3125, 8015010.9375, 8015154.008018192, 8024049.0747543685, 8031167.91311871, 8035044.857597795, 8046462.5, 8065684.375, 8067113.662374431, 8068913.640103804, 8070158.694501096, 8070168.906042688, 8074370.573942976, 8101459.420826435, 8116507.8125, 8118953.80740259, 8145132.8125, 8145604.784654692, 8148523.357241598, 8158822.815235795, 8209956.25, 8210264.0625, 8218464.103027309, 8223732.805037726, 8245135.010786239, 8245449.270965056, 8246158.386554268, 8275145.937487552, 8278369.404281301, 8289275.0, 8293299.133504825, 8293532.8125, 8295847.31408019, 8297416.228842064, 8297937.624972478, 8301476.686591472, 8303995.966028331, 8324585.429754037, 8328712.247767013, 8348787.373120365, 8359532.8092786195, 8359701.761595168, 8360942.164323227, 8362036.688475823, 8363285.109809034, 8389662.077693803, 8399418.302476227, 8399912.499070762, 8405173.715093538, 8416412.955855059, 8420068.75, 8420073.272809677, 8432051.449845131, 8443104.63347965, 8443428.938968116, 8443804.000487147, 8445171.825053494, 8445286.204776986, 8445748.391554495, 8446427.15548672, 8446756.847868845, 8446884.375, 8447040.37261566, 8448243.985172193, 8450921.14788304, 8453273.4375, 8457422.52324371, 8466006.025066547, 8469820.230789488, 8469971.875, 8470753.125, 8471022.84524894, 8471542.303777575, 8471701.5625, 8471758.996600274, 8472359.812113732, 8472515.625, 8472750.909054844, 8472755.4020797, 8474049.948345277, 8474797.96397704, 8475010.030562084, 8475331.25, 8475982.742564877, 8476607.8125, 8477904.6875, 8482768.420408748, 8484899.051960437, 8494338.609149067, 8496885.9375, 8510296.672877552, 8511051.006047098, 8513345.852306917, 8513521.790761232, 8513547.57236431, 8515308.827863533, 8515334.375, 8518320.3125, 8524813.218859037, 8526126.5625, 8526900.114668706, 8526925.761906724, 8526938.88454343, 8526942.1875, 8527071.921014396, 8527956.25, 8529123.4375, 8532778.215450304, 8534022.774128055, 8555216.770969026, 8556704.6875, 8557064.441988286, 8558228.520142004, 8561893.830575263, 8562601.197056904, 8564765.656134568, 8574810.715513268, 8582994.312475033, 8587746.129790507, 8588117.1875, 8588540.625, 8588554.6875, 8588938.55704557, 8589859.066299, 8590686.970613234, 8590701.927923732, 8592315.272661408, 8592701.240798088, 8592964.822154682, 8593773.4375, 8595977.298851455, 8596205.60412225, 8596672.680557048, 8601117.1875, 8605385.9375, 8613138.148063965, 8614070.200764906, 8623845.172225619, 8624101.021721257, 8626474.134540401, 8631322.940969443, 8634040.6348058, 8635421.505595544, 8636866.996916652, 8637317.427991956, 8637387.5, 8637592.995678687, 8637796.28007529, 8638198.704270206, 8638210.9375, 8638330.10476529, 8638514.0625, 8638803.788896643, 8640536.812820103, 8640650.137071582, 8646604.440138672, 8648184.375, 8653384.770202266, 8653829.163774341, 8655013.897285976, 8655760.9375, 8657336.615776407, 8657340.625, 8658459.996304715, 8666334.437401231, 8666911.538715798, 8667287.544062946, 8667708.265145417, 8668266.976122217, 8668702.694779057, 8669766.038727367, 8670051.5625, 8672006.14737194, 8672863.789863829, 8674171.995824914, 8675782.8125, 8675806.642790614, 8676684.164175926, 8676788.847845376, 8682890.819103602, 8707393.711672792, 8716954.107867584, 8719331.869909221, 8719357.261633236, 8720684.74424511, 8720756.25, 8721019.301109722, 8722610.066864356, 8723720.126570111, 8726559.758659014, 8726713.696324771, 8728865.463891074, 8735695.3125, 8736239.239059532, 8737658.501927417, 8741785.9375, 8752517.099481188, 8753747.120655594, 8753757.475156669, 8754623.023015838, 8754884.375, 8756684.682456603, 8756926.710946854, 8757101.054781757, 8758359.375, 8758764.483558888, 8758912.120536726, 8759270.3125, 8760002.639680192, 8760482.8125, 8761593.75, 8762550.0, 8762556.873451816, 8762674.594189813, 8763140.625, 8765618.23021028, 8766711.733072175, 8767584.375, 8770956.25, 8773571.875, 8774396.46220869, 8776142.219971254, 8776745.343013324, 8776803.125, 8777014.0625, 8777037.130657522, 8777089.64581455, 8777709.705712764, 8778108.810645549, 8780217.1875, 8780521.875, 8780662.321189135, 8780812.403136883, 8781173.4375, 8781320.3125, 8781558.599255923, 8782059.375, 8782665.410572112, 8782815.427775653, 8783470.545819586, 8784370.3125, 8784710.9375, 8784823.43747394, 8784954.86422491, 8785178.110045636, 8785190.367755687, 8785292.1875, 8785477.499788653, 8785706.25, 8786368.75, 8786421.875, 8786621.772636926, 8786771.684871698, 8787060.888842808, 8787393.146686224, 8787429.6875, 8787435.9375, 8787468.811168035, 8787571.875, 8787709.375, 8787929.761543786, 8787970.3125, 8788369.854765693, 8788437.358223664, 8789239.92082571, 8791115.625, 8791486.408187928, 8792644.104236636, 8793322.768044157, 8794346.558683692, 8794430.13684766, 8794760.9375, 8796217.1875, 8796495.005907847, 8796668.333266122, 8796899.93573454, 8797193.620244397, 8797317.795652973, 8797882.8125, 8799315.972102772, 8800217.060305534, 8801717.03769721, 8802973.520640438, 8802978.148119401, 8807420.3125, 8808700.416833218, 8809926.771222442, 8816915.247556284, 8816935.9375, 8817146.875, 8819208.842086585, 8819306.538374916, 8820202.453340575, 8820392.80800014, 8821274.83796064, 8821301.408787267, 8821302.89369877, 8821421.875, 8831925.0, 8835532.523161871, 8839153.611031163, 8848115.425132489, 8849275.0, 8860985.9375, 8870364.318157833, 8874124.423534865, 8875432.978670513, 8875892.409246251, 8876868.436223455, 8877046.407904694, 8878495.877412817, 8879133.868322195, 8879406.25, 8880715.723322477, 8882759.341616804, 8883507.538164, 8887204.266591344, 8891490.625, 8895239.0625, 8897537.5, 8900075.816103265, 8901013.66442913, 8901158.598282598, 8902377.48051851, 8903233.491166025, 8906082.425152995, 8906101.091222662, 8907293.59478097, 8907442.142470162, 8907716.464932838, 8907770.58268056, 8907836.867794886, 8907934.030186296, 8908468.525330028, 8908546.818749368, 8908549.129309708, 8908630.825250475, 8908816.319868973, 8908829.03506135, 8909492.1875, 8909531.161648422, 8910053.837833911, 8910091.40642305, 8910865.625, 8911437.842632394, 8912062.187741006, 8912602.992672203, 8912605.939422224, 8912657.8125, 8913284.67236707, 8913788.872915031, 8915576.5625, 8915827.770359138, 8917693.189849786, 8919403.125, 8919410.9375, 8922440.85837025, 8922537.522332065, 8925134.356568636, 8928445.618094468, 8928731.25, 8928796.745412225, 8929842.1875, 8932785.73905784, 8933121.875, 8934082.622510467, 8934903.125, 8934951.814251965, 8934955.698085694, 8935112.357893966, 8935790.298216581, 8935928.864951236, 8936191.3047607, 8936275.0, 8938331.055784503, 8938354.467507957, 8938851.917834055, 8938892.838151734, 8938930.855069902, 8939135.9375, 8940252.805630596, 8940328.031010829, 8941531.25, 8943076.681781683, 8947721.900451092, 8948415.39917042, 8948685.54652385, 8948718.75, 8949365.2633556, 8952178.339805417, 8955057.920537703, 8955093.75, 8956070.3125, 8964892.1875, 8965239.690017669, 8968214.39846797, 8968361.949001564, 8971035.365698347, 8972106.048546035, 8972685.769841801, 8991387.232181974, 8991391.659484982, 8991830.227542602, 8996809.375, 8998469.446736734, 9001510.9375, 9002400.0, 9004106.168411072, 9004428.92558742, 9005668.874349928, 9006332.8125, 9006607.347739581, 9006701.5625, 9007587.620089859, 9007887.692215178, 9007985.9375, 9025402.818153726, 9027195.3125, 9027202.633802025, 9030431.25, 9035621.714632533, 9036983.90542916, 9037581.654639516, 9038587.323080268, 9039798.721502576, 9039803.447855046, 9040542.1875, 9041369.051236715, 9041437.148593144, 9041697.288728882, 9044637.496576305, 9044923.4375, 9045461.890093157, 9045917.493147671, 9047994.11385785, 9049153.416260155, 9049802.321442243, 9050020.93422042, 9050767.566120813, 9051711.127732482, 9052133.336220842, 9052352.874679122, 9052441.966516213, 9053249.358960068, 9053428.423338046, 9054791.265026262, 9055629.657427223, 9056921.875, 9067004.6875, 9068800.587119227, 9070546.831962472, 9070657.8125, 9076412.044816433, 9079136.555835593, 9079947.224827537, 9101665.551333956, 9101695.3125, 9104416.415577693, 9104713.927519526, 9104818.561799347, 9105228.221133215, 9105490.625, 9106650.0, 9106821.063434504, 9108381.926128775, 9108629.6875, 9109364.570156042, 9109818.23938567, 9112943.051014964, 9112950.0, 9113463.930907214, 9114220.569000263, 9114359.375, 9114470.3125, 9114818.75, 9117078.973669095, 9117781.25, 9117899.603883322, 9118206.79927525, 9118345.3125, 9118434.375, 9119105.98243199, 9119280.590079661, 9119488.49026217, 9119540.162240343, 9119985.9375, 9120669.84667457, 9120735.820997553, 9121063.821535643, 9121210.796557795, 9121308.632397898, 9122069.650422333, 9122202.980416063, 9123666.568026429, 9129425.815574868, 9131687.5, 9132281.635193743, 9132425.387632703, 9132987.572031619, 9133096.875, 9133740.625, 9133975.44286224, 9134089.847903665, 9134129.520274274, 9134275.0, 9136115.300620627, 9136446.970881665, 9136502.166360775, 9136867.328505974, 9136917.1875, 9136954.060859438, 9137229.273360696, 9137239.821304929, 9137285.155712534, 9137296.875, 9137410.351661613, 9137411.186397322, 9137708.515112989, 9138350.803011268, 9138783.35647073, 9139030.127095085, 9139465.834311325, 9142686.442212073, 9142943.113490494, 9143973.4375, 9144002.300582124, 9144339.605246268, 9145340.625, 9146384.375, 9148760.9375, 9149345.3125, 9150250.424740719, 9150374.153815389, 9150548.03620856, 9150718.716807922, 9150854.279153967, 9151380.971489817, 9151423.443230785, 9151436.907204555, 9151600.0, 9151689.0625, 9152273.4375, 9152490.565056019, 9153001.5625, 9153356.83110905, 9153378.2555191, 9153510.908635693, 9153566.293336809, 9153592.03993875, 9153682.41322952, 9153846.125218468, 9153920.1673226, 9153938.950406643, 9154012.5, 9154075.0, 9154083.592707029, 9154100.0, 9154238.56074656, 9154320.3125, 9154398.298399478, 9154548.4375, 9154597.328695117, 9154630.317061562, 9154710.027955422, 9154926.901773063, 9154953.91175157, 9154965.625, 9155034.78967019, 9155151.5625, 9155185.9375, 9155257.672656007, 9155330.013646638, 9155359.375, 9155377.45561897, 9155412.110197315, 9155432.8125, 9155500.807524573, 9155509.027512152, 9155510.864175148, 9155558.40079316, 9155590.625, 9155607.330355447, 9155646.638724172, 9155733.91884904, 9155849.643906543, 9155914.262763645, 9156022.708776597, 9156023.805151869, 9156209.233220233, 9156221.057925142, 9156350.984071108, 9156408.414631361, 9156783.636685107, 9156849.78910921, 9156929.57619005, 9157142.1875, 9157221.875, 9157573.17824272, 9157590.625, 9157739.0625, 9157740.625, 9157823.850370808, 9161607.062879326, 9164595.3125, 9166790.625, 9167279.768254748, 9172037.816574857, 9172541.205550175, 9181832.369647818, 9183745.415895924, 9183800.0, 9186263.223062273, 9186264.0625, 9186594.72408073, 9188104.908569252, 9190804.6875, 9192016.142056076, 9192124.597160956, 9197276.89042935, 9199302.343124809, 9200212.43881814, 9200315.541945174, 9200828.421057662, 9212433.066573057, 9221164.04803738, 9221337.5, 9233520.3125, 9256082.203719592, 9262238.598374624, 9267395.3125, 9267820.540657258, 9268470.180862935, 9269056.655227011, 9269561.698015613, 9270982.807318829, 9271150.0, 9273096.12858194, 9273495.3125, 9276992.1875, 9290192.1629126, 9292060.46100673, 9292934.375, 9296442.827809365, 9297156.378423456, 9297194.034811081, 9298098.120088845, 9300195.3125, 9300244.529840726, 9300736.923010852, 9301718.75, 9301804.850035874, 9309272.192536788, 9315290.13151987, 9315520.314331006, 9318045.3125, 9318057.721150255, 9318424.943851888, 9319358.597174577, 9320042.1875, 9322139.58024936, 9322795.209920764, 9323365.49349903, 9323695.3125, 9324486.684806218, 9324540.625, 9325310.271540442, 9325332.8125, 9325589.85640254, 9325921.067736564, 9326643.75, 9327112.44255195, 9327142.2612148, 9328038.37027541, 9328068.124331772, 9328083.727204725, 9328826.223368602, 9329415.991171254, 9329862.5, 9330535.661458667, 9330797.58932525, 9331493.75, 9331631.462062001, 9331910.63790585, 9332073.419664584, 9332087.120657805, 9332719.736689761, 9333545.3125, 9333759.225243736, 9334293.14525465, 9335016.60441503, 9335307.09676003, 9335880.498748947, 9335895.249199664, 9335930.646675318, 9335979.682532903, 9336093.75, 9336426.407076925, 9336440.641392626, 9336776.275367621, 9337391.308197124, 9338506.854290497, 9339427.143812094, 9342176.846502576, 9348372.527536105, 9348625.0, 9348823.4375, 9349604.6875, ...], [133.2324447113037, 39.3938016044069, 8.746318523012112, 20.48821782342676, 15.288408115694823, 9.371148923909422, 24.754225660752425, 12.521593712457705, 20.148961906910415, 18.426352666029373, 34.198509063703014, 72.08982479477467, 6.00050186537543, 98.30197258722524, 57.19504874560369, 101.59621423775172, 12.383678641581835, 37.377216575194865, 86.02208672150752, 49.15976432685054, 106.24252379744553, 80.61964139713155, 21.25110734039602, 74.299139343381, 27.391639013255748, 18.812613449945367, 11.491551136186107, 9.476615200169052, 20.54168219231375, 17.91845152623229, 119.23941280146319, 41.9925897545548, 25.619365576529468, 75.05032717710698, 27.28103563060854, 98.26449615679793, 43.385067820137415, 53.13243320937006, 126.36045985500118, 19.274875071788234, 29.12812729088952, 63.69588748250206, 20.4997353451604, 5.6673402263394825, 7.98587146787638, 10.913089651872301, 30.594398666682082, 12.828003029363328, 24.063931003947175, 11.970508861418674, 5.326649334022621, 34.798151031699234, 35.2056825756527, 83.02698750028526, 48.023482715653984, 6.150361359893805, 30.995191528394134, 121.49832648092082, 67.00783844539531, 19.433626481078832, 23.11415264909752, 14.606685872025324, 53.76604058541613, 35.82584159799856, 105.48037794698568, 23.659069994026726, 6.364877154107, 6.712796135262394, 5.048154607853649, 35.66867179660986, 9.667784178445856, 34.696194624967085, 60.08601270610206, 58.05014575661905, 30.006252941823607, 23.597583414739276, 18.845185712254573, 84.7973880708578, 16.765151238088077, 22.78009856929854, 46.739360556234026, 37.597758641032115, 83.43876328484512, 62.50721336481343, 17.20709284529831, 25.912507580954465, 7.794153398009659, 27.48311967874209, 19.36297770012939, 71.2010402383112, 58.10298093453155, 43.35003666274207, 64.67537221374938, 58.84662454833358, 48.854309396590835, 11.751568818649174, 69.27699918569789, 24.458818329386155, 21.299345850324638, 30.442410078391084, 85.02352003408298, 54.31970027747903, 25.115370106953392, 56.79805983493806, 121.95778064009218, 8.799731542113648, 54.981731027456554, 120.44199191849926, 6.638471123477062, 60.06527569892153, 14.272109335135717, 14.30491162055175, 5.838998678616279, 13.556123391708967, 201.77728866698763, 10.266333387843186, 7.4618350987383755, 12.882734405089726, 30.16806519676258, 10.315525921788097, 119.06556463986192, 190.00339040577572, 45.81967819872737, 48.77288835654464, 46.969961849362804, 5.556827323522098, 17.247461413117538, 12.953449329118941, 43.51611419213789, 7.26233277042143, 21.320472427122237, 105.22890070384022, 108.56448613068585, 129.38978208515218, 100.33390431769246, 26.725979054261295, 47.22586558276698, 38.45542643603082, 25.95115819967669, 10.409788083204164, 25.201552551532707, 55.65623797597215, 103.75059339431456, 39.95087720257672, 49.19133964391543, 12.161842462328678, 9.711911447020347, 17.52288984505497, 15.140917639129942, 8.534625954453327, 57.933251569523904, 6.054029074671704, 26.104247572931712, 6.249053993577171, 19.347847169816966, 37.47560610196571, 66.69656160313933, 20.501826006466477, 28.71737499139058, 39.648056223704, 11.855706750099348, 32.168037405209894, 21.971948719038785, 133.09055677056426, 94.2836596380851, 37.5555432661467, 85.32998813571639, 52.247937362416295, 31.991300391896736, 69.69853581435213, 124.47849334351628, 93.57445657844882, 29.320925238210926, 61.076210290308744, 17.649157513993156, 76.71336616816869, 6.0949073931739965, 35.35101480216123, 12.98399912330525, 90.29437194018087, 66.5869958037106, 110.09242708538974, 142.19269756304723, 15.83074286674403, 94.12840992801719, 163.8382895008808, 10.863652383638234, 74.83710093481308, 46.35526520310387, 12.355163291386917, 37.5053333253816, 30.732780864587713, 67.1620854291772, 57.091908105730504, 78.50062260173974, 8.58034188105015, 18.63921665566364, 26.984259681300845, 27.01048532704377, 50.67981803247828, 12.735892600000916, 62.20435080598813, 43.250379444424745, 23.770266906636277, 193.19957531512654, 53.89001265687084, 26.69567445239726, 42.29898743407605, 88.75725213046235, 5.679079536648788, 18.270122313787397, 28.679232275905598, 55.57821685855919, 115.37065802342492, 22.14683957891635, 30.37953027171276, 10.947495105889297, 62.48437649377591, 10.073474417950223, 12.461624529792237, 14.746337549474474, 31.447286143046867, 60.63903954862417, 8.72279200477059, 11.06694766952341, 60.1110209373881, 34.404637338802246, 24.344175023343432, 18.33902818138205, 43.481057371204145, 9.465187273496987, 11.393847825492019, 59.09973709548324, 32.64410883414625, 29.825876608467, 5.9484782652688235, 26.00568955280163, 30.569137535835758, 72.24974369281135, 69.33175530484773, 67.93881197177558, 11.929912511902334, 149.64014388535506, 31.09899633633518, 39.550496390906964, 6.5419494127483615, 14.624527279072028, 60.6774927209717, 66.96390555200712, 48.988313724044694, 16.325843444138485, 43.430100244730546, 30.839595465373137, 51.3841707480951, 9.134799732284126, 32.25467658139233, 23.69354780489452, 20.452928854757765, 19.661320085627803, 40.52096506070008, 49.28779388587427, 80.81501453742139, 26.06467289986797, 84.21645135815467, 58.056549840957786, 40.65514572358222, 130.58963478989062, 45.50155682232304, 10.928187574399532, 21.33314690638863, 22.136287635236886, 72.37885362952214, 5.145487419639427, 34.332786103070475, 10.103333976275554, 55.00024142231416, 62.422449329297635, 41.23792828051702, 5.954518303626908, 5.033100054309679, 12.817114290400585, 206.9928248242271, 38.45885885768217, 83.39510093719551, 19.082326066287663, 10.533603438226246, 17.54340177243105, 41.466986463328176, 156.1883716046634, 56.63246285048854, 11.477663809645335, 16.832632227522968, 16.288364887089053, 66.47177308632621, 79.28010981157816, 20.877148117426877, 30.906810898344837, 12.489286804727294, 22.213291096401335, 28.863357383820382, 70.60078131457165, 13.60816267684746, 10.525973131249767, 10.208076555629143, 15.571608569103393, 84.19385199053144, 7.133550363988723, 47.19949382906302, 51.71509271152653, 43.01032931134258, 15.325215799316798, 20.199035305532224, 7.392681130964772, 98.0485156429462, 81.30680465552547, 11.191650030343625, 46.2634051072456, 18.082576668657243, 19.476856031388362, 29.54273656919259, 80.73140189335552, 66.03590600570043, 108.81221636423516, 29.628082638355778, 94.52210230542401, 23.559882529057738, 39.63491949929778, 9.439358281414524, 20.53101266931927, 90.48945342770762, 8.035162086115541, 95.58250129099194, 26.246377322794768, 73.738785657592, 5.072534736908425, 54.47437607611337, 10.058875558859079, 45.425785335537554, 23.320082967377708, 31.36459026028945, 73.52566980494673, 9.577697801266385, 24.66868419396947, 34.23826423443317, 38.06344566062471, 130.39920402141846, 14.739530597530546, 6.177042603171343, 17.6293391801152, 27.573806414484604, 16.06850382279349, 14.76923150669535, 58.81196530469451, 17.843978678181177, 79.9423036019621, 24.378636816697608, 11.516330834738259, 6.626535377761465, 36.22426256463855, 9.947092173512965, 80.55810074537258, 5.529127970473366, 128.24400499317576, 30.298131789558266, 10.31302911791838, 25.782145064559572, 39.808382923673044, 13.671892929790959, 56.41764260228812, 70.48789801591529, 47.89891328880233, 18.606375029188005, 14.748214324526398, 32.269453641811914, 28.807717839661073, 28.648374542977812, 27.213689693611315, 32.33713524170785, 28.914910990472656, 33.636530135057626, 17.94735546917056, 6.042190271141575, 34.47399157220627, 25.08704752184841, 142.0142991721828, 7.810886455867612, 34.015759979608134, 18.48855167940564, 21.035432074276155, 66.72984772024647, 107.93474201574234, 108.20662791408249, 53.642471725775614, 9.430281370356978, 34.185642425629226, 25.445786219263145, 77.85067848881444, 19.826195943734092, 42.061710085529725, 123.73253445343335, 8.334995233483124, 5.88364463249031, 22.36821946959369, 44.04590013749857, 101.02985704593515, 44.08103293145403, 246.34324902557782, 10.600812270758064, 15.061522753498663, 5.920303942509038, 17.628615673383713, 104.53155215775018, 45.633244757926015, 59.51464323475299, 56.92654977244507, 49.18462663066001, 23.640231095493498, 21.20487630951309, 126.47152102922766, 76.54472129668979, 101.43973335229128, 17.754465615570517, 81.89644224825119, 12.513535763955497, 20.151670049457433, 65.78719568400686, 50.46271821525939, 47.902262819156796, 47.310896046666116, 5.527682147373671, 92.8390006992367, 6.201209929185881, 12.425414398930066, 61.988887471443064, 26.70555739995828, 7.474879945521237, 110.30544073788386, 11.525636883496622, 62.54262917863736, 12.67960646820912, 20.595705216640294, 16.066140347800385, 60.139842750524814, 16.812519054139834, 34.569499407920176, 6.9037043769632405, 49.74438195130475, 15.491033952567436, 24.44725025269626, 51.18347826888919, 8.507241360893174, 39.06077312328763, 9.195506080378426, 49.81206645090521, 12.384018433137127, 36.47361741613462, 9.918498756565135, 11.226665182287446, 124.18458543991773, 76.2324448729952, 17.00198586978203, 54.396630434939404, 22.21861935143412, 17.33298313158911, 138.16916047831504, 34.75504068890834, 24.1066850573716, 27.841534154963185, 40.26714724811897, 7.751762222804882, 32.729999329206585, 77.16986028123122, 24.084938040822678, 95.30672619618583, 85.1278120153668, 31.44782247119815, 43.81289154404141, 20.016075045514864, 60.66799555653363, 5.36116764380583, 6.358755406015505, 25.326060204264724, 16.6377273330358, 6.431182236867341, 14.361048256136849, 94.76513822176348, 15.660068784647747, 18.43488382766123, 48.146740079555755, 60.216842426203236, 15.968506821757765, 74.95405691952888, 10.536262799582085, 99.04328352777364, 7.718358117228905, 76.92934696947049, 21.41645062018201, 75.18589444875336, 11.856473083021802, 13.668752748136109, 67.18365996911321, 6.2077690015798295, 43.31744584475132, 79.73166127070662, 47.66604845205415, 18.00404167419396, 27.65210398004041, 120.03493687093325, 47.25175752477714, 8.757437699401668, 81.10167256206005, 81.32173990656827, 69.03790523822329, 45.0008079711588, 8.30382363623033, 54.1133936235706, 32.19529826480439, 93.987593465324, 5.4461341503589615, 25.262944975415866, 16.37676510044862, 157.73363507822316, 150.42841764018033, 66.08947745711748, 24.51527725786518, 87.67216264850289, 109.71262291800826, 115.75056051322338, 73.01637340865778, 46.25952398320827, 74.27020496308799, 42.54942244144978, 15.912213917987449, 49.89759893010229, 62.43780867198579, 28.524717898725342, 168.33230118616837, 5.1650134527252005, 23.94158117445849, 122.70525852337913, 23.929380639636292, 30.016378402471755, 90.52746806747132, 46.36979819484698, 17.910148574547414, 25.2635617474509, 5.935179335658607, 18.922510684456128, 46.38819198132626, 79.59298715495872, 67.56393385550368, 55.516690621348516, 86.3444104764319, 15.231445337593806, 38.914252283153836, 21.925345398958157, 5.241194514652263, 25.95233006560335, 55.10745527828401, 8.552223727659873, 5.970859902189506, 19.9543020935644, 112.87776809276033, 16.984082944025957, 53.019356016951434, 65.92964830012559, 23.666899685951318, 7.016050784441986, 27.314695875160282, 6.466941470860699, 5.563342511777783, 46.71426039789828, 9.643219712571353, 26.241256636615333, 110.98433044106363, 15.268162572568166, 15.030368096822539, 145.19361038606135, 39.84681630616256, 30.662819626793297, 140.3572543282957, 65.06129097141718, 42.718674564340134, 21.170936625179447, 32.99237246166901, 18.569018504139052, 20.210847646978763, 9.198047689315787, 62.67841381303248, 24.669815542535183, 57.2318425853415, 63.096684078275665, 13.942567402437758, 14.260178840777412, 138.18673044693043, 54.41563966512953, 60.74842325072255, 6.11509510199338, 20.762789062128036, 9.47597646734183, 15.859894450657617, 23.57634614817878, 63.75452566420999, 28.3960436616349, 27.76742052685999, 36.01884558127251, 22.646519492449578, 26.386279246460553, 6.444929703480461, 22.079536340606126, 37.206647691056276, 74.09423160334475, 82.7014090980882, 19.343168957627054, 8.086721161268137, 75.07717121844077, 12.947028575069822, 12.384873677094484, 27.740759101007082, 10.463152432219074, 88.74276268923472, 14.772610225149528, 19.527269406824534, 16.082063696734558, 12.977986230022488, 10.628368744081671, 17.284612939098686, 7.583018706380633, 18.45094965698568, 5.034458036906042, 62.49453919261363, 20.096250790682575, 30.85231309286161, 14.615118781625593, 18.594337413526887, 49.38719169808137, 67.52518985221056, 8.476477500874593, 97.71438727633544, 24.07617131073333, 10.674639613328326, 51.73118692254012, 16.210563685578066, 71.1876283681915, 83.11292948667912, 23.077001797236683, 13.164273279258353, 90.18875222286876, 28.52972257524778, 29.144182849523137, 11.16279359702931, 60.72018193284602, 6.536087165320449, 29.773564036206963, 70.79873831714764, 42.927814202465456, 33.72360397649335, 36.7921415131946, 25.26562154945423, 60.780461324989616, 7.696902719163875, 28.17968697926134, 21.832519650071625, 52.187335393295655, 47.57372177205784, 41.767060725606335, 46.80263965780904, 26.046312706116126, 25.03221612458295, 20.04437133144244, 79.47648299208231, 6.426914679036742, 188.2043848973919, 6.05550556776964, 26.794856582475944, 80.55822546878649, 21.164406360166225, 35.83707075167557, 24.74677251314236, 13.634895075711073, 48.93216173542019, 50.10789018483518, 13.273093236912537, 92.89092402715094, 49.276285187114766, 34.90337028439814, 116.46482225301314, 39.055014150301254, 16.39792140412567, 47.85128637358555, 13.133607774678662, 41.94465909203011, 51.43753527659565, 49.00189422039567, 43.03900885505954, 147.58301719523695, 59.14924927760454, 115.25550364107932, 100.8590869476705, 46.87827127347342, 27.008838290863395, 10.114468601376661, 16.75195901946467, 94.55849941389502, 28.038500097605194, 46.42186897804196, 13.291777695170175, 20.558241035444258, 52.870444622075354, 132.03072428716214, 75.69860605188396, 13.350217524997944, 32.099418809342886, 25.714792735556923, 46.47499290096758, 24.69620561246653, 10.861989657064003, 47.69930563910881, 46.89435461891376, 36.79209006394879, 11.633635945650893, 5.385207879137663, 27.255685336986573, 14.928475942422558, 74.869230642042, 52.405338425029285, 108.24003258179239, 76.21389938728895, 16.181454441858353, 18.91923528929009, 29.077606052694023, 8.497488657477179, 15.7197984915974, 6.87277027923698, 51.30818726279705, 32.45326353437609, 22.505376925787985, 11.628408682978343, 12.30093193430462, 11.081024229954968, 32.45733485602378, 74.49198833791604, 165.8613528406999, 27.70093020107803, 58.58875117673619, 21.952129372748164, 9.915365112842021, 38.959567342882046, 120.18347724022355, 74.24254327941712, 142.00137462127023, 56.476454411850426, 5.12650026280613, 77.78106312942131, 56.51770312418142, 42.11965499787239, 18.861751248703396, 6.000532158575422, 51.553874466604505, 17.308283640390066, 106.6033307412443, 58.96103635962454, 36.61892000505858, 10.928065331906891, 16.018448455714275, 43.147780968317704, 29.902001381160794, 30.44159510765356, 10.169387767074072, 71.96466556420317, 10.560282273120313, 35.30007555832721, 81.73189853555789, 37.34440577408359, 95.46150722700553, 66.16200695791187, 13.132463931441388, 61.04726175233065, 57.21078025279114, 27.535198847800544, 54.00966814973313, 24.535314869501587, 20.868614827664523, 5.430771083410843, 12.903040662459, 174.84317813239974, 20.378700775900807, 33.98008624512284, 37.106877598103836, 25.54272790181687, 11.792952154403649, 73.01287080397546, 99.89778144130696, 64.59957847883902, 36.94878290653527, 12.62622300598083, 5.525019220516454, 58.57406544790918, 8.12217908434469, 15.320008620267352, 9.900138468093816, 7.655045924457558, 69.31661738970416, 12.992091944739235, 13.567514614415888, 174.8389105751965, 19.077839559804186, 75.60354398070758, 54.785590576489255, 15.983390756954451, 23.824428938182425, 7.349849727506726, 118.40300204465976, 26.838454988169346, 11.471432592442731, 115.31360578886918, 44.086609130775884, 76.58703727432297, 18.770431102644043, 17.511525373465403, 34.78264976859593, 68.90399560330985, 59.73542364427655, 30.269523615909762, 5.214379783103717, 35.26751571865535, 33.99040570548196, 82.61452897787106, 5.2338584701238675, 13.976549438081616, 28.155898698203394, 53.042971162925596, 102.21250822568811, 39.51378609345985, 46.32730085269618, 12.471963268154205, 73.34916138549711, 21.267128707950814, 107.38092671489473, 27.966117350180138, 32.5016823535692, 25.915003567521147, 155.95471164074502, 25.604523282304335, 14.415601676878314, 130.29536625436313, 56.53621934463926, 82.07296862055486, 19.07411766215882, 53.99601040659101, 106.37451370482597, 51.75050155841289, 18.80958827337262, 66.83700789778638, 17.00769513138736, 8.650141160399858, 35.376065640096684, 70.62778408030823, 12.629363397446902, 87.11805164306385, 90.32613891521433, 118.8260617882075, 55.887048089361855, 107.39217497968356, 16.349692926459603, 59.52880377532637, 142.7692262587721, 28.191255252511077, 118.43040111847509, 61.746074248065376, 13.764094344017915, 63.21439411900734, 17.785027266123013, 38.185795375444826, 147.68906529110936, 14.11142614404905, 14.130985360381526, 7.4793297178756255, 15.76402149378643, 7.935468594879067, 44.65298874882924, 97.8042174803427, 19.02882507446723, 62.16221910931892, 137.4262877030572, 12.717537951724776, 36.79751996587899, 79.25614061236527, 77.55550428071228, 90.5203454339181, 59.70275930919311, 29.41197072441908, 113.67015548553391, 144.40939910926608, 11.840813117200355, 19.318603867270074, 38.63137557690079, 37.117326585074416, 6.277455346206951, 109.36347615728994, 52.558278798681734, 8.065496482116009, 11.29326100497491, 71.42824451497377, 12.483532128192607, 55.303705805999336, 5.8897497518961615, 21.367464393020605, 77.53856537798222, 132.54063789452772, 19.103909791203602, 35.69614107579563, 81.97807888065795, 38.94314486265965, 13.477140671696521, 6.8240874545556025, 5.408276650298846, 26.94991857671804, 47.04884371175118, 31.476077115470815, 10.293086267153061, 25.26110235545834, 53.811084237118735, 15.88881805331681, 14.462436006970657, 7.232209723857999, 40.84479591877409, 8.283839334900955, 52.9281436732352, 19.343006205738416, 39.24687191272142, 85.03557744546266, 5.81216324585838, 180.65900401249823, 85.7960654918912, 7.852496734801924, 68.03915054653774, 16.150868795854446, 44.73882966876308, 132.6277944514151, 74.43915875424469, 6.977612152940176, 50.98602421978688, 13.408666713627836, 16.85243716820988, 8.94630732268189, 11.130569989109619, 39.92351468253521, 26.840064113554345, 14.731732396093777, 19.1070762538884, 77.14248853412293, 13.399432214974915, 59.57013071267281, 27.230733770857736, 29.853072663934306, 6.366469454139647, 32.23834566159309, 12.893396936317446, 42.37336993956833, 39.04939984081926, 67.95130190771158, 56.32685596545662, 42.33562107781461, 12.181996684450954, 99.59944609014923, 39.53695268487385, 5.579184345232237, 23.263438550550692, 114.49753559568951, 31.774548184151797, 116.68313647912535, 32.768675544489845, 32.10705044289993, 11.476181465056932, 66.69270851728676, 28.17667447356252, 22.787537126864546, 13.123106748534001, 80.38587829256942, 60.320988328915234, 88.88275498286784, 85.93413437422336, 27.84268229501394, 22.563188278588125, 27.33197866249815, 56.34906962587522, 148.03813112142268, 52.07774304147912, 14.38045009228701, 15.106122726313377, 7.502586428054741, 32.04517277877765, 17.8838030714026, 5.991680549395131, 105.72476083274002, 9.951675257218454, 52.94058415998239, 45.1445470306431, 54.07878948028914, ...])
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);
([5395929.7832074575, 5997745.220649929, 5997764.84124364, 6189663.4554981105, 6238475.08813016, 6500660.984134364, 6564711.609824413, 6597885.114903877, 6622054.214052047, 6622066.313160181, 6625798.4375, 6628257.8125, 6630660.050806001, 6650573.163450625, 6696534.419127869, 6748734.375, 6761756.928121586, 6784818.75, 6808590.101951509, 6814570.3125, 6826253.741331848, 6852715.625, 6854236.202165887, 6855864.0625, 6865779.6275201645, 6872996.364218933, 6873390.845939505, 6941798.604383923, 6959943.149025341, 6976119.983706742, 6977510.4082994815, 6983125.0, 7006939.993954055, 7008235.9375, 7033824.933850675, 7037620.3125, 7038546.875, 7045381.25, 7052880.994918887, 7074758.6196140945, 7101762.5, 7106284.375, 7106691.581799892, 7110589.987296014, 7148822.822006939, 7157307.670713937, 7158168.352978353, 7158699.307484812, 7159704.41162921, 7159722.354671469, 7161619.859930976, 7162106.25, 7162572.463587964, 7162578.125, 7163974.432747058, 7165300.578174811, 7165818.75, 7166085.9375, 7199757.631874148, 7215266.45288452, 7224127.773474245, 7225482.721791276, 7253088.891780237, 7268103.128985129, 7268790.038831848, 7269262.19278931, 7277881.985896688, 7288734.115573212, 7311726.951138551, 7312259.43395533, 7312280.060221773, 7316090.625, 7316809.375, 7317350.568762636, 7325100.0, 7327071.072509964, 7329814.811115086, 7336770.3125, 7343787.908251502, 7345478.741337594, 7345950.734782533, 7348577.265183338, 7348755.319865841, 7356417.037795222, 7356892.677271941, 7360170.647600695, 7360819.2487091655, 7361459.3200784335, 7366194.568695299, 7366260.6448505, 7386306.25, 7388282.8125, 7389284.3316078745, 7405671.090358019, 7407067.1875, 7407115.990547751, 7408166.307864717, 7408235.433106312, 7408578.100252005, 7408729.6875, 7412165.625, 7412175.0, 7412177.924815798, 7412814.0625, 7413034.923361467, 7414549.296316605, 7415607.458359741, 7420217.1875, 7420408.714685818, 7421204.6875, 7421487.312542658, 7436331.0723151555, 7436458.144995999, 7437308.956911316, 7439119.778064005, 7439280.618871241, 7441355.841354911, 7445779.017238254, 7457187.5, 7459993.159810613, 7475494.87274447, 7480265.625, 7481110.9375, 7482505.509778777, 7482684.377080019, 7482847.3547695195, 7489451.512211586, 7489454.045571935, 7490642.256391695, 7492908.322630753, 7499101.045018989, 7501378.125, 7509041.598503987, 7510309.296928805, 7510677.147894628, 7511528.02696895, 7512125.0, 7512729.3248725105, 7512912.354726043, 7517188.54890522, 7517195.118181295, 7517287.5, 7518434.494487253, 7518457.541897177, 7522823.4375, 7523292.761676333, 7524225.418155299, 7524244.366510846, 7527505.760980944, 7527672.316349437, 7531742.1875, 7532629.353376189, 7544042.051826917, 7544060.792525365, 7544555.5042160405, 7545229.6875, 7545793.75, 7546146.5838822005, 7546355.778821349, 7547660.753792032, 7562612.920658992, 7565086.285239529, 7565855.796698915, 7568546.875, 7568586.334167453, 7568610.9375, 7575343.75, 7583662.5, 7588615.625, 7590623.4375, 7592476.477970297, 7592817.060276177, 7592868.75, 7593162.5, 7594593.244092204, 7594934.375, 7595865.690215313, 7595901.5625, 7595954.057669126, 7596608.269315618, 7596934.375, 7597440.625, 7599170.3125, 7599903.340252066, 7600554.191069651, 7606262.5, 7606412.324232129, 7606853.125, 7609935.25957426, 7616031.915082339, 7616034.375, 7616755.6556884665, 7619164.0625, 7619255.241287101, 7619340.625, 7619553.642060718, 7620107.196901857, 7621272.58015641, 7621667.640664952, 7621735.9375, 7622280.519378543, 7623551.065512205, 7626859.375, 7626927.826527025, 7635204.961761811, 7635439.0625, 7635717.087682723, 7639571.021558205, 7641166.790943082, 7641629.243630515, 7643172.996833688, 7646317.690247034, 7653468.75, 7656821.875, 7661589.461435163, 7674298.4375, 7676663.944063369, 7677142.405814845, 7689707.014097033, 7690394.463296988, 7690418.697834339, 7697621.875, 7697957.383180139, 7699600.742855733, 7701409.335777284, 7702015.625, 7703189.968045541, 7704365.757137599, 7705374.112600033, 7707457.8125, 7709707.966593041, 7718293.913847832, 7726385.9375, 7729239.0625, 7735401.416568418, 7735461.041095029, 7737270.821731431, 7745699.264347156, 7756515.089407106, 7757934.375, 7758685.9375, 7762597.00060354, 7762614.751768481, 7767048.4375, 7774664.0625, 7785387.841248691, 7787848.351773703, 7792168.437174681, 7806710.083101606, 7807070.3125, 7807612.938216479, 7809370.3125, 7810818.75, 7811064.0625, 7811995.07045964, 7812755.9312119605, 7812935.633009271, 7814165.013997951, 7814424.294423859, 7827769.552814349, 7830678.749889018, 7831129.871431474, 7854602.3499827655, 7856221.195956501, 7858403.29612519, 7861752.916958543, 7861819.133010992, 7863716.486182885, 7864026.430990228, 7864311.9838145375, 7866372.999646679, 7867312.5, 7871391.313180381, 7891210.9375, 7891455.4782274095, 7897625.0, 7897815.625, 7898623.792470253, 7900176.73441772, 7900247.930362403, 7935775.865523262, 7943004.66833256, 7943075.0, 7944204.6875, 7948619.753272369, 7955158.958473493, 7958542.735651837, 7961929.6875, 7987243.75, 7993012.5, 8006536.150419867, 8006577.40277877, 8007938.695331586, 8011945.3125, 8015010.9375, 8015154.008018192, 8024049.0747543685, 8031167.91311871, 8035044.857597795, 8046462.5, 8065684.375, 8067113.662374431, 8068913.640103804, 8070158.694501096, 8070168.906042688, 8074370.573942976, 8101459.420826435, 8116507.8125, 8118953.80740259, 8145132.8125, 8145604.784654692, 8148523.357241598, 8158822.815235795, 8209956.25, 8210264.0625, 8218464.103027309, 8223732.805037726, 8245135.010786239, 8245449.270965056, 8246158.386554268, 8275145.937487552, 8278369.404281301, 8289275.0, 8293299.133504825, 8293532.8125, 8295847.31408019, 8297416.228842064, 8297937.624972478, 8301476.686591472, 8303995.966028331, 8324585.429754037, 8328712.247767013, 8348787.373120365, 8359532.8092786195, 8359701.761595168, 8360942.164323227, 8362036.688475823, 8363285.109809034, 8389662.077693803, 8399418.302476227, 8399912.499070762, 8405173.715093538, 8416412.955855059, 8420068.75, 8420073.272809677, 8432051.449845131, 8443104.63347965, 8443428.938968116, 8443804.000487147, 8445171.825053494, 8445286.204776986, 8445748.391554495, 8446427.15548672, 8446756.847868845, 8446884.375, 8447040.37261566, 8448243.985172193, 8450921.14788304, 8453273.4375, 8457422.52324371, 8466006.025066547, 8469820.230789488, 8469971.875, 8470753.125, 8471022.84524894, 8471542.303777575, 8471701.5625, 8471758.996600274, 8472359.812113732, 8472515.625, 8472750.909054844, 8472755.4020797, 8474049.948345277, 8474797.96397704, 8475010.030562084, 8475331.25, 8475982.742564877, 8476607.8125, 8477904.6875, 8482768.420408748, 8484899.051960437, 8494338.609149067, 8496885.9375, 8510296.672877552, 8511051.006047098, 8513345.852306917, 8513521.790761232, 8513547.57236431, 8515308.827863533, 8515334.375, 8518320.3125, 8524813.218859037, 8526126.5625, 8526900.114668706, 8526925.761906724, 8526938.88454343, 8526942.1875, 8527071.921014396, 8527956.25, 8529123.4375, 8532778.215450304, 8534022.774128055, 8555216.770969026, 8556704.6875, 8557064.441988286, 8558228.520142004, 8561893.830575263, 8562601.197056904, 8564765.656134568, 8574810.715513268, 8582994.312475033, 8587746.129790507, 8588117.1875, 8588540.625, 8588554.6875, 8588938.55704557, 8589859.066299, 8590686.970613234, 8590701.927923732, 8592315.272661408, 8592701.240798088, 8592964.822154682, 8593773.4375, 8595977.298851455, 8596205.60412225, 8596672.680557048, 8601117.1875, 8605385.9375, 8613138.148063965, 8614070.200764906, 8623845.172225619, 8624101.021721257, 8626474.134540401, 8631322.940969443, 8634040.6348058, 8635421.505595544, 8636866.996916652, 8637317.427991956, 8637387.5, 8637592.995678687, 8637796.28007529, 8638198.704270206, 8638210.9375, 8638330.10476529, 8638514.0625, 8638803.788896643, 8640536.812820103, 8640650.137071582, 8646604.440138672, 8648184.375, 8653384.770202266, 8653829.163774341, 8655013.897285976, 8655760.9375, 8657336.615776407, 8657340.625, 8658459.996304715, 8666334.437401231, 8666911.538715798, 8667287.544062946, 8667708.265145417, 8668266.976122217, 8668702.694779057, 8669766.038727367, 8670051.5625, 8672006.14737194, 8672863.789863829, 8674171.995824914, 8675782.8125, 8675806.642790614, 8676684.164175926, 8676788.847845376, 8682890.819103602, 8707393.711672792, 8716954.107867584, 8719331.869909221, 8719357.261633236, 8720684.74424511, 8720756.25, 8721019.301109722, 8722610.066864356, 8723720.126570111, 8726559.758659014, 8726713.696324771, 8728865.463891074, 8735695.3125, 8736239.239059532, 8737658.501927417, 8741785.9375, 8752517.099481188, 8753747.120655594, 8753757.475156669, 8754623.023015838, 8754884.375, 8756684.682456603, 8756926.710946854, 8757101.054781757, 8758359.375, 8758764.483558888, 8758912.120536726, 8759270.3125, 8760002.639680192, 8760482.8125, 8761593.75, 8762550.0, 8762556.873451816, 8762674.594189813, 8763140.625, 8765618.23021028, 8766711.733072175, 8767584.375, 8770956.25, 8773571.875, 8774396.46220869, 8776142.219971254, 8776745.343013324, 8776803.125, 8777014.0625, 8777037.130657522, 8777089.64581455, 8777709.705712764, 8778108.810645549, 8780217.1875, 8780521.875, 8780662.321189135, 8780812.403136883, 8781173.4375, 8781320.3125, 8781558.599255923, 8782059.375, 8782665.410572112, 8782815.427775653, 8783470.545819586, 8784370.3125, 8784710.9375, 8784823.43747394, 8784954.86422491, 8785178.110045636, 8785190.367755687, 8785292.1875, 8785477.499788653, 8785706.25, 8786368.75, 8786421.875, 8786621.772636926, 8786771.684871698, 8787060.888842808, 8787393.146686224, 8787429.6875, 8787435.9375, 8787468.811168035, 8787571.875, 8787709.375, 8787929.761543786, 8787970.3125, 8788369.854765693, 8788437.358223664, 8789239.92082571, 8791115.625, 8791486.408187928, 8792644.104236636, 8793322.768044157, 8794346.558683692, 8794430.13684766, 8794760.9375, 8796217.1875, 8796495.005907847, 8796668.333266122, 8796899.93573454, 8797193.620244397, 8797317.795652973, 8797882.8125, 8799315.972102772, 8800217.060305534, 8801717.03769721, 8802973.520640438, 8802978.148119401, 8807420.3125, 8808700.416833218, 8809926.771222442, 8816915.247556284, 8816935.9375, 8817146.875, 8819208.842086585, 8819306.538374916, 8820202.453340575, 8820392.80800014, 8821274.83796064, 8821301.408787267, 8821302.89369877, 8821421.875, 8831925.0, 8835532.523161871, 8839153.611031163, 8848115.425132489, 8849275.0, 8860985.9375, 8870364.318157833, 8874124.423534865, 8875432.978670513, 8875892.409246251, 8876868.436223455, 8877046.407904694, 8878495.877412817, 8879133.868322195, 8879406.25, 8880715.723322477, 8882759.341616804, 8883507.538164, 8887204.266591344, 8891490.625, 8895239.0625, 8897537.5, 8900075.816103265, 8901013.66442913, 8901158.598282598, 8902377.48051851, 8903233.491166025, 8906082.425152995, 8906101.091222662, 8907293.59478097, 8907442.142470162, 8907716.464932838, 8907770.58268056, 8907836.867794886, 8907934.030186296, 8908468.525330028, 8908546.818749368, 8908549.129309708, 8908630.825250475, 8908816.319868973, 8908829.03506135, 8909492.1875, 8909531.161648422, 8910053.837833911, 8910091.40642305, 8910865.625, 8911437.842632394, 8912062.187741006, 8912602.992672203, 8912605.939422224, 8912657.8125, 8913284.67236707, 8913788.872915031, 8915576.5625, 8915827.770359138, 8917693.189849786, 8919403.125, 8919410.9375, 8922440.85837025, 8922537.522332065, 8925134.356568636, 8928445.618094468, 8928731.25, 8928796.745412225, 8929842.1875, 8932785.73905784, 8933121.875, 8934082.622510467, 8934903.125, 8934951.814251965, 8934955.698085694, 8935112.357893966, 8935790.298216581, 8935928.864951236, 8936191.3047607, 8936275.0, 8938331.055784503, 8938354.467507957, 8938851.917834055, 8938892.838151734, 8938930.855069902, 8939135.9375, 8940252.805630596, 8940328.031010829, 8941531.25, 8943076.681781683, 8947721.900451092, 8948415.39917042, 8948685.54652385, 8948718.75, 8949365.2633556, 8952178.339805417, 8955057.920537703, 8955093.75, 8956070.3125, 8964892.1875, 8965239.690017669, 8968214.39846797, 8968361.949001564, 8971035.365698347, 8972106.048546035, 8972685.769841801, 8991387.232181974, 8991391.659484982, 8991830.227542602, 8996809.375, 8998469.446736734, 9001510.9375, 9002400.0, 9004106.168411072, 9004428.92558742, 9005668.874349928, 9006332.8125, 9006607.347739581, 9006701.5625, 9007587.620089859, 9007887.692215178, 9007985.9375, 9025402.818153726, 9027195.3125, 9027202.633802025, 9030431.25, 9035621.714632533, 9036983.90542916, 9037581.654639516, 9038587.323080268, 9039798.721502576, 9039803.447855046, 9040542.1875, 9041369.051236715, 9041437.148593144, 9041697.288728882, 9044637.496576305, 9044923.4375, 9045461.890093157, 9045917.493147671, 9047994.11385785, 9049153.416260155, 9049802.321442243, 9050020.93422042, 9050767.566120813, 9051711.127732482, 9052133.336220842, 9052352.874679122, 9052441.966516213, 9053249.358960068, 9053428.423338046, 9054791.265026262, 9055629.657427223, 9056921.875, 9067004.6875, 9068800.587119227, 9070546.831962472, 9070657.8125, 9076412.044816433, 9079136.555835593, 9079947.224827537, 9101665.551333956, 9101695.3125, 9104416.415577693, 9104713.927519526, 9104818.561799347, 9105228.221133215, 9105490.625, 9106650.0, 9106821.063434504, 9108381.926128775, 9108629.6875, 9109364.570156042, 9109818.23938567, 9112943.051014964, 9112950.0, 9113463.930907214, 9114220.569000263, 9114359.375, 9114470.3125, 9114818.75, 9117078.973669095, 9117781.25, 9117899.603883322, 9118206.79927525, 9118345.3125, 9118434.375, 9119105.98243199, 9119280.590079661, 9119488.49026217, 9119540.162240343, 9119985.9375, 9120669.84667457, 9120735.820997553, 9121063.821535643, 9121210.796557795, 9121308.632397898, 9122069.650422333, 9122202.980416063, 9123666.568026429, 9129425.815574868, 9131687.5, 9132281.635193743, 9132425.387632703, 9132987.572031619, 9133096.875, 9133740.625, 9133975.44286224, 9134089.847903665, 9134129.520274274, 9134275.0, 9136115.300620627, 9136446.970881665, 9136502.166360775, 9136867.328505974, 9136917.1875, 9136954.060859438, 9137229.273360696, 9137239.821304929, 9137285.155712534, 9137296.875, 9137410.351661613, 9137411.186397322, 9137708.515112989, 9138350.803011268, 9138783.35647073, 9139030.127095085, 9139465.834311325, 9142686.442212073, 9142943.113490494, 9143973.4375, 9144002.300582124, 9144339.605246268, 9145340.625, 9146384.375, 9148760.9375, 9149345.3125, 9150250.424740719, 9150374.153815389, 9150548.03620856, 9150718.716807922, 9150854.279153967, 9151380.971489817, 9151423.443230785, 9151436.907204555, 9151600.0, 9151689.0625, 9152273.4375, 9152490.565056019, 9153001.5625, 9153356.83110905, 9153378.2555191, 9153510.908635693, 9153566.293336809, 9153592.03993875, 9153682.41322952, 9153846.125218468, 9153920.1673226, 9153938.950406643, 9154012.5, 9154075.0, 9154083.592707029, 9154100.0, 9154238.56074656, 9154320.3125, 9154398.298399478, 9154548.4375, 9154597.328695117, 9154630.317061562, 9154710.027955422, 9154926.901773063, 9154953.91175157, 9154965.625, 9155034.78967019, 9155151.5625, 9155185.9375, 9155257.672656007, 9155330.013646638, 9155359.375, 9155377.45561897, 9155412.110197315, 9155432.8125, 9155500.807524573, 9155509.027512152, 9155510.864175148, 9155558.40079316, 9155590.625, 9155607.330355447, 9155646.638724172, 9155733.91884904, 9155849.643906543, 9155914.262763645, 9156022.708776597, 9156023.805151869, 9156209.233220233, 9156221.057925142, 9156350.984071108, 9156408.414631361, 9156783.636685107, 9156849.78910921, 9156929.57619005, 9157142.1875, 9157221.875, 9157573.17824272, 9157590.625, 9157739.0625, 9157740.625, 9157823.850370808, 9161607.062879326, 9164595.3125, 9166790.625, 9167279.768254748, 9172037.816574857, 9172541.205550175, 9181832.369647818, 9183745.415895924, 9183800.0, 9186263.223062273, 9186264.0625, 9186594.72408073, 9188104.908569252, 9190804.6875, 9192016.142056076, 9192124.597160956, 9197276.89042935, 9199302.343124809, 9200212.43881814, 9200315.541945174, 9200828.421057662, 9212433.066573057, 9221164.04803738, 9221337.5, 9233520.3125, 9256082.203719592, 9262238.598374624, 9267395.3125, 9267820.540657258, 9268470.180862935, 9269056.655227011, 9269561.698015613, 9270982.807318829, 9271150.0, 9273096.12858194, 9273495.3125, 9276992.1875, 9290192.1629126, 9292060.46100673, 9292934.375, 9296442.827809365, 9297156.378423456, 9297194.034811081, 9298098.120088845, 9300195.3125, 9300244.529840726, 9300736.923010852, 9301718.75, 9301804.850035874, 9309272.192536788, 9315290.13151987, 9315520.314331006, 9318045.3125, 9318057.721150255, 9318424.943851888, 9319358.597174577, 9320042.1875, 9322139.58024936, 9322795.209920764, 9323365.49349903, 9323695.3125, 9324486.684806218, 9324540.625, 9325310.271540442, 9325332.8125, 9325589.85640254, 9325921.067736564, 9326643.75, 9327112.44255195, 9327142.2612148, 9328038.37027541, 9328068.124331772, 9328083.727204725, 9328826.223368602, 9329415.991171254, 9329862.5, 9330535.661458667, 9330797.58932525, 9331493.75, 9331631.462062001, 9331910.63790585, 9332073.419664584, 9332087.120657805, 9332719.736689761, 9333545.3125, 9333759.225243736, 9334293.14525465, 9335016.60441503, 9335307.09676003, 9335880.498748947, 9335895.249199664, 9335930.646675318, 9335979.682532903, 9336093.75, 9336426.407076925, 9336440.641392626, 9336776.275367621, 9337391.308197124, 9338506.854290497, 9339427.143812094, 9342176.846502576, 9348372.527536105, 9348625.0, 9348823.4375, 9349604.6875, ...], [133.2324447113037, 39.3938016044069, 8.746318523012112, 20.48821782342676, 15.288408115694823, 9.371148923909422, 24.754225660752425, 12.521593712457705, 20.148961906910415, 18.426352666029373, 34.198509063703014, 72.08982479477467, 6.00050186537543, 98.30197258722524, 57.19504874560369, 101.59621423775172, 12.383678641581835, 37.377216575194865, 86.02208672150752, 49.15976432685054, 106.24252379744553, 80.61964139713155, 21.25110734039602, 74.299139343381, 27.391639013255748, 18.812613449945367, 11.491551136186107, 9.476615200169052, 20.54168219231375, 17.91845152623229, 119.23941280146319, 41.9925897545548, 25.619365576529468, 75.05032717710698, 27.28103563060854, 98.26449615679793, 43.385067820137415, 53.13243320937006, 126.36045985500118, 19.274875071788234, 29.12812729088952, 63.69588748250206, 20.4997353451604, 5.6673402263394825, 7.98587146787638, 10.913089651872301, 30.594398666682082, 12.828003029363328, 24.063931003947175, 11.970508861418674, 5.326649334022621, 34.798151031699234, 35.2056825756527, 83.02698750028526, 48.023482715653984, 6.150361359893805, 30.995191528394134, 121.49832648092082, 67.00783844539531, 19.433626481078832, 23.11415264909752, 14.606685872025324, 53.76604058541613, 35.82584159799856, 105.48037794698568, 23.659069994026726, 6.364877154107, 6.712796135262394, 5.048154607853649, 35.66867179660986, 9.667784178445856, 34.696194624967085, 60.08601270610206, 58.05014575661905, 30.006252941823607, 23.597583414739276, 18.845185712254573, 84.7973880708578, 16.765151238088077, 22.78009856929854, 46.739360556234026, 37.597758641032115, 83.43876328484512, 62.50721336481343, 17.20709284529831, 25.912507580954465, 7.794153398009659, 27.48311967874209, 19.36297770012939, 71.2010402383112, 58.10298093453155, 43.35003666274207, 64.67537221374938, 58.84662454833358, 48.854309396590835, 11.751568818649174, 69.27699918569789, 24.458818329386155, 21.299345850324638, 30.442410078391084, 85.02352003408298, 54.31970027747903, 25.115370106953392, 56.79805983493806, 121.95778064009218, 8.799731542113648, 54.981731027456554, 120.44199191849926, 6.638471123477062, 60.06527569892153, 14.272109335135717, 14.30491162055175, 5.838998678616279, 13.556123391708967, 201.77728866698763, 10.266333387843186, 7.4618350987383755, 12.882734405089726, 30.16806519676258, 10.315525921788097, 119.06556463986192, 190.00339040577572, 45.81967819872737, 48.77288835654464, 46.969961849362804, 5.556827323522098, 17.247461413117538, 12.953449329118941, 43.51611419213789, 7.26233277042143, 21.320472427122237, 105.22890070384022, 108.56448613068585, 129.38978208515218, 100.33390431769246, 26.725979054261295, 47.22586558276698, 38.45542643603082, 25.95115819967669, 10.409788083204164, 25.201552551532707, 55.65623797597215, 103.75059339431456, 39.95087720257672, 49.19133964391543, 12.161842462328678, 9.711911447020347, 17.52288984505497, 15.140917639129942, 8.534625954453327, 57.933251569523904, 6.054029074671704, 26.104247572931712, 6.249053993577171, 19.347847169816966, 37.47560610196571, 66.69656160313933, 20.501826006466477, 28.71737499139058, 39.648056223704, 11.855706750099348, 32.168037405209894, 21.971948719038785, 133.09055677056426, 94.2836596380851, 37.5555432661467, 85.32998813571639, 52.247937362416295, 31.991300391896736, 69.69853581435213, 124.47849334351628, 93.57445657844882, 29.320925238210926, 61.076210290308744, 17.649157513993156, 76.71336616816869, 6.0949073931739965, 35.35101480216123, 12.98399912330525, 90.29437194018087, 66.5869958037106, 110.09242708538974, 142.19269756304723, 15.83074286674403, 94.12840992801719, 163.8382895008808, 10.863652383638234, 74.83710093481308, 46.35526520310387, 12.355163291386917, 37.5053333253816, 30.732780864587713, 67.1620854291772, 57.091908105730504, 78.50062260173974, 8.58034188105015, 18.63921665566364, 26.984259681300845, 27.01048532704377, 50.67981803247828, 12.735892600000916, 62.20435080598813, 43.250379444424745, 23.770266906636277, 193.19957531512654, 53.89001265687084, 26.69567445239726, 42.29898743407605, 88.75725213046235, 5.679079536648788, 18.270122313787397, 28.679232275905598, 55.57821685855919, 115.37065802342492, 22.14683957891635, 30.37953027171276, 10.947495105889297, 62.48437649377591, 10.073474417950223, 12.461624529792237, 14.746337549474474, 31.447286143046867, 60.63903954862417, 8.72279200477059, 11.06694766952341, 60.1110209373881, 34.404637338802246, 24.344175023343432, 18.33902818138205, 43.481057371204145, 9.465187273496987, 11.393847825492019, 59.09973709548324, 32.64410883414625, 29.825876608467, 5.9484782652688235, 26.00568955280163, 30.569137535835758, 72.24974369281135, 69.33175530484773, 67.93881197177558, 11.929912511902334, 149.64014388535506, 31.09899633633518, 39.550496390906964, 6.5419494127483615, 14.624527279072028, 60.6774927209717, 66.96390555200712, 48.988313724044694, 16.325843444138485, 43.430100244730546, 30.839595465373137, 51.3841707480951, 9.134799732284126, 32.25467658139233, 23.69354780489452, 20.452928854757765, 19.661320085627803, 40.52096506070008, 49.28779388587427, 80.81501453742139, 26.06467289986797, 84.21645135815467, 58.056549840957786, 40.65514572358222, 130.58963478989062, 45.50155682232304, 10.928187574399532, 21.33314690638863, 22.136287635236886, 72.37885362952214, 5.145487419639427, 34.332786103070475, 10.103333976275554, 55.00024142231416, 62.422449329297635, 41.23792828051702, 5.954518303626908, 5.033100054309679, 12.817114290400585, 206.9928248242271, 38.45885885768217, 83.39510093719551, 19.082326066287663, 10.533603438226246, 17.54340177243105, 41.466986463328176, 156.1883716046634, 56.63246285048854, 11.477663809645335, 16.832632227522968, 16.288364887089053, 66.47177308632621, 79.28010981157816, 20.877148117426877, 30.906810898344837, 12.489286804727294, 22.213291096401335, 28.863357383820382, 70.60078131457165, 13.60816267684746, 10.525973131249767, 10.208076555629143, 15.571608569103393, 84.19385199053144, 7.133550363988723, 47.19949382906302, 51.71509271152653, 43.01032931134258, 15.325215799316798, 20.199035305532224, 7.392681130964772, 98.0485156429462, 81.30680465552547, 11.191650030343625, 46.2634051072456, 18.082576668657243, 19.476856031388362, 29.54273656919259, 80.73140189335552, 66.03590600570043, 108.81221636423516, 29.628082638355778, 94.52210230542401, 23.559882529057738, 39.63491949929778, 9.439358281414524, 20.53101266931927, 90.48945342770762, 8.035162086115541, 95.58250129099194, 26.246377322794768, 73.738785657592, 5.072534736908425, 54.47437607611337, 10.058875558859079, 45.425785335537554, 23.320082967377708, 31.36459026028945, 73.52566980494673, 9.577697801266385, 24.66868419396947, 34.23826423443317, 38.06344566062471, 130.39920402141846, 14.739530597530546, 6.177042603171343, 17.6293391801152, 27.573806414484604, 16.06850382279349, 14.76923150669535, 58.81196530469451, 17.843978678181177, 79.9423036019621, 24.378636816697608, 11.516330834738259, 6.626535377761465, 36.22426256463855, 9.947092173512965, 80.55810074537258, 5.529127970473366, 128.24400499317576, 30.298131789558266, 10.31302911791838, 25.782145064559572, 39.808382923673044, 13.671892929790959, 56.41764260228812, 70.48789801591529, 47.89891328880233, 18.606375029188005, 14.748214324526398, 32.269453641811914, 28.807717839661073, 28.648374542977812, 27.213689693611315, 32.33713524170785, 28.914910990472656, 33.636530135057626, 17.94735546917056, 6.042190271141575, 34.47399157220627, 25.08704752184841, 142.0142991721828, 7.810886455867612, 34.015759979608134, 18.48855167940564, 21.035432074276155, 66.72984772024647, 107.93474201574234, 108.20662791408249, 53.642471725775614, 9.430281370356978, 34.185642425629226, 25.445786219263145, 77.85067848881444, 19.826195943734092, 42.061710085529725, 123.73253445343335, 8.334995233483124, 5.88364463249031, 22.36821946959369, 44.04590013749857, 101.02985704593515, 44.08103293145403, 246.34324902557782, 10.600812270758064, 15.061522753498663, 5.920303942509038, 17.628615673383713, 104.53155215775018, 45.633244757926015, 59.51464323475299, 56.92654977244507, 49.18462663066001, 23.640231095493498, 21.20487630951309, 126.47152102922766, 76.54472129668979, 101.43973335229128, 17.754465615570517, 81.89644224825119, 12.513535763955497, 20.151670049457433, 65.78719568400686, 50.46271821525939, 47.902262819156796, 47.310896046666116, 5.527682147373671, 92.8390006992367, 6.201209929185881, 12.425414398930066, 61.988887471443064, 26.70555739995828, 7.474879945521237, 110.30544073788386, 11.525636883496622, 62.54262917863736, 12.67960646820912, 20.595705216640294, 16.066140347800385, 60.139842750524814, 16.812519054139834, 34.569499407920176, 6.9037043769632405, 49.74438195130475, 15.491033952567436, 24.44725025269626, 51.18347826888919, 8.507241360893174, 39.06077312328763, 9.195506080378426, 49.81206645090521, 12.384018433137127, 36.47361741613462, 9.918498756565135, 11.226665182287446, 124.18458543991773, 76.2324448729952, 17.00198586978203, 54.396630434939404, 22.21861935143412, 17.33298313158911, 138.16916047831504, 34.75504068890834, 24.1066850573716, 27.841534154963185, 40.26714724811897, 7.751762222804882, 32.729999329206585, 77.16986028123122, 24.084938040822678, 95.30672619618583, 85.1278120153668, 31.44782247119815, 43.81289154404141, 20.016075045514864, 60.66799555653363, 5.36116764380583, 6.358755406015505, 25.326060204264724, 16.6377273330358, 6.431182236867341, 14.361048256136849, 94.76513822176348, 15.660068784647747, 18.43488382766123, 48.146740079555755, 60.216842426203236, 15.968506821757765, 74.95405691952888, 10.536262799582085, 99.04328352777364, 7.718358117228905, 76.92934696947049, 21.41645062018201, 75.18589444875336, 11.856473083021802, 13.668752748136109, 67.18365996911321, 6.2077690015798295, 43.31744584475132, 79.73166127070662, 47.66604845205415, 18.00404167419396, 27.65210398004041, 120.03493687093325, 47.25175752477714, 8.757437699401668, 81.10167256206005, 81.32173990656827, 69.03790523822329, 45.0008079711588, 8.30382363623033, 54.1133936235706, 32.19529826480439, 93.987593465324, 5.4461341503589615, 25.262944975415866, 16.37676510044862, 157.73363507822316, 150.42841764018033, 66.08947745711748, 24.51527725786518, 87.67216264850289, 109.71262291800826, 115.75056051322338, 73.01637340865778, 46.25952398320827, 74.27020496308799, 42.54942244144978, 15.912213917987449, 49.89759893010229, 62.43780867198579, 28.524717898725342, 168.33230118616837, 5.1650134527252005, 23.94158117445849, 122.70525852337913, 23.929380639636292, 30.016378402471755, 90.52746806747132, 46.36979819484698, 17.910148574547414, 25.2635617474509, 5.935179335658607, 18.922510684456128, 46.38819198132626, 79.59298715495872, 67.56393385550368, 55.516690621348516, 86.3444104764319, 15.231445337593806, 38.914252283153836, 21.925345398958157, 5.241194514652263, 25.95233006560335, 55.10745527828401, 8.552223727659873, 5.970859902189506, 19.9543020935644, 112.87776809276033, 16.984082944025957, 53.019356016951434, 65.92964830012559, 23.666899685951318, 7.016050784441986, 27.314695875160282, 6.466941470860699, 5.563342511777783, 46.71426039789828, 9.643219712571353, 26.241256636615333, 110.98433044106363, 15.268162572568166, 15.030368096822539, 145.19361038606135, 39.84681630616256, 30.662819626793297, 140.3572543282957, 65.06129097141718, 42.718674564340134, 21.170936625179447, 32.99237246166901, 18.569018504139052, 20.210847646978763, 9.198047689315787, 62.67841381303248, 24.669815542535183, 57.2318425853415, 63.096684078275665, 13.942567402437758, 14.260178840777412, 138.18673044693043, 54.41563966512953, 60.74842325072255, 6.11509510199338, 20.762789062128036, 9.47597646734183, 15.859894450657617, 23.57634614817878, 63.75452566420999, 28.3960436616349, 27.76742052685999, 36.01884558127251, 22.646519492449578, 26.386279246460553, 6.444929703480461, 22.079536340606126, 37.206647691056276, 74.09423160334475, 82.7014090980882, 19.343168957627054, 8.086721161268137, 75.07717121844077, 12.947028575069822, 12.384873677094484, 27.740759101007082, 10.463152432219074, 88.74276268923472, 14.772610225149528, 19.527269406824534, 16.082063696734558, 12.977986230022488, 10.628368744081671, 17.284612939098686, 7.583018706380633, 18.45094965698568, 5.034458036906042, 62.49453919261363, 20.096250790682575, 30.85231309286161, 14.615118781625593, 18.594337413526887, 49.38719169808137, 67.52518985221056, 8.476477500874593, 97.71438727633544, 24.07617131073333, 10.674639613328326, 51.73118692254012, 16.210563685578066, 71.1876283681915, 83.11292948667912, 23.077001797236683, 13.164273279258353, 90.18875222286876, 28.52972257524778, 29.144182849523137, 11.16279359702931, 60.72018193284602, 6.536087165320449, 29.773564036206963, 70.79873831714764, 42.927814202465456, 33.72360397649335, 36.7921415131946, 25.26562154945423, 60.780461324989616, 7.696902719163875, 28.17968697926134, 21.832519650071625, 52.187335393295655, 47.57372177205784, 41.767060725606335, 46.80263965780904, 26.046312706116126, 25.03221612458295, 20.04437133144244, 79.47648299208231, 6.426914679036742, 188.2043848973919, 6.05550556776964, 26.794856582475944, 80.55822546878649, 21.164406360166225, 35.83707075167557, 24.74677251314236, 13.634895075711073, 48.93216173542019, 50.10789018483518, 13.273093236912537, 92.89092402715094, 49.276285187114766, 34.90337028439814, 116.46482225301314, 39.055014150301254, 16.39792140412567, 47.85128637358555, 13.133607774678662, 41.94465909203011, 51.43753527659565, 49.00189422039567, 43.03900885505954, 147.58301719523695, 59.14924927760454, 115.25550364107932, 100.8590869476705, 46.87827127347342, 27.008838290863395, 10.114468601376661, 16.75195901946467, 94.55849941389502, 28.038500097605194, 46.42186897804196, 13.291777695170175, 20.558241035444258, 52.870444622075354, 132.03072428716214, 75.69860605188396, 13.350217524997944, 32.099418809342886, 25.714792735556923, 46.47499290096758, 24.69620561246653, 10.861989657064003, 47.69930563910881, 46.89435461891376, 36.79209006394879, 11.633635945650893, 5.385207879137663, 27.255685336986573, 14.928475942422558, 74.869230642042, 52.405338425029285, 108.24003258179239, 76.21389938728895, 16.181454441858353, 18.91923528929009, 29.077606052694023, 8.497488657477179, 15.7197984915974, 6.87277027923698, 51.30818726279705, 32.45326353437609, 22.505376925787985, 11.628408682978343, 12.30093193430462, 11.081024229954968, 32.45733485602378, 74.49198833791604, 165.8613528406999, 27.70093020107803, 58.58875117673619, 21.952129372748164, 9.915365112842021, 38.959567342882046, 120.18347724022355, 74.24254327941712, 142.00137462127023, 56.476454411850426, 5.12650026280613, 77.78106312942131, 56.51770312418142, 42.11965499787239, 18.861751248703396, 6.000532158575422, 51.553874466604505, 17.308283640390066, 106.6033307412443, 58.96103635962454, 36.61892000505858, 10.928065331906891, 16.018448455714275, 43.147780968317704, 29.902001381160794, 30.44159510765356, 10.169387767074072, 71.96466556420317, 10.560282273120313, 35.30007555832721, 81.73189853555789, 37.34440577408359, 95.46150722700553, 66.16200695791187, 13.132463931441388, 61.04726175233065, 57.21078025279114, 27.535198847800544, 54.00966814973313, 24.535314869501587, 20.868614827664523, 5.430771083410843, 12.903040662459, 174.84317813239974, 20.378700775900807, 33.98008624512284, 37.106877598103836, 25.54272790181687, 11.792952154403649, 73.01287080397546, 99.89778144130696, 64.59957847883902, 36.94878290653527, 12.62622300598083, 5.525019220516454, 58.57406544790918, 8.12217908434469, 15.320008620267352, 9.900138468093816, 7.655045924457558, 69.31661738970416, 12.992091944739235, 13.567514614415888, 174.8389105751965, 19.077839559804186, 75.60354398070758, 54.785590576489255, 15.983390756954451, 23.824428938182425, 7.349849727506726, 118.40300204465976, 26.838454988169346, 11.471432592442731, 115.31360578886918, 44.086609130775884, 76.58703727432297, 18.770431102644043, 17.511525373465403, 34.78264976859593, 68.90399560330985, 59.73542364427655, 30.269523615909762, 5.214379783103717, 35.26751571865535, 33.99040570548196, 82.61452897787106, 5.2338584701238675, 13.976549438081616, 28.155898698203394, 53.042971162925596, 102.21250822568811, 39.51378609345985, 46.32730085269618, 12.471963268154205, 73.34916138549711, 21.267128707950814, 107.38092671489473, 27.966117350180138, 32.5016823535692, 25.915003567521147, 155.95471164074502, 25.604523282304335, 14.415601676878314, 130.29536625436313, 56.53621934463926, 82.07296862055486, 19.07411766215882, 53.99601040659101, 106.37451370482597, 51.75050155841289, 18.80958827337262, 66.83700789778638, 17.00769513138736, 8.650141160399858, 35.376065640096684, 70.62778408030823, 12.629363397446902, 87.11805164306385, 90.32613891521433, 118.8260617882075, 55.887048089361855, 107.39217497968356, 16.349692926459603, 59.52880377532637, 142.7692262587721, 28.191255252511077, 118.43040111847509, 61.746074248065376, 13.764094344017915, 63.21439411900734, 17.785027266123013, 38.185795375444826, 147.68906529110936, 14.11142614404905, 14.130985360381526, 7.4793297178756255, 15.76402149378643, 7.935468594879067, 44.65298874882924, 97.8042174803427, 19.02882507446723, 62.16221910931892, 137.4262877030572, 12.717537951724776, 36.79751996587899, 79.25614061236527, 77.55550428071228, 90.5203454339181, 59.70275930919311, 29.41197072441908, 113.67015548553391, 144.40939910926608, 11.840813117200355, 19.318603867270074, 38.63137557690079, 37.117326585074416, 6.277455346206951, 109.36347615728994, 52.558278798681734, 8.065496482116009, 11.29326100497491, 71.42824451497377, 12.483532128192607, 55.303705805999336, 5.8897497518961615, 21.367464393020605, 77.53856537798222, 132.54063789452772, 19.103909791203602, 35.69614107579563, 81.97807888065795, 38.94314486265965, 13.477140671696521, 6.8240874545556025, 5.408276650298846, 26.94991857671804, 47.04884371175118, 31.476077115470815, 10.293086267153061, 25.26110235545834, 53.811084237118735, 15.88881805331681, 14.462436006970657, 7.232209723857999, 40.84479591877409, 8.283839334900955, 52.9281436732352, 19.343006205738416, 39.24687191272142, 85.03557744546266, 5.81216324585838, 180.65900401249823, 85.7960654918912, 7.852496734801924, 68.03915054653774, 16.150868795854446, 44.73882966876308, 132.6277944514151, 74.43915875424469, 6.977612152940176, 50.98602421978688, 13.408666713627836, 16.85243716820988, 8.94630732268189, 11.130569989109619, 39.92351468253521, 26.840064113554345, 14.731732396093777, 19.1070762538884, 77.14248853412293, 13.399432214974915, 59.57013071267281, 27.230733770857736, 29.853072663934306, 6.366469454139647, 32.23834566159309, 12.893396936317446, 42.37336993956833, 39.04939984081926, 67.95130190771158, 56.32685596545662, 42.33562107781461, 12.181996684450954, 99.59944609014923, 39.53695268487385, 5.579184345232237, 23.263438550550692, 114.49753559568951, 31.774548184151797, 116.68313647912535, 32.768675544489845, 32.10705044289993, 11.476181465056932, 66.69270851728676, 28.17667447356252, 22.787537126864546, 13.123106748534001, 80.38587829256942, 60.320988328915234, 88.88275498286784, 85.93413437422336, 27.84268229501394, 22.563188278588125, 27.33197866249815, 56.34906962587522, 148.03813112142268, 52.07774304147912, 14.38045009228701, 15.106122726313377, 7.502586428054741, 32.04517277877765, 17.8838030714026, 5.991680549395131, 105.72476083274002, 9.951675257218454, 52.94058415998239, 45.1445470306431, 54.07878948028914, ...])
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)