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 = 46371
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);
([2624844.4535610145, 2976916.774996, 2980101.5625, 2980955.487071022, 2992118.331338881, 3024410.9375, 3040727.858453701, 3115190.625, 3118220.168278718, 3121388.9711849038, 3151952.4130533524, 3157092.5187012437, 3165332.8125, 3166301.8113146466, 3167634.375, 3182452.3839950818, 3183148.4375, 3197880.407018822, 3207633.1902345014, 3222201.270886129, 3232700.0, 3235830.9138775794, 3235868.3821961856, 3237509.1896626507, 3250741.550384632, 3312237.9335664893, 3367299.4523064755, 3376387.7581757056, 3376464.0625, 3379778.8120230786, 3432379.1861995263, 3432543.440278735, 3434104.306007149, 3437620.4942922182, 3453343.5292594377, 3460313.8090327983, 3462260.9375, 3494513.3766945824, 3494551.881389135, 3494621.6389326467, 3505912.5, 3562096.875, 3575116.9667342114, 3581032.7901002127, 3588890.8649593154, 3599955.5686128275, 3603974.819033605, 3611768.75, 3611771.3869858044, 3611773.5887404485, 3634920.8328159032, 3639578.824275341, 3641923.7915778835, 3642215.730171326, 3654822.66144755, 3663339.5544946482, 3668435.9375, 3676507.5256620497, 3682628.3043011534, 3690276.3246674654, 3690942.1875, 3708945.3125, 3719060.0588543215, 3732726.2633379935, 3748137.9260497107, 3753406.25, 3754418.5774913924, 3763309.7845067135, 3763734.1366650006, 3767119.6773313885, 3772148.200740673, 3781662.5, 3782235.793460049, 3807831.25, 3812133.0239031683, 3824308.7533946927, 3840432.8125, 3843432.6223786618, 3843879.375357115, 3844389.7138267877, 3844748.2240224835, 3864107.8125, 3877588.870073408, 3896923.938082142, 3930593.75, 3945358.3156500896, 3955162.5, 3972229.941955809, 3973566.932258973, 3973570.607555318, 3978042.7364472025, 3981828.899061763, 3983130.2846013093, 4019519.87458972, 4021198.198518198, 4022799.576445452, 4041442.1875, 4056852.839047999, 4075981.0706297853, 4080101.5625, 4081838.610136377, 4081838.7162364316, 4083076.5625, 4083869.8405768126, 4084160.9246313605, 4108366.748600151, 4110665.3909113277, 4111100.0, 4122863.282405404, 4142274.8583105453, 4148544.2037675804, 4148552.5325489887, 4149405.6513625765, 4161110.2965585273, 4164679.6875, 4165157.19435737, 4165242.9998246646, 4192526.5625, 4196506.903504676, 4198310.725134736, 4201624.830434394, 4202146.875, 4230782.8125, 4243534.910632321, 4246050.0, 4246797.20637396, 4271901.055784011, 4336289.2046446595, 4336325.0, 4336345.9530695435, 4345523.4375, 4351456.25, 4353519.095854347, 4355185.9375, 4388681.25, 4390135.9375, 4391453.618085445, 4391580.465558887, 4391854.552334198, 4393201.539335369, 4394015.115931476, 4394735.9375, 4433090.468087626, 4472547.428539636, 4477601.5625, 4478431.455219018, 4483803.47306799, 4508049.61880354, 4527039.053094274, 4533675.0, 4541403.125, 4544458.217301812, 4545113.539648171, 4548597.070010042, 4560545.3125, 4563068.75, 4568755.937369673, 4580094.329394855, 4583294.627875528, 4584050.0, 4596353.911357313, 4596713.049428048, 4598638.84296341, 4605946.99480479, 4606985.740692814, 4607632.6008301, 4611801.5625, 4632439.624898903, 4632813.419611296, 4671351.269152527, 4716338.784624745, 4748350.012503521, 4754164.830396867, 4754530.496930548, 4754534.377638198, 4754714.823368522, 4754778.125, 4754839.245840778, 4754898.271350864, 4754929.066808488, 4754958.75915735, 4755066.306121129, 4755309.101298142, 4755335.394595302, 4755576.418692775, 4755788.343647314, 4755797.684488337, 4755806.666772112, 4755944.844404527, 4756071.875, 4756098.410055149, 4756186.333676331, 4756267.914127573, 4756611.978582574, 4756654.163898988, 4756705.1713061845, 4756722.963696087, 4756774.252866313, 4756984.95414742, 4757009.404481051, 4757125.041463779, 4757327.163236213, 4757465.625, 4757657.8125, 4757666.331091975, 4757913.463033866, 4758168.27106072, 4758248.153342758, 4759524.889855661, 4767552.674353974, 4768076.958676105, 4768326.504006067, 4770368.816650896, 4784394.108116423, 4818481.64369751, 4819876.608873219, 4822571.5118782725, 4824523.050253199, 4825176.5625, 4894848.877635771, 4899557.049478833, 4899709.008409598, 4901046.875, 4905226.451928451, 4905309.375, 4914193.754712551, 4922216.512301885, 4928635.9375, 4940462.937660468, 4951854.03952348, 5009494.722199423, 5080998.162302109, 5084616.901361333, 5088998.078125802, 5092929.6875, 5133325.5877984455, 5161181.284754734, 5188456.193868454, 5188593.75, 5191093.924810373, 5216634.1380263325, 5216660.9375, 5216698.388762643, 5218634.375, 5381565.625, 5404065.527976696, 5408308.6759808, 5410532.248455713, 5432226.5625, 5433663.816481268, 5436723.347391693, 5492649.897722106, 5543952.435194961, 5569849.130340363, 5575012.5, 5575152.1374144675, 5582373.4375, 5593515.50432864, 5623954.441056317, 5625883.923665238, 5626764.3361201305, 5627110.9375, 5627871.210230933, 5627997.401360743, 5628019.554475494, 5628261.205688296, 5628598.8732783245, 5628694.684208378, 5629790.625, 5629904.6875, 5630372.434803687, 5631305.467889311, 5631350.0, 5631968.75, 5632089.810930332, 5632164.413466146, 5632400.837063794, 5632475.590698714, 5632623.917785423, 5632634.375, 5632635.3666811595, 5632712.146847445, 5632743.75, 5632748.64998353, 5632809.28578478, 5632816.881762399, 5632882.978704029, 5632949.7077408545, 5633060.9375, 5633215.015432511, 5633229.389893792, 5633410.945839584, 5633444.2607592875, 5633539.282076454, 5633540.116910692, 5633861.93257823, 5634160.719038772, 5634232.519161909, 5634339.0625, 5634502.319415768, 5634629.958661557, 5634862.9635082185, 5634874.218960156, 5634942.712367205, 5634951.438141845, 5635492.53858121, 5635502.338112244, 5635612.5, 5635734.375, 5638921.875, 5640217.666701079, 5640898.4375, 5646706.25, 5646736.849254456, 5646832.8125, 5647109.788784983, 5647475.0, 5649748.9435735885, 5677768.921564449, 5677773.498774953, 5695367.1875, 5811917.038937661, 5842074.290852648, 5856246.087778957, 5860325.0, 5880356.372548029, 5905142.108318236, 5918310.602275779, 5918335.641269279, 5918343.75, 5926791.527181117, 5927777.941118908, 5928260.9375, 5928942.1875, 5929580.610874774, 5931473.4375, 5933643.149743848, 5933643.75, 5933752.756677762, 5934792.580566138, 5935158.349500271, 5935280.759388356, 5935814.0625, 5935829.040460305, 5936121.406443267, 5936476.5625, 5937734.375, 5941518.574537363, 5942626.886529277, 5944372.658172511, 5952004.6875, 5953812.5, 5955110.633193476, 5955409.363164098, 5981473.21826061, 6010019.67042445, 6010020.3125, 6019698.4375, 6026700.978857519, 6087107.433771359, 6168103.984556267, 6180483.976036738, 6185096.872570784, 6186416.071801733, 6186948.891936658, 6187445.537780416, 6187984.375, 6188257.749452234, 6188359.816739414, 6188835.066786948, 6190423.4375, 6198036.02934266, 6203988.336260421, 6212061.896972602, 6212883.315407213, 6217438.825310573, 6220183.700213712, 6223621.552791671, 6224456.344613577, 6228502.170557048, 6228576.5625, 6228852.695922658, 6229178.125, 6229786.056148289, 6229886.356307603, 6230080.802595439, 6230396.5596795315, 6231192.921313819, 6231553.125, 6231721.875, 6232566.919489576, 6232933.148406204, 6233573.336820942, 6233654.40025468, 6233868.75, 6233925.6938573, 6234087.525800586, 6236626.886753082, 6236995.3125, 6237879.6875, 6241611.342847775, 6242677.486525623, 6244009.33579637, 6244812.5, 6244879.371524261, 6246318.75, 6261956.25, 6262466.975416121, 6276312.72112338, 6276373.748769066, 6277301.5625, 6293659.336359666, 6326885.65365644, 6330677.502838449, 6354366.912996, 6369845.3125, 6415712.265716098, 6416284.720370837, 6451910.9375, 6453121.779993304, 6453239.358775386, 6459576.137706372, 6468065.625, 6471345.42633747, 6472346.269711836, 6477026.4599287165, 6477144.814821819, 6481218.75, 6485996.875, 6495488.490497389, 6496978.206722324, 6513827.527367986, 6514052.110228006, 6514950.578881719, 6516971.585608791, 6517063.264458291, 6517329.900604173, 6520588.8295294875, 6521145.148470524, 6521663.777999891, 6533459.698437219, 6533854.364023352, 6535107.8125, 6542897.759675697, 6543028.293853577, 6543294.893520058, 6544470.3125, 6545157.419875979, 6545462.227485156, 6545693.75, 6546196.733209393, 6546671.137483075, 6547167.786423738, 6547235.768136699, 6547260.9375, 6549021.46743363, 6549250.0, 6551590.625, 6551691.934553275, 6551959.377839833, 6555541.654026374, 6561811.966568588, 6574979.021569656, 6575892.1875, 6579597.732768118, 6580598.766971102, 6589018.824710974, 6589676.5625, 6591309.057220199, 6599043.615483128, 6601106.608482757, 6601382.096101851, 6602422.336785918, 6602556.22290217, 6605815.625, 6607984.086979842, 6609851.187931823, 6610157.357040466, 6610277.584022908, 6610476.106442401, 6611506.62920532, 6612045.079507446, 6612604.317924303, 6615471.315367208, 6624543.14837819, 6631134.369759726, 6642973.535214095, 6643628.96486088, 6653522.335043328, 6655590.457162278, 6677384.059064274, 6677396.071963589, 6681564.076196757, 6686523.4375, 6686719.131814687, 6687334.220011017, 6688358.908463753, 6691875.617812214, 6697609.27937273, 6699747.106470902, 6700125.0, 6700246.875, 6700436.82242305, 6701502.323779288, 6701542.984774879, 6701621.308346068, 6701815.520740834, 6702021.660432131, 6703636.87652259, 6703822.369830614, 6708010.193410193, 6709054.6875, 6713971.159487108, 6714010.263586711, 6714097.963370899, 6714163.945575613, 6714442.516223939, 6715541.363052371, 6719340.625, 6719435.9375, 6720935.042173813, 6725782.756569877, 6725801.331745584, 6728690.412336567, 6729695.054230136, 6730604.269565197, 6735068.784490194, 6736060.394740992, 6736401.314193489, 6737315.566319896, 6737620.3125, 6738067.1875, 6745384.375, 6745384.375, 6745426.242739591, 6761568.450340787, 6768136.531247274, 6768400.0, 6771351.5625, 6779442.165935437, 6779651.927381671, 6780687.221869954, 6789216.932655805, 6790648.4375, 6790990.625, 6793662.714961371, 6795024.96777332, 6796241.588226619, 6796926.144961106, 6799156.726380052, 6801426.437244652, 6803666.993504339, 6804000.295871951, 6804078.125, 6804476.933441832, 6805621.875, 6806651.676832403, 6810383.586875115, 6812710.14009957, 6821729.446454102, 6824048.919029522, 6825204.421338806, 6825409.395576896, 6828178.21273995, 6830300.832363415, 6830353.309337612, 6830515.625, 6831113.455376833, 6831151.5625, 6832501.3479879, 6832685.0198614495, 6832766.4040377755, 6835926.5625, 6836078.2366743535, 6837290.619911191, 6837688.890271878, 6837751.410073034, 6845830.984446259, 6850482.54961625, 6851727.286820638, 6852930.697099688, 6861203.125, 6861927.795689822, 6871407.087820018, 6872306.2472749185, 6872884.443781172, 6875010.582379408, 6875923.371132002, 6877183.301270859, 6877833.037255629, 6880843.98774967, 6885629.6875, 6887519.819361545, 6888771.791204643, 6891406.977196901, 6893040.0195300495, 6894891.129615732, 6895220.784617164, 6895705.581562053, 6895947.958289358, 6910089.209276365, 6912439.0625, 6912452.405951593, 6914334.375, 6915606.39269831, 6915654.196519425, 6916104.6875, 6921887.941016153, 6923018.09933239, 6923053.038770614, 6924153.125, 6925331.071570704, 6925331.25, 6925962.957394121, 6938353.08921233, 6938617.114309645, 6941898.645250882, 6944807.86172333, 6945896.144206079, 6946748.803970192, 6947195.904744242, 6947864.02074165, 6947914.647250844, 6947940.15145073, 6948165.249042688, 6948174.495814222, 6948748.221393969, 6948780.447566431, 6948814.0625, 6949110.9375, 6949131.25, 6949154.6875, 6949189.0625, 6949268.535149216, 6949450.42426091, 6949456.25, 6949460.5914789485, 6949837.6136306925, 6950046.875, 6950211.678948229, 6950225.938485803, 6950432.282027448, 6950439.037636698, 6950449.275579112, 6950643.797851407, 6951136.044351419, 6951210.9375, 6951228.223429443, 6951515.433448758, 6951711.873872086, 6951720.365373534, 6951731.401277444, 6951784.142835741, 6951791.230119449, 6952445.32957855, 6953501.139310841, 6954276.128200663, 6954436.024876708, 6955144.94402758, 6956977.349813474, 6957052.927716169, 6957561.043905858, 6957908.251395075, 6957951.520825274, 6958893.714759037, 6961209.12424235, 6961242.171268158, 6962270.5157242, 6974696.853729731, 6974855.939667661, 6975062.522504404, 6975951.276414494, 6983172.597483878, 6983250.716001695, 6988757.791638955, 6988781.25, 6989044.068346821, 6992858.2024722705, 6996227.982239563, 6997724.965280048, 7012931.404787217, 7019931.54969507, 7021342.118114624, 7023884.537048172, 7058144.59879677, 7068453.710468665, 7068827.285738353, 7073964.0625, 7087411.038705504, 7129130.3180133365, 7134131.139658786, 7135846.3272011755, 7138911.996691528, 7143119.958089874, 7148923.972019413, 7153150.369418754, 7192253.125, 7192862.5, 7204120.3125, 7206113.106157325, 7209593.237089437, 7210742.490644043, 7215013.8053227905, 7215470.3125, 7218258.71501111, 7218977.87437574, 7219068.282626655, 7219221.875, 7219238.314931468, 7220275.0, 7221534.375, 7221701.5625, 7222641.89094608, 7222791.121031028, 7223098.390122588, 7223108.603798105, 7223246.875, 7223553.125, 7224181.560941249, 7225250.0, 7226482.766914151, 7226534.425329351, 7227430.4066427555, 7227436.658182465, 7227438.04731865, 7227547.985257135, 7227557.8125, 7227596.74557782, 7227601.911930254, 7227862.364833638, 7227956.186107977, 7228165.565176473, 7228532.8125, 7228620.3125, 7229091.815522389, 7229300.0, 7229660.9375, 7229808.272619665, 7229856.606835756, 7229870.3125, 7230110.9375, 7230267.8233870715, 7230392.1875, 7230497.4787485665, 7230530.705372335, 7230606.432315389, 7230649.806615977, 7230715.625, 7230785.9375, 7230915.625, 7231393.321718601, 7231618.9589114515, 7231990.625, 7232210.737516924, 7233024.791616733, 7233158.137136189, 7233741.268819634, 7233969.401281772, 7234141.5906627085, 7234336.3668398615, 7234734.412949296, 7235101.6896907175, 7235350.0, 7235624.779516486, 7235804.712976939, 7235851.3891618075, 7235884.081743112, 7235920.3125, 7235929.005925973, 7235976.39327402, 7235993.223507156, 7236021.659415443, 7236039.0625, 7236053.759855734, 7236195.917081651, 7236196.92720641, 7236246.775772382, 7236248.047002619, 7236262.244707647, 7236298.4375, 7236329.9897809485, 7236355.816422017, 7236392.00712232, 7236412.336246153, 7236422.351865945, 7236429.6875, 7236430.848989863, 7236459.854776492, 7236479.6875, 7236515.420414251, 7236527.645514028, 7236540.674312998, 7236553.97075816, 7236598.4375, 7236656.25, 7236665.229875827, 7236681.47713673, 7236779.6875, 7236798.715538855, 7236887.5, 7236895.3125, 7236896.875, 7236918.75, 7236930.116944029, 7236941.93431294, 7236946.614299348, 7236966.695721286, 7237064.0625, 7237126.241062874, 7237149.720168646, 7237150.0, 7237157.8125, 7237236.031715168, 7237248.053215896, 7237257.172004072, 7237333.898951362, 7237517.1875, 7237545.0606782185, 7237575.610358451, 7237622.995867946, 7237698.4375, 7237712.5, 7237740.432143424, 7237827.335292025, 7237860.303837066, 7237866.084651125, 7237909.375, 7237934.375, 7237958.822856749, 7238010.9375, 7238047.322727793, 7238187.537788569, 7238209.999998224, 7238305.669626829, 7238325.0, 7238430.94516625, 7238476.437091997, 7238505.9321726, 7238517.1875, 7238596.875, 7238628.517352212, 7238679.106205831, 7238732.8125, 7238780.298886319, 7238839.790300985, 7238949.290084788, 7239037.822708072, 7239091.706603551, 7239180.911160725, 7239221.176234749, 7239250.576200508, 7239287.978052244, 7239374.131637064, 7239382.207982615, 7239421.112595013, 7239446.850768475, 7239454.729882514, 7239515.906138039, 7239619.434298848, 7239622.914346337, 7239628.236683512, 7239701.912995888, 7239735.9375, 7239768.7018884905, 7239847.864636425, 7240032.790450242, 7240044.232689557, 7240106.25, 7240192.1875, 7240353.605956798, 7240481.694408827, 7240500.0, 7240574.143326013, 7240582.222904553, 7240650.211668502, 7240676.749881698, 7240802.0892179515, 7240804.6875, 7240807.0797241675, 7240818.83352768, 7240856.149232022, 7240876.348769243, 7240896.234305302, 7240925.0, 7240956.25, 7241045.267412688, 7241068.75, 7241091.586595118, 7241131.621539539, 7241156.999772594, 7241243.716659404, 7241248.70945277, 7241260.988697516, 7241304.7112304475, 7241342.1875, 7241415.839822772, 7241420.365064575, 7241428.125, 7241440.402888329, 7241476.5625, 7241520.3125, 7241626.556025019, 7241641.185891772, 7241647.894946779, 7241647.965602852, 7241651.625678031, 7241720.3125, 7241726.5625, 7241765.671721564, 7241790.864823774, 7241795.3125, 7241826.275044479, 7241828.1121847285, 7241890.287647733, 7241931.25, 7241967.029971012, 7242002.949606976, 7242022.455371734, 7242023.4375, 7242034.375, 7242058.24813849, 7242060.9375, 7242068.046034022, 7242073.413632911, 7242087.077408997, 7242089.034627913, 7242154.6875, 7242214.0625, 7242265.625, 7242331.417669841, 7242353.41451047, 7242403.735899154, 7242468.75, 7242482.762342844, 7242629.249594889, 7242632.168600751, 7242640.625, 7242653.629388236, 7242679.6875, 7242717.801238493, 7242734.955822399, 7242740.230427838, 7242764.242142322, 7242794.40153148, 7242811.250696437, 7242854.832899017, 7242871.517265489, 7242884.375, 7242940.625, 7242967.1875, 7242988.944008421, 7243054.16170148, 7243100.812500357, 7243265.625, 7243333.079890812, 7243338.1490920745, 7243366.812272203, 7243478.125, 7243489.586002544, 7243514.112812736, 7243514.65466488, 7243520.3125, 7243561.434005859, 7243607.439068186, 7243628.125, 7243630.033914933, 7243646.027797004, 7243649.600755259, 7243655.991458165, 7243700.0, 7243701.268835223, 7243731.466189596, 7243834.692718034, 7243932.8125, 7243962.740237847, 7243965.625, 7243985.2540224735, 7244053.753887387, 7244056.863910519, 7244071.875, 7244101.414771349, 7244140.516792923, 7244145.894560986, 7244256.432342257, 7244271.600140852, 7244298.2714255005, 7244329.563197994, 7244384.375, 7244385.9375, 7244418.75, 7244445.272887217, 7244522.929177753, 7244536.560042291, 7244604.202411861, 7244642.1875, 7244716.629250197, 7244737.193617483, 7245015.766043871, 7245028.081521879, 7245073.4375, ...], [6.164452416296394, 47.61957942979427, 54.818916456711435, 25.448046510160655, 22.344777627811848, 48.459332712214696, 5.5202825539447264, 136.27742838200442, 5.606114988526521, 26.84065879716844, 8.794159706542828, 9.628086254309084, 39.817589055855976, 11.540244551899608, 50.72755277556058, 8.774675971521122, 42.04475201421652, 18.64054177110576, 27.933718907994404, 32.19729446142911, 87.50859578923276, 50.62608591440266, 10.597674235239257, 6.727061011736343, 22.321457046371485, 9.727045930092071, 22.082517189812954, 16.026202438156243, 53.913621058461246, 18.418706355872885, 41.16106530495759, 23.627355154660947, 14.688390284159382, 8.385110048766569, 24.818872595206187, 10.7533595595275, 68.25280797041525, 19.82031020738371, 26.35919257561723, 5.521732096123658, 68.81271341834223, 126.61276442912646, 14.16191032014277, 28.089080725060498, 11.524704030070497, 19.084373278618198, 14.293872667363667, 57.73509930865472, 21.613504120529225, 15.551102526001078, 17.380882162274467, 18.5015348173926, 72.71899573059463, 9.42194338777703, 19.120196959325387, 121.07575033311976, 40.353688535723286, 6.058770018670265, 12.52571207981304, 24.578711256569783, 50.48499579424261, 53.128394810509725, 12.396279763749448, 23.76145176986218, 16.85903021302504, 49.38615755562138, 25.52838044863342, 25.436510558117895, 24.57173624537447, 67.77149789867224, 69.81029238877146, 59.997577499835685, 98.67280285488594, 30.271083388775903, 51.5975458357893, 5.580556766397531, 43.29813912534025, 12.706577354309506, 10.67250948241997, 26.072667452393617, 24.92266057236886, 52.85044807798542, 33.51447836096345, 7.79491247939124, 42.20118480697096, 138.34505837550645, 29.32490011848268, 51.25625685245427, 14.050396243142526, 73.82023843728386, 7.814629984913494, 27.74923454155926, 32.80945382879765, 68.07387644582968, 139.01587910367667, 85.55612204925511, 55.26794274071001, 13.953168532122273, 31.770209969909295, 88.85086118889208, 13.458432144459275, 6.224419731078966, 53.9483904485513, 25.247716292124743, 28.27272764698018, 8.985954349368303, 24.630833769859194, 87.0468306320842, 19.090317403022976, 26.008061824899826, 31.860090201372227, 20.61789801063797, 69.1184606603995, 8.84249658614501, 45.90111051269807, 7.984675924725284, 5.876633935499078, 41.93709074475734, 12.330013107241104, 66.30698951851443, 9.192026555758169, 85.83450000460249, 52.7246053568253, 47.883546101926356, 58.820829514250455, 16.37531401814738, 13.30769008002094, 40.16550949164285, 65.15852381186025, 9.938916913426619, 77.24998205358693, 154.5533134130564, 13.619154805071812, 31.466035690130873, 110.80679868630436, 44.90643324615556, 24.386126052867333, 10.089090612796735, 14.45018866111404, 92.20554439182794, 21.403111355411845, 65.146982176691, 70.44590096430764, 42.79090030487396, 30.242847736934902, 46.7193832813938, 30.98215417291207, 22.766168170151214, 19.40123754963284, 40.20586793623224, 96.77456722593728, 16.74711801479116, 13.2638929625093, 15.740817893220774, 45.81890336378714, 92.40499569955948, 19.747416245447933, 25.71200396656075, 45.53100120940782, 59.76179445179177, 19.119528607006274, 12.11081645001829, 6.065563054305868, 51.48447797078985, 25.651153768410246, 24.94865484983955, 97.0745647907232, 20.042233850317402, 10.252352000919544, 7.046417062661739, 25.161360090419322, 118.83287211540215, 10.077716090845854, 138.4288844270901, 8.28797294196989, 18.93313115999938, 39.577969156963874, 25.777775136673846, 10.877570294966599, 68.67590378856517, 36.770919446057064, 17.02528941559099, 13.991716922567125, 7.418011609771411, 25.881318818277958, 59.71257434354196, 38.56407874979237, 16.809918049909804, 10.467202848129569, 41.854859792779195, 42.41028634676868, 136.74931804294576, 8.712235764366483, 18.87965795365233, 8.92471573680775, 14.537862974041676, 76.62994039897598, 20.28245524886267, 13.913162448469905, 14.547656344593726, 24.659210415519446, 17.858018930501792, 41.29582644509506, 65.47534377424698, 6.603782845614633, 6.194318916618713, 46.128420196947104, 23.955242609208845, 26.522064233926034, 7.447992255433003, 48.081740593813926, 99.69502533108056, 18.908280686507737, 28.535224251387753, 9.688066472490656, 8.311253448609776, 35.170382032322195, 5.061921450010482, 55.57201401261403, 9.733523197785619, 8.76002698311068, 13.706903132687827, 55.26240312546315, 43.51730029152845, 173.24678192621366, 11.13508082061041, 19.906978255794154, 143.17433592668365, 22.28581016296493, 10.246323513599066, 20.637239912200137, 51.60674886672889, 76.38079279355767, 49.45267381915119, 79.27208223467693, 46.316644067537936, 52.791431723259265, 14.731793058932336, 47.5541305117593, 11.41240093959758, 92.28834816394391, 106.27171307584982, 49.22236459310881, 106.52166303031338, 83.59426901014892, 14.584162921520297, 5.880757864751477, 10.347371058764981, 111.9956438487284, 68.66468462163017, 163.6434024432536, 157.01862073087196, 19.78788084787678, 12.416111584109629, 51.33414102419112, 7.281250409445485, 67.225699768782, 26.347845501027496, 26.985768302840853, 6.211811228138428, 71.27581533327022, 102.42770442645276, 70.46064325151434, 38.77083056828171, 25.080922953646258, 68.42539485631644, 45.43375454076214, 29.17223503424508, 44.22813819283426, 59.696441252467736, 177.79640618592538, 7.912183840642045, 41.72750955750026, 105.30955232892518, 18.843867807001853, 16.472323026219534, 98.80562690205167, 9.88636473930334, 17.15405495141045, 40.20422565641532, 44.864429425877844, 34.70217600371777, 80.21362428447286, 58.63013822805292, 87.93121561251388, 23.677727386110345, 73.22014327904425, 31.51160575959482, 121.35746248990645, 20.46556664756477, 10.692349339732948, 5.342207530484262, 97.21986427419017, 15.850138066232336, 13.303945790101444, 13.14511019720856, 50.34522669300972, 85.87387231883874, 36.23193070647407, 19.441149320519976, 5.629223673759521, 17.061318151700004, 12.617048933986723, 58.30069322828247, 52.65783841493125, 45.73994225232462, 12.603481832490015, 60.91677788715526, 81.05376206260394, 40.83311146871236, 17.14802035083739, 63.08319223984278, 63.07281195697276, 7.9700286443982, 94.45138811609372, 70.43678214697451, 64.40879907848905, 7.797139979178973, 137.9873014071886, 29.92492258590383, 28.665520303277884, 20.35594665143019, 12.787552517938122, 28.958713761462462, 157.9648649645973, 15.430125889948057, 8.245143886338584, 23.31099249982346, 22.882297511861708, 39.93967863209849, 20.03019848954497, 30.484845749262718, 41.913862002719696, 138.37572887997945, 15.118759282649865, 115.26644552018968, 45.44720166738491, 42.16040967862557, 49.99605389603387, 17.152553969088274, 17.47780976012428, 59.59813098767282, 100.04107546380895, 38.22666905461826, 21.812604856199847, 62.19626130042154, 92.67614876971216, 25.483515629076365, 7.724794286508567, 60.62121724748592, 30.290128818576264, 71.11335777318685, 23.695887213228428, 14.896587599199902, 24.840238262181135, 23.642728922154713, 132.78566082422708, 54.70467698028872, 20.697418087980065, 27.250806165499963, 19.682300426015875, 29.845890197829316, 41.23887651933386, 16.97029615523117, 69.94392763734925, 24.970909561008057, 75.75749304553004, 27.336505803624394, 23.737677670452804, 5.264928479969998, 30.78596428655157, 15.30352011517482, 14.894359422349098, 14.792482043795307, 24.404465729830765, 63.37491769866704, 10.214758821846178, 23.471146439814486, 32.960122630155695, 12.232793713512239, 34.39498891112637, 22.231021202874476, 31.193805097999814, 11.318368214385497, 16.820660169355783, 173.15974713900422, 61.86019153357415, 6.9194175147674715, 75.9887353127142, 28.668397406818055, 64.55294830003481, 9.632554958557295, 6.4714238774876245, 23.915043832986957, 105.67854693889848, 6.359031683615159, 22.532014898426375, 115.9806432644249, 30.312866160831902, 30.241520338717713, 100.52610853007664, 137.52903274824004, 36.409765067711376, 38.49311185262432, 13.859979770039795, 109.94581323033812, 63.4256006109876, 24.942695869099243, 14.093500428364266, 112.88521732024599, 32.078998048254995, 27.782564530454675, 96.13807383724026, 66.94212647035815, 96.30038698924474, 29.85930176197861, 38.96562548224629, 38.25969236272725, 150.01585714239394, 26.777477090280364, 5.211036405580122, 8.996312234219612, 60.68585576439474, 60.37776212445782, 20.503383452082893, 26.649111187952066, 22.90185528931933, 123.08677101132298, 54.20954394000575, 20.803697563336605, 120.53966149685688, 5.88899675064503, 50.810804346299335, 27.628770925189826, 22.396791622642624, 18.9590979507963, 28.425664297385037, 36.18425474238418, 28.021522694100568, 10.710343534441153, 16.336455893378115, 106.94378458265864, 90.17505755737585, 148.7884010274945, 129.1524911323432, 34.01827859429339, 68.67774082940161, 8.089319257394525, 84.75799405125659, 50.776468427189414, 25.64622468427607, 8.777005691155757, 93.54003962917025, 14.333014865973764, 36.37097484122827, 91.02512746022393, 94.36969828927737, 97.363717555531, 76.57452146302597, 37.444844928093055, 16.91664930665526, 13.235408424298793, 5.501610753791777, 76.169782071474, 12.798253608034546, 194.20604984220762, 11.246528010150884, 41.596797861271, 125.95892372331294, 22.28698010462283, 30.004921259442234, 72.06824715212666, 35.34104142557433, 100.11568828706879, 132.2384859740657, 10.705500635441874, 70.63987129346725, 10.483341020173562, 165.24030915845947, 25.955601335454894, 131.8273136226939, 32.83285744035247, 13.898626142213425, 26.772612297713906, 7.399229746348036, 97.55729223782996, 21.864471527405826, 12.755021663600754, 11.931937417427612, 14.338184199371863, 62.15772851345558, 28.698829630690142, 13.667179605434654, 49.5191714674537, 11.782005460447856, 25.798425015620552, 13.418639360884157, 96.11496784369248, 60.62552001775036, 34.92214885085673, 133.64698043326675, 40.5930557430851, 46.46641293175421, 107.25434688784195, 20.359566379669673, 5.03212234327883, 66.19215889334397, 84.27817184146872, 141.35961177747546, 17.23555506613659, 10.134704831704418, 288.7106395462758, 7.363444446295302, 142.67634073303682, 5.899152331481156, 51.159999712805806, 8.468414049920776, 18.770221024742526, 88.24248565229433, 48.890107817566566, 12.359723491238086, 13.506316401952073, 5.334076265245904, 80.2519287674908, 9.122169113664985, 22.35276375041595, 86.16210984840822, 52.91018351649302, 25.83247389402028, 14.722467911564253, 43.42743786566502, 44.5638826198385, 34.80699105518421, 56.08960327724377, 23.501569370083963, 84.38117388571804, 5.143397733195324, 140.3552942175401, 42.3972176570184, 8.27520645084531, 7.7407648501161885, 20.276551115557158, 10.751438544114105, 113.26341403873823, 49.83222840082991, 15.829441422796105, 154.76547564268503, 44.996900174874106, 13.5577074697382, 14.475374794447324, 57.36840525082355, 14.250283136361604, 100.38901271597393, 42.30517270897859, 11.761633929543311, 28.89973123394293, 48.35044578413812, 19.031314366621995, 94.93565833593867, 19.40874032928714, 6.863604895001295, 14.795711100534445, 113.85687509316845, 9.406710767093506, 185.16205917089007, 40.18360058843708, 52.63392253059212, 129.63914988866486, 78.44614795745034, 18.455307611261983, 7.301952360385987, 84.37516266700177, 93.6172889932462, 87.07969031298664, 85.08734428529264, 7.076902307835914, 14.390703962788916, 33.24443157309841, 38.05845699931428, 107.94642226231127, 54.66820027955534, 54.64796599411717, 32.52483300580103, 36.01313409077027, 28.471319757042842, 62.39941934311505, 23.071293594741586, 27.27713485639967, 21.977440495031512, 6.296018471021364, 7.691552291646841, 38.13354117687327, 88.93961986305223, 26.970465893578357, 10.03260722523684, 5.436365649922096, 6.333129945604393, 104.28728981087923, 10.22220258588954, 21.70302263918743, 9.458673056669086, 102.61255009678878, 12.763654978363304, 56.46993443326729, 69.41788945953613, 13.350816181188149, 53.807178302659565, 6.854866143597254, 13.345556458253519, 80.24465644310699, 33.55803247396991, 32.363073741103584, 34.42142476240273, 66.09242510474185, 27.835830299710146, 38.06346393517689, 15.797254030483142, 24.61150556279661, 19.406300598168393, 11.7532881167268, 18.79511092607786, 148.38607009967524, 7.284144163641398, 10.460263602715642, 29.372368112320103, 30.405637897123327, 14.177179554524406, 94.61475947961748, 111.91188754124639, 126.89267616720409, 50.18492869639189, 30.935697344795184, 56.17645234070119, 41.462967563938065, 38.35475956621747, 60.036152169492844, 20.277746333705682, 15.393057342633385, 80.46344620998535, 5.755628561111803, 102.79734219801209, 120.46275484032292, 28.042070935411655, 47.3575836392997, 5.343564053024619, 21.01295626211607, 177.81681262892235, 15.330434987522471, 10.84094238100057, 5.086329018075442, 15.146942410292269, 16.184651863040575, 13.22593905076575, 91.81533300692004, 8.295629444043943, 16.033085881796573, 6.213844021944555, 11.267085151992196, 22.913806293474575, 48.75706339674147, 147.9561168171366, 44.59370669699586, 16.927670724254998, 14.785008962229849, 27.846066206705327, 54.18727204238668, 14.880000075592017, 32.59231915437438, 9.31348248787892, 139.93652025582048, 136.9890679143851, 23.930122279043758, 8.709548473789738, 5.182379109895479, 34.7048402130389, 138.14228359140355, 9.615915664796306, 11.797363167593902, 5.697732194506843, 65.0645619905282, 7.660197697332953, 5.046630779957063, 14.683479465433068, 11.39081135548003, 5.87957186029999, 9.88091055298312, 218.15881698928442, 35.320155330779315, 120.07280880675107, 17.3263016942976, 58.6473600540444, 10.36732972264211, 21.460159826342863, 23.51541665276806, 7.808724562245659, 26.177066654034373, 78.3832111602679, 128.2986378840261, 34.34554481350364, 12.228781381099317, 8.932355791553803, 12.740389782451157, 31.552496299581875, 41.57059709809769, 20.03295338845416, 7.057092591341337, 21.82486214558624, 36.47759636802732, 31.679866924212746, 137.09488459972914, 39.48253784497021, 36.48411213617899, 21.545759300085493, 123.29089553484734, 27.62091533272923, 68.07134072217023, 46.31068491111573, 37.54137054581434, 304.31444767565637, 81.65349347689099, 14.770558336032025, 6.093348710685981, 5.182455304237598, 10.025452825276226, 17.538478461938023, 37.03476359051731, 34.20328105197377, 100.81011261461731, 35.832442770701846, 14.450186718674907, 81.15947539613869, 27.394455076749168, 44.55266512536202, 31.51932431617763, 35.197942104366916, 42.62626829873724, 221.7635459979294, 6.858979237270887, 44.627682097358964, 33.13342667571159, 48.396543593140926, 9.933940387933895, 91.99906660871842, 99.70481241101092, 70.68663457142317, 6.800458563059877, 25.21535201464977, 89.95465766881436, 36.72717621627853, 113.452591596774, 22.23966301751202, 15.802422598605936, 93.39734228548176, 19.242891988455785, 24.99608656618953, 35.309926281742506, 12.309095136088525, 25.791987521721182, 267.2978516879791, 16.876540075638164, 63.72045915316177, 5.346299015669569, 58.13080075536593, 61.807142781206466, 11.16776377814238, 7.541724698094405, 50.180163987360515, 58.42938212027733, 13.822221120517085, 34.87391951540306, 10.39370735769256, 17.991334989558315, 41.0432153183423, 109.51263683186016, 17.885614261715645, 60.473339025807675, 103.91248457383047, 16.062258505441612, 70.75055109947493, 230.39738689931707, 16.234090286696762, 35.507982473823624, 8.193439622524474, 52.26918087297844, 8.55594823929142, 85.95065715673502, 39.871499440459985, 8.557705187554138, 42.92284387892045, 25.051163793315197, 6.20846164644423, 40.478263813827, 6.628380989669619, 86.4474981143857, 51.812916975035336, 8.088126261462596, 15.88420417380687, 56.61402307626301, 64.96447694729311, 63.28619271170298, 46.39630667619888, 70.22474302542246, 64.0520853629398, 11.872577812420023, 24.367715162757484, 24.266060933553234, 5.276134477799111, 28.81081515744484, 70.91969793515362, 95.77226907175333, 37.18794416530647, 29.334983316728557, 19.31026506095055, 147.27860036013618, 6.962682866027828, 102.88397389366713, 84.30671791695896, 14.061342979554373, 104.57795972209398, 22.095805782138896, 88.62634828989171, 50.67302812587759, 74.56600679291192, 98.42611975642784, 6.392144220349139, 9.752857338517398, 97.80793398976455, 77.40904669749148, 20.988249541902086, 36.88766092847842, 11.907934415385016, 8.306662157277323, 17.614922033057958, 157.85291863607569, 46.19428037997536, 92.2381269469151, 22.847611681666514, 53.142697082276186, 43.55021971335356, 30.318240214397072, 44.040764341096406, 143.14164403726895, 100.90241046010527, 9.908044502300916, 31.957484872231525, 41.97965768797413, 6.122313479528652, 13.378672452809196, 31.20264496127961, 189.89472056326454, 57.80659680239274, 206.60568488359164, 9.9964845374597, 13.048630960900448, 7.9207432778503115, 47.00919828664635, 31.151491682265956, 7.708187125444066, 12.397258524603252, 21.265198203922704, 7.644137420210506, 44.38478997550412, 32.06415734793455, 27.607434867064317, 16.104906492901307, 61.29593975895332, 30.91958374038547, 103.62055711964601, 46.645070674791235, 23.04113084244294, 92.93880061219767, 51.9769347763062, 64.733273450735, 101.81804983812557, 5.297670635051219, 42.375159676244564, 9.82037058191337, 44.41689025104794, 45.72271745047091, 17.845022539578856, 26.67957857189672, 26.262159275820295, 20.19572712737584, 77.72136080110465, 34.58922008033593, 15.174076802884317, 43.34601580041791, 21.533050835399518, 56.112581986229145, 69.13245364121133, 62.178562561029025, 5.35132767850662, 9.375072028715712, 11.165002717680077, 40.61335100810216, 141.56283945479967, 118.48946674208668, 33.72173727957297, 33.06583955562843, 89.47023863672204, 98.17885940893474, 28.39752090536531, 12.134369375476657, 35.487962454562464, 24.00960210957998, 15.187909356396908, 118.29240408142434, 101.24585097451, 11.160437678422529, 22.246759901467506, 74.00796913456479, 36.964314883272884, 28.273763946376306, 5.5956496958712245, 29.871377052237325, 306.5382818406372, 55.247069944592084, 14.123478900514645, 28.962687491405305, 56.470317724940266, 16.910197729195698, 94.81453772531032, 31.95393480582688, 11.090604815411597, 22.30168956056114, 67.77054352807228, 34.73318606376841, 51.04597080221634, 78.70606106951172, 90.54431817614037, 120.2875176218732, 12.238804039720256, 109.93073764754253, 38.10885321547076, 6.420569000500376, 33.90518200106543, 102.47233738415144, 12.58339513424128, 55.390901167061116, 74.9605287143819, 5.143112561389003, 13.624370028429505, 52.474300001721026, 9.950601925923262, 16.28668634652088, 144.65696079749165, 23.040252080503798, 70.29902971480021, 84.17293961044601, 41.94287149495096, 17.998978088617505, 21.239549548647133, 28.70293523515845, 92.74041132407088, 5.29941885157764, 73.68727632343732, 5.515142526045237, 52.86214005628665, 9.817095384214555, 15.1368095476013, 17.80880091980939, 31.707476318555347, 6.141299544049584, 22.855981587983884, 37.13483204205661, 38.4341709326727, 47.799142042181956, 8.086161706539675, 6.235076892945675, 28.8164450401859, 5.387364931614948, 108.26450687729533, 11.663500251836599, 60.837092549590004, 15.943716736226834, 87.66318118489848, 19.839247741123188, 6.15603425759724, 17.94390376191485, 40.981182568544035, 10.90439032431165, 5.6080857821957215, 8.620392100276781, 8.385415633394292, 13.215665727326535, 25.626761471496362, 71.9220032133009, 34.478008227139014, 79.22001145405372, 70.78072592482833, 70.17060086113665, 28.487286249686093, 12.263522109407916, 21.64315502416769, 39.837110886873454, 82.96494296423046, 7.496059876869603, 177.5268827120502, 30.849447363109462, 60.668132880322155, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2624844.4535610145, 2976916.774996, 2980101.5625, 2980955.487071022, 2992118.331338881, 3024410.9375, 3040727.858453701, 3115190.625, 3118220.168278718, 3121388.9711849038, 3151952.4130533524, 3157092.5187012437, 3165332.8125, 3166301.8113146466, 3167634.375, 3182452.3839950818, 3183148.4375, 3197880.407018822, 3207633.1902345014, 3222201.270886129, 3232700.0, 3235830.9138775794, 3235868.3821961856, 3237509.1896626507, 3250741.550384632, 3312237.9335664893, 3367299.4523064755, 3376387.7581757056, 3376464.0625, 3379778.8120230786, 3432379.1861995263, 3432543.440278735, 3434104.306007149, 3437620.4942922182, 3453343.5292594377, 3460313.8090327983, 3462260.9375, 3494513.3766945824, 3494551.881389135, 3494621.6389326467, 3505912.5, 3562096.875, 3575116.9667342114, 3581032.7901002127, 3588890.8649593154, 3599955.5686128275, 3603974.819033605, 3611768.75, 3611771.3869858044, 3611773.5887404485, 3634920.8328159032, 3639578.824275341, 3641923.7915778835, 3642215.730171326, 3654822.66144755, 3663339.5544946482, 3668435.9375, 3676507.5256620497, 3682628.3043011534, 3690276.3246674654, 3690942.1875, 3708945.3125, 3719060.0588543215, 3732726.2633379935, 3748137.9260497107, 3753406.25, 3754418.5774913924, 3763309.7845067135, 3763734.1366650006, 3767119.6773313885, 3772148.200740673, 3781662.5, 3782235.793460049, 3807831.25, 3812133.0239031683, 3824308.7533946927, 3840432.8125, 3843432.6223786618, 3843879.375357115, 3844389.7138267877, 3844748.2240224835, 3864107.8125, 3877588.870073408, 3896923.938082142, 3930593.75, 3945358.3156500896, 3955162.5, 3972229.941955809, 3973566.932258973, 3973570.607555318, 3978042.7364472025, 3981828.899061763, 3983130.2846013093, 4019519.87458972, 4021198.198518198, 4022799.576445452, 4041442.1875, 4056852.839047999, 4075981.0706297853, 4080101.5625, 4081838.610136377, 4081838.7162364316, 4083076.5625, 4083869.8405768126, 4084160.9246313605, 4108366.748600151, 4110665.3909113277, 4111100.0, 4122863.282405404, 4142274.8583105453, 4148544.2037675804, 4148552.5325489887, 4149405.6513625765, 4161110.2965585273, 4164679.6875, 4165157.19435737, 4165242.9998246646, 4192526.5625, 4196506.903504676, 4198310.725134736, 4201624.830434394, 4202146.875, 4230782.8125, 4243534.910632321, 4246050.0, 4246797.20637396, 4271901.055784011, 4336289.2046446595, 4336325.0, 4336345.9530695435, 4345523.4375, 4351456.25, 4353519.095854347, 4355185.9375, 4388681.25, 4390135.9375, 4391453.618085445, 4391580.465558887, 4391854.552334198, 4393201.539335369, 4394015.115931476, 4394735.9375, 4433090.468087626, 4472547.428539636, 4477601.5625, 4478431.455219018, 4483803.47306799, 4508049.61880354, 4527039.053094274, 4533675.0, 4541403.125, 4544458.217301812, 4545113.539648171, 4548597.070010042, 4560545.3125, 4563068.75, 4568755.937369673, 4580094.329394855, 4583294.627875528, 4584050.0, 4596353.911357313, 4596713.049428048, 4598638.84296341, 4605946.99480479, 4606985.740692814, 4607632.6008301, 4611801.5625, 4632439.624898903, 4632813.419611296, 4671351.269152527, 4716338.784624745, 4748350.012503521, 4754164.830396867, 4754530.496930548, 4754534.377638198, 4754714.823368522, 4754778.125, 4754839.245840778, 4754898.271350864, 4754929.066808488, 4754958.75915735, 4755066.306121129, 4755309.101298142, 4755335.394595302, 4755576.418692775, 4755788.343647314, 4755797.684488337, 4755806.666772112, 4755944.844404527, 4756071.875, 4756098.410055149, 4756186.333676331, 4756267.914127573, 4756611.978582574, 4756654.163898988, 4756705.1713061845, 4756722.963696087, 4756774.252866313, 4756984.95414742, 4757009.404481051, 4757125.041463779, 4757327.163236213, 4757465.625, 4757657.8125, 4757666.331091975, 4757913.463033866, 4758168.27106072, 4758248.153342758, 4759524.889855661, 4767552.674353974, 4768076.958676105, 4768326.504006067, 4770368.816650896, 4784394.108116423, 4818481.64369751, 4819876.608873219, 4822571.5118782725, 4824523.050253199, 4825176.5625, 4894848.877635771, 4899557.049478833, 4899709.008409598, 4901046.875, 4905226.451928451, 4905309.375, 4914193.754712551, 4922216.512301885, 4928635.9375, 4940462.937660468, 4951854.03952348, 5009494.722199423, 5080998.162302109, 5084616.901361333, 5088998.078125802, 5092929.6875, 5133325.5877984455, 5161181.284754734, 5188456.193868454, 5188593.75, 5191093.924810373, 5216634.1380263325, 5216660.9375, 5216698.388762643, 5218634.375, 5381565.625, 5404065.527976696, 5408308.6759808, 5410532.248455713, 5432226.5625, 5433663.816481268, 5436723.347391693, 5492649.897722106, 5543952.435194961, 5569849.130340363, 5575012.5, 5575152.1374144675, 5582373.4375, 5593515.50432864, 5623954.441056317, 5625883.923665238, 5626764.3361201305, 5627110.9375, 5627871.210230933, 5627997.401360743, 5628019.554475494, 5628261.205688296, 5628598.8732783245, 5628694.684208378, 5629790.625, 5629904.6875, 5630372.434803687, 5631305.467889311, 5631350.0, 5631968.75, 5632089.810930332, 5632164.413466146, 5632400.837063794, 5632475.590698714, 5632623.917785423, 5632634.375, 5632635.3666811595, 5632712.146847445, 5632743.75, 5632748.64998353, 5632809.28578478, 5632816.881762399, 5632882.978704029, 5632949.7077408545, 5633060.9375, 5633215.015432511, 5633229.389893792, 5633410.945839584, 5633444.2607592875, 5633539.282076454, 5633540.116910692, 5633861.93257823, 5634160.719038772, 5634232.519161909, 5634339.0625, 5634502.319415768, 5634629.958661557, 5634862.9635082185, 5634874.218960156, 5634942.712367205, 5634951.438141845, 5635492.53858121, 5635502.338112244, 5635612.5, 5635734.375, 5638921.875, 5640217.666701079, 5640898.4375, 5646706.25, 5646736.849254456, 5646832.8125, 5647109.788784983, 5647475.0, 5649748.9435735885, 5677768.921564449, 5677773.498774953, 5695367.1875, 5811917.038937661, 5842074.290852648, 5856246.087778957, 5860325.0, 5880356.372548029, 5905142.108318236, 5918310.602275779, 5918335.641269279, 5918343.75, 5926791.527181117, 5927777.941118908, 5928260.9375, 5928942.1875, 5929580.610874774, 5931473.4375, 5933643.149743848, 5933643.75, 5933752.756677762, 5934792.580566138, 5935158.349500271, 5935280.759388356, 5935814.0625, 5935829.040460305, 5936121.406443267, 5936476.5625, 5937734.375, 5941518.574537363, 5942626.886529277, 5944372.658172511, 5952004.6875, 5953812.5, 5955110.633193476, 5955409.363164098, 5981473.21826061, 6010019.67042445, 6010020.3125, 6019698.4375, 6026700.978857519, 6087107.433771359, 6168103.984556267, 6180483.976036738, 6185096.872570784, 6186416.071801733, 6186948.891936658, 6187445.537780416, 6187984.375, 6188257.749452234, 6188359.816739414, 6188835.066786948, 6190423.4375, 6198036.02934266, 6203988.336260421, 6212061.896972602, 6212883.315407213, 6217438.825310573, 6220183.700213712, 6223621.552791671, 6224456.344613577, 6228502.170557048, 6228576.5625, 6228852.695922658, 6229178.125, 6229786.056148289, 6229886.356307603, 6230080.802595439, 6230396.5596795315, 6231192.921313819, 6231553.125, 6231721.875, 6232566.919489576, 6232933.148406204, 6233573.336820942, 6233654.40025468, 6233868.75, 6233925.6938573, 6234087.525800586, 6236626.886753082, 6236995.3125, 6237879.6875, 6241611.342847775, 6242677.486525623, 6244009.33579637, 6244812.5, 6244879.371524261, 6246318.75, 6261956.25, 6262466.975416121, 6276312.72112338, 6276373.748769066, 6277301.5625, 6293659.336359666, 6326885.65365644, 6330677.502838449, 6354366.912996, 6369845.3125, 6415712.265716098, 6416284.720370837, 6451910.9375, 6453121.779993304, 6453239.358775386, 6459576.137706372, 6468065.625, 6471345.42633747, 6472346.269711836, 6477026.4599287165, 6477144.814821819, 6481218.75, 6485996.875, 6495488.490497389, 6496978.206722324, 6513827.527367986, 6514052.110228006, 6514950.578881719, 6516971.585608791, 6517063.264458291, 6517329.900604173, 6520588.8295294875, 6521145.148470524, 6521663.777999891, 6533459.698437219, 6533854.364023352, 6535107.8125, 6542897.759675697, 6543028.293853577, 6543294.893520058, 6544470.3125, 6545157.419875979, 6545462.227485156, 6545693.75, 6546196.733209393, 6546671.137483075, 6547167.786423738, 6547235.768136699, 6547260.9375, 6549021.46743363, 6549250.0, 6551590.625, 6551691.934553275, 6551959.377839833, 6555541.654026374, 6561811.966568588, 6574979.021569656, 6575892.1875, 6579597.732768118, 6580598.766971102, 6589018.824710974, 6589676.5625, 6591309.057220199, 6599043.615483128, 6601106.608482757, 6601382.096101851, 6602422.336785918, 6602556.22290217, 6605815.625, 6607984.086979842, 6609851.187931823, 6610157.357040466, 6610277.584022908, 6610476.106442401, 6611506.62920532, 6612045.079507446, 6612604.317924303, 6615471.315367208, 6624543.14837819, 6631134.369759726, 6642973.535214095, 6643628.96486088, 6653522.335043328, 6655590.457162278, 6677384.059064274, 6677396.071963589, 6681564.076196757, 6686523.4375, 6686719.131814687, 6687334.220011017, 6688358.908463753, 6691875.617812214, 6697609.27937273, 6699747.106470902, 6700125.0, 6700246.875, 6700436.82242305, 6701502.323779288, 6701542.984774879, 6701621.308346068, 6701815.520740834, 6702021.660432131, 6703636.87652259, 6703822.369830614, 6708010.193410193, 6709054.6875, 6713971.159487108, 6714010.263586711, 6714097.963370899, 6714163.945575613, 6714442.516223939, 6715541.363052371, 6719340.625, 6719435.9375, 6720935.042173813, 6725782.756569877, 6725801.331745584, 6728690.412336567, 6729695.054230136, 6730604.269565197, 6735068.784490194, 6736060.394740992, 6736401.314193489, 6737315.566319896, 6737620.3125, 6738067.1875, 6745384.375, 6745384.375, 6745426.242739591, 6761568.450340787, 6768136.531247274, 6768400.0, 6771351.5625, 6779442.165935437, 6779651.927381671, 6780687.221869954, 6789216.932655805, 6790648.4375, 6790990.625, 6793662.714961371, 6795024.96777332, 6796241.588226619, 6796926.144961106, 6799156.726380052, 6801426.437244652, 6803666.993504339, 6804000.295871951, 6804078.125, 6804476.933441832, 6805621.875, 6806651.676832403, 6810383.586875115, 6812710.14009957, 6821729.446454102, 6824048.919029522, 6825204.421338806, 6825409.395576896, 6828178.21273995, 6830300.832363415, 6830353.309337612, 6830515.625, 6831113.455376833, 6831151.5625, 6832501.3479879, 6832685.0198614495, 6832766.4040377755, 6835926.5625, 6836078.2366743535, 6837290.619911191, 6837688.890271878, 6837751.410073034, 6845830.984446259, 6850482.54961625, 6851727.286820638, 6852930.697099688, 6861203.125, 6861927.795689822, 6871407.087820018, 6872306.2472749185, 6872884.443781172, 6875010.582379408, 6875923.371132002, 6877183.301270859, 6877833.037255629, 6880843.98774967, 6885629.6875, 6887519.819361545, 6888771.791204643, 6891406.977196901, 6893040.0195300495, 6894891.129615732, 6895220.784617164, 6895705.581562053, 6895947.958289358, 6910089.209276365, 6912439.0625, 6912452.405951593, 6914334.375, 6915606.39269831, 6915654.196519425, 6916104.6875, 6921887.941016153, 6923018.09933239, 6923053.038770614, 6924153.125, 6925331.071570704, 6925331.25, 6925962.957394121, 6938353.08921233, 6938617.114309645, 6941898.645250882, 6944807.86172333, 6945896.144206079, 6946748.803970192, 6947195.904744242, 6947864.02074165, 6947914.647250844, 6947940.15145073, 6948165.249042688, 6948174.495814222, 6948748.221393969, 6948780.447566431, 6948814.0625, 6949110.9375, 6949131.25, 6949154.6875, 6949189.0625, 6949268.535149216, 6949450.42426091, 6949456.25, 6949460.5914789485, 6949837.6136306925, 6950046.875, 6950211.678948229, 6950225.938485803, 6950432.282027448, 6950439.037636698, 6950449.275579112, 6950643.797851407, 6951136.044351419, 6951210.9375, 6951228.223429443, 6951515.433448758, 6951711.873872086, 6951720.365373534, 6951731.401277444, 6951784.142835741, 6951791.230119449, 6952445.32957855, 6953501.139310841, 6954276.128200663, 6954436.024876708, 6955144.94402758, 6956977.349813474, 6957052.927716169, 6957561.043905858, 6957908.251395075, 6957951.520825274, 6958893.714759037, 6961209.12424235, 6961242.171268158, 6962270.5157242, 6974696.853729731, 6974855.939667661, 6975062.522504404, 6975951.276414494, 6983172.597483878, 6983250.716001695, 6988757.791638955, 6988781.25, 6989044.068346821, 6992858.2024722705, 6996227.982239563, 6997724.965280048, 7012931.404787217, 7019931.54969507, 7021342.118114624, 7023884.537048172, 7058144.59879677, 7068453.710468665, 7068827.285738353, 7073964.0625, 7087411.038705504, 7129130.3180133365, 7134131.139658786, 7135846.3272011755, 7138911.996691528, 7143119.958089874, 7148923.972019413, 7153150.369418754, 7192253.125, 7192862.5, 7204120.3125, 7206113.106157325, 7209593.237089437, 7210742.490644043, 7215013.8053227905, 7215470.3125, 7218258.71501111, 7218977.87437574, 7219068.282626655, 7219221.875, 7219238.314931468, 7220275.0, 7221534.375, 7221701.5625, 7222641.89094608, 7222791.121031028, 7223098.390122588, 7223108.603798105, 7223246.875, 7223553.125, 7224181.560941249, 7225250.0, 7226482.766914151, 7226534.425329351, 7227430.4066427555, 7227436.658182465, 7227438.04731865, 7227547.985257135, 7227557.8125, 7227596.74557782, 7227601.911930254, 7227862.364833638, 7227956.186107977, 7228165.565176473, 7228532.8125, 7228620.3125, 7229091.815522389, 7229300.0, 7229660.9375, 7229808.272619665, 7229856.606835756, 7229870.3125, 7230110.9375, 7230267.8233870715, 7230392.1875, 7230497.4787485665, 7230530.705372335, 7230606.432315389, 7230649.806615977, 7230715.625, 7230785.9375, 7230915.625, 7231393.321718601, 7231618.9589114515, 7231990.625, 7232210.737516924, 7233024.791616733, 7233158.137136189, 7233741.268819634, 7233969.401281772, 7234141.5906627085, 7234336.3668398615, 7234734.412949296, 7235101.6896907175, 7235350.0, 7235624.779516486, 7235804.712976939, 7235851.3891618075, 7235884.081743112, 7235920.3125, 7235929.005925973, 7235976.39327402, 7235993.223507156, 7236021.659415443, 7236039.0625, 7236053.759855734, 7236195.917081651, 7236196.92720641, 7236246.775772382, 7236248.047002619, 7236262.244707647, 7236298.4375, 7236329.9897809485, 7236355.816422017, 7236392.00712232, 7236412.336246153, 7236422.351865945, 7236429.6875, 7236430.848989863, 7236459.854776492, 7236479.6875, 7236515.420414251, 7236527.645514028, 7236540.674312998, 7236553.97075816, 7236598.4375, 7236656.25, 7236665.229875827, 7236681.47713673, 7236779.6875, 7236798.715538855, 7236887.5, 7236895.3125, 7236896.875, 7236918.75, 7236930.116944029, 7236941.93431294, 7236946.614299348, 7236966.695721286, 7237064.0625, 7237126.241062874, 7237149.720168646, 7237150.0, 7237157.8125, 7237236.031715168, 7237248.053215896, 7237257.172004072, 7237333.898951362, 7237517.1875, 7237545.0606782185, 7237575.610358451, 7237622.995867946, 7237698.4375, 7237712.5, 7237740.432143424, 7237827.335292025, 7237860.303837066, 7237866.084651125, 7237909.375, 7237934.375, 7237958.822856749, 7238010.9375, 7238047.322727793, 7238187.537788569, 7238209.999998224, 7238305.669626829, 7238325.0, 7238430.94516625, 7238476.437091997, 7238505.9321726, 7238517.1875, 7238596.875, 7238628.517352212, 7238679.106205831, 7238732.8125, 7238780.298886319, 7238839.790300985, 7238949.290084788, 7239037.822708072, 7239091.706603551, 7239180.911160725, 7239221.176234749, 7239250.576200508, 7239287.978052244, 7239374.131637064, 7239382.207982615, 7239421.112595013, 7239446.850768475, 7239454.729882514, 7239515.906138039, 7239619.434298848, 7239622.914346337, 7239628.236683512, 7239701.912995888, 7239735.9375, 7239768.7018884905, 7239847.864636425, 7240032.790450242, 7240044.232689557, 7240106.25, 7240192.1875, 7240353.605956798, 7240481.694408827, 7240500.0, 7240574.143326013, 7240582.222904553, 7240650.211668502, 7240676.749881698, 7240802.0892179515, 7240804.6875, 7240807.0797241675, 7240818.83352768, 7240856.149232022, 7240876.348769243, 7240896.234305302, 7240925.0, 7240956.25, 7241045.267412688, 7241068.75, 7241091.586595118, 7241131.621539539, 7241156.999772594, 7241243.716659404, 7241248.70945277, 7241260.988697516, 7241304.7112304475, 7241342.1875, 7241415.839822772, 7241420.365064575, 7241428.125, 7241440.402888329, 7241476.5625, 7241520.3125, 7241626.556025019, 7241641.185891772, 7241647.894946779, 7241647.965602852, 7241651.625678031, 7241720.3125, 7241726.5625, 7241765.671721564, 7241790.864823774, 7241795.3125, 7241826.275044479, 7241828.1121847285, 7241890.287647733, 7241931.25, 7241967.029971012, 7242002.949606976, 7242022.455371734, 7242023.4375, 7242034.375, 7242058.24813849, 7242060.9375, 7242068.046034022, 7242073.413632911, 7242087.077408997, 7242089.034627913, 7242154.6875, 7242214.0625, 7242265.625, 7242331.417669841, 7242353.41451047, 7242403.735899154, 7242468.75, 7242482.762342844, 7242629.249594889, 7242632.168600751, 7242640.625, 7242653.629388236, 7242679.6875, 7242717.801238493, 7242734.955822399, 7242740.230427838, 7242764.242142322, 7242794.40153148, 7242811.250696437, 7242854.832899017, 7242871.517265489, 7242884.375, 7242940.625, 7242967.1875, 7242988.944008421, 7243054.16170148, 7243100.812500357, 7243265.625, 7243333.079890812, 7243338.1490920745, 7243366.812272203, 7243478.125, 7243489.586002544, 7243514.112812736, 7243514.65466488, 7243520.3125, 7243561.434005859, 7243607.439068186, 7243628.125, 7243630.033914933, 7243646.027797004, 7243649.600755259, 7243655.991458165, 7243700.0, 7243701.268835223, 7243731.466189596, 7243834.692718034, 7243932.8125, 7243962.740237847, 7243965.625, 7243985.2540224735, 7244053.753887387, 7244056.863910519, 7244071.875, 7244101.414771349, 7244140.516792923, 7244145.894560986, 7244256.432342257, 7244271.600140852, 7244298.2714255005, 7244329.563197994, 7244384.375, 7244385.9375, 7244418.75, 7244445.272887217, 7244522.929177753, 7244536.560042291, 7244604.202411861, 7244642.1875, 7244716.629250197, 7244737.193617483, 7245015.766043871, 7245028.081521879, 7245073.4375, ...], [6.164452416296394, 47.61957942979427, 54.818916456711435, 25.448046510160655, 22.344777627811848, 48.459332712214696, 5.5202825539447264, 136.27742838200442, 5.606114988526521, 26.84065879716844, 8.794159706542828, 9.628086254309084, 39.817589055855976, 11.540244551899608, 50.72755277556058, 8.774675971521122, 42.04475201421652, 18.64054177110576, 27.933718907994404, 32.19729446142911, 87.50859578923276, 50.62608591440266, 10.597674235239257, 6.727061011736343, 22.321457046371485, 9.727045930092071, 22.082517189812954, 16.026202438156243, 53.913621058461246, 18.418706355872885, 41.16106530495759, 23.627355154660947, 14.688390284159382, 8.385110048766569, 24.818872595206187, 10.7533595595275, 68.25280797041525, 19.82031020738371, 26.35919257561723, 5.521732096123658, 68.81271341834223, 126.61276442912646, 14.16191032014277, 28.089080725060498, 11.524704030070497, 19.084373278618198, 14.293872667363667, 57.73509930865472, 21.613504120529225, 15.551102526001078, 17.380882162274467, 18.5015348173926, 72.71899573059463, 9.42194338777703, 19.120196959325387, 121.07575033311976, 40.353688535723286, 6.058770018670265, 12.52571207981304, 24.578711256569783, 50.48499579424261, 53.128394810509725, 12.396279763749448, 23.76145176986218, 16.85903021302504, 49.38615755562138, 25.52838044863342, 25.436510558117895, 24.57173624537447, 67.77149789867224, 69.81029238877146, 59.997577499835685, 98.67280285488594, 30.271083388775903, 51.5975458357893, 5.580556766397531, 43.29813912534025, 12.706577354309506, 10.67250948241997, 26.072667452393617, 24.92266057236886, 52.85044807798542, 33.51447836096345, 7.79491247939124, 42.20118480697096, 138.34505837550645, 29.32490011848268, 51.25625685245427, 14.050396243142526, 73.82023843728386, 7.814629984913494, 27.74923454155926, 32.80945382879765, 68.07387644582968, 139.01587910367667, 85.55612204925511, 55.26794274071001, 13.953168532122273, 31.770209969909295, 88.85086118889208, 13.458432144459275, 6.224419731078966, 53.9483904485513, 25.247716292124743, 28.27272764698018, 8.985954349368303, 24.630833769859194, 87.0468306320842, 19.090317403022976, 26.008061824899826, 31.860090201372227, 20.61789801063797, 69.1184606603995, 8.84249658614501, 45.90111051269807, 7.984675924725284, 5.876633935499078, 41.93709074475734, 12.330013107241104, 66.30698951851443, 9.192026555758169, 85.83450000460249, 52.7246053568253, 47.883546101926356, 58.820829514250455, 16.37531401814738, 13.30769008002094, 40.16550949164285, 65.15852381186025, 9.938916913426619, 77.24998205358693, 154.5533134130564, 13.619154805071812, 31.466035690130873, 110.80679868630436, 44.90643324615556, 24.386126052867333, 10.089090612796735, 14.45018866111404, 92.20554439182794, 21.403111355411845, 65.146982176691, 70.44590096430764, 42.79090030487396, 30.242847736934902, 46.7193832813938, 30.98215417291207, 22.766168170151214, 19.40123754963284, 40.20586793623224, 96.77456722593728, 16.74711801479116, 13.2638929625093, 15.740817893220774, 45.81890336378714, 92.40499569955948, 19.747416245447933, 25.71200396656075, 45.53100120940782, 59.76179445179177, 19.119528607006274, 12.11081645001829, 6.065563054305868, 51.48447797078985, 25.651153768410246, 24.94865484983955, 97.0745647907232, 20.042233850317402, 10.252352000919544, 7.046417062661739, 25.161360090419322, 118.83287211540215, 10.077716090845854, 138.4288844270901, 8.28797294196989, 18.93313115999938, 39.577969156963874, 25.777775136673846, 10.877570294966599, 68.67590378856517, 36.770919446057064, 17.02528941559099, 13.991716922567125, 7.418011609771411, 25.881318818277958, 59.71257434354196, 38.56407874979237, 16.809918049909804, 10.467202848129569, 41.854859792779195, 42.41028634676868, 136.74931804294576, 8.712235764366483, 18.87965795365233, 8.92471573680775, 14.537862974041676, 76.62994039897598, 20.28245524886267, 13.913162448469905, 14.547656344593726, 24.659210415519446, 17.858018930501792, 41.29582644509506, 65.47534377424698, 6.603782845614633, 6.194318916618713, 46.128420196947104, 23.955242609208845, 26.522064233926034, 7.447992255433003, 48.081740593813926, 99.69502533108056, 18.908280686507737, 28.535224251387753, 9.688066472490656, 8.311253448609776, 35.170382032322195, 5.061921450010482, 55.57201401261403, 9.733523197785619, 8.76002698311068, 13.706903132687827, 55.26240312546315, 43.51730029152845, 173.24678192621366, 11.13508082061041, 19.906978255794154, 143.17433592668365, 22.28581016296493, 10.246323513599066, 20.637239912200137, 51.60674886672889, 76.38079279355767, 49.45267381915119, 79.27208223467693, 46.316644067537936, 52.791431723259265, 14.731793058932336, 47.5541305117593, 11.41240093959758, 92.28834816394391, 106.27171307584982, 49.22236459310881, 106.52166303031338, 83.59426901014892, 14.584162921520297, 5.880757864751477, 10.347371058764981, 111.9956438487284, 68.66468462163017, 163.6434024432536, 157.01862073087196, 19.78788084787678, 12.416111584109629, 51.33414102419112, 7.281250409445485, 67.225699768782, 26.347845501027496, 26.985768302840853, 6.211811228138428, 71.27581533327022, 102.42770442645276, 70.46064325151434, 38.77083056828171, 25.080922953646258, 68.42539485631644, 45.43375454076214, 29.17223503424508, 44.22813819283426, 59.696441252467736, 177.79640618592538, 7.912183840642045, 41.72750955750026, 105.30955232892518, 18.843867807001853, 16.472323026219534, 98.80562690205167, 9.88636473930334, 17.15405495141045, 40.20422565641532, 44.864429425877844, 34.70217600371777, 80.21362428447286, 58.63013822805292, 87.93121561251388, 23.677727386110345, 73.22014327904425, 31.51160575959482, 121.35746248990645, 20.46556664756477, 10.692349339732948, 5.342207530484262, 97.21986427419017, 15.850138066232336, 13.303945790101444, 13.14511019720856, 50.34522669300972, 85.87387231883874, 36.23193070647407, 19.441149320519976, 5.629223673759521, 17.061318151700004, 12.617048933986723, 58.30069322828247, 52.65783841493125, 45.73994225232462, 12.603481832490015, 60.91677788715526, 81.05376206260394, 40.83311146871236, 17.14802035083739, 63.08319223984278, 63.07281195697276, 7.9700286443982, 94.45138811609372, 70.43678214697451, 64.40879907848905, 7.797139979178973, 137.9873014071886, 29.92492258590383, 28.665520303277884, 20.35594665143019, 12.787552517938122, 28.958713761462462, 157.9648649645973, 15.430125889948057, 8.245143886338584, 23.31099249982346, 22.882297511861708, 39.93967863209849, 20.03019848954497, 30.484845749262718, 41.913862002719696, 138.37572887997945, 15.118759282649865, 115.26644552018968, 45.44720166738491, 42.16040967862557, 49.99605389603387, 17.152553969088274, 17.47780976012428, 59.59813098767282, 100.04107546380895, 38.22666905461826, 21.812604856199847, 62.19626130042154, 92.67614876971216, 25.483515629076365, 7.724794286508567, 60.62121724748592, 30.290128818576264, 71.11335777318685, 23.695887213228428, 14.896587599199902, 24.840238262181135, 23.642728922154713, 132.78566082422708, 54.70467698028872, 20.697418087980065, 27.250806165499963, 19.682300426015875, 29.845890197829316, 41.23887651933386, 16.97029615523117, 69.94392763734925, 24.970909561008057, 75.75749304553004, 27.336505803624394, 23.737677670452804, 5.264928479969998, 30.78596428655157, 15.30352011517482, 14.894359422349098, 14.792482043795307, 24.404465729830765, 63.37491769866704, 10.214758821846178, 23.471146439814486, 32.960122630155695, 12.232793713512239, 34.39498891112637, 22.231021202874476, 31.193805097999814, 11.318368214385497, 16.820660169355783, 173.15974713900422, 61.86019153357415, 6.9194175147674715, 75.9887353127142, 28.668397406818055, 64.55294830003481, 9.632554958557295, 6.4714238774876245, 23.915043832986957, 105.67854693889848, 6.359031683615159, 22.532014898426375, 115.9806432644249, 30.312866160831902, 30.241520338717713, 100.52610853007664, 137.52903274824004, 36.409765067711376, 38.49311185262432, 13.859979770039795, 109.94581323033812, 63.4256006109876, 24.942695869099243, 14.093500428364266, 112.88521732024599, 32.078998048254995, 27.782564530454675, 96.13807383724026, 66.94212647035815, 96.30038698924474, 29.85930176197861, 38.96562548224629, 38.25969236272725, 150.01585714239394, 26.777477090280364, 5.211036405580122, 8.996312234219612, 60.68585576439474, 60.37776212445782, 20.503383452082893, 26.649111187952066, 22.90185528931933, 123.08677101132298, 54.20954394000575, 20.803697563336605, 120.53966149685688, 5.88899675064503, 50.810804346299335, 27.628770925189826, 22.396791622642624, 18.9590979507963, 28.425664297385037, 36.18425474238418, 28.021522694100568, 10.710343534441153, 16.336455893378115, 106.94378458265864, 90.17505755737585, 148.7884010274945, 129.1524911323432, 34.01827859429339, 68.67774082940161, 8.089319257394525, 84.75799405125659, 50.776468427189414, 25.64622468427607, 8.777005691155757, 93.54003962917025, 14.333014865973764, 36.37097484122827, 91.02512746022393, 94.36969828927737, 97.363717555531, 76.57452146302597, 37.444844928093055, 16.91664930665526, 13.235408424298793, 5.501610753791777, 76.169782071474, 12.798253608034546, 194.20604984220762, 11.246528010150884, 41.596797861271, 125.95892372331294, 22.28698010462283, 30.004921259442234, 72.06824715212666, 35.34104142557433, 100.11568828706879, 132.2384859740657, 10.705500635441874, 70.63987129346725, 10.483341020173562, 165.24030915845947, 25.955601335454894, 131.8273136226939, 32.83285744035247, 13.898626142213425, 26.772612297713906, 7.399229746348036, 97.55729223782996, 21.864471527405826, 12.755021663600754, 11.931937417427612, 14.338184199371863, 62.15772851345558, 28.698829630690142, 13.667179605434654, 49.5191714674537, 11.782005460447856, 25.798425015620552, 13.418639360884157, 96.11496784369248, 60.62552001775036, 34.92214885085673, 133.64698043326675, 40.5930557430851, 46.46641293175421, 107.25434688784195, 20.359566379669673, 5.03212234327883, 66.19215889334397, 84.27817184146872, 141.35961177747546, 17.23555506613659, 10.134704831704418, 288.7106395462758, 7.363444446295302, 142.67634073303682, 5.899152331481156, 51.159999712805806, 8.468414049920776, 18.770221024742526, 88.24248565229433, 48.890107817566566, 12.359723491238086, 13.506316401952073, 5.334076265245904, 80.2519287674908, 9.122169113664985, 22.35276375041595, 86.16210984840822, 52.91018351649302, 25.83247389402028, 14.722467911564253, 43.42743786566502, 44.5638826198385, 34.80699105518421, 56.08960327724377, 23.501569370083963, 84.38117388571804, 5.143397733195324, 140.3552942175401, 42.3972176570184, 8.27520645084531, 7.7407648501161885, 20.276551115557158, 10.751438544114105, 113.26341403873823, 49.83222840082991, 15.829441422796105, 154.76547564268503, 44.996900174874106, 13.5577074697382, 14.475374794447324, 57.36840525082355, 14.250283136361604, 100.38901271597393, 42.30517270897859, 11.761633929543311, 28.89973123394293, 48.35044578413812, 19.031314366621995, 94.93565833593867, 19.40874032928714, 6.863604895001295, 14.795711100534445, 113.85687509316845, 9.406710767093506, 185.16205917089007, 40.18360058843708, 52.63392253059212, 129.63914988866486, 78.44614795745034, 18.455307611261983, 7.301952360385987, 84.37516266700177, 93.6172889932462, 87.07969031298664, 85.08734428529264, 7.076902307835914, 14.390703962788916, 33.24443157309841, 38.05845699931428, 107.94642226231127, 54.66820027955534, 54.64796599411717, 32.52483300580103, 36.01313409077027, 28.471319757042842, 62.39941934311505, 23.071293594741586, 27.27713485639967, 21.977440495031512, 6.296018471021364, 7.691552291646841, 38.13354117687327, 88.93961986305223, 26.970465893578357, 10.03260722523684, 5.436365649922096, 6.333129945604393, 104.28728981087923, 10.22220258588954, 21.70302263918743, 9.458673056669086, 102.61255009678878, 12.763654978363304, 56.46993443326729, 69.41788945953613, 13.350816181188149, 53.807178302659565, 6.854866143597254, 13.345556458253519, 80.24465644310699, 33.55803247396991, 32.363073741103584, 34.42142476240273, 66.09242510474185, 27.835830299710146, 38.06346393517689, 15.797254030483142, 24.61150556279661, 19.406300598168393, 11.7532881167268, 18.79511092607786, 148.38607009967524, 7.284144163641398, 10.460263602715642, 29.372368112320103, 30.405637897123327, 14.177179554524406, 94.61475947961748, 111.91188754124639, 126.89267616720409, 50.18492869639189, 30.935697344795184, 56.17645234070119, 41.462967563938065, 38.35475956621747, 60.036152169492844, 20.277746333705682, 15.393057342633385, 80.46344620998535, 5.755628561111803, 102.79734219801209, 120.46275484032292, 28.042070935411655, 47.3575836392997, 5.343564053024619, 21.01295626211607, 177.81681262892235, 15.330434987522471, 10.84094238100057, 5.086329018075442, 15.146942410292269, 16.184651863040575, 13.22593905076575, 91.81533300692004, 8.295629444043943, 16.033085881796573, 6.213844021944555, 11.267085151992196, 22.913806293474575, 48.75706339674147, 147.9561168171366, 44.59370669699586, 16.927670724254998, 14.785008962229849, 27.846066206705327, 54.18727204238668, 14.880000075592017, 32.59231915437438, 9.31348248787892, 139.93652025582048, 136.9890679143851, 23.930122279043758, 8.709548473789738, 5.182379109895479, 34.7048402130389, 138.14228359140355, 9.615915664796306, 11.797363167593902, 5.697732194506843, 65.0645619905282, 7.660197697332953, 5.046630779957063, 14.683479465433068, 11.39081135548003, 5.87957186029999, 9.88091055298312, 218.15881698928442, 35.320155330779315, 120.07280880675107, 17.3263016942976, 58.6473600540444, 10.36732972264211, 21.460159826342863, 23.51541665276806, 7.808724562245659, 26.177066654034373, 78.3832111602679, 128.2986378840261, 34.34554481350364, 12.228781381099317, 8.932355791553803, 12.740389782451157, 31.552496299581875, 41.57059709809769, 20.03295338845416, 7.057092591341337, 21.82486214558624, 36.47759636802732, 31.679866924212746, 137.09488459972914, 39.48253784497021, 36.48411213617899, 21.545759300085493, 123.29089553484734, 27.62091533272923, 68.07134072217023, 46.31068491111573, 37.54137054581434, 304.31444767565637, 81.65349347689099, 14.770558336032025, 6.093348710685981, 5.182455304237598, 10.025452825276226, 17.538478461938023, 37.03476359051731, 34.20328105197377, 100.81011261461731, 35.832442770701846, 14.450186718674907, 81.15947539613869, 27.394455076749168, 44.55266512536202, 31.51932431617763, 35.197942104366916, 42.62626829873724, 221.7635459979294, 6.858979237270887, 44.627682097358964, 33.13342667571159, 48.396543593140926, 9.933940387933895, 91.99906660871842, 99.70481241101092, 70.68663457142317, 6.800458563059877, 25.21535201464977, 89.95465766881436, 36.72717621627853, 113.452591596774, 22.23966301751202, 15.802422598605936, 93.39734228548176, 19.242891988455785, 24.99608656618953, 35.309926281742506, 12.309095136088525, 25.791987521721182, 267.2978516879791, 16.876540075638164, 63.72045915316177, 5.346299015669569, 58.13080075536593, 61.807142781206466, 11.16776377814238, 7.541724698094405, 50.180163987360515, 58.42938212027733, 13.822221120517085, 34.87391951540306, 10.39370735769256, 17.991334989558315, 41.0432153183423, 109.51263683186016, 17.885614261715645, 60.473339025807675, 103.91248457383047, 16.062258505441612, 70.75055109947493, 230.39738689931707, 16.234090286696762, 35.507982473823624, 8.193439622524474, 52.26918087297844, 8.55594823929142, 85.95065715673502, 39.871499440459985, 8.557705187554138, 42.92284387892045, 25.051163793315197, 6.20846164644423, 40.478263813827, 6.628380989669619, 86.4474981143857, 51.812916975035336, 8.088126261462596, 15.88420417380687, 56.61402307626301, 64.96447694729311, 63.28619271170298, 46.39630667619888, 70.22474302542246, 64.0520853629398, 11.872577812420023, 24.367715162757484, 24.266060933553234, 5.276134477799111, 28.81081515744484, 70.91969793515362, 95.77226907175333, 37.18794416530647, 29.334983316728557, 19.31026506095055, 147.27860036013618, 6.962682866027828, 102.88397389366713, 84.30671791695896, 14.061342979554373, 104.57795972209398, 22.095805782138896, 88.62634828989171, 50.67302812587759, 74.56600679291192, 98.42611975642784, 6.392144220349139, 9.752857338517398, 97.80793398976455, 77.40904669749148, 20.988249541902086, 36.88766092847842, 11.907934415385016, 8.306662157277323, 17.614922033057958, 157.85291863607569, 46.19428037997536, 92.2381269469151, 22.847611681666514, 53.142697082276186, 43.55021971335356, 30.318240214397072, 44.040764341096406, 143.14164403726895, 100.90241046010527, 9.908044502300916, 31.957484872231525, 41.97965768797413, 6.122313479528652, 13.378672452809196, 31.20264496127961, 189.89472056326454, 57.80659680239274, 206.60568488359164, 9.9964845374597, 13.048630960900448, 7.9207432778503115, 47.00919828664635, 31.151491682265956, 7.708187125444066, 12.397258524603252, 21.265198203922704, 7.644137420210506, 44.38478997550412, 32.06415734793455, 27.607434867064317, 16.104906492901307, 61.29593975895332, 30.91958374038547, 103.62055711964601, 46.645070674791235, 23.04113084244294, 92.93880061219767, 51.9769347763062, 64.733273450735, 101.81804983812557, 5.297670635051219, 42.375159676244564, 9.82037058191337, 44.41689025104794, 45.72271745047091, 17.845022539578856, 26.67957857189672, 26.262159275820295, 20.19572712737584, 77.72136080110465, 34.58922008033593, 15.174076802884317, 43.34601580041791, 21.533050835399518, 56.112581986229145, 69.13245364121133, 62.178562561029025, 5.35132767850662, 9.375072028715712, 11.165002717680077, 40.61335100810216, 141.56283945479967, 118.48946674208668, 33.72173727957297, 33.06583955562843, 89.47023863672204, 98.17885940893474, 28.39752090536531, 12.134369375476657, 35.487962454562464, 24.00960210957998, 15.187909356396908, 118.29240408142434, 101.24585097451, 11.160437678422529, 22.246759901467506, 74.00796913456479, 36.964314883272884, 28.273763946376306, 5.5956496958712245, 29.871377052237325, 306.5382818406372, 55.247069944592084, 14.123478900514645, 28.962687491405305, 56.470317724940266, 16.910197729195698, 94.81453772531032, 31.95393480582688, 11.090604815411597, 22.30168956056114, 67.77054352807228, 34.73318606376841, 51.04597080221634, 78.70606106951172, 90.54431817614037, 120.2875176218732, 12.238804039720256, 109.93073764754253, 38.10885321547076, 6.420569000500376, 33.90518200106543, 102.47233738415144, 12.58339513424128, 55.390901167061116, 74.9605287143819, 5.143112561389003, 13.624370028429505, 52.474300001721026, 9.950601925923262, 16.28668634652088, 144.65696079749165, 23.040252080503798, 70.29902971480021, 84.17293961044601, 41.94287149495096, 17.998978088617505, 21.239549548647133, 28.70293523515845, 92.74041132407088, 5.29941885157764, 73.68727632343732, 5.515142526045237, 52.86214005628665, 9.817095384214555, 15.1368095476013, 17.80880091980939, 31.707476318555347, 6.141299544049584, 22.855981587983884, 37.13483204205661, 38.4341709326727, 47.799142042181956, 8.086161706539675, 6.235076892945675, 28.8164450401859, 5.387364931614948, 108.26450687729533, 11.663500251836599, 60.837092549590004, 15.943716736226834, 87.66318118489848, 19.839247741123188, 6.15603425759724, 17.94390376191485, 40.981182568544035, 10.90439032431165, 5.6080857821957215, 8.620392100276781, 8.385415633394292, 13.215665727326535, 25.626761471496362, 71.9220032133009, 34.478008227139014, 79.22001145405372, 70.78072592482833, 70.17060086113665, 28.487286249686093, 12.263522109407916, 21.64315502416769, 39.837110886873454, 82.96494296423046, 7.496059876869603, 177.5268827120502, 30.849447363109462, 60.668132880322155, ...])
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);
([2624844.4535610145, 2976916.774996, 2980101.5625, 2980955.487071022, 2992118.331338881, 3024410.9375, 3040727.858453701, 3115190.625, 3118220.168278718, 3121388.9711849038, 3151952.4130533524, 3157092.5187012437, 3165332.8125, 3166301.8113146466, 3167634.375, 3182452.3839950818, 3183148.4375, 3197880.407018822, 3207633.1902345014, 3222201.270886129, 3232700.0, 3235830.9138775794, 3235868.3821961856, 3237509.1896626507, 3250741.550384632, 3312237.9335664893, 3367299.4523064755, 3376387.7581757056, 3376464.0625, 3379778.8120230786, 3432379.1861995263, 3432543.440278735, 3434104.306007149, 3437620.4942922182, 3453343.5292594377, 3460313.8090327983, 3462260.9375, 3494513.3766945824, 3494551.881389135, 3494621.6389326467, 3505912.5, 3562096.875, 3575116.9667342114, 3581032.7901002127, 3588890.8649593154, 3599955.5686128275, 3603974.819033605, 3611768.75, 3611771.3869858044, 3611773.5887404485, 3634920.8328159032, 3639578.824275341, 3641923.7915778835, 3642215.730171326, 3654822.66144755, 3663339.5544946482, 3668435.9375, 3676507.5256620497, 3682628.3043011534, 3690276.3246674654, 3690942.1875, 3708945.3125, 3719060.0588543215, 3732726.2633379935, 3748137.9260497107, 3753406.25, 3754418.5774913924, 3763309.7845067135, 3763734.1366650006, 3767119.6773313885, 3772148.200740673, 3781662.5, 3782235.793460049, 3807831.25, 3812133.0239031683, 3824308.7533946927, 3840432.8125, 3843432.6223786618, 3843879.375357115, 3844389.7138267877, 3844748.2240224835, 3864107.8125, 3877588.870073408, 3896923.938082142, 3930593.75, 3945358.3156500896, 3955162.5, 3972229.941955809, 3973566.932258973, 3973570.607555318, 3978042.7364472025, 3981828.899061763, 3983130.2846013093, 4019519.87458972, 4021198.198518198, 4022799.576445452, 4041442.1875, 4056852.839047999, 4075981.0706297853, 4080101.5625, 4081838.610136377, 4081838.7162364316, 4083076.5625, 4083869.8405768126, 4084160.9246313605, 4108366.748600151, 4110665.3909113277, 4111100.0, 4122863.282405404, 4142274.8583105453, 4148544.2037675804, 4148552.5325489887, 4149405.6513625765, 4161110.2965585273, 4164679.6875, 4165157.19435737, 4165242.9998246646, 4192526.5625, 4196506.903504676, 4198310.725134736, 4201624.830434394, 4202146.875, 4230782.8125, 4243534.910632321, 4246050.0, 4246797.20637396, 4271901.055784011, 4336289.2046446595, 4336325.0, 4336345.9530695435, 4345523.4375, 4351456.25, 4353519.095854347, 4355185.9375, 4388681.25, 4390135.9375, 4391453.618085445, 4391580.465558887, 4391854.552334198, 4393201.539335369, 4394015.115931476, 4394735.9375, 4433090.468087626, 4472547.428539636, 4477601.5625, 4478431.455219018, 4483803.47306799, 4508049.61880354, 4527039.053094274, 4533675.0, 4541403.125, 4544458.217301812, 4545113.539648171, 4548597.070010042, 4560545.3125, 4563068.75, 4568755.937369673, 4580094.329394855, 4583294.627875528, 4584050.0, 4596353.911357313, 4596713.049428048, 4598638.84296341, 4605946.99480479, 4606985.740692814, 4607632.6008301, 4611801.5625, 4632439.624898903, 4632813.419611296, 4671351.269152527, 4716338.784624745, 4748350.012503521, 4754164.830396867, 4754530.496930548, 4754534.377638198, 4754714.823368522, 4754778.125, 4754839.245840778, 4754898.271350864, 4754929.066808488, 4754958.75915735, 4755066.306121129, 4755309.101298142, 4755335.394595302, 4755576.418692775, 4755788.343647314, 4755797.684488337, 4755806.666772112, 4755944.844404527, 4756071.875, 4756098.410055149, 4756186.333676331, 4756267.914127573, 4756611.978582574, 4756654.163898988, 4756705.1713061845, 4756722.963696087, 4756774.252866313, 4756984.95414742, 4757009.404481051, 4757125.041463779, 4757327.163236213, 4757465.625, 4757657.8125, 4757666.331091975, 4757913.463033866, 4758168.27106072, 4758248.153342758, 4759524.889855661, 4767552.674353974, 4768076.958676105, 4768326.504006067, 4770368.816650896, 4784394.108116423, 4818481.64369751, 4819876.608873219, 4822571.5118782725, 4824523.050253199, 4825176.5625, 4894848.877635771, 4899557.049478833, 4899709.008409598, 4901046.875, 4905226.451928451, 4905309.375, 4914193.754712551, 4922216.512301885, 4928635.9375, 4940462.937660468, 4951854.03952348, 5009494.722199423, 5080998.162302109, 5084616.901361333, 5088998.078125802, 5092929.6875, 5133325.5877984455, 5161181.284754734, 5188456.193868454, 5188593.75, 5191093.924810373, 5216634.1380263325, 5216660.9375, 5216698.388762643, 5218634.375, 5381565.625, 5404065.527976696, 5408308.6759808, 5410532.248455713, 5432226.5625, 5433663.816481268, 5436723.347391693, 5492649.897722106, 5543952.435194961, 5569849.130340363, 5575012.5, 5575152.1374144675, 5582373.4375, 5593515.50432864, 5623954.441056317, 5625883.923665238, 5626764.3361201305, 5627110.9375, 5627871.210230933, 5627997.401360743, 5628019.554475494, 5628261.205688296, 5628598.8732783245, 5628694.684208378, 5629790.625, 5629904.6875, 5630372.434803687, 5631305.467889311, 5631350.0, 5631968.75, 5632089.810930332, 5632164.413466146, 5632400.837063794, 5632475.590698714, 5632623.917785423, 5632634.375, 5632635.3666811595, 5632712.146847445, 5632743.75, 5632748.64998353, 5632809.28578478, 5632816.881762399, 5632882.978704029, 5632949.7077408545, 5633060.9375, 5633215.015432511, 5633229.389893792, 5633410.945839584, 5633444.2607592875, 5633539.282076454, 5633540.116910692, 5633861.93257823, 5634160.719038772, 5634232.519161909, 5634339.0625, 5634502.319415768, 5634629.958661557, 5634862.9635082185, 5634874.218960156, 5634942.712367205, 5634951.438141845, 5635492.53858121, 5635502.338112244, 5635612.5, 5635734.375, 5638921.875, 5640217.666701079, 5640898.4375, 5646706.25, 5646736.849254456, 5646832.8125, 5647109.788784983, 5647475.0, 5649748.9435735885, 5677768.921564449, 5677773.498774953, 5695367.1875, 5811917.038937661, 5842074.290852648, 5856246.087778957, 5860325.0, 5880356.372548029, 5905142.108318236, 5918310.602275779, 5918335.641269279, 5918343.75, 5926791.527181117, 5927777.941118908, 5928260.9375, 5928942.1875, 5929580.610874774, 5931473.4375, 5933643.149743848, 5933643.75, 5933752.756677762, 5934792.580566138, 5935158.349500271, 5935280.759388356, 5935814.0625, 5935829.040460305, 5936121.406443267, 5936476.5625, 5937734.375, 5941518.574537363, 5942626.886529277, 5944372.658172511, 5952004.6875, 5953812.5, 5955110.633193476, 5955409.363164098, 5981473.21826061, 6010019.67042445, 6010020.3125, 6019698.4375, 6026700.978857519, 6087107.433771359, 6168103.984556267, 6180483.976036738, 6185096.872570784, 6186416.071801733, 6186948.891936658, 6187445.537780416, 6187984.375, 6188257.749452234, 6188359.816739414, 6188835.066786948, 6190423.4375, 6198036.02934266, 6203988.336260421, 6212061.896972602, 6212883.315407213, 6217438.825310573, 6220183.700213712, 6223621.552791671, 6224456.344613577, 6228502.170557048, 6228576.5625, 6228852.695922658, 6229178.125, 6229786.056148289, 6229886.356307603, 6230080.802595439, 6230396.5596795315, 6231192.921313819, 6231553.125, 6231721.875, 6232566.919489576, 6232933.148406204, 6233573.336820942, 6233654.40025468, 6233868.75, 6233925.6938573, 6234087.525800586, 6236626.886753082, 6236995.3125, 6237879.6875, 6241611.342847775, 6242677.486525623, 6244009.33579637, 6244812.5, 6244879.371524261, 6246318.75, 6261956.25, 6262466.975416121, 6276312.72112338, 6276373.748769066, 6277301.5625, 6293659.336359666, 6326885.65365644, 6330677.502838449, 6354366.912996, 6369845.3125, 6415712.265716098, 6416284.720370837, 6451910.9375, 6453121.779993304, 6453239.358775386, 6459576.137706372, 6468065.625, 6471345.42633747, 6472346.269711836, 6477026.4599287165, 6477144.814821819, 6481218.75, 6485996.875, 6495488.490497389, 6496978.206722324, 6513827.527367986, 6514052.110228006, 6514950.578881719, 6516971.585608791, 6517063.264458291, 6517329.900604173, 6520588.8295294875, 6521145.148470524, 6521663.777999891, 6533459.698437219, 6533854.364023352, 6535107.8125, 6542897.759675697, 6543028.293853577, 6543294.893520058, 6544470.3125, 6545157.419875979, 6545462.227485156, 6545693.75, 6546196.733209393, 6546671.137483075, 6547167.786423738, 6547235.768136699, 6547260.9375, 6549021.46743363, 6549250.0, 6551590.625, 6551691.934553275, 6551959.377839833, 6555541.654026374, 6561811.966568588, 6574979.021569656, 6575892.1875, 6579597.732768118, 6580598.766971102, 6589018.824710974, 6589676.5625, 6591309.057220199, 6599043.615483128, 6601106.608482757, 6601382.096101851, 6602422.336785918, 6602556.22290217, 6605815.625, 6607984.086979842, 6609851.187931823, 6610157.357040466, 6610277.584022908, 6610476.106442401, 6611506.62920532, 6612045.079507446, 6612604.317924303, 6615471.315367208, 6624543.14837819, 6631134.369759726, 6642973.535214095, 6643628.96486088, 6653522.335043328, 6655590.457162278, 6677384.059064274, 6677396.071963589, 6681564.076196757, 6686523.4375, 6686719.131814687, 6687334.220011017, 6688358.908463753, 6691875.617812214, 6697609.27937273, 6699747.106470902, 6700125.0, 6700246.875, 6700436.82242305, 6701502.323779288, 6701542.984774879, 6701621.308346068, 6701815.520740834, 6702021.660432131, 6703636.87652259, 6703822.369830614, 6708010.193410193, 6709054.6875, 6713971.159487108, 6714010.263586711, 6714097.963370899, 6714163.945575613, 6714442.516223939, 6715541.363052371, 6719340.625, 6719435.9375, 6720935.042173813, 6725782.756569877, 6725801.331745584, 6728690.412336567, 6729695.054230136, 6730604.269565197, 6735068.784490194, 6736060.394740992, 6736401.314193489, 6737315.566319896, 6737620.3125, 6738067.1875, 6745384.375, 6745384.375, 6745426.242739591, 6761568.450340787, 6768136.531247274, 6768400.0, 6771351.5625, 6779442.165935437, 6779651.927381671, 6780687.221869954, 6789216.932655805, 6790648.4375, 6790990.625, 6793662.714961371, 6795024.96777332, 6796241.588226619, 6796926.144961106, 6799156.726380052, 6801426.437244652, 6803666.993504339, 6804000.295871951, 6804078.125, 6804476.933441832, 6805621.875, 6806651.676832403, 6810383.586875115, 6812710.14009957, 6821729.446454102, 6824048.919029522, 6825204.421338806, 6825409.395576896, 6828178.21273995, 6830300.832363415, 6830353.309337612, 6830515.625, 6831113.455376833, 6831151.5625, 6832501.3479879, 6832685.0198614495, 6832766.4040377755, 6835926.5625, 6836078.2366743535, 6837290.619911191, 6837688.890271878, 6837751.410073034, 6845830.984446259, 6850482.54961625, 6851727.286820638, 6852930.697099688, 6861203.125, 6861927.795689822, 6871407.087820018, 6872306.2472749185, 6872884.443781172, 6875010.582379408, 6875923.371132002, 6877183.301270859, 6877833.037255629, 6880843.98774967, 6885629.6875, 6887519.819361545, 6888771.791204643, 6891406.977196901, 6893040.0195300495, 6894891.129615732, 6895220.784617164, 6895705.581562053, 6895947.958289358, 6910089.209276365, 6912439.0625, 6912452.405951593, 6914334.375, 6915606.39269831, 6915654.196519425, 6916104.6875, 6921887.941016153, 6923018.09933239, 6923053.038770614, 6924153.125, 6925331.071570704, 6925331.25, 6925962.957394121, 6938353.08921233, 6938617.114309645, 6941898.645250882, 6944807.86172333, 6945896.144206079, 6946748.803970192, 6947195.904744242, 6947864.02074165, 6947914.647250844, 6947940.15145073, 6948165.249042688, 6948174.495814222, 6948748.221393969, 6948780.447566431, 6948814.0625, 6949110.9375, 6949131.25, 6949154.6875, 6949189.0625, 6949268.535149216, 6949450.42426091, 6949456.25, 6949460.5914789485, 6949837.6136306925, 6950046.875, 6950211.678948229, 6950225.938485803, 6950432.282027448, 6950439.037636698, 6950449.275579112, 6950643.797851407, 6951136.044351419, 6951210.9375, 6951228.223429443, 6951515.433448758, 6951711.873872086, 6951720.365373534, 6951731.401277444, 6951784.142835741, 6951791.230119449, 6952445.32957855, 6953501.139310841, 6954276.128200663, 6954436.024876708, 6955144.94402758, 6956977.349813474, 6957052.927716169, 6957561.043905858, 6957908.251395075, 6957951.520825274, 6958893.714759037, 6961209.12424235, 6961242.171268158, 6962270.5157242, 6974696.853729731, 6974855.939667661, 6975062.522504404, 6975951.276414494, 6983172.597483878, 6983250.716001695, 6988757.791638955, 6988781.25, 6989044.068346821, 6992858.2024722705, 6996227.982239563, 6997724.965280048, 7012931.404787217, 7019931.54969507, 7021342.118114624, 7023884.537048172, 7058144.59879677, 7068453.710468665, 7068827.285738353, 7073964.0625, 7087411.038705504, 7129130.3180133365, 7134131.139658786, 7135846.3272011755, 7138911.996691528, 7143119.958089874, 7148923.972019413, 7153150.369418754, 7192253.125, 7192862.5, 7204120.3125, 7206113.106157325, 7209593.237089437, 7210742.490644043, 7215013.8053227905, 7215470.3125, 7218258.71501111, 7218977.87437574, 7219068.282626655, 7219221.875, 7219238.314931468, 7220275.0, 7221534.375, 7221701.5625, 7222641.89094608, 7222791.121031028, 7223098.390122588, 7223108.603798105, 7223246.875, 7223553.125, 7224181.560941249, 7225250.0, 7226482.766914151, 7226534.425329351, 7227430.4066427555, 7227436.658182465, 7227438.04731865, 7227547.985257135, 7227557.8125, 7227596.74557782, 7227601.911930254, 7227862.364833638, 7227956.186107977, 7228165.565176473, 7228532.8125, 7228620.3125, 7229091.815522389, 7229300.0, 7229660.9375, 7229808.272619665, 7229856.606835756, 7229870.3125, 7230110.9375, 7230267.8233870715, 7230392.1875, 7230497.4787485665, 7230530.705372335, 7230606.432315389, 7230649.806615977, 7230715.625, 7230785.9375, 7230915.625, 7231393.321718601, 7231618.9589114515, 7231990.625, 7232210.737516924, 7233024.791616733, 7233158.137136189, 7233741.268819634, 7233969.401281772, 7234141.5906627085, 7234336.3668398615, 7234734.412949296, 7235101.6896907175, 7235350.0, 7235624.779516486, 7235804.712976939, 7235851.3891618075, 7235884.081743112, 7235920.3125, 7235929.005925973, 7235976.39327402, 7235993.223507156, 7236021.659415443, 7236039.0625, 7236053.759855734, 7236195.917081651, 7236196.92720641, 7236246.775772382, 7236248.047002619, 7236262.244707647, 7236298.4375, 7236329.9897809485, 7236355.816422017, 7236392.00712232, 7236412.336246153, 7236422.351865945, 7236429.6875, 7236430.848989863, 7236459.854776492, 7236479.6875, 7236515.420414251, 7236527.645514028, 7236540.674312998, 7236553.97075816, 7236598.4375, 7236656.25, 7236665.229875827, 7236681.47713673, 7236779.6875, 7236798.715538855, 7236887.5, 7236895.3125, 7236896.875, 7236918.75, 7236930.116944029, 7236941.93431294, 7236946.614299348, 7236966.695721286, 7237064.0625, 7237126.241062874, 7237149.720168646, 7237150.0, 7237157.8125, 7237236.031715168, 7237248.053215896, 7237257.172004072, 7237333.898951362, 7237517.1875, 7237545.0606782185, 7237575.610358451, 7237622.995867946, 7237698.4375, 7237712.5, 7237740.432143424, 7237827.335292025, 7237860.303837066, 7237866.084651125, 7237909.375, 7237934.375, 7237958.822856749, 7238010.9375, 7238047.322727793, 7238187.537788569, 7238209.999998224, 7238305.669626829, 7238325.0, 7238430.94516625, 7238476.437091997, 7238505.9321726, 7238517.1875, 7238596.875, 7238628.517352212, 7238679.106205831, 7238732.8125, 7238780.298886319, 7238839.790300985, 7238949.290084788, 7239037.822708072, 7239091.706603551, 7239180.911160725, 7239221.176234749, 7239250.576200508, 7239287.978052244, 7239374.131637064, 7239382.207982615, 7239421.112595013, 7239446.850768475, 7239454.729882514, 7239515.906138039, 7239619.434298848, 7239622.914346337, 7239628.236683512, 7239701.912995888, 7239735.9375, 7239768.7018884905, 7239847.864636425, 7240032.790450242, 7240044.232689557, 7240106.25, 7240192.1875, 7240353.605956798, 7240481.694408827, 7240500.0, 7240574.143326013, 7240582.222904553, 7240650.211668502, 7240676.749881698, 7240802.0892179515, 7240804.6875, 7240807.0797241675, 7240818.83352768, 7240856.149232022, 7240876.348769243, 7240896.234305302, 7240925.0, 7240956.25, 7241045.267412688, 7241068.75, 7241091.586595118, 7241131.621539539, 7241156.999772594, 7241243.716659404, 7241248.70945277, 7241260.988697516, 7241304.7112304475, 7241342.1875, 7241415.839822772, 7241420.365064575, 7241428.125, 7241440.402888329, 7241476.5625, 7241520.3125, 7241626.556025019, 7241641.185891772, 7241647.894946779, 7241647.965602852, 7241651.625678031, 7241720.3125, 7241726.5625, 7241765.671721564, 7241790.864823774, 7241795.3125, 7241826.275044479, 7241828.1121847285, 7241890.287647733, 7241931.25, 7241967.029971012, 7242002.949606976, 7242022.455371734, 7242023.4375, 7242034.375, 7242058.24813849, 7242060.9375, 7242068.046034022, 7242073.413632911, 7242087.077408997, 7242089.034627913, 7242154.6875, 7242214.0625, 7242265.625, 7242331.417669841, 7242353.41451047, 7242403.735899154, 7242468.75, 7242482.762342844, 7242629.249594889, 7242632.168600751, 7242640.625, 7242653.629388236, 7242679.6875, 7242717.801238493, 7242734.955822399, 7242740.230427838, 7242764.242142322, 7242794.40153148, 7242811.250696437, 7242854.832899017, 7242871.517265489, 7242884.375, 7242940.625, 7242967.1875, 7242988.944008421, 7243054.16170148, 7243100.812500357, 7243265.625, 7243333.079890812, 7243338.1490920745, 7243366.812272203, 7243478.125, 7243489.586002544, 7243514.112812736, 7243514.65466488, 7243520.3125, 7243561.434005859, 7243607.439068186, 7243628.125, 7243630.033914933, 7243646.027797004, 7243649.600755259, 7243655.991458165, 7243700.0, 7243701.268835223, 7243731.466189596, 7243834.692718034, 7243932.8125, 7243962.740237847, 7243965.625, 7243985.2540224735, 7244053.753887387, 7244056.863910519, 7244071.875, 7244101.414771349, 7244140.516792923, 7244145.894560986, 7244256.432342257, 7244271.600140852, 7244298.2714255005, 7244329.563197994, 7244384.375, 7244385.9375, 7244418.75, 7244445.272887217, 7244522.929177753, 7244536.560042291, 7244604.202411861, 7244642.1875, 7244716.629250197, 7244737.193617483, 7245015.766043871, 7245028.081521879, 7245073.4375, ...], [6.164452416296394, 47.61957942979427, 54.818916456711435, 25.448046510160655, 22.344777627811848, 48.459332712214696, 5.5202825539447264, 136.27742838200442, 5.606114988526521, 26.84065879716844, 8.794159706542828, 9.628086254309084, 39.817589055855976, 11.540244551899608, 50.72755277556058, 8.774675971521122, 42.04475201421652, 18.64054177110576, 27.933718907994404, 32.19729446142911, 87.50859578923276, 50.62608591440266, 10.597674235239257, 6.727061011736343, 22.321457046371485, 9.727045930092071, 22.082517189812954, 16.026202438156243, 53.913621058461246, 18.418706355872885, 41.16106530495759, 23.627355154660947, 14.688390284159382, 8.385110048766569, 24.818872595206187, 10.7533595595275, 68.25280797041525, 19.82031020738371, 26.35919257561723, 5.521732096123658, 68.81271341834223, 126.61276442912646, 14.16191032014277, 28.089080725060498, 11.524704030070497, 19.084373278618198, 14.293872667363667, 57.73509930865472, 21.613504120529225, 15.551102526001078, 17.380882162274467, 18.5015348173926, 72.71899573059463, 9.42194338777703, 19.120196959325387, 121.07575033311976, 40.353688535723286, 6.058770018670265, 12.52571207981304, 24.578711256569783, 50.48499579424261, 53.128394810509725, 12.396279763749448, 23.76145176986218, 16.85903021302504, 49.38615755562138, 25.52838044863342, 25.436510558117895, 24.57173624537447, 67.77149789867224, 69.81029238877146, 59.997577499835685, 98.67280285488594, 30.271083388775903, 51.5975458357893, 5.580556766397531, 43.29813912534025, 12.706577354309506, 10.67250948241997, 26.072667452393617, 24.92266057236886, 52.85044807798542, 33.51447836096345, 7.79491247939124, 42.20118480697096, 138.34505837550645, 29.32490011848268, 51.25625685245427, 14.050396243142526, 73.82023843728386, 7.814629984913494, 27.74923454155926, 32.80945382879765, 68.07387644582968, 139.01587910367667, 85.55612204925511, 55.26794274071001, 13.953168532122273, 31.770209969909295, 88.85086118889208, 13.458432144459275, 6.224419731078966, 53.9483904485513, 25.247716292124743, 28.27272764698018, 8.985954349368303, 24.630833769859194, 87.0468306320842, 19.090317403022976, 26.008061824899826, 31.860090201372227, 20.61789801063797, 69.1184606603995, 8.84249658614501, 45.90111051269807, 7.984675924725284, 5.876633935499078, 41.93709074475734, 12.330013107241104, 66.30698951851443, 9.192026555758169, 85.83450000460249, 52.7246053568253, 47.883546101926356, 58.820829514250455, 16.37531401814738, 13.30769008002094, 40.16550949164285, 65.15852381186025, 9.938916913426619, 77.24998205358693, 154.5533134130564, 13.619154805071812, 31.466035690130873, 110.80679868630436, 44.90643324615556, 24.386126052867333, 10.089090612796735, 14.45018866111404, 92.20554439182794, 21.403111355411845, 65.146982176691, 70.44590096430764, 42.79090030487396, 30.242847736934902, 46.7193832813938, 30.98215417291207, 22.766168170151214, 19.40123754963284, 40.20586793623224, 96.77456722593728, 16.74711801479116, 13.2638929625093, 15.740817893220774, 45.81890336378714, 92.40499569955948, 19.747416245447933, 25.71200396656075, 45.53100120940782, 59.76179445179177, 19.119528607006274, 12.11081645001829, 6.065563054305868, 51.48447797078985, 25.651153768410246, 24.94865484983955, 97.0745647907232, 20.042233850317402, 10.252352000919544, 7.046417062661739, 25.161360090419322, 118.83287211540215, 10.077716090845854, 138.4288844270901, 8.28797294196989, 18.93313115999938, 39.577969156963874, 25.777775136673846, 10.877570294966599, 68.67590378856517, 36.770919446057064, 17.02528941559099, 13.991716922567125, 7.418011609771411, 25.881318818277958, 59.71257434354196, 38.56407874979237, 16.809918049909804, 10.467202848129569, 41.854859792779195, 42.41028634676868, 136.74931804294576, 8.712235764366483, 18.87965795365233, 8.92471573680775, 14.537862974041676, 76.62994039897598, 20.28245524886267, 13.913162448469905, 14.547656344593726, 24.659210415519446, 17.858018930501792, 41.29582644509506, 65.47534377424698, 6.603782845614633, 6.194318916618713, 46.128420196947104, 23.955242609208845, 26.522064233926034, 7.447992255433003, 48.081740593813926, 99.69502533108056, 18.908280686507737, 28.535224251387753, 9.688066472490656, 8.311253448609776, 35.170382032322195, 5.061921450010482, 55.57201401261403, 9.733523197785619, 8.76002698311068, 13.706903132687827, 55.26240312546315, 43.51730029152845, 173.24678192621366, 11.13508082061041, 19.906978255794154, 143.17433592668365, 22.28581016296493, 10.246323513599066, 20.637239912200137, 51.60674886672889, 76.38079279355767, 49.45267381915119, 79.27208223467693, 46.316644067537936, 52.791431723259265, 14.731793058932336, 47.5541305117593, 11.41240093959758, 92.28834816394391, 106.27171307584982, 49.22236459310881, 106.52166303031338, 83.59426901014892, 14.584162921520297, 5.880757864751477, 10.347371058764981, 111.9956438487284, 68.66468462163017, 163.6434024432536, 157.01862073087196, 19.78788084787678, 12.416111584109629, 51.33414102419112, 7.281250409445485, 67.225699768782, 26.347845501027496, 26.985768302840853, 6.211811228138428, 71.27581533327022, 102.42770442645276, 70.46064325151434, 38.77083056828171, 25.080922953646258, 68.42539485631644, 45.43375454076214, 29.17223503424508, 44.22813819283426, 59.696441252467736, 177.79640618592538, 7.912183840642045, 41.72750955750026, 105.30955232892518, 18.843867807001853, 16.472323026219534, 98.80562690205167, 9.88636473930334, 17.15405495141045, 40.20422565641532, 44.864429425877844, 34.70217600371777, 80.21362428447286, 58.63013822805292, 87.93121561251388, 23.677727386110345, 73.22014327904425, 31.51160575959482, 121.35746248990645, 20.46556664756477, 10.692349339732948, 5.342207530484262, 97.21986427419017, 15.850138066232336, 13.303945790101444, 13.14511019720856, 50.34522669300972, 85.87387231883874, 36.23193070647407, 19.441149320519976, 5.629223673759521, 17.061318151700004, 12.617048933986723, 58.30069322828247, 52.65783841493125, 45.73994225232462, 12.603481832490015, 60.91677788715526, 81.05376206260394, 40.83311146871236, 17.14802035083739, 63.08319223984278, 63.07281195697276, 7.9700286443982, 94.45138811609372, 70.43678214697451, 64.40879907848905, 7.797139979178973, 137.9873014071886, 29.92492258590383, 28.665520303277884, 20.35594665143019, 12.787552517938122, 28.958713761462462, 157.9648649645973, 15.430125889948057, 8.245143886338584, 23.31099249982346, 22.882297511861708, 39.93967863209849, 20.03019848954497, 30.484845749262718, 41.913862002719696, 138.37572887997945, 15.118759282649865, 115.26644552018968, 45.44720166738491, 42.16040967862557, 49.99605389603387, 17.152553969088274, 17.47780976012428, 59.59813098767282, 100.04107546380895, 38.22666905461826, 21.812604856199847, 62.19626130042154, 92.67614876971216, 25.483515629076365, 7.724794286508567, 60.62121724748592, 30.290128818576264, 71.11335777318685, 23.695887213228428, 14.896587599199902, 24.840238262181135, 23.642728922154713, 132.78566082422708, 54.70467698028872, 20.697418087980065, 27.250806165499963, 19.682300426015875, 29.845890197829316, 41.23887651933386, 16.97029615523117, 69.94392763734925, 24.970909561008057, 75.75749304553004, 27.336505803624394, 23.737677670452804, 5.264928479969998, 30.78596428655157, 15.30352011517482, 14.894359422349098, 14.792482043795307, 24.404465729830765, 63.37491769866704, 10.214758821846178, 23.471146439814486, 32.960122630155695, 12.232793713512239, 34.39498891112637, 22.231021202874476, 31.193805097999814, 11.318368214385497, 16.820660169355783, 173.15974713900422, 61.86019153357415, 6.9194175147674715, 75.9887353127142, 28.668397406818055, 64.55294830003481, 9.632554958557295, 6.4714238774876245, 23.915043832986957, 105.67854693889848, 6.359031683615159, 22.532014898426375, 115.9806432644249, 30.312866160831902, 30.241520338717713, 100.52610853007664, 137.52903274824004, 36.409765067711376, 38.49311185262432, 13.859979770039795, 109.94581323033812, 63.4256006109876, 24.942695869099243, 14.093500428364266, 112.88521732024599, 32.078998048254995, 27.782564530454675, 96.13807383724026, 66.94212647035815, 96.30038698924474, 29.85930176197861, 38.96562548224629, 38.25969236272725, 150.01585714239394, 26.777477090280364, 5.211036405580122, 8.996312234219612, 60.68585576439474, 60.37776212445782, 20.503383452082893, 26.649111187952066, 22.90185528931933, 123.08677101132298, 54.20954394000575, 20.803697563336605, 120.53966149685688, 5.88899675064503, 50.810804346299335, 27.628770925189826, 22.396791622642624, 18.9590979507963, 28.425664297385037, 36.18425474238418, 28.021522694100568, 10.710343534441153, 16.336455893378115, 106.94378458265864, 90.17505755737585, 148.7884010274945, 129.1524911323432, 34.01827859429339, 68.67774082940161, 8.089319257394525, 84.75799405125659, 50.776468427189414, 25.64622468427607, 8.777005691155757, 93.54003962917025, 14.333014865973764, 36.37097484122827, 91.02512746022393, 94.36969828927737, 97.363717555531, 76.57452146302597, 37.444844928093055, 16.91664930665526, 13.235408424298793, 5.501610753791777, 76.169782071474, 12.798253608034546, 194.20604984220762, 11.246528010150884, 41.596797861271, 125.95892372331294, 22.28698010462283, 30.004921259442234, 72.06824715212666, 35.34104142557433, 100.11568828706879, 132.2384859740657, 10.705500635441874, 70.63987129346725, 10.483341020173562, 165.24030915845947, 25.955601335454894, 131.8273136226939, 32.83285744035247, 13.898626142213425, 26.772612297713906, 7.399229746348036, 97.55729223782996, 21.864471527405826, 12.755021663600754, 11.931937417427612, 14.338184199371863, 62.15772851345558, 28.698829630690142, 13.667179605434654, 49.5191714674537, 11.782005460447856, 25.798425015620552, 13.418639360884157, 96.11496784369248, 60.62552001775036, 34.92214885085673, 133.64698043326675, 40.5930557430851, 46.46641293175421, 107.25434688784195, 20.359566379669673, 5.03212234327883, 66.19215889334397, 84.27817184146872, 141.35961177747546, 17.23555506613659, 10.134704831704418, 288.7106395462758, 7.363444446295302, 142.67634073303682, 5.899152331481156, 51.159999712805806, 8.468414049920776, 18.770221024742526, 88.24248565229433, 48.890107817566566, 12.359723491238086, 13.506316401952073, 5.334076265245904, 80.2519287674908, 9.122169113664985, 22.35276375041595, 86.16210984840822, 52.91018351649302, 25.83247389402028, 14.722467911564253, 43.42743786566502, 44.5638826198385, 34.80699105518421, 56.08960327724377, 23.501569370083963, 84.38117388571804, 5.143397733195324, 140.3552942175401, 42.3972176570184, 8.27520645084531, 7.7407648501161885, 20.276551115557158, 10.751438544114105, 113.26341403873823, 49.83222840082991, 15.829441422796105, 154.76547564268503, 44.996900174874106, 13.5577074697382, 14.475374794447324, 57.36840525082355, 14.250283136361604, 100.38901271597393, 42.30517270897859, 11.761633929543311, 28.89973123394293, 48.35044578413812, 19.031314366621995, 94.93565833593867, 19.40874032928714, 6.863604895001295, 14.795711100534445, 113.85687509316845, 9.406710767093506, 185.16205917089007, 40.18360058843708, 52.63392253059212, 129.63914988866486, 78.44614795745034, 18.455307611261983, 7.301952360385987, 84.37516266700177, 93.6172889932462, 87.07969031298664, 85.08734428529264, 7.076902307835914, 14.390703962788916, 33.24443157309841, 38.05845699931428, 107.94642226231127, 54.66820027955534, 54.64796599411717, 32.52483300580103, 36.01313409077027, 28.471319757042842, 62.39941934311505, 23.071293594741586, 27.27713485639967, 21.977440495031512, 6.296018471021364, 7.691552291646841, 38.13354117687327, 88.93961986305223, 26.970465893578357, 10.03260722523684, 5.436365649922096, 6.333129945604393, 104.28728981087923, 10.22220258588954, 21.70302263918743, 9.458673056669086, 102.61255009678878, 12.763654978363304, 56.46993443326729, 69.41788945953613, 13.350816181188149, 53.807178302659565, 6.854866143597254, 13.345556458253519, 80.24465644310699, 33.55803247396991, 32.363073741103584, 34.42142476240273, 66.09242510474185, 27.835830299710146, 38.06346393517689, 15.797254030483142, 24.61150556279661, 19.406300598168393, 11.7532881167268, 18.79511092607786, 148.38607009967524, 7.284144163641398, 10.460263602715642, 29.372368112320103, 30.405637897123327, 14.177179554524406, 94.61475947961748, 111.91188754124639, 126.89267616720409, 50.18492869639189, 30.935697344795184, 56.17645234070119, 41.462967563938065, 38.35475956621747, 60.036152169492844, 20.277746333705682, 15.393057342633385, 80.46344620998535, 5.755628561111803, 102.79734219801209, 120.46275484032292, 28.042070935411655, 47.3575836392997, 5.343564053024619, 21.01295626211607, 177.81681262892235, 15.330434987522471, 10.84094238100057, 5.086329018075442, 15.146942410292269, 16.184651863040575, 13.22593905076575, 91.81533300692004, 8.295629444043943, 16.033085881796573, 6.213844021944555, 11.267085151992196, 22.913806293474575, 48.75706339674147, 147.9561168171366, 44.59370669699586, 16.927670724254998, 14.785008962229849, 27.846066206705327, 54.18727204238668, 14.880000075592017, 32.59231915437438, 9.31348248787892, 139.93652025582048, 136.9890679143851, 23.930122279043758, 8.709548473789738, 5.182379109895479, 34.7048402130389, 138.14228359140355, 9.615915664796306, 11.797363167593902, 5.697732194506843, 65.0645619905282, 7.660197697332953, 5.046630779957063, 14.683479465433068, 11.39081135548003, 5.87957186029999, 9.88091055298312, 218.15881698928442, 35.320155330779315, 120.07280880675107, 17.3263016942976, 58.6473600540444, 10.36732972264211, 21.460159826342863, 23.51541665276806, 7.808724562245659, 26.177066654034373, 78.3832111602679, 128.2986378840261, 34.34554481350364, 12.228781381099317, 8.932355791553803, 12.740389782451157, 31.552496299581875, 41.57059709809769, 20.03295338845416, 7.057092591341337, 21.82486214558624, 36.47759636802732, 31.679866924212746, 137.09488459972914, 39.48253784497021, 36.48411213617899, 21.545759300085493, 123.29089553484734, 27.62091533272923, 68.07134072217023, 46.31068491111573, 37.54137054581434, 304.31444767565637, 81.65349347689099, 14.770558336032025, 6.093348710685981, 5.182455304237598, 10.025452825276226, 17.538478461938023, 37.03476359051731, 34.20328105197377, 100.81011261461731, 35.832442770701846, 14.450186718674907, 81.15947539613869, 27.394455076749168, 44.55266512536202, 31.51932431617763, 35.197942104366916, 42.62626829873724, 221.7635459979294, 6.858979237270887, 44.627682097358964, 33.13342667571159, 48.396543593140926, 9.933940387933895, 91.99906660871842, 99.70481241101092, 70.68663457142317, 6.800458563059877, 25.21535201464977, 89.95465766881436, 36.72717621627853, 113.452591596774, 22.23966301751202, 15.802422598605936, 93.39734228548176, 19.242891988455785, 24.99608656618953, 35.309926281742506, 12.309095136088525, 25.791987521721182, 267.2978516879791, 16.876540075638164, 63.72045915316177, 5.346299015669569, 58.13080075536593, 61.807142781206466, 11.16776377814238, 7.541724698094405, 50.180163987360515, 58.42938212027733, 13.822221120517085, 34.87391951540306, 10.39370735769256, 17.991334989558315, 41.0432153183423, 109.51263683186016, 17.885614261715645, 60.473339025807675, 103.91248457383047, 16.062258505441612, 70.75055109947493, 230.39738689931707, 16.234090286696762, 35.507982473823624, 8.193439622524474, 52.26918087297844, 8.55594823929142, 85.95065715673502, 39.871499440459985, 8.557705187554138, 42.92284387892045, 25.051163793315197, 6.20846164644423, 40.478263813827, 6.628380989669619, 86.4474981143857, 51.812916975035336, 8.088126261462596, 15.88420417380687, 56.61402307626301, 64.96447694729311, 63.28619271170298, 46.39630667619888, 70.22474302542246, 64.0520853629398, 11.872577812420023, 24.367715162757484, 24.266060933553234, 5.276134477799111, 28.81081515744484, 70.91969793515362, 95.77226907175333, 37.18794416530647, 29.334983316728557, 19.31026506095055, 147.27860036013618, 6.962682866027828, 102.88397389366713, 84.30671791695896, 14.061342979554373, 104.57795972209398, 22.095805782138896, 88.62634828989171, 50.67302812587759, 74.56600679291192, 98.42611975642784, 6.392144220349139, 9.752857338517398, 97.80793398976455, 77.40904669749148, 20.988249541902086, 36.88766092847842, 11.907934415385016, 8.306662157277323, 17.614922033057958, 157.85291863607569, 46.19428037997536, 92.2381269469151, 22.847611681666514, 53.142697082276186, 43.55021971335356, 30.318240214397072, 44.040764341096406, 143.14164403726895, 100.90241046010527, 9.908044502300916, 31.957484872231525, 41.97965768797413, 6.122313479528652, 13.378672452809196, 31.20264496127961, 189.89472056326454, 57.80659680239274, 206.60568488359164, 9.9964845374597, 13.048630960900448, 7.9207432778503115, 47.00919828664635, 31.151491682265956, 7.708187125444066, 12.397258524603252, 21.265198203922704, 7.644137420210506, 44.38478997550412, 32.06415734793455, 27.607434867064317, 16.104906492901307, 61.29593975895332, 30.91958374038547, 103.62055711964601, 46.645070674791235, 23.04113084244294, 92.93880061219767, 51.9769347763062, 64.733273450735, 101.81804983812557, 5.297670635051219, 42.375159676244564, 9.82037058191337, 44.41689025104794, 45.72271745047091, 17.845022539578856, 26.67957857189672, 26.262159275820295, 20.19572712737584, 77.72136080110465, 34.58922008033593, 15.174076802884317, 43.34601580041791, 21.533050835399518, 56.112581986229145, 69.13245364121133, 62.178562561029025, 5.35132767850662, 9.375072028715712, 11.165002717680077, 40.61335100810216, 141.56283945479967, 118.48946674208668, 33.72173727957297, 33.06583955562843, 89.47023863672204, 98.17885940893474, 28.39752090536531, 12.134369375476657, 35.487962454562464, 24.00960210957998, 15.187909356396908, 118.29240408142434, 101.24585097451, 11.160437678422529, 22.246759901467506, 74.00796913456479, 36.964314883272884, 28.273763946376306, 5.5956496958712245, 29.871377052237325, 306.5382818406372, 55.247069944592084, 14.123478900514645, 28.962687491405305, 56.470317724940266, 16.910197729195698, 94.81453772531032, 31.95393480582688, 11.090604815411597, 22.30168956056114, 67.77054352807228, 34.73318606376841, 51.04597080221634, 78.70606106951172, 90.54431817614037, 120.2875176218732, 12.238804039720256, 109.93073764754253, 38.10885321547076, 6.420569000500376, 33.90518200106543, 102.47233738415144, 12.58339513424128, 55.390901167061116, 74.9605287143819, 5.143112561389003, 13.624370028429505, 52.474300001721026, 9.950601925923262, 16.28668634652088, 144.65696079749165, 23.040252080503798, 70.29902971480021, 84.17293961044601, 41.94287149495096, 17.998978088617505, 21.239549548647133, 28.70293523515845, 92.74041132407088, 5.29941885157764, 73.68727632343732, 5.515142526045237, 52.86214005628665, 9.817095384214555, 15.1368095476013, 17.80880091980939, 31.707476318555347, 6.141299544049584, 22.855981587983884, 37.13483204205661, 38.4341709326727, 47.799142042181956, 8.086161706539675, 6.235076892945675, 28.8164450401859, 5.387364931614948, 108.26450687729533, 11.663500251836599, 60.837092549590004, 15.943716736226834, 87.66318118489848, 19.839247741123188, 6.15603425759724, 17.94390376191485, 40.981182568544035, 10.90439032431165, 5.6080857821957215, 8.620392100276781, 8.385415633394292, 13.215665727326535, 25.626761471496362, 71.9220032133009, 34.478008227139014, 79.22001145405372, 70.78072592482833, 70.17060086113665, 28.487286249686093, 12.263522109407916, 21.64315502416769, 39.837110886873454, 82.96494296423046, 7.496059876869603, 177.5268827120502, 30.849447363109462, 60.668132880322155, ...])
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)