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 = 45104
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);
([5012395.3125, 5033146.028591544, 5130259.375, 5133488.02884217, 5136484.375, 5238343.75, 5238604.496309883, 5238836.322936785, 5240387.0567010185, 5295145.406392089, 5309256.216842039, 5310529.494593849, 5389970.3125, 5394234.375, 5424095.145519045, 5427211.614415525, 5429779.6875, 5431632.749208032, 5432152.324795393, 5432426.5625, 5433203.684035489, 5433703.7360707335, 5449484.375, 5449853.0153233325, 5451010.9375, 5451811.763953752, 5452325.577695874, 5453858.764444783, 5454312.372790467, 5454360.807099395, 5455078.11489657, 5455104.719642803, 5455517.1875, 5455643.336107011, 5455750.813094671, 5455760.4371487545, 5456173.7995844465, 5456190.354665424, 5456196.981225003, 5456647.2801099345, 5456683.792581864, 5456821.794841092, 5456879.442168388, 5456959.910559795, 5457067.1875, 5457335.023445296, 5457448.4375, 5457518.75, 5457940.456689328, 5458092.130525695, 5458546.714729836, 5459765.624979704, 5460963.2495936295, 5552032.897807295, 5552446.60920546, 5553302.304157837, 5555132.244154894, 5555834.375, 5556530.548161921, 5558199.663840731, 5558420.263609434, 5559855.021704339, 5561582.8125, 5561718.75, 5578616.216995207, 5580059.375, 5580902.155638084, 5582130.221993466, 5582178.907116315, 5582264.0625, 5582295.128861619, 5583639.384661883, 5583828.358403203, 5584239.943670377, 5584491.387107058, 5584613.480274651, 5584626.5625, 5584645.676422236, 5584732.888337927, 5584984.694132168, 5585153.125, 5585555.697420875, 5585972.46279002, 5586392.185022356, 5586698.796485667, 5587327.318417293, 5587333.858728035, 5587773.177393037, 5588182.856436655, 5589389.959956266, 5589538.627230948, 5590184.9586785175, 5591243.105574985, 5591257.849209854, 5591383.782674021, 5591534.314351089, 5591572.716648855, 5591713.900165352, 5591762.5, 5592434.454749327, 5592682.860048075, 5592829.6875, 5592934.375, 5593531.444249117, 5593703.029051203, 5613729.6875, 5624651.438620283, 5626054.022194585, 5630612.348340886, 5632368.75, 5633700.0, 5633820.200328682, 5635703.366713609, 5635826.623266526, 5637175.749122926, 5637621.637277187, 5638371.875, 5658920.387001997, 5677473.4375, 5697399.490977526, 5698379.6875, 5699000.987773893, 5700735.803769264, 5704175.008437559, 5714728.15982859, 5717645.924017901, 5718703.099795844, 5720010.659320591, 5721698.381826077, 5722084.102240491, 5722440.629688403, 5722443.78317804, 5722936.9597235015, 5725110.406178851, 5726992.1875, 5727043.0444477135, 5727055.83292689, 5727164.135285786, 5727184.089566237, 5729138.088038907, 5729842.760880522, 5730206.25, 5730230.141028796, 5731231.25, 5732446.205787864, 5733431.547363628, 5735363.933909703, 5736034.375, 5736772.14139086, 5736906.6023109965, 5737549.947425694, 5763648.703768974, 5765246.875, 5766756.804030859, 5767984.048354804, 5768427.634855567, 5768634.353186977, 5768943.423084001, 5769313.25854673, 5769671.681058151, 5769696.875, 5769707.63135521, 5769831.25, 5769857.515756198, 5770634.285496519, 5770694.534019737, 5771119.733211123, 5771532.8125, 5771538.725868367, 5771544.056125504, 5771914.62413077, 5772344.058453512, 5772412.914707, 5772476.888904665, 5772937.5, 5772939.0625, 5773683.233497394, 5778361.076732983, 5778371.224221113, 5781040.625, 5784182.347831349, 5784940.3059166595, 5785007.8125, 5785015.062535584, 5788628.803153968, 5796313.924080237, 5807869.977870819, 5810503.242039514, 5813074.435022369, 5818720.185972113, 5834741.536648053, 5861271.875, 5864541.4966505645, 5865366.460603805, 5868347.525129269, 5869596.875, 5869621.327171744, 5869918.951450828, 5870067.067886107, 5870190.126835564, 5870311.629490545, 5872412.582638729, 5873847.57320608, 5873883.383033322, 5873902.680944496, 5874302.728670198, 5874309.083224321, 5874734.122069032, 5875442.54678948, 5877868.320425827, 5878011.991041173, 5878579.176751025, 5880668.392238254, 5882493.75, 5884471.532495912, 5884939.0625, 5884998.793169307, 5886264.415442439, 5899522.689704669, 5906143.357276616, 5906856.597475784, 5907215.625, 5907223.31331537, 5908768.375502367, 5912022.767053092, 5914395.3125, 5915238.9925892595, 5915445.356415925, 5918943.0397523185, 5919270.3125, 5921490.222587326, 5924738.669127747, 5924817.056487256, 5926870.184130922, 5927126.341484035, 5927989.1461232705, 5928952.862466713, 5930513.712719202, 5931794.906659322, 5933432.714103802, 5933771.860855136, 5940800.357485597, 5943414.0625, 5947635.070209366, 5955852.34680176, 5956437.296797718, 5956469.739016417, 5956473.4375, 5956496.875, 5956715.625, 5959235.295517217, 5959833.8119318085, 5960957.215070861, 5962012.184574828, 5962705.468742338, 5965483.129238525, 5965706.62281709, 5965778.92923643, 5971279.027487506, 5972612.0026305625, 5978782.8125, 5991117.1875, 5998430.583741926, 5998496.15525635, 6002290.625, 6003178.125, 6003796.559671604, 6004535.284799362, 6006691.870686375, 6007009.815335586, 6008334.9671338005, 6008376.108496758, 6008564.531964717, 6008883.661564269, 6009162.26191742, 6009401.5625, 6009537.986642969, 6009696.875, 6009790.98409511, 6010004.144695865, 6010194.4855161505, 6010316.336944336, 6010339.95870115, 6010550.378160254, 6010647.512034378, 6011078.125, 6011170.3125, 6011260.8803306455, 6011353.413823842, 6011460.187458252, 6011646.993493676, 6011971.520358499, 6011975.183557402, 6011976.64952438, 6012144.097456535, 6012807.8125, 6012813.093244351, 6012860.9375, 6013017.1875, 6013093.928384851, 6013144.154901639, 6013263.09100308, 6013287.156208847, 6013343.409109726, 6013391.082794846, 6013426.984545914, 6013493.75, 6013543.5922416765, 6013556.473145271, 6013558.756928898, 6013989.114885722, 6014076.711459576, 6014155.654382121, 6014206.25, 6014291.969680347, 6014323.865988363, 6014494.9041257575, 6014847.485267957, 6015671.810335198, 6015848.217343604, 6016246.875, 6016470.878927511, 6016716.996443339, 6016718.75, 6016752.586307878, 6017573.4375, 6017704.184374748, 6017839.183213149, 6018003.896321684, 6018034.375, 6018321.719495049, 6019051.191214619, 6019855.759732596, 6021100.824738708, 6031009.741668709, 6043135.9375, 6049844.152548891, 6050041.396800617, 6050644.908327606, 6051605.69196266, 6052173.4375, 6052554.631926307, 6052723.252456873, 6053412.5, 6053640.131461223, 6055050.663854597, 6055445.8757515075, 6055747.060150129, 6055935.736232036, 6056598.4375, 6056778.125, 6058534.506347018, 6058927.9754677, 6059429.308355917, 6059521.875, 6059800.0, 6059828.910471784, 6059965.625, 6060525.245650131, 6060668.986715349, 6062748.183690575, 6063276.17805292, 6064035.9375, 6064353.657244744, 6066067.1875, 6067093.75, 6067375.170519569, 6071665.123854441, 6071670.374728514, 6072760.259229018, 6074309.626278823, 6075686.365215313, 6076062.806841588, 6092675.0, 6096332.311414598, 6098960.700826482, 6099342.448700044, 6100878.413917038, 6101087.1420606375, 6101186.932996712, 6102364.628687486, 6102715.625, 6102798.814559382, 6102811.55610974, 6103516.748668943, 6103613.264857947, 6104115.611845313, 6104560.429824325, 6104893.488135256, 6106082.281028562, 6107193.75, 6109213.290688581, 6109814.41741163, 6110031.038752015, 6111466.199487167, 6113847.397376774, 6116600.0, 6133768.33770392, 6133969.782181407, 6136607.085593294, 6137450.0, 6142161.250176178, 6143178.89230269, 6160843.664625321, 6160868.75, 6165038.878601745, 6175798.95773477, 6181619.520390406, 6184309.336509738, 6185602.778772916, 6189957.922357355, 6190756.46757519, 6191306.027061203, 6191779.375860105, 6193047.747475644, 6194726.5625, 6197000.0, 6198412.639912609, 6210572.386086433, 6211831.25, 6218959.73708179, 6218983.755351522, 6225062.894229157, 6227968.922519844, 6236701.257615634, 6239353.033267095, 6239405.233323505, 6239766.109789367, 6239930.827543441, 6240022.485901623, 6240038.85541204, 6240223.4375, 6241228.881037318, 6241869.354470935, 6242268.965082438, 6242270.623217701, 6242370.896659201, 6242423.344385714, 6242495.376851561, 6242623.014286084, 6242757.510948374, 6243757.510693563, 6244284.042347702, 6244585.382729352, 6244872.980782821, 6245085.659301331, 6245129.6875, 6245503.125, 6245670.779457092, 6246625.726689734, 6248550.315882772, 6250257.8125, 6250272.73645629, 6250279.063010439, 6250744.353782105, 6251869.128950933, 6252184.741053121, 6252204.624348449, 6253346.947146792, 6253588.551525378, 6253817.004782677, 6254612.603036855, 6255140.311981621, 6255151.5625, 6255491.85094162, 6256682.767665102, 6256731.25, 6263926.377353648, 6266599.240970818, 6266914.005698972, 6269321.320153183, 6270872.800280252, 6271149.89911862, 6274265.574083173, 6277971.875, 6308328.125, 6320451.376894433, 6320799.3104891, 6324390.625, 6329458.659687489, 6329817.602099942, 6329839.313824688, 6331422.353765362, 6331791.231312253, 6331826.24926815, 6332593.068124228, 6334965.564501292, 6350546.040584253, 6354596.875, 6357087.3712925445, 6395434.9024624815, 6396122.124039192, 6397668.5289214505, 6400692.493945663, 6401632.609341209, 6404612.938219963, 6430943.851293821, 6431134.467059119, 6431146.875, 6433413.248394461, 6433630.414077809, 6435301.60061555, 6435985.923632732, 6437511.629994466, 6438870.076885733, 6452034.894582611, 6476159.218538423, 6547923.976887004, 6552935.554837296, 6560096.875, 6568565.625, 6587000.0, 6634654.153819867, 6638576.5625, 6680957.685668215, 6681728.125, 6782642.437708215, 7151281.9861717895, 7187721.31340315, 7192082.069835026, 7257088.516247677, 7385754.492934627, 7424021.875, 7425770.938369781, 7439573.4375, 7440986.471456866, 7476369.9808610575, 7515545.907163558, 7515685.9375, 7520192.1875, 7521973.349080992, 7524088.285804473, 7551775.715723058, 7557579.419082066, 7557581.25, 7559501.395617202, 7561662.5, 7562279.853805359, 7563358.147616727, 7563535.739877906, 7575100.0, 7576774.292365911, 7577292.156907656, 7579372.137857278, 7579644.741771241, 7579673.555961325, 7580040.313105152, 7580365.621342577, 7580881.1790141, 7581000.718619373, 7581035.69134676, 7581694.344488357, 7582539.960179208, 7585929.010528097, 7586348.438805005, 7586361.045108783, 7586764.3187975185, 7587094.572012703, 7588535.662133749, 7591418.83367768, 7598687.790062255, 7616712.30823992, 7659029.6875, 7689854.6875, 7689934.375, 7690266.382143281, 7691636.765852761, 7691827.370015681, 7694101.977636675, 7702136.306547722, 7702183.289270242, 7702245.517983995, 7702433.552637649, 7702508.71577663, 7702817.494722766, 7702848.778774591, 7702938.001176574, 7702971.093706537, 7703052.5538084665, 7703061.607323036, 7703195.3125, 7703393.340152625, 7703521.313403611, 7703550.016846068, 7703668.83137173, 7703670.3125, 7703755.61744955, 7703848.502565071, 7703938.995150437, 7703956.25, 7703981.2088462645, 7704041.464162267, 7704045.3125, 7704055.451740831, 7704173.086028268, 7704245.3125, 7704385.4378085965, 7704413.073805049, 7704439.897798862, 7704479.225178985, 7704510.7310597785, 7704581.25, 7704691.68066253, 7704785.409568734, 7705109.375, 7705142.064025612, 7705195.218976232, 7705381.1698391875, 7705581.897188536, 7705947.083300167, 7706110.803430963, 7706304.6875, 7706587.852797817, 7706769.822117407, 7707032.8125, 7707041.734325722, 7708014.0625, 7708117.592709931, 7708307.8125, 7709828.125, 7709971.411899237, 7710713.424943266, 7711344.240291534, 7711911.871919258, 7716580.92665561, 7717002.645875381, 7718201.302470051, 7727608.092649232, 7778222.596726996, 7778272.792111142, 7778296.875, 7778385.5223497, 7778742.915650219, 7778744.626441119, 7778756.30970233, 7778797.155543938, 7778820.1990056, 7779201.81936777, 7779254.425213851, 7779290.305673704, 7779408.436326811, 7779552.997608913, 7779773.4375, 7779780.456028567, 7779905.914931894, 7780245.412274906, 7780394.783854738, 7780491.521359503, 7780616.814682915, 7780712.5, 7780740.625, 7780819.687585738, 7780853.125, 7780972.332384287, 7781110.793296113, 7781320.49602471, 7781393.75, 7781402.035394173, 7781415.625, 7781626.518670926, 7781697.772804812, 7781804.324364376, 7781871.875, 7781939.585597955, 7782273.4375, 7782287.36786263, 7782362.5, 7782543.144441402, 7782845.3125, 7783029.6875, 7783386.945539266, 7786059.64678095, 7786140.729269972, 7789624.715560193, 7791306.973911774, 7800985.772480078, 7807094.27715935, 7807098.4375, 7811852.05814156, 7813940.625, 7814214.0625, 7815229.212234713, 7815876.365957356, 7816206.548099119, 7816333.201261662, 7816667.093138746, 7816706.219378118, 7816974.727496688, 7817528.764623837, 7817567.755473789, 7817570.699087781, 7817630.41058611, 7817867.897686437, 7818118.115458442, 7818193.191563328, 7818391.776397618, 7818616.21002533, 7818684.470652807, 7819141.442802928, 7819230.363294713, 7819574.754698739, 7819917.1875, 7820404.6875, 7821046.143489139, 7821158.893600413, 7821532.45171272, 7822500.677262474, 7823846.3157786345, 7823948.4375, 7824077.755519907, 7824829.6875, 7825223.768178242, 7827131.760087641, 7827437.5, 7827553.080533187, 7827626.431146709, 7827642.347846819, 7827746.875, 7827809.868681488, 7827965.041368552, 7828065.689061139, 7828100.0, 7828353.866226896, 7828433.693670377, 7828654.361491196, 7829022.041268242, 7830087.920525008, 7830129.067840742, 7830781.881132179, 7830903.125, 7830940.503916692, 7831216.910092995, 7831275.300262837, 7831332.8125, 7831625.0, 7831658.464320024, 7832031.16611164, 7832485.459891197, 7832507.850400047, 7832578.119273494, 7832860.410475451, 7832897.706756739, 7833010.451794199, 7833011.840440331, 7833027.791312943, 7833146.3241359675, 7833209.443004422, 7833340.07881312, 7833470.3125, 7833473.508973791, 7833564.0625, 7833575.0, 7833593.031746533, 7833608.274804906, 7833790.455902843, 7833817.1875, 7833981.153101661, 7834075.09079223, 7834232.207498288, 7834253.453483801, 7834286.007396853, 7834289.0625, 7834349.596993975, 7834387.5, 7834429.6875, 7834483.530881228, 7834492.525152735, 7834625.375389987, 7834679.6875, 7834685.549162529, 7834729.6733502345, 7834729.6875, 7834915.594456602, 7835109.375, 7835266.780554455, 7835393.415509525, 7835394.510823041, 7835426.365604478, 7835434.996313649, 7835451.292979332, 7835471.875, 7835632.459167572, 7835734.244819349, 7835929.968740368, 7835934.440396983, 7836154.6875, 7836166.560958987, 7836171.875, 7836475.0, 7836670.3125, 7836691.995915004, 7836985.017724341, 7837226.2208439335, 7837349.360535424, 7837497.976830933, 7837529.6875, 7837719.753910892, 7837760.9375, 7837824.098469829, 7837909.375, 7837943.19896649, 7838048.4375, 7838367.010582577, 7838447.325194537, 7838580.992686221, 7838600.324372008, 7838701.186743751, 7838721.146360957, 7839056.091607455, 7839084.375, 7839340.248149211, 7839474.022143872, 7839611.531889055, 7840792.1875, 7840867.319745919, 7840909.375, 7840982.600409272, 7840982.67027163, 7841394.88012766, 7841512.5, 7841576.422052155, 7841753.301449163, 7841789.233797136, 7842110.9375, 7842114.17962653, 7842200.994175844, 7842645.977377019, 7842738.1415448245, 7842907.051647075, 7842983.409744806, 7843421.875, 7843575.0, 7843785.814486078, 7843917.338189111, 7844413.489674629, 7844477.780318749, 7844492.016438665, 7844508.478456072, 7844791.931753079, 7844862.0268677715, 7845198.432388073, 7847269.396471077, 7847732.771272397, 7847836.5846399525, 7847836.980853835, 7848005.122205784, 7848920.985378676, 7849187.6711494075, 7850297.6766760675, 7851320.16849045, 7853128.978625586, 7853915.625, 7854489.114404662, 7855674.046385116, 7856158.224249826, 7856221.437580404, 7856403.913523809, 7856546.460703566, 7857527.9516889, 7857580.311611033, 7857840.000303848, 7858039.881545758, 7858441.197962248, 7858754.6875, 7859753.27771473, 7859793.674294063, 7859821.634807556, 7860003.125, 7860884.375, 7860997.380465519, 7861322.978337394, 7861852.381102147, 7862053.984951991, 7862561.437425119, 7863151.704405102, 7863337.5, 7863341.437318055, 7864617.501126243, 7865874.0741655845, 7866184.375, 7867554.20038286, 7867703.539825494, 7868123.353598949, 7871909.155511114, 7873138.352787846, 7873818.75, 7874853.125, 7875051.328913282, 7877038.733469543, 7877495.05322848, 7878566.625799912, 7879895.671588168, 7880061.347779233, 7880377.148649681, 7881046.875, 7882024.774172212, 7882893.75, 7883741.928360852, 7886980.170884217, 7887693.75, 7888008.985090976, 7888652.442947249, 7889007.8125, 7889130.073533523, 7889603.83913006, 7890673.343104742, 7891655.644367776, 7891707.675769876, 7891922.023218101, 7892757.511090299, 7892772.422566356, 7893695.702249615, 7893741.152843803, 7894345.198037578, 7894504.6875, 7894721.285274747, 7894937.51176059, 7895132.780083445, 7898021.984042924, 7898235.490814097, 7898814.0625, 7899190.625, 7900011.699032959, 7900413.205171674, 7900715.423230059, 7900821.522531601, 7901106.813518041, 7901437.1344952155, 7901540.025888747, 7901796.511442794, 7902306.410902394, 7902491.357935337, 7903452.840298452, 7904125.242499069, 7904437.5, 7904438.246693957, 7905286.857591172, 7905303.125, 7905710.451688326, 7908413.58951534, 7908764.0625, 7909428.1420647055, 7909650.0, 7909787.5, 7910034.757339274, 7911194.550353895, 7912653.125, 7912659.77230879, 7913538.4547469085, 7914643.376584591, 7914986.069489968, 7915619.967011743, 7916021.295421819, 7916204.139245962, 7916341.546727039, 7916832.666370125, 7916892.139033153, 7917279.6875, 7917767.1875, 7918239.0625, 7918308.90114048, 7918499.5659542885, 7918744.941554449, 7918749.857129737, 7918992.804910825, 7919207.8125, 7919294.383140087, 7919679.416924177, 7919698.121979444, 7919863.728993713, 7920407.8125, 7920623.4375, 7920940.931204962, 7920989.198933146, 7921148.266618287, 7921177.726040544, 7921180.172919081, 7921967.611255099, 7922065.544030748, 7922637.663461174, 7922842.579004335, 7923248.160092936, 7923496.351150268, 7924170.3125, 7924241.3255135715, 7924390.590952723, 7924609.375, 7925221.354965087, 7925447.195095122, 7925471.440578523, 7925678.627211062, 7925810.5724861445, 7926521.309113261, 7926941.422518595, 7927113.9676459795, 7927295.260864132, 7927319.167440494, 7927335.0769864265, 7927340.740873492, 7927996.165291355, ...], [43.808050814007366, 24.321796248862082, 72.7336191228791, 6.336408761914808, 39.785593718184074, 40.55775935743039, 54.86271091151502, 16.646851026984688, 22.07800632468407, 9.412076458362995, 8.269120331393026, 14.253913476349863, 31.20160928268776, 101.04808072229187, 43.1583394770184, 127.02308561393727, 30.04484032231165, 27.332128614356062, 10.071465475418675, 33.55613684028514, 12.130545849593137, 66.09231311828181, 30.423732973205464, 26.529868044866888, 76.94754904915196, 39.81749763030513, 17.72038346890604, 20.456863114259896, 26.241011639737145, 49.86369712131307, 28.326540586669456, 67.93241146883896, 96.65406464280565, 13.568225997330748, 54.172026734241285, 10.426388609058474, 22.173796198873042, 24.137219735195302, 5.29437978936189, 13.255639618883041, 28.56730150184246, 27.03377761131257, 17.55769374728991, 15.043896302939913, 47.56998335050259, 7.303020899728583, 38.73783043590988, 85.22197935379415, 7.07789976856219, 5.530321773111828, 25.716299932385486, 37.49700195647817, 6.922990499247876, 15.276945283019035, 14.01676398476914, 38.02741055324175, 20.837378616463162, 66.39921781179963, 31.890319874090267, 7.035803108230758, 97.51697805680737, 9.630937680670915, 52.751724563443275, 101.61647164177012, 6.887743446003114, 42.24283208259546, 5.992779421250982, 12.080345011129424, 24.426335608093208, 74.0852334722002, 7.538142277478417, 5.7275726712414246, 8.41398583328819, 19.85676220610642, 12.572319169010061, 60.96578823764758, 126.99750197212168, 11.74854102847251, 22.203518500905485, 82.68730625261726, 96.8110711383499, 26.83392619209902, 17.78194398453988, 58.95445520164499, 63.13172476899293, 5.223117880167875, 71.3027325425444, 31.302110733433228, 15.361416958919008, 35.13810934117798, 41.52129020959895, 25.928647835639673, 70.29991585063252, 15.083300946134559, 93.1835016757016, 63.673693347131206, 52.898647345220205, 7.079422782483959, 44.97806416148629, 19.673791038079184, 9.371933985188551, 94.15911799493887, 40.36723754204362, 32.49100160211882, 35.74180432205163, 81.42675503011958, 62.99833419268173, 8.8257930990188, 25.85053128296612, 72.2333457650106, 71.93417497591365, 33.939651324821135, 15.950458928925329, 15.178294284283245, 65.7109901783466, 10.775406291428352, 42.16069956099703, 6.778472024105093, 72.56823575111801, 21.403565941033737, 36.235629032754915, 75.0811169359479, 14.455165832745566, 91.76209288718344, 27.352378638273628, 7.840474907632512, 9.310182178613337, 10.7190580903235, 16.622316160799937, 13.994695082588152, 8.289058188280913, 13.99663120420744, 32.43201951563831, 21.186243316390005, 50.03739216545991, 19.66150994789779, 21.603561719362705, 9.393715423984785, 23.938605620848946, 15.959446293318509, 12.160191238580463, 43.25237581496228, 42.551445536482284, 54.73188244998721, 66.7121258359663, 21.05413858697697, 13.846730129243259, 74.78732945516609, 154.88088801282274, 28.42309211368247, 106.85082350515805, 27.56315540702768, 75.56175532235477, 36.4988905269656, 13.8272969723294, 37.35206158977842, 8.27507582073938, 47.341263372125525, 12.81004491922409, 25.20711419071076, 77.3719991100769, 60.2119884152504, 50.67136329319705, 101.82156540128906, 81.6522171060139, 38.617282580678335, 13.114014288171784, 30.392392706499912, 89.99547491278052, 35.972698846830056, 7.277351496220316, 17.409388837869134, 14.303365721524445, 11.679339092789325, 34.85103761460629, 31.164525882690516, 16.83223727154632, 9.451974299698488, 16.67958578268797, 36.29782959117486, 21.852941471228245, 39.458804542333716, 66.17469150065715, 6.65618038713416, 10.811130848494917, 76.34537144055646, 9.06362392842809, 9.432367027005103, 44.203615893479395, 8.220781738135472, 46.91818131229223, 91.38806650854109, 15.0933102097317, 6.626574618178457, 40.46065832313158, 95.09380129228691, 10.367293444062945, 15.769278013568083, 10.94575179153841, 72.49891689262458, 19.110166373351742, 8.330766932720188, 18.494267556763603, 115.97879388886017, 13.481921561258687, 5.156232963051376, 5.092756510714482, 217.35932919001112, 7.738569788253677, 48.11785722963697, 32.83233252384552, 28.79531249664893, 6.223031699143251, 45.44454371622519, 23.222581049375783, 30.790298493187123, 5.173728493882518, 25.43158779991596, 19.332502342910214, 5.785482525986106, 11.718045302657734, 75.66237518186733, 26.290309400814067, 56.503699751114425, 19.946113892130136, 49.625962088389784, 102.12923984987893, 92.12866674095812, 19.62422871435058, 106.7686919590902, 22.525144865186007, 22.62707195688706, 72.18202243828001, 33.082421904603954, 37.21246536316448, 11.26098038677647, 14.027132156562258, 21.27333701389027, 22.486791936312983, 49.49956297342244, 6.7606859377924975, 16.504951120110935, 45.54511501753044, 24.06845206794033, 24.139005556134588, 14.219711696278413, 66.37341609022934, 84.06926437244954, 61.3016062370279, 48.09136582547885, 35.13938802409896, 7.4115359918936115, 31.887791745251462, 97.62768629092328, 20.211288580183222, 7.207278408211613, 37.117265063678296, 19.253143598656404, 12.908180006112913, 57.86271538809945, 59.55403089184725, 104.65814956948114, 12.89265623516696, 19.54938278856343, 40.32950997787076, 77.07161786157148, 50.2045000829229, 80.07991810291924, 23.53832078448772, 62.74098708745243, 7.286319887789313, 16.70998535932523, 57.23338576817825, 19.599018963013396, 24.575239619754278, 47.651814943719216, 9.779827972522108, 41.89427932284564, 11.739564269535405, 21.076475072404715, 8.718011384909511, 27.482907552599038, 5.501593797479285, 16.609592566134424, 18.090574053465595, 35.962213966739796, 45.029932720879586, 27.44237812854029, 16.169881285248266, 10.127931167880904, 15.413241550755957, 27.442267736911223, 15.690560170497301, 13.998270633935515, 15.265989803048273, 88.8405315972854, 7.8328873710666915, 37.47473355700866, 45.45133087347912, 5.827298183671731, 6.55249325225733, 14.42555429037506, 23.207035723945697, 13.78400937929907, 11.927543771425823, 72.90421197775518, 44.85278772935549, 10.889760014275932, 5.626509513516301, 31.922257163636495, 66.08569713700402, 6.793614087306694, 10.308956189554936, 50.466770587347405, 6.720785975304419, 34.997285486946055, 142.34890390782834, 7.291677599248342, 63.86509933312908, 24.827181546451907, 70.61738451837164, 59.75370358371564, 14.260082219847137, 42.08067519677724, 13.221312008334033, 78.38892123813338, 10.42290393382731, 6.100742928453087, 12.593556011681034, 54.98729908683396, 82.83276236778384, 10.593052024131095, 21.590740605986927, 7.931505438848977, 16.55120886146629, 31.92338561697515, 16.73536910836109, 66.27328064209738, 16.155718847464044, 23.336588075732323, 84.66668932057475, 28.44538352760577, 10.850287448782616, 55.18487179864364, 14.521849315265563, 132.74979602748175, 28.1164302017171, 15.6975230121176, 110.81221454829529, 60.1573573973713, 35.037537748465176, 22.160246580895123, 47.1096702191344, 72.66670643167423, 41.98363456135413, 117.38999330957465, 12.626381653890615, 82.47060674988478, 6.5263010780759725, 6.8117033872342745, 92.01233756468055, 36.02483910875596, 49.32754110476624, 60.092624393017466, 40.207872248810496, 30.157234205448688, 11.40512753348372, 81.15163917229795, 6.275092635462753, 41.433091121976915, 9.553312844266728, 5.846320197117405, 16.2560092200184, 50.41813382716766, 13.323074355356347, 24.594818596907487, 9.56247981121925, 16.17032357469697, 23.0378237190358, 76.32014482351305, 9.860895344590464, 46.296635694138146, 57.43289774991683, 12.255156133382176, 13.289039958673966, 12.578647663081982, 7.598486776288186, 10.41719637312582, 7.511194179247103, 7.421695595986357, 37.24628316860988, 19.15167704578026, 8.483622611226458, 44.19149629245718, 6.342615722287147, 12.05579794631189, 76.09568669369294, 52.650393517182415, 52.45261906232178, 22.806107027479264, 52.30780959467414, 49.21905413311758, 48.75069823934533, 70.84110945029204, 40.281764716088894, 11.3889567566394, 17.38041431317003, 79.2669000197636, 50.959264045193386, 13.767893515748023, 118.70717005155207, 6.8077353083758085, 35.602121856507964, 5.912717872740762, 41.66582489302315, 96.4202542658977, 33.39447322250114, 15.503026786313137, 6.870018692060683, 46.77957643220668, 127.41071733933751, 98.97092529563318, 30.473463676253278, 15.642541339833528, 30.5866716688816, 26.833490148548353, 25.542828189201703, 8.560734635870169, 78.16738182609754, 49.991571934852956, 14.206865449391344, 38.577670225256256, 18.97651018917653, 72.75812162348177, 23.57504177714545, 9.608718837968611, 23.73823625614719, 10.985216861592617, 128.71456558630555, 8.074774641521206, 109.21102033687924, 103.52145412560004, 23.342425827377337, 40.36254712557894, 13.446171516052582, 36.466350521285406, 36.49742158834035, 39.793766748424595, 8.549977720655113, 17.042464950369983, 32.06133253290649, 29.417968979261673, 12.80721285213617, 10.27425594923312, 39.731269317118375, 39.73552849289885, 48.38061566654897, 14.706147289752964, 15.223819467580624, 49.05619935870197, 51.46074142720056, 58.28378987957167, 45.675626727139075, 35.094057092065995, 13.797131193167667, 57.62828121556604, 66.40358594292387, 25.33776545620299, 19.24737251568849, 271.9684232270866, 83.3188750277608, 278.9913613110685, 33.749857036759074, 5.810222437682423, 65.44167632495376, 40.556702357183674, 53.39903652881602, 65.41035892934542, 52.800291504180386, 88.39521695218905, 9.708431982217807, 9.55335514802074, 11.968719638864915, 7.2905072329485225, 38.4283368669295, 12.8540824865998, 20.805010995114827, 58.57948787310387, 59.69282345229018, 132.45587604240836, 27.74414415111054, 75.62300766232414, 10.798878439031162, 16.254103163954127, 10.824341372966023, 62.039519137874116, 7.640289447084743, 9.410476615156611, 44.5740313687699, 28.040600772636296, 7.889016978735761, 19.730099093944492, 21.51192887229194, 5.5676606568035725, 22.770539803938775, 31.379993363917617, 14.376900806895058, 17.491793352006926, 71.62582733472945, 61.10016003439121, 42.01659218062941, 39.32581892223179, 14.131925834481311, 31.96189617230864, 61.97861765550549, 117.77641571963952, 69.771266546565, 27.154881099004264, 51.70597014427374, 5.430768531509428, 59.737746901302124, 37.43409889241386, 86.340720978899, 75.35064924469454, 65.85556081383997, 9.827758449234494, 8.118656274444394, 12.204592529991356, 47.54075298244068, 66.32971200115978, 65.25036331707865, 68.4076457119049, 7.884380140873857, 24.1627194163038, 37.537775783838654, 21.484573154656264, 65.93192458577332, 18.834756473979276, 5.839199239033482, 63.796977683626196, 33.255580402981224, 5.880061833731539, 27.933463250983554, 16.04792351581436, 18.44823078828231, 22.64186822871264, 30.36654728251048, 40.8682707069424, 32.05033068273116, 10.02319080497766, 36.59670496794934, 7.833402864022074, 7.9637414427349364, 19.892417847306046, 9.332506873213672, 5.94883185253616, 6.528032930388213, 12.712369644106747, 22.1835741580493, 5.132294574319171, 7.199846461209253, 86.20449457768063, 64.71432482116643, 75.90785775749636, 69.87805815742145, 18.90628174342152, 20.051328804417388, 5.184604652186738, 8.519026857701725, 8.491878798353797, 87.4260907486092, 7.679287856380834, 8.72102037096248, 5.030607090100693, 62.29529270747493, 92.59141527865314, 30.18855577582622, 60.33033018434828, 70.84910055014076, 30.787662314499286, 57.97119777031108, 6.684352159652739, 42.73328709170762, 41.639093804215705, 7.143007363744983, 76.88238404967088, 54.134259346772524, 23.011951050415195, 19.676308197021356, 28.858722199356446, 11.063984431928468, 27.562913438897205, 68.21407287703339, 18.957522315302647, 29.070291649289107, 48.856285101394576, 24.303575217656373, 12.161071999773412, 102.0284482316406, 21.87738712607824, 61.322620876056604, 40.158585921790156, 13.30735873956848, 34.77428921062253, 65.17425155920075, 26.301916611069217, 85.28973420947676, 5.609624791184279, 9.945966685231596, 15.799699674553654, 7.555456425539798, 31.976496216888126, 15.453514400875385, 70.56273145260415, 37.540254841483204, 47.35509140846213, 40.185373032489174, 91.13418528937875, 51.333205870278064, 57.50115439485513, 60.56442558873336, 20.222520005717346, 6.566797074249686, 102.94419392874144, 10.65730580323291, 45.7803780791602, 37.15930780925527, 57.34982312498845, 17.61220134761725, 20.15581528934306, 44.825916118892444, 5.591482593375798, 30.48833968881159, 10.2015874094735, 9.382400260446422, 70.82156921532402, 43.96503729272397, 16.02014840654154, 7.511050238364202, 56.29968338461498, 12.266258585015892, 41.43232926790789, 40.82248414327832, 18.988652512889825, 67.52265878270357, 67.9501660805002, 49.70771251546364, 32.60333884581582, 24.652045663507216, 40.74892709241806, 61.63470348127476, 6.393397999684888, 58.229994036069755, 6.32676843390803, 6.24914955514588, 11.427218907538123, 34.12101881010253, 29.27877309090377, 83.69423806600493, 12.616478547170487, 48.351075921355466, 13.717194954927072, 41.03772252548912, 44.36513719884472, 40.13034117267949, 14.46069776773689, 45.92246318936948, 5.272741422081325, 31.960045286971514, 85.18620169320131, 31.52509631185808, 9.572291876878875, 60.4204987732911, 37.266339408114504, 18.206838890276792, 35.15871983339801, 17.42046558344215, 44.55963945962105, 7.7929108763924475, 33.13979719352631, 117.10748049783157, 21.74344252813472, 10.833793324464686, 6.305610304377398, 18.25274632216223, 78.24999739297039, 11.080177808127434, 17.750682855582802, 7.300392127496271, 7.82244851590665, 11.79098374562647, 18.142981465119956, 10.013963418938378, 15.38734333849088, 8.011808013892178, 22.428236988100558, 12.184422701224936, 15.319073024121307, 5.660947846374397, 18.343645780934626, 46.03080163043508, 84.05992285163984, 89.47065828674752, 6.378224988139476, 21.68067791661634, 234.99397943257208, 20.429447404628267, 20.922000455422666, 48.2673222003704, 31.074807379580612, 59.413790825388006, 99.29867823094764, 37.7737009349383, 47.39857142107585, 93.0093623395785, 54.29641892399366, 7.6622805460882955, 86.8555339499741, 56.383322832285515, 20.697518170880606, 55.198048093129124, 28.831144678314608, 18.792669410410134, 19.85676220610642, 54.90988550831588, 6.288436221356835, 80.92886728528771, 7.39350598244684, 25.979456205575374, 134.58265485745412, 5.241769009872627, 24.043690549520136, 11.631878884627472, 70.3633727330164, 33.79483581201883, 12.326366675286678, 26.968851303863865, 79.99337706215532, 11.18746830824548, 103.92674651171595, 6.989477755788301, 10.149951748883032, 19.94661285105754, 79.76078538225043, 53.8836432321922, 55.2979866742096, 6.777159493503742, 16.977067885027893, 28.8059858907276, 18.144823141175507, 29.103862791062234, 50.26198670386727, 11.484010295225819, 8.547180398964775, 111.07663422121445, 77.33769922503625, 9.2507924131476, 79.76340275678459, 20.50592118165404, 5.047123289446961, 28.58879928529256, 100.5743987779736, 8.084370242292284, 60.85750695368185, 41.52649020519744, 8.706891052015841, 12.066780916610409, 9.670355645358562, 57.8866759902337, 16.530907057375696, 83.33514806667147, 38.934213584606525, 27.934386920999625, 42.56603789066006, 7.4623978345032995, 10.642249594605786, 18.932802758481166, 5.285043793158431, 9.918508192078528, 14.004945004457127, 69.31400798389996, 13.746522248930873, 47.61536980458583, 11.597727628313844, 55.175223880573, 51.608949001441175, 71.10038835369303, 36.70982196817691, 74.85695126016839, 44.91325465846905, 25.24196396898688, 91.7997714528262, 23.23283755923278, 12.959653017245767, 13.435070582773912, 78.73483199562, 6.031875295630786, 32.82581967870909, 105.02768660624587, 43.836531542620435, 63.29619557709913, 31.702602511815773, 6.245101929120097, 7.245045833695844, 14.043772306109577, 6.83004010908104, 32.982020092156915, 6.626264866822665, 10.888837064302837, 40.6470599000834, 62.31304833320006, 12.183626556050973, 17.822496143513956, 40.4478195557603, 88.66284563559731, 58.778759579675004, 32.362524267285885, 64.96152244055163, 5.327320992898394, 35.628696088401085, 26.02784217505698, 24.676890569399035, 19.31995476960881, 70.06319279831371, 55.41771444088431, 8.893027322110232, 163.67634241968673, 9.93995455454277, 39.49115206938889, 112.92288951040345, 41.841503370038566, 47.785161312169954, 31.50846450001465, 50.991161991509244, 6.197440724783518, 18.866621810229113, 55.9773366504101, 25.483481750029405, 19.68204027468211, 87.87270816667106, 96.45481568243815, 28.37668129079887, 14.786663517519324, 12.316254090151077, 21.304209812379856, 28.804713015073904, 16.0774886792358, 19.241442538017136, 27.905756773376417, 25.971196390973482, 20.50531713097262, 62.223916202637724, 51.148036933260244, 19.946347965455764, 25.470386820002272, 69.31768850802602, 21.85202652985239, 81.58839008378085, 118.42810082872006, 5.219619416839057, 15.654506582465155, 79.36230090734887, 14.551003632124463, 33.22214686579114, 34.53010323251751, 27.11178929422697, 5.0375193419666555, 30.743051510360228, 31.872857707763536, 17.295803923773608, 21.910383127687208, 12.704268528296666, 67.19129483522977, 12.01072232945701, 11.357002467236612, 36.062912537051815, 5.4304635086183835, 14.585846963591482, 17.208106755083577, 46.62293013196007, 87.9138584319755, 5.9763639161840425, 7.099569905056636, 24.836684183675917, 6.629633180046907, 62.1984608178668, 72.71869937907118, 66.01147638190578, 23.386867957737223, 14.037524198966501, 75.04477598657371, 96.43245727265364, 17.67322177260847, 17.77190165509482, 36.04074180502623, 5.33424248646788, 28.68321803058206, 48.01751481935465, 5.4829036079289875, 67.4627155464349, 109.5542419234845, 42.16123731199579, 47.072988190603596, 5.731774709507011, 23.714912437753096, 14.593524666899492, 33.13705368750396, 16.75402639039565, 104.83586284148919, 23.73275137092254, 8.599044409476788, 48.741439056689686, 167.22707273125857, 69.32602832182386, 45.256627526174405, 28.51926794856604, 43.62082247036534, 52.14725879337429, 49.42605914850876, 43.81011691488471, 45.34254214374433, 31.337815169894075, 37.3609254070389, 27.947347369172633, 76.22372619635479, 13.749115877495049, 126.31293238562606, 9.040356083696011, 27.586917478390447, 107.67084965371203, 16.31564049846266, 10.038924316082852, 23.94814517883648, 17.277369339294626, 103.48358652259736, 7.332617060441879, 16.487402083417898, 52.190191716970794, 95.57761053294662, 13.400648700367194, 68.27628714095547, 7.609421378561772, 89.67427097161728, 41.84642628025285, 6.316743714549048, 13.842633311320899, 46.623289332145525, 7.753549272077353, 20.481579019210518, 5.683397967163956, 71.11295273330951, 6.224513398279369, 20.734371525790312, 21.024877227250414, 10.254862540344364, 42.97081732806072, 23.578625241787453, 54.18311414190842, 42.78179219542977, 55.3333927580761, 28.645242493251168, 22.17726595993795, 37.33443576926867, 146.34562173786887, 44.895179378171974, 53.104512847709216, 40.53642548555904, 24.134014747637867, 23.554492104894553, 17.162126485150615, 33.33722689425593, 58.94500326612807, 18.41693148067344, 60.43404820054934, 116.4898118053818, 10.556552556718696, 11.981877808031081, 91.56408167741701, 69.08951989740115, 29.07762580544037, 20.416737889669825, 90.62692564580061, 38.898298778640616, 37.98861497957716, 18.509959822787145, 62.15795581533114, 73.61556128419191, 15.036233232791364, 11.667827739507619, 253.65915787769808, 48.57467488284425, 57.427044227560074, 42.70973605582346, 58.750999421847446, 32.64260028328101, 54.39945086206183, 9.711211537821805, 10.00501957177169, 15.402357118316802, 25.024630694869398, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5012395.3125, 5033146.028591544, 5130259.375, 5133488.02884217, 5136484.375, 5238343.75, 5238604.496309883, 5238836.322936785, 5240387.0567010185, 5295145.406392089, 5309256.216842039, 5310529.494593849, 5389970.3125, 5394234.375, 5424095.145519045, 5427211.614415525, 5429779.6875, 5431632.749208032, 5432152.324795393, 5432426.5625, 5433203.684035489, 5433703.7360707335, 5449484.375, 5449853.0153233325, 5451010.9375, 5451811.763953752, 5452325.577695874, 5453858.764444783, 5454312.372790467, 5454360.807099395, 5455078.11489657, 5455104.719642803, 5455517.1875, 5455643.336107011, 5455750.813094671, 5455760.4371487545, 5456173.7995844465, 5456190.354665424, 5456196.981225003, 5456647.2801099345, 5456683.792581864, 5456821.794841092, 5456879.442168388, 5456959.910559795, 5457067.1875, 5457335.023445296, 5457448.4375, 5457518.75, 5457940.456689328, 5458092.130525695, 5458546.714729836, 5459765.624979704, 5460963.2495936295, 5552032.897807295, 5552446.60920546, 5553302.304157837, 5555132.244154894, 5555834.375, 5556530.548161921, 5558199.663840731, 5558420.263609434, 5559855.021704339, 5561582.8125, 5561718.75, 5578616.216995207, 5580059.375, 5580902.155638084, 5582130.221993466, 5582178.907116315, 5582264.0625, 5582295.128861619, 5583639.384661883, 5583828.358403203, 5584239.943670377, 5584491.387107058, 5584613.480274651, 5584626.5625, 5584645.676422236, 5584732.888337927, 5584984.694132168, 5585153.125, 5585555.697420875, 5585972.46279002, 5586392.185022356, 5586698.796485667, 5587327.318417293, 5587333.858728035, 5587773.177393037, 5588182.856436655, 5589389.959956266, 5589538.627230948, 5590184.9586785175, 5591243.105574985, 5591257.849209854, 5591383.782674021, 5591534.314351089, 5591572.716648855, 5591713.900165352, 5591762.5, 5592434.454749327, 5592682.860048075, 5592829.6875, 5592934.375, 5593531.444249117, 5593703.029051203, 5613729.6875, 5624651.438620283, 5626054.022194585, 5630612.348340886, 5632368.75, 5633700.0, 5633820.200328682, 5635703.366713609, 5635826.623266526, 5637175.749122926, 5637621.637277187, 5638371.875, 5658920.387001997, 5677473.4375, 5697399.490977526, 5698379.6875, 5699000.987773893, 5700735.803769264, 5704175.008437559, 5714728.15982859, 5717645.924017901, 5718703.099795844, 5720010.659320591, 5721698.381826077, 5722084.102240491, 5722440.629688403, 5722443.78317804, 5722936.9597235015, 5725110.406178851, 5726992.1875, 5727043.0444477135, 5727055.83292689, 5727164.135285786, 5727184.089566237, 5729138.088038907, 5729842.760880522, 5730206.25, 5730230.141028796, 5731231.25, 5732446.205787864, 5733431.547363628, 5735363.933909703, 5736034.375, 5736772.14139086, 5736906.6023109965, 5737549.947425694, 5763648.703768974, 5765246.875, 5766756.804030859, 5767984.048354804, 5768427.634855567, 5768634.353186977, 5768943.423084001, 5769313.25854673, 5769671.681058151, 5769696.875, 5769707.63135521, 5769831.25, 5769857.515756198, 5770634.285496519, 5770694.534019737, 5771119.733211123, 5771532.8125, 5771538.725868367, 5771544.056125504, 5771914.62413077, 5772344.058453512, 5772412.914707, 5772476.888904665, 5772937.5, 5772939.0625, 5773683.233497394, 5778361.076732983, 5778371.224221113, 5781040.625, 5784182.347831349, 5784940.3059166595, 5785007.8125, 5785015.062535584, 5788628.803153968, 5796313.924080237, 5807869.977870819, 5810503.242039514, 5813074.435022369, 5818720.185972113, 5834741.536648053, 5861271.875, 5864541.4966505645, 5865366.460603805, 5868347.525129269, 5869596.875, 5869621.327171744, 5869918.951450828, 5870067.067886107, 5870190.126835564, 5870311.629490545, 5872412.582638729, 5873847.57320608, 5873883.383033322, 5873902.680944496, 5874302.728670198, 5874309.083224321, 5874734.122069032, 5875442.54678948, 5877868.320425827, 5878011.991041173, 5878579.176751025, 5880668.392238254, 5882493.75, 5884471.532495912, 5884939.0625, 5884998.793169307, 5886264.415442439, 5899522.689704669, 5906143.357276616, 5906856.597475784, 5907215.625, 5907223.31331537, 5908768.375502367, 5912022.767053092, 5914395.3125, 5915238.9925892595, 5915445.356415925, 5918943.0397523185, 5919270.3125, 5921490.222587326, 5924738.669127747, 5924817.056487256, 5926870.184130922, 5927126.341484035, 5927989.1461232705, 5928952.862466713, 5930513.712719202, 5931794.906659322, 5933432.714103802, 5933771.860855136, 5940800.357485597, 5943414.0625, 5947635.070209366, 5955852.34680176, 5956437.296797718, 5956469.739016417, 5956473.4375, 5956496.875, 5956715.625, 5959235.295517217, 5959833.8119318085, 5960957.215070861, 5962012.184574828, 5962705.468742338, 5965483.129238525, 5965706.62281709, 5965778.92923643, 5971279.027487506, 5972612.0026305625, 5978782.8125, 5991117.1875, 5998430.583741926, 5998496.15525635, 6002290.625, 6003178.125, 6003796.559671604, 6004535.284799362, 6006691.870686375, 6007009.815335586, 6008334.9671338005, 6008376.108496758, 6008564.531964717, 6008883.661564269, 6009162.26191742, 6009401.5625, 6009537.986642969, 6009696.875, 6009790.98409511, 6010004.144695865, 6010194.4855161505, 6010316.336944336, 6010339.95870115, 6010550.378160254, 6010647.512034378, 6011078.125, 6011170.3125, 6011260.8803306455, 6011353.413823842, 6011460.187458252, 6011646.993493676, 6011971.520358499, 6011975.183557402, 6011976.64952438, 6012144.097456535, 6012807.8125, 6012813.093244351, 6012860.9375, 6013017.1875, 6013093.928384851, 6013144.154901639, 6013263.09100308, 6013287.156208847, 6013343.409109726, 6013391.082794846, 6013426.984545914, 6013493.75, 6013543.5922416765, 6013556.473145271, 6013558.756928898, 6013989.114885722, 6014076.711459576, 6014155.654382121, 6014206.25, 6014291.969680347, 6014323.865988363, 6014494.9041257575, 6014847.485267957, 6015671.810335198, 6015848.217343604, 6016246.875, 6016470.878927511, 6016716.996443339, 6016718.75, 6016752.586307878, 6017573.4375, 6017704.184374748, 6017839.183213149, 6018003.896321684, 6018034.375, 6018321.719495049, 6019051.191214619, 6019855.759732596, 6021100.824738708, 6031009.741668709, 6043135.9375, 6049844.152548891, 6050041.396800617, 6050644.908327606, 6051605.69196266, 6052173.4375, 6052554.631926307, 6052723.252456873, 6053412.5, 6053640.131461223, 6055050.663854597, 6055445.8757515075, 6055747.060150129, 6055935.736232036, 6056598.4375, 6056778.125, 6058534.506347018, 6058927.9754677, 6059429.308355917, 6059521.875, 6059800.0, 6059828.910471784, 6059965.625, 6060525.245650131, 6060668.986715349, 6062748.183690575, 6063276.17805292, 6064035.9375, 6064353.657244744, 6066067.1875, 6067093.75, 6067375.170519569, 6071665.123854441, 6071670.374728514, 6072760.259229018, 6074309.626278823, 6075686.365215313, 6076062.806841588, 6092675.0, 6096332.311414598, 6098960.700826482, 6099342.448700044, 6100878.413917038, 6101087.1420606375, 6101186.932996712, 6102364.628687486, 6102715.625, 6102798.814559382, 6102811.55610974, 6103516.748668943, 6103613.264857947, 6104115.611845313, 6104560.429824325, 6104893.488135256, 6106082.281028562, 6107193.75, 6109213.290688581, 6109814.41741163, 6110031.038752015, 6111466.199487167, 6113847.397376774, 6116600.0, 6133768.33770392, 6133969.782181407, 6136607.085593294, 6137450.0, 6142161.250176178, 6143178.89230269, 6160843.664625321, 6160868.75, 6165038.878601745, 6175798.95773477, 6181619.520390406, 6184309.336509738, 6185602.778772916, 6189957.922357355, 6190756.46757519, 6191306.027061203, 6191779.375860105, 6193047.747475644, 6194726.5625, 6197000.0, 6198412.639912609, 6210572.386086433, 6211831.25, 6218959.73708179, 6218983.755351522, 6225062.894229157, 6227968.922519844, 6236701.257615634, 6239353.033267095, 6239405.233323505, 6239766.109789367, 6239930.827543441, 6240022.485901623, 6240038.85541204, 6240223.4375, 6241228.881037318, 6241869.354470935, 6242268.965082438, 6242270.623217701, 6242370.896659201, 6242423.344385714, 6242495.376851561, 6242623.014286084, 6242757.510948374, 6243757.510693563, 6244284.042347702, 6244585.382729352, 6244872.980782821, 6245085.659301331, 6245129.6875, 6245503.125, 6245670.779457092, 6246625.726689734, 6248550.315882772, 6250257.8125, 6250272.73645629, 6250279.063010439, 6250744.353782105, 6251869.128950933, 6252184.741053121, 6252204.624348449, 6253346.947146792, 6253588.551525378, 6253817.004782677, 6254612.603036855, 6255140.311981621, 6255151.5625, 6255491.85094162, 6256682.767665102, 6256731.25, 6263926.377353648, 6266599.240970818, 6266914.005698972, 6269321.320153183, 6270872.800280252, 6271149.89911862, 6274265.574083173, 6277971.875, 6308328.125, 6320451.376894433, 6320799.3104891, 6324390.625, 6329458.659687489, 6329817.602099942, 6329839.313824688, 6331422.353765362, 6331791.231312253, 6331826.24926815, 6332593.068124228, 6334965.564501292, 6350546.040584253, 6354596.875, 6357087.3712925445, 6395434.9024624815, 6396122.124039192, 6397668.5289214505, 6400692.493945663, 6401632.609341209, 6404612.938219963, 6430943.851293821, 6431134.467059119, 6431146.875, 6433413.248394461, 6433630.414077809, 6435301.60061555, 6435985.923632732, 6437511.629994466, 6438870.076885733, 6452034.894582611, 6476159.218538423, 6547923.976887004, 6552935.554837296, 6560096.875, 6568565.625, 6587000.0, 6634654.153819867, 6638576.5625, 6680957.685668215, 6681728.125, 6782642.437708215, 7151281.9861717895, 7187721.31340315, 7192082.069835026, 7257088.516247677, 7385754.492934627, 7424021.875, 7425770.938369781, 7439573.4375, 7440986.471456866, 7476369.9808610575, 7515545.907163558, 7515685.9375, 7520192.1875, 7521973.349080992, 7524088.285804473, 7551775.715723058, 7557579.419082066, 7557581.25, 7559501.395617202, 7561662.5, 7562279.853805359, 7563358.147616727, 7563535.739877906, 7575100.0, 7576774.292365911, 7577292.156907656, 7579372.137857278, 7579644.741771241, 7579673.555961325, 7580040.313105152, 7580365.621342577, 7580881.1790141, 7581000.718619373, 7581035.69134676, 7581694.344488357, 7582539.960179208, 7585929.010528097, 7586348.438805005, 7586361.045108783, 7586764.3187975185, 7587094.572012703, 7588535.662133749, 7591418.83367768, 7598687.790062255, 7616712.30823992, 7659029.6875, 7689854.6875, 7689934.375, 7690266.382143281, 7691636.765852761, 7691827.370015681, 7694101.977636675, 7702136.306547722, 7702183.289270242, 7702245.517983995, 7702433.552637649, 7702508.71577663, 7702817.494722766, 7702848.778774591, 7702938.001176574, 7702971.093706537, 7703052.5538084665, 7703061.607323036, 7703195.3125, 7703393.340152625, 7703521.313403611, 7703550.016846068, 7703668.83137173, 7703670.3125, 7703755.61744955, 7703848.502565071, 7703938.995150437, 7703956.25, 7703981.2088462645, 7704041.464162267, 7704045.3125, 7704055.451740831, 7704173.086028268, 7704245.3125, 7704385.4378085965, 7704413.073805049, 7704439.897798862, 7704479.225178985, 7704510.7310597785, 7704581.25, 7704691.68066253, 7704785.409568734, 7705109.375, 7705142.064025612, 7705195.218976232, 7705381.1698391875, 7705581.897188536, 7705947.083300167, 7706110.803430963, 7706304.6875, 7706587.852797817, 7706769.822117407, 7707032.8125, 7707041.734325722, 7708014.0625, 7708117.592709931, 7708307.8125, 7709828.125, 7709971.411899237, 7710713.424943266, 7711344.240291534, 7711911.871919258, 7716580.92665561, 7717002.645875381, 7718201.302470051, 7727608.092649232, 7778222.596726996, 7778272.792111142, 7778296.875, 7778385.5223497, 7778742.915650219, 7778744.626441119, 7778756.30970233, 7778797.155543938, 7778820.1990056, 7779201.81936777, 7779254.425213851, 7779290.305673704, 7779408.436326811, 7779552.997608913, 7779773.4375, 7779780.456028567, 7779905.914931894, 7780245.412274906, 7780394.783854738, 7780491.521359503, 7780616.814682915, 7780712.5, 7780740.625, 7780819.687585738, 7780853.125, 7780972.332384287, 7781110.793296113, 7781320.49602471, 7781393.75, 7781402.035394173, 7781415.625, 7781626.518670926, 7781697.772804812, 7781804.324364376, 7781871.875, 7781939.585597955, 7782273.4375, 7782287.36786263, 7782362.5, 7782543.144441402, 7782845.3125, 7783029.6875, 7783386.945539266, 7786059.64678095, 7786140.729269972, 7789624.715560193, 7791306.973911774, 7800985.772480078, 7807094.27715935, 7807098.4375, 7811852.05814156, 7813940.625, 7814214.0625, 7815229.212234713, 7815876.365957356, 7816206.548099119, 7816333.201261662, 7816667.093138746, 7816706.219378118, 7816974.727496688, 7817528.764623837, 7817567.755473789, 7817570.699087781, 7817630.41058611, 7817867.897686437, 7818118.115458442, 7818193.191563328, 7818391.776397618, 7818616.21002533, 7818684.470652807, 7819141.442802928, 7819230.363294713, 7819574.754698739, 7819917.1875, 7820404.6875, 7821046.143489139, 7821158.893600413, 7821532.45171272, 7822500.677262474, 7823846.3157786345, 7823948.4375, 7824077.755519907, 7824829.6875, 7825223.768178242, 7827131.760087641, 7827437.5, 7827553.080533187, 7827626.431146709, 7827642.347846819, 7827746.875, 7827809.868681488, 7827965.041368552, 7828065.689061139, 7828100.0, 7828353.866226896, 7828433.693670377, 7828654.361491196, 7829022.041268242, 7830087.920525008, 7830129.067840742, 7830781.881132179, 7830903.125, 7830940.503916692, 7831216.910092995, 7831275.300262837, 7831332.8125, 7831625.0, 7831658.464320024, 7832031.16611164, 7832485.459891197, 7832507.850400047, 7832578.119273494, 7832860.410475451, 7832897.706756739, 7833010.451794199, 7833011.840440331, 7833027.791312943, 7833146.3241359675, 7833209.443004422, 7833340.07881312, 7833470.3125, 7833473.508973791, 7833564.0625, 7833575.0, 7833593.031746533, 7833608.274804906, 7833790.455902843, 7833817.1875, 7833981.153101661, 7834075.09079223, 7834232.207498288, 7834253.453483801, 7834286.007396853, 7834289.0625, 7834349.596993975, 7834387.5, 7834429.6875, 7834483.530881228, 7834492.525152735, 7834625.375389987, 7834679.6875, 7834685.549162529, 7834729.6733502345, 7834729.6875, 7834915.594456602, 7835109.375, 7835266.780554455, 7835393.415509525, 7835394.510823041, 7835426.365604478, 7835434.996313649, 7835451.292979332, 7835471.875, 7835632.459167572, 7835734.244819349, 7835929.968740368, 7835934.440396983, 7836154.6875, 7836166.560958987, 7836171.875, 7836475.0, 7836670.3125, 7836691.995915004, 7836985.017724341, 7837226.2208439335, 7837349.360535424, 7837497.976830933, 7837529.6875, 7837719.753910892, 7837760.9375, 7837824.098469829, 7837909.375, 7837943.19896649, 7838048.4375, 7838367.010582577, 7838447.325194537, 7838580.992686221, 7838600.324372008, 7838701.186743751, 7838721.146360957, 7839056.091607455, 7839084.375, 7839340.248149211, 7839474.022143872, 7839611.531889055, 7840792.1875, 7840867.319745919, 7840909.375, 7840982.600409272, 7840982.67027163, 7841394.88012766, 7841512.5, 7841576.422052155, 7841753.301449163, 7841789.233797136, 7842110.9375, 7842114.17962653, 7842200.994175844, 7842645.977377019, 7842738.1415448245, 7842907.051647075, 7842983.409744806, 7843421.875, 7843575.0, 7843785.814486078, 7843917.338189111, 7844413.489674629, 7844477.780318749, 7844492.016438665, 7844508.478456072, 7844791.931753079, 7844862.0268677715, 7845198.432388073, 7847269.396471077, 7847732.771272397, 7847836.5846399525, 7847836.980853835, 7848005.122205784, 7848920.985378676, 7849187.6711494075, 7850297.6766760675, 7851320.16849045, 7853128.978625586, 7853915.625, 7854489.114404662, 7855674.046385116, 7856158.224249826, 7856221.437580404, 7856403.913523809, 7856546.460703566, 7857527.9516889, 7857580.311611033, 7857840.000303848, 7858039.881545758, 7858441.197962248, 7858754.6875, 7859753.27771473, 7859793.674294063, 7859821.634807556, 7860003.125, 7860884.375, 7860997.380465519, 7861322.978337394, 7861852.381102147, 7862053.984951991, 7862561.437425119, 7863151.704405102, 7863337.5, 7863341.437318055, 7864617.501126243, 7865874.0741655845, 7866184.375, 7867554.20038286, 7867703.539825494, 7868123.353598949, 7871909.155511114, 7873138.352787846, 7873818.75, 7874853.125, 7875051.328913282, 7877038.733469543, 7877495.05322848, 7878566.625799912, 7879895.671588168, 7880061.347779233, 7880377.148649681, 7881046.875, 7882024.774172212, 7882893.75, 7883741.928360852, 7886980.170884217, 7887693.75, 7888008.985090976, 7888652.442947249, 7889007.8125, 7889130.073533523, 7889603.83913006, 7890673.343104742, 7891655.644367776, 7891707.675769876, 7891922.023218101, 7892757.511090299, 7892772.422566356, 7893695.702249615, 7893741.152843803, 7894345.198037578, 7894504.6875, 7894721.285274747, 7894937.51176059, 7895132.780083445, 7898021.984042924, 7898235.490814097, 7898814.0625, 7899190.625, 7900011.699032959, 7900413.205171674, 7900715.423230059, 7900821.522531601, 7901106.813518041, 7901437.1344952155, 7901540.025888747, 7901796.511442794, 7902306.410902394, 7902491.357935337, 7903452.840298452, 7904125.242499069, 7904437.5, 7904438.246693957, 7905286.857591172, 7905303.125, 7905710.451688326, 7908413.58951534, 7908764.0625, 7909428.1420647055, 7909650.0, 7909787.5, 7910034.757339274, 7911194.550353895, 7912653.125, 7912659.77230879, 7913538.4547469085, 7914643.376584591, 7914986.069489968, 7915619.967011743, 7916021.295421819, 7916204.139245962, 7916341.546727039, 7916832.666370125, 7916892.139033153, 7917279.6875, 7917767.1875, 7918239.0625, 7918308.90114048, 7918499.5659542885, 7918744.941554449, 7918749.857129737, 7918992.804910825, 7919207.8125, 7919294.383140087, 7919679.416924177, 7919698.121979444, 7919863.728993713, 7920407.8125, 7920623.4375, 7920940.931204962, 7920989.198933146, 7921148.266618287, 7921177.726040544, 7921180.172919081, 7921967.611255099, 7922065.544030748, 7922637.663461174, 7922842.579004335, 7923248.160092936, 7923496.351150268, 7924170.3125, 7924241.3255135715, 7924390.590952723, 7924609.375, 7925221.354965087, 7925447.195095122, 7925471.440578523, 7925678.627211062, 7925810.5724861445, 7926521.309113261, 7926941.422518595, 7927113.9676459795, 7927295.260864132, 7927319.167440494, 7927335.0769864265, 7927340.740873492, 7927996.165291355, ...], [43.808050814007366, 24.321796248862082, 72.7336191228791, 6.336408761914808, 39.785593718184074, 40.55775935743039, 54.86271091151502, 16.646851026984688, 22.07800632468407, 9.412076458362995, 8.269120331393026, 14.253913476349863, 31.20160928268776, 101.04808072229187, 43.1583394770184, 127.02308561393727, 30.04484032231165, 27.332128614356062, 10.071465475418675, 33.55613684028514, 12.130545849593137, 66.09231311828181, 30.423732973205464, 26.529868044866888, 76.94754904915196, 39.81749763030513, 17.72038346890604, 20.456863114259896, 26.241011639737145, 49.86369712131307, 28.326540586669456, 67.93241146883896, 96.65406464280565, 13.568225997330748, 54.172026734241285, 10.426388609058474, 22.173796198873042, 24.137219735195302, 5.29437978936189, 13.255639618883041, 28.56730150184246, 27.03377761131257, 17.55769374728991, 15.043896302939913, 47.56998335050259, 7.303020899728583, 38.73783043590988, 85.22197935379415, 7.07789976856219, 5.530321773111828, 25.716299932385486, 37.49700195647817, 6.922990499247876, 15.276945283019035, 14.01676398476914, 38.02741055324175, 20.837378616463162, 66.39921781179963, 31.890319874090267, 7.035803108230758, 97.51697805680737, 9.630937680670915, 52.751724563443275, 101.61647164177012, 6.887743446003114, 42.24283208259546, 5.992779421250982, 12.080345011129424, 24.426335608093208, 74.0852334722002, 7.538142277478417, 5.7275726712414246, 8.41398583328819, 19.85676220610642, 12.572319169010061, 60.96578823764758, 126.99750197212168, 11.74854102847251, 22.203518500905485, 82.68730625261726, 96.8110711383499, 26.83392619209902, 17.78194398453988, 58.95445520164499, 63.13172476899293, 5.223117880167875, 71.3027325425444, 31.302110733433228, 15.361416958919008, 35.13810934117798, 41.52129020959895, 25.928647835639673, 70.29991585063252, 15.083300946134559, 93.1835016757016, 63.673693347131206, 52.898647345220205, 7.079422782483959, 44.97806416148629, 19.673791038079184, 9.371933985188551, 94.15911799493887, 40.36723754204362, 32.49100160211882, 35.74180432205163, 81.42675503011958, 62.99833419268173, 8.8257930990188, 25.85053128296612, 72.2333457650106, 71.93417497591365, 33.939651324821135, 15.950458928925329, 15.178294284283245, 65.7109901783466, 10.775406291428352, 42.16069956099703, 6.778472024105093, 72.56823575111801, 21.403565941033737, 36.235629032754915, 75.0811169359479, 14.455165832745566, 91.76209288718344, 27.352378638273628, 7.840474907632512, 9.310182178613337, 10.7190580903235, 16.622316160799937, 13.994695082588152, 8.289058188280913, 13.99663120420744, 32.43201951563831, 21.186243316390005, 50.03739216545991, 19.66150994789779, 21.603561719362705, 9.393715423984785, 23.938605620848946, 15.959446293318509, 12.160191238580463, 43.25237581496228, 42.551445536482284, 54.73188244998721, 66.7121258359663, 21.05413858697697, 13.846730129243259, 74.78732945516609, 154.88088801282274, 28.42309211368247, 106.85082350515805, 27.56315540702768, 75.56175532235477, 36.4988905269656, 13.8272969723294, 37.35206158977842, 8.27507582073938, 47.341263372125525, 12.81004491922409, 25.20711419071076, 77.3719991100769, 60.2119884152504, 50.67136329319705, 101.82156540128906, 81.6522171060139, 38.617282580678335, 13.114014288171784, 30.392392706499912, 89.99547491278052, 35.972698846830056, 7.277351496220316, 17.409388837869134, 14.303365721524445, 11.679339092789325, 34.85103761460629, 31.164525882690516, 16.83223727154632, 9.451974299698488, 16.67958578268797, 36.29782959117486, 21.852941471228245, 39.458804542333716, 66.17469150065715, 6.65618038713416, 10.811130848494917, 76.34537144055646, 9.06362392842809, 9.432367027005103, 44.203615893479395, 8.220781738135472, 46.91818131229223, 91.38806650854109, 15.0933102097317, 6.626574618178457, 40.46065832313158, 95.09380129228691, 10.367293444062945, 15.769278013568083, 10.94575179153841, 72.49891689262458, 19.110166373351742, 8.330766932720188, 18.494267556763603, 115.97879388886017, 13.481921561258687, 5.156232963051376, 5.092756510714482, 217.35932919001112, 7.738569788253677, 48.11785722963697, 32.83233252384552, 28.79531249664893, 6.223031699143251, 45.44454371622519, 23.222581049375783, 30.790298493187123, 5.173728493882518, 25.43158779991596, 19.332502342910214, 5.785482525986106, 11.718045302657734, 75.66237518186733, 26.290309400814067, 56.503699751114425, 19.946113892130136, 49.625962088389784, 102.12923984987893, 92.12866674095812, 19.62422871435058, 106.7686919590902, 22.525144865186007, 22.62707195688706, 72.18202243828001, 33.082421904603954, 37.21246536316448, 11.26098038677647, 14.027132156562258, 21.27333701389027, 22.486791936312983, 49.49956297342244, 6.7606859377924975, 16.504951120110935, 45.54511501753044, 24.06845206794033, 24.139005556134588, 14.219711696278413, 66.37341609022934, 84.06926437244954, 61.3016062370279, 48.09136582547885, 35.13938802409896, 7.4115359918936115, 31.887791745251462, 97.62768629092328, 20.211288580183222, 7.207278408211613, 37.117265063678296, 19.253143598656404, 12.908180006112913, 57.86271538809945, 59.55403089184725, 104.65814956948114, 12.89265623516696, 19.54938278856343, 40.32950997787076, 77.07161786157148, 50.2045000829229, 80.07991810291924, 23.53832078448772, 62.74098708745243, 7.286319887789313, 16.70998535932523, 57.23338576817825, 19.599018963013396, 24.575239619754278, 47.651814943719216, 9.779827972522108, 41.89427932284564, 11.739564269535405, 21.076475072404715, 8.718011384909511, 27.482907552599038, 5.501593797479285, 16.609592566134424, 18.090574053465595, 35.962213966739796, 45.029932720879586, 27.44237812854029, 16.169881285248266, 10.127931167880904, 15.413241550755957, 27.442267736911223, 15.690560170497301, 13.998270633935515, 15.265989803048273, 88.8405315972854, 7.8328873710666915, 37.47473355700866, 45.45133087347912, 5.827298183671731, 6.55249325225733, 14.42555429037506, 23.207035723945697, 13.78400937929907, 11.927543771425823, 72.90421197775518, 44.85278772935549, 10.889760014275932, 5.626509513516301, 31.922257163636495, 66.08569713700402, 6.793614087306694, 10.308956189554936, 50.466770587347405, 6.720785975304419, 34.997285486946055, 142.34890390782834, 7.291677599248342, 63.86509933312908, 24.827181546451907, 70.61738451837164, 59.75370358371564, 14.260082219847137, 42.08067519677724, 13.221312008334033, 78.38892123813338, 10.42290393382731, 6.100742928453087, 12.593556011681034, 54.98729908683396, 82.83276236778384, 10.593052024131095, 21.590740605986927, 7.931505438848977, 16.55120886146629, 31.92338561697515, 16.73536910836109, 66.27328064209738, 16.155718847464044, 23.336588075732323, 84.66668932057475, 28.44538352760577, 10.850287448782616, 55.18487179864364, 14.521849315265563, 132.74979602748175, 28.1164302017171, 15.6975230121176, 110.81221454829529, 60.1573573973713, 35.037537748465176, 22.160246580895123, 47.1096702191344, 72.66670643167423, 41.98363456135413, 117.38999330957465, 12.626381653890615, 82.47060674988478, 6.5263010780759725, 6.8117033872342745, 92.01233756468055, 36.02483910875596, 49.32754110476624, 60.092624393017466, 40.207872248810496, 30.157234205448688, 11.40512753348372, 81.15163917229795, 6.275092635462753, 41.433091121976915, 9.553312844266728, 5.846320197117405, 16.2560092200184, 50.41813382716766, 13.323074355356347, 24.594818596907487, 9.56247981121925, 16.17032357469697, 23.0378237190358, 76.32014482351305, 9.860895344590464, 46.296635694138146, 57.43289774991683, 12.255156133382176, 13.289039958673966, 12.578647663081982, 7.598486776288186, 10.41719637312582, 7.511194179247103, 7.421695595986357, 37.24628316860988, 19.15167704578026, 8.483622611226458, 44.19149629245718, 6.342615722287147, 12.05579794631189, 76.09568669369294, 52.650393517182415, 52.45261906232178, 22.806107027479264, 52.30780959467414, 49.21905413311758, 48.75069823934533, 70.84110945029204, 40.281764716088894, 11.3889567566394, 17.38041431317003, 79.2669000197636, 50.959264045193386, 13.767893515748023, 118.70717005155207, 6.8077353083758085, 35.602121856507964, 5.912717872740762, 41.66582489302315, 96.4202542658977, 33.39447322250114, 15.503026786313137, 6.870018692060683, 46.77957643220668, 127.41071733933751, 98.97092529563318, 30.473463676253278, 15.642541339833528, 30.5866716688816, 26.833490148548353, 25.542828189201703, 8.560734635870169, 78.16738182609754, 49.991571934852956, 14.206865449391344, 38.577670225256256, 18.97651018917653, 72.75812162348177, 23.57504177714545, 9.608718837968611, 23.73823625614719, 10.985216861592617, 128.71456558630555, 8.074774641521206, 109.21102033687924, 103.52145412560004, 23.342425827377337, 40.36254712557894, 13.446171516052582, 36.466350521285406, 36.49742158834035, 39.793766748424595, 8.549977720655113, 17.042464950369983, 32.06133253290649, 29.417968979261673, 12.80721285213617, 10.27425594923312, 39.731269317118375, 39.73552849289885, 48.38061566654897, 14.706147289752964, 15.223819467580624, 49.05619935870197, 51.46074142720056, 58.28378987957167, 45.675626727139075, 35.094057092065995, 13.797131193167667, 57.62828121556604, 66.40358594292387, 25.33776545620299, 19.24737251568849, 271.9684232270866, 83.3188750277608, 278.9913613110685, 33.749857036759074, 5.810222437682423, 65.44167632495376, 40.556702357183674, 53.39903652881602, 65.41035892934542, 52.800291504180386, 88.39521695218905, 9.708431982217807, 9.55335514802074, 11.968719638864915, 7.2905072329485225, 38.4283368669295, 12.8540824865998, 20.805010995114827, 58.57948787310387, 59.69282345229018, 132.45587604240836, 27.74414415111054, 75.62300766232414, 10.798878439031162, 16.254103163954127, 10.824341372966023, 62.039519137874116, 7.640289447084743, 9.410476615156611, 44.5740313687699, 28.040600772636296, 7.889016978735761, 19.730099093944492, 21.51192887229194, 5.5676606568035725, 22.770539803938775, 31.379993363917617, 14.376900806895058, 17.491793352006926, 71.62582733472945, 61.10016003439121, 42.01659218062941, 39.32581892223179, 14.131925834481311, 31.96189617230864, 61.97861765550549, 117.77641571963952, 69.771266546565, 27.154881099004264, 51.70597014427374, 5.430768531509428, 59.737746901302124, 37.43409889241386, 86.340720978899, 75.35064924469454, 65.85556081383997, 9.827758449234494, 8.118656274444394, 12.204592529991356, 47.54075298244068, 66.32971200115978, 65.25036331707865, 68.4076457119049, 7.884380140873857, 24.1627194163038, 37.537775783838654, 21.484573154656264, 65.93192458577332, 18.834756473979276, 5.839199239033482, 63.796977683626196, 33.255580402981224, 5.880061833731539, 27.933463250983554, 16.04792351581436, 18.44823078828231, 22.64186822871264, 30.36654728251048, 40.8682707069424, 32.05033068273116, 10.02319080497766, 36.59670496794934, 7.833402864022074, 7.9637414427349364, 19.892417847306046, 9.332506873213672, 5.94883185253616, 6.528032930388213, 12.712369644106747, 22.1835741580493, 5.132294574319171, 7.199846461209253, 86.20449457768063, 64.71432482116643, 75.90785775749636, 69.87805815742145, 18.90628174342152, 20.051328804417388, 5.184604652186738, 8.519026857701725, 8.491878798353797, 87.4260907486092, 7.679287856380834, 8.72102037096248, 5.030607090100693, 62.29529270747493, 92.59141527865314, 30.18855577582622, 60.33033018434828, 70.84910055014076, 30.787662314499286, 57.97119777031108, 6.684352159652739, 42.73328709170762, 41.639093804215705, 7.143007363744983, 76.88238404967088, 54.134259346772524, 23.011951050415195, 19.676308197021356, 28.858722199356446, 11.063984431928468, 27.562913438897205, 68.21407287703339, 18.957522315302647, 29.070291649289107, 48.856285101394576, 24.303575217656373, 12.161071999773412, 102.0284482316406, 21.87738712607824, 61.322620876056604, 40.158585921790156, 13.30735873956848, 34.77428921062253, 65.17425155920075, 26.301916611069217, 85.28973420947676, 5.609624791184279, 9.945966685231596, 15.799699674553654, 7.555456425539798, 31.976496216888126, 15.453514400875385, 70.56273145260415, 37.540254841483204, 47.35509140846213, 40.185373032489174, 91.13418528937875, 51.333205870278064, 57.50115439485513, 60.56442558873336, 20.222520005717346, 6.566797074249686, 102.94419392874144, 10.65730580323291, 45.7803780791602, 37.15930780925527, 57.34982312498845, 17.61220134761725, 20.15581528934306, 44.825916118892444, 5.591482593375798, 30.48833968881159, 10.2015874094735, 9.382400260446422, 70.82156921532402, 43.96503729272397, 16.02014840654154, 7.511050238364202, 56.29968338461498, 12.266258585015892, 41.43232926790789, 40.82248414327832, 18.988652512889825, 67.52265878270357, 67.9501660805002, 49.70771251546364, 32.60333884581582, 24.652045663507216, 40.74892709241806, 61.63470348127476, 6.393397999684888, 58.229994036069755, 6.32676843390803, 6.24914955514588, 11.427218907538123, 34.12101881010253, 29.27877309090377, 83.69423806600493, 12.616478547170487, 48.351075921355466, 13.717194954927072, 41.03772252548912, 44.36513719884472, 40.13034117267949, 14.46069776773689, 45.92246318936948, 5.272741422081325, 31.960045286971514, 85.18620169320131, 31.52509631185808, 9.572291876878875, 60.4204987732911, 37.266339408114504, 18.206838890276792, 35.15871983339801, 17.42046558344215, 44.55963945962105, 7.7929108763924475, 33.13979719352631, 117.10748049783157, 21.74344252813472, 10.833793324464686, 6.305610304377398, 18.25274632216223, 78.24999739297039, 11.080177808127434, 17.750682855582802, 7.300392127496271, 7.82244851590665, 11.79098374562647, 18.142981465119956, 10.013963418938378, 15.38734333849088, 8.011808013892178, 22.428236988100558, 12.184422701224936, 15.319073024121307, 5.660947846374397, 18.343645780934626, 46.03080163043508, 84.05992285163984, 89.47065828674752, 6.378224988139476, 21.68067791661634, 234.99397943257208, 20.429447404628267, 20.922000455422666, 48.2673222003704, 31.074807379580612, 59.413790825388006, 99.29867823094764, 37.7737009349383, 47.39857142107585, 93.0093623395785, 54.29641892399366, 7.6622805460882955, 86.8555339499741, 56.383322832285515, 20.697518170880606, 55.198048093129124, 28.831144678314608, 18.792669410410134, 19.85676220610642, 54.90988550831588, 6.288436221356835, 80.92886728528771, 7.39350598244684, 25.979456205575374, 134.58265485745412, 5.241769009872627, 24.043690549520136, 11.631878884627472, 70.3633727330164, 33.79483581201883, 12.326366675286678, 26.968851303863865, 79.99337706215532, 11.18746830824548, 103.92674651171595, 6.989477755788301, 10.149951748883032, 19.94661285105754, 79.76078538225043, 53.8836432321922, 55.2979866742096, 6.777159493503742, 16.977067885027893, 28.8059858907276, 18.144823141175507, 29.103862791062234, 50.26198670386727, 11.484010295225819, 8.547180398964775, 111.07663422121445, 77.33769922503625, 9.2507924131476, 79.76340275678459, 20.50592118165404, 5.047123289446961, 28.58879928529256, 100.5743987779736, 8.084370242292284, 60.85750695368185, 41.52649020519744, 8.706891052015841, 12.066780916610409, 9.670355645358562, 57.8866759902337, 16.530907057375696, 83.33514806667147, 38.934213584606525, 27.934386920999625, 42.56603789066006, 7.4623978345032995, 10.642249594605786, 18.932802758481166, 5.285043793158431, 9.918508192078528, 14.004945004457127, 69.31400798389996, 13.746522248930873, 47.61536980458583, 11.597727628313844, 55.175223880573, 51.608949001441175, 71.10038835369303, 36.70982196817691, 74.85695126016839, 44.91325465846905, 25.24196396898688, 91.7997714528262, 23.23283755923278, 12.959653017245767, 13.435070582773912, 78.73483199562, 6.031875295630786, 32.82581967870909, 105.02768660624587, 43.836531542620435, 63.29619557709913, 31.702602511815773, 6.245101929120097, 7.245045833695844, 14.043772306109577, 6.83004010908104, 32.982020092156915, 6.626264866822665, 10.888837064302837, 40.6470599000834, 62.31304833320006, 12.183626556050973, 17.822496143513956, 40.4478195557603, 88.66284563559731, 58.778759579675004, 32.362524267285885, 64.96152244055163, 5.327320992898394, 35.628696088401085, 26.02784217505698, 24.676890569399035, 19.31995476960881, 70.06319279831371, 55.41771444088431, 8.893027322110232, 163.67634241968673, 9.93995455454277, 39.49115206938889, 112.92288951040345, 41.841503370038566, 47.785161312169954, 31.50846450001465, 50.991161991509244, 6.197440724783518, 18.866621810229113, 55.9773366504101, 25.483481750029405, 19.68204027468211, 87.87270816667106, 96.45481568243815, 28.37668129079887, 14.786663517519324, 12.316254090151077, 21.304209812379856, 28.804713015073904, 16.0774886792358, 19.241442538017136, 27.905756773376417, 25.971196390973482, 20.50531713097262, 62.223916202637724, 51.148036933260244, 19.946347965455764, 25.470386820002272, 69.31768850802602, 21.85202652985239, 81.58839008378085, 118.42810082872006, 5.219619416839057, 15.654506582465155, 79.36230090734887, 14.551003632124463, 33.22214686579114, 34.53010323251751, 27.11178929422697, 5.0375193419666555, 30.743051510360228, 31.872857707763536, 17.295803923773608, 21.910383127687208, 12.704268528296666, 67.19129483522977, 12.01072232945701, 11.357002467236612, 36.062912537051815, 5.4304635086183835, 14.585846963591482, 17.208106755083577, 46.62293013196007, 87.9138584319755, 5.9763639161840425, 7.099569905056636, 24.836684183675917, 6.629633180046907, 62.1984608178668, 72.71869937907118, 66.01147638190578, 23.386867957737223, 14.037524198966501, 75.04477598657371, 96.43245727265364, 17.67322177260847, 17.77190165509482, 36.04074180502623, 5.33424248646788, 28.68321803058206, 48.01751481935465, 5.4829036079289875, 67.4627155464349, 109.5542419234845, 42.16123731199579, 47.072988190603596, 5.731774709507011, 23.714912437753096, 14.593524666899492, 33.13705368750396, 16.75402639039565, 104.83586284148919, 23.73275137092254, 8.599044409476788, 48.741439056689686, 167.22707273125857, 69.32602832182386, 45.256627526174405, 28.51926794856604, 43.62082247036534, 52.14725879337429, 49.42605914850876, 43.81011691488471, 45.34254214374433, 31.337815169894075, 37.3609254070389, 27.947347369172633, 76.22372619635479, 13.749115877495049, 126.31293238562606, 9.040356083696011, 27.586917478390447, 107.67084965371203, 16.31564049846266, 10.038924316082852, 23.94814517883648, 17.277369339294626, 103.48358652259736, 7.332617060441879, 16.487402083417898, 52.190191716970794, 95.57761053294662, 13.400648700367194, 68.27628714095547, 7.609421378561772, 89.67427097161728, 41.84642628025285, 6.316743714549048, 13.842633311320899, 46.623289332145525, 7.753549272077353, 20.481579019210518, 5.683397967163956, 71.11295273330951, 6.224513398279369, 20.734371525790312, 21.024877227250414, 10.254862540344364, 42.97081732806072, 23.578625241787453, 54.18311414190842, 42.78179219542977, 55.3333927580761, 28.645242493251168, 22.17726595993795, 37.33443576926867, 146.34562173786887, 44.895179378171974, 53.104512847709216, 40.53642548555904, 24.134014747637867, 23.554492104894553, 17.162126485150615, 33.33722689425593, 58.94500326612807, 18.41693148067344, 60.43404820054934, 116.4898118053818, 10.556552556718696, 11.981877808031081, 91.56408167741701, 69.08951989740115, 29.07762580544037, 20.416737889669825, 90.62692564580061, 38.898298778640616, 37.98861497957716, 18.509959822787145, 62.15795581533114, 73.61556128419191, 15.036233232791364, 11.667827739507619, 253.65915787769808, 48.57467488284425, 57.427044227560074, 42.70973605582346, 58.750999421847446, 32.64260028328101, 54.39945086206183, 9.711211537821805, 10.00501957177169, 15.402357118316802, 25.024630694869398, ...])
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);
([5012395.3125, 5033146.028591544, 5130259.375, 5133488.02884217, 5136484.375, 5238343.75, 5238604.496309883, 5238836.322936785, 5240387.0567010185, 5295145.406392089, 5309256.216842039, 5310529.494593849, 5389970.3125, 5394234.375, 5424095.145519045, 5427211.614415525, 5429779.6875, 5431632.749208032, 5432152.324795393, 5432426.5625, 5433203.684035489, 5433703.7360707335, 5449484.375, 5449853.0153233325, 5451010.9375, 5451811.763953752, 5452325.577695874, 5453858.764444783, 5454312.372790467, 5454360.807099395, 5455078.11489657, 5455104.719642803, 5455517.1875, 5455643.336107011, 5455750.813094671, 5455760.4371487545, 5456173.7995844465, 5456190.354665424, 5456196.981225003, 5456647.2801099345, 5456683.792581864, 5456821.794841092, 5456879.442168388, 5456959.910559795, 5457067.1875, 5457335.023445296, 5457448.4375, 5457518.75, 5457940.456689328, 5458092.130525695, 5458546.714729836, 5459765.624979704, 5460963.2495936295, 5552032.897807295, 5552446.60920546, 5553302.304157837, 5555132.244154894, 5555834.375, 5556530.548161921, 5558199.663840731, 5558420.263609434, 5559855.021704339, 5561582.8125, 5561718.75, 5578616.216995207, 5580059.375, 5580902.155638084, 5582130.221993466, 5582178.907116315, 5582264.0625, 5582295.128861619, 5583639.384661883, 5583828.358403203, 5584239.943670377, 5584491.387107058, 5584613.480274651, 5584626.5625, 5584645.676422236, 5584732.888337927, 5584984.694132168, 5585153.125, 5585555.697420875, 5585972.46279002, 5586392.185022356, 5586698.796485667, 5587327.318417293, 5587333.858728035, 5587773.177393037, 5588182.856436655, 5589389.959956266, 5589538.627230948, 5590184.9586785175, 5591243.105574985, 5591257.849209854, 5591383.782674021, 5591534.314351089, 5591572.716648855, 5591713.900165352, 5591762.5, 5592434.454749327, 5592682.860048075, 5592829.6875, 5592934.375, 5593531.444249117, 5593703.029051203, 5613729.6875, 5624651.438620283, 5626054.022194585, 5630612.348340886, 5632368.75, 5633700.0, 5633820.200328682, 5635703.366713609, 5635826.623266526, 5637175.749122926, 5637621.637277187, 5638371.875, 5658920.387001997, 5677473.4375, 5697399.490977526, 5698379.6875, 5699000.987773893, 5700735.803769264, 5704175.008437559, 5714728.15982859, 5717645.924017901, 5718703.099795844, 5720010.659320591, 5721698.381826077, 5722084.102240491, 5722440.629688403, 5722443.78317804, 5722936.9597235015, 5725110.406178851, 5726992.1875, 5727043.0444477135, 5727055.83292689, 5727164.135285786, 5727184.089566237, 5729138.088038907, 5729842.760880522, 5730206.25, 5730230.141028796, 5731231.25, 5732446.205787864, 5733431.547363628, 5735363.933909703, 5736034.375, 5736772.14139086, 5736906.6023109965, 5737549.947425694, 5763648.703768974, 5765246.875, 5766756.804030859, 5767984.048354804, 5768427.634855567, 5768634.353186977, 5768943.423084001, 5769313.25854673, 5769671.681058151, 5769696.875, 5769707.63135521, 5769831.25, 5769857.515756198, 5770634.285496519, 5770694.534019737, 5771119.733211123, 5771532.8125, 5771538.725868367, 5771544.056125504, 5771914.62413077, 5772344.058453512, 5772412.914707, 5772476.888904665, 5772937.5, 5772939.0625, 5773683.233497394, 5778361.076732983, 5778371.224221113, 5781040.625, 5784182.347831349, 5784940.3059166595, 5785007.8125, 5785015.062535584, 5788628.803153968, 5796313.924080237, 5807869.977870819, 5810503.242039514, 5813074.435022369, 5818720.185972113, 5834741.536648053, 5861271.875, 5864541.4966505645, 5865366.460603805, 5868347.525129269, 5869596.875, 5869621.327171744, 5869918.951450828, 5870067.067886107, 5870190.126835564, 5870311.629490545, 5872412.582638729, 5873847.57320608, 5873883.383033322, 5873902.680944496, 5874302.728670198, 5874309.083224321, 5874734.122069032, 5875442.54678948, 5877868.320425827, 5878011.991041173, 5878579.176751025, 5880668.392238254, 5882493.75, 5884471.532495912, 5884939.0625, 5884998.793169307, 5886264.415442439, 5899522.689704669, 5906143.357276616, 5906856.597475784, 5907215.625, 5907223.31331537, 5908768.375502367, 5912022.767053092, 5914395.3125, 5915238.9925892595, 5915445.356415925, 5918943.0397523185, 5919270.3125, 5921490.222587326, 5924738.669127747, 5924817.056487256, 5926870.184130922, 5927126.341484035, 5927989.1461232705, 5928952.862466713, 5930513.712719202, 5931794.906659322, 5933432.714103802, 5933771.860855136, 5940800.357485597, 5943414.0625, 5947635.070209366, 5955852.34680176, 5956437.296797718, 5956469.739016417, 5956473.4375, 5956496.875, 5956715.625, 5959235.295517217, 5959833.8119318085, 5960957.215070861, 5962012.184574828, 5962705.468742338, 5965483.129238525, 5965706.62281709, 5965778.92923643, 5971279.027487506, 5972612.0026305625, 5978782.8125, 5991117.1875, 5998430.583741926, 5998496.15525635, 6002290.625, 6003178.125, 6003796.559671604, 6004535.284799362, 6006691.870686375, 6007009.815335586, 6008334.9671338005, 6008376.108496758, 6008564.531964717, 6008883.661564269, 6009162.26191742, 6009401.5625, 6009537.986642969, 6009696.875, 6009790.98409511, 6010004.144695865, 6010194.4855161505, 6010316.336944336, 6010339.95870115, 6010550.378160254, 6010647.512034378, 6011078.125, 6011170.3125, 6011260.8803306455, 6011353.413823842, 6011460.187458252, 6011646.993493676, 6011971.520358499, 6011975.183557402, 6011976.64952438, 6012144.097456535, 6012807.8125, 6012813.093244351, 6012860.9375, 6013017.1875, 6013093.928384851, 6013144.154901639, 6013263.09100308, 6013287.156208847, 6013343.409109726, 6013391.082794846, 6013426.984545914, 6013493.75, 6013543.5922416765, 6013556.473145271, 6013558.756928898, 6013989.114885722, 6014076.711459576, 6014155.654382121, 6014206.25, 6014291.969680347, 6014323.865988363, 6014494.9041257575, 6014847.485267957, 6015671.810335198, 6015848.217343604, 6016246.875, 6016470.878927511, 6016716.996443339, 6016718.75, 6016752.586307878, 6017573.4375, 6017704.184374748, 6017839.183213149, 6018003.896321684, 6018034.375, 6018321.719495049, 6019051.191214619, 6019855.759732596, 6021100.824738708, 6031009.741668709, 6043135.9375, 6049844.152548891, 6050041.396800617, 6050644.908327606, 6051605.69196266, 6052173.4375, 6052554.631926307, 6052723.252456873, 6053412.5, 6053640.131461223, 6055050.663854597, 6055445.8757515075, 6055747.060150129, 6055935.736232036, 6056598.4375, 6056778.125, 6058534.506347018, 6058927.9754677, 6059429.308355917, 6059521.875, 6059800.0, 6059828.910471784, 6059965.625, 6060525.245650131, 6060668.986715349, 6062748.183690575, 6063276.17805292, 6064035.9375, 6064353.657244744, 6066067.1875, 6067093.75, 6067375.170519569, 6071665.123854441, 6071670.374728514, 6072760.259229018, 6074309.626278823, 6075686.365215313, 6076062.806841588, 6092675.0, 6096332.311414598, 6098960.700826482, 6099342.448700044, 6100878.413917038, 6101087.1420606375, 6101186.932996712, 6102364.628687486, 6102715.625, 6102798.814559382, 6102811.55610974, 6103516.748668943, 6103613.264857947, 6104115.611845313, 6104560.429824325, 6104893.488135256, 6106082.281028562, 6107193.75, 6109213.290688581, 6109814.41741163, 6110031.038752015, 6111466.199487167, 6113847.397376774, 6116600.0, 6133768.33770392, 6133969.782181407, 6136607.085593294, 6137450.0, 6142161.250176178, 6143178.89230269, 6160843.664625321, 6160868.75, 6165038.878601745, 6175798.95773477, 6181619.520390406, 6184309.336509738, 6185602.778772916, 6189957.922357355, 6190756.46757519, 6191306.027061203, 6191779.375860105, 6193047.747475644, 6194726.5625, 6197000.0, 6198412.639912609, 6210572.386086433, 6211831.25, 6218959.73708179, 6218983.755351522, 6225062.894229157, 6227968.922519844, 6236701.257615634, 6239353.033267095, 6239405.233323505, 6239766.109789367, 6239930.827543441, 6240022.485901623, 6240038.85541204, 6240223.4375, 6241228.881037318, 6241869.354470935, 6242268.965082438, 6242270.623217701, 6242370.896659201, 6242423.344385714, 6242495.376851561, 6242623.014286084, 6242757.510948374, 6243757.510693563, 6244284.042347702, 6244585.382729352, 6244872.980782821, 6245085.659301331, 6245129.6875, 6245503.125, 6245670.779457092, 6246625.726689734, 6248550.315882772, 6250257.8125, 6250272.73645629, 6250279.063010439, 6250744.353782105, 6251869.128950933, 6252184.741053121, 6252204.624348449, 6253346.947146792, 6253588.551525378, 6253817.004782677, 6254612.603036855, 6255140.311981621, 6255151.5625, 6255491.85094162, 6256682.767665102, 6256731.25, 6263926.377353648, 6266599.240970818, 6266914.005698972, 6269321.320153183, 6270872.800280252, 6271149.89911862, 6274265.574083173, 6277971.875, 6308328.125, 6320451.376894433, 6320799.3104891, 6324390.625, 6329458.659687489, 6329817.602099942, 6329839.313824688, 6331422.353765362, 6331791.231312253, 6331826.24926815, 6332593.068124228, 6334965.564501292, 6350546.040584253, 6354596.875, 6357087.3712925445, 6395434.9024624815, 6396122.124039192, 6397668.5289214505, 6400692.493945663, 6401632.609341209, 6404612.938219963, 6430943.851293821, 6431134.467059119, 6431146.875, 6433413.248394461, 6433630.414077809, 6435301.60061555, 6435985.923632732, 6437511.629994466, 6438870.076885733, 6452034.894582611, 6476159.218538423, 6547923.976887004, 6552935.554837296, 6560096.875, 6568565.625, 6587000.0, 6634654.153819867, 6638576.5625, 6680957.685668215, 6681728.125, 6782642.437708215, 7151281.9861717895, 7187721.31340315, 7192082.069835026, 7257088.516247677, 7385754.492934627, 7424021.875, 7425770.938369781, 7439573.4375, 7440986.471456866, 7476369.9808610575, 7515545.907163558, 7515685.9375, 7520192.1875, 7521973.349080992, 7524088.285804473, 7551775.715723058, 7557579.419082066, 7557581.25, 7559501.395617202, 7561662.5, 7562279.853805359, 7563358.147616727, 7563535.739877906, 7575100.0, 7576774.292365911, 7577292.156907656, 7579372.137857278, 7579644.741771241, 7579673.555961325, 7580040.313105152, 7580365.621342577, 7580881.1790141, 7581000.718619373, 7581035.69134676, 7581694.344488357, 7582539.960179208, 7585929.010528097, 7586348.438805005, 7586361.045108783, 7586764.3187975185, 7587094.572012703, 7588535.662133749, 7591418.83367768, 7598687.790062255, 7616712.30823992, 7659029.6875, 7689854.6875, 7689934.375, 7690266.382143281, 7691636.765852761, 7691827.370015681, 7694101.977636675, 7702136.306547722, 7702183.289270242, 7702245.517983995, 7702433.552637649, 7702508.71577663, 7702817.494722766, 7702848.778774591, 7702938.001176574, 7702971.093706537, 7703052.5538084665, 7703061.607323036, 7703195.3125, 7703393.340152625, 7703521.313403611, 7703550.016846068, 7703668.83137173, 7703670.3125, 7703755.61744955, 7703848.502565071, 7703938.995150437, 7703956.25, 7703981.2088462645, 7704041.464162267, 7704045.3125, 7704055.451740831, 7704173.086028268, 7704245.3125, 7704385.4378085965, 7704413.073805049, 7704439.897798862, 7704479.225178985, 7704510.7310597785, 7704581.25, 7704691.68066253, 7704785.409568734, 7705109.375, 7705142.064025612, 7705195.218976232, 7705381.1698391875, 7705581.897188536, 7705947.083300167, 7706110.803430963, 7706304.6875, 7706587.852797817, 7706769.822117407, 7707032.8125, 7707041.734325722, 7708014.0625, 7708117.592709931, 7708307.8125, 7709828.125, 7709971.411899237, 7710713.424943266, 7711344.240291534, 7711911.871919258, 7716580.92665561, 7717002.645875381, 7718201.302470051, 7727608.092649232, 7778222.596726996, 7778272.792111142, 7778296.875, 7778385.5223497, 7778742.915650219, 7778744.626441119, 7778756.30970233, 7778797.155543938, 7778820.1990056, 7779201.81936777, 7779254.425213851, 7779290.305673704, 7779408.436326811, 7779552.997608913, 7779773.4375, 7779780.456028567, 7779905.914931894, 7780245.412274906, 7780394.783854738, 7780491.521359503, 7780616.814682915, 7780712.5, 7780740.625, 7780819.687585738, 7780853.125, 7780972.332384287, 7781110.793296113, 7781320.49602471, 7781393.75, 7781402.035394173, 7781415.625, 7781626.518670926, 7781697.772804812, 7781804.324364376, 7781871.875, 7781939.585597955, 7782273.4375, 7782287.36786263, 7782362.5, 7782543.144441402, 7782845.3125, 7783029.6875, 7783386.945539266, 7786059.64678095, 7786140.729269972, 7789624.715560193, 7791306.973911774, 7800985.772480078, 7807094.27715935, 7807098.4375, 7811852.05814156, 7813940.625, 7814214.0625, 7815229.212234713, 7815876.365957356, 7816206.548099119, 7816333.201261662, 7816667.093138746, 7816706.219378118, 7816974.727496688, 7817528.764623837, 7817567.755473789, 7817570.699087781, 7817630.41058611, 7817867.897686437, 7818118.115458442, 7818193.191563328, 7818391.776397618, 7818616.21002533, 7818684.470652807, 7819141.442802928, 7819230.363294713, 7819574.754698739, 7819917.1875, 7820404.6875, 7821046.143489139, 7821158.893600413, 7821532.45171272, 7822500.677262474, 7823846.3157786345, 7823948.4375, 7824077.755519907, 7824829.6875, 7825223.768178242, 7827131.760087641, 7827437.5, 7827553.080533187, 7827626.431146709, 7827642.347846819, 7827746.875, 7827809.868681488, 7827965.041368552, 7828065.689061139, 7828100.0, 7828353.866226896, 7828433.693670377, 7828654.361491196, 7829022.041268242, 7830087.920525008, 7830129.067840742, 7830781.881132179, 7830903.125, 7830940.503916692, 7831216.910092995, 7831275.300262837, 7831332.8125, 7831625.0, 7831658.464320024, 7832031.16611164, 7832485.459891197, 7832507.850400047, 7832578.119273494, 7832860.410475451, 7832897.706756739, 7833010.451794199, 7833011.840440331, 7833027.791312943, 7833146.3241359675, 7833209.443004422, 7833340.07881312, 7833470.3125, 7833473.508973791, 7833564.0625, 7833575.0, 7833593.031746533, 7833608.274804906, 7833790.455902843, 7833817.1875, 7833981.153101661, 7834075.09079223, 7834232.207498288, 7834253.453483801, 7834286.007396853, 7834289.0625, 7834349.596993975, 7834387.5, 7834429.6875, 7834483.530881228, 7834492.525152735, 7834625.375389987, 7834679.6875, 7834685.549162529, 7834729.6733502345, 7834729.6875, 7834915.594456602, 7835109.375, 7835266.780554455, 7835393.415509525, 7835394.510823041, 7835426.365604478, 7835434.996313649, 7835451.292979332, 7835471.875, 7835632.459167572, 7835734.244819349, 7835929.968740368, 7835934.440396983, 7836154.6875, 7836166.560958987, 7836171.875, 7836475.0, 7836670.3125, 7836691.995915004, 7836985.017724341, 7837226.2208439335, 7837349.360535424, 7837497.976830933, 7837529.6875, 7837719.753910892, 7837760.9375, 7837824.098469829, 7837909.375, 7837943.19896649, 7838048.4375, 7838367.010582577, 7838447.325194537, 7838580.992686221, 7838600.324372008, 7838701.186743751, 7838721.146360957, 7839056.091607455, 7839084.375, 7839340.248149211, 7839474.022143872, 7839611.531889055, 7840792.1875, 7840867.319745919, 7840909.375, 7840982.600409272, 7840982.67027163, 7841394.88012766, 7841512.5, 7841576.422052155, 7841753.301449163, 7841789.233797136, 7842110.9375, 7842114.17962653, 7842200.994175844, 7842645.977377019, 7842738.1415448245, 7842907.051647075, 7842983.409744806, 7843421.875, 7843575.0, 7843785.814486078, 7843917.338189111, 7844413.489674629, 7844477.780318749, 7844492.016438665, 7844508.478456072, 7844791.931753079, 7844862.0268677715, 7845198.432388073, 7847269.396471077, 7847732.771272397, 7847836.5846399525, 7847836.980853835, 7848005.122205784, 7848920.985378676, 7849187.6711494075, 7850297.6766760675, 7851320.16849045, 7853128.978625586, 7853915.625, 7854489.114404662, 7855674.046385116, 7856158.224249826, 7856221.437580404, 7856403.913523809, 7856546.460703566, 7857527.9516889, 7857580.311611033, 7857840.000303848, 7858039.881545758, 7858441.197962248, 7858754.6875, 7859753.27771473, 7859793.674294063, 7859821.634807556, 7860003.125, 7860884.375, 7860997.380465519, 7861322.978337394, 7861852.381102147, 7862053.984951991, 7862561.437425119, 7863151.704405102, 7863337.5, 7863341.437318055, 7864617.501126243, 7865874.0741655845, 7866184.375, 7867554.20038286, 7867703.539825494, 7868123.353598949, 7871909.155511114, 7873138.352787846, 7873818.75, 7874853.125, 7875051.328913282, 7877038.733469543, 7877495.05322848, 7878566.625799912, 7879895.671588168, 7880061.347779233, 7880377.148649681, 7881046.875, 7882024.774172212, 7882893.75, 7883741.928360852, 7886980.170884217, 7887693.75, 7888008.985090976, 7888652.442947249, 7889007.8125, 7889130.073533523, 7889603.83913006, 7890673.343104742, 7891655.644367776, 7891707.675769876, 7891922.023218101, 7892757.511090299, 7892772.422566356, 7893695.702249615, 7893741.152843803, 7894345.198037578, 7894504.6875, 7894721.285274747, 7894937.51176059, 7895132.780083445, 7898021.984042924, 7898235.490814097, 7898814.0625, 7899190.625, 7900011.699032959, 7900413.205171674, 7900715.423230059, 7900821.522531601, 7901106.813518041, 7901437.1344952155, 7901540.025888747, 7901796.511442794, 7902306.410902394, 7902491.357935337, 7903452.840298452, 7904125.242499069, 7904437.5, 7904438.246693957, 7905286.857591172, 7905303.125, 7905710.451688326, 7908413.58951534, 7908764.0625, 7909428.1420647055, 7909650.0, 7909787.5, 7910034.757339274, 7911194.550353895, 7912653.125, 7912659.77230879, 7913538.4547469085, 7914643.376584591, 7914986.069489968, 7915619.967011743, 7916021.295421819, 7916204.139245962, 7916341.546727039, 7916832.666370125, 7916892.139033153, 7917279.6875, 7917767.1875, 7918239.0625, 7918308.90114048, 7918499.5659542885, 7918744.941554449, 7918749.857129737, 7918992.804910825, 7919207.8125, 7919294.383140087, 7919679.416924177, 7919698.121979444, 7919863.728993713, 7920407.8125, 7920623.4375, 7920940.931204962, 7920989.198933146, 7921148.266618287, 7921177.726040544, 7921180.172919081, 7921967.611255099, 7922065.544030748, 7922637.663461174, 7922842.579004335, 7923248.160092936, 7923496.351150268, 7924170.3125, 7924241.3255135715, 7924390.590952723, 7924609.375, 7925221.354965087, 7925447.195095122, 7925471.440578523, 7925678.627211062, 7925810.5724861445, 7926521.309113261, 7926941.422518595, 7927113.9676459795, 7927295.260864132, 7927319.167440494, 7927335.0769864265, 7927340.740873492, 7927996.165291355, ...], [43.808050814007366, 24.321796248862082, 72.7336191228791, 6.336408761914808, 39.785593718184074, 40.55775935743039, 54.86271091151502, 16.646851026984688, 22.07800632468407, 9.412076458362995, 8.269120331393026, 14.253913476349863, 31.20160928268776, 101.04808072229187, 43.1583394770184, 127.02308561393727, 30.04484032231165, 27.332128614356062, 10.071465475418675, 33.55613684028514, 12.130545849593137, 66.09231311828181, 30.423732973205464, 26.529868044866888, 76.94754904915196, 39.81749763030513, 17.72038346890604, 20.456863114259896, 26.241011639737145, 49.86369712131307, 28.326540586669456, 67.93241146883896, 96.65406464280565, 13.568225997330748, 54.172026734241285, 10.426388609058474, 22.173796198873042, 24.137219735195302, 5.29437978936189, 13.255639618883041, 28.56730150184246, 27.03377761131257, 17.55769374728991, 15.043896302939913, 47.56998335050259, 7.303020899728583, 38.73783043590988, 85.22197935379415, 7.07789976856219, 5.530321773111828, 25.716299932385486, 37.49700195647817, 6.922990499247876, 15.276945283019035, 14.01676398476914, 38.02741055324175, 20.837378616463162, 66.39921781179963, 31.890319874090267, 7.035803108230758, 97.51697805680737, 9.630937680670915, 52.751724563443275, 101.61647164177012, 6.887743446003114, 42.24283208259546, 5.992779421250982, 12.080345011129424, 24.426335608093208, 74.0852334722002, 7.538142277478417, 5.7275726712414246, 8.41398583328819, 19.85676220610642, 12.572319169010061, 60.96578823764758, 126.99750197212168, 11.74854102847251, 22.203518500905485, 82.68730625261726, 96.8110711383499, 26.83392619209902, 17.78194398453988, 58.95445520164499, 63.13172476899293, 5.223117880167875, 71.3027325425444, 31.302110733433228, 15.361416958919008, 35.13810934117798, 41.52129020959895, 25.928647835639673, 70.29991585063252, 15.083300946134559, 93.1835016757016, 63.673693347131206, 52.898647345220205, 7.079422782483959, 44.97806416148629, 19.673791038079184, 9.371933985188551, 94.15911799493887, 40.36723754204362, 32.49100160211882, 35.74180432205163, 81.42675503011958, 62.99833419268173, 8.8257930990188, 25.85053128296612, 72.2333457650106, 71.93417497591365, 33.939651324821135, 15.950458928925329, 15.178294284283245, 65.7109901783466, 10.775406291428352, 42.16069956099703, 6.778472024105093, 72.56823575111801, 21.403565941033737, 36.235629032754915, 75.0811169359479, 14.455165832745566, 91.76209288718344, 27.352378638273628, 7.840474907632512, 9.310182178613337, 10.7190580903235, 16.622316160799937, 13.994695082588152, 8.289058188280913, 13.99663120420744, 32.43201951563831, 21.186243316390005, 50.03739216545991, 19.66150994789779, 21.603561719362705, 9.393715423984785, 23.938605620848946, 15.959446293318509, 12.160191238580463, 43.25237581496228, 42.551445536482284, 54.73188244998721, 66.7121258359663, 21.05413858697697, 13.846730129243259, 74.78732945516609, 154.88088801282274, 28.42309211368247, 106.85082350515805, 27.56315540702768, 75.56175532235477, 36.4988905269656, 13.8272969723294, 37.35206158977842, 8.27507582073938, 47.341263372125525, 12.81004491922409, 25.20711419071076, 77.3719991100769, 60.2119884152504, 50.67136329319705, 101.82156540128906, 81.6522171060139, 38.617282580678335, 13.114014288171784, 30.392392706499912, 89.99547491278052, 35.972698846830056, 7.277351496220316, 17.409388837869134, 14.303365721524445, 11.679339092789325, 34.85103761460629, 31.164525882690516, 16.83223727154632, 9.451974299698488, 16.67958578268797, 36.29782959117486, 21.852941471228245, 39.458804542333716, 66.17469150065715, 6.65618038713416, 10.811130848494917, 76.34537144055646, 9.06362392842809, 9.432367027005103, 44.203615893479395, 8.220781738135472, 46.91818131229223, 91.38806650854109, 15.0933102097317, 6.626574618178457, 40.46065832313158, 95.09380129228691, 10.367293444062945, 15.769278013568083, 10.94575179153841, 72.49891689262458, 19.110166373351742, 8.330766932720188, 18.494267556763603, 115.97879388886017, 13.481921561258687, 5.156232963051376, 5.092756510714482, 217.35932919001112, 7.738569788253677, 48.11785722963697, 32.83233252384552, 28.79531249664893, 6.223031699143251, 45.44454371622519, 23.222581049375783, 30.790298493187123, 5.173728493882518, 25.43158779991596, 19.332502342910214, 5.785482525986106, 11.718045302657734, 75.66237518186733, 26.290309400814067, 56.503699751114425, 19.946113892130136, 49.625962088389784, 102.12923984987893, 92.12866674095812, 19.62422871435058, 106.7686919590902, 22.525144865186007, 22.62707195688706, 72.18202243828001, 33.082421904603954, 37.21246536316448, 11.26098038677647, 14.027132156562258, 21.27333701389027, 22.486791936312983, 49.49956297342244, 6.7606859377924975, 16.504951120110935, 45.54511501753044, 24.06845206794033, 24.139005556134588, 14.219711696278413, 66.37341609022934, 84.06926437244954, 61.3016062370279, 48.09136582547885, 35.13938802409896, 7.4115359918936115, 31.887791745251462, 97.62768629092328, 20.211288580183222, 7.207278408211613, 37.117265063678296, 19.253143598656404, 12.908180006112913, 57.86271538809945, 59.55403089184725, 104.65814956948114, 12.89265623516696, 19.54938278856343, 40.32950997787076, 77.07161786157148, 50.2045000829229, 80.07991810291924, 23.53832078448772, 62.74098708745243, 7.286319887789313, 16.70998535932523, 57.23338576817825, 19.599018963013396, 24.575239619754278, 47.651814943719216, 9.779827972522108, 41.89427932284564, 11.739564269535405, 21.076475072404715, 8.718011384909511, 27.482907552599038, 5.501593797479285, 16.609592566134424, 18.090574053465595, 35.962213966739796, 45.029932720879586, 27.44237812854029, 16.169881285248266, 10.127931167880904, 15.413241550755957, 27.442267736911223, 15.690560170497301, 13.998270633935515, 15.265989803048273, 88.8405315972854, 7.8328873710666915, 37.47473355700866, 45.45133087347912, 5.827298183671731, 6.55249325225733, 14.42555429037506, 23.207035723945697, 13.78400937929907, 11.927543771425823, 72.90421197775518, 44.85278772935549, 10.889760014275932, 5.626509513516301, 31.922257163636495, 66.08569713700402, 6.793614087306694, 10.308956189554936, 50.466770587347405, 6.720785975304419, 34.997285486946055, 142.34890390782834, 7.291677599248342, 63.86509933312908, 24.827181546451907, 70.61738451837164, 59.75370358371564, 14.260082219847137, 42.08067519677724, 13.221312008334033, 78.38892123813338, 10.42290393382731, 6.100742928453087, 12.593556011681034, 54.98729908683396, 82.83276236778384, 10.593052024131095, 21.590740605986927, 7.931505438848977, 16.55120886146629, 31.92338561697515, 16.73536910836109, 66.27328064209738, 16.155718847464044, 23.336588075732323, 84.66668932057475, 28.44538352760577, 10.850287448782616, 55.18487179864364, 14.521849315265563, 132.74979602748175, 28.1164302017171, 15.6975230121176, 110.81221454829529, 60.1573573973713, 35.037537748465176, 22.160246580895123, 47.1096702191344, 72.66670643167423, 41.98363456135413, 117.38999330957465, 12.626381653890615, 82.47060674988478, 6.5263010780759725, 6.8117033872342745, 92.01233756468055, 36.02483910875596, 49.32754110476624, 60.092624393017466, 40.207872248810496, 30.157234205448688, 11.40512753348372, 81.15163917229795, 6.275092635462753, 41.433091121976915, 9.553312844266728, 5.846320197117405, 16.2560092200184, 50.41813382716766, 13.323074355356347, 24.594818596907487, 9.56247981121925, 16.17032357469697, 23.0378237190358, 76.32014482351305, 9.860895344590464, 46.296635694138146, 57.43289774991683, 12.255156133382176, 13.289039958673966, 12.578647663081982, 7.598486776288186, 10.41719637312582, 7.511194179247103, 7.421695595986357, 37.24628316860988, 19.15167704578026, 8.483622611226458, 44.19149629245718, 6.342615722287147, 12.05579794631189, 76.09568669369294, 52.650393517182415, 52.45261906232178, 22.806107027479264, 52.30780959467414, 49.21905413311758, 48.75069823934533, 70.84110945029204, 40.281764716088894, 11.3889567566394, 17.38041431317003, 79.2669000197636, 50.959264045193386, 13.767893515748023, 118.70717005155207, 6.8077353083758085, 35.602121856507964, 5.912717872740762, 41.66582489302315, 96.4202542658977, 33.39447322250114, 15.503026786313137, 6.870018692060683, 46.77957643220668, 127.41071733933751, 98.97092529563318, 30.473463676253278, 15.642541339833528, 30.5866716688816, 26.833490148548353, 25.542828189201703, 8.560734635870169, 78.16738182609754, 49.991571934852956, 14.206865449391344, 38.577670225256256, 18.97651018917653, 72.75812162348177, 23.57504177714545, 9.608718837968611, 23.73823625614719, 10.985216861592617, 128.71456558630555, 8.074774641521206, 109.21102033687924, 103.52145412560004, 23.342425827377337, 40.36254712557894, 13.446171516052582, 36.466350521285406, 36.49742158834035, 39.793766748424595, 8.549977720655113, 17.042464950369983, 32.06133253290649, 29.417968979261673, 12.80721285213617, 10.27425594923312, 39.731269317118375, 39.73552849289885, 48.38061566654897, 14.706147289752964, 15.223819467580624, 49.05619935870197, 51.46074142720056, 58.28378987957167, 45.675626727139075, 35.094057092065995, 13.797131193167667, 57.62828121556604, 66.40358594292387, 25.33776545620299, 19.24737251568849, 271.9684232270866, 83.3188750277608, 278.9913613110685, 33.749857036759074, 5.810222437682423, 65.44167632495376, 40.556702357183674, 53.39903652881602, 65.41035892934542, 52.800291504180386, 88.39521695218905, 9.708431982217807, 9.55335514802074, 11.968719638864915, 7.2905072329485225, 38.4283368669295, 12.8540824865998, 20.805010995114827, 58.57948787310387, 59.69282345229018, 132.45587604240836, 27.74414415111054, 75.62300766232414, 10.798878439031162, 16.254103163954127, 10.824341372966023, 62.039519137874116, 7.640289447084743, 9.410476615156611, 44.5740313687699, 28.040600772636296, 7.889016978735761, 19.730099093944492, 21.51192887229194, 5.5676606568035725, 22.770539803938775, 31.379993363917617, 14.376900806895058, 17.491793352006926, 71.62582733472945, 61.10016003439121, 42.01659218062941, 39.32581892223179, 14.131925834481311, 31.96189617230864, 61.97861765550549, 117.77641571963952, 69.771266546565, 27.154881099004264, 51.70597014427374, 5.430768531509428, 59.737746901302124, 37.43409889241386, 86.340720978899, 75.35064924469454, 65.85556081383997, 9.827758449234494, 8.118656274444394, 12.204592529991356, 47.54075298244068, 66.32971200115978, 65.25036331707865, 68.4076457119049, 7.884380140873857, 24.1627194163038, 37.537775783838654, 21.484573154656264, 65.93192458577332, 18.834756473979276, 5.839199239033482, 63.796977683626196, 33.255580402981224, 5.880061833731539, 27.933463250983554, 16.04792351581436, 18.44823078828231, 22.64186822871264, 30.36654728251048, 40.8682707069424, 32.05033068273116, 10.02319080497766, 36.59670496794934, 7.833402864022074, 7.9637414427349364, 19.892417847306046, 9.332506873213672, 5.94883185253616, 6.528032930388213, 12.712369644106747, 22.1835741580493, 5.132294574319171, 7.199846461209253, 86.20449457768063, 64.71432482116643, 75.90785775749636, 69.87805815742145, 18.90628174342152, 20.051328804417388, 5.184604652186738, 8.519026857701725, 8.491878798353797, 87.4260907486092, 7.679287856380834, 8.72102037096248, 5.030607090100693, 62.29529270747493, 92.59141527865314, 30.18855577582622, 60.33033018434828, 70.84910055014076, 30.787662314499286, 57.97119777031108, 6.684352159652739, 42.73328709170762, 41.639093804215705, 7.143007363744983, 76.88238404967088, 54.134259346772524, 23.011951050415195, 19.676308197021356, 28.858722199356446, 11.063984431928468, 27.562913438897205, 68.21407287703339, 18.957522315302647, 29.070291649289107, 48.856285101394576, 24.303575217656373, 12.161071999773412, 102.0284482316406, 21.87738712607824, 61.322620876056604, 40.158585921790156, 13.30735873956848, 34.77428921062253, 65.17425155920075, 26.301916611069217, 85.28973420947676, 5.609624791184279, 9.945966685231596, 15.799699674553654, 7.555456425539798, 31.976496216888126, 15.453514400875385, 70.56273145260415, 37.540254841483204, 47.35509140846213, 40.185373032489174, 91.13418528937875, 51.333205870278064, 57.50115439485513, 60.56442558873336, 20.222520005717346, 6.566797074249686, 102.94419392874144, 10.65730580323291, 45.7803780791602, 37.15930780925527, 57.34982312498845, 17.61220134761725, 20.15581528934306, 44.825916118892444, 5.591482593375798, 30.48833968881159, 10.2015874094735, 9.382400260446422, 70.82156921532402, 43.96503729272397, 16.02014840654154, 7.511050238364202, 56.29968338461498, 12.266258585015892, 41.43232926790789, 40.82248414327832, 18.988652512889825, 67.52265878270357, 67.9501660805002, 49.70771251546364, 32.60333884581582, 24.652045663507216, 40.74892709241806, 61.63470348127476, 6.393397999684888, 58.229994036069755, 6.32676843390803, 6.24914955514588, 11.427218907538123, 34.12101881010253, 29.27877309090377, 83.69423806600493, 12.616478547170487, 48.351075921355466, 13.717194954927072, 41.03772252548912, 44.36513719884472, 40.13034117267949, 14.46069776773689, 45.92246318936948, 5.272741422081325, 31.960045286971514, 85.18620169320131, 31.52509631185808, 9.572291876878875, 60.4204987732911, 37.266339408114504, 18.206838890276792, 35.15871983339801, 17.42046558344215, 44.55963945962105, 7.7929108763924475, 33.13979719352631, 117.10748049783157, 21.74344252813472, 10.833793324464686, 6.305610304377398, 18.25274632216223, 78.24999739297039, 11.080177808127434, 17.750682855582802, 7.300392127496271, 7.82244851590665, 11.79098374562647, 18.142981465119956, 10.013963418938378, 15.38734333849088, 8.011808013892178, 22.428236988100558, 12.184422701224936, 15.319073024121307, 5.660947846374397, 18.343645780934626, 46.03080163043508, 84.05992285163984, 89.47065828674752, 6.378224988139476, 21.68067791661634, 234.99397943257208, 20.429447404628267, 20.922000455422666, 48.2673222003704, 31.074807379580612, 59.413790825388006, 99.29867823094764, 37.7737009349383, 47.39857142107585, 93.0093623395785, 54.29641892399366, 7.6622805460882955, 86.8555339499741, 56.383322832285515, 20.697518170880606, 55.198048093129124, 28.831144678314608, 18.792669410410134, 19.85676220610642, 54.90988550831588, 6.288436221356835, 80.92886728528771, 7.39350598244684, 25.979456205575374, 134.58265485745412, 5.241769009872627, 24.043690549520136, 11.631878884627472, 70.3633727330164, 33.79483581201883, 12.326366675286678, 26.968851303863865, 79.99337706215532, 11.18746830824548, 103.92674651171595, 6.989477755788301, 10.149951748883032, 19.94661285105754, 79.76078538225043, 53.8836432321922, 55.2979866742096, 6.777159493503742, 16.977067885027893, 28.8059858907276, 18.144823141175507, 29.103862791062234, 50.26198670386727, 11.484010295225819, 8.547180398964775, 111.07663422121445, 77.33769922503625, 9.2507924131476, 79.76340275678459, 20.50592118165404, 5.047123289446961, 28.58879928529256, 100.5743987779736, 8.084370242292284, 60.85750695368185, 41.52649020519744, 8.706891052015841, 12.066780916610409, 9.670355645358562, 57.8866759902337, 16.530907057375696, 83.33514806667147, 38.934213584606525, 27.934386920999625, 42.56603789066006, 7.4623978345032995, 10.642249594605786, 18.932802758481166, 5.285043793158431, 9.918508192078528, 14.004945004457127, 69.31400798389996, 13.746522248930873, 47.61536980458583, 11.597727628313844, 55.175223880573, 51.608949001441175, 71.10038835369303, 36.70982196817691, 74.85695126016839, 44.91325465846905, 25.24196396898688, 91.7997714528262, 23.23283755923278, 12.959653017245767, 13.435070582773912, 78.73483199562, 6.031875295630786, 32.82581967870909, 105.02768660624587, 43.836531542620435, 63.29619557709913, 31.702602511815773, 6.245101929120097, 7.245045833695844, 14.043772306109577, 6.83004010908104, 32.982020092156915, 6.626264866822665, 10.888837064302837, 40.6470599000834, 62.31304833320006, 12.183626556050973, 17.822496143513956, 40.4478195557603, 88.66284563559731, 58.778759579675004, 32.362524267285885, 64.96152244055163, 5.327320992898394, 35.628696088401085, 26.02784217505698, 24.676890569399035, 19.31995476960881, 70.06319279831371, 55.41771444088431, 8.893027322110232, 163.67634241968673, 9.93995455454277, 39.49115206938889, 112.92288951040345, 41.841503370038566, 47.785161312169954, 31.50846450001465, 50.991161991509244, 6.197440724783518, 18.866621810229113, 55.9773366504101, 25.483481750029405, 19.68204027468211, 87.87270816667106, 96.45481568243815, 28.37668129079887, 14.786663517519324, 12.316254090151077, 21.304209812379856, 28.804713015073904, 16.0774886792358, 19.241442538017136, 27.905756773376417, 25.971196390973482, 20.50531713097262, 62.223916202637724, 51.148036933260244, 19.946347965455764, 25.470386820002272, 69.31768850802602, 21.85202652985239, 81.58839008378085, 118.42810082872006, 5.219619416839057, 15.654506582465155, 79.36230090734887, 14.551003632124463, 33.22214686579114, 34.53010323251751, 27.11178929422697, 5.0375193419666555, 30.743051510360228, 31.872857707763536, 17.295803923773608, 21.910383127687208, 12.704268528296666, 67.19129483522977, 12.01072232945701, 11.357002467236612, 36.062912537051815, 5.4304635086183835, 14.585846963591482, 17.208106755083577, 46.62293013196007, 87.9138584319755, 5.9763639161840425, 7.099569905056636, 24.836684183675917, 6.629633180046907, 62.1984608178668, 72.71869937907118, 66.01147638190578, 23.386867957737223, 14.037524198966501, 75.04477598657371, 96.43245727265364, 17.67322177260847, 17.77190165509482, 36.04074180502623, 5.33424248646788, 28.68321803058206, 48.01751481935465, 5.4829036079289875, 67.4627155464349, 109.5542419234845, 42.16123731199579, 47.072988190603596, 5.731774709507011, 23.714912437753096, 14.593524666899492, 33.13705368750396, 16.75402639039565, 104.83586284148919, 23.73275137092254, 8.599044409476788, 48.741439056689686, 167.22707273125857, 69.32602832182386, 45.256627526174405, 28.51926794856604, 43.62082247036534, 52.14725879337429, 49.42605914850876, 43.81011691488471, 45.34254214374433, 31.337815169894075, 37.3609254070389, 27.947347369172633, 76.22372619635479, 13.749115877495049, 126.31293238562606, 9.040356083696011, 27.586917478390447, 107.67084965371203, 16.31564049846266, 10.038924316082852, 23.94814517883648, 17.277369339294626, 103.48358652259736, 7.332617060441879, 16.487402083417898, 52.190191716970794, 95.57761053294662, 13.400648700367194, 68.27628714095547, 7.609421378561772, 89.67427097161728, 41.84642628025285, 6.316743714549048, 13.842633311320899, 46.623289332145525, 7.753549272077353, 20.481579019210518, 5.683397967163956, 71.11295273330951, 6.224513398279369, 20.734371525790312, 21.024877227250414, 10.254862540344364, 42.97081732806072, 23.578625241787453, 54.18311414190842, 42.78179219542977, 55.3333927580761, 28.645242493251168, 22.17726595993795, 37.33443576926867, 146.34562173786887, 44.895179378171974, 53.104512847709216, 40.53642548555904, 24.134014747637867, 23.554492104894553, 17.162126485150615, 33.33722689425593, 58.94500326612807, 18.41693148067344, 60.43404820054934, 116.4898118053818, 10.556552556718696, 11.981877808031081, 91.56408167741701, 69.08951989740115, 29.07762580544037, 20.416737889669825, 90.62692564580061, 38.898298778640616, 37.98861497957716, 18.509959822787145, 62.15795581533114, 73.61556128419191, 15.036233232791364, 11.667827739507619, 253.65915787769808, 48.57467488284425, 57.427044227560074, 42.70973605582346, 58.750999421847446, 32.64260028328101, 54.39945086206183, 9.711211537821805, 10.00501957177169, 15.402357118316802, 25.024630694869398, ...])
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)