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 = 45416
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);
([3345126.5625, 4720771.875, 4927151.708911153, 4927180.847437944, 4960046.826565196, 5090900.292426134, 5092437.390274146, 5160676.487895571, 5181710.9375, 5184009.211993995, 5185861.606485753, 5187395.170242592, 5188678.125, 5189031.642702421, 5206162.365602215, 5212389.0625, 5231097.156604438, 5240784.375, 5259789.987281547, 5268096.671926621, 5270644.654632501, 5273138.150850372, 5277906.25, 5296737.312260889, 5297433.240261995, 5297523.963789882, 5298879.674410199, 5299098.65183809, 5299509.143572804, 5299566.794129912, 5311129.6875, 5315084.012196225, 5319076.5625, 5321050.608492625, 5351544.757409084, 5353206.187842989, 5353396.574254021, 5356751.5625, 5358106.25, 5358641.118698606, 5358838.866160065, 5365756.164780274, 5370708.587613197, 5371457.34977071, 5383213.160605356, 5384496.875, 5389500.0, 5394244.1763348505, 5404802.150912898, 5408528.125, 5408548.139845599, 5418556.36244457, 5418624.20887251, 5425651.5625, 5426101.5625, 5426109.180812061, 5426739.388471933, 5428843.605036028, 5429432.882963703, 5431670.3125, 5432473.4375, 5436223.127978786, 5455693.71906606, 5458078.393698113, 5462859.375, 5473136.914913904, 5473290.625, 5473651.135026824, 5476735.858074119, 5477598.4375, 5477630.950690457, 5478699.418587185, 5481438.992521192, 5497917.334559824, 5498283.255140945, 5506060.429170579, 5511653.125, 5514593.75, 5515228.125, 5515320.40520336, 5515618.666226013, 5515670.801146481, 5515738.680477479, 5515938.21006532, 5516304.567795918, 5516362.073386884, 5516691.06053881, 5517315.036388099, 5517659.375, 5517944.671790637, 5518097.003206011, 5518413.775172427, 5518673.170251677, 5519990.625, 5520023.50486756, 5520033.074544011, 5525681.25, 5527139.0625, 5546474.808704798, 5546664.0625, 5562457.8125, 5564692.052177972, 5568365.396097217, 5575738.705616694, 5577387.937881344, 5579139.0625, 5581212.408229483, 5583499.88309987, 5586919.560131308, 5615515.625, 5615692.932727093, 5616020.3125, 5616941.3676617425, 5618161.621747767, 5621063.666790521, 5622854.947916831, 5626476.770078583, 5627537.5, 5628506.169147521, 5629442.1875, 5629839.075350563, 5630028.792303508, 5630355.031155221, 5631513.287018394, 5631643.75, 5631683.416174859, 5631917.1875, 5633219.522434173, 5633789.494707303, 5650400.242782555, 5664101.482029506, 5666796.599101397, 5673116.273766217, 5695226.5625, 5705093.75, 5705805.4993235115, 5705822.604655591, 5706903.367938427, 5707768.75, 5709245.284401443, 5711978.871956206, 5712524.049422391, 5712635.9375, 5714650.0, 5714790.721672586, 5718870.434592277, 5720426.5625, 5721373.4375, 5722832.684304337, 5723076.451803438, 5723240.625, 5723506.25, 5724431.25, 5724643.75, 5724715.513994013, 5725550.0, 5733849.758088487, 5742145.774422872, 5748324.312201328, 5748779.581067388, 5750543.75, 5750666.222596072, 5767860.9375, 5768084.48720084, 5768376.22096003, 5768687.467949624, 5769621.153922079, 5769986.126316528, 5770052.392223741, 5770212.594937322, 5770772.471525865, 5771603.125, 5771821.875, 5771986.458123202, 5772343.6167867705, 5772802.222159725, 5774301.5625, 5774439.0625, 5774857.777745693, 5775581.062603063, 5777117.28184814, 5778184.375, 5778332.8125, 5779484.375, 5779663.31510979, 5779690.15421741, 5779737.5, 5779770.3125, 5780150.234574644, 5780209.759379953, 5780271.875, 5780668.75, 5780774.44333105, 5780830.071363996, 5781264.572510868, 5781349.946065557, 5781448.116637162, 5781636.832162043, 5782229.6875, 5782412.340538574, 5782870.0873226, 5782939.99169072, 5783053.707782569, 5783132.645186525, 5783742.1875, 5783831.25, 5784185.616093384, 5784325.694834087, 5784396.525030662, 5784610.783866257, 5785496.535783557, 5785684.375, 5785696.024646088, 5785716.705535819, 5785723.67788406, 5785752.713969768, 5786459.300572127, 5786604.6875, 5786768.556990065, 5786890.226348462, 5787373.104154617, 5787456.94392608, 5788102.971483857, 5788677.229375837, 5788701.938797897, 5789124.911938978, 5790754.664267252, 5791824.844953973, 5792525.0, 5793130.947921623, 5807219.494336487, 5811443.8889167225, 5813567.1875, 5813992.955839932, 5820226.5625, 5822186.949885239, 5822544.540344435, 5823314.0625, 5823355.473257494, 5823440.625, 5823507.8125, 5823797.6077432595, 5823835.9375, 5824010.81009873, 5824096.875, 5843420.251914867, 5843595.3125, 5853045.3125, 5853677.944578249, 5854485.9375, 5856310.9375, 5857665.625, 5859288.825973261, 5860222.279829248, 5861232.62597597, 5861367.141598305, 5861446.854400193, 5862055.784468636, 5862085.074894127, 5862265.250286197, 5862348.2420199895, 5862469.955601938, 5862593.75, 5862764.138507935, 5862827.966716582, 5863296.605749397, 5863561.6105796425, 5872344.174352403, 5879653.199888664, 5895198.4375, 5896712.741962213, 5897542.950994452, 5897563.014524145, 5897734.375, 5897800.0, 5898291.982188717, 5898298.431122567, 5900211.963061834, 5900691.961397601, 5901237.5, 5901427.123775889, 5901449.227202484, 5901776.507910071, 5901975.973646952, 5902306.04652026, 5902485.9375, 5902706.25, 5903101.469727045, 5903620.918849768, 5903831.25, 5903915.003652044, 5904281.064480091, 5904536.602420969, 5904777.910133217, 5904903.125, 5905140.625, 5905218.75, 5905230.467821266, 5905483.971645162, 5905693.675195119, 5905926.605289588, 5905965.923495913, 5906112.5, 5906171.918033528, 5906263.753708958, 5906397.065748204, 5906398.4375, 5906979.8593787495, 5907083.218760872, 5907180.2290106425, 5907344.4744881615, 5907344.919364228, 5907712.194606642, 5908144.593932807, 5908292.972455523, 5909326.5625, 5909446.875, 5910065.309404188, 5910848.056037848, 5913454.228405082, 5913665.41449275, 5915680.187039963, 5916988.707480677, 5922134.070662125, 5928492.771590486, 5929254.709669918, 5929275.4481273, 5929935.772849683, 5929980.563052717, 5930496.778143451, 5930640.625, 5931969.273590378, 5932074.402104035, 5934424.468937216, 5940391.062610895, 5941733.536756464, 5944472.699534525, 5946060.9375, 5952053.125, 5955267.1875, 5957263.733295412, 5958159.2056589415, 5958806.25, 5959426.5625, 5959945.3125, 5961700.0, 5967165.190675778, 5967914.788420352, 5969916.522198052, 5969952.477657851, 5971226.5625, 5972951.022719338, 5973929.813701077, 5974752.575532954, 5974903.388811253, 5975126.4227638645, 5975526.502381454, 5975875.860810558, 5977303.283511302, 5978566.624175474, 5978567.072305294, 5980419.575415895, 5981126.31783991, 5981663.708232186, 5981669.586520888, 5982725.63057239, 5982972.125580902, 5983313.3793056365, 5983498.397212689, 5984008.867168347, 5988483.425495283, 5988600.355054579, 5988858.173323026, 5988900.0, 5988925.437240715, 5989694.983355998, 5990179.6875, 5990430.760420427, 5990913.491532668, 5991071.688503555, 5991130.17035638, 5991355.550766238, 5991983.976187794, 5992225.872911403, 5992232.459441922, 5992609.329039245, 5993263.079395568, 5993281.25, 5993510.005592356, 5993527.518743772, 5993584.375, 5996820.223938846, 5997245.235521478, 5997332.323728643, 5997717.021442058, 5998472.822059201, 5998603.125, 6000440.065382286, 6000775.0, 6001429.48338179, 6002841.43031773, 6006494.350130767, 6006693.75, 6007804.6875, 6007913.86940878, 6008557.8753678715, 6008928.125, 6009200.331710756, 6009460.480353118, 6009556.25, 6009766.809137693, 6010171.875, 6010244.52594265, 6010262.682541649, 6010681.139770233, 6010788.582941766, 6011019.709533677, 6011214.989190427, 6011519.109140425, 6011560.54527765, 6011734.529156502, 6011843.75, 6011905.913694224, 6011923.4375, 6012110.9375, 6012166.600788346, 6012175.739073191, 6012216.516411191, 6012247.658814425, 6012284.316706621, 6012614.0625, 6012818.75, 6013239.687389018, 6013856.25, 6014133.285406889, 6014328.983021427, 6015244.167361839, 6015292.093321436, 6015751.5625, 6015942.499410666, 6016010.264226048, 6016276.5625, 6017007.000968599, 6017727.491546844, 6018211.854503634, 6018949.364242828, 6020082.695333336, 6020234.763926532, 6020692.316885183, 6021409.375, 6021440.175352095, 6023524.724868731, 6023547.342400044, 6023797.109842588, 6023953.125, 6024437.5, 6024729.67061453, 6025855.092709786, 6028352.176928163, 6030095.285319538, 6031100.820483878, 6032418.689571462, 6032594.0871728845, 6033108.333378292, 6033730.092048356, 6034394.233464248, 6035068.75, 6037032.8125, 6038901.153065338, 6058189.873503609, 6059690.625, 6063178.818681311, 6064474.68392976, 6065902.747404285, 6066032.8125, 6066614.0625, 6067034.065554926, 6067687.582855115, 6068455.100414767, 6068494.061926494, 6068535.543061324, 6068920.794240993, 6069304.670376703, 6069774.702864199, 6071612.2590947775, 6071702.709875386, 6071724.721964649, 6072066.530228987, 6072457.759578015, 6072465.374363557, 6072658.446025793, 6072826.084241361, 6072859.952818304, 6073003.125, 6073514.0625, 6073767.805015914, 6073779.6875, 6073915.287041372, 6073988.891315976, 6074031.247654893, 6074146.875, 6074246.058767525, 6074384.375, 6074600.0, 6074802.997291724, 6074889.3335112315, 6075042.1875, 6075111.235142064, 6075123.4375, 6075181.25, 6075183.4345027525, 6075196.802795234, 6075388.994498559, 6075809.01642387, 6075830.437935878, 6076017.168634683, 6076207.1599103855, 6076275.0, 6076601.459855532, 6076711.792099168, 6076796.242597832, 6076897.307960244, 6076926.5625, 6077002.719603759, 6077104.6875, 6077151.5625, 6077184.323829025, 6077401.270097443, 6077720.120931093, 6077890.3999022385, 6077909.375, 6077924.131420841, 6078126.5625, 6078560.354177815, 6078614.0625, 6078681.25, 6078710.291197089, 6078757.8125, 6079014.01632359, 6079049.680925258, 6079092.1875, 6079141.784034136, 6079312.5, 6079421.875, 6079713.806605744, 6080046.20983086, 6080179.6875, 6080287.5, 6080492.606277586, 6081053.156988167, 6081637.237604025, 6081716.57507027, 6081787.335121802, 6085975.0, 6087829.6875, 6087911.227698584, 6088112.38421765, 6088226.5625, 6088251.2444752315, 6088254.251640753, 6088634.305891857, 6088763.314423192, 6088779.272714821, 6088981.89951654, 6089684.814755003, 6089924.9904418215, 6089978.541924588, 6090112.396898401, 6090262.629584107, 6090590.625, 6090635.9375, 6090777.3944939375, 6091817.1875, 6093289.0625, 6093874.994204136, 6095922.557005529, 6096498.4375, 6096928.69676592, 6097067.724595765, 6097617.8702191925, 6097889.0625, 6098121.875, 6098371.906623046, 6098528.125, 6098928.125, 6099491.222714057, 6101793.126700556, 6103958.886848144, 6105209.375, 6105772.691534004, 6106162.5, 6107691.785277775, 6110210.9375, 6146809.375, 6149135.199099114, 6158257.46961188, 6161910.9375, 6169412.981532966, 6171648.140950814, 6179173.18070956, 6180381.25, 6182715.863709352, 6193217.097782429, 6194171.875, 6195259.375, 6199684.139827595, 6202915.5219421275, 6207062.251752559, 6230228.125, 6231254.532535849, 6232001.466718805, 6241267.4574463405, 6242895.3125, 6249001.587981728, 6249868.75, 6250347.0836688755, 6250415.018069887, 6250417.112944846, 6251590.625, 6252207.8125, 6252437.5, 6252589.9126592325, 6253223.4375, 6253859.581558499, 6254031.091383932, 6254054.6875, 6254221.875, 6254456.615979766, 6255017.07584253, 6255727.830416265, 6256432.543169497, 6256661.278877395, 6259569.122822867, 6260635.811561088, 6262210.9375, 6262228.402196157, 6262592.1875, 6263298.477474193, 6264657.135502751, 6270804.475637357, 6271896.875, 6274717.140546859, 6275957.0234630825, 6276732.8125, 6277543.491582424, 6277604.623822839, 6277781.25, 6277849.642489037, 6278071.020017952, 6278628.125, 6278661.317913244, 6280268.75, 6280342.984877221, 6281823.4375, 6281828.125, 6282950.233989713, 6292167.1875, 6293359.124924969, 6295176.262086742, 6295762.164865173, 6295806.778626315, 6296423.4375, 6298561.381771145, 6298927.20926711, 6299825.0, 6302521.381475343, 6309979.339243001, 6313268.530003657, 6313657.134428281, 6314201.3483893, 6314375.0, 6314481.93783926, 6315287.787031765, 6316510.062134127, 6319313.424497834, 6320760.963368621, 6321229.6875, 6322115.390713195, 6322449.696610519, 6332203.125, 6332422.173112238, 6334844.09942201, 6334914.818148911, 6335411.364821501, 6336230.953646974, 6336546.654050029, 6336592.474647064, 6336603.5738152005, 6336923.4375, 6337071.930707166, 6337171.19660988, 6337220.495648352, 6337270.3125, 6337286.11279701, 6337510.949985878, 6337516.279675982, 6337540.724331999, 6337596.875, 6337926.5625, 6337952.354699349, 6337962.0197932, 6337986.580279012, 6338031.401875875, 6338060.660092899, 6338064.492345786, 6338076.5625, 6338193.425021427, 6338196.875, 6338202.792136014, 6338243.695787026, 6338274.438335027, 6338286.959365871, 6338298.413145971, 6338335.9375, 6338345.3125, 6338360.9375, 6338365.625, 6338434.170652529, 6338507.654048732, 6338619.163602688, 6338628.832460248, 6338813.9665701045, 6338857.8125, 6338982.358162593, 6338993.736002045, 6339006.007940059, 6339229.093137509, 6339233.324310137, 6339692.549347543, 6339783.957241949, 6339927.293858032, 6339930.995505849, 6340270.6989076, 6340318.75, 6340333.603271122, 6340645.914520851, 6340900.112701491, 6341287.639927316, 6341397.611875432, 6341884.375, 6341895.077668208, 6342086.36514611, 6342117.0617830055, 6342219.204231636, 6342439.015122588, 6342599.0389351165, 6343007.764356715, 6343071.875, 6343096.875, 6343347.01973907, 6343922.323739723, 6344209.798298219, 6344559.338041459, 6344679.497813256, 6345453.016506344, 6345524.66852927, 6346599.432884074, 6346772.2132215565, 6346841.892961775, 6346954.6875, 6347101.010103795, 6347242.437774861, 6347401.691264377, 6347413.914815077, 6347428.10960177, 6347516.97557432, 6347523.875838536, 6347773.9258481935, 6347835.784813601, 6347898.81405921, 6347941.581780409, 6348228.125, 6348469.619171885, 6348496.875, 6348508.011956322, 6348644.8204857735, 6348752.563081097, 6349093.550464657, 6349342.037914913, 6349423.4375, 6349818.832059304, 6352495.3125, 6352916.808369539, 6362542.1875, 6363214.0625, 6363529.563186716, 6364096.875, 6364487.5, 6364739.28318205, 6364837.5, 6365168.412608859, 6365598.4375, 6365846.875, 6365911.611193824, 6366690.0987243205, 6366710.9375, 6370341.794157728, 6371274.2386495005, 6371320.3125, 6372080.275698092, 6372139.0625, 6372144.859764161, 6372242.1875, 6373463.541133209, 6374216.557564461, 6374593.75, 6375654.516198193, 6391289.823395376, 6393427.265168226, 6394124.558630108, 6395000.0, 6395156.25, 6395414.0625, 6395795.3125, 6396012.5, 6396074.898412084, 6396698.4375, 6398672.589665862, 6399346.865331021, 6405004.6875, 6405693.162662472, 6407567.933964466, 6427756.677719174, 6434048.363840063, 6434253.250231162, 6434733.170760785, 6434747.964820951, 6434996.875, 6435214.0625, 6435241.557260042, 6435280.625478463, 6435466.614014046, 6435714.447947696, 6436000.883008079, 6436351.5625, 6436352.416328236, 6436774.003323723, 6437215.625, 6437357.8125, 6437385.350975118, 6437636.980751507, 6442292.1875, 6442455.428900304, 6442909.452716945, 6446652.328620612, 6453814.803467868, 6455691.582621801, 6458188.789687815, 6458640.49340486, 6460211.643826436, 6460795.3125, 6461050.861955764, 6461625.0, 6463056.742945877, 6463094.755547391, 6464401.223281623, 6464603.722964133, 6465153.125, 6465481.223992161, 6465705.46533016, 6466378.291352369, 6485286.255303023, 6487771.706127797, 6488005.493311448, 6488820.496131233, 6494526.192765725, 6497627.198127444, 6502899.942024642, 6505811.019210825, 6513224.7633321, 6514929.4206108395, 6516341.384574102, 6517851.351808346, 6518580.348298385, 6518706.140575736, 6518921.286041641, 6519640.625, 6520212.348326079, 6520260.9375, 6521640.618853825, 6523577.509409165, 6523880.391760392, 6526968.893975311, 6527246.549329021, 6533181.990841442, 6533357.6695269225, 6534793.75, 6534875.0, 6536420.3125, 6538429.026403684, 6551408.435370142, 6553203.125, 6555580.086457165, 6557372.915605814, 6557488.585598911, 6558187.317643532, 6558241.092215012, 6558467.1875, 6558617.72398561, 6558690.214510751, 6558699.628942139, 6558937.5, 6559562.5, 6559868.75, 6561481.25, 6561853.389551395, 6562762.5, 6563021.545004777, 6563181.25, 6563490.625, 6564959.725773213, 6565332.4469158705, 6566589.883698529, 6566748.009224007, 6566902.455091107, 6567223.033136752, 6569448.4375, 6570379.6875, 6570770.308256433, 6579264.0625, 6579268.031976647, 6587030.274184595, 6590320.3125, 6591393.268258822, 6594480.901258197, 6596963.839760786, 6598535.9375, 6598556.204532714, 6599229.6875, 6603481.135022313, 6603953.125, 6606497.619269283, 6611771.775661954, 6615181.792379422, 6615339.0625, 6615469.712907521, 6615791.188982206, 6615999.865851688, 6616286.017552525, 6616304.6875, 6616634.421784901, 6617370.781964169, 6617956.975670898, 6618939.0625, 6620081.25, 6620537.831305655, 6621030.454238517, 6621385.9375, 6621831.25, 6624004.6875, 6624498.4375, 6625351.5625, 6626111.648481124, 6627908.992485803, 6628891.547328718, 6628976.5625, 6629040.181031333, 6629231.25, 6630120.3125, 6630744.204208712, 6630791.696188015, 6632178.125, 6632201.257765517, 6632237.9376142975, 6632407.638093089, 6632646.875, 6633084.375, 6633542.453844832, 6633751.921428061, 6636728.176671795, 6637998.814582593, 6638826.28010364, 6639001.459933824, 6639846.450114236, 6640278.723238504, 6640434.61641892, 6641112.64258857, 6641275.432497869, 6641281.643351477, 6641979.364007696, 6642123.170617245, 6642175.227006865, 6642301.314753929, 6642365.8572633015, 6642616.412406953, 6642741.1192449555, 6642920.755301936, 6643085.1181836035, 6643514.832262268, 6644075.118997056, 6644085.7857760545, 6644574.677073828, 6644609.375, 6644643.75, 6644796.153916665, 6644828.125, 6645086.893422473, 6645534.102177763, 6645698.4375, 6646157.250861749, ...], [72.98008536744166, 41.94293776420038, 6.510290024826543, 31.818266614112517, 58.98648861758515, 16.187001171351497, 33.43176802796768, 5.52947067512479, 40.9301597905862, 19.930572003899123, 41.73334556993399, 46.111184132488454, 51.143166440987926, 38.239427678881455, 9.220290175336748, 54.36446358294507, 11.598378245767279, 70.04187012193913, 20.221136981899914, 25.073180266160144, 8.830879256039202, 8.663608595899497, 30.43070954105962, 5.524037819964344, 8.526525632275026, 6.57288270589736, 121.88335187854628, 22.704300384435474, 32.405073077061154, 91.35674445708233, 111.44456181902336, 8.103607281117784, 132.79889908446845, 51.84267077690422, 20.960596056632138, 146.74032060978934, 103.985438432417, 67.82972713806365, 121.5202840375823, 7.792124351908975, 14.242480823804334, 6.746611540701925, 12.602326104959122, 6.041265955349953, 6.595885279101685, 53.03942047316642, 49.75870376035932, 16.860545765362488, 12.19150003650163, 52.18269435834159, 31.87366766564385, 8.346948666379303, 5.2235299159700945, 35.92655978432874, 43.812035826783806, 15.978547876124772, 16.34883851714, 50.85734046873641, 11.23966174685963, 93.91320509239665, 58.06891569952374, 40.63940268543664, 122.55545620725175, 23.921494220917207, 60.94749523768386, 16.907396825497077, 72.14376670958879, 8.072758421952122, 66.68342074394756, 86.22200951909008, 10.69001818038315, 13.108471988757957, 34.49032110215942, 20.940600436453593, 24.298382443543836, 21.41041028392914, 102.82650775799647, 115.366232817056, 45.580700631167915, 36.54543384984525, 130.64438615323533, 11.988276561331723, 13.661205081815941, 12.454400476498666, 37.51913321876978, 22.257803250368823, 42.13622292612925, 13.089738318466859, 57.94082989312879, 6.641997593609289, 9.44221347294609, 55.41962583798082, 33.98206380854005, 43.87775328718373, 23.05470322727607, 16.044144410207394, 40.3900954669737, 57.79270065559073, 14.25928616743167, 29.5168871967298, 48.30032330605944, 6.250251467134937, 14.135360078032734, 23.0503492304832, 14.398950404071249, 56.95757200758105, 90.71576422421205, 26.409942692958364, 19.297728493299388, 29.14405792584125, 214.0692764340938, 59.99342785692285, 8.72266551533264, 12.39714604274937, 22.600611343517393, 120.44216275117091, 14.99431261867859, 96.96943787386323, 6.079731434700505, 79.7271477779728, 14.990717016322968, 7.308656267452037, 69.37879582211848, 12.62998533549601, 40.94760643400274, 99.45644106550657, 91.15425209141208, 12.59612736445968, 16.891840300649637, 13.963544938195062, 31.63477945753908, 64.21369038917595, 228.106278590252, 132.7284949930049, 29.68212938567486, 19.310576463829086, 29.663011837292935, 15.156766369126855, 40.88498944003773, 81.59234181990541, 12.537637639127752, 38.09929671780594, 70.03072225138853, 39.29159381806517, 6.502353041769151, 14.578473413371697, 45.75715549818601, 33.14403393500393, 45.147259979676925, 14.535729852868027, 55.08748426213836, 52.267479207540305, 117.4587991518155, 66.46066689034943, 14.534639110770696, 34.93200661460507, 91.43318998838595, 11.93561404467792, 89.35739469186413, 34.248888028234084, 30.4811169864138, 26.17281809759881, 56.94796626518201, 15.38713661180272, 95.27494195679863, 40.79778212732508, 10.161043461549088, 58.808476146420745, 114.96587943153492, 15.316149073174158, 17.83567966415444, 30.642676139395643, 37.588151455245054, 175.12964776977304, 14.456961878113429, 18.237175287234617, 105.61651509741914, 29.614688927623945, 54.83384416186486, 90.86242072596771, 87.50762893248564, 28.76516878258666, 55.5058166627711, 109.18537378611593, 5.370650510521276, 86.59413716471676, 106.66663483846357, 107.33494853723492, 17.63291934834083, 5.552031132678535, 40.574880879642116, 77.29240666147406, 8.01261746940864, 87.26295966942607, 9.803395370082482, 52.88836160193523, 18.23789749441656, 78.44051545069206, 45.9917467166899, 14.366662307509694, 24.755984091147372, 5.320678942302963, 27.646645801640858, 41.87788530465745, 51.09407430033495, 32.988065240284975, 64.54144773670373, 17.61906210013395, 9.052034889884826, 59.13871380760402, 173.3142116064469, 63.98599020304137, 36.320232611077444, 13.375714813867495, 24.034210522990865, 13.576501957350189, 96.56860089855424, 62.88681828688135, 15.782987578988813, 64.72260874876007, 23.33394487831438, 12.418514327309426, 25.82144106630395, 50.0252536006257, 11.771655176067092, 26.896648017714366, 14.85369035317262, 25.79753457544235, 93.78095411602345, 95.21801198031244, 98.78103490768383, 92.78448950566292, 40.19470167556516, 24.28588789377325, 84.67909616088241, 152.7083833744694, 288.0296360893023, 79.86992241766082, 10.097737843969231, 81.08929310781414, 43.01214241926109, 75.82389181230585, 52.88064723028004, 89.31662842756296, 130.10331601482991, 11.034310663705577, 65.9358865070303, 57.289920759505506, 24.667078652199038, 59.60115056509423, 66.707826948852, 103.94126290050714, 31.931533186819532, 8.512924661161263, 52.50947235410671, 14.769393107709858, 28.123546746614696, 10.47047078039437, 25.37842633137693, 66.64912931257903, 58.4994468548709, 20.949881165543225, 39.57250641209335, 15.23935242686958, 5.525447545875247, 24.151633236733424, 18.32561576747023, 130.60439361100396, 15.234845161044872, 75.91664633723308, 11.528213113777165, 18.952116900676636, 233.90850437336044, 70.39122294777823, 76.46740615602013, 10.821272209205269, 148.95424111801114, 5.153042473623435, 14.144481259123975, 73.47696969542648, 12.135161039781524, 13.201413142132665, 27.489142832098523, 20.6502854890044, 27.50929610400631, 166.26456778569087, 96.59588506585403, 71.36484543628242, 33.618124932186014, 38.58461510086886, 115.45152538810743, 25.332183279922553, 18.271714553900264, 74.90391871188523, 32.549045830384834, 37.397884193301905, 70.78885094714052, 5.36939088155765, 7.463587420223436, 27.12764020605855, 7.132745350201876, 16.34964312486504, 122.08139227245263, 15.884928231605313, 9.083273191886619, 42.61546732018039, 46.3368757324154, 29.982276158083625, 5.975583640120215, 15.556650826080372, 18.67508305698113, 22.629753508730456, 13.892618940176208, 19.55861566772842, 36.31663907817547, 42.41865985402109, 89.52876120177055, 36.71635375486164, 17.44796812920893, 76.1248802518695, 147.6750946436548, 75.8386350239732, 46.31878628046961, 131.52007984633792, 12.182471861471162, 6.767940706442316, 51.825323803827374, 75.2533294292434, 19.81103795798603, 14.584756433049305, 36.94726683828823, 31.05185260823671, 10.306203477850163, 8.024382876447067, 75.33730739690974, 6.917258262010746, 12.718369839607849, 64.02684678239635, 52.066766903774486, 73.34415998959064, 64.53196868130165, 5.126899476747673, 33.1509213192237, 50.64723086481111, 61.95856359227891, 40.50647109136254, 55.61566413132407, 153.6534596296133, 57.85391242668898, 42.264883853249316, 115.46844550961612, 30.693286817803504, 15.445383141761852, 19.86916411249365, 192.31227653462767, 26.03919686257332, 43.63232650440193, 106.23086970596896, 15.48337158721988, 13.15589761410698, 6.469183806675566, 19.414581957361467, 24.156917583257098, 83.14513851657802, 39.53844848160931, 7.8484218570076445, 6.114550914356621, 12.850841647324259, 114.67737914904615, 6.666187097580613, 17.938162920493397, 5.97093395971556, 16.52172204096955, 30.01974637842662, 36.669422568936014, 23.385471532532037, 90.73398820500871, 46.353635014906786, 283.79861339098557, 157.78305905773317, 11.976804529873911, 80.57309454127508, 77.08119694485525, 134.44755651371796, 41.46900225873528, 57.63613042058677, 7.8271589358619975, 155.12309062158266, 12.280702797274508, 13.044160361422476, 95.33784526805472, 8.240293439063057, 80.0446998056134, 32.55743689508907, 25.627015814045716, 36.01697998647211, 100.20362649996106, 57.659760504365956, 61.87806792044849, 124.02509203551173, 16.249853561190637, 12.216079857599457, 177.83125635850024, 37.42144637692338, 25.21967867295279, 86.96212887984757, 91.06301023452684, 41.34061371778715, 103.21839401481459, 105.873628779354, 8.096139044498534, 31.412332266477286, 361.0302032288281, 9.490674006545058, 41.94229495191494, 106.37653870977536, 28.06383879669398, 20.23747704889229, 16.51326102400617, 7.467281326280249, 14.956379864462411, 68.28678221164279, 33.85710637843812, 106.96944982510976, 70.93369565183167, 147.48914557405527, 18.77743205815971, 19.94081507074605, 25.099020095068347, 14.723881857239624, 58.33533724664151, 70.29507364703326, 59.24627951542699, 95.94803408634904, 16.785574401349063, 23.68216870584948, 22.186322904532336, 69.09839880889936, 152.53868726871923, 55.06453251104986, 8.820356853601643, 67.20877786576558, 167.78696165115056, 20.25769447773461, 7.972378957000035, 17.115270950839715, 35.71646348842705, 86.94544044464757, 24.54593766801697, 49.29959162489901, 13.078167650045458, 70.69434717738082, 11.94634841692272, 6.297332094170842, 88.35292270615574, 107.99381194495058, 84.01966805797842, 29.597756380536584, 17.947152846763316, 48.56442562884549, 93.2891288662938, 27.383558962398773, 11.699068726750145, 25.877791621219398, 16.745795138950598, 17.171778585146427, 60.12814395975915, 37.5649438035613, 90.61538429838518, 6.936990008190377, 65.85483705709801, 8.69096010518208, 73.1666159645487, 10.584691643989155, 70.69027173355848, 31.132159555253214, 13.880095862368602, 11.259732349319167, 29.034962118726718, 120.92639012383351, 55.807621509493835, 17.162164450686728, 15.678018139203619, 78.84400792348445, 10.770937784669785, 22.383729682731733, 38.19514908149445, 26.81462164444661, 218.4199499973564, 5.917871799530279, 109.08428842854222, 13.385987535905553, 17.7211267514765, 72.69638093132906, 45.85890526190262, 12.252832302949106, 44.440201577763276, 88.36775167692949, 96.70050888664066, 50.154381172631524, 57.30334466306277, 63.2477514295966, 68.03678124802042, 108.03156795786802, 50.324669242529254, 37.31993204288911, 74.35757528998278, 13.349657051645686, 32.535437839593, 74.3561294848931, 17.994874153674747, 14.673259937205268, 11.461299196317484, 82.01068276670395, 18.85818681053735, 87.00803933170587, 20.094980178422745, 31.184026059708575, 26.64787647708947, 52.57195596406241, 18.473955128590426, 9.726448959695963, 202.82871391540374, 15.842493707464067, 31.221338598041203, 81.00788211720233, 14.74999184756006, 34.24645519360692, 131.62508236428027, 24.75710949619401, 116.9961217324664, 54.92730406242946, 45.70808908236312, 170.06132237135978, 46.16331650194992, 30.203476770094255, 7.972017629222377, 133.60111425768793, 43.83212675905554, 37.67946136071341, 36.727727168956534, 92.69138807310266, 86.20224825255373, 70.36037505648522, 64.02984150994305, 12.895358797867516, 95.97563307263438, 53.011623909280715, 57.84324460512799, 22.165447215574016, 58.40744370267148, 5.581038307331534, 27.96825746146507, 167.99053276344216, 50.81384612345068, 51.88691644353095, 26.42841545334228, 46.016489944862286, 65.24030636948723, 145.90819598037098, 20.642755984690638, 6.937774019328927, 200.9615142686443, 8.662762335832058, 16.932292720495205, 28.337180136236753, 387.6498040825149, 5.039810746246569, 11.336481712432732, 126.0686925507481, 96.2003782298531, 39.43191110931024, 30.905509380049935, 187.00221177036943, 20.851768641295934, 18.385065325915342, 117.94594714183731, 59.71602688019813, 12.08563735797236, 14.701375478391963, 85.52575436871571, 63.33862821019352, 8.303371215928308, 86.67833453372323, 112.16562000071679, 39.656317064909814, 152.26927849129976, 27.016151084077766, 66.48867763752716, 134.09674287853568, 69.21798396876225, 13.602058382418322, 114.36424113419777, 143.90595979736187, 47.68430695511603, 126.56278353277997, 74.26490179651697, 17.16100482529473, 104.63641130893524, 41.20502231933301, 214.24108646054793, 26.60721207673324, 10.99030959063503, 30.097372052644506, 31.090593641684137, 15.260923482541566, 61.307406174381825, 55.35270385661843, 60.133814745259585, 25.79881265564524, 26.76426652813344, 71.37514965091282, 38.379295092583384, 11.167771352220818, 54.56698846194429, 33.75658381398004, 30.345369746798077, 27.132037172245294, 43.99667338237195, 70.32076237768356, 33.86794371554076, 10.171106493868166, 77.82475920096346, 162.1947305183673, 154.78731800400666, 95.56184442035453, 85.56678434946247, 13.600768209383972, 10.957551749275376, 41.45769285404537, 31.444380155426355, 8.475748621160978, 182.56209582267763, 35.26284658577181, 41.36538962698427, 124.3959612889833, 57.92087100303446, 44.03906356613712, 19.892209990385272, 24.94587999434263, 30.434325066925176, 127.58690733985435, 138.84045619830854, 48.81246585801132, 14.408945643832162, 27.32522763912828, 42.24784616545961, 6.051693880654544, 18.557807406492554, 62.669846777995836, 6.316487759110337, 53.28994984233036, 12.654202941059065, 41.73568229730287, 103.00097866430765, 34.20564160708577, 64.997381034248, 110.553311366567, 76.18348046559261, 102.30636989662605, 12.06843935335284, 51.13130207618803, 7.243348480701265, 18.153256708060187, 150.4200577906694, 68.41795859593772, 146.2522530266986, 14.164428393214017, 66.71219568938406, 155.6439345384758, 52.126273965503074, 12.405062330616493, 5.630123263131581, 112.90441211924409, 20.218711261677555, 44.51488972675606, 92.71572782216275, 53.67362776022356, 23.70754207622053, 45.631898979225596, 5.409994194667425, 8.48042523433991, 47.90832327729319, 5.3044719740168, 13.92067969253813, 203.9279528449734, 27.08006732426115, 160.91824458893765, 51.51450614165971, 35.194785306057014, 45.63520857902233, 15.688773323927585, 29.742509189578815, 11.413226790196843, 11.147279277230544, 6.5948598491741555, 15.334133299681195, 54.96431613283908, 35.717329895348364, 7.917308774595257, 20.857496654974007, 61.17861183436116, 5.168913830817518, 24.043689293028006, 192.09310785831232, 77.58607619302998, 23.43683392528208, 48.02706296017482, 127.11847188839273, 7.1072732648573815, 10.35028594836582, 172.79053683655388, 72.29776596320802, 110.6632646759629, 30.13223344541225, 36.52671878932654, 79.24030610101741, 5.453063544770866, 25.744513639378674, 128.38919425664966, 22.915619454472335, 138.9848853158872, 94.53237711725714, 32.39960365377026, 5.812945262556682, 24.520177677024442, 5.889263900717157, 56.15011696838479, 7.739573534576811, 10.532000931023937, 8.71530762539046, 35.62299525149885, 8.502062921328756, 179.0714472048276, 105.10778433072055, 17.869700885997915, 26.9379289576447, 6.285040538476697, 8.718895962776344, 58.654755860935126, 46.43466706330931, 40.566325721785915, 26.265308286220865, 17.01061521981554, 74.66408882685234, 16.1488237393896, 27.606851726208127, 41.540022559354476, 28.550874550794305, 13.45835986536969, 13.351487111940376, 101.72641442820006, 84.34916079347242, 112.0527426880885, 26.549632929048805, 130.68962658165972, 13.145914522886875, 24.209081748034386, 141.08353085021298, 58.2457131881285, 118.17554730285305, 14.226979379200557, 16.700635306618956, 87.38637935933976, 28.22371102626796, 41.73045142943826, 25.442842801070185, 11.987684716779691, 6.2480983714528255, 14.747400351288588, 13.045539576974562, 49.610676605115614, 33.51147963337495, 51.60128911610414, 15.760449652220883, 170.69242514940964, 20.896890813398407, 34.64578072649664, 33.07704647327678, 72.20949032465083, 6.780000400914759, 93.73886342675294, 22.78998034347993, 59.79201412484808, 85.36242020049993, 26.288208181990907, 49.327409615632774, 71.94701999836178, 7.685053566454005, 39.185092048912914, 17.99675616066847, 121.9403901786994, 198.9989101583226, 12.373972914713422, 136.43423007994818, 31.187605644822913, 247.33734756952813, 19.229901981982426, 45.709488728928925, 16.996728635178783, 32.35551891121284, 59.87900910778024, 73.80834015155757, 66.79226446014854, 16.286849139778493, 46.11477782896943, 7.07713810056185, 12.569534741871312, 22.90926790833609, 61.05270547283847, 80.90549883940709, 111.02762117147338, 49.46722423685192, 63.2154616180936, 31.451296807498778, 9.246957059689432, 67.91674640097449, 12.464688379696646, 93.57273799773652, 76.28728327032807, 160.73688354648206, 65.51502105839982, 11.869259376391813, 27.147813309877108, 24.968320000629824, 9.653890555514415, 67.83098801550074, 57.58512559477312, 72.57554062272392, 7.979227285274243, 10.27421774156915, 20.790076994489187, 26.645441077515216, 22.634890270388, 53.80186084114503, 32.28631996433495, 17.648697084405406, 33.566820268110085, 34.42950298248211, 20.671311488410964, 19.254995785516538, 43.403618721202, 10.048268496561708, 6.7791219760037915, 18.971153762218965, 44.20209305681044, 15.794562173916793, 41.28596566814565, 14.462581694658741, 29.382971368864645, 38.6227328195772, 10.184748465333165, 54.756721704809706, 169.13142780307248, 44.965700259446024, 267.9371942373824, 8.630306260237363, 51.62134377678094, 16.63646629529959, 12.608622139323556, 6.513488484429896, 17.56903314598823, 14.334678339245023, 93.43040032263715, 81.30190396454559, 22.899059295844832, 17.314050960625828, 38.15850753294371, 112.83066119578393, 133.4654421521704, 71.2361387249266, 12.566500621222545, 24.962749819208728, 76.13017641785768, 128.4761095354096, 7.997887860551959, 59.7761031129582, 33.44935952033884, 44.91755964938292, 325.74598065237416, 57.09994776390951, 22.753791321555244, 22.971436416516603, 273.2369330996676, 7.8951284508726065, 25.987650040643146, 104.33161490134108, 67.90588142601571, 87.94370673756303, 65.17964341565227, 27.82493815536565, 56.9794411081228, 141.6160433389154, 42.72681089468392, 30.559090935199855, 25.379549727068067, 5.04950627255378, 39.88051819399397, 5.854771455814709, 40.192776470975446, 65.86727119993613, 75.39508723081262, 139.21739291866115, 51.90928127777453, 88.0390958873197, 158.4159920213231, 43.107887281399655, 100.78220003685763, 61.05617654895215, 45.82534583584436, 11.724139410316818, 10.600624709489786, 52.548979671071365, 133.6867914430579, 19.95055791549599, 62.83300422910874, 50.05406199996686, 38.61653165778518, 28.441381167797, 48.59519170201699, 5.8792232778825575, 5.858703816243145, 86.79518645349563, 21.677196144703366, 79.52614190512979, 82.594210752814, 68.39567163369185, 55.40267843279015, 75.34361247925843, 118.83960677772811, 33.36111249875999, 27.138403994793094, 26.70379688183978, 17.50936767513634, 40.056641391558486, 20.553992707628723, 9.858615315755241, 58.45679788460446, 97.08888884308462, 55.178224820329476, 7.133804532425614, 36.01414212103105, 12.489404368023703, 74.49289240099549, 95.98093053172963, 132.49801177368278, 5.1836115416166315, 38.61171036385338, 49.42435985644713, 31.577759687836412, 50.08772748228059, 68.06759896223527, 18.581584213613823, 79.31287721265333, 20.200189929709556, 52.23356790188064, 5.1922565977660815, 67.2985271928333, 67.9127961091432, 6.560730306941144, 21.58020784331661, 56.84274357902458, 23.690452995073997, 169.01662799368873, 96.32588544159073, 63.86527732309305, 40.47601774596299, 66.15651809513867, 43.47610647161529, 7.622034018067078, 11.77312562275922, 19.70128522700978, 6.7432013331108624, 6.045001900500129, 19.688103970208907, 55.02963480392181, 18.541034261240924, 31.65016689032665, 25.76302362441545, 10.657105527882486, 13.754565451999643, 58.28094416881438, 24.441978139463334, 38.136645475398986, 75.79410235231356, 11.999401723802237, 16.948696917267828, 18.80654091804083, 5.57164340431385, 91.71987349480244, 25.849514386565115, 69.41774336168788, 77.66287617776811, 40.93158817300362, 12.758760137644703, 128.4409722671, 6.1934873621122275, 36.02588750909756, 74.4170283884466, 116.332941852549, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3345126.5625, 4720771.875, 4927151.708911153, 4927180.847437944, 4960046.826565196, 5090900.292426134, 5092437.390274146, 5160676.487895571, 5181710.9375, 5184009.211993995, 5185861.606485753, 5187395.170242592, 5188678.125, 5189031.642702421, 5206162.365602215, 5212389.0625, 5231097.156604438, 5240784.375, 5259789.987281547, 5268096.671926621, 5270644.654632501, 5273138.150850372, 5277906.25, 5296737.312260889, 5297433.240261995, 5297523.963789882, 5298879.674410199, 5299098.65183809, 5299509.143572804, 5299566.794129912, 5311129.6875, 5315084.012196225, 5319076.5625, 5321050.608492625, 5351544.757409084, 5353206.187842989, 5353396.574254021, 5356751.5625, 5358106.25, 5358641.118698606, 5358838.866160065, 5365756.164780274, 5370708.587613197, 5371457.34977071, 5383213.160605356, 5384496.875, 5389500.0, 5394244.1763348505, 5404802.150912898, 5408528.125, 5408548.139845599, 5418556.36244457, 5418624.20887251, 5425651.5625, 5426101.5625, 5426109.180812061, 5426739.388471933, 5428843.605036028, 5429432.882963703, 5431670.3125, 5432473.4375, 5436223.127978786, 5455693.71906606, 5458078.393698113, 5462859.375, 5473136.914913904, 5473290.625, 5473651.135026824, 5476735.858074119, 5477598.4375, 5477630.950690457, 5478699.418587185, 5481438.992521192, 5497917.334559824, 5498283.255140945, 5506060.429170579, 5511653.125, 5514593.75, 5515228.125, 5515320.40520336, 5515618.666226013, 5515670.801146481, 5515738.680477479, 5515938.21006532, 5516304.567795918, 5516362.073386884, 5516691.06053881, 5517315.036388099, 5517659.375, 5517944.671790637, 5518097.003206011, 5518413.775172427, 5518673.170251677, 5519990.625, 5520023.50486756, 5520033.074544011, 5525681.25, 5527139.0625, 5546474.808704798, 5546664.0625, 5562457.8125, 5564692.052177972, 5568365.396097217, 5575738.705616694, 5577387.937881344, 5579139.0625, 5581212.408229483, 5583499.88309987, 5586919.560131308, 5615515.625, 5615692.932727093, 5616020.3125, 5616941.3676617425, 5618161.621747767, 5621063.666790521, 5622854.947916831, 5626476.770078583, 5627537.5, 5628506.169147521, 5629442.1875, 5629839.075350563, 5630028.792303508, 5630355.031155221, 5631513.287018394, 5631643.75, 5631683.416174859, 5631917.1875, 5633219.522434173, 5633789.494707303, 5650400.242782555, 5664101.482029506, 5666796.599101397, 5673116.273766217, 5695226.5625, 5705093.75, 5705805.4993235115, 5705822.604655591, 5706903.367938427, 5707768.75, 5709245.284401443, 5711978.871956206, 5712524.049422391, 5712635.9375, 5714650.0, 5714790.721672586, 5718870.434592277, 5720426.5625, 5721373.4375, 5722832.684304337, 5723076.451803438, 5723240.625, 5723506.25, 5724431.25, 5724643.75, 5724715.513994013, 5725550.0, 5733849.758088487, 5742145.774422872, 5748324.312201328, 5748779.581067388, 5750543.75, 5750666.222596072, 5767860.9375, 5768084.48720084, 5768376.22096003, 5768687.467949624, 5769621.153922079, 5769986.126316528, 5770052.392223741, 5770212.594937322, 5770772.471525865, 5771603.125, 5771821.875, 5771986.458123202, 5772343.6167867705, 5772802.222159725, 5774301.5625, 5774439.0625, 5774857.777745693, 5775581.062603063, 5777117.28184814, 5778184.375, 5778332.8125, 5779484.375, 5779663.31510979, 5779690.15421741, 5779737.5, 5779770.3125, 5780150.234574644, 5780209.759379953, 5780271.875, 5780668.75, 5780774.44333105, 5780830.071363996, 5781264.572510868, 5781349.946065557, 5781448.116637162, 5781636.832162043, 5782229.6875, 5782412.340538574, 5782870.0873226, 5782939.99169072, 5783053.707782569, 5783132.645186525, 5783742.1875, 5783831.25, 5784185.616093384, 5784325.694834087, 5784396.525030662, 5784610.783866257, 5785496.535783557, 5785684.375, 5785696.024646088, 5785716.705535819, 5785723.67788406, 5785752.713969768, 5786459.300572127, 5786604.6875, 5786768.556990065, 5786890.226348462, 5787373.104154617, 5787456.94392608, 5788102.971483857, 5788677.229375837, 5788701.938797897, 5789124.911938978, 5790754.664267252, 5791824.844953973, 5792525.0, 5793130.947921623, 5807219.494336487, 5811443.8889167225, 5813567.1875, 5813992.955839932, 5820226.5625, 5822186.949885239, 5822544.540344435, 5823314.0625, 5823355.473257494, 5823440.625, 5823507.8125, 5823797.6077432595, 5823835.9375, 5824010.81009873, 5824096.875, 5843420.251914867, 5843595.3125, 5853045.3125, 5853677.944578249, 5854485.9375, 5856310.9375, 5857665.625, 5859288.825973261, 5860222.279829248, 5861232.62597597, 5861367.141598305, 5861446.854400193, 5862055.784468636, 5862085.074894127, 5862265.250286197, 5862348.2420199895, 5862469.955601938, 5862593.75, 5862764.138507935, 5862827.966716582, 5863296.605749397, 5863561.6105796425, 5872344.174352403, 5879653.199888664, 5895198.4375, 5896712.741962213, 5897542.950994452, 5897563.014524145, 5897734.375, 5897800.0, 5898291.982188717, 5898298.431122567, 5900211.963061834, 5900691.961397601, 5901237.5, 5901427.123775889, 5901449.227202484, 5901776.507910071, 5901975.973646952, 5902306.04652026, 5902485.9375, 5902706.25, 5903101.469727045, 5903620.918849768, 5903831.25, 5903915.003652044, 5904281.064480091, 5904536.602420969, 5904777.910133217, 5904903.125, 5905140.625, 5905218.75, 5905230.467821266, 5905483.971645162, 5905693.675195119, 5905926.605289588, 5905965.923495913, 5906112.5, 5906171.918033528, 5906263.753708958, 5906397.065748204, 5906398.4375, 5906979.8593787495, 5907083.218760872, 5907180.2290106425, 5907344.4744881615, 5907344.919364228, 5907712.194606642, 5908144.593932807, 5908292.972455523, 5909326.5625, 5909446.875, 5910065.309404188, 5910848.056037848, 5913454.228405082, 5913665.41449275, 5915680.187039963, 5916988.707480677, 5922134.070662125, 5928492.771590486, 5929254.709669918, 5929275.4481273, 5929935.772849683, 5929980.563052717, 5930496.778143451, 5930640.625, 5931969.273590378, 5932074.402104035, 5934424.468937216, 5940391.062610895, 5941733.536756464, 5944472.699534525, 5946060.9375, 5952053.125, 5955267.1875, 5957263.733295412, 5958159.2056589415, 5958806.25, 5959426.5625, 5959945.3125, 5961700.0, 5967165.190675778, 5967914.788420352, 5969916.522198052, 5969952.477657851, 5971226.5625, 5972951.022719338, 5973929.813701077, 5974752.575532954, 5974903.388811253, 5975126.4227638645, 5975526.502381454, 5975875.860810558, 5977303.283511302, 5978566.624175474, 5978567.072305294, 5980419.575415895, 5981126.31783991, 5981663.708232186, 5981669.586520888, 5982725.63057239, 5982972.125580902, 5983313.3793056365, 5983498.397212689, 5984008.867168347, 5988483.425495283, 5988600.355054579, 5988858.173323026, 5988900.0, 5988925.437240715, 5989694.983355998, 5990179.6875, 5990430.760420427, 5990913.491532668, 5991071.688503555, 5991130.17035638, 5991355.550766238, 5991983.976187794, 5992225.872911403, 5992232.459441922, 5992609.329039245, 5993263.079395568, 5993281.25, 5993510.005592356, 5993527.518743772, 5993584.375, 5996820.223938846, 5997245.235521478, 5997332.323728643, 5997717.021442058, 5998472.822059201, 5998603.125, 6000440.065382286, 6000775.0, 6001429.48338179, 6002841.43031773, 6006494.350130767, 6006693.75, 6007804.6875, 6007913.86940878, 6008557.8753678715, 6008928.125, 6009200.331710756, 6009460.480353118, 6009556.25, 6009766.809137693, 6010171.875, 6010244.52594265, 6010262.682541649, 6010681.139770233, 6010788.582941766, 6011019.709533677, 6011214.989190427, 6011519.109140425, 6011560.54527765, 6011734.529156502, 6011843.75, 6011905.913694224, 6011923.4375, 6012110.9375, 6012166.600788346, 6012175.739073191, 6012216.516411191, 6012247.658814425, 6012284.316706621, 6012614.0625, 6012818.75, 6013239.687389018, 6013856.25, 6014133.285406889, 6014328.983021427, 6015244.167361839, 6015292.093321436, 6015751.5625, 6015942.499410666, 6016010.264226048, 6016276.5625, 6017007.000968599, 6017727.491546844, 6018211.854503634, 6018949.364242828, 6020082.695333336, 6020234.763926532, 6020692.316885183, 6021409.375, 6021440.175352095, 6023524.724868731, 6023547.342400044, 6023797.109842588, 6023953.125, 6024437.5, 6024729.67061453, 6025855.092709786, 6028352.176928163, 6030095.285319538, 6031100.820483878, 6032418.689571462, 6032594.0871728845, 6033108.333378292, 6033730.092048356, 6034394.233464248, 6035068.75, 6037032.8125, 6038901.153065338, 6058189.873503609, 6059690.625, 6063178.818681311, 6064474.68392976, 6065902.747404285, 6066032.8125, 6066614.0625, 6067034.065554926, 6067687.582855115, 6068455.100414767, 6068494.061926494, 6068535.543061324, 6068920.794240993, 6069304.670376703, 6069774.702864199, 6071612.2590947775, 6071702.709875386, 6071724.721964649, 6072066.530228987, 6072457.759578015, 6072465.374363557, 6072658.446025793, 6072826.084241361, 6072859.952818304, 6073003.125, 6073514.0625, 6073767.805015914, 6073779.6875, 6073915.287041372, 6073988.891315976, 6074031.247654893, 6074146.875, 6074246.058767525, 6074384.375, 6074600.0, 6074802.997291724, 6074889.3335112315, 6075042.1875, 6075111.235142064, 6075123.4375, 6075181.25, 6075183.4345027525, 6075196.802795234, 6075388.994498559, 6075809.01642387, 6075830.437935878, 6076017.168634683, 6076207.1599103855, 6076275.0, 6076601.459855532, 6076711.792099168, 6076796.242597832, 6076897.307960244, 6076926.5625, 6077002.719603759, 6077104.6875, 6077151.5625, 6077184.323829025, 6077401.270097443, 6077720.120931093, 6077890.3999022385, 6077909.375, 6077924.131420841, 6078126.5625, 6078560.354177815, 6078614.0625, 6078681.25, 6078710.291197089, 6078757.8125, 6079014.01632359, 6079049.680925258, 6079092.1875, 6079141.784034136, 6079312.5, 6079421.875, 6079713.806605744, 6080046.20983086, 6080179.6875, 6080287.5, 6080492.606277586, 6081053.156988167, 6081637.237604025, 6081716.57507027, 6081787.335121802, 6085975.0, 6087829.6875, 6087911.227698584, 6088112.38421765, 6088226.5625, 6088251.2444752315, 6088254.251640753, 6088634.305891857, 6088763.314423192, 6088779.272714821, 6088981.89951654, 6089684.814755003, 6089924.9904418215, 6089978.541924588, 6090112.396898401, 6090262.629584107, 6090590.625, 6090635.9375, 6090777.3944939375, 6091817.1875, 6093289.0625, 6093874.994204136, 6095922.557005529, 6096498.4375, 6096928.69676592, 6097067.724595765, 6097617.8702191925, 6097889.0625, 6098121.875, 6098371.906623046, 6098528.125, 6098928.125, 6099491.222714057, 6101793.126700556, 6103958.886848144, 6105209.375, 6105772.691534004, 6106162.5, 6107691.785277775, 6110210.9375, 6146809.375, 6149135.199099114, 6158257.46961188, 6161910.9375, 6169412.981532966, 6171648.140950814, 6179173.18070956, 6180381.25, 6182715.863709352, 6193217.097782429, 6194171.875, 6195259.375, 6199684.139827595, 6202915.5219421275, 6207062.251752559, 6230228.125, 6231254.532535849, 6232001.466718805, 6241267.4574463405, 6242895.3125, 6249001.587981728, 6249868.75, 6250347.0836688755, 6250415.018069887, 6250417.112944846, 6251590.625, 6252207.8125, 6252437.5, 6252589.9126592325, 6253223.4375, 6253859.581558499, 6254031.091383932, 6254054.6875, 6254221.875, 6254456.615979766, 6255017.07584253, 6255727.830416265, 6256432.543169497, 6256661.278877395, 6259569.122822867, 6260635.811561088, 6262210.9375, 6262228.402196157, 6262592.1875, 6263298.477474193, 6264657.135502751, 6270804.475637357, 6271896.875, 6274717.140546859, 6275957.0234630825, 6276732.8125, 6277543.491582424, 6277604.623822839, 6277781.25, 6277849.642489037, 6278071.020017952, 6278628.125, 6278661.317913244, 6280268.75, 6280342.984877221, 6281823.4375, 6281828.125, 6282950.233989713, 6292167.1875, 6293359.124924969, 6295176.262086742, 6295762.164865173, 6295806.778626315, 6296423.4375, 6298561.381771145, 6298927.20926711, 6299825.0, 6302521.381475343, 6309979.339243001, 6313268.530003657, 6313657.134428281, 6314201.3483893, 6314375.0, 6314481.93783926, 6315287.787031765, 6316510.062134127, 6319313.424497834, 6320760.963368621, 6321229.6875, 6322115.390713195, 6322449.696610519, 6332203.125, 6332422.173112238, 6334844.09942201, 6334914.818148911, 6335411.364821501, 6336230.953646974, 6336546.654050029, 6336592.474647064, 6336603.5738152005, 6336923.4375, 6337071.930707166, 6337171.19660988, 6337220.495648352, 6337270.3125, 6337286.11279701, 6337510.949985878, 6337516.279675982, 6337540.724331999, 6337596.875, 6337926.5625, 6337952.354699349, 6337962.0197932, 6337986.580279012, 6338031.401875875, 6338060.660092899, 6338064.492345786, 6338076.5625, 6338193.425021427, 6338196.875, 6338202.792136014, 6338243.695787026, 6338274.438335027, 6338286.959365871, 6338298.413145971, 6338335.9375, 6338345.3125, 6338360.9375, 6338365.625, 6338434.170652529, 6338507.654048732, 6338619.163602688, 6338628.832460248, 6338813.9665701045, 6338857.8125, 6338982.358162593, 6338993.736002045, 6339006.007940059, 6339229.093137509, 6339233.324310137, 6339692.549347543, 6339783.957241949, 6339927.293858032, 6339930.995505849, 6340270.6989076, 6340318.75, 6340333.603271122, 6340645.914520851, 6340900.112701491, 6341287.639927316, 6341397.611875432, 6341884.375, 6341895.077668208, 6342086.36514611, 6342117.0617830055, 6342219.204231636, 6342439.015122588, 6342599.0389351165, 6343007.764356715, 6343071.875, 6343096.875, 6343347.01973907, 6343922.323739723, 6344209.798298219, 6344559.338041459, 6344679.497813256, 6345453.016506344, 6345524.66852927, 6346599.432884074, 6346772.2132215565, 6346841.892961775, 6346954.6875, 6347101.010103795, 6347242.437774861, 6347401.691264377, 6347413.914815077, 6347428.10960177, 6347516.97557432, 6347523.875838536, 6347773.9258481935, 6347835.784813601, 6347898.81405921, 6347941.581780409, 6348228.125, 6348469.619171885, 6348496.875, 6348508.011956322, 6348644.8204857735, 6348752.563081097, 6349093.550464657, 6349342.037914913, 6349423.4375, 6349818.832059304, 6352495.3125, 6352916.808369539, 6362542.1875, 6363214.0625, 6363529.563186716, 6364096.875, 6364487.5, 6364739.28318205, 6364837.5, 6365168.412608859, 6365598.4375, 6365846.875, 6365911.611193824, 6366690.0987243205, 6366710.9375, 6370341.794157728, 6371274.2386495005, 6371320.3125, 6372080.275698092, 6372139.0625, 6372144.859764161, 6372242.1875, 6373463.541133209, 6374216.557564461, 6374593.75, 6375654.516198193, 6391289.823395376, 6393427.265168226, 6394124.558630108, 6395000.0, 6395156.25, 6395414.0625, 6395795.3125, 6396012.5, 6396074.898412084, 6396698.4375, 6398672.589665862, 6399346.865331021, 6405004.6875, 6405693.162662472, 6407567.933964466, 6427756.677719174, 6434048.363840063, 6434253.250231162, 6434733.170760785, 6434747.964820951, 6434996.875, 6435214.0625, 6435241.557260042, 6435280.625478463, 6435466.614014046, 6435714.447947696, 6436000.883008079, 6436351.5625, 6436352.416328236, 6436774.003323723, 6437215.625, 6437357.8125, 6437385.350975118, 6437636.980751507, 6442292.1875, 6442455.428900304, 6442909.452716945, 6446652.328620612, 6453814.803467868, 6455691.582621801, 6458188.789687815, 6458640.49340486, 6460211.643826436, 6460795.3125, 6461050.861955764, 6461625.0, 6463056.742945877, 6463094.755547391, 6464401.223281623, 6464603.722964133, 6465153.125, 6465481.223992161, 6465705.46533016, 6466378.291352369, 6485286.255303023, 6487771.706127797, 6488005.493311448, 6488820.496131233, 6494526.192765725, 6497627.198127444, 6502899.942024642, 6505811.019210825, 6513224.7633321, 6514929.4206108395, 6516341.384574102, 6517851.351808346, 6518580.348298385, 6518706.140575736, 6518921.286041641, 6519640.625, 6520212.348326079, 6520260.9375, 6521640.618853825, 6523577.509409165, 6523880.391760392, 6526968.893975311, 6527246.549329021, 6533181.990841442, 6533357.6695269225, 6534793.75, 6534875.0, 6536420.3125, 6538429.026403684, 6551408.435370142, 6553203.125, 6555580.086457165, 6557372.915605814, 6557488.585598911, 6558187.317643532, 6558241.092215012, 6558467.1875, 6558617.72398561, 6558690.214510751, 6558699.628942139, 6558937.5, 6559562.5, 6559868.75, 6561481.25, 6561853.389551395, 6562762.5, 6563021.545004777, 6563181.25, 6563490.625, 6564959.725773213, 6565332.4469158705, 6566589.883698529, 6566748.009224007, 6566902.455091107, 6567223.033136752, 6569448.4375, 6570379.6875, 6570770.308256433, 6579264.0625, 6579268.031976647, 6587030.274184595, 6590320.3125, 6591393.268258822, 6594480.901258197, 6596963.839760786, 6598535.9375, 6598556.204532714, 6599229.6875, 6603481.135022313, 6603953.125, 6606497.619269283, 6611771.775661954, 6615181.792379422, 6615339.0625, 6615469.712907521, 6615791.188982206, 6615999.865851688, 6616286.017552525, 6616304.6875, 6616634.421784901, 6617370.781964169, 6617956.975670898, 6618939.0625, 6620081.25, 6620537.831305655, 6621030.454238517, 6621385.9375, 6621831.25, 6624004.6875, 6624498.4375, 6625351.5625, 6626111.648481124, 6627908.992485803, 6628891.547328718, 6628976.5625, 6629040.181031333, 6629231.25, 6630120.3125, 6630744.204208712, 6630791.696188015, 6632178.125, 6632201.257765517, 6632237.9376142975, 6632407.638093089, 6632646.875, 6633084.375, 6633542.453844832, 6633751.921428061, 6636728.176671795, 6637998.814582593, 6638826.28010364, 6639001.459933824, 6639846.450114236, 6640278.723238504, 6640434.61641892, 6641112.64258857, 6641275.432497869, 6641281.643351477, 6641979.364007696, 6642123.170617245, 6642175.227006865, 6642301.314753929, 6642365.8572633015, 6642616.412406953, 6642741.1192449555, 6642920.755301936, 6643085.1181836035, 6643514.832262268, 6644075.118997056, 6644085.7857760545, 6644574.677073828, 6644609.375, 6644643.75, 6644796.153916665, 6644828.125, 6645086.893422473, 6645534.102177763, 6645698.4375, 6646157.250861749, ...], [72.98008536744166, 41.94293776420038, 6.510290024826543, 31.818266614112517, 58.98648861758515, 16.187001171351497, 33.43176802796768, 5.52947067512479, 40.9301597905862, 19.930572003899123, 41.73334556993399, 46.111184132488454, 51.143166440987926, 38.239427678881455, 9.220290175336748, 54.36446358294507, 11.598378245767279, 70.04187012193913, 20.221136981899914, 25.073180266160144, 8.830879256039202, 8.663608595899497, 30.43070954105962, 5.524037819964344, 8.526525632275026, 6.57288270589736, 121.88335187854628, 22.704300384435474, 32.405073077061154, 91.35674445708233, 111.44456181902336, 8.103607281117784, 132.79889908446845, 51.84267077690422, 20.960596056632138, 146.74032060978934, 103.985438432417, 67.82972713806365, 121.5202840375823, 7.792124351908975, 14.242480823804334, 6.746611540701925, 12.602326104959122, 6.041265955349953, 6.595885279101685, 53.03942047316642, 49.75870376035932, 16.860545765362488, 12.19150003650163, 52.18269435834159, 31.87366766564385, 8.346948666379303, 5.2235299159700945, 35.92655978432874, 43.812035826783806, 15.978547876124772, 16.34883851714, 50.85734046873641, 11.23966174685963, 93.91320509239665, 58.06891569952374, 40.63940268543664, 122.55545620725175, 23.921494220917207, 60.94749523768386, 16.907396825497077, 72.14376670958879, 8.072758421952122, 66.68342074394756, 86.22200951909008, 10.69001818038315, 13.108471988757957, 34.49032110215942, 20.940600436453593, 24.298382443543836, 21.41041028392914, 102.82650775799647, 115.366232817056, 45.580700631167915, 36.54543384984525, 130.64438615323533, 11.988276561331723, 13.661205081815941, 12.454400476498666, 37.51913321876978, 22.257803250368823, 42.13622292612925, 13.089738318466859, 57.94082989312879, 6.641997593609289, 9.44221347294609, 55.41962583798082, 33.98206380854005, 43.87775328718373, 23.05470322727607, 16.044144410207394, 40.3900954669737, 57.79270065559073, 14.25928616743167, 29.5168871967298, 48.30032330605944, 6.250251467134937, 14.135360078032734, 23.0503492304832, 14.398950404071249, 56.95757200758105, 90.71576422421205, 26.409942692958364, 19.297728493299388, 29.14405792584125, 214.0692764340938, 59.99342785692285, 8.72266551533264, 12.39714604274937, 22.600611343517393, 120.44216275117091, 14.99431261867859, 96.96943787386323, 6.079731434700505, 79.7271477779728, 14.990717016322968, 7.308656267452037, 69.37879582211848, 12.62998533549601, 40.94760643400274, 99.45644106550657, 91.15425209141208, 12.59612736445968, 16.891840300649637, 13.963544938195062, 31.63477945753908, 64.21369038917595, 228.106278590252, 132.7284949930049, 29.68212938567486, 19.310576463829086, 29.663011837292935, 15.156766369126855, 40.88498944003773, 81.59234181990541, 12.537637639127752, 38.09929671780594, 70.03072225138853, 39.29159381806517, 6.502353041769151, 14.578473413371697, 45.75715549818601, 33.14403393500393, 45.147259979676925, 14.535729852868027, 55.08748426213836, 52.267479207540305, 117.4587991518155, 66.46066689034943, 14.534639110770696, 34.93200661460507, 91.43318998838595, 11.93561404467792, 89.35739469186413, 34.248888028234084, 30.4811169864138, 26.17281809759881, 56.94796626518201, 15.38713661180272, 95.27494195679863, 40.79778212732508, 10.161043461549088, 58.808476146420745, 114.96587943153492, 15.316149073174158, 17.83567966415444, 30.642676139395643, 37.588151455245054, 175.12964776977304, 14.456961878113429, 18.237175287234617, 105.61651509741914, 29.614688927623945, 54.83384416186486, 90.86242072596771, 87.50762893248564, 28.76516878258666, 55.5058166627711, 109.18537378611593, 5.370650510521276, 86.59413716471676, 106.66663483846357, 107.33494853723492, 17.63291934834083, 5.552031132678535, 40.574880879642116, 77.29240666147406, 8.01261746940864, 87.26295966942607, 9.803395370082482, 52.88836160193523, 18.23789749441656, 78.44051545069206, 45.9917467166899, 14.366662307509694, 24.755984091147372, 5.320678942302963, 27.646645801640858, 41.87788530465745, 51.09407430033495, 32.988065240284975, 64.54144773670373, 17.61906210013395, 9.052034889884826, 59.13871380760402, 173.3142116064469, 63.98599020304137, 36.320232611077444, 13.375714813867495, 24.034210522990865, 13.576501957350189, 96.56860089855424, 62.88681828688135, 15.782987578988813, 64.72260874876007, 23.33394487831438, 12.418514327309426, 25.82144106630395, 50.0252536006257, 11.771655176067092, 26.896648017714366, 14.85369035317262, 25.79753457544235, 93.78095411602345, 95.21801198031244, 98.78103490768383, 92.78448950566292, 40.19470167556516, 24.28588789377325, 84.67909616088241, 152.7083833744694, 288.0296360893023, 79.86992241766082, 10.097737843969231, 81.08929310781414, 43.01214241926109, 75.82389181230585, 52.88064723028004, 89.31662842756296, 130.10331601482991, 11.034310663705577, 65.9358865070303, 57.289920759505506, 24.667078652199038, 59.60115056509423, 66.707826948852, 103.94126290050714, 31.931533186819532, 8.512924661161263, 52.50947235410671, 14.769393107709858, 28.123546746614696, 10.47047078039437, 25.37842633137693, 66.64912931257903, 58.4994468548709, 20.949881165543225, 39.57250641209335, 15.23935242686958, 5.525447545875247, 24.151633236733424, 18.32561576747023, 130.60439361100396, 15.234845161044872, 75.91664633723308, 11.528213113777165, 18.952116900676636, 233.90850437336044, 70.39122294777823, 76.46740615602013, 10.821272209205269, 148.95424111801114, 5.153042473623435, 14.144481259123975, 73.47696969542648, 12.135161039781524, 13.201413142132665, 27.489142832098523, 20.6502854890044, 27.50929610400631, 166.26456778569087, 96.59588506585403, 71.36484543628242, 33.618124932186014, 38.58461510086886, 115.45152538810743, 25.332183279922553, 18.271714553900264, 74.90391871188523, 32.549045830384834, 37.397884193301905, 70.78885094714052, 5.36939088155765, 7.463587420223436, 27.12764020605855, 7.132745350201876, 16.34964312486504, 122.08139227245263, 15.884928231605313, 9.083273191886619, 42.61546732018039, 46.3368757324154, 29.982276158083625, 5.975583640120215, 15.556650826080372, 18.67508305698113, 22.629753508730456, 13.892618940176208, 19.55861566772842, 36.31663907817547, 42.41865985402109, 89.52876120177055, 36.71635375486164, 17.44796812920893, 76.1248802518695, 147.6750946436548, 75.8386350239732, 46.31878628046961, 131.52007984633792, 12.182471861471162, 6.767940706442316, 51.825323803827374, 75.2533294292434, 19.81103795798603, 14.584756433049305, 36.94726683828823, 31.05185260823671, 10.306203477850163, 8.024382876447067, 75.33730739690974, 6.917258262010746, 12.718369839607849, 64.02684678239635, 52.066766903774486, 73.34415998959064, 64.53196868130165, 5.126899476747673, 33.1509213192237, 50.64723086481111, 61.95856359227891, 40.50647109136254, 55.61566413132407, 153.6534596296133, 57.85391242668898, 42.264883853249316, 115.46844550961612, 30.693286817803504, 15.445383141761852, 19.86916411249365, 192.31227653462767, 26.03919686257332, 43.63232650440193, 106.23086970596896, 15.48337158721988, 13.15589761410698, 6.469183806675566, 19.414581957361467, 24.156917583257098, 83.14513851657802, 39.53844848160931, 7.8484218570076445, 6.114550914356621, 12.850841647324259, 114.67737914904615, 6.666187097580613, 17.938162920493397, 5.97093395971556, 16.52172204096955, 30.01974637842662, 36.669422568936014, 23.385471532532037, 90.73398820500871, 46.353635014906786, 283.79861339098557, 157.78305905773317, 11.976804529873911, 80.57309454127508, 77.08119694485525, 134.44755651371796, 41.46900225873528, 57.63613042058677, 7.8271589358619975, 155.12309062158266, 12.280702797274508, 13.044160361422476, 95.33784526805472, 8.240293439063057, 80.0446998056134, 32.55743689508907, 25.627015814045716, 36.01697998647211, 100.20362649996106, 57.659760504365956, 61.87806792044849, 124.02509203551173, 16.249853561190637, 12.216079857599457, 177.83125635850024, 37.42144637692338, 25.21967867295279, 86.96212887984757, 91.06301023452684, 41.34061371778715, 103.21839401481459, 105.873628779354, 8.096139044498534, 31.412332266477286, 361.0302032288281, 9.490674006545058, 41.94229495191494, 106.37653870977536, 28.06383879669398, 20.23747704889229, 16.51326102400617, 7.467281326280249, 14.956379864462411, 68.28678221164279, 33.85710637843812, 106.96944982510976, 70.93369565183167, 147.48914557405527, 18.77743205815971, 19.94081507074605, 25.099020095068347, 14.723881857239624, 58.33533724664151, 70.29507364703326, 59.24627951542699, 95.94803408634904, 16.785574401349063, 23.68216870584948, 22.186322904532336, 69.09839880889936, 152.53868726871923, 55.06453251104986, 8.820356853601643, 67.20877786576558, 167.78696165115056, 20.25769447773461, 7.972378957000035, 17.115270950839715, 35.71646348842705, 86.94544044464757, 24.54593766801697, 49.29959162489901, 13.078167650045458, 70.69434717738082, 11.94634841692272, 6.297332094170842, 88.35292270615574, 107.99381194495058, 84.01966805797842, 29.597756380536584, 17.947152846763316, 48.56442562884549, 93.2891288662938, 27.383558962398773, 11.699068726750145, 25.877791621219398, 16.745795138950598, 17.171778585146427, 60.12814395975915, 37.5649438035613, 90.61538429838518, 6.936990008190377, 65.85483705709801, 8.69096010518208, 73.1666159645487, 10.584691643989155, 70.69027173355848, 31.132159555253214, 13.880095862368602, 11.259732349319167, 29.034962118726718, 120.92639012383351, 55.807621509493835, 17.162164450686728, 15.678018139203619, 78.84400792348445, 10.770937784669785, 22.383729682731733, 38.19514908149445, 26.81462164444661, 218.4199499973564, 5.917871799530279, 109.08428842854222, 13.385987535905553, 17.7211267514765, 72.69638093132906, 45.85890526190262, 12.252832302949106, 44.440201577763276, 88.36775167692949, 96.70050888664066, 50.154381172631524, 57.30334466306277, 63.2477514295966, 68.03678124802042, 108.03156795786802, 50.324669242529254, 37.31993204288911, 74.35757528998278, 13.349657051645686, 32.535437839593, 74.3561294848931, 17.994874153674747, 14.673259937205268, 11.461299196317484, 82.01068276670395, 18.85818681053735, 87.00803933170587, 20.094980178422745, 31.184026059708575, 26.64787647708947, 52.57195596406241, 18.473955128590426, 9.726448959695963, 202.82871391540374, 15.842493707464067, 31.221338598041203, 81.00788211720233, 14.74999184756006, 34.24645519360692, 131.62508236428027, 24.75710949619401, 116.9961217324664, 54.92730406242946, 45.70808908236312, 170.06132237135978, 46.16331650194992, 30.203476770094255, 7.972017629222377, 133.60111425768793, 43.83212675905554, 37.67946136071341, 36.727727168956534, 92.69138807310266, 86.20224825255373, 70.36037505648522, 64.02984150994305, 12.895358797867516, 95.97563307263438, 53.011623909280715, 57.84324460512799, 22.165447215574016, 58.40744370267148, 5.581038307331534, 27.96825746146507, 167.99053276344216, 50.81384612345068, 51.88691644353095, 26.42841545334228, 46.016489944862286, 65.24030636948723, 145.90819598037098, 20.642755984690638, 6.937774019328927, 200.9615142686443, 8.662762335832058, 16.932292720495205, 28.337180136236753, 387.6498040825149, 5.039810746246569, 11.336481712432732, 126.0686925507481, 96.2003782298531, 39.43191110931024, 30.905509380049935, 187.00221177036943, 20.851768641295934, 18.385065325915342, 117.94594714183731, 59.71602688019813, 12.08563735797236, 14.701375478391963, 85.52575436871571, 63.33862821019352, 8.303371215928308, 86.67833453372323, 112.16562000071679, 39.656317064909814, 152.26927849129976, 27.016151084077766, 66.48867763752716, 134.09674287853568, 69.21798396876225, 13.602058382418322, 114.36424113419777, 143.90595979736187, 47.68430695511603, 126.56278353277997, 74.26490179651697, 17.16100482529473, 104.63641130893524, 41.20502231933301, 214.24108646054793, 26.60721207673324, 10.99030959063503, 30.097372052644506, 31.090593641684137, 15.260923482541566, 61.307406174381825, 55.35270385661843, 60.133814745259585, 25.79881265564524, 26.76426652813344, 71.37514965091282, 38.379295092583384, 11.167771352220818, 54.56698846194429, 33.75658381398004, 30.345369746798077, 27.132037172245294, 43.99667338237195, 70.32076237768356, 33.86794371554076, 10.171106493868166, 77.82475920096346, 162.1947305183673, 154.78731800400666, 95.56184442035453, 85.56678434946247, 13.600768209383972, 10.957551749275376, 41.45769285404537, 31.444380155426355, 8.475748621160978, 182.56209582267763, 35.26284658577181, 41.36538962698427, 124.3959612889833, 57.92087100303446, 44.03906356613712, 19.892209990385272, 24.94587999434263, 30.434325066925176, 127.58690733985435, 138.84045619830854, 48.81246585801132, 14.408945643832162, 27.32522763912828, 42.24784616545961, 6.051693880654544, 18.557807406492554, 62.669846777995836, 6.316487759110337, 53.28994984233036, 12.654202941059065, 41.73568229730287, 103.00097866430765, 34.20564160708577, 64.997381034248, 110.553311366567, 76.18348046559261, 102.30636989662605, 12.06843935335284, 51.13130207618803, 7.243348480701265, 18.153256708060187, 150.4200577906694, 68.41795859593772, 146.2522530266986, 14.164428393214017, 66.71219568938406, 155.6439345384758, 52.126273965503074, 12.405062330616493, 5.630123263131581, 112.90441211924409, 20.218711261677555, 44.51488972675606, 92.71572782216275, 53.67362776022356, 23.70754207622053, 45.631898979225596, 5.409994194667425, 8.48042523433991, 47.90832327729319, 5.3044719740168, 13.92067969253813, 203.9279528449734, 27.08006732426115, 160.91824458893765, 51.51450614165971, 35.194785306057014, 45.63520857902233, 15.688773323927585, 29.742509189578815, 11.413226790196843, 11.147279277230544, 6.5948598491741555, 15.334133299681195, 54.96431613283908, 35.717329895348364, 7.917308774595257, 20.857496654974007, 61.17861183436116, 5.168913830817518, 24.043689293028006, 192.09310785831232, 77.58607619302998, 23.43683392528208, 48.02706296017482, 127.11847188839273, 7.1072732648573815, 10.35028594836582, 172.79053683655388, 72.29776596320802, 110.6632646759629, 30.13223344541225, 36.52671878932654, 79.24030610101741, 5.453063544770866, 25.744513639378674, 128.38919425664966, 22.915619454472335, 138.9848853158872, 94.53237711725714, 32.39960365377026, 5.812945262556682, 24.520177677024442, 5.889263900717157, 56.15011696838479, 7.739573534576811, 10.532000931023937, 8.71530762539046, 35.62299525149885, 8.502062921328756, 179.0714472048276, 105.10778433072055, 17.869700885997915, 26.9379289576447, 6.285040538476697, 8.718895962776344, 58.654755860935126, 46.43466706330931, 40.566325721785915, 26.265308286220865, 17.01061521981554, 74.66408882685234, 16.1488237393896, 27.606851726208127, 41.540022559354476, 28.550874550794305, 13.45835986536969, 13.351487111940376, 101.72641442820006, 84.34916079347242, 112.0527426880885, 26.549632929048805, 130.68962658165972, 13.145914522886875, 24.209081748034386, 141.08353085021298, 58.2457131881285, 118.17554730285305, 14.226979379200557, 16.700635306618956, 87.38637935933976, 28.22371102626796, 41.73045142943826, 25.442842801070185, 11.987684716779691, 6.2480983714528255, 14.747400351288588, 13.045539576974562, 49.610676605115614, 33.51147963337495, 51.60128911610414, 15.760449652220883, 170.69242514940964, 20.896890813398407, 34.64578072649664, 33.07704647327678, 72.20949032465083, 6.780000400914759, 93.73886342675294, 22.78998034347993, 59.79201412484808, 85.36242020049993, 26.288208181990907, 49.327409615632774, 71.94701999836178, 7.685053566454005, 39.185092048912914, 17.99675616066847, 121.9403901786994, 198.9989101583226, 12.373972914713422, 136.43423007994818, 31.187605644822913, 247.33734756952813, 19.229901981982426, 45.709488728928925, 16.996728635178783, 32.35551891121284, 59.87900910778024, 73.80834015155757, 66.79226446014854, 16.286849139778493, 46.11477782896943, 7.07713810056185, 12.569534741871312, 22.90926790833609, 61.05270547283847, 80.90549883940709, 111.02762117147338, 49.46722423685192, 63.2154616180936, 31.451296807498778, 9.246957059689432, 67.91674640097449, 12.464688379696646, 93.57273799773652, 76.28728327032807, 160.73688354648206, 65.51502105839982, 11.869259376391813, 27.147813309877108, 24.968320000629824, 9.653890555514415, 67.83098801550074, 57.58512559477312, 72.57554062272392, 7.979227285274243, 10.27421774156915, 20.790076994489187, 26.645441077515216, 22.634890270388, 53.80186084114503, 32.28631996433495, 17.648697084405406, 33.566820268110085, 34.42950298248211, 20.671311488410964, 19.254995785516538, 43.403618721202, 10.048268496561708, 6.7791219760037915, 18.971153762218965, 44.20209305681044, 15.794562173916793, 41.28596566814565, 14.462581694658741, 29.382971368864645, 38.6227328195772, 10.184748465333165, 54.756721704809706, 169.13142780307248, 44.965700259446024, 267.9371942373824, 8.630306260237363, 51.62134377678094, 16.63646629529959, 12.608622139323556, 6.513488484429896, 17.56903314598823, 14.334678339245023, 93.43040032263715, 81.30190396454559, 22.899059295844832, 17.314050960625828, 38.15850753294371, 112.83066119578393, 133.4654421521704, 71.2361387249266, 12.566500621222545, 24.962749819208728, 76.13017641785768, 128.4761095354096, 7.997887860551959, 59.7761031129582, 33.44935952033884, 44.91755964938292, 325.74598065237416, 57.09994776390951, 22.753791321555244, 22.971436416516603, 273.2369330996676, 7.8951284508726065, 25.987650040643146, 104.33161490134108, 67.90588142601571, 87.94370673756303, 65.17964341565227, 27.82493815536565, 56.9794411081228, 141.6160433389154, 42.72681089468392, 30.559090935199855, 25.379549727068067, 5.04950627255378, 39.88051819399397, 5.854771455814709, 40.192776470975446, 65.86727119993613, 75.39508723081262, 139.21739291866115, 51.90928127777453, 88.0390958873197, 158.4159920213231, 43.107887281399655, 100.78220003685763, 61.05617654895215, 45.82534583584436, 11.724139410316818, 10.600624709489786, 52.548979671071365, 133.6867914430579, 19.95055791549599, 62.83300422910874, 50.05406199996686, 38.61653165778518, 28.441381167797, 48.59519170201699, 5.8792232778825575, 5.858703816243145, 86.79518645349563, 21.677196144703366, 79.52614190512979, 82.594210752814, 68.39567163369185, 55.40267843279015, 75.34361247925843, 118.83960677772811, 33.36111249875999, 27.138403994793094, 26.70379688183978, 17.50936767513634, 40.056641391558486, 20.553992707628723, 9.858615315755241, 58.45679788460446, 97.08888884308462, 55.178224820329476, 7.133804532425614, 36.01414212103105, 12.489404368023703, 74.49289240099549, 95.98093053172963, 132.49801177368278, 5.1836115416166315, 38.61171036385338, 49.42435985644713, 31.577759687836412, 50.08772748228059, 68.06759896223527, 18.581584213613823, 79.31287721265333, 20.200189929709556, 52.23356790188064, 5.1922565977660815, 67.2985271928333, 67.9127961091432, 6.560730306941144, 21.58020784331661, 56.84274357902458, 23.690452995073997, 169.01662799368873, 96.32588544159073, 63.86527732309305, 40.47601774596299, 66.15651809513867, 43.47610647161529, 7.622034018067078, 11.77312562275922, 19.70128522700978, 6.7432013331108624, 6.045001900500129, 19.688103970208907, 55.02963480392181, 18.541034261240924, 31.65016689032665, 25.76302362441545, 10.657105527882486, 13.754565451999643, 58.28094416881438, 24.441978139463334, 38.136645475398986, 75.79410235231356, 11.999401723802237, 16.948696917267828, 18.80654091804083, 5.57164340431385, 91.71987349480244, 25.849514386565115, 69.41774336168788, 77.66287617776811, 40.93158817300362, 12.758760137644703, 128.4409722671, 6.1934873621122275, 36.02588750909756, 74.4170283884466, 116.332941852549, ...])
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);
([3345126.5625, 4720771.875, 4927151.708911153, 4927180.847437944, 4960046.826565196, 5090900.292426134, 5092437.390274146, 5160676.487895571, 5181710.9375, 5184009.211993995, 5185861.606485753, 5187395.170242592, 5188678.125, 5189031.642702421, 5206162.365602215, 5212389.0625, 5231097.156604438, 5240784.375, 5259789.987281547, 5268096.671926621, 5270644.654632501, 5273138.150850372, 5277906.25, 5296737.312260889, 5297433.240261995, 5297523.963789882, 5298879.674410199, 5299098.65183809, 5299509.143572804, 5299566.794129912, 5311129.6875, 5315084.012196225, 5319076.5625, 5321050.608492625, 5351544.757409084, 5353206.187842989, 5353396.574254021, 5356751.5625, 5358106.25, 5358641.118698606, 5358838.866160065, 5365756.164780274, 5370708.587613197, 5371457.34977071, 5383213.160605356, 5384496.875, 5389500.0, 5394244.1763348505, 5404802.150912898, 5408528.125, 5408548.139845599, 5418556.36244457, 5418624.20887251, 5425651.5625, 5426101.5625, 5426109.180812061, 5426739.388471933, 5428843.605036028, 5429432.882963703, 5431670.3125, 5432473.4375, 5436223.127978786, 5455693.71906606, 5458078.393698113, 5462859.375, 5473136.914913904, 5473290.625, 5473651.135026824, 5476735.858074119, 5477598.4375, 5477630.950690457, 5478699.418587185, 5481438.992521192, 5497917.334559824, 5498283.255140945, 5506060.429170579, 5511653.125, 5514593.75, 5515228.125, 5515320.40520336, 5515618.666226013, 5515670.801146481, 5515738.680477479, 5515938.21006532, 5516304.567795918, 5516362.073386884, 5516691.06053881, 5517315.036388099, 5517659.375, 5517944.671790637, 5518097.003206011, 5518413.775172427, 5518673.170251677, 5519990.625, 5520023.50486756, 5520033.074544011, 5525681.25, 5527139.0625, 5546474.808704798, 5546664.0625, 5562457.8125, 5564692.052177972, 5568365.396097217, 5575738.705616694, 5577387.937881344, 5579139.0625, 5581212.408229483, 5583499.88309987, 5586919.560131308, 5615515.625, 5615692.932727093, 5616020.3125, 5616941.3676617425, 5618161.621747767, 5621063.666790521, 5622854.947916831, 5626476.770078583, 5627537.5, 5628506.169147521, 5629442.1875, 5629839.075350563, 5630028.792303508, 5630355.031155221, 5631513.287018394, 5631643.75, 5631683.416174859, 5631917.1875, 5633219.522434173, 5633789.494707303, 5650400.242782555, 5664101.482029506, 5666796.599101397, 5673116.273766217, 5695226.5625, 5705093.75, 5705805.4993235115, 5705822.604655591, 5706903.367938427, 5707768.75, 5709245.284401443, 5711978.871956206, 5712524.049422391, 5712635.9375, 5714650.0, 5714790.721672586, 5718870.434592277, 5720426.5625, 5721373.4375, 5722832.684304337, 5723076.451803438, 5723240.625, 5723506.25, 5724431.25, 5724643.75, 5724715.513994013, 5725550.0, 5733849.758088487, 5742145.774422872, 5748324.312201328, 5748779.581067388, 5750543.75, 5750666.222596072, 5767860.9375, 5768084.48720084, 5768376.22096003, 5768687.467949624, 5769621.153922079, 5769986.126316528, 5770052.392223741, 5770212.594937322, 5770772.471525865, 5771603.125, 5771821.875, 5771986.458123202, 5772343.6167867705, 5772802.222159725, 5774301.5625, 5774439.0625, 5774857.777745693, 5775581.062603063, 5777117.28184814, 5778184.375, 5778332.8125, 5779484.375, 5779663.31510979, 5779690.15421741, 5779737.5, 5779770.3125, 5780150.234574644, 5780209.759379953, 5780271.875, 5780668.75, 5780774.44333105, 5780830.071363996, 5781264.572510868, 5781349.946065557, 5781448.116637162, 5781636.832162043, 5782229.6875, 5782412.340538574, 5782870.0873226, 5782939.99169072, 5783053.707782569, 5783132.645186525, 5783742.1875, 5783831.25, 5784185.616093384, 5784325.694834087, 5784396.525030662, 5784610.783866257, 5785496.535783557, 5785684.375, 5785696.024646088, 5785716.705535819, 5785723.67788406, 5785752.713969768, 5786459.300572127, 5786604.6875, 5786768.556990065, 5786890.226348462, 5787373.104154617, 5787456.94392608, 5788102.971483857, 5788677.229375837, 5788701.938797897, 5789124.911938978, 5790754.664267252, 5791824.844953973, 5792525.0, 5793130.947921623, 5807219.494336487, 5811443.8889167225, 5813567.1875, 5813992.955839932, 5820226.5625, 5822186.949885239, 5822544.540344435, 5823314.0625, 5823355.473257494, 5823440.625, 5823507.8125, 5823797.6077432595, 5823835.9375, 5824010.81009873, 5824096.875, 5843420.251914867, 5843595.3125, 5853045.3125, 5853677.944578249, 5854485.9375, 5856310.9375, 5857665.625, 5859288.825973261, 5860222.279829248, 5861232.62597597, 5861367.141598305, 5861446.854400193, 5862055.784468636, 5862085.074894127, 5862265.250286197, 5862348.2420199895, 5862469.955601938, 5862593.75, 5862764.138507935, 5862827.966716582, 5863296.605749397, 5863561.6105796425, 5872344.174352403, 5879653.199888664, 5895198.4375, 5896712.741962213, 5897542.950994452, 5897563.014524145, 5897734.375, 5897800.0, 5898291.982188717, 5898298.431122567, 5900211.963061834, 5900691.961397601, 5901237.5, 5901427.123775889, 5901449.227202484, 5901776.507910071, 5901975.973646952, 5902306.04652026, 5902485.9375, 5902706.25, 5903101.469727045, 5903620.918849768, 5903831.25, 5903915.003652044, 5904281.064480091, 5904536.602420969, 5904777.910133217, 5904903.125, 5905140.625, 5905218.75, 5905230.467821266, 5905483.971645162, 5905693.675195119, 5905926.605289588, 5905965.923495913, 5906112.5, 5906171.918033528, 5906263.753708958, 5906397.065748204, 5906398.4375, 5906979.8593787495, 5907083.218760872, 5907180.2290106425, 5907344.4744881615, 5907344.919364228, 5907712.194606642, 5908144.593932807, 5908292.972455523, 5909326.5625, 5909446.875, 5910065.309404188, 5910848.056037848, 5913454.228405082, 5913665.41449275, 5915680.187039963, 5916988.707480677, 5922134.070662125, 5928492.771590486, 5929254.709669918, 5929275.4481273, 5929935.772849683, 5929980.563052717, 5930496.778143451, 5930640.625, 5931969.273590378, 5932074.402104035, 5934424.468937216, 5940391.062610895, 5941733.536756464, 5944472.699534525, 5946060.9375, 5952053.125, 5955267.1875, 5957263.733295412, 5958159.2056589415, 5958806.25, 5959426.5625, 5959945.3125, 5961700.0, 5967165.190675778, 5967914.788420352, 5969916.522198052, 5969952.477657851, 5971226.5625, 5972951.022719338, 5973929.813701077, 5974752.575532954, 5974903.388811253, 5975126.4227638645, 5975526.502381454, 5975875.860810558, 5977303.283511302, 5978566.624175474, 5978567.072305294, 5980419.575415895, 5981126.31783991, 5981663.708232186, 5981669.586520888, 5982725.63057239, 5982972.125580902, 5983313.3793056365, 5983498.397212689, 5984008.867168347, 5988483.425495283, 5988600.355054579, 5988858.173323026, 5988900.0, 5988925.437240715, 5989694.983355998, 5990179.6875, 5990430.760420427, 5990913.491532668, 5991071.688503555, 5991130.17035638, 5991355.550766238, 5991983.976187794, 5992225.872911403, 5992232.459441922, 5992609.329039245, 5993263.079395568, 5993281.25, 5993510.005592356, 5993527.518743772, 5993584.375, 5996820.223938846, 5997245.235521478, 5997332.323728643, 5997717.021442058, 5998472.822059201, 5998603.125, 6000440.065382286, 6000775.0, 6001429.48338179, 6002841.43031773, 6006494.350130767, 6006693.75, 6007804.6875, 6007913.86940878, 6008557.8753678715, 6008928.125, 6009200.331710756, 6009460.480353118, 6009556.25, 6009766.809137693, 6010171.875, 6010244.52594265, 6010262.682541649, 6010681.139770233, 6010788.582941766, 6011019.709533677, 6011214.989190427, 6011519.109140425, 6011560.54527765, 6011734.529156502, 6011843.75, 6011905.913694224, 6011923.4375, 6012110.9375, 6012166.600788346, 6012175.739073191, 6012216.516411191, 6012247.658814425, 6012284.316706621, 6012614.0625, 6012818.75, 6013239.687389018, 6013856.25, 6014133.285406889, 6014328.983021427, 6015244.167361839, 6015292.093321436, 6015751.5625, 6015942.499410666, 6016010.264226048, 6016276.5625, 6017007.000968599, 6017727.491546844, 6018211.854503634, 6018949.364242828, 6020082.695333336, 6020234.763926532, 6020692.316885183, 6021409.375, 6021440.175352095, 6023524.724868731, 6023547.342400044, 6023797.109842588, 6023953.125, 6024437.5, 6024729.67061453, 6025855.092709786, 6028352.176928163, 6030095.285319538, 6031100.820483878, 6032418.689571462, 6032594.0871728845, 6033108.333378292, 6033730.092048356, 6034394.233464248, 6035068.75, 6037032.8125, 6038901.153065338, 6058189.873503609, 6059690.625, 6063178.818681311, 6064474.68392976, 6065902.747404285, 6066032.8125, 6066614.0625, 6067034.065554926, 6067687.582855115, 6068455.100414767, 6068494.061926494, 6068535.543061324, 6068920.794240993, 6069304.670376703, 6069774.702864199, 6071612.2590947775, 6071702.709875386, 6071724.721964649, 6072066.530228987, 6072457.759578015, 6072465.374363557, 6072658.446025793, 6072826.084241361, 6072859.952818304, 6073003.125, 6073514.0625, 6073767.805015914, 6073779.6875, 6073915.287041372, 6073988.891315976, 6074031.247654893, 6074146.875, 6074246.058767525, 6074384.375, 6074600.0, 6074802.997291724, 6074889.3335112315, 6075042.1875, 6075111.235142064, 6075123.4375, 6075181.25, 6075183.4345027525, 6075196.802795234, 6075388.994498559, 6075809.01642387, 6075830.437935878, 6076017.168634683, 6076207.1599103855, 6076275.0, 6076601.459855532, 6076711.792099168, 6076796.242597832, 6076897.307960244, 6076926.5625, 6077002.719603759, 6077104.6875, 6077151.5625, 6077184.323829025, 6077401.270097443, 6077720.120931093, 6077890.3999022385, 6077909.375, 6077924.131420841, 6078126.5625, 6078560.354177815, 6078614.0625, 6078681.25, 6078710.291197089, 6078757.8125, 6079014.01632359, 6079049.680925258, 6079092.1875, 6079141.784034136, 6079312.5, 6079421.875, 6079713.806605744, 6080046.20983086, 6080179.6875, 6080287.5, 6080492.606277586, 6081053.156988167, 6081637.237604025, 6081716.57507027, 6081787.335121802, 6085975.0, 6087829.6875, 6087911.227698584, 6088112.38421765, 6088226.5625, 6088251.2444752315, 6088254.251640753, 6088634.305891857, 6088763.314423192, 6088779.272714821, 6088981.89951654, 6089684.814755003, 6089924.9904418215, 6089978.541924588, 6090112.396898401, 6090262.629584107, 6090590.625, 6090635.9375, 6090777.3944939375, 6091817.1875, 6093289.0625, 6093874.994204136, 6095922.557005529, 6096498.4375, 6096928.69676592, 6097067.724595765, 6097617.8702191925, 6097889.0625, 6098121.875, 6098371.906623046, 6098528.125, 6098928.125, 6099491.222714057, 6101793.126700556, 6103958.886848144, 6105209.375, 6105772.691534004, 6106162.5, 6107691.785277775, 6110210.9375, 6146809.375, 6149135.199099114, 6158257.46961188, 6161910.9375, 6169412.981532966, 6171648.140950814, 6179173.18070956, 6180381.25, 6182715.863709352, 6193217.097782429, 6194171.875, 6195259.375, 6199684.139827595, 6202915.5219421275, 6207062.251752559, 6230228.125, 6231254.532535849, 6232001.466718805, 6241267.4574463405, 6242895.3125, 6249001.587981728, 6249868.75, 6250347.0836688755, 6250415.018069887, 6250417.112944846, 6251590.625, 6252207.8125, 6252437.5, 6252589.9126592325, 6253223.4375, 6253859.581558499, 6254031.091383932, 6254054.6875, 6254221.875, 6254456.615979766, 6255017.07584253, 6255727.830416265, 6256432.543169497, 6256661.278877395, 6259569.122822867, 6260635.811561088, 6262210.9375, 6262228.402196157, 6262592.1875, 6263298.477474193, 6264657.135502751, 6270804.475637357, 6271896.875, 6274717.140546859, 6275957.0234630825, 6276732.8125, 6277543.491582424, 6277604.623822839, 6277781.25, 6277849.642489037, 6278071.020017952, 6278628.125, 6278661.317913244, 6280268.75, 6280342.984877221, 6281823.4375, 6281828.125, 6282950.233989713, 6292167.1875, 6293359.124924969, 6295176.262086742, 6295762.164865173, 6295806.778626315, 6296423.4375, 6298561.381771145, 6298927.20926711, 6299825.0, 6302521.381475343, 6309979.339243001, 6313268.530003657, 6313657.134428281, 6314201.3483893, 6314375.0, 6314481.93783926, 6315287.787031765, 6316510.062134127, 6319313.424497834, 6320760.963368621, 6321229.6875, 6322115.390713195, 6322449.696610519, 6332203.125, 6332422.173112238, 6334844.09942201, 6334914.818148911, 6335411.364821501, 6336230.953646974, 6336546.654050029, 6336592.474647064, 6336603.5738152005, 6336923.4375, 6337071.930707166, 6337171.19660988, 6337220.495648352, 6337270.3125, 6337286.11279701, 6337510.949985878, 6337516.279675982, 6337540.724331999, 6337596.875, 6337926.5625, 6337952.354699349, 6337962.0197932, 6337986.580279012, 6338031.401875875, 6338060.660092899, 6338064.492345786, 6338076.5625, 6338193.425021427, 6338196.875, 6338202.792136014, 6338243.695787026, 6338274.438335027, 6338286.959365871, 6338298.413145971, 6338335.9375, 6338345.3125, 6338360.9375, 6338365.625, 6338434.170652529, 6338507.654048732, 6338619.163602688, 6338628.832460248, 6338813.9665701045, 6338857.8125, 6338982.358162593, 6338993.736002045, 6339006.007940059, 6339229.093137509, 6339233.324310137, 6339692.549347543, 6339783.957241949, 6339927.293858032, 6339930.995505849, 6340270.6989076, 6340318.75, 6340333.603271122, 6340645.914520851, 6340900.112701491, 6341287.639927316, 6341397.611875432, 6341884.375, 6341895.077668208, 6342086.36514611, 6342117.0617830055, 6342219.204231636, 6342439.015122588, 6342599.0389351165, 6343007.764356715, 6343071.875, 6343096.875, 6343347.01973907, 6343922.323739723, 6344209.798298219, 6344559.338041459, 6344679.497813256, 6345453.016506344, 6345524.66852927, 6346599.432884074, 6346772.2132215565, 6346841.892961775, 6346954.6875, 6347101.010103795, 6347242.437774861, 6347401.691264377, 6347413.914815077, 6347428.10960177, 6347516.97557432, 6347523.875838536, 6347773.9258481935, 6347835.784813601, 6347898.81405921, 6347941.581780409, 6348228.125, 6348469.619171885, 6348496.875, 6348508.011956322, 6348644.8204857735, 6348752.563081097, 6349093.550464657, 6349342.037914913, 6349423.4375, 6349818.832059304, 6352495.3125, 6352916.808369539, 6362542.1875, 6363214.0625, 6363529.563186716, 6364096.875, 6364487.5, 6364739.28318205, 6364837.5, 6365168.412608859, 6365598.4375, 6365846.875, 6365911.611193824, 6366690.0987243205, 6366710.9375, 6370341.794157728, 6371274.2386495005, 6371320.3125, 6372080.275698092, 6372139.0625, 6372144.859764161, 6372242.1875, 6373463.541133209, 6374216.557564461, 6374593.75, 6375654.516198193, 6391289.823395376, 6393427.265168226, 6394124.558630108, 6395000.0, 6395156.25, 6395414.0625, 6395795.3125, 6396012.5, 6396074.898412084, 6396698.4375, 6398672.589665862, 6399346.865331021, 6405004.6875, 6405693.162662472, 6407567.933964466, 6427756.677719174, 6434048.363840063, 6434253.250231162, 6434733.170760785, 6434747.964820951, 6434996.875, 6435214.0625, 6435241.557260042, 6435280.625478463, 6435466.614014046, 6435714.447947696, 6436000.883008079, 6436351.5625, 6436352.416328236, 6436774.003323723, 6437215.625, 6437357.8125, 6437385.350975118, 6437636.980751507, 6442292.1875, 6442455.428900304, 6442909.452716945, 6446652.328620612, 6453814.803467868, 6455691.582621801, 6458188.789687815, 6458640.49340486, 6460211.643826436, 6460795.3125, 6461050.861955764, 6461625.0, 6463056.742945877, 6463094.755547391, 6464401.223281623, 6464603.722964133, 6465153.125, 6465481.223992161, 6465705.46533016, 6466378.291352369, 6485286.255303023, 6487771.706127797, 6488005.493311448, 6488820.496131233, 6494526.192765725, 6497627.198127444, 6502899.942024642, 6505811.019210825, 6513224.7633321, 6514929.4206108395, 6516341.384574102, 6517851.351808346, 6518580.348298385, 6518706.140575736, 6518921.286041641, 6519640.625, 6520212.348326079, 6520260.9375, 6521640.618853825, 6523577.509409165, 6523880.391760392, 6526968.893975311, 6527246.549329021, 6533181.990841442, 6533357.6695269225, 6534793.75, 6534875.0, 6536420.3125, 6538429.026403684, 6551408.435370142, 6553203.125, 6555580.086457165, 6557372.915605814, 6557488.585598911, 6558187.317643532, 6558241.092215012, 6558467.1875, 6558617.72398561, 6558690.214510751, 6558699.628942139, 6558937.5, 6559562.5, 6559868.75, 6561481.25, 6561853.389551395, 6562762.5, 6563021.545004777, 6563181.25, 6563490.625, 6564959.725773213, 6565332.4469158705, 6566589.883698529, 6566748.009224007, 6566902.455091107, 6567223.033136752, 6569448.4375, 6570379.6875, 6570770.308256433, 6579264.0625, 6579268.031976647, 6587030.274184595, 6590320.3125, 6591393.268258822, 6594480.901258197, 6596963.839760786, 6598535.9375, 6598556.204532714, 6599229.6875, 6603481.135022313, 6603953.125, 6606497.619269283, 6611771.775661954, 6615181.792379422, 6615339.0625, 6615469.712907521, 6615791.188982206, 6615999.865851688, 6616286.017552525, 6616304.6875, 6616634.421784901, 6617370.781964169, 6617956.975670898, 6618939.0625, 6620081.25, 6620537.831305655, 6621030.454238517, 6621385.9375, 6621831.25, 6624004.6875, 6624498.4375, 6625351.5625, 6626111.648481124, 6627908.992485803, 6628891.547328718, 6628976.5625, 6629040.181031333, 6629231.25, 6630120.3125, 6630744.204208712, 6630791.696188015, 6632178.125, 6632201.257765517, 6632237.9376142975, 6632407.638093089, 6632646.875, 6633084.375, 6633542.453844832, 6633751.921428061, 6636728.176671795, 6637998.814582593, 6638826.28010364, 6639001.459933824, 6639846.450114236, 6640278.723238504, 6640434.61641892, 6641112.64258857, 6641275.432497869, 6641281.643351477, 6641979.364007696, 6642123.170617245, 6642175.227006865, 6642301.314753929, 6642365.8572633015, 6642616.412406953, 6642741.1192449555, 6642920.755301936, 6643085.1181836035, 6643514.832262268, 6644075.118997056, 6644085.7857760545, 6644574.677073828, 6644609.375, 6644643.75, 6644796.153916665, 6644828.125, 6645086.893422473, 6645534.102177763, 6645698.4375, 6646157.250861749, ...], [72.98008536744166, 41.94293776420038, 6.510290024826543, 31.818266614112517, 58.98648861758515, 16.187001171351497, 33.43176802796768, 5.52947067512479, 40.9301597905862, 19.930572003899123, 41.73334556993399, 46.111184132488454, 51.143166440987926, 38.239427678881455, 9.220290175336748, 54.36446358294507, 11.598378245767279, 70.04187012193913, 20.221136981899914, 25.073180266160144, 8.830879256039202, 8.663608595899497, 30.43070954105962, 5.524037819964344, 8.526525632275026, 6.57288270589736, 121.88335187854628, 22.704300384435474, 32.405073077061154, 91.35674445708233, 111.44456181902336, 8.103607281117784, 132.79889908446845, 51.84267077690422, 20.960596056632138, 146.74032060978934, 103.985438432417, 67.82972713806365, 121.5202840375823, 7.792124351908975, 14.242480823804334, 6.746611540701925, 12.602326104959122, 6.041265955349953, 6.595885279101685, 53.03942047316642, 49.75870376035932, 16.860545765362488, 12.19150003650163, 52.18269435834159, 31.87366766564385, 8.346948666379303, 5.2235299159700945, 35.92655978432874, 43.812035826783806, 15.978547876124772, 16.34883851714, 50.85734046873641, 11.23966174685963, 93.91320509239665, 58.06891569952374, 40.63940268543664, 122.55545620725175, 23.921494220917207, 60.94749523768386, 16.907396825497077, 72.14376670958879, 8.072758421952122, 66.68342074394756, 86.22200951909008, 10.69001818038315, 13.108471988757957, 34.49032110215942, 20.940600436453593, 24.298382443543836, 21.41041028392914, 102.82650775799647, 115.366232817056, 45.580700631167915, 36.54543384984525, 130.64438615323533, 11.988276561331723, 13.661205081815941, 12.454400476498666, 37.51913321876978, 22.257803250368823, 42.13622292612925, 13.089738318466859, 57.94082989312879, 6.641997593609289, 9.44221347294609, 55.41962583798082, 33.98206380854005, 43.87775328718373, 23.05470322727607, 16.044144410207394, 40.3900954669737, 57.79270065559073, 14.25928616743167, 29.5168871967298, 48.30032330605944, 6.250251467134937, 14.135360078032734, 23.0503492304832, 14.398950404071249, 56.95757200758105, 90.71576422421205, 26.409942692958364, 19.297728493299388, 29.14405792584125, 214.0692764340938, 59.99342785692285, 8.72266551533264, 12.39714604274937, 22.600611343517393, 120.44216275117091, 14.99431261867859, 96.96943787386323, 6.079731434700505, 79.7271477779728, 14.990717016322968, 7.308656267452037, 69.37879582211848, 12.62998533549601, 40.94760643400274, 99.45644106550657, 91.15425209141208, 12.59612736445968, 16.891840300649637, 13.963544938195062, 31.63477945753908, 64.21369038917595, 228.106278590252, 132.7284949930049, 29.68212938567486, 19.310576463829086, 29.663011837292935, 15.156766369126855, 40.88498944003773, 81.59234181990541, 12.537637639127752, 38.09929671780594, 70.03072225138853, 39.29159381806517, 6.502353041769151, 14.578473413371697, 45.75715549818601, 33.14403393500393, 45.147259979676925, 14.535729852868027, 55.08748426213836, 52.267479207540305, 117.4587991518155, 66.46066689034943, 14.534639110770696, 34.93200661460507, 91.43318998838595, 11.93561404467792, 89.35739469186413, 34.248888028234084, 30.4811169864138, 26.17281809759881, 56.94796626518201, 15.38713661180272, 95.27494195679863, 40.79778212732508, 10.161043461549088, 58.808476146420745, 114.96587943153492, 15.316149073174158, 17.83567966415444, 30.642676139395643, 37.588151455245054, 175.12964776977304, 14.456961878113429, 18.237175287234617, 105.61651509741914, 29.614688927623945, 54.83384416186486, 90.86242072596771, 87.50762893248564, 28.76516878258666, 55.5058166627711, 109.18537378611593, 5.370650510521276, 86.59413716471676, 106.66663483846357, 107.33494853723492, 17.63291934834083, 5.552031132678535, 40.574880879642116, 77.29240666147406, 8.01261746940864, 87.26295966942607, 9.803395370082482, 52.88836160193523, 18.23789749441656, 78.44051545069206, 45.9917467166899, 14.366662307509694, 24.755984091147372, 5.320678942302963, 27.646645801640858, 41.87788530465745, 51.09407430033495, 32.988065240284975, 64.54144773670373, 17.61906210013395, 9.052034889884826, 59.13871380760402, 173.3142116064469, 63.98599020304137, 36.320232611077444, 13.375714813867495, 24.034210522990865, 13.576501957350189, 96.56860089855424, 62.88681828688135, 15.782987578988813, 64.72260874876007, 23.33394487831438, 12.418514327309426, 25.82144106630395, 50.0252536006257, 11.771655176067092, 26.896648017714366, 14.85369035317262, 25.79753457544235, 93.78095411602345, 95.21801198031244, 98.78103490768383, 92.78448950566292, 40.19470167556516, 24.28588789377325, 84.67909616088241, 152.7083833744694, 288.0296360893023, 79.86992241766082, 10.097737843969231, 81.08929310781414, 43.01214241926109, 75.82389181230585, 52.88064723028004, 89.31662842756296, 130.10331601482991, 11.034310663705577, 65.9358865070303, 57.289920759505506, 24.667078652199038, 59.60115056509423, 66.707826948852, 103.94126290050714, 31.931533186819532, 8.512924661161263, 52.50947235410671, 14.769393107709858, 28.123546746614696, 10.47047078039437, 25.37842633137693, 66.64912931257903, 58.4994468548709, 20.949881165543225, 39.57250641209335, 15.23935242686958, 5.525447545875247, 24.151633236733424, 18.32561576747023, 130.60439361100396, 15.234845161044872, 75.91664633723308, 11.528213113777165, 18.952116900676636, 233.90850437336044, 70.39122294777823, 76.46740615602013, 10.821272209205269, 148.95424111801114, 5.153042473623435, 14.144481259123975, 73.47696969542648, 12.135161039781524, 13.201413142132665, 27.489142832098523, 20.6502854890044, 27.50929610400631, 166.26456778569087, 96.59588506585403, 71.36484543628242, 33.618124932186014, 38.58461510086886, 115.45152538810743, 25.332183279922553, 18.271714553900264, 74.90391871188523, 32.549045830384834, 37.397884193301905, 70.78885094714052, 5.36939088155765, 7.463587420223436, 27.12764020605855, 7.132745350201876, 16.34964312486504, 122.08139227245263, 15.884928231605313, 9.083273191886619, 42.61546732018039, 46.3368757324154, 29.982276158083625, 5.975583640120215, 15.556650826080372, 18.67508305698113, 22.629753508730456, 13.892618940176208, 19.55861566772842, 36.31663907817547, 42.41865985402109, 89.52876120177055, 36.71635375486164, 17.44796812920893, 76.1248802518695, 147.6750946436548, 75.8386350239732, 46.31878628046961, 131.52007984633792, 12.182471861471162, 6.767940706442316, 51.825323803827374, 75.2533294292434, 19.81103795798603, 14.584756433049305, 36.94726683828823, 31.05185260823671, 10.306203477850163, 8.024382876447067, 75.33730739690974, 6.917258262010746, 12.718369839607849, 64.02684678239635, 52.066766903774486, 73.34415998959064, 64.53196868130165, 5.126899476747673, 33.1509213192237, 50.64723086481111, 61.95856359227891, 40.50647109136254, 55.61566413132407, 153.6534596296133, 57.85391242668898, 42.264883853249316, 115.46844550961612, 30.693286817803504, 15.445383141761852, 19.86916411249365, 192.31227653462767, 26.03919686257332, 43.63232650440193, 106.23086970596896, 15.48337158721988, 13.15589761410698, 6.469183806675566, 19.414581957361467, 24.156917583257098, 83.14513851657802, 39.53844848160931, 7.8484218570076445, 6.114550914356621, 12.850841647324259, 114.67737914904615, 6.666187097580613, 17.938162920493397, 5.97093395971556, 16.52172204096955, 30.01974637842662, 36.669422568936014, 23.385471532532037, 90.73398820500871, 46.353635014906786, 283.79861339098557, 157.78305905773317, 11.976804529873911, 80.57309454127508, 77.08119694485525, 134.44755651371796, 41.46900225873528, 57.63613042058677, 7.8271589358619975, 155.12309062158266, 12.280702797274508, 13.044160361422476, 95.33784526805472, 8.240293439063057, 80.0446998056134, 32.55743689508907, 25.627015814045716, 36.01697998647211, 100.20362649996106, 57.659760504365956, 61.87806792044849, 124.02509203551173, 16.249853561190637, 12.216079857599457, 177.83125635850024, 37.42144637692338, 25.21967867295279, 86.96212887984757, 91.06301023452684, 41.34061371778715, 103.21839401481459, 105.873628779354, 8.096139044498534, 31.412332266477286, 361.0302032288281, 9.490674006545058, 41.94229495191494, 106.37653870977536, 28.06383879669398, 20.23747704889229, 16.51326102400617, 7.467281326280249, 14.956379864462411, 68.28678221164279, 33.85710637843812, 106.96944982510976, 70.93369565183167, 147.48914557405527, 18.77743205815971, 19.94081507074605, 25.099020095068347, 14.723881857239624, 58.33533724664151, 70.29507364703326, 59.24627951542699, 95.94803408634904, 16.785574401349063, 23.68216870584948, 22.186322904532336, 69.09839880889936, 152.53868726871923, 55.06453251104986, 8.820356853601643, 67.20877786576558, 167.78696165115056, 20.25769447773461, 7.972378957000035, 17.115270950839715, 35.71646348842705, 86.94544044464757, 24.54593766801697, 49.29959162489901, 13.078167650045458, 70.69434717738082, 11.94634841692272, 6.297332094170842, 88.35292270615574, 107.99381194495058, 84.01966805797842, 29.597756380536584, 17.947152846763316, 48.56442562884549, 93.2891288662938, 27.383558962398773, 11.699068726750145, 25.877791621219398, 16.745795138950598, 17.171778585146427, 60.12814395975915, 37.5649438035613, 90.61538429838518, 6.936990008190377, 65.85483705709801, 8.69096010518208, 73.1666159645487, 10.584691643989155, 70.69027173355848, 31.132159555253214, 13.880095862368602, 11.259732349319167, 29.034962118726718, 120.92639012383351, 55.807621509493835, 17.162164450686728, 15.678018139203619, 78.84400792348445, 10.770937784669785, 22.383729682731733, 38.19514908149445, 26.81462164444661, 218.4199499973564, 5.917871799530279, 109.08428842854222, 13.385987535905553, 17.7211267514765, 72.69638093132906, 45.85890526190262, 12.252832302949106, 44.440201577763276, 88.36775167692949, 96.70050888664066, 50.154381172631524, 57.30334466306277, 63.2477514295966, 68.03678124802042, 108.03156795786802, 50.324669242529254, 37.31993204288911, 74.35757528998278, 13.349657051645686, 32.535437839593, 74.3561294848931, 17.994874153674747, 14.673259937205268, 11.461299196317484, 82.01068276670395, 18.85818681053735, 87.00803933170587, 20.094980178422745, 31.184026059708575, 26.64787647708947, 52.57195596406241, 18.473955128590426, 9.726448959695963, 202.82871391540374, 15.842493707464067, 31.221338598041203, 81.00788211720233, 14.74999184756006, 34.24645519360692, 131.62508236428027, 24.75710949619401, 116.9961217324664, 54.92730406242946, 45.70808908236312, 170.06132237135978, 46.16331650194992, 30.203476770094255, 7.972017629222377, 133.60111425768793, 43.83212675905554, 37.67946136071341, 36.727727168956534, 92.69138807310266, 86.20224825255373, 70.36037505648522, 64.02984150994305, 12.895358797867516, 95.97563307263438, 53.011623909280715, 57.84324460512799, 22.165447215574016, 58.40744370267148, 5.581038307331534, 27.96825746146507, 167.99053276344216, 50.81384612345068, 51.88691644353095, 26.42841545334228, 46.016489944862286, 65.24030636948723, 145.90819598037098, 20.642755984690638, 6.937774019328927, 200.9615142686443, 8.662762335832058, 16.932292720495205, 28.337180136236753, 387.6498040825149, 5.039810746246569, 11.336481712432732, 126.0686925507481, 96.2003782298531, 39.43191110931024, 30.905509380049935, 187.00221177036943, 20.851768641295934, 18.385065325915342, 117.94594714183731, 59.71602688019813, 12.08563735797236, 14.701375478391963, 85.52575436871571, 63.33862821019352, 8.303371215928308, 86.67833453372323, 112.16562000071679, 39.656317064909814, 152.26927849129976, 27.016151084077766, 66.48867763752716, 134.09674287853568, 69.21798396876225, 13.602058382418322, 114.36424113419777, 143.90595979736187, 47.68430695511603, 126.56278353277997, 74.26490179651697, 17.16100482529473, 104.63641130893524, 41.20502231933301, 214.24108646054793, 26.60721207673324, 10.99030959063503, 30.097372052644506, 31.090593641684137, 15.260923482541566, 61.307406174381825, 55.35270385661843, 60.133814745259585, 25.79881265564524, 26.76426652813344, 71.37514965091282, 38.379295092583384, 11.167771352220818, 54.56698846194429, 33.75658381398004, 30.345369746798077, 27.132037172245294, 43.99667338237195, 70.32076237768356, 33.86794371554076, 10.171106493868166, 77.82475920096346, 162.1947305183673, 154.78731800400666, 95.56184442035453, 85.56678434946247, 13.600768209383972, 10.957551749275376, 41.45769285404537, 31.444380155426355, 8.475748621160978, 182.56209582267763, 35.26284658577181, 41.36538962698427, 124.3959612889833, 57.92087100303446, 44.03906356613712, 19.892209990385272, 24.94587999434263, 30.434325066925176, 127.58690733985435, 138.84045619830854, 48.81246585801132, 14.408945643832162, 27.32522763912828, 42.24784616545961, 6.051693880654544, 18.557807406492554, 62.669846777995836, 6.316487759110337, 53.28994984233036, 12.654202941059065, 41.73568229730287, 103.00097866430765, 34.20564160708577, 64.997381034248, 110.553311366567, 76.18348046559261, 102.30636989662605, 12.06843935335284, 51.13130207618803, 7.243348480701265, 18.153256708060187, 150.4200577906694, 68.41795859593772, 146.2522530266986, 14.164428393214017, 66.71219568938406, 155.6439345384758, 52.126273965503074, 12.405062330616493, 5.630123263131581, 112.90441211924409, 20.218711261677555, 44.51488972675606, 92.71572782216275, 53.67362776022356, 23.70754207622053, 45.631898979225596, 5.409994194667425, 8.48042523433991, 47.90832327729319, 5.3044719740168, 13.92067969253813, 203.9279528449734, 27.08006732426115, 160.91824458893765, 51.51450614165971, 35.194785306057014, 45.63520857902233, 15.688773323927585, 29.742509189578815, 11.413226790196843, 11.147279277230544, 6.5948598491741555, 15.334133299681195, 54.96431613283908, 35.717329895348364, 7.917308774595257, 20.857496654974007, 61.17861183436116, 5.168913830817518, 24.043689293028006, 192.09310785831232, 77.58607619302998, 23.43683392528208, 48.02706296017482, 127.11847188839273, 7.1072732648573815, 10.35028594836582, 172.79053683655388, 72.29776596320802, 110.6632646759629, 30.13223344541225, 36.52671878932654, 79.24030610101741, 5.453063544770866, 25.744513639378674, 128.38919425664966, 22.915619454472335, 138.9848853158872, 94.53237711725714, 32.39960365377026, 5.812945262556682, 24.520177677024442, 5.889263900717157, 56.15011696838479, 7.739573534576811, 10.532000931023937, 8.71530762539046, 35.62299525149885, 8.502062921328756, 179.0714472048276, 105.10778433072055, 17.869700885997915, 26.9379289576447, 6.285040538476697, 8.718895962776344, 58.654755860935126, 46.43466706330931, 40.566325721785915, 26.265308286220865, 17.01061521981554, 74.66408882685234, 16.1488237393896, 27.606851726208127, 41.540022559354476, 28.550874550794305, 13.45835986536969, 13.351487111940376, 101.72641442820006, 84.34916079347242, 112.0527426880885, 26.549632929048805, 130.68962658165972, 13.145914522886875, 24.209081748034386, 141.08353085021298, 58.2457131881285, 118.17554730285305, 14.226979379200557, 16.700635306618956, 87.38637935933976, 28.22371102626796, 41.73045142943826, 25.442842801070185, 11.987684716779691, 6.2480983714528255, 14.747400351288588, 13.045539576974562, 49.610676605115614, 33.51147963337495, 51.60128911610414, 15.760449652220883, 170.69242514940964, 20.896890813398407, 34.64578072649664, 33.07704647327678, 72.20949032465083, 6.780000400914759, 93.73886342675294, 22.78998034347993, 59.79201412484808, 85.36242020049993, 26.288208181990907, 49.327409615632774, 71.94701999836178, 7.685053566454005, 39.185092048912914, 17.99675616066847, 121.9403901786994, 198.9989101583226, 12.373972914713422, 136.43423007994818, 31.187605644822913, 247.33734756952813, 19.229901981982426, 45.709488728928925, 16.996728635178783, 32.35551891121284, 59.87900910778024, 73.80834015155757, 66.79226446014854, 16.286849139778493, 46.11477782896943, 7.07713810056185, 12.569534741871312, 22.90926790833609, 61.05270547283847, 80.90549883940709, 111.02762117147338, 49.46722423685192, 63.2154616180936, 31.451296807498778, 9.246957059689432, 67.91674640097449, 12.464688379696646, 93.57273799773652, 76.28728327032807, 160.73688354648206, 65.51502105839982, 11.869259376391813, 27.147813309877108, 24.968320000629824, 9.653890555514415, 67.83098801550074, 57.58512559477312, 72.57554062272392, 7.979227285274243, 10.27421774156915, 20.790076994489187, 26.645441077515216, 22.634890270388, 53.80186084114503, 32.28631996433495, 17.648697084405406, 33.566820268110085, 34.42950298248211, 20.671311488410964, 19.254995785516538, 43.403618721202, 10.048268496561708, 6.7791219760037915, 18.971153762218965, 44.20209305681044, 15.794562173916793, 41.28596566814565, 14.462581694658741, 29.382971368864645, 38.6227328195772, 10.184748465333165, 54.756721704809706, 169.13142780307248, 44.965700259446024, 267.9371942373824, 8.630306260237363, 51.62134377678094, 16.63646629529959, 12.608622139323556, 6.513488484429896, 17.56903314598823, 14.334678339245023, 93.43040032263715, 81.30190396454559, 22.899059295844832, 17.314050960625828, 38.15850753294371, 112.83066119578393, 133.4654421521704, 71.2361387249266, 12.566500621222545, 24.962749819208728, 76.13017641785768, 128.4761095354096, 7.997887860551959, 59.7761031129582, 33.44935952033884, 44.91755964938292, 325.74598065237416, 57.09994776390951, 22.753791321555244, 22.971436416516603, 273.2369330996676, 7.8951284508726065, 25.987650040643146, 104.33161490134108, 67.90588142601571, 87.94370673756303, 65.17964341565227, 27.82493815536565, 56.9794411081228, 141.6160433389154, 42.72681089468392, 30.559090935199855, 25.379549727068067, 5.04950627255378, 39.88051819399397, 5.854771455814709, 40.192776470975446, 65.86727119993613, 75.39508723081262, 139.21739291866115, 51.90928127777453, 88.0390958873197, 158.4159920213231, 43.107887281399655, 100.78220003685763, 61.05617654895215, 45.82534583584436, 11.724139410316818, 10.600624709489786, 52.548979671071365, 133.6867914430579, 19.95055791549599, 62.83300422910874, 50.05406199996686, 38.61653165778518, 28.441381167797, 48.59519170201699, 5.8792232778825575, 5.858703816243145, 86.79518645349563, 21.677196144703366, 79.52614190512979, 82.594210752814, 68.39567163369185, 55.40267843279015, 75.34361247925843, 118.83960677772811, 33.36111249875999, 27.138403994793094, 26.70379688183978, 17.50936767513634, 40.056641391558486, 20.553992707628723, 9.858615315755241, 58.45679788460446, 97.08888884308462, 55.178224820329476, 7.133804532425614, 36.01414212103105, 12.489404368023703, 74.49289240099549, 95.98093053172963, 132.49801177368278, 5.1836115416166315, 38.61171036385338, 49.42435985644713, 31.577759687836412, 50.08772748228059, 68.06759896223527, 18.581584213613823, 79.31287721265333, 20.200189929709556, 52.23356790188064, 5.1922565977660815, 67.2985271928333, 67.9127961091432, 6.560730306941144, 21.58020784331661, 56.84274357902458, 23.690452995073997, 169.01662799368873, 96.32588544159073, 63.86527732309305, 40.47601774596299, 66.15651809513867, 43.47610647161529, 7.622034018067078, 11.77312562275922, 19.70128522700978, 6.7432013331108624, 6.045001900500129, 19.688103970208907, 55.02963480392181, 18.541034261240924, 31.65016689032665, 25.76302362441545, 10.657105527882486, 13.754565451999643, 58.28094416881438, 24.441978139463334, 38.136645475398986, 75.79410235231356, 11.999401723802237, 16.948696917267828, 18.80654091804083, 5.57164340431385, 91.71987349480244, 25.849514386565115, 69.41774336168788, 77.66287617776811, 40.93158817300362, 12.758760137644703, 128.4409722671, 6.1934873621122275, 36.02588750909756, 74.4170283884466, 116.332941852549, ...])
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)