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

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

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

#!/usr/bin/env python
"""
Grid search (mesh fit) for Er:YSO crystal field parameters.

This example demonstrates:
1. Loading Er:YSO matrix elements and hyperfine structure (HFS) data
2. Constructing tensor combinations (MTOT, PTOT for magnetism)
3. Scaling magnetic field components (MX, MY, MZ) by Bohr magneton
4. Setting up a mesh-based optimization to search parameter space
5. Fitting to experimental energy levels with HFS corrections

The example fits Er^3+ in YSO using magnetic field geometry to identify
crystal field parameters across multiple datasets.

Prerequisites:
- Er:YSO matrix element data in matel/f11cf/
- HFS matrix elements in matel/erhfs/
- numpy, pycf
"""

from pathlib import Path
import numpy as np

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

t = ImportSLJM(str(Path(__file__).parent / "matel" / "f11cf"))
thfs = ImportSLJM(str(Path(__file__).parent / "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("2017-05-17_eryso_site1.txt", "w") as summary_file:
    summary_file.write(res['summary'])


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

pycf revision: 0.1.0.dev0+2d5bb34  built at 2026-04-26 04:26:09
Build comment: Build via setup.py
Calculation started at: 2026-04-26 04:27:14
Calculation completed at: 2026-04-26 07:47:13

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

Lev.  Percentage                 State        Percentage                 State               Theory
----  ----------                 -----        ----------                 -----               ------
1     ( 0.17-0.39j)  18.3%   328 |0,4I15, -9> (-0.41-0.10j)  18.0%   305 |0,4I15, -7>        5.3723
2     ( 0.01+0.43j)  18.3%    31 |0,4I15,  9> ( 0.42+0.05j)  18.0%    53 |0,4I15,  7>        5.3723
3     (-0.16-0.59j)  37.3%   354 |0,4I15,-13> ( 0.40+0.10j)  17.2%   305 |0,4I15, -7>       44.1371
4     ( 0.44-0.42j)  37.3%     7 |0,4I15, 13> ( 0.40+0.12j)  17.2%    53 |0,4I15,  7>       44.1371
5     (-0.43-0.04j)  18.5%   328 |0,4I15, -9> (-0.33-0.19j)  14.7%   275 |0,4I15, -5>       82.6246
6     ( 0.29-0.32j)  18.5%    31 |0,4I15,  9> ( 0.11-0.37j)  14.7%    82 |0,4I15,  5>       82.6246
7     ( 0.62-0.22j)  43.9%   360 |0,4I15,-15> (-0.50+0.15j)  27.0%   344 |0,4I15,-11>      114.3141
8     ( 0.35+0.56j)  43.9%     2 |0,4I15, 15> (-0.30-0.42j)  27.0%    16 |0,4I15, 11>      114.3142
9     ( 0.09-0.46j)  22.0%   328 |0,4I15, -9> ( 0.44+0.11j)  20.8%   305 |0,4I15, -7>      183.1834
10    ( 0.11-0.46j)  22.0%    31 |0,4I15,  9> ( 0.45+0.08j)  20.8%    53 |0,4I15,  7>      183.1834
11    ( 0.51+0.04j)  26.5%   199 |0,4I15, -1> (-0.29+0.29j)  17.0%   305 |0,4I15, -7>      411.1400
12    (-0.10-0.51j)  26.5%   158 |0,4I15,  1> ( 0.26-0.32j)  17.0%    53 |0,4I15,  7>      411.1400
13    (-0.04-0.39j)  15.5%   158 |0,4I15,  1> ( 0.19+0.31j)  12.9%   239 |0,4I15, -3>      475.4960
14    (-0.30-0.25j)  15.5%   199 |0,4I15, -1> ( 0.15+0.33j)  12.9%   118 |0,4I15,  3>      475.4960
15    (-0.47+0.12j)  23.6%   354 |0,4I15,-13> (-0.39+0.16j)  17.9%   360 |0,4I15,-15>      506.6772
16    (-0.31-0.37j)  23.6%     7 |0,4I15, 13> ( 0.22+0.36j)  17.9%     2 |0,4I15, 15>      506.6772
17    (-0.52-0.37j)  40.0%   343 |0,4I13,-11> ( 0.14+0.44j)  20.8%   327 |0,4I13, -9>     6508.6503
18    ( 0.22+0.59j)  40.0%    15 |0,4I13, 11> ( 0.38+0.25j)  20.8%    30 |0,4I13,  9>     6508.6503
19    (-0.50-0.04j)  25.3%   353 |0,4I13,-13> ( 0.15-0.40j)  18.5%   304 |0,4I13, -7>     6546.0888
20    ( 0.29+0.41j)  25.3%     6 |0,4I13, 13> (-0.27+0.33j)  18.5%    52 |0,4I13,  7>     6546.0888
21    (-0.26+0.43j)  24.9%   327 |0,4I13, -9> ( 0.29-0.39j)  23.4%   353 |0,4I13,-13>     6605.5899
22    ( 0.45-0.22j)  24.9%    30 |0,4I13,  9> (-0.41+0.26j)  23.4%     6 |0,4I13, 13>     6605.5899
23    ( 0.54-0.20j)  33.1%   304 |0,4I13, -7> ( 0.32+0.26j)  16.8%   274 |0,4I13, -5>     6628.2204
24    ( 0.43-0.38j)  33.1%    52 |0,4I13,  7> ( 0.08+0.40j)  16.8%    81 |0,4I13,  5>     6628.2204
25    (-0.51+0.16j)  28.5%   198 |0,4I13, -1> (-0.07+0.40j)  16.3%   274 |0,4I13, -5>     6786.3926
26    ( 0.05+0.53j)  28.5%   157 |0,4I13,  1> (-0.34+0.22j)  16.3%    81 |0,4I13,  5>     6786.3926
27    (-0.41-0.13j)  18.6%   157 |0,4I13,  1> (-0.09-0.40j)  16.8%   343 |0,4I13,-11>     6846.4687
28    ( 0.01-0.43j)  18.6%   198 |0,4I13, -1> (-0.35-0.22j)  16.8%    15 |0,4I13, 11>     6846.4687
29    ( 0.08+0.45j)  21.1%   343 |0,4I13,-11> ( 0.10+0.43j)  19.9%   353 |0,4I13,-13>     6866.8881
30    (-0.43-0.15j)  21.1%    15 |0,4I13, 11> ( 0.41+0.17j)  19.9%     6 |0,4I13, 13>     6866.8881
31    (-0.15+0.61j)  39.3%   326 |0,4I11, -9> (-0.03-0.43j)  19.0%   342 |0,4I11,-11>    10189.4031
32    (-0.32+0.54j)  39.3%    29 |0,4I11,  9> (-0.33+0.29j)  19.0%    14 |0,4I11, 11>    10189.4031
33    (-0.49+0.13j)  25.3%   303 |0,4I11, -7> ( 0.14-0.47j)  23.8%   342 |0,4I11,-11>    10232.0407
34    ( 0.50-0.00j)  25.3%    51 |0,4I11,  7> (-0.26-0.41j)  23.8%    14 |0,4I11, 11>    10232.0407
35    ( 0.43-0.24j)  24.2%   273 |0,4I11, -5> ( 0.00-0.39j)  15.5%   303 |0,4I11, -7>    10271.8497
36    (-0.07+0.49j)  24.2%    80 |0,4I11,  5> ( 0.37-0.14j)  15.5%    51 |0,4I11,  7>    10271.8497
37    (-0.43-0.18j)  21.7%   197 |0,4I11, -1> (-0.33+0.17j)  13.8%   273 |0,4I11, -5>    10345.8957
38    (-0.31+0.35j)  21.7%   156 |0,4I11,  1> (-0.37-0.01j)  13.8%    80 |0,4I11,  5>    10345.8957
39    (-0.51+0.19j)  29.2%   197 |0,4I11, -1> ( 0.17+0.31j)  12.6%   237 |0,4I11, -3>    10385.0880
40    ( 0.43-0.32j)  29.2%   156 |0,4I11,  1> (-0.17-0.31j)  12.6%   116 |0,4I11,  3>    10385.0880
41    (-0.14+0.48j)  24.7%   326 |0,4I11, -9> (-0.11+0.45j)  21.9%   342 |0,4I11,-11>    10398.8601
42    ( 0.19-0.46j)  24.7%    29 |0,4I11,  9> (-0.19+0.43j)  21.9%    14 |0,4I11, 11>    10398.8601
43    ( 0.18-0.36j)  16.1%   272 |0,4I 9, -5> (-0.03-0.35j)  12.5%   236 |0,4I 9, -3>    12346.7036
44    ( 0.31+0.25j)  16.1%    79 |0,4I 9,  5> (-0.12-0.33j)  12.5%   115 |0,4I 9,  3>    12346.7036
45    (-0.07+0.40j)  16.5%   325 |0,4I 9, -9> ( 0.10-0.39j)  16.5%   302 |0,4I 9, -7>    12444.4588
46    (-0.34-0.22j)  16.5%    28 |0,4I 9,  9> (-0.36-0.19j)  16.5%    50 |0,4I 9,  7>    12444.4588
47    (-0.16-0.30j)  11.7%   302 |0,4I 9, -7> (-0.21+0.24j)  10.1%   236 |0,4I 9, -3>    12534.8713
48    (-0.04+0.34j)  11.7%    50 |0,4I 9,  7> (-0.28-0.14j)  10.1%   115 |0,4I 9,  3>    12534.8713
49    (-0.08+0.47j)  22.8%   325 |0,4I 9, -9> (-0.10+0.30j)   9.8%   302 |0,4I 9, -7>    12614.2625
50    (-0.44-0.18j)  22.8%    28 |0,4I 9,  9> ( 0.30+0.08j)   9.8%    50 |0,4I 9,  7>    12614.2625
51    ( 0.40-0.22j)  20.4%   196 |0,4I 9, -1> (-0.29-0.15j)  10.4%   236 |0,4I 9, -3>    12662.1618
52    (-0.45+0.06j)  20.4%   155 |0,4I 9,  1> (-0.15+0.29j)  10.4%   115 |0,4I 9,  3>    12662.1618
53    ( 0.36-0.28j)  20.4%   267 |0,4F 9, -5> ( 0.28-0.33j)  18.8%   231 |0,4F 9, -3>    15179.1664
54    (-0.09-0.44j)  20.4%    74 |0,4F 9,  5> (-0.00+0.43j)  18.8%   110 |0,4F 9,  3>    15179.1664
55    (-0.39+0.33j)  26.6%   298 |0,4F 9, -7> (-0.26+0.23j)  12.2%   302 |0,4I 9, -7>    15231.1628
56    (-0.01+0.52j)  26.6%    46 |0,4F 9,  7> (-0.02+0.35j)  12.2%    50 |0,4I 9,  7>    15231.1628
57    ( 0.28-0.24j)  13.6%   150 |0,4F 9,  1> (-0.15+0.31j)  11.9%   322 |0,4F 9, -9>    15358.0568
58    ( 0.18+0.32j)  13.6%   191 |0,4F 9, -1> ( 0.04+0.34j)  11.9%    25 |0,4F 9,  9>    15358.0568
59    ( 0.17-0.39j)  18.0%   322 |0,4F 9, -9> ( 0.06-0.33j)  11.1%   298 |0,4F 9, -7>    15377.6764
60    ( 0.40+0.14j)  18.0%    25 |0,4F 9,  9> (-0.28-0.18j)  11.1%    46 |0,4F 9,  7>    15377.6764
61    (-0.24+0.38j)  20.0%   322 |0,4F 9, -9> ( 0.31+0.16j)  12.1%   231 |0,4F 9, -3>    15493.2103
62    (-0.39+0.22j)  20.0%    25 |0,4F 9,  9> ( 0.15+0.31j)  12.1%   110 |0,4F 9,  3>    15493.2103
63    ( 0.61+0.25j)  43.0%   183 |0,4S 3, -1> ( 0.41-0.08j)  17.1%   224 |0,4S 3, -3>    18261.2528
64    ( 0.23-0.62j)  43.0%   142 |0,4S 3,  1> (-0.33+0.25j)  17.1%   103 |0,4S 3,  3>    18261.2528
65    (-0.61+0.29j)  45.2%   224 |0,4S 3, -3> ( 0.39+0.05j)  15.7%   183 |0,4S 3, -1>    18369.6217
66    ( 0.57-0.36j)  45.2%   103 |0,4S 3,  3> ( 0.16-0.36j)  15.7%   142 |0,4S 3,  1>    18369.6217
67    (-0.08-0.33j)  11.5%   289 |2,2H11, -5> (-0.07-0.30j)   9.3%   271 |0,4G11, -5>    19093.4029
68    (-0.17-0.29j)  11.5%    96 |2,2H11,  5> (-0.16-0.26j)   9.3%    78 |0,4G11,  5>    19093.4029
69    ( 0.43+0.16j)  21.0%   346 |2,2H11,-11> ( 0.38+0.14j)  16.9%   341 |0,4G11,-11>    19115.6110
70    (-0.17+0.42j)  21.0%    18 |2,2H11, 11> (-0.16+0.38j)  16.9%    13 |0,4G11, 11>    19115.6110
71    (-0.05+0.29j)   8.5%   334 |2,2H11, -9> (-0.27+0.02j)   7.2%   217 |2,2H11, -1>    19132.8239
72    ( 0.22-0.19j)   8.5%    37 |2,2H11,  9> (-0.12-0.24j)   7.2%   176 |2,2H11,  1>    19132.8239
73    (-0.10-0.35j)  13.3%   315 |2,2H11, -7> ( 0.31-0.07j)   9.9%   217 |2,2H11, -1>    19187.6089
74    (-0.26+0.25j)  13.3%    63 |2,2H11,  7> (-0.23-0.21j)   9.9%   176 |2,2H11,  1>    19187.6089
75    ( 0.23-0.22j)  10.5%   315 |2,2H11, -7> (-0.12-0.26j)   8.4%   256 |2,2H11, -3>    19212.3778
76    ( 0.15+0.28j)  10.5%    63 |2,2H11,  7> (-0.19+0.22j)   8.4%   135 |2,2H11,  3>    19212.3778
77    (-0.02-0.37j)  13.5%   334 |2,2H11, -9> (-0.13+0.31j)  11.3%   289 |2,2H11, -5>    19239.0504
78    ( 0.27-0.25j)  13.5%    37 |2,2H11,  9> (-0.13+0.31j)  11.3%    96 |2,2H11,  5>    19239.0504
79    ( 0.16-0.54j)  32.0%   266 |0,4F 7, -5> ( 0.46-0.28j)  28.6%   230 |0,4F 7, -3>    20415.9334
80    ( 0.54+0.16j)  32.0%    73 |0,4F 7,  5> (-0.48+0.23j)  28.6%   109 |0,4F 7,  3>    20415.9334
81    ( 0.45+0.19j)  24.3%   190 |0,4F 7, -1> (-0.15-0.43j)  20.5%   149 |0,4F 7,  1>    20460.8883
82    ( 0.49+0.02j)  24.3%   149 |0,4F 7,  1> ( 0.32-0.32j)  20.5%   190 |0,4F 7, -1>    20460.8883
83    ( 0.21-0.46j)  26.0%   297 |0,4F 7, -7> (-0.49-0.06j)  24.4%   230 |0,4F 7, -3>    20539.5879
84    (-0.10+0.50j)  26.0%    45 |0,4F 7,  7> (-0.43-0.24j)  24.4%   109 |0,4F 7,  3>    20539.5879
85    (-0.19-0.60j)  39.7%   297 |0,4F 7, -7> (-0.09+0.61j)  38.4%   266 |0,4F 7, -5>    20648.4203
86    (-0.38-0.50j)  39.7%    45 |0,4F 7,  7> (-0.55-0.28j)  38.4%    73 |0,4F 7,  5>    20648.4203
87    (-0.09+0.47j)  23.4%   229 |0,4F 5, -3> ( 0.20+0.42j)  21.4%   265 |0,4F 5, -5>    22097.1383
88    (-0.06-0.48j)  23.4%   108 |0,4F 5,  3> (-0.23+0.40j)  21.4%    72 |0,4F 5,  5>    22097.1383
89    (-0.49-0.34j)  35.7%   189 |0,4F 5, -1> (-0.42+0.02j)  17.9%   265 |0,4F 5, -5>    22120.8999
90    (-0.23-0.55j)  35.7%   148 |0,4F 5,  1> ( 0.11-0.41j)  17.9%    72 |0,4F 5,  5>    22120.8999
91    (-0.56+0.17j)  34.7%   265 |0,4F 5, -5> ( 0.58-0.00j)  34.0%   229 |0,4F 5, -3>    22217.3795
92    ( 0.51-0.30j)  34.7%    72 |0,4F 5,  5> ( 0.39-0.43j)  34.0%   108 |0,4F 5,  3>    22217.3795
93    ( 0.23+0.55j)  36.0%   188 |0,4F 3, -1> ( 0.32+0.21j)  14.6%   228 |0,4F 3, -3>    22450.4114
94    (-0.50+0.34j)  36.0%   147 |0,4F 3,  1> ( 0.38-0.00j)  14.6%   107 |0,4F 3,  3>    22450.4114
95    ( 0.09+0.61j)  38.6%   228 |0,4F 3, -3> ( 0.16-0.36j)  15.9%   188 |0,4F 3, -1>    22600.6855
96    ( 0.41+0.46j)  38.6%   107 |0,4F 3,  3> ( 0.38+0.11j)  15.9%   147 |0,4F 3,  1>    22600.6855
97    (-0.06+0.28j)   8.1%   267 |0,4F 9, -5> ( 0.06-0.25j)   6.6%   283 |1,2G 9, -5>    24349.1412
98    (-0.11-0.26j)   8.1%    74 |0,4F 9,  5> ( 0.10+0.24j)   6.6%    90 |1,2G 9,  5>    24349.1412
99    ( 0.16-0.25j)   9.0%   298 |0,4F 9, -7> (-0.15+0.23j)   7.4%   309 |1,2G 9, -7>    24480.1940
100   ( 0.30+0.02j)   9.0%    46 |0,4F 9,  7> (-0.27-0.02j)   7.4%    57 |1,2G 9,  7>    24480.1940
101   ( 0.15-0.16j)   4.7%   231 |0,4F 9, -3> ( 0.04+0.21j)   4.5%   298 |0,4F 9, -7>    24531.8677
102   (-0.13-0.18j)   4.7%   110 |0,4F 9,  3> (-0.07+0.20j)   4.5%    46 |0,4F 9,  7>    24531.8677
103   (-0.11+0.35j)  13.5%   322 |0,4F 9, -9> ( 0.10-0.31j)  10.5%   329 |1,2G 9, -9>    24596.2500
104   (-0.26-0.26j)  13.5%    25 |0,4F 9,  9> ( 0.23+0.23j)  10.5%    32 |1,2G 9,  9>    24596.2500
105   (-0.25-0.14j)   8.0%   191 |0,4F 9, -1> ( 0.22+0.12j)   6.2%   211 |1,2G 9, -1>    24643.2254
106   ( 0.27-0.07j)   8.0%   150 |0,4F 9,  1> (-0.24+0.06j)   6.2%   170 |1,2G 9,  1>    24643.2254
107   (-0.39+0.14j)  17.0%   341 |0,4G11,-11> (-0.11-0.33j)  11.8%   195 |0,4G11, -1>    26204.5913
108   ( 0.32-0.26j)  17.0%    13 |0,4G11, 11> ( 0.23+0.26j)  11.8%   154 |0,4G11,  1>    26204.5914
109   (-0.33+0.15j)  13.0%   235 |0,4G11, -3> ( 0.31+0.01j)   9.4%   271 |0,4G11, -5>    26220.5301
110   (-0.34-0.13j)  13.0%   114 |0,4G11,  3> (-0.30+0.03j)   9.4%    78 |0,4G11,  5>    26220.5301
111   ( 0.18-0.27j)  10.5%   301 |0,4G11, -7> (-0.23-0.20j)   9.3%   195 |0,4G11, -1>    26306.2332
112   ( 0.31-0.09j)  10.5%    49 |0,4G11,  7> (-0.12-0.28j)   9.3%   154 |0,4G11,  1>    26306.2332
113   ( 0.28+0.22j)  12.5%   301 |0,4G11, -7> ( 0.02+0.28j)   8.0%   271 |0,4G11, -5>    26442.4474
114   ( 0.33-0.12j)  12.5%    49 |0,4G11,  7> (-0.11+0.26j)   8.0%    78 |0,4G11,  5>    26442.4474
115   (-0.40+0.02j)  15.7%   301 |0,4G11, -7> ( 0.19-0.20j)   7.5%   341 |0,4G11,-11>    26474.0342
116   (-0.32-0.23j)  15.7%    49 |0,4G11,  7> ( 0.05+0.27j)   7.5%    13 |0,4G11, 11>    26474.0342
117   ( 0.01-0.43j)  18.5%   324 |0,4G11, -9> (-0.07+0.32j)  11.0%   271 |0,4G11, -5>    26535.5620
118   ( 0.32-0.29j)  18.5%    27 |0,4G11,  9> (-0.20+0.27j)  11.0%    78 |0,4G11,  5>    26535.5620
119   (-0.30-0.49j)  33.2%   357 |0,2K15,-13> (-0.14+0.39j)  17.1%   350 |0,2K15,-11>    27129.7257
120   (-0.36-0.45j)  33.2%    10 |0,2K15, 13> (-0.41-0.00j)  17.1%    22 |0,2K15, 11>    27129.7257
121   (-0.37+0.24j)  19.7%   361 |0,2K15,-15> ( 0.27+0.30j)  16.4%   350 |0,2K15,-11>    27282.2308
122   ( 0.20+0.40j)  19.7%     3 |0,2K15, 15> (-0.39+0.13j)  16.4%    22 |0,2K15, 11>    27282.2308
123   ( 0.33-0.28j)  18.7%   234 |0,4G 9, -3> ( 0.23+0.34j)  17.1%   323 |0,4G 9, -9>    27306.3686
124   (-0.06-0.43j)  18.7%   113 |0,4G 9,  3> ( 0.40-0.10j)  17.1%    26 |0,4G 9,  9>    27306.3686
125   (-0.50+0.27j)  32.2%   270 |0,4G 9, -5> ( 0.17-0.25j)   9.2%   194 |0,4G 9, -1>    27337.4663
126   (-0.52-0.22j)  32.2%    77 |0,4G 9,  5> ( 0.20+0.23j)   9.2%   153 |0,4G 9,  1>    27337.4663
127   (-0.29-0.27j)  15.6%   300 |0,4G 9, -7> (-0.36-0.02j)  13.2%   194 |0,4G 9, -1>    27360.8614
128   ( 0.08+0.39j)  15.6%    48 |0,4G 9,  7> ( 0.17-0.32j)  13.2%   153 |0,4G 9,  1>    27360.8614
129   (-0.47-0.16j)  24.8%   234 |0,4G 9, -3> ( 0.29+0.29j)  16.6%   300 |0,4G 9, -7>    27408.2576
130   (-0.45-0.21j)  24.8%   113 |0,4G 9,  3> ( 0.41-0.01j)  16.6%    48 |0,4G 9,  7>    27408.2576
131   ( 0.42-0.02j)  17.4%   323 |0,4G 9, -9> ( 0.08-0.39j)  15.9%   270 |0,4G 9, -5>    27423.2375
132   ( 0.26-0.33j)  17.4%    26 |0,4G 9,  9> ( 0.36+0.17j)  15.9%    77 |0,4G 9,  5>    27423.2375
133   ( 0.48+0.09j)  23.7%   350 |0,2K15,-11> (-0.30-0.22j)  13.5%   293 |0,2K15, -5>    27511.4436
134   (-0.06+0.48j)  23.7%    22 |0,2K15, 11> ( 0.11+0.35j)  13.5%   100 |0,2K15,  5>    27511.4436
135   (-0.31-0.28j)  17.6%   139 |0,2K15,  3> ( 0.37-0.02j)  13.8%   338 |0,2K15, -9>    27635.4429
136   ( 0.02+0.42j)  17.6%   260 |0,2K15, -3> ( 0.25-0.27j)  13.8%    41 |0,2K15,  9>    27635.4429
137   (-0.46+0.10j)  22.2%   319 |0,2K15, -7> (-0.37+0.28j)  21.6%   338 |0,2K15, -9>    27678.7125
138   (-0.26-0.39j)  22.2%    67 |0,2K15,  7> ( 0.07+0.46j)  21.6%    41 |0,2K15,  9>    27678.7125
139   (-0.37+0.12j)  14.7%   260 |0,2K15, -3> (-0.32-0.10j)  11.3%   180 |0,2K15,  1>    27785.0170
140   ( 0.01-0.38j)  14.7%   139 |0,2K15,  3> (-0.18-0.28j)  11.3%   221 |0,2K15, -1>    27785.0170
141   (-0.33+0.13j)  12.5%   361 |0,2K15,-15> (-0.31+0.16j)  12.2%   357 |0,2K15,-13>    27906.5308
142   ( 0.18-0.30j)  12.5%     3 |0,2K15, 15> (-0.22+0.27j)  12.2%    10 |0,2K15, 13>    27906.5308
143   (-0.24+0.11j)   6.6%   180 |0,2K15,  1> (-0.05+0.24j)   5.9%   221 |0,2K15, -1>    27942.7728
144   ( 0.25+0.07j)   6.6%   221 |0,2K15, -1> (-0.09-0.23j)   5.9%   180 |0,2K15,  1>    27942.7728
145   ( 0.12-0.33j)  12.2%   299 |0,4G 7, -7> ( 0.09-0.26j)   7.6%   308 |1,2G 7, -7>    27986.7763
146   ( 0.35+0.04j)  12.2%    47 |0,4G 7,  7> ( 0.27+0.03j)   7.6%    56 |1,2G 7,  7>    27986.7763
147   (-0.00+0.32j)  10.4%   269 |0,4G 7, -5> ( 0.16-0.26j)   9.3%   233 |0,4G 7, -3>    28094.1666
148   (-0.30+0.13j)  10.4%    76 |0,4G 7,  5> (-0.18+0.24j)   9.3%   112 |0,4G 7,  3>    28094.1666
149   (-0.21+0.21j)   8.6%   193 |0,4G 7, -1> ( 0.04+0.27j)   7.7%   299 |0,4G 7, -7>    28143.3553
150   ( 0.21+0.21j)   8.6%   152 |0,4G 7,  1> ( 0.04-0.27j)   7.7%    47 |0,4G 7,  7>    28143.3553
151   (-0.23+0.22j)  10.0%   357 |0,2K15,-13> (-0.20+0.17j)   7.0%   361 |0,2K15,-15>    28171.6984
152   (-0.30-0.10j)  10.0%    10 |0,2K15, 13> ( 0.26+0.06j)   7.0%     3 |0,2K15, 15>    28171.6984
153   ( 0.45+0.17j)  23.3%   201 |0,2P 3, -1> ( 0.38+0.14j)  16.4%   188 |0,4F 3, -1>    31360.1134
154   ( 0.48-0.04j)  23.3%   160 |0,2P 3,  1> ( 0.40-0.04j)  16.4%   147 |0,4F 3,  1>    31360.1134
155   (-0.39+0.31j)  25.0%   240 |0,2P 3, -3> (-0.31+0.25j)  16.0%   228 |0,4F 3, -3>    31546.2347
156   ( 0.49+0.07j)  25.0%   119 |0,2P 3,  3> ( 0.40+0.06j)  16.0%   107 |0,4F 3,  3>    31546.2347
157   ( 0.20+0.59j)  38.4%   349 |0,2K13,-11> ( 0.22-0.33j)  15.9%   337 |0,2K13, -9>    32409.4625
158   (-0.43-0.44j)  38.4%    21 |0,2K13, 11> (-0.40+0.05j)  15.9%    40 |0,2K13,  9>    32409.4625
159   ( 0.28-0.39j)  23.4%   356 |0,2K13,-13> (-0.43-0.16j)  21.2%   337 |0,2K13, -9>    32562.7582
160   ( 0.24+0.42j)  23.4%     9 |0,2K13, 13> (-0.45+0.11j)  21.2%    40 |0,2K13,  9>    32562.7582
161   (-0.29+0.37j)  22.4%   337 |0,2K13, -9> ( 0.32-0.16j)  12.6%   259 |0,2K13, -3>    32775.2239
162   (-0.16+0.45j)  22.4%    40 |0,2K13,  9> ( 0.04+0.35j)  12.6%   138 |0,2K13,  3>    32775.2239
163   ( 0.43-0.18j)  21.6%   318 |0,2K13, -7> ( 0.38-0.16j)  16.8%   292 |0,2K13, -5>    32840.0687
164   (-0.16-0.44j)  21.6%    66 |0,2K13,  7> ( 0.14+0.38j)  16.8%    99 |0,2K13,  5>    32840.0687
165   (-0.66-0.47j)  65.8%   200 |0,2P 1, -1> (-0.17-0.21j)   7.0%   151 |0,4G 5,  1>    32928.4202
166   (-0.49+0.65j)  65.8%   159 |0,2P 1,  1> ( 0.09-0.25j)   7.0%   192 |0,4G 5, -1>    32928.4202
167   (-0.43-0.11j)  19.6%   220 |0,2K13, -1> ( 0.13-0.28j)   9.5%   318 |0,2K13, -7>    32986.3051
168   ( 0.12+0.43j)  19.6%   179 |0,2K13,  1> (-0.27+0.14j)   9.5%    66 |0,2K13,  7>    32986.3051
169   (-0.29+0.41j)  25.9%   268 |0,4G 5, -5> (-0.26-0.19j)  10.3%   111 |0,4G 5,  3>    33087.9993
170   (-0.26-0.44j)  25.9%    75 |0,4G 5,  5> (-0.27+0.17j)  10.3%   232 |0,4G 5, -3>    33087.9993
171   (-0.37+0.13j)  15.7%   268 |0,4G 5, -5> (-0.15+0.30j)  11.4%   151 |0,4G 5,  1>    33134.7178
172   (-0.30-0.26j)  15.7%    75 |0,4G 5,  5> ( 0.03+0.34j)  11.4%   192 |0,4G 5, -1>    33134.7179
173   ( 0.23+0.25j)  11.7%   111 |0,4G 5,  3> ( 0.32+0.09j)  11.3%   151 |0,4G 5,  1>    33216.6978
174   ( 0.34-0.06j)  11.7%   232 |0,4G 5, -3> (-0.31-0.12j)  11.3%   192 |0,4G 5, -1>    33216.6978
175   ( 0.36+0.07j)  13.6%   349 |0,2K13,-11> (-0.09+0.32j)  11.2%   268 |0,4G 5, -5>    33265.3940
176   (-0.34-0.15j)  13.6%    21 |0,2K13, 11> ( 0.11-0.31j)  11.2%    75 |0,4G 5,  5>    33265.3940
177   (-0.39-0.43j)  33.6%   232 |0,4G 5, -3> ( 0.22+0.34j)  16.6%   268 |0,4G 5, -5>    33481.0662
178   ( 0.32+0.48j)  33.6%   111 |0,4G 5,  3> ( 0.28+0.29j)  16.6%    75 |0,4G 5,  5>    33481.0662
179   ( 0.28-0.26j)  14.6%   193 |0,4G 7, -1> ( 0.30+0.20j)  13.0%   269 |0,4G 7, -5>    33856.6341
180   (-0.37-0.08j)  14.6%   152 |0,4G 7,  1> (-0.15+0.33j)  13.0%    76 |0,4G 7,  5>    33856.6341
181   ( 0.36-0.13j)  14.3%   193 |0,4G 7, -1> (-0.12-0.35j)  13.3%   233 |0,4G 7, -3>    33924.4483
182   (-0.03-0.38j)  14.3%   152 |0,4G 7,  1> (-0.36+0.04j)  13.3%   112 |0,4G 7,  3>    33924.4483
183   ( 0.18-0.35j)  15.4%   233 |0,4G 7, -3> ( 0.18+0.24j)   8.7%   299 |0,4G 7, -7>    34031.7085
184   (-0.37+0.13j)  15.4%   112 |0,4G 7,  3> ( 0.21+0.21j)   8.7%    47 |0,4G 7,  7>    34031.7085
185   ( 0.20+0.39j)  19.3%   269 |0,4G 7, -5> (-0.27-0.29j)  15.6%   299 |0,4G 7, -7>    34157.8463
186   ( 0.32-0.30j)  19.3%    76 |0,4G 7,  5> ( 0.35-0.18j)  15.6%    47 |0,4G 7,  7>    34157.8463
187   ( 0.15+0.51j)  28.1%   242 |1,2D 5, -3> ( 0.12+0.35j)  13.7%   203 |1,2D 5, -1>    34523.2346
188   (-0.12-0.52j)  28.1%   121 |1,2D 5,  3> ( 0.07+0.36j)  13.7%   162 |1,2D 5,  1>    34523.2346
189   (-0.49+0.22j)  28.3%   276 |1,2D 5, -5> ( 0.32+0.09j)  11.1%   203 |1,2D 5, -1>    34615.1493
190   (-0.00-0.53j)  28.3%    83 |1,2D 5,  5> ( 0.21+0.26j)  11.1%   162 |1,2D 5,  1>    34615.1493
191   ( 0.41-0.16j)  19.6%   276 |1,2D 5, -5> (-0.32-0.26j)  16.7%   242 |1,2D 5, -3>    34665.3977
192   (-0.38+0.23j)  19.6%    83 |1,2D 5,  5> ( 0.02+0.41j)  16.7%   121 |1,2D 5,  3>    34665.3977
193   ( 0.25+0.08j)   7.2%   175 |2,2H 9,  1> (-0.18+0.18j)   6.6%   288 |2,2H 9, -5>    36238.6586
194   ( 0.01+0.27j)   7.2%   216 |2,2H 9, -1> (-0.22+0.13j)   6.6%    95 |2,2H 9,  5>    36238.6586
195   ( 0.04-0.25j)   6.6%   134 |2,2H 9,  3> ( 0.14-0.20j)   5.9%   314 |2,2H 9, -7>    36290.6539
196   ( 0.16-0.20j)   6.6%   255 |2,2H 9, -3> (-0.05+0.24j)   5.9%    62 |2,2H 9,  7>    36290.6539
197   (-0.11+0.28j)   9.1%   314 |2,2H 9, -7> (-0.21-0.22j)   9.1%   216 |2,2H 9, -1>    36377.5051
198   ( 0.24-0.19j)   9.1%    62 |2,2H 9,  7> ( 0.27+0.13j)   9.1%   175 |2,2H 9,  1>    36377.5051
199   (-0.06+0.38j)  14.8%   333 |2,2H 9, -9> (-0.06+0.33j)  10.9%   329 |1,2G 9, -9>    36477.5012
200   ( 0.24-0.30j)  14.8%    36 |2,2H 9,  9> ( 0.21-0.26j)  10.9%    32 |1,2G 9,  9>    36477.5013
201   (-0.25-0.21j)  10.4%   314 |2,2H 9, -7> (-0.22-0.18j)   8.0%   309 |1,2G 9, -7>    36525.2129
202   ( 0.22+0.23j)  10.4%    62 |2,2H 9,  7> ( 0.19+0.21j)   8.0%    57 |1,2G 9,  7>    36525.2129
203   (-0.33+0.29j)  19.6%   226 |0,4D 5, -3> ( 0.29-0.24j)  14.4%   242 |1,2D 5, -3>    38394.3487
204   (-0.03+0.44j)  19.6%   105 |0,4D 5,  3> ( 0.02-0.38j)  14.4%   121 |1,2D 5,  3>    38394.3487
205   (-0.43+0.18j)  21.6%   263 |0,4D 5, -5> ( 0.35-0.15j)  14.6%   276 |1,2D 5, -5>    38497.2942
206   ( 0.41+0.22j)  21.6%    70 |0,4D 5,  5> (-0.34-0.18j)  14.6%    83 |1,2D 5,  5>    38497.2942
207   (-0.36+0.06j)  13.4%   226 |0,4D 5, -3> ( 0.29-0.05j)   8.7%   242 |1,2D 5, -3>    38533.5782
208   ( 0.19+0.31j)  13.4%   105 |0,4D 5,  3> (-0.16-0.25j)   8.7%   121 |1,2D 5,  3>    38533.5782
209   ( 0.18-0.62j)  41.3%   296 |0,4D 7, -7> (-0.46+0.18j)  24.9%   264 |0,4D 7, -5>    38829.5074
210   (-0.25+0.59j)  41.3%    44 |0,4D 7,  7> ( 0.25+0.43j)  24.9%    71 |0,4D 7,  5>    38829.5074
211   (-0.12+0.55j)  32.3%   296 |0,4D 7, -7> ( 0.53-0.08j)  29.1%   227 |0,4D 7, -3>    39074.5243
212   ( 0.26+0.50j)  32.3%    44 |0,4D 7,  7> (-0.54+0.06j)  29.1%   106 |0,4D 7,  3>    39074.5243
213   ( 0.53-0.17j)  30.6%   264 |0,4D 7, -5> (-0.45+0.01j)  20.7%   146 |0,4D 7,  1>    39251.8575
214   ( 0.24-0.50j)  30.6%    71 |0,4D 7,  5> ( 0.08-0.45j)  20.7%   187 |0,4D 7, -1>    39251.8575
215   (-0.58-0.15j)  35.9%   227 |0,4D 7, -3> (-0.51-0.04j)  25.7%   264 |0,4D 7, -5>    39460.4852
216   (-0.01-0.60j)  35.9%   106 |0,4D 7,  3> (-0.08+0.50j)  25.7%    71 |0,4D 7,  5>    39460.4852
217   ( 0.38+0.17j)  17.3%   335 |0,2I11, -9> (-0.01-0.36j)  13.0%   316 |0,2I11, -7>    40700.1084
218   (-0.28-0.30j)  17.3%    38 |0,2I11,  9> (-0.35+0.10j)  13.0%    64 |0,2I11,  7>    40700.1084
219   ( 0.45+0.01j)  20.0%   347 |0,2I11,-11> (-0.37-0.24j)  19.4%   363 |0,2L17,-15>    40735.4172
220   (-0.04-0.45j)  20.0%    19 |0,2I11, 11> (-0.26-0.35j)  19.4%     5 |0,2L17, 15>    40735.4172
221   ( 0.25-0.22j)  11.2%   290 |0,2I11, -5> (-0.32+0.07j)  10.7%   257 |0,2I11, -3>    40781.8196
222   (-0.04+0.33j)  11.2%    97 |0,2I11,  5> ( 0.12+0.30j)  10.7%   136 |0,2I11,  3>    40781.8196
223   ( 0.04-0.40j)  16.1%   347 |0,2I11,-11> ( 0.14-0.32j)  12.1%   335 |0,2I11, -9>    40831.2040
224   ( 0.37-0.15j)  16.1%    19 |0,2I11, 11> (-0.27+0.22j)  12.1%    38 |0,2I11,  9>    40831.2040
225   (-0.44+0.23j)  24.4%   218 |0,2I11, -1> ( 0.31-0.12j)  11.4%   290 |0,2I11, -5>    40868.1158
226   ( 0.19-0.46j)  24.4%   177 |0,2I11,  1> (-0.10+0.32j)  11.4%    97 |0,2I11,  5>    40868.1158
227   (-0.06+0.49j)  24.6%   316 |0,2I11, -7> ( 0.30+0.23j)  14.7%   335 |0,2I11, -9>    40903.3303
228   (-0.30+0.39j)  24.6%    64 |0,2I11,  7> ( 0.38+0.04j)  14.7%    38 |0,2I11,  9>    40903.3303
229   ( 0.47+0.00j)  22.2%   364 |0,2L17,-17> (-0.25+0.33j)  16.9%   352 |0,2L17,-11>    40977.3227
230   (-0.44-0.17j)  22.2%     1 |0,2L17, 17> (-0.11-0.40j)  16.9%    24 |0,2L17, 11>    40977.3227
231   ( 0.10+0.42j)  18.5%   290 |0,2I11, -5> ( 0.18+0.33j)  14.0%   257 |0,2I11, -3>    41015.6891
232   (-0.43+0.07j)  18.5%    97 |0,2I11,  5> ( 0.37+0.03j)  14.0%   136 |0,2I11,  3>    41015.6891
233   ( 0.45+0.00j)  20.2%   364 |0,2L17,-17> ( 0.41+0.16j)  19.1%   321 |0,2L17, -7>    41158.4756
234   ( 0.33-0.31j)  20.2%     1 |0,2L17, 17> (-0.19+0.39j)  19.1%    69 |0,2L17,  7>    41158.4756
235   ( 0.40+0.00j)  16.3%   364 |0,2L17,-17> ( 0.02-0.38j)  14.2%   262 |0,2L17, -3>    41315.1202
236   (-0.40-0.03j)  16.3%     1 |0,2L17, 17> (-0.01+0.38j)  14.2%   141 |0,2L17,  3>    41315.1202
237   (-0.37+0.02j)  14.0%   182 |0,2L17,  1> (-0.30+0.21j)  13.6%   321 |0,2L17, -7>    41453.1867
238   ( 0.04+0.37j)  14.0%   223 |0,2L17, -1> (-0.16+0.33j)  13.6%    69 |0,2L17,  7>    41453.1867
239   ( 0.34-0.23j)  16.9%   295 |0,2L17, -5> (-0.07+0.39j)  15.6%   340 |0,2L17, -9>    41556.8060
240   ( 0.13+0.39j)  16.9%   102 |0,2L17,  5> ( 0.19-0.35j)  15.6%    43 |0,2L17,  9>    41556.8060
241   (-0.09-0.36j)  13.7%   321 |0,2L17, -7> ( 0.28+0.21j)  12.7%   359 |0,2L17,-13>    41633.6641
242   (-0.35-0.11j)  13.7%    69 |0,2L17,  7> (-0.19-0.30j)  12.7%    12 |0,2L17, 13>    41633.6641
243   ( 0.45+0.10j)  21.1%   262 |0,2L17, -3> ( 0.45-0.02j)  20.2%   223 |0,2L17, -1>    41721.4907
244   ( 0.44-0.12j)  21.1%   141 |0,2L17,  3> (-0.45+0.00j)  20.2%   182 |0,2L17,  1>    41721.4907
245   (-0.37-0.31j)  23.1%   352 |0,2L17,-11> (-0.35-0.32j)  22.2%   340 |0,2L17, -9>    41815.2906
246   (-0.36-0.32j)  23.1%    24 |0,2L17, 11> ( 0.37+0.30j)  22.2%    43 |0,2L17,  9>    41815.2906
247   ( 0.06+0.58j)  33.5%   185 |0,4D 3, -1> ( 0.05+0.45j)  20.4%   202 |1,2D 3, -1>    42049.2264
248   (-0.04-0.58j)  33.5%   144 |0,4D 3,  1> (-0.03-0.45j)  20.4%   161 |1,2D 3,  1>    42049.2264
249   (-0.05+0.60j)  36.8%   225 |0,4D 3, -3> (-0.04+0.45j)  20.4%   241 |1,2D 3, -3>    42161.0509
250   ( 0.29-0.53j)  36.8%   104 |0,4D 3,  3> ( 0.21-0.40j)  20.4%   120 |1,2D 3,  3>    42161.0509
251   ( 0.45-0.15j)  22.3%   240 |0,2P 3, -3> (-0.40+0.14j)  17.7%   243 |2,2D 3, -3>    42682.3819
252   (-0.42-0.22j)  22.3%   119 |0,2P 3,  3> ( 0.37+0.20j)  17.7%   122 |2,2D 3,  3>    42682.3819
253   ( 0.15+0.43j)  20.5%   201 |0,2P 3, -1> (-0.13-0.38j)  16.4%   204 |2,2D 3, -1>    42809.3010
254   ( 0.34+0.30j)  20.5%   160 |0,2P 3,  1> (-0.30-0.27j)  16.4%   163 |2,2D 3,  1>    42809.3010
255   (-0.43+0.06j)  19.0%   317 |0,2I13, -7> ( 0.33-0.26j)  17.3%   336 |0,2I13, -9>    43020.3029
256   ( 0.33+0.29j)  19.0%    65 |0,2I13,  7> ( 0.14+0.39j)  17.3%    39 |0,2I13,  9>    43020.3029
257   ( 0.22+0.76j)  62.8%   355 |0,2I13,-13> ( 0.26+0.16j)   9.6%   348 |0,2I13,-11>    43145.7483
258   ( 0.71-0.35j)  62.8%     8 |0,2I13, 13> (-0.30-0.09j)   9.6%    20 |0,2I13, 11>    43145.7483
259   (-0.36+0.21j)  17.2%   291 |0,2I13, -5> (-0.09-0.40j)  16.7%   258 |0,2I13, -3>    43228.0598
260   (-0.36+0.21j)  17.2%    98 |0,2I13,  5> (-0.30-0.28j)  16.7%   137 |0,2I13,  3>    43228.0598
261   (-0.28-0.51j)  34.3%   348 |0,2I13,-11> (-0.30+0.18j)  12.3%   336 |0,2I13, -9>    43370.5830
262   (-0.45-0.38j)  34.3%    20 |0,2I13, 11> (-0.24+0.26j)  12.3%    39 |0,2I13,  9>    43370.5830
263   (-0.43+0.03j)  18.8%   219 |0,2I13, -1> (-0.26+0.31j)  15.9%   348 |0,2I13,-11>    43518.7675
264   ( 0.22-0.37j)  18.8%   178 |0,2I13,  1> (-0.39+0.09j)  15.9%    20 |0,2I13, 11>    43518.7675
265   ( 0.32+0.46j)  31.7%   336 |0,2I13, -9> (-0.12-0.32j)  11.3%   219 |0,2I13, -1>    43604.9903
266   (-0.35+0.44j)  31.7%    39 |0,2I13,  9> ( 0.13-0.31j)  11.3%   178 |0,2I13,  1>    43604.9903
267   (-0.04-0.52j)  26.8%   291 |0,2I13, -5> (-0.02-0.46j)  21.5%   317 |0,2I13, -7>    43815.3003
268   (-0.21+0.47j)  26.8%    98 |0,2I13,  5> ( 0.17-0.43j)  21.5%    65 |0,2I13,  7>    43815.3003
269   ( 0.86+0.32j)  84.2%   184 |0,4D 1, -1> ( 0.25+0.09j)   7.2%   200 |0,2P 1, -1>    46893.2633
270   ( 0.86+0.32j)  84.2%   143 |0,4D 1,  1> ( 0.25+0.09j)   7.2%   159 |0,2P 1,  1>    46893.2633
271   ( 0.33-0.47j)  33.4%   358 |0,2L15,-13> (-0.48+0.08j)  23.6%   351 |0,2L15,-11>    46958.7348
272   (-0.28+0.51j)  33.4%    11 |0,2L15, 13> ( 0.14+0.47j)  23.6%    23 |0,2L15, 11>    46958.7348
273   ( 0.45-0.09j)  20.6%   362 |0,2L15,-15> (-0.22+0.39j)  20.0%   339 |0,2L15, -9>    47177.7391
274   (-0.40-0.21j)  20.6%     4 |0,2L15, 15> (-0.09-0.44j)  20.0%    42 |0,2L15,  9>    47177.7391
275   (-0.53+0.04j)  27.8%   362 |0,2L15,-15> ( 0.23+0.34j)  16.6%   351 |0,2L15,-11>    47374.4678
276   (-0.39-0.35j)  27.8%     4 |0,2L15, 15> ( 0.39-0.12j)  16.6%    23 |0,2L15, 11>    47374.4678
277   ( 0.37+0.04j)  14.1%   261 |0,2L15, -3> (-0.27-0.17j)  10.2%   339 |0,2L15, -9>    47526.5563
278   ( 0.31+0.22j)  14.1%   140 |0,2L15,  3> ( 0.32+0.05j)  10.2%    42 |0,2L15,  9>    47526.5563
279   ( 0.28+0.22j)  12.4%   294 |0,2L15, -5> (-0.13+0.26j)   8.6%   312 |1,2H 9, -7>    47574.8837
280   ( 0.30-0.18j)  12.4%   101 |0,2L15,  5> (-0.10-0.28j)   8.6%    60 |1,2H 9,  7>    47574.8837
281   ( 0.06-0.32j)  10.9%   214 |1,2H 9, -1> (-0.18+0.20j)   7.2%   261 |0,2L15, -3>    47636.8570
282   ( 0.33-0.04j)  10.9%   173 |1,2H 9,  1> (-0.22+0.16j)   7.2%   140 |0,2L15,  3>    47636.8570
283   ( 0.01+0.41j)  16.5%   331 |1,2H 9, -9> ( 0.22-0.29j)  12.9%   253 |1,2H 9, -3>    47670.0789
284   ( 0.39-0.13j)  16.5%    34 |1,2H 9,  9> ( 0.19-0.30j)  12.9%   132 |1,2H 9,  3>    47670.0789
285   (-0.20-0.26j)  11.0%   261 |0,2L15, -3> ( 0.28+0.09j)   8.8%   358 |0,2L15,-13>    47704.7551
286   (-0.22-0.25j)  11.0%   140 |0,2L15,  3> (-0.03-0.30j)   8.8%    11 |0,2L15, 13>    47704.7551
287   (-0.25-0.22j)  11.0%   358 |0,2L15,-13> (-0.13-0.30j)  10.5%   331 |1,2H 9, -9>    47770.5155
288   ( 0.28-0.18j)  11.0%    11 |0,2L15, 13> (-0.17+0.27j)  10.5%    34 |1,2H 9,  9>    47770.5155
289   (-0.30-0.33j)  19.8%   312 |1,2H 9, -7> (-0.10+0.27j)   8.2%   331 |1,2H 9, -9>    47839.0380
290   (-0.09-0.44j)  19.8%    60 |1,2H 9,  7> (-0.27-0.08j)   8.2%    34 |1,2H 9,  9>    47839.0380
291   ( 0.47+0.03j)  22.4%   351 |0,2L15,-11> ( 0.33-0.07j)  11.6%   358 |0,2L15,-13>    47892.7446
292   ( 0.47+0.03j)  22.4%    23 |0,2L15, 11> (-0.32-0.11j)  11.6%    11 |0,2L15, 13>    47892.7446
293   ( 0.01-0.39j)  15.1%   320 |0,2L15, -7> ( 0.30+0.19j)  12.8%   286 |1,2H 9, -5>    48061.9652
294   ( 0.19+0.34j)  15.1%    68 |0,2L15,  7> ( 0.18-0.31j)  12.8%    93 |1,2H 9,  5>    48061.9652
295   ( 0.14-0.32j)  12.0%   339 |0,2L15, -9> ( 0.13-0.32j)  11.9%   320 |0,2L15, -7>    48138.9244
296   (-0.23+0.26j)  12.0%    42 |0,2L15,  9> ( 0.23-0.26j)  11.9%    68 |0,2L15,  7>    48138.9244
297   ( 0.43-0.14j)  20.2%   277 |2,2D 5, -5> ( 0.40-0.13j)  17.8%   263 |0,4D 5, -5>    48451.4455
298   ( 0.19+0.41j)  20.2%    84 |2,2D 5,  5> ( 0.18+0.38j)  17.8%    70 |0,4D 5,  5>    48451.4455
299   ( 0.13-0.37j)  15.1%   205 |2,2D 5, -1> ( 0.12-0.35j)  13.5%   186 |0,4D 5, -1>    48797.1636
300   (-0.36-0.14j)  15.1%   164 |2,2D 5,  1> (-0.34-0.13j)  13.5%   145 |0,4D 5,  1>    48797.1636
301   (-0.40+0.01j)  15.8%   244 |2,2D 5, -3> (-0.37+0.01j)  13.8%   226 |0,4D 5, -3>    48935.7361
302   (-0.39+0.05j)  15.8%   123 |2,2D 5,  3> (-0.37+0.05j)  13.8%   105 |0,4D 5,  3>    48935.7361
303   ( 0.25+0.31j)  15.8%   345 |1,2H11,-11> ( 0.32-0.11j)  11.4%   287 |1,2H11, -5>    50479.1647
304   (-0.15-0.37j)  15.8%    17 |1,2H11, 11> (-0.25+0.23j)  11.4%    94 |1,2H11,  5>    50479.1648
305   (-0.43-0.03j)  18.7%   345 |1,2H11,-11> ( 0.32+0.02j)  10.3%   347 |0,2I11,-11>    50622.9273
306   ( 0.04+0.43j)  18.7%    17 |1,2H11, 11> (-0.03-0.32j)  10.3%    19 |0,2I11, 11>    50622.9273
307   ( 0.33-0.06j)  11.2%   345 |1,2H11,-11> (-0.19-0.27j)  10.9%   215 |1,2H11, -1>    50679.5464
308   ( 0.00-0.34j)  11.2%    17 |1,2H11, 11> (-0.30-0.13j)  10.9%   174 |1,2H11,  1>    50679.5464
309   ( 0.06+0.46j)  21.6%   332 |1,2H11, -9> (-0.04-0.36j)  13.0%   335 |0,2I11, -9>    50918.6240
310   (-0.45-0.13j)  21.6%    35 |1,2H11,  9> ( 0.35+0.10j)  13.0%    38 |0,2I11,  9>    50918.6240
311   (-0.43+0.03j)  18.2%   313 |1,2H11, -7> (-0.17+0.33j)  13.4%   332 |1,2H11, -9>    51032.8887
312   ( 0.36-0.23j)  18.2%    61 |1,2H11,  7> (-0.33-0.17j)  13.4%    35 |1,2H11,  9>    51032.8887
313   (-0.13+0.41j)  18.6%   287 |1,2H11, -5> (-0.07+0.38j)  15.1%   254 |1,2H11, -3>    51180.0564
314   (-0.20+0.38j)  18.6%    94 |1,2H11,  5> ( 0.22-0.32j)  15.1%   133 |1,2H11,  3>    51180.0564
315   ( 0.06-0.43j)  18.9%   307 |2,2F 7, -7> ( 0.05-0.36j)  13.6%   306 |1,2F 7, -7>    53853.1535
316   ( 0.14-0.41j)  18.9%    55 |2,2F 7,  7> ( 0.12-0.35j)  13.6%    54 |1,2F 7,  7>    53853.1535
317   (-0.14+0.44j)  20.9%   307 |2,2F 7, -7> (-0.11+0.37j)  15.1%   306 |1,2F 7, -7>    53920.1628
318   ( 0.13-0.44j)  20.9%    55 |2,2F 7,  7> ( 0.11-0.37j)  15.1%    54 |1,2F 7,  7>    53920.1628
319   ( 0.34-0.01j)  11.7%   281 |2,2F 7, -5> (-0.34-0.01j)  11.6%   168 |2,2F 7,  1>    53966.4017
320   ( 0.22+0.26j)  11.7%    88 |2,2F 7,  5> ( 0.23+0.25j)  11.6%   209 |2,2F 7, -1>    53966.4017
321   ( 0.41-0.06j)  17.4%   281 |2,2F 7, -5> ( 0.40-0.10j)  17.0%   248 |2,2F 7, -3>    54000.1177
322   (-0.04+0.42j)  17.4%    88 |2,2F 7,  5> ( 0.07-0.41j)  17.0%   127 |2,2F 7,  3>    54000.1177
323   ( 0.42+0.55j)  47.3%   243 |2,2D 3, -3> (-0.01-0.42j)  17.4%   204 |2,2D 3, -1>    54768.4259
324   ( 0.41+0.55j)  47.3%   122 |2,2D 3,  3> ( 0.40+0.12j)  17.4%   163 |2,2D 3,  1>    54768.4259
325   ( 0.66+0.14j)  46.2%   204 |2,2D 3, -1> ( 0.40-0.18j)  19.4%   243 |2,2D 3, -3>    54990.0872
326   ( 0.68+0.06j)  46.2%   163 |2,2D 3,  1> (-0.33-0.29j)  19.4%   122 |2,2D 3,  3>    54990.0872
327   (-0.51-0.17j)  28.8%   280 |2,2F 5, -5> ( 0.33+0.37j)  24.5%   247 |2,2F 5, -3>    62544.8498
328   ( 0.38-0.38j)  28.8%    87 |2,2F 5,  5> ( 0.13-0.48j)  24.5%   126 |2,2F 5,  3>    62544.8499
329   (-0.06+0.46j)  21.6%   167 |2,2F 5,  1> ( 0.35+0.16j)  14.7%   280 |2,2F 5, -5>    62623.9127
330   (-0.27+0.38j)  21.6%   208 |2,2F 5, -1> ( 0.36+0.13j)  14.7%    87 |2,2F 5,  5>    62623.9127
331   (-0.33-0.33j)  22.1%   247 |2,2F 5, -3> (-0.03+0.41j)  16.6%   167 |2,2F 5,  1>    62653.4143
332   (-0.46-0.08j)  22.1%   126 |2,2F 5,  3> ( 0.32-0.25j)  16.6%   208 |2,2F 5, -1>    62653.4143
333   ( 0.04+0.51j)  25.7%   310 |2,2G 7, -7> ( 0.21-0.44j)  23.7%   284 |2,2G 7, -5>    65565.8339
334   ( 0.29+0.42j)  25.7%    58 |2,2G 7,  7> ( 0.44+0.21j)  23.7%    91 |2,2G 7,  5>    65565.8339
335   (-0.41-0.24j)  22.4%   251 |2,2G 7, -3> ( 0.32-0.25j)  16.4%   310 |2,2G 7, -7>    65728.4989
336   ( 0.06+0.47j)  22.4%   130 |2,2G 7,  3> ( 0.35-0.20j)  16.4%    58 |2,2G 7,  7>    65728.4989
337   ( 0.43+0.27j)  26.2%   212 |2,2G 7, -1> ( 0.36+0.23j)  18.4%   210 |1,2G 7, -1>    65852.8897
338   ( 0.51-0.02j)  26.2%   171 |2,2G 7,  1> ( 0.43-0.02j)  18.4%   169 |1,2G 7,  1>    65852.8897
339   ( 0.40-0.18j)  19.2%   251 |2,2G 7, -3> ( 0.36-0.25j)  19.2%   284 |2,2G 7, -5>    65898.6747
340   ( 0.30-0.32j)  19.2%   130 |2,2G 7,  3> (-0.35+0.26j)  19.2%    91 |2,2G 7,  5>    65898.6747
341   (-0.31+0.34j)  21.1%   311 |2,2G 9, -7> ( 0.01-0.45j)  20.0%   330 |2,2G 9, -9>    69511.4166
342   ( 0.45+0.11j)  21.1%    59 |2,2G 9,  7> ( 0.26+0.37j)  20.0%    33 |2,2G 9,  9>    69511.4166
343   ( 0.04-0.47j)  22.4%   330 |2,2G 9, -9> ( 0.03-0.40j)  16.2%   329 |1,2G 9, -9>    69678.8128
344   ( 0.33+0.34j)  22.4%    33 |2,2G 9,  9> ( 0.28+0.29j)  16.2%    32 |1,2G 9,  9>    69678.8128
345   ( 0.32-0.15j)  12.5%   311 |2,2G 9, -7> (-0.23-0.24j)  10.9%   252 |2,2G 9, -3>    69799.1849
346   (-0.35-0.02j)  12.5%    59 |2,2G 9,  7> ( 0.12-0.31j)  10.9%   131 |2,2G 9,  3>    69799.1849
347   ( 0.25-0.25j)  12.5%   311 |2,2G 9, -7> (-0.34+0.03j)  11.5%   213 |2,2G 9, -1>    69889.3179
348   ( 0.09+0.34j)  12.5%    59 |2,2G 9,  7> ( 0.27+0.20j)  11.5%   172 |2,2G 9,  1>    69889.3179
349   ( 0.22-0.37j)  18.7%   285 |2,2G 9, -5> ( 0.22-0.34j)  16.0%   252 |2,2G 9, -3>    70001.0680
350   ( 0.43+0.04j)  18.7%    92 |2,2G 9,  5> (-0.40-0.02j)  16.0%   131 |2,2G 9,  3>    70001.0680
351   (-0.61+0.04j)  37.3%   278 |1,2F 5, -5> ( 0.34+0.34j)  23.2%   245 |1,2F 5, -3>    91512.6047
352   ( 0.08-0.61j)  37.3%    85 |1,2F 5,  5> (-0.32-0.36j)  23.2%   124 |1,2F 5,  3>    91512.6047
353   (-0.50+0.14j)  27.5%   278 |1,2F 5, -5> ( 0.40+0.27j)  23.2%   206 |1,2F 5, -1>    91905.6799
354   (-0.17-0.50j)  27.5%    85 |1,2F 5,  5> ( 0.45+0.18j)  23.2%   165 |1,2F 5,  1>    91905.6799
355   ( 0.47+0.38j)  36.3%   245 |1,2F 5, -3> ( 0.34+0.30j)  20.7%   206 |1,2F 5, -1>    92390.2750
356   (-0.33-0.50j)  36.3%   124 |1,2F 5,  3> ( 0.27+0.37j)  20.7%   165 |1,2F 5,  1>    92390.2750
357   (-0.02-0.49j)  24.2%   306 |1,2F 7, -7> ( 0.02+0.42j)  17.4%   307 |2,2F 7, -7>    95928.4329
358   ( 0.23-0.43j)  24.2%    54 |1,2F 7,  7> (-0.20+0.37j)  17.4%    55 |2,2F 7,  7>    95928.4329
359   ( 0.12-0.43j)  20.0%   306 |1,2F 7, -7> (-0.40-0.02j)  16.2%   246 |1,2F 7, -3>    96329.2924
360   ( 0.16-0.42j)  20.0%    54 |1,2F 7,  7> ( 0.34+0.22j)  16.2%   125 |1,2F 7,  3>    96329.2924
361   ( 0.42-0.12j)  18.9%   279 |1,2F 7, -5> (-0.36+0.10j)  13.7%   281 |2,2F 7, -5>    96643.3349
362   ( 0.41+0.13j)  18.9%    86 |1,2F 7,  5> (-0.35-0.12j)  13.7%    88 |2,2F 7,  5>    96643.3349
363   (-0.47-0.01j)  22.3%   246 |1,2F 7, -3> ( 0.40+0.01j)  16.2%   248 |2,2F 7, -3>    97139.0168
364   ( 0.15-0.45j)  22.3%   125 |1,2F 7,  3> (-0.12+0.38j)  16.2%   127 |2,2F 7,  3>    97139.0168
Label key: TSLJM


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

Lev.  Percentage                 State        Percentage                 State               Theory     Experiment    Difference
----  ----------                 -----        ----------                 -----               ------     ----------    ----------
1     ( 0.17-0.39j)  18.3%   328 |0,4I15, -9> (-0.41-0.10j)  18.0%   305 |0,4I15, -7>        5.3723         0.0000       -5.3723
3     (-0.16-0.59j)  37.3%   354 |0,4I15,-13> ( 0.40+0.10j)  17.2%   305 |0,4I15, -7>       44.1371        42.0000       -2.1371
5     (-0.43-0.04j)  18.5%   328 |0,4I15, -9> (-0.33-0.19j)  14.7%   275 |0,4I15, -5>       82.6246        86.0000        3.3754
7     ( 0.62-0.22j)  43.9%   360 |0,4I15,-15> (-0.50+0.15j)  27.0%   344 |0,4I15,-11>      114.3141       104.0000      -10.3141
9     ( 0.09-0.46j)  22.0%   328 |0,4I15, -9> ( 0.44+0.11j)  20.8%   305 |0,4I15, -7>      183.1834       172.0000      -11.1834
11    ( 0.51+0.04j)  26.5%   199 |0,4I15, -1> (-0.29+0.29j)  17.0%   305 |0,4I15, -7>      411.1400       424.0000       12.8600
13    (-0.04-0.39j)  15.5%   158 |0,4I15,  1> ( 0.19+0.31j)  12.9%   239 |0,4I15, -3>      475.4960       481.0000        5.5040
15    (-0.47+0.12j)  23.6%   354 |0,4I15,-13> (-0.39+0.16j)  17.9%   360 |0,4I15,-15>      506.6772       513.0000        6.3228
17    (-0.52-0.37j)  40.0%   343 |0,4I13,-11> ( 0.14+0.44j)  20.8%   327 |0,4I13, -9>     6508.6503      6507.0000       -1.6503
19    (-0.50-0.04j)  25.3%   353 |0,4I13,-13> ( 0.15-0.40j)  18.5%   304 |0,4I13, -7>     6546.0888      6547.0000        0.9112
21    (-0.26+0.43j)  24.9%   327 |0,4I13, -9> ( 0.29-0.39j)  23.4%   353 |0,4I13,-13>     6605.5899      6596.5000       -9.0899
23    ( 0.54-0.20j)  33.1%   304 |0,4I13, -7> ( 0.32+0.26j)  16.8%   274 |0,4I13, -5>     6628.2204      6623.0000       -5.2204
25    (-0.51+0.16j)  28.5%   198 |0,4I13, -1> (-0.07+0.40j)  16.3%   274 |0,4I13, -5>     6786.3926      6798.0000       11.6074
27    (-0.41-0.13j)  18.6%   157 |0,4I13,  1> (-0.09-0.40j)  16.8%   343 |0,4I13,-11>     6846.4687      6852.0000        5.5313
29    ( 0.08+0.45j)  21.1%   343 |0,4I13,-11> ( 0.10+0.43j)  19.9%   353 |0,4I13,-13>     6866.8881      6871.0000        4.1119
31    (-0.15+0.61j)  39.3%   326 |0,4I11, -9> (-0.03-0.43j)  19.0%   342 |0,4I11,-11>    10189.4031     10193.0000        3.5969
33    (-0.49+0.13j)  25.3%   303 |0,4I11, -7> ( 0.14-0.47j)  23.8%   342 |0,4I11,-11>    10232.0407     10271.0000       38.9593
35    ( 0.43-0.24j)  24.2%   273 |0,4I11, -5> ( 0.00-0.39j)  15.5%   303 |0,4I11, -7>    10271.8497     10292.0000       20.1503
37    (-0.43-0.18j)  21.7%   197 |0,4I11, -1> (-0.33+0.17j)  13.8%   273 |0,4I11, -5>    10345.8957     10308.0000      -37.8957
39    (-0.51+0.19j)  29.2%   197 |0,4I11, -1> ( 0.17+0.31j)  12.6%   237 |0,4I11, -3>    10385.0880     10369.0000      -16.0880
41    (-0.14+0.48j)  24.7%   326 |0,4I11, -9> (-0.11+0.45j)  21.9%   342 |0,4I11,-11>    10398.8601     10383.0000      -15.8601
43    ( 0.18-0.36j)  16.1%   272 |0,4I 9, -5> (-0.03-0.35j)  12.5%   236 |0,4I 9, -3>    12346.7036     12359.5000       12.7964
45    (-0.07+0.40j)  16.5%   325 |0,4I 9, -9> ( 0.10-0.39j)  16.5%   302 |0,4I 9, -7>    12444.4588     12459.5000       15.0412
47    (-0.16-0.30j)  11.7%   302 |0,4I 9, -7> (-0.21+0.24j)  10.1%   236 |0,4I 9, -3>    12534.8713     12527.5000       -7.3713
49    (-0.08+0.47j)  22.8%   325 |0,4I 9, -9> (-0.10+0.30j)   9.8%   302 |0,4I 9, -7>    12614.2625     12612.0000       -2.2625
51    ( 0.40-0.22j)  20.4%   196 |0,4I 9, -1> (-0.29-0.15j)  10.4%   236 |0,4I 9, -3>    12662.1618     12649.5000      -12.6618
53    ( 0.36-0.28j)  20.4%   267 |0,4F 9, -5> ( 0.28-0.33j)  18.8%   231 |0,4F 9, -3>    15179.1664     15169.0000      -10.1664
55    (-0.39+0.33j)  26.6%   298 |0,4F 9, -7> (-0.26+0.23j)  12.2%   302 |0,4I 9, -7>    15231.1628     15220.5000      -10.6628
57    ( 0.28-0.24j)  13.6%   150 |0,4F 9,  1> (-0.15+0.31j)  11.9%   322 |0,4F 9, -9>    15358.0568     15360.5000        2.4432
59    ( 0.17-0.39j)  18.0%   322 |0,4F 9, -9> ( 0.06-0.33j)  11.1%   298 |0,4F 9, -7>    15377.6764     15381.5000        3.8236
61    (-0.24+0.38j)  20.0%   322 |0,4F 9, -9> ( 0.31+0.16j)  12.1%   231 |0,4F 9, -3>    15493.2103     15498.0000        4.7897
63    ( 0.61+0.25j)  43.0%   183 |0,4S 3, -1> ( 0.41-0.08j)  17.1%   224 |0,4S 3, -3>    18261.2528     18267.0000        5.7472
65    (-0.61+0.29j)  45.2%   224 |0,4S 3, -3> ( 0.39+0.05j)  15.7%   183 |0,4S 3, -1>    18369.6217     18372.0000        2.3783
67    (-0.08-0.33j)  11.5%   289 |2,2H11, -5> (-0.07-0.30j)   9.3%   271 |0,4G11, -5>    19093.4029     19091.0000       -2.4029
69    ( 0.43+0.16j)  21.0%   346 |2,2H11,-11> ( 0.38+0.14j)  16.9%   341 |0,4G11,-11>    19115.6110     19116.0000        0.3890

Label key: TSLJM
weighted chi2 = 5.6058
sigma = 14.6836
weighting factor = 1.00e-03


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

zeeman interaction
------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 1.99419  2.24155  3.55236]  [ 1.95000  2.21200  3.58400]  [-0.04419 -0.02955  0.03164]
[ 2.24155  4.21996  4.99163]  [ 2.21200  4.23200  4.98600]  [-0.02955  0.01204 -0.00563]
[ 3.55236  4.99163  7.91162]  [ 3.58400  4.98600  7.88800]  [ 0.03164 -0.00563 -0.02362]
weighted chi2 = 0.0776
weighting factor = 1.20e+01

sigma = 0.0158


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

zeeman interaction
------------------
Theory (abs. value)           Experiment (abs. value)       Difference
-------------------           -----------------------       ----------
[ 2.80731  2.74477  3.52890]  [ 2.92000  2.97000  3.56000]  [ 0.11269  0.22523  0.03110]
[ 2.74477  8.69746  5.63372]  [ 2.97000  8.89000  5.56000]  [ 0.22523  0.19254 -0.07372]
[ 3.52890  5.63372  5.51596]  [ 3.56000  5.56000  5.14000]  [ 0.03110 -0.07372 -0.37596]
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.8688
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.36            35509.69              -13.33          35010           36010
'ZETA'       :             2363.15             2363.07                0.08           2358            2368
'F2'         :            95972.52            96074.10             -101.58          95574           96574
'F4'         :            67686.80            67615.03               71.77          67115           68115
'F6'         :            53053.84            53196.10             -142.26          52696           53696
'C20'        :             -396.27             -232.75             -163.52          -1233             767
'C21'        :      491.84+320.23j      531.76+355.50j       -39.92-35.27j      -468-644j      1532+1356j
'C22'        :      178.64-185.70j       85.53-139.07j        93.11-46.63j     -914-1139j       1086+861j
'C40'        :              602.55             1298.25             -695.70             -2            2598
'C41'        :     1166.29-441.50j     1065.63-315.04j      100.66-126.46j     -234-1615j       2366+985j
'C42'        :      588.75+130.25j      347.82+180.31j       240.93-50.06j     -952-1120j      1648+1480j
'C43'        :      118.28-542.74j      -33.55-420.02j      151.83-122.72j    -1334-1720j       1266+880j
'C44'        :      -99.76+982.10j     -764.48+789.71j      664.72+192.39j     -2064-510j       536+2090j
'C60'        :             -187.31             -108.12              -79.19           -608             392
'C61'        :     -134.96+168.85j       81.11+166.69j       -216.07+2.16j      -419-333j        581+667j
'C62'        :       128.12-21.40j        210.67-9.48j       -82.55-11.92j      -289-509j        711+491j
'C63'        :      283.73+194.07j      147.32+108.22j       136.41+85.85j      -353-392j        647+608j
'C64'        :       94.65-142.53j      270.51-198.38j      -175.86+55.85j      -229-698j        771+302j
'C65'        :       17.97-194.41j        18.44-98.82j        -0.47-95.59j      -482-599j        518+401j
'C66'        :        95.91-22.56j        10.67-22.05j         85.24-0.51j      -489-522j        511+478j

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

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