================
mesh_fit summary
================

Input file
==========

File: /home/users/mfr24/dev/pycf/examples/eryso/mesh_fit_original_g.py

#!/usr/bin/env python

from __future__ import division
import numpy as np

import pycf.cfl as cfl
from pycf.import_sljm import ImportSLJM
from pycf.cfl_util import *

t = ImportSLJM("matel/f11cf")
thfs = ImportSLJM("matel/erhfs")
#t.print_names()

MTOT = t.M0 + 0.56*t.M2 + 0.31*t.M4
PTOT = t.P2 + 0.5*t.P4 + 0.1*t.P6

hfsMTOT = thfs.M0 + 0.56*thfs.M2 + 0.31*thfs.M4
hfsMTOT.name = 'MTOT'
hfsPTOT =  thfs.P2 + 0.5*thfs.P4 + 0.1*thfs.P6
hfsPTOT.name = 'PTOT'

# Z, X, and Y magnetic fields times Bohr magnetion in cm-1/T.
mu_b = 0.466860
MZ = mu_b * t.MAGZ
MX = mu_b * t.MAGX
MY = mu_b * t.MAGY

t_list = [t.EAVG, t.F2, t.F4, t.F6, t.ALPHA, t.BETA, t.GAMMA, t.T2, t.T3, t.T4,
        t.T6, t.T7, t.T8, t.ZETA, t.C20, t.C21, t.C22, t.C40, t.C41, t.C42,
        t.C43, t.C44, t.C60, t.C61, t.C62, t.C63, t.C64, t.C65, t.C66, MTOT, PTOT, MX, MY, MZ]

thfs_list = [thfs.EAVG, thfs.F2, thfs.F4, thfs.F6, thfs.ALPHA, thfs.BETA,
        thfs.GAMMA, thfs.T2, thfs.T3, thfs.T4, thfs.T6, thfs.T7, thfs.T8,
        thfs.ZETA, thfs.C20, thfs.C21, thfs.C22, thfs.C40, thfs.C41, thfs.C42,
        thfs.C43, thfs.C44, thfs.C60, thfs.C61, thfs.C62, thfs.C63, thfs.C64,
        thfs.C65, thfs.C66, hfsMTOT, hfsPTOT, thfs.HYP, thfs.EQHYP]


coeff = {
'ALPHA':                      17.79,
'BETA' :                    -582.10,
'GAMMA':                    1800.00,
'T2'   :                     400.00,
'T3'   :                      43.00,
'T4'   :                      73.00,
'T6'   :                    -271.00,
'T7'   :                     308.00,
'T8'   :                     299.00,
'ZETA' :                    2376.00,
'MTOT' :                       3.86,
'PTOT' :                     594.00,
'MZ'   :                       0.00,
'MX'   :                       0.00,
'MY'   :                       0.00,
'EAVG'       :            35509.69,
'F2'         :            96074.10,
'F4'         :            67615.03,
'F6'         :            53196.10,
'ZETA'       :             2363.07,
'C20'        :             -232.75,
'C21'        :      531.76+355.50j,
'C22'        :       85.53-139.07j,
'C40'        :             1298.25,
'C41'        :     1065.63-315.04j,
'C42'        :      347.82+180.31j,
'C43'        :      -33.55-420.02j,
'C44'        :     -764.48+789.71j,
'C60'        :             -108.12,
'C61'        :       81.11+166.69j,
'C62'        :        210.67-9.48j,
'C63'        :      147.32+108.22j,
'C64'        :      270.51-198.38j,
'C65'        :        18.44-98.82j,
'C66'        :        10.67-22.05j,
'HYP'        :              0.0053,
'EQHYP'      :               0.044,
}

h1 = cfl.Hamiltonian(t_list)
h1.set_coeff(coeff)
(w, z) = h1.diag()
print(h1.gen_summary())

exd = np.loadtxt('eryso_site1_energy.txt', skiprows=1)

ex1 = cfl.ExData(exd)
sh1 = cfl.SpinHamiltonian(['zeeman'], S=1/2, level=17)
sh1.set_pro_data([t.MAGX, t.MAGY, t.MAGZ])

# Sun et al. excited state spin Hamiltonian (PRB 77, 085124 (2008))
ge = np.array([[1.950, -2.212, -3.584], [-2.212, 4.232, 4.986], [-3.584, 4.986, 7.888]])
# Transformation for a 180 degree rotation about the z axis (flips (0,2), (2,0), (1,2), (2,1)).
# ge = np.array([[1.950, -2.212, 3.584], [-2.212, 4.232, -4.986], [3.584, -4.986, 7.888]])
shx1 = {'zeeman': ge}
weights1 = {'energy': 0.001, 'zeeman': 12.0}

h_sh_list = [{'h': h1, 'sh': sh1, 'ex': ex1, 'shx': shx1, 'weights': weights1, 'svd_sym': True}]
# Fix: thfs_list already contains HYP and EQHYP (line 36)
h2 = cfl.Hamiltonian(thfs_list)
h2.set_coeff(coeff)


sh2 = cfl.SpinHamiltonian(['zeeman', 'hyperfine', 'quadrupole'], S=1/2, I=7/2, level=1)
sh2.set_pro_data([thfs.MAGX, thfs.MAGY, thfs.MAGZ, thfs.HYP, thfs.EQHYP], {'HYP': 0.0053, 'EQHYP':0.1})

# Longdell and Chen spin Hamiltonian parameters
g = np.array([[2.92, -2.97, -3.56],[-2.97, 8.89, 5.56], [-3.56, 5.56, 5.14]])
# Transformation for a 180 degree rotation about the z axis (flips (0,2), (2,0), (1,2), (2,1)).
# g = np.array([[2.92, -2.97, 3.56], [-2.97, 8.89, -5.56], [3.56, -5.56, 5.14]])
A = MHz2cm1(np.array([[256.03, -210.55, -360.36], [-210.55, 846.72, 615.37], [-360.36, 615.36, 705.96]]))
# Transformation for a 180 degree rotation about the z axis (flips (0,2), (2,0), (1,2), (2,1)).
# A = MHz2cm1(np.array([[256.03, -210.55, 360.36], [-210.55, 846.72, -615.37], [360.36, -615.36, 705.96]]))
Q = MHz2cm1(np.array([[5.45, -11.04, -11.90], [-11.04, -2.98, -17.24], [-11.90, -17.24, -2.48]]))
# Q (nuclear quadrupole) is not transformed by the 180 degree rotation in the same way as g and A.
shx2 = {'zeeman': g, 'hyperfine': A, 'quadrupole': Q}
weights2 = {'zeeman': 20.0, 'hyperfine': 5e5, 'quadrupole': 3e5}

h_sh_list += [{'h': h2, 'sh': sh2, 'shx': shx2, 'weights': weights2, 'svd_sym': True}]

bounds = bal_bounds(coeff, {
'EAVG' :  500.00,
'F2'   :  500.00,
'F4'   :  500.00,
'F6'   :  500.00,
'ZETA' :    5.00,
'C20'  :  1000.00,
'C21'  :  1000.00 + 1000.00j,
'C22'  :  1000.00 + 1000.00j,
'C40'  :  1300.00,
'C41'  :  1300.00 + 1300.00j,
'C42'  :  1300.00 + 1300.00j,
'C43'  :  1300.00 + 1300.00j,
'C44'  :  1300.00 + 1300.00j,
'C60'  :  500.00,
'C61'  :  500.00 + 500.00j,
'C62'  :  500.00 + 500.00j,
'C63'  :  500.00 + 500.00j,
'C64'  :  500.00 + 500.00j,
'C65'  :  500.00 + 500.00j,
'C66'  :  500.00 + 500.00j,
'HYP'  :  0.0001,
'EQHYP':  0.01,
})

stepsize = {
'EAVG' :  50.00,
'F2'   :  50.00,
'F4'   :  50.00,
'F6'   :  50.00,
'ZETA' :  0.500,
'C20'  :  100.00,
'C21'  :  100.00 + 100.00j,
'C22'  :  100.00 + 100.00j,
'C40'  :  100.00,
'C41'  :  130.00 + 130.00j,
'C42'  :  130.00 + 130.00j,
'C43'  :  130.00 + 130.00j,
'C44'  :  130.00 + 130.00j,
'C60'  :  50.00,
'C61'  :  50.00 + 50.00j,
'C62'  :  50.00 + 50.00j,
'C63'  :  50.00 + 50.00j,
'C64'  :  50.00 + 50.00j,
'C65'  :  50.00 + 50.00j,
'C66'  :  50.00 + 50.00j
}
stepsize['HYP'] = 0.00001
stepsize['EQHYP'] = 0.001


param = ['EAVG', 'ZETA', 'F2', 'F4', 'F6', 'C20', 'C21', 'C22', 'C40', 'C41', 'C42',
        'C43', 'C44', 'C60', 'C61', 'C62', 'C63', 'C64', 'C65', 'C66']

cfl_min = cfl.CFLMin('nlopt_bobyqa', xtol=1e-5, bounds=bounds, cov=False)
#cfl_min = cfl.CFLMin('basinhopping', niter=250, lmin='nlopt_bobyqa', xtol=1e-4,
#    bounds=bounds, stepsize=stepsize, step_adapt_int=20)

res = cfl.mesh_fit(param, h_sh_list, cfl_min)

print(res['summary'])

with open("mesh_fit_eryso_site1_original_g.txt", "w") as summary_file:
    summary_file.write(res['summary'])


pycf details
============

pycf revision: c8f9751  built at 2026-04-24 23:58:11
Build comment:     MFR: Updated to python 3.13.
    Added conjugation before lapack call.
    Changed MAGX and MAGY to standard signs.
    C memory fixes and other minor changes may change behaviour of some calculations.
Calculation started at: 2026-04-24 23:58:20
Calculation completed at: 2026-04-25 02:08:04

Energy level summary
====================

Lev.  Percentage                 State        Percentage                 State               Theory
----  ----------                 -----        ----------                 -----               ------
1     ( 0.17-0.39j)  18.4%   328 |0,4I15, -9> (-0.41-0.10j)  18.0%   305 |0,4I15, -7>        5.3679
2     ( 0.01+0.43j)  18.4%    31 |0,4I15,  9> ( 0.42+0.06j)  18.0%    53 |0,4I15,  7>        5.3679
3     (-0.16-0.59j)  37.2%   354 |0,4I15,-13> ( 0.40+0.10j)  17.2%   305 |0,4I15, -7>       44.1392
4     ( 0.45-0.42j)  37.2%     7 |0,4I15, 13> ( 0.40+0.13j)  17.2%    53 |0,4I15,  7>       44.1392
5     (-0.43-0.04j)  18.5%   328 |0,4I15, -9> (-0.33-0.19j)  14.7%   275 |0,4I15, -5>       82.6244
6     ( 0.29-0.32j)  18.5%    31 |0,4I15,  9> ( 0.12-0.37j)  14.7%    82 |0,4I15,  5>       82.6245
7     ( 0.62-0.22j)  43.9%   360 |0,4I15,-15> (-0.50+0.14j)  27.0%   344 |0,4I15,-11>      114.3125
8     ( 0.34+0.57j)  43.9%     2 |0,4I15, 15> (-0.30-0.43j)  27.0%    16 |0,4I15, 11>      114.3126
9     ( 0.09-0.46j)  22.0%   328 |0,4I15, -9> ( 0.44+0.12j)  20.8%   305 |0,4I15, -7>      183.1808
10    ( 0.11-0.46j)  22.0%    31 |0,4I15,  9> ( 0.45+0.08j)  20.8%    53 |0,4I15,  7>      183.1808
11    ( 0.51+0.04j)  26.5%   199 |0,4I15, -1> (-0.29+0.29j)  17.0%   305 |0,4I15, -7>      411.1450
12    (-0.09-0.51j)  26.5%   158 |0,4I15,  1> ( 0.26-0.32j)  17.0%    53 |0,4I15,  7>      411.1450
13    (-0.04-0.39j)  15.5%   158 |0,4I15,  1> ( 0.18+0.31j)  12.9%   239 |0,4I15, -3>      475.4912
14    ( 0.30+0.26j)  15.5%   199 |0,4I15, -1> (-0.15-0.33j)  12.9%   118 |0,4I15,  3>      475.4912
15    (-0.47+0.12j)  23.6%   354 |0,4I15,-13> (-0.39+0.16j)  17.8%   360 |0,4I15,-15>      506.6798
16    (-0.31-0.38j)  23.6%     7 |0,4I15, 13> ( 0.22+0.36j)  17.8%     2 |0,4I15, 15>      506.6798
17    (-0.52-0.37j)  40.0%   343 |0,4I13,-11> ( 0.14+0.44j)  20.8%   327 |0,4I13, -9>     6508.6562
18    ( 0.21+0.60j)  40.0%    15 |0,4I13, 11> ( 0.38+0.25j)  20.8%    30 |0,4I13,  9>     6508.6562
19    (-0.50-0.04j)  25.3%   353 |0,4I13,-13> ( 0.15-0.40j)  18.5%   304 |0,4I13, -7>     6546.0904
20    ( 0.29+0.41j)  25.3%     6 |0,4I13, 13> (-0.27+0.33j)  18.5%    52 |0,4I13,  7>     6546.0904
21    (-0.26+0.43j)  24.9%   327 |0,4I13, -9> ( 0.29-0.39j)  23.4%   353 |0,4I13,-13>     6605.5898
22    ( 0.45-0.22j)  24.9%    30 |0,4I13,  9> (-0.41+0.25j)  23.4%     6 |0,4I13, 13>     6605.5898
23    ( 0.54-0.20j)  33.1%   304 |0,4I13, -7> ( 0.32+0.26j)  16.8%   274 |0,4I13, -5>     6628.2202
24    ( 0.43-0.38j)  33.1%    52 |0,4I13,  7> ( 0.08+0.40j)  16.8%    81 |0,4I13,  5>     6628.2202
25    (-0.51+0.16j)  28.5%   198 |0,4I13, -1> (-0.07+0.40j)  16.3%   274 |0,4I13, -5>     6786.3913
26    ( 0.05+0.53j)  28.5%   157 |0,4I13,  1> (-0.34+0.22j)  16.3%    81 |0,4I13,  5>     6786.3913
27    (-0.41-0.13j)  18.6%   157 |0,4I13,  1> (-0.09-0.40j)  16.8%   343 |0,4I13,-11>     6846.4677
28    ( 0.02-0.43j)  18.6%   198 |0,4I13, -1> (-0.35-0.22j)  16.8%    15 |0,4I13, 11>     6846.4677
29    ( 0.08+0.45j)  21.0%   343 |0,4I13,-11> ( 0.10+0.43j)  19.9%   353 |0,4I13,-13>     6866.8939
30    (-0.43-0.16j)  21.0%    15 |0,4I13, 11> ( 0.41+0.17j)  19.9%     6 |0,4I13, 13>     6866.8939
31    (-0.16+0.61j)  39.3%   326 |0,4I11, -9> (-0.03-0.43j)  19.0%   342 |0,4I11,-11>    10189.4011
32    ( 0.32-0.54j)  39.3%    29 |0,4I11,  9> ( 0.33-0.28j)  19.0%    14 |0,4I11, 11>    10189.4011
33    (-0.49+0.13j)  25.3%   303 |0,4I11, -7> ( 0.14-0.47j)  23.8%   342 |0,4I11,-11>    10232.0383
34    ( 0.50+0.00j)  25.3%    51 |0,4I11,  7> (-0.25-0.42j)  23.8%    14 |0,4I11, 11>    10232.0383
35    ( 0.43-0.23j)  24.2%   273 |0,4I11, -5> ( 0.00-0.39j)  15.5%   303 |0,4I11, -7>    10271.8476
36    (-0.08+0.49j)  24.2%    80 |0,4I11,  5> ( 0.37-0.13j)  15.5%    51 |0,4I11,  7>    10271.8476
37    (-0.43-0.19j)  21.7%   197 |0,4I11, -1> (-0.33+0.17j)  13.8%   273 |0,4I11, -5>    10345.8919
38    (-0.31+0.35j)  21.7%   156 |0,4I11,  1> (-0.37-0.01j)  13.8%    80 |0,4I11,  5>    10345.8919
39    (-0.51+0.18j)  29.1%   197 |0,4I11, -1> ( 0.16+0.31j)  12.5%   237 |0,4I11, -3>    10385.0955
40    ( 0.44-0.31j)  29.1%   156 |0,4I11,  1> (-0.17-0.31j)  12.5%   116 |0,4I11,  3>    10385.0955
41    (-0.14+0.48j)  24.7%   326 |0,4I11, -9> (-0.11+0.45j)  21.9%   342 |0,4I11,-11>    10398.8585
42    ( 0.19-0.46j)  24.7%    29 |0,4I11,  9> (-0.20+0.42j)  21.9%    14 |0,4I11, 11>    10398.8585
43    ( 0.18-0.36j)  16.1%   272 |0,4I 9, -5> (-0.03-0.35j)  12.5%   236 |0,4I 9, -3>    12346.6983
44    ( 0.31+0.25j)  16.1%    79 |0,4I 9,  5> (-0.12-0.33j)  12.5%   115 |0,4I 9,  3>    12346.6983
45    (-0.07+0.40j)  16.5%   325 |0,4I 9, -9> ( 0.10-0.39j)  16.5%   302 |0,4I 9, -7>    12444.4607
46    (-0.34-0.22j)  16.5%    28 |0,4I 9,  9> (-0.36-0.20j)  16.5%    50 |0,4I 9,  7>    12444.4607
47    (-0.16-0.30j)  11.7%   302 |0,4I 9, -7> (-0.21+0.23j)  10.1%   236 |0,4I 9, -3>    12534.8717
48    (-0.04+0.34j)  11.7%    50 |0,4I 9,  7> (-0.28-0.14j)  10.1%   115 |0,4I 9,  3>    12534.8717
49    (-0.08+0.47j)  22.8%   325 |0,4I 9, -9> (-0.10+0.30j)   9.7%   302 |0,4I 9, -7>    12614.2655
50    (-0.44-0.19j)  22.8%    28 |0,4I 9,  9> ( 0.30+0.08j)   9.7%    50 |0,4I 9,  7>    12614.2655
51    ( 0.40-0.22j)  20.4%   196 |0,4I 9, -1> (-0.29-0.15j)  10.4%   236 |0,4I 9, -3>    12662.1598
52    (-0.45+0.05j)  20.4%   155 |0,4I 9,  1> (-0.15+0.29j)  10.4%   115 |0,4I 9,  3>    12662.1598
53    ( 0.36-0.27j)  20.4%   267 |0,4F 9, -5> ( 0.28-0.33j)  18.8%   231 |0,4F 9, -3>    15179.1594
54    (-0.09-0.44j)  20.4%    74 |0,4F 9,  5> (-0.01+0.43j)  18.8%   110 |0,4F 9,  3>    15179.1594
55    (-0.39+0.33j)  26.6%   298 |0,4F 9, -7> (-0.26+0.23j)  12.2%   302 |0,4I 9, -7>    15231.1788
56    (-0.01+0.52j)  26.6%    46 |0,4F 9,  7> (-0.02+0.35j)  12.2%    50 |0,4I 9,  7>    15231.1788
57    ( 0.28-0.24j)  13.5%   150 |0,4F 9,  1> (-0.15+0.31j)  11.9%   322 |0,4F 9, -9>    15358.0516
58    ( 0.18+0.32j)  13.5%   191 |0,4F 9, -1> ( 0.04+0.34j)  11.9%    25 |0,4F 9,  9>    15358.0516
59    ( 0.17-0.39j)  18.0%   322 |0,4F 9, -9> ( 0.06-0.33j)  11.1%   298 |0,4F 9, -7>    15377.6725
60    ( 0.40+0.14j)  18.0%    25 |0,4F 9,  9> (-0.28-0.18j)  11.1%    46 |0,4F 9,  7>    15377.6725
61    (-0.24+0.38j)  20.0%   322 |0,4F 9, -9> ( 0.31+0.16j)  12.1%   231 |0,4F 9, -3>    15493.2135
62    (-0.39+0.22j)  20.0%    25 |0,4F 9,  9> ( 0.15+0.31j)  12.1%   110 |0,4F 9,  3>    15493.2135
63    ( 0.61+0.25j)  43.0%   183 |0,4S 3, -1> ( 0.41-0.08j)  17.1%   224 |0,4S 3, -3>    18261.2547
64    ( 0.23-0.61j)  43.0%   142 |0,4S 3,  1> (-0.33+0.25j)  17.1%   103 |0,4S 3,  3>    18261.2547
65    (-0.61+0.29j)  45.2%   224 |0,4S 3, -3> ( 0.39+0.05j)  15.7%   183 |0,4S 3, -1>    18369.6236
66    ( 0.57-0.36j)  45.2%   103 |0,4S 3,  3> ( 0.17-0.36j)  15.7%   142 |0,4S 3,  1>    18369.6236
67    (-0.08-0.33j)  11.5%   289 |2,2H11, -5> (-0.07-0.30j)   9.3%   271 |0,4G11, -5>    19093.3948
68    (-0.17-0.29j)  11.5%    96 |2,2H11,  5> (-0.15-0.26j)   9.3%    78 |0,4G11,  5>    19093.3948
69    ( 0.43+0.16j)  21.0%   346 |2,2H11,-11> ( 0.38+0.14j)  16.9%   341 |0,4G11,-11>    19115.6108
70    (-0.18+0.42j)  21.0%    18 |2,2H11, 11> (-0.16+0.38j)  16.9%    13 |0,4G11, 11>    19115.6108
71    (-0.05+0.29j)   8.5%   334 |2,2H11, -9> (-0.27+0.02j)   7.2%   217 |2,2H11, -1>    19132.8071
72    ( 0.23-0.18j)   8.5%    37 |2,2H11,  9> (-0.12-0.24j)   7.2%   176 |2,2H11,  1>    19132.8071
73    (-0.10-0.35j)  13.3%   315 |2,2H11, -7> ( 0.31-0.07j)   9.9%   217 |2,2H11, -1>    19187.5882
74    (-0.26+0.25j)  13.3%    63 |2,2H11,  7> (-0.23-0.21j)   9.9%   176 |2,2H11,  1>    19187.5882
75    ( 0.24-0.22j)  10.5%   315 |2,2H11, -7> (-0.12-0.26j)   8.4%   256 |2,2H11, -3>    19212.3681
76    ( 0.15+0.28j)  10.5%    63 |2,2H11,  7> (-0.20+0.21j)   8.4%   135 |2,2H11,  3>    19212.3681
77    (-0.02-0.37j)  13.5%   334 |2,2H11, -9> (-0.13+0.31j)  11.3%   289 |2,2H11, -5>    19239.0385
78    ( 0.27-0.24j)  13.5%    37 |2,2H11,  9> (-0.13+0.31j)  11.3%    96 |2,2H11,  5>    19239.0385
79    (-0.16+0.54j)  32.0%   266 |0,4F 7, -5> (-0.46+0.28j)  28.6%   230 |0,4F 7, -3>    20415.9272
80    ( 0.54+0.16j)  32.0%    73 |0,4F 7,  5> (-0.48+0.23j)  28.6%   109 |0,4F 7,  3>    20415.9272
81    ( 0.45+0.19j)  24.2%   190 |0,4F 7, -1> (-0.14-0.43j)  20.5%   149 |0,4F 7,  1>    20460.8735
82    ( 0.49+0.03j)  24.2%   149 |0,4F 7,  1> ( 0.32-0.32j)  20.5%   190 |0,4F 7, -1>    20460.8735
83    ( 0.22-0.46j)  25.9%   297 |0,4F 7, -7> (-0.49-0.06j)  24.4%   230 |0,4F 7, -3>    20539.6083
84    ( 0.11-0.50j)  25.9%    45 |0,4F 7,  7> ( 0.43+0.25j)  24.4%   109 |0,4F 7,  3>    20539.6083
85    (-0.18-0.60j)  39.7%   297 |0,4F 7, -7> (-0.09+0.61j)  38.4%   266 |0,4F 7, -5>    20648.4241
86    ( 0.38+0.51j)  39.7%    45 |0,4F 7,  7> ( 0.55+0.29j)  38.4%    73 |0,4F 7,  5>    20648.4241
87    ( 0.10-0.47j)  23.3%   229 |0,4F 5, -3> (-0.20-0.42j)  21.4%   265 |0,4F 5, -5>    22097.1248
88    ( 0.05+0.48j)  23.3%   108 |0,4F 5,  3> ( 0.23-0.40j)  21.4%    72 |0,4F 5,  5>    22097.1248
89    (-0.49-0.34j)  35.7%   189 |0,4F 5, -1> (-0.42+0.01j)  17.9%   265 |0,4F 5, -5>    22120.8965
90    (-0.22-0.55j)  35.7%   148 |0,4F 5,  1> ( 0.11-0.41j)  17.9%    72 |0,4F 5,  5>    22120.8965
91    (-0.56+0.17j)  34.7%   265 |0,4F 5, -5> ( 0.58+0.00j)  34.0%   229 |0,4F 5, -3>    22217.3706
92    (-0.51+0.30j)  34.7%    72 |0,4F 5,  5> (-0.40+0.43j)  34.0%   108 |0,4F 5,  3>    22217.3706
93    ( 0.23+0.56j)  36.0%   188 |0,4F 3, -1> ( 0.32+0.21j)  14.6%   228 |0,4F 3, -3>    22450.3958
94    (-0.50+0.33j)  36.0%   147 |0,4F 3,  1> ( 0.38+0.00j)  14.6%   107 |0,4F 3,  3>    22450.3958
95    ( 0.09+0.61j)  38.5%   228 |0,4F 3, -3> ( 0.16-0.36j)  15.9%   188 |0,4F 3, -1>    22600.6941
96    ( 0.41+0.47j)  38.5%   107 |0,4F 3,  3> ( 0.38+0.11j)  15.9%   147 |0,4F 3,  1>    22600.6941
97    ( 0.06-0.28j)   8.1%   267 |0,4F 9, -5> (-0.06+0.25j)   6.6%   283 |1,2G 9, -5>    24349.1446
98    ( 0.11+0.26j)   8.1%    74 |0,4F 9,  5> (-0.10-0.24j)   6.6%    90 |1,2G 9,  5>    24349.1446
99    ( 0.17-0.25j)   9.0%   298 |0,4F 9, -7> (-0.15+0.23j)   7.4%   309 |1,2G 9, -7>    24480.2064
100   ( 0.30+0.02j)   9.0%    46 |0,4F 9,  7> (-0.27-0.02j)   7.4%    57 |1,2G 9,  7>    24480.2064
101   ( 0.15-0.15j)   4.7%   231 |0,4F 9, -3> ( 0.04+0.21j)   4.5%   298 |0,4F 9, -7>    24531.8609
102   ( 0.12+0.18j)   4.7%   110 |0,4F 9,  3> ( 0.07-0.20j)   4.5%    46 |0,4F 9,  7>    24531.8609
103   (-0.11+0.35j)  13.5%   322 |0,4F 9, -9> ( 0.10-0.31j)  10.5%   329 |1,2G 9, -9>    24596.2695
104   ( 0.26+0.26j)  13.5%    25 |0,4F 9,  9> (-0.23-0.23j)  10.5%    32 |1,2G 9,  9>    24596.2695
105   (-0.24-0.14j)   8.0%   191 |0,4F 9, -1> ( 0.21+0.13j)   6.2%   211 |1,2G 9, -1>    24643.2178
106   ( 0.27-0.07j)   8.0%   150 |0,4F 9,  1> (-0.24+0.06j)   6.2%   170 |1,2G 9,  1>    24643.2178
107   ( 0.39-0.14j)  17.0%   341 |0,4G11,-11> ( 0.11+0.33j)  11.8%   195 |0,4G11, -1>    26204.5939
108   (-0.32+0.26j)  17.0%    13 |0,4G11, 11> (-0.23-0.26j)  11.8%   154 |0,4G11,  1>    26204.5939
109   (-0.33+0.15j)  12.9%   235 |0,4G11, -3> ( 0.31+0.01j)   9.4%   271 |0,4G11, -5>    26220.5379
110   (-0.34-0.13j)  12.9%   114 |0,4G11,  3> (-0.30+0.03j)   9.4%    78 |0,4G11,  5>    26220.5379
111   (-0.18+0.27j)  10.5%   301 |0,4G11, -7> ( 0.23+0.20j)   9.2%   195 |0,4G11, -1>    26306.2480
112   (-0.31+0.09j)  10.5%    49 |0,4G11,  7> ( 0.12+0.28j)   9.2%   154 |0,4G11,  1>    26306.2480
113   ( 0.27+0.22j)  12.5%   301 |0,4G11, -7> ( 0.02+0.28j)   8.0%   271 |0,4G11, -5>    26442.4455
114   ( 0.33-0.12j)  12.5%    49 |0,4G11,  7> (-0.11+0.26j)   8.0%    78 |0,4G11,  5>    26442.4455
115   (-0.40+0.02j)  15.7%   301 |0,4G11, -7> ( 0.19-0.20j)   7.5%   341 |0,4G11,-11>    26474.0315
116   (-0.32-0.23j)  15.7%    49 |0,4G11,  7> ( 0.04+0.27j)   7.5%    13 |0,4G11, 11>    26474.0315
117   ( 0.01-0.43j)  18.5%   324 |0,4G11, -9> (-0.07+0.32j)  11.0%   271 |0,4G11, -5>    26535.5528
118   (-0.32+0.29j)  18.5%    27 |0,4G11,  9> ( 0.20-0.27j)  11.0%    78 |0,4G11,  5>    26535.5528
119   (-0.30-0.49j)  33.2%   357 |0,2K15,-13> (-0.14+0.39j)  17.1%   350 |0,2K15,-11>    27129.7339
120   (-0.36-0.45j)  33.2%    10 |0,2K15, 13> (-0.41-0.00j)  17.1%    22 |0,2K15, 11>    27129.7340
121   (-0.37+0.24j)  19.7%   361 |0,2K15,-15> ( 0.27+0.30j)  16.4%   350 |0,2K15,-11>    27282.2147
122   (-0.20-0.40j)  19.7%     3 |0,2K15, 15> ( 0.39-0.12j)  16.4%    22 |0,2K15, 11>    27282.2147
123   (-0.33+0.28j)  18.7%   234 |0,4G 9, -3> (-0.23-0.34j)  17.1%   323 |0,4G 9, -9>    27306.3667
124   ( 0.05+0.43j)  18.7%   113 |0,4G 9,  3> (-0.40+0.10j)  17.1%    26 |0,4G 9,  9>    27306.3667
125   ( 0.50-0.27j)  32.2%   270 |0,4G 9, -5> (-0.17+0.25j)   9.2%   194 |0,4G 9, -1>    27337.4682
126   (-0.52-0.22j)  32.2%    77 |0,4G 9,  5> ( 0.19+0.23j)   9.2%   153 |0,4G 9,  1>    27337.4682
127   (-0.29-0.27j)  15.6%   300 |0,4G 9, -7> (-0.36-0.02j)  13.2%   194 |0,4G 9, -1>    27360.8672
128   ( 0.08+0.39j)  15.6%    48 |0,4G 9,  7> ( 0.17-0.32j)  13.2%   153 |0,4G 9,  1>    27360.8672
129   (-0.47-0.16j)  24.8%   234 |0,4G 9, -3> ( 0.29+0.29j)  16.6%   300 |0,4G 9, -7>    27408.2475
130   ( 0.45+0.22j)  24.8%   113 |0,4G 9,  3> (-0.41+0.00j)  16.6%    48 |0,4G 9,  7>    27408.2475
131   (-0.42+0.02j)  17.4%   323 |0,4G 9, -9> (-0.08+0.39j)  15.9%   270 |0,4G 9, -5>    27423.2294
132   ( 0.26-0.32j)  17.4%    26 |0,4G 9,  9> ( 0.36+0.17j)  15.9%    77 |0,4G 9,  5>    27423.2294
133   (-0.48-0.09j)  23.7%   350 |0,2K15,-11> ( 0.30+0.22j)  13.5%   293 |0,2K15, -5>    27511.4080
134   (-0.07+0.48j)  23.7%    22 |0,2K15, 11> ( 0.11+0.35j)  13.5%   100 |0,2K15,  5>    27511.4080
135   ( 0.31+0.28j)  17.6%   139 |0,2K15,  3> (-0.37+0.02j)  13.8%   338 |0,2K15, -9>    27635.4357
136   (-0.02-0.42j)  17.6%   260 |0,2K15, -3> (-0.26+0.27j)  13.8%    41 |0,2K15,  9>    27635.4357
137   ( 0.46-0.10j)  22.1%   319 |0,2K15, -7> ( 0.37-0.28j)  21.6%   338 |0,2K15, -9>    27678.7074
138   ( 0.26+0.40j)  22.1%    67 |0,2K15,  7> (-0.07-0.46j)  21.6%    41 |0,2K15,  9>    27678.7074
139   ( 0.37-0.11j)  14.7%   260 |0,2K15, -3> ( 0.32+0.10j)  11.3%   180 |0,2K15,  1>    27784.9881
140   ( 0.01-0.38j)  14.7%   139 |0,2K15,  3> (-0.18-0.28j)  11.3%   221 |0,2K15, -1>    27784.9881
141   (-0.33+0.13j)  12.5%   361 |0,2K15,-15> (-0.31+0.16j)  12.2%   357 |0,2K15,-13>    27906.5159
142   ( 0.19-0.30j)  12.5%     3 |0,2K15, 15> (-0.22+0.27j)  12.2%    10 |0,2K15, 13>    27906.5159
143   (-0.24+0.10j)   6.6%   180 |0,2K15,  1> (-0.05+0.24j)   5.9%   221 |0,2K15, -1>    27942.8013
144   (-0.25-0.07j)   6.6%   221 |0,2K15, -1> ( 0.09+0.23j)   5.9%   180 |0,2K15,  1>    27942.8013
145   ( 0.12-0.33j)  12.2%   299 |0,4G 7, -7> ( 0.09-0.26j)   7.6%   308 |1,2G 7, -7>    27986.7822
146   ( 0.35+0.04j)  12.2%    47 |0,4G 7,  7> ( 0.27+0.03j)   7.6%    56 |1,2G 7,  7>    27986.7822
147   (-0.01+0.32j)  10.3%   269 |0,4G 7, -5> ( 0.16-0.26j)   9.3%   233 |0,4G 7, -3>    28094.1420
148   (-0.30+0.12j)  10.3%    76 |0,4G 7,  5> (-0.19+0.24j)   9.3%   112 |0,4G 7,  3>    28094.1420
149   (-0.21+0.21j)   8.6%   193 |0,4G 7, -1> ( 0.04+0.27j)   7.7%   299 |0,4G 7, -7>    28143.3463
150   ( 0.21+0.21j)   8.6%   152 |0,4G 7,  1> ( 0.04-0.27j)   7.7%    47 |0,4G 7,  7>    28143.3463
151   (-0.23+0.22j)  10.0%   357 |0,2K15,-13> (-0.20+0.17j)   7.0%   361 |0,2K15,-15>    28171.6914
152   (-0.30-0.10j)  10.0%    10 |0,2K15, 13> ( 0.26+0.07j)   7.0%     3 |0,2K15, 15>    28171.6914
153   (-0.45-0.17j)  23.3%   201 |0,2P 3, -1> (-0.38-0.14j)  16.4%   188 |0,4F 3, -1>    31360.0984
154   (-0.48+0.04j)  23.3%   160 |0,2P 3,  1> (-0.40+0.04j)  16.4%   147 |0,4F 3,  1>    31360.0984
155   (-0.39+0.31j)  25.0%   240 |0,2P 3, -3> (-0.31+0.25j)  16.0%   228 |0,4F 3, -3>    31546.2346
156   ( 0.49+0.08j)  25.0%   119 |0,2P 3,  3> ( 0.40+0.06j)  16.0%   107 |0,4F 3,  3>    31546.2346
157   ( 0.20+0.59j)  38.5%   349 |0,2K13,-11> ( 0.22-0.33j)  15.9%   337 |0,2K13, -9>    32409.4628
158   (-0.43-0.45j)  38.5%    21 |0,2K13, 11> (-0.40+0.05j)  15.9%    40 |0,2K13,  9>    32409.4628
159   ( 0.28-0.39j)  23.4%   356 |0,2K13,-13> (-0.43-0.17j)  21.2%   337 |0,2K13, -9>    32562.7422
160   ( 0.23+0.42j)  23.4%     9 |0,2K13, 13> (-0.45+0.11j)  21.2%    40 |0,2K13,  9>    32562.7422
161   (-0.29+0.37j)  22.4%   337 |0,2K13, -9> ( 0.32-0.16j)  12.6%   259 |0,2K13, -3>    32775.1807
162   (-0.16+0.44j)  22.4%    40 |0,2K13,  9> ( 0.03+0.35j)  12.6%   138 |0,2K13,  3>    32775.1807
163   ( 0.43-0.18j)  21.6%   318 |0,2K13, -7> ( 0.38-0.16j)  16.7%   292 |0,2K13, -5>    32840.0952
164   (-0.16-0.44j)  21.6%    66 |0,2K13,  7> ( 0.14+0.39j)  16.7%    99 |0,2K13,  5>    32840.0952
165   (-0.66-0.47j)  65.8%   200 |0,2P 1, -1> (-0.17-0.21j)   7.0%   151 |0,4G 5,  1>    32928.3933
166   ( 0.49-0.65j)  65.8%   159 |0,2P 1,  1> (-0.10+0.25j)   7.0%   192 |0,4G 5, -1>    32928.3933
167   (-0.43-0.11j)  19.6%   220 |0,2K13, -1> ( 0.13-0.28j)   9.5%   318 |0,2K13, -7>    32986.2777
168   ( 0.12+0.43j)  19.6%   179 |0,2K13,  1> (-0.27+0.14j)   9.5%    66 |0,2K13,  7>    32986.2777
169   ( 0.30-0.41j)  25.9%   268 |0,4G 5, -5> ( 0.25+0.20j)  10.3%   111 |0,4G 5,  3>    33087.9905
170   ( 0.26+0.44j)  25.9%    75 |0,4G 5,  5> ( 0.27-0.17j)  10.3%   232 |0,4G 5, -3>    33087.9905
171   (-0.38+0.12j)  15.7%   268 |0,4G 5, -5> (-0.16+0.30j)  11.4%   151 |0,4G 5,  1>    33134.7499
172   (-0.30-0.26j)  15.7%    75 |0,4G 5,  5> ( 0.03+0.34j)  11.4%   192 |0,4G 5, -1>    33134.7499
173   ( 0.23+0.25j)  11.7%   111 |0,4G 5,  3> ( 0.32+0.09j)  11.3%   151 |0,4G 5,  1>    33216.6801
174   (-0.34+0.06j)  11.7%   232 |0,4G 5, -3> ( 0.31+0.12j)  11.3%   192 |0,4G 5, -1>    33216.6801
175   ( 0.36+0.07j)  13.6%   349 |0,2K13,-11> (-0.09+0.32j)  11.2%   268 |0,4G 5, -5>    33265.4037
176   (-0.33-0.16j)  13.6%    21 |0,2K13, 11> ( 0.12-0.31j)  11.2%    75 |0,4G 5,  5>    33265.4037
177   (-0.38-0.43j)  33.6%   232 |0,4G 5, -3> ( 0.22+0.35j)  16.6%   268 |0,4G 5, -5>    33481.0516
178   ( 0.32+0.48j)  33.6%   111 |0,4G 5,  3> ( 0.28+0.30j)  16.6%    75 |0,4G 5,  5>    33481.0516
179   ( 0.28-0.26j)  14.6%   193 |0,4G 7, -1> ( 0.30+0.20j)  13.0%   269 |0,4G 7, -5>    33856.6374
180   (-0.37-0.08j)  14.6%   152 |0,4G 7,  1> (-0.15+0.33j)  13.0%    76 |0,4G 7,  5>    33856.6374
181   ( 0.36-0.13j)  14.3%   193 |0,4G 7, -1> (-0.12-0.35j)  13.3%   233 |0,4G 7, -3>    33924.4380
182   (-0.03-0.38j)  14.3%   152 |0,4G 7,  1> (-0.36+0.04j)  13.3%   112 |0,4G 7,  3>    33924.4380
183   ( 0.18-0.35j)  15.4%   233 |0,4G 7, -3> ( 0.18+0.24j)   8.7%   299 |0,4G 7, -7>    34031.7022
184   (-0.37+0.13j)  15.4%   112 |0,4G 7,  3> ( 0.21+0.21j)   8.7%    47 |0,4G 7,  7>    34031.7022
185   (-0.20-0.39j)  19.3%   269 |0,4G 7, -5> ( 0.27+0.29j)  15.6%   299 |0,4G 7, -7>    34157.8316
186   ( 0.33-0.30j)  19.3%    76 |0,4G 7,  5> ( 0.35-0.18j)  15.6%    47 |0,4G 7,  7>    34157.8316
187   (-0.15-0.51j)  28.1%   242 |1,2D 5, -3> (-0.12-0.35j)  13.7%   203 |1,2D 5, -1>    34523.1907
188   (-0.12-0.52j)  28.1%   121 |1,2D 5,  3> ( 0.07+0.36j)  13.7%   162 |1,2D 5,  1>    34523.1907
189   (-0.49+0.21j)  28.3%   276 |1,2D 5, -5> ( 0.32+0.09j)  11.1%   203 |1,2D 5, -1>    34615.0954
190   ( 0.00-0.53j)  28.3%    83 |1,2D 5,  5> ( 0.21+0.26j)  11.1%   162 |1,2D 5,  1>    34615.0954
191   ( 0.41-0.16j)  19.6%   276 |1,2D 5, -5> (-0.32-0.26j)  16.7%   242 |1,2D 5, -3>    34665.3633
192   ( 0.38-0.23j)  19.6%    83 |1,2D 5,  5> (-0.01-0.41j)  16.7%   121 |1,2D 5,  3>    34665.3633
193   ( 0.25+0.08j)   7.2%   175 |2,2H 9,  1> (-0.18+0.18j)   6.6%   288 |2,2H 9, -5>    36238.6440
194   ( 0.01+0.27j)   7.2%   216 |2,2H 9, -1> (-0.22+0.12j)   6.6%    95 |2,2H 9,  5>    36238.6440
195   ( 0.05-0.25j)   6.6%   134 |2,2H 9,  3> ( 0.14-0.20j)   5.9%   314 |2,2H 9, -7>    36290.6613
196   ( 0.16-0.20j)   6.6%   255 |2,2H 9, -3> (-0.05+0.24j)   5.9%    62 |2,2H 9,  7>    36290.6613
197   ( 0.11-0.28j)   9.1%   314 |2,2H 9, -7> ( 0.21+0.22j)   9.1%   216 |2,2H 9, -1>    36377.5040
198   ( 0.24-0.19j)   9.1%    62 |2,2H 9,  7> ( 0.27+0.13j)   9.1%   175 |2,2H 9,  1>    36377.5040
199   ( 0.06-0.38j)  14.8%   333 |2,2H 9, -9> ( 0.06-0.33j)  10.9%   329 |1,2G 9, -9>    36477.4932
200   (-0.24+0.30j)  14.8%    36 |2,2H 9,  9> (-0.21+0.26j)  10.9%    32 |1,2G 9,  9>    36477.4932
201   (-0.25-0.21j)  10.4%   314 |2,2H 9, -7> (-0.22-0.18j)   8.0%   309 |1,2G 9, -7>    36525.2410
202   ( 0.22+0.23j)  10.4%    62 |2,2H 9,  7> ( 0.19+0.21j)   8.0%    57 |1,2G 9,  7>    36525.2410
203   ( 0.33-0.29j)  19.6%   226 |0,4D 5, -3> (-0.29+0.24j)  14.4%   242 |1,2D 5, -3>    38394.3547
204   ( 0.04-0.44j)  19.6%   105 |0,4D 5,  3> (-0.02+0.38j)  14.4%   121 |1,2D 5,  3>    38394.3547
205   ( 0.43-0.18j)  21.6%   263 |0,4D 5, -5> (-0.35+0.15j)  14.6%   276 |1,2D 5, -5>    38497.2978
206   ( 0.41+0.22j)  21.6%    70 |0,4D 5,  5> (-0.33-0.19j)  14.6%    83 |1,2D 5,  5>    38497.2978
207   (-0.36+0.06j)  13.4%   226 |0,4D 5, -3> ( 0.29-0.04j)   8.7%   242 |1,2D 5, -3>    38533.5917
208   ( 0.19+0.31j)  13.4%   105 |0,4D 5,  3> (-0.16-0.25j)   8.7%   121 |1,2D 5,  3>    38533.5917
209   (-0.18+0.62j)  41.3%   296 |0,4D 7, -7> ( 0.46-0.18j)  24.9%   264 |0,4D 7, -5>    38829.4731
210   ( 0.25-0.59j)  41.3%    44 |0,4D 7,  7> (-0.25-0.43j)  24.9%    71 |0,4D 7,  5>    38829.4731
211   (-0.12+0.55j)  32.3%   296 |0,4D 7, -7> ( 0.53-0.08j)  29.1%   227 |0,4D 7, -3>    39074.5458
212   ( 0.26+0.51j)  32.3%    44 |0,4D 7,  7> (-0.54+0.06j)  29.1%   106 |0,4D 7,  3>    39074.5458
213   ( 0.53-0.16j)  30.6%   264 |0,4D 7, -5> (-0.45+0.01j)  20.7%   146 |0,4D 7,  1>    39251.8510
214   ( 0.25-0.49j)  30.6%    71 |0,4D 7,  5> ( 0.08-0.45j)  20.7%   187 |0,4D 7, -1>    39251.8510
215   ( 0.58+0.15j)  35.9%   227 |0,4D 7, -3> ( 0.51+0.04j)  25.7%   264 |0,4D 7, -5>    39460.5004
216   ( 0.01+0.60j)  35.9%   106 |0,4D 7,  3> ( 0.09-0.50j)  25.7%    71 |0,4D 7,  5>    39460.5004
217   ( 0.38+0.18j)  17.3%   335 |0,2I11, -9> (-0.01-0.36j)  13.0%   316 |0,2I11, -7>    40700.0481
218   (-0.28-0.31j)  17.3%    38 |0,2I11,  9> (-0.35+0.10j)  13.0%    64 |0,2I11,  7>    40700.0481
219   ( 0.45+0.01j)  20.0%   347 |0,2I11,-11> (-0.37-0.24j)  19.4%   363 |0,2L17,-15>    40735.3534
220   (-0.04-0.45j)  20.0%    19 |0,2I11, 11> (-0.26-0.36j)  19.4%     5 |0,2L17, 15>    40735.3534
221   ( 0.25-0.22j)  11.2%   290 |0,2I11, -5> (-0.32+0.07j)  10.7%   257 |0,2I11, -3>    40781.7750
222   (-0.04+0.33j)  11.2%    97 |0,2I11,  5> ( 0.12+0.30j)  10.7%   136 |0,2I11,  3>    40781.7750
223   ( 0.04-0.40j)  16.1%   347 |0,2I11,-11> ( 0.14-0.32j)  12.1%   335 |0,2I11, -9>    40831.1611
224   ( 0.37-0.14j)  16.1%    19 |0,2I11, 11> (-0.27+0.22j)  12.1%    38 |0,2I11,  9>    40831.1611
225   ( 0.44-0.23j)  24.4%   218 |0,2I11, -1> (-0.31+0.12j)  11.4%   290 |0,2I11, -5>    40868.1055
226   (-0.19+0.45j)  24.4%   177 |0,2I11,  1> ( 0.10-0.32j)  11.4%    97 |0,2I11,  5>    40868.1055
227   (-0.06+0.49j)  24.6%   316 |0,2I11, -7> ( 0.30+0.24j)  14.7%   335 |0,2I11, -9>    40903.3002
228   (-0.30+0.39j)  24.6%    64 |0,2I11,  7> ( 0.38+0.04j)  14.7%    38 |0,2I11,  9>    40903.3002
229   ( 0.47+0.00j)  22.1%   364 |0,2L17,-17> (-0.25+0.33j)  16.9%   352 |0,2L17,-11>    40977.2386
230   (-0.44-0.18j)  22.1%     1 |0,2L17, 17> (-0.11-0.40j)  16.9%    24 |0,2L17, 11>    40977.2386
231   ( 0.10+0.42j)  18.5%   290 |0,2I11, -5> ( 0.17+0.33j)  14.0%   257 |0,2I11, -3>    41015.6537
232   (-0.43+0.06j)  18.5%    97 |0,2I11,  5> ( 0.37+0.04j)  14.0%   136 |0,2I11,  3>    41015.6537
233   ( 0.45+0.00j)  20.2%   364 |0,2L17,-17> ( 0.41+0.16j)  19.1%   321 |0,2L17, -7>    41158.3991
234   (-0.33+0.30j)  20.2%     1 |0,2L17, 17> ( 0.19-0.39j)  19.1%    69 |0,2L17,  7>    41158.3991
235   ( 0.40+0.00j)  16.3%   364 |0,2L17,-17> ( 0.02-0.38j)  14.2%   262 |0,2L17, -3>    41315.0545
236   (-0.40-0.04j)  16.3%     1 |0,2L17, 17> (-0.01+0.38j)  14.2%   141 |0,2L17,  3>    41315.0545
237   (-0.37+0.02j)  14.0%   182 |0,2L17,  1> (-0.30+0.21j)  13.6%   321 |0,2L17, -7>    41453.1284
238   ( 0.04+0.37j)  14.0%   223 |0,2L17, -1> (-0.16+0.33j)  13.6%    69 |0,2L17,  7>    41453.1284
239   ( 0.34-0.22j)  16.9%   295 |0,2L17, -5> (-0.07+0.39j)  15.6%   340 |0,2L17, -9>    41556.7398
240   ( 0.13+0.39j)  16.9%   102 |0,2L17,  5> ( 0.19-0.34j)  15.6%    43 |0,2L17,  9>    41556.7398
241   (-0.08-0.36j)  13.6%   321 |0,2L17, -7> ( 0.28+0.21j)  12.7%   359 |0,2L17,-13>    41633.6217
242   (-0.35-0.11j)  13.6%    69 |0,2L17,  7> (-0.19-0.30j)  12.7%    12 |0,2L17, 13>    41633.6218
243   ( 0.45+0.10j)  21.1%   262 |0,2L17, -3> ( 0.45-0.02j)  20.2%   223 |0,2L17, -1>    41721.5526
244   ( 0.44-0.12j)  21.1%   141 |0,2L17,  3> (-0.45-0.00j)  20.2%   182 |0,2L17,  1>    41721.5526
245   ( 0.37+0.31j)  23.1%   352 |0,2L17,-11> ( 0.35+0.32j)  22.2%   340 |0,2L17, -9>    41815.3019
246   ( 0.36+0.32j)  23.1%    24 |0,2L17, 11> (-0.37-0.30j)  22.2%    43 |0,2L17,  9>    41815.3019
247   ( 0.06+0.58j)  33.5%   185 |0,4D 3, -1> ( 0.05+0.45j)  20.4%   202 |1,2D 3, -1>    42049.2046
248   (-0.03-0.58j)  33.5%   144 |0,4D 3,  1> (-0.03-0.45j)  20.4%   161 |1,2D 3,  1>    42049.2046
249   (-0.05+0.60j)  36.8%   225 |0,4D 3, -3> (-0.04+0.45j)  20.4%   241 |1,2D 3, -3>    42161.0383
250   ( 0.29-0.53j)  36.8%   104 |0,4D 3,  3> ( 0.22-0.40j)  20.4%   120 |1,2D 3,  3>    42161.0383
251   ( 0.45-0.15j)  22.3%   240 |0,2P 3, -3> (-0.40+0.13j)  17.7%   243 |2,2D 3, -3>    42682.3710
252   (-0.41-0.23j)  22.3%   119 |0,2P 3,  3> ( 0.37+0.20j)  17.7%   122 |2,2D 3,  3>    42682.3710
253   ( 0.14+0.43j)  20.5%   201 |0,2P 3, -1> (-0.13-0.38j)  16.4%   204 |2,2D 3, -1>    42809.2991
254   (-0.34-0.30j)  20.5%   160 |0,2P 3,  1> ( 0.30+0.27j)  16.4%   163 |2,2D 3,  1>    42809.2991
255   (-0.43+0.06j)  19.0%   317 |0,2I13, -7> ( 0.33-0.26j)  17.3%   336 |0,2I13, -9>    43020.2595
256   (-0.33-0.29j)  19.0%    65 |0,2I13,  7> (-0.13-0.39j)  17.3%    39 |0,2I13,  9>    43020.2595
257   ( 0.22+0.76j)  62.8%   355 |0,2I13,-13> ( 0.26+0.16j)   9.6%   348 |0,2I13,-11>    43145.7534
258   (-0.72+0.34j)  62.8%     8 |0,2I13, 13> ( 0.30+0.09j)   9.6%    20 |0,2I13, 11>    43145.7534
259   ( 0.36-0.20j)  17.2%   291 |0,2I13, -5> ( 0.09+0.40j)  16.7%   258 |0,2I13, -3>    43228.0801
260   ( 0.36-0.21j)  17.2%    98 |0,2I13,  5> ( 0.30+0.28j)  16.7%   137 |0,2I13,  3>    43228.0801
261   (-0.28-0.51j)  34.3%   348 |0,2I13,-11> (-0.30+0.18j)  12.3%   336 |0,2I13, -9>    43370.5443
262   ( 0.44+0.38j)  34.3%    20 |0,2I13, 11> ( 0.24-0.25j)  12.3%    39 |0,2I13,  9>    43370.5443
263   (-0.43+0.02j)  18.8%   219 |0,2I13, -1> (-0.26+0.30j)  16.0%   348 |0,2I13,-11>    43518.7348
264   (-0.22+0.37j)  18.8%   178 |0,2I13,  1> ( 0.39-0.09j)  16.0%    20 |0,2I13, 11>    43518.7348
265   ( 0.32+0.46j)  31.7%   336 |0,2I13, -9> (-0.12-0.32j)  11.3%   219 |0,2I13, -1>    43604.9398
266   (-0.35+0.44j)  31.7%    39 |0,2I13,  9> ( 0.13-0.31j)  11.3%   178 |0,2I13,  1>    43604.9398
267   (-0.04-0.52j)  26.8%   291 |0,2I13, -5> (-0.01-0.46j)  21.5%   317 |0,2I13, -7>    43815.2880
268   (-0.21+0.47j)  26.8%    98 |0,2I13,  5> ( 0.17-0.43j)  21.5%    65 |0,2I13,  7>    43815.2880
269   ( 0.86+0.32j)  84.2%   184 |0,4D 1, -1> ( 0.25+0.09j)   7.2%   200 |0,2P 1, -1>    46893.2609
270   ( 0.86+0.32j)  84.2%   143 |0,4D 1,  1> ( 0.25+0.09j)   7.2%   159 |0,2P 1,  1>    46893.2609
271   ( 0.33-0.47j)  33.4%   358 |0,2L15,-13> (-0.48+0.08j)  23.6%   351 |0,2L15,-11>    46958.6401
272   ( 0.28-0.50j)  33.4%    11 |0,2L15, 13> (-0.14-0.47j)  23.6%    23 |0,2L15, 11>    46958.6401
273   ( 0.45-0.09j)  20.6%   362 |0,2L15,-15> (-0.22+0.39j)  20.0%   339 |0,2L15, -9>    47177.6452
274   (-0.40-0.22j)  20.6%     4 |0,2L15, 15> (-0.09-0.44j)  20.0%    42 |0,2L15,  9>    47177.6452
275   (-0.53+0.04j)  27.8%   362 |0,2L15,-15> ( 0.23+0.34j)  16.6%   351 |0,2L15,-11>    47374.3966
276   ( 0.39+0.36j)  27.8%     4 |0,2L15, 15> (-0.39+0.12j)  16.6%    23 |0,2L15, 11>    47374.3966
277   ( 0.37+0.04j)  14.1%   261 |0,2L15, -3> (-0.27-0.17j)  10.2%   339 |0,2L15, -9>    47526.4996
278   ( 0.31+0.22j)  14.1%   140 |0,2L15,  3> ( 0.31+0.06j)  10.2%    42 |0,2L15,  9>    47526.4997
279   ( 0.28+0.22j)  12.4%   294 |0,2L15, -5> (-0.13+0.26j)   8.6%   312 |1,2H 9, -7>    47574.8332
280   ( 0.30-0.18j)  12.4%   101 |0,2L15,  5> (-0.09-0.28j)   8.6%    60 |1,2H 9,  7>    47574.8332
281   ( 0.06-0.32j)  10.8%   214 |1,2H 9, -1> (-0.18+0.20j)   7.2%   261 |0,2L15, -3>    47636.8085
282   ( 0.33-0.03j)  10.8%   173 |1,2H 9,  1> (-0.22+0.16j)   7.2%   140 |0,2L15,  3>    47636.8085
283   (-0.01-0.41j)  16.5%   331 |1,2H 9, -9> (-0.22+0.28j)  12.9%   253 |1,2H 9, -3>    47670.0696
284   (-0.39+0.12j)  16.5%    34 |1,2H 9,  9> (-0.20+0.30j)  12.9%   132 |1,2H 9,  3>    47670.0696
285   (-0.20-0.26j)  11.0%   261 |0,2L15, -3> ( 0.28+0.09j)   8.8%   358 |0,2L15,-13>    47704.7247
286   (-0.21-0.25j)  11.0%   140 |0,2L15,  3> (-0.03-0.30j)   8.8%    11 |0,2L15, 13>    47704.7247
287   (-0.25-0.22j)  11.1%   358 |0,2L15,-13> (-0.13-0.30j)  10.5%   331 |1,2H 9, -9>    47770.4675
288   ( 0.28-0.18j)  11.1%    11 |0,2L15, 13> (-0.18+0.27j)  10.5%    34 |1,2H 9,  9>    47770.4675
289   (-0.30-0.33j)  19.9%   312 |1,2H 9, -7> (-0.10+0.27j)   8.1%   331 |1,2H 9, -9>    47839.0091
290   (-0.09-0.44j)  19.9%    60 |1,2H 9,  7> (-0.27-0.08j)   8.1%    34 |1,2H 9,  9>    47839.0091
291   ( 0.47+0.03j)  22.4%   351 |0,2L15,-11> ( 0.33-0.07j)  11.6%   358 |0,2L15,-13>    47892.7147
292   ( 0.47+0.03j)  22.4%    23 |0,2L15, 11> (-0.32-0.11j)  11.6%    11 |0,2L15, 13>    47892.7147
293   ( 0.01-0.39j)  15.1%   320 |0,2L15, -7> ( 0.30+0.19j)  12.8%   286 |1,2H 9, -5>    48061.8437
294   (-0.19-0.34j)  15.1%    68 |0,2L15,  7> (-0.18+0.31j)  12.8%    93 |1,2H 9,  5>    48061.8437
295   (-0.14+0.32j)  12.0%   339 |0,2L15, -9> (-0.14+0.32j)  11.9%   320 |0,2L15, -7>    48138.9788
296   (-0.23+0.26j)  12.0%    42 |0,2L15,  9> ( 0.23-0.26j)  11.9%    68 |0,2L15,  7>    48138.9788
297   ( 0.43-0.13j)  20.2%   277 |2,2D 5, -5> ( 0.40-0.13j)  17.8%   263 |0,4D 5, -5>    48451.4084
298   (-0.19-0.41j)  20.2%    84 |2,2D 5,  5> (-0.18-0.38j)  17.8%    70 |0,4D 5,  5>    48451.4084
299   (-0.13+0.37j)  15.1%   205 |2,2D 5, -1> (-0.12+0.35j)  13.5%   186 |0,4D 5, -1>    48797.1324
300   ( 0.36+0.14j)  15.1%   164 |2,2D 5,  1> ( 0.34+0.13j)  13.5%   145 |0,4D 5,  1>    48797.1324
301   (-0.40+0.01j)  15.8%   244 |2,2D 5, -3> (-0.37+0.01j)  13.8%   226 |0,4D 5, -3>    48935.7226
302   ( 0.39-0.05j)  15.8%   123 |2,2D 5,  3> ( 0.37-0.04j)  13.8%   105 |0,4D 5,  3>    48935.7226
303   ( 0.25+0.31j)  15.8%   345 |1,2H11,-11> ( 0.32-0.11j)  11.4%   287 |1,2H11, -5>    50479.1175
304   (-0.15-0.37j)  15.8%    17 |1,2H11, 11> (-0.25+0.23j)  11.4%    94 |1,2H11,  5>    50479.1175
305   (-0.43-0.03j)  18.7%   345 |1,2H11,-11> ( 0.32+0.02j)  10.3%   347 |0,2I11,-11>    50622.9148
306   ( 0.03+0.43j)  18.7%    17 |1,2H11, 11> (-0.02-0.32j)  10.3%    19 |0,2I11, 11>    50622.9148
307   ( 0.33-0.06j)  11.2%   345 |1,2H11,-11> (-0.18-0.27j)  10.9%   215 |1,2H11, -1>    50679.5092
308   ( 0.00-0.34j)  11.2%    17 |1,2H11, 11> (-0.30-0.13j)  10.9%   174 |1,2H11,  1>    50679.5092
309   ( 0.05+0.46j)  21.6%   332 |1,2H11, -9> (-0.04-0.36j)  13.0%   335 |0,2I11, -9>    50918.5540
310   (-0.44-0.14j)  21.6%    35 |1,2H11,  9> ( 0.35+0.10j)  13.0%    38 |0,2I11,  9>    50918.5540
311   (-0.43+0.02j)  18.2%   313 |1,2H11, -7> (-0.17+0.32j)  13.4%   332 |1,2H11, -9>    51032.8029
312   ( 0.36-0.23j)  18.2%    61 |1,2H11,  7> (-0.32-0.17j)  13.4%    35 |1,2H11,  9>    51032.8029
313   (-0.14+0.41j)  18.6%   287 |1,2H11, -5> (-0.07+0.38j)  15.1%   254 |1,2H11, -3>    51180.0487
314   (-0.20+0.38j)  18.6%    94 |1,2H11,  5> ( 0.23-0.32j)  15.1%   133 |1,2H11,  3>    51180.0487
315   ( 0.06-0.43j)  18.9%   307 |2,2F 7, -7> ( 0.05-0.36j)  13.6%   306 |1,2F 7, -7>    53853.0807
316   ( 0.14-0.41j)  18.9%    55 |2,2F 7,  7> ( 0.12-0.35j)  13.6%    54 |1,2F 7,  7>    53853.0807
317   (-0.14+0.44j)  20.9%   307 |2,2F 7, -7> (-0.12+0.37j)  15.1%   306 |1,2F 7, -7>    53920.1004
318   ( 0.13-0.44j)  20.9%    55 |2,2F 7,  7> ( 0.11-0.37j)  15.1%    54 |1,2F 7,  7>    53920.1004
319   ( 0.34-0.01j)  11.7%   281 |2,2F 7, -5> (-0.34-0.01j)  11.6%   168 |2,2F 7,  1>    53966.3378
320   ( 0.22+0.26j)  11.7%    88 |2,2F 7,  5> ( 0.23+0.25j)  11.6%   209 |2,2F 7, -1>    53966.3378
321   ( 0.41-0.06j)  17.4%   281 |2,2F 7, -5> ( 0.40-0.10j)  17.0%   248 |2,2F 7, -3>    54000.0592
322   (-0.04+0.42j)  17.4%    88 |2,2F 7,  5> ( 0.08-0.41j)  17.0%   127 |2,2F 7,  3>    54000.0592
323   ( 0.41+0.55j)  47.3%   243 |2,2D 3, -3> (-0.01-0.42j)  17.4%   204 |2,2D 3, -1>    54768.3622
324   (-0.41-0.55j)  47.3%   122 |2,2D 3,  3> (-0.40-0.13j)  17.4%   163 |2,2D 3,  1>    54768.3622
325   ( 0.66+0.14j)  46.2%   204 |2,2D 3, -1> ( 0.40-0.18j)  19.4%   243 |2,2D 3, -3>    54990.0404
326   ( 0.68+0.07j)  46.2%   163 |2,2D 3,  1> (-0.33-0.29j)  19.4%   122 |2,2D 3,  3>    54990.0404
327   (-0.51-0.17j)  28.8%   280 |2,2F 5, -5> ( 0.33+0.37j)  24.5%   247 |2,2F 5, -3>    62544.7894
328   ( 0.38-0.38j)  28.8%    87 |2,2F 5,  5> ( 0.13-0.48j)  24.5%   126 |2,2F 5,  3>    62544.7894
329   (-0.06+0.46j)  21.6%   167 |2,2F 5,  1> ( 0.35+0.16j)  14.8%   280 |2,2F 5, -5>    62623.8575
330   (-0.27+0.38j)  21.6%   208 |2,2F 5, -1> ( 0.36+0.13j)  14.8%    87 |2,2F 5,  5>    62623.8575
331   ( 0.33+0.34j)  22.1%   247 |2,2F 5, -3> ( 0.03-0.41j)  16.6%   167 |2,2F 5,  1>    62653.3675
332   ( 0.46+0.09j)  22.1%   126 |2,2F 5,  3> (-0.32+0.25j)  16.6%   208 |2,2F 5, -1>    62653.3675
333   ( 0.04+0.51j)  25.7%   310 |2,2G 7, -7> ( 0.21-0.44j)  23.7%   284 |2,2G 7, -5>    65565.7777
334   ( 0.28+0.42j)  25.7%    58 |2,2G 7,  7> ( 0.44+0.21j)  23.7%    91 |2,2G 7,  5>    65565.7777
335   (-0.41-0.24j)  22.4%   251 |2,2G 7, -3> ( 0.32-0.25j)  16.4%   310 |2,2G 7, -7>    65728.4399
336   ( 0.06+0.47j)  22.4%   130 |2,2G 7,  3> ( 0.35-0.20j)  16.4%    58 |2,2G 7,  7>    65728.4399
337   ( 0.43+0.27j)  26.2%   212 |2,2G 7, -1> ( 0.36+0.23j)  18.4%   210 |1,2G 7, -1>    65852.8534
338   ( 0.51-0.02j)  26.2%   171 |2,2G 7,  1> ( 0.43-0.02j)  18.4%   169 |1,2G 7,  1>    65852.8534
339   ( 0.40-0.18j)  19.2%   251 |2,2G 7, -3> ( 0.36-0.25j)  19.2%   284 |2,2G 7, -5>    65898.6375
340   ( 0.30-0.32j)  19.2%   130 |2,2G 7,  3> (-0.35+0.26j)  19.2%    91 |2,2G 7,  5>    65898.6375
341   (-0.31+0.33j)  21.1%   311 |2,2G 9, -7> ( 0.01-0.45j)  20.0%   330 |2,2G 9, -9>    69511.3457
342   ( 0.45+0.11j)  21.1%    59 |2,2G 9,  7> ( 0.25+0.37j)  20.0%    33 |2,2G 9,  9>    69511.3457
343   ( 0.04-0.47j)  22.4%   330 |2,2G 9, -9> ( 0.03-0.40j)  16.2%   329 |1,2G 9, -9>    69678.7634
344   ( 0.32+0.34j)  22.4%    33 |2,2G 9,  9> ( 0.27+0.29j)  16.2%    32 |1,2G 9,  9>    69678.7635
345   ( 0.32-0.15j)  12.4%   311 |2,2G 9, -7> (-0.23-0.24j)  10.8%   252 |2,2G 9, -3>    69799.1381
346   (-0.35-0.02j)  12.4%    59 |2,2G 9,  7> ( 0.12-0.30j)  10.8%   131 |2,2G 9,  3>    69799.1381
347   ( 0.25-0.25j)  12.5%   311 |2,2G 9, -7> (-0.34+0.03j)  11.5%   213 |2,2G 9, -1>    69889.2658
348   ( 0.08+0.34j)  12.5%    59 |2,2G 9,  7> ( 0.27+0.20j)  11.5%   172 |2,2G 9,  1>    69889.2658
349   ( 0.22-0.37j)  18.7%   285 |2,2G 9, -5> ( 0.22-0.33j)  16.0%   252 |2,2G 9, -3>    70001.0523
350   ( 0.43+0.05j)  18.7%    92 |2,2G 9,  5> (-0.40-0.03j)  16.0%   131 |2,2G 9,  3>    70001.0523
351   (-0.61+0.04j)  37.3%   278 |1,2F 5, -5> ( 0.34+0.34j)  23.2%   245 |1,2F 5, -3>    91512.4804
352   ( 0.08-0.60j)  37.3%    85 |1,2F 5,  5> (-0.32-0.36j)  23.2%   124 |1,2F 5,  3>    91512.4804
353   (-0.51+0.14j)  27.5%   278 |1,2F 5, -5> ( 0.40+0.27j)  23.2%   206 |1,2F 5, -1>    91905.6275
354   (-0.17-0.50j)  27.5%    85 |1,2F 5,  5> ( 0.45+0.18j)  23.2%   165 |1,2F 5,  1>    91905.6275
355   ( 0.47+0.38j)  36.3%   245 |1,2F 5, -3> ( 0.34+0.30j)  20.7%   206 |1,2F 5, -1>    92390.2055
356   (-0.33-0.51j)  36.3%   124 |1,2F 5,  3> ( 0.26+0.37j)  20.7%   165 |1,2F 5,  1>    92390.2055
357   (-0.02-0.49j)  24.2%   306 |1,2F 7, -7> ( 0.02+0.42j)  17.4%   307 |2,2F 7, -7>    95928.3058
358   ( 0.24-0.43j)  24.2%    54 |1,2F 7,  7> (-0.20+0.37j)  17.4%    55 |2,2F 7,  7>    95928.3058
359   ( 0.12-0.43j)  20.0%   306 |1,2F 7, -7> (-0.40-0.02j)  16.2%   246 |1,2F 7, -3>    96329.2536
360   ( 0.16-0.42j)  20.0%    54 |1,2F 7,  7> ( 0.33+0.23j)  16.2%   125 |1,2F 7,  3>    96329.2536
361   ( 0.42-0.12j)  18.9%   279 |1,2F 7, -5> (-0.36+0.10j)  13.7%   281 |2,2F 7, -5>    96643.2437
362   ( 0.41+0.14j)  18.9%    86 |1,2F 7,  5> (-0.35-0.12j)  13.7%    88 |2,2F 7,  5>    96643.2437
363   (-0.47-0.02j)  22.3%   246 |1,2F 7, -3> ( 0.40+0.01j)  16.2%   248 |2,2F 7, -3>    97138.9722
364   ( 0.15-0.45j)  22.3%   125 |1,2F 7,  3> (-0.13+0.38j)  16.2%   127 |2,2F 7,  3>    97138.9722
Label key: TSLJM


Hamiltonian 0 summary
=====================

Lev.  Percentage                 State        Percentage                 State               Theory     Experiment    Difference
----  ----------                 -----        ----------                 -----               ------     ----------    ----------
1     ( 0.17-0.39j)  18.4%   328 |0,4I15, -9> (-0.41-0.10j)  18.0%   305 |0,4I15, -7>        5.3679         0.0000       -5.3679
3     (-0.16-0.59j)  37.2%   354 |0,4I15,-13> ( 0.40+0.10j)  17.2%   305 |0,4I15, -7>       44.1392        42.0000       -2.1392
5     (-0.43-0.04j)  18.5%   328 |0,4I15, -9> (-0.33-0.19j)  14.7%   275 |0,4I15, -5>       82.6244        86.0000        3.3756
7     ( 0.62-0.22j)  43.9%   360 |0,4I15,-15> (-0.50+0.14j)  27.0%   344 |0,4I15,-11>      114.3125       104.0000      -10.3125
9     ( 0.09-0.46j)  22.0%   328 |0,4I15, -9> ( 0.44+0.12j)  20.8%   305 |0,4I15, -7>      183.1808       172.0000      -11.1808
11    ( 0.51+0.04j)  26.5%   199 |0,4I15, -1> (-0.29+0.29j)  17.0%   305 |0,4I15, -7>      411.1450       424.0000       12.8550
13    (-0.04-0.39j)  15.5%   158 |0,4I15,  1> ( 0.18+0.31j)  12.9%   239 |0,4I15, -3>      475.4912       481.0000        5.5088
15    (-0.47+0.12j)  23.6%   354 |0,4I15,-13> (-0.39+0.16j)  17.8%   360 |0,4I15,-15>      506.6798       513.0000        6.3202
17    (-0.52-0.37j)  40.0%   343 |0,4I13,-11> ( 0.14+0.44j)  20.8%   327 |0,4I13, -9>     6508.6562      6507.0000       -1.6562
19    (-0.50-0.04j)  25.3%   353 |0,4I13,-13> ( 0.15-0.40j)  18.5%   304 |0,4I13, -7>     6546.0904      6547.0000        0.9096
21    (-0.26+0.43j)  24.9%   327 |0,4I13, -9> ( 0.29-0.39j)  23.4%   353 |0,4I13,-13>     6605.5898      6596.5000       -9.0898
23    ( 0.54-0.20j)  33.1%   304 |0,4I13, -7> ( 0.32+0.26j)  16.8%   274 |0,4I13, -5>     6628.2202      6623.0000       -5.2202
25    (-0.51+0.16j)  28.5%   198 |0,4I13, -1> (-0.07+0.40j)  16.3%   274 |0,4I13, -5>     6786.3913      6798.0000       11.6087
27    (-0.41-0.13j)  18.6%   157 |0,4I13,  1> (-0.09-0.40j)  16.8%   343 |0,4I13,-11>     6846.4677      6852.0000        5.5323
29    ( 0.08+0.45j)  21.0%   343 |0,4I13,-11> ( 0.10+0.43j)  19.9%   353 |0,4I13,-13>     6866.8939      6871.0000        4.1061
31    (-0.16+0.61j)  39.3%   326 |0,4I11, -9> (-0.03-0.43j)  19.0%   342 |0,4I11,-11>    10189.4011     10193.0000        3.5989
33    (-0.49+0.13j)  25.3%   303 |0,4I11, -7> ( 0.14-0.47j)  23.8%   342 |0,4I11,-11>    10232.0383     10271.0000       38.9617
35    ( 0.43-0.23j)  24.2%   273 |0,4I11, -5> ( 0.00-0.39j)  15.5%   303 |0,4I11, -7>    10271.8476     10292.0000       20.1524
37    (-0.43-0.19j)  21.7%   197 |0,4I11, -1> (-0.33+0.17j)  13.8%   273 |0,4I11, -5>    10345.8919     10308.0000      -37.8919
39    (-0.51+0.18j)  29.1%   197 |0,4I11, -1> ( 0.16+0.31j)  12.5%   237 |0,4I11, -3>    10385.0955     10369.0000      -16.0955
41    (-0.14+0.48j)  24.7%   326 |0,4I11, -9> (-0.11+0.45j)  21.9%   342 |0,4I11,-11>    10398.8585     10383.0000      -15.8585
43    ( 0.18-0.36j)  16.1%   272 |0,4I 9, -5> (-0.03-0.35j)  12.5%   236 |0,4I 9, -3>    12346.6983     12359.5000       12.8017
45    (-0.07+0.40j)  16.5%   325 |0,4I 9, -9> ( 0.10-0.39j)  16.5%   302 |0,4I 9, -7>    12444.4607     12459.5000       15.0393
47    (-0.16-0.30j)  11.7%   302 |0,4I 9, -7> (-0.21+0.23j)  10.1%   236 |0,4I 9, -3>    12534.8717     12527.5000       -7.3717
49    (-0.08+0.47j)  22.8%   325 |0,4I 9, -9> (-0.10+0.30j)   9.7%   302 |0,4I 9, -7>    12614.2655     12612.0000       -2.2655
51    ( 0.40-0.22j)  20.4%   196 |0,4I 9, -1> (-0.29-0.15j)  10.4%   236 |0,4I 9, -3>    12662.1598     12649.5000      -12.6598
53    ( 0.36-0.27j)  20.4%   267 |0,4F 9, -5> ( 0.28-0.33j)  18.8%   231 |0,4F 9, -3>    15179.1594     15169.0000      -10.1594
55    (-0.39+0.33j)  26.6%   298 |0,4F 9, -7> (-0.26+0.23j)  12.2%   302 |0,4I 9, -7>    15231.1788     15220.5000      -10.6788
57    ( 0.28-0.24j)  13.5%   150 |0,4F 9,  1> (-0.15+0.31j)  11.9%   322 |0,4F 9, -9>    15358.0516     15360.5000        2.4484
59    ( 0.17-0.39j)  18.0%   322 |0,4F 9, -9> ( 0.06-0.33j)  11.1%   298 |0,4F 9, -7>    15377.6725     15381.5000        3.8275
61    (-0.24+0.38j)  20.0%   322 |0,4F 9, -9> ( 0.31+0.16j)  12.1%   231 |0,4F 9, -3>    15493.2135     15498.0000        4.7865
63    ( 0.61+0.25j)  43.0%   183 |0,4S 3, -1> ( 0.41-0.08j)  17.1%   224 |0,4S 3, -3>    18261.2547     18267.0000        5.7453
65    (-0.61+0.29j)  45.2%   224 |0,4S 3, -3> ( 0.39+0.05j)  15.7%   183 |0,4S 3, -1>    18369.6236     18372.0000        2.3764
67    (-0.08-0.33j)  11.5%   289 |2,2H11, -5> (-0.07-0.30j)   9.3%   271 |0,4G11, -5>    19093.3948     19091.0000       -2.3948
69    ( 0.43+0.16j)  21.0%   346 |2,2H11,-11> ( 0.38+0.14j)  16.9%   341 |0,4G11,-11>    19115.6108     19116.0000        0.3892

Label key: TSLJM
weighted chi2 = 5.6060
sigma = 14.6838
weighting factor = 1.00e-03


Spin Hamiltonian 0 summary
==========================

zeeman interaction
------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 1.99427  2.24151  3.55235]  [ 1.95000  2.21200  3.58400]  [-0.04427 -0.02951  0.03165]
[ 2.24151  4.21993  4.99167]  [ 2.21200  4.23200  4.98600]  [-0.02951  0.01207 -0.00567]
[ 3.55235  4.99167  7.91159]  [ 3.58400  4.98600  7.88800]  [ 0.03165 -0.00567 -0.02359]
weighted chi2 = 0.0777
weighting factor = 1.20e+01

sigma = 0.0158


Spin Hamiltonian 1 summary
==========================

zeeman interaction
------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 2.80731  2.74478  3.52890]  [ 2.92000  2.97000  3.56000]  [ 0.11269  0.22522  0.03110]
[ 2.74478  8.69746  5.63372]  [ 2.97000  8.89000  5.56000]  [ 0.22522  0.19254 -0.07372]
[ 3.52890  5.63372  5.51597]  [ 3.56000  5.56000  5.14000]  [ 0.03110 -0.07372 -0.37597]
weighted chi2 = 6.1075
weighting factor = 2.00e+01

hyperfine interaction
---------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 0.00980  0.00960  0.01235]  [ 0.00854  0.00702  0.01202]  [-0.00126 -0.00258 -0.00033]
[ 0.00960  0.03040  0.01968]  [ 0.00702  0.02824  0.02053]  [-0.00258 -0.00216  0.00085]
[ 0.01235  0.01968  0.01924]  [ 0.01202  0.02053  0.02355]  [-0.00033  0.00085  0.00431]
weighted chi2 = 19.8686
weighting factor = 5.00e+05

quadrupole interaction
----------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 0.00021  0.00019  0.00029]  [ 0.00018  0.00037  0.00040]  [-0.00002  0.00018  0.00011]
[ 0.00019  0.00029  0.00035]  [ 0.00037  0.00010  0.00058]  [ 0.00018 -0.00019  0.00023]
[ 0.00029  0.00035  0.00008]  [ 0.00040  0.00058  0.00008]  [ 0.00011  0.00023  0.00000]
weighted chi2 = 0.0677
weighting factor = 3.00e+05

sigma = 0.1084

Fitting summary
===============

Tensor name           Fitted coeff       Initial coeff          Difference   Lower bounds    Upper bounds
-----------           ------------       -------------          ----------   ------------    ------------
'EAVG'       :            35496.34            35509.69              -13.35          35010           36010
'ZETA'       :             2363.15             2363.07                0.08           2358            2368
'F2'         :            95972.36            96074.10             -101.74          95574           96574
'F4'         :            67686.89            67615.03               71.86          67115           68115
'F6'         :            53053.60            53196.10             -142.50          52696           53696
'C20'        :             -396.17             -232.75             -163.42          -1233             767
'C21'        :      491.79+320.38j      531.76+355.50j       -39.97-35.12j      -468-644j      1532+1356j
'C22'        :      178.82-185.77j       85.53-139.07j        93.29-46.70j     -914-1139j       1086+861j
'C40'        :              603.03             1298.25             -695.22             -2            2598
'C41'        :     1166.47-440.75j     1065.63-315.04j      100.84-125.71j     -234-1615j       2366+985j
'C42'        :      588.10+130.94j      347.82+180.31j       240.28-49.37j     -952-1120j      1648+1480j
'C43'        :      119.11-542.13j      -33.55-420.02j      152.66-122.11j    -1334-1720j       1266+880j
'C44'        :     -102.22+982.14j     -764.48+789.71j      662.26+192.43j     -2064-510j       536+2090j
'C60'        :             -187.37             -108.12              -79.25           -608             392
'C61'        :     -134.95+168.74j       81.11+166.69j       -216.06+2.05j      -419-333j        581+667j
'C62'        :       128.36-21.34j        210.67-9.48j       -82.31-11.86j      -289-509j        711+491j
'C63'        :      283.32+194.56j      147.32+108.22j       136.00+86.34j      -353-392j        647+608j
'C64'        :       94.74-142.64j      270.51-198.38j      -175.77+55.74j      -229-698j        771+302j
'C65'        :       18.61-194.45j        18.44-98.82j         0.17-95.63j      -482-599j        518+401j
'C66'        :        95.96-22.04j        10.67-22.05j         85.29+0.01j      -489-522j        511+478j

Number of observables: 58
Number of real-valued parameters: 32

Optimization routine details:
-----------------------------
fmin:                31.72741225058061
method:              nlopt_bobyqa
xtol:                1e-05
retval:              1
