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 = 45339
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);
([3700580.5502043823, 3744896.875, 3757742.1875, 3758299.8316376675, 3817611.369889972, 3818907.8125, 3824018.8358734073, 3833743.1776544563, 3851288.7516050497, 3852204.531285106, 3853844.3004997754, 3861721.875, 3908750.8397630025, 3916475.038828469, 3922790.660283428, 3925364.0625, 3926909.375, 3927544.7127922648, 3929153.393272089, 3929232.8125, 3929477.7461570217, 3930876.1490259673, 3930884.1393416794, 3931003.9746626136, 3933507.8125, 3938240.0953453914, 3938723.4375, 3941615.4994659005, 3942891.7426525555, 3949709.678945607, 3949719.647171259, 3950831.205168401, 3954734.375, 3959435.172881459, 3974938.862406892, 3983621.875, 3989036.3856395134, 3993005.9648182476, 4005656.6685793963, 4005759.375, 4013846.875, 4027940.40606296, 4029918.75, 4030359.375, 4031487.1608243803, 4042084.617773994, 4042861.685924733, 4043139.0625, 4081446.22766501, 4082948.323633186, 4083334.2335765827, 4086421.875, 4086867.1875, 4086903.125, 4097223.1146438057, 4121177.0885248976, 4126458.9936031853, 4129417.1875, 4129764.1509730136, 4130283.8061347776, 4130970.3693000143, 4131110.424689006, 4137151.426779598, 4145517.494109853, 4147426.5625, 4147540.2098307945, 4148082.8125, 4159248.3457476017, 4172815.625, 4175025.9948629453, 4208882.8125, 4211664.0625, 4211878.517122831, 4212296.875, 4212332.431622496, 4212584.96720978, 4212752.792624778, 4213354.097481845, 4213922.576968442, 4213974.775873005, 4215792.611801541, 4216092.342603866, 4216320.3125, 4216419.358027579, 4216432.011465122, 4216644.156504843, 4217092.1875, 4217368.820895984, 4218950.0, 4218979.6875, 4219070.3125, 4219355.1546593895, 4219364.306459618, 4220038.862229385, 4220857.64040585, 4221614.036639279, 4221630.965282887, 4221857.663341908, 4221955.224060915, 4222241.553285815, 4222383.229780037, 4222408.371643024, 4222418.75, 4222443.755370345, 4222635.2954032505, 4222711.261697753, 4222753.418699816, 4222837.5, 4222883.430079069, 4223131.180480093, 4223501.5625, 4223507.816124243, 4223626.5625, 4223970.3125, 4223985.9375, 4223995.626363357, 4224126.5625, 4224837.347283961, 4225646.323779798, 4228012.5, 4228047.124993853, 4229081.770765102, 4230332.392898377, 4269206.219415466, 4300723.092372646, 4315023.4375, 4315035.9375, 4322021.518788098, 4322993.640271014, 4337340.265296765, 4369202.072760183, 4388375.0, 4389482.035510706, 4391397.306408615, 4392250.0, 4439862.352998463, 4450288.082751575, 4471013.026191478, 4488683.578953626, 4547444.311503255, 4555747.800276234, 4604910.234245067, 5838170.346426704, 6664469.671395252, 6673624.37973214, 6674373.4375, 6674469.592419618, 6675371.815246709, 6675515.625, 6675607.065929024, 6677233.371788218, 6677698.134394671, 6677939.089073412, 6679417.1875, 6681088.377975267, 6681562.1168361185, 6684751.5625, 6712104.6875, 6712807.099832755, 6712851.439669868, 6715405.2940043295, 6719029.253486989, 6721725.0, 6722277.4758965485, 6730577.680950084, 6734988.95631594, 6735379.6875, 6737647.058006957, 6747107.807620529, 6766142.38717459, 6769515.298157532, 6791132.928277712, 6807080.110583331, 6807158.465030201, 6807332.744962261, 6809149.525135815, 6809282.989839627, 6809329.127528777, 6809615.030330951, 6809935.067149805, 6810407.344082658, 6810446.669669884, 6810614.076126305, 6811379.2503074, 6811874.088440449, 6812162.5, 6812528.8240683675, 6813104.621555598, 6813284.375, 6813401.28286024, 6813685.476899427, 6813737.5, 6813775.638209089, 6814125.114694999, 6814417.1875, 6814417.1875, 6814481.933539864, 6814673.654234015, 6814768.75, 6814934.375, 6815220.3125, 6815263.804640165, 6815523.4375, 6815593.75, 6815687.918494111, 6815723.152299358, 6815765.625, 6816093.915158177, 6816489.0625, 6816579.996759647, 6817050.346636639, 6817596.800257722, 6818181.892480186, 6819648.419832377, 6820029.6875, 6820254.349352901, 6820452.206288306, 6821196.712547468, 6821234.375, 6821539.0625, 6821806.25, 6821893.411982845, 6824047.612386712, 6827221.2750366675, 6831304.725340625, 6831762.327546999, 6832265.325759388, 6832371.875, 6832852.85900236, 6833206.572100774, 6833909.393143231, 6835329.001130211, 6835632.4411005, 6836132.34914406, 6836802.633629553, 6837480.415134396, 6837585.9375, 6837593.75, 6838002.339208078, 6838018.75, 6838739.896091026, 6838839.6402660785, 6838974.891498573, 6839128.707554009, 6839407.078091596, 6839541.496342522, 6839601.536715748, 6840163.696669928, 6841026.766561407, 6841258.366534225, 6841710.9375, 6841967.157073874, 6842170.06115718, 6842335.756660729, 6843294.459430082, 6843365.625, 6843621.971814778, 6844624.394521607, 6845666.635190447, 6846656.25, 6849123.4375, 6849818.75, 6849825.0, 6852433.977580374, 6852545.910149272, 6860665.625, 6861021.228899087, 6861062.5, 6861101.068800379, 6861923.864547429, 6862248.672687334, 6862378.267494364, 6862385.795778095, 6862414.536232479, 6862679.6875, 6863041.332170981, 6863090.349001241, 6863300.0, 6864110.325672232, 6864367.611099386, 6864422.572802256, 6864597.266025156, 6864630.884648309, 6864768.742553439, 6864864.372988594, 6864969.49038844, 6865073.4375, 6865639.024070775, 6866620.3125, 6867968.330515669, 6868539.0625, 6868988.782181617, 6869234.375, 6869587.5, 6869735.9375, 6869743.75, 6869756.113048093, 6870151.5625, 6870850.127753531, 6870872.961566914, 6871243.1277732095, 6871341.591054862, 6871421.771806562, 6871531.879393107, 6871792.217957248, 6871832.830272142, 6871879.6875, 6872023.4375, 6872026.802049199, 6872116.775501439, 6872186.404638562, 6872187.5, 6872239.75430812, 6872347.703493404, 6872354.6875, 6872396.473428296, 6872425.632515085, 6872510.790637822, 6872568.229253587, 6872715.158545669, 6872876.5625, 6872987.904345017, 6873029.368970205, 6873063.994487795, 6873387.720323487, 6873471.875, 6873518.75, 6873558.769811427, 6873743.63169531, 6873816.497183672, 6875003.618326863, 6875103.424974396, 6875438.6868009865, 6875707.006874755, 6876032.8125, 6876347.402045146, 6876951.8952489775, 6955159.929593032, 6956540.951067538, 6958544.285876943, 6959582.960287145, 6960092.756804137, 6967880.976229595, 6969776.5625, 6980330.250754874, 6981897.8474557, 6981920.188635055, 6982162.1338705905, 6983607.341035466, 6985375.0, 6986406.25, 6987732.894886448, 6988960.9375, 6995931.21295, 7000026.948064866, 7000399.709154996, 7000801.512977918, 7000891.07894285, 7001068.493639052, 7001729.60990964, 7001940.547071367, 7002221.3905227715, 7002835.612745619, 7005225.633907164, 7006018.75, 7006195.0245979605, 7010587.315673522, 7012906.25, 7013271.875, 7013328.125, 7014290.324903287, 7015178.996825946, 7015611.744693033, 7015744.30655403, 7015946.875, 7017934.375, 7019060.1109214155, 7019681.308137012, 7021125.338637283, 7021289.004681342, 7021402.5975993145, 7023051.965055131, 7025090.757195399, 7025985.394412525, 7026630.286851952, 7026655.252885405, 7026800.0, 7027056.25, 7027323.4375, 7027589.026371628, 7027605.855770202, 7027756.231711543, 7028145.3125, 7028520.3125, 7029275.244038438, 7029317.959472255, 7038428.125, 7038824.3976310445, 7040139.043695443, 7040937.762463946, 7040947.285410799, 7041002.3349297615, 7041234.246358892, 7041621.875, 7042581.236968214, 7043366.606164845, 7043503.125, 7044486.385325956, 7044608.679773877, 7046349.659934467, 7047571.241205219, 7047577.021591282, 7047759.609784585, 7047784.375, 7048264.109986615, 7048732.259055667, 7049519.942423571, 7049840.942381659, 7050837.375593321, 7052693.451977979, 7052953.0102142235, 7053014.983659156, 7055139.0625, 7057321.220038267, 7057919.529256673, 7058015.625, 7058035.439553786, 7058256.25, 7058289.4144970635, 7058801.356794083, 7058806.25, 7059145.08244073, 7059359.375, 7059391.098272028, 7059464.625663896, 7059626.035679385, 7059680.6463544285, 7059686.835865429, 7059933.7633232325, 7060006.663690939, 7060221.598695969, 7060237.5, 7060306.791129453, 7060311.955380988, 7061065.64709733, 7061082.71766751, 7061084.771541226, 7061274.717169984, 7061285.9375, 7062546.065001165, 7062633.691747562, 7062805.493624284, 7063232.8125, 7063295.772543328, 7063896.875, 7064221.491913334, 7065062.767560912, 7065857.966491539, 7066183.398821668, 7066234.856829847, 7066354.6875, 7066398.772910716, 7066918.967441408, 7068024.8250331115, 7070410.509737977, 7070845.005957074, 7071305.610858987, 7074303.884697268, 7074935.942352089, 7075337.5, 7084627.929896785, 7085365.021115619, 7085486.957504288, 7087867.602405086, 7094173.154938409, 7099363.5461273035, 7100556.069553031, 7101293.300237948, 7101643.649080071, 7103005.442214117, 7103121.791678973, 7114647.135964695, 7116104.705248499, 7119649.121413021, 7120374.260225606, 7120426.676263846, 7121531.25, 7121787.5, 7122430.983331606, 7123231.105228414, 7123548.3351189485, 7125302.1965208, 7126798.4375, 7128037.859635383, 7128116.210279279, 7128601.359747138, 7129472.983611875, 7129818.495960044, 7136215.625, 7137073.381880741, 7137518.75, 7137557.8125, 7137787.68688227, 7137948.4375, 7138000.0, 7138127.908532545, 7138348.4375, 7138352.954874225, 7138360.123093272, 7138363.44794268, 7138451.3872416895, 7138482.494258045, 7138572.248631355, 7138614.485959928, 7138663.938170653, 7139080.98077078, 7139551.9245844465, 7139990.060017974, 7140453.734845061, 7141047.876096387, 7141104.6875, 7141489.0625, 7141523.4375, 7141565.781753008, 7142697.174235869, 7143244.554393755, 7143837.5, 7144602.969374645, 7144936.548982416, 7144964.946799697, 7145249.769478307, 7145967.387180348, 7146482.8125, 7146537.871338729, 7147460.025597598, 7148173.39116678, 7148212.529184731, 7148333.317329358, 7148490.42710443, 7148492.379000526, 7149185.1826547105, 7149459.336443135, 7149634.2751829345, 7149839.0625, 7151519.994169064, 7151810.566452769, 7151908.820070393, 7152288.22999904, 7152291.067639481, 7152443.137599209, 7152591.509971789, 7152615.537371592, 7153055.064076365, 7153220.835749112, 7153253.549753636, 7153351.006223113, 7153514.257993843, 7153532.792844999, 7153548.548593929, 7153586.437477543, 7153588.069972724, 7153809.758104054, 7153914.984884811, 7153925.676903885, 7154004.448185203, 7154018.340337358, 7154243.692264437, 7154268.736676355, 7154284.970195815, 7154375.684680711, 7154503.3692132635, 7154646.268421661, 7154734.375, 7154792.1875, 7154847.177435612, 7155130.628721817, 7155153.884308575, 7155215.625, 7155239.0625, 7155498.4375, 7155581.25, 7155809.345071436, 7155837.394960025, 7155867.940910556, 7156209.375, 7156291.474749136, 7156459.594390821, 7156589.0625, 7156651.5625, 7157277.541544063, 7157384.4766363865, 7157446.847710464, 7157477.940754681, 7157492.378351181, 7157785.9375, 7158964.0625, 7160307.4934881525, 7160685.1067841565, 7161295.170713937, 7161303.39457037, 7162581.25, 7163534.206571377, 7163536.69048649, 7168076.430786734, 7168635.9375, 7168656.103828932, 7171244.911200659, 7171424.078884428, 7171430.99236631, 7171928.806429673, 7175416.680020172, 7176357.949302791, 7176697.858535533, 7177026.5625, 7177790.017831193, 7178287.5027938485, 7179405.117251005, 7180817.1875, 7180942.1875, 7181907.371513241, 7182406.637000369, 7183626.5625, 7183812.5, 7184715.625, 7184978.125, 7186450.528949218, 7186503.125, 7186576.080491688, 7186696.875, 7187748.401656837, 7188129.6875, 7188141.791083101, 7188171.476786261, 7188184.744543864, 7188202.657792523, 7189241.80429325, 7189321.402185022, 7189869.919448059, 7189951.3869201215, 7190598.262304251, 7190674.346497744, 7190890.254919737, 7191523.4375, 7191954.385674688, 7191955.029546361, 7191984.196496406, 7192078.546173877, 7192235.9375, 7192281.25, 7192717.946166452, 7193050.0, 7193063.562613324, 7193168.75, 7193250.234096994, 7193733.144545021, 7193944.995080243, 7194129.926365671, 7194670.140797058, 7194894.224231408, 7194923.4375, 7195010.860088623, 7195162.811491093, 7195537.332718432, 7195671.820556856, 7195793.3517362885, 7196484.766026184, 7196604.887471737, 7196701.5625, 7196737.439395034, 7196753.870047313, 7196795.694052966, 7196815.900335887, 7196844.367624342, 7196875.0, 7196877.978743051, 7197207.456860278, 7197365.243203332, 7197628.817656118, 7197704.527271182, 7197788.558674769, 7197825.565909847, 7197854.93471168, 7198278.033375197, 7198644.355013091, 7198975.0, 7198987.324915539, 7199561.80919476, 7199776.049553537, 7199784.144216787, 7199990.3760136245, 7200044.727829213, 7200055.391430467, 7200064.82281816, 7200093.925831023, 7200177.461561494, 7200181.554213863, 7200228.913369192, 7200235.8031099485, 7200292.9923226815, 7200303.471223651, 7200317.016671902, 7200476.504876315, 7200603.607764854, 7200627.900032154, 7200653.379011468, 7200673.718940083, 7200895.3538364945, 7200900.942181284, 7200904.392063005, 7200948.4375, 7200956.015754294, 7200964.619185597, 7201032.405534001, 7201054.914381703, 7201066.782701326, 7201233.808539006, 7201252.969027967, 7201362.969140563, 7201428.125, 7201520.877838445, 7201569.683898104, 7201589.0625, 7201643.517869213, 7201866.073893703, 7201886.054654884, 7202235.814237808, 7202617.1875, 7202825.0, 7202998.1324212765, 7203030.232264837, 7203134.351185375, 7203161.642266456, 7203214.0625, 7203232.3103303695, 7203257.375184845, 7203382.8125, 7203483.437918418, 7203485.9375, 7203491.840072558, 7203528.08289367, 7203529.327840417, 7203533.509811781, 7203571.875, 7203575.239447139, 7203609.3534637075, 7203615.058738251, 7203638.524420374, 7203659.188891534, 7203670.82242466, 7203689.468048825, 7203767.569211937, 7203787.5, 7203806.841035545, 7203820.636826314, 7203856.25, 7203907.680839849, 7203915.573512155, 7203918.663997204, 7203934.1455752365, 7203936.449657866, 7203985.201652611, 7204007.728415294, 7204133.480811292, 7204151.739189744, 7204162.47762895, 7204201.5625, 7204219.951473278, 7204221.424151471, 7204225.754275998, 7204227.262967397, 7204231.212024723, 7204232.8125, 7204242.757447832, 7204271.875, 7204290.405488398, 7204301.2638671845, 7204311.198778424, 7204339.760218038, 7204341.398845707, 7204349.2974474635, 7204399.901573088, 7204407.410579273, 7204474.068287564, 7204482.240700657, 7204482.707496171, 7204484.575410888, 7204495.271714238, 7204501.5625, 7204504.6875, 7204507.675491373, 7204536.692662865, 7204554.6875, 7204559.403171463, 7204581.1659543635, 7204581.600873229, 7204616.4504145775, 7204625.0, 7204634.375, 7204665.36948418, 7204669.474080534, 7204681.25, 7204689.0625, 7204694.019842333, 7204704.308740961, 7204710.967124067, 7204723.4375, 7204793.102294053, 7204815.152016118, 7204857.8125, 7204898.599348112, 7204916.416634669, 7204920.966642175, 7204923.382908371, 7204956.795720774, 7204971.875, 7204986.999290668, 7204990.625, 7205026.083591414, 7205036.004605206, 7205040.504337913, 7205040.625, 7205078.125, 7205082.023307613, 7205084.375, 7205089.964796628, 7205093.187133495, 7205114.678389981, 7205128.086970392, 7205139.0625, 7205187.5, 7205199.535918161, 7205207.8125, 7205212.963401533, 7205227.577665929, 7205243.104568542, 7205278.456236859, 7205289.935856992, 7205306.557283705, 7205320.877802857, 7205341.597229625, 7205347.362925557, 7205356.691794808, 7205377.270403382, 7205386.290487978, 7205419.801473649, 7205435.537998939, 7205476.889126513, 7205491.927768065, 7205540.008801251, 7205552.015833061, 7205554.7020759955, 7205557.04069941, 7205559.375, 7205603.125, 7205603.125, 7205615.061415456, 7205618.75, 7205652.148017882, 7205667.508869151, 7205668.174880857, 7205681.778330806, 7205709.375, 7205713.471422162, 7205729.580374855, 7205746.875, 7205747.4243598385, 7205750.932626436, 7205761.7882671505, 7205771.875, 7205792.1875, 7205876.359489349, 7205878.027047715, 7205914.009974977, 7205942.370278429, 7205944.914091314, 7206025.28779536, 7206027.923441137, 7206042.907013861, 7206051.656873767, 7206058.534107055, 7206060.699130706, 7206069.629286584, 7206168.75, 7206198.173708886, 7206200.412209312, 7206219.783382831, 7206222.590440229, 7206223.126620452, 7206223.937521079, 7206227.990981811, 7206240.233902335, 7206244.77222116, 7206265.1595424935, 7206269.988696666, 7206275.637430634, 7206328.364156136, 7206345.248665964, 7206360.402077379, 7206382.718593505, 7206383.93200764, 7206384.483282952, 7206415.529927277, 7206435.386243214, 7206444.139700015, 7206445.3125, 7206462.5, 7206488.672302704, 7206526.763797683, 7206545.272798857, 7206548.4375, 7206558.8848834075, 7206602.678234694, 7206612.721365374, 7206628.528383762, 7206667.980768, 7206679.742982802, 7206693.416768147, 7206719.194704471, 7206756.25, 7206791.992490656, 7206794.502958659, 7206807.312743122, 7206836.829122044, 7206837.423406996, 7206887.5, 7206902.446434027, 7206910.50612092, 7206911.891577189, 7206980.576396888, 7206983.768312182, 7206985.556643358, 7206991.86021386, 7206993.708045571, 7207030.7659502905, 7207062.433699065, 7207078.233235489, 7207089.197225063, 7207089.692484002, 7207100.195862187, 7207135.5933445385, 7207152.859943575, 7207153.125, 7207167.1875, 7207180.316223647, 7207220.992291198, 7207250.716721162, 7207261.412372671, 7207281.03009249, 7207281.182495899, 7207297.217991206, 7207336.188919513, 7207357.312479697, 7207382.8125, 7207394.418378837, 7207409.10913244, 7207420.149788525, 7207422.70192504, 7207425.869121709, 7207429.0343932845, 7207448.82113747, 7207451.705325937, 7207458.4252787065, 7207479.6875, 7207530.401367843, 7207543.987767271, 7207550.896341799, 7207554.5863264995, 7207564.137227416, 7207574.472784976, 7207604.6875, 7207611.289078035, 7207629.379323482, 7207663.337127353, 7207664.848715388, 7207666.896010568, 7207673.435236307, 7207676.144961951, 7207692.772325263, 7207714.260839988, 7207717.1875, 7207743.12278554, 7207744.800987717, 7207750.676573542, 7207806.25, 7207845.3125, 7207874.342757235, 7207893.516543713, 7207894.063053475, 7207921.248135388, 7207930.372744804, 7207950.0, 7207962.497566157, 7207978.67593432, 7207994.937097443, 7207998.070339173, 7208011.826391496, 7208012.588468682, 7208018.4488208685, 7208028.74679351, 7208036.143154983, ...], [19.707466516199226, 74.642750051961, 47.4653179115744, 25.591674780186707, 6.85301327038651, 74.59421565066737, 9.405085073238345, 8.005451432925172, 50.50557134202731, 49.83284779211903, 31.030465006801386, 53.33556276572247, 30.643149485956723, 45.15641526866657, 15.077720621253334, 80.41506778682535, 34.206202137876666, 31.116611818082667, 12.342832081917692, 45.80690458496786, 13.670583946554496, 31.927859358547593, 36.31210090130678, 10.17053358091058, 52.65686609453701, 8.920400716592152, 75.00063235754531, 78.96589523233057, 119.08574201069337, 11.638527753558229, 8.825777166651681, 50.684668597771946, 63.58558231971021, 14.64777645493696, 25.11670311460719, 75.30619570875409, 16.97753680105245, 38.99058547771706, 27.86826640600367, 57.38607055453697, 64.42542952339983, 60.841295713751855, 64.65443119146339, 50.23772027576454, 23.262901686441893, 11.529636330866246, 14.755028613189054, 75.87347651802729, 20.13932725277626, 96.27717352845832, 14.42854277156811, 52.50366968039738, 73.92007679428603, 70.8451190565814, 24.787916574696986, 109.99186704944368, 85.27182688035418, 58.6327556382305, 13.432363383402157, 8.892646631001423, 15.162516144878175, 13.29109614625005, 69.35519605131444, 16.254893534239063, 68.07408387804642, 13.56454135176911, 73.33150500213682, 14.602956451673014, 87.04037510406036, 20.84391480563514, 55.06397557790772, 61.95787640913589, 33.62366491669459, 68.80710946098894, 27.36057265753822, 27.188906641294253, 30.16160273438903, 15.588101714632899, 10.919019261032064, 7.063755998029801, 16.849746506362838, 15.567593811933932, 40.836920592943926, 12.23273144160682, 31.73010402494628, 24.57224190842991, 29.344260480345625, 33.497581508471455, 50.56179218644698, 104.74418021932499, 70.79551699118642, 22.823365810842752, 15.960735131227864, 22.415077809930175, 25.534690315626914, 28.023090638927332, 8.141542224689198, 6.734089232125582, 7.8095589490960995, 5.667549766224173, 27.727914297295907, 12.236788683328177, 73.73646715372129, 14.962018244864765, 10.253291484166889, 30.94364940280102, 17.12800711255509, 65.33526137024687, 12.252966438295145, 14.682991367214138, 67.5585204119282, 40.435705143777355, 47.367125091062235, 93.8230803625215, 58.458780317975524, 11.656493660940315, 33.781868806026495, 39.8154649608916, 10.363115316118861, 38.72483217065607, 7.18875551979689, 7.2654214390973175, 66.21512739783822, 29.278174755746726, 13.771209930889626, 30.718269854305593, 51.76299729381062, 9.047335065657254, 5.527778641505899, 13.727442487378259, 9.803647913916084, 50.82644111191706, 83.6690883035573, 16.887574873127576, 66.09900992261743, 67.75289593089535, 17.751145725688392, 17.41485269965395, 141.87607554280075, 29.389272711024063, 20.225368291905976, 19.679817166918887, 5.292136381298108, 12.955521656318021, 13.008302931824097, 29.96043402286716, 5.575412084326126, 64.67582765880027, 53.9371141316927, 39.2877005507617, 17.609561177049475, 28.945554574174842, 11.169498352949311, 106.4249475951255, 84.1936488607324, 10.577333074794092, 64.62315381071514, 71.42118930633039, 8.793674473137532, 14.49313240648451, 110.62365855669117, 65.24243112843418, 54.158758389591625, 6.188530183600766, 8.982184234838812, 35.771440662194664, 50.15216581810227, 11.426336780802869, 85.63759815352465, 40.42581973519082, 44.4282269900854, 15.401959646787395, 11.988012078378974, 9.951668947445128, 8.25118226028644, 76.28248913166209, 12.97051754531731, 47.13134966681825, 31.585982079883603, 9.99432775999348, 16.706572031993794, 10.821245369148151, 84.83022737088504, 13.501416378308628, 6.5942143012677645, 59.14766602789065, 5.752741475337374, 73.89846010629861, 38.81581965212487, 71.96295567376688, 24.859433027730354, 59.05456133320809, 37.523551062232414, 15.397468540027731, 30.707938670001276, 66.48474368106133, 6.599860370355262, 15.837382157084507, 74.24669596608722, 41.83344709376439, 80.68790425590807, 5.690541322840477, 96.94974531347472, 55.171776709254125, 6.850034215375426, 89.76044357449608, 69.60529705743095, 7.66408518069184, 78.58553571266374, 31.163344162173118, 90.01558289618416, 12.956172475276706, 12.306210781136082, 22.213421451340164, 135.45381599061315, 6.225400761805889, 8.659131777107374, 69.00660729734236, 100.41117327688715, 155.81089396875421, 42.18522541735817, 9.061059514471363, 18.765522714955527, 20.550687836122275, 31.251544609069615, 67.75731060321571, 82.50508721877408, 37.01142730406999, 30.521737859576987, 16.32993735374313, 17.11197336437984, 14.207874062851673, 22.879634021338816, 21.866602174042423, 13.349742648860044, 22.837477972446223, 29.477856601876475, 41.63290358296407, 5.31569768917947, 43.78272665342275, 12.73998910760543, 7.826486144814315, 17.883367812777575, 12.179267637252824, 68.37750059099271, 8.808204263760326, 85.27400477530006, 14.117854214347068, 5.297432464413666, 6.87939652053338, 50.112058403076595, 65.56630972768804, 55.78050697334039, 14.294299850205645, 23.80892886875792, 35.58405536820394, 7.638633328865644, 17.70581451254528, 8.904323978914439, 119.806288137168, 75.19914040105047, 38.73488026177325, 39.6535931169675, 54.4140728944664, 6.888991362125482, 38.27969444574009, 29.244765861996665, 69.3699158859536, 21.55618094962267, 57.904575304818124, 9.538512885222156, 29.713985107117153, 7.552771130555071, 26.31889516445969, 74.9745761817673, 23.502887404390435, 63.48642832220723, 73.3194625702248, 13.029866672675308, 14.76334506328986, 18.49152489100359, 53.87655767535115, 13.71059066768318, 48.879185663575306, 8.457889542345702, 12.522694077301288, 60.79643839094281, 27.786498157191293, 37.134038778224415, 40.20035493729476, 53.7784716469637, 7.504903105431046, 64.52982278633884, 48.785908855258185, 96.91007388118273, 29.542853457948787, 80.73588804106551, 65.01543174531704, 20.91527021668113, 21.73658774954425, 27.842876436560037, 66.45400461747512, 26.638618987281514, 27.589738465282466, 11.175649514413207, 30.228906323010072, 69.70660816513421, 66.32598550787168, 11.523985927729496, 10.539502409274592, 17.081271100615957, 30.394564839545374, 12.413828507116671, 73.47867583959115, 57.80818844467791, 13.6039514771337, 12.284817363684855, 63.916959731033764, 10.400861218830988, 21.83439297213855, 97.5997101801514, 84.6647003169166, 10.663831649048591, 21.778788418091576, 100.08156944195358, 47.163702214543, 95.77627758979419, 125.21971962996562, 14.508978249810452, 20.19266747587455, 31.811536663816383, 31.457487947228323, 6.690749582089322, 199.23283548221082, 60.80544669657785, 88.90663462721481, 108.97074931049173, 6.147735444970154, 16.3493060670071, 12.083157714360155, 31.524289124108208, 23.891953879164372, 10.725151049920173, 85.5335802833876, 5.142725278065199, 20.63954803475251, 14.489515940888003, 84.895821027002, 41.69216002611839, 32.57510105973904, 44.33835574685206, 102.39528081036511, 30.738694012292015, 9.30027056597899, 11.78905779892131, 29.122689960986936, 32.45936011556161, 5.140323779976012, 14.046816164739214, 28.135094873105082, 27.072782922714676, 15.964605069212656, 48.213091213092675, 20.79013604272777, 43.01905622214533, 10.705663024464842, 5.800466419439422, 50.75886502305269, 86.45061314110836, 68.32142707917721, 23.749506360859666, 43.687936275444635, 19.275472092334383, 8.604586088528118, 75.9730079636901, 155.01224908328638, 27.871340726259138, 18.17499019616114, 29.077804404067436, 11.038519368204811, 27.746067847649194, 5.4140895960793, 12.262292664623116, 13.20956857225721, 26.741089287251043, 13.160692525367448, 272.8993968019925, 57.36858796059653, 71.23314322446677, 48.571589093662666, 5.682119276237798, 14.872257577246629, 71.83290721633105, 81.21983385316729, 15.961096093358542, 7.908540226373144, 43.9176217486094, 20.52928268036619, 7.596450526275968, 16.046095468303367, 7.758742027932244, 5.757746605470833, 26.21775792279509, 41.44979043609027, 21.379594812772744, 20.718376291005562, 61.30522197048475, 11.908125135617412, 6.94995153600609, 29.888863026732608, 60.72630785996648, 6.32699763973714, 7.690421486377988, 46.36492314309449, 15.125648848971894, 20.976032121816957, 55.02100093183105, 66.18301712806074, 10.938664016223047, 23.776040532935948, 58.15919340489019, 90.64460546643137, 82.76779605792267, 126.63219690756475, 29.39946140679165, 28.798393142192314, 21.513612343792943, 95.42787666244672, 11.726403816469864, 25.034886934569016, 30.953102970195157, 32.46860808197921, 43.092262830033405, 35.88675691716506, 20.288423050340963, 64.89485462026457, 10.299267242196157, 28.569563546804943, 106.17707859603341, 16.793692561935167, 36.48739683194807, 105.33385961752658, 17.71747386804786, 77.83623866603475, 9.350157868388063, 129.61397742959267, 16.704147814034506, 23.9725704149212, 36.26936296494772, 18.87296192948793, 65.50009910129687, 37.58793344441017, 54.20492610374497, 51.32391998557904, 46.728724762858036, 13.65807032440138, 159.5114164597187, 189.87555817608384, 9.881799380428477, 5.850513008076435, 42.25117275612134, 16.395174606592953, 70.51180146393364, 36.336926196482594, 22.245306566653362, 23.667523093296232, 84.16909473856977, 12.566783357764846, 11.13529940886818, 33.40580932868269, 20.191547782458795, 20.5158274696522, 285.3729237112213, 16.800081231673655, 23.97607859358331, 6.664617003335775, 32.96407078062653, 19.332886266858672, 10.973543270302846, 41.92665057680671, 26.978704068259102, 101.79986603588952, 54.845316063145034, 215.40110022075038, 19.39388202566632, 19.75279335875864, 37.61083003376911, 63.81620845087106, 7.053073691260753, 14.416999037170664, 33.526017936382296, 92.8987728218357, 73.85326048522327, 11.740567907453713, 7.284299784665309, 47.89699539643583, 13.454135038868356, 42.886426473490616, 44.11230456448232, 19.704396989695386, 57.355716014926536, 45.510617168342264, 26.45750063223248, 69.59656871062587, 51.311853477291145, 33.768021460902155, 47.90718621341632, 25.564709062763292, 30.483554833160667, 20.421693827732486, 25.486612754857944, 9.076067088914638, 11.76666267396823, 8.52396741271952, 26.287945851750056, 14.005868412882439, 11.745120820629626, 120.19160914588556, 12.2365738351139, 13.160964189130885, 124.09363632461708, 41.980520893301325, 31.697932317398266, 11.381892243697125, 14.01791996754816, 19.254330050209393, 39.62718435503754, 52.162956703188236, 126.83986986342609, 88.44822565337222, 129.92832524881575, 47.518167412651195, 70.61501838499368, 16.574868137746535, 76.84415244943906, 9.292530710063904, 5.3995909100817565, 17.292184125064978, 149.94056543716553, 11.440835585463256, 19.362351642483418, 14.79655738425085, 18.402285504498618, 38.27762558137589, 23.519379746514012, 67.30144226678439, 63.46909611365105, 24.42216486367826, 6.855215133572062, 26.10000503927801, 6.6353835856972445, 6.079033792798462, 16.601512352601684, 63.50900272143555, 14.949662723264094, 57.20612212957508, 15.74295076229587, 28.141677932296176, 78.4636867878202, 17.264643334071096, 43.03679461437686, 8.500121061397795, 5.885533823447252, 9.977835834885685, 24.558148914925674, 8.081203949888542, 95.87740012687385, 63.417114410253326, 9.89106315349173, 71.17288849144902, 6.526067573709962, 7.989899743673398, 172.32173930773843, 159.7202398148763, 27.469005911428372, 33.147613579887086, 18.921875913807224, 113.68002628536287, 71.19022630403055, 147.30233679604595, 35.72482453661889, 27.945995790644805, 105.14531642265308, 12.5523763947447, 57.385711421121364, 6.945900982340127, 86.27352311135392, 49.935484208397014, 46.37404376463806, 66.46705441986646, 48.00110013669652, 37.800602535098434, 25.35124212957869, 9.498166275243788, 72.834918949968, 36.703835307851634, 9.075481027188852, 120.51840484596316, 10.913089651872301, 26.874956841662236, 61.16184854597179, 7.0778697252058285, 6.611982863350662, 8.218132018421247, 61.611555862062744, 5.39291529709509, 22.537635877701906, 8.657610011666213, 31.87394712776299, 18.381214676448437, 40.77134303063578, 26.895723232610962, 28.792469337367965, 87.3802143926514, 20.48674220925616, 14.952168966686449, 16.878731581959073, 85.5755250804118, 42.1576195776967, 5.5120541099227145, 8.502411549041822, 57.53966036581103, 48.57151404117503, 45.82849618452541, 49.51159793491997, 36.46157535256512, 32.77227034032556, 21.674474278277007, 40.57177635742895, 27.834791808302644, 47.15102101344242, 58.49701122381521, 111.98680834434026, 31.199271130384826, 5.442064538455223, 5.234545223376059, 7.002472628829827, 73.43929336552537, 6.728952447425046, 21.435670945561114, 7.382824218566932, 77.21878582940491, 81.43489048315443, 77.6129564908869, 14.309604802146787, 10.85970471634171, 16.833171244498867, 29.691222720104733, 29.440847585989633, 18.917247941625007, 91.36911821366668, 38.12705029313034, 34.889210557484, 8.414376807699153, 70.4511188441499, 23.530749773559634, 15.937454805604016, 66.62313604022648, 45.816809475718145, 47.3197340632475, 124.71979612194667, 16.278438547945708, 25.608235186281263, 27.41023830475028, 22.571781332338148, 16.675624743623633, 27.518635439848737, 40.09859650392159, 27.380383468099666, 18.36681926998866, 8.499209939857097, 6.117207510996892, 37.300454716974954, 37.50319513546114, 10.906542596737676, 85.48852908272977, 52.77924763633309, 8.690301386560192, 59.31516877124138, 40.544270299817455, 8.610370087756412, 11.537426472299957, 26.835344506139272, 94.60554188396111, 88.77481819864434, 48.627387825437886, 19.779792336968313, 33.7732699505698, 114.5648424694308, 93.84232130004861, 8.881553931514352, 43.91762758602187, 6.925424476050679, 15.656903903918401, 61.47623534882722, 28.863604955243375, 19.55934162748683, 24.25719309635833, 58.954394582568725, 52.79406284048406, 110.97185445321705, 42.41264627559368, 7.254414414685284, 12.822136241360823, 15.282059232448947, 51.782171861119195, 20.912119420130097, 8.856732620981942, 23.809203244417823, 35.88989000131961, 24.62864212434554, 197.09229191435563, 7.01842990356969, 11.5018759220606, 156.9134357033543, 29.682347428028415, 9.202912544746827, 27.69066756180308, 39.52159252500229, 79.73616379933034, 27.871078466469214, 130.13849652740902, 14.124867115261258, 45.21462415911469, 8.349517922903576, 26.305386835418222, 40.50807611447741, 164.30038898881406, 13.893592789888423, 191.4434823109578, 28.062059450756458, 6.003224272824868, 37.602424689216924, 21.47148428713188, 27.060525371292318, 76.98096399232305, 75.35671588108153, 39.84910804437369, 29.116362967661786, 59.45130964136332, 13.727572954855866, 18.488195146305937, 53.12312221846728, 15.940107511255913, 86.24755482877214, 20.85662539290175, 53.59720450173103, 5.9233603051424435, 147.4306069523871, 26.632980445272914, 85.79537325224405, 77.32936619853805, 17.801857747372146, 9.6215700873717, 38.86146797173665, 82.3525088226047, 51.15582505667902, 53.546147814131444, 9.144663974472397, 7.7996113025008675, 5.268886018957456, 20.159340452586914, 19.668235010027054, 6.2897829561398915, 14.856921565579993, 33.05407058583665, 176.73493475931986, 8.977216652067508, 74.40375099045377, 91.74583116294676, 7.589560178803756, 35.489497980584744, 11.475094117208315, 78.98343772624825, 33.83493026460293, 9.091043078583528, 9.562552360724707, 72.97196244142931, 63.82061556306638, 12.698622613621987, 67.87094244772322, 22.530662136427765, 18.050640893164136, 7.4087403699560594, 14.55583877323184, 15.764673182217532, 23.892437046293274, 70.26341943368854, 81.68275905824925, 32.32879800475341, 33.167939953738255, 35.42624820862994, 15.049984144188423, 26.9661214362762, 11.724324410264305, 128.0454216358143, 31.795600049325454, 45.625640495679605, 39.100525928477964, 108.09391254762889, 45.763579599716465, 60.924590034706476, 8.43462244893424, 5.1224890872888595, 9.356578241606963, 33.83016132607916, 20.136188327004085, 13.400650867662854, 68.90686523537423, 8.374060794415183, 20.168640846418622, 5.364847799610824, 8.257917811153668, 25.398837952566137, 65.42251121649102, 10.425938561418123, 93.01236710966431, 13.38418402598002, 32.5400653977338, 14.50071765781598, 47.72654244074634, 32.453772924114126, 38.61464154603861, 91.74036190979858, 12.90770473106426, 7.4116006296556725, 9.912786625405676, 27.79394785302641, 29.173640559240283, 88.45395911169437, 21.859045487070834, 69.29980609944704, 127.73936285618855, 18.35049137814269, 182.5949599557674, 90.9495046810017, 7.952928203338228, 16.258138380172607, 37.56126479318494, 7.997291847514882, 11.986846303539304, 16.943269978604736, 24.58414195669362, 122.88117887432671, 21.794335035337188, 13.609982449407955, 32.83039814185191, 126.35892427082588, 90.97016928628165, 34.560151233129254, 11.150566710245668, 12.638574910263445, 55.51169367335877, 69.53428872179265, 61.83712341670908, 38.23010638832054, 56.68498673015979, 66.6442756534137, 28.9104138028616, 32.969455832906874, 31.257166284890594, 81.94456688170106, 65.59543782142168, 18.63694821315913, 30.460345856231214, 6.878372483495519, 85.07225693919166, 77.78743699072395, 63.201572903803324, 31.860354507634575, 22.719892020044753, 9.249929925615918, 11.046587461851463, 105.63795218839716, 47.62685023386859, 98.09196735138985, 121.39970952164892, 15.677660770493695, 83.85025257932827, 27.700858922223603, 5.521622494644732, 6.634365696153405, 51.41242888236953, 15.566498648871924, 148.07874843289238, 21.207476496302, 6.91526964538894, 8.128747546746073, 17.034010387105376, 37.72040781617585, 22.65289713213477, 21.10049203567898, 10.470564962728654, 91.91153792494569, 75.75565502360065, 15.938779781822461, 27.322418304033032, 8.91629680539598, 19.15238755639138, 114.12090997875919, 60.06665529995223, 10.982284098743055, 92.63327053419334, 9.684189239028484, 98.39427510118307, 95.27401937680662, 131.86797166280368, 13.899965110679545, 27.762818344682167, 53.947121380283555, 37.219176342720075, 33.51686856777967, 11.492290109163589, 16.739720333530336, 39.80526345861364, 15.157286641115524, 38.709170980909924, 16.95896155168978, 204.338625899933, 106.22387235269503, 12.194416721200895, 36.65706407313439, 40.923273737100416, 66.75120565816626, 31.61963373250563, 19.879355892309476, 24.98211298952708, 159.08218101686697, 6.185686294214412, 20.490995076070643, 111.93791733322918, 13.82534076540945, 6.083747164927415, 100.77166997101865, 73.88085935265133, 8.34465559020765, 37.95480280779344, 18.04552089332026, 8.392941416089336, 23.202640212123626, 88.3386989797012, 94.70034858172419, 30.98720982386401, 71.1472630848649, 5.145301339636329, 12.469292951392461, 17.12398835548486, 51.945924121174016, 14.69030982716046, 5.173427347240897, 9.55344261272493, 21.492897704405234, 83.10717322283327, 32.108540417852474, 48.62332478861524, 5.12703990553479, 27.66348457096774, 5.4327727028548045, 171.90869491488445, 16.637616847569422, 11.358540961170828, 40.23232549318722, 78.08110920246828, 20.652088134977188, 15.932447117002265, 19.981609235483415, 7.095107786693718, 15.234196126856636, 21.22584484751319, 46.53967270601993, 9.64749443253058, 23.64685683018737, 12.748461173460214, 19.11847754290579, 7.046879600966763, 6.763054723808333, 116.64358515184796, 46.62838107604865, 21.960983910718678, 31.399634753977615, 101.75475991374847, 6.409789221848145, 33.93356108689936, 74.11982178130167, 30.47660892561707, 6.022318351439966, 131.88315258869721, 35.28736500365903, 176.10892925127982, 64.7525095992926, 53.777888848465324, 70.54017459563069, 5.988864516215381, 10.587594761861832, 22.92915940449959, 19.920049997756895, 6.7812981225779545, 59.2437565450879, 8.645247892732808, 5.2086932370969965, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3700580.5502043823, 3744896.875, 3757742.1875, 3758299.8316376675, 3817611.369889972, 3818907.8125, 3824018.8358734073, 3833743.1776544563, 3851288.7516050497, 3852204.531285106, 3853844.3004997754, 3861721.875, 3908750.8397630025, 3916475.038828469, 3922790.660283428, 3925364.0625, 3926909.375, 3927544.7127922648, 3929153.393272089, 3929232.8125, 3929477.7461570217, 3930876.1490259673, 3930884.1393416794, 3931003.9746626136, 3933507.8125, 3938240.0953453914, 3938723.4375, 3941615.4994659005, 3942891.7426525555, 3949709.678945607, 3949719.647171259, 3950831.205168401, 3954734.375, 3959435.172881459, 3974938.862406892, 3983621.875, 3989036.3856395134, 3993005.9648182476, 4005656.6685793963, 4005759.375, 4013846.875, 4027940.40606296, 4029918.75, 4030359.375, 4031487.1608243803, 4042084.617773994, 4042861.685924733, 4043139.0625, 4081446.22766501, 4082948.323633186, 4083334.2335765827, 4086421.875, 4086867.1875, 4086903.125, 4097223.1146438057, 4121177.0885248976, 4126458.9936031853, 4129417.1875, 4129764.1509730136, 4130283.8061347776, 4130970.3693000143, 4131110.424689006, 4137151.426779598, 4145517.494109853, 4147426.5625, 4147540.2098307945, 4148082.8125, 4159248.3457476017, 4172815.625, 4175025.9948629453, 4208882.8125, 4211664.0625, 4211878.517122831, 4212296.875, 4212332.431622496, 4212584.96720978, 4212752.792624778, 4213354.097481845, 4213922.576968442, 4213974.775873005, 4215792.611801541, 4216092.342603866, 4216320.3125, 4216419.358027579, 4216432.011465122, 4216644.156504843, 4217092.1875, 4217368.820895984, 4218950.0, 4218979.6875, 4219070.3125, 4219355.1546593895, 4219364.306459618, 4220038.862229385, 4220857.64040585, 4221614.036639279, 4221630.965282887, 4221857.663341908, 4221955.224060915, 4222241.553285815, 4222383.229780037, 4222408.371643024, 4222418.75, 4222443.755370345, 4222635.2954032505, 4222711.261697753, 4222753.418699816, 4222837.5, 4222883.430079069, 4223131.180480093, 4223501.5625, 4223507.816124243, 4223626.5625, 4223970.3125, 4223985.9375, 4223995.626363357, 4224126.5625, 4224837.347283961, 4225646.323779798, 4228012.5, 4228047.124993853, 4229081.770765102, 4230332.392898377, 4269206.219415466, 4300723.092372646, 4315023.4375, 4315035.9375, 4322021.518788098, 4322993.640271014, 4337340.265296765, 4369202.072760183, 4388375.0, 4389482.035510706, 4391397.306408615, 4392250.0, 4439862.352998463, 4450288.082751575, 4471013.026191478, 4488683.578953626, 4547444.311503255, 4555747.800276234, 4604910.234245067, 5838170.346426704, 6664469.671395252, 6673624.37973214, 6674373.4375, 6674469.592419618, 6675371.815246709, 6675515.625, 6675607.065929024, 6677233.371788218, 6677698.134394671, 6677939.089073412, 6679417.1875, 6681088.377975267, 6681562.1168361185, 6684751.5625, 6712104.6875, 6712807.099832755, 6712851.439669868, 6715405.2940043295, 6719029.253486989, 6721725.0, 6722277.4758965485, 6730577.680950084, 6734988.95631594, 6735379.6875, 6737647.058006957, 6747107.807620529, 6766142.38717459, 6769515.298157532, 6791132.928277712, 6807080.110583331, 6807158.465030201, 6807332.744962261, 6809149.525135815, 6809282.989839627, 6809329.127528777, 6809615.030330951, 6809935.067149805, 6810407.344082658, 6810446.669669884, 6810614.076126305, 6811379.2503074, 6811874.088440449, 6812162.5, 6812528.8240683675, 6813104.621555598, 6813284.375, 6813401.28286024, 6813685.476899427, 6813737.5, 6813775.638209089, 6814125.114694999, 6814417.1875, 6814417.1875, 6814481.933539864, 6814673.654234015, 6814768.75, 6814934.375, 6815220.3125, 6815263.804640165, 6815523.4375, 6815593.75, 6815687.918494111, 6815723.152299358, 6815765.625, 6816093.915158177, 6816489.0625, 6816579.996759647, 6817050.346636639, 6817596.800257722, 6818181.892480186, 6819648.419832377, 6820029.6875, 6820254.349352901, 6820452.206288306, 6821196.712547468, 6821234.375, 6821539.0625, 6821806.25, 6821893.411982845, 6824047.612386712, 6827221.2750366675, 6831304.725340625, 6831762.327546999, 6832265.325759388, 6832371.875, 6832852.85900236, 6833206.572100774, 6833909.393143231, 6835329.001130211, 6835632.4411005, 6836132.34914406, 6836802.633629553, 6837480.415134396, 6837585.9375, 6837593.75, 6838002.339208078, 6838018.75, 6838739.896091026, 6838839.6402660785, 6838974.891498573, 6839128.707554009, 6839407.078091596, 6839541.496342522, 6839601.536715748, 6840163.696669928, 6841026.766561407, 6841258.366534225, 6841710.9375, 6841967.157073874, 6842170.06115718, 6842335.756660729, 6843294.459430082, 6843365.625, 6843621.971814778, 6844624.394521607, 6845666.635190447, 6846656.25, 6849123.4375, 6849818.75, 6849825.0, 6852433.977580374, 6852545.910149272, 6860665.625, 6861021.228899087, 6861062.5, 6861101.068800379, 6861923.864547429, 6862248.672687334, 6862378.267494364, 6862385.795778095, 6862414.536232479, 6862679.6875, 6863041.332170981, 6863090.349001241, 6863300.0, 6864110.325672232, 6864367.611099386, 6864422.572802256, 6864597.266025156, 6864630.884648309, 6864768.742553439, 6864864.372988594, 6864969.49038844, 6865073.4375, 6865639.024070775, 6866620.3125, 6867968.330515669, 6868539.0625, 6868988.782181617, 6869234.375, 6869587.5, 6869735.9375, 6869743.75, 6869756.113048093, 6870151.5625, 6870850.127753531, 6870872.961566914, 6871243.1277732095, 6871341.591054862, 6871421.771806562, 6871531.879393107, 6871792.217957248, 6871832.830272142, 6871879.6875, 6872023.4375, 6872026.802049199, 6872116.775501439, 6872186.404638562, 6872187.5, 6872239.75430812, 6872347.703493404, 6872354.6875, 6872396.473428296, 6872425.632515085, 6872510.790637822, 6872568.229253587, 6872715.158545669, 6872876.5625, 6872987.904345017, 6873029.368970205, 6873063.994487795, 6873387.720323487, 6873471.875, 6873518.75, 6873558.769811427, 6873743.63169531, 6873816.497183672, 6875003.618326863, 6875103.424974396, 6875438.6868009865, 6875707.006874755, 6876032.8125, 6876347.402045146, 6876951.8952489775, 6955159.929593032, 6956540.951067538, 6958544.285876943, 6959582.960287145, 6960092.756804137, 6967880.976229595, 6969776.5625, 6980330.250754874, 6981897.8474557, 6981920.188635055, 6982162.1338705905, 6983607.341035466, 6985375.0, 6986406.25, 6987732.894886448, 6988960.9375, 6995931.21295, 7000026.948064866, 7000399.709154996, 7000801.512977918, 7000891.07894285, 7001068.493639052, 7001729.60990964, 7001940.547071367, 7002221.3905227715, 7002835.612745619, 7005225.633907164, 7006018.75, 7006195.0245979605, 7010587.315673522, 7012906.25, 7013271.875, 7013328.125, 7014290.324903287, 7015178.996825946, 7015611.744693033, 7015744.30655403, 7015946.875, 7017934.375, 7019060.1109214155, 7019681.308137012, 7021125.338637283, 7021289.004681342, 7021402.5975993145, 7023051.965055131, 7025090.757195399, 7025985.394412525, 7026630.286851952, 7026655.252885405, 7026800.0, 7027056.25, 7027323.4375, 7027589.026371628, 7027605.855770202, 7027756.231711543, 7028145.3125, 7028520.3125, 7029275.244038438, 7029317.959472255, 7038428.125, 7038824.3976310445, 7040139.043695443, 7040937.762463946, 7040947.285410799, 7041002.3349297615, 7041234.246358892, 7041621.875, 7042581.236968214, 7043366.606164845, 7043503.125, 7044486.385325956, 7044608.679773877, 7046349.659934467, 7047571.241205219, 7047577.021591282, 7047759.609784585, 7047784.375, 7048264.109986615, 7048732.259055667, 7049519.942423571, 7049840.942381659, 7050837.375593321, 7052693.451977979, 7052953.0102142235, 7053014.983659156, 7055139.0625, 7057321.220038267, 7057919.529256673, 7058015.625, 7058035.439553786, 7058256.25, 7058289.4144970635, 7058801.356794083, 7058806.25, 7059145.08244073, 7059359.375, 7059391.098272028, 7059464.625663896, 7059626.035679385, 7059680.6463544285, 7059686.835865429, 7059933.7633232325, 7060006.663690939, 7060221.598695969, 7060237.5, 7060306.791129453, 7060311.955380988, 7061065.64709733, 7061082.71766751, 7061084.771541226, 7061274.717169984, 7061285.9375, 7062546.065001165, 7062633.691747562, 7062805.493624284, 7063232.8125, 7063295.772543328, 7063896.875, 7064221.491913334, 7065062.767560912, 7065857.966491539, 7066183.398821668, 7066234.856829847, 7066354.6875, 7066398.772910716, 7066918.967441408, 7068024.8250331115, 7070410.509737977, 7070845.005957074, 7071305.610858987, 7074303.884697268, 7074935.942352089, 7075337.5, 7084627.929896785, 7085365.021115619, 7085486.957504288, 7087867.602405086, 7094173.154938409, 7099363.5461273035, 7100556.069553031, 7101293.300237948, 7101643.649080071, 7103005.442214117, 7103121.791678973, 7114647.135964695, 7116104.705248499, 7119649.121413021, 7120374.260225606, 7120426.676263846, 7121531.25, 7121787.5, 7122430.983331606, 7123231.105228414, 7123548.3351189485, 7125302.1965208, 7126798.4375, 7128037.859635383, 7128116.210279279, 7128601.359747138, 7129472.983611875, 7129818.495960044, 7136215.625, 7137073.381880741, 7137518.75, 7137557.8125, 7137787.68688227, 7137948.4375, 7138000.0, 7138127.908532545, 7138348.4375, 7138352.954874225, 7138360.123093272, 7138363.44794268, 7138451.3872416895, 7138482.494258045, 7138572.248631355, 7138614.485959928, 7138663.938170653, 7139080.98077078, 7139551.9245844465, 7139990.060017974, 7140453.734845061, 7141047.876096387, 7141104.6875, 7141489.0625, 7141523.4375, 7141565.781753008, 7142697.174235869, 7143244.554393755, 7143837.5, 7144602.969374645, 7144936.548982416, 7144964.946799697, 7145249.769478307, 7145967.387180348, 7146482.8125, 7146537.871338729, 7147460.025597598, 7148173.39116678, 7148212.529184731, 7148333.317329358, 7148490.42710443, 7148492.379000526, 7149185.1826547105, 7149459.336443135, 7149634.2751829345, 7149839.0625, 7151519.994169064, 7151810.566452769, 7151908.820070393, 7152288.22999904, 7152291.067639481, 7152443.137599209, 7152591.509971789, 7152615.537371592, 7153055.064076365, 7153220.835749112, 7153253.549753636, 7153351.006223113, 7153514.257993843, 7153532.792844999, 7153548.548593929, 7153586.437477543, 7153588.069972724, 7153809.758104054, 7153914.984884811, 7153925.676903885, 7154004.448185203, 7154018.340337358, 7154243.692264437, 7154268.736676355, 7154284.970195815, 7154375.684680711, 7154503.3692132635, 7154646.268421661, 7154734.375, 7154792.1875, 7154847.177435612, 7155130.628721817, 7155153.884308575, 7155215.625, 7155239.0625, 7155498.4375, 7155581.25, 7155809.345071436, 7155837.394960025, 7155867.940910556, 7156209.375, 7156291.474749136, 7156459.594390821, 7156589.0625, 7156651.5625, 7157277.541544063, 7157384.4766363865, 7157446.847710464, 7157477.940754681, 7157492.378351181, 7157785.9375, 7158964.0625, 7160307.4934881525, 7160685.1067841565, 7161295.170713937, 7161303.39457037, 7162581.25, 7163534.206571377, 7163536.69048649, 7168076.430786734, 7168635.9375, 7168656.103828932, 7171244.911200659, 7171424.078884428, 7171430.99236631, 7171928.806429673, 7175416.680020172, 7176357.949302791, 7176697.858535533, 7177026.5625, 7177790.017831193, 7178287.5027938485, 7179405.117251005, 7180817.1875, 7180942.1875, 7181907.371513241, 7182406.637000369, 7183626.5625, 7183812.5, 7184715.625, 7184978.125, 7186450.528949218, 7186503.125, 7186576.080491688, 7186696.875, 7187748.401656837, 7188129.6875, 7188141.791083101, 7188171.476786261, 7188184.744543864, 7188202.657792523, 7189241.80429325, 7189321.402185022, 7189869.919448059, 7189951.3869201215, 7190598.262304251, 7190674.346497744, 7190890.254919737, 7191523.4375, 7191954.385674688, 7191955.029546361, 7191984.196496406, 7192078.546173877, 7192235.9375, 7192281.25, 7192717.946166452, 7193050.0, 7193063.562613324, 7193168.75, 7193250.234096994, 7193733.144545021, 7193944.995080243, 7194129.926365671, 7194670.140797058, 7194894.224231408, 7194923.4375, 7195010.860088623, 7195162.811491093, 7195537.332718432, 7195671.820556856, 7195793.3517362885, 7196484.766026184, 7196604.887471737, 7196701.5625, 7196737.439395034, 7196753.870047313, 7196795.694052966, 7196815.900335887, 7196844.367624342, 7196875.0, 7196877.978743051, 7197207.456860278, 7197365.243203332, 7197628.817656118, 7197704.527271182, 7197788.558674769, 7197825.565909847, 7197854.93471168, 7198278.033375197, 7198644.355013091, 7198975.0, 7198987.324915539, 7199561.80919476, 7199776.049553537, 7199784.144216787, 7199990.3760136245, 7200044.727829213, 7200055.391430467, 7200064.82281816, 7200093.925831023, 7200177.461561494, 7200181.554213863, 7200228.913369192, 7200235.8031099485, 7200292.9923226815, 7200303.471223651, 7200317.016671902, 7200476.504876315, 7200603.607764854, 7200627.900032154, 7200653.379011468, 7200673.718940083, 7200895.3538364945, 7200900.942181284, 7200904.392063005, 7200948.4375, 7200956.015754294, 7200964.619185597, 7201032.405534001, 7201054.914381703, 7201066.782701326, 7201233.808539006, 7201252.969027967, 7201362.969140563, 7201428.125, 7201520.877838445, 7201569.683898104, 7201589.0625, 7201643.517869213, 7201866.073893703, 7201886.054654884, 7202235.814237808, 7202617.1875, 7202825.0, 7202998.1324212765, 7203030.232264837, 7203134.351185375, 7203161.642266456, 7203214.0625, 7203232.3103303695, 7203257.375184845, 7203382.8125, 7203483.437918418, 7203485.9375, 7203491.840072558, 7203528.08289367, 7203529.327840417, 7203533.509811781, 7203571.875, 7203575.239447139, 7203609.3534637075, 7203615.058738251, 7203638.524420374, 7203659.188891534, 7203670.82242466, 7203689.468048825, 7203767.569211937, 7203787.5, 7203806.841035545, 7203820.636826314, 7203856.25, 7203907.680839849, 7203915.573512155, 7203918.663997204, 7203934.1455752365, 7203936.449657866, 7203985.201652611, 7204007.728415294, 7204133.480811292, 7204151.739189744, 7204162.47762895, 7204201.5625, 7204219.951473278, 7204221.424151471, 7204225.754275998, 7204227.262967397, 7204231.212024723, 7204232.8125, 7204242.757447832, 7204271.875, 7204290.405488398, 7204301.2638671845, 7204311.198778424, 7204339.760218038, 7204341.398845707, 7204349.2974474635, 7204399.901573088, 7204407.410579273, 7204474.068287564, 7204482.240700657, 7204482.707496171, 7204484.575410888, 7204495.271714238, 7204501.5625, 7204504.6875, 7204507.675491373, 7204536.692662865, 7204554.6875, 7204559.403171463, 7204581.1659543635, 7204581.600873229, 7204616.4504145775, 7204625.0, 7204634.375, 7204665.36948418, 7204669.474080534, 7204681.25, 7204689.0625, 7204694.019842333, 7204704.308740961, 7204710.967124067, 7204723.4375, 7204793.102294053, 7204815.152016118, 7204857.8125, 7204898.599348112, 7204916.416634669, 7204920.966642175, 7204923.382908371, 7204956.795720774, 7204971.875, 7204986.999290668, 7204990.625, 7205026.083591414, 7205036.004605206, 7205040.504337913, 7205040.625, 7205078.125, 7205082.023307613, 7205084.375, 7205089.964796628, 7205093.187133495, 7205114.678389981, 7205128.086970392, 7205139.0625, 7205187.5, 7205199.535918161, 7205207.8125, 7205212.963401533, 7205227.577665929, 7205243.104568542, 7205278.456236859, 7205289.935856992, 7205306.557283705, 7205320.877802857, 7205341.597229625, 7205347.362925557, 7205356.691794808, 7205377.270403382, 7205386.290487978, 7205419.801473649, 7205435.537998939, 7205476.889126513, 7205491.927768065, 7205540.008801251, 7205552.015833061, 7205554.7020759955, 7205557.04069941, 7205559.375, 7205603.125, 7205603.125, 7205615.061415456, 7205618.75, 7205652.148017882, 7205667.508869151, 7205668.174880857, 7205681.778330806, 7205709.375, 7205713.471422162, 7205729.580374855, 7205746.875, 7205747.4243598385, 7205750.932626436, 7205761.7882671505, 7205771.875, 7205792.1875, 7205876.359489349, 7205878.027047715, 7205914.009974977, 7205942.370278429, 7205944.914091314, 7206025.28779536, 7206027.923441137, 7206042.907013861, 7206051.656873767, 7206058.534107055, 7206060.699130706, 7206069.629286584, 7206168.75, 7206198.173708886, 7206200.412209312, 7206219.783382831, 7206222.590440229, 7206223.126620452, 7206223.937521079, 7206227.990981811, 7206240.233902335, 7206244.77222116, 7206265.1595424935, 7206269.988696666, 7206275.637430634, 7206328.364156136, 7206345.248665964, 7206360.402077379, 7206382.718593505, 7206383.93200764, 7206384.483282952, 7206415.529927277, 7206435.386243214, 7206444.139700015, 7206445.3125, 7206462.5, 7206488.672302704, 7206526.763797683, 7206545.272798857, 7206548.4375, 7206558.8848834075, 7206602.678234694, 7206612.721365374, 7206628.528383762, 7206667.980768, 7206679.742982802, 7206693.416768147, 7206719.194704471, 7206756.25, 7206791.992490656, 7206794.502958659, 7206807.312743122, 7206836.829122044, 7206837.423406996, 7206887.5, 7206902.446434027, 7206910.50612092, 7206911.891577189, 7206980.576396888, 7206983.768312182, 7206985.556643358, 7206991.86021386, 7206993.708045571, 7207030.7659502905, 7207062.433699065, 7207078.233235489, 7207089.197225063, 7207089.692484002, 7207100.195862187, 7207135.5933445385, 7207152.859943575, 7207153.125, 7207167.1875, 7207180.316223647, 7207220.992291198, 7207250.716721162, 7207261.412372671, 7207281.03009249, 7207281.182495899, 7207297.217991206, 7207336.188919513, 7207357.312479697, 7207382.8125, 7207394.418378837, 7207409.10913244, 7207420.149788525, 7207422.70192504, 7207425.869121709, 7207429.0343932845, 7207448.82113747, 7207451.705325937, 7207458.4252787065, 7207479.6875, 7207530.401367843, 7207543.987767271, 7207550.896341799, 7207554.5863264995, 7207564.137227416, 7207574.472784976, 7207604.6875, 7207611.289078035, 7207629.379323482, 7207663.337127353, 7207664.848715388, 7207666.896010568, 7207673.435236307, 7207676.144961951, 7207692.772325263, 7207714.260839988, 7207717.1875, 7207743.12278554, 7207744.800987717, 7207750.676573542, 7207806.25, 7207845.3125, 7207874.342757235, 7207893.516543713, 7207894.063053475, 7207921.248135388, 7207930.372744804, 7207950.0, 7207962.497566157, 7207978.67593432, 7207994.937097443, 7207998.070339173, 7208011.826391496, 7208012.588468682, 7208018.4488208685, 7208028.74679351, 7208036.143154983, ...], [19.707466516199226, 74.642750051961, 47.4653179115744, 25.591674780186707, 6.85301327038651, 74.59421565066737, 9.405085073238345, 8.005451432925172, 50.50557134202731, 49.83284779211903, 31.030465006801386, 53.33556276572247, 30.643149485956723, 45.15641526866657, 15.077720621253334, 80.41506778682535, 34.206202137876666, 31.116611818082667, 12.342832081917692, 45.80690458496786, 13.670583946554496, 31.927859358547593, 36.31210090130678, 10.17053358091058, 52.65686609453701, 8.920400716592152, 75.00063235754531, 78.96589523233057, 119.08574201069337, 11.638527753558229, 8.825777166651681, 50.684668597771946, 63.58558231971021, 14.64777645493696, 25.11670311460719, 75.30619570875409, 16.97753680105245, 38.99058547771706, 27.86826640600367, 57.38607055453697, 64.42542952339983, 60.841295713751855, 64.65443119146339, 50.23772027576454, 23.262901686441893, 11.529636330866246, 14.755028613189054, 75.87347651802729, 20.13932725277626, 96.27717352845832, 14.42854277156811, 52.50366968039738, 73.92007679428603, 70.8451190565814, 24.787916574696986, 109.99186704944368, 85.27182688035418, 58.6327556382305, 13.432363383402157, 8.892646631001423, 15.162516144878175, 13.29109614625005, 69.35519605131444, 16.254893534239063, 68.07408387804642, 13.56454135176911, 73.33150500213682, 14.602956451673014, 87.04037510406036, 20.84391480563514, 55.06397557790772, 61.95787640913589, 33.62366491669459, 68.80710946098894, 27.36057265753822, 27.188906641294253, 30.16160273438903, 15.588101714632899, 10.919019261032064, 7.063755998029801, 16.849746506362838, 15.567593811933932, 40.836920592943926, 12.23273144160682, 31.73010402494628, 24.57224190842991, 29.344260480345625, 33.497581508471455, 50.56179218644698, 104.74418021932499, 70.79551699118642, 22.823365810842752, 15.960735131227864, 22.415077809930175, 25.534690315626914, 28.023090638927332, 8.141542224689198, 6.734089232125582, 7.8095589490960995, 5.667549766224173, 27.727914297295907, 12.236788683328177, 73.73646715372129, 14.962018244864765, 10.253291484166889, 30.94364940280102, 17.12800711255509, 65.33526137024687, 12.252966438295145, 14.682991367214138, 67.5585204119282, 40.435705143777355, 47.367125091062235, 93.8230803625215, 58.458780317975524, 11.656493660940315, 33.781868806026495, 39.8154649608916, 10.363115316118861, 38.72483217065607, 7.18875551979689, 7.2654214390973175, 66.21512739783822, 29.278174755746726, 13.771209930889626, 30.718269854305593, 51.76299729381062, 9.047335065657254, 5.527778641505899, 13.727442487378259, 9.803647913916084, 50.82644111191706, 83.6690883035573, 16.887574873127576, 66.09900992261743, 67.75289593089535, 17.751145725688392, 17.41485269965395, 141.87607554280075, 29.389272711024063, 20.225368291905976, 19.679817166918887, 5.292136381298108, 12.955521656318021, 13.008302931824097, 29.96043402286716, 5.575412084326126, 64.67582765880027, 53.9371141316927, 39.2877005507617, 17.609561177049475, 28.945554574174842, 11.169498352949311, 106.4249475951255, 84.1936488607324, 10.577333074794092, 64.62315381071514, 71.42118930633039, 8.793674473137532, 14.49313240648451, 110.62365855669117, 65.24243112843418, 54.158758389591625, 6.188530183600766, 8.982184234838812, 35.771440662194664, 50.15216581810227, 11.426336780802869, 85.63759815352465, 40.42581973519082, 44.4282269900854, 15.401959646787395, 11.988012078378974, 9.951668947445128, 8.25118226028644, 76.28248913166209, 12.97051754531731, 47.13134966681825, 31.585982079883603, 9.99432775999348, 16.706572031993794, 10.821245369148151, 84.83022737088504, 13.501416378308628, 6.5942143012677645, 59.14766602789065, 5.752741475337374, 73.89846010629861, 38.81581965212487, 71.96295567376688, 24.859433027730354, 59.05456133320809, 37.523551062232414, 15.397468540027731, 30.707938670001276, 66.48474368106133, 6.599860370355262, 15.837382157084507, 74.24669596608722, 41.83344709376439, 80.68790425590807, 5.690541322840477, 96.94974531347472, 55.171776709254125, 6.850034215375426, 89.76044357449608, 69.60529705743095, 7.66408518069184, 78.58553571266374, 31.163344162173118, 90.01558289618416, 12.956172475276706, 12.306210781136082, 22.213421451340164, 135.45381599061315, 6.225400761805889, 8.659131777107374, 69.00660729734236, 100.41117327688715, 155.81089396875421, 42.18522541735817, 9.061059514471363, 18.765522714955527, 20.550687836122275, 31.251544609069615, 67.75731060321571, 82.50508721877408, 37.01142730406999, 30.521737859576987, 16.32993735374313, 17.11197336437984, 14.207874062851673, 22.879634021338816, 21.866602174042423, 13.349742648860044, 22.837477972446223, 29.477856601876475, 41.63290358296407, 5.31569768917947, 43.78272665342275, 12.73998910760543, 7.826486144814315, 17.883367812777575, 12.179267637252824, 68.37750059099271, 8.808204263760326, 85.27400477530006, 14.117854214347068, 5.297432464413666, 6.87939652053338, 50.112058403076595, 65.56630972768804, 55.78050697334039, 14.294299850205645, 23.80892886875792, 35.58405536820394, 7.638633328865644, 17.70581451254528, 8.904323978914439, 119.806288137168, 75.19914040105047, 38.73488026177325, 39.6535931169675, 54.4140728944664, 6.888991362125482, 38.27969444574009, 29.244765861996665, 69.3699158859536, 21.55618094962267, 57.904575304818124, 9.538512885222156, 29.713985107117153, 7.552771130555071, 26.31889516445969, 74.9745761817673, 23.502887404390435, 63.48642832220723, 73.3194625702248, 13.029866672675308, 14.76334506328986, 18.49152489100359, 53.87655767535115, 13.71059066768318, 48.879185663575306, 8.457889542345702, 12.522694077301288, 60.79643839094281, 27.786498157191293, 37.134038778224415, 40.20035493729476, 53.7784716469637, 7.504903105431046, 64.52982278633884, 48.785908855258185, 96.91007388118273, 29.542853457948787, 80.73588804106551, 65.01543174531704, 20.91527021668113, 21.73658774954425, 27.842876436560037, 66.45400461747512, 26.638618987281514, 27.589738465282466, 11.175649514413207, 30.228906323010072, 69.70660816513421, 66.32598550787168, 11.523985927729496, 10.539502409274592, 17.081271100615957, 30.394564839545374, 12.413828507116671, 73.47867583959115, 57.80818844467791, 13.6039514771337, 12.284817363684855, 63.916959731033764, 10.400861218830988, 21.83439297213855, 97.5997101801514, 84.6647003169166, 10.663831649048591, 21.778788418091576, 100.08156944195358, 47.163702214543, 95.77627758979419, 125.21971962996562, 14.508978249810452, 20.19266747587455, 31.811536663816383, 31.457487947228323, 6.690749582089322, 199.23283548221082, 60.80544669657785, 88.90663462721481, 108.97074931049173, 6.147735444970154, 16.3493060670071, 12.083157714360155, 31.524289124108208, 23.891953879164372, 10.725151049920173, 85.5335802833876, 5.142725278065199, 20.63954803475251, 14.489515940888003, 84.895821027002, 41.69216002611839, 32.57510105973904, 44.33835574685206, 102.39528081036511, 30.738694012292015, 9.30027056597899, 11.78905779892131, 29.122689960986936, 32.45936011556161, 5.140323779976012, 14.046816164739214, 28.135094873105082, 27.072782922714676, 15.964605069212656, 48.213091213092675, 20.79013604272777, 43.01905622214533, 10.705663024464842, 5.800466419439422, 50.75886502305269, 86.45061314110836, 68.32142707917721, 23.749506360859666, 43.687936275444635, 19.275472092334383, 8.604586088528118, 75.9730079636901, 155.01224908328638, 27.871340726259138, 18.17499019616114, 29.077804404067436, 11.038519368204811, 27.746067847649194, 5.4140895960793, 12.262292664623116, 13.20956857225721, 26.741089287251043, 13.160692525367448, 272.8993968019925, 57.36858796059653, 71.23314322446677, 48.571589093662666, 5.682119276237798, 14.872257577246629, 71.83290721633105, 81.21983385316729, 15.961096093358542, 7.908540226373144, 43.9176217486094, 20.52928268036619, 7.596450526275968, 16.046095468303367, 7.758742027932244, 5.757746605470833, 26.21775792279509, 41.44979043609027, 21.379594812772744, 20.718376291005562, 61.30522197048475, 11.908125135617412, 6.94995153600609, 29.888863026732608, 60.72630785996648, 6.32699763973714, 7.690421486377988, 46.36492314309449, 15.125648848971894, 20.976032121816957, 55.02100093183105, 66.18301712806074, 10.938664016223047, 23.776040532935948, 58.15919340489019, 90.64460546643137, 82.76779605792267, 126.63219690756475, 29.39946140679165, 28.798393142192314, 21.513612343792943, 95.42787666244672, 11.726403816469864, 25.034886934569016, 30.953102970195157, 32.46860808197921, 43.092262830033405, 35.88675691716506, 20.288423050340963, 64.89485462026457, 10.299267242196157, 28.569563546804943, 106.17707859603341, 16.793692561935167, 36.48739683194807, 105.33385961752658, 17.71747386804786, 77.83623866603475, 9.350157868388063, 129.61397742959267, 16.704147814034506, 23.9725704149212, 36.26936296494772, 18.87296192948793, 65.50009910129687, 37.58793344441017, 54.20492610374497, 51.32391998557904, 46.728724762858036, 13.65807032440138, 159.5114164597187, 189.87555817608384, 9.881799380428477, 5.850513008076435, 42.25117275612134, 16.395174606592953, 70.51180146393364, 36.336926196482594, 22.245306566653362, 23.667523093296232, 84.16909473856977, 12.566783357764846, 11.13529940886818, 33.40580932868269, 20.191547782458795, 20.5158274696522, 285.3729237112213, 16.800081231673655, 23.97607859358331, 6.664617003335775, 32.96407078062653, 19.332886266858672, 10.973543270302846, 41.92665057680671, 26.978704068259102, 101.79986603588952, 54.845316063145034, 215.40110022075038, 19.39388202566632, 19.75279335875864, 37.61083003376911, 63.81620845087106, 7.053073691260753, 14.416999037170664, 33.526017936382296, 92.8987728218357, 73.85326048522327, 11.740567907453713, 7.284299784665309, 47.89699539643583, 13.454135038868356, 42.886426473490616, 44.11230456448232, 19.704396989695386, 57.355716014926536, 45.510617168342264, 26.45750063223248, 69.59656871062587, 51.311853477291145, 33.768021460902155, 47.90718621341632, 25.564709062763292, 30.483554833160667, 20.421693827732486, 25.486612754857944, 9.076067088914638, 11.76666267396823, 8.52396741271952, 26.287945851750056, 14.005868412882439, 11.745120820629626, 120.19160914588556, 12.2365738351139, 13.160964189130885, 124.09363632461708, 41.980520893301325, 31.697932317398266, 11.381892243697125, 14.01791996754816, 19.254330050209393, 39.62718435503754, 52.162956703188236, 126.83986986342609, 88.44822565337222, 129.92832524881575, 47.518167412651195, 70.61501838499368, 16.574868137746535, 76.84415244943906, 9.292530710063904, 5.3995909100817565, 17.292184125064978, 149.94056543716553, 11.440835585463256, 19.362351642483418, 14.79655738425085, 18.402285504498618, 38.27762558137589, 23.519379746514012, 67.30144226678439, 63.46909611365105, 24.42216486367826, 6.855215133572062, 26.10000503927801, 6.6353835856972445, 6.079033792798462, 16.601512352601684, 63.50900272143555, 14.949662723264094, 57.20612212957508, 15.74295076229587, 28.141677932296176, 78.4636867878202, 17.264643334071096, 43.03679461437686, 8.500121061397795, 5.885533823447252, 9.977835834885685, 24.558148914925674, 8.081203949888542, 95.87740012687385, 63.417114410253326, 9.89106315349173, 71.17288849144902, 6.526067573709962, 7.989899743673398, 172.32173930773843, 159.7202398148763, 27.469005911428372, 33.147613579887086, 18.921875913807224, 113.68002628536287, 71.19022630403055, 147.30233679604595, 35.72482453661889, 27.945995790644805, 105.14531642265308, 12.5523763947447, 57.385711421121364, 6.945900982340127, 86.27352311135392, 49.935484208397014, 46.37404376463806, 66.46705441986646, 48.00110013669652, 37.800602535098434, 25.35124212957869, 9.498166275243788, 72.834918949968, 36.703835307851634, 9.075481027188852, 120.51840484596316, 10.913089651872301, 26.874956841662236, 61.16184854597179, 7.0778697252058285, 6.611982863350662, 8.218132018421247, 61.611555862062744, 5.39291529709509, 22.537635877701906, 8.657610011666213, 31.87394712776299, 18.381214676448437, 40.77134303063578, 26.895723232610962, 28.792469337367965, 87.3802143926514, 20.48674220925616, 14.952168966686449, 16.878731581959073, 85.5755250804118, 42.1576195776967, 5.5120541099227145, 8.502411549041822, 57.53966036581103, 48.57151404117503, 45.82849618452541, 49.51159793491997, 36.46157535256512, 32.77227034032556, 21.674474278277007, 40.57177635742895, 27.834791808302644, 47.15102101344242, 58.49701122381521, 111.98680834434026, 31.199271130384826, 5.442064538455223, 5.234545223376059, 7.002472628829827, 73.43929336552537, 6.728952447425046, 21.435670945561114, 7.382824218566932, 77.21878582940491, 81.43489048315443, 77.6129564908869, 14.309604802146787, 10.85970471634171, 16.833171244498867, 29.691222720104733, 29.440847585989633, 18.917247941625007, 91.36911821366668, 38.12705029313034, 34.889210557484, 8.414376807699153, 70.4511188441499, 23.530749773559634, 15.937454805604016, 66.62313604022648, 45.816809475718145, 47.3197340632475, 124.71979612194667, 16.278438547945708, 25.608235186281263, 27.41023830475028, 22.571781332338148, 16.675624743623633, 27.518635439848737, 40.09859650392159, 27.380383468099666, 18.36681926998866, 8.499209939857097, 6.117207510996892, 37.300454716974954, 37.50319513546114, 10.906542596737676, 85.48852908272977, 52.77924763633309, 8.690301386560192, 59.31516877124138, 40.544270299817455, 8.610370087756412, 11.537426472299957, 26.835344506139272, 94.60554188396111, 88.77481819864434, 48.627387825437886, 19.779792336968313, 33.7732699505698, 114.5648424694308, 93.84232130004861, 8.881553931514352, 43.91762758602187, 6.925424476050679, 15.656903903918401, 61.47623534882722, 28.863604955243375, 19.55934162748683, 24.25719309635833, 58.954394582568725, 52.79406284048406, 110.97185445321705, 42.41264627559368, 7.254414414685284, 12.822136241360823, 15.282059232448947, 51.782171861119195, 20.912119420130097, 8.856732620981942, 23.809203244417823, 35.88989000131961, 24.62864212434554, 197.09229191435563, 7.01842990356969, 11.5018759220606, 156.9134357033543, 29.682347428028415, 9.202912544746827, 27.69066756180308, 39.52159252500229, 79.73616379933034, 27.871078466469214, 130.13849652740902, 14.124867115261258, 45.21462415911469, 8.349517922903576, 26.305386835418222, 40.50807611447741, 164.30038898881406, 13.893592789888423, 191.4434823109578, 28.062059450756458, 6.003224272824868, 37.602424689216924, 21.47148428713188, 27.060525371292318, 76.98096399232305, 75.35671588108153, 39.84910804437369, 29.116362967661786, 59.45130964136332, 13.727572954855866, 18.488195146305937, 53.12312221846728, 15.940107511255913, 86.24755482877214, 20.85662539290175, 53.59720450173103, 5.9233603051424435, 147.4306069523871, 26.632980445272914, 85.79537325224405, 77.32936619853805, 17.801857747372146, 9.6215700873717, 38.86146797173665, 82.3525088226047, 51.15582505667902, 53.546147814131444, 9.144663974472397, 7.7996113025008675, 5.268886018957456, 20.159340452586914, 19.668235010027054, 6.2897829561398915, 14.856921565579993, 33.05407058583665, 176.73493475931986, 8.977216652067508, 74.40375099045377, 91.74583116294676, 7.589560178803756, 35.489497980584744, 11.475094117208315, 78.98343772624825, 33.83493026460293, 9.091043078583528, 9.562552360724707, 72.97196244142931, 63.82061556306638, 12.698622613621987, 67.87094244772322, 22.530662136427765, 18.050640893164136, 7.4087403699560594, 14.55583877323184, 15.764673182217532, 23.892437046293274, 70.26341943368854, 81.68275905824925, 32.32879800475341, 33.167939953738255, 35.42624820862994, 15.049984144188423, 26.9661214362762, 11.724324410264305, 128.0454216358143, 31.795600049325454, 45.625640495679605, 39.100525928477964, 108.09391254762889, 45.763579599716465, 60.924590034706476, 8.43462244893424, 5.1224890872888595, 9.356578241606963, 33.83016132607916, 20.136188327004085, 13.400650867662854, 68.90686523537423, 8.374060794415183, 20.168640846418622, 5.364847799610824, 8.257917811153668, 25.398837952566137, 65.42251121649102, 10.425938561418123, 93.01236710966431, 13.38418402598002, 32.5400653977338, 14.50071765781598, 47.72654244074634, 32.453772924114126, 38.61464154603861, 91.74036190979858, 12.90770473106426, 7.4116006296556725, 9.912786625405676, 27.79394785302641, 29.173640559240283, 88.45395911169437, 21.859045487070834, 69.29980609944704, 127.73936285618855, 18.35049137814269, 182.5949599557674, 90.9495046810017, 7.952928203338228, 16.258138380172607, 37.56126479318494, 7.997291847514882, 11.986846303539304, 16.943269978604736, 24.58414195669362, 122.88117887432671, 21.794335035337188, 13.609982449407955, 32.83039814185191, 126.35892427082588, 90.97016928628165, 34.560151233129254, 11.150566710245668, 12.638574910263445, 55.51169367335877, 69.53428872179265, 61.83712341670908, 38.23010638832054, 56.68498673015979, 66.6442756534137, 28.9104138028616, 32.969455832906874, 31.257166284890594, 81.94456688170106, 65.59543782142168, 18.63694821315913, 30.460345856231214, 6.878372483495519, 85.07225693919166, 77.78743699072395, 63.201572903803324, 31.860354507634575, 22.719892020044753, 9.249929925615918, 11.046587461851463, 105.63795218839716, 47.62685023386859, 98.09196735138985, 121.39970952164892, 15.677660770493695, 83.85025257932827, 27.700858922223603, 5.521622494644732, 6.634365696153405, 51.41242888236953, 15.566498648871924, 148.07874843289238, 21.207476496302, 6.91526964538894, 8.128747546746073, 17.034010387105376, 37.72040781617585, 22.65289713213477, 21.10049203567898, 10.470564962728654, 91.91153792494569, 75.75565502360065, 15.938779781822461, 27.322418304033032, 8.91629680539598, 19.15238755639138, 114.12090997875919, 60.06665529995223, 10.982284098743055, 92.63327053419334, 9.684189239028484, 98.39427510118307, 95.27401937680662, 131.86797166280368, 13.899965110679545, 27.762818344682167, 53.947121380283555, 37.219176342720075, 33.51686856777967, 11.492290109163589, 16.739720333530336, 39.80526345861364, 15.157286641115524, 38.709170980909924, 16.95896155168978, 204.338625899933, 106.22387235269503, 12.194416721200895, 36.65706407313439, 40.923273737100416, 66.75120565816626, 31.61963373250563, 19.879355892309476, 24.98211298952708, 159.08218101686697, 6.185686294214412, 20.490995076070643, 111.93791733322918, 13.82534076540945, 6.083747164927415, 100.77166997101865, 73.88085935265133, 8.34465559020765, 37.95480280779344, 18.04552089332026, 8.392941416089336, 23.202640212123626, 88.3386989797012, 94.70034858172419, 30.98720982386401, 71.1472630848649, 5.145301339636329, 12.469292951392461, 17.12398835548486, 51.945924121174016, 14.69030982716046, 5.173427347240897, 9.55344261272493, 21.492897704405234, 83.10717322283327, 32.108540417852474, 48.62332478861524, 5.12703990553479, 27.66348457096774, 5.4327727028548045, 171.90869491488445, 16.637616847569422, 11.358540961170828, 40.23232549318722, 78.08110920246828, 20.652088134977188, 15.932447117002265, 19.981609235483415, 7.095107786693718, 15.234196126856636, 21.22584484751319, 46.53967270601993, 9.64749443253058, 23.64685683018737, 12.748461173460214, 19.11847754290579, 7.046879600966763, 6.763054723808333, 116.64358515184796, 46.62838107604865, 21.960983910718678, 31.399634753977615, 101.75475991374847, 6.409789221848145, 33.93356108689936, 74.11982178130167, 30.47660892561707, 6.022318351439966, 131.88315258869721, 35.28736500365903, 176.10892925127982, 64.7525095992926, 53.777888848465324, 70.54017459563069, 5.988864516215381, 10.587594761861832, 22.92915940449959, 19.920049997756895, 6.7812981225779545, 59.2437565450879, 8.645247892732808, 5.2086932370969965, ...])
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);
([3700580.5502043823, 3744896.875, 3757742.1875, 3758299.8316376675, 3817611.369889972, 3818907.8125, 3824018.8358734073, 3833743.1776544563, 3851288.7516050497, 3852204.531285106, 3853844.3004997754, 3861721.875, 3908750.8397630025, 3916475.038828469, 3922790.660283428, 3925364.0625, 3926909.375, 3927544.7127922648, 3929153.393272089, 3929232.8125, 3929477.7461570217, 3930876.1490259673, 3930884.1393416794, 3931003.9746626136, 3933507.8125, 3938240.0953453914, 3938723.4375, 3941615.4994659005, 3942891.7426525555, 3949709.678945607, 3949719.647171259, 3950831.205168401, 3954734.375, 3959435.172881459, 3974938.862406892, 3983621.875, 3989036.3856395134, 3993005.9648182476, 4005656.6685793963, 4005759.375, 4013846.875, 4027940.40606296, 4029918.75, 4030359.375, 4031487.1608243803, 4042084.617773994, 4042861.685924733, 4043139.0625, 4081446.22766501, 4082948.323633186, 4083334.2335765827, 4086421.875, 4086867.1875, 4086903.125, 4097223.1146438057, 4121177.0885248976, 4126458.9936031853, 4129417.1875, 4129764.1509730136, 4130283.8061347776, 4130970.3693000143, 4131110.424689006, 4137151.426779598, 4145517.494109853, 4147426.5625, 4147540.2098307945, 4148082.8125, 4159248.3457476017, 4172815.625, 4175025.9948629453, 4208882.8125, 4211664.0625, 4211878.517122831, 4212296.875, 4212332.431622496, 4212584.96720978, 4212752.792624778, 4213354.097481845, 4213922.576968442, 4213974.775873005, 4215792.611801541, 4216092.342603866, 4216320.3125, 4216419.358027579, 4216432.011465122, 4216644.156504843, 4217092.1875, 4217368.820895984, 4218950.0, 4218979.6875, 4219070.3125, 4219355.1546593895, 4219364.306459618, 4220038.862229385, 4220857.64040585, 4221614.036639279, 4221630.965282887, 4221857.663341908, 4221955.224060915, 4222241.553285815, 4222383.229780037, 4222408.371643024, 4222418.75, 4222443.755370345, 4222635.2954032505, 4222711.261697753, 4222753.418699816, 4222837.5, 4222883.430079069, 4223131.180480093, 4223501.5625, 4223507.816124243, 4223626.5625, 4223970.3125, 4223985.9375, 4223995.626363357, 4224126.5625, 4224837.347283961, 4225646.323779798, 4228012.5, 4228047.124993853, 4229081.770765102, 4230332.392898377, 4269206.219415466, 4300723.092372646, 4315023.4375, 4315035.9375, 4322021.518788098, 4322993.640271014, 4337340.265296765, 4369202.072760183, 4388375.0, 4389482.035510706, 4391397.306408615, 4392250.0, 4439862.352998463, 4450288.082751575, 4471013.026191478, 4488683.578953626, 4547444.311503255, 4555747.800276234, 4604910.234245067, 5838170.346426704, 6664469.671395252, 6673624.37973214, 6674373.4375, 6674469.592419618, 6675371.815246709, 6675515.625, 6675607.065929024, 6677233.371788218, 6677698.134394671, 6677939.089073412, 6679417.1875, 6681088.377975267, 6681562.1168361185, 6684751.5625, 6712104.6875, 6712807.099832755, 6712851.439669868, 6715405.2940043295, 6719029.253486989, 6721725.0, 6722277.4758965485, 6730577.680950084, 6734988.95631594, 6735379.6875, 6737647.058006957, 6747107.807620529, 6766142.38717459, 6769515.298157532, 6791132.928277712, 6807080.110583331, 6807158.465030201, 6807332.744962261, 6809149.525135815, 6809282.989839627, 6809329.127528777, 6809615.030330951, 6809935.067149805, 6810407.344082658, 6810446.669669884, 6810614.076126305, 6811379.2503074, 6811874.088440449, 6812162.5, 6812528.8240683675, 6813104.621555598, 6813284.375, 6813401.28286024, 6813685.476899427, 6813737.5, 6813775.638209089, 6814125.114694999, 6814417.1875, 6814417.1875, 6814481.933539864, 6814673.654234015, 6814768.75, 6814934.375, 6815220.3125, 6815263.804640165, 6815523.4375, 6815593.75, 6815687.918494111, 6815723.152299358, 6815765.625, 6816093.915158177, 6816489.0625, 6816579.996759647, 6817050.346636639, 6817596.800257722, 6818181.892480186, 6819648.419832377, 6820029.6875, 6820254.349352901, 6820452.206288306, 6821196.712547468, 6821234.375, 6821539.0625, 6821806.25, 6821893.411982845, 6824047.612386712, 6827221.2750366675, 6831304.725340625, 6831762.327546999, 6832265.325759388, 6832371.875, 6832852.85900236, 6833206.572100774, 6833909.393143231, 6835329.001130211, 6835632.4411005, 6836132.34914406, 6836802.633629553, 6837480.415134396, 6837585.9375, 6837593.75, 6838002.339208078, 6838018.75, 6838739.896091026, 6838839.6402660785, 6838974.891498573, 6839128.707554009, 6839407.078091596, 6839541.496342522, 6839601.536715748, 6840163.696669928, 6841026.766561407, 6841258.366534225, 6841710.9375, 6841967.157073874, 6842170.06115718, 6842335.756660729, 6843294.459430082, 6843365.625, 6843621.971814778, 6844624.394521607, 6845666.635190447, 6846656.25, 6849123.4375, 6849818.75, 6849825.0, 6852433.977580374, 6852545.910149272, 6860665.625, 6861021.228899087, 6861062.5, 6861101.068800379, 6861923.864547429, 6862248.672687334, 6862378.267494364, 6862385.795778095, 6862414.536232479, 6862679.6875, 6863041.332170981, 6863090.349001241, 6863300.0, 6864110.325672232, 6864367.611099386, 6864422.572802256, 6864597.266025156, 6864630.884648309, 6864768.742553439, 6864864.372988594, 6864969.49038844, 6865073.4375, 6865639.024070775, 6866620.3125, 6867968.330515669, 6868539.0625, 6868988.782181617, 6869234.375, 6869587.5, 6869735.9375, 6869743.75, 6869756.113048093, 6870151.5625, 6870850.127753531, 6870872.961566914, 6871243.1277732095, 6871341.591054862, 6871421.771806562, 6871531.879393107, 6871792.217957248, 6871832.830272142, 6871879.6875, 6872023.4375, 6872026.802049199, 6872116.775501439, 6872186.404638562, 6872187.5, 6872239.75430812, 6872347.703493404, 6872354.6875, 6872396.473428296, 6872425.632515085, 6872510.790637822, 6872568.229253587, 6872715.158545669, 6872876.5625, 6872987.904345017, 6873029.368970205, 6873063.994487795, 6873387.720323487, 6873471.875, 6873518.75, 6873558.769811427, 6873743.63169531, 6873816.497183672, 6875003.618326863, 6875103.424974396, 6875438.6868009865, 6875707.006874755, 6876032.8125, 6876347.402045146, 6876951.8952489775, 6955159.929593032, 6956540.951067538, 6958544.285876943, 6959582.960287145, 6960092.756804137, 6967880.976229595, 6969776.5625, 6980330.250754874, 6981897.8474557, 6981920.188635055, 6982162.1338705905, 6983607.341035466, 6985375.0, 6986406.25, 6987732.894886448, 6988960.9375, 6995931.21295, 7000026.948064866, 7000399.709154996, 7000801.512977918, 7000891.07894285, 7001068.493639052, 7001729.60990964, 7001940.547071367, 7002221.3905227715, 7002835.612745619, 7005225.633907164, 7006018.75, 7006195.0245979605, 7010587.315673522, 7012906.25, 7013271.875, 7013328.125, 7014290.324903287, 7015178.996825946, 7015611.744693033, 7015744.30655403, 7015946.875, 7017934.375, 7019060.1109214155, 7019681.308137012, 7021125.338637283, 7021289.004681342, 7021402.5975993145, 7023051.965055131, 7025090.757195399, 7025985.394412525, 7026630.286851952, 7026655.252885405, 7026800.0, 7027056.25, 7027323.4375, 7027589.026371628, 7027605.855770202, 7027756.231711543, 7028145.3125, 7028520.3125, 7029275.244038438, 7029317.959472255, 7038428.125, 7038824.3976310445, 7040139.043695443, 7040937.762463946, 7040947.285410799, 7041002.3349297615, 7041234.246358892, 7041621.875, 7042581.236968214, 7043366.606164845, 7043503.125, 7044486.385325956, 7044608.679773877, 7046349.659934467, 7047571.241205219, 7047577.021591282, 7047759.609784585, 7047784.375, 7048264.109986615, 7048732.259055667, 7049519.942423571, 7049840.942381659, 7050837.375593321, 7052693.451977979, 7052953.0102142235, 7053014.983659156, 7055139.0625, 7057321.220038267, 7057919.529256673, 7058015.625, 7058035.439553786, 7058256.25, 7058289.4144970635, 7058801.356794083, 7058806.25, 7059145.08244073, 7059359.375, 7059391.098272028, 7059464.625663896, 7059626.035679385, 7059680.6463544285, 7059686.835865429, 7059933.7633232325, 7060006.663690939, 7060221.598695969, 7060237.5, 7060306.791129453, 7060311.955380988, 7061065.64709733, 7061082.71766751, 7061084.771541226, 7061274.717169984, 7061285.9375, 7062546.065001165, 7062633.691747562, 7062805.493624284, 7063232.8125, 7063295.772543328, 7063896.875, 7064221.491913334, 7065062.767560912, 7065857.966491539, 7066183.398821668, 7066234.856829847, 7066354.6875, 7066398.772910716, 7066918.967441408, 7068024.8250331115, 7070410.509737977, 7070845.005957074, 7071305.610858987, 7074303.884697268, 7074935.942352089, 7075337.5, 7084627.929896785, 7085365.021115619, 7085486.957504288, 7087867.602405086, 7094173.154938409, 7099363.5461273035, 7100556.069553031, 7101293.300237948, 7101643.649080071, 7103005.442214117, 7103121.791678973, 7114647.135964695, 7116104.705248499, 7119649.121413021, 7120374.260225606, 7120426.676263846, 7121531.25, 7121787.5, 7122430.983331606, 7123231.105228414, 7123548.3351189485, 7125302.1965208, 7126798.4375, 7128037.859635383, 7128116.210279279, 7128601.359747138, 7129472.983611875, 7129818.495960044, 7136215.625, 7137073.381880741, 7137518.75, 7137557.8125, 7137787.68688227, 7137948.4375, 7138000.0, 7138127.908532545, 7138348.4375, 7138352.954874225, 7138360.123093272, 7138363.44794268, 7138451.3872416895, 7138482.494258045, 7138572.248631355, 7138614.485959928, 7138663.938170653, 7139080.98077078, 7139551.9245844465, 7139990.060017974, 7140453.734845061, 7141047.876096387, 7141104.6875, 7141489.0625, 7141523.4375, 7141565.781753008, 7142697.174235869, 7143244.554393755, 7143837.5, 7144602.969374645, 7144936.548982416, 7144964.946799697, 7145249.769478307, 7145967.387180348, 7146482.8125, 7146537.871338729, 7147460.025597598, 7148173.39116678, 7148212.529184731, 7148333.317329358, 7148490.42710443, 7148492.379000526, 7149185.1826547105, 7149459.336443135, 7149634.2751829345, 7149839.0625, 7151519.994169064, 7151810.566452769, 7151908.820070393, 7152288.22999904, 7152291.067639481, 7152443.137599209, 7152591.509971789, 7152615.537371592, 7153055.064076365, 7153220.835749112, 7153253.549753636, 7153351.006223113, 7153514.257993843, 7153532.792844999, 7153548.548593929, 7153586.437477543, 7153588.069972724, 7153809.758104054, 7153914.984884811, 7153925.676903885, 7154004.448185203, 7154018.340337358, 7154243.692264437, 7154268.736676355, 7154284.970195815, 7154375.684680711, 7154503.3692132635, 7154646.268421661, 7154734.375, 7154792.1875, 7154847.177435612, 7155130.628721817, 7155153.884308575, 7155215.625, 7155239.0625, 7155498.4375, 7155581.25, 7155809.345071436, 7155837.394960025, 7155867.940910556, 7156209.375, 7156291.474749136, 7156459.594390821, 7156589.0625, 7156651.5625, 7157277.541544063, 7157384.4766363865, 7157446.847710464, 7157477.940754681, 7157492.378351181, 7157785.9375, 7158964.0625, 7160307.4934881525, 7160685.1067841565, 7161295.170713937, 7161303.39457037, 7162581.25, 7163534.206571377, 7163536.69048649, 7168076.430786734, 7168635.9375, 7168656.103828932, 7171244.911200659, 7171424.078884428, 7171430.99236631, 7171928.806429673, 7175416.680020172, 7176357.949302791, 7176697.858535533, 7177026.5625, 7177790.017831193, 7178287.5027938485, 7179405.117251005, 7180817.1875, 7180942.1875, 7181907.371513241, 7182406.637000369, 7183626.5625, 7183812.5, 7184715.625, 7184978.125, 7186450.528949218, 7186503.125, 7186576.080491688, 7186696.875, 7187748.401656837, 7188129.6875, 7188141.791083101, 7188171.476786261, 7188184.744543864, 7188202.657792523, 7189241.80429325, 7189321.402185022, 7189869.919448059, 7189951.3869201215, 7190598.262304251, 7190674.346497744, 7190890.254919737, 7191523.4375, 7191954.385674688, 7191955.029546361, 7191984.196496406, 7192078.546173877, 7192235.9375, 7192281.25, 7192717.946166452, 7193050.0, 7193063.562613324, 7193168.75, 7193250.234096994, 7193733.144545021, 7193944.995080243, 7194129.926365671, 7194670.140797058, 7194894.224231408, 7194923.4375, 7195010.860088623, 7195162.811491093, 7195537.332718432, 7195671.820556856, 7195793.3517362885, 7196484.766026184, 7196604.887471737, 7196701.5625, 7196737.439395034, 7196753.870047313, 7196795.694052966, 7196815.900335887, 7196844.367624342, 7196875.0, 7196877.978743051, 7197207.456860278, 7197365.243203332, 7197628.817656118, 7197704.527271182, 7197788.558674769, 7197825.565909847, 7197854.93471168, 7198278.033375197, 7198644.355013091, 7198975.0, 7198987.324915539, 7199561.80919476, 7199776.049553537, 7199784.144216787, 7199990.3760136245, 7200044.727829213, 7200055.391430467, 7200064.82281816, 7200093.925831023, 7200177.461561494, 7200181.554213863, 7200228.913369192, 7200235.8031099485, 7200292.9923226815, 7200303.471223651, 7200317.016671902, 7200476.504876315, 7200603.607764854, 7200627.900032154, 7200653.379011468, 7200673.718940083, 7200895.3538364945, 7200900.942181284, 7200904.392063005, 7200948.4375, 7200956.015754294, 7200964.619185597, 7201032.405534001, 7201054.914381703, 7201066.782701326, 7201233.808539006, 7201252.969027967, 7201362.969140563, 7201428.125, 7201520.877838445, 7201569.683898104, 7201589.0625, 7201643.517869213, 7201866.073893703, 7201886.054654884, 7202235.814237808, 7202617.1875, 7202825.0, 7202998.1324212765, 7203030.232264837, 7203134.351185375, 7203161.642266456, 7203214.0625, 7203232.3103303695, 7203257.375184845, 7203382.8125, 7203483.437918418, 7203485.9375, 7203491.840072558, 7203528.08289367, 7203529.327840417, 7203533.509811781, 7203571.875, 7203575.239447139, 7203609.3534637075, 7203615.058738251, 7203638.524420374, 7203659.188891534, 7203670.82242466, 7203689.468048825, 7203767.569211937, 7203787.5, 7203806.841035545, 7203820.636826314, 7203856.25, 7203907.680839849, 7203915.573512155, 7203918.663997204, 7203934.1455752365, 7203936.449657866, 7203985.201652611, 7204007.728415294, 7204133.480811292, 7204151.739189744, 7204162.47762895, 7204201.5625, 7204219.951473278, 7204221.424151471, 7204225.754275998, 7204227.262967397, 7204231.212024723, 7204232.8125, 7204242.757447832, 7204271.875, 7204290.405488398, 7204301.2638671845, 7204311.198778424, 7204339.760218038, 7204341.398845707, 7204349.2974474635, 7204399.901573088, 7204407.410579273, 7204474.068287564, 7204482.240700657, 7204482.707496171, 7204484.575410888, 7204495.271714238, 7204501.5625, 7204504.6875, 7204507.675491373, 7204536.692662865, 7204554.6875, 7204559.403171463, 7204581.1659543635, 7204581.600873229, 7204616.4504145775, 7204625.0, 7204634.375, 7204665.36948418, 7204669.474080534, 7204681.25, 7204689.0625, 7204694.019842333, 7204704.308740961, 7204710.967124067, 7204723.4375, 7204793.102294053, 7204815.152016118, 7204857.8125, 7204898.599348112, 7204916.416634669, 7204920.966642175, 7204923.382908371, 7204956.795720774, 7204971.875, 7204986.999290668, 7204990.625, 7205026.083591414, 7205036.004605206, 7205040.504337913, 7205040.625, 7205078.125, 7205082.023307613, 7205084.375, 7205089.964796628, 7205093.187133495, 7205114.678389981, 7205128.086970392, 7205139.0625, 7205187.5, 7205199.535918161, 7205207.8125, 7205212.963401533, 7205227.577665929, 7205243.104568542, 7205278.456236859, 7205289.935856992, 7205306.557283705, 7205320.877802857, 7205341.597229625, 7205347.362925557, 7205356.691794808, 7205377.270403382, 7205386.290487978, 7205419.801473649, 7205435.537998939, 7205476.889126513, 7205491.927768065, 7205540.008801251, 7205552.015833061, 7205554.7020759955, 7205557.04069941, 7205559.375, 7205603.125, 7205603.125, 7205615.061415456, 7205618.75, 7205652.148017882, 7205667.508869151, 7205668.174880857, 7205681.778330806, 7205709.375, 7205713.471422162, 7205729.580374855, 7205746.875, 7205747.4243598385, 7205750.932626436, 7205761.7882671505, 7205771.875, 7205792.1875, 7205876.359489349, 7205878.027047715, 7205914.009974977, 7205942.370278429, 7205944.914091314, 7206025.28779536, 7206027.923441137, 7206042.907013861, 7206051.656873767, 7206058.534107055, 7206060.699130706, 7206069.629286584, 7206168.75, 7206198.173708886, 7206200.412209312, 7206219.783382831, 7206222.590440229, 7206223.126620452, 7206223.937521079, 7206227.990981811, 7206240.233902335, 7206244.77222116, 7206265.1595424935, 7206269.988696666, 7206275.637430634, 7206328.364156136, 7206345.248665964, 7206360.402077379, 7206382.718593505, 7206383.93200764, 7206384.483282952, 7206415.529927277, 7206435.386243214, 7206444.139700015, 7206445.3125, 7206462.5, 7206488.672302704, 7206526.763797683, 7206545.272798857, 7206548.4375, 7206558.8848834075, 7206602.678234694, 7206612.721365374, 7206628.528383762, 7206667.980768, 7206679.742982802, 7206693.416768147, 7206719.194704471, 7206756.25, 7206791.992490656, 7206794.502958659, 7206807.312743122, 7206836.829122044, 7206837.423406996, 7206887.5, 7206902.446434027, 7206910.50612092, 7206911.891577189, 7206980.576396888, 7206983.768312182, 7206985.556643358, 7206991.86021386, 7206993.708045571, 7207030.7659502905, 7207062.433699065, 7207078.233235489, 7207089.197225063, 7207089.692484002, 7207100.195862187, 7207135.5933445385, 7207152.859943575, 7207153.125, 7207167.1875, 7207180.316223647, 7207220.992291198, 7207250.716721162, 7207261.412372671, 7207281.03009249, 7207281.182495899, 7207297.217991206, 7207336.188919513, 7207357.312479697, 7207382.8125, 7207394.418378837, 7207409.10913244, 7207420.149788525, 7207422.70192504, 7207425.869121709, 7207429.0343932845, 7207448.82113747, 7207451.705325937, 7207458.4252787065, 7207479.6875, 7207530.401367843, 7207543.987767271, 7207550.896341799, 7207554.5863264995, 7207564.137227416, 7207574.472784976, 7207604.6875, 7207611.289078035, 7207629.379323482, 7207663.337127353, 7207664.848715388, 7207666.896010568, 7207673.435236307, 7207676.144961951, 7207692.772325263, 7207714.260839988, 7207717.1875, 7207743.12278554, 7207744.800987717, 7207750.676573542, 7207806.25, 7207845.3125, 7207874.342757235, 7207893.516543713, 7207894.063053475, 7207921.248135388, 7207930.372744804, 7207950.0, 7207962.497566157, 7207978.67593432, 7207994.937097443, 7207998.070339173, 7208011.826391496, 7208012.588468682, 7208018.4488208685, 7208028.74679351, 7208036.143154983, ...], [19.707466516199226, 74.642750051961, 47.4653179115744, 25.591674780186707, 6.85301327038651, 74.59421565066737, 9.405085073238345, 8.005451432925172, 50.50557134202731, 49.83284779211903, 31.030465006801386, 53.33556276572247, 30.643149485956723, 45.15641526866657, 15.077720621253334, 80.41506778682535, 34.206202137876666, 31.116611818082667, 12.342832081917692, 45.80690458496786, 13.670583946554496, 31.927859358547593, 36.31210090130678, 10.17053358091058, 52.65686609453701, 8.920400716592152, 75.00063235754531, 78.96589523233057, 119.08574201069337, 11.638527753558229, 8.825777166651681, 50.684668597771946, 63.58558231971021, 14.64777645493696, 25.11670311460719, 75.30619570875409, 16.97753680105245, 38.99058547771706, 27.86826640600367, 57.38607055453697, 64.42542952339983, 60.841295713751855, 64.65443119146339, 50.23772027576454, 23.262901686441893, 11.529636330866246, 14.755028613189054, 75.87347651802729, 20.13932725277626, 96.27717352845832, 14.42854277156811, 52.50366968039738, 73.92007679428603, 70.8451190565814, 24.787916574696986, 109.99186704944368, 85.27182688035418, 58.6327556382305, 13.432363383402157, 8.892646631001423, 15.162516144878175, 13.29109614625005, 69.35519605131444, 16.254893534239063, 68.07408387804642, 13.56454135176911, 73.33150500213682, 14.602956451673014, 87.04037510406036, 20.84391480563514, 55.06397557790772, 61.95787640913589, 33.62366491669459, 68.80710946098894, 27.36057265753822, 27.188906641294253, 30.16160273438903, 15.588101714632899, 10.919019261032064, 7.063755998029801, 16.849746506362838, 15.567593811933932, 40.836920592943926, 12.23273144160682, 31.73010402494628, 24.57224190842991, 29.344260480345625, 33.497581508471455, 50.56179218644698, 104.74418021932499, 70.79551699118642, 22.823365810842752, 15.960735131227864, 22.415077809930175, 25.534690315626914, 28.023090638927332, 8.141542224689198, 6.734089232125582, 7.8095589490960995, 5.667549766224173, 27.727914297295907, 12.236788683328177, 73.73646715372129, 14.962018244864765, 10.253291484166889, 30.94364940280102, 17.12800711255509, 65.33526137024687, 12.252966438295145, 14.682991367214138, 67.5585204119282, 40.435705143777355, 47.367125091062235, 93.8230803625215, 58.458780317975524, 11.656493660940315, 33.781868806026495, 39.8154649608916, 10.363115316118861, 38.72483217065607, 7.18875551979689, 7.2654214390973175, 66.21512739783822, 29.278174755746726, 13.771209930889626, 30.718269854305593, 51.76299729381062, 9.047335065657254, 5.527778641505899, 13.727442487378259, 9.803647913916084, 50.82644111191706, 83.6690883035573, 16.887574873127576, 66.09900992261743, 67.75289593089535, 17.751145725688392, 17.41485269965395, 141.87607554280075, 29.389272711024063, 20.225368291905976, 19.679817166918887, 5.292136381298108, 12.955521656318021, 13.008302931824097, 29.96043402286716, 5.575412084326126, 64.67582765880027, 53.9371141316927, 39.2877005507617, 17.609561177049475, 28.945554574174842, 11.169498352949311, 106.4249475951255, 84.1936488607324, 10.577333074794092, 64.62315381071514, 71.42118930633039, 8.793674473137532, 14.49313240648451, 110.62365855669117, 65.24243112843418, 54.158758389591625, 6.188530183600766, 8.982184234838812, 35.771440662194664, 50.15216581810227, 11.426336780802869, 85.63759815352465, 40.42581973519082, 44.4282269900854, 15.401959646787395, 11.988012078378974, 9.951668947445128, 8.25118226028644, 76.28248913166209, 12.97051754531731, 47.13134966681825, 31.585982079883603, 9.99432775999348, 16.706572031993794, 10.821245369148151, 84.83022737088504, 13.501416378308628, 6.5942143012677645, 59.14766602789065, 5.752741475337374, 73.89846010629861, 38.81581965212487, 71.96295567376688, 24.859433027730354, 59.05456133320809, 37.523551062232414, 15.397468540027731, 30.707938670001276, 66.48474368106133, 6.599860370355262, 15.837382157084507, 74.24669596608722, 41.83344709376439, 80.68790425590807, 5.690541322840477, 96.94974531347472, 55.171776709254125, 6.850034215375426, 89.76044357449608, 69.60529705743095, 7.66408518069184, 78.58553571266374, 31.163344162173118, 90.01558289618416, 12.956172475276706, 12.306210781136082, 22.213421451340164, 135.45381599061315, 6.225400761805889, 8.659131777107374, 69.00660729734236, 100.41117327688715, 155.81089396875421, 42.18522541735817, 9.061059514471363, 18.765522714955527, 20.550687836122275, 31.251544609069615, 67.75731060321571, 82.50508721877408, 37.01142730406999, 30.521737859576987, 16.32993735374313, 17.11197336437984, 14.207874062851673, 22.879634021338816, 21.866602174042423, 13.349742648860044, 22.837477972446223, 29.477856601876475, 41.63290358296407, 5.31569768917947, 43.78272665342275, 12.73998910760543, 7.826486144814315, 17.883367812777575, 12.179267637252824, 68.37750059099271, 8.808204263760326, 85.27400477530006, 14.117854214347068, 5.297432464413666, 6.87939652053338, 50.112058403076595, 65.56630972768804, 55.78050697334039, 14.294299850205645, 23.80892886875792, 35.58405536820394, 7.638633328865644, 17.70581451254528, 8.904323978914439, 119.806288137168, 75.19914040105047, 38.73488026177325, 39.6535931169675, 54.4140728944664, 6.888991362125482, 38.27969444574009, 29.244765861996665, 69.3699158859536, 21.55618094962267, 57.904575304818124, 9.538512885222156, 29.713985107117153, 7.552771130555071, 26.31889516445969, 74.9745761817673, 23.502887404390435, 63.48642832220723, 73.3194625702248, 13.029866672675308, 14.76334506328986, 18.49152489100359, 53.87655767535115, 13.71059066768318, 48.879185663575306, 8.457889542345702, 12.522694077301288, 60.79643839094281, 27.786498157191293, 37.134038778224415, 40.20035493729476, 53.7784716469637, 7.504903105431046, 64.52982278633884, 48.785908855258185, 96.91007388118273, 29.542853457948787, 80.73588804106551, 65.01543174531704, 20.91527021668113, 21.73658774954425, 27.842876436560037, 66.45400461747512, 26.638618987281514, 27.589738465282466, 11.175649514413207, 30.228906323010072, 69.70660816513421, 66.32598550787168, 11.523985927729496, 10.539502409274592, 17.081271100615957, 30.394564839545374, 12.413828507116671, 73.47867583959115, 57.80818844467791, 13.6039514771337, 12.284817363684855, 63.916959731033764, 10.400861218830988, 21.83439297213855, 97.5997101801514, 84.6647003169166, 10.663831649048591, 21.778788418091576, 100.08156944195358, 47.163702214543, 95.77627758979419, 125.21971962996562, 14.508978249810452, 20.19266747587455, 31.811536663816383, 31.457487947228323, 6.690749582089322, 199.23283548221082, 60.80544669657785, 88.90663462721481, 108.97074931049173, 6.147735444970154, 16.3493060670071, 12.083157714360155, 31.524289124108208, 23.891953879164372, 10.725151049920173, 85.5335802833876, 5.142725278065199, 20.63954803475251, 14.489515940888003, 84.895821027002, 41.69216002611839, 32.57510105973904, 44.33835574685206, 102.39528081036511, 30.738694012292015, 9.30027056597899, 11.78905779892131, 29.122689960986936, 32.45936011556161, 5.140323779976012, 14.046816164739214, 28.135094873105082, 27.072782922714676, 15.964605069212656, 48.213091213092675, 20.79013604272777, 43.01905622214533, 10.705663024464842, 5.800466419439422, 50.75886502305269, 86.45061314110836, 68.32142707917721, 23.749506360859666, 43.687936275444635, 19.275472092334383, 8.604586088528118, 75.9730079636901, 155.01224908328638, 27.871340726259138, 18.17499019616114, 29.077804404067436, 11.038519368204811, 27.746067847649194, 5.4140895960793, 12.262292664623116, 13.20956857225721, 26.741089287251043, 13.160692525367448, 272.8993968019925, 57.36858796059653, 71.23314322446677, 48.571589093662666, 5.682119276237798, 14.872257577246629, 71.83290721633105, 81.21983385316729, 15.961096093358542, 7.908540226373144, 43.9176217486094, 20.52928268036619, 7.596450526275968, 16.046095468303367, 7.758742027932244, 5.757746605470833, 26.21775792279509, 41.44979043609027, 21.379594812772744, 20.718376291005562, 61.30522197048475, 11.908125135617412, 6.94995153600609, 29.888863026732608, 60.72630785996648, 6.32699763973714, 7.690421486377988, 46.36492314309449, 15.125648848971894, 20.976032121816957, 55.02100093183105, 66.18301712806074, 10.938664016223047, 23.776040532935948, 58.15919340489019, 90.64460546643137, 82.76779605792267, 126.63219690756475, 29.39946140679165, 28.798393142192314, 21.513612343792943, 95.42787666244672, 11.726403816469864, 25.034886934569016, 30.953102970195157, 32.46860808197921, 43.092262830033405, 35.88675691716506, 20.288423050340963, 64.89485462026457, 10.299267242196157, 28.569563546804943, 106.17707859603341, 16.793692561935167, 36.48739683194807, 105.33385961752658, 17.71747386804786, 77.83623866603475, 9.350157868388063, 129.61397742959267, 16.704147814034506, 23.9725704149212, 36.26936296494772, 18.87296192948793, 65.50009910129687, 37.58793344441017, 54.20492610374497, 51.32391998557904, 46.728724762858036, 13.65807032440138, 159.5114164597187, 189.87555817608384, 9.881799380428477, 5.850513008076435, 42.25117275612134, 16.395174606592953, 70.51180146393364, 36.336926196482594, 22.245306566653362, 23.667523093296232, 84.16909473856977, 12.566783357764846, 11.13529940886818, 33.40580932868269, 20.191547782458795, 20.5158274696522, 285.3729237112213, 16.800081231673655, 23.97607859358331, 6.664617003335775, 32.96407078062653, 19.332886266858672, 10.973543270302846, 41.92665057680671, 26.978704068259102, 101.79986603588952, 54.845316063145034, 215.40110022075038, 19.39388202566632, 19.75279335875864, 37.61083003376911, 63.81620845087106, 7.053073691260753, 14.416999037170664, 33.526017936382296, 92.8987728218357, 73.85326048522327, 11.740567907453713, 7.284299784665309, 47.89699539643583, 13.454135038868356, 42.886426473490616, 44.11230456448232, 19.704396989695386, 57.355716014926536, 45.510617168342264, 26.45750063223248, 69.59656871062587, 51.311853477291145, 33.768021460902155, 47.90718621341632, 25.564709062763292, 30.483554833160667, 20.421693827732486, 25.486612754857944, 9.076067088914638, 11.76666267396823, 8.52396741271952, 26.287945851750056, 14.005868412882439, 11.745120820629626, 120.19160914588556, 12.2365738351139, 13.160964189130885, 124.09363632461708, 41.980520893301325, 31.697932317398266, 11.381892243697125, 14.01791996754816, 19.254330050209393, 39.62718435503754, 52.162956703188236, 126.83986986342609, 88.44822565337222, 129.92832524881575, 47.518167412651195, 70.61501838499368, 16.574868137746535, 76.84415244943906, 9.292530710063904, 5.3995909100817565, 17.292184125064978, 149.94056543716553, 11.440835585463256, 19.362351642483418, 14.79655738425085, 18.402285504498618, 38.27762558137589, 23.519379746514012, 67.30144226678439, 63.46909611365105, 24.42216486367826, 6.855215133572062, 26.10000503927801, 6.6353835856972445, 6.079033792798462, 16.601512352601684, 63.50900272143555, 14.949662723264094, 57.20612212957508, 15.74295076229587, 28.141677932296176, 78.4636867878202, 17.264643334071096, 43.03679461437686, 8.500121061397795, 5.885533823447252, 9.977835834885685, 24.558148914925674, 8.081203949888542, 95.87740012687385, 63.417114410253326, 9.89106315349173, 71.17288849144902, 6.526067573709962, 7.989899743673398, 172.32173930773843, 159.7202398148763, 27.469005911428372, 33.147613579887086, 18.921875913807224, 113.68002628536287, 71.19022630403055, 147.30233679604595, 35.72482453661889, 27.945995790644805, 105.14531642265308, 12.5523763947447, 57.385711421121364, 6.945900982340127, 86.27352311135392, 49.935484208397014, 46.37404376463806, 66.46705441986646, 48.00110013669652, 37.800602535098434, 25.35124212957869, 9.498166275243788, 72.834918949968, 36.703835307851634, 9.075481027188852, 120.51840484596316, 10.913089651872301, 26.874956841662236, 61.16184854597179, 7.0778697252058285, 6.611982863350662, 8.218132018421247, 61.611555862062744, 5.39291529709509, 22.537635877701906, 8.657610011666213, 31.87394712776299, 18.381214676448437, 40.77134303063578, 26.895723232610962, 28.792469337367965, 87.3802143926514, 20.48674220925616, 14.952168966686449, 16.878731581959073, 85.5755250804118, 42.1576195776967, 5.5120541099227145, 8.502411549041822, 57.53966036581103, 48.57151404117503, 45.82849618452541, 49.51159793491997, 36.46157535256512, 32.77227034032556, 21.674474278277007, 40.57177635742895, 27.834791808302644, 47.15102101344242, 58.49701122381521, 111.98680834434026, 31.199271130384826, 5.442064538455223, 5.234545223376059, 7.002472628829827, 73.43929336552537, 6.728952447425046, 21.435670945561114, 7.382824218566932, 77.21878582940491, 81.43489048315443, 77.6129564908869, 14.309604802146787, 10.85970471634171, 16.833171244498867, 29.691222720104733, 29.440847585989633, 18.917247941625007, 91.36911821366668, 38.12705029313034, 34.889210557484, 8.414376807699153, 70.4511188441499, 23.530749773559634, 15.937454805604016, 66.62313604022648, 45.816809475718145, 47.3197340632475, 124.71979612194667, 16.278438547945708, 25.608235186281263, 27.41023830475028, 22.571781332338148, 16.675624743623633, 27.518635439848737, 40.09859650392159, 27.380383468099666, 18.36681926998866, 8.499209939857097, 6.117207510996892, 37.300454716974954, 37.50319513546114, 10.906542596737676, 85.48852908272977, 52.77924763633309, 8.690301386560192, 59.31516877124138, 40.544270299817455, 8.610370087756412, 11.537426472299957, 26.835344506139272, 94.60554188396111, 88.77481819864434, 48.627387825437886, 19.779792336968313, 33.7732699505698, 114.5648424694308, 93.84232130004861, 8.881553931514352, 43.91762758602187, 6.925424476050679, 15.656903903918401, 61.47623534882722, 28.863604955243375, 19.55934162748683, 24.25719309635833, 58.954394582568725, 52.79406284048406, 110.97185445321705, 42.41264627559368, 7.254414414685284, 12.822136241360823, 15.282059232448947, 51.782171861119195, 20.912119420130097, 8.856732620981942, 23.809203244417823, 35.88989000131961, 24.62864212434554, 197.09229191435563, 7.01842990356969, 11.5018759220606, 156.9134357033543, 29.682347428028415, 9.202912544746827, 27.69066756180308, 39.52159252500229, 79.73616379933034, 27.871078466469214, 130.13849652740902, 14.124867115261258, 45.21462415911469, 8.349517922903576, 26.305386835418222, 40.50807611447741, 164.30038898881406, 13.893592789888423, 191.4434823109578, 28.062059450756458, 6.003224272824868, 37.602424689216924, 21.47148428713188, 27.060525371292318, 76.98096399232305, 75.35671588108153, 39.84910804437369, 29.116362967661786, 59.45130964136332, 13.727572954855866, 18.488195146305937, 53.12312221846728, 15.940107511255913, 86.24755482877214, 20.85662539290175, 53.59720450173103, 5.9233603051424435, 147.4306069523871, 26.632980445272914, 85.79537325224405, 77.32936619853805, 17.801857747372146, 9.6215700873717, 38.86146797173665, 82.3525088226047, 51.15582505667902, 53.546147814131444, 9.144663974472397, 7.7996113025008675, 5.268886018957456, 20.159340452586914, 19.668235010027054, 6.2897829561398915, 14.856921565579993, 33.05407058583665, 176.73493475931986, 8.977216652067508, 74.40375099045377, 91.74583116294676, 7.589560178803756, 35.489497980584744, 11.475094117208315, 78.98343772624825, 33.83493026460293, 9.091043078583528, 9.562552360724707, 72.97196244142931, 63.82061556306638, 12.698622613621987, 67.87094244772322, 22.530662136427765, 18.050640893164136, 7.4087403699560594, 14.55583877323184, 15.764673182217532, 23.892437046293274, 70.26341943368854, 81.68275905824925, 32.32879800475341, 33.167939953738255, 35.42624820862994, 15.049984144188423, 26.9661214362762, 11.724324410264305, 128.0454216358143, 31.795600049325454, 45.625640495679605, 39.100525928477964, 108.09391254762889, 45.763579599716465, 60.924590034706476, 8.43462244893424, 5.1224890872888595, 9.356578241606963, 33.83016132607916, 20.136188327004085, 13.400650867662854, 68.90686523537423, 8.374060794415183, 20.168640846418622, 5.364847799610824, 8.257917811153668, 25.398837952566137, 65.42251121649102, 10.425938561418123, 93.01236710966431, 13.38418402598002, 32.5400653977338, 14.50071765781598, 47.72654244074634, 32.453772924114126, 38.61464154603861, 91.74036190979858, 12.90770473106426, 7.4116006296556725, 9.912786625405676, 27.79394785302641, 29.173640559240283, 88.45395911169437, 21.859045487070834, 69.29980609944704, 127.73936285618855, 18.35049137814269, 182.5949599557674, 90.9495046810017, 7.952928203338228, 16.258138380172607, 37.56126479318494, 7.997291847514882, 11.986846303539304, 16.943269978604736, 24.58414195669362, 122.88117887432671, 21.794335035337188, 13.609982449407955, 32.83039814185191, 126.35892427082588, 90.97016928628165, 34.560151233129254, 11.150566710245668, 12.638574910263445, 55.51169367335877, 69.53428872179265, 61.83712341670908, 38.23010638832054, 56.68498673015979, 66.6442756534137, 28.9104138028616, 32.969455832906874, 31.257166284890594, 81.94456688170106, 65.59543782142168, 18.63694821315913, 30.460345856231214, 6.878372483495519, 85.07225693919166, 77.78743699072395, 63.201572903803324, 31.860354507634575, 22.719892020044753, 9.249929925615918, 11.046587461851463, 105.63795218839716, 47.62685023386859, 98.09196735138985, 121.39970952164892, 15.677660770493695, 83.85025257932827, 27.700858922223603, 5.521622494644732, 6.634365696153405, 51.41242888236953, 15.566498648871924, 148.07874843289238, 21.207476496302, 6.91526964538894, 8.128747546746073, 17.034010387105376, 37.72040781617585, 22.65289713213477, 21.10049203567898, 10.470564962728654, 91.91153792494569, 75.75565502360065, 15.938779781822461, 27.322418304033032, 8.91629680539598, 19.15238755639138, 114.12090997875919, 60.06665529995223, 10.982284098743055, 92.63327053419334, 9.684189239028484, 98.39427510118307, 95.27401937680662, 131.86797166280368, 13.899965110679545, 27.762818344682167, 53.947121380283555, 37.219176342720075, 33.51686856777967, 11.492290109163589, 16.739720333530336, 39.80526345861364, 15.157286641115524, 38.709170980909924, 16.95896155168978, 204.338625899933, 106.22387235269503, 12.194416721200895, 36.65706407313439, 40.923273737100416, 66.75120565816626, 31.61963373250563, 19.879355892309476, 24.98211298952708, 159.08218101686697, 6.185686294214412, 20.490995076070643, 111.93791733322918, 13.82534076540945, 6.083747164927415, 100.77166997101865, 73.88085935265133, 8.34465559020765, 37.95480280779344, 18.04552089332026, 8.392941416089336, 23.202640212123626, 88.3386989797012, 94.70034858172419, 30.98720982386401, 71.1472630848649, 5.145301339636329, 12.469292951392461, 17.12398835548486, 51.945924121174016, 14.69030982716046, 5.173427347240897, 9.55344261272493, 21.492897704405234, 83.10717322283327, 32.108540417852474, 48.62332478861524, 5.12703990553479, 27.66348457096774, 5.4327727028548045, 171.90869491488445, 16.637616847569422, 11.358540961170828, 40.23232549318722, 78.08110920246828, 20.652088134977188, 15.932447117002265, 19.981609235483415, 7.095107786693718, 15.234196126856636, 21.22584484751319, 46.53967270601993, 9.64749443253058, 23.64685683018737, 12.748461173460214, 19.11847754290579, 7.046879600966763, 6.763054723808333, 116.64358515184796, 46.62838107604865, 21.960983910718678, 31.399634753977615, 101.75475991374847, 6.409789221848145, 33.93356108689936, 74.11982178130167, 30.47660892561707, 6.022318351439966, 131.88315258869721, 35.28736500365903, 176.10892925127982, 64.7525095992926, 53.777888848465324, 70.54017459563069, 5.988864516215381, 10.587594761861832, 22.92915940449959, 19.920049997756895, 6.7812981225779545, 59.2437565450879, 8.645247892732808, 5.2086932370969965, ...])
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)